diff --git a/README.md b/README.md index db321680..dfedfeb8 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,8 @@ And the following code draws a quadratic function. `src/main.rs`, ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/0.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/0.png", (640, 480)).into_drawing_area(); root.fill(&WHITE)?; let mut chart = ChartBuilder::on(&root) .caption("y=x^2", ("sans-serif", 50).into_font()) @@ -321,8 +322,9 @@ Plotters can use different drawing back-ends, including SVG, BitMap, and even re ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; // Create a 800*600 bitmap and start drawing - let mut backend = BitMapBackend::new("plotters-doc-data/1.png", (300, 200)); + let mut backend = BitMapBackend::new("../target/plotters-doc-data/1.png", (300, 200)); // And if we want SVG backend // let backend = SVGBackend::new("output.svg", (800, 600)); backend.draw_rect((50, 50), (200, 150), &RED, true)?; @@ -343,8 +345,9 @@ Besides that, the drawing area also allows the customized coordinate system, by ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; let root_drawing_area = - BitMapBackend::new("plotters-doc-data/2.png", (300, 200)).into_drawing_area(); + BitMapBackend::new("../target/plotters-doc-data/2.png", (300, 200)).into_drawing_area(); // And we can split the drawing area into 3x3 grid let child_drawing_areas = root_drawing_area.split_evenly((3, 3)); // Then we fill the drawing area with different color @@ -371,7 +374,8 @@ To learn more about the element system, please read the [element module document ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/3.png", (300, 200)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/3.png", (300, 200)).into_drawing_area(); root.fill(&WHITE)?; // Draw an circle on the drawing area root.draw(&Circle::new( @@ -399,7 +403,8 @@ use plotters::prelude::*; use plotters::coord::types::RangedCoordf32; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/4.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/4.png", (640, 480)).into_drawing_area(); root.fill(&RGBColor(240, 200, 200))?; @@ -439,7 +444,8 @@ of the chart context object. ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/5.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/5.png", (640, 480)).into_drawing_area(); root.fill(&WHITE); let root = root.margin(10, 10, 10, 10); // After this point, we should be able to draw construct a chart context diff --git a/doc-template/examples/chart.rs b/doc-template/examples/chart.rs index a8422c02..26ad73c2 100644 --- a/doc-template/examples/chart.rs +++ b/doc-template/examples/chart.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/5.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/5.png", (640, 480)).into_drawing_area(); root.fill(&WHITE); let root = root.margin(10, 10, 10, 10); // After this point, we should be able to draw construct a chart context diff --git a/doc-template/examples/composable_elements.rs b/doc-template/examples/composable_elements.rs index 990bb221..ff421964 100644 --- a/doc-template/examples/composable_elements.rs +++ b/doc-template/examples/composable_elements.rs @@ -2,7 +2,8 @@ use plotters::prelude::*; use plotters::coord::types::RangedCoordf32; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/4.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/4.png", (640, 480)).into_drawing_area(); root.fill(&RGBColor(240, 200, 200))?; diff --git a/doc-template/examples/drawing_area.rs b/doc-template/examples/drawing_area.rs index bc03eee1..a8bb0c4a 100644 --- a/doc-template/examples/drawing_area.rs +++ b/doc-template/examples/drawing_area.rs @@ -1,7 +1,8 @@ use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; let root_drawing_area = - BitMapBackend::new("plotters-doc-data/2.png", (300, 200)).into_drawing_area(); + BitMapBackend::new("../target/plotters-doc-data/2.png", (300, 200)).into_drawing_area(); // And we can split the drawing area into 3x3 grid let child_drawing_areas = root_drawing_area.split_evenly((3, 3)); // Then we fill the drawing area with different color diff --git a/doc-template/examples/drawing_backends.rs b/doc-template/examples/drawing_backends.rs index e659d373..70e9a3e3 100644 --- a/doc-template/examples/drawing_backends.rs +++ b/doc-template/examples/drawing_backends.rs @@ -1,7 +1,8 @@ use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; // Create a 800*600 bitmap and start drawing - let mut backend = BitMapBackend::new("plotters-doc-data/1.png", (300, 200)); + let mut backend = BitMapBackend::new("../target/plotters-doc-data/1.png", (300, 200)); // And if we want SVG backend // let backend = SVGBackend::new("output.svg", (800, 600)); backend.draw_rect((50, 50), (200, 150), &RED, true)?; diff --git a/doc-template/examples/elements.rs b/doc-template/examples/elements.rs index 5fb73a58..ea5b76c4 100644 --- a/doc-template/examples/elements.rs +++ b/doc-template/examples/elements.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/3.png", (300, 200)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/3.png", (300, 200)).into_drawing_area(); root.fill(&WHITE)?; // Draw an circle on the drawing area root.draw(&Circle::new( diff --git a/doc-template/examples/quick_start.rs b/doc-template/examples/quick_start.rs index e0c55624..a3feedd6 100644 --- a/doc-template/examples/quick_start.rs +++ b/doc-template/examples/quick_start.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/0.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/0.png", (640, 480)).into_drawing_area(); root.fill(&WHITE)?; let mut chart = ChartBuilder::on(&root) .caption("y=x^2", ("sans-serif", 50).into_font()) diff --git a/plotters-backend/src/rasterizer/circle.rs b/plotters-backend/src/rasterizer/circle.rs index 779f095c..0584167a 100644 --- a/plotters-backend/src/rasterizer/circle.rs +++ b/plotters-backend/src/rasterizer/circle.rs @@ -322,8 +322,8 @@ pub fn draw_circle( if fill { check_result!(b.draw_line((left, y), (right, y), &style.color())); - check_result!(b.draw_line((x, top), (x, up), &style.color())); - check_result!(b.draw_line((x, down), (x, bottom), &style.color())); + check_result!(b.draw_line((x, top), (x, up - 1), &style.color())); + check_result!(b.draw_line((x, down + 1), (x, bottom), &style.color())); } else { check_result!(b.draw_pixel((left, y), style.color().mix(1.0 - v))); check_result!(b.draw_pixel((right, y), style.color().mix(1.0 - v))); diff --git a/plotters-bitmap/src/bitmap.rs b/plotters-bitmap/src/bitmap.rs index f11e17aa..cb3db6da 100644 --- a/plotters-bitmap/src/bitmap.rs +++ b/plotters-bitmap/src/bitmap.rs @@ -228,7 +228,7 @@ impl<'a, P: PixelFormat> DrawingBackend for BitMapBackend<'a, P> { point: BackendCoord, color: BackendColor, ) -> Result<(), DrawingErrorKind> { - if point.0 < 0 || point.1 < 0 { + if point.0 < 0 || point.1 < 0 || point.0 as u32 >= self.size.0 || point.1 as u32 >= self.size.1 { return Ok(()); } diff --git a/plotters/examples/3d-plot.rs b/plotters/examples/3d-plot.rs index af40cc29..a915fb74 100644 --- a/plotters/examples/3d-plot.rs +++ b/plotters/examples/3d-plot.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/3d-plot.svg"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/3d-plot.svg"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let area = SVGBackend::new(OUT_FILE_NAME, (1024, 760)).into_drawing_area(); area.fill(&WHITE)?; @@ -52,7 +53,7 @@ fn main() -> Result<(), Box> { .draw()?; // To avoid the IO failure being ignored silently, we manually call the present function - area.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + area.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/3d-plot2.rs b/plotters/examples/3d-plot2.rs index 0b5ca213..7f9126f3 100644 --- a/plotters/examples/3d-plot2.rs +++ b/plotters/examples/3d-plot2.rs @@ -8,8 +8,9 @@ fn pdf(x: f64, y: f64) -> f64 { A * (-x * x / 2.0 / SDX / SDX - y * y / 2.0 / SDY / SDY).exp() } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/3d-plot2.gif"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/3d-plot2.gif"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::gif(OUT_FILE_NAME, (600, 400), 100)?.into_drawing_area(); for pitch in 0..157 { @@ -45,7 +46,7 @@ fn main() -> Result<(), Box> { } // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/animation.rs b/plotters/examples/animation.rs index dab7d451..e6f85c09 100644 --- a/plotters/examples/animation.rs +++ b/plotters/examples/animation.rs @@ -17,8 +17,9 @@ fn snowflake_iter(points: &[(f64, f64)]) -> Vec<(f64, f64)> { ret } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/animation.gif"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/animation.gif"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::gif(OUT_FILE_NAME, (800, 600), 1_000)?.into_drawing_area(); for i in 0..8 { diff --git a/plotters/examples/area-chart.rs b/plotters/examples/area-chart.rs index 5b1a7a5a..b727bce3 100644 --- a/plotters/examples/area-chart.rs +++ b/plotters/examples/area-chart.rs @@ -4,8 +4,9 @@ use rand::SeedableRng; use rand_distr::{Distribution, Normal}; use rand_xorshift::XorShiftRng; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/area-chart.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/area-chart.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let data: Vec<_> = { let norm_dist = Normal::new(500.0, 100.0).unwrap(); let mut x_rand = XorShiftRng::from_seed(*b"MyFragileSeed123"); @@ -44,7 +45,7 @@ fn main() -> Result<(), Box> { )?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/blit-bitmap.rs b/plotters/examples/blit-bitmap.rs index 990b2564..61d5d452 100644 --- a/plotters/examples/blit-bitmap.rs +++ b/plotters/examples/blit-bitmap.rs @@ -5,9 +5,10 @@ use image::{imageops::FilterType, ImageFormat}; use std::fs::File; use std::io::BufReader; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/blit-bitmap.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/blit-bitmap.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -23,8 +24,8 @@ fn main() -> Result<(), Box> { let (w, h) = chart.plotting_area().dim_in_pixel(); let image = image::load( BufReader::new( - File::open("plotters-doc-data/cat.png").map_err(|e| { - eprintln!("Unable to open file plotters-doc-data.png, please make sure you have clone this repo with --recursive"); + File::open("plotters/examples/cat.png").map_err(|e| { + eprintln!("Unable to open file ../target/plotters-doc-data.png, please make sure you have clone this repo with --recursive"); e })?), ImageFormat::Png, @@ -35,7 +36,7 @@ fn main() -> Result<(), Box> { chart.draw_series(std::iter::once(elem))?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/boxplot.rs b/plotters/examples/boxplot.rs index 6e46db40..28d8ca16 100644 --- a/plotters/examples/boxplot.rs +++ b/plotters/examples/boxplot.rs @@ -21,8 +21,9 @@ fn read_data(reader: BR) -> HashMap<(String, String), Vec> { ds } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/boxplot.svg"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/boxplot.svg"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = SVGBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -148,7 +149,7 @@ fn main() -> Result<(), Box> { ])?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/cat.png b/plotters/examples/cat.png new file mode 100644 index 00000000..1ca744fa Binary files /dev/null and b/plotters/examples/cat.png differ diff --git a/plotters/examples/chart.rs b/plotters/examples/chart.rs index acdddc3c..c7e5d2d9 100644 --- a/plotters/examples/chart.rs +++ b/plotters/examples/chart.rs @@ -1,7 +1,8 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/sample.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/sample.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root_area = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root_area.fill(&WHITE)?; @@ -84,7 +85,7 @@ fn main() -> Result<(), Box> { } // To avoid the IO failure being ignored silently, we manually call the present function - root_area.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root_area.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/console.rs b/plotters/examples/console.rs index feba0956..d5750e68 100644 --- a/plotters/examples/console.rs +++ b/plotters/examples/console.rs @@ -183,8 +183,9 @@ where Ok(()) } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/console-example.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/console-example.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; draw_chart(TextDrawingBackend(vec![PixelState::Empty; 5000]).into_drawing_area())?; let b = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); b.fill(&WHITE)?; diff --git a/plotters/examples/covid-data.json b/plotters/examples/covid-data.json new file mode 100644 index 00000000..91d615fd --- /dev/null +++ b/plotters/examples/covid-data.json @@ -0,0 +1,780411 @@ +{ + "AFG": { + "continent": "Asia", + "location": "Afghanistan", + "population": 38928341.0, + "population_density": 54.422, + "median_age": 18.6, + "aged_65_older": 2.581, + "aged_70_older": 1.337, + "gdp_per_capita": 1803.987, + "cardiovasc_death_rate": 597.029, + "diabetes_prevalence": 9.59, + "handwashing_facilities": 37.746, + "hospital_beds_per_thousand": 0.5, + "life_expectancy": 64.83, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-08", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-15", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.257, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-16", + "total_cases": 16.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.411, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-17", + "total_cases": 21.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.539, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-18", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.565, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.565, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-20", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.565, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-21", + "total_cases": 24.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.617, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-23", + "total_cases": 34.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.873, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-24", + "total_cases": 40.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.028, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 50.93 + }, + { + "date": "2020-03-25", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.079, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 59.26 + }, + { + "date": "2020-03-26", + "total_cases": 75.0, + "new_cases": 33.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.927, + "new_cases_per_million": 0.848, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 59.26 + }, + { + "date": "2020-03-27", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 59.26 + }, + { + "date": "2020-03-28", + "total_cases": 91.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.338, + "new_cases_per_million": 0.411, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 0.051, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 67.59 + }, + { + "date": "2020-03-29", + "total_cases": 106.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.723, + "new_cases_per_million": 0.385, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 0.077, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 67.59 + }, + { + "date": "2020-03-30", + "total_cases": 114.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.928, + "new_cases_per_million": 0.206, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 67.59 + }, + { + "date": "2020-03-31", + "total_cases": 141.0, + "new_cases": 27.0, + "new_cases_smoothed": 14.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.622, + "new_cases_per_million": 0.694, + "new_cases_smoothed_per_million": 0.371, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 67.59 + }, + { + "date": "2020-04-01", + "total_cases": 166.0, + "new_cases": 25.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.264, + "new_cases_per_million": 0.642, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 67.59 + }, + { + "date": "2020-04-02", + "total_cases": 192.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.932, + "new_cases_per_million": 0.668, + "new_cases_smoothed_per_million": 0.429, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 67.59 + }, + { + "date": "2020-04-03", + "total_cases": 235.0, + "new_cases": 43.0, + "new_cases_smoothed": 22.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.037, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 67.59 + }, + { + "date": "2020-04-04", + "total_cases": 235.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.528, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 67.59 + }, + { + "date": "2020-04-05", + "total_cases": 270.0, + "new_cases": 35.0, + "new_cases_smoothed": 23.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.936, + "new_cases_per_million": 0.899, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 299.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.429, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.681, + "new_cases_per_million": 0.745, + "new_cases_smoothed_per_million": 0.679, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-04-07", + "total_cases": 337.0, + "new_cases": 38.0, + "new_cases_smoothed": 28.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.657, + "new_cases_per_million": 0.976, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-04-08", + "total_cases": 367.0, + "new_cases": 30.0, + "new_cases_smoothed": 28.714, + "total_deaths": 11.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9.428, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.738, + "total_deaths_per_million": 0.283, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 423.0, + "new_cases": 56.0, + "new_cases_smoothed": 33.0, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 10.866, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 0.848, + "total_deaths_per_million": 0.36, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 78.7 + }, + { + "date": "2020-04-10", + "total_cases": 484.0, + "new_cases": 61.0, + "new_cases_smoothed": 35.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 12.433, + "new_cases_per_million": 1.567, + "new_cases_smoothed_per_million": 0.914, + "total_deaths_per_million": 0.385, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 78.7 + }, + { + "date": "2020-04-11", + "total_cases": 521.0, + "new_cases": 37.0, + "new_cases_smoothed": 40.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 13.384, + "new_cases_per_million": 0.95, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 0.385, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 78.7 + }, + { + "date": "2020-04-12", + "total_cases": 555.0, + "new_cases": 34.0, + "new_cases_smoothed": 40.714, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 14.257, + "new_cases_per_million": 0.873, + "new_cases_smoothed_per_million": 1.046, + "total_deaths_per_million": 0.462, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 607.0, + "new_cases": 52.0, + "new_cases_smoothed": 44.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 15.593, + "new_cases_per_million": 1.336, + "new_cases_smoothed_per_million": 1.13, + "total_deaths_per_million": 0.462, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 665.0, + "new_cases": 58.0, + "new_cases_smoothed": 46.857, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 17.083, + "new_cases_per_million": 1.49, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 0.539, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 714.0, + "new_cases": 49.0, + "new_cases_smoothed": 49.571, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 18.341, + "new_cases_per_million": 1.259, + "new_cases_smoothed_per_million": 1.273, + "total_deaths_per_million": 0.591, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 784.0, + "new_cases": 70.0, + "new_cases_smoothed": 51.571, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 20.14, + "new_cases_per_million": 1.798, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 794.0, + "new_cases": 10.0, + "new_cases_smoothed": 44.286, + "total_deaths": 29.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 20.396, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 1.138, + "total_deaths_per_million": 0.745, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 845.0, + "new_cases": 51.0, + "new_cases_smoothed": 46.286, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 21.707, + "new_cases_per_million": 1.31, + "new_cases_smoothed_per_million": 1.189, + "total_deaths_per_million": 0.771, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 908.0, + "new_cases": 63.0, + "new_cases_smoothed": 50.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 23.325, + "new_cases_per_million": 1.618, + "new_cases_smoothed_per_million": 1.295, + "total_deaths_per_million": 0.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 996.0, + "new_cases": 88.0, + "new_cases_smoothed": 55.571, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 25.585, + "new_cases_per_million": 2.261, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 0.848, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 1031.0, + "new_cases": 35.0, + "new_cases_smoothed": 52.286, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 26.485, + "new_cases_per_million": 0.899, + "new_cases_smoothed_per_million": 1.343, + "total_deaths_per_million": 0.899, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 1092.0, + "new_cases": 61.0, + "new_cases_smoothed": 54.0, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 28.052, + "new_cases_per_million": 1.567, + "new_cases_smoothed_per_million": 1.387, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 1176.0, + "new_cases": 84.0, + "new_cases_smoothed": 56.0, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 30.209, + "new_cases_per_million": 2.158, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 1.028, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 1281.0, + "new_cases": 105.0, + "new_cases_smoothed": 69.571, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 32.907, + "new_cases_per_million": 2.697, + "new_cases_smoothed_per_million": 1.787, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 1351.0, + "new_cases": 70.0, + "new_cases_smoothed": 72.286, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 34.705, + "new_cases_per_million": 1.798, + "new_cases_smoothed_per_million": 1.857, + "total_deaths_per_million": 1.105, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 1463.0, + "new_cases": 112.0, + "new_cases_smoothed": 79.286, + "total_deaths": 47.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 37.582, + "new_cases_per_million": 2.877, + "new_cases_smoothed_per_million": 2.037, + "total_deaths_per_million": 1.207, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 1531.0, + "new_cases": 68.0, + "new_cases_smoothed": 76.429, + "total_deaths": 57.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 39.329, + "new_cases_per_million": 1.747, + "new_cases_smoothed_per_million": 1.963, + "total_deaths_per_million": 1.464, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 1703.0, + "new_cases": 172.0, + "new_cases_smoothed": 96.0, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 43.747, + "new_cases_per_million": 4.418, + "new_cases_smoothed_per_million": 2.466, + "total_deaths_per_million": 1.464, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 1827.0, + "new_cases": 124.0, + "new_cases_smoothed": 105.0, + "total_deaths": 60.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 46.932, + "new_cases_per_million": 3.185, + "new_cases_smoothed_per_million": 2.697, + "total_deaths_per_million": 1.541, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 1949.0, + "new_cases": 122.0, + "new_cases_smoothed": 110.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 50.066, + "new_cases_per_million": 3.134, + "new_cases_smoothed_per_million": 2.837, + "total_deaths_per_million": 1.541, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 2171.0, + "new_cases": 222.0, + "new_cases_smoothed": 127.143, + "total_deaths": 64.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 55.769, + "new_cases_per_million": 5.703, + "new_cases_smoothed_per_million": 3.266, + "total_deaths_per_million": 1.644, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 2335.0, + "new_cases": 164.0, + "new_cases_smoothed": 140.571, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 59.982, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 3.611, + "total_deaths_per_million": 1.747, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 2469.0, + "new_cases": 134.0, + "new_cases_smoothed": 143.714, + "total_deaths": 72.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 63.424, + "new_cases_per_million": 3.442, + "new_cases_smoothed_per_million": 3.692, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 2704.0, + "new_cases": 235.0, + "new_cases_smoothed": 167.571, + "total_deaths": 85.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 69.461, + "new_cases_per_million": 6.037, + "new_cases_smoothed_per_million": 4.305, + "total_deaths_per_million": 2.183, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 2894.0, + "new_cases": 190.0, + "new_cases_smoothed": 170.143, + "total_deaths": 90.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 74.342, + "new_cases_per_million": 4.881, + "new_cases_smoothed_per_million": 4.371, + "total_deaths_per_million": 2.312, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 3224.0, + "new_cases": 330.0, + "new_cases_smoothed": 199.571, + "total_deaths": 95.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 82.819, + "new_cases_per_million": 8.477, + "new_cases_smoothed_per_million": 5.127, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 3392.0, + "new_cases": 168.0, + "new_cases_smoothed": 206.143, + "total_deaths": 104.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 87.134, + "new_cases_per_million": 4.316, + "new_cases_smoothed_per_million": 5.295, + "total_deaths_per_million": 2.672, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 3563.0, + "new_cases": 171.0, + "new_cases_smoothed": 198.857, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 91.527, + "new_cases_per_million": 4.393, + "new_cases_smoothed_per_million": 5.108, + "total_deaths_per_million": 2.723, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 3778.0, + "new_cases": 215.0, + "new_cases_smoothed": 206.143, + "total_deaths": 109.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 97.05, + "new_cases_per_million": 5.523, + "new_cases_smoothed_per_million": 5.295, + "total_deaths_per_million": 2.8, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 4033.0, + "new_cases": 255.0, + "new_cases_smoothed": 223.429, + "total_deaths": 115.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 103.601, + "new_cases_per_million": 6.55, + "new_cases_smoothed_per_million": 5.739, + "total_deaths_per_million": 2.954, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 4402.0, + "new_cases": 369.0, + "new_cases_smoothed": 242.571, + "total_deaths": 120.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 113.08, + "new_cases_per_million": 9.479, + "new_cases_smoothed_per_million": 6.231, + "total_deaths_per_million": 3.083, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 4687.0, + "new_cases": 285.0, + "new_cases_smoothed": 256.143, + "total_deaths": 122.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 120.401, + "new_cases_per_million": 7.321, + "new_cases_smoothed_per_million": 6.58, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 4967.0, + "new_cases": 280.0, + "new_cases_smoothed": 249.0, + "total_deaths": 127.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 127.593, + "new_cases_per_million": 7.193, + "new_cases_smoothed_per_million": 6.396, + "total_deaths_per_million": 3.262, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 5226.0, + "new_cases": 259.0, + "new_cases_smoothed": 262.0, + "total_deaths": 130.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 134.247, + "new_cases_per_million": 6.653, + "new_cases_smoothed_per_million": 6.73, + "total_deaths_per_million": 3.339, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.095, + "stringency_index": 84.26 + }, + { + "date": "2020-05-15", + "total_cases": 5339.0, + "new_cases": 113.0, + "new_cases_smoothed": 253.714, + "total_deaths": 136.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 137.149, + "new_cases_per_million": 2.903, + "new_cases_smoothed_per_million": 6.517, + "total_deaths_per_million": 3.494, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.11, + "stringency_index": 84.26 + }, + { + "date": "2020-05-16", + "total_cases": 6402.0, + "new_cases": 1063.0, + "new_cases_smoothed": 374.857, + "total_deaths": 168.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 164.456, + "new_cases_per_million": 27.307, + "new_cases_smoothed_per_million": 9.629, + "total_deaths_per_million": 4.316, + "new_deaths_per_million": 0.822, + "new_deaths_smoothed_per_million": 0.217, + "stringency_index": 84.26 + }, + { + "date": "2020-05-17", + "total_cases": 6402.0, + "new_cases": 0.0, + "new_cases_smoothed": 338.429, + "total_deaths": 168.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 164.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.694, + "total_deaths_per_million": 4.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 84.26 + }, + { + "date": "2020-05-18", + "total_cases": 6664.0, + "new_cases": 262.0, + "new_cases_smoothed": 323.143, + "total_deaths": 169.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 171.186, + "new_cases_per_million": 6.73, + "new_cases_smoothed_per_million": 8.301, + "total_deaths_per_million": 4.341, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.18, + "stringency_index": 84.26 + }, + { + "date": "2020-05-19", + "total_cases": 7072.0, + "new_cases": 408.0, + "new_cases_smoothed": 340.714, + "total_deaths": 173.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 181.667, + "new_cases_per_million": 10.481, + "new_cases_smoothed_per_million": 8.752, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 84.26 + }, + { + "date": "2020-05-20", + "total_cases": 7653.0, + "new_cases": 581.0, + "new_cases_smoothed": 383.714, + "total_deaths": 178.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 196.592, + "new_cases_per_million": 14.925, + "new_cases_smoothed_per_million": 9.857, + "total_deaths_per_million": 4.573, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 84.26 + }, + { + "date": "2020-05-21", + "total_cases": 8145.0, + "new_cases": 492.0, + "new_cases_smoothed": 417.0, + "total_deaths": 187.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 209.231, + "new_cases_per_million": 12.639, + "new_cases_smoothed_per_million": 10.712, + "total_deaths_per_million": 4.804, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 84.26 + }, + { + "date": "2020-05-22", + "total_cases": 8676.0, + "new_cases": 531.0, + "new_cases_smoothed": 476.714, + "total_deaths": 193.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 222.871, + "new_cases_per_million": 13.64, + "new_cases_smoothed_per_million": 12.246, + "total_deaths_per_million": 4.958, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 84.26 + }, + { + "date": "2020-05-23", + "total_cases": 9216.0, + "new_cases": 540.0, + "new_cases_smoothed": 402.0, + "total_deaths": 205.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 236.743, + "new_cases_per_million": 13.872, + "new_cases_smoothed_per_million": 10.327, + "total_deaths_per_million": 5.266, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.136, + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 9998.0, + "new_cases": 782.0, + "new_cases_smoothed": 513.714, + "total_deaths": 216.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 256.831, + "new_cases_per_million": 20.088, + "new_cases_smoothed_per_million": 13.196, + "total_deaths_per_million": 5.549, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 10582.0, + "new_cases": 584.0, + "new_cases_smoothed": 559.714, + "total_deaths": 218.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 271.833, + "new_cases_per_million": 15.002, + "new_cases_smoothed_per_million": 14.378, + "total_deaths_per_million": 5.6, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.18, + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 11173.0, + "new_cases": 591.0, + "new_cases_smoothed": 585.857, + "total_deaths": 219.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 287.015, + "new_cases_per_million": 15.182, + "new_cases_smoothed_per_million": 15.05, + "total_deaths_per_million": 5.626, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 11831.0, + "new_cases": 658.0, + "new_cases_smoothed": 596.857, + "total_deaths": 220.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 303.917, + "new_cases_per_million": 16.903, + "new_cases_smoothed_per_million": 15.332, + "total_deaths_per_million": 5.651, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 12456.0, + "new_cases": 625.0, + "new_cases_smoothed": 615.857, + "total_deaths": 227.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 319.973, + "new_cases_per_million": 16.055, + "new_cases_smoothed_per_million": 15.82, + "total_deaths_per_million": 5.831, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 13036.0, + "new_cases": 580.0, + "new_cases_smoothed": 622.857, + "total_deaths": 235.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 334.872, + "new_cases_per_million": 14.899, + "new_cases_smoothed_per_million": 16.0, + "total_deaths_per_million": 6.037, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 13659.0, + "new_cases": 623.0, + "new_cases_smoothed": 634.714, + "total_deaths": 246.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 350.875, + "new_cases_per_million": 16.004, + "new_cases_smoothed_per_million": 16.305, + "total_deaths_per_million": 6.319, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 14525.0, + "new_cases": 866.0, + "new_cases_smoothed": 646.714, + "total_deaths": 249.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 373.121, + "new_cases_per_million": 22.246, + "new_cases_smoothed_per_million": 16.613, + "total_deaths_per_million": 6.396, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 15205.0, + "new_cases": 680.0, + "new_cases_smoothed": 660.429, + "total_deaths": 257.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 390.589, + "new_cases_per_million": 17.468, + "new_cases_smoothed_per_million": 16.965, + "total_deaths_per_million": 6.602, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.143, + "stringency_index": 84.26 + }, + { + "date": "2020-06-02", + "total_cases": 15750.0, + "new_cases": 545.0, + "new_cases_smoothed": 653.857, + "total_deaths": 265.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 404.59, + "new_cases_per_million": 14.0, + "new_cases_smoothed_per_million": 16.796, + "total_deaths_per_million": 6.807, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 84.26 + }, + { + "date": "2020-06-03", + "total_cases": 16509.0, + "new_cases": 759.0, + "new_cases_smoothed": 668.286, + "total_deaths": 270.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 424.087, + "new_cases_per_million": 19.497, + "new_cases_smoothed_per_million": 17.167, + "total_deaths_per_million": 6.936, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 84.26 + }, + { + "date": "2020-06-04", + "total_cases": 17267.0, + "new_cases": 758.0, + "new_cases_smoothed": 687.286, + "total_deaths": 294.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 443.559, + "new_cases_per_million": 19.472, + "new_cases_smoothed_per_million": 17.655, + "total_deaths_per_million": 7.552, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 84.26 + }, + { + "date": "2020-06-05", + "total_cases": 18054.0, + "new_cases": 787.0, + "new_cases_smoothed": 716.857, + "total_deaths": 300.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 463.775, + "new_cases_per_million": 20.217, + "new_cases_smoothed_per_million": 18.415, + "total_deaths_per_million": 7.706, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.239, + "stringency_index": 84.26 + }, + { + "date": "2020-06-06", + "total_cases": 18969.0, + "new_cases": 915.0, + "new_cases_smoothed": 758.571, + "total_deaths": 309.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 487.28, + "new_cases_per_million": 23.505, + "new_cases_smoothed_per_million": 19.486, + "total_deaths_per_million": 7.938, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 84.26 + }, + { + "date": "2020-06-07", + "total_cases": 19551.0, + "new_cases": 582.0, + "new_cases_smoothed": 718.0, + "total_deaths": 327.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 502.23, + "new_cases_per_million": 14.951, + "new_cases_smoothed_per_million": 18.444, + "total_deaths_per_million": 8.4, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.286, + "stringency_index": 84.26 + }, + { + "date": "2020-06-08", + "total_cases": 20342.0, + "new_cases": 791.0, + "new_cases_smoothed": 733.857, + "total_deaths": 357.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 522.55, + "new_cases_per_million": 20.319, + "new_cases_smoothed_per_million": 18.851, + "total_deaths_per_million": 9.171, + "new_deaths_per_million": 0.771, + "new_deaths_smoothed_per_million": 0.367, + "stringency_index": 84.26 + }, + { + "date": "2020-06-09", + "total_cases": 20917.0, + "new_cases": 575.0, + "new_cases_smoothed": 738.143, + "total_deaths": 369.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 537.321, + "new_cases_per_million": 14.771, + "new_cases_smoothed_per_million": 18.962, + "total_deaths_per_million": 9.479, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.382, + "stringency_index": 78.7 + }, + { + "date": "2020-06-10", + "total_cases": 21459.0, + "new_cases": 542.0, + "new_cases_smoothed": 707.143, + "total_deaths": 384.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 551.244, + "new_cases_per_million": 13.923, + "new_cases_smoothed_per_million": 18.165, + "total_deaths_per_million": 9.864, + "new_deaths_per_million": 0.385, + "new_deaths_smoothed_per_million": 0.418, + "stringency_index": 78.7 + }, + { + "date": "2020-06-11", + "total_cases": 22143.0, + "new_cases": 684.0, + "new_cases_smoothed": 696.571, + "total_deaths": 405.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 568.814, + "new_cases_per_million": 17.571, + "new_cases_smoothed_per_million": 17.894, + "total_deaths_per_million": 10.404, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.407, + "stringency_index": 78.7 + }, + { + "date": "2020-06-12", + "total_cases": 22890.0, + "new_cases": 747.0, + "new_cases_smoothed": 690.857, + "total_deaths": 426.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 588.003, + "new_cases_per_million": 19.189, + "new_cases_smoothed_per_million": 17.747, + "total_deaths_per_million": 10.943, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.462, + "stringency_index": 78.7 + }, + { + "date": "2020-06-13", + "total_cases": 23546.0, + "new_cases": 656.0, + "new_cases_smoothed": 653.857, + "total_deaths": 446.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 604.855, + "new_cases_per_million": 16.851, + "new_cases_smoothed_per_million": 16.796, + "total_deaths_per_million": 11.457, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.503, + "stringency_index": 78.7 + }, + { + "date": "2020-06-14", + "total_cases": 24102.0, + "new_cases": 556.0, + "new_cases_smoothed": 650.143, + "total_deaths": 451.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 619.138, + "new_cases_per_million": 14.283, + "new_cases_smoothed_per_million": 16.701, + "total_deaths_per_million": 11.585, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.455, + "stringency_index": 78.7 + }, + { + "date": "2020-06-15", + "total_cases": 24766.0, + "new_cases": 664.0, + "new_cases_smoothed": 632.0, + "total_deaths": 471.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 636.195, + "new_cases_per_million": 17.057, + "new_cases_smoothed_per_million": 16.235, + "total_deaths_per_million": 12.099, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.418, + "stringency_index": 78.7 + }, + { + "date": "2020-06-16", + "total_cases": 25527.0, + "new_cases": 761.0, + "new_cases_smoothed": 658.571, + "total_deaths": 478.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 655.743, + "new_cases_per_million": 19.549, + "new_cases_smoothed_per_million": 16.918, + "total_deaths_per_million": 12.279, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 78.7 + }, + { + "date": "2020-06-17", + "total_cases": 26310.0, + "new_cases": 783.0, + "new_cases_smoothed": 693.0, + "total_deaths": 491.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 675.857, + "new_cases_per_million": 20.114, + "new_cases_smoothed_per_million": 17.802, + "total_deaths_per_million": 12.613, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.393, + "stringency_index": 78.7 + }, + { + "date": "2020-06-18", + "total_cases": 26874.0, + "new_cases": 564.0, + "new_cases_smoothed": 675.857, + "total_deaths": 504.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 690.345, + "new_cases_per_million": 14.488, + "new_cases_smoothed_per_million": 17.362, + "total_deaths_per_million": 12.947, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 78.7 + }, + { + "date": "2020-06-19", + "total_cases": 27532.0, + "new_cases": 658.0, + "new_cases_smoothed": 663.143, + "total_deaths": 546.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 707.248, + "new_cases_per_million": 16.903, + "new_cases_smoothed_per_million": 17.035, + "total_deaths_per_million": 14.026, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 78.7 + }, + { + "date": "2020-06-20", + "total_cases": 27878.0, + "new_cases": 346.0, + "new_cases_smoothed": 618.857, + "total_deaths": 548.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 716.136, + "new_cases_per_million": 8.888, + "new_cases_smoothed_per_million": 15.897, + "total_deaths_per_million": 14.077, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.374, + "stringency_index": 78.7 + }, + { + "date": "2020-06-21", + "total_cases": 28424.0, + "new_cases": 546.0, + "new_cases_smoothed": 617.429, + "total_deaths": 569.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 730.162, + "new_cases_per_million": 14.026, + "new_cases_smoothed_per_million": 15.861, + "total_deaths_per_million": 14.617, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.433, + "stringency_index": 78.7 + }, + { + "date": "2020-06-22", + "total_cases": 28833.0, + "new_cases": 409.0, + "new_cases_smoothed": 581.0, + "total_deaths": 581.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 740.669, + "new_cases_per_million": 10.506, + "new_cases_smoothed_per_million": 14.925, + "total_deaths_per_million": 14.925, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 78.7 + }, + { + "date": "2020-06-23", + "total_cases": 29143.0, + "new_cases": 310.0, + "new_cases_smoothed": 516.571, + "total_deaths": 598.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 748.632, + "new_cases_per_million": 7.963, + "new_cases_smoothed_per_million": 13.27, + "total_deaths_per_million": 15.362, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 78.7 + }, + { + "date": "2020-06-24", + "total_cases": 29481.0, + "new_cases": 338.0, + "new_cases_smoothed": 453.0, + "total_deaths": 618.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 757.315, + "new_cases_per_million": 8.683, + "new_cases_smoothed_per_million": 11.637, + "total_deaths_per_million": 15.875, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.466, + "stringency_index": 78.7 + }, + { + "date": "2020-06-25", + "total_cases": 29715.0, + "new_cases": 234.0, + "new_cases_smoothed": 405.857, + "total_deaths": 639.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 763.326, + "new_cases_per_million": 6.011, + "new_cases_smoothed_per_million": 10.426, + "total_deaths_per_million": 16.415, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.495, + "stringency_index": 78.7 + }, + { + "date": "2020-06-26", + "total_cases": 30175.0, + "new_cases": 460.0, + "new_cases_smoothed": 377.571, + "total_deaths": 675.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 775.142, + "new_cases_per_million": 11.817, + "new_cases_smoothed_per_million": 9.699, + "total_deaths_per_million": 17.34, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 0.473, + "stringency_index": 78.7 + }, + { + "date": "2020-06-27", + "total_cases": 30451.0, + "new_cases": 276.0, + "new_cases_smoothed": 367.571, + "total_deaths": 683.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 782.232, + "new_cases_per_million": 7.09, + "new_cases_smoothed_per_million": 9.442, + "total_deaths_per_million": 17.545, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.495, + "stringency_index": 78.7 + }, + { + "date": "2020-06-28", + "total_cases": 30616.0, + "new_cases": 165.0, + "new_cases_smoothed": 313.143, + "total_deaths": 703.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 786.471, + "new_cases_per_million": 4.239, + "new_cases_smoothed_per_million": 8.044, + "total_deaths_per_million": 18.059, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.492, + "stringency_index": 78.7 + }, + { + "date": "2020-06-29", + "total_cases": 30967.0, + "new_cases": 351.0, + "new_cases_smoothed": 304.857, + "total_deaths": 721.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 795.487, + "new_cases_per_million": 9.017, + "new_cases_smoothed_per_million": 7.831, + "total_deaths_per_million": 18.521, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 78.7 + }, + { + "date": "2020-06-30", + "total_cases": 31238.0, + "new_cases": 271.0, + "new_cases_smoothed": 299.286, + "total_deaths": 733.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 802.449, + "new_cases_per_million": 6.962, + "new_cases_smoothed_per_million": 7.688, + "total_deaths_per_million": 18.829, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.495, + "stringency_index": 78.7 + }, + { + "date": "2020-07-01", + "total_cases": 31517.0, + "new_cases": 279.0, + "new_cases_smoothed": 290.857, + "total_deaths": 746.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 809.616, + "new_cases_per_million": 7.167, + "new_cases_smoothed_per_million": 7.472, + "total_deaths_per_million": 19.163, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.47, + "stringency_index": 78.7 + }, + { + "date": "2020-07-02", + "total_cases": 31836.0, + "new_cases": 319.0, + "new_cases_smoothed": 303.0, + "total_deaths": 774.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 817.81, + "new_cases_per_million": 8.195, + "new_cases_smoothed_per_million": 7.784, + "total_deaths_per_million": 19.883, + "new_deaths_per_million": 0.719, + "new_deaths_smoothed_per_million": 0.495, + "stringency_index": 78.7 + }, + { + "date": "2020-07-03", + "total_cases": 32022.0, + "new_cases": 186.0, + "new_cases_smoothed": 263.857, + "total_deaths": 807.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 822.588, + "new_cases_per_million": 4.778, + "new_cases_smoothed_per_million": 6.778, + "total_deaths_per_million": 20.73, + "new_deaths_per_million": 0.848, + "new_deaths_smoothed_per_million": 0.484, + "stringency_index": 78.7 + }, + { + "date": "2020-07-04", + "total_cases": 32324.0, + "new_cases": 302.0, + "new_cases_smoothed": 267.571, + "total_deaths": 819.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 830.346, + "new_cases_per_million": 7.758, + "new_cases_smoothed_per_million": 6.873, + "total_deaths_per_million": 21.039, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.499, + "stringency_index": 78.7 + }, + { + "date": "2020-07-05", + "total_cases": 32672.0, + "new_cases": 348.0, + "new_cases_smoothed": 293.714, + "total_deaths": 826.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 839.286, + "new_cases_per_million": 8.94, + "new_cases_smoothed_per_million": 7.545, + "total_deaths_per_million": 21.218, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.451, + "stringency_index": 78.7 + }, + { + "date": "2020-07-06", + "total_cases": 32951.0, + "new_cases": 279.0, + "new_cases_smoothed": 283.429, + "total_deaths": 864.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 846.453, + "new_cases_per_million": 7.167, + "new_cases_smoothed_per_million": 7.281, + "total_deaths_per_million": 22.195, + "new_deaths_per_million": 0.976, + "new_deaths_smoothed_per_million": 0.525, + "stringency_index": 78.7 + }, + { + "date": "2020-07-07", + "total_cases": 33384.0, + "new_cases": 433.0, + "new_cases_smoothed": 306.571, + "total_deaths": 920.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 857.576, + "new_cases_per_million": 11.123, + "new_cases_smoothed_per_million": 7.875, + "total_deaths_per_million": 23.633, + "new_deaths_per_million": 1.439, + "new_deaths_smoothed_per_million": 0.686, + "stringency_index": 78.7 + }, + { + "date": "2020-07-08", + "total_cases": 33594.0, + "new_cases": 210.0, + "new_cases_smoothed": 296.714, + "total_deaths": 936.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 862.97, + "new_cases_per_million": 5.395, + "new_cases_smoothed_per_million": 7.622, + "total_deaths_per_million": 24.044, + "new_deaths_per_million": 0.411, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 78.7 + }, + { + "date": "2020-07-09", + "total_cases": 33653.0, + "new_cases": 59.0, + "new_cases_smoothed": 259.571, + "total_deaths": 937.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 864.486, + "new_cases_per_million": 1.516, + "new_cases_smoothed_per_million": 6.668, + "total_deaths_per_million": 24.07, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.598, + "stringency_index": 78.7 + }, + { + "date": "2020-07-10", + "total_cases": 33908.0, + "new_cases": 255.0, + "new_cases_smoothed": 269.429, + "total_deaths": 957.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 871.036, + "new_cases_per_million": 6.55, + "new_cases_smoothed_per_million": 6.921, + "total_deaths_per_million": 24.584, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.55, + "stringency_index": 78.7 + }, + { + "date": "2020-07-11", + "total_cases": 34366.0, + "new_cases": 458.0, + "new_cases_smoothed": 291.714, + "total_deaths": 994.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 882.802, + "new_cases_per_million": 11.765, + "new_cases_smoothed_per_million": 7.494, + "total_deaths_per_million": 25.534, + "new_deaths_per_million": 0.95, + "new_deaths_smoothed_per_million": 0.642, + "stringency_index": 78.7 + }, + { + "date": "2020-07-12", + "total_cases": 34451.0, + "new_cases": 85.0, + "new_cases_smoothed": 254.143, + "total_deaths": 1010.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 884.985, + "new_cases_per_million": 2.183, + "new_cases_smoothed_per_million": 6.528, + "total_deaths_per_million": 25.945, + "new_deaths_per_million": 0.411, + "new_deaths_smoothed_per_million": 0.675, + "stringency_index": 78.7 + }, + { + "date": "2020-07-13", + "total_cases": 34451.0, + "new_cases": 0.0, + "new_cases_smoothed": 214.286, + "total_deaths": 1010.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 884.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.505, + "total_deaths_per_million": 25.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.536, + "stringency_index": 78.7 + }, + { + "date": "2020-07-14", + "total_cases": 34455.0, + "new_cases": 4.0, + "new_cases_smoothed": 153.0, + "total_deaths": 1012.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 885.088, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 3.93, + "total_deaths_per_million": 25.996, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.338, + "stringency_index": 78.7 + }, + { + "date": "2020-07-15", + "total_cases": 34740.0, + "new_cases": 285.0, + "new_cases_smoothed": 163.714, + "total_deaths": 1045.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 892.409, + "new_cases_per_million": 7.321, + "new_cases_smoothed_per_million": 4.206, + "total_deaths_per_million": 26.844, + "new_deaths_per_million": 0.848, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 78.7 + }, + { + "date": "2020-07-16", + "total_cases": 34994.0, + "new_cases": 254.0, + "new_cases_smoothed": 191.571, + "total_deaths": 1094.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 898.934, + "new_cases_per_million": 6.525, + "new_cases_smoothed_per_million": 4.921, + "total_deaths_per_million": 28.103, + "new_deaths_per_million": 1.259, + "new_deaths_smoothed_per_million": 0.576, + "stringency_index": 78.7 + }, + { + "date": "2020-07-17", + "total_cases": 35070.0, + "new_cases": 76.0, + "new_cases_smoothed": 166.0, + "total_deaths": 1115.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 900.886, + "new_cases_per_million": 1.952, + "new_cases_smoothed_per_million": 4.264, + "total_deaths_per_million": 28.642, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.58, + "stringency_index": 78.7 + }, + { + "date": "2020-07-18", + "total_cases": 35289.0, + "new_cases": 219.0, + "new_cases_smoothed": 131.857, + "total_deaths": 1147.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 906.512, + "new_cases_per_million": 5.626, + "new_cases_smoothed_per_million": 3.387, + "total_deaths_per_million": 29.464, + "new_deaths_per_million": 0.822, + "new_deaths_smoothed_per_million": 0.561, + "stringency_index": 78.7 + }, + { + "date": "2020-07-19", + "total_cases": 35301.0, + "new_cases": 12.0, + "new_cases_smoothed": 121.429, + "total_deaths": 1164.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 906.82, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 3.119, + "total_deaths_per_million": 29.901, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.565, + "stringency_index": 78.7 + }, + { + "date": "2020-07-20", + "total_cases": 35475.0, + "new_cases": 174.0, + "new_cases_smoothed": 146.286, + "total_deaths": 1181.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 911.29, + "new_cases_per_million": 4.47, + "new_cases_smoothed_per_million": 3.758, + "total_deaths_per_million": 30.338, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.628, + "stringency_index": 78.7 + }, + { + "date": "2020-07-21", + "total_cases": 35615.0, + "new_cases": 140.0, + "new_cases_smoothed": 165.714, + "total_deaths": 1186.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 914.886, + "new_cases_per_million": 3.596, + "new_cases_smoothed_per_million": 4.257, + "total_deaths_per_million": 30.466, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.639, + "stringency_index": 78.7 + }, + { + "date": "2020-07-22", + "total_cases": 35727.0, + "new_cases": 112.0, + "new_cases_smoothed": 141.0, + "total_deaths": 1190.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 917.763, + "new_cases_per_million": 2.877, + "new_cases_smoothed_per_million": 3.622, + "total_deaths_per_million": 30.569, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.532, + "stringency_index": 78.7 + }, + { + "date": "2020-07-23", + "total_cases": 35915.0, + "new_cases": 188.0, + "new_cases_smoothed": 131.571, + "total_deaths": 1211.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 922.593, + "new_cases_per_million": 4.829, + "new_cases_smoothed_per_million": 3.38, + "total_deaths_per_million": 31.108, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.429, + "stringency_index": 78.7 + }, + { + "date": "2020-07-24", + "total_cases": 35928.0, + "new_cases": 13.0, + "new_cases_smoothed": 122.571, + "total_deaths": 1211.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 922.927, + "new_cases_per_million": 0.334, + "new_cases_smoothed_per_million": 3.149, + "total_deaths_per_million": 31.108, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.352, + "stringency_index": 78.7 + }, + { + "date": "2020-07-25", + "total_cases": 36036.0, + "new_cases": 108.0, + "new_cases_smoothed": 106.714, + "total_deaths": 1246.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 925.701, + "new_cases_per_million": 2.774, + "new_cases_smoothed_per_million": 2.741, + "total_deaths_per_million": 32.008, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 78.7 + }, + { + "date": "2020-07-26", + "total_cases": 36157.0, + "new_cases": 121.0, + "new_cases_smoothed": 122.286, + "total_deaths": 1259.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 928.809, + "new_cases_per_million": 3.108, + "new_cases_smoothed_per_million": 3.141, + "total_deaths_per_million": 32.341, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.349, + "stringency_index": 78.7 + }, + { + "date": "2020-07-27", + "total_cases": 36263.0, + "new_cases": 106.0, + "new_cases_smoothed": 112.571, + "total_deaths": 1269.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 931.532, + "new_cases_per_million": 2.723, + "new_cases_smoothed_per_million": 2.892, + "total_deaths_per_million": 32.598, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.323, + "stringency_index": 78.7 + }, + { + "date": "2020-07-28", + "total_cases": 36368.0, + "new_cases": 105.0, + "new_cases_smoothed": 107.571, + "total_deaths": 1270.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 934.229, + "new_cases_per_million": 2.697, + "new_cases_smoothed_per_million": 2.763, + "total_deaths_per_million": 32.624, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 78.7 + }, + { + "date": "2020-07-29", + "total_cases": 36471.0, + "new_cases": 103.0, + "new_cases_smoothed": 106.286, + "total_deaths": 1271.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 936.875, + "new_cases_per_million": 2.646, + "new_cases_smoothed_per_million": 2.73, + "total_deaths_per_million": 32.65, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.297, + "stringency_index": 78.7 + }, + { + "date": "2020-07-30", + "total_cases": 36471.0, + "new_cases": 0.0, + "new_cases_smoothed": 79.429, + "total_deaths": 1271.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 936.875, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.04, + "total_deaths_per_million": 32.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 78.7 + }, + { + "date": "2020-07-31", + "total_cases": 36542.0, + "new_cases": 71.0, + "new_cases_smoothed": 87.714, + "total_deaths": 1271.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 938.699, + "new_cases_per_million": 1.824, + "new_cases_smoothed_per_million": 2.253, + "total_deaths_per_million": 32.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 78.7 + }, + { + "date": "2020-08-01", + "total_cases": 36710.0, + "new_cases": 168.0, + "new_cases_smoothed": 96.286, + "total_deaths": 1283.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 943.015, + "new_cases_per_million": 4.316, + "new_cases_smoothed_per_million": 2.473, + "total_deaths_per_million": 32.958, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.136, + "stringency_index": 78.7 + }, + { + "date": "2020-08-02", + "total_cases": 36710.0, + "new_cases": 0.0, + "new_cases_smoothed": 79.0, + "total_deaths": 1283.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 943.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.029, + "total_deaths_per_million": 32.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 78.7 + }, + { + "date": "2020-08-03", + "total_cases": 36710.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.857, + "total_deaths": 1284.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 943.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 32.984, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 78.7 + }, + { + "date": "2020-08-04", + "total_cases": 36747.0, + "new_cases": 37.0, + "new_cases_smoothed": 54.143, + "total_deaths": 1288.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 943.965, + "new_cases_per_million": 0.95, + "new_cases_smoothed_per_million": 1.391, + "total_deaths_per_million": 33.086, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 75.0 + }, + { + "date": "2020-08-05", + "total_cases": 36829.0, + "new_cases": 82.0, + "new_cases_smoothed": 51.143, + "total_deaths": 1294.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 946.072, + "new_cases_per_million": 2.106, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 33.241, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 71.3 + }, + { + "date": "2020-08-06", + "total_cases": 36896.0, + "new_cases": 67.0, + "new_cases_smoothed": 60.714, + "total_deaths": 1298.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 947.793, + "new_cases_per_million": 1.721, + "new_cases_smoothed_per_million": 1.56, + "total_deaths_per_million": 33.343, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 71.3 + }, + { + "date": "2020-08-07", + "total_cases": 36937.0, + "new_cases": 41.0, + "new_cases_smoothed": 56.429, + "total_deaths": 1298.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 948.846, + "new_cases_per_million": 1.053, + "new_cases_smoothed_per_million": 1.45, + "total_deaths_per_million": 33.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 71.3 + }, + { + "date": "2020-08-08", + "total_cases": 37015.0, + "new_cases": 78.0, + "new_cases_smoothed": 43.571, + "total_deaths": 1307.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 950.85, + "new_cases_per_million": 2.004, + "new_cases_smoothed_per_million": 1.119, + "total_deaths_per_million": 33.575, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 71.3 + }, + { + "date": "2020-08-09", + "total_cases": 37054.0, + "new_cases": 39.0, + "new_cases_smoothed": 49.143, + "total_deaths": 1312.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 951.852, + "new_cases_per_million": 1.002, + "new_cases_smoothed_per_million": 1.262, + "total_deaths_per_million": 33.703, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 71.3 + }, + { + "date": "2020-08-10", + "total_cases": 37054.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.143, + "total_deaths": 1312.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 951.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.262, + "total_deaths_per_million": 33.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 71.3 + }, + { + "date": "2020-08-11", + "total_cases": 37054.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.857, + "total_deaths": 1312.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 951.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.127, + "total_deaths_per_million": 33.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 71.3 + }, + { + "date": "2020-08-12", + "total_cases": 37269.0, + "new_cases": 215.0, + "new_cases_smoothed": 62.857, + "total_deaths": 1344.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 957.374, + "new_cases_per_million": 5.523, + "new_cases_smoothed_per_million": 1.615, + "total_deaths_per_million": 34.525, + "new_deaths_per_million": 0.822, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 71.3 + }, + { + "date": "2020-08-13", + "total_cases": 37345.0, + "new_cases": 76.0, + "new_cases_smoothed": 64.143, + "total_deaths": 1354.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 959.327, + "new_cases_per_million": 1.952, + "new_cases_smoothed_per_million": 1.648, + "total_deaths_per_million": 34.782, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.206, + "stringency_index": 71.3 + }, + { + "date": "2020-08-14", + "total_cases": 37424.0, + "new_cases": 79.0, + "new_cases_smoothed": 69.571, + "total_deaths": 1363.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 961.356, + "new_cases_per_million": 2.029, + "new_cases_smoothed_per_million": 1.787, + "total_deaths_per_million": 35.013, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.239, + "stringency_index": 71.3 + }, + { + "date": "2020-08-15", + "total_cases": 37431.0, + "new_cases": 7.0, + "new_cases_smoothed": 59.429, + "total_deaths": 1363.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 961.536, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 35.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "stringency_index": 60.19 + }, + { + "date": "2020-08-16", + "total_cases": 37551.0, + "new_cases": 120.0, + "new_cases_smoothed": 71.0, + "total_deaths": 1370.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 964.619, + "new_cases_per_million": 3.083, + "new_cases_smoothed_per_million": 1.824, + "total_deaths_per_million": 35.193, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.213, + "stringency_index": 60.19 + }, + { + "date": "2020-08-17", + "total_cases": 37596.0, + "new_cases": 45.0, + "new_cases_smoothed": 77.429, + "total_deaths": 1375.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 965.775, + "new_cases_per_million": 1.156, + "new_cases_smoothed_per_million": 1.989, + "total_deaths_per_million": 35.321, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 60.19 + }, + { + "date": "2020-08-18", + "total_cases": 37599.0, + "new_cases": 3.0, + "new_cases_smoothed": 77.857, + "total_deaths": 1375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 965.852, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 2.0, + "total_deaths_per_million": 35.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 48.15 + }, + { + "date": "2020-08-19", + "total_cases": 37599.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.143, + "total_deaths": 1375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 965.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.211, + "total_deaths_per_million": 35.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 48.15 + }, + { + "date": "2020-08-20", + "total_cases": 37759.0, + "new_cases": 160.0, + "new_cases_smoothed": 59.143, + "total_deaths": 1383.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 969.962, + "new_cases_per_million": 4.11, + "new_cases_smoothed_per_million": 1.519, + "total_deaths_per_million": 35.527, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 48.15 + }, + { + "date": "2020-08-21", + "total_cases": 37856.0, + "new_cases": 97.0, + "new_cases_smoothed": 61.714, + "total_deaths": 1385.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 972.453, + "new_cases_per_million": 2.492, + "new_cases_smoothed_per_million": 1.585, + "total_deaths_per_million": 35.578, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 48.15 + }, + { + "date": "2020-08-22", + "total_cases": 37894.0, + "new_cases": 38.0, + "new_cases_smoothed": 66.143, + "total_deaths": 1385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 973.43, + "new_cases_per_million": 0.976, + "new_cases_smoothed_per_million": 1.699, + "total_deaths_per_million": 35.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 48.15 + }, + { + "date": "2020-08-23", + "total_cases": 37999.0, + "new_cases": 105.0, + "new_cases_smoothed": 64.0, + "total_deaths": 1387.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 976.127, + "new_cases_per_million": 2.697, + "new_cases_smoothed_per_million": 1.644, + "total_deaths_per_million": 35.63, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 44.44 + }, + { + "date": "2020-08-24", + "total_cases": 37999.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.571, + "total_deaths": 1387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 976.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.479, + "total_deaths_per_million": 35.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 44.44 + }, + { + "date": "2020-08-25", + "total_cases": 38070.0, + "new_cases": 71.0, + "new_cases_smoothed": 67.286, + "total_deaths": 1397.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 977.951, + "new_cases_per_million": 1.824, + "new_cases_smoothed_per_million": 1.728, + "total_deaths_per_million": 35.886, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 44.44 + }, + { + "date": "2020-08-26", + "total_cases": 38071.0, + "new_cases": 1.0, + "new_cases_smoothed": 67.429, + "total_deaths": 1397.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 977.976, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 1.732, + "total_deaths_per_million": 35.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 44.44 + }, + { + "date": "2020-08-27", + "total_cases": 38126.0, + "new_cases": 55.0, + "new_cases_smoothed": 52.429, + "total_deaths": 1401.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 979.389, + "new_cases_per_million": 1.413, + "new_cases_smoothed_per_million": 1.347, + "total_deaths_per_million": 35.989, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 44.44 + }, + { + "date": "2020-08-28", + "total_cases": 38129.0, + "new_cases": 3.0, + "new_cases_smoothed": 39.0, + "total_deaths": 1401.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 979.466, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 1.002, + "total_deaths_per_million": 35.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 44.44 + }, + { + "date": "2020-08-29", + "total_cases": 38140.0, + "new_cases": 11.0, + "new_cases_smoothed": 35.143, + "total_deaths": 1402.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 979.749, + "new_cases_per_million": 0.283, + "new_cases_smoothed_per_million": 0.903, + "total_deaths_per_million": 36.015, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 44.44 + }, + { + "date": "2020-08-30", + "total_cases": 38143.0, + "new_cases": 3.0, + "new_cases_smoothed": 20.571, + "total_deaths": 1402.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 979.826, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.528, + "total_deaths_per_million": 36.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 44.44 + }, + { + "date": "2020-08-31", + "total_cases": 38162.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.286, + "total_deaths": 1402.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 980.314, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 0.598, + "total_deaths_per_million": 36.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 44.44 + }, + { + "date": "2020-09-01", + "total_cases": 38196.0, + "new_cases": 34.0, + "new_cases_smoothed": 18.0, + "total_deaths": 1406.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 981.187, + "new_cases_per_million": 0.873, + "new_cases_smoothed_per_million": 0.462, + "total_deaths_per_million": 36.118, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 44.44 + }, + { + "date": "2020-09-02", + "total_cases": 38205.0, + "new_cases": 9.0, + "new_cases_smoothed": 19.143, + "total_deaths": 1406.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 981.419, + "new_cases_per_million": 0.231, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 36.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 44.44 + }, + { + "date": "2020-09-03", + "total_cases": 38243.0, + "new_cases": 38.0, + "new_cases_smoothed": 16.714, + "total_deaths": 1409.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 982.395, + "new_cases_per_million": 0.976, + "new_cases_smoothed_per_million": 0.429, + "total_deaths_per_million": 36.195, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 44.44 + }, + { + "date": "2020-09-04", + "total_cases": 38288.0, + "new_cases": 45.0, + "new_cases_smoothed": 22.714, + "total_deaths": 1410.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 983.551, + "new_cases_per_million": 1.156, + "new_cases_smoothed_per_million": 0.583, + "total_deaths_per_million": 36.22, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 44.44 + }, + { + "date": "2020-09-05", + "total_cases": 38304.0, + "new_cases": 16.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1410.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 983.962, + "new_cases_per_million": 0.411, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 36.22, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029 + } + ] + }, + "ALB": { + "continent": "Europe", + "location": "Albania", + "population": 2877800.0, + "population_density": 104.871, + "median_age": 38.0, + "aged_65_older": 13.188, + "aged_70_older": 8.643, + "gdp_per_capita": 11803.431, + "extreme_poverty": 1.1, + "cardiovasc_death_rate": 304.195, + "diabetes_prevalence": 10.08, + "female_smokers": 7.1, + "male_smokers": 51.2, + "hospital_beds_per_thousand": 2.89, + "life_expectancy": 78.57, + "data": [ + { + "date": "2020-03-09", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.695, + "new_cases_per_million": 0.695, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-10", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.085, + "new_cases_per_million": 1.39, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-11", + "total_cases": 10.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.475, + "new_cases_per_million": 1.39, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-12", + "total_cases": 11.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 3.822, + "new_cases_per_million": 0.347, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.347, + "stringency_index": 51.85 + }, + { + "date": "2020-03-13", + "total_cases": 23.0, + "new_cases": 12.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.992, + "new_cases_per_million": 4.17, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-03-14", + "total_cases": 33.0, + "new_cases": 10.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 11.467, + "new_cases_per_million": 3.475, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-03-15", + "total_cases": 38.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13.205, + "new_cases_per_million": 1.737, + "new_cases_smoothed_per_million": 1.886, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-16", + "total_cases": 42.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.594, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 1.986, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-17", + "total_cases": 51.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.722, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 2.234, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-18", + "total_cases": 55.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.112, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.234, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-19", + "total_cases": 59.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.502, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-20", + "total_cases": 70.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.324, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 2.333, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 76.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.409, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 1.886, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 89.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.926, + "new_cases_per_million": 4.517, + "new_cases_smoothed_per_million": 2.333, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 84.26 + }, + { + "date": "2020-03-24", + "total_cases": 100.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.0, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 34.749, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 2.432, + "total_deaths_per_million": 1.39, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 84.26 + }, + { + "date": "2020-03-25", + "total_cases": 123.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 42.741, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 3.376, + "total_deaths_per_million": 1.737, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 84.26 + }, + { + "date": "2020-03-26", + "total_cases": 146.0, + "new_cases": 23.0, + "new_cases_smoothed": 12.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 50.733, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 4.319, + "total_deaths_per_million": 1.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 84.26 + }, + { + "date": "2020-03-27", + "total_cases": 174.0, + "new_cases": 28.0, + "new_cases_smoothed": 14.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 60.463, + "new_cases_per_million": 9.73, + "new_cases_smoothed_per_million": 5.163, + "total_deaths_per_million": 2.085, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 186.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.571, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 64.633, + "new_cases_per_million": 4.17, + "new_cases_smoothed_per_million": 5.758, + "total_deaths_per_million": 3.127, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.347, + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 197.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 68.455, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 6.007, + "total_deaths_per_million": 3.475, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 212.0, + "new_cases": 15.0, + "new_cases_smoothed": 17.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 73.667, + "new_cases_per_million": 5.212, + "new_cases_smoothed_per_million": 6.106, + "total_deaths_per_million": 3.475, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 223.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 77.49, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 6.106, + "total_deaths_per_million": 4.17, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 84.26 + }, + { + "date": "2020-04-01", + "total_cases": 243.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.143, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 84.44, + "new_cases_per_million": 6.95, + "new_cases_smoothed_per_million": 5.957, + "total_deaths_per_million": 5.212, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 84.26 + }, + { + "date": "2020-04-02", + "total_cases": 259.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 89.999, + "new_cases_per_million": 5.56, + "new_cases_smoothed_per_million": 5.609, + "total_deaths_per_million": 5.212, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 84.26 + }, + { + "date": "2020-04-03", + "total_cases": 277.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 96.254, + "new_cases_per_million": 6.255, + "new_cases_smoothed_per_million": 5.113, + "total_deaths_per_million": 5.56, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 84.26 + }, + { + "date": "2020-04-04", + "total_cases": 304.0, + "new_cases": 27.0, + "new_cases_smoothed": 16.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 105.636, + "new_cases_per_million": 9.382, + "new_cases_smoothed_per_million": 5.858, + "total_deaths_per_million": 5.907, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 84.26 + }, + { + "date": "2020-04-05", + "total_cases": 333.0, + "new_cases": 29.0, + "new_cases_smoothed": 19.429, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 115.713, + "new_cases_per_million": 10.077, + "new_cases_smoothed_per_million": 6.751, + "total_deaths_per_million": 6.602, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.447, + "stringency_index": 84.26 + }, + { + "date": "2020-04-06", + "total_cases": 361.0, + "new_cases": 28.0, + "new_cases_smoothed": 21.286, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 125.443, + "new_cases_per_million": 9.73, + "new_cases_smoothed_per_million": 7.397, + "total_deaths_per_million": 7.297, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.546, + "stringency_index": 84.26 + }, + { + "date": "2020-04-07", + "total_cases": 377.0, + "new_cases": 16.0, + "new_cases_smoothed": 22.0, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 131.003, + "new_cases_per_million": 5.56, + "new_cases_smoothed_per_million": 7.645, + "total_deaths_per_million": 7.645, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 84.26 + }, + { + "date": "2020-04-08", + "total_cases": 383.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 133.088, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 6.95, + "total_deaths_per_million": 7.645, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.347, + "stringency_index": 84.26 + }, + { + "date": "2020-04-09", + "total_cases": 400.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 138.995, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 6.999, + "total_deaths_per_million": 7.645, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.347, + "stringency_index": 84.26 + }, + { + "date": "2020-04-10", + "total_cases": 409.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.857, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 142.122, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 6.553, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.347, + "stringency_index": 84.26 + }, + { + "date": "2020-04-11", + "total_cases": 416.0, + "new_cases": 7.0, + "new_cases_smoothed": 16.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 144.555, + "new_cases_per_million": 2.432, + "new_cases_smoothed_per_million": 5.56, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.298, + "stringency_index": 84.26 + }, + { + "date": "2020-04-12", + "total_cases": 433.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 150.462, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 446.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 154.979, + "new_cases_per_million": 4.517, + "new_cases_smoothed_per_million": 4.219, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 467.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 162.277, + "new_cases_per_million": 7.297, + "new_cases_smoothed_per_million": 4.468, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 475.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.143, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 165.057, + "new_cases_per_million": 2.78, + "new_cases_smoothed_per_million": 4.567, + "total_deaths_per_million": 8.34, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 494.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.429, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.659, + "new_cases_per_million": 6.602, + "new_cases_smoothed_per_million": 4.666, + "total_deaths_per_million": 8.687, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 518.0, + "new_cases": 24.0, + "new_cases_smoothed": 15.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 179.999, + "new_cases_per_million": 8.34, + "new_cases_smoothed_per_million": 5.411, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 539.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 187.296, + "new_cases_per_million": 7.297, + "new_cases_smoothed_per_million": 6.106, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-04-19", + "total_cases": 548.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 190.423, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 5.709, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-04-20", + "total_cases": 562.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 195.288, + "new_cases_per_million": 4.865, + "new_cases_smoothed_per_million": 5.758, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-04-21", + "total_cases": 584.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 202.933, + "new_cases_per_million": 7.645, + "new_cases_smoothed_per_million": 5.808, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-04-22", + "total_cases": 609.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 211.62, + "new_cases_per_million": 8.687, + "new_cases_smoothed_per_million": 6.652, + "total_deaths_per_million": 9.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 89.81 + }, + { + "date": "2020-04-23", + "total_cases": 634.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 220.307, + "new_cases_per_million": 8.687, + "new_cases_smoothed_per_million": 6.95, + "total_deaths_per_million": 9.382, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 89.81 + }, + { + "date": "2020-04-24", + "total_cases": 663.0, + "new_cases": 29.0, + "new_cases_smoothed": 20.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 230.384, + "new_cases_per_million": 10.077, + "new_cases_smoothed_per_million": 7.198, + "total_deaths_per_million": 9.382, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-04-25", + "total_cases": 678.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.597, + "new_cases_per_million": 5.212, + "new_cases_smoothed_per_million": 6.9, + "total_deaths_per_million": 9.382, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-04-26", + "total_cases": 712.0, + "new_cases": 34.0, + "new_cases_smoothed": 23.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 247.411, + "new_cases_per_million": 11.815, + "new_cases_smoothed_per_million": 8.141, + "total_deaths_per_million": 9.382, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-04-27", + "total_cases": 726.0, + "new_cases": 14.0, + "new_cases_smoothed": 23.429, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 252.276, + "new_cases_per_million": 4.865, + "new_cases_smoothed_per_million": 8.141, + "total_deaths_per_million": 9.73, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 89.81 + }, + { + "date": "2020-04-28", + "total_cases": 736.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 255.751, + "new_cases_per_million": 3.475, + "new_cases_smoothed_per_million": 7.545, + "total_deaths_per_million": 9.73, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 89.81 + }, + { + "date": "2020-04-29", + "total_cases": 750.0, + "new_cases": 14.0, + "new_cases_smoothed": 20.143, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 260.616, + "new_cases_per_million": 4.865, + "new_cases_smoothed_per_million": 6.999, + "total_deaths_per_million": 10.425, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 89.81 + }, + { + "date": "2020-04-30", + "total_cases": 766.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.857, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 266.176, + "new_cases_per_million": 5.56, + "new_cases_smoothed_per_million": 6.553, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 89.81 + }, + { + "date": "2020-05-01", + "total_cases": 773.0, + "new_cases": 7.0, + "new_cases_smoothed": 15.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 268.608, + "new_cases_per_million": 2.432, + "new_cases_smoothed_per_million": 5.461, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 782.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 271.735, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 5.163, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 789.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 274.168, + "new_cases_per_million": 2.432, + "new_cases_smoothed_per_million": 3.822, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 795.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 276.253, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 803.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.033, + "new_cases_per_million": 2.78, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 820.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 284.94, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 3.475, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 832.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 289.11, + "new_cases_per_million": 4.17, + "new_cases_smoothed_per_million": 3.276, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 842.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.585, + "new_cases_per_million": 3.475, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 850.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.365, + "new_cases_per_million": 2.78, + "new_cases_smoothed_per_million": 3.376, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 856.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.449, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 868.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 301.619, + "new_cases_per_million": 4.17, + "new_cases_smoothed_per_million": 3.624, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 872.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 303.009, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 876.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 304.399, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.78, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 880.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 305.789, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 898.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 312.044, + "new_cases_per_million": 6.255, + "new_cases_smoothed_per_million": 2.78, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 916.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 318.299, + "new_cases_per_million": 6.255, + "new_cases_smoothed_per_million": 3.276, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 933.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.206, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 3.822, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 946.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 328.723, + "new_cases_per_million": 4.517, + "new_cases_smoothed_per_million": 3.872, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 948.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.418, + "new_cases_per_million": 0.695, + "new_cases_smoothed_per_million": 3.773, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 949.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.766, + "new_cases_per_million": 0.347, + "new_cases_smoothed_per_million": 3.624, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 964.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.978, + "new_cases_per_million": 5.212, + "new_cases_smoothed_per_million": 4.17, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 969.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 336.716, + "new_cases_per_million": 1.737, + "new_cases_smoothed_per_million": 3.525, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 981.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 340.885, + "new_cases_per_million": 4.17, + "new_cases_smoothed_per_million": 3.227, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 989.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 343.665, + "new_cases_per_million": 2.78, + "new_cases_smoothed_per_million": 2.78, + "total_deaths_per_million": 10.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 998.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 346.793, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 2.581, + "total_deaths_per_million": 11.12, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 83.33 + }, + { + "date": "2020-05-26", + "total_cases": 1004.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 348.878, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 2.78, + "total_deaths_per_million": 11.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 86.11 + }, + { + "date": "2020-05-27", + "total_cases": 1029.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.429, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 357.565, + "new_cases_per_million": 8.687, + "new_cases_smoothed_per_million": 3.971, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 86.11 + }, + { + "date": "2020-05-28", + "total_cases": 1050.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 364.862, + "new_cases_per_million": 7.297, + "new_cases_smoothed_per_million": 4.269, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 86.11 + }, + { + "date": "2020-05-29", + "total_cases": 1076.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 373.897, + "new_cases_per_million": 9.035, + "new_cases_smoothed_per_million": 5.312, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 86.11 + }, + { + "date": "2020-05-30", + "total_cases": 1099.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 381.889, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 5.858, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 86.11 + }, + { + "date": "2020-05-31", + "total_cases": 1122.0, + "new_cases": 23.0, + "new_cases_smoothed": 19.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 389.881, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 6.602, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 86.11 + }, + { + "date": "2020-06-01", + "total_cases": 1137.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 395.093, + "new_cases_per_million": 5.212, + "new_cases_smoothed_per_million": 6.9, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-02", + "total_cases": 1143.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 397.178, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 6.9, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-03", + "total_cases": 1164.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 404.476, + "new_cases_per_million": 7.297, + "new_cases_smoothed_per_million": 6.702, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-04", + "total_cases": 1184.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 411.425, + "new_cases_per_million": 6.95, + "new_cases_smoothed_per_million": 6.652, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-05", + "total_cases": 1197.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 415.943, + "new_cases_per_million": 4.517, + "new_cases_smoothed_per_million": 6.007, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-06", + "total_cases": 1212.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 421.155, + "new_cases_per_million": 5.212, + "new_cases_smoothed_per_million": 5.609, + "total_deaths_per_million": 11.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-07", + "total_cases": 1232.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.714, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 428.105, + "new_cases_per_million": 6.95, + "new_cases_smoothed_per_million": 5.461, + "total_deaths_per_million": 11.815, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-08", + "total_cases": 1246.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 432.97, + "new_cases_per_million": 4.865, + "new_cases_smoothed_per_million": 5.411, + "total_deaths_per_million": 11.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-09", + "total_cases": 1263.0, + "new_cases": 17.0, + "new_cases_smoothed": 17.143, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 438.877, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 5.957, + "total_deaths_per_million": 11.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-10", + "total_cases": 1299.0, + "new_cases": 36.0, + "new_cases_smoothed": 19.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 451.386, + "new_cases_per_million": 12.51, + "new_cases_smoothed_per_million": 6.702, + "total_deaths_per_million": 11.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-11", + "total_cases": 1341.0, + "new_cases": 42.0, + "new_cases_smoothed": 22.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 465.981, + "new_cases_per_million": 14.594, + "new_cases_smoothed_per_million": 7.794, + "total_deaths_per_million": 11.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 67.59 + }, + { + "date": "2020-06-12", + "total_cases": 1385.0, + "new_cases": 44.0, + "new_cases_smoothed": 26.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 481.27, + "new_cases_per_million": 15.289, + "new_cases_smoothed_per_million": 9.333, + "total_deaths_per_million": 12.162, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 67.59 + }, + { + "date": "2020-06-13", + "total_cases": 1416.0, + "new_cases": 31.0, + "new_cases_smoothed": 29.143, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 492.043, + "new_cases_per_million": 10.772, + "new_cases_smoothed_per_million": 10.127, + "total_deaths_per_million": 12.51, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 67.59 + }, + { + "date": "2020-06-14", + "total_cases": 1464.0, + "new_cases": 48.0, + "new_cases_smoothed": 33.143, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 508.722, + "new_cases_per_million": 16.679, + "new_cases_smoothed_per_million": 11.517, + "total_deaths_per_million": 12.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 67.59 + }, + { + "date": "2020-06-15", + "total_cases": 1521.0, + "new_cases": 57.0, + "new_cases_smoothed": 39.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 528.529, + "new_cases_per_million": 19.807, + "new_cases_smoothed_per_million": 13.651, + "total_deaths_per_million": 12.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 67.59 + }, + { + "date": "2020-06-16", + "total_cases": 1590.0, + "new_cases": 69.0, + "new_cases_smoothed": 46.714, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 552.505, + "new_cases_per_million": 23.977, + "new_cases_smoothed_per_million": 16.233, + "total_deaths_per_million": 12.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 67.59 + }, + { + "date": "2020-06-17", + "total_cases": 1672.0, + "new_cases": 82.0, + "new_cases_smoothed": 53.286, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 580.999, + "new_cases_per_million": 28.494, + "new_cases_smoothed_per_million": 18.516, + "total_deaths_per_million": 12.857, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 67.59 + }, + { + "date": "2020-06-18", + "total_cases": 1722.0, + "new_cases": 50.0, + "new_cases_smoothed": 54.429, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 598.374, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 18.913, + "total_deaths_per_million": 13.205, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 67.59 + }, + { + "date": "2020-06-19", + "total_cases": 1788.0, + "new_cases": 66.0, + "new_cases_smoothed": 57.571, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 621.308, + "new_cases_per_million": 22.934, + "new_cases_smoothed_per_million": 20.005, + "total_deaths_per_million": 13.552, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 67.59 + }, + { + "date": "2020-06-20", + "total_cases": 1838.0, + "new_cases": 50.0, + "new_cases_smoothed": 60.286, + "total_deaths": 42.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 638.682, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 20.949, + "total_deaths_per_million": 14.594, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.298, + "stringency_index": 67.59 + }, + { + "date": "2020-06-21", + "total_cases": 1891.0, + "new_cases": 53.0, + "new_cases_smoothed": 61.0, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 657.099, + "new_cases_per_million": 18.417, + "new_cases_smoothed_per_million": 21.197, + "total_deaths_per_million": 14.942, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.347, + "stringency_index": 67.59 + }, + { + "date": "2020-06-22", + "total_cases": 1927.0, + "new_cases": 36.0, + "new_cases_smoothed": 58.0, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 669.609, + "new_cases_per_million": 12.51, + "new_cases_smoothed_per_million": 20.154, + "total_deaths_per_million": 15.289, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 64.81 + }, + { + "date": "2020-06-23", + "total_cases": 1995.0, + "new_cases": 68.0, + "new_cases_smoothed": 57.857, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 693.238, + "new_cases_per_million": 23.629, + "new_cases_smoothed_per_million": 20.105, + "total_deaths_per_million": 15.289, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 64.81 + }, + { + "date": "2020-06-24", + "total_cases": 2047.0, + "new_cases": 52.0, + "new_cases_smoothed": 53.571, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 711.307, + "new_cases_per_million": 18.069, + "new_cases_smoothed_per_million": 18.615, + "total_deaths_per_million": 15.637, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "stringency_index": 64.81 + }, + { + "date": "2020-06-25", + "total_cases": 2114.0, + "new_cases": 67.0, + "new_cases_smoothed": 56.0, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 734.589, + "new_cases_per_million": 23.282, + "new_cases_smoothed_per_million": 19.459, + "total_deaths_per_million": 16.332, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.447, + "stringency_index": 64.81 + }, + { + "date": "2020-06-26", + "total_cases": 2192.0, + "new_cases": 78.0, + "new_cases_smoothed": 57.714, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 761.693, + "new_cases_per_million": 27.104, + "new_cases_smoothed_per_million": 20.055, + "total_deaths_per_million": 17.027, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 64.81 + }, + { + "date": "2020-06-27", + "total_cases": 2269.0, + "new_cases": 77.0, + "new_cases_smoothed": 61.571, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 788.45, + "new_cases_per_million": 26.757, + "new_cases_smoothed_per_million": 21.395, + "total_deaths_per_million": 17.722, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.447, + "stringency_index": 64.81 + }, + { + "date": "2020-06-28", + "total_cases": 2330.0, + "new_cases": 61.0, + "new_cases_smoothed": 62.714, + "total_deaths": 53.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 809.646, + "new_cases_per_million": 21.197, + "new_cases_smoothed_per_million": 21.792, + "total_deaths_per_million": 18.417, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.496, + "stringency_index": 64.81 + }, + { + "date": "2020-06-29", + "total_cases": 2402.0, + "new_cases": 72.0, + "new_cases_smoothed": 67.857, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 834.665, + "new_cases_per_million": 25.019, + "new_cases_smoothed_per_million": 23.58, + "total_deaths_per_million": 19.112, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.546, + "stringency_index": 64.81 + }, + { + "date": "2020-06-30", + "total_cases": 2466.0, + "new_cases": 64.0, + "new_cases_smoothed": 67.286, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 856.905, + "new_cases_per_million": 22.239, + "new_cases_smoothed_per_million": 23.381, + "total_deaths_per_million": 20.154, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.695, + "stringency_index": 64.81 + }, + { + "date": "2020-07-01", + "total_cases": 2535.0, + "new_cases": 69.0, + "new_cases_smoothed": 69.714, + "total_deaths": 62.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 880.881, + "new_cases_per_million": 23.977, + "new_cases_smoothed_per_million": 24.225, + "total_deaths_per_million": 21.544, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.844, + "stringency_index": 64.81 + }, + { + "date": "2020-07-02", + "total_cases": 2580.0, + "new_cases": 45.0, + "new_cases_smoothed": 66.571, + "total_deaths": 65.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 896.518, + "new_cases_per_million": 15.637, + "new_cases_smoothed_per_million": 23.133, + "total_deaths_per_million": 22.587, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.894, + "stringency_index": 64.81 + }, + { + "date": "2020-07-03", + "total_cases": 2662.0, + "new_cases": 82.0, + "new_cases_smoothed": 67.143, + "total_deaths": 69.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 925.012, + "new_cases_per_million": 28.494, + "new_cases_smoothed_per_million": 23.331, + "total_deaths_per_million": 23.977, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.993, + "stringency_index": 64.81 + }, + { + "date": "2020-07-04", + "total_cases": 2752.0, + "new_cases": 90.0, + "new_cases_smoothed": 69.0, + "total_deaths": 72.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 956.286, + "new_cases_per_million": 31.274, + "new_cases_smoothed_per_million": 23.977, + "total_deaths_per_million": 25.019, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 64.81 + }, + { + "date": "2020-07-05", + "total_cases": 2819.0, + "new_cases": 67.0, + "new_cases_smoothed": 69.857, + "total_deaths": 74.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 979.568, + "new_cases_per_million": 23.282, + "new_cases_smoothed_per_million": 24.274, + "total_deaths_per_million": 25.714, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 64.81 + }, + { + "date": "2020-07-06", + "total_cases": 2893.0, + "new_cases": 74.0, + "new_cases_smoothed": 70.143, + "total_deaths": 76.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1005.282, + "new_cases_per_million": 25.714, + "new_cases_smoothed_per_million": 24.374, + "total_deaths_per_million": 26.409, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 59.26 + }, + { + "date": "2020-07-07", + "total_cases": 2964.0, + "new_cases": 71.0, + "new_cases_smoothed": 71.143, + "total_deaths": 79.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1029.953, + "new_cases_per_million": 24.672, + "new_cases_smoothed_per_million": 24.721, + "total_deaths_per_million": 27.452, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 59.26 + }, + { + "date": "2020-07-08", + "total_cases": 3038.0, + "new_cases": 74.0, + "new_cases_smoothed": 71.857, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1055.668, + "new_cases_per_million": 25.714, + "new_cases_smoothed_per_million": 24.969, + "total_deaths_per_million": 28.147, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.943, + "stringency_index": 59.26 + }, + { + "date": "2020-07-09", + "total_cases": 3106.0, + "new_cases": 68.0, + "new_cases_smoothed": 75.143, + "total_deaths": 83.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1079.297, + "new_cases_per_million": 23.629, + "new_cases_smoothed_per_million": 26.111, + "total_deaths_per_million": 28.841, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.894, + "stringency_index": 59.26 + }, + { + "date": "2020-07-10", + "total_cases": 3188.0, + "new_cases": 82.0, + "new_cases_smoothed": 75.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1107.791, + "new_cases_per_million": 28.494, + "new_cases_smoothed_per_million": 26.111, + "total_deaths_per_million": 28.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.695, + "stringency_index": 59.26 + }, + { + "date": "2020-07-11", + "total_cases": 3278.0, + "new_cases": 90.0, + "new_cases_smoothed": 75.143, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1139.065, + "new_cases_per_million": 31.274, + "new_cases_smoothed_per_million": 26.111, + "total_deaths_per_million": 29.536, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 59.26 + }, + { + "date": "2020-07-12", + "total_cases": 3371.0, + "new_cases": 93.0, + "new_cases_smoothed": 78.857, + "total_deaths": 89.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1171.381, + "new_cases_per_million": 32.316, + "new_cases_smoothed_per_million": 27.402, + "total_deaths_per_million": 30.926, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.745, + "stringency_index": 59.26 + }, + { + "date": "2020-07-13", + "total_cases": 3454.0, + "new_cases": 83.0, + "new_cases_smoothed": 80.143, + "total_deaths": 93.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1200.222, + "new_cases_per_million": 28.841, + "new_cases_smoothed_per_million": 27.849, + "total_deaths_per_million": 32.316, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.844, + "stringency_index": 59.26 + }, + { + "date": "2020-07-14", + "total_cases": 3571.0, + "new_cases": 117.0, + "new_cases_smoothed": 86.714, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1240.878, + "new_cases_per_million": 40.656, + "new_cases_smoothed_per_million": 30.132, + "total_deaths_per_million": 33.011, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.794, + "stringency_index": 59.26 + }, + { + "date": "2020-07-15", + "total_cases": 3667.0, + "new_cases": 96.0, + "new_cases_smoothed": 89.857, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1274.237, + "new_cases_per_million": 33.359, + "new_cases_smoothed_per_million": 31.224, + "total_deaths_per_million": 33.706, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.794, + "stringency_index": 59.26 + }, + { + "date": "2020-07-16", + "total_cases": 3752.0, + "new_cases": 85.0, + "new_cases_smoothed": 92.286, + "total_deaths": 101.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1303.774, + "new_cases_per_million": 29.536, + "new_cases_smoothed_per_million": 32.068, + "total_deaths_per_million": 35.096, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.894, + "stringency_index": 59.26 + }, + { + "date": "2020-07-17", + "total_cases": 3851.0, + "new_cases": 99.0, + "new_cases_smoothed": 94.714, + "total_deaths": 104.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1338.175, + "new_cases_per_million": 34.401, + "new_cases_smoothed_per_million": 32.912, + "total_deaths_per_million": 36.139, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 59.26 + }, + { + "date": "2020-07-18", + "total_cases": 3906.0, + "new_cases": 55.0, + "new_cases_smoothed": 89.714, + "total_deaths": 107.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1357.287, + "new_cases_per_million": 19.112, + "new_cases_smoothed_per_million": 31.175, + "total_deaths_per_million": 37.181, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.092, + "stringency_index": 59.26 + }, + { + "date": "2020-07-19", + "total_cases": 4008.0, + "new_cases": 102.0, + "new_cases_smoothed": 91.0, + "total_deaths": 111.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1392.731, + "new_cases_per_million": 35.444, + "new_cases_smoothed_per_million": 31.621, + "total_deaths_per_million": 38.571, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.092, + "stringency_index": 59.26 + }, + { + "date": "2020-07-20", + "total_cases": 4090.0, + "new_cases": 82.0, + "new_cases_smoothed": 90.857, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1421.225, + "new_cases_per_million": 28.494, + "new_cases_smoothed_per_million": 31.572, + "total_deaths_per_million": 38.919, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.943, + "stringency_index": 59.26 + }, + { + "date": "2020-07-21", + "total_cases": 4171.0, + "new_cases": 81.0, + "new_cases_smoothed": 85.714, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1449.371, + "new_cases_per_million": 28.147, + "new_cases_smoothed_per_million": 29.785, + "total_deaths_per_million": 39.266, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.894, + "stringency_index": 59.26 + }, + { + "date": "2020-07-22", + "total_cases": 4290.0, + "new_cases": 119.0, + "new_cases_smoothed": 89.0, + "total_deaths": 117.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1490.722, + "new_cases_per_million": 41.351, + "new_cases_smoothed_per_million": 30.926, + "total_deaths_per_million": 40.656, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 0.993, + "stringency_index": 59.26 + }, + { + "date": "2020-07-23", + "total_cases": 4358.0, + "new_cases": 68.0, + "new_cases_smoothed": 86.571, + "total_deaths": 120.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1514.351, + "new_cases_per_million": 23.629, + "new_cases_smoothed_per_million": 30.083, + "total_deaths_per_million": 41.699, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.943, + "stringency_index": 59.26 + }, + { + "date": "2020-07-24", + "total_cases": 4466.0, + "new_cases": 108.0, + "new_cases_smoothed": 87.857, + "total_deaths": 123.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1551.88, + "new_cases_per_million": 37.529, + "new_cases_smoothed_per_million": 30.529, + "total_deaths_per_million": 42.741, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 0.943, + "stringency_index": 59.26 + }, + { + "date": "2020-07-25", + "total_cases": 4570.0, + "new_cases": 104.0, + "new_cases_smoothed": 94.857, + "total_deaths": 128.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1588.019, + "new_cases_per_million": 36.139, + "new_cases_smoothed_per_million": 32.962, + "total_deaths_per_million": 44.478, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 59.26 + }, + { + "date": "2020-07-26", + "total_cases": 4637.0, + "new_cases": 67.0, + "new_cases_smoothed": 89.857, + "total_deaths": 134.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1611.3, + "new_cases_per_million": 23.282, + "new_cases_smoothed_per_million": 31.224, + "total_deaths_per_million": 46.563, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.142, + "stringency_index": 59.26 + }, + { + "date": "2020-07-27", + "total_cases": 4763.0, + "new_cases": 126.0, + "new_cases_smoothed": 96.143, + "total_deaths": 138.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1655.084, + "new_cases_per_million": 43.783, + "new_cases_smoothed_per_million": 33.408, + "total_deaths_per_million": 47.953, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.291, + "stringency_index": 59.26 + }, + { + "date": "2020-07-28", + "total_cases": 4880.0, + "new_cases": 117.0, + "new_cases_smoothed": 101.286, + "total_deaths": 144.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1695.74, + "new_cases_per_million": 40.656, + "new_cases_smoothed_per_million": 35.196, + "total_deaths_per_million": 50.038, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.539, + "stringency_index": 59.26 + }, + { + "date": "2020-07-29", + "total_cases": 4997.0, + "new_cases": 117.0, + "new_cases_smoothed": 101.0, + "total_deaths": 148.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1736.396, + "new_cases_per_million": 40.656, + "new_cases_smoothed_per_million": 35.096, + "total_deaths_per_million": 51.428, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.539, + "stringency_index": 59.26 + }, + { + "date": "2020-07-30", + "total_cases": 5105.0, + "new_cases": 108.0, + "new_cases_smoothed": 106.714, + "total_deaths": 150.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1773.925, + "new_cases_per_million": 37.529, + "new_cases_smoothed_per_million": 37.082, + "total_deaths_per_million": 52.123, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.489, + "stringency_index": 59.26 + }, + { + "date": "2020-07-31", + "total_cases": 5197.0, + "new_cases": 92.0, + "new_cases_smoothed": 104.429, + "total_deaths": 154.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1805.893, + "new_cases_per_million": 31.969, + "new_cases_smoothed_per_million": 36.288, + "total_deaths_per_million": 53.513, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.539, + "stringency_index": 59.26 + }, + { + "date": "2020-08-01", + "total_cases": 5276.0, + "new_cases": 79.0, + "new_cases_smoothed": 100.857, + "total_deaths": 157.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1833.345, + "new_cases_per_million": 27.452, + "new_cases_smoothed_per_million": 35.047, + "total_deaths_per_million": 54.556, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.44, + "stringency_index": 59.26 + }, + { + "date": "2020-08-02", + "total_cases": 5396.0, + "new_cases": 120.0, + "new_cases_smoothed": 108.429, + "total_deaths": 161.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1875.043, + "new_cases_per_million": 41.699, + "new_cases_smoothed_per_million": 37.678, + "total_deaths_per_million": 55.946, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.34, + "stringency_index": 59.26 + }, + { + "date": "2020-08-03", + "total_cases": 5519.0, + "new_cases": 123.0, + "new_cases_smoothed": 108.0, + "total_deaths": 166.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1917.784, + "new_cases_per_million": 42.741, + "new_cases_smoothed_per_million": 37.529, + "total_deaths_per_million": 57.683, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.39, + "stringency_index": 59.26 + }, + { + "date": "2020-08-04", + "total_cases": 5620.0, + "new_cases": 101.0, + "new_cases_smoothed": 105.714, + "total_deaths": 172.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1952.881, + "new_cases_per_million": 35.096, + "new_cases_smoothed_per_million": 36.734, + "total_deaths_per_million": 59.768, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.39, + "stringency_index": 59.26 + }, + { + "date": "2020-08-05", + "total_cases": 5750.0, + "new_cases": 130.0, + "new_cases_smoothed": 107.571, + "total_deaths": 176.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1998.054, + "new_cases_per_million": 45.173, + "new_cases_smoothed_per_million": 37.38, + "total_deaths_per_million": 61.158, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.39, + "stringency_index": 59.26 + }, + { + "date": "2020-08-06", + "total_cases": 5889.0, + "new_cases": 139.0, + "new_cases_smoothed": 112.0, + "total_deaths": 182.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2046.355, + "new_cases_per_million": 48.301, + "new_cases_smoothed_per_million": 38.919, + "total_deaths_per_million": 63.243, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.589, + "stringency_index": 59.26 + }, + { + "date": "2020-08-07", + "total_cases": 6016.0, + "new_cases": 127.0, + "new_cases_smoothed": 117.0, + "total_deaths": 188.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2090.486, + "new_cases_per_million": 44.131, + "new_cases_smoothed_per_million": 40.656, + "total_deaths_per_million": 65.328, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.688, + "stringency_index": 53.7 + }, + { + "date": "2020-08-08", + "total_cases": 6151.0, + "new_cases": 135.0, + "new_cases_smoothed": 125.0, + "total_deaths": 189.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2137.397, + "new_cases_per_million": 46.911, + "new_cases_smoothed_per_million": 43.436, + "total_deaths_per_million": 65.675, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.589, + "stringency_index": 53.7 + }, + { + "date": "2020-08-09", + "total_cases": 6275.0, + "new_cases": 124.0, + "new_cases_smoothed": 125.571, + "total_deaths": 193.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2180.485, + "new_cases_per_million": 43.088, + "new_cases_smoothed_per_million": 43.635, + "total_deaths_per_million": 67.065, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.589, + "stringency_index": 53.7 + }, + { + "date": "2020-08-10", + "total_cases": 6411.0, + "new_cases": 136.0, + "new_cases_smoothed": 127.429, + "total_deaths": 199.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2227.743, + "new_cases_per_million": 47.258, + "new_cases_smoothed_per_million": 44.28, + "total_deaths_per_million": 69.15, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.638, + "stringency_index": 53.7 + }, + { + "date": "2020-08-11", + "total_cases": 6536.0, + "new_cases": 125.0, + "new_cases_smoothed": 130.857, + "total_deaths": 200.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2271.179, + "new_cases_per_million": 43.436, + "new_cases_smoothed_per_million": 45.471, + "total_deaths_per_million": 69.498, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.39, + "stringency_index": 53.7 + }, + { + "date": "2020-08-12", + "total_cases": 6676.0, + "new_cases": 140.0, + "new_cases_smoothed": 132.286, + "total_deaths": 205.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2319.828, + "new_cases_per_million": 48.648, + "new_cases_smoothed_per_million": 45.968, + "total_deaths_per_million": 71.235, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.44, + "stringency_index": 53.7 + }, + { + "date": "2020-08-13", + "total_cases": 6817.0, + "new_cases": 141.0, + "new_cases_smoothed": 132.571, + "total_deaths": 208.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2368.823, + "new_cases_per_million": 48.996, + "new_cases_smoothed_per_million": 46.067, + "total_deaths_per_million": 72.277, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.291, + "stringency_index": 53.7 + }, + { + "date": "2020-08-14", + "total_cases": 6971.0, + "new_cases": 154.0, + "new_cases_smoothed": 136.429, + "total_deaths": 213.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2422.337, + "new_cases_per_million": 53.513, + "new_cases_smoothed_per_million": 47.407, + "total_deaths_per_million": 74.015, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.241, + "stringency_index": 53.7 + }, + { + "date": "2020-08-15", + "total_cases": 7117.0, + "new_cases": 146.0, + "new_cases_smoothed": 138.0, + "total_deaths": 219.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2473.07, + "new_cases_per_million": 50.733, + "new_cases_smoothed_per_million": 47.953, + "total_deaths_per_million": 76.1, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.489, + "stringency_index": 53.7 + }, + { + "date": "2020-08-16", + "total_cases": 7260.0, + "new_cases": 143.0, + "new_cases_smoothed": 140.714, + "total_deaths": 225.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2522.76, + "new_cases_per_million": 49.691, + "new_cases_smoothed_per_million": 48.896, + "total_deaths_per_million": 78.185, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.589, + "stringency_index": 53.7 + }, + { + "date": "2020-08-17", + "total_cases": 7380.0, + "new_cases": 120.0, + "new_cases_smoothed": 138.429, + "total_deaths": 228.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2564.459, + "new_cases_per_million": 41.699, + "new_cases_smoothed_per_million": 48.102, + "total_deaths_per_million": 79.227, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.44, + "stringency_index": 53.7 + }, + { + "date": "2020-08-18", + "total_cases": 7499.0, + "new_cases": 119.0, + "new_cases_smoothed": 137.571, + "total_deaths": 230.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2605.81, + "new_cases_per_million": 41.351, + "new_cases_smoothed_per_million": 47.804, + "total_deaths_per_million": 79.922, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.489, + "stringency_index": 53.7 + }, + { + "date": "2020-08-19", + "total_cases": 7654.0, + "new_cases": 155.0, + "new_cases_smoothed": 139.714, + "total_deaths": 232.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2659.671, + "new_cases_per_million": 53.861, + "new_cases_smoothed_per_million": 48.549, + "total_deaths_per_million": 80.617, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.34, + "stringency_index": 53.7 + }, + { + "date": "2020-08-20", + "total_cases": 7812.0, + "new_cases": 158.0, + "new_cases_smoothed": 142.143, + "total_deaths": 234.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2714.574, + "new_cases_per_million": 54.903, + "new_cases_smoothed_per_million": 49.393, + "total_deaths_per_million": 81.312, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.291, + "stringency_index": 53.7 + }, + { + "date": "2020-08-21", + "total_cases": 7967.0, + "new_cases": 155.0, + "new_cases_smoothed": 142.286, + "total_deaths": 238.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2768.434, + "new_cases_per_million": 53.861, + "new_cases_smoothed_per_million": 49.443, + "total_deaths_per_million": 82.702, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.241, + "stringency_index": 53.7 + }, + { + "date": "2020-08-22", + "total_cases": 8119.0, + "new_cases": 152.0, + "new_cases_smoothed": 143.143, + "total_deaths": 240.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2821.252, + "new_cases_per_million": 52.818, + "new_cases_smoothed_per_million": 49.74, + "total_deaths_per_million": 83.397, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.042, + "stringency_index": 53.7 + }, + { + "date": "2020-08-23", + "total_cases": 8275.0, + "new_cases": 156.0, + "new_cases_smoothed": 145.0, + "total_deaths": 245.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2875.46, + "new_cases_per_million": 54.208, + "new_cases_smoothed_per_million": 50.386, + "total_deaths_per_million": 85.134, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 0.993, + "stringency_index": 53.7 + }, + { + "date": "2020-08-24", + "total_cases": 8427.0, + "new_cases": 152.0, + "new_cases_smoothed": 149.571, + "total_deaths": 250.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2928.279, + "new_cases_per_million": 52.818, + "new_cases_smoothed_per_million": 51.974, + "total_deaths_per_million": 86.872, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.092, + "stringency_index": 53.7 + }, + { + "date": "2020-08-25", + "total_cases": 8605.0, + "new_cases": 178.0, + "new_cases_smoothed": 158.0, + "total_deaths": 254.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 2990.131, + "new_cases_per_million": 61.853, + "new_cases_smoothed_per_million": 54.903, + "total_deaths_per_million": 88.262, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.191, + "stringency_index": 53.7 + }, + { + "date": "2020-08-26", + "total_cases": 8759.0, + "new_cases": 154.0, + "new_cases_smoothed": 157.857, + "total_deaths": 259.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 3043.644, + "new_cases_per_million": 53.513, + "new_cases_smoothed_per_million": 54.853, + "total_deaths_per_million": 89.999, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.34, + "stringency_index": 53.7 + }, + { + "date": "2020-08-27", + "total_cases": 8927.0, + "new_cases": 168.0, + "new_cases_smoothed": 159.286, + "total_deaths": 263.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 3102.022, + "new_cases_per_million": 58.378, + "new_cases_smoothed_per_million": 55.35, + "total_deaths_per_million": 91.389, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.44, + "stringency_index": 53.7 + }, + { + "date": "2020-08-28", + "total_cases": 9083.0, + "new_cases": 156.0, + "new_cases_smoothed": 159.429, + "total_deaths": 266.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3156.23, + "new_cases_per_million": 54.208, + "new_cases_smoothed_per_million": 55.399, + "total_deaths_per_million": 92.432, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 1.39 + }, + { + "date": "2020-08-29", + "total_cases": 9195.0, + "new_cases": 112.0, + "new_cases_smoothed": 153.714, + "total_deaths": 271.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3195.149, + "new_cases_per_million": 38.919, + "new_cases_smoothed_per_million": 53.414, + "total_deaths_per_million": 94.169, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.539 + }, + { + "date": "2020-08-30", + "total_cases": 9279.0, + "new_cases": 84.0, + "new_cases_smoothed": 143.429, + "total_deaths": 275.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3224.338, + "new_cases_per_million": 29.189, + "new_cases_smoothed_per_million": 49.84, + "total_deaths_per_million": 95.559, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.489 + }, + { + "date": "2020-08-31", + "total_cases": 9380.0, + "new_cases": 101.0, + "new_cases_smoothed": 136.143, + "total_deaths": 280.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3259.434, + "new_cases_per_million": 35.096, + "new_cases_smoothed_per_million": 47.308, + "total_deaths_per_million": 97.297, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.489 + }, + { + "date": "2020-09-01", + "total_cases": 9513.0, + "new_cases": 133.0, + "new_cases_smoothed": 129.714, + "total_deaths": 284.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3305.65, + "new_cases_per_million": 46.216, + "new_cases_smoothed_per_million": 45.074, + "total_deaths_per_million": 98.686, + "new_deaths_per_million": 1.39, + "new_deaths_smoothed_per_million": 1.489 + }, + { + "date": "2020-09-02", + "total_cases": 9606.0, + "new_cases": 93.0, + "new_cases_smoothed": 121.0, + "total_deaths": 290.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3337.967, + "new_cases_per_million": 32.316, + "new_cases_smoothed_per_million": 42.046, + "total_deaths_per_million": 100.771, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.539 + }, + { + "date": "2020-09-03", + "total_cases": 9728.0, + "new_cases": 122.0, + "new_cases_smoothed": 114.429, + "total_deaths": 296.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3380.36, + "new_cases_per_million": 42.393, + "new_cases_smoothed_per_million": 39.763, + "total_deaths_per_million": 102.856, + "new_deaths_per_million": 2.085, + "new_deaths_smoothed_per_million": 1.638 + }, + { + "date": "2020-09-04", + "total_cases": 9844.0, + "new_cases": 116.0, + "new_cases_smoothed": 108.714, + "total_deaths": 301.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3420.669, + "new_cases_per_million": 40.309, + "new_cases_smoothed_per_million": 37.777, + "total_deaths_per_million": 104.594, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.737 + }, + { + "date": "2020-09-05", + "total_cases": 9967.0, + "new_cases": 123.0, + "new_cases_smoothed": 110.286, + "total_deaths": 306.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3463.41, + "new_cases_per_million": 42.741, + "new_cases_smoothed_per_million": 38.323, + "total_deaths_per_million": 106.331, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.737 + } + ] + }, + "DZA": { + "continent": "Africa", + "location": "Algeria", + "population": 43851043.0, + "population_density": 17.348, + "median_age": 29.1, + "aged_65_older": 6.211, + "aged_70_older": 3.857, + "gdp_per_capita": 13913.839, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 278.364, + "diabetes_prevalence": 6.73, + "female_smokers": 0.7, + "male_smokers": 30.4, + "handwashing_facilities": 83.741, + "hospital_beds_per_thousand": 1.9, + "life_expectancy": 76.88, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.114, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 12.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.274, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-06", + "total_cases": 17.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.388, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 2.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 2.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-09", + "total_cases": 20.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.456, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 2.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 2.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-12", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 25.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.57, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 30.56 + }, + { + "date": "2020-03-14", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 36.11 + }, + { + "date": "2020-03-15", + "total_cases": 37.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.844, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 36.11 + }, + { + "date": "2020-03-16", + "total_cases": 48.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.0, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.095, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 36.11 + }, + { + "date": "2020-03-17", + "total_cases": 58.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.323, + "new_cases_per_million": 0.228, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 38.89 + }, + { + "date": "2020-03-18", + "total_cases": 60.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.368, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 38.89 + }, + { + "date": "2020-03-19", + "total_cases": 72.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.642, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 38.89 + }, + { + "date": "2020-03-20", + "total_cases": 90.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2.052, + "new_cases_per_million": 0.41, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 38.89 + }, + { + "date": "2020-03-21", + "total_cases": 102.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.857, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2.326, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 38.89 + }, + { + "date": "2020-03-22", + "total_cases": 139.0, + "new_cases": 37.0, + "new_cases_smoothed": 14.571, + "total_deaths": 15.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3.17, + "new_cases_per_million": 0.844, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 38.89 + }, + { + "date": "2020-03-23", + "total_cases": 201.0, + "new_cases": 62.0, + "new_cases_smoothed": 21.857, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4.584, + "new_cases_per_million": 1.414, + "new_cases_smoothed_per_million": 0.498, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 75.0 + }, + { + "date": "2020-03-24", + "total_cases": 230.0, + "new_cases": 29.0, + "new_cases_smoothed": 24.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5.245, + "new_cases_per_million": 0.661, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 75.0 + }, + { + "date": "2020-03-25", + "total_cases": 264.0, + "new_cases": 34.0, + "new_cases_smoothed": 29.143, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6.02, + "new_cases_per_million": 0.775, + "new_cases_smoothed_per_million": 0.665, + "total_deaths_per_million": 0.433, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 75.0 + }, + { + "date": "2020-03-26", + "total_cases": 302.0, + "new_cases": 38.0, + "new_cases_smoothed": 32.857, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 6.887, + "new_cases_per_million": 0.867, + "new_cases_smoothed_per_million": 0.749, + "total_deaths_per_million": 0.479, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 75.0 + }, + { + "date": "2020-03-27", + "total_cases": 367.0, + "new_cases": 65.0, + "new_cases_smoothed": 39.571, + "total_deaths": 25.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 8.369, + "new_cases_per_million": 1.482, + "new_cases_smoothed_per_million": 0.902, + "total_deaths_per_million": 0.57, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 75.0 + }, + { + "date": "2020-03-28", + "total_cases": 409.0, + "new_cases": 42.0, + "new_cases_smoothed": 43.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 9.327, + "new_cases_per_million": 0.958, + "new_cases_smoothed_per_million": 1.0, + "total_deaths_per_million": 0.593, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 75.0 + }, + { + "date": "2020-03-29", + "total_cases": 454.0, + "new_cases": 45.0, + "new_cases_smoothed": 45.0, + "total_deaths": 29.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 10.353, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.026, + "total_deaths_per_million": 0.661, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 75.0 + }, + { + "date": "2020-03-30", + "total_cases": 511.0, + "new_cases": 57.0, + "new_cases_smoothed": 44.286, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 11.653, + "new_cases_per_million": 1.3, + "new_cases_smoothed_per_million": 1.01, + "total_deaths_per_million": 0.707, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 86.57 + }, + { + "date": "2020-03-31", + "total_cases": 584.0, + "new_cases": 73.0, + "new_cases_smoothed": 50.571, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 13.318, + "new_cases_per_million": 1.665, + "new_cases_smoothed_per_million": 1.153, + "total_deaths_per_million": 0.798, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 86.57 + }, + { + "date": "2020-04-01", + "total_cases": 716.0, + "new_cases": 132.0, + "new_cases_smoothed": 64.571, + "total_deaths": 44.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 16.328, + "new_cases_per_million": 3.01, + "new_cases_smoothed_per_million": 1.473, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 86.57 + }, + { + "date": "2020-04-02", + "total_cases": 847.0, + "new_cases": 131.0, + "new_cases_smoothed": 77.857, + "total_deaths": 58.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 19.315, + "new_cases_per_million": 2.987, + "new_cases_smoothed_per_million": 1.775, + "total_deaths_per_million": 1.323, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 86.57 + }, + { + "date": "2020-04-03", + "total_cases": 986.0, + "new_cases": 139.0, + "new_cases_smoothed": 88.429, + "total_deaths": 63.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 22.485, + "new_cases_per_million": 3.17, + "new_cases_smoothed_per_million": 2.017, + "total_deaths_per_million": 1.437, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 86.57 + }, + { + "date": "2020-04-04", + "total_cases": 1171.0, + "new_cases": 185.0, + "new_cases_smoothed": 108.857, + "total_deaths": 105.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 26.704, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 2.394, + "new_deaths_per_million": 0.958, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 86.57 + }, + { + "date": "2020-04-05", + "total_cases": 1251.0, + "new_cases": 80.0, + "new_cases_smoothed": 113.857, + "total_deaths": 130.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 28.528, + "new_cases_per_million": 1.824, + "new_cases_smoothed_per_million": 2.596, + "total_deaths_per_million": 2.965, + "new_deaths_per_million": 0.57, + "new_deaths_smoothed_per_million": 0.329, + "stringency_index": 86.57 + }, + { + "date": "2020-04-06", + "total_cases": 1320.0, + "new_cases": 69.0, + "new_cases_smoothed": 115.571, + "total_deaths": 152.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 30.102, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 2.636, + "total_deaths_per_million": 3.466, + "new_deaths_per_million": 0.502, + "new_deaths_smoothed_per_million": 0.394, + "stringency_index": 86.57 + }, + { + "date": "2020-04-07", + "total_cases": 1423.0, + "new_cases": 103.0, + "new_cases_smoothed": 119.857, + "total_deaths": 173.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 32.451, + "new_cases_per_million": 2.349, + "new_cases_smoothed_per_million": 2.733, + "total_deaths_per_million": 3.945, + "new_deaths_per_million": 0.479, + "new_deaths_smoothed_per_million": 0.45, + "stringency_index": 86.57 + }, + { + "date": "2020-04-08", + "total_cases": 1468.0, + "new_cases": 45.0, + "new_cases_smoothed": 107.429, + "total_deaths": 193.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 33.477, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 2.45, + "total_deaths_per_million": 4.401, + "new_deaths_per_million": 0.456, + "new_deaths_smoothed_per_million": 0.485, + "stringency_index": 86.57 + }, + { + "date": "2020-04-09", + "total_cases": 1572.0, + "new_cases": 104.0, + "new_cases_smoothed": 103.571, + "total_deaths": 205.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 35.849, + "new_cases_per_million": 2.372, + "new_cases_smoothed_per_million": 2.362, + "total_deaths_per_million": 4.675, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 86.57 + }, + { + "date": "2020-04-10", + "total_cases": 1666.0, + "new_cases": 94.0, + "new_cases_smoothed": 97.143, + "total_deaths": 235.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 37.992, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 2.215, + "total_deaths_per_million": 5.359, + "new_deaths_per_million": 0.684, + "new_deaths_smoothed_per_million": 0.56, + "stringency_index": 86.57 + }, + { + "date": "2020-04-11", + "total_cases": 1761.0, + "new_cases": 95.0, + "new_cases_smoothed": 84.286, + "total_deaths": 256.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 40.159, + "new_cases_per_million": 2.166, + "new_cases_smoothed_per_million": 1.922, + "total_deaths_per_million": 5.838, + "new_deaths_per_million": 0.479, + "new_deaths_smoothed_per_million": 0.492, + "stringency_index": 86.57 + }, + { + "date": "2020-04-12", + "total_cases": 1825.0, + "new_cases": 64.0, + "new_cases_smoothed": 82.0, + "total_deaths": 275.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 41.618, + "new_cases_per_million": 1.459, + "new_cases_smoothed_per_million": 1.87, + "total_deaths_per_million": 6.271, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.472, + "stringency_index": 86.57 + }, + { + "date": "2020-04-13", + "total_cases": 1914.0, + "new_cases": 89.0, + "new_cases_smoothed": 84.857, + "total_deaths": 293.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 43.648, + "new_cases_per_million": 2.03, + "new_cases_smoothed_per_million": 1.935, + "total_deaths_per_million": 6.682, + "new_deaths_per_million": 0.41, + "new_deaths_smoothed_per_million": 0.459, + "stringency_index": 86.57 + }, + { + "date": "2020-04-14", + "total_cases": 1983.0, + "new_cases": 69.0, + "new_cases_smoothed": 80.0, + "total_deaths": 313.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 45.221, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 1.824, + "total_deaths_per_million": 7.138, + "new_deaths_per_million": 0.456, + "new_deaths_smoothed_per_million": 0.456, + "stringency_index": 92.13 + }, + { + "date": "2020-04-15", + "total_cases": 2070.0, + "new_cases": 87.0, + "new_cases_smoothed": 86.0, + "total_deaths": 325.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 47.205, + "new_cases_per_million": 1.984, + "new_cases_smoothed_per_million": 1.961, + "total_deaths_per_million": 7.411, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.43, + "stringency_index": 92.13 + }, + { + "date": "2020-04-16", + "total_cases": 2160.0, + "new_cases": 90.0, + "new_cases_smoothed": 84.0, + "total_deaths": 336.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 49.258, + "new_cases_per_million": 2.052, + "new_cases_smoothed_per_million": 1.916, + "total_deaths_per_million": 7.662, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.427, + "stringency_index": 92.13 + }, + { + "date": "2020-04-17", + "total_cases": 2268.0, + "new_cases": 108.0, + "new_cases_smoothed": 86.0, + "total_deaths": 348.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 51.721, + "new_cases_per_million": 2.463, + "new_cases_smoothed_per_million": 1.961, + "total_deaths_per_million": 7.936, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.368, + "stringency_index": 92.13 + }, + { + "date": "2020-04-18", + "total_cases": 2418.0, + "new_cases": 150.0, + "new_cases_smoothed": 93.857, + "total_deaths": 364.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 55.141, + "new_cases_per_million": 3.421, + "new_cases_smoothed_per_million": 2.14, + "total_deaths_per_million": 8.301, + "new_deaths_per_million": 0.365, + "new_deaths_smoothed_per_million": 0.352, + "stringency_index": 92.13 + }, + { + "date": "2020-04-19", + "total_cases": 2535.0, + "new_cases": 117.0, + "new_cases_smoothed": 101.429, + "total_deaths": 367.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 57.809, + "new_cases_per_million": 2.668, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 8.369, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 92.13 + }, + { + "date": "2020-04-20", + "total_cases": 2629.0, + "new_cases": 94.0, + "new_cases_smoothed": 102.143, + "total_deaths": 375.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 59.953, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 2.329, + "total_deaths_per_million": 8.552, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.267, + "stringency_index": 92.13 + }, + { + "date": "2020-04-21", + "total_cases": 2718.0, + "new_cases": 89.0, + "new_cases_smoothed": 105.0, + "total_deaths": 384.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 61.983, + "new_cases_per_million": 2.03, + "new_cases_smoothed_per_million": 2.394, + "total_deaths_per_million": 8.757, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 92.13 + }, + { + "date": "2020-04-22", + "total_cases": 2811.0, + "new_cases": 93.0, + "new_cases_smoothed": 105.857, + "total_deaths": 392.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 64.103, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 2.414, + "total_deaths_per_million": 8.939, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 92.13 + }, + { + "date": "2020-04-23", + "total_cases": 2910.0, + "new_cases": 99.0, + "new_cases_smoothed": 107.143, + "total_deaths": 402.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 66.361, + "new_cases_per_million": 2.258, + "new_cases_smoothed_per_million": 2.443, + "total_deaths_per_million": 9.167, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.215, + "stringency_index": 92.13 + }, + { + "date": "2020-04-24", + "total_cases": 3007.0, + "new_cases": 97.0, + "new_cases_smoothed": 105.571, + "total_deaths": 407.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 68.573, + "new_cases_per_million": 2.212, + "new_cases_smoothed_per_million": 2.408, + "total_deaths_per_million": 9.281, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 76.85 + }, + { + "date": "2020-04-25", + "total_cases": 3127.0, + "new_cases": 120.0, + "new_cases_smoothed": 101.286, + "total_deaths": 415.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 71.31, + "new_cases_per_million": 2.737, + "new_cases_smoothed_per_million": 2.31, + "total_deaths_per_million": 9.464, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 76.85 + }, + { + "date": "2020-04-26", + "total_cases": 3256.0, + "new_cases": 129.0, + "new_cases_smoothed": 103.0, + "total_deaths": 419.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 74.251, + "new_cases_per_million": 2.942, + "new_cases_smoothed_per_million": 2.349, + "total_deaths_per_million": 9.555, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 76.85 + }, + { + "date": "2020-04-27", + "total_cases": 3382.0, + "new_cases": 126.0, + "new_cases_smoothed": 107.571, + "total_deaths": 425.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 77.125, + "new_cases_per_million": 2.873, + "new_cases_smoothed_per_million": 2.453, + "total_deaths_per_million": 9.692, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 76.85 + }, + { + "date": "2020-04-28", + "total_cases": 3517.0, + "new_cases": 135.0, + "new_cases_smoothed": 114.143, + "total_deaths": 432.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 80.203, + "new_cases_per_million": 3.079, + "new_cases_smoothed_per_million": 2.603, + "total_deaths_per_million": 9.852, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 76.85 + }, + { + "date": "2020-04-29", + "total_cases": 3649.0, + "new_cases": 132.0, + "new_cases_smoothed": 119.714, + "total_deaths": 437.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 83.214, + "new_cases_per_million": 3.01, + "new_cases_smoothed_per_million": 2.73, + "total_deaths_per_million": 9.966, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 76.85 + }, + { + "date": "2020-04-30", + "total_cases": 3848.0, + "new_cases": 199.0, + "new_cases_smoothed": 134.0, + "total_deaths": 444.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 87.752, + "new_cases_per_million": 4.538, + "new_cases_smoothed_per_million": 3.056, + "total_deaths_per_million": 10.125, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 76.85 + }, + { + "date": "2020-05-01", + "total_cases": 4006.0, + "new_cases": 158.0, + "new_cases_smoothed": 142.714, + "total_deaths": 450.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 91.355, + "new_cases_per_million": 3.603, + "new_cases_smoothed_per_million": 3.255, + "total_deaths_per_million": 10.262, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 76.85 + }, + { + "date": "2020-05-02", + "total_cases": 4154.0, + "new_cases": 148.0, + "new_cases_smoothed": 146.714, + "total_deaths": 453.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 94.73, + "new_cases_per_million": 3.375, + "new_cases_smoothed_per_million": 3.346, + "total_deaths_per_million": 10.33, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 76.85 + }, + { + "date": "2020-05-03", + "total_cases": 4295.0, + "new_cases": 141.0, + "new_cases_smoothed": 148.429, + "total_deaths": 459.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 97.945, + "new_cases_per_million": 3.215, + "new_cases_smoothed_per_million": 3.385, + "total_deaths_per_million": 10.467, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 76.85 + }, + { + "date": "2020-05-04", + "total_cases": 4474.0, + "new_cases": 179.0, + "new_cases_smoothed": 156.0, + "total_deaths": 463.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 102.027, + "new_cases_per_million": 4.082, + "new_cases_smoothed_per_million": 3.557, + "total_deaths_per_million": 10.558, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 76.85 + }, + { + "date": "2020-05-05", + "total_cases": 4648.0, + "new_cases": 174.0, + "new_cases_smoothed": 161.571, + "total_deaths": 465.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 105.995, + "new_cases_per_million": 3.968, + "new_cases_smoothed_per_million": 3.685, + "total_deaths_per_million": 10.604, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 76.85 + }, + { + "date": "2020-05-06", + "total_cases": 4838.0, + "new_cases": 190.0, + "new_cases_smoothed": 169.857, + "total_deaths": 470.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 110.328, + "new_cases_per_million": 4.333, + "new_cases_smoothed_per_million": 3.874, + "total_deaths_per_million": 10.718, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 76.85 + }, + { + "date": "2020-05-07", + "total_cases": 4997.0, + "new_cases": 159.0, + "new_cases_smoothed": 164.143, + "total_deaths": 476.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 113.954, + "new_cases_per_million": 3.626, + "new_cases_smoothed_per_million": 3.743, + "total_deaths_per_million": 10.855, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 76.85 + }, + { + "date": "2020-05-08", + "total_cases": 5182.0, + "new_cases": 185.0, + "new_cases_smoothed": 168.0, + "total_deaths": 483.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 118.173, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 3.831, + "total_deaths_per_million": 11.015, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 76.85 + }, + { + "date": "2020-05-09", + "total_cases": 5369.0, + "new_cases": 187.0, + "new_cases_smoothed": 173.571, + "total_deaths": 488.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 122.437, + "new_cases_per_million": 4.264, + "new_cases_smoothed_per_million": 3.958, + "total_deaths_per_million": 11.129, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 76.85 + }, + { + "date": "2020-05-10", + "total_cases": 5558.0, + "new_cases": 189.0, + "new_cases_smoothed": 180.429, + "total_deaths": 494.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 126.747, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 4.115, + "total_deaths_per_million": 11.265, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 76.85 + }, + { + "date": "2020-05-11", + "total_cases": 5723.0, + "new_cases": 165.0, + "new_cases_smoothed": 178.429, + "total_deaths": 502.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 130.51, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 4.069, + "total_deaths_per_million": 11.448, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 76.85 + }, + { + "date": "2020-05-12", + "total_cases": 5891.0, + "new_cases": 168.0, + "new_cases_smoothed": 177.571, + "total_deaths": 507.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 134.341, + "new_cases_per_million": 3.831, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 11.562, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 87.96 + }, + { + "date": "2020-05-13", + "total_cases": 6067.0, + "new_cases": 176.0, + "new_cases_smoothed": 175.571, + "total_deaths": 515.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 138.355, + "new_cases_per_million": 4.014, + "new_cases_smoothed_per_million": 4.004, + "total_deaths_per_million": 11.744, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 87.96 + }, + { + "date": "2020-05-14", + "total_cases": 6253.0, + "new_cases": 186.0, + "new_cases_smoothed": 179.429, + "total_deaths": 522.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 142.596, + "new_cases_per_million": 4.242, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 11.904, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-15", + "total_cases": 6442.0, + "new_cases": 189.0, + "new_cases_smoothed": 180.0, + "total_deaths": 529.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 146.906, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 4.105, + "total_deaths_per_million": 12.064, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-16", + "total_cases": 6629.0, + "new_cases": 187.0, + "new_cases_smoothed": 180.0, + "total_deaths": 536.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 151.171, + "new_cases_per_million": 4.264, + "new_cases_smoothed_per_million": 4.105, + "total_deaths_per_million": 12.223, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 76.85 + }, + { + "date": "2020-05-17", + "total_cases": 6821.0, + "new_cases": 192.0, + "new_cases_smoothed": 180.429, + "total_deaths": 542.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 155.549, + "new_cases_per_million": 4.378, + "new_cases_smoothed_per_million": 4.115, + "total_deaths_per_million": 12.36, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 76.85 + }, + { + "date": "2020-05-18", + "total_cases": 7019.0, + "new_cases": 198.0, + "new_cases_smoothed": 185.143, + "total_deaths": 548.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 160.065, + "new_cases_per_million": 4.515, + "new_cases_smoothed_per_million": 4.222, + "total_deaths_per_million": 12.497, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-19", + "total_cases": 7201.0, + "new_cases": 182.0, + "new_cases_smoothed": 187.143, + "total_deaths": 555.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 164.215, + "new_cases_per_million": 4.15, + "new_cases_smoothed_per_million": 4.268, + "total_deaths_per_million": 12.656, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 76.85 + }, + { + "date": "2020-05-20", + "total_cases": 7377.0, + "new_cases": 176.0, + "new_cases_smoothed": 187.143, + "total_deaths": 561.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 168.229, + "new_cases_per_million": 4.014, + "new_cases_smoothed_per_million": 4.268, + "total_deaths_per_million": 12.793, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-21", + "total_cases": 7542.0, + "new_cases": 165.0, + "new_cases_smoothed": 184.143, + "total_deaths": 568.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 171.991, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 4.199, + "total_deaths_per_million": 12.953, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-22", + "total_cases": 7728.0, + "new_cases": 186.0, + "new_cases_smoothed": 183.714, + "total_deaths": 575.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 176.233, + "new_cases_per_million": 4.242, + "new_cases_smoothed_per_million": 4.19, + "total_deaths_per_million": 13.113, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-23", + "total_cases": 7918.0, + "new_cases": 190.0, + "new_cases_smoothed": 184.143, + "total_deaths": 582.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 180.566, + "new_cases_per_million": 4.333, + "new_cases_smoothed_per_million": 4.199, + "total_deaths_per_million": 13.272, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 76.85 + }, + { + "date": "2020-05-24", + "total_cases": 8113.0, + "new_cases": 195.0, + "new_cases_smoothed": 184.571, + "total_deaths": 592.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 185.013, + "new_cases_per_million": 4.447, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 13.5, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 76.85 + }, + { + "date": "2020-05-25", + "total_cases": 8306.0, + "new_cases": 193.0, + "new_cases_smoothed": 183.857, + "total_deaths": 600.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 189.414, + "new_cases_per_million": 4.401, + "new_cases_smoothed_per_million": 4.193, + "total_deaths_per_million": 13.683, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 76.85 + }, + { + "date": "2020-05-26", + "total_cases": 8503.0, + "new_cases": 197.0, + "new_cases_smoothed": 186.0, + "total_deaths": 609.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 193.906, + "new_cases_per_million": 4.492, + "new_cases_smoothed_per_million": 4.242, + "total_deaths_per_million": 13.888, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 76.85 + }, + { + "date": "2020-05-27", + "total_cases": 8697.0, + "new_cases": 194.0, + "new_cases_smoothed": 188.571, + "total_deaths": 617.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 198.331, + "new_cases_per_million": 4.424, + "new_cases_smoothed_per_million": 4.3, + "total_deaths_per_million": 14.07, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 76.85 + }, + { + "date": "2020-05-28", + "total_cases": 8857.0, + "new_cases": 160.0, + "new_cases_smoothed": 187.857, + "total_deaths": 623.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 201.979, + "new_cases_per_million": 3.649, + "new_cases_smoothed_per_million": 4.284, + "total_deaths_per_million": 14.207, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 76.85 + }, + { + "date": "2020-05-29", + "total_cases": 8997.0, + "new_cases": 140.0, + "new_cases_smoothed": 181.286, + "total_deaths": 630.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 205.172, + "new_cases_per_million": 3.193, + "new_cases_smoothed_per_million": 4.134, + "total_deaths_per_million": 14.367, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 76.85 + }, + { + "date": "2020-05-30", + "total_cases": 9134.0, + "new_cases": 137.0, + "new_cases_smoothed": 173.714, + "total_deaths": 638.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 208.296, + "new_cases_per_million": 3.124, + "new_cases_smoothed_per_million": 3.961, + "total_deaths_per_million": 14.549, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 76.85 + }, + { + "date": "2020-05-31", + "total_cases": 9267.0, + "new_cases": 133.0, + "new_cases_smoothed": 164.857, + "total_deaths": 646.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 211.329, + "new_cases_per_million": 3.033, + "new_cases_smoothed_per_million": 3.759, + "total_deaths_per_million": 14.732, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 76.85 + }, + { + "date": "2020-06-01", + "total_cases": 9394.0, + "new_cases": 127.0, + "new_cases_smoothed": 155.429, + "total_deaths": 653.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 214.225, + "new_cases_per_million": 2.896, + "new_cases_smoothed_per_million": 3.544, + "total_deaths_per_million": 14.891, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 76.85 + }, + { + "date": "2020-06-02", + "total_cases": 9513.0, + "new_cases": 119.0, + "new_cases_smoothed": 144.286, + "total_deaths": 661.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 216.939, + "new_cases_per_million": 2.714, + "new_cases_smoothed_per_million": 3.29, + "total_deaths_per_million": 15.074, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 76.85 + }, + { + "date": "2020-06-03", + "total_cases": 9626.0, + "new_cases": 113.0, + "new_cases_smoothed": 132.714, + "total_deaths": 667.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 219.516, + "new_cases_per_million": 2.577, + "new_cases_smoothed_per_million": 3.026, + "total_deaths_per_million": 15.211, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 76.85 + }, + { + "date": "2020-06-04", + "total_cases": 9626.0, + "new_cases": 0.0, + "new_cases_smoothed": 109.857, + "total_deaths": 667.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 219.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.505, + "total_deaths_per_million": 15.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.143, + "stringency_index": 76.85 + }, + { + "date": "2020-06-05", + "total_cases": 9831.0, + "new_cases": 205.0, + "new_cases_smoothed": 119.143, + "total_deaths": 681.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 224.191, + "new_cases_per_million": 4.675, + "new_cases_smoothed_per_million": 2.717, + "total_deaths_per_million": 15.53, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 76.85 + }, + { + "date": "2020-06-06", + "total_cases": 9935.0, + "new_cases": 104.0, + "new_cases_smoothed": 114.429, + "total_deaths": 690.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 226.562, + "new_cases_per_million": 2.372, + "new_cases_smoothed_per_million": 2.609, + "total_deaths_per_million": 15.735, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 76.85 + }, + { + "date": "2020-06-07", + "total_cases": 10050.0, + "new_cases": 115.0, + "new_cases_smoothed": 111.857, + "total_deaths": 698.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 229.185, + "new_cases_per_million": 2.623, + "new_cases_smoothed_per_million": 2.551, + "total_deaths_per_million": 15.918, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 76.85 + }, + { + "date": "2020-06-08", + "total_cases": 10154.0, + "new_cases": 104.0, + "new_cases_smoothed": 108.571, + "total_deaths": 707.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 231.557, + "new_cases_per_million": 2.372, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 16.123, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 76.85 + }, + { + "date": "2020-06-09", + "total_cases": 10265.0, + "new_cases": 111.0, + "new_cases_smoothed": 107.429, + "total_deaths": 715.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 234.088, + "new_cases_per_million": 2.531, + "new_cases_smoothed_per_million": 2.45, + "total_deaths_per_million": 16.305, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 76.85 + }, + { + "date": "2020-06-10", + "total_cases": 10382.0, + "new_cases": 117.0, + "new_cases_smoothed": 108.0, + "total_deaths": 724.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 236.756, + "new_cases_per_million": 2.668, + "new_cases_smoothed_per_million": 2.463, + "total_deaths_per_million": 16.51, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.186, + "stringency_index": 76.85 + }, + { + "date": "2020-06-11", + "total_cases": 10484.0, + "new_cases": 102.0, + "new_cases_smoothed": 122.571, + "total_deaths": 732.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 239.082, + "new_cases_per_million": 2.326, + "new_cases_smoothed_per_million": 2.795, + "total_deaths_per_million": 16.693, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 76.85 + }, + { + "date": "2020-06-12", + "total_cases": 10589.0, + "new_cases": 105.0, + "new_cases_smoothed": 108.286, + "total_deaths": 741.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 241.477, + "new_cases_per_million": 2.394, + "new_cases_smoothed_per_million": 2.469, + "total_deaths_per_million": 16.898, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 76.85 + }, + { + "date": "2020-06-13", + "total_cases": 10698.0, + "new_cases": 109.0, + "new_cases_smoothed": 109.0, + "total_deaths": 751.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 243.962, + "new_cases_per_million": 2.486, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 17.126, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 76.85 + }, + { + "date": "2020-06-14", + "total_cases": 10810.0, + "new_cases": 112.0, + "new_cases_smoothed": 108.571, + "total_deaths": 760.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 246.516, + "new_cases_per_million": 2.554, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 17.331, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 65.74 + }, + { + "date": "2020-06-15", + "total_cases": 10919.0, + "new_cases": 109.0, + "new_cases_smoothed": 109.286, + "total_deaths": 767.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 249.002, + "new_cases_per_million": 2.486, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 17.491, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 65.74 + }, + { + "date": "2020-06-16", + "total_cases": 11031.0, + "new_cases": 112.0, + "new_cases_smoothed": 109.429, + "total_deaths": 777.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 251.556, + "new_cases_per_million": 2.554, + "new_cases_smoothed_per_million": 2.495, + "total_deaths_per_million": 17.719, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 65.74 + }, + { + "date": "2020-06-17", + "total_cases": 11147.0, + "new_cases": 116.0, + "new_cases_smoothed": 109.286, + "total_deaths": 788.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 254.201, + "new_cases_per_million": 2.645, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 17.97, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 65.74 + }, + { + "date": "2020-06-18", + "total_cases": 11268.0, + "new_cases": 121.0, + "new_cases_smoothed": 112.0, + "total_deaths": 799.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 256.961, + "new_cases_per_million": 2.759, + "new_cases_smoothed_per_million": 2.554, + "total_deaths_per_million": 18.221, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 65.74 + }, + { + "date": "2020-06-19", + "total_cases": 11385.0, + "new_cases": 117.0, + "new_cases_smoothed": 113.714, + "total_deaths": 811.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 259.629, + "new_cases_per_million": 2.668, + "new_cases_smoothed_per_million": 2.593, + "total_deaths_per_million": 18.494, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.228, + "stringency_index": 65.74 + }, + { + "date": "2020-06-20", + "total_cases": 11504.0, + "new_cases": 119.0, + "new_cases_smoothed": 115.143, + "total_deaths": 825.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 262.343, + "new_cases_per_million": 2.714, + "new_cases_smoothed_per_million": 2.626, + "total_deaths_per_million": 18.814, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 65.74 + }, + { + "date": "2020-06-21", + "total_cases": 11631.0, + "new_cases": 127.0, + "new_cases_smoothed": 117.286, + "total_deaths": 837.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 265.239, + "new_cases_per_million": 2.896, + "new_cases_smoothed_per_million": 2.675, + "total_deaths_per_million": 19.087, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 65.74 + }, + { + "date": "2020-06-22", + "total_cases": 11771.0, + "new_cases": 140.0, + "new_cases_smoothed": 121.714, + "total_deaths": 845.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 268.431, + "new_cases_per_million": 3.193, + "new_cases_smoothed_per_million": 2.776, + "total_deaths_per_million": 19.27, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.254, + "stringency_index": 65.74 + }, + { + "date": "2020-06-23", + "total_cases": 11920.0, + "new_cases": 149.0, + "new_cases_smoothed": 127.0, + "total_deaths": 852.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 271.829, + "new_cases_per_million": 3.398, + "new_cases_smoothed_per_million": 2.896, + "total_deaths_per_million": 19.429, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 65.74 + }, + { + "date": "2020-06-24", + "total_cases": 12076.0, + "new_cases": 156.0, + "new_cases_smoothed": 132.714, + "total_deaths": 861.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 275.387, + "new_cases_per_million": 3.557, + "new_cases_smoothed_per_million": 3.026, + "total_deaths_per_million": 19.635, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 65.74 + }, + { + "date": "2020-06-25", + "total_cases": 12248.0, + "new_cases": 172.0, + "new_cases_smoothed": 140.0, + "total_deaths": 869.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 279.309, + "new_cases_per_million": 3.922, + "new_cases_smoothed_per_million": 3.193, + "total_deaths_per_million": 19.817, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.228, + "stringency_index": 65.74 + }, + { + "date": "2020-06-26", + "total_cases": 12445.0, + "new_cases": 197.0, + "new_cases_smoothed": 151.429, + "total_deaths": 878.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 283.802, + "new_cases_per_million": 4.492, + "new_cases_smoothed_per_million": 3.453, + "total_deaths_per_million": 20.022, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 65.74 + }, + { + "date": "2020-06-27", + "total_cases": 12685.0, + "new_cases": 240.0, + "new_cases_smoothed": 168.714, + "total_deaths": 885.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 289.275, + "new_cases_per_million": 5.473, + "new_cases_smoothed_per_million": 3.847, + "total_deaths_per_million": 20.182, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 65.74 + }, + { + "date": "2020-06-28", + "total_cases": 12968.0, + "new_cases": 283.0, + "new_cases_smoothed": 191.0, + "total_deaths": 892.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 295.728, + "new_cases_per_million": 6.454, + "new_cases_smoothed_per_million": 4.356, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 65.74 + }, + { + "date": "2020-06-29", + "total_cases": 13273.0, + "new_cases": 305.0, + "new_cases_smoothed": 214.571, + "total_deaths": 897.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 302.684, + "new_cases_per_million": 6.955, + "new_cases_smoothed_per_million": 4.893, + "total_deaths_per_million": 20.456, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 65.74 + }, + { + "date": "2020-06-30", + "total_cases": 13571.0, + "new_cases": 298.0, + "new_cases_smoothed": 235.857, + "total_deaths": 905.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 309.48, + "new_cases_per_million": 6.796, + "new_cases_smoothed_per_million": 5.379, + "total_deaths_per_million": 20.638, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 65.74 + }, + { + "date": "2020-07-01", + "total_cases": 13907.0, + "new_cases": 336.0, + "new_cases_smoothed": 261.571, + "total_deaths": 912.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 317.142, + "new_cases_per_million": 7.662, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 20.798, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 65.74 + }, + { + "date": "2020-07-02", + "total_cases": 14272.0, + "new_cases": 365.0, + "new_cases_smoothed": 289.143, + "total_deaths": 920.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 325.465, + "new_cases_per_million": 8.324, + "new_cases_smoothed_per_million": 6.594, + "total_deaths_per_million": 20.98, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 65.74 + }, + { + "date": "2020-07-03", + "total_cases": 14657.0, + "new_cases": 385.0, + "new_cases_smoothed": 316.0, + "total_deaths": 928.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 334.245, + "new_cases_per_million": 8.78, + "new_cases_smoothed_per_million": 7.206, + "total_deaths_per_million": 21.163, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 65.74 + }, + { + "date": "2020-07-04", + "total_cases": 15070.0, + "new_cases": 413.0, + "new_cases_smoothed": 340.714, + "total_deaths": 937.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 343.663, + "new_cases_per_million": 9.418, + "new_cases_smoothed_per_million": 7.77, + "total_deaths_per_million": 21.368, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 65.74 + }, + { + "date": "2020-07-05", + "total_cases": 15500.0, + "new_cases": 430.0, + "new_cases_smoothed": 361.714, + "total_deaths": 946.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 353.469, + "new_cases_per_million": 9.806, + "new_cases_smoothed_per_million": 8.249, + "total_deaths_per_million": 21.573, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 65.74 + }, + { + "date": "2020-07-06", + "total_cases": 15941.0, + "new_cases": 441.0, + "new_cases_smoothed": 381.143, + "total_deaths": 952.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 363.526, + "new_cases_per_million": 10.057, + "new_cases_smoothed_per_million": 8.692, + "total_deaths_per_million": 21.71, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 65.74 + }, + { + "date": "2020-07-07", + "total_cases": 16404.0, + "new_cases": 463.0, + "new_cases_smoothed": 404.714, + "total_deaths": 959.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 374.085, + "new_cases_per_million": 10.558, + "new_cases_smoothed_per_million": 9.229, + "total_deaths_per_million": 21.869, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 65.74 + }, + { + "date": "2020-07-08", + "total_cases": 16879.0, + "new_cases": 475.0, + "new_cases_smoothed": 424.571, + "total_deaths": 968.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 384.917, + "new_cases_per_million": 10.832, + "new_cases_smoothed_per_million": 9.682, + "total_deaths_per_million": 22.075, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 65.74 + }, + { + "date": "2020-07-09", + "total_cases": 17348.0, + "new_cases": 469.0, + "new_cases_smoothed": 439.429, + "total_deaths": 978.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 395.612, + "new_cases_per_million": 10.695, + "new_cases_smoothed_per_million": 10.021, + "total_deaths_per_million": 22.303, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.189, + "stringency_index": 65.74 + }, + { + "date": "2020-07-10", + "total_cases": 17808.0, + "new_cases": 460.0, + "new_cases_smoothed": 450.143, + "total_deaths": 988.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 406.102, + "new_cases_per_million": 10.49, + "new_cases_smoothed_per_million": 10.265, + "total_deaths_per_million": 22.531, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 74.07 + }, + { + "date": "2020-07-11", + "total_cases": 18242.0, + "new_cases": 434.0, + "new_cases_smoothed": 453.143, + "total_deaths": 996.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 415.999, + "new_cases_per_million": 9.897, + "new_cases_smoothed_per_million": 10.334, + "total_deaths_per_million": 22.713, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 74.07 + }, + { + "date": "2020-07-12", + "total_cases": 18712.0, + "new_cases": 470.0, + "new_cases_smoothed": 458.857, + "total_deaths": 1004.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 426.717, + "new_cases_per_million": 10.718, + "new_cases_smoothed_per_million": 10.464, + "total_deaths_per_million": 22.896, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.189, + "stringency_index": 74.07 + }, + { + "date": "2020-07-13", + "total_cases": 19195.0, + "new_cases": 483.0, + "new_cases_smoothed": 464.857, + "total_deaths": 1011.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 437.732, + "new_cases_per_million": 11.015, + "new_cases_smoothed_per_million": 10.601, + "total_deaths_per_million": 23.055, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 74.07 + }, + { + "date": "2020-07-14", + "total_cases": 19689.0, + "new_cases": 494.0, + "new_cases_smoothed": 469.286, + "total_deaths": 1018.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 448.997, + "new_cases_per_million": 11.265, + "new_cases_smoothed_per_million": 10.702, + "total_deaths_per_million": 23.215, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 74.07 + }, + { + "date": "2020-07-15", + "total_cases": 20216.0, + "new_cases": 527.0, + "new_cases_smoothed": 476.714, + "total_deaths": 1028.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 461.015, + "new_cases_per_million": 12.018, + "new_cases_smoothed_per_million": 10.871, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 74.07 + }, + { + "date": "2020-07-16", + "total_cases": 20770.0, + "new_cases": 554.0, + "new_cases_smoothed": 488.857, + "total_deaths": 1040.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 473.649, + "new_cases_per_million": 12.634, + "new_cases_smoothed_per_million": 11.148, + "total_deaths_per_million": 23.717, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 74.07 + }, + { + "date": "2020-07-17", + "total_cases": 21355.0, + "new_cases": 585.0, + "new_cases_smoothed": 506.714, + "total_deaths": 1052.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 486.99, + "new_cases_per_million": 13.341, + "new_cases_smoothed_per_million": 11.555, + "total_deaths_per_million": 23.99, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 74.07 + }, + { + "date": "2020-07-18", + "total_cases": 21948.0, + "new_cases": 593.0, + "new_cases_smoothed": 529.429, + "total_deaths": 1057.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 500.513, + "new_cases_per_million": 13.523, + "new_cases_smoothed_per_million": 12.073, + "total_deaths_per_million": 24.104, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 74.07 + }, + { + "date": "2020-07-19", + "total_cases": 22549.0, + "new_cases": 601.0, + "new_cases_smoothed": 548.143, + "total_deaths": 1068.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 514.218, + "new_cases_per_million": 13.705, + "new_cases_smoothed_per_million": 12.5, + "total_deaths_per_million": 24.355, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 74.07 + }, + { + "date": "2020-07-20", + "total_cases": 23084.0, + "new_cases": 535.0, + "new_cases_smoothed": 555.571, + "total_deaths": 1078.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 526.418, + "new_cases_per_million": 12.2, + "new_cases_smoothed_per_million": 12.67, + "total_deaths_per_million": 24.583, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 74.07 + }, + { + "date": "2020-07-21", + "total_cases": 23691.0, + "new_cases": 607.0, + "new_cases_smoothed": 571.714, + "total_deaths": 1087.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 540.261, + "new_cases_per_million": 13.842, + "new_cases_smoothed_per_million": 13.038, + "total_deaths_per_million": 24.788, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 74.07 + }, + { + "date": "2020-07-22", + "total_cases": 24278.0, + "new_cases": 587.0, + "new_cases_smoothed": 580.286, + "total_deaths": 1100.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 553.647, + "new_cases_per_million": 13.386, + "new_cases_smoothed_per_million": 13.233, + "total_deaths_per_million": 25.085, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 74.07 + }, + { + "date": "2020-07-23", + "total_cases": 24872.0, + "new_cases": 594.0, + "new_cases_smoothed": 586.0, + "total_deaths": 1111.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 567.193, + "new_cases_per_million": 13.546, + "new_cases_smoothed_per_million": 13.363, + "total_deaths_per_million": 25.336, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 74.07 + }, + { + "date": "2020-07-24", + "total_cases": 25484.0, + "new_cases": 612.0, + "new_cases_smoothed": 589.857, + "total_deaths": 1124.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 581.149, + "new_cases_per_million": 13.956, + "new_cases_smoothed_per_million": 13.451, + "total_deaths_per_million": 25.632, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 74.07 + }, + { + "date": "2020-07-25", + "total_cases": 26159.0, + "new_cases": 675.0, + "new_cases_smoothed": 601.571, + "total_deaths": 1136.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 596.542, + "new_cases_per_million": 15.393, + "new_cases_smoothed_per_million": 13.719, + "total_deaths_per_million": 25.906, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 74.07 + }, + { + "date": "2020-07-26", + "total_cases": 26764.0, + "new_cases": 605.0, + "new_cases_smoothed": 602.143, + "total_deaths": 1146.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 610.339, + "new_cases_per_million": 13.797, + "new_cases_smoothed_per_million": 13.732, + "total_deaths_per_million": 26.134, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.254, + "stringency_index": 74.07 + }, + { + "date": "2020-07-27", + "total_cases": 27357.0, + "new_cases": 593.0, + "new_cases_smoothed": 610.429, + "total_deaths": 1155.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 623.862, + "new_cases_per_million": 13.523, + "new_cases_smoothed_per_million": 13.921, + "total_deaths_per_million": 26.339, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 79.63 + }, + { + "date": "2020-07-28", + "total_cases": 27973.0, + "new_cases": 616.0, + "new_cases_smoothed": 611.714, + "total_deaths": 1163.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 637.91, + "new_cases_per_million": 14.048, + "new_cases_smoothed_per_million": 13.95, + "total_deaths_per_million": 26.522, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 79.63 + }, + { + "date": "2020-07-29", + "total_cases": 28615.0, + "new_cases": 642.0, + "new_cases_smoothed": 619.571, + "total_deaths": 1174.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 652.55, + "new_cases_per_million": 14.64, + "new_cases_smoothed_per_million": 14.129, + "total_deaths_per_million": 26.772, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 79.63 + }, + { + "date": "2020-07-30", + "total_cases": 29229.0, + "new_cases": 614.0, + "new_cases_smoothed": 622.429, + "total_deaths": 1186.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 666.552, + "new_cases_per_million": 14.002, + "new_cases_smoothed_per_million": 14.194, + "total_deaths_per_million": 27.046, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 79.63 + }, + { + "date": "2020-07-31", + "total_cases": 29831.0, + "new_cases": 602.0, + "new_cases_smoothed": 621.0, + "total_deaths": 1200.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 680.28, + "new_cases_per_million": 13.728, + "new_cases_smoothed_per_million": 14.162, + "total_deaths_per_million": 27.365, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 79.63 + }, + { + "date": "2020-08-01", + "total_cases": 30394.0, + "new_cases": 563.0, + "new_cases_smoothed": 605.0, + "total_deaths": 1210.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 693.119, + "new_cases_per_million": 12.839, + "new_cases_smoothed_per_million": 13.797, + "total_deaths_per_million": 27.593, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 79.63 + }, + { + "date": "2020-08-02", + "total_cases": 30950.0, + "new_cases": 556.0, + "new_cases_smoothed": 598.0, + "total_deaths": 1223.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 705.798, + "new_cases_per_million": 12.679, + "new_cases_smoothed_per_million": 13.637, + "total_deaths_per_million": 27.89, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 79.63 + }, + { + "date": "2020-08-03", + "total_cases": 31465.0, + "new_cases": 515.0, + "new_cases_smoothed": 586.857, + "total_deaths": 1231.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 717.543, + "new_cases_per_million": 11.744, + "new_cases_smoothed_per_million": 13.383, + "total_deaths_per_million": 28.072, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 79.63 + }, + { + "date": "2020-08-04", + "total_cases": 31972.0, + "new_cases": 507.0, + "new_cases_smoothed": 571.286, + "total_deaths": 1239.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 729.105, + "new_cases_per_million": 11.562, + "new_cases_smoothed_per_million": 13.028, + "total_deaths_per_million": 28.255, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 79.63 + }, + { + "date": "2020-08-05", + "total_cases": 32504.0, + "new_cases": 532.0, + "new_cases_smoothed": 555.571, + "total_deaths": 1248.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 741.237, + "new_cases_per_million": 12.132, + "new_cases_smoothed_per_million": 12.67, + "total_deaths_per_million": 28.46, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 79.63 + }, + { + "date": "2020-08-06", + "total_cases": 33055.0, + "new_cases": 551.0, + "new_cases_smoothed": 546.571, + "total_deaths": 1261.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 753.802, + "new_cases_per_million": 12.565, + "new_cases_smoothed_per_million": 12.464, + "total_deaths_per_million": 28.756, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 79.63 + }, + { + "date": "2020-08-07", + "total_cases": 33626.0, + "new_cases": 571.0, + "new_cases_smoothed": 542.143, + "total_deaths": 1273.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 766.823, + "new_cases_per_million": 13.021, + "new_cases_smoothed_per_million": 12.363, + "total_deaths_per_million": 29.03, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 79.63 + }, + { + "date": "2020-08-08", + "total_cases": 34155.0, + "new_cases": 529.0, + "new_cases_smoothed": 537.286, + "total_deaths": 1282.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 778.887, + "new_cases_per_million": 12.064, + "new_cases_smoothed_per_million": 12.253, + "total_deaths_per_million": 29.235, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 87.96 + }, + { + "date": "2020-08-09", + "total_cases": 34693.0, + "new_cases": 538.0, + "new_cases_smoothed": 534.714, + "total_deaths": 1293.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 791.156, + "new_cases_per_million": 12.269, + "new_cases_smoothed_per_million": 12.194, + "total_deaths_per_million": 29.486, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.228, + "stringency_index": 87.96 + }, + { + "date": "2020-08-10", + "total_cases": 35214.0, + "new_cases": 521.0, + "new_cases_smoothed": 535.571, + "total_deaths": 1302.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 803.037, + "new_cases_per_million": 11.881, + "new_cases_smoothed_per_million": 12.213, + "total_deaths_per_million": 29.691, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 85.19 + }, + { + "date": "2020-08-11", + "total_cases": 35712.0, + "new_cases": 498.0, + "new_cases_smoothed": 534.286, + "total_deaths": 1312.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 814.393, + "new_cases_per_million": 11.357, + "new_cases_smoothed_per_million": 12.184, + "total_deaths_per_million": 29.919, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 85.19 + }, + { + "date": "2020-08-12", + "total_cases": 36204.0, + "new_cases": 492.0, + "new_cases_smoothed": 528.571, + "total_deaths": 1322.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 825.613, + "new_cases_per_million": 11.22, + "new_cases_smoothed_per_million": 12.054, + "total_deaths_per_million": 30.148, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 85.19 + }, + { + "date": "2020-08-13", + "total_cases": 36699.0, + "new_cases": 495.0, + "new_cases_smoothed": 520.571, + "total_deaths": 1333.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 836.901, + "new_cases_per_million": 11.288, + "new_cases_smoothed_per_million": 11.871, + "total_deaths_per_million": 30.398, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 85.19 + }, + { + "date": "2020-08-14", + "total_cases": 37187.0, + "new_cases": 488.0, + "new_cases_smoothed": 508.714, + "total_deaths": 1341.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 848.03, + "new_cases_per_million": 11.129, + "new_cases_smoothed_per_million": 11.601, + "total_deaths_per_million": 30.581, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 85.19 + }, + { + "date": "2020-08-15", + "total_cases": 37664.0, + "new_cases": 477.0, + "new_cases_smoothed": 501.286, + "total_deaths": 1351.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 858.908, + "new_cases_per_million": 10.878, + "new_cases_smoothed_per_million": 11.432, + "total_deaths_per_million": 30.809, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 68.52 + }, + { + "date": "2020-08-16", + "total_cases": 38133.0, + "new_cases": 469.0, + "new_cases_smoothed": 491.429, + "total_deaths": 1360.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 869.603, + "new_cases_per_million": 10.695, + "new_cases_smoothed_per_million": 11.207, + "total_deaths_per_million": 31.014, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 68.52 + }, + { + "date": "2020-08-17", + "total_cases": 38583.0, + "new_cases": 450.0, + "new_cases_smoothed": 481.286, + "total_deaths": 1370.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 879.865, + "new_cases_per_million": 10.262, + "new_cases_smoothed_per_million": 10.975, + "total_deaths_per_million": 31.242, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 68.52 + }, + { + "date": "2020-08-18", + "total_cases": 39025.0, + "new_cases": 442.0, + "new_cases_smoothed": 473.286, + "total_deaths": 1379.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 889.945, + "new_cases_per_million": 10.08, + "new_cases_smoothed_per_million": 10.793, + "total_deaths_per_million": 31.447, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 79.63 + }, + { + "date": "2020-08-19", + "total_cases": 39444.0, + "new_cases": 419.0, + "new_cases_smoothed": 462.857, + "total_deaths": 1391.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 899.5, + "new_cases_per_million": 9.555, + "new_cases_smoothed_per_million": 10.555, + "total_deaths_per_million": 31.721, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 79.63 + }, + { + "date": "2020-08-20", + "total_cases": 39847.0, + "new_cases": 403.0, + "new_cases_smoothed": 449.714, + "total_deaths": 1402.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 908.69, + "new_cases_per_million": 9.19, + "new_cases_smoothed_per_million": 10.255, + "total_deaths_per_million": 31.972, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 79.63 + }, + { + "date": "2020-08-21", + "total_cases": 40258.0, + "new_cases": 411.0, + "new_cases_smoothed": 438.714, + "total_deaths": 1411.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 918.063, + "new_cases_per_million": 9.373, + "new_cases_smoothed_per_million": 10.005, + "total_deaths_per_million": 32.177, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.228, + "stringency_index": 79.63 + }, + { + "date": "2020-08-22", + "total_cases": 40667.0, + "new_cases": 409.0, + "new_cases_smoothed": 429.0, + "total_deaths": 1418.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 927.39, + "new_cases_per_million": 9.327, + "new_cases_smoothed_per_million": 9.783, + "total_deaths_per_million": 32.337, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 79.63 + }, + { + "date": "2020-08-23", + "total_cases": 41068.0, + "new_cases": 401.0, + "new_cases_smoothed": 419.286, + "total_deaths": 1424.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 936.534, + "new_cases_per_million": 9.145, + "new_cases_smoothed_per_million": 9.562, + "total_deaths_per_million": 32.474, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 79.63 + }, + { + "date": "2020-08-24", + "total_cases": 41460.0, + "new_cases": 392.0, + "new_cases_smoothed": 411.0, + "total_deaths": 1435.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 945.474, + "new_cases_per_million": 8.939, + "new_cases_smoothed_per_million": 9.373, + "total_deaths_per_million": 32.724, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 79.63 + }, + { + "date": "2020-08-25", + "total_cases": 41858.0, + "new_cases": 398.0, + "new_cases_smoothed": 404.714, + "total_deaths": 1446.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 954.55, + "new_cases_per_million": 9.076, + "new_cases_smoothed_per_million": 9.229, + "total_deaths_per_million": 32.975, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 79.63 + }, + { + "date": "2020-08-26", + "total_cases": 42228.0, + "new_cases": 370.0, + "new_cases_smoothed": 397.714, + "total_deaths": 1456.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 962.987, + "new_cases_per_million": 8.438, + "new_cases_smoothed_per_million": 9.07, + "total_deaths_per_million": 33.203, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 79.63 + }, + { + "date": "2020-08-27", + "total_cases": 42619.0, + "new_cases": 391.0, + "new_cases_smoothed": 396.0, + "total_deaths": 1465.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 971.904, + "new_cases_per_million": 8.917, + "new_cases_smoothed_per_million": 9.031, + "total_deaths_per_million": 33.409, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.205 + }, + { + "date": "2020-08-28", + "total_cases": 43016.0, + "new_cases": 397.0, + "new_cases_smoothed": 394.0, + "total_deaths": 1475.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 980.957, + "new_cases_per_million": 9.053, + "new_cases_smoothed_per_million": 8.985, + "total_deaths_per_million": 33.637, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.208 + }, + { + "date": "2020-08-29", + "total_cases": 43403.0, + "new_cases": 387.0, + "new_cases_smoothed": 390.857, + "total_deaths": 1483.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 989.783, + "new_cases_per_million": 8.825, + "new_cases_smoothed_per_million": 8.913, + "total_deaths_per_million": 33.819, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.212 + }, + { + "date": "2020-08-30", + "total_cases": 43782.0, + "new_cases": 379.0, + "new_cases_smoothed": 387.714, + "total_deaths": 1491.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 998.426, + "new_cases_per_million": 8.643, + "new_cases_smoothed_per_million": 8.842, + "total_deaths_per_million": 34.001, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-08-31", + "total_cases": 44146.0, + "new_cases": 364.0, + "new_cases_smoothed": 383.714, + "total_deaths": 1501.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1006.726, + "new_cases_per_million": 8.301, + "new_cases_smoothed_per_million": 8.75, + "total_deaths_per_million": 34.23, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.215 + }, + { + "date": "2020-09-01", + "total_cases": 44494.0, + "new_cases": 348.0, + "new_cases_smoothed": 376.571, + "total_deaths": 1510.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1014.662, + "new_cases_per_million": 7.936, + "new_cases_smoothed_per_million": 8.588, + "total_deaths_per_million": 34.435, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.208 + }, + { + "date": "2020-09-02", + "total_cases": 44833.0, + "new_cases": 339.0, + "new_cases_smoothed": 372.143, + "total_deaths": 1518.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 1022.393, + "new_cases_per_million": 7.731, + "new_cases_smoothed_per_million": 8.487, + "total_deaths_per_million": 34.617, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.202 + }, + { + "date": "2020-09-03", + "total_cases": 45158.0, + "new_cases": 325.0, + "new_cases_smoothed": 362.714, + "total_deaths": 1525.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1029.804, + "new_cases_per_million": 7.411, + "new_cases_smoothed_per_million": 8.272, + "total_deaths_per_million": 34.777, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.195 + }, + { + "date": "2020-09-04", + "total_cases": 45469.0, + "new_cases": 311.0, + "new_cases_smoothed": 350.429, + "total_deaths": 1531.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1036.897, + "new_cases_per_million": 7.092, + "new_cases_smoothed_per_million": 7.991, + "total_deaths_per_million": 34.914, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.182 + }, + { + "date": "2020-09-05", + "total_cases": 45773.0, + "new_cases": 304.0, + "new_cases_smoothed": 338.571, + "total_deaths": 1539.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1043.829, + "new_cases_per_million": 6.933, + "new_cases_smoothed_per_million": 7.721, + "total_deaths_per_million": 35.096, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.182 + } + ] + }, + "AND": { + "continent": "Europe", + "location": "Andorra", + "population": 77265.0, + "population_density": 163.755, + "cardiovasc_death_rate": 109.135, + "diabetes_prevalence": 7.97, + "female_smokers": 29.0, + "male_smokers": 37.8, + "life_expectancy": 83.73, + "data": [ + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 12.942, + "new_cases_per_million": 12.942, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.849, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 9.26 + }, + { + "date": "2020-03-14", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.885, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 20.37 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.849, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 20.37 + }, + { + "date": "2020-03-16", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.712, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 7.396, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-17", + "total_cases": 14.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.195, + "new_cases_per_million": 116.482, + "new_cases_smoothed_per_million": 24.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-18", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.195, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-19", + "total_cases": 53.0, + "new_cases": 39.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 685.951, + "new_cases_per_million": 504.756, + "new_cases_smoothed_per_million": 96.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-20", + "total_cases": 75.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 970.685, + "new_cases_per_million": 284.734, + "new_cases_smoothed_per_million": 136.82, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-21", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 970.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 134.971, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-22", + "total_cases": 88.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1138.937, + "new_cases_per_million": 168.252, + "new_cases_smoothed_per_million": 159.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-23", + "total_cases": 113.0, + "new_cases": 25.0, + "new_cases_smoothed": 15.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1462.499, + "new_cases_per_million": 323.562, + "new_cases_smoothed_per_million": 199.684, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-24", + "total_cases": 133.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1721.349, + "new_cases_per_million": 258.849, + "new_cases_smoothed_per_million": 220.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-25", + "total_cases": 164.0, + "new_cases": 31.0, + "new_cases_smoothed": 21.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2122.565, + "new_cases_per_million": 401.217, + "new_cases_smoothed_per_million": 277.339, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-26", + "total_cases": 188.0, + "new_cases": 24.0, + "new_cases_smoothed": 19.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2433.184, + "new_cases_per_million": 310.619, + "new_cases_smoothed_per_million": 249.605, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-27", + "total_cases": 224.0, + "new_cases": 36.0, + "new_cases_smoothed": 21.286, + "total_deaths": 3.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2899.113, + "new_cases_per_million": 465.929, + "new_cases_smoothed_per_million": 275.49, + "total_deaths_per_million": 38.827, + "new_deaths_per_million": 38.827, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 48.15 + }, + { + "date": "2020-03-28", + "total_cases": 267.0, + "new_cases": 43.0, + "new_cases_smoothed": 27.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3455.64, + "new_cases_per_million": 556.526, + "new_cases_smoothed_per_million": 354.993, + "total_deaths_per_million": 38.827, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 48.15 + }, + { + "date": "2020-03-29", + "total_cases": 308.0, + "new_cases": 41.0, + "new_cases_smoothed": 31.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3986.281, + "new_cases_per_million": 530.641, + "new_cases_smoothed_per_million": 406.763, + "total_deaths_per_million": 51.77, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 48.15 + }, + { + "date": "2020-03-30", + "total_cases": 334.0, + "new_cases": 26.0, + "new_cases_smoothed": 31.571, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4322.785, + "new_cases_per_million": 336.504, + "new_cases_smoothed_per_million": 408.612, + "total_deaths_per_million": 77.655, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 11.094, + "stringency_index": 48.15 + }, + { + "date": "2020-03-31", + "total_cases": 370.0, + "new_cases": 36.0, + "new_cases_smoothed": 33.857, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4788.714, + "new_cases_per_million": 465.929, + "new_cases_smoothed_per_million": 438.195, + "total_deaths_per_million": 103.54, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 14.791, + "stringency_index": 48.15 + }, + { + "date": "2020-04-01", + "total_cases": 376.0, + "new_cases": 6.0, + "new_cases_smoothed": 30.286, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4866.369, + "new_cases_per_million": 77.655, + "new_cases_smoothed_per_million": 391.972, + "total_deaths_per_million": 155.31, + "new_deaths_per_million": 51.77, + "new_deaths_smoothed_per_million": 22.187, + "stringency_index": 48.15 + }, + { + "date": "2020-04-02", + "total_cases": 390.0, + "new_cases": 14.0, + "new_cases_smoothed": 28.857, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5047.564, + "new_cases_per_million": 181.195, + "new_cases_smoothed_per_million": 373.483, + "total_deaths_per_million": 181.195, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 25.885, + "stringency_index": 48.15 + }, + { + "date": "2020-04-03", + "total_cases": 428.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5539.377, + "new_cases_per_million": 491.814, + "new_cases_smoothed_per_million": 377.181, + "total_deaths_per_million": 194.137, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 22.187, + "stringency_index": 48.15 + }, + { + "date": "2020-04-04", + "total_cases": 439.0, + "new_cases": 11.0, + "new_cases_smoothed": 24.571, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5681.745, + "new_cases_per_million": 142.367, + "new_cases_smoothed_per_million": 318.015, + "total_deaths_per_million": 207.08, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 24.036, + "stringency_index": 48.15 + }, + { + "date": "2020-04-05", + "total_cases": 466.0, + "new_cases": 27.0, + "new_cases_smoothed": 22.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6031.191, + "new_cases_per_million": 349.447, + "new_cases_smoothed_per_million": 292.13, + "total_deaths_per_million": 220.022, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 24.036, + "stringency_index": 48.15 + }, + { + "date": "2020-04-06", + "total_cases": 501.0, + "new_cases": 35.0, + "new_cases_smoothed": 23.857, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6484.178, + "new_cases_per_million": 452.986, + "new_cases_smoothed_per_million": 308.77, + "total_deaths_per_million": 232.964, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 22.187, + "stringency_index": 48.15 + }, + { + "date": "2020-04-07", + "total_cases": 526.0, + "new_cases": 25.0, + "new_cases_smoothed": 22.286, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6807.74, + "new_cases_per_million": 323.562, + "new_cases_smoothed_per_million": 288.432, + "total_deaths_per_million": 271.792, + "new_deaths_per_million": 38.827, + "new_deaths_smoothed_per_million": 24.036, + "stringency_index": 48.15 + }, + { + "date": "2020-04-08", + "total_cases": 545.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7053.647, + "new_cases_per_million": 245.907, + "new_cases_smoothed_per_million": 312.468, + "total_deaths_per_million": 284.734, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 18.489, + "stringency_index": 56.48 + }, + { + "date": "2020-04-09", + "total_cases": 564.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.857, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7299.553, + "new_cases_per_million": 245.907, + "new_cases_smoothed_per_million": 321.713, + "total_deaths_per_million": 297.677, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 16.64, + "stringency_index": 56.48 + }, + { + "date": "2020-04-10", + "total_cases": 583.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.143, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7545.46, + "new_cases_per_million": 245.907, + "new_cases_smoothed_per_million": 286.583, + "total_deaths_per_million": 323.562, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 18.489, + "stringency_index": 56.48 + }, + { + "date": "2020-04-11", + "total_cases": 601.0, + "new_cases": 18.0, + "new_cases_smoothed": 23.143, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7778.425, + "new_cases_per_million": 232.964, + "new_cases_smoothed_per_million": 299.526, + "total_deaths_per_million": 336.504, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 18.489, + "stringency_index": 56.48 + }, + { + "date": "2020-04-12", + "total_cases": 622.0, + "new_cases": 21.0, + "new_cases_smoothed": 22.286, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 8050.217, + "new_cases_per_million": 271.792, + "new_cases_smoothed_per_million": 288.432, + "total_deaths_per_million": 362.389, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 20.338, + "stringency_index": 56.48 + }, + { + "date": "2020-04-13", + "total_cases": 638.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 8257.296, + "new_cases_per_million": 207.08, + "new_cases_smoothed_per_million": 253.303, + "total_deaths_per_million": 375.332, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 20.338, + "stringency_index": 56.48 + }, + { + "date": "2020-04-14", + "total_cases": 646.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8360.836, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 221.871, + "total_deaths_per_million": 375.332, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 14.791, + "stringency_index": 56.48 + }, + { + "date": "2020-04-15", + "total_cases": 659.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.286, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 8529.088, + "new_cases_per_million": 168.252, + "new_cases_smoothed_per_million": 210.777, + "total_deaths_per_million": 401.217, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 16.64, + "stringency_index": 56.48 + }, + { + "date": "2020-04-16", + "total_cases": 673.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.571, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 8710.283, + "new_cases_per_million": 181.195, + "new_cases_smoothed_per_million": 201.533, + "total_deaths_per_million": 427.102, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 18.489, + "stringency_index": 56.48 + }, + { + "date": "2020-04-17", + "total_cases": 682.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8826.765, + "new_cases_per_million": 116.482, + "new_cases_smoothed_per_million": 183.044, + "total_deaths_per_million": 427.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 14.791, + "stringency_index": 56.48 + }, + { + "date": "2020-04-18", + "total_cases": 696.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.571, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 9007.96, + "new_cases_per_million": 181.195, + "new_cases_smoothed_per_million": 175.648, + "total_deaths_per_million": 452.986, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 16.64, + "stringency_index": 56.48 + }, + { + "date": "2020-04-19", + "total_cases": 704.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.714, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9111.499, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 151.612, + "total_deaths_per_million": 452.986, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 12.942, + "stringency_index": 56.48 + }, + { + "date": "2020-04-20", + "total_cases": 713.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.714, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9227.982, + "new_cases_per_million": 116.482, + "new_cases_smoothed_per_million": 138.669, + "total_deaths_per_million": 465.929, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 12.942, + "stringency_index": 52.78 + }, + { + "date": "2020-04-21", + "total_cases": 717.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.143, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9279.752, + "new_cases_per_million": 51.77, + "new_cases_smoothed_per_million": 131.274, + "total_deaths_per_million": 465.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 12.942, + "stringency_index": 52.78 + }, + { + "date": "2020-04-22", + "total_cases": 717.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9279.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 107.238, + "total_deaths_per_million": 478.871, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 11.094, + "stringency_index": 52.78 + }, + { + "date": "2020-04-23", + "total_cases": 723.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9357.406, + "new_cases_per_million": 77.655, + "new_cases_smoothed_per_million": 92.446, + "total_deaths_per_million": 478.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-04-24", + "total_cases": 724.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9370.349, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 77.655, + "total_deaths_per_million": 478.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-04-25", + "total_cases": 731.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 40.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9460.946, + "new_cases_per_million": 90.597, + "new_cases_smoothed_per_million": 64.712, + "total_deaths_per_million": 517.699, + "new_deaths_per_million": 38.827, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-04-26", + "total_cases": 733.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9486.831, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 53.619, + "total_deaths_per_million": 517.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-04-27", + "total_cases": 740.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.857, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9577.428, + "new_cases_per_million": 90.597, + "new_cases_smoothed_per_million": 49.921, + "total_deaths_per_million": 517.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-04-28", + "total_cases": 743.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9616.256, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 48.072, + "total_deaths_per_million": 517.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-04-29", + "total_cases": 743.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9616.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.072, + "total_deaths_per_million": 530.641, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-04-30", + "total_cases": 743.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9616.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.978, + "total_deaths_per_million": 543.584, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-01", + "total_cases": 745.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9642.141, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 38.827, + "total_deaths_per_million": 543.584, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-02", + "total_cases": 746.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9655.083, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 27.734, + "total_deaths_per_million": 556.526, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 52.78 + }, + { + "date": "2020-05-03", + "total_cases": 747.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9668.026, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 25.885, + "total_deaths_per_million": 569.469, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-05-04", + "total_cases": 748.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9680.968, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 14.791, + "total_deaths_per_million": 582.411, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-05", + "total_cases": 750.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9706.853, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 582.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-06", + "total_cases": 751.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9719.796, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 14.791, + "total_deaths_per_million": 595.354, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-07", + "total_cases": 751.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9719.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.791, + "total_deaths_per_million": 595.354, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-05-08", + "total_cases": 752.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9732.738, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 608.296, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 9.245, + "stringency_index": 52.78 + }, + { + "date": "2020-05-09", + "total_cases": 752.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9732.738, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.094, + "total_deaths_per_million": 608.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-05-10", + "total_cases": 754.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9758.623, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 621.239, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 7.396, + "stringency_index": 52.78 + }, + { + "date": "2020-05-11", + "total_cases": 755.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9771.565, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 621.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-12", + "total_cases": 756.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9784.508, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 11.094, + "total_deaths_per_million": 621.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-13", + "total_cases": 758.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9810.393, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 621.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-14", + "total_cases": 760.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9836.278, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 16.64, + "total_deaths_per_million": 634.181, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-15", + "total_cases": 761.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 16.64, + "total_deaths_per_million": 634.181, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-16", + "total_cases": 761.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.64, + "total_deaths_per_million": 634.181, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-17", + "total_cases": 761.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 25.885, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-18", + "total_cases": 761.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.094, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-19", + "total_cases": 761.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.245, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-20", + "total_cases": 761.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9849.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.547, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.547, + "stringency_index": 50.0 + }, + { + "date": "2020-05-21", + "total_cases": 762.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9862.163, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-22", + "total_cases": 762.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9862.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-23", + "total_cases": 762.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9862.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.698, + "stringency_index": 50.0 + }, + { + "date": "2020-05-24", + "total_cases": 762.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9862.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-25", + "total_cases": 763.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9875.105, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-26", + "total_cases": 763.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9875.105, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-27", + "total_cases": 763.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9875.105, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-28", + "total_cases": 763.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9875.105, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-29", + "total_cases": 763.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9875.105, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-30", + "total_cases": 764.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.048, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-31", + "total_cases": 764.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-06-01", + "total_cases": 764.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-06-02", + "total_cases": 765.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9900.99, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-03", + "total_cases": 844.0, + "new_cases": 79.0, + "new_cases_smoothed": 11.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10923.445, + "new_cases_per_million": 1022.455, + "new_cases_smoothed_per_million": 149.763, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-04", + "total_cases": 851.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11014.043, + "new_cases_per_million": 90.597, + "new_cases_smoothed_per_million": 162.705, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-05", + "total_cases": 852.0, + "new_cases": 1.0, + "new_cases_smoothed": 12.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 164.554, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-06", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 162.705, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-07", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 162.705, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-08", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 162.705, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-09", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 160.856, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-10", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.791, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-11", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-12", + "total_cases": 852.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11026.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-13", + "total_cases": 853.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11039.928, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-14", + "total_cases": 853.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11039.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-15", + "total_cases": 853.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11039.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-16", + "total_cases": 853.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11039.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 660.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-17", + "total_cases": 854.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11052.87, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-18", + "total_cases": 854.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11052.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-19", + "total_cases": 855.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 5.547, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-20", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-21", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-22", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-23", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.698, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 38.89 + }, + { + "date": "2020-06-24", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-25", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-26", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-27", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-28", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-29", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-30", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-01", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-02", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-03", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-04", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-05", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-06", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-07", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-08", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-09", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-10", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-11", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-12", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-13", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11065.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-14", + "total_cases": 858.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11104.64, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 5.547, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-15", + "total_cases": 861.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11143.467, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 11.094, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-16", + "total_cases": 862.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11156.41, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 12.942, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-17", + "total_cases": 877.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11350.547, + "new_cases_per_million": 194.137, + "new_cases_smoothed_per_million": 40.676, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-18", + "total_cases": 880.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11389.374, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 46.223, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-19", + "total_cases": 880.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11389.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.223, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-20", + "total_cases": 880.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11389.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.223, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-21", + "total_cases": 884.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11441.144, + "new_cases_per_million": 51.77, + "new_cases_smoothed_per_million": 48.072, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-07-22", + "total_cases": 884.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11441.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.525, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-23", + "total_cases": 889.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11505.856, + "new_cases_per_million": 64.712, + "new_cases_smoothed_per_million": 49.921, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-24", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11505.856, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.187, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-25", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11505.856, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.64, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-26", + "total_cases": 897.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11609.396, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 31.432, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-27", + "total_cases": 897.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11609.396, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.432, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-28", + "total_cases": 907.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11738.821, + "new_cases_per_million": 129.425, + "new_cases_smoothed_per_million": 42.525, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-29", + "total_cases": 907.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11738.821, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.525, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-30", + "total_cases": 918.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11881.188, + "new_cases_per_million": 142.367, + "new_cases_smoothed_per_million": 53.619, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-31", + "total_cases": 922.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11932.958, + "new_cases_per_million": 51.77, + "new_cases_smoothed_per_million": 61.015, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-01", + "total_cases": 925.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11971.785, + "new_cases_per_million": 38.827, + "new_cases_smoothed_per_million": 66.561, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-02", + "total_cases": 925.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11971.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 51.77, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-03", + "total_cases": 925.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11971.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 51.77, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-04", + "total_cases": 937.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12127.095, + "new_cases_per_million": 155.31, + "new_cases_smoothed_per_million": 55.468, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-05", + "total_cases": 939.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12152.98, + "new_cases_per_million": 25.885, + "new_cases_smoothed_per_million": 59.166, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-06", + "total_cases": 939.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12152.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.827, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-07", + "total_cases": 944.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12217.692, + "new_cases_per_million": 64.712, + "new_cases_smoothed_per_million": 40.676, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-08", + "total_cases": 955.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12360.06, + "new_cases_per_million": 142.367, + "new_cases_smoothed_per_million": 55.468, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-09", + "total_cases": 956.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12373.002, + "new_cases_per_million": 12.942, + "new_cases_smoothed_per_million": 57.317, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-10", + "total_cases": 956.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12373.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 57.317, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-11", + "total_cases": 963.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12463.599, + "new_cases_per_million": 90.597, + "new_cases_smoothed_per_million": 48.072, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-12", + "total_cases": 963.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12463.599, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.374, + "total_deaths_per_million": 673.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-13", + "total_cases": 977.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.429, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12644.794, + "new_cases_per_million": 181.195, + "new_cases_smoothed_per_million": 70.259, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 12.942, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-14", + "total_cases": 981.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12696.564, + "new_cases_per_million": 51.77, + "new_cases_smoothed_per_million": 68.41, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-15", + "total_cases": 989.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12800.104, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 62.863, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-16", + "total_cases": 989.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12800.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.015, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-17", + "total_cases": 989.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12800.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.015, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-18", + "total_cases": 1005.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13007.183, + "new_cases_per_million": 207.08, + "new_cases_smoothed_per_million": 77.655, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-19", + "total_cases": 1005.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13007.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 77.655, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.849, + "stringency_index": 41.67 + }, + { + "date": "2020-08-20", + "total_cases": 1024.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13253.09, + "new_cases_per_million": 245.907, + "new_cases_smoothed_per_million": 86.899, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-21", + "total_cases": 1024.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13253.09, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 79.504, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-22", + "total_cases": 1045.0, + "new_cases": 21.0, + "new_cases_smoothed": 8.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13524.882, + "new_cases_per_million": 271.792, + "new_cases_smoothed_per_million": 103.54, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-23", + "total_cases": 1045.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13524.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 103.54, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-24", + "total_cases": 1045.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13524.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 103.54, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-25", + "total_cases": 1060.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13719.019, + "new_cases_per_million": 194.137, + "new_cases_smoothed_per_million": 101.691, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-26", + "total_cases": 1060.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13719.019, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 101.691, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-27", + "total_cases": 1098.0, + "new_cases": 38.0, + "new_cases_smoothed": 10.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14210.833, + "new_cases_per_million": 491.814, + "new_cases_smoothed_per_million": 136.82, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-28", + "total_cases": 1098.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14210.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 136.82, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 1124.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14547.337, + "new_cases_per_million": 336.504, + "new_cases_smoothed_per_million": 146.065, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 1124.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14547.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 146.065, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 1124.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14547.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 146.065, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 1176.0, + "new_cases": 52.0, + "new_cases_smoothed": 16.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15220.346, + "new_cases_per_million": 673.008, + "new_cases_smoothed_per_million": 214.475, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 1184.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15323.885, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 229.267, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 1199.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15518.022, + "new_cases_per_million": 194.137, + "new_cases_smoothed_per_million": 186.741, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15518.022, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 186.741, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1215.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15725.102, + "new_cases_per_million": 207.08, + "new_cases_smoothed_per_million": 168.252, + "total_deaths_per_million": 685.951, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "AGO": { + "continent": "Africa", + "location": "Angola", + "population": 32866268.0, + "population_density": 23.89, + "median_age": 16.8, + "aged_65_older": 2.405, + "aged_70_older": 1.362, + "gdp_per_capita": 5819.495, + "cardiovasc_death_rate": 276.045, + "diabetes_prevalence": 3.94, + "handwashing_facilities": 26.664, + "life_expectancy": 61.15, + "data": [ + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.091, + "new_cases_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.122, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.213, + "new_cases_per_million": 0.091, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.243, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 14.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.517, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 24.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-24", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.761, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-25", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-27", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.791, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-28", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.822, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-29", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.822, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-30", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.822, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-01", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.822, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-02", + "total_cases": 29.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.882, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-03", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.065, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-04", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-05", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-06", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.095, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-07", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.095, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-08", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.095, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 43.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.308, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 45.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.369, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.369, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.369, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.369, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-15", + "total_cases": 48.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.46, + "new_cases_per_million": 0.091, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-16", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-17", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-18", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-19", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-20", + "total_cases": 50.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.521, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-21", + "total_cases": 52.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.582, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.48 + }, + { + "date": "2020-05-22", + "total_cases": 58.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.765, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.48 + }, + { + "date": "2020-05-23", + "total_cases": 60.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.826, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.48 + }, + { + "date": "2020-05-24", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.826, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.48 + }, + { + "date": "2020-05-25", + "total_cases": 69.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.099, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 81.48 + }, + { + "date": "2020-05-26", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 71.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.16, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 73.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.221, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 77.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.343, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 84.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.556, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 86.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-07", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-08", + "total_cases": 91.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.769, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-09", + "total_cases": 92.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.799, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-10", + "total_cases": 96.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.921, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-11", + "total_cases": 113.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.438, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-12", + "total_cases": 118.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.59, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 75.93 + }, + { + "date": "2020-06-13", + "total_cases": 130.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.955, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 75.93 + }, + { + "date": "2020-06-14", + "total_cases": 138.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.199, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.183, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-15", + "total_cases": 140.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.26, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.213, + "total_deaths_per_million": 0.183, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-16", + "total_cases": 142.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.321, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.183, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-17", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.321, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 0.183, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-18", + "total_cases": 155.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.716, + "new_cases_per_million": 0.396, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 0.213, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-19", + "total_cases": 155.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-20", + "total_cases": 166.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.051, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.243, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-21", + "total_cases": 172.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.233, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.243, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-22", + "total_cases": 176.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.355, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.274, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-23", + "total_cases": 183.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.568, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 0.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-24", + "total_cases": 186.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.659, + "new_cases_per_million": 0.091, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 75.93 + }, + { + "date": "2020-06-25", + "total_cases": 189.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.751, + "new_cases_per_million": 0.091, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-26", + "total_cases": 197.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.994, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-06-27", + "total_cases": 212.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.45, + "new_cases_per_million": 0.456, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-28", + "total_cases": 244.0, + "new_cases": 32.0, + "new_cases_smoothed": 10.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.424, + "new_cases_per_million": 0.974, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-29", + "total_cases": 267.0, + "new_cases": 23.0, + "new_cases_smoothed": 13.0, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.124, + "new_cases_per_million": 0.7, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-06-30", + "total_cases": 276.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.398, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 0.404, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.93 + }, + { + "date": "2020-07-01", + "total_cases": 284.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.0, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.641, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 0.396, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.93 + }, + { + "date": "2020-07-02", + "total_cases": 291.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.571, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.854, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.456, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 75.93 + }, + { + "date": "2020-07-03", + "total_cases": 315.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.857, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9.584, + "new_cases_per_million": 0.73, + "new_cases_smoothed_per_million": 0.513, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-07-04", + "total_cases": 328.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.571, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 9.98, + "new_cases_per_million": 0.396, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.548, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 75.93 + }, + { + "date": "2020-07-05", + "total_cases": 346.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 10.528, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 75.93 + }, + { + "date": "2020-07-06", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 75.93 + }, + { + "date": "2020-07-07", + "total_cases": 353.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.74, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 75.93 + }, + { + "date": "2020-07-08", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 75.93 + }, + { + "date": "2020-07-09", + "total_cases": 386.0, + "new_cases": 33.0, + "new_cases_smoothed": 13.571, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 11.745, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.413, + "total_deaths_per_million": 0.639, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-10", + "total_cases": 396.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.571, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 12.049, + "new_cases_per_million": 0.304, + "new_cases_smoothed_per_million": 0.352, + "total_deaths_per_million": 0.669, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 76.39 + }, + { + "date": "2020-07-11", + "total_cases": 458.0, + "new_cases": 62.0, + "new_cases_smoothed": 18.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 13.935, + "new_cases_per_million": 1.886, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 76.39 + }, + { + "date": "2020-07-12", + "total_cases": 483.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.571, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 14.696, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.595, + "total_deaths_per_million": 0.761, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-13", + "total_cases": 506.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 15.396, + "new_cases_per_million": 0.7, + "new_cases_smoothed_per_million": 0.695, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 76.39 + }, + { + "date": "2020-07-14", + "total_cases": 506.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 15.396, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.665, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 76.39 + }, + { + "date": "2020-07-15", + "total_cases": 525.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 15.974, + "new_cases_per_million": 0.578, + "new_cases_smoothed_per_million": 0.748, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 76.39 + }, + { + "date": "2020-07-16", + "total_cases": 576.0, + "new_cases": 51.0, + "new_cases_smoothed": 27.143, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 17.526, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 0.826, + "total_deaths_per_million": 0.822, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-17", + "total_cases": 607.0, + "new_cases": 31.0, + "new_cases_smoothed": 30.143, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 18.469, + "new_cases_per_million": 0.943, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 0.852, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-18", + "total_cases": 638.0, + "new_cases": 31.0, + "new_cases_smoothed": 25.714, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 19.412, + "new_cases_per_million": 0.943, + "new_cases_smoothed_per_million": 0.782, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-19", + "total_cases": 687.0, + "new_cases": 49.0, + "new_cases_smoothed": 29.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 20.903, + "new_cases_per_million": 1.491, + "new_cases_smoothed_per_million": 0.887, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 76.39 + }, + { + "date": "2020-07-20", + "total_cases": 705.0, + "new_cases": 18.0, + "new_cases_smoothed": 28.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 21.451, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 0.865, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-07-21", + "total_cases": 749.0, + "new_cases": 44.0, + "new_cases_smoothed": 34.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.789, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 1.056, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-07-22", + "total_cases": 749.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-07-23", + "total_cases": 779.0, + "new_cases": 30.0, + "new_cases_smoothed": 29.0, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.702, + "new_cases_per_million": 0.913, + "new_cases_smoothed_per_million": 0.882, + "total_deaths_per_million": 0.913, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-07-24", + "total_cases": 812.0, + "new_cases": 33.0, + "new_cases_smoothed": 29.286, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 24.706, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.891, + "total_deaths_per_million": 1.004, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 76.39 + }, + { + "date": "2020-07-25", + "total_cases": 851.0, + "new_cases": 39.0, + "new_cases_smoothed": 30.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 25.893, + "new_cases_per_million": 1.187, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 1.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 76.39 + }, + { + "date": "2020-07-26", + "total_cases": 880.0, + "new_cases": 29.0, + "new_cases_smoothed": 27.571, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 26.775, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.839, + "total_deaths_per_million": 1.065, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 76.39 + }, + { + "date": "2020-07-27", + "total_cases": 930.0, + "new_cases": 50.0, + "new_cases_smoothed": 32.143, + "total_deaths": 40.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 28.296, + "new_cases_per_million": 1.521, + "new_cases_smoothed_per_million": 0.978, + "total_deaths_per_million": 1.217, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.39 + }, + { + "date": "2020-07-28", + "total_cases": 932.0, + "new_cases": 2.0, + "new_cases_smoothed": 26.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 28.357, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 1.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.39 + }, + { + "date": "2020-07-29", + "total_cases": 950.0, + "new_cases": 18.0, + "new_cases_smoothed": 28.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 28.905, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 0.874, + "total_deaths_per_million": 1.247, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 76.39 + }, + { + "date": "2020-07-30", + "total_cases": 1000.0, + "new_cases": 50.0, + "new_cases_smoothed": 31.571, + "total_deaths": 47.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 30.426, + "new_cases_per_million": 1.521, + "new_cases_smoothed_per_million": 0.961, + "total_deaths_per_million": 1.43, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 79.17 + }, + { + "date": "2020-07-31", + "total_cases": 1078.0, + "new_cases": 78.0, + "new_cases_smoothed": 38.0, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 32.8, + "new_cases_per_million": 2.373, + "new_cases_smoothed_per_million": 1.156, + "total_deaths_per_million": 1.46, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 79.17 + }, + { + "date": "2020-08-01", + "total_cases": 1109.0, + "new_cases": 31.0, + "new_cases_smoothed": 36.857, + "total_deaths": 51.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 33.743, + "new_cases_per_million": 0.943, + "new_cases_smoothed_per_million": 1.121, + "total_deaths_per_million": 1.552, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 79.17 + }, + { + "date": "2020-08-02", + "total_cases": 1114.0, + "new_cases": 5.0, + "new_cases_smoothed": 33.429, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 33.895, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 79.17 + }, + { + "date": "2020-08-03", + "total_cases": 1148.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 34.929, + "new_cases_per_million": 1.034, + "new_cases_smoothed_per_million": 0.948, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 79.17 + }, + { + "date": "2020-08-04", + "total_cases": 1164.0, + "new_cases": 16.0, + "new_cases_smoothed": 33.143, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 35.416, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 1.008, + "total_deaths_per_million": 1.643, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 79.17 + }, + { + "date": "2020-08-05", + "total_cases": 1164.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.571, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 35.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.93, + "total_deaths_per_million": 1.643, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 79.17 + }, + { + "date": "2020-08-06", + "total_cases": 1344.0, + "new_cases": 180.0, + "new_cases_smoothed": 49.143, + "total_deaths": 59.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 40.893, + "new_cases_per_million": 5.477, + "new_cases_smoothed_per_million": 1.495, + "total_deaths_per_million": 1.795, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 79.17 + }, + { + "date": "2020-08-07", + "total_cases": 1395.0, + "new_cases": 51.0, + "new_cases_smoothed": 45.286, + "total_deaths": 62.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 42.445, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 1.378, + "total_deaths_per_million": 1.886, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 79.17 + }, + { + "date": "2020-08-08", + "total_cases": 1483.0, + "new_cases": 88.0, + "new_cases_smoothed": 53.429, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 45.122, + "new_cases_per_million": 2.678, + "new_cases_smoothed_per_million": 1.626, + "total_deaths_per_million": 1.947, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 79.17 + }, + { + "date": "2020-08-09", + "total_cases": 1483.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.714, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 45.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.604, + "total_deaths_per_million": 1.947, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 79.17 + }, + { + "date": "2020-08-10", + "total_cases": 1572.0, + "new_cases": 89.0, + "new_cases_smoothed": 60.571, + "total_deaths": 70.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 47.83, + "new_cases_per_million": 2.708, + "new_cases_smoothed_per_million": 1.843, + "total_deaths_per_million": 2.13, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 79.17 + }, + { + "date": "2020-08-11", + "total_cases": 1672.0, + "new_cases": 100.0, + "new_cases_smoothed": 72.571, + "total_deaths": 75.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 50.873, + "new_cases_per_million": 3.043, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 2.282, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 79.17 + }, + { + "date": "2020-08-12", + "total_cases": 1679.0, + "new_cases": 7.0, + "new_cases_smoothed": 73.571, + "total_deaths": 78.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 51.086, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 2.239, + "total_deaths_per_million": 2.373, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 79.17 + }, + { + "date": "2020-08-13", + "total_cases": 1735.0, + "new_cases": 56.0, + "new_cases_smoothed": 55.857, + "total_deaths": 80.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 52.79, + "new_cases_per_million": 1.704, + "new_cases_smoothed_per_million": 1.7, + "total_deaths_per_million": 2.434, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 79.17 + }, + { + "date": "2020-08-14", + "total_cases": 1762.0, + "new_cases": 27.0, + "new_cases_smoothed": 52.429, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 53.611, + "new_cases_per_million": 0.822, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 2.434, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 79.17 + }, + { + "date": "2020-08-15", + "total_cases": 1815.0, + "new_cases": 53.0, + "new_cases_smoothed": 47.429, + "total_deaths": 83.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 55.224, + "new_cases_per_million": 1.613, + "new_cases_smoothed_per_million": 1.443, + "total_deaths_per_million": 2.525, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.083, + "stringency_index": 79.17 + }, + { + "date": "2020-08-16", + "total_cases": 1852.0, + "new_cases": 37.0, + "new_cases_smoothed": 52.714, + "total_deaths": 86.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 56.35, + "new_cases_per_million": 1.126, + "new_cases_smoothed_per_million": 1.604, + "total_deaths_per_million": 2.617, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 79.17 + }, + { + "date": "2020-08-17", + "total_cases": 1879.0, + "new_cases": 27.0, + "new_cases_smoothed": 43.857, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 57.171, + "new_cases_per_million": 0.822, + "new_cases_smoothed_per_million": 1.334, + "total_deaths_per_million": 2.617, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 79.17 + }, + { + "date": "2020-08-18", + "total_cases": 1906.0, + "new_cases": 27.0, + "new_cases_smoothed": 33.429, + "total_deaths": 88.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 57.993, + "new_cases_per_million": 0.822, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 2.678, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 79.17 + }, + { + "date": "2020-08-19", + "total_cases": 1966.0, + "new_cases": 60.0, + "new_cases_smoothed": 41.0, + "total_deaths": 90.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 59.818, + "new_cases_per_million": 1.826, + "new_cases_smoothed_per_million": 1.247, + "total_deaths_per_million": 2.738, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 79.17 + }, + { + "date": "2020-08-20", + "total_cases": 1966.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.0, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 59.818, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.004, + "total_deaths_per_million": 2.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 79.17 + }, + { + "date": "2020-08-21", + "total_cases": 2015.0, + "new_cases": 49.0, + "new_cases_smoothed": 36.143, + "total_deaths": 92.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 61.309, + "new_cases_per_million": 1.491, + "new_cases_smoothed_per_million": 1.1, + "total_deaths_per_million": 2.799, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 76.39 + }, + { + "date": "2020-08-22", + "total_cases": 2044.0, + "new_cases": 29.0, + "new_cases_smoothed": 32.714, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 62.191, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.995, + "total_deaths_per_million": 2.83, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 76.39 + }, + { + "date": "2020-08-23", + "total_cases": 2068.0, + "new_cases": 24.0, + "new_cases_smoothed": 30.857, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 62.922, + "new_cases_per_million": 0.73, + "new_cases_smoothed_per_million": 0.939, + "total_deaths_per_million": 2.86, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 76.39 + }, + { + "date": "2020-08-24", + "total_cases": 2171.0, + "new_cases": 103.0, + "new_cases_smoothed": 41.714, + "total_deaths": 96.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 66.056, + "new_cases_per_million": 3.134, + "new_cases_smoothed_per_million": 1.269, + "total_deaths_per_million": 2.921, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 76.39 + }, + { + "date": "2020-08-25", + "total_cases": 2222.0, + "new_cases": 51.0, + "new_cases_smoothed": 45.143, + "total_deaths": 100.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 67.607, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 1.374, + "total_deaths_per_million": 3.043, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 76.39 + }, + { + "date": "2020-08-26", + "total_cases": 2283.0, + "new_cases": 61.0, + "new_cases_smoothed": 45.286, + "total_deaths": 102.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 69.463, + "new_cases_per_million": 1.856, + "new_cases_smoothed_per_million": 1.378, + "total_deaths_per_million": 3.103, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 76.39 + }, + { + "date": "2020-08-27", + "total_cases": 2332.0, + "new_cases": 49.0, + "new_cases_smoothed": 52.286, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 70.954, + "new_cases_per_million": 1.491, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 76.39 + }, + { + "date": "2020-08-28", + "total_cases": 2415.0, + "new_cases": 83.0, + "new_cases_smoothed": 57.143, + "total_deaths": 105.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 73.48, + "new_cases_per_million": 2.525, + "new_cases_smoothed_per_million": 1.739, + "total_deaths_per_million": 3.195, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 76.39 + }, + { + "date": "2020-08-29", + "total_cases": 2471.0, + "new_cases": 56.0, + "new_cases_smoothed": 61.0, + "total_deaths": 106.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 75.183, + "new_cases_per_million": 1.704, + "new_cases_smoothed_per_million": 1.856, + "total_deaths_per_million": 3.225, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 76.39 + }, + { + "date": "2020-08-30", + "total_cases": 2551.0, + "new_cases": 80.0, + "new_cases_smoothed": 69.0, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 77.618, + "new_cases_per_million": 2.434, + "new_cases_smoothed_per_million": 2.099, + "total_deaths_per_million": 3.256, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 76.39 + }, + { + "date": "2020-08-31", + "total_cases": 2624.0, + "new_cases": 73.0, + "new_cases_smoothed": 64.714, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 79.839, + "new_cases_per_million": 2.221, + "new_cases_smoothed_per_million": 1.969, + "total_deaths_per_million": 3.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.39 + }, + { + "date": "2020-09-01", + "total_cases": 2624.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 79.839, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.747, + "total_deaths_per_million": 3.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-02", + "total_cases": 2654.0, + "new_cases": 30.0, + "new_cases_smoothed": 53.0, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 80.751, + "new_cases_per_million": 0.913, + "new_cases_smoothed_per_million": 1.613, + "total_deaths_per_million": 3.286, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-03", + "total_cases": 2729.0, + "new_cases": 75.0, + "new_cases_smoothed": 56.714, + "total_deaths": 109.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 83.033, + "new_cases_per_million": 2.282, + "new_cases_smoothed_per_million": 1.726, + "total_deaths_per_million": 3.316, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-04", + "total_cases": 2777.0, + "new_cases": 48.0, + "new_cases_smoothed": 51.714, + "total_deaths": 112.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 84.494, + "new_cases_per_million": 1.46, + "new_cases_smoothed_per_million": 1.573, + "total_deaths_per_million": 3.408, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-05", + "total_cases": 2805.0, + "new_cases": 28.0, + "new_cases_smoothed": 47.714, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 85.346, + "new_cases_per_million": 0.852, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 3.438, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.03 + } + ] + }, + "AIA": { + "continent": "North America", + "location": "Anguilla", + "population": 15002.0, + "life_expectancy": 81.88, + "data": [ + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 133.316, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-29", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-30", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-31", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-01", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.316, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-03", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 66.658, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-04-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-06-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-07-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-07-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-07-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-08-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-09-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-09-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ATG": { + "continent": "North America", + "location": "Antigua and Barbuda", + "population": 97928.0, + "population_density": 231.845, + "median_age": 32.1, + "aged_65_older": 6.933, + "aged_70_older": 4.631, + "gdp_per_capita": 21490.943, + "cardiovasc_death_rate": 191.511, + "diabetes_prevalence": 13.17, + "hospital_beds_per_thousand": 3.8, + "life_expectancy": 77.02, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 10.212, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.635, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 40.846, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.904, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 15.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 61.27, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 194.02, + "new_cases_per_million": 40.846, + "new_cases_smoothed_per_million": 14.588, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 20.423, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-11", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.443, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.443, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-13", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.443, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-14", + "total_cases": 23.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 234.866, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.918 + }, + { + "date": "2020-04-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 20.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 234.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 10.212, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-22", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.459 + }, + { + "date": "2020-04-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 65.0, + "new_cases": 39.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.753, + "new_cases_per_million": 398.252, + "new_cases_smoothed_per_million": 56.893, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.893, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.893, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.893, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.893, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 66.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 673.965, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 58.352, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 673.965, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 58.352, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 673.965, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 68.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.388, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 4.376, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.388, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.376, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.388, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.376, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.388, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.376, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 70.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.811, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.811, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 745.446, + "new_cases_per_million": 30.635, + "new_cases_smoothed_per_million": 10.212, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 745.446, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.294, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 74.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 755.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 76.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 20.423, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 776.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 82.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 837.35, + "new_cases_per_million": 61.27, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 837.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 837.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 86.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 878.196, + "new_cases_per_million": 40.846, + "new_cases_smoothed_per_million": 14.588, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 878.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.588, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 91.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 929.254, + "new_cases_per_million": 51.058, + "new_cases_smoothed_per_million": 21.882, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 929.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.882, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 929.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.129, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 929.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.129, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 929.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.129, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 92.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.753, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 93.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 949.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 2.918, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 959.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 95.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 970.1, + "new_cases_per_million": 10.212, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 95.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 970.1, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.459, + "total_deaths_per_million": 30.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ARG": { + "continent": "South America", + "location": "Argentina", + "population": 45195777.0, + "population_density": 16.177, + "median_age": 31.9, + "aged_65_older": 11.198, + "aged_70_older": 7.441, + "gdp_per_capita": 18933.907, + "extreme_poverty": 0.6, + "cardiovasc_death_rate": 191.032, + "diabetes_prevalence": 5.5, + "female_smokers": 16.2, + "male_smokers": 27.7, + "hospital_beds_per_thousand": 5.0, + "life_expectancy": 76.67, + "data": [ + { + "date": "2020-02-11", + "new_tests": 2.0, + "total_tests": 2.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "new_tests": 2.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "new_tests": 1.0, + "total_tests": 5.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "new_tests": 5.0, + "total_tests": 10.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "new_tests": 9.0, + "total_tests": 19.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "new_tests": 5.0, + "total_tests": 24.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_tests": 7.0, + "total_tests": 31.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 37.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "new_tests": 7.0, + "total_tests": 44.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.044, + "new_cases_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 54.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 8.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.177, + "new_cases_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 62.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 9.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.199, + "new_cases_per_million": 0.022, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.022, + "new_tests": 26.0, + "total_tests": 88.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 9.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 12.0, + "new_cases": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.266, + "new_cases_per_million": 0.066, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 100.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 11.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 1.714, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 28.0, + "total_tests": 128.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 19.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.155, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 30.0, + "total_tests": 158.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 6.611000000000001, + "positive_rate": 0.151, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 2.571, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 41.0, + "total_tests": 199.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 8.556000000000001, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 31.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.686, + "new_cases_per_million": 0.266, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 82.0, + "total_tests": 281.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 7.724, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 34.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 49.0, + "total_tests": 330.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 10.231, + "positive_rate": 0.098, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-15", + "total_cases": 45.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.996, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 78.0, + "total_tests": 408.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 8.943999999999999, + "positive_rate": 0.11199999999999999, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-16", + "total_cases": 56.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.239, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 100.0, + "total_tests": 508.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 9.227, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-17", + "total_cases": 65.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.438, + "new_cases_per_million": 0.199, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 120.0, + "total_tests": 628.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 9.377, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-18", + "total_cases": 79.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.748, + "new_cases_per_million": 0.31, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 190.0, + "total_tests": 818.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 94.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 10.967, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-19", + "total_cases": 97.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.146, + "new_cases_per_million": 0.398, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 137.0, + "total_tests": 955.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 108.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 9.692, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-03-20", + "total_cases": 128.0, + "new_cases": 31.0, + "new_cases_smoothed": 13.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.832, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.066, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 214.0, + "total_tests": 1169.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 9.165, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-03-21", + "total_cases": 158.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.496, + "new_cases_per_million": 0.664, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 293.0, + "total_tests": 1462.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 162.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.145, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-03-22", + "total_cases": 225.0, + "new_cases": 67.0, + "new_cases_smoothed": 25.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.978, + "new_cases_per_million": 1.482, + "new_cases_smoothed_per_million": 0.569, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 218.0, + "total_tests": 1680.0, + "total_tests_per_thousand": 0.037, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.077999999999999, + "positive_rate": 0.141, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-03-23", + "total_cases": 266.0, + "new_cases": 41.0, + "new_cases_smoothed": 30.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.886, + "new_cases_per_million": 0.907, + "new_cases_smoothed_per_million": 0.664, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 257.0, + "total_tests": 1937.0, + "total_tests_per_thousand": 0.043, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 204.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 6.8, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 301.0, + "new_cases": 35.0, + "new_cases_smoothed": 33.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.66, + "new_cases_per_million": 0.774, + "new_cases_smoothed_per_million": 0.746, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 389.0, + "total_tests": 2326.0, + "total_tests_per_thousand": 0.051, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 243.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 7.207999999999999, + "positive_rate": 0.139, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 387.0, + "new_cases": 86.0, + "new_cases_smoothed": 44.0, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8.563, + "new_cases_per_million": 1.903, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 0.133, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 444.0, + "total_tests": 2770.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 279.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 6.341, + "positive_rate": 0.158, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 502.0, + "new_cases": 115.0, + "new_cases_smoothed": 57.857, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 11.107, + "new_cases_per_million": 2.544, + "new_cases_smoothed_per_million": 1.28, + "total_deaths_per_million": 0.177, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 484.0, + "total_tests": 3254.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.669, + "positive_rate": 0.17600000000000002, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 589.0, + "new_cases": 87.0, + "new_cases_smoothed": 65.857, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 13.032, + "new_cases_per_million": 1.925, + "new_cases_smoothed_per_million": 1.457, + "total_deaths_per_million": 0.266, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 362.0, + "total_tests": 3616.0, + "total_tests_per_thousand": 0.08, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 5.315, + "positive_rate": 0.188, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 690.0, + "new_cases": 101.0, + "new_cases_smoothed": 76.0, + "total_deaths": 17.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 15.267, + "new_cases_per_million": 2.235, + "new_cases_smoothed_per_million": 1.682, + "total_deaths_per_million": 0.376, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 412.0, + "total_tests": 4028.0, + "total_tests_per_thousand": 0.089, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 4.829, + "positive_rate": 0.207, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 745.0, + "new_cases": 55.0, + "new_cases_smoothed": 74.286, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 16.484, + "new_cases_per_million": 1.217, + "new_cases_smoothed_per_million": 1.644, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 625.0, + "total_tests": 4653.0, + "total_tests_per_thousand": 0.103, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 5.721, + "positive_rate": 0.175, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 820.0, + "new_cases": 75.0, + "new_cases_smoothed": 79.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 18.143, + "new_cases_per_million": 1.659, + "new_cases_smoothed_per_million": 1.751, + "total_deaths_per_million": 0.443, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 532.0, + "total_tests": 5185.0, + "total_tests_per_thousand": 0.115, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 464.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 5.8629999999999995, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 966.0, + "new_cases": 146.0, + "new_cases_smoothed": 95.0, + "total_deaths": 24.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 21.374, + "new_cases_per_million": 3.23, + "new_cases_smoothed_per_million": 2.102, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 588.0, + "total_tests": 5773.0, + "total_tests_per_thousand": 0.128, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 492.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 5.178999999999999, + "positive_rate": 0.193, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 966.0, + "new_cases": 0.0, + "new_cases_smoothed": 82.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 21.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.83, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 930.0, + "total_tests": 6703.0, + "total_tests_per_thousand": 0.148, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 562.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 6.794, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 1133.0, + "new_cases": 167.0, + "new_cases_smoothed": 90.143, + "total_deaths": 31.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 25.069, + "new_cases_per_million": 3.695, + "new_cases_smoothed_per_million": 1.994, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 1293.0, + "total_tests": 7996.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 677.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 7.51, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 1133.0, + "new_cases": 0.0, + "new_cases_smoothed": 77.714, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 25.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.72, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 1257.0, + "total_tests": 9253.0, + "total_tests_per_thousand": 0.205, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 805.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 10.357999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 1265.0, + "new_cases": 132.0, + "new_cases_smoothed": 82.143, + "total_deaths": 37.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 27.989, + "new_cases_per_million": 2.921, + "new_cases_smoothed_per_million": 1.817, + "total_deaths_per_million": 0.819, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1095.0, + "total_tests": 10348.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 10.993, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 1451.0, + "new_cases": 186.0, + "new_cases_smoothed": 100.857, + "total_deaths": 43.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 32.105, + "new_cases_per_million": 4.115, + "new_cases_smoothed_per_million": 2.232, + "total_deaths_per_million": 0.951, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 824.0, + "total_tests": 11172.0, + "total_tests_per_thousand": 0.247, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 931.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 9.231, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 1554.0, + "new_cases": 103.0, + "new_cases_smoothed": 104.857, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 34.384, + "new_cases_per_million": 2.279, + "new_cases_smoothed_per_million": 2.32, + "total_deaths_per_million": 1.018, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1093.0, + "total_tests": 12265.0, + "total_tests_per_thousand": 0.271, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1011.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 9.642000000000001, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 1628.0, + "new_cases": 74.0, + "new_cases_smoothed": 94.571, + "total_deaths": 53.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 36.021, + "new_cases_per_million": 1.637, + "new_cases_smoothed_per_million": 2.092, + "total_deaths_per_million": 1.173, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 1389.0, + "total_tests": 13654.0, + "total_tests_per_thousand": 0.302, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1126.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 11.905999999999999, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 1715.0, + "new_cases": 87.0, + "new_cases_smoothed": 107.0, + "total_deaths": 60.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 37.946, + "new_cases_per_million": 1.925, + "new_cases_smoothed_per_million": 2.367, + "total_deaths_per_million": 1.328, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 1544.0, + "total_tests": 15198.0, + "total_tests_per_thousand": 0.336, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1214.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 11.345999999999998, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 1795.0, + "new_cases": 80.0, + "new_cases_smoothed": 94.571, + "total_deaths": 65.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 39.716, + "new_cases_per_million": 1.77, + "new_cases_smoothed_per_million": 2.092, + "total_deaths_per_million": 1.438, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 1445.0, + "total_tests": 16643.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1235.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 13.059000000000001, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 1894.0, + "new_cases": 99.0, + "new_cases_smoothed": 108.714, + "total_deaths": 79.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 41.907, + "new_cases_per_million": 2.19, + "new_cases_smoothed_per_million": 2.405, + "total_deaths_per_million": 1.748, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 1246.0, + "total_tests": 17889.0, + "total_tests_per_thousand": 0.396, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1234.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 11.350999999999999, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 1975.0, + "new_cases": 81.0, + "new_cases_smoothed": 101.429, + "total_deaths": 82.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 43.699, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 2.244, + "total_deaths_per_million": 1.814, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 1345.0, + "total_tests": 19234.0, + "total_tests_per_thousand": 0.426, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 1269.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 12.511, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 2137.0, + "new_cases": 162.0, + "new_cases_smoothed": 98.0, + "total_deaths": 89.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 47.283, + "new_cases_per_million": 3.584, + "new_cases_smoothed_per_million": 2.168, + "total_deaths_per_million": 1.969, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1077.0, + "total_tests": 20311.0, + "total_tests_per_thousand": 0.449, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1306.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 13.327, + "positive_rate": 0.075, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 2203.0, + "new_cases": 66.0, + "new_cases_smoothed": 92.714, + "total_deaths": 95.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 48.743, + "new_cases_per_million": 1.46, + "new_cases_smoothed_per_million": 2.051, + "total_deaths_per_million": 2.102, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 1417.0, + "total_tests": 21728.0, + "total_tests_per_thousand": 0.481, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1352.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 14.582, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 2272.0, + "new_cases": 69.0, + "new_cases_smoothed": 92.0, + "total_deaths": 98.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 50.27, + "new_cases_per_million": 1.527, + "new_cases_smoothed_per_million": 2.036, + "total_deaths_per_million": 2.168, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 1674.0, + "total_tests": 23402.0, + "total_tests_per_thousand": 0.518, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1393.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 15.140999999999998, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 2432.0, + "new_cases": 160.0, + "new_cases_smoothed": 102.429, + "total_deaths": 105.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 53.81, + "new_cases_per_million": 3.54, + "new_cases_smoothed_per_million": 2.266, + "total_deaths_per_million": 2.323, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 1692.0, + "total_tests": 25094.0, + "total_tests_per_thousand": 0.555, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1414.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 13.805, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 2432.0, + "new_cases": 0.0, + "new_cases_smoothed": 91.0, + "total_deaths": 109.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 53.81, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.013, + "total_deaths_per_million": 2.412, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 1734.0, + "total_tests": 26828.0, + "total_tests_per_thousand": 0.594, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1455.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 15.989, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 2560.0, + "new_cases": 128.0, + "new_cases_smoothed": 95.143, + "total_deaths": 115.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 56.642, + "new_cases_per_million": 2.832, + "new_cases_smoothed_per_million": 2.105, + "total_deaths_per_million": 2.544, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 1711.0, + "total_tests": 28539.0, + "total_tests_per_thousand": 0.631, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1521.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 15.985999999999999, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 2658.0, + "new_cases": 98.0, + "new_cases_smoothed": 97.571, + "total_deaths": 122.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 58.811, + "new_cases_per_million": 2.168, + "new_cases_smoothed_per_million": 2.159, + "total_deaths_per_million": 2.699, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1656.0, + "total_tests": 30195.0, + "total_tests_per_thousand": 0.668, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1566.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 16.05, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 2828.0, + "new_cases": 170.0, + "new_cases_smoothed": 98.714, + "total_deaths": 132.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 62.572, + "new_cases_per_million": 3.761, + "new_cases_smoothed_per_million": 2.184, + "total_deaths_per_million": 2.921, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 1180.0, + "total_tests": 31375.0, + "total_tests_per_thousand": 0.694, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1581.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 16.016, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 2930.0, + "new_cases": 102.0, + "new_cases_smoothed": 103.857, + "total_deaths": 134.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 64.829, + "new_cases_per_million": 2.257, + "new_cases_smoothed_per_million": 2.298, + "total_deaths_per_million": 2.965, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 1812.0, + "total_tests": 33187.0, + "total_tests_per_thousand": 0.734, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1637.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 15.762, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 3020.0, + "new_cases": 90.0, + "new_cases_smoothed": 106.857, + "total_deaths": 142.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 66.82, + "new_cases_per_million": 1.991, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 3.142, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 2277.0, + "total_tests": 35464.0, + "total_tests_per_thousand": 0.785, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1723.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 16.124000000000002, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 3132.0, + "new_cases": 112.0, + "new_cases_smoothed": 100.0, + "total_deaths": 151.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 69.299, + "new_cases_per_million": 2.478, + "new_cases_smoothed_per_million": 2.213, + "total_deaths_per_million": 3.341, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 2005.0, + "total_tests": 37469.0, + "total_tests_per_thousand": 0.829, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 1768.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 17.68, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 3276.0, + "new_cases": 144.0, + "new_cases_smoothed": 120.571, + "total_deaths": 159.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 72.485, + "new_cases_per_million": 3.186, + "new_cases_smoothed_per_million": 2.668, + "total_deaths_per_million": 3.518, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 2190.0, + "total_tests": 39659.0, + "total_tests_per_thousand": 0.877, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1833.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 15.203, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 3423.0, + "new_cases": 147.0, + "new_cases_smoothed": 123.286, + "total_deaths": 165.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 75.737, + "new_cases_per_million": 3.253, + "new_cases_smoothed_per_million": 2.728, + "total_deaths_per_million": 3.651, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 2465.0, + "total_tests": 42124.0, + "total_tests_per_thousand": 0.932, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1941.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 15.744000000000002, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 3423.0, + "new_cases": 0.0, + "new_cases_smoothed": 109.286, + "total_deaths": 167.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 75.737, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.418, + "total_deaths_per_million": 3.695, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 2063.0, + "total_tests": 44187.0, + "total_tests_per_thousand": 0.978, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1999.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 18.292, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 3767.0, + "new_cases": 344.0, + "new_cases_smoothed": 134.143, + "total_deaths": 185.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 83.348, + "new_cases_per_million": 7.611, + "new_cases_smoothed_per_million": 2.968, + "total_deaths_per_million": 4.093, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 1416.0, + "total_tests": 45603.0, + "total_tests_per_thousand": 1.009, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 2033.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 15.155, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 98.15 + }, + { + "date": "2020-04-27", + "total_cases": 3767.0, + "new_cases": 0.0, + "new_cases_smoothed": 119.571, + "total_deaths": 186.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 83.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.646, + "total_deaths_per_million": 4.115, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 1788.0, + "total_tests": 47391.0, + "total_tests_per_thousand": 1.049, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 2029.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 16.969, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 3990.0, + "new_cases": 223.0, + "new_cases_smoothed": 138.571, + "total_deaths": 197.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 88.283, + "new_cases_per_million": 4.934, + "new_cases_smoothed_per_million": 3.066, + "total_deaths_per_million": 4.359, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 2101.0, + "total_tests": 49492.0, + "total_tests_per_thousand": 1.095, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 2004.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 14.462, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 4114.0, + "new_cases": 124.0, + "new_cases_smoothed": 140.286, + "total_deaths": 207.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 91.026, + "new_cases_per_million": 2.744, + "new_cases_smoothed_per_million": 3.104, + "total_deaths_per_million": 4.58, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 2394.0, + "total_tests": 51886.0, + "total_tests_per_thousand": 1.148, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2060.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 14.684000000000001, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 4272.0, + "new_cases": 158.0, + "new_cases_smoothed": 142.286, + "total_deaths": 214.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 94.522, + "new_cases_per_million": 3.496, + "new_cases_smoothed_per_million": 3.148, + "total_deaths_per_million": 4.735, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 2192.0, + "total_tests": 54078.0, + "total_tests_per_thousand": 1.197, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 2060.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 14.478, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 4415.0, + "new_cases": 143.0, + "new_cases_smoothed": 141.714, + "total_deaths": 218.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 97.686, + "new_cases_per_million": 3.164, + "new_cases_smoothed_per_million": 3.136, + "total_deaths_per_million": 4.823, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 1975.0, + "total_tests": 56053.0, + "total_tests_per_thousand": 1.24, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 1990.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 14.042, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 4519.0, + "new_cases": 104.0, + "new_cases_smoothed": 156.571, + "total_deaths": 225.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 99.987, + "new_cases_per_million": 2.301, + "new_cases_smoothed_per_million": 3.464, + "total_deaths_per_million": 4.978, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 1502.0, + "total_tests": 57555.0, + "total_tests_per_thousand": 1.273, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1910.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 12.199000000000002, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 4668.0, + "new_cases": 149.0, + "new_cases_smoothed": 128.714, + "total_deaths": 237.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 103.284, + "new_cases_per_million": 3.297, + "new_cases_smoothed_per_million": 2.848, + "total_deaths_per_million": 5.244, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 1330.0, + "total_tests": 58885.0, + "total_tests_per_thousand": 1.303, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1897.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 14.738, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 4770.0, + "new_cases": 102.0, + "new_cases_smoothed": 143.286, + "total_deaths": 246.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 105.541, + "new_cases_per_million": 2.257, + "new_cases_smoothed_per_million": 3.17, + "total_deaths_per_million": 5.443, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 1878.0, + "total_tests": 60763.0, + "total_tests_per_thousand": 1.344, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 1910.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 13.33, + "positive_rate": 0.075, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 4874.0, + "new_cases": 104.0, + "new_cases_smoothed": 126.286, + "total_deaths": 260.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 107.842, + "new_cases_per_million": 2.301, + "new_cases_smoothed_per_million": 2.794, + "total_deaths_per_million": 5.753, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 2352.0, + "total_tests": 63115.0, + "total_tests_per_thousand": 1.396, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1946.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 15.41, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 5007.0, + "new_cases": 133.0, + "new_cases_smoothed": 127.571, + "total_deaths": 264.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 110.785, + "new_cases_per_million": 2.943, + "new_cases_smoothed_per_million": 2.823, + "total_deaths_per_million": 5.841, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 2169.0, + "total_tests": 65284.0, + "total_tests_per_thousand": 1.444, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1914.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 15.003, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 5195.0, + "new_cases": 188.0, + "new_cases_smoothed": 131.857, + "total_deaths": 273.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 114.944, + "new_cases_per_million": 4.16, + "new_cases_smoothed_per_million": 2.917, + "total_deaths_per_million": 6.04, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 2282.0, + "total_tests": 67566.0, + "total_tests_per_thousand": 1.495, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1927.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 14.614, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 5358.0, + "new_cases": 163.0, + "new_cases_smoothed": 134.714, + "total_deaths": 282.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 118.551, + "new_cases_per_million": 3.607, + "new_cases_smoothed_per_million": 2.981, + "total_deaths_per_million": 6.24, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 2079.0, + "total_tests": 69645.0, + "total_tests_per_thousand": 1.541, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1942.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 14.415999999999999, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 5598.0, + "new_cases": 240.0, + "new_cases_smoothed": 154.143, + "total_deaths": 293.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 123.861, + "new_cases_per_million": 5.31, + "new_cases_smoothed_per_million": 3.411, + "total_deaths_per_million": 6.483, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 1952.0, + "total_tests": 71597.0, + "total_tests_per_thousand": 1.584, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 2006.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 13.014000000000001, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 5763.0, + "new_cases": 165.0, + "new_cases_smoothed": 156.429, + "total_deaths": 300.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 127.512, + "new_cases_per_million": 3.651, + "new_cases_smoothed_per_million": 3.461, + "total_deaths_per_million": 6.638, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 1430.0, + "total_tests": 73027.0, + "total_tests_per_thousand": 1.616, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 2020.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 12.913, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 5776.0, + "new_cases": 13.0, + "new_cases_smoothed": 143.714, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 127.8, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 3.18, + "total_deaths_per_million": 6.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 2365.0, + "total_tests": 75392.0, + "total_tests_per_thousand": 1.668, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 2090.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 14.543, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-05-12", + "total_cases": 6021.0, + "new_cases": 245.0, + "new_cases_smoothed": 163.857, + "total_deaths": 305.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 133.22, + "new_cases_per_million": 5.421, + "new_cases_smoothed_per_million": 3.625, + "total_deaths_per_million": 6.748, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 2444.0, + "total_tests": 77836.0, + "total_tests_per_thousand": 1.722, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2103.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 12.834000000000001, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-13", + "total_cases": 6550.0, + "new_cases": 529.0, + "new_cases_smoothed": 220.429, + "total_deaths": 319.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 144.925, + "new_cases_per_million": 11.705, + "new_cases_smoothed_per_million": 4.877, + "total_deaths_per_million": 7.058, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 2735.0, + "total_tests": 80571.0, + "total_tests_per_thousand": 1.783, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 2184.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 9.908, + "positive_rate": 0.10099999999999999, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-14", + "total_cases": 6866.0, + "new_cases": 316.0, + "new_cases_smoothed": 238.714, + "total_deaths": 329.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 151.917, + "new_cases_per_million": 6.992, + "new_cases_smoothed_per_million": 5.282, + "total_deaths_per_million": 7.279, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 2541.0, + "total_tests": 83112.0, + "total_tests_per_thousand": 1.839, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2221.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 9.304, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-15", + "total_cases": 7121.0, + "new_cases": 255.0, + "new_cases_smoothed": 251.857, + "total_deaths": 353.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 157.559, + "new_cases_per_million": 5.642, + "new_cases_smoothed_per_million": 5.573, + "total_deaths_per_million": 7.81, + "new_deaths_per_million": 0.531, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 2812.0, + "total_tests": 85924.0, + "total_tests_per_thousand": 1.901, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 2326.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 9.235, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-16", + "total_cases": 7466.0, + "new_cases": 345.0, + "new_cases_smoothed": 266.857, + "total_deaths": 356.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 165.192, + "new_cases_per_million": 7.633, + "new_cases_smoothed_per_million": 5.904, + "total_deaths_per_million": 7.877, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 2452.0, + "total_tests": 88376.0, + "total_tests_per_thousand": 1.955, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2397.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 8.982000000000001, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-17", + "total_cases": 7792.0, + "new_cases": 326.0, + "new_cases_smoothed": 289.857, + "total_deaths": 363.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 172.405, + "new_cases_per_million": 7.213, + "new_cases_smoothed_per_million": 6.413, + "total_deaths_per_million": 8.032, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 1804.0, + "total_tests": 90180.0, + "total_tests_per_thousand": 1.995, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 2450.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 8.452, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-18", + "total_cases": 7792.0, + "new_cases": 0.0, + "new_cases_smoothed": 288.0, + "total_deaths": 366.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 172.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.372, + "total_deaths_per_million": 8.098, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 2786.0, + "total_tests": 92966.0, + "total_tests_per_thousand": 2.057, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 2511.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 8.719, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-19", + "total_cases": 8358.0, + "new_cases": 566.0, + "new_cases_smoothed": 333.857, + "total_deaths": 382.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 184.929, + "new_cases_per_million": 12.523, + "new_cases_smoothed_per_million": 7.387, + "total_deaths_per_million": 8.452, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 3793.0, + "total_tests": 96759.0, + "total_tests_per_thousand": 2.141, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 2703.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 8.096, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-20", + "total_cases": 8796.0, + "new_cases": 438.0, + "new_cases_smoothed": 320.857, + "total_deaths": 393.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 194.62, + "new_cases_per_million": 9.691, + "new_cases_smoothed_per_million": 7.099, + "total_deaths_per_million": 8.696, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 3672.0, + "total_tests": 100431.0, + "total_tests_per_thousand": 2.222, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 2837.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 8.842, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-21", + "total_cases": 9270.0, + "new_cases": 474.0, + "new_cases_smoothed": 343.429, + "total_deaths": 403.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 205.108, + "new_cases_per_million": 10.488, + "new_cases_smoothed_per_million": 7.599, + "total_deaths_per_million": 8.917, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 3909.0, + "total_tests": 104340.0, + "total_tests_per_thousand": 2.309, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 3033.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 8.832, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-22", + "total_cases": 9918.0, + "new_cases": 648.0, + "new_cases_smoothed": 399.571, + "total_deaths": 416.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 219.445, + "new_cases_per_million": 14.338, + "new_cases_smoothed_per_million": 8.841, + "total_deaths_per_million": 9.204, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 3993.0, + "total_tests": 108333.0, + "total_tests_per_thousand": 2.397, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 3201.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 8.011000000000001, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-23", + "total_cases": 10636.0, + "new_cases": 718.0, + "new_cases_smoothed": 452.857, + "total_deaths": 433.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 235.332, + "new_cases_per_million": 15.886, + "new_cases_smoothed_per_million": 10.02, + "total_deaths_per_million": 9.581, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 2996.0, + "total_tests": 111329.0, + "total_tests_per_thousand": 2.463, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 3279.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 7.2410000000000005, + "positive_rate": 0.138, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-24", + "total_cases": 11340.0, + "new_cases": 704.0, + "new_cases_smoothed": 506.857, + "total_deaths": 445.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 250.908, + "new_cases_per_million": 15.577, + "new_cases_smoothed_per_million": 11.215, + "total_deaths_per_million": 9.846, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 2441.0, + "total_tests": 113770.0, + "total_tests_per_thousand": 2.517, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 3370.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 6.649, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-25", + "total_cases": 12063.0, + "new_cases": 723.0, + "new_cases_smoothed": 610.143, + "total_deaths": 452.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 266.905, + "new_cases_per_million": 15.997, + "new_cases_smoothed_per_million": 13.5, + "total_deaths_per_million": 10.001, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 2946.0, + "total_tests": 116716.0, + "total_tests_per_thousand": 2.582, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 3393.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 5.561, + "positive_rate": 0.18, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-26", + "total_cases": 12615.0, + "new_cases": 552.0, + "new_cases_smoothed": 608.143, + "total_deaths": 467.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 279.119, + "new_cases_per_million": 12.214, + "new_cases_smoothed_per_million": 13.456, + "total_deaths_per_million": 10.333, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 3394.0, + "total_tests": 120110.0, + "total_tests_per_thousand": 2.658, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 3336.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 5.486000000000001, + "positive_rate": 0.182, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-27", + "total_cases": 13215.0, + "new_cases": 600.0, + "new_cases_smoothed": 631.286, + "total_deaths": 484.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 292.395, + "new_cases_per_million": 13.276, + "new_cases_smoothed_per_million": 13.968, + "total_deaths_per_million": 10.709, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 3977.0, + "total_tests": 124087.0, + "total_tests_per_thousand": 2.746, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 3379.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 5.353, + "positive_rate": 0.187, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-28", + "total_cases": 13920.0, + "new_cases": 705.0, + "new_cases_smoothed": 664.286, + "total_deaths": 500.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 307.993, + "new_cases_per_million": 15.599, + "new_cases_smoothed_per_million": 14.698, + "total_deaths_per_million": 11.063, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 4154.0, + "total_tests": 128241.0, + "total_tests_per_thousand": 2.837, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 3414.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 5.138999999999999, + "positive_rate": 0.195, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-29", + "total_cases": 14689.0, + "new_cases": 769.0, + "new_cases_smoothed": 681.571, + "total_deaths": 508.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 325.008, + "new_cases_per_million": 17.015, + "new_cases_smoothed_per_million": 15.08, + "total_deaths_per_million": 11.24, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 4499.0, + "total_tests": 132740.0, + "total_tests_per_thousand": 2.937, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 3487.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 5.1160000000000005, + "positive_rate": 0.195, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-30", + "total_cases": 15406.0, + "new_cases": 717.0, + "new_cases_smoothed": 681.429, + "total_deaths": 520.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 340.873, + "new_cases_per_million": 15.864, + "new_cases_smoothed_per_million": 15.077, + "total_deaths_per_million": 11.505, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 3514.0, + "total_tests": 136254.0, + "total_tests_per_thousand": 3.015, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 3561.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 5.226, + "positive_rate": 0.191, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-31", + "total_cases": 16201.0, + "new_cases": 795.0, + "new_cases_smoothed": 694.429, + "total_deaths": 528.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 358.463, + "new_cases_per_million": 17.59, + "new_cases_smoothed_per_million": 15.365, + "total_deaths_per_million": 11.683, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 2545.0, + "total_tests": 138799.0, + "total_tests_per_thousand": 3.071, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 3576.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 5.15, + "positive_rate": 0.19399999999999998, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-06-01", + "total_cases": 16838.0, + "new_cases": 637.0, + "new_cases_smoothed": 682.143, + "total_deaths": 539.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 372.557, + "new_cases_per_million": 14.094, + "new_cases_smoothed_per_million": 15.093, + "total_deaths_per_million": 11.926, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 3588.0, + "total_tests": 142387.0, + "total_tests_per_thousand": 3.15, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 3667.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 5.376, + "positive_rate": 0.18600000000000003, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-06-02", + "total_cases": 17402.0, + "new_cases": 564.0, + "new_cases_smoothed": 683.857, + "total_deaths": 556.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 385.036, + "new_cases_per_million": 12.479, + "new_cases_smoothed_per_million": 15.131, + "total_deaths_per_million": 12.302, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.281, + "new_tests": 4012.0, + "total_tests": 146399.0, + "total_tests_per_thousand": 3.239, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 3756.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 5.492000000000001, + "positive_rate": 0.182, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-06-03", + "total_cases": 18306.0, + "new_cases": 904.0, + "new_cases_smoothed": 727.286, + "total_deaths": 569.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 405.038, + "new_cases_per_million": 20.002, + "new_cases_smoothed_per_million": 16.092, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 4544.0, + "total_tests": 150943.0, + "total_tests_per_thousand": 3.34, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 3837.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 5.276, + "positive_rate": 0.19, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-06-04", + "total_cases": 19255.0, + "new_cases": 949.0, + "new_cases_smoothed": 762.143, + "total_deaths": 583.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 426.035, + "new_cases_per_million": 20.998, + "new_cases_smoothed_per_million": 16.863, + "total_deaths_per_million": 12.899, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 4168.0, + "total_tests": 155111.0, + "total_tests_per_thousand": 3.432, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 3839.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 5.037, + "positive_rate": 0.19899999999999998, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-06-05", + "total_cases": 19255.0, + "new_cases": 0.0, + "new_cases_smoothed": 652.286, + "total_deaths": 588.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 426.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.432, + "total_deaths_per_million": 13.01, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.253, + "new_tests": 4543.0, + "total_tests": 159654.0, + "total_tests_per_thousand": 3.532, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 3845.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 5.895, + "positive_rate": 0.17, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-06", + "total_cases": 21024.0, + "new_cases": 1769.0, + "new_cases_smoothed": 802.571, + "total_deaths": 632.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 465.176, + "new_cases_per_million": 39.141, + "new_cases_smoothed_per_million": 17.758, + "total_deaths_per_million": 13.984, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.354, + "new_tests": 4247.0, + "total_tests": 163901.0, + "total_tests_per_thousand": 3.626, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 3950.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 4.922, + "positive_rate": 0.203, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-07", + "total_cases": 22007.0, + "new_cases": 983.0, + "new_cases_smoothed": 829.429, + "total_deaths": 648.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 486.926, + "new_cases_per_million": 21.75, + "new_cases_smoothed_per_million": 18.352, + "total_deaths_per_million": 14.338, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 2417.0, + "total_tests": 166318.0, + "total_tests_per_thousand": 3.68, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 3931.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 4.739, + "positive_rate": 0.21100000000000002, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-08", + "total_cases": 22781.0, + "new_cases": 774.0, + "new_cases_smoothed": 849.0, + "total_deaths": 664.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 504.052, + "new_cases_per_million": 17.125, + "new_cases_smoothed_per_million": 18.785, + "total_deaths_per_million": 14.692, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 4301.0, + "total_tests": 170619.0, + "total_tests_per_thousand": 3.775, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 4033.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 4.75, + "positive_rate": 0.21100000000000002, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-09", + "total_cases": 23607.0, + "new_cases": 826.0, + "new_cases_smoothed": 886.429, + "total_deaths": 693.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 522.328, + "new_cases_per_million": 18.276, + "new_cases_smoothed_per_million": 19.613, + "total_deaths_per_million": 15.333, + "new_deaths_per_million": 0.642, + "new_deaths_smoothed_per_million": 0.433, + "new_tests": 4883.0, + "total_tests": 175502.0, + "total_tests_per_thousand": 3.883, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 4158.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 4.691, + "positive_rate": 0.213, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-10", + "total_cases": 24748.0, + "new_cases": 1141.0, + "new_cases_smoothed": 920.286, + "total_deaths": 717.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 547.573, + "new_cases_per_million": 25.246, + "new_cases_smoothed_per_million": 20.362, + "total_deaths_per_million": 15.864, + "new_deaths_per_million": 0.531, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 5160.0, + "total_tests": 180662.0, + "total_tests_per_thousand": 3.997, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 4246.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 4.614, + "positive_rate": 0.217, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-11", + "total_cases": 25987.0, + "new_cases": 1239.0, + "new_cases_smoothed": 961.714, + "total_deaths": 735.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 574.987, + "new_cases_per_million": 27.414, + "new_cases_smoothed_per_million": 21.279, + "total_deaths_per_million": 16.263, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.48, + "new_tests": 5515.0, + "total_tests": 186177.0, + "total_tests_per_thousand": 4.119, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 4438.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 4.615, + "positive_rate": 0.217, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-12", + "total_cases": 27360.0, + "new_cases": 1373.0, + "new_cases_smoothed": 1157.857, + "total_deaths": 765.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 605.366, + "new_cases_per_million": 30.379, + "new_cases_smoothed_per_million": 25.619, + "total_deaths_per_million": 16.926, + "new_deaths_per_million": 0.664, + "new_deaths_smoothed_per_million": 0.559, + "new_tests": 6139.0, + "total_tests": 192316.0, + "total_tests_per_thousand": 4.255, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 4666.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 4.03, + "positive_rate": 0.248, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-13", + "total_cases": 28751.0, + "new_cases": 1391.0, + "new_cases_smoothed": 1103.857, + "total_deaths": 785.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 636.144, + "new_cases_per_million": 30.777, + "new_cases_smoothed_per_million": 24.424, + "total_deaths_per_million": 17.369, + "new_deaths_per_million": 0.443, + "new_deaths_smoothed_per_million": 0.484, + "new_tests": 5564.0, + "total_tests": 197880.0, + "total_tests_per_thousand": 4.378, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 4854.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 4.397, + "positive_rate": 0.22699999999999998, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-14", + "total_cases": 30282.0, + "new_cases": 1531.0, + "new_cases_smoothed": 1182.143, + "total_deaths": 815.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 670.018, + "new_cases_per_million": 33.875, + "new_cases_smoothed_per_million": 26.156, + "total_deaths_per_million": 18.033, + "new_deaths_per_million": 0.664, + "new_deaths_smoothed_per_million": 0.528, + "new_tests": 3694.0, + "total_tests": 201574.0, + "total_tests_per_thousand": 4.46, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 5037.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 4.261, + "positive_rate": 0.235, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-15", + "total_cases": 31564.0, + "new_cases": 1282.0, + "new_cases_smoothed": 1254.714, + "total_deaths": 833.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 698.384, + "new_cases_per_million": 28.365, + "new_cases_smoothed_per_million": 27.762, + "total_deaths_per_million": 18.431, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.534, + "new_tests": 4138.0, + "total_tests": 205712.0, + "total_tests_per_thousand": 4.552, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 5013.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 3.995, + "positive_rate": 0.25, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-16", + "total_cases": 32772.0, + "new_cases": 1208.0, + "new_cases_smoothed": 1309.286, + "total_deaths": 854.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 725.112, + "new_cases_per_million": 26.728, + "new_cases_smoothed_per_million": 28.969, + "total_deaths_per_million": 18.896, + "new_deaths_per_million": 0.465, + "new_deaths_smoothed_per_million": 0.509, + "new_tests": 5298.0, + "total_tests": 211010.0, + "total_tests_per_thousand": 4.669, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 5073.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 3.875, + "positive_rate": 0.258, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-17", + "total_cases": 34146.0, + "new_cases": 1374.0, + "new_cases_smoothed": 1342.571, + "total_deaths": 878.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 755.513, + "new_cases_per_million": 30.401, + "new_cases_smoothed_per_million": 29.706, + "total_deaths_per_million": 19.427, + "new_deaths_per_million": 0.531, + "new_deaths_smoothed_per_million": 0.509, + "new_tests": 6517.0, + "total_tests": 217527.0, + "total_tests_per_thousand": 4.813, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 5266.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 3.9219999999999997, + "positive_rate": 0.255, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-18", + "total_cases": 35539.0, + "new_cases": 1393.0, + "new_cases_smoothed": 1364.571, + "total_deaths": 913.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 786.335, + "new_cases_per_million": 30.821, + "new_cases_smoothed_per_million": 30.192, + "total_deaths_per_million": 20.201, + "new_deaths_per_million": 0.774, + "new_deaths_smoothed_per_million": 0.563, + "new_tests": 6940.0, + "total_tests": 224467.0, + "total_tests_per_thousand": 4.967, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 5470.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_per_case": 4.0089999999999995, + "positive_rate": 0.249, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-19", + "total_cases": 35539.0, + "new_cases": 0.0, + "new_cases_smoothed": 1168.429, + "total_deaths": 929.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 786.335, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.853, + "total_deaths_per_million": 20.555, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 7065.0, + "total_tests": 231532.0, + "total_tests_per_thousand": 5.123, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 5602.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 4.794, + "positive_rate": 0.209, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-20", + "total_cases": 39557.0, + "new_cases": 4018.0, + "new_cases_smoothed": 1543.714, + "total_deaths": 979.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 875.237, + "new_cases_per_million": 88.902, + "new_cases_smoothed_per_million": 34.156, + "total_deaths_per_million": 21.661, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 0.613, + "new_tests": 7067.0, + "total_tests": 238599.0, + "total_tests_per_thousand": 5.279, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 5817.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 3.7680000000000002, + "positive_rate": 0.265, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-21", + "total_cases": 41191.0, + "new_cases": 1634.0, + "new_cases_smoothed": 1558.429, + "total_deaths": 992.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 911.39, + "new_cases_per_million": 36.154, + "new_cases_smoothed_per_million": 34.482, + "total_deaths_per_million": 21.949, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.559, + "new_tests": 4413.0, + "total_tests": 243012.0, + "total_tests_per_thousand": 5.377, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 5920.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 3.799, + "positive_rate": 0.263, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-22", + "total_cases": 42772.0, + "new_cases": 1581.0, + "new_cases_smoothed": 1601.143, + "total_deaths": 1011.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 946.372, + "new_cases_per_million": 34.981, + "new_cases_smoothed_per_million": 35.427, + "total_deaths_per_million": 22.369, + "new_deaths_per_million": 0.42, + "new_deaths_smoothed_per_million": 0.563, + "new_tests": 6565.0, + "total_tests": 249577.0, + "total_tests_per_thousand": 5.522, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 6266.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 3.9130000000000003, + "positive_rate": 0.256, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-23", + "total_cases": 44918.0, + "new_cases": 2146.0, + "new_cases_smoothed": 1735.143, + "total_deaths": 1043.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 993.854, + "new_cases_per_million": 47.482, + "new_cases_smoothed_per_million": 38.392, + "total_deaths_per_million": 23.077, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.597, + "new_tests": 7989.0, + "total_tests": 257566.0, + "total_tests_per_thousand": 5.699, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 6651.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 3.833, + "positive_rate": 0.261, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-24", + "total_cases": 44918.0, + "new_cases": 0.0, + "new_cases_smoothed": 1538.857, + "total_deaths": 1049.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 993.854, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.049, + "total_deaths_per_million": 23.21, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.541, + "new_tests": 7780.0, + "total_tests": 265346.0, + "total_tests_per_thousand": 5.871, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 6831.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 4.439, + "positive_rate": 0.225, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-25", + "total_cases": 49838.0, + "new_cases": 4920.0, + "new_cases_smoothed": 2042.714, + "total_deaths": 1085.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 1102.714, + "new_cases_per_million": 108.86, + "new_cases_smoothed_per_million": 45.197, + "total_deaths_per_million": 24.007, + "new_deaths_per_million": 0.797, + "new_deaths_smoothed_per_million": 0.544, + "new_tests": 8462.0, + "total_tests": 273808.0, + "total_tests_per_thousand": 6.058, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 7049.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 3.451, + "positive_rate": 0.29, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-26", + "total_cases": 52444.0, + "new_cases": 2606.0, + "new_cases_smoothed": 2415.0, + "total_deaths": 1124.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 1160.374, + "new_cases_per_million": 57.66, + "new_cases_smoothed_per_million": 53.434, + "total_deaths_per_million": 24.87, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.616, + "new_tests": 8774.0, + "total_tests": 282582.0, + "total_tests_per_thousand": 6.252, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 7293.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 3.02, + "positive_rate": 0.331, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-27", + "total_cases": 52444.0, + "new_cases": 0.0, + "new_cases_smoothed": 1841.0, + "total_deaths": 1167.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 26.857, + "total_cases_per_million": 1160.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 40.734, + "total_deaths_per_million": 25.821, + "new_deaths_per_million": 0.951, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 7282.0, + "total_tests": 289864.0, + "total_tests_per_thousand": 6.414, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 7324.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 3.978, + "positive_rate": 0.251, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-28", + "total_cases": 57731.0, + "new_cases": 5287.0, + "new_cases_smoothed": 2362.857, + "total_deaths": 1207.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 30.714, + "total_cases_per_million": 1277.354, + "new_cases_per_million": 116.98, + "new_cases_smoothed_per_million": 52.28, + "total_deaths_per_million": 26.706, + "new_deaths_per_million": 0.885, + "new_deaths_smoothed_per_million": 0.68, + "new_tests": 4712.0, + "total_tests": 294576.0, + "total_tests_per_thousand": 6.518, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 7366.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 3.117, + "positive_rate": 0.321, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-29", + "total_cases": 57731.0, + "new_cases": 0.0, + "new_cases_smoothed": 2137.0, + "total_deaths": 1217.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 1277.354, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 47.283, + "total_deaths_per_million": 26.927, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.651, + "new_tests": 7159.0, + "total_tests": 301735.0, + "total_tests_per_thousand": 6.676, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 7451.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 3.487, + "positive_rate": 0.287, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-30", + "total_cases": 62255.0, + "new_cases": 4524.0, + "new_cases_smoothed": 2476.714, + "total_deaths": 1280.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 1377.452, + "new_cases_per_million": 100.098, + "new_cases_smoothed_per_million": 54.8, + "total_deaths_per_million": 28.321, + "new_deaths_per_million": 1.394, + "new_deaths_smoothed_per_million": 0.749, + "new_tests": 7777.0, + "total_tests": 309512.0, + "total_tests_per_thousand": 6.848, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 7421.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 2.9960000000000004, + "positive_rate": 0.33399999999999996, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-07-01", + "total_cases": 64517.0, + "new_cases": 2262.0, + "new_cases_smoothed": 2799.857, + "total_deaths": 1307.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 1427.501, + "new_cases_per_million": 50.049, + "new_cases_smoothed_per_million": 61.95, + "total_deaths_per_million": 28.919, + "new_deaths_per_million": 0.597, + "new_deaths_smoothed_per_million": 0.815, + "new_tests": 7845.0, + "total_tests": 317357.0, + "total_tests_per_thousand": 7.022, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 7430.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 2.654, + "positive_rate": 0.377, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-02", + "total_cases": 67184.0, + "new_cases": 2667.0, + "new_cases_smoothed": 2478.0, + "total_deaths": 1351.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 1486.511, + "new_cases_per_million": 59.01, + "new_cases_smoothed_per_million": 54.828, + "total_deaths_per_million": 29.892, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.841, + "new_tests": 7822.0, + "total_tests": 325179.0, + "total_tests_per_thousand": 7.195, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 7339.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 2.9619999999999997, + "positive_rate": 0.33799999999999997, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-03", + "total_cases": 69928.0, + "new_cases": 2744.0, + "new_cases_smoothed": 2497.714, + "total_deaths": 1385.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 1547.224, + "new_cases_per_million": 60.714, + "new_cases_smoothed_per_million": 55.264, + "total_deaths_per_million": 30.644, + "new_deaths_per_million": 0.752, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 8692.0, + "total_tests": 333871.0, + "total_tests_per_thousand": 7.387, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 7327.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 2.9330000000000003, + "positive_rate": 0.341, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-04", + "total_cases": 72773.0, + "new_cases": 2845.0, + "new_cases_smoothed": 2904.143, + "total_deaths": 1437.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 1610.173, + "new_cases_per_million": 62.948, + "new_cases_smoothed_per_million": 64.257, + "total_deaths_per_million": 31.795, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.853, + "new_tests": 8514.0, + "total_tests": 342385.0, + "total_tests_per_thousand": 7.576, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 7503.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 2.5839999999999996, + "positive_rate": 0.387, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-05", + "total_cases": 72773.0, + "new_cases": 0.0, + "new_cases_smoothed": 2148.857, + "total_deaths": 1453.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 35.143, + "total_cases_per_million": 1610.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 47.546, + "total_deaths_per_million": 32.149, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.778, + "new_tests": 5176.0, + "total_tests": 347561.0, + "total_tests_per_thousand": 7.69, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 7569.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 3.522, + "positive_rate": 0.284, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-06", + "total_cases": 75363.0, + "new_cases": 2590.0, + "new_cases_smoothed": 2518.857, + "total_deaths": 1490.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 1667.479, + "new_cases_per_million": 57.306, + "new_cases_smoothed_per_million": 55.732, + "total_deaths_per_million": 32.968, + "new_deaths_per_million": 0.819, + "new_deaths_smoothed_per_million": 0.863, + "new_tests": 7520.0, + "total_tests": 355081.0, + "total_tests_per_thousand": 7.857, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 7621.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 3.0260000000000002, + "positive_rate": 0.331, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-07", + "total_cases": 77802.0, + "new_cases": 2439.0, + "new_cases_smoothed": 2221.0, + "total_deaths": 1523.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 1721.444, + "new_cases_per_million": 53.965, + "new_cases_smoothed_per_million": 49.142, + "total_deaths_per_million": 33.698, + "new_deaths_per_million": 0.73, + "new_deaths_smoothed_per_million": 0.768, + "new_tests": 8781.0, + "total_tests": 363862.0, + "total_tests_per_thousand": 8.051, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 7764.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 3.4960000000000004, + "positive_rate": 0.28600000000000003, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-08", + "total_cases": 80434.0, + "new_cases": 2632.0, + "new_cases_smoothed": 2273.857, + "total_deaths": 1602.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 1779.68, + "new_cases_per_million": 58.236, + "new_cases_smoothed_per_million": 50.311, + "total_deaths_per_million": 35.446, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.932, + "new_tests": 10419.0, + "total_tests": 374281.0, + "total_tests_per_thousand": 8.281, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 8132.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 3.576, + "positive_rate": 0.28, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-09", + "total_cases": 83413.0, + "new_cases": 2979.0, + "new_cases_smoothed": 2318.429, + "total_deaths": 1654.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 43.286, + "total_cases_per_million": 1845.593, + "new_cases_per_million": 65.913, + "new_cases_smoothed_per_million": 51.297, + "total_deaths_per_million": 36.596, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.958, + "new_tests": 9607.0, + "total_tests": 383888.0, + "total_tests_per_thousand": 8.494, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 8387.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 3.6180000000000003, + "positive_rate": 0.276, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-10", + "total_cases": 87017.0, + "new_cases": 3604.0, + "new_cases_smoothed": 2441.286, + "total_deaths": 1707.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 46.0, + "total_cases_per_million": 1925.335, + "new_cases_per_million": 79.742, + "new_cases_smoothed_per_million": 54.016, + "total_deaths_per_million": 37.769, + "new_deaths_per_million": 1.173, + "new_deaths_smoothed_per_million": 1.018, + "new_tests": 8722.0, + "total_tests": 392610.0, + "total_tests_per_thousand": 8.687, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 8391.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 3.437, + "positive_rate": 0.29100000000000004, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-11", + "total_cases": 90680.0, + "new_cases": 3663.0, + "new_cases_smoothed": 2558.143, + "total_deaths": 1749.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 44.571, + "total_cases_per_million": 2006.382, + "new_cases_per_million": 81.047, + "new_cases_smoothed_per_million": 56.601, + "total_deaths_per_million": 38.698, + "new_deaths_per_million": 0.929, + "new_deaths_smoothed_per_million": 0.986, + "new_tests": 8302.0, + "total_tests": 400912.0, + "total_tests_per_thousand": 8.871, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 8361.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 3.2680000000000002, + "positive_rate": 0.306, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-12", + "total_cases": 94047.0, + "new_cases": 3367.0, + "new_cases_smoothed": 3039.143, + "total_deaths": 1810.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 51.0, + "total_cases_per_million": 2080.88, + "new_cases_per_million": 74.498, + "new_cases_smoothed_per_million": 67.244, + "total_deaths_per_million": 40.048, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.128, + "new_tests": 5599.0, + "total_tests": 406511.0, + "total_tests_per_thousand": 8.994, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 8421.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 2.7710000000000004, + "positive_rate": 0.361, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-13", + "total_cases": 97496.0, + "new_cases": 3449.0, + "new_cases_smoothed": 3161.857, + "total_deaths": 1818.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 46.857, + "total_cases_per_million": 2157.193, + "new_cases_per_million": 76.312, + "new_cases_smoothed_per_million": 69.959, + "total_deaths_per_million": 40.225, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 1.037, + "new_tests": 8738.0, + "total_tests": 415249.0, + "total_tests_per_thousand": 9.188, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 8595.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 2.718, + "positive_rate": 0.368, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-14", + "total_cases": 100153.0, + "new_cases": 2657.0, + "new_cases_smoothed": 3193.0, + "total_deaths": 1903.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 54.286, + "total_cases_per_million": 2215.981, + "new_cases_per_million": 58.789, + "new_cases_smoothed_per_million": 70.648, + "total_deaths_per_million": 42.106, + "new_deaths_per_million": 1.881, + "new_deaths_smoothed_per_million": 1.201, + "new_tests": 10676.0, + "total_tests": 425925.0, + "total_tests_per_thousand": 9.424, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 8866.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 2.7769999999999997, + "positive_rate": 0.36, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-15", + "total_cases": 103252.0, + "new_cases": 3099.0, + "new_cases_smoothed": 3259.714, + "total_deaths": 1926.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 2284.55, + "new_cases_per_million": 68.568, + "new_cases_smoothed_per_million": 72.124, + "total_deaths_per_million": 42.615, + "new_deaths_per_million": 0.509, + "new_deaths_smoothed_per_million": 1.024, + "new_tests": 10900.0, + "total_tests": 436825.0, + "total_tests_per_thousand": 9.665, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 8935.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 2.741, + "positive_rate": 0.365, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-16", + "total_cases": 106897.0, + "new_cases": 3645.0, + "new_cases_smoothed": 3354.857, + "total_deaths": 2050.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 56.571, + "total_cases_per_million": 2365.199, + "new_cases_per_million": 80.649, + "new_cases_smoothed_per_million": 74.229, + "total_deaths_per_million": 45.358, + "new_deaths_per_million": 2.744, + "new_deaths_smoothed_per_million": 1.252, + "new_tests": 10865.0, + "total_tests": 447690.0, + "total_tests_per_thousand": 9.906, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 9115.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 2.717, + "positive_rate": 0.368, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-17", + "total_cases": 111147.0, + "new_cases": 4250.0, + "new_cases_smoothed": 3447.143, + "total_deaths": 2112.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 57.857, + "total_cases_per_million": 2459.234, + "new_cases_per_million": 94.035, + "new_cases_smoothed_per_million": 76.271, + "total_deaths_per_million": 46.73, + "new_deaths_per_million": 1.372, + "new_deaths_smoothed_per_million": 1.28, + "new_tests": 12065.0, + "total_tests": 459755.0, + "total_tests_per_thousand": 10.173, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 9592.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 2.783, + "positive_rate": 0.359, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-18", + "total_cases": 114770.0, + "new_cases": 3623.0, + "new_cases_smoothed": 3441.429, + "total_deaths": 2133.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 54.857, + "total_cases_per_million": 2539.397, + "new_cases_per_million": 80.162, + "new_cases_smoothed_per_million": 76.145, + "total_deaths_per_million": 47.195, + "new_deaths_per_million": 0.465, + "new_deaths_smoothed_per_million": 1.214, + "new_tests": 10445.0, + "total_tests": 470200.0, + "total_tests_per_thousand": 10.404, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 9898.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 2.8760000000000003, + "positive_rate": 0.348, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-19", + "total_cases": 119288.0, + "new_cases": 4518.0, + "new_cases_smoothed": 3605.857, + "total_deaths": 2204.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 56.286, + "total_cases_per_million": 2639.362, + "new_cases_per_million": 99.965, + "new_cases_smoothed_per_million": 79.783, + "total_deaths_per_million": 48.766, + "new_deaths_per_million": 1.571, + "new_deaths_smoothed_per_million": 1.245, + "new_tests": 7292.0, + "total_tests": 477492.0, + "total_tests_per_thousand": 10.565, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 10140.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 2.812, + "positive_rate": 0.35600000000000004, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-20", + "total_cases": 122511.0, + "new_cases": 3223.0, + "new_cases_smoothed": 3573.571, + "total_deaths": 2246.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 61.143, + "total_cases_per_million": 2710.674, + "new_cases_per_million": 71.312, + "new_cases_smoothed_per_million": 79.069, + "total_deaths_per_million": 49.695, + "new_deaths_per_million": 0.929, + "new_deaths_smoothed_per_million": 1.353, + "new_tests": 10982.0, + "total_tests": 488474.0, + "total_tests_per_thousand": 10.808, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 10461.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 2.927, + "positive_rate": 0.342, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-21", + "total_cases": 126742.0, + "new_cases": 4231.0, + "new_cases_smoothed": 3798.429, + "total_deaths": 2373.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 67.143, + "total_cases_per_million": 2804.289, + "new_cases_per_million": 93.615, + "new_cases_smoothed_per_million": 84.044, + "total_deaths_per_million": 52.505, + "new_deaths_per_million": 2.81, + "new_deaths_smoothed_per_million": 1.486, + "new_tests": 12651.0, + "total_tests": 501125.0, + "total_tests_per_thousand": 11.088, + "new_tests_per_thousand": 0.28, + "new_tests_smoothed": 10743.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 2.8280000000000003, + "positive_rate": 0.354, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-22", + "total_cases": 130761.0, + "new_cases": 4019.0, + "new_cases_smoothed": 3929.857, + "total_deaths": 2373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 63.857, + "total_cases_per_million": 2893.213, + "new_cases_per_million": 88.924, + "new_cases_smoothed_per_million": 86.952, + "total_deaths_per_million": 52.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413, + "new_tests": 13658.0, + "total_tests": 514783.0, + "total_tests_per_thousand": 11.39, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 11137.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 2.8339999999999996, + "positive_rate": 0.353, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-23", + "total_cases": 136105.0, + "new_cases": 5344.0, + "new_cases_smoothed": 4172.571, + "total_deaths": 2506.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 65.143, + "total_cases_per_million": 3011.454, + "new_cases_per_million": 118.241, + "new_cases_smoothed_per_million": 92.322, + "total_deaths_per_million": 55.448, + "new_deaths_per_million": 2.943, + "new_deaths_smoothed_per_million": 1.441, + "new_tests": 13452.0, + "total_tests": 528235.0, + "total_tests_per_thousand": 11.688, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 11506.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 2.758, + "positive_rate": 0.363, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-24", + "total_cases": 141887.0, + "new_cases": 5782.0, + "new_cases_smoothed": 4391.429, + "total_deaths": 2617.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 3139.386, + "new_cases_per_million": 127.932, + "new_cases_smoothed_per_million": 97.165, + "total_deaths_per_million": 57.904, + "new_deaths_per_million": 2.456, + "new_deaths_smoothed_per_million": 1.596, + "new_tests": 14181.0, + "total_tests": 542416.0, + "total_tests_per_thousand": 12.001, + "new_tests_per_thousand": 0.314, + "new_tests_smoothed": 11809.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 2.6889999999999996, + "positive_rate": 0.37200000000000005, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-25", + "total_cases": 148014.0, + "new_cases": 6127.0, + "new_cases_smoothed": 4749.143, + "total_deaths": 2722.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 84.143, + "total_cases_per_million": 3274.952, + "new_cases_per_million": 135.566, + "new_cases_smoothed_per_million": 105.079, + "total_deaths_per_million": 60.227, + "new_deaths_per_million": 2.323, + "new_deaths_smoothed_per_million": 1.862, + "new_tests": 11637.0, + "total_tests": 554053.0, + "total_tests_per_thousand": 12.259, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 11979.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 2.522, + "positive_rate": 0.396, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-26", + "total_cases": 153507.0, + "new_cases": 5493.0, + "new_cases_smoothed": 4888.429, + "total_deaths": 2847.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 91.857, + "total_cases_per_million": 3396.49, + "new_cases_per_million": 121.538, + "new_cases_smoothed_per_million": 108.161, + "total_deaths_per_million": 62.993, + "new_deaths_per_million": 2.766, + "new_deaths_smoothed_per_million": 2.032, + "new_tests": 7987.0, + "total_tests": 562040.0, + "total_tests_per_thousand": 12.436, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 12078.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 2.471, + "positive_rate": 0.405, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-27", + "total_cases": 162513.0, + "new_cases": 9006.0, + "new_cases_smoothed": 5714.571, + "total_deaths": 2939.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 99.0, + "total_cases_per_million": 3595.756, + "new_cases_per_million": 199.266, + "new_cases_smoothed_per_million": 126.44, + "total_deaths_per_million": 65.028, + "new_deaths_per_million": 2.036, + "new_deaths_smoothed_per_million": 2.19, + "new_tests": 12093.0, + "total_tests": 574133.0, + "total_tests_per_thousand": 12.703, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 12237.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 2.141, + "positive_rate": 0.467, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-28", + "total_cases": 162513.0, + "new_cases": 0.0, + "new_cases_smoothed": 5110.143, + "total_deaths": 2956.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 83.286, + "total_cases_per_million": 3595.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 113.067, + "total_deaths_per_million": 65.404, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 1.843, + "new_tests": 14566.0, + "total_tests": 588699.0, + "total_tests_per_thousand": 13.026, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 12511.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 2.448, + "positive_rate": 0.408, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-29", + "total_cases": 167403.0, + "new_cases": 4890.0, + "new_cases_smoothed": 5234.571, + "total_deaths": 3082.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 101.286, + "total_cases_per_million": 3703.952, + "new_cases_per_million": 108.196, + "new_cases_smoothed_per_million": 115.82, + "total_deaths_per_million": 68.192, + "new_deaths_per_million": 2.788, + "new_deaths_smoothed_per_million": 2.241, + "new_tests": 14822.0, + "total_tests": 603521.0, + "total_tests_per_thousand": 13.353, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 12677.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 2.4219999999999997, + "positive_rate": 0.413, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-30", + "total_cases": 173342.0, + "new_cases": 5939.0, + "new_cases_smoothed": 5319.571, + "total_deaths": 3200.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 99.143, + "total_cases_per_million": 3835.358, + "new_cases_per_million": 131.406, + "new_cases_smoothed_per_million": 117.701, + "total_deaths_per_million": 70.803, + "new_deaths_per_million": 2.611, + "new_deaths_smoothed_per_million": 2.194, + "new_tests": 14301.0, + "total_tests": 617822.0, + "total_tests_per_thousand": 13.67, + "new_tests_per_thousand": 0.316, + "new_tests_smoothed": 12798.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 2.406, + "positive_rate": 0.41600000000000004, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-07-31", + "total_cases": 178983.0, + "new_cases": 5641.0, + "new_cases_smoothed": 5299.429, + "total_deaths": 3311.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 99.143, + "total_cases_per_million": 3960.171, + "new_cases_per_million": 124.813, + "new_cases_smoothed_per_million": 117.255, + "total_deaths_per_million": 73.259, + "new_deaths_per_million": 2.456, + "new_deaths_smoothed_per_million": 2.194, + "new_tests": 15562.0, + "total_tests": 633384.0, + "total_tests_per_thousand": 14.014, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 12995.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 2.452, + "positive_rate": 0.408, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-08-01", + "total_cases": 185360.0, + "new_cases": 6377.0, + "new_cases_smoothed": 5335.143, + "total_deaths": 3466.0, + "new_deaths": 155.0, + "new_deaths_smoothed": 106.286, + "total_cases_per_million": 4101.268, + "new_cases_per_million": 141.097, + "new_cases_smoothed_per_million": 118.045, + "total_deaths_per_million": 76.689, + "new_deaths_per_million": 3.43, + "new_deaths_smoothed_per_million": 2.352, + "new_tests": 11954.0, + "total_tests": 645338.0, + "total_tests_per_thousand": 14.279, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 13041.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 2.444, + "positive_rate": 0.409, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-08-02", + "total_cases": 191289.0, + "new_cases": 5929.0, + "new_cases_smoothed": 5397.429, + "total_deaths": 3558.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 101.571, + "total_cases_per_million": 4232.453, + "new_cases_per_million": 131.185, + "new_cases_smoothed_per_million": 119.423, + "total_deaths_per_million": 78.724, + "new_deaths_per_million": 2.036, + "new_deaths_smoothed_per_million": 2.247, + "new_tests": 10370.0, + "total_tests": 655708.0, + "total_tests_per_thousand": 14.508, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 13381.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 2.479, + "positive_rate": 0.40299999999999997, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-08-03", + "total_cases": 196530.0, + "new_cases": 5241.0, + "new_cases_smoothed": 4859.571, + "total_deaths": 3612.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 96.143, + "total_cases_per_million": 4348.415, + "new_cases_per_million": 115.962, + "new_cases_smoothed_per_million": 107.523, + "total_deaths_per_million": 79.919, + "new_deaths_per_million": 1.195, + "new_deaths_smoothed_per_million": 2.127, + "new_tests": 13704.0, + "total_tests": 669412.0, + "total_tests_per_thousand": 14.811, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 13611.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 2.801, + "positive_rate": 0.35700000000000004, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-08-04", + "total_cases": 201906.0, + "new_cases": 5376.0, + "new_cases_smoothed": 5627.571, + "total_deaths": 3667.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 101.571, + "total_cases_per_million": 4467.364, + "new_cases_per_million": 118.949, + "new_cases_smoothed_per_million": 124.515, + "total_deaths_per_million": 81.136, + "new_deaths_per_million": 1.217, + "new_deaths_smoothed_per_million": 2.247, + "new_tests": 16476.0, + "total_tests": 685888.0, + "total_tests_per_thousand": 15.176, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 13884.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 2.467, + "positive_rate": 0.405, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-08-05", + "total_cases": 206730.0, + "new_cases": 4824.0, + "new_cases_smoothed": 5618.143, + "total_deaths": 3863.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 111.571, + "total_cases_per_million": 4574.1, + "new_cases_per_million": 106.736, + "new_cases_smoothed_per_million": 124.307, + "total_deaths_per_million": 85.473, + "new_deaths_per_million": 4.337, + "new_deaths_smoothed_per_million": 2.469, + "new_tests": 17381.0, + "total_tests": 703269.0, + "total_tests_per_thousand": 15.561, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 14250.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 2.536, + "positive_rate": 0.39399999999999996, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-08-06", + "total_cases": 213522.0, + "new_cases": 6792.0, + "new_cases_smoothed": 5740.0, + "total_deaths": 4009.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 115.571, + "total_cases_per_million": 4724.379, + "new_cases_per_million": 150.28, + "new_cases_smoothed_per_million": 127.003, + "total_deaths_per_million": 88.703, + "new_deaths_per_million": 3.23, + "new_deaths_smoothed_per_million": 2.557, + "new_tests": 17454.0, + "total_tests": 720723.0, + "total_tests_per_thousand": 15.947, + "new_tests_per_thousand": 0.386, + "new_tests_smoothed": 14700.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 2.5610000000000004, + "positive_rate": 0.39, + "tests_units": "people tested", + "stringency_index": 88.89 + }, + { + "date": "2020-08-07", + "total_cases": 220669.0, + "new_cases": 7147.0, + "new_cases_smoothed": 5955.143, + "total_deaths": 4135.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 117.714, + "total_cases_per_million": 4882.514, + "new_cases_per_million": 158.134, + "new_cases_smoothed_per_million": 131.763, + "total_deaths_per_million": 91.491, + "new_deaths_per_million": 2.788, + "new_deaths_smoothed_per_million": 2.605, + "new_tests": 18070.0, + "total_tests": 738793.0, + "total_tests_per_thousand": 16.347, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 15058.0, + "new_tests_smoothed_per_thousand": 0.333, + "tests_per_case": 2.529, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-08", + "total_cases": 228182.0, + "new_cases": 7513.0, + "new_cases_smoothed": 6117.429, + "total_deaths": 4291.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 117.857, + "total_cases_per_million": 5048.746, + "new_cases_per_million": 166.232, + "new_cases_smoothed_per_million": 135.354, + "total_deaths_per_million": 94.942, + "new_deaths_per_million": 3.452, + "new_deaths_smoothed_per_million": 2.608, + "new_tests": 15068.0, + "total_tests": 753861.0, + "total_tests_per_thousand": 16.68, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 15503.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 2.5340000000000003, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-09", + "total_cases": 235664.0, + "new_cases": 7482.0, + "new_cases_smoothed": 6339.286, + "total_deaths": 4450.0, + "new_deaths": 159.0, + "new_deaths_smoothed": 127.429, + "total_cases_per_million": 5214.292, + "new_cases_per_million": 165.546, + "new_cases_smoothed_per_million": 140.263, + "total_deaths_per_million": 98.461, + "new_deaths_per_million": 3.518, + "new_deaths_smoothed_per_million": 2.819, + "new_tests": 9868.0, + "total_tests": 763729.0, + "total_tests_per_thousand": 16.898, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 15432.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 2.434, + "positive_rate": 0.41100000000000003, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-10", + "total_cases": 241798.0, + "new_cases": 6134.0, + "new_cases_smoothed": 6466.857, + "total_deaths": 4556.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 134.857, + "total_cases_per_million": 5350.013, + "new_cases_per_million": 135.721, + "new_cases_smoothed_per_million": 143.085, + "total_deaths_per_million": 100.806, + "new_deaths_per_million": 2.345, + "new_deaths_smoothed_per_million": 2.984, + "new_tests": 15806.0, + "total_tests": 779535.0, + "total_tests_per_thousand": 17.248, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 15732.0, + "new_tests_smoothed_per_thousand": 0.348, + "tests_per_case": 2.4330000000000003, + "positive_rate": 0.41100000000000003, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-11", + "total_cases": 246486.0, + "new_cases": 4688.0, + "new_cases_smoothed": 6368.571, + "total_deaths": 4634.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 138.143, + "total_cases_per_million": 5453.74, + "new_cases_per_million": 103.727, + "new_cases_smoothed_per_million": 140.911, + "total_deaths_per_million": 102.532, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 3.057, + "new_tests": 18714.0, + "total_tests": 798249.0, + "total_tests_per_thousand": 17.662, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 16052.0, + "new_tests_smoothed_per_thousand": 0.355, + "tests_per_case": 2.521, + "positive_rate": 0.397, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-12", + "total_cases": 253855.0, + "new_cases": 7369.0, + "new_cases_smoothed": 6732.143, + "total_deaths": 4785.0, + "new_deaths": 151.0, + "new_deaths_smoothed": 131.714, + "total_cases_per_million": 5616.786, + "new_cases_per_million": 163.046, + "new_cases_smoothed_per_million": 148.955, + "total_deaths_per_million": 105.873, + "new_deaths_per_million": 3.341, + "new_deaths_smoothed_per_million": 2.914, + "new_tests": 18622.0, + "total_tests": 816871.0, + "total_tests_per_thousand": 18.074, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 16229.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 2.411, + "positive_rate": 0.415, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-13", + "total_cases": 260898.0, + "new_cases": 7043.0, + "new_cases_smoothed": 6768.0, + "total_deaths": 5088.0, + "new_deaths": 303.0, + "new_deaths_smoothed": 154.143, + "total_cases_per_million": 5772.619, + "new_cases_per_million": 155.833, + "new_cases_smoothed_per_million": 149.749, + "total_deaths_per_million": 112.577, + "new_deaths_per_million": 6.704, + "new_deaths_smoothed_per_million": 3.411, + "new_tests": 17949.0, + "total_tests": 834820.0, + "total_tests_per_thousand": 18.471, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 16300.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 2.408, + "positive_rate": 0.415, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-14", + "total_cases": 268561.0, + "new_cases": 7663.0, + "new_cases_smoothed": 6841.714, + "total_deaths": 5246.0, + "new_deaths": 158.0, + "new_deaths_smoothed": 158.714, + "total_cases_per_million": 5942.17, + "new_cases_per_million": 169.551, + "new_cases_smoothed_per_million": 151.38, + "total_deaths_per_million": 116.073, + "new_deaths_per_million": 3.496, + "new_deaths_smoothed_per_million": 3.512, + "new_tests": 18465.0, + "total_tests": 853285.0, + "total_tests_per_thousand": 18.88, + "new_tests_per_thousand": 0.409, + "new_tests_smoothed": 16356.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 2.391, + "positive_rate": 0.418, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-15", + "total_cases": 276059.0, + "new_cases": 7498.0, + "new_cases_smoothed": 6839.571, + "total_deaths": 5428.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 162.429, + "total_cases_per_million": 6108.071, + "new_cases_per_million": 165.9, + "new_cases_smoothed_per_million": 151.332, + "total_deaths_per_million": 120.1, + "new_deaths_per_million": 4.027, + "new_deaths_smoothed_per_million": 3.594, + "new_tests": 15574.0, + "total_tests": 868859.0, + "total_tests_per_thousand": 19.224, + "new_tests_per_thousand": 0.345, + "new_tests_smoothed": 16428.0, + "new_tests_smoothed_per_thousand": 0.363, + "tests_per_case": 2.4019999999999997, + "positive_rate": 0.41600000000000004, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-16", + "total_cases": 282424.0, + "new_cases": 6365.0, + "new_cases_smoothed": 6680.0, + "total_deaths": 5565.0, + "new_deaths": 137.0, + "new_deaths_smoothed": 159.286, + "total_cases_per_million": 6248.902, + "new_cases_per_million": 140.832, + "new_cases_smoothed_per_million": 147.801, + "total_deaths_per_million": 123.131, + "new_deaths_per_million": 3.031, + "new_deaths_smoothed_per_million": 3.524, + "new_tests": 9526.0, + "total_tests": 878385.0, + "total_tests_per_thousand": 19.435, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 16379.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 2.452, + "positive_rate": 0.408, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-17", + "total_cases": 289087.0, + "new_cases": 6663.0, + "new_cases_smoothed": 6755.571, + "total_deaths": 5657.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 157.286, + "total_cases_per_million": 6396.328, + "new_cases_per_million": 147.425, + "new_cases_smoothed_per_million": 149.474, + "total_deaths_per_million": 125.167, + "new_deaths_per_million": 2.036, + "new_deaths_smoothed_per_million": 3.48, + "new_tests": 12453.0, + "total_tests": 890838.0, + "total_tests_per_thousand": 19.711, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 15900.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 2.354, + "positive_rate": 0.425, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-18", + "total_cases": 294556.0, + "new_cases": 5469.0, + "new_cases_smoothed": 6867.143, + "total_deaths": 5750.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 159.429, + "total_cases_per_million": 6517.335, + "new_cases_per_million": 121.007, + "new_cases_smoothed_per_million": 151.942, + "total_deaths_per_million": 127.224, + "new_deaths_per_million": 2.058, + "new_deaths_smoothed_per_million": 3.528, + "new_tests": 15244.0, + "total_tests": 906082.0, + "total_tests_per_thousand": 20.048, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 15405.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 2.2430000000000003, + "positive_rate": 0.446, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-19", + "total_cases": 299113.0, + "new_cases": 4557.0, + "new_cases_smoothed": 6465.429, + "total_deaths": 5877.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 156.0, + "total_cases_per_million": 6618.163, + "new_cases_per_million": 100.828, + "new_cases_smoothed_per_million": 143.054, + "total_deaths_per_million": 130.034, + "new_deaths_per_million": 2.81, + "new_deaths_smoothed_per_million": 3.452, + "new_tests": 17761.0, + "total_tests": 923843.0, + "total_tests_per_thousand": 20.441, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 15282.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_per_case": 2.364, + "positive_rate": 0.423, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-20", + "total_cases": 305953.0, + "new_cases": 6840.0, + "new_cases_smoothed": 6436.429, + "total_deaths": 6114.0, + "new_deaths": 237.0, + "new_deaths_smoothed": 146.571, + "total_cases_per_million": 6769.504, + "new_cases_per_million": 151.342, + "new_cases_smoothed_per_million": 142.412, + "total_deaths_per_million": 135.278, + "new_deaths_per_million": 5.244, + "new_deaths_smoothed_per_million": 3.243, + "new_tests": 18202.0, + "total_tests": 942045.0, + "total_tests_per_thousand": 20.844, + "new_tests_per_thousand": 0.403, + "new_tests_smoothed": 15318.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 2.38, + "positive_rate": 0.42, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-21", + "total_cases": 312646.0, + "new_cases": 6693.0, + "new_cases_smoothed": 6297.857, + "total_deaths": 6406.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 165.714, + "total_cases_per_million": 6917.593, + "new_cases_per_million": 148.089, + "new_cases_smoothed_per_million": 139.346, + "total_deaths_per_million": 141.739, + "new_deaths_per_million": 6.461, + "new_deaths_smoothed_per_million": 3.667, + "new_tests": 18069.0, + "total_tests": 960114.0, + "total_tests_per_thousand": 21.243, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 15261.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_per_case": 2.423, + "positive_rate": 0.413, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-22", + "total_cases": 320871.0, + "new_cases": 8225.0, + "new_cases_smoothed": 6401.714, + "total_deaths": 6567.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 162.714, + "total_cases_per_million": 7099.579, + "new_cases_per_million": 181.986, + "new_cases_smoothed_per_million": 141.644, + "total_deaths_per_million": 145.301, + "new_deaths_per_million": 3.562, + "new_deaths_smoothed_per_million": 3.6, + "new_tests": 15100.0, + "total_tests": 975214.0, + "total_tests_per_thousand": 21.578, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 15194.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 2.373, + "positive_rate": 0.42100000000000004, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-23", + "total_cases": 329030.0, + "new_cases": 8159.0, + "new_cases_smoothed": 6658.0, + "total_deaths": 6795.0, + "new_deaths": 228.0, + "new_deaths_smoothed": 175.714, + "total_cases_per_million": 7280.105, + "new_cases_per_million": 180.526, + "new_cases_smoothed_per_million": 147.315, + "total_deaths_per_million": 150.346, + "new_deaths_per_million": 5.045, + "new_deaths_smoothed_per_million": 3.888, + "new_tests": 9947.0, + "total_tests": 985161.0, + "total_tests_per_thousand": 21.798, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 15254.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_per_case": 2.291, + "positive_rate": 0.436, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-24", + "total_cases": 336789.0, + "new_cases": 7759.0, + "new_cases_smoothed": 6814.571, + "total_deaths": 6848.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 170.143, + "total_cases_per_million": 7451.78, + "new_cases_per_million": 171.675, + "new_cases_smoothed_per_million": 150.779, + "total_deaths_per_million": 151.519, + "new_deaths_per_million": 1.173, + "new_deaths_smoothed_per_million": 3.765, + "new_tests": 16642.0, + "total_tests": 1001803.0, + "total_tests_per_thousand": 22.166, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 15852.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 2.326, + "positive_rate": 0.43, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-25", + "total_cases": 342141.0, + "new_cases": 5352.0, + "new_cases_smoothed": 6797.857, + "total_deaths": 7079.0, + "new_deaths": 231.0, + "new_deaths_smoothed": 189.857, + "total_cases_per_million": 7570.198, + "new_cases_per_million": 118.418, + "new_cases_smoothed_per_million": 150.409, + "total_deaths_per_million": 156.63, + "new_deaths_per_million": 5.111, + "new_deaths_smoothed_per_million": 4.201, + "new_tests": 18657.0, + "total_tests": 1020460.0, + "total_tests_per_thousand": 22.579, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 16340.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 2.404, + "positive_rate": 0.41600000000000004, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-26", + "total_cases": 350854.0, + "new_cases": 8713.0, + "new_cases_smoothed": 7391.571, + "total_deaths": 7402.0, + "new_deaths": 323.0, + "new_deaths_smoothed": 217.857, + "total_cases_per_million": 7762.982, + "new_cases_per_million": 192.783, + "new_cases_smoothed_per_million": 163.546, + "total_deaths_per_million": 163.776, + "new_deaths_per_million": 7.147, + "new_deaths_smoothed_per_million": 4.82, + "new_tests": 19809.0, + "total_tests": 1040269.0, + "total_tests_per_thousand": 23.017, + "new_tests_per_thousand": 0.438, + "new_tests_smoothed": 16632.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 2.25, + "positive_rate": 0.444, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-27", + "total_cases": 359625.0, + "new_cases": 8771.0, + "new_cases_smoothed": 7667.429, + "total_deaths": 7661.0, + "new_deaths": 259.0, + "new_deaths_smoothed": 221.0, + "total_cases_per_million": 7957.049, + "new_cases_per_million": 194.067, + "new_cases_smoothed_per_million": 169.649, + "total_deaths_per_million": 169.507, + "new_deaths_per_million": 5.731, + "new_deaths_smoothed_per_million": 4.89, + "new_tests": 20460.0, + "total_tests": 1060729.0, + "total_tests_per_thousand": 23.47, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 16955.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 2.211, + "positive_rate": 0.452, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-28", + "total_cases": 370175.0, + "new_cases": 10550.0, + "new_cases_smoothed": 8218.429, + "total_deaths": 7944.0, + "new_deaths": 283.0, + "new_deaths_smoothed": 219.714, + "total_cases_per_million": 8190.478, + "new_cases_per_million": 233.429, + "new_cases_smoothed_per_million": 181.841, + "total_deaths_per_million": 175.769, + "new_deaths_per_million": 6.262, + "new_deaths_smoothed_per_million": 4.861, + "new_tests": 19450.0, + "total_tests": 1080179.0, + "total_tests_per_thousand": 23.9, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 17152.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 2.0869999999999997, + "positive_rate": 0.479, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-29", + "total_cases": 380279.0, + "new_cases": 10104.0, + "new_cases_smoothed": 8486.857, + "total_deaths": 8129.0, + "new_deaths": 185.0, + "new_deaths_smoothed": 223.143, + "total_cases_per_million": 8414.038, + "new_cases_per_million": 223.561, + "new_cases_smoothed_per_million": 187.78, + "total_deaths_per_million": 179.862, + "new_deaths_per_million": 4.093, + "new_deaths_smoothed_per_million": 4.937, + "new_tests": 15101.0, + "total_tests": 1095280.0, + "total_tests_per_thousand": 24.234, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 17152.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 2.021, + "positive_rate": 0.495, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-30", + "total_cases": 392009.0, + "new_cases": 11730.0, + "new_cases_smoothed": 8997.0, + "total_deaths": 8305.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 215.714, + "total_cases_per_million": 8673.576, + "new_cases_per_million": 259.538, + "new_cases_smoothed_per_million": 199.067, + "total_deaths_per_million": 183.756, + "new_deaths_per_million": 3.894, + "new_deaths_smoothed_per_million": 4.773, + "new_tests": 10760.0, + "total_tests": 1106040.0, + "total_tests_per_thousand": 24.472, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 17268.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 1.919, + "positive_rate": 0.521, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-08-31", + "total_cases": 401226.0, + "new_cases": 9217.0, + "new_cases_smoothed": 9205.286, + "total_deaths": 8401.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 221.857, + "total_cases_per_million": 8877.511, + "new_cases_per_million": 203.935, + "new_cases_smoothed_per_million": 203.676, + "total_deaths_per_million": 185.88, + "new_deaths_per_million": 2.124, + "new_deaths_smoothed_per_million": 4.909, + "new_tests": 12883.0, + "total_tests": 1118923.0, + "total_tests_per_thousand": 24.757, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 16731.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 1.818, + "positive_rate": 0.55, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 408413.0, + "new_cases": 7187.0, + "new_cases_smoothed": 9467.429, + "total_deaths": 8498.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 202.714, + "total_cases_per_million": 9036.53, + "new_cases_per_million": 159.019, + "new_cases_smoothed_per_million": 209.476, + "total_deaths_per_million": 188.026, + "new_deaths_per_million": 2.146, + "new_deaths_smoothed_per_million": 4.485 + }, + { + "date": "2020-09-02", + "total_cases": 417722.0, + "new_cases": 9309.0, + "new_cases_smoothed": 9552.571, + "total_deaths": 8730.0, + "new_deaths": 232.0, + "new_deaths_smoothed": 189.714, + "total_cases_per_million": 9242.501, + "new_cases_per_million": 205.971, + "new_cases_smoothed_per_million": 211.36, + "total_deaths_per_million": 193.16, + "new_deaths_per_million": 5.133, + "new_deaths_smoothed_per_million": 4.198 + }, + { + "date": "2020-09-03", + "total_cases": 428226.0, + "new_cases": 10504.0, + "new_cases_smoothed": 9800.143, + "total_deaths": 8971.0, + "new_deaths": 241.0, + "new_deaths_smoothed": 187.143, + "total_cases_per_million": 9474.912, + "new_cases_per_million": 232.411, + "new_cases_smoothed_per_million": 216.838, + "total_deaths_per_million": 198.492, + "new_deaths_per_million": 5.332, + "new_deaths_smoothed_per_million": 4.141 + }, + { + "date": "2020-09-04", + "total_cases": 439159.0, + "new_cases": 10933.0, + "new_cases_smoothed": 9854.857, + "total_deaths": 9155.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 173.0, + "total_cases_per_million": 9716.815, + "new_cases_per_million": 241.903, + "new_cases_smoothed_per_million": 218.048, + "total_deaths_per_million": 202.563, + "new_deaths_per_million": 4.071, + "new_deaths_smoothed_per_million": 3.828 + }, + { + "date": "2020-09-05", + "total_cases": 451185.0, + "new_cases": 12026.0, + "new_cases_smoothed": 10129.429, + "total_deaths": 9468.0, + "new_deaths": 313.0, + "new_deaths_smoothed": 191.286, + "total_cases_per_million": 9982.902, + "new_cases_per_million": 266.087, + "new_cases_smoothed_per_million": 224.123, + "total_deaths_per_million": 209.489, + "new_deaths_per_million": 6.925, + "new_deaths_smoothed_per_million": 4.232 + } + ] + }, + "ARM": { + "continent": "Asia", + "location": "Armenia", + "population": 2963234.0, + "population_density": 102.931, + "median_age": 35.7, + "aged_65_older": 11.232, + "aged_70_older": 7.571, + "gdp_per_capita": 8787.58, + "extreme_poverty": 1.8, + "cardiovasc_death_rate": 341.01, + "diabetes_prevalence": 7.11, + "female_smokers": 1.5, + "male_smokers": 52.1, + "handwashing_facilities": 94.043, + "hospital_beds_per_thousand": 4.2, + "life_expectancy": 75.09, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.337, + "new_cases_per_million": 0.337, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.35, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.025, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.241, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 13.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.387, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 20.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.749, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 0.916, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 28.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.449, + "new_cases_per_million": 2.7, + "new_cases_smoothed_per_million": 1.302, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 45.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.186, + "new_cases_per_million": 5.737, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 78.0, + "new_cases": 33.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.323, + "new_cases_per_million": 11.136, + "new_cases_smoothed_per_million": 3.712, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 110.0, + "new_cases": 32.0, + "new_cases_smoothed": 15.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.122, + "new_cases_per_million": 10.799, + "new_cases_smoothed_per_million": 5.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 136.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.896, + "new_cases_per_million": 8.774, + "new_cases_smoothed_per_million": 6.267, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 160.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.995, + "new_cases_per_million": 8.099, + "new_cases_smoothed_per_million": 7.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 190.0, + "new_cases": 30.0, + "new_cases_smoothed": 24.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.119, + "new_cases_per_million": 10.124, + "new_cases_smoothed_per_million": 8.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 194.0, + "new_cases": 4.0, + "new_cases_smoothed": 23.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.469, + "new_cases_per_million": 1.35, + "new_cases_smoothed_per_million": 8.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 235.0, + "new_cases": 41.0, + "new_cases_smoothed": 27.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.305, + "new_cases_per_million": 13.836, + "new_cases_smoothed_per_million": 9.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 265.0, + "new_cases": 30.0, + "new_cases_smoothed": 26.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.429, + "new_cases_per_million": 10.124, + "new_cases_smoothed_per_million": 9.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 290.0, + "new_cases": 25.0, + "new_cases_smoothed": 25.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.866, + "new_cases_per_million": 8.437, + "new_cases_smoothed_per_million": 8.678, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 329.0, + "new_cases": 39.0, + "new_cases_smoothed": 27.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 111.027, + "new_cases_per_million": 13.161, + "new_cases_smoothed_per_million": 9.305, + "total_deaths_per_million": 0.337, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.048 + }, + { + "date": "2020-03-28", + "total_cases": 372.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.539, + "new_cases_per_million": 14.511, + "new_cases_smoothed_per_million": 10.22, + "total_deaths_per_million": 0.337, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048 + }, + { + "date": "2020-03-29", + "total_cases": 424.0, + "new_cases": 52.0, + "new_cases_smoothed": 33.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 143.087, + "new_cases_per_million": 17.548, + "new_cases_smoothed_per_million": 11.281, + "total_deaths_per_million": 0.337, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048 + }, + { + "date": "2020-03-30", + "total_cases": 482.0, + "new_cases": 58.0, + "new_cases_smoothed": 41.143, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 162.66, + "new_cases_per_million": 19.573, + "new_cases_smoothed_per_million": 13.884, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-03-31", + "total_cases": 532.0, + "new_cases": 50.0, + "new_cases_smoothed": 42.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 179.534, + "new_cases_per_million": 16.873, + "new_cases_smoothed_per_million": 14.318, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-04-01", + "total_cases": 571.0, + "new_cases": 39.0, + "new_cases_smoothed": 43.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 192.695, + "new_cases_per_million": 13.161, + "new_cases_smoothed_per_million": 14.752, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-04-02", + "total_cases": 663.0, + "new_cases": 92.0, + "new_cases_smoothed": 53.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 223.742, + "new_cases_per_million": 31.047, + "new_cases_smoothed_per_million": 17.982, + "total_deaths_per_million": 1.35, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.193 + }, + { + "date": "2020-04-03", + "total_cases": 736.0, + "new_cases": 73.0, + "new_cases_smoothed": 58.143, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 248.377, + "new_cases_per_million": 24.635, + "new_cases_smoothed_per_million": 19.621, + "total_deaths_per_million": 2.362, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-04", + "total_cases": 770.0, + "new_cases": 34.0, + "new_cases_smoothed": 56.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 259.851, + "new_cases_per_million": 11.474, + "new_cases_smoothed_per_million": 19.188, + "total_deaths_per_million": 2.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-05", + "total_cases": 822.0, + "new_cases": 52.0, + "new_cases_smoothed": 56.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 277.4, + "new_cases_per_million": 17.548, + "new_cases_smoothed_per_million": 19.188, + "total_deaths_per_million": 2.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-06", + "total_cases": 833.0, + "new_cases": 11.0, + "new_cases_smoothed": 50.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 281.112, + "new_cases_per_million": 3.712, + "new_cases_smoothed_per_million": 16.922, + "total_deaths_per_million": 2.7, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-04-07", + "total_cases": 853.0, + "new_cases": 20.0, + "new_cases_smoothed": 45.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 287.861, + "new_cases_per_million": 6.749, + "new_cases_smoothed_per_million": 15.475, + "total_deaths_per_million": 2.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-04-08", + "total_cases": 881.0, + "new_cases": 28.0, + "new_cases_smoothed": 44.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 297.31, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 14.945, + "total_deaths_per_million": 3.037, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-09", + "total_cases": 921.0, + "new_cases": 40.0, + "new_cases_smoothed": 36.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 310.809, + "new_cases_per_million": 13.499, + "new_cases_smoothed_per_million": 12.438, + "total_deaths_per_million": 3.375, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-10", + "total_cases": 937.0, + "new_cases": 16.0, + "new_cases_smoothed": 28.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 316.209, + "new_cases_per_million": 5.4, + "new_cases_smoothed_per_million": 9.69, + "total_deaths_per_million": 3.712, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.193 + }, + { + "date": "2020-04-11", + "total_cases": 967.0, + "new_cases": 30.0, + "new_cases_smoothed": 28.143, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 326.333, + "new_cases_per_million": 10.124, + "new_cases_smoothed_per_million": 9.497, + "total_deaths_per_million": 4.387, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-12", + "total_cases": 1013.0, + "new_cases": 46.0, + "new_cases_smoothed": 27.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 341.856, + "new_cases_per_million": 15.524, + "new_cases_smoothed_per_million": 9.208, + "total_deaths_per_million": 4.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-13", + "total_cases": 1039.0, + "new_cases": 26.0, + "new_cases_smoothed": 29.429, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 350.63, + "new_cases_per_million": 8.774, + "new_cases_smoothed_per_million": 9.931, + "total_deaths_per_million": 4.725, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-14", + "total_cases": 1067.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.571, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 360.08, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 10.317, + "total_deaths_per_million": 5.4, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-15", + "total_cases": 1111.0, + "new_cases": 44.0, + "new_cases_smoothed": 32.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 374.928, + "new_cases_per_million": 14.849, + "new_cases_smoothed_per_million": 11.088, + "total_deaths_per_million": 5.737, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-16", + "total_cases": 1159.0, + "new_cases": 48.0, + "new_cases_smoothed": 34.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 391.127, + "new_cases_per_million": 16.199, + "new_cases_smoothed_per_million": 11.474, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-17", + "total_cases": 1201.0, + "new_cases": 42.0, + "new_cases_smoothed": 37.714, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 405.3, + "new_cases_per_million": 14.174, + "new_cases_smoothed_per_million": 12.727, + "total_deaths_per_million": 6.412, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-18", + "total_cases": 1248.0, + "new_cases": 47.0, + "new_cases_smoothed": 40.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 421.161, + "new_cases_per_million": 15.861, + "new_cases_smoothed_per_million": 13.547, + "total_deaths_per_million": 6.749, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-04-19", + "total_cases": 1291.0, + "new_cases": 43.0, + "new_cases_smoothed": 39.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 435.673, + "new_cases_per_million": 14.511, + "new_cases_smoothed_per_million": 13.402, + "total_deaths_per_million": 6.749, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-04-20", + "total_cases": 1339.0, + "new_cases": 48.0, + "new_cases_smoothed": 42.857, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 451.871, + "new_cases_per_million": 16.199, + "new_cases_smoothed_per_million": 14.463, + "total_deaths_per_million": 7.424, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-21", + "total_cases": 1401.0, + "new_cases": 62.0, + "new_cases_smoothed": 47.714, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 472.794, + "new_cases_per_million": 20.923, + "new_cases_smoothed_per_million": 16.102, + "total_deaths_per_million": 8.099, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-22", + "total_cases": 1473.0, + "new_cases": 72.0, + "new_cases_smoothed": 51.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 497.092, + "new_cases_per_million": 24.298, + "new_cases_smoothed_per_million": 17.452, + "total_deaths_per_million": 8.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-04-23", + "total_cases": 1523.0, + "new_cases": 50.0, + "new_cases_smoothed": 52.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 513.965, + "new_cases_per_million": 16.873, + "new_cases_smoothed_per_million": 17.548, + "total_deaths_per_million": 8.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-24", + "total_cases": 1596.0, + "new_cases": 73.0, + "new_cases_smoothed": 56.429, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 538.601, + "new_cases_per_million": 24.635, + "new_cases_smoothed_per_million": 19.043, + "total_deaths_per_million": 9.112, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-25", + "total_cases": 1677.0, + "new_cases": 81.0, + "new_cases_smoothed": 61.286, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 565.936, + "new_cases_per_million": 27.335, + "new_cases_smoothed_per_million": 20.682, + "total_deaths_per_million": 9.449, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-26", + "total_cases": 1746.0, + "new_cases": 69.0, + "new_cases_smoothed": 65.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 589.221, + "new_cases_per_million": 23.285, + "new_cases_smoothed_per_million": 21.935, + "total_deaths_per_million": 9.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-04-27", + "total_cases": 1808.0, + "new_cases": 62.0, + "new_cases_smoothed": 67.0, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 610.144, + "new_cases_per_million": 20.923, + "new_cases_smoothed_per_million": 22.61, + "total_deaths_per_million": 9.787, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-04-28", + "total_cases": 1867.0, + "new_cases": 59.0, + "new_cases_smoothed": 66.571, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 630.055, + "new_cases_per_million": 19.911, + "new_cases_smoothed_per_million": 22.466, + "total_deaths_per_million": 10.124, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-29", + "total_cases": 1932.0, + "new_cases": 65.0, + "new_cases_smoothed": 65.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 651.99, + "new_cases_per_million": 21.935, + "new_cases_smoothed_per_million": 22.128, + "total_deaths_per_million": 10.124, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-04-30", + "total_cases": 2066.0, + "new_cases": 134.0, + "new_cases_smoothed": 77.571, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 697.211, + "new_cases_per_million": 45.221, + "new_cases_smoothed_per_million": 26.178, + "total_deaths_per_million": 10.799, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-05-01", + "total_cases": 2148.0, + "new_cases": 82.0, + "new_cases_smoothed": 78.857, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 724.884, + "new_cases_per_million": 27.672, + "new_cases_smoothed_per_million": 26.612, + "total_deaths_per_million": 11.136, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.289 + }, + { + "date": "2020-05-02", + "total_cases": 2273.0, + "new_cases": 125.0, + "new_cases_smoothed": 85.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 767.067, + "new_cases_per_million": 42.184, + "new_cases_smoothed_per_million": 28.733, + "total_deaths_per_million": 11.136, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-05-03", + "total_cases": 2386.0, + "new_cases": 113.0, + "new_cases_smoothed": 91.429, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 805.201, + "new_cases_per_million": 38.134, + "new_cases_smoothed_per_million": 30.854, + "total_deaths_per_million": 11.811, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-05-04", + "total_cases": 2507.0, + "new_cases": 121.0, + "new_cases_smoothed": 99.857, + "total_deaths": 39.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 846.035, + "new_cases_per_million": 40.834, + "new_cases_smoothed_per_million": 33.699, + "total_deaths_per_million": 13.161, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-05", + "total_cases": 2619.0, + "new_cases": 112.0, + "new_cases_smoothed": 107.429, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 883.832, + "new_cases_per_million": 37.797, + "new_cases_smoothed_per_million": 36.254, + "total_deaths_per_million": 13.499, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-06", + "total_cases": 2782.0, + "new_cases": 163.0, + "new_cases_smoothed": 121.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 938.839, + "new_cases_per_million": 55.007, + "new_cases_smoothed_per_million": 40.978, + "total_deaths_per_million": 13.499, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-07", + "total_cases": 2884.0, + "new_cases": 102.0, + "new_cases_smoothed": 116.857, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 973.261, + "new_cases_per_million": 34.422, + "new_cases_smoothed_per_million": 39.436, + "total_deaths_per_million": 14.174, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-08", + "total_cases": 3029.0, + "new_cases": 145.0, + "new_cases_smoothed": 125.857, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1022.194, + "new_cases_per_million": 48.933, + "new_cases_smoothed_per_million": 42.473, + "total_deaths_per_million": 14.511, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-09", + "total_cases": 3175.0, + "new_cases": 146.0, + "new_cases_smoothed": 128.857, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1071.464, + "new_cases_per_million": 49.27, + "new_cases_smoothed_per_million": 43.485, + "total_deaths_per_million": 14.849, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.53 + }, + { + "date": "2020-05-10", + "total_cases": 3313.0, + "new_cases": 138.0, + "new_cases_smoothed": 132.429, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1118.035, + "new_cases_per_million": 46.571, + "new_cases_smoothed_per_million": 44.691, + "total_deaths_per_million": 15.186, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-05-11", + "total_cases": 3392.0, + "new_cases": 79.0, + "new_cases_smoothed": 126.429, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1144.695, + "new_cases_per_million": 26.66, + "new_cases_smoothed_per_million": 42.666, + "total_deaths_per_million": 15.524, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-05-12", + "total_cases": 3538.0, + "new_cases": 146.0, + "new_cases_smoothed": 131.286, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1193.966, + "new_cases_per_million": 49.27, + "new_cases_smoothed_per_million": 44.305, + "total_deaths_per_million": 15.861, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-05-13", + "total_cases": 3718.0, + "new_cases": 180.0, + "new_cases_smoothed": 133.714, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1254.71, + "new_cases_per_million": 60.744, + "new_cases_smoothed_per_million": 45.124, + "total_deaths_per_million": 16.199, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-05-14", + "total_cases": 3860.0, + "new_cases": 142.0, + "new_cases_smoothed": 139.429, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1302.631, + "new_cases_per_million": 47.921, + "new_cases_smoothed_per_million": 47.053, + "total_deaths_per_million": 16.536, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-05-15", + "total_cases": 4044.0, + "new_cases": 184.0, + "new_cases_smoothed": 145.0, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1364.725, + "new_cases_per_million": 62.094, + "new_cases_smoothed_per_million": 48.933, + "total_deaths_per_million": 17.548, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.434 + }, + { + "date": "2020-05-16", + "total_cases": 4283.0, + "new_cases": 239.0, + "new_cases_smoothed": 158.286, + "total_deaths": 55.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1445.38, + "new_cases_per_million": 80.655, + "new_cases_smoothed_per_million": 53.417, + "total_deaths_per_million": 18.561, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.53 + }, + { + "date": "2020-05-17", + "total_cases": 4472.0, + "new_cases": 189.0, + "new_cases_smoothed": 165.571, + "total_deaths": 60.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1509.162, + "new_cases_per_million": 63.782, + "new_cases_smoothed_per_million": 55.875, + "total_deaths_per_million": 20.248, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 0.723 + }, + { + "date": "2020-05-18", + "total_cases": 4823.0, + "new_cases": 351.0, + "new_cases_smoothed": 204.429, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1627.614, + "new_cases_per_million": 118.452, + "new_cases_smoothed_per_million": 68.988, + "total_deaths_per_million": 20.586, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.723 + }, + { + "date": "2020-05-19", + "total_cases": 5041.0, + "new_cases": 218.0, + "new_cases_smoothed": 214.714, + "total_deaths": 64.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1701.182, + "new_cases_per_million": 73.568, + "new_cases_smoothed_per_million": 72.459, + "total_deaths_per_million": 21.598, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.82 + }, + { + "date": "2020-05-20", + "total_cases": 5271.0, + "new_cases": 230.0, + "new_cases_smoothed": 221.857, + "total_deaths": 67.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1778.8, + "new_cases_per_million": 77.618, + "new_cases_smoothed_per_million": 74.87, + "total_deaths_per_million": 22.61, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.916 + }, + { + "date": "2020-05-21", + "total_cases": 5606.0, + "new_cases": 335.0, + "new_cases_smoothed": 249.429, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1891.852, + "new_cases_per_million": 113.052, + "new_cases_smoothed_per_million": 84.174, + "total_deaths_per_million": 23.623, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.012 + }, + { + "date": "2020-05-22", + "total_cases": 5928.0, + "new_cases": 322.0, + "new_cases_smoothed": 269.143, + "total_deaths": 74.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2000.517, + "new_cases_per_million": 108.665, + "new_cases_smoothed_per_million": 90.827, + "total_deaths_per_million": 24.973, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.061 + }, + { + "date": "2020-05-23", + "total_cases": 6302.0, + "new_cases": 374.0, + "new_cases_smoothed": 288.429, + "total_deaths": 77.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2126.73, + "new_cases_per_million": 126.213, + "new_cases_smoothed_per_million": 97.336, + "total_deaths_per_million": 25.985, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.061 + }, + { + "date": "2020-05-24", + "total_cases": 6661.0, + "new_cases": 359.0, + "new_cases_smoothed": 312.714, + "total_deaths": 81.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2247.882, + "new_cases_per_million": 121.151, + "new_cases_smoothed_per_million": 105.531, + "total_deaths_per_million": 27.335, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.012 + }, + { + "date": "2020-05-25", + "total_cases": 7113.0, + "new_cases": 452.0, + "new_cases_smoothed": 327.143, + "total_deaths": 87.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2400.418, + "new_cases_per_million": 152.536, + "new_cases_smoothed_per_million": 110.401, + "total_deaths_per_million": 29.36, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 1.253 + }, + { + "date": "2020-05-26", + "total_cases": 7402.0, + "new_cases": 289.0, + "new_cases_smoothed": 337.286, + "total_deaths": 91.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2497.947, + "new_cases_per_million": 97.529, + "new_cases_smoothed_per_million": 113.824, + "total_deaths_per_million": 30.71, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.302 + }, + { + "date": "2020-05-27", + "total_cases": 7774.0, + "new_cases": 372.0, + "new_cases_smoothed": 357.571, + "total_deaths": 98.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2623.485, + "new_cases_per_million": 125.539, + "new_cases_smoothed_per_million": 120.669, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 1.495 + }, + { + "date": "2020-05-28", + "total_cases": 8216.0, + "new_cases": 442.0, + "new_cases_smoothed": 372.857, + "total_deaths": 113.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 2772.646, + "new_cases_per_million": 149.161, + "new_cases_smoothed_per_million": 125.828, + "total_deaths_per_million": 38.134, + "new_deaths_per_million": 5.062, + "new_deaths_smoothed_per_million": 2.073 + }, + { + "date": "2020-05-29", + "total_cases": 8676.0, + "new_cases": 460.0, + "new_cases_smoothed": 392.571, + "total_deaths": 120.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2927.882, + "new_cases_per_million": 155.236, + "new_cases_smoothed_per_million": 132.481, + "total_deaths_per_million": 40.496, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.218 + }, + { + "date": "2020-05-30", + "total_cases": 8927.0, + "new_cases": 251.0, + "new_cases_smoothed": 375.0, + "total_deaths": 127.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 3012.587, + "new_cases_per_million": 84.705, + "new_cases_smoothed_per_million": 126.551, + "total_deaths_per_million": 42.859, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.41 + }, + { + "date": "2020-05-31", + "total_cases": 9282.0, + "new_cases": 355.0, + "new_cases_smoothed": 374.429, + "total_deaths": 131.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 3132.388, + "new_cases_per_million": 119.802, + "new_cases_smoothed_per_million": 126.358, + "total_deaths_per_million": 44.208, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 2.41 + }, + { + "date": "2020-06-01", + "total_cases": 9492.0, + "new_cases": 210.0, + "new_cases_smoothed": 339.857, + "total_deaths": 139.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 3203.257, + "new_cases_per_million": 70.869, + "new_cases_smoothed_per_million": 114.691, + "total_deaths_per_million": 46.908, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 2.507 + }, + { + "date": "2020-06-02", + "total_cases": 10009.0, + "new_cases": 517.0, + "new_cases_smoothed": 372.429, + "total_deaths": 158.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 3377.729, + "new_cases_per_million": 174.472, + "new_cases_smoothed_per_million": 125.683, + "total_deaths_per_million": 53.32, + "new_deaths_per_million": 6.412, + "new_deaths_smoothed_per_million": 3.23 + }, + { + "date": "2020-06-03", + "total_cases": 10524.0, + "new_cases": 515.0, + "new_cases_smoothed": 392.857, + "total_deaths": 170.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 3551.525, + "new_cases_per_million": 173.797, + "new_cases_smoothed_per_million": 132.577, + "total_deaths_per_million": 57.37, + "new_deaths_per_million": 4.05, + "new_deaths_smoothed_per_million": 3.471 + }, + { + "date": "2020-06-04", + "total_cases": 11221.0, + "new_cases": 697.0, + "new_cases_smoothed": 429.286, + "total_deaths": 176.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3786.741, + "new_cases_per_million": 235.216, + "new_cases_smoothed_per_million": 144.871, + "total_deaths_per_million": 59.395, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 3.037 + }, + { + "date": "2020-06-05", + "total_cases": 11817.0, + "new_cases": 596.0, + "new_cases_smoothed": 448.714, + "total_deaths": 183.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3987.873, + "new_cases_per_million": 201.132, + "new_cases_smoothed_per_million": 151.427, + "total_deaths_per_million": 61.757, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 3.037 + }, + { + "date": "2020-06-06", + "total_cases": 12364.0, + "new_cases": 547.0, + "new_cases_smoothed": 491.0, + "total_deaths": 190.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 4172.468, + "new_cases_per_million": 184.596, + "new_cases_smoothed_per_million": 165.697, + "total_deaths_per_million": 64.119, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 3.037 + }, + { + "date": "2020-06-07", + "total_cases": 13130.0, + "new_cases": 766.0, + "new_cases_smoothed": 549.714, + "total_deaths": 200.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 4430.97, + "new_cases_per_million": 258.501, + "new_cases_smoothed_per_million": 185.512, + "total_deaths_per_million": 67.494, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.326 + }, + { + "date": "2020-06-08", + "total_cases": 13325.0, + "new_cases": 195.0, + "new_cases_smoothed": 547.571, + "total_deaths": 211.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 4496.776, + "new_cases_per_million": 65.806, + "new_cases_smoothed_per_million": 184.788, + "total_deaths_per_million": 71.206, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 3.471 + }, + { + "date": "2020-06-09", + "total_cases": 13675.0, + "new_cases": 350.0, + "new_cases_smoothed": 523.714, + "total_deaths": 217.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 4614.89, + "new_cases_per_million": 118.114, + "new_cases_smoothed_per_million": 176.737, + "total_deaths_per_million": 73.231, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.844 + }, + { + "date": "2020-06-10", + "total_cases": 14103.0, + "new_cases": 428.0, + "new_cases_smoothed": 511.286, + "total_deaths": 227.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4759.327, + "new_cases_per_million": 144.437, + "new_cases_smoothed_per_million": 172.543, + "total_deaths_per_million": 76.605, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 2.748 + }, + { + "date": "2020-06-11", + "total_cases": 14669.0, + "new_cases": 566.0, + "new_cases_smoothed": 492.571, + "total_deaths": 245.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 4950.335, + "new_cases_per_million": 191.008, + "new_cases_smoothed_per_million": 166.228, + "total_deaths_per_million": 82.68, + "new_deaths_per_million": 6.074, + "new_deaths_smoothed_per_million": 3.326 + }, + { + "date": "2020-06-12", + "total_cases": 15281.0, + "new_cases": 612.0, + "new_cases_smoothed": 494.857, + "total_deaths": 258.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 5156.866, + "new_cases_per_million": 206.531, + "new_cases_smoothed_per_million": 166.999, + "total_deaths_per_million": 87.067, + "new_deaths_per_million": 4.387, + "new_deaths_smoothed_per_million": 3.616 + }, + { + "date": "2020-06-13", + "total_cases": 16004.0, + "new_cases": 723.0, + "new_cases_smoothed": 520.0, + "total_deaths": 264.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 5400.856, + "new_cases_per_million": 243.99, + "new_cases_smoothed_per_million": 175.484, + "total_deaths_per_million": 89.092, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 3.568 + }, + { + "date": "2020-06-14", + "total_cases": 16667.0, + "new_cases": 663.0, + "new_cases_smoothed": 505.286, + "total_deaths": 269.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 5624.598, + "new_cases_per_million": 223.742, + "new_cases_smoothed_per_million": 170.518, + "total_deaths_per_million": 90.779, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 3.326 + }, + { + "date": "2020-06-15", + "total_cases": 17064.0, + "new_cases": 397.0, + "new_cases_smoothed": 534.143, + "total_deaths": 285.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 5758.573, + "new_cases_per_million": 133.975, + "new_cases_smoothed_per_million": 180.257, + "total_deaths_per_million": 96.179, + "new_deaths_per_million": 5.4, + "new_deaths_smoothed_per_million": 3.568 + }, + { + "date": "2020-06-16", + "total_cases": 17489.0, + "new_cases": 425.0, + "new_cases_smoothed": 544.857, + "total_deaths": 293.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 5901.998, + "new_cases_per_million": 143.424, + "new_cases_smoothed_per_million": 183.872, + "total_deaths_per_million": 98.878, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 3.664 + }, + { + "date": "2020-06-17", + "total_cases": 18033.0, + "new_cases": 544.0, + "new_cases_smoothed": 561.429, + "total_deaths": 302.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 6085.581, + "new_cases_per_million": 183.583, + "new_cases_smoothed_per_million": 189.465, + "total_deaths_per_million": 101.916, + "new_deaths_per_million": 3.037, + "new_deaths_smoothed_per_million": 3.616 + }, + { + "date": "2020-06-18", + "total_cases": 18698.0, + "new_cases": 665.0, + "new_cases_smoothed": 575.571, + "total_deaths": 309.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 6309.998, + "new_cases_per_million": 224.417, + "new_cases_smoothed_per_million": 194.238, + "total_deaths_per_million": 104.278, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 3.085 + }, + { + "date": "2020-06-19", + "total_cases": 19157.0, + "new_cases": 459.0, + "new_cases_smoothed": 553.714, + "total_deaths": 319.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 6464.896, + "new_cases_per_million": 154.898, + "new_cases_smoothed_per_million": 186.861, + "total_deaths_per_million": 107.653, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 2.941 + }, + { + "date": "2020-06-20", + "total_cases": 19708.0, + "new_cases": 551.0, + "new_cases_smoothed": 529.143, + "total_deaths": 332.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 6650.842, + "new_cases_per_million": 185.945, + "new_cases_smoothed_per_million": 178.569, + "total_deaths_per_million": 112.04, + "new_deaths_per_million": 4.387, + "new_deaths_smoothed_per_million": 3.278 + }, + { + "date": "2020-06-21", + "total_cases": 20268.0, + "new_cases": 560.0, + "new_cases_smoothed": 514.429, + "total_deaths": 350.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 6839.824, + "new_cases_per_million": 188.983, + "new_cases_smoothed_per_million": 173.604, + "total_deaths_per_million": 118.114, + "new_deaths_per_million": 6.074, + "new_deaths_smoothed_per_million": 3.905 + }, + { + "date": "2020-06-22", + "total_cases": 20588.0, + "new_cases": 320.0, + "new_cases_smoothed": 503.429, + "total_deaths": 360.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 6947.814, + "new_cases_per_million": 107.99, + "new_cases_smoothed_per_million": 169.892, + "total_deaths_per_million": 121.489, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.616 + }, + { + "date": "2020-06-23", + "total_cases": 21006.0, + "new_cases": 418.0, + "new_cases_smoothed": 502.429, + "total_deaths": 372.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 7088.877, + "new_cases_per_million": 141.062, + "new_cases_smoothed_per_million": 169.554, + "total_deaths_per_million": 125.539, + "new_deaths_per_million": 4.05, + "new_deaths_smoothed_per_million": 3.809 + }, + { + "date": "2020-06-24", + "total_cases": 21717.0, + "new_cases": 711.0, + "new_cases_smoothed": 526.286, + "total_deaths": 386.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 7328.817, + "new_cases_per_million": 239.941, + "new_cases_smoothed_per_million": 177.605, + "total_deaths_per_million": 130.263, + "new_deaths_per_million": 4.725, + "new_deaths_smoothed_per_million": 4.05 + }, + { + "date": "2020-06-25", + "total_cases": 22488.0, + "new_cases": 771.0, + "new_cases_smoothed": 541.429, + "total_deaths": 397.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 7589.006, + "new_cases_per_million": 260.189, + "new_cases_smoothed_per_million": 182.715, + "total_deaths_per_million": 133.975, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 4.242 + }, + { + "date": "2020-06-26", + "total_cases": 23247.0, + "new_cases": 759.0, + "new_cases_smoothed": 584.286, + "total_deaths": 410.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 7845.145, + "new_cases_per_million": 256.139, + "new_cases_smoothed_per_million": 197.178, + "total_deaths_per_million": 138.362, + "new_deaths_per_million": 4.387, + "new_deaths_smoothed_per_million": 4.387 + }, + { + "date": "2020-06-27", + "total_cases": 23909.0, + "new_cases": 662.0, + "new_cases_smoothed": 600.143, + "total_deaths": 420.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 8068.549, + "new_cases_per_million": 223.405, + "new_cases_smoothed_per_million": 202.53, + "total_deaths_per_million": 141.737, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 4.242 + }, + { + "date": "2020-06-28", + "total_cases": 24645.0, + "new_cases": 736.0, + "new_cases_smoothed": 625.286, + "total_deaths": 426.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 8316.927, + "new_cases_per_million": 248.377, + "new_cases_smoothed_per_million": 211.015, + "total_deaths_per_million": 143.762, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 3.664 + }, + { + "date": "2020-06-29", + "total_cases": 25127.0, + "new_cases": 482.0, + "new_cases_smoothed": 648.429, + "total_deaths": 433.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 8479.587, + "new_cases_per_million": 162.66, + "new_cases_smoothed_per_million": 218.825, + "total_deaths_per_million": 146.124, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 3.519 + }, + { + "date": "2020-06-30", + "total_cases": 25542.0, + "new_cases": 415.0, + "new_cases_smoothed": 648.0, + "total_deaths": 443.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 8619.637, + "new_cases_per_million": 140.05, + "new_cases_smoothed_per_million": 218.68, + "total_deaths_per_million": 149.499, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.423 + }, + { + "date": "2020-07-01", + "total_cases": 26065.0, + "new_cases": 523.0, + "new_cases_smoothed": 621.143, + "total_deaths": 453.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 8796.133, + "new_cases_per_million": 176.496, + "new_cases_smoothed_per_million": 209.617, + "total_deaths_per_million": 152.874, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.23 + }, + { + "date": "2020-07-02", + "total_cases": 26658.0, + "new_cases": 593.0, + "new_cases_smoothed": 595.714, + "total_deaths": 459.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 8996.252, + "new_cases_per_million": 200.119, + "new_cases_smoothed_per_million": 201.035, + "total_deaths_per_million": 154.898, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.989 + }, + { + "date": "2020-07-03", + "total_cases": 27320.0, + "new_cases": 662.0, + "new_cases_smoothed": 581.857, + "total_deaths": 469.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 9219.657, + "new_cases_per_million": 223.405, + "new_cases_smoothed_per_million": 196.359, + "total_deaths_per_million": 158.273, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 2.844 + }, + { + "date": "2020-07-04", + "total_cases": 27900.0, + "new_cases": 580.0, + "new_cases_smoothed": 570.143, + "total_deaths": 477.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 9415.389, + "new_cases_per_million": 195.732, + "new_cases_smoothed_per_million": 192.406, + "total_deaths_per_million": 160.973, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 2.748 + }, + { + "date": "2020-07-05", + "total_cases": 28606.0, + "new_cases": 706.0, + "new_cases_smoothed": 565.857, + "total_deaths": 484.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 9653.642, + "new_cases_per_million": 238.253, + "new_cases_smoothed_per_million": 190.959, + "total_deaths_per_million": 163.335, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.796 + }, + { + "date": "2020-07-06", + "total_cases": 28936.0, + "new_cases": 330.0, + "new_cases_smoothed": 544.143, + "total_deaths": 491.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 9765.007, + "new_cases_per_million": 111.365, + "new_cases_smoothed_per_million": 183.631, + "total_deaths_per_million": 165.697, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.796 + }, + { + "date": "2020-07-07", + "total_cases": 29285.0, + "new_cases": 349.0, + "new_cases_smoothed": 534.714, + "total_deaths": 503.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 9882.783, + "new_cases_per_million": 117.777, + "new_cases_smoothed_per_million": 180.45, + "total_deaths_per_million": 169.747, + "new_deaths_per_million": 4.05, + "new_deaths_smoothed_per_million": 2.893 + }, + { + "date": "2020-07-08", + "total_cases": 29820.0, + "new_cases": 535.0, + "new_cases_smoothed": 536.429, + "total_deaths": 521.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 10063.329, + "new_cases_per_million": 180.546, + "new_cases_smoothed_per_million": 181.028, + "total_deaths_per_million": 175.821, + "new_deaths_per_million": 6.074, + "new_deaths_smoothed_per_million": 3.278 + }, + { + "date": "2020-07-09", + "total_cases": 30346.0, + "new_cases": 526.0, + "new_cases_smoothed": 526.857, + "total_deaths": 535.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 10240.838, + "new_cases_per_million": 177.509, + "new_cases_smoothed_per_million": 177.798, + "total_deaths_per_million": 180.546, + "new_deaths_per_million": 4.725, + "new_deaths_smoothed_per_million": 3.664 + }, + { + "date": "2020-07-10", + "total_cases": 30903.0, + "new_cases": 557.0, + "new_cases_smoothed": 511.857, + "total_deaths": 546.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 10428.809, + "new_cases_per_million": 187.97, + "new_cases_smoothed_per_million": 172.736, + "total_deaths_per_million": 184.258, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 3.712 + }, + { + "date": "2020-07-11", + "total_cases": 31392.0, + "new_cases": 489.0, + "new_cases_smoothed": 498.857, + "total_deaths": 559.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 10593.831, + "new_cases_per_million": 165.022, + "new_cases_smoothed_per_million": 168.349, + "total_deaths_per_million": 188.645, + "new_deaths_per_million": 4.387, + "new_deaths_smoothed_per_million": 3.953 + }, + { + "date": "2020-07-12", + "total_cases": 31969.0, + "new_cases": 577.0, + "new_cases_smoothed": 480.429, + "total_deaths": 565.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 10788.551, + "new_cases_per_million": 194.72, + "new_cases_smoothed_per_million": 162.13, + "total_deaths_per_million": 190.67, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 3.905 + }, + { + "date": "2020-07-13", + "total_cases": 32151.0, + "new_cases": 182.0, + "new_cases_smoothed": 459.286, + "total_deaths": 573.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 10849.97, + "new_cases_per_million": 61.419, + "new_cases_smoothed_per_million": 154.995, + "total_deaths_per_million": 193.37, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 3.953 + }, + { + "date": "2020-07-14", + "total_cases": 32490.0, + "new_cases": 339.0, + "new_cases_smoothed": 457.857, + "total_deaths": 581.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 10964.372, + "new_cases_per_million": 114.402, + "new_cases_smoothed_per_million": 154.513, + "total_deaths_per_million": 196.07, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 3.76 + }, + { + "date": "2020-07-15", + "total_cases": 33005.0, + "new_cases": 515.0, + "new_cases_smoothed": 455.0, + "total_deaths": 592.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 11138.169, + "new_cases_per_million": 173.797, + "new_cases_smoothed_per_million": 153.548, + "total_deaths_per_million": 199.782, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 3.423 + }, + { + "date": "2020-07-16", + "total_cases": 33559.0, + "new_cases": 554.0, + "new_cases_smoothed": 459.0, + "total_deaths": 607.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 11325.127, + "new_cases_per_million": 186.958, + "new_cases_smoothed_per_million": 154.898, + "total_deaths_per_million": 204.844, + "new_deaths_per_million": 5.062, + "new_deaths_smoothed_per_million": 3.471 + }, + { + "date": "2020-07-17", + "total_cases": 34001.0, + "new_cases": 442.0, + "new_cases_smoothed": 442.571, + "total_deaths": 620.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 11474.288, + "new_cases_per_million": 149.161, + "new_cases_smoothed_per_million": 149.354, + "total_deaths_per_million": 209.231, + "new_deaths_per_million": 4.387, + "new_deaths_smoothed_per_million": 3.568 + }, + { + "date": "2020-07-18", + "total_cases": 34462.0, + "new_cases": 461.0, + "new_cases_smoothed": 438.571, + "total_deaths": 631.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 11629.861, + "new_cases_per_million": 155.573, + "new_cases_smoothed_per_million": 148.004, + "total_deaths_per_million": 212.943, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 3.471 + }, + { + "date": "2020-07-19", + "total_cases": 34877.0, + "new_cases": 415.0, + "new_cases_smoothed": 415.429, + "total_deaths": 641.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 11769.911, + "new_cases_per_million": 140.05, + "new_cases_smoothed_per_million": 140.194, + "total_deaths_per_million": 216.318, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.664 + }, + { + "date": "2020-07-20", + "total_cases": 34981.0, + "new_cases": 104.0, + "new_cases_smoothed": 404.286, + "total_deaths": 650.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 11805.008, + "new_cases_per_million": 35.097, + "new_cases_smoothed_per_million": 136.434, + "total_deaths_per_million": 219.355, + "new_deaths_per_million": 3.037, + "new_deaths_smoothed_per_million": 3.712 + }, + { + "date": "2020-07-21", + "total_cases": 35254.0, + "new_cases": 273.0, + "new_cases_smoothed": 394.857, + "total_deaths": 662.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 11897.137, + "new_cases_per_million": 92.129, + "new_cases_smoothed_per_million": 133.252, + "total_deaths_per_million": 223.405, + "new_deaths_per_million": 4.05, + "new_deaths_smoothed_per_million": 3.905 + }, + { + "date": "2020-07-22", + "total_cases": 35693.0, + "new_cases": 439.0, + "new_cases_smoothed": 384.0, + "total_deaths": 678.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 12045.286, + "new_cases_per_million": 148.149, + "new_cases_smoothed_per_million": 129.588, + "total_deaths_per_million": 228.804, + "new_deaths_per_million": 5.4, + "new_deaths_smoothed_per_million": 4.146 + }, + { + "date": "2020-07-23", + "total_cases": 36162.0, + "new_cases": 469.0, + "new_cases_smoothed": 371.857, + "total_deaths": 688.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 12203.559, + "new_cases_per_million": 158.273, + "new_cases_smoothed_per_million": 125.49, + "total_deaths_per_million": 232.179, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 3.905 + }, + { + "date": "2020-07-24", + "total_cases": 36613.0, + "new_cases": 451.0, + "new_cases_smoothed": 373.143, + "total_deaths": 692.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 12355.757, + "new_cases_per_million": 152.199, + "new_cases_smoothed_per_million": 125.924, + "total_deaths_per_million": 233.529, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 3.471 + }, + { + "date": "2020-07-25", + "total_cases": 36996.0, + "new_cases": 383.0, + "new_cases_smoothed": 362.0, + "total_deaths": 700.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 12485.008, + "new_cases_per_million": 129.251, + "new_cases_smoothed_per_million": 122.164, + "total_deaths_per_million": 236.228, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 3.326 + }, + { + "date": "2020-07-26", + "total_cases": 37317.0, + "new_cases": 321.0, + "new_cases_smoothed": 348.571, + "total_deaths": 705.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 12593.336, + "new_cases_per_million": 108.328, + "new_cases_smoothed_per_million": 117.632, + "total_deaths_per_million": 237.916, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 3.085 + }, + { + "date": "2020-07-27", + "total_cases": 37390.0, + "new_cases": 73.0, + "new_cases_smoothed": 344.143, + "total_deaths": 711.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 12617.971, + "new_cases_per_million": 24.635, + "new_cases_smoothed_per_million": 116.138, + "total_deaths_per_million": 239.941, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.941 + }, + { + "date": "2020-07-28", + "total_cases": 37629.0, + "new_cases": 239.0, + "new_cases_smoothed": 339.286, + "total_deaths": 719.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 12698.626, + "new_cases_per_million": 80.655, + "new_cases_smoothed_per_million": 114.498, + "total_deaths_per_million": 242.64, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 2.748 + }, + { + "date": "2020-07-29", + "total_cases": 37937.0, + "new_cases": 308.0, + "new_cases_smoothed": 320.571, + "total_deaths": 723.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 12802.566, + "new_cases_per_million": 103.94, + "new_cases_smoothed_per_million": 108.183, + "total_deaths_per_million": 243.99, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 2.169 + }, + { + "date": "2020-07-30", + "total_cases": 38196.0, + "new_cases": 259.0, + "new_cases_smoothed": 290.571, + "total_deaths": 728.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 12889.971, + "new_cases_per_million": 87.405, + "new_cases_smoothed_per_million": 98.059, + "total_deaths_per_million": 245.678, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.928 + }, + { + "date": "2020-07-31", + "total_cases": 38550.0, + "new_cases": 354.0, + "new_cases_smoothed": 276.714, + "total_deaths": 738.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 13009.435, + "new_cases_per_million": 119.464, + "new_cases_smoothed_per_million": 93.383, + "total_deaths_per_million": 249.052, + "new_deaths_per_million": 3.375, + "new_deaths_smoothed_per_million": 2.218 + }, + { + "date": "2020-08-01", + "total_cases": 38841.0, + "new_cases": 291.0, + "new_cases_smoothed": 263.571, + "total_deaths": 749.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 13107.638, + "new_cases_per_million": 98.204, + "new_cases_smoothed_per_million": 88.947, + "total_deaths_per_million": 252.764, + "new_deaths_per_million": 3.712, + "new_deaths_smoothed_per_million": 2.362 + }, + { + "date": "2020-08-02", + "total_cases": 39050.0, + "new_cases": 209.0, + "new_cases_smoothed": 247.571, + "total_deaths": 754.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 13178.17, + "new_cases_per_million": 70.531, + "new_cases_smoothed_per_million": 83.548, + "total_deaths_per_million": 254.452, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 2.362 + }, + { + "date": "2020-08-03", + "total_cases": 39102.0, + "new_cases": 52.0, + "new_cases_smoothed": 244.571, + "total_deaths": 762.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 13195.718, + "new_cases_per_million": 17.548, + "new_cases_smoothed_per_million": 82.535, + "total_deaths_per_million": 257.151, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 2.459 + }, + { + "date": "2020-08-04", + "total_cases": 39102.0, + "new_cases": 0.0, + "new_cases_smoothed": 210.429, + "total_deaths": 762.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 13195.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 71.013, + "total_deaths_per_million": 257.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.073 + }, + { + "date": "2020-08-05", + "total_cases": 39298.0, + "new_cases": 196.0, + "new_cases_smoothed": 194.429, + "total_deaths": 768.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 13261.862, + "new_cases_per_million": 66.144, + "new_cases_smoothed_per_million": 65.614, + "total_deaths_per_million": 259.176, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.169 + }, + { + "date": "2020-08-06", + "total_cases": 39586.0, + "new_cases": 288.0, + "new_cases_smoothed": 198.571, + "total_deaths": 770.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 13359.053, + "new_cases_per_million": 97.191, + "new_cases_smoothed_per_million": 67.012, + "total_deaths_per_million": 259.851, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 2.025 + }, + { + "date": "2020-08-07", + "total_cases": 39819.0, + "new_cases": 233.0, + "new_cases_smoothed": 181.286, + "total_deaths": 772.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 13437.683, + "new_cases_per_million": 78.63, + "new_cases_smoothed_per_million": 61.178, + "total_deaths_per_million": 260.526, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 1.639 + }, + { + "date": "2020-08-08", + "total_cases": 39885.0, + "new_cases": 66.0, + "new_cases_smoothed": 149.143, + "total_deaths": 777.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 13459.956, + "new_cases_per_million": 22.273, + "new_cases_smoothed_per_million": 50.331, + "total_deaths_per_million": 262.214, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.35 + }, + { + "date": "2020-08-09", + "total_cases": 40185.0, + "new_cases": 300.0, + "new_cases_smoothed": 162.143, + "total_deaths": 785.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 13561.197, + "new_cases_per_million": 101.241, + "new_cases_smoothed_per_million": 54.718, + "total_deaths_per_million": 264.913, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 1.495 + }, + { + "date": "2020-08-10", + "total_cases": 40410.0, + "new_cases": 225.0, + "new_cases_smoothed": 186.857, + "total_deaths": 791.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 13637.128, + "new_cases_per_million": 75.931, + "new_cases_smoothed_per_million": 63.059, + "total_deaths_per_million": 266.938, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 1.398 + }, + { + "date": "2020-08-11", + "total_cases": 40433.0, + "new_cases": 23.0, + "new_cases_smoothed": 190.143, + "total_deaths": 796.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 13644.889, + "new_cases_per_million": 7.762, + "new_cases_smoothed_per_million": 64.167, + "total_deaths_per_million": 268.625, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.639 + }, + { + "date": "2020-08-12", + "total_cases": 40593.0, + "new_cases": 160.0, + "new_cases_smoothed": 185.0, + "total_deaths": 803.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 13698.884, + "new_cases_per_million": 53.995, + "new_cases_smoothed_per_million": 62.432, + "total_deaths_per_million": 270.988, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 1.687 + }, + { + "date": "2020-08-13", + "total_cases": 40794.0, + "new_cases": 201.0, + "new_cases_smoothed": 172.571, + "total_deaths": 806.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 13766.716, + "new_cases_per_million": 67.831, + "new_cases_smoothed_per_million": 58.238, + "total_deaths_per_million": 272.0, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.736 + }, + { + "date": "2020-08-14", + "total_cases": 41023.0, + "new_cases": 229.0, + "new_cases_smoothed": 172.0, + "total_deaths": 809.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 13843.996, + "new_cases_per_million": 77.28, + "new_cases_smoothed_per_million": 58.045, + "total_deaths_per_million": 273.013, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.784 + }, + { + "date": "2020-08-15", + "total_cases": 41299.0, + "new_cases": 276.0, + "new_cases_smoothed": 202.0, + "total_deaths": 814.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 13937.138, + "new_cases_per_million": 93.141, + "new_cases_smoothed_per_million": 68.169, + "total_deaths_per_million": 274.7, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.784 + }, + { + "date": "2020-08-16", + "total_cases": 41495.0, + "new_cases": 196.0, + "new_cases_smoothed": 187.143, + "total_deaths": 817.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 14003.282, + "new_cases_per_million": 66.144, + "new_cases_smoothed_per_million": 63.155, + "total_deaths_per_million": 275.712, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.543 + }, + { + "date": "2020-08-17", + "total_cases": 41663.0, + "new_cases": 168.0, + "new_cases_smoothed": 179.0, + "total_deaths": 818.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 14059.976, + "new_cases_per_million": 56.695, + "new_cases_smoothed_per_million": 60.407, + "total_deaths_per_million": 276.05, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 1.302 + }, + { + "date": "2020-08-18", + "total_cases": 41701.0, + "new_cases": 38.0, + "new_cases_smoothed": 181.143, + "total_deaths": 824.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 14072.8, + "new_cases_per_million": 12.824, + "new_cases_smoothed_per_million": 61.13, + "total_deaths_per_million": 278.075, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 1.35 + }, + { + "date": "2020-08-19", + "total_cases": 41846.0, + "new_cases": 145.0, + "new_cases_smoothed": 179.0, + "total_deaths": 832.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 14121.733, + "new_cases_per_million": 48.933, + "new_cases_smoothed_per_million": 60.407, + "total_deaths_per_million": 280.774, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 1.398 + }, + { + "date": "2020-08-20", + "total_cases": 42056.0, + "new_cases": 210.0, + "new_cases_smoothed": 180.286, + "total_deaths": 833.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 14192.602, + "new_cases_per_million": 70.869, + "new_cases_smoothed_per_million": 60.841, + "total_deaths_per_million": 281.112, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 1.302 + }, + { + "date": "2020-08-21", + "total_cases": 42319.0, + "new_cases": 263.0, + "new_cases_smoothed": 185.143, + "total_deaths": 836.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 14281.356, + "new_cases_per_million": 88.754, + "new_cases_smoothed_per_million": 62.48, + "total_deaths_per_million": 282.124, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.302 + }, + { + "date": "2020-08-22", + "total_cases": 42477.0, + "new_cases": 158.0, + "new_cases_smoothed": 168.286, + "total_deaths": 842.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 14334.676, + "new_cases_per_million": 53.32, + "new_cases_smoothed_per_million": 56.791, + "total_deaths_per_million": 284.149, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 1.35 + }, + { + "date": "2020-08-23", + "total_cases": 42616.0, + "new_cases": 139.0, + "new_cases_smoothed": 160.143, + "total_deaths": 850.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 14381.584, + "new_cases_per_million": 46.908, + "new_cases_smoothed_per_million": 54.043, + "total_deaths_per_million": 286.849, + "new_deaths_per_million": 2.7, + "new_deaths_smoothed_per_million": 1.591 + }, + { + "date": "2020-08-24", + "total_cases": 42792.0, + "new_cases": 176.0, + "new_cases_smoothed": 161.286, + "total_deaths": 852.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 14440.979, + "new_cases_per_million": 59.395, + "new_cases_smoothed_per_million": 54.429, + "total_deaths_per_million": 287.524, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 1.639 + }, + { + "date": "2020-08-25", + "total_cases": 42825.0, + "new_cases": 33.0, + "new_cases_smoothed": 160.571, + "total_deaths": 854.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 14452.115, + "new_cases_per_million": 11.136, + "new_cases_smoothed_per_million": 54.188, + "total_deaths_per_million": 288.199, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 1.446 + }, + { + "date": "2020-08-26", + "total_cases": 42936.0, + "new_cases": 111.0, + "new_cases_smoothed": 155.714, + "total_deaths": 858.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 14489.575, + "new_cases_per_million": 37.459, + "new_cases_smoothed_per_million": 52.549, + "total_deaths_per_million": 289.549, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.253 + }, + { + "date": "2020-08-27", + "total_cases": 43067.0, + "new_cases": 131.0, + "new_cases_smoothed": 144.429, + "total_deaths": 861.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 14533.783, + "new_cases_per_million": 44.208, + "new_cases_smoothed_per_million": 48.74, + "total_deaths_per_million": 290.561, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.35 + }, + { + "date": "2020-08-28", + "total_cases": 43270.0, + "new_cases": 203.0, + "new_cases_smoothed": 135.857, + "total_deaths": 864.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 14602.289, + "new_cases_per_million": 68.506, + "new_cases_smoothed_per_million": 45.848, + "total_deaths_per_million": 291.573, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.35 + }, + { + "date": "2020-08-29", + "total_cases": 43451.0, + "new_cases": 181.0, + "new_cases_smoothed": 139.143, + "total_deaths": 869.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 14663.371, + "new_cases_per_million": 61.082, + "new_cases_smoothed_per_million": 46.956, + "total_deaths_per_million": 293.261, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.302 + }, + { + "date": "2020-08-30", + "total_cases": 43626.0, + "new_cases": 175.0, + "new_cases_smoothed": 144.286, + "total_deaths": 872.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 14722.428, + "new_cases_per_million": 59.057, + "new_cases_smoothed_per_million": 48.692, + "total_deaths_per_million": 294.273, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.061 + }, + { + "date": "2020-08-31", + "total_cases": 43750.0, + "new_cases": 124.0, + "new_cases_smoothed": 136.857, + "total_deaths": 877.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 14764.274, + "new_cases_per_million": 41.846, + "new_cases_smoothed_per_million": 46.185, + "total_deaths_per_million": 295.96, + "new_deaths_per_million": 1.687, + "new_deaths_smoothed_per_million": 1.205 + }, + { + "date": "2020-09-01", + "total_cases": 43781.0, + "new_cases": 31.0, + "new_cases_smoothed": 136.571, + "total_deaths": 879.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 14774.736, + "new_cases_per_million": 10.462, + "new_cases_smoothed_per_million": 46.089, + "total_deaths_per_million": 296.635, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 1.205 + }, + { + "date": "2020-09-02", + "total_cases": 43878.0, + "new_cases": 97.0, + "new_cases_smoothed": 134.571, + "total_deaths": 881.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 14807.47, + "new_cases_per_million": 32.735, + "new_cases_smoothed_per_million": 45.414, + "total_deaths_per_million": 297.31, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 1.109 + }, + { + "date": "2020-09-03", + "total_cases": 44075.0, + "new_cases": 197.0, + "new_cases_smoothed": 144.0, + "total_deaths": 884.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 14873.952, + "new_cases_per_million": 66.481, + "new_cases_smoothed_per_million": 48.596, + "total_deaths_per_million": 298.323, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.109 + }, + { + "date": "2020-09-04", + "total_cases": 44271.0, + "new_cases": 196.0, + "new_cases_smoothed": 143.0, + "total_deaths": 887.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 14940.096, + "new_cases_per_million": 66.144, + "new_cases_smoothed_per_million": 48.258, + "total_deaths_per_million": 299.335, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.109 + }, + { + "date": "2020-09-05", + "total_cases": 44461.0, + "new_cases": 190.0, + "new_cases_smoothed": 144.286, + "total_deaths": 891.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 15004.215, + "new_cases_per_million": 64.119, + "new_cases_smoothed_per_million": 48.692, + "total_deaths_per_million": 300.685, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.061 + } + ] + }, + "ABW": { + "continent": "North America", + "location": "Aruba", + "population": 106766.0, + "population_density": 584.8, + "median_age": 41.2, + "aged_65_older": 13.085, + "aged_70_older": 7.452, + "gdp_per_capita": 35973.781, + "diabetes_prevalence": 11.62, + "life_expectancy": 76.29, + "data": [ + { + "date": "2020-03-13", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.733, + "new_cases_per_million": 18.733, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-19", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 2.676, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-20", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.465, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-21", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 2.676, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-22", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 2.676, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-23", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 2.676, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-24", + "total_cases": 12.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 112.395, + "new_cases_per_million": 74.93, + "new_cases_smoothed_per_million": 13.38, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-25", + "total_cases": 17.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.227, + "new_cases_per_million": 46.831, + "new_cases_smoothed_per_million": 20.071, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-26", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 177.959, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 22.747, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-27", + "total_cases": 28.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.256, + "new_cases_per_million": 84.296, + "new_cases_smoothed_per_million": 32.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-28", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-29", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-30", + "total_cases": 50.0, + "new_cases": 22.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.314, + "new_cases_per_million": 206.058, + "new_cases_smoothed_per_million": 61.55, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-31", + "new_cases_smoothed": 5.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 50.846, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 55.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.145, + "new_cases_per_million": 46.831, + "new_cases_smoothed_per_million": 50.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 60.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 561.977, + "new_cases_per_million": 46.831, + "new_cases_smoothed_per_million": 42.817, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 62.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 580.709, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 45.493, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 64.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 599.442, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 48.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 599.442, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.733, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 71.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 665.006, + "new_cases_per_million": 65.564, + "new_cases_smoothed_per_million": 28.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 74.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 693.105, + "new_cases_per_million": 28.099, + "new_cases_smoothed_per_million": 25.423, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 77.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 721.203, + "new_cases_per_million": 28.099, + "new_cases_smoothed_per_million": 29.437, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 82.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 768.035, + "new_cases_per_million": 46.831, + "new_cases_smoothed_per_million": 29.437, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 86.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 805.5, + "new_cases_per_million": 37.465, + "new_cases_smoothed_per_million": 32.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-12", + "total_cases": 92.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 861.698, + "new_cases_per_million": 56.198, + "new_cases_smoothed_per_million": 37.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 861.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 861.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-15", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 861.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-16", + "total_cases": 93.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 871.064, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 21.409, + "total_deaths_per_million": 9.366, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 85.19 + }, + { + "date": "2020-04-17", + "total_cases": 95.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 889.796, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 17.395, + "total_deaths_per_million": 9.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 85.19 + }, + { + "date": "2020-04-18", + "total_cases": 96.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 899.163, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 13.38, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 85.19 + }, + { + "date": "2020-04-19", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 899.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 85.19 + }, + { + "date": "2020-04-20", + "total_cases": 97.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 908.529, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 6.69, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 85.19 + }, + { + "date": "2020-04-21", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 908.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.69, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 908.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.69, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 100.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 936.628, + "new_cases_per_million": 28.099, + "new_cases_smoothed_per_million": 9.366, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.69, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-28", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-29", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-30", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-01", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-02", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-03", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-04", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-05", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-06", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-07", + "total_cases": 101.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 18.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-08", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-09", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-10", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-11", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-12", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-13", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-14", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 81.48 + }, + { + "date": "2020-05-15", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-16", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-17", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-18", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-19", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-20", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-21", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-22", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-23", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-24", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-25", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-26", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-27", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-28", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-05-29", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-05-30", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-05-31", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-01", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-02", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-03", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-04", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-05", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-06", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-07", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-08", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-09", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-10", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-11", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-12", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-13", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-14", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-15", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-16", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-17", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-18", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-19", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-20", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-21", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-22", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-23", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-24", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-25", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-26", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-27", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-28", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-29", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 945.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-30", + "total_cases": 103.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 964.727, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-01", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 964.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-02", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 964.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-03", + "total_cases": 104.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 974.093, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-04", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 974.093, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-05", + "total_cases": 105.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-06", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-07", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-08", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-09", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-10", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-11", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-12", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-13", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-14", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-15", + "total_cases": 106.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.825, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-16", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.825, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-17", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1011.558, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-18", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1011.558, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-19", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1011.558, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-20", + "total_cases": 113.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1058.389, + "new_cases_per_million": 46.831, + "new_cases_smoothed_per_million": 10.704, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-21", + "total_cases": 115.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1077.122, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 13.38, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-22", + "total_cases": 117.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1095.854, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 14.718, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-23", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1095.854, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.718, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-24", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1095.854, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.042, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-25", + "total_cases": 118.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1105.221, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 13.38, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-26", + "total_cases": 119.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1114.587, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 14.718, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-27", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1114.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.028, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-28", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1114.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-29", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1114.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-30", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1114.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-31", + "total_cases": 120.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1123.953, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-01", + "total_cases": 121.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1133.32, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-02", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1133.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-03", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1142.686, + "new_cases_per_million": 9.366, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-04", + "total_cases": 124.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1161.418, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 6.69, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-05", + "total_cases": 132.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.349, + "new_cases_per_million": 74.93, + "new_cases_smoothed_per_million": 17.395, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-06", + "total_cases": 171.0, + "new_cases": 39.0, + "new_cases_smoothed": 7.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1601.633, + "new_cases_per_million": 365.285, + "new_cases_smoothed_per_million": 69.578, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-07", + "total_cases": 263.0, + "new_cases": 92.0, + "new_cases_smoothed": 20.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2463.331, + "new_cases_per_million": 861.698, + "new_cases_smoothed_per_million": 191.34, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-08", + "total_cases": 396.0, + "new_cases": 133.0, + "new_cases_smoothed": 39.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3709.046, + "new_cases_per_million": 1245.715, + "new_cases_smoothed_per_million": 367.961, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-09", + "total_cases": 509.0, + "new_cases": 113.0, + "new_cases_smoothed": 55.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4767.435, + "new_cases_per_million": 1058.389, + "new_cases_smoothed_per_million": 519.159, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-10", + "total_cases": 563.0, + "new_cases": 54.0, + "new_cases_smoothed": 63.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5273.214, + "new_cases_per_million": 505.779, + "new_cases_smoothed_per_million": 590.075, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-11", + "total_cases": 630.0, + "new_cases": 67.0, + "new_cases_smoothed": 72.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5900.755, + "new_cases_per_million": 627.541, + "new_cases_smoothed_per_million": 677.048, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-12", + "total_cases": 717.0, + "new_cases": 87.0, + "new_cases_smoothed": 83.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6715.621, + "new_cases_per_million": 814.866, + "new_cases_smoothed_per_million": 782.753, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-13", + "total_cases": 798.0, + "new_cases": 81.0, + "new_cases_smoothed": 89.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7474.29, + "new_cases_per_million": 758.668, + "new_cases_smoothed_per_million": 838.951, + "total_deaths_per_million": 28.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-14", + "total_cases": 894.0, + "new_cases": 96.0, + "new_cases_smoothed": 90.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8373.452, + "new_cases_per_million": 899.163, + "new_cases_smoothed_per_million": 844.303, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 47.22 + }, + { + "date": "2020-08-15", + "total_cases": 973.0, + "new_cases": 79.0, + "new_cases_smoothed": 82.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9113.388, + "new_cases_per_million": 739.936, + "new_cases_smoothed_per_million": 772.049, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 47.22 + }, + { + "date": "2020-08-16", + "total_cases": 1048.0, + "new_cases": 75.0, + "new_cases_smoothed": 77.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9815.859, + "new_cases_per_million": 702.471, + "new_cases_smoothed_per_million": 721.203, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 47.22 + }, + { + "date": "2020-08-17", + "total_cases": 1102.0, + "new_cases": 54.0, + "new_cases_smoothed": 77.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10321.638, + "new_cases_per_million": 505.779, + "new_cases_smoothed_per_million": 721.203, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 47.22 + }, + { + "date": "2020-08-18", + "total_cases": 1121.0, + "new_cases": 19.0, + "new_cases_smoothed": 70.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10499.597, + "new_cases_per_million": 177.959, + "new_cases_smoothed_per_million": 656.977, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 58.33 + }, + { + "date": "2020-08-19", + "total_cases": 1121.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10499.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 540.568, + "total_deaths_per_million": 37.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.338, + "stringency_index": 58.33 + }, + { + "date": "2020-08-20", + "total_cases": 1296.0, + "new_cases": 175.0, + "new_cases_smoothed": 71.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12138.696, + "new_cases_per_million": 1639.099, + "new_cases_smoothed_per_million": 666.344, + "total_deaths_per_million": 46.831, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 58.33 + }, + { + "date": "2020-08-21", + "total_cases": 1387.0, + "new_cases": 91.0, + "new_cases_smoothed": 70.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12991.027, + "new_cases_per_million": 852.331, + "new_cases_smoothed_per_million": 659.654, + "total_deaths_per_million": 56.198, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 58.33 + }, + { + "date": "2020-08-22", + "total_cases": 1464.0, + "new_cases": 77.0, + "new_cases_smoothed": 70.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13712.23, + "new_cases_per_million": 721.203, + "new_cases_smoothed_per_million": 656.977, + "total_deaths_per_million": 56.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676, + "stringency_index": 58.33 + }, + { + "date": "2020-08-23", + "total_cases": 1534.0, + "new_cases": 70.0, + "new_cases_smoothed": 69.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14367.87, + "new_cases_per_million": 655.639, + "new_cases_smoothed_per_million": 650.287, + "total_deaths_per_million": 65.564, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 4.014, + "stringency_index": 58.33 + }, + { + "date": "2020-08-24", + "total_cases": 1568.0, + "new_cases": 34.0, + "new_cases_smoothed": 66.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14686.323, + "new_cases_per_million": 318.453, + "new_cases_smoothed_per_million": 623.526, + "total_deaths_per_million": 65.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.014, + "stringency_index": 58.33 + }, + { + "date": "2020-08-25", + "total_cases": 1628.0, + "new_cases": 60.0, + "new_cases_smoothed": 72.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15248.3, + "new_cases_per_million": 561.977, + "new_cases_smoothed_per_million": 678.386, + "total_deaths_per_million": 65.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.014, + "stringency_index": 58.33 + }, + { + "date": "2020-08-26", + "total_cases": 1670.0, + "new_cases": 42.0, + "new_cases_smoothed": 78.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 15641.684, + "new_cases_per_million": 393.384, + "new_cases_smoothed_per_million": 734.584, + "total_deaths_per_million": 74.93, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 5.352, + "stringency_index": 62.04 + }, + { + "date": "2020-08-27", + "total_cases": 1760.0, + "new_cases": 90.0, + "new_cases_smoothed": 66.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 16484.649, + "new_cases_per_million": 842.965, + "new_cases_smoothed_per_million": 620.85, + "total_deaths_per_million": 74.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.014, + "stringency_index": 62.04 + }, + { + "date": "2020-08-28", + "total_cases": 1848.0, + "new_cases": 88.0, + "new_cases_smoothed": 65.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17308.881, + "new_cases_per_million": 824.232, + "new_cases_smoothed_per_million": 616.836, + "total_deaths_per_million": 74.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676 + }, + { + "date": "2020-08-29", + "total_cases": 1906.0, + "new_cases": 58.0, + "new_cases_smoothed": 63.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17852.125, + "new_cases_per_million": 543.244, + "new_cases_smoothed_per_million": 591.414, + "total_deaths_per_million": 84.296, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 4.014 + }, + { + "date": "2020-08-30", + "total_cases": 1975.0, + "new_cases": 69.0, + "new_cases_smoothed": 63.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18498.398, + "new_cases_per_million": 646.273, + "new_cases_smoothed_per_million": 590.075, + "total_deaths_per_million": 93.663, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 4.014 + }, + { + "date": "2020-08-31", + "total_cases": 1997.0, + "new_cases": 22.0, + "new_cases_smoothed": 61.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18704.456, + "new_cases_per_million": 206.058, + "new_cases_smoothed_per_million": 574.019, + "total_deaths_per_million": 93.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.014 + }, + { + "date": "2020-09-01", + "total_cases": 2006.0, + "new_cases": 9.0, + "new_cases_smoothed": 54.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18788.753, + "new_cases_per_million": 84.296, + "new_cases_smoothed_per_million": 505.779, + "total_deaths_per_million": 93.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.014 + }, + { + "date": "2020-09-02", + "total_cases": 2104.0, + "new_cases": 98.0, + "new_cases_smoothed": 62.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19706.648, + "new_cases_per_million": 917.895, + "new_cases_smoothed_per_million": 580.709, + "total_deaths_per_million": 93.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.676 + }, + { + "date": "2020-09-03", + "total_cases": 2211.0, + "new_cases": 107.0, + "new_cases_smoothed": 64.429, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 20708.84, + "new_cases_per_million": 1002.192, + "new_cases_smoothed_per_million": 603.456, + "total_deaths_per_million": 112.395, + "new_deaths_per_million": 18.733, + "new_deaths_smoothed_per_million": 5.352 + }, + { + "date": "2020-09-04", + "total_cases": 2292.0, + "new_cases": 81.0, + "new_cases_smoothed": 63.429, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21467.508, + "new_cases_per_million": 758.668, + "new_cases_smoothed_per_million": 594.09, + "total_deaths_per_million": 121.762, + "new_deaths_per_million": 9.366, + "new_deaths_smoothed_per_million": 6.69 + }, + { + "date": "2020-09-05", + "total_cases": 2358.0, + "new_cases": 66.0, + "new_cases_smoothed": 64.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 22085.683, + "new_cases_per_million": 618.174, + "new_cases_smoothed_per_million": 604.794, + "total_deaths_per_million": 121.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.352 + } + ] + }, + "AUS": { + "continent": "Oceania", + "location": "Australia", + "population": 25499881.0, + "population_density": 3.202, + "median_age": 37.9, + "aged_65_older": 15.504, + "aged_70_older": 10.129, + "gdp_per_capita": 44648.71, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 107.791, + "diabetes_prevalence": 5.07, + "female_smokers": 13.0, + "male_smokers": 16.5, + "hospital_beds_per_thousand": 3.84, + "life_expectancy": 83.44, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-26", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.235, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.275, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.353, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.431, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.51, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.667, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 21.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.824, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.863, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.902, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.98, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.02, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 29.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.137, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "total_cases": 33.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.294, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 41.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.608, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 52.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.039, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.078, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 59.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.314, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "total_cases": 63.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.471, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.213, + "total_deaths_per_million": 0.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "total_cases": 74.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.902, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "total_cases": 80.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.137, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.286, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 100.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.922, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "total_cases": 112.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.392, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.398, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_cases": 126.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.941, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "total_cases": 156.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.118, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 0.543, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-14", + "total_cases": 197.0, + "new_cases": 41.0, + "new_cases_smoothed": 19.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.726, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 19.44 + }, + { + "date": "2020-03-15", + "total_cases": 249.0, + "new_cases": 52.0, + "new_cases_smoothed": 25.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.765, + "new_cases_per_million": 2.039, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "total_cases": 298.0, + "new_cases": 49.0, + "new_cases_smoothed": 31.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11.686, + "new_cases_per_million": 1.922, + "new_cases_smoothed_per_million": 1.221, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 30.56 + }, + { + "date": "2020-03-17", + "total_cases": 375.0, + "new_cases": 77.0, + "new_cases_smoothed": 39.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.706, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 1.541, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 30.56 + }, + { + "date": "2020-03-18", + "total_cases": 454.0, + "new_cases": 79.0, + "new_cases_smoothed": 48.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.804, + "new_cases_per_million": 3.098, + "new_cases_smoothed_per_million": 1.916, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 36.11 + }, + { + "date": "2020-03-19", + "total_cases": 565.0, + "new_cases": 111.0, + "new_cases_smoothed": 62.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.157, + "new_cases_per_million": 4.353, + "new_cases_smoothed_per_million": 2.459, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 44.44 + }, + { + "date": "2020-03-20", + "total_cases": 709.0, + "new_cases": 144.0, + "new_cases_smoothed": 79.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 27.804, + "new_cases_per_million": 5.647, + "new_cases_smoothed_per_million": 3.098, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 47.22 + }, + { + "date": "2020-03-21", + "total_cases": 874.0, + "new_cases": 165.0, + "new_cases_smoothed": 96.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 34.275, + "new_cases_per_million": 6.471, + "new_cases_smoothed_per_million": 3.793, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 47.22 + }, + { + "date": "2020-03-22", + "total_cases": 1098.0, + "new_cases": 224.0, + "new_cases_smoothed": 121.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 43.059, + "new_cases_per_million": 8.784, + "new_cases_smoothed_per_million": 4.756, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "total_tests": 143056.0, + "total_tests_per_thousand": 5.61, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-23", + "total_cases": 1709.0, + "new_cases": 611.0, + "new_cases_smoothed": 201.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 67.02, + "new_cases_per_million": 23.961, + "new_cases_smoothed_per_million": 7.905, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-24", + "total_cases": 1823.0, + "new_cases": 114.0, + "new_cases_smoothed": 206.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 71.491, + "new_cases_per_million": 4.471, + "new_cases_smoothed_per_million": 8.112, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-25", + "total_cases": 2423.0, + "new_cases": 600.0, + "new_cases_smoothed": 281.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 95.02, + "new_cases_per_million": 23.53, + "new_cases_smoothed_per_million": 11.031, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-26", + "total_cases": 2799.0, + "new_cases": 376.0, + "new_cases_smoothed": 319.143, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 109.765, + "new_cases_per_million": 14.745, + "new_cases_smoothed_per_million": 12.515, + "total_deaths_per_million": 0.431, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.028, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-27", + "total_cases": 3166.0, + "new_cases": 367.0, + "new_cases_smoothed": 351.0, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 124.157, + "new_cases_per_million": 14.392, + "new_cases_smoothed_per_million": 13.765, + "total_deaths_per_million": 0.51, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.039, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-28", + "total_cases": 3378.0, + "new_cases": 212.0, + "new_cases_smoothed": 357.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 132.471, + "new_cases_per_million": 8.314, + "new_cases_smoothed_per_million": 14.028, + "total_deaths_per_million": 0.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-29", + "total_cases": 3809.0, + "new_cases": 431.0, + "new_cases_smoothed": 387.286, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 149.373, + "new_cases_per_million": 16.902, + "new_cases_smoothed_per_million": 15.188, + "total_deaths_per_million": 0.549, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.039, + "total_tests": 211261.0, + "total_tests_per_thousand": 8.285, + "new_tests_smoothed": 9744.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 25.16, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-03-30", + "total_cases": 4093.0, + "new_cases": 284.0, + "new_cases_smoothed": 340.571, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 160.511, + "new_cases_per_million": 11.137, + "new_cases_smoothed_per_million": 13.356, + "total_deaths_per_million": 0.627, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.05, + "new_tests_smoothed": 10105.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 29.671, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-03-31", + "total_cases": 4557.0, + "new_cases": 464.0, + "new_cases_smoothed": 390.571, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 178.707, + "new_cases_per_million": 18.196, + "new_cases_smoothed_per_million": 15.317, + "total_deaths_per_million": 0.745, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 10466.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 26.796999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-01", + "total_cases": 4707.0, + "new_cases": 150.0, + "new_cases_smoothed": 326.286, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 184.589, + "new_cases_per_million": 5.882, + "new_cases_smoothed_per_million": 12.796, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 10827.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 33.183, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-02", + "total_cases": 4976.0, + "new_cases": 269.0, + "new_cases_smoothed": 311.0, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 195.138, + "new_cases_per_million": 10.549, + "new_cases_smoothed_per_million": 12.196, + "total_deaths_per_million": 0.824, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.056, + "new_tests_smoothed": 11187.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 35.971, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 5224.0, + "new_cases": 248.0, + "new_cases_smoothed": 294.0, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 204.864, + "new_cases_per_million": 9.726, + "new_cases_smoothed_per_million": 11.529, + "total_deaths_per_million": 0.902, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.056, + "new_tests_smoothed": 11548.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 39.279, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-04", + "total_cases": 5548.0, + "new_cases": 324.0, + "new_cases_smoothed": 310.0, + "total_deaths": 30.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 217.57, + "new_cases_per_million": 12.706, + "new_cases_smoothed_per_million": 12.157, + "total_deaths_per_million": 1.176, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.095, + "new_tests_smoothed": 11909.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 38.416, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-05", + "total_cases": 5687.0, + "new_cases": 139.0, + "new_cases_smoothed": 268.286, + "total_deaths": 34.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 223.021, + "new_cases_per_million": 5.451, + "new_cases_smoothed_per_million": 10.521, + "total_deaths_per_million": 1.333, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.112, + "total_tests": 297154.0, + "total_tests_per_thousand": 11.653, + "new_tests_smoothed": 12270.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 45.735, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-06", + "total_cases": 5744.0, + "new_cases": 57.0, + "new_cases_smoothed": 235.857, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 225.256, + "new_cases_per_million": 2.235, + "new_cases_smoothed_per_million": 9.249, + "total_deaths_per_million": 1.412, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 5509.0, + "total_tests": 302663.0, + "total_tests_per_thousand": 11.869, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 11305.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 47.931999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 5844.0, + "new_cases": 100.0, + "new_cases_smoothed": 183.857, + "total_deaths": 42.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 229.178, + "new_cases_per_million": 3.922, + "new_cases_smoothed_per_million": 7.21, + "total_deaths_per_million": 1.647, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 8037.0, + "total_tests": 310700.0, + "total_tests_per_thousand": 12.184, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 10700.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 58.196999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 5956.0, + "new_cases": 112.0, + "new_cases_smoothed": 178.429, + "total_deaths": 45.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 233.57, + "new_cases_per_million": 4.392, + "new_cases_smoothed_per_million": 6.997, + "total_deaths_per_million": 1.765, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 8668.0, + "total_tests": 319368.0, + "total_tests_per_thousand": 12.524, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 10185.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 57.082, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 6052.0, + "new_cases": 96.0, + "new_cases_smoothed": 153.714, + "total_deaths": 50.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 237.334, + "new_cases_per_million": 3.765, + "new_cases_smoothed_per_million": 6.028, + "total_deaths_per_million": 1.961, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 10766.0, + "total_tests": 330134.0, + "total_tests_per_thousand": 12.946, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 9970.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 64.861, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 6152.0, + "new_cases": 100.0, + "new_cases_smoothed": 132.571, + "total_deaths": 52.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 241.256, + "new_cases_per_million": 3.922, + "new_cases_smoothed_per_million": 5.199, + "total_deaths_per_million": 2.039, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 8212.0, + "total_tests": 338346.0, + "total_tests_per_thousand": 13.269, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 9390.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 70.83, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 6238.0, + "new_cases": 86.0, + "new_cases_smoothed": 98.571, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 244.629, + "new_cases_per_million": 3.373, + "new_cases_smoothed_per_million": 3.866, + "total_deaths_per_million": 2.118, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.134, + "new_tests": 9501.0, + "total_tests": 347847.0, + "total_tests_per_thousand": 13.641, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 8995.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 91.25399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 6289.0, + "new_cases": 51.0, + "new_cases_smoothed": 86.0, + "total_deaths": 57.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 246.629, + "new_cases_per_million": 2.0, + "new_cases_smoothed_per_million": 3.373, + "total_deaths_per_million": 2.235, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 6094.0, + "total_tests": 353941.0, + "total_tests_per_thousand": 13.88, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 8112.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 94.32600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 6322.0, + "new_cases": 33.0, + "new_cases_smoothed": 82.571, + "total_deaths": 61.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 247.923, + "new_cases_per_million": 1.294, + "new_cases_smoothed_per_million": 3.238, + "total_deaths_per_million": 2.392, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 8195.0, + "total_tests": 362136.0, + "total_tests_per_thousand": 14.201, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 8496.0, + "new_tests_smoothed_per_thousand": 0.333, + "tests_per_case": 102.89299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 6366.0, + "new_cases": 44.0, + "new_cases_smoothed": 74.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 249.648, + "new_cases_per_million": 1.725, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 2.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 4357.0, + "total_tests": 366493.0, + "total_tests_per_thousand": 14.372, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 7970.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 106.87700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 6416.0, + "new_cases": 50.0, + "new_cases_smoothed": 65.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 251.609, + "new_cases_per_million": 1.961, + "new_cases_smoothed_per_million": 2.577, + "total_deaths_per_million": 2.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.09, + "new_tests": 4884.0, + "total_tests": 371377.0, + "total_tests_per_thousand": 14.564, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 7430.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 113.065, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 6458.0, + "new_cases": 42.0, + "new_cases_smoothed": 58.0, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 253.256, + "new_cases_per_million": 1.647, + "new_cases_smoothed_per_million": 2.275, + "total_deaths_per_million": 2.471, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 8626.0, + "total_tests": 380003.0, + "total_tests_per_thousand": 14.902, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 7124.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 122.82799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 6497.0, + "new_cases": 39.0, + "new_cases_smoothed": 49.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 254.786, + "new_cases_per_million": 1.529, + "new_cases_smoothed_per_million": 1.933, + "total_deaths_per_million": 2.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 11527.0, + "total_tests": 391530.0, + "total_tests_per_thousand": 15.354, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 7598.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 154.162, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 6533.0, + "new_cases": 36.0, + "new_cases_smoothed": 42.143, + "total_deaths": 67.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 256.197, + "new_cases_per_million": 1.412, + "new_cases_smoothed_per_million": 1.653, + "total_deaths_per_million": 2.627, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 14980.0, + "total_tests": 406510.0, + "total_tests_per_thousand": 15.942, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 8380.0, + "new_tests_smoothed_per_thousand": 0.329, + "tests_per_case": 198.847, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-19", + "total_cases": 6586.0, + "new_cases": 53.0, + "new_cases_smoothed": 42.429, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 258.276, + "new_cases_per_million": 2.078, + "new_cases_smoothed_per_million": 1.664, + "total_deaths_per_million": 2.706, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 14486.0, + "total_tests": 420996.0, + "total_tests_per_thousand": 16.51, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 9579.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 225.768, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-20", + "total_cases": 6612.0, + "new_cases": 26.0, + "new_cases_smoothed": 41.429, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 259.295, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 1.625, + "total_deaths_per_million": 2.745, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 10738.0, + "total_tests": 431734.0, + "total_tests_per_thousand": 16.931, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 9943.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 240.003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-21", + "total_cases": 6625.0, + "new_cases": 13.0, + "new_cases_smoothed": 37.0, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 259.805, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 1.451, + "total_deaths_per_million": 2.784, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 8108.0, + "total_tests": 439842.0, + "total_tests_per_thousand": 17.249, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 10478.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 283.189, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-22", + "total_cases": 6647.0, + "new_cases": 22.0, + "new_cases_smoothed": 33.0, + "total_deaths": 74.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 260.668, + "new_cases_per_million": 0.863, + "new_cases_smoothed_per_million": 1.294, + "total_deaths_per_million": 2.902, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 12599.0, + "total_tests": 452441.0, + "total_tests_per_thousand": 17.743, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 11581.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 350.939, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-23", + "total_cases": 6654.0, + "new_cases": 7.0, + "new_cases_smoothed": 28.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 260.942, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 1.098, + "total_deaths_per_million": 2.902, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 14218.0, + "total_tests": 466659.0, + "total_tests_per_thousand": 18.3, + "new_tests_per_thousand": 0.558, + "new_tests_smoothed": 12379.0, + "new_tests_smoothed_per_thousand": 0.485, + "tests_per_case": 442.10699999999997, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-24", + "total_cases": 6667.0, + "new_cases": 13.0, + "new_cases_smoothed": 24.286, + "total_deaths": 75.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 261.452, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 0.952, + "total_deaths_per_million": 2.941, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 15711.0, + "total_tests": 482370.0, + "total_tests_per_thousand": 18.917, + "new_tests_per_thousand": 0.616, + "new_tests_smoothed": 12977.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 534.347, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-25", + "total_cases": 6687.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.0, + "total_deaths": 79.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 262.237, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 3.098, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 11887.0, + "total_tests": 494257.0, + "total_tests_per_thousand": 19.383, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 12535.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 569.773, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-26", + "total_cases": 6703.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.714, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 262.864, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.655, + "total_deaths_per_million": 3.176, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 12192.0, + "total_tests": 506449.0, + "total_tests_per_thousand": 19.861, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 12208.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 730.393, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-27", + "total_cases": 6713.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 83.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 263.256, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.566, + "total_deaths_per_million": 3.255, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 10614.0, + "total_tests": 517063.0, + "total_tests_per_thousand": 20.277, + "new_tests_per_thousand": 0.416, + "new_tests_smoothed": 12190.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 844.8510000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-28", + "total_cases": 6725.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.286, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 263.727, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 3.294, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 13616.0, + "total_tests": 530679.0, + "total_tests_per_thousand": 20.811, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 12977.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 908.39, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-29", + "total_cases": 6738.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.0, + "total_deaths": 88.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 264.237, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 3.451, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 13731.0, + "total_tests": 544410.0, + "total_tests_per_thousand": 21.35, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 13138.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 1010.615, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-30", + "total_cases": 6746.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.143, + "total_deaths": 90.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 264.55, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 0.515, + "total_deaths_per_million": 3.529, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.09, + "new_tests": 19231.0, + "total_tests": 563641.0, + "total_tests_per_thousand": 22.104, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 13855.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 1054.185, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-01", + "total_cases": 6762.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.571, + "total_deaths": 92.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 265.178, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 3.608, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 25227.0, + "total_tests": 588868.0, + "total_tests_per_thousand": 23.093, + "new_tests_per_thousand": 0.989, + "new_tests_smoothed": 15214.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 1121.032, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-02", + "total_cases": 6767.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.429, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 265.374, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 3.647, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 22715.0, + "total_tests": 611583.0, + "total_tests_per_thousand": 23.984, + "new_tests_per_thousand": 0.891, + "new_tests_smoothed": 16761.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 1466.5870000000002, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-03", + "total_cases": 6783.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 266.001, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 3.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 21524.0, + "total_tests": 633107.0, + "total_tests_per_thousand": 24.828, + "new_tests_per_thousand": 0.844, + "new_tests_smoothed": 18094.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 1583.225, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-04", + "total_cases": 6801.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 266.707, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 3.726, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 17107.0, + "total_tests": 650214.0, + "total_tests_per_thousand": 25.499, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 19022.0, + "new_tests_smoothed_per_thousand": 0.746, + "tests_per_case": 1513.114, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-05", + "total_cases": 6825.0, + "new_cases": 24.0, + "new_cases_smoothed": 14.286, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 267.648, + "new_cases_per_million": 0.941, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 3.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 14542.0, + "total_tests": 664756.0, + "total_tests_per_thousand": 26.069, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 19154.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 1340.78, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-06", + "total_cases": 6849.0, + "new_cases": 24.0, + "new_cases_smoothed": 15.857, + "total_deaths": 96.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 268.589, + "new_cases_per_million": 0.941, + "new_cases_smoothed_per_million": 0.622, + "total_deaths_per_million": 3.765, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 23900.0, + "total_tests": 688656.0, + "total_tests_per_thousand": 27.006, + "new_tests_per_thousand": 0.937, + "new_tests_smoothed": 20607.0, + "new_tests_smoothed_per_thousand": 0.808, + "tests_per_case": 1299.5410000000002, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-07", + "total_cases": 6875.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.429, + "total_deaths": 97.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 269.609, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 0.723, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 33893.0, + "total_tests": 722549.0, + "total_tests_per_thousand": 28.335, + "new_tests_per_thousand": 1.329, + "new_tests_smoothed": 22701.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 1231.837, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-08", + "total_cases": 6896.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.143, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 270.433, + "new_cases_per_million": 0.824, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 34701.0, + "total_tests": 757250.0, + "total_tests_per_thousand": 29.696, + "new_tests_per_thousand": 1.361, + "new_tests_smoothed": 24055.0, + "new_tests_smoothed_per_thousand": 0.943, + "tests_per_case": 1256.604, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-09", + "total_cases": 6914.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.0, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 271.139, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.824, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 38206.0, + "total_tests": 795456.0, + "total_tests_per_thousand": 31.194, + "new_tests_per_thousand": 1.498, + "new_tests_smoothed": 26268.0, + "new_tests_smoothed_per_thousand": 1.03, + "tests_per_case": 1250.857, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-10", + "total_cases": 6929.0, + "new_cases": 15.0, + "new_cases_smoothed": 20.857, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 271.727, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.818, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 32416.0, + "total_tests": 827872.0, + "total_tests_per_thousand": 32.466, + "new_tests_per_thousand": 1.271, + "new_tests_smoothed": 27824.0, + "new_tests_smoothed_per_thousand": 1.091, + "tests_per_case": 1334.027, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-11", + "total_cases": 6941.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.0, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 272.197, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 27247.0, + "total_tests": 855119.0, + "total_tests_per_thousand": 33.534, + "new_tests_per_thousand": 1.069, + "new_tests_smoothed": 29272.0, + "new_tests_smoothed_per_thousand": 1.148, + "tests_per_case": 1463.6, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-12", + "total_cases": 6948.0, + "new_cases": 7.0, + "new_cases_smoothed": 17.571, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 272.472, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 0.689, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 22808.0, + "total_tests": 877927.0, + "total_tests_per_thousand": 34.429, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 30453.0, + "new_tests_smoothed_per_thousand": 1.194, + "tests_per_case": 1733.098, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-13", + "total_cases": 6964.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.429, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.099, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 3.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 31098.0, + "total_tests": 909025.0, + "total_tests_per_thousand": 35.648, + "new_tests_per_thousand": 1.22, + "new_tests_smoothed": 31481.0, + "new_tests_smoothed_per_thousand": 1.235, + "tests_per_case": 1916.235, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-14", + "total_cases": 6975.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.286, + "total_deaths": 98.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.531, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 3.843, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 34455.0, + "total_tests": 943480.0, + "total_tests_per_thousand": 36.999, + "new_tests_per_thousand": 1.351, + "new_tests_smoothed": 31562.0, + "new_tests_smoothed_per_thousand": 1.238, + "tests_per_case": 2209.34, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-15", + "total_cases": 6989.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.286, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.08, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 3.843, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 40336.0, + "total_tests": 983816.0, + "total_tests_per_thousand": 38.581, + "new_tests_per_thousand": 1.582, + "new_tests_smoothed": 32367.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 2436.226, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-16", + "total_cases": 7019.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.0, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.256, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 3.843, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 31836.0, + "total_tests": 1015652.0, + "total_tests_per_thousand": 39.83, + "new_tests_per_thousand": 1.248, + "new_tests_smoothed": 31457.0, + "new_tests_smoothed_per_thousand": 1.234, + "tests_per_case": 2097.133, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-17", + "total_cases": 7036.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.286, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.923, + "new_cases_per_million": 0.667, + "new_cases_smoothed_per_million": 0.599, + "total_deaths_per_million": 3.843, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 26474.0, + "total_tests": 1042126.0, + "total_tests_per_thousand": 40.868, + "new_tests_per_thousand": 1.038, + "new_tests_smoothed": 30608.0, + "new_tests_smoothed_per_thousand": 1.2, + "tests_per_case": 2002.3929999999998, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-18", + "total_cases": 7045.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.857, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 276.276, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.583, + "total_deaths_per_million": 3.843, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 19908.0, + "total_tests": 1062034.0, + "total_tests_per_thousand": 41.649, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 29559.0, + "new_tests_smoothed_per_thousand": 1.159, + "tests_per_case": 1989.5479999999998, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-19", + "total_cases": 7060.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.0, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 276.864, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 3.882, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 23836.0, + "total_tests": 1085870.0, + "total_tests_per_thousand": 42.583, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 29706.0, + "new_tests_smoothed_per_thousand": 1.165, + "tests_per_case": 1856.625, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-20", + "total_cases": 7068.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.857, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.178, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 0.583, + "total_deaths_per_million": 3.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 25697.0, + "total_tests": 1111567.0, + "total_tests_per_thousand": 43.591, + "new_tests_per_thousand": 1.008, + "new_tests_smoothed": 28935.0, + "new_tests_smoothed_per_thousand": 1.135, + "tests_per_case": 1947.5479999999998, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-21", + "total_cases": 7079.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.857, + "total_deaths": 100.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.609, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.583, + "total_deaths_per_million": 3.922, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 26117.0, + "total_tests": 1137684.0, + "total_tests_per_thousand": 44.615, + "new_tests_per_thousand": 1.024, + "new_tests_smoothed": 27743.0, + "new_tests_smoothed_per_thousand": 1.088, + "tests_per_case": 1867.317, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-22", + "total_cases": 7081.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.143, + "total_deaths": 100.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.688, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.515, + "total_deaths_per_million": 3.922, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 32998.0, + "total_tests": 1170682.0, + "total_tests_per_thousand": 45.909, + "new_tests_per_thousand": 1.294, + "new_tests_smoothed": 26695.0, + "new_tests_smoothed_per_thousand": 1.047, + "tests_per_case": 2031.141, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-23", + "total_cases": 7095.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 101.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 278.237, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 3.961, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 21580.0, + "total_tests": 1192262.0, + "total_tests_per_thousand": 46.756, + "new_tests_per_thousand": 0.846, + "new_tests_smoothed": 25230.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 2323.8160000000003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-24", + "total_cases": 7106.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.0, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 278.668, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 32533.0, + "total_tests": 1224795.0, + "total_tests_per_thousand": 48.031, + "new_tests_per_thousand": 1.276, + "new_tests_smoothed": 26096.0, + "new_tests_smoothed_per_thousand": 1.023, + "tests_per_case": 2609.6, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-05-25", + "total_cases": 7109.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 278.786, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 19405.0, + "total_tests": 1244200.0, + "total_tests_per_thousand": 48.792, + "new_tests_per_thousand": 0.761, + "new_tests_smoothed": 26024.0, + "new_tests_smoothed_per_thousand": 1.021, + "tests_per_case": 2846.375, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 65.28 + }, + { + "date": "2020-05-26", + "total_cases": 7118.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.139, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 44023.0, + "total_tests": 1288223.0, + "total_tests_per_thousand": 50.519, + "new_tests_per_thousand": 1.726, + "new_tests_smoothed": 28908.0, + "new_tests_smoothed_per_thousand": 1.134, + "tests_per_case": 3488.897, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 65.28 + }, + { + "date": "2020-05-27", + "total_cases": 7133.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.727, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 50098.0, + "total_tests": 1338321.0, + "total_tests_per_thousand": 52.483, + "new_tests_per_thousand": 1.965, + "new_tests_smoothed": 32393.0, + "new_tests_smoothed_per_thousand": 1.27, + "tests_per_case": 3488.4770000000003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 65.28 + }, + { + "date": "2020-05-28", + "total_cases": 7139.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.571, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 279.962, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 29123.0, + "total_tests": 1367444.0, + "total_tests_per_thousand": 53.626, + "new_tests_per_thousand": 1.142, + "new_tests_smoothed": 32823.0, + "new_tests_smoothed_per_thousand": 1.287, + "tests_per_case": 3829.35, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 65.28 + }, + { + "date": "2020-05-29", + "total_cases": 7150.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 280.393, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 30178.0, + "total_tests": 1397622.0, + "total_tests_per_thousand": 54.809, + "new_tests_per_thousand": 1.183, + "new_tests_smoothed": 32420.0, + "new_tests_smoothed_per_thousand": 1.271, + "tests_per_case": 3288.986, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-05-30", + "total_cases": 7173.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.295, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 30916.0, + "total_tests": 1428538.0, + "total_tests_per_thousand": 56.021, + "new_tests_per_thousand": 1.212, + "new_tests_smoothed": 33754.0, + "new_tests_smoothed_per_thousand": 1.324, + "tests_per_case": 3029.205, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-05-31", + "total_cases": 7185.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.766, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26030.0, + "total_tests": 1454568.0, + "total_tests_per_thousand": 57.042, + "new_tests_per_thousand": 1.021, + "new_tests_smoothed": 32825.0, + "new_tests_smoothed_per_thousand": 1.287, + "tests_per_case": 2908.5440000000003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-01", + "total_cases": 7195.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.158, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17652.0, + "total_tests": 1472220.0, + "total_tests_per_thousand": 57.734, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 32574.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 2651.3720000000003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-02", + "total_cases": 7204.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.511, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18167.0, + "total_tests": 1490387.0, + "total_tests_per_thousand": 58.447, + "new_tests_per_thousand": 0.712, + "new_tests_smoothed": 28881.0, + "new_tests_smoothed_per_thousand": 1.133, + "tests_per_case": 2350.779, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-03", + "total_cases": 7221.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.571, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 283.178, + "new_cases_per_million": 0.667, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22313.0, + "total_tests": 1512700.0, + "total_tests_per_thousand": 59.322, + "new_tests_per_thousand": 0.875, + "new_tests_smoothed": 24911.0, + "new_tests_smoothed_per_thousand": 0.977, + "tests_per_case": 1981.557, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-04", + "total_cases": 7229.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 283.492, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33629.0, + "total_tests": 1546329.0, + "total_tests_per_thousand": 60.641, + "new_tests_per_thousand": 1.319, + "new_tests_smoothed": 25555.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 1987.611, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-05", + "total_cases": 7240.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 283.923, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32863.0, + "total_tests": 1579192.0, + "total_tests_per_thousand": 61.929, + "new_tests_per_thousand": 1.289, + "new_tests_smoothed": 25939.0, + "new_tests_smoothed_per_thousand": 1.017, + "tests_per_case": 2017.4779999999998, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-06", + "total_cases": 7251.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.354, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11396.0, + "total_tests": 1590588.0, + "total_tests_per_thousand": 62.376, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 23150.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 2077.564, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-07", + "total_cases": 7255.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.511, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26874.0, + "total_tests": 1617462.0, + "total_tests_per_thousand": 63.43, + "new_tests_per_thousand": 1.054, + "new_tests_smoothed": 23271.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 2327.1, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-08", + "total_cases": 7260.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.707, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16053.0, + "total_tests": 1633515.0, + "total_tests_per_thousand": 64.06, + "new_tests_per_thousand": 0.63, + "new_tests_smoothed": 23042.0, + "new_tests_smoothed_per_thousand": 0.904, + "tests_per_case": 2481.446, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-09", + "total_cases": 7265.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.903, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17169.0, + "total_tests": 1650684.0, + "total_tests_per_thousand": 64.733, + "new_tests_per_thousand": 0.673, + "new_tests_smoothed": 22900.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 2627.869, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-06-10", + "total_cases": 7267.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.982, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.258, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29270.0, + "total_tests": 1679954.0, + "total_tests_per_thousand": 65.881, + "new_tests_per_thousand": 1.148, + "new_tests_smoothed": 23893.0, + "new_tests_smoothed_per_thousand": 0.937, + "tests_per_case": 3635.8909999999996, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-06-11", + "total_cases": 7276.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.335, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.263, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31269.0, + "total_tests": 1711223.0, + "total_tests_per_thousand": 67.107, + "new_tests_per_thousand": 1.226, + "new_tests_smoothed": 23556.0, + "new_tests_smoothed_per_thousand": 0.924, + "tests_per_case": 3508.34, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-06-12", + "total_cases": 7285.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.688, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34327.0, + "total_tests": 1745550.0, + "total_tests_per_thousand": 68.453, + "new_tests_per_thousand": 1.346, + "new_tests_smoothed": 23765.0, + "new_tests_smoothed_per_thousand": 0.932, + "tests_per_case": 3696.778, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-13", + "total_cases": 7290.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.884, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37101.0, + "total_tests": 1782651.0, + "total_tests_per_thousand": 69.908, + "new_tests_per_thousand": 1.455, + "new_tests_smoothed": 27438.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 4924.769, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-14", + "total_cases": 7302.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.354, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.263, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29702.0, + "total_tests": 1812353.0, + "total_tests_per_thousand": 71.073, + "new_tests_per_thousand": 1.165, + "new_tests_smoothed": 27842.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 4146.681, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-15", + "total_cases": 7320.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.571, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.06, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15796.0, + "total_tests": 1828149.0, + "total_tests_per_thousand": 71.692, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 27805.0, + "new_tests_smoothed_per_thousand": 1.09, + "tests_per_case": 3243.917, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-16", + "total_cases": 7335.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.0, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.648, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20198.0, + "total_tests": 1848347.0, + "total_tests_per_thousand": 72.485, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 28238.0, + "new_tests_smoothed_per_thousand": 1.107, + "tests_per_case": 2823.8, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-17", + "total_cases": 7347.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.429, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.119, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27770.0, + "total_tests": 1876117.0, + "total_tests_per_thousand": 73.574, + "new_tests_per_thousand": 1.089, + "new_tests_smoothed": 28023.0, + "new_tests_smoothed_per_thousand": 1.099, + "tests_per_case": 2452.012, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-18", + "total_cases": 7370.0, + "new_cases": 23.0, + "new_cases_smoothed": 13.429, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 289.021, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 0.527, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51380.0, + "total_tests": 1927497.0, + "total_tests_per_thousand": 75.588, + "new_tests_per_thousand": 2.015, + "new_tests_smoothed": 30896.0, + "new_tests_smoothed_per_thousand": 1.212, + "tests_per_case": 2300.766, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-19", + "total_cases": 7391.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 289.844, + "new_cases_per_million": 0.824, + "new_cases_smoothed_per_million": 0.594, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42708.0, + "total_tests": 1970205.0, + "total_tests_per_thousand": 77.263, + "new_tests_per_thousand": 1.675, + "new_tests_smoothed": 32094.0, + "new_tests_smoothed_per_thousand": 1.259, + "tests_per_case": 2119.415, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-20", + "total_cases": 7409.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.0, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.55, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35173.0, + "total_tests": 2005378.0, + "total_tests_per_thousand": 78.643, + "new_tests_per_thousand": 1.379, + "new_tests_smoothed": 31818.0, + "new_tests_smoothed_per_thousand": 1.248, + "tests_per_case": 1871.6470000000002, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-21", + "total_cases": 7436.0, + "new_cases": 27.0, + "new_cases_smoothed": 19.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.609, + "new_cases_per_million": 1.059, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35946.0, + "total_tests": 2041324.0, + "total_tests_per_thousand": 80.052, + "new_tests_per_thousand": 1.41, + "new_tests_smoothed": 32710.0, + "new_tests_smoothed_per_thousand": 1.283, + "tests_per_case": 1708.731, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-22", + "total_cases": 7461.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.59, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 0.79, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66525.0, + "total_tests": 2107849.0, + "total_tests_per_thousand": 82.661, + "new_tests_per_thousand": 2.609, + "new_tests_smoothed": 39957.0, + "new_tests_smoothed_per_thousand": 1.567, + "tests_per_case": 1983.681, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.76 + }, + { + "date": "2020-06-23", + "total_cases": 7474.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 293.099, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 0.779, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24972.0, + "total_tests": 2132821.0, + "total_tests_per_thousand": 83.64, + "new_tests_per_thousand": 0.979, + "new_tests_smoothed": 40639.0, + "new_tests_smoothed_per_thousand": 1.594, + "tests_per_case": 2046.568, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-24", + "total_cases": 7492.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 293.805, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 4.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47603.0, + "total_tests": 2180424.0, + "total_tests_per_thousand": 85.507, + "new_tests_per_thousand": 1.867, + "new_tests_smoothed": 43472.0, + "new_tests_smoothed_per_thousand": 1.705, + "tests_per_case": 2098.6479999999997, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-25", + "total_cases": 7521.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.571, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 294.943, + "new_cases_per_million": 1.137, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 4.039, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 51917.0, + "total_tests": 2232341.0, + "total_tests_per_thousand": 87.543, + "new_tests_per_thousand": 2.036, + "new_tests_smoothed": 43549.0, + "new_tests_smoothed_per_thousand": 1.708, + "tests_per_case": 2018.828, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-26", + "total_cases": 7558.0, + "new_cases": 37.0, + "new_cases_smoothed": 23.857, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 296.394, + "new_cases_per_million": 1.451, + "new_cases_smoothed_per_million": 0.936, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 49498.0, + "total_tests": 2281839.0, + "total_tests_per_thousand": 89.484, + "new_tests_per_thousand": 1.941, + "new_tests_smoothed": 44519.0, + "new_tests_smoothed_per_thousand": 1.746, + "tests_per_case": 1866.066, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-27", + "total_cases": 7595.0, + "new_cases": 37.0, + "new_cases_smoothed": 26.571, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 297.845, + "new_cases_per_million": 1.451, + "new_cases_smoothed_per_million": 1.042, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 54222.0, + "total_tests": 2336061.0, + "total_tests_per_thousand": 91.611, + "new_tests_per_thousand": 2.126, + "new_tests_smoothed": 47240.0, + "new_tests_smoothed_per_thousand": 1.853, + "tests_per_case": 1777.849, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-28", + "total_cases": 7641.0, + "new_cases": 46.0, + "new_cases_smoothed": 29.286, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 299.648, + "new_cases_per_million": 1.804, + "new_cases_smoothed_per_million": 1.148, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 43114.0, + "total_tests": 2379175.0, + "total_tests_per_thousand": 93.301, + "new_tests_per_thousand": 1.691, + "new_tests_smoothed": 48264.0, + "new_tests_smoothed_per_thousand": 1.893, + "tests_per_case": 1648.039, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-29", + "total_cases": 7686.0, + "new_cases": 45.0, + "new_cases_smoothed": 32.143, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 301.413, + "new_cases_per_million": 1.765, + "new_cases_smoothed_per_million": 1.261, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 36520.0, + "total_tests": 2415695.0, + "total_tests_per_thousand": 94.734, + "new_tests_per_thousand": 1.432, + "new_tests_smoothed": 43978.0, + "new_tests_smoothed_per_thousand": 1.725, + "tests_per_case": 1368.204, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-06-30", + "total_cases": 7767.0, + "new_cases": 81.0, + "new_cases_smoothed": 41.857, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 304.59, + "new_cases_per_million": 3.176, + "new_cases_smoothed_per_million": 1.641, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 40287.0, + "total_tests": 2455982.0, + "total_tests_per_thousand": 96.313, + "new_tests_per_thousand": 1.58, + "new_tests_smoothed": 46166.0, + "new_tests_smoothed_per_thousand": 1.81, + "tests_per_case": 1102.942, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-07-01", + "total_cases": 7834.0, + "new_cases": 67.0, + "new_cases_smoothed": 48.857, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 307.217, + "new_cases_per_million": 2.627, + "new_cases_smoothed_per_million": 1.916, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 49941.0, + "total_tests": 2505923.0, + "total_tests_per_thousand": 98.272, + "new_tests_per_thousand": 1.958, + "new_tests_smoothed": 46500.0, + "new_tests_smoothed_per_thousand": 1.824, + "tests_per_case": 951.7539999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-02", + "total_cases": 7920.0, + "new_cases": 86.0, + "new_cases_smoothed": 57.0, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 310.59, + "new_cases_per_million": 3.373, + "new_cases_smoothed_per_million": 2.235, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 57859.0, + "total_tests": 2563782.0, + "total_tests_per_thousand": 100.541, + "new_tests_per_thousand": 2.269, + "new_tests_smoothed": 47349.0, + "new_tests_smoothed_per_thousand": 1.857, + "tests_per_case": 830.684, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-03", + "total_cases": 8001.0, + "new_cases": 81.0, + "new_cases_smoothed": 63.286, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.766, + "new_cases_per_million": 3.176, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 54078.0, + "total_tests": 2617860.0, + "total_tests_per_thousand": 102.662, + "new_tests_per_thousand": 2.121, + "new_tests_smoothed": 48003.0, + "new_tests_smoothed_per_thousand": 1.882, + "tests_per_case": 758.512, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-04", + "total_cases": 8255.0, + "new_cases": 254.0, + "new_cases_smoothed": 94.286, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 323.727, + "new_cases_per_million": 9.961, + "new_cases_smoothed_per_million": 3.697, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50176.0, + "total_tests": 2668036.0, + "total_tests_per_thousand": 104.629, + "new_tests_per_thousand": 1.968, + "new_tests_smoothed": 47425.0, + "new_tests_smoothed_per_thousand": 1.86, + "tests_per_case": 502.99199999999996, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-05", + "total_cases": 8362.0, + "new_cases": 107.0, + "new_cases_smoothed": 103.0, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 327.923, + "new_cases_per_million": 4.196, + "new_cases_smoothed_per_million": 4.039, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45399.0, + "total_tests": 2713435.0, + "total_tests_per_thousand": 106.41, + "new_tests_per_thousand": 1.78, + "new_tests_smoothed": 47751.0, + "new_tests_smoothed_per_thousand": 1.873, + "tests_per_case": 463.602, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-06", + "total_cases": 8449.0, + "new_cases": 87.0, + "new_cases_smoothed": 109.0, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 331.335, + "new_cases_per_million": 3.412, + "new_cases_smoothed_per_million": 4.275, + "total_deaths_per_million": 4.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45730.0, + "total_tests": 2759165.0, + "total_tests_per_thousand": 108.203, + "new_tests_per_thousand": 1.793, + "new_tests_smoothed": 49067.0, + "new_tests_smoothed_per_thousand": 1.924, + "tests_per_case": 450.156, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-07", + "total_cases": 8586.0, + "new_cases": 137.0, + "new_cases_smoothed": 117.0, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 336.707, + "new_cases_per_million": 5.373, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 4.157, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 41942.0, + "total_tests": 2801107.0, + "total_tests_per_thousand": 109.848, + "new_tests_per_thousand": 1.645, + "new_tests_smoothed": 49304.0, + "new_tests_smoothed_per_thousand": 1.933, + "tests_per_case": 421.402, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-08", + "total_cases": 8755.0, + "new_cases": 169.0, + "new_cases_smoothed": 131.571, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 343.335, + "new_cases_per_million": 6.627, + "new_cases_smoothed_per_million": 5.16, + "total_deaths_per_million": 4.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 55299.0, + "total_tests": 2856406.0, + "total_tests_per_thousand": 112.016, + "new_tests_per_thousand": 2.169, + "new_tests_smoothed": 50069.0, + "new_tests_smoothed_per_thousand": 1.963, + "tests_per_case": 380.546, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-07-09", + "total_cases": 8886.0, + "new_cases": 131.0, + "new_cases_smoothed": 138.0, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 348.472, + "new_cases_per_million": 5.137, + "new_cases_smoothed_per_million": 5.412, + "total_deaths_per_million": 4.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 54425.0, + "total_tests": 2910831.0, + "total_tests_per_thousand": 114.151, + "new_tests_per_thousand": 2.134, + "new_tests_smoothed": 49578.0, + "new_tests_smoothed_per_thousand": 1.944, + "tests_per_case": 359.26099999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-07-10", + "total_cases": 9059.0, + "new_cases": 173.0, + "new_cases_smoothed": 151.143, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 355.257, + "new_cases_per_million": 6.784, + "new_cases_smoothed_per_million": 5.927, + "total_deaths_per_million": 4.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 59437.0, + "total_tests": 2970268.0, + "total_tests_per_thousand": 116.482, + "new_tests_per_thousand": 2.331, + "new_tests_smoothed": 50344.0, + "new_tests_smoothed_per_thousand": 1.974, + "tests_per_case": 333.089, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-07-11", + "total_cases": 9359.0, + "new_cases": 300.0, + "new_cases_smoothed": 157.714, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 367.021, + "new_cases_per_million": 11.765, + "new_cases_smoothed_per_million": 6.185, + "total_deaths_per_million": 4.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 51225.0, + "total_tests": 3021493.0, + "total_tests_per_thousand": 118.49, + "new_tests_per_thousand": 2.009, + "new_tests_smoothed": 50494.0, + "new_tests_smoothed_per_thousand": 1.98, + "tests_per_case": 320.161, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-07-12", + "total_cases": 9553.0, + "new_cases": 194.0, + "new_cases_smoothed": 170.143, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 374.629, + "new_cases_per_million": 7.608, + "new_cases_smoothed_per_million": 6.672, + "total_deaths_per_million": 4.196, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 53995.0, + "total_tests": 3075488.0, + "total_tests_per_thousand": 120.608, + "new_tests_per_thousand": 2.117, + "new_tests_smoothed": 51722.0, + "new_tests_smoothed_per_thousand": 2.028, + "tests_per_case": 303.992, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-07-13", + "total_cases": 9797.0, + "new_cases": 244.0, + "new_cases_smoothed": 192.571, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 384.198, + "new_cases_per_million": 9.569, + "new_cases_smoothed_per_million": 7.552, + "total_deaths_per_million": 4.235, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 42300.0, + "total_tests": 3117788.0, + "total_tests_per_thousand": 122.267, + "new_tests_per_thousand": 1.659, + "new_tests_smoothed": 51232.0, + "new_tests_smoothed_per_thousand": 2.009, + "tests_per_case": 266.04200000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-07-14", + "total_cases": 9980.0, + "new_cases": 183.0, + "new_cases_smoothed": 199.143, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 391.374, + "new_cases_per_million": 7.177, + "new_cases_smoothed_per_million": 7.81, + "total_deaths_per_million": 4.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 44449.0, + "total_tests": 3162237.0, + "total_tests_per_thousand": 124.01, + "new_tests_per_thousand": 1.743, + "new_tests_smoothed": 51590.0, + "new_tests_smoothed_per_thousand": 2.023, + "tests_per_case": 259.06, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-07-15", + "total_cases": 10251.0, + "new_cases": 271.0, + "new_cases_smoothed": 213.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 402.002, + "new_cases_per_million": 10.628, + "new_cases_smoothed_per_million": 8.381, + "total_deaths_per_million": 4.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 59904.0, + "total_tests": 3222141.0, + "total_tests_per_thousand": 126.359, + "new_tests_per_thousand": 2.349, + "new_tests_smoothed": 52248.0, + "new_tests_smoothed_per_thousand": 2.049, + "tests_per_case": 244.476, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-07-16", + "total_cases": 10495.0, + "new_cases": 244.0, + "new_cases_smoothed": 229.857, + "total_deaths": 111.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 411.571, + "new_cases_per_million": 9.569, + "new_cases_smoothed_per_million": 9.014, + "total_deaths_per_million": 4.353, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 65575.0, + "total_tests": 3287716.0, + "total_tests_per_thousand": 128.931, + "new_tests_per_thousand": 2.572, + "new_tests_smoothed": 53841.0, + "new_tests_smoothed_per_thousand": 2.111, + "tests_per_case": 234.237, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-17", + "total_cases": 10810.0, + "new_cases": 315.0, + "new_cases_smoothed": 250.143, + "total_deaths": 113.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 423.924, + "new_cases_per_million": 12.353, + "new_cases_smoothed_per_million": 9.81, + "total_deaths_per_million": 4.431, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 62728.0, + "total_tests": 3350444.0, + "total_tests_per_thousand": 131.391, + "new_tests_per_thousand": 2.46, + "new_tests_smoothed": 54311.0, + "new_tests_smoothed_per_thousand": 2.13, + "tests_per_case": 217.12, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-18", + "total_cases": 11235.0, + "new_cases": 425.0, + "new_cases_smoothed": 268.0, + "total_deaths": 116.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 440.59, + "new_cases_per_million": 16.667, + "new_cases_smoothed_per_million": 10.51, + "total_deaths_per_million": 4.549, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 63387.0, + "total_tests": 3413831.0, + "total_tests_per_thousand": 133.876, + "new_tests_per_thousand": 2.486, + "new_tests_smoothed": 56048.0, + "new_tests_smoothed_per_thousand": 2.198, + "tests_per_case": 209.13400000000001, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-19", + "total_cases": 11441.0, + "new_cases": 206.0, + "new_cases_smoothed": 269.714, + "total_deaths": 118.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 448.669, + "new_cases_per_million": 8.078, + "new_cases_smoothed_per_million": 10.577, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 62632.0, + "total_tests": 3476463.0, + "total_tests_per_thousand": 136.333, + "new_tests_per_thousand": 2.456, + "new_tests_smoothed": 57282.0, + "new_tests_smoothed_per_thousand": 2.246, + "tests_per_case": 212.38, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-20", + "total_cases": 11802.0, + "new_cases": 361.0, + "new_cases_smoothed": 286.429, + "total_deaths": 122.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 462.826, + "new_cases_per_million": 14.157, + "new_cases_smoothed_per_million": 11.233, + "total_deaths_per_million": 4.784, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 57962.0, + "total_tests": 3534425.0, + "total_tests_per_thousand": 138.606, + "new_tests_per_thousand": 2.273, + "new_tests_smoothed": 59520.0, + "new_tests_smoothed_per_thousand": 2.334, + "tests_per_case": 207.8, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-21", + "total_cases": 12069.0, + "new_cases": 267.0, + "new_cases_smoothed": 298.429, + "total_deaths": 123.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 473.296, + "new_cases_per_million": 10.471, + "new_cases_smoothed_per_million": 11.703, + "total_deaths_per_million": 4.824, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 56310.0, + "total_tests": 3590735.0, + "total_tests_per_thousand": 140.814, + "new_tests_per_thousand": 2.208, + "new_tests_smoothed": 61214.0, + "new_tests_smoothed_per_thousand": 2.401, + "tests_per_case": 205.12099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-22", + "total_cases": 12428.0, + "new_cases": 359.0, + "new_cases_smoothed": 311.0, + "total_deaths": 126.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 487.375, + "new_cases_per_million": 14.078, + "new_cases_smoothed_per_million": 12.196, + "total_deaths_per_million": 4.941, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 59794.0, + "total_tests": 3650529.0, + "total_tests_per_thousand": 143.159, + "new_tests_per_thousand": 2.345, + "new_tests_smoothed": 61198.0, + "new_tests_smoothed_per_thousand": 2.4, + "tests_per_case": 196.778, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-23", + "total_cases": 12896.0, + "new_cases": 468.0, + "new_cases_smoothed": 343.0, + "total_deaths": 128.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 505.728, + "new_cases_per_million": 18.353, + "new_cases_smoothed_per_million": 13.451, + "total_deaths_per_million": 5.02, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 69308.0, + "total_tests": 3719837.0, + "total_tests_per_thousand": 145.877, + "new_tests_per_thousand": 2.718, + "new_tests_smoothed": 61732.0, + "new_tests_smoothed_per_thousand": 2.421, + "tests_per_case": 179.977, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-24", + "total_cases": 13306.0, + "new_cases": 410.0, + "new_cases_smoothed": 356.571, + "total_deaths": 133.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 521.806, + "new_cases_per_million": 16.079, + "new_cases_smoothed_per_million": 13.983, + "total_deaths_per_million": 5.216, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 75584.0, + "total_tests": 3795421.0, + "total_tests_per_thousand": 148.841, + "new_tests_per_thousand": 2.964, + "new_tests_smoothed": 63568.0, + "new_tests_smoothed_per_thousand": 2.493, + "tests_per_case": 178.27599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-25", + "total_cases": 13595.0, + "new_cases": 289.0, + "new_cases_smoothed": 337.143, + "total_deaths": 139.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 533.14, + "new_cases_per_million": 11.333, + "new_cases_smoothed_per_million": 13.221, + "total_deaths_per_million": 5.451, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 64084.0, + "total_tests": 3859505.0, + "total_tests_per_thousand": 151.354, + "new_tests_per_thousand": 2.513, + "new_tests_smoothed": 63668.0, + "new_tests_smoothed_per_thousand": 2.497, + "tests_per_case": 188.84599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-26", + "total_cases": 13950.0, + "new_cases": 355.0, + "new_cases_smoothed": 358.429, + "total_deaths": 145.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 547.061, + "new_cases_per_million": 13.922, + "new_cases_smoothed_per_million": 14.056, + "total_deaths_per_million": 5.686, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 75619.0, + "total_tests": 3935124.0, + "total_tests_per_thousand": 154.319, + "new_tests_per_thousand": 2.965, + "new_tests_smoothed": 65523.0, + "new_tests_smoothed_per_thousand": 2.57, + "tests_per_case": 182.80599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-27", + "total_cases": 14403.0, + "new_cases": 453.0, + "new_cases_smoothed": 371.571, + "total_deaths": 155.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 564.826, + "new_cases_per_million": 17.765, + "new_cases_smoothed_per_million": 14.571, + "total_deaths_per_million": 6.078, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 51966.0, + "total_tests": 3987090.0, + "total_tests_per_thousand": 156.357, + "new_tests_per_thousand": 2.038, + "new_tests_smoothed": 64666.0, + "new_tests_smoothed_per_thousand": 2.536, + "tests_per_case": 174.03400000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-28", + "total_cases": 14935.0, + "new_cases": 532.0, + "new_cases_smoothed": 409.429, + "total_deaths": 161.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 585.689, + "new_cases_per_million": 20.863, + "new_cases_smoothed_per_million": 16.056, + "total_deaths_per_million": 6.314, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 111159.0, + "total_tests": 4098249.0, + "total_tests_per_thousand": 160.716, + "new_tests_per_thousand": 4.359, + "new_tests_smoothed": 72502.0, + "new_tests_smoothed_per_thousand": 2.843, + "tests_per_case": 177.081, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-29", + "total_cases": 15304.0, + "new_cases": 369.0, + "new_cases_smoothed": 410.857, + "total_deaths": 167.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 600.16, + "new_cases_per_million": 14.471, + "new_cases_smoothed_per_million": 16.112, + "total_deaths_per_million": 6.549, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.23, + "new_tests_smoothed": 68689.0, + "new_tests_smoothed_per_thousand": 2.694, + "tests_per_case": 167.185, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-30", + "total_cases": 15582.0, + "new_cases": 278.0, + "new_cases_smoothed": 383.714, + "total_deaths": 176.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 611.062, + "new_cases_per_million": 10.902, + "new_cases_smoothed_per_million": 15.048, + "total_deaths_per_million": 6.902, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.269, + "total_tests": 4164454.0, + "total_tests_per_thousand": 163.313, + "new_tests_smoothed": 63517.0, + "new_tests_smoothed_per_thousand": 2.491, + "tests_per_case": 165.532, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-31", + "total_cases": 16303.0, + "new_cases": 721.0, + "new_cases_smoothed": 428.143, + "total_deaths": 189.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 639.336, + "new_cases_per_million": 28.275, + "new_cases_smoothed_per_million": 16.79, + "total_deaths_per_million": 7.412, + "new_deaths_per_million": 0.51, + "new_deaths_smoothed_per_million": 0.314, + "new_tests_smoothed": 62917.0, + "new_tests_smoothed_per_thousand": 2.467, + "tests_per_case": 146.953, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-01", + "total_cases": 16905.0, + "new_cases": 602.0, + "new_cases_smoothed": 472.857, + "total_deaths": 196.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 662.944, + "new_cases_per_million": 23.608, + "new_cases_smoothed_per_million": 18.544, + "total_deaths_per_million": 7.686, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.319, + "total_tests": 4307224.0, + "total_tests_per_thousand": 168.912, + "new_tests_smoothed": 63960.0, + "new_tests_smoothed_per_thousand": 2.508, + "tests_per_case": 135.263, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-02", + "total_cases": 17282.0, + "new_cases": 377.0, + "new_cases_smoothed": 476.0, + "total_deaths": 200.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 677.729, + "new_cases_per_million": 14.784, + "new_cases_smoothed_per_million": 18.667, + "total_deaths_per_million": 7.843, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 39158.0, + "total_tests": 4346382.0, + "total_tests_per_thousand": 170.447, + "new_tests_per_thousand": 1.536, + "new_tests_smoothed": 58751.0, + "new_tests_smoothed_per_thousand": 2.304, + "tests_per_case": 123.426, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-08-03", + "total_cases": 17923.0, + "new_cases": 641.0, + "new_cases_smoothed": 502.857, + "total_deaths": 208.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 702.866, + "new_cases_per_million": 25.137, + "new_cases_smoothed_per_million": 19.72, + "total_deaths_per_million": 8.157, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 40529.0, + "total_tests": 4386911.0, + "total_tests_per_thousand": 172.037, + "new_tests_per_thousand": 1.589, + "new_tests_smoothed": 57117.0, + "new_tests_smoothed_per_thousand": 2.24, + "tests_per_case": 113.585, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-04", + "total_cases": 18318.0, + "new_cases": 395.0, + "new_cases_smoothed": 483.286, + "total_deaths": 221.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 718.356, + "new_cases_per_million": 15.49, + "new_cases_smoothed_per_million": 18.952, + "total_deaths_per_million": 8.667, + "new_deaths_per_million": 0.51, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 94706.0, + "total_tests": 4481617.0, + "total_tests_per_thousand": 175.751, + "new_tests_per_thousand": 3.714, + "new_tests_smoothed": 54767.0, + "new_tests_smoothed_per_thousand": 2.148, + "tests_per_case": 113.322, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-05", + "total_cases": 18729.0, + "new_cases": 411.0, + "new_cases_smoothed": 489.286, + "total_deaths": 232.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 734.474, + "new_cases_per_million": 16.118, + "new_cases_smoothed_per_million": 19.188, + "total_deaths_per_million": 9.098, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.364, + "new_tests": 70464.0, + "total_tests": 4552081.0, + "total_tests_per_thousand": 178.514, + "new_tests_per_thousand": 2.763, + "new_tests_smoothed": 60104.0, + "new_tests_smoothed_per_thousand": 2.357, + "tests_per_case": 122.84, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-06", + "total_cases": 19444.0, + "new_cases": 715.0, + "new_cases_smoothed": 551.714, + "total_deaths": 247.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 762.513, + "new_cases_per_million": 28.039, + "new_cases_smoothed_per_million": 21.636, + "total_deaths_per_million": 9.686, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.398, + "new_tests": 80008.0, + "total_tests": 4632089.0, + "total_tests_per_thousand": 181.651, + "new_tests_per_thousand": 3.138, + "new_tests_smoothed": 66805.0, + "new_tests_smoothed_per_thousand": 2.62, + "tests_per_case": 121.086, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-07", + "total_cases": 19862.0, + "new_cases": 418.0, + "new_cases_smoothed": 508.429, + "total_deaths": 255.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 778.906, + "new_cases_per_million": 16.392, + "new_cases_smoothed_per_million": 19.938, + "total_deaths_per_million": 10.0, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 91937.0, + "total_tests": 4724026.0, + "total_tests_per_thousand": 185.257, + "new_tests_per_thousand": 3.605, + "new_tests_smoothed": 69741.0, + "new_tests_smoothed_per_thousand": 2.735, + "tests_per_case": 137.17, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-08", + "total_cases": 20272.0, + "new_cases": 410.0, + "new_cases_smoothed": 481.0, + "total_deaths": 266.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 794.984, + "new_cases_per_million": 16.079, + "new_cases_smoothed_per_million": 18.863, + "total_deaths_per_million": 10.431, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 40197.0, + "total_tests": 4764223.0, + "total_tests_per_thousand": 186.833, + "new_tests_per_thousand": 1.576, + "new_tests_smoothed": 65286.0, + "new_tests_smoothed_per_thousand": 2.56, + "tests_per_case": 135.73, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-09", + "total_cases": 20698.0, + "new_cases": 426.0, + "new_cases_smoothed": 488.0, + "total_deaths": 278.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 811.69, + "new_cases_per_million": 16.706, + "new_cases_smoothed_per_million": 19.137, + "total_deaths_per_million": 10.902, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.437, + "new_tests": 93191.0, + "total_tests": 4857414.0, + "total_tests_per_thousand": 190.488, + "new_tests_per_thousand": 3.655, + "new_tests_smoothed": 73005.0, + "new_tests_smoothed_per_thousand": 2.863, + "tests_per_case": 149.6, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-10", + "total_cases": 21084.0, + "new_cases": 386.0, + "new_cases_smoothed": 451.571, + "total_deaths": 295.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 826.827, + "new_cases_per_million": 15.137, + "new_cases_smoothed_per_million": 17.709, + "total_deaths_per_million": 11.569, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.487, + "new_tests": 61132.0, + "total_tests": 4918546.0, + "total_tests_per_thousand": 192.885, + "new_tests_per_thousand": 2.397, + "new_tests_smoothed": 75948.0, + "new_tests_smoothed_per_thousand": 2.978, + "tests_per_case": 168.18599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-11", + "total_cases": 21397.0, + "new_cases": 313.0, + "new_cases_smoothed": 439.857, + "total_deaths": 313.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 839.102, + "new_cases_per_million": 12.275, + "new_cases_smoothed_per_million": 17.249, + "total_deaths_per_million": 12.275, + "new_deaths_per_million": 0.706, + "new_deaths_smoothed_per_million": 0.515, + "new_tests": 61626.0, + "total_tests": 4980172.0, + "total_tests_per_thousand": 195.302, + "new_tests_per_thousand": 2.417, + "new_tests_smoothed": 71222.0, + "new_tests_smoothed_per_thousand": 2.793, + "tests_per_case": 161.921, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-12", + "total_cases": 21713.0, + "new_cases": 316.0, + "new_cases_smoothed": 426.286, + "total_deaths": 331.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 851.494, + "new_cases_per_million": 12.392, + "new_cases_smoothed_per_million": 16.717, + "total_deaths_per_million": 12.98, + "new_deaths_per_million": 0.706, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 61172.0, + "total_tests": 5041344.0, + "total_tests_per_thousand": 197.701, + "new_tests_per_thousand": 2.399, + "new_tests_smoothed": 69895.0, + "new_tests_smoothed_per_thousand": 2.741, + "tests_per_case": 163.963, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-13", + "total_cases": 22127.0, + "new_cases": 414.0, + "new_cases_smoothed": 383.286, + "total_deaths": 352.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 867.73, + "new_cases_per_million": 16.235, + "new_cases_smoothed_per_million": 15.031, + "total_deaths_per_million": 13.804, + "new_deaths_per_million": 0.824, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 68441.0, + "total_tests": 5109785.0, + "total_tests_per_thousand": 200.385, + "new_tests_per_thousand": 2.684, + "new_tests_smoothed": 68242.0, + "new_tests_smoothed_per_thousand": 2.676, + "tests_per_case": 178.045, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-14", + "total_cases": 22358.0, + "new_cases": 231.0, + "new_cases_smoothed": 356.571, + "total_deaths": 361.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 876.788, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 13.983, + "total_deaths_per_million": 14.157, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 70629.0, + "total_tests": 5180414.0, + "total_tests_per_thousand": 203.154, + "new_tests_per_thousand": 2.77, + "new_tests_smoothed": 65198.0, + "new_tests_smoothed_per_thousand": 2.557, + "tests_per_case": 182.847, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-15", + "total_cases": 22743.0, + "new_cases": 385.0, + "new_cases_smoothed": 353.0, + "total_deaths": 375.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 891.887, + "new_cases_per_million": 15.098, + "new_cases_smoothed_per_million": 13.843, + "total_deaths_per_million": 14.706, + "new_deaths_per_million": 0.549, + "new_deaths_smoothed_per_million": 0.611, + "new_tests": 63370.0, + "total_tests": 5243784.0, + "total_tests_per_thousand": 205.64, + "new_tests_per_thousand": 2.485, + "new_tests_smoothed": 68509.0, + "new_tests_smoothed_per_thousand": 2.687, + "tests_per_case": 194.076, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-16", + "total_cases": 23035.0, + "new_cases": 292.0, + "new_cases_smoothed": 333.857, + "total_deaths": 379.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 903.338, + "new_cases_per_million": 11.451, + "new_cases_smoothed_per_million": 13.092, + "total_deaths_per_million": 14.863, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.566, + "new_tests": 53774.0, + "total_tests": 5297558.0, + "total_tests_per_thousand": 207.748, + "new_tests_per_thousand": 2.109, + "new_tests_smoothed": 62878.0, + "new_tests_smoothed_per_thousand": 2.466, + "tests_per_case": 188.338, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-17", + "total_cases": 23288.0, + "new_cases": 253.0, + "new_cases_smoothed": 314.857, + "total_deaths": 396.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 913.259, + "new_cases_per_million": 9.922, + "new_cases_smoothed_per_million": 12.347, + "total_deaths_per_million": 15.529, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.566, + "new_tests": 38539.0, + "total_tests": 5336097.0, + "total_tests_per_thousand": 209.26, + "new_tests_per_thousand": 1.511, + "new_tests_smoothed": 59650.0, + "new_tests_smoothed_per_thousand": 2.339, + "tests_per_case": 189.451, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-18", + "total_cases": 23599.0, + "new_cases": 311.0, + "new_cases_smoothed": 314.571, + "total_deaths": 421.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 925.455, + "new_cases_per_million": 12.196, + "new_cases_smoothed_per_million": 12.336, + "total_deaths_per_million": 16.51, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 0.605, + "new_tests": 44516.0, + "total_tests": 5380613.0, + "total_tests_per_thousand": 211.005, + "new_tests_per_thousand": 1.746, + "new_tests_smoothed": 57206.0, + "new_tests_smoothed_per_thousand": 2.243, + "tests_per_case": 181.854, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-19", + "total_cases": 23773.0, + "new_cases": 174.0, + "new_cases_smoothed": 294.286, + "total_deaths": 438.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 932.279, + "new_cases_per_million": 6.824, + "new_cases_smoothed_per_million": 11.541, + "total_deaths_per_million": 17.177, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.599, + "new_tests": 59882.0, + "total_tests": 5440495.0, + "total_tests_per_thousand": 213.354, + "new_tests_per_thousand": 2.348, + "new_tests_smoothed": 57022.0, + "new_tests_smoothed_per_thousand": 2.236, + "tests_per_case": 193.764, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-20", + "total_cases": 23993.0, + "new_cases": 220.0, + "new_cases_smoothed": 266.571, + "total_deaths": 450.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 940.906, + "new_cases_per_million": 8.627, + "new_cases_smoothed_per_million": 10.454, + "total_deaths_per_million": 17.647, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.549, + "new_tests": 68336.0, + "total_tests": 5508831.0, + "total_tests_per_thousand": 216.034, + "new_tests_per_thousand": 2.68, + "new_tests_smoothed": 57007.0, + "new_tests_smoothed_per_thousand": 2.236, + "tests_per_case": 213.85299999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-21", + "total_cases": 24236.0, + "new_cases": 243.0, + "new_cases_smoothed": 268.286, + "total_deaths": 463.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 950.436, + "new_cases_per_million": 9.529, + "new_cases_smoothed_per_million": 10.521, + "total_deaths_per_million": 18.157, + "new_deaths_per_million": 0.51, + "new_deaths_smoothed_per_million": 0.571, + "new_tests_smoothed": 56334.0, + "new_tests_smoothed_per_thousand": 2.209, + "tests_per_case": 209.97799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-22", + "total_cases": 24407.0, + "new_cases": 171.0, + "new_cases_smoothed": 237.714, + "total_deaths": 472.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 957.142, + "new_cases_per_million": 6.706, + "new_cases_smoothed_per_million": 9.322, + "total_deaths_per_million": 18.51, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.543, + "new_tests_smoothed": 56698.0, + "new_tests_smoothed_per_thousand": 2.223, + "tests_per_case": 238.513, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-23", + "total_cases": 24602.0, + "new_cases": 195.0, + "new_cases_smoothed": 223.857, + "total_deaths": 485.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 964.789, + "new_cases_per_million": 7.647, + "new_cases_smoothed_per_million": 8.779, + "total_deaths_per_million": 19.02, + "new_deaths_per_million": 0.51, + "new_deaths_smoothed_per_million": 0.594, + "total_tests": 5706587.0, + "total_tests_per_thousand": 223.789, + "new_tests_smoothed": 58433.0, + "new_tests_smoothed_per_thousand": 2.292, + "tests_per_case": 261.028, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-24", + "total_cases": 24812.0, + "new_cases": 210.0, + "new_cases_smoothed": 217.714, + "total_deaths": 502.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 973.024, + "new_cases_per_million": 8.235, + "new_cases_smoothed_per_million": 8.538, + "total_deaths_per_million": 19.686, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 51447.0, + "total_tests": 5758034.0, + "total_tests_per_thousand": 225.806, + "new_tests_per_thousand": 2.018, + "new_tests_smoothed": 60277.0, + "new_tests_smoothed_per_thousand": 2.364, + "tests_per_case": 276.863, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-25", + "total_cases": 24916.0, + "new_cases": 104.0, + "new_cases_smoothed": 188.143, + "total_deaths": 517.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 977.103, + "new_cases_per_million": 4.078, + "new_cases_smoothed_per_million": 7.378, + "total_deaths_per_million": 20.275, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 56675.0, + "total_tests": 5814709.0, + "total_tests_per_thousand": 228.029, + "new_tests_per_thousand": 2.223, + "new_tests_smoothed": 62014.0, + "new_tests_smoothed_per_thousand": 2.432, + "tests_per_case": 329.611, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-26", + "total_cases": 25053.0, + "new_cases": 137.0, + "new_cases_smoothed": 182.857, + "total_deaths": 525.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 982.475, + "new_cases_per_million": 5.373, + "new_cases_smoothed_per_million": 7.171, + "total_deaths_per_million": 20.588, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.487, + "new_tests": 71703.0, + "total_tests": 5886412.0, + "total_tests_per_thousand": 230.841, + "new_tests_per_thousand": 2.812, + "new_tests_smoothed": 63702.0, + "new_tests_smoothed_per_thousand": 2.498, + "tests_per_case": 348.37, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-27", + "total_cases": 25205.0, + "new_cases": 152.0, + "new_cases_smoothed": 173.143, + "total_deaths": 549.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 988.436, + "new_cases_per_million": 5.961, + "new_cases_smoothed_per_million": 6.79, + "total_deaths_per_million": 21.53, + "new_deaths_per_million": 0.941, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 86268.0, + "total_tests": 5972680.0, + "total_tests_per_thousand": 234.224, + "new_tests_per_thousand": 3.383, + "new_tests_smoothed": 66264.0, + "new_tests_smoothed_per_thousand": 2.599, + "tests_per_case": 382.713, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-08-28", + "total_cases": 25322.0, + "new_cases": 117.0, + "new_cases_smoothed": 155.143, + "total_deaths": 572.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 993.024, + "new_cases_per_million": 4.588, + "new_cases_smoothed_per_million": 6.084, + "total_deaths_per_million": 22.431, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 0.611, + "new_tests_smoothed": 66159.0, + "new_tests_smoothed_per_thousand": 2.594, + "tests_per_case": 426.439, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 25448.0, + "new_cases": 126.0, + "new_cases_smoothed": 148.714, + "total_deaths": 583.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 997.965, + "new_cases_per_million": 4.941, + "new_cases_smoothed_per_million": 5.832, + "total_deaths_per_million": 22.863, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.622, + "new_tests_smoothed": 66054.0, + "new_tests_smoothed_per_thousand": 2.59, + "tests_per_case": 444.167, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 25547.0, + "new_cases": 99.0, + "new_cases_smoothed": 135.0, + "total_deaths": 600.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1001.848, + "new_cases_per_million": 3.882, + "new_cases_smoothed_per_million": 5.294, + "total_deaths_per_million": 23.53, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.644, + "total_tests": 6168229.0, + "total_tests_per_thousand": 241.892, + "new_tests_smoothed": 65949.0, + "new_tests_smoothed_per_thousand": 2.586, + "tests_per_case": 488.51099999999997, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 25670.0, + "new_cases": 123.0, + "new_cases_smoothed": 122.571, + "total_deaths": 611.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 1006.671, + "new_cases_per_million": 4.824, + "new_cases_smoothed_per_million": 4.807, + "total_deaths_per_million": 23.961, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.611, + "new_tests": 46224.0, + "total_tests": 6214453.0, + "total_tests_per_thousand": 243.705, + "new_tests_per_thousand": 1.813, + "new_tests_smoothed": 65203.0, + "new_tests_smoothed_per_thousand": 2.557, + "tests_per_case": 531.9590000000001, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 25746.0, + "new_cases": 76.0, + "new_cases_smoothed": 118.571, + "total_deaths": 652.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 1009.652, + "new_cases_per_million": 2.98, + "new_cases_smoothed_per_million": 4.65, + "total_deaths_per_million": 25.569, + "new_deaths_per_million": 1.608, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 41344.0, + "total_tests": 6255797.0, + "total_tests_per_thousand": 245.327, + "new_tests_per_thousand": 1.621, + "new_tests_smoothed": 63013.0, + "new_tests_smoothed_per_thousand": 2.471, + "tests_per_case": 531.435, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 25819.0, + "new_cases": 73.0, + "new_cases_smoothed": 109.429, + "total_deaths": 657.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 1012.515, + "new_cases_per_million": 2.863, + "new_cases_smoothed_per_million": 4.291, + "total_deaths_per_million": 25.765, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.739, + "new_tests": 63998.0, + "total_tests": 6319795.0, + "total_tests_per_thousand": 247.836, + "new_tests_per_thousand": 2.51, + "new_tests_smoothed": 61912.0, + "new_tests_smoothed_per_thousand": 2.428, + "tests_per_case": 565.775, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 25923.0, + "new_cases": 104.0, + "new_cases_smoothed": 102.571, + "total_deaths": 663.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 1016.593, + "new_cases_per_million": 4.078, + "new_cases_smoothed_per_million": 4.022, + "total_deaths_per_million": 26.0, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.639, + "new_tests": 70983.0, + "total_tests": 6390778.0, + "total_tests_per_thousand": 250.62, + "new_tests_per_thousand": 2.784, + "new_tests_smoothed": 59728.0, + "new_tests_smoothed_per_thousand": 2.342, + "tests_per_case": 582.306, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 26049.0, + "new_cases": 126.0, + "new_cases_smoothed": 103.857, + "total_deaths": 678.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1021.534, + "new_cases_per_million": 4.941, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 26.588, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.594 + }, + { + "date": "2020-09-05", + "total_cases": 26136.0, + "new_cases": 87.0, + "new_cases_smoothed": 98.286, + "total_deaths": 737.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 1024.946, + "new_cases_per_million": 3.412, + "new_cases_smoothed_per_million": 3.854, + "total_deaths_per_million": 28.902, + "new_deaths_per_million": 2.314, + "new_deaths_smoothed_per_million": 0.863 + } + ] + }, + "AUT": { + "continent": "Europe", + "location": "Austria", + "population": 9006400.0, + "population_density": 106.749, + "median_age": 44.4, + "aged_65_older": 19.202, + "aged_70_older": 13.748, + "gdp_per_capita": 45436.686, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 145.183, + "diabetes_prevalence": 6.35, + "female_smokers": 28.4, + "male_smokers": 30.9, + "hospital_beds_per_thousand": 7.37, + "life_expectancy": 81.54, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 218.0, + "total_tests_per_thousand": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.222, + "new_cases_per_million": 0.222, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 103.0, + "total_tests": 321.0, + "total_tests_per_thousand": 0.036, + "new_tests_per_thousand": 0.011, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 126.0, + "total_tests": 447.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.014, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.555, + "new_cases_per_million": 0.333, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 316.0, + "total_tests": 763.0, + "total_tests_per_thousand": 0.085, + "new_tests_per_thousand": 0.035, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.777, + "new_cases_per_million": 0.222, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 886.0, + "total_tests": 1649.0, + "total_tests_per_thousand": 0.183, + "new_tests_per_thousand": 0.098, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.11, + "new_cases_per_million": 0.333, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 14.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.554, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 18.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.999, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 0.286, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2683.0, + "total_tests_per_thousand": 0.298, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 136.889, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.665, + "new_cases_per_million": 0.666, + "new_cases_smoothed_per_million": 0.349, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 455.0, + "total_tests": 3138.0, + "total_tests_per_thousand": 0.348, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 402.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 127.90899999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 29.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.22, + "new_cases_per_million": 0.555, + "new_cases_smoothed_per_million": 0.428, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 573.0, + "total_tests": 3711.0, + "total_tests_per_thousand": 0.412, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 466.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 120.815, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 41.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.552, + "new_cases_per_million": 1.332, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 289.0, + "total_tests": 4000.0, + "total_tests_per_thousand": 0.444, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 89.833, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 74.0, + "new_cases": 33.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.216, + "new_cases_per_million": 3.664, + "new_cases_smoothed_per_million": 1.063, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 308.0, + "total_tests": 4308.0, + "total_tests_per_thousand": 0.478, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 39.701, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 99.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.992, + "new_cases_per_million": 2.776, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 201.0, + "total_tests": 4509.0, + "total_tests_per_thousand": 0.501, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 359.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 28.236, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 102.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.325, + "new_cases_per_million": 0.333, + "new_cases_smoothed_per_million": 1.396, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 225.0, + "total_tests": 4734.0, + "total_tests_per_thousand": 0.526, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 342.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 27.205, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 131.0, + "new_cases": 29.0, + "new_cases_smoothed": 16.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.545, + "new_cases_per_million": 3.22, + "new_cases_smoothed_per_million": 1.792, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 292.0, + "total_tests": 5026.0, + "total_tests_per_thousand": 0.558, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 20.752, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "total_cases": 182.0, + "new_cases": 51.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.208, + "new_cases_per_million": 5.663, + "new_cases_smoothed_per_million": 2.506, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 336.0, + "total_tests": 5362.0, + "total_tests_per_thousand": 0.595, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 318.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 14.089, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-12", + "total_cases": 246.0, + "new_cases": 64.0, + "new_cases_smoothed": 31.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.314, + "new_cases_per_million": 7.106, + "new_cases_smoothed_per_million": 3.442, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 507.0, + "total_tests": 5869.0, + "total_tests_per_thousand": 0.652, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 308.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 9.935, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-13", + "total_cases": 361.0, + "new_cases": 115.0, + "new_cases_smoothed": 45.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.083, + "new_cases_per_million": 12.769, + "new_cases_smoothed_per_million": 5.076, + "total_deaths_per_million": 0.111, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 713.0, + "total_tests": 6582.0, + "total_tests_per_thousand": 0.731, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 369.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 8.072000000000001, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-14", + "total_cases": 504.0, + "new_cases": 143.0, + "new_cases_smoothed": 61.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.96, + "new_cases_per_million": 15.878, + "new_cases_smoothed_per_million": 6.821, + "total_deaths_per_million": 0.111, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 885.0, + "total_tests": 7467.0, + "total_tests_per_thousand": 0.829, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 7.3420000000000005, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-15", + "total_cases": 655.0, + "new_cases": 151.0, + "new_cases_smoothed": 79.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 72.726, + "new_cases_per_million": 16.766, + "new_cases_smoothed_per_million": 8.819, + "total_deaths_per_million": 0.111, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 700.0, + "total_tests": 8167.0, + "total_tests_per_thousand": 0.907, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 6.585, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-16", + "total_cases": 860.0, + "new_cases": 205.0, + "new_cases_smoothed": 108.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 95.488, + "new_cases_per_million": 22.762, + "new_cases_smoothed_per_million": 12.023, + "total_deaths_per_million": 0.111, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 323.0, + "total_tests": 8490.0, + "total_tests_per_thousand": 0.943, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 537.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 4.959, + "positive_rate": 0.20199999999999999, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-17", + "total_cases": 1016.0, + "new_cases": 156.0, + "new_cases_smoothed": 126.429, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 112.809, + "new_cases_per_million": 17.321, + "new_cases_smoothed_per_million": 14.038, + "total_deaths_per_million": 0.333, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1788.0, + "total_tests": 10278.0, + "total_tests_per_thousand": 1.141, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 750.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 5.932, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-18", + "total_cases": 1332.0, + "new_cases": 316.0, + "new_cases_smoothed": 164.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 147.895, + "new_cases_per_million": 35.086, + "new_cases_smoothed_per_million": 18.241, + "total_deaths_per_million": 0.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1699.0, + "total_tests": 11977.0, + "total_tests_per_thousand": 1.33, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 945.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 5.752000000000001, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-19", + "total_cases": 1646.0, + "new_cases": 314.0, + "new_cases_smoothed": 200.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 182.759, + "new_cases_per_million": 34.864, + "new_cases_smoothed_per_million": 22.206, + "total_deaths_per_million": 0.444, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1747.0, + "total_tests": 13724.0, + "total_tests_per_thousand": 1.524, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 1122.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 5.61, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-20", + "total_cases": 2196.0, + "new_cases": 550.0, + "new_cases_smoothed": 262.143, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 243.827, + "new_cases_per_million": 61.068, + "new_cases_smoothed_per_million": 29.106, + "total_deaths_per_million": 0.666, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 1889.0, + "total_tests": 15613.0, + "total_tests_per_thousand": 1.734, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 1290.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 4.921, + "positive_rate": 0.203, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-21", + "total_cases": 2649.0, + "new_cases": 453.0, + "new_cases_smoothed": 306.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 294.124, + "new_cases_per_million": 50.298, + "new_cases_smoothed_per_million": 34.023, + "total_deaths_per_million": 0.666, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 2932.0, + "total_tests": 18545.0, + "total_tests_per_thousand": 2.059, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 1583.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 5.166, + "positive_rate": 0.19399999999999998, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-22", + "total_cases": 3024.0, + "new_cases": 375.0, + "new_cases_smoothed": 338.429, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 335.761, + "new_cases_per_million": 41.637, + "new_cases_smoothed_per_million": 37.576, + "total_deaths_per_million": 0.888, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 2823.0, + "total_tests": 21368.0, + "total_tests_per_thousand": 2.373, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 1886.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 5.5729999999999995, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-23", + "total_cases": 3631.0, + "new_cases": 607.0, + "new_cases_smoothed": 395.857, + "total_deaths": 16.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 403.158, + "new_cases_per_million": 67.397, + "new_cases_smoothed_per_million": 43.953, + "total_deaths_per_million": 1.777, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 2061.0, + "total_tests": 23429.0, + "total_tests_per_thousand": 2.601, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 2134.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 5.391, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-24", + "total_cases": 4486.0, + "new_cases": 855.0, + "new_cases_smoothed": 495.714, + "total_deaths": 25.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 498.09, + "new_cases_per_million": 94.932, + "new_cases_smoothed_per_million": 55.04, + "total_deaths_per_million": 2.776, + "new_deaths_per_million": 0.999, + "new_deaths_smoothed_per_million": 0.349, + "new_tests": 4962.0, + "total_tests": 28391.0, + "total_tests_per_thousand": 3.152, + "new_tests_per_thousand": 0.551, + "new_tests_smoothed": 2588.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 5.221, + "positive_rate": 0.192, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-25", + "total_cases": 5282.0, + "new_cases": 796.0, + "new_cases_smoothed": 564.286, + "total_deaths": 30.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 586.472, + "new_cases_per_million": 88.382, + "new_cases_smoothed_per_million": 62.654, + "total_deaths_per_million": 3.331, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.428, + "new_tests": 4016.0, + "total_tests": 32407.0, + "total_tests_per_thousand": 3.598, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 2919.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 5.172999999999999, + "positive_rate": 0.193, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-26", + "total_cases": 5888.0, + "new_cases": 606.0, + "new_cases_smoothed": 606.0, + "total_deaths": 34.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 653.757, + "new_cases_per_million": 67.285, + "new_cases_smoothed_per_million": 67.285, + "total_deaths_per_million": 3.775, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.476, + "new_tests": 3588.0, + "total_tests": 35995.0, + "total_tests_per_thousand": 3.997, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 3182.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 5.251, + "positive_rate": 0.19, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-27", + "total_cases": 7029.0, + "new_cases": 1141.0, + "new_cases_smoothed": 690.429, + "total_deaths": 52.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 780.445, + "new_cases_per_million": 126.688, + "new_cases_smoothed_per_million": 76.66, + "total_deaths_per_million": 5.774, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 0.73, + "new_tests": 3557.0, + "total_tests": 39552.0, + "total_tests_per_thousand": 4.392, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 3420.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 4.953, + "positive_rate": 0.20199999999999999, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-28", + "total_cases": 7697.0, + "new_cases": 668.0, + "new_cases_smoothed": 721.143, + "total_deaths": 68.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 854.614, + "new_cases_per_million": 74.169, + "new_cases_smoothed_per_million": 80.07, + "total_deaths_per_million": 7.55, + "new_deaths_per_million": 1.777, + "new_deaths_smoothed_per_million": 0.983, + "new_tests": 3198.0, + "total_tests": 42750.0, + "total_tests_per_thousand": 4.747, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 3458.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 4.795, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-29", + "total_cases": 8291.0, + "new_cases": 594.0, + "new_cases_smoothed": 752.429, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 920.568, + "new_cases_per_million": 65.953, + "new_cases_smoothed_per_million": 83.544, + "total_deaths_per_million": 7.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.952, + "new_tests": 3691.0, + "total_tests": 46441.0, + "total_tests_per_thousand": 5.156, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 3582.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 4.761, + "positive_rate": 0.21, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-30", + "total_cases": 8813.0, + "new_cases": 522.0, + "new_cases_smoothed": 740.286, + "total_deaths": 86.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 978.526, + "new_cases_per_million": 57.959, + "new_cases_smoothed_per_million": 82.196, + "total_deaths_per_million": 9.549, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 1.11, + "new_tests": 3014.0, + "total_tests": 49455.0, + "total_tests_per_thousand": 5.491, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 3718.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 5.022, + "positive_rate": 0.19899999999999998, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-31", + "total_cases": 9618.0, + "new_cases": 805.0, + "new_cases_smoothed": 733.143, + "total_deaths": 108.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 1067.907, + "new_cases_per_million": 89.381, + "new_cases_smoothed_per_million": 81.402, + "total_deaths_per_million": 11.991, + "new_deaths_per_million": 2.443, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 2889.0, + "total_tests": 52344.0, + "total_tests_per_thousand": 5.812, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 3422.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 4.668, + "positive_rate": 0.214, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 10182.0, + "new_cases": 564.0, + "new_cases_smoothed": 700.0, + "total_deaths": 128.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 1130.529, + "new_cases_per_million": 62.622, + "new_cases_smoothed_per_million": 77.723, + "total_deaths_per_million": 14.212, + "new_deaths_per_million": 2.221, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 3519.0, + "total_tests": 55863.0, + "total_tests_per_thousand": 6.203, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 3351.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 4.787, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 10711.0, + "new_cases": 529.0, + "new_cases_smoothed": 689.0, + "total_deaths": 146.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1189.265, + "new_cases_per_million": 58.736, + "new_cases_smoothed_per_million": 76.501, + "total_deaths_per_million": 16.211, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 1.777, + "new_tests": 36327.0, + "total_tests": 92190.0, + "total_tests_per_thousand": 10.236, + "new_tests_per_thousand": 4.033, + "new_tests_smoothed": 8028.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 11.652000000000001, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 11129.0, + "new_cases": 418.0, + "new_cases_smoothed": 585.714, + "total_deaths": 158.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1235.677, + "new_cases_per_million": 46.411, + "new_cases_smoothed_per_million": 65.033, + "total_deaths_per_million": 17.543, + "new_deaths_per_million": 1.332, + "new_deaths_smoothed_per_million": 1.681, + "new_tests": 6153.0, + "total_tests": 98343.0, + "total_tests_per_thousand": 10.919, + "new_tests_per_thousand": 0.683, + "new_tests_smoothed": 8399.0, + "new_tests_smoothed_per_thousand": 0.933, + "tests_per_case": 14.34, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 11525.0, + "new_cases": 396.0, + "new_cases_smoothed": 546.857, + "total_deaths": 168.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 1279.646, + "new_cases_per_million": 43.969, + "new_cases_smoothed_per_million": 60.719, + "total_deaths_per_million": 18.653, + "new_deaths_per_million": 1.11, + "new_deaths_smoothed_per_million": 1.586, + "new_tests": 5791.0, + "total_tests": 104134.0, + "total_tests_per_thousand": 11.562, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 8769.0, + "new_tests_smoothed_per_thousand": 0.974, + "tests_per_case": 16.035, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 11766.0, + "new_cases": 241.0, + "new_cases_smoothed": 496.429, + "total_deaths": 186.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1306.404, + "new_cases_per_million": 26.759, + "new_cases_smoothed_per_million": 55.12, + "total_deaths_per_million": 20.652, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 1.872, + "new_tests": 4282.0, + "total_tests": 108416.0, + "total_tests_per_thousand": 12.038, + "new_tests_per_thousand": 0.475, + "new_tests_smoothed": 8854.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 17.835, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 11983.0, + "new_cases": 217.0, + "new_cases_smoothed": 452.857, + "total_deaths": 204.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1330.498, + "new_cases_per_million": 24.094, + "new_cases_smoothed_per_million": 50.282, + "total_deaths_per_million": 22.651, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 1.872, + "new_tests": 2880.0, + "total_tests": 111296.0, + "total_tests_per_thousand": 12.357, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 8834.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 19.507, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 12297.0, + "new_cases": 314.0, + "new_cases_smoothed": 382.714, + "total_deaths": 220.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1365.362, + "new_cases_per_million": 34.864, + "new_cases_smoothed_per_million": 42.494, + "total_deaths_per_million": 24.427, + "new_deaths_per_million": 1.777, + "new_deaths_smoothed_per_million": 1.777, + "new_tests": 3939.0, + "total_tests": 115235.0, + "total_tests_per_thousand": 12.795, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 8984.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 23.474, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 12640.0, + "new_cases": 343.0, + "new_cases_smoothed": 351.143, + "total_deaths": 243.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1403.446, + "new_cases_per_million": 38.084, + "new_cases_smoothed_per_million": 38.988, + "total_deaths_per_million": 26.981, + "new_deaths_per_million": 2.554, + "new_deaths_smoothed_per_million": 1.824, + "new_tests": 5520.0, + "total_tests": 120755.0, + "total_tests_per_thousand": 13.408, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 9270.0, + "new_tests_smoothed_per_thousand": 1.029, + "tests_per_case": 26.4, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 12969.0, + "new_cases": 329.0, + "new_cases_smoothed": 322.571, + "total_deaths": 273.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 1439.976, + "new_cases_per_million": 36.53, + "new_cases_smoothed_per_million": 35.816, + "total_deaths_per_million": 30.312, + "new_deaths_per_million": 3.331, + "new_deaths_smoothed_per_million": 2.014, + "new_tests": 5532.0, + "total_tests": 126287.0, + "total_tests_per_thousand": 14.022, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 4871.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 15.100999999999999, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 13248.0, + "new_cases": 279.0, + "new_cases_smoothed": 302.714, + "total_deaths": 295.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 1470.954, + "new_cases_per_million": 30.978, + "new_cases_smoothed_per_million": 33.611, + "total_deaths_per_million": 32.754, + "new_deaths_per_million": 2.443, + "new_deaths_smoothed_per_million": 2.173, + "new_tests": 8456.0, + "total_tests": 134743.0, + "total_tests_per_thousand": 14.961, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 5200.0, + "new_tests_smoothed_per_thousand": 0.577, + "tests_per_case": 17.178, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-11", + "total_cases": 13560.0, + "new_cases": 312.0, + "new_cases_smoothed": 290.714, + "total_deaths": 319.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 1505.596, + "new_cases_per_million": 34.642, + "new_cases_smoothed_per_million": 32.279, + "total_deaths_per_million": 35.419, + "new_deaths_per_million": 2.665, + "new_deaths_smoothed_per_million": 2.395, + "new_tests": 6232.0, + "total_tests": 140975.0, + "total_tests_per_thousand": 15.653, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 5263.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 18.104, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-12", + "total_cases": 13807.0, + "new_cases": 247.0, + "new_cases_smoothed": 291.571, + "total_deaths": 337.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 1533.021, + "new_cases_per_million": 27.425, + "new_cases_smoothed_per_million": 32.374, + "total_deaths_per_million": 37.418, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 2.395, + "new_tests": 3902.0, + "total_tests": 144877.0, + "total_tests_per_thousand": 16.086, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 5209.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 17.865, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-13", + "total_cases": 13937.0, + "new_cases": 130.0, + "new_cases_smoothed": 279.143, + "total_deaths": 350.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 1547.455, + "new_cases_per_million": 14.434, + "new_cases_smoothed_per_million": 30.994, + "total_deaths_per_million": 38.861, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 2.316, + "new_tests": 3535.0, + "total_tests": 148412.0, + "total_tests_per_thousand": 16.479, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 5302.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 18.994, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-14", + "total_cases": 14043.0, + "new_cases": 106.0, + "new_cases_smoothed": 249.429, + "total_deaths": 368.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 1559.225, + "new_cases_per_million": 11.769, + "new_cases_smoothed_per_million": 27.695, + "total_deaths_per_million": 40.86, + "new_deaths_per_million": 1.999, + "new_deaths_smoothed_per_million": 2.348, + "new_tests": 3384.0, + "total_tests": 151796.0, + "total_tests_per_thousand": 16.854, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 5223.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 20.94, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-15", + "total_cases": 14234.0, + "new_cases": 191.0, + "new_cases_smoothed": 227.714, + "total_deaths": 384.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 1580.432, + "new_cases_per_million": 21.207, + "new_cases_smoothed_per_million": 25.284, + "total_deaths_per_million": 42.636, + "new_deaths_per_million": 1.777, + "new_deaths_smoothed_per_million": 2.237, + "new_tests": 5005.0, + "total_tests": 156801.0, + "total_tests_per_thousand": 17.41, + "new_tests_per_thousand": 0.556, + "new_tests_smoothed": 5149.0, + "new_tests_smoothed_per_thousand": 0.572, + "tests_per_case": 22.612, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-16", + "total_cases": 14370.0, + "new_cases": 136.0, + "new_cases_smoothed": 200.143, + "total_deaths": 393.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 1595.532, + "new_cases_per_million": 15.1, + "new_cases_smoothed_per_million": 22.222, + "total_deaths_per_million": 43.636, + "new_deaths_per_million": 0.999, + "new_deaths_smoothed_per_million": 1.903, + "new_tests": 6015.0, + "total_tests": 162816.0, + "total_tests_per_thousand": 18.078, + "new_tests_per_thousand": 0.668, + "new_tests_smoothed": 5218.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 26.070999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-17", + "total_cases": 14448.0, + "new_cases": 78.0, + "new_cases_smoothed": 171.429, + "total_deaths": 410.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1604.193, + "new_cases_per_million": 8.661, + "new_cases_smoothed_per_million": 19.034, + "total_deaths_per_million": 45.523, + "new_deaths_per_million": 1.888, + "new_deaths_smoothed_per_million": 1.824, + "new_tests": 6456.0, + "total_tests": 169272.0, + "total_tests_per_thousand": 18.795, + "new_tests_per_thousand": 0.717, + "new_tests_smoothed": 4933.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 28.776, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-18", + "total_cases": 14603.0, + "new_cases": 155.0, + "new_cases_smoothed": 149.0, + "total_deaths": 431.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1621.403, + "new_cases_per_million": 17.21, + "new_cases_smoothed_per_million": 16.544, + "total_deaths_per_million": 47.855, + "new_deaths_per_million": 2.332, + "new_deaths_smoothed_per_million": 1.777, + "new_tests": 6660.0, + "total_tests": 175932.0, + "total_tests_per_thousand": 19.534, + "new_tests_per_thousand": 0.739, + "new_tests_smoothed": 4994.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 33.516999999999996, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-19", + "total_cases": 14662.0, + "new_cases": 59.0, + "new_cases_smoothed": 122.143, + "total_deaths": 443.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1627.953, + "new_cases_per_million": 6.551, + "new_cases_smoothed_per_million": 13.562, + "total_deaths_per_million": 49.187, + "new_deaths_per_million": 1.332, + "new_deaths_smoothed_per_million": 1.681, + "new_tests": 3311.0, + "total_tests": 179243.0, + "total_tests_per_thousand": 19.902, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 4909.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 40.191, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-20", + "total_cases": 14710.0, + "new_cases": 48.0, + "new_cases_smoothed": 110.429, + "total_deaths": 452.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 1633.283, + "new_cases_per_million": 5.33, + "new_cases_smoothed_per_million": 12.261, + "total_deaths_per_million": 50.187, + "new_deaths_per_million": 0.999, + "new_deaths_smoothed_per_million": 1.618, + "new_tests": 3706.0, + "total_tests": 182949.0, + "total_tests_per_thousand": 20.313, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 4934.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 44.68, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-21", + "total_cases": 14783.0, + "new_cases": 73.0, + "new_cases_smoothed": 105.714, + "total_deaths": 462.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 1641.388, + "new_cases_per_million": 8.105, + "new_cases_smoothed_per_million": 11.738, + "total_deaths_per_million": 51.297, + "new_deaths_per_million": 1.11, + "new_deaths_smoothed_per_million": 1.491, + "new_tests": 6069.0, + "total_tests": 189018.0, + "total_tests_per_thousand": 20.987, + "new_tests_per_thousand": 0.674, + "new_tests_smoothed": 5317.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 50.29600000000001, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-22", + "total_cases": 14833.0, + "new_cases": 50.0, + "new_cases_smoothed": 85.571, + "total_deaths": 463.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 1646.94, + "new_cases_per_million": 5.552, + "new_cases_smoothed_per_million": 9.501, + "total_deaths_per_million": 51.408, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 1.253, + "new_tests": 12776.0, + "total_tests": 201794.0, + "total_tests_per_thousand": 22.406, + "new_tests_per_thousand": 1.419, + "new_tests_smoothed": 6428.0, + "new_tests_smoothed_per_thousand": 0.714, + "tests_per_case": 75.119, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-23", + "total_cases": 14924.0, + "new_cases": 91.0, + "new_cases_smoothed": 79.143, + "total_deaths": 494.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 1657.044, + "new_cases_per_million": 10.104, + "new_cases_smoothed_per_million": 8.787, + "total_deaths_per_million": 54.85, + "new_deaths_per_million": 3.442, + "new_deaths_smoothed_per_million": 1.602, + "new_tests": 4041.0, + "total_tests": 205835.0, + "total_tests_per_thousand": 22.854, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 6146.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 77.657, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-24", + "total_cases": 14985.0, + "new_cases": 61.0, + "new_cases_smoothed": 76.714, + "total_deaths": 508.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 1663.817, + "new_cases_per_million": 6.773, + "new_cases_smoothed_per_million": 8.518, + "total_deaths_per_million": 56.404, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 6851.0, + "total_tests": 212686.0, + "total_tests_per_thousand": 23.615, + "new_tests_per_thousand": 0.761, + "new_tests_smoothed": 6202.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 80.845, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-25", + "total_cases": 15068.0, + "new_cases": 83.0, + "new_cases_smoothed": 66.429, + "total_deaths": 513.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1673.033, + "new_cases_per_million": 9.216, + "new_cases_smoothed_per_million": 7.376, + "total_deaths_per_million": 56.959, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 1.301, + "new_tests": 8403.0, + "total_tests": 221089.0, + "total_tests_per_thousand": 24.548, + "new_tests_per_thousand": 0.933, + "new_tests_smoothed": 6451.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 97.11200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-26", + "total_cases": 15134.0, + "new_cases": 66.0, + "new_cases_smoothed": 67.429, + "total_deaths": 536.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 1680.361, + "new_cases_per_million": 7.328, + "new_cases_smoothed_per_million": 7.487, + "total_deaths_per_million": 59.513, + "new_deaths_per_million": 2.554, + "new_deaths_smoothed_per_million": 1.475, + "new_tests": 6542.0, + "total_tests": 227631.0, + "total_tests_per_thousand": 25.274, + "new_tests_per_thousand": 0.726, + "new_tests_smoothed": 6913.0, + "new_tests_smoothed_per_thousand": 0.768, + "tests_per_case": 102.523, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-27", + "total_cases": 15189.0, + "new_cases": 55.0, + "new_cases_smoothed": 68.429, + "total_deaths": 542.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 1686.467, + "new_cases_per_million": 6.107, + "new_cases_smoothed_per_million": 7.598, + "total_deaths_per_million": 60.179, + "new_deaths_per_million": 0.666, + "new_deaths_smoothed_per_million": 1.428, + "new_tests": 4906.0, + "total_tests": 232537.0, + "total_tests_per_thousand": 25.819, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 7084.0, + "new_tests_smoothed_per_thousand": 0.787, + "tests_per_case": 103.524, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-28", + "total_cases": 15256.0, + "new_cases": 67.0, + "new_cases_smoothed": 67.571, + "total_deaths": 549.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 1693.907, + "new_cases_per_million": 7.439, + "new_cases_smoothed_per_million": 7.503, + "total_deaths_per_million": 60.957, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 1.38, + "new_tests": 7041.0, + "total_tests": 239578.0, + "total_tests_per_thousand": 26.601, + "new_tests_per_thousand": 0.782, + "new_tests_smoothed": 7223.0, + "new_tests_smoothed_per_thousand": 0.802, + "tests_per_case": 106.89399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-29", + "total_cases": 15314.0, + "new_cases": 58.0, + "new_cases_smoothed": 68.714, + "total_deaths": 569.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1700.346, + "new_cases_per_million": 6.44, + "new_cases_smoothed_per_million": 7.629, + "total_deaths_per_million": 63.177, + "new_deaths_per_million": 2.221, + "new_deaths_smoothed_per_million": 1.681, + "new_tests": 8176.0, + "total_tests": 247754.0, + "total_tests_per_thousand": 27.509, + "new_tests_per_thousand": 0.908, + "new_tests_smoothed": 6566.0, + "new_tests_smoothed_per_thousand": 0.729, + "tests_per_case": 95.555, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-04-30", + "total_cases": 15364.0, + "new_cases": 50.0, + "new_cases_smoothed": 62.857, + "total_deaths": 580.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 1705.898, + "new_cases_per_million": 5.552, + "new_cases_smoothed_per_million": 6.979, + "total_deaths_per_million": 64.399, + "new_deaths_per_million": 1.221, + "new_deaths_smoothed_per_million": 1.364, + "new_tests": 8645.0, + "total_tests": 256399.0, + "total_tests_per_thousand": 28.469, + "new_tests_per_thousand": 0.96, + "new_tests_smoothed": 7223.0, + "new_tests_smoothed_per_thousand": 0.802, + "tests_per_case": 114.911, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-01", + "total_cases": 15424.0, + "new_cases": 60.0, + "new_cases_smoothed": 62.714, + "total_deaths": 584.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1712.56, + "new_cases_per_million": 6.662, + "new_cases_smoothed_per_million": 6.963, + "total_deaths_per_million": 64.843, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 1.205, + "new_tests": 7680.0, + "total_tests": 264079.0, + "total_tests_per_thousand": 29.321, + "new_tests_per_thousand": 0.853, + "new_tests_smoothed": 7342.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 117.071, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-02", + "total_cases": 15458.0, + "new_cases": 34.0, + "new_cases_smoothed": 55.714, + "total_deaths": 589.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1716.335, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 6.186, + "total_deaths_per_million": 65.398, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 1.205, + "new_tests": 5540.0, + "total_tests": 269619.0, + "total_tests_per_thousand": 29.936, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 6933.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 124.43799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-03", + "total_cases": 15470.0, + "new_cases": 12.0, + "new_cases_smoothed": 48.0, + "total_deaths": 596.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1717.667, + "new_cases_per_million": 1.332, + "new_cases_smoothed_per_million": 5.33, + "total_deaths_per_million": 66.175, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 0.952, + "new_tests": 4736.0, + "total_tests": 274355.0, + "total_tests_per_thousand": 30.462, + "new_tests_per_thousand": 0.526, + "new_tests_smoothed": 6675.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 139.062, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-04", + "total_cases": 15538.0, + "new_cases": 68.0, + "new_cases_smoothed": 49.857, + "total_deaths": 598.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1725.218, + "new_cases_per_million": 7.55, + "new_cases_smoothed_per_million": 5.536, + "total_deaths_per_million": 66.397, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.888, + "new_tests": 4716.0, + "total_tests": 279071.0, + "total_tests_per_thousand": 30.986, + "new_tests_per_thousand": 0.524, + "new_tests_smoothed": 6648.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 133.341, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-05", + "total_cases": 15569.0, + "new_cases": 31.0, + "new_cases_smoothed": 44.714, + "total_deaths": 600.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1728.66, + "new_cases_per_million": 3.442, + "new_cases_smoothed_per_million": 4.965, + "total_deaths_per_million": 66.619, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.809, + "new_tests": 6812.0, + "total_tests": 285883.0, + "total_tests_per_thousand": 31.742, + "new_tests_per_thousand": 0.756, + "new_tests_smoothed": 6615.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 147.939, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-06", + "total_cases": 15586.0, + "new_cases": 17.0, + "new_cases_smoothed": 38.857, + "total_deaths": 606.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1730.547, + "new_cases_per_million": 1.888, + "new_cases_smoothed_per_million": 4.314, + "total_deaths_per_million": 67.285, + "new_deaths_per_million": 0.666, + "new_deaths_smoothed_per_million": 0.587, + "new_tests": 6371.0, + "total_tests": 292254.0, + "total_tests_per_thousand": 32.45, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 6357.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 163.599, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-07", + "total_cases": 15651.0, + "new_cases": 65.0, + "new_cases_smoothed": 41.0, + "total_deaths": 608.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1737.764, + "new_cases_per_million": 7.217, + "new_cases_smoothed_per_million": 4.552, + "total_deaths_per_million": 67.508, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 5640.0, + "total_tests": 297894.0, + "total_tests_per_thousand": 33.076, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 5928.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 144.585, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-08", + "total_cases": 15673.0, + "new_cases": 22.0, + "new_cases_smoothed": 35.571, + "total_deaths": 609.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1740.207, + "new_cases_per_million": 2.443, + "new_cases_smoothed_per_million": 3.95, + "total_deaths_per_million": 67.619, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 6175.0, + "total_tests": 304069.0, + "total_tests_per_thousand": 33.761, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 5713.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 160.606, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-09", + "total_cases": 15735.0, + "new_cases": 62.0, + "new_cases_smoothed": 39.571, + "total_deaths": 614.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1747.091, + "new_cases_per_million": 6.884, + "new_cases_smoothed_per_million": 4.394, + "total_deaths_per_million": 68.174, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 7621.0, + "total_tests": 311690.0, + "total_tests_per_thousand": 34.608, + "new_tests_per_thousand": 0.846, + "new_tests_smoothed": 6010.0, + "new_tests_smoothed_per_thousand": 0.667, + "tests_per_case": 151.877, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-10", + "total_cases": 15777.0, + "new_cases": 42.0, + "new_cases_smoothed": 43.857, + "total_deaths": 615.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1751.754, + "new_cases_per_million": 4.663, + "new_cases_smoothed_per_million": 4.87, + "total_deaths_per_million": 68.285, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.301, + "new_tests": 4818.0, + "total_tests": 316508.0, + "total_tests_per_thousand": 35.143, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 6022.0, + "new_tests_smoothed_per_thousand": 0.669, + "tests_per_case": 137.309, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.81 + }, + { + "date": "2020-05-11", + "total_cases": 15787.0, + "new_cases": 10.0, + "new_cases_smoothed": 35.571, + "total_deaths": 618.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1752.865, + "new_cases_per_million": 1.11, + "new_cases_smoothed_per_million": 3.95, + "total_deaths_per_million": 68.618, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 2976.0, + "total_tests": 319484.0, + "total_tests_per_thousand": 35.473, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 5773.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 162.293, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-12", + "total_cases": 15874.0, + "new_cases": 87.0, + "new_cases_smoothed": 43.571, + "total_deaths": 620.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1762.524, + "new_cases_per_million": 9.66, + "new_cases_smoothed_per_million": 4.838, + "total_deaths_per_million": 68.84, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 9830.0, + "total_tests": 329314.0, + "total_tests_per_thousand": 36.564, + "new_tests_per_thousand": 1.091, + "new_tests_smoothed": 6204.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 142.387, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-13", + "total_cases": 15910.0, + "new_cases": 36.0, + "new_cases_smoothed": 46.286, + "total_deaths": 623.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1766.522, + "new_cases_per_million": 3.997, + "new_cases_smoothed_per_million": 5.139, + "total_deaths_per_million": 69.173, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.27, + "new_tests": 6938.0, + "total_tests": 336252.0, + "total_tests_per_thousand": 37.335, + "new_tests_per_thousand": 0.77, + "new_tests_smoothed": 6285.0, + "new_tests_smoothed_per_thousand": 0.698, + "tests_per_case": 135.787, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-14", + "total_cases": 15964.0, + "new_cases": 54.0, + "new_cases_smoothed": 44.714, + "total_deaths": 624.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1772.517, + "new_cases_per_million": 5.996, + "new_cases_smoothed_per_million": 4.965, + "total_deaths_per_million": 69.284, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 8354.0, + "total_tests": 344606.0, + "total_tests_per_thousand": 38.262, + "new_tests_per_thousand": 0.928, + "new_tests_smoothed": 6673.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 149.236, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-15", + "total_cases": 16005.0, + "new_cases": 41.0, + "new_cases_smoothed": 47.429, + "total_deaths": 626.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1777.07, + "new_cases_per_million": 4.552, + "new_cases_smoothed_per_million": 5.266, + "total_deaths_per_million": 69.506, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.27, + "new_tests": 6745.0, + "total_tests": 351351.0, + "total_tests_per_thousand": 39.011, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 6755.0, + "new_tests_smoothed_per_thousand": 0.75, + "tests_per_case": 142.425, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-16", + "total_cases": 16068.0, + "new_cases": 63.0, + "new_cases_smoothed": 47.571, + "total_deaths": 628.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1784.065, + "new_cases_per_million": 6.995, + "new_cases_smoothed_per_million": 5.282, + "total_deaths_per_million": 69.728, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 6042.0, + "total_tests": 357393.0, + "total_tests_per_thousand": 39.682, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 6529.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 137.246, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-17", + "total_cases": 16140.0, + "new_cases": 72.0, + "new_cases_smoothed": 51.857, + "total_deaths": 628.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1792.059, + "new_cases_per_million": 7.994, + "new_cases_smoothed_per_million": 5.758, + "total_deaths_per_million": 69.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 5116.0, + "total_tests": 362509.0, + "total_tests_per_thousand": 40.25, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 6572.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 126.73299999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-18", + "total_cases": 16154.0, + "new_cases": 14.0, + "new_cases_smoothed": 52.429, + "total_deaths": 629.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1793.613, + "new_cases_per_million": 1.554, + "new_cases_smoothed_per_million": 5.821, + "total_deaths_per_million": 69.839, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 3364.0, + "total_tests": 365873.0, + "total_tests_per_thousand": 40.624, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 6627.0, + "new_tests_smoothed_per_thousand": 0.736, + "tests_per_case": 126.40100000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-19", + "total_cases": 16179.0, + "new_cases": 25.0, + "new_cases_smoothed": 43.571, + "total_deaths": 629.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1796.389, + "new_cases_per_million": 2.776, + "new_cases_smoothed_per_million": 4.838, + "total_deaths_per_million": 69.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 6562.0, + "total_tests": 372435.0, + "total_tests_per_thousand": 41.352, + "new_tests_per_thousand": 0.729, + "new_tests_smoothed": 6160.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 141.377, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-20", + "total_cases": 16257.0, + "new_cases": 78.0, + "new_cases_smoothed": 49.571, + "total_deaths": 632.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1805.05, + "new_cases_per_million": 8.661, + "new_cases_smoothed_per_million": 5.504, + "total_deaths_per_million": 70.172, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 7157.0, + "total_tests": 379592.0, + "total_tests_per_thousand": 42.147, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 6191.0, + "new_tests_smoothed_per_thousand": 0.687, + "tests_per_case": 124.89, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-21", + "total_cases": 16275.0, + "new_cases": 18.0, + "new_cases_smoothed": 44.429, + "total_deaths": 633.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1807.048, + "new_cases_per_million": 1.999, + "new_cases_smoothed_per_million": 4.933, + "total_deaths_per_million": 70.283, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.143, + "new_tests_smoothed": 5776.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 130.006, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-22", + "total_cases": 16332.0, + "new_cases": 57.0, + "new_cases_smoothed": 46.714, + "total_deaths": 633.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1813.377, + "new_cases_per_million": 6.329, + "new_cases_smoothed_per_million": 5.187, + "total_deaths_per_million": 70.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "total_tests": 390488.0, + "total_tests_per_thousand": 43.357, + "new_tests_smoothed": 5591.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 119.685, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-23", + "total_cases": 16361.0, + "new_cases": 29.0, + "new_cases_smoothed": 41.857, + "total_deaths": 635.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1816.597, + "new_cases_per_million": 3.22, + "new_cases_smoothed_per_million": 4.647, + "total_deaths_per_million": 70.505, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 5875.0, + "total_tests": 396363.0, + "total_tests_per_thousand": 44.009, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 5567.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-24", + "total_cases": 16407.0, + "new_cases": 46.0, + "new_cases_smoothed": 38.143, + "total_deaths": 639.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1821.705, + "new_cases_per_million": 5.107, + "new_cases_smoothed_per_million": 4.235, + "total_deaths_per_million": 70.95, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 5494.0, + "total_tests": 401857.0, + "total_tests_per_thousand": 44.619, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 5621.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 147.36700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-25", + "total_cases": 16439.0, + "new_cases": 32.0, + "new_cases_smoothed": 40.714, + "total_deaths": 640.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1825.258, + "new_cases_per_million": 3.553, + "new_cases_smoothed_per_million": 4.521, + "total_deaths_per_million": 71.061, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 3484.0, + "total_tests": 405341.0, + "total_tests_per_thousand": 45.006, + "new_tests_per_thousand": 0.387, + "new_tests_smoothed": 5638.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 138.477, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-26", + "total_cases": 16459.0, + "new_cases": 20.0, + "new_cases_smoothed": 40.0, + "total_deaths": 641.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1827.478, + "new_cases_per_million": 2.221, + "new_cases_smoothed_per_million": 4.441, + "total_deaths_per_million": 71.172, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 5844.0, + "total_tests": 411185.0, + "total_tests_per_thousand": 45.655, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 5536.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 138.4, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-27", + "total_cases": 16497.0, + "new_cases": 38.0, + "new_cases_smoothed": 34.286, + "total_deaths": 643.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1831.697, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 3.807, + "total_deaths_per_million": 71.394, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 7521.0, + "total_tests": 418706.0, + "total_tests_per_thousand": 46.49, + "new_tests_per_thousand": 0.835, + "new_tests_smoothed": 5588.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 162.983, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-28", + "total_cases": 16515.0, + "new_cases": 18.0, + "new_cases_smoothed": 34.286, + "total_deaths": 645.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1833.696, + "new_cases_per_million": 1.999, + "new_cases_smoothed_per_million": 3.807, + "total_deaths_per_million": 71.616, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 8666.0, + "total_tests": 427372.0, + "total_tests_per_thousand": 47.452, + "new_tests_per_thousand": 0.962, + "new_tests_smoothed": 6047.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 176.37099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-29", + "total_cases": 16543.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.143, + "total_deaths": 668.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1836.805, + "new_cases_per_million": 3.109, + "new_cases_smoothed_per_million": 3.347, + "total_deaths_per_million": 74.169, + "new_deaths_per_million": 2.554, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 6930.0, + "total_tests": 434302.0, + "total_tests_per_thousand": 48.221, + "new_tests_per_thousand": 0.769, + "new_tests_smoothed": 6259.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 207.645, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-30", + "total_cases": 16594.0, + "new_cases": 51.0, + "new_cases_smoothed": 33.286, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1842.468, + "new_cases_per_million": 5.663, + "new_cases_smoothed_per_million": 3.696, + "total_deaths_per_million": 74.169, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.523, + "new_tests": 7841.0, + "total_tests": 442143.0, + "total_tests_per_thousand": 49.092, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 6540.0, + "new_tests_smoothed_per_thousand": 0.726, + "tests_per_case": 196.481, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-31", + "total_cases": 16638.0, + "new_cases": 44.0, + "new_cases_smoothed": 33.0, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1847.353, + "new_cases_per_million": 4.885, + "new_cases_smoothed_per_million": 3.664, + "total_deaths_per_million": 74.169, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.46, + "new_tests": 6391.0, + "total_tests": 448534.0, + "total_tests_per_thousand": 49.802, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 6668.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 202.06099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-01", + "total_cases": 16642.0, + "new_cases": 4.0, + "new_cases_smoothed": 29.0, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1847.797, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 3.22, + "total_deaths_per_million": 74.169, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 3286.0, + "total_tests": 451820.0, + "total_tests_per_thousand": 50.167, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 6640.0, + "new_tests_smoothed_per_thousand": 0.737, + "tests_per_case": 228.96599999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-02", + "total_cases": 16663.0, + "new_cases": 21.0, + "new_cases_smoothed": 29.143, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1850.129, + "new_cases_per_million": 2.332, + "new_cases_smoothed_per_million": 3.236, + "total_deaths_per_million": 74.169, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.428, + "new_tests": 4558.0, + "total_tests": 456378.0, + "total_tests_per_thousand": 50.673, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 6456.0, + "new_tests_smoothed_per_thousand": 0.717, + "tests_per_case": 221.52900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-03", + "total_cases": 16674.0, + "new_cases": 11.0, + "new_cases_smoothed": 25.286, + "total_deaths": 669.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1851.35, + "new_cases_per_million": 1.221, + "new_cases_smoothed_per_million": 2.808, + "total_deaths_per_million": 74.281, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.412, + "new_tests": 6580.0, + "total_tests": 462958.0, + "total_tests_per_thousand": 51.403, + "new_tests_per_thousand": 0.731, + "new_tests_smoothed": 6322.0, + "new_tests_smoothed_per_thousand": 0.702, + "tests_per_case": 250.023, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-04", + "total_cases": 16705.0, + "new_cases": 31.0, + "new_cases_smoothed": 27.143, + "total_deaths": 670.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1854.792, + "new_cases_per_million": 3.442, + "new_cases_smoothed_per_million": 3.014, + "total_deaths_per_million": 74.392, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 8508.0, + "total_tests": 471466.0, + "total_tests_per_thousand": 52.348, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 6299.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 232.06799999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-05", + "total_cases": 16741.0, + "new_cases": 36.0, + "new_cases_smoothed": 28.286, + "total_deaths": 670.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1858.789, + "new_cases_per_million": 3.997, + "new_cases_smoothed_per_million": 3.141, + "total_deaths_per_million": 74.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 7983.0, + "total_tests": 479449.0, + "total_tests_per_thousand": 53.234, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 6450.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 228.03, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-06", + "total_cases": 16803.0, + "new_cases": 62.0, + "new_cases_smoothed": 29.857, + "total_deaths": 672.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1865.673, + "new_cases_per_million": 6.884, + "new_cases_smoothed_per_million": 3.315, + "total_deaths_per_million": 74.614, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 6463.0, + "total_tests": 485912.0, + "total_tests_per_thousand": 53.952, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 6253.0, + "new_tests_smoothed_per_thousand": 0.694, + "tests_per_case": 209.43099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-07", + "total_cases": 16822.0, + "new_cases": 19.0, + "new_cases_smoothed": 26.286, + "total_deaths": 672.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1867.783, + "new_cases_per_million": 2.11, + "new_cases_smoothed_per_million": 2.919, + "total_deaths_per_million": 74.614, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 3685.0, + "total_tests": 489597.0, + "total_tests_per_thousand": 54.361, + "new_tests_per_thousand": 0.409, + "new_tests_smoothed": 5866.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 223.16299999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-08", + "total_cases": 16868.0, + "new_cases": 46.0, + "new_cases_smoothed": 32.286, + "total_deaths": 672.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1872.89, + "new_cases_per_million": 5.107, + "new_cases_smoothed_per_million": 3.585, + "total_deaths_per_million": 74.614, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 5164.0, + "total_tests": 494761.0, + "total_tests_per_thousand": 54.934, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 6134.0, + "new_tests_smoothed_per_thousand": 0.681, + "tests_per_case": 189.99099999999999, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-09", + "total_cases": 16889.0, + "new_cases": 21.0, + "new_cases_smoothed": 32.286, + "total_deaths": 672.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1875.222, + "new_cases_per_million": 2.332, + "new_cases_smoothed_per_million": 3.585, + "total_deaths_per_million": 74.614, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 6160.0, + "total_tests": 500921.0, + "total_tests_per_thousand": 55.618, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 6363.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 197.084, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-10", + "total_cases": 16902.0, + "new_cases": 13.0, + "new_cases_smoothed": 32.571, + "total_deaths": 672.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1876.665, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 3.616, + "total_deaths_per_million": 74.614, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 5423.0, + "total_tests": 506344.0, + "total_tests_per_thousand": 56.22, + "new_tests_per_thousand": 0.602, + "new_tests_smoothed": 6198.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 190.28900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-11", + "total_cases": 16936.0, + "new_cases": 34.0, + "new_cases_smoothed": 33.0, + "total_deaths": 673.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1880.441, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.664, + "total_deaths_per_million": 74.725, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 6157.0, + "total_tests": 512501.0, + "total_tests_per_thousand": 56.904, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 5862.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 177.636, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-12", + "total_cases": 16964.0, + "new_cases": 28.0, + "new_cases_smoothed": 31.857, + "total_deaths": 674.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1883.549, + "new_cases_per_million": 3.109, + "new_cases_smoothed_per_million": 3.537, + "total_deaths_per_million": 74.836, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.063, + "new_tests_smoothed": 5327.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 167.215, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-13", + "total_cases": 16994.0, + "new_cases": 30.0, + "new_cases_smoothed": 27.286, + "total_deaths": 675.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1886.88, + "new_cases_per_million": 3.331, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 74.947, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.048, + "total_tests": 520976.0, + "total_tests_per_thousand": 57.845, + "new_tests_smoothed": 5009.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 183.576, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-14", + "total_cases": 17014.0, + "new_cases": 20.0, + "new_cases_smoothed": 27.429, + "total_deaths": 677.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1889.101, + "new_cases_per_million": 2.221, + "new_cases_smoothed_per_million": 3.045, + "total_deaths_per_million": 75.169, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 3864.0, + "total_tests": 524840.0, + "total_tests_per_thousand": 58.274, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 5035.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 183.56799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-15", + "total_cases": 17038.0, + "new_cases": 24.0, + "new_cases_smoothed": 24.286, + "total_deaths": 677.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1891.766, + "new_cases_per_million": 2.665, + "new_cases_smoothed_per_million": 2.696, + "total_deaths_per_million": 75.169, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 2830.0, + "total_tests": 527670.0, + "total_tests_per_thousand": 58.588, + "new_tests_per_thousand": 0.314, + "new_tests_smoothed": 4701.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 193.571, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-16", + "total_cases": 17065.0, + "new_cases": 27.0, + "new_cases_smoothed": 25.143, + "total_deaths": 678.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1894.764, + "new_cases_per_million": 2.998, + "new_cases_smoothed_per_million": 2.792, + "total_deaths_per_million": 75.28, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 5030.0, + "total_tests": 532700.0, + "total_tests_per_thousand": 59.147, + "new_tests_per_thousand": 0.558, + "new_tests_smoothed": 4540.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 180.56799999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-17", + "total_cases": 17098.0, + "new_cases": 33.0, + "new_cases_smoothed": 28.0, + "total_deaths": 681.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1898.428, + "new_cases_per_million": 3.664, + "new_cases_smoothed_per_million": 3.109, + "total_deaths_per_million": 75.613, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 7915.0, + "total_tests": 540615.0, + "total_tests_per_thousand": 60.026, + "new_tests_per_thousand": 0.879, + "new_tests_smoothed": 4896.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 174.857, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-18", + "total_cases": 17115.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.571, + "total_deaths": 687.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1900.315, + "new_cases_per_million": 1.888, + "new_cases_smoothed_per_million": 2.839, + "total_deaths_per_million": 76.279, + "new_deaths_per_million": 0.666, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 5312.0, + "total_tests": 545927.0, + "total_tests_per_thousand": 60.615, + "new_tests_per_thousand": 0.59, + "new_tests_smoothed": 4775.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 186.732, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-19", + "total_cases": 17155.0, + "new_cases": 40.0, + "new_cases_smoothed": 27.286, + "total_deaths": 688.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1904.757, + "new_cases_per_million": 4.441, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 76.39, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 6203.0, + "total_tests": 552130.0, + "total_tests_per_thousand": 61.304, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 5056.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 185.298, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-20", + "total_cases": 17185.0, + "new_cases": 30.0, + "new_cases_smoothed": 27.286, + "total_deaths": 688.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1908.088, + "new_cases_per_million": 3.331, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 76.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 6078.0, + "total_tests": 558208.0, + "total_tests_per_thousand": 61.979, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 5319.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 194.937, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-21", + "total_cases": 17247.0, + "new_cases": 62.0, + "new_cases_smoothed": 33.286, + "total_deaths": 688.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1914.972, + "new_cases_per_million": 6.884, + "new_cases_smoothed_per_million": 3.696, + "total_deaths_per_million": 76.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 2376.0, + "total_tests": 560584.0, + "total_tests_per_thousand": 62.243, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 5106.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 153.399, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-22", + "total_cases": 17285.0, + "new_cases": 38.0, + "new_cases_smoothed": 35.286, + "total_deaths": 690.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1919.191, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 3.918, + "total_deaths_per_million": 76.612, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 5216.0, + "total_tests": 565800.0, + "total_tests_per_thousand": 62.822, + "new_tests_per_thousand": 0.579, + "new_tests_smoothed": 5447.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 154.368, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-23", + "total_cases": 17320.0, + "new_cases": 35.0, + "new_cases_smoothed": 36.429, + "total_deaths": 690.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1923.077, + "new_cases_per_million": 3.886, + "new_cases_smoothed_per_million": 4.045, + "total_deaths_per_million": 76.612, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 6673.0, + "total_tests": 572473.0, + "total_tests_per_thousand": 63.563, + "new_tests_per_thousand": 0.741, + "new_tests_smoothed": 5682.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 155.976, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-24", + "total_cases": 17351.0, + "new_cases": 31.0, + "new_cases_smoothed": 36.143, + "total_deaths": 693.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1926.519, + "new_cases_per_million": 3.442, + "new_cases_smoothed_per_million": 4.013, + "total_deaths_per_million": 76.945, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 6111.0, + "total_tests": 578584.0, + "total_tests_per_thousand": 64.241, + "new_tests_per_thousand": 0.679, + "new_tests_smoothed": 5424.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 150.071, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-25", + "total_cases": 17384.0, + "new_cases": 33.0, + "new_cases_smoothed": 38.429, + "total_deaths": 693.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1930.183, + "new_cases_per_million": 3.664, + "new_cases_smoothed_per_million": 4.267, + "total_deaths_per_million": 76.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 5659.0, + "total_tests": 584243.0, + "total_tests_per_thousand": 64.87, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 5474.0, + "new_tests_smoothed_per_thousand": 0.608, + "tests_per_case": 142.446, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-26", + "total_cases": 17431.0, + "new_cases": 47.0, + "new_cases_smoothed": 39.429, + "total_deaths": 698.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1935.401, + "new_cases_per_million": 5.219, + "new_cases_smoothed_per_million": 4.378, + "total_deaths_per_million": 77.5, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 6199.0, + "total_tests": 590442.0, + "total_tests_per_thousand": 65.558, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 5473.0, + "new_tests_smoothed_per_thousand": 0.608, + "tests_per_case": 138.808, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-27", + "total_cases": 17498.0, + "new_cases": 67.0, + "new_cases_smoothed": 44.714, + "total_deaths": 698.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1942.841, + "new_cases_per_million": 7.439, + "new_cases_smoothed_per_million": 4.965, + "total_deaths_per_million": 77.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 7053.0, + "total_tests": 597495.0, + "total_tests_per_thousand": 66.341, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 5612.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 125.508, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-28", + "total_cases": 17562.0, + "new_cases": 64.0, + "new_cases_smoothed": 45.0, + "total_deaths": 700.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1949.947, + "new_cases_per_million": 7.106, + "new_cases_smoothed_per_million": 4.996, + "total_deaths_per_million": 77.723, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 5025.0, + "total_tests": 602520.0, + "total_tests_per_thousand": 66.899, + "new_tests_per_thousand": 0.558, + "new_tests_smoothed": 5991.0, + "new_tests_smoothed_per_thousand": 0.665, + "tests_per_case": 133.13299999999998, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-29", + "total_cases": 17625.0, + "new_cases": 63.0, + "new_cases_smoothed": 48.571, + "total_deaths": 702.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1956.942, + "new_cases_per_million": 6.995, + "new_cases_smoothed_per_million": 5.393, + "total_deaths_per_million": 77.945, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 3855.0, + "total_tests": 606375.0, + "total_tests_per_thousand": 67.327, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 5796.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 119.329, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-06-30", + "total_cases": 17666.0, + "new_cases": 41.0, + "new_cases_smoothed": 49.429, + "total_deaths": 703.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1961.494, + "new_cases_per_million": 4.552, + "new_cases_smoothed_per_million": 5.488, + "total_deaths_per_million": 78.056, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 6381.0, + "total_tests": 612756.0, + "total_tests_per_thousand": 68.036, + "new_tests_per_thousand": 0.708, + "new_tests_smoothed": 5755.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 116.431, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-01", + "total_cases": 17777.0, + "new_cases": 111.0, + "new_cases_smoothed": 60.857, + "total_deaths": 705.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1973.819, + "new_cases_per_million": 12.325, + "new_cases_smoothed_per_million": 6.757, + "total_deaths_per_million": 78.278, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 8110.0, + "total_tests": 620866.0, + "total_tests_per_thousand": 68.936, + "new_tests_per_thousand": 0.9, + "new_tests_smoothed": 6040.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 99.249, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-02", + "total_cases": 17814.0, + "new_cases": 37.0, + "new_cases_smoothed": 61.429, + "total_deaths": 705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1977.927, + "new_cases_per_million": 4.108, + "new_cases_smoothed_per_million": 6.821, + "total_deaths_per_million": 78.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 7834.0, + "total_tests": 628700.0, + "total_tests_per_thousand": 69.806, + "new_tests_per_thousand": 0.87, + "new_tests_smoothed": 6351.0, + "new_tests_smoothed_per_thousand": 0.705, + "tests_per_case": 103.38799999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-03", + "total_cases": 17952.0, + "new_cases": 138.0, + "new_cases_smoothed": 74.429, + "total_deaths": 705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1993.249, + "new_cases_per_million": 15.322, + "new_cases_smoothed_per_million": 8.264, + "total_deaths_per_million": 78.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 6805.0, + "total_tests": 635505.0, + "total_tests_per_thousand": 70.561, + "new_tests_per_thousand": 0.756, + "new_tests_smoothed": 6438.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 86.499, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-04", + "total_cases": 18073.0, + "new_cases": 121.0, + "new_cases_smoothed": 82.143, + "total_deaths": 705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2006.684, + "new_cases_per_million": 13.435, + "new_cases_smoothed_per_million": 9.12, + "total_deaths_per_million": 78.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 7174.0, + "total_tests": 642679.0, + "total_tests_per_thousand": 71.358, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 6455.0, + "new_tests_smoothed_per_thousand": 0.717, + "tests_per_case": 78.583, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-05", + "total_cases": 18196.0, + "new_cases": 123.0, + "new_cases_smoothed": 90.571, + "total_deaths": 705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2020.341, + "new_cases_per_million": 13.657, + "new_cases_smoothed_per_million": 10.056, + "total_deaths_per_million": 78.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5125.0, + "total_tests": 647804.0, + "total_tests_per_thousand": 71.927, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 6469.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 71.42399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-06", + "total_cases": 18269.0, + "new_cases": 73.0, + "new_cases_smoothed": 92.0, + "total_deaths": 706.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2028.446, + "new_cases_per_million": 8.105, + "new_cases_smoothed_per_million": 10.215, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 6301.0, + "total_tests": 654105.0, + "total_tests_per_thousand": 72.627, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 6819.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 74.12, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-07", + "total_cases": 18326.0, + "new_cases": 57.0, + "new_cases_smoothed": 94.286, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2034.775, + "new_cases_per_million": 6.329, + "new_cases_smoothed_per_million": 10.469, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 6044.0, + "total_tests": 660149.0, + "total_tests_per_thousand": 73.298, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 6770.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 71.803, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-08", + "total_cases": 18415.0, + "new_cases": 89.0, + "new_cases_smoothed": 91.143, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2044.657, + "new_cases_per_million": 9.882, + "new_cases_smoothed_per_million": 10.12, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 8071.0, + "total_tests": 668220.0, + "total_tests_per_thousand": 74.194, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 6765.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 74.22399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-09", + "total_cases": 18516.0, + "new_cases": 101.0, + "new_cases_smoothed": 100.286, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2055.871, + "new_cases_per_million": 11.214, + "new_cases_smoothed_per_million": 11.135, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 7507.0, + "total_tests": 675727.0, + "total_tests_per_thousand": 75.027, + "new_tests_per_thousand": 0.834, + "new_tests_smoothed": 6718.0, + "new_tests_smoothed_per_thousand": 0.746, + "tests_per_case": 66.98899999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-10", + "total_cases": 18613.0, + "new_cases": 97.0, + "new_cases_smoothed": 94.429, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2066.641, + "new_cases_per_million": 10.77, + "new_cases_smoothed_per_million": 10.485, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 7757.0, + "total_tests": 683484.0, + "total_tests_per_thousand": 75.889, + "new_tests_per_thousand": 0.861, + "new_tests_smoothed": 6854.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 72.584, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-11", + "total_cases": 18687.0, + "new_cases": 74.0, + "new_cases_smoothed": 87.714, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2074.858, + "new_cases_per_million": 8.216, + "new_cases_smoothed_per_million": 9.739, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 8225.0, + "total_tests": 691709.0, + "total_tests_per_thousand": 76.802, + "new_tests_per_thousand": 0.913, + "new_tests_smoothed": 7004.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 79.85, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-12", + "total_cases": 18795.0, + "new_cases": 108.0, + "new_cases_smoothed": 85.571, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2086.849, + "new_cases_per_million": 11.991, + "new_cases_smoothed_per_million": 9.501, + "total_deaths_per_million": 78.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 5031.0, + "total_tests": 696740.0, + "total_tests_per_thousand": 77.361, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 6991.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 81.69800000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-13", + "total_cases": 18847.0, + "new_cases": 52.0, + "new_cases_smoothed": 82.571, + "total_deaths": 708.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2092.623, + "new_cases_per_million": 5.774, + "new_cases_smoothed_per_million": 9.168, + "total_deaths_per_million": 78.611, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 3876.0, + "total_tests": 700616.0, + "total_tests_per_thousand": 77.791, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 6644.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 80.464, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-14", + "total_cases": 18859.0, + "new_cases": 12.0, + "new_cases_smoothed": 76.143, + "total_deaths": 708.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2093.955, + "new_cases_per_million": 1.332, + "new_cases_smoothed_per_million": 8.454, + "total_deaths_per_million": 78.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 6901.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 90.632, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-15", + "total_cases": 19060.0, + "new_cases": 201.0, + "new_cases_smoothed": 92.143, + "total_deaths": 709.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2116.273, + "new_cases_per_million": 22.317, + "new_cases_smoothed_per_million": 10.231, + "total_deaths_per_million": 78.722, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.048, + "total_tests": 716293.0, + "total_tests_per_thousand": 79.532, + "new_tests_smoothed": 6868.0, + "new_tests_smoothed_per_thousand": 0.763, + "tests_per_case": 74.536, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-16", + "total_cases": 19115.0, + "new_cases": 55.0, + "new_cases_smoothed": 85.571, + "total_deaths": 710.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2122.38, + "new_cases_per_million": 6.107, + "new_cases_smoothed_per_million": 9.501, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 10052.0, + "total_tests": 726345.0, + "total_tests_per_thousand": 80.648, + "new_tests_per_thousand": 1.116, + "new_tests_smoothed": 7231.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 84.50299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-17", + "total_cases": 19268.0, + "new_cases": 153.0, + "new_cases_smoothed": 93.571, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2139.368, + "new_cases_per_million": 16.988, + "new_cases_smoothed_per_million": 10.389, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 8068.0, + "total_tests": 734413.0, + "total_tests_per_thousand": 81.543, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 7276.0, + "new_tests_smoothed_per_thousand": 0.808, + "tests_per_case": 77.759, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-18", + "total_cases": 19406.0, + "new_cases": 138.0, + "new_cases_smoothed": 102.714, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2154.69, + "new_cases_per_million": 15.322, + "new_cases_smoothed_per_million": 11.405, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 8677.0, + "total_tests": 743090.0, + "total_tests_per_thousand": 82.507, + "new_tests_per_thousand": 0.963, + "new_tests_smoothed": 7340.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 71.46, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-19", + "total_cases": 19508.0, + "new_cases": 102.0, + "new_cases_smoothed": 101.857, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2166.015, + "new_cases_per_million": 11.325, + "new_cases_smoothed_per_million": 11.309, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 5579.0, + "total_tests": 748669.0, + "total_tests_per_thousand": 83.126, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 7418.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 72.827, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-20", + "total_cases": 19571.0, + "new_cases": 63.0, + "new_cases_smoothed": 103.429, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2173.01, + "new_cases_per_million": 6.995, + "new_cases_smoothed_per_million": 11.484, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 49767.0, + "total_tests": 798436.0, + "total_tests_per_thousand": 88.652, + "new_tests_per_thousand": 5.526, + "new_tests_smoothed": 13974.0, + "new_tests_smoothed_per_thousand": 1.552, + "tests_per_case": 135.108, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-21", + "total_cases": 19679.0, + "new_cases": 108.0, + "new_cases_smoothed": 117.143, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2185.002, + "new_cases_per_million": 11.991, + "new_cases_smoothed_per_million": 13.007, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 7164.0, + "total_tests": 805600.0, + "total_tests_per_thousand": 89.448, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 13878.0, + "new_tests_smoothed_per_thousand": 1.541, + "tests_per_case": 118.471, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-22", + "total_cases": 19818.0, + "new_cases": 139.0, + "new_cases_smoothed": 108.286, + "total_deaths": 710.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.435, + "new_cases_per_million": 15.433, + "new_cases_smoothed_per_million": 12.023, + "total_deaths_per_million": 78.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 9081.0, + "total_tests": 814681.0, + "total_tests_per_thousand": 90.456, + "new_tests_per_thousand": 1.008, + "new_tests_smoothed": 14055.0, + "new_tests_smoothed_per_thousand": 1.561, + "tests_per_case": 129.796, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-23", + "total_cases": 19958.0, + "new_cases": 140.0, + "new_cases_smoothed": 120.429, + "total_deaths": 711.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2215.98, + "new_cases_per_million": 15.545, + "new_cases_smoothed_per_million": 13.371, + "total_deaths_per_million": 78.944, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 11350.0, + "total_tests": 826031.0, + "total_tests_per_thousand": 91.716, + "new_tests_per_thousand": 1.26, + "new_tests_smoothed": 14241.0, + "new_tests_smoothed_per_thousand": 1.581, + "tests_per_case": 118.25299999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-24", + "total_cases": 20122.0, + "new_cases": 164.0, + "new_cases_smoothed": 122.0, + "total_deaths": 711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2234.189, + "new_cases_per_million": 18.209, + "new_cases_smoothed_per_million": 13.546, + "total_deaths_per_million": 78.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 7810.0, + "total_tests": 833841.0, + "total_tests_per_thousand": 92.583, + "new_tests_per_thousand": 0.867, + "new_tests_smoothed": 14204.0, + "new_tests_smoothed_per_thousand": 1.577, + "tests_per_case": 116.426, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-25", + "total_cases": 20229.0, + "new_cases": 107.0, + "new_cases_smoothed": 117.571, + "total_deaths": 711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2246.069, + "new_cases_per_million": 11.88, + "new_cases_smoothed_per_million": 13.054, + "total_deaths_per_million": 78.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 7049.0, + "total_tests": 840890.0, + "total_tests_per_thousand": 93.366, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 13971.0, + "new_tests_smoothed_per_thousand": 1.551, + "tests_per_case": 118.83, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-26", + "total_cases": 20349.0, + "new_cases": 120.0, + "new_cases_smoothed": 120.143, + "total_deaths": 712.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2259.393, + "new_cases_per_million": 13.324, + "new_cases_smoothed_per_million": 13.34, + "total_deaths_per_million": 79.055, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 7008.0, + "total_tests": 847898.0, + "total_tests_per_thousand": 94.144, + "new_tests_per_thousand": 0.778, + "new_tests_smoothed": 14176.0, + "new_tests_smoothed_per_thousand": 1.574, + "tests_per_case": 117.993, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-27", + "total_cases": 20486.0, + "new_cases": 137.0, + "new_cases_smoothed": 130.714, + "total_deaths": 712.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2274.605, + "new_cases_per_million": 15.211, + "new_cases_smoothed_per_million": 14.513, + "total_deaths_per_million": 79.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 13308.0, + "total_tests": 861206.0, + "total_tests_per_thousand": 95.622, + "new_tests_per_thousand": 1.478, + "new_tests_smoothed": 8967.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 68.6, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-28", + "total_cases": 20550.0, + "new_cases": 64.0, + "new_cases_smoothed": 124.429, + "total_deaths": 713.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2281.711, + "new_cases_per_million": 7.106, + "new_cases_smoothed_per_million": 13.816, + "total_deaths_per_million": 79.166, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 9396.0, + "total_tests": 870602.0, + "total_tests_per_thousand": 96.665, + "new_tests_per_thousand": 1.043, + "new_tests_smoothed": 9286.0, + "new_tests_smoothed_per_thousand": 1.031, + "tests_per_case": 74.62899999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-29", + "total_cases": 20682.0, + "new_cases": 132.0, + "new_cases_smoothed": 123.429, + "total_deaths": 713.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2296.367, + "new_cases_per_million": 14.656, + "new_cases_smoothed_per_million": 13.705, + "total_deaths_per_million": 79.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 9434.0, + "total_tests": 880036.0, + "total_tests_per_thousand": 97.712, + "new_tests_per_thousand": 1.047, + "new_tests_smoothed": 9336.0, + "new_tests_smoothed_per_thousand": 1.037, + "tests_per_case": 75.639, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-30", + "total_cases": 20846.0, + "new_cases": 164.0, + "new_cases_smoothed": 126.857, + "total_deaths": 716.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2314.576, + "new_cases_per_million": 18.209, + "new_cases_smoothed_per_million": 14.085, + "total_deaths_per_million": 79.499, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 10425.0, + "total_tests": 890461.0, + "total_tests_per_thousand": 98.87, + "new_tests_per_thousand": 1.158, + "new_tests_smoothed": 9204.0, + "new_tests_smoothed_per_thousand": 1.022, + "tests_per_case": 72.554, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-07-31", + "total_cases": 21009.0, + "new_cases": 163.0, + "new_cases_smoothed": 126.714, + "total_deaths": 718.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2332.675, + "new_cases_per_million": 18.098, + "new_cases_smoothed_per_million": 14.069, + "total_deaths_per_million": 79.721, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 7358.0, + "total_tests": 897819.0, + "total_tests_per_thousand": 99.687, + "new_tests_per_thousand": 0.817, + "new_tests_smoothed": 9140.0, + "new_tests_smoothed_per_thousand": 1.015, + "tests_per_case": 72.131, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-01", + "total_cases": 21098.0, + "new_cases": 89.0, + "new_cases_smoothed": 124.143, + "total_deaths": 718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2342.556, + "new_cases_per_million": 9.882, + "new_cases_smoothed_per_million": 13.784, + "total_deaths_per_million": 79.721, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 7495.0, + "total_tests": 905314.0, + "total_tests_per_thousand": 100.519, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 9203.0, + "new_tests_smoothed_per_thousand": 1.022, + "tests_per_case": 74.132, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-02", + "total_cases": 21224.0, + "new_cases": 126.0, + "new_cases_smoothed": 125.0, + "total_deaths": 718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2356.546, + "new_cases_per_million": 13.99, + "new_cases_smoothed_per_million": 13.879, + "total_deaths_per_million": 79.721, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 5123.0, + "total_tests": 910437.0, + "total_tests_per_thousand": 101.088, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 8934.0, + "new_tests_smoothed_per_thousand": 0.992, + "tests_per_case": 71.472, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-03", + "total_cases": 21309.0, + "new_cases": 85.0, + "new_cases_smoothed": 117.571, + "total_deaths": 718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2365.984, + "new_cases_per_million": 9.438, + "new_cases_smoothed_per_million": 13.054, + "total_deaths_per_million": 79.721, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 6341.0, + "total_tests": 916778.0, + "total_tests_per_thousand": 101.792, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 7939.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 67.525, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-04", + "total_cases": 21341.0, + "new_cases": 32.0, + "new_cases_smoothed": 113.0, + "total_deaths": 718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2369.537, + "new_cases_per_million": 3.553, + "new_cases_smoothed_per_million": 12.547, + "total_deaths_per_million": 79.721, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 7124.0, + "total_tests": 923902.0, + "total_tests_per_thousand": 102.583, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 7614.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 67.381, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-05", + "total_cases": 21472.0, + "new_cases": 131.0, + "new_cases_smoothed": 112.857, + "total_deaths": 719.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2384.082, + "new_cases_per_million": 14.545, + "new_cases_smoothed_per_million": 12.531, + "total_deaths_per_million": 79.832, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.095, + "new_tests_smoothed": 7222.0, + "new_tests_smoothed_per_thousand": 0.802, + "tests_per_case": 63.992, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-06", + "total_cases": 21575.0, + "new_cases": 103.0, + "new_cases_smoothed": 104.143, + "total_deaths": 719.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2395.519, + "new_cases_per_million": 11.436, + "new_cases_smoothed_per_million": 11.563, + "total_deaths_per_million": 79.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "total_tests": 937275.0, + "total_tests_per_thousand": 104.068, + "new_tests_smoothed": 6688.0, + "new_tests_smoothed_per_thousand": 0.743, + "tests_per_case": 64.219, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-07", + "total_cases": 21689.0, + "new_cases": 114.0, + "new_cases_smoothed": 97.143, + "total_deaths": 719.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2408.176, + "new_cases_per_million": 12.658, + "new_cases_smoothed_per_million": 10.786, + "total_deaths_per_million": 79.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 10030.0, + "total_tests": 947305.0, + "total_tests_per_thousand": 105.181, + "new_tests_per_thousand": 1.114, + "new_tests_smoothed": 7069.0, + "new_tests_smoothed_per_thousand": 0.785, + "tests_per_case": 72.76899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-08", + "total_cases": 21819.0, + "new_cases": 130.0, + "new_cases_smoothed": 103.0, + "total_deaths": 720.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2422.611, + "new_cases_per_million": 14.434, + "new_cases_smoothed_per_million": 11.436, + "total_deaths_per_million": 79.943, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 7934.0, + "total_tests": 955239.0, + "total_tests_per_thousand": 106.062, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 7132.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 69.243, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-09", + "total_cases": 21935.0, + "new_cases": 116.0, + "new_cases_smoothed": 101.571, + "total_deaths": 721.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2435.49, + "new_cases_per_million": 12.88, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 80.054, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 6629.0, + "total_tests": 961868.0, + "total_tests_per_thousand": 106.798, + "new_tests_per_thousand": 0.736, + "new_tests_smoothed": 7347.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 72.333, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-10", + "total_cases": 22011.0, + "new_cases": 76.0, + "new_cases_smoothed": 100.286, + "total_deaths": 721.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2443.929, + "new_cases_per_million": 8.438, + "new_cases_smoothed_per_million": 11.135, + "total_deaths_per_million": 80.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 3890.0, + "total_tests": 965758.0, + "total_tests_per_thousand": 107.23, + "new_tests_per_thousand": 0.432, + "new_tests_smoothed": 6997.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 69.771, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-11", + "total_cases": 22122.0, + "new_cases": 111.0, + "new_cases_smoothed": 111.571, + "total_deaths": 723.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2456.253, + "new_cases_per_million": 12.325, + "new_cases_smoothed_per_million": 12.388, + "total_deaths_per_million": 80.276, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 8750.0, + "total_tests": 974508.0, + "total_tests_per_thousand": 108.202, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 7229.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 64.793, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-12", + "total_cases": 22260.0, + "new_cases": 138.0, + "new_cases_smoothed": 112.571, + "total_deaths": 723.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2471.576, + "new_cases_per_million": 15.322, + "new_cases_smoothed_per_million": 12.499, + "total_deaths_per_million": 80.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 8510.0, + "total_tests": 983018.0, + "total_tests_per_thousand": 109.147, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 7490.0, + "new_tests_smoothed_per_thousand": 0.832, + "tests_per_case": 66.536, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-13", + "total_cases": 22501.0, + "new_cases": 241.0, + "new_cases_smoothed": 132.286, + "total_deaths": 724.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2498.335, + "new_cases_per_million": 26.759, + "new_cases_smoothed_per_million": 14.688, + "total_deaths_per_million": 80.387, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 8490.0, + "total_tests": 991508.0, + "total_tests_per_thousand": 110.089, + "new_tests_per_thousand": 0.943, + "new_tests_smoothed": 7748.0, + "new_tests_smoothed_per_thousand": 0.86, + "tests_per_case": 58.57, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-14", + "total_cases": 22730.0, + "new_cases": 229.0, + "new_cases_smoothed": 148.714, + "total_deaths": 725.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2523.761, + "new_cases_per_million": 25.426, + "new_cases_smoothed_per_million": 16.512, + "total_deaths_per_million": 80.498, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 11924.0, + "total_tests": 1003432.0, + "total_tests_per_thousand": 111.413, + "new_tests_per_thousand": 1.324, + "new_tests_smoothed": 8018.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 53.915, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-15", + "total_cases": 22951.0, + "new_cases": 221.0, + "new_cases_smoothed": 161.714, + "total_deaths": 725.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2548.299, + "new_cases_per_million": 24.538, + "new_cases_smoothed_per_million": 17.955, + "total_deaths_per_million": 80.498, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5922.0, + "total_tests": 1009354.0, + "total_tests_per_thousand": 112.071, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 7731.0, + "new_tests_smoothed_per_thousand": 0.858, + "tests_per_case": 47.806999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-16", + "total_cases": 23211.0, + "new_cases": 260.0, + "new_cases_smoothed": 182.286, + "total_deaths": 728.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2577.167, + "new_cases_per_million": 28.868, + "new_cases_smoothed_per_million": 20.24, + "total_deaths_per_million": 80.831, + "new_deaths_per_million": 0.333, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 9136.0, + "total_tests": 1018490.0, + "total_tests_per_thousand": 113.085, + "new_tests_per_thousand": 1.014, + "new_tests_smoothed": 8089.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 44.375, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-17", + "total_cases": 23373.0, + "new_cases": 162.0, + "new_cases_smoothed": 194.571, + "total_deaths": 728.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2595.155, + "new_cases_per_million": 17.987, + "new_cases_smoothed_per_million": 21.604, + "total_deaths_per_million": 80.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 5577.0, + "total_tests": 1024067.0, + "total_tests_per_thousand": 113.704, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 8330.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 42.812, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-18", + "total_cases": 23717.0, + "new_cases": 344.0, + "new_cases_smoothed": 227.857, + "total_deaths": 729.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2633.35, + "new_cases_per_million": 38.195, + "new_cases_smoothed_per_million": 25.299, + "total_deaths_per_million": 80.942, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 13821.0, + "total_tests": 1037888.0, + "total_tests_per_thousand": 115.239, + "new_tests_per_thousand": 1.535, + "new_tests_smoothed": 9054.0, + "new_tests_smoothed_per_thousand": 1.005, + "tests_per_case": 39.735, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-19", + "total_cases": 23875.0, + "new_cases": 158.0, + "new_cases_smoothed": 230.714, + "total_deaths": 729.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2650.893, + "new_cases_per_million": 17.543, + "new_cases_smoothed_per_million": 25.617, + "total_deaths_per_million": 80.942, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 10328.0, + "total_tests": 1048216.0, + "total_tests_per_thousand": 116.386, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 9314.0, + "new_tests_smoothed_per_thousand": 1.034, + "tests_per_case": 40.37, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-20", + "total_cases": 24300.0, + "new_cases": 425.0, + "new_cases_smoothed": 257.0, + "total_deaths": 729.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2698.081, + "new_cases_per_million": 47.189, + "new_cases_smoothed_per_million": 28.535, + "total_deaths_per_million": 80.942, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 13221.0, + "total_tests": 1061437.0, + "total_tests_per_thousand": 117.854, + "new_tests_per_thousand": 1.468, + "new_tests_smoothed": 9990.0, + "new_tests_smoothed_per_thousand": 1.109, + "tests_per_case": 38.872, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-21", + "total_cases": 24608.0, + "new_cases": 308.0, + "new_cases_smoothed": 268.286, + "total_deaths": 729.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2732.279, + "new_cases_per_million": 34.198, + "new_cases_smoothed_per_million": 29.788, + "total_deaths_per_million": 80.942, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 13972.0, + "total_tests": 1075409.0, + "total_tests_per_thousand": 119.405, + "new_tests_per_thousand": 1.551, + "new_tests_smoothed": 10282.0, + "new_tests_smoothed_per_thousand": 1.142, + "tests_per_case": 38.325, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-22", + "total_cases": 24883.0, + "new_cases": 275.0, + "new_cases_smoothed": 276.0, + "total_deaths": 730.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2762.813, + "new_cases_per_million": 30.534, + "new_cases_smoothed_per_million": 30.645, + "total_deaths_per_million": 81.053, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 11746.0, + "total_tests": 1087155.0, + "total_tests_per_thousand": 120.709, + "new_tests_per_thousand": 1.304, + "new_tests_smoothed": 11114.0, + "new_tests_smoothed_per_thousand": 1.234, + "tests_per_case": 40.268, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-23", + "total_cases": 25099.0, + "new_cases": 216.0, + "new_cases_smoothed": 269.714, + "total_deaths": 732.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2786.796, + "new_cases_per_million": 23.983, + "new_cases_smoothed_per_million": 29.947, + "total_deaths_per_million": 81.276, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 7832.0, + "total_tests": 1094987.0, + "total_tests_per_thousand": 121.579, + "new_tests_per_thousand": 0.87, + "new_tests_smoothed": 10928.0, + "new_tests_smoothed_per_thousand": 1.213, + "tests_per_case": 40.516999999999996, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-24", + "total_cases": 25239.0, + "new_cases": 140.0, + "new_cases_smoothed": 266.571, + "total_deaths": 732.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2802.341, + "new_cases_per_million": 15.545, + "new_cases_smoothed_per_million": 29.598, + "total_deaths_per_million": 81.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 6219.0, + "total_tests": 1101206.0, + "total_tests_per_thousand": 122.269, + "new_tests_per_thousand": 0.691, + "new_tests_smoothed": 11020.0, + "new_tests_smoothed_per_thousand": 1.224, + "tests_per_case": 41.34, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-25", + "total_cases": 25547.0, + "new_cases": 308.0, + "new_cases_smoothed": 261.429, + "total_deaths": 733.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2836.538, + "new_cases_per_million": 34.198, + "new_cases_smoothed_per_million": 29.027, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 8883.0, + "total_tests": 1110089.0, + "total_tests_per_thousand": 123.256, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 10314.0, + "new_tests_smoothed_per_thousand": 1.145, + "tests_per_case": 39.452, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-26", + "total_cases": 25838.0, + "new_cases": 291.0, + "new_cases_smoothed": 280.429, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2868.849, + "new_cases_per_million": 32.31, + "new_cases_smoothed_per_million": 31.137, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 9110.0, + "total_tests": 1119199.0, + "total_tests_per_thousand": 124.267, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 10140.0, + "new_tests_smoothed_per_thousand": 1.126, + "tests_per_case": 36.159, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-27", + "total_cases": 26154.0, + "new_cases": 316.0, + "new_cases_smoothed": 264.857, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2903.935, + "new_cases_per_million": 35.086, + "new_cases_smoothed_per_million": 29.408, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 14044.0, + "total_tests": 1133243.0, + "total_tests_per_thousand": 125.826, + "new_tests_per_thousand": 1.559, + "new_tests_smoothed": 10258.0, + "new_tests_smoothed_per_thousand": 1.139, + "tests_per_case": 38.73, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-08-28", + "total_cases": 26381.0, + "new_cases": 227.0, + "new_cases_smoothed": 253.286, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2929.139, + "new_cases_per_million": 25.204, + "new_cases_smoothed_per_million": 28.123, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 14701.0, + "total_tests": 1147944.0, + "total_tests_per_thousand": 127.459, + "new_tests_per_thousand": 1.632, + "new_tests_smoothed": 10362.0, + "new_tests_smoothed_per_thousand": 1.151, + "tests_per_case": 40.91, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 26763.0, + "new_cases": 382.0, + "new_cases_smoothed": 268.571, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2971.554, + "new_cases_per_million": 42.414, + "new_cases_smoothed_per_million": 29.82, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 12799.0, + "total_tests": 1160743.0, + "total_tests_per_thousand": 128.88, + "new_tests_per_thousand": 1.421, + "new_tests_smoothed": 10513.0, + "new_tests_smoothed_per_thousand": 1.167, + "tests_per_case": 39.144, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 26937.0, + "new_cases": 174.0, + "new_cases_smoothed": 262.571, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2990.873, + "new_cases_per_million": 19.32, + "new_cases_smoothed_per_million": 29.154, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 11349.0, + "total_tests": 1172092.0, + "total_tests_per_thousand": 130.14, + "new_tests_per_thousand": 1.26, + "new_tests_smoothed": 11015.0, + "new_tests_smoothed_per_thousand": 1.223, + "tests_per_case": 41.95, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 27218.0, + "new_cases": 281.0, + "new_cases_smoothed": 282.714, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3022.073, + "new_cases_per_million": 31.2, + "new_cases_smoothed_per_million": 31.39, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 8619.0, + "total_tests": 1180711.0, + "total_tests_per_thousand": 131.097, + "new_tests_per_thousand": 0.957, + "new_tests_smoothed": 11358.0, + "new_tests_smoothed_per_thousand": 1.261, + "tests_per_case": 40.175, + "positive_rate": 0.025, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 27404.0, + "new_cases": 186.0, + "new_cases_smoothed": 265.286, + "total_deaths": 733.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3042.725, + "new_cases_per_million": 20.652, + "new_cases_smoothed_per_million": 29.455, + "total_deaths_per_million": 81.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12416.0, + "total_tests": 1193127.0, + "total_tests_per_thousand": 132.475, + "new_tests_per_thousand": 1.379, + "new_tests_smoothed": 11863.0, + "new_tests_smoothed_per_thousand": 1.317, + "tests_per_case": 44.718, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 27741.0, + "new_cases": 337.0, + "new_cases_smoothed": 271.857, + "total_deaths": 734.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3080.143, + "new_cases_per_million": 37.418, + "new_cases_smoothed_per_million": 30.185, + "total_deaths_per_million": 81.498, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 17441.0, + "total_tests": 1210568.0, + "total_tests_per_thousand": 134.412, + "new_tests_per_thousand": 1.937, + "new_tests_smoothed": 13053.0, + "new_tests_smoothed_per_thousand": 1.449, + "tests_per_case": 48.013999999999996, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 28183.0, + "new_cases": 442.0, + "new_cases_smoothed": 289.857, + "total_deaths": 734.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3129.219, + "new_cases_per_million": 49.076, + "new_cases_smoothed_per_million": 32.183, + "total_deaths_per_million": 81.498, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 14689.0, + "total_tests": 1225257.0, + "total_tests_per_thousand": 136.043, + "new_tests_per_thousand": 1.631, + "new_tests_smoothed": 13145.0, + "new_tests_smoothed_per_thousand": 1.46, + "tests_per_case": 45.35, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 28495.0, + "new_cases": 312.0, + "new_cases_smoothed": 302.0, + "total_deaths": 735.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3163.861, + "new_cases_per_million": 34.642, + "new_cases_smoothed_per_million": 33.532, + "total_deaths_per_million": 81.609, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 11232.0, + "total_tests": 1236489.0, + "total_tests_per_thousand": 137.29, + "new_tests_per_thousand": 1.247, + "new_tests_smoothed": 12649.0, + "new_tests_smoothed_per_thousand": 1.404, + "tests_per_case": 41.88399999999999, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 28869.0, + "new_cases": 374.0, + "new_cases_smoothed": 300.857, + "total_deaths": 735.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3205.387, + "new_cases_per_million": 41.526, + "new_cases_smoothed_per_million": 33.405, + "total_deaths_per_million": 81.609, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032 + } + ] + }, + "AZE": { + "continent": "Asia", + "location": "Azerbaijan", + "population": 10139175.0, + "population_density": 119.309, + "median_age": 32.4, + "aged_65_older": 6.018, + "aged_70_older": 3.871, + "gdp_per_capita": 15847.419, + "cardiovasc_death_rate": 559.812, + "diabetes_prevalence": 7.11, + "female_smokers": 0.3, + "male_smokers": 42.5, + "handwashing_facilities": 83.241, + "hospital_beds_per_thousand": 4.7, + "life_expectancy": 73.0, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.296, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-06", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.592, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-07", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.888, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-11", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.085, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-12", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.282, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-15", + "total_cases": 19.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.874, + "new_cases_per_million": 0.592, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 28.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.762, + "new_cases_per_million": 0.888, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-19", + "total_cases": 34.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.353, + "new_cases_per_million": 0.592, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-03-20", + "total_cases": 44.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.34, + "new_cases_per_million": 0.986, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-03-21", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.34, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 61.11 + }, + { + "date": "2020-03-22", + "total_cases": 53.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.227, + "new_cases_per_million": 0.888, + "new_cases_smoothed_per_million": 0.479, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 61.11 + }, + { + "date": "2020-03-23", + "total_cases": 65.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.411, + "new_cases_per_million": 1.184, + "new_cases_smoothed_per_million": 0.648, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 68.52 + }, + { + "date": "2020-03-24", + "total_cases": 72.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.101, + "new_cases_per_million": 0.69, + "new_cases_smoothed_per_million": 0.747, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 68.52 + }, + { + "date": "2020-03-25", + "total_cases": 87.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.581, + "new_cases_per_million": 1.479, + "new_cases_smoothed_per_million": 0.831, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 68.52 + }, + { + "date": "2020-03-26", + "total_cases": 93.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.172, + "new_cases_per_million": 0.592, + "new_cases_smoothed_per_million": 0.831, + "total_deaths_per_million": 0.197, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 68.52 + }, + { + "date": "2020-03-27", + "total_cases": 122.0, + "new_cases": 29.0, + "new_cases_smoothed": 11.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 12.033, + "new_cases_per_million": 2.86, + "new_cases_smoothed_per_million": 1.099, + "total_deaths_per_million": 0.296, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-03-28", + "total_cases": 165.0, + "new_cases": 43.0, + "new_cases_smoothed": 17.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.274, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 0.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 68.52 + }, + { + "date": "2020-03-29", + "total_cases": 182.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.95, + "new_cases_per_million": 1.677, + "new_cases_smoothed_per_million": 1.818, + "total_deaths_per_million": 0.395, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-03-30", + "total_cases": 209.0, + "new_cases": 27.0, + "new_cases_smoothed": 20.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 20.613, + "new_cases_per_million": 2.663, + "new_cases_smoothed_per_million": 2.029, + "total_deaths_per_million": 0.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-03-31", + "total_cases": 273.0, + "new_cases": 64.0, + "new_cases_smoothed": 28.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.925, + "new_cases_per_million": 6.312, + "new_cases_smoothed_per_million": 2.832, + "total_deaths_per_million": 0.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-01", + "total_cases": 298.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 29.391, + "new_cases_per_million": 2.466, + "new_cases_smoothed_per_million": 2.973, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 88.89 + }, + { + "date": "2020-04-02", + "total_cases": 359.0, + "new_cases": 61.0, + "new_cases_smoothed": 38.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 35.407, + "new_cases_per_million": 6.016, + "new_cases_smoothed_per_million": 3.748, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-03", + "total_cases": 400.0, + "new_cases": 41.0, + "new_cases_smoothed": 39.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.451, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 3.917, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 88.89 + }, + { + "date": "2020-04-04", + "total_cases": 443.0, + "new_cases": 43.0, + "new_cases_smoothed": 39.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.692, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 3.917, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 88.89 + }, + { + "date": "2020-04-05", + "total_cases": 521.0, + "new_cases": 78.0, + "new_cases_smoothed": 48.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.385, + "new_cases_per_million": 7.693, + "new_cases_smoothed_per_million": 4.776, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 88.89 + }, + { + "date": "2020-04-06", + "total_cases": 584.0, + "new_cases": 63.0, + "new_cases_smoothed": 53.571, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 57.598, + "new_cases_per_million": 6.214, + "new_cases_smoothed_per_million": 5.284, + "total_deaths_per_million": 0.69, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 641.0, + "new_cases": 57.0, + "new_cases_smoothed": 52.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 63.22, + "new_cases_per_million": 5.622, + "new_cases_smoothed_per_million": 5.185, + "total_deaths_per_million": 0.69, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 717.0, + "new_cases": 76.0, + "new_cases_smoothed": 59.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 70.716, + "new_cases_per_million": 7.496, + "new_cases_smoothed_per_million": 5.904, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 822.0, + "new_cases": 105.0, + "new_cases_smoothed": 66.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 81.072, + "new_cases_per_million": 10.356, + "new_cases_smoothed_per_million": 6.523, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 926.0, + "new_cases": 104.0, + "new_cases_smoothed": 75.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 91.329, + "new_cases_per_million": 10.257, + "new_cases_smoothed_per_million": 7.411, + "total_deaths_per_million": 0.888, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 991.0, + "new_cases": 65.0, + "new_cases_smoothed": 78.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 97.74, + "new_cases_per_million": 6.411, + "new_cases_smoothed_per_million": 7.721, + "total_deaths_per_million": 0.986, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 1058.0, + "new_cases": 67.0, + "new_cases_smoothed": 76.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 104.348, + "new_cases_per_million": 6.608, + "new_cases_smoothed_per_million": 7.566, + "total_deaths_per_million": 1.085, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 1098.0, + "new_cases": 40.0, + "new_cases_smoothed": 73.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 108.293, + "new_cases_per_million": 3.945, + "new_cases_smoothed_per_million": 7.242, + "total_deaths_per_million": 1.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 1148.0, + "new_cases": 50.0, + "new_cases_smoothed": 72.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.224, + "new_cases_per_million": 4.931, + "new_cases_smoothed_per_million": 7.143, + "total_deaths_per_million": 1.184, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 1197.0, + "new_cases": 49.0, + "new_cases_smoothed": 68.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 118.057, + "new_cases_per_million": 4.833, + "new_cases_smoothed_per_million": 6.763, + "total_deaths_per_million": 1.282, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 1253.0, + "new_cases": 56.0, + "new_cases_smoothed": 61.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 123.58, + "new_cases_per_million": 5.523, + "new_cases_smoothed_per_million": 6.073, + "total_deaths_per_million": 1.282, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 91.67 + }, + { + "date": "2020-04-17", + "total_cases": 1283.0, + "new_cases": 30.0, + "new_cases_smoothed": 51.0, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 126.539, + "new_cases_per_million": 2.959, + "new_cases_smoothed_per_million": 5.03, + "total_deaths_per_million": 1.479, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 91.67 + }, + { + "date": "2020-04-18", + "total_cases": 1340.0, + "new_cases": 57.0, + "new_cases_smoothed": 49.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.161, + "new_cases_per_million": 5.622, + "new_cases_smoothed_per_million": 4.917, + "total_deaths_per_million": 1.479, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 91.67 + }, + { + "date": "2020-04-19", + "total_cases": 1373.0, + "new_cases": 33.0, + "new_cases_smoothed": 45.0, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 135.415, + "new_cases_per_million": 3.255, + "new_cases_smoothed_per_million": 4.438, + "total_deaths_per_million": 1.775, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 91.67 + }, + { + "date": "2020-04-20", + "total_cases": 1398.0, + "new_cases": 25.0, + "new_cases_smoothed": 42.857, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 137.881, + "new_cases_per_million": 2.466, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 1.874, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 91.67 + }, + { + "date": "2020-04-21", + "total_cases": 1436.0, + "new_cases": 38.0, + "new_cases_smoothed": 41.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 141.629, + "new_cases_per_million": 3.748, + "new_cases_smoothed_per_million": 4.058, + "total_deaths_per_million": 1.874, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 91.67 + }, + { + "date": "2020-04-22", + "total_cases": 1480.0, + "new_cases": 44.0, + "new_cases_smoothed": 40.429, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 145.968, + "new_cases_per_million": 4.34, + "new_cases_smoothed_per_million": 3.987, + "total_deaths_per_million": 1.973, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 91.67 + }, + { + "date": "2020-04-23", + "total_cases": 1518.0, + "new_cases": 38.0, + "new_cases_smoothed": 37.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 149.716, + "new_cases_per_million": 3.748, + "new_cases_smoothed_per_million": 3.734, + "total_deaths_per_million": 1.973, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 91.67 + }, + { + "date": "2020-04-24", + "total_cases": 1548.0, + "new_cases": 30.0, + "new_cases_smoothed": 37.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 152.675, + "new_cases_per_million": 2.959, + "new_cases_smoothed_per_million": 3.734, + "total_deaths_per_million": 1.973, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 91.67 + }, + { + "date": "2020-04-25", + "total_cases": 1592.0, + "new_cases": 44.0, + "new_cases_smoothed": 36.0, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 157.015, + "new_cases_per_million": 4.34, + "new_cases_smoothed_per_million": 3.551, + "total_deaths_per_million": 2.071, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 91.67 + }, + { + "date": "2020-04-26", + "total_cases": 1617.0, + "new_cases": 25.0, + "new_cases_smoothed": 34.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 159.48, + "new_cases_per_million": 2.466, + "new_cases_smoothed_per_million": 3.438, + "total_deaths_per_million": 2.071, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 91.67 + }, + { + "date": "2020-04-27", + "total_cases": 1645.0, + "new_cases": 28.0, + "new_cases_smoothed": 35.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 162.242, + "new_cases_per_million": 2.762, + "new_cases_smoothed_per_million": 3.48, + "total_deaths_per_million": 2.071, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.96 + }, + { + "date": "2020-04-28", + "total_cases": 1678.0, + "new_cases": 33.0, + "new_cases_smoothed": 34.571, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 165.497, + "new_cases_per_million": 3.255, + "new_cases_smoothed_per_million": 3.41, + "total_deaths_per_million": 2.17, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 87.96 + }, + { + "date": "2020-04-29", + "total_cases": 1717.0, + "new_cases": 39.0, + "new_cases_smoothed": 33.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 169.343, + "new_cases_per_million": 3.846, + "new_cases_smoothed_per_million": 3.339, + "total_deaths_per_million": 2.17, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.96 + }, + { + "date": "2020-04-30", + "total_cases": 1766.0, + "new_cases": 49.0, + "new_cases_smoothed": 35.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 174.176, + "new_cases_per_million": 4.833, + "new_cases_smoothed_per_million": 3.494, + "total_deaths_per_million": 2.268, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 1804.0, + "new_cases": 38.0, + "new_cases_smoothed": 36.571, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 177.924, + "new_cases_per_million": 3.748, + "new_cases_smoothed_per_million": 3.607, + "total_deaths_per_million": 2.367, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 1854.0, + "new_cases": 50.0, + "new_cases_smoothed": 37.429, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 182.855, + "new_cases_per_million": 4.931, + "new_cases_smoothed_per_million": 3.691, + "total_deaths_per_million": 2.466, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 1894.0, + "new_cases": 40.0, + "new_cases_smoothed": 39.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 186.8, + "new_cases_per_million": 3.945, + "new_cases_smoothed_per_million": 3.903, + "total_deaths_per_million": 2.466, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 1932.0, + "new_cases": 38.0, + "new_cases_smoothed": 41.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 190.548, + "new_cases_per_million": 3.748, + "new_cases_smoothed_per_million": 4.044, + "total_deaths_per_million": 2.466, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 1984.0, + "new_cases": 52.0, + "new_cases_smoothed": 43.714, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 195.677, + "new_cases_per_million": 5.129, + "new_cases_smoothed_per_million": 4.311, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-06", + "total_cases": 2060.0, + "new_cases": 76.0, + "new_cases_smoothed": 49.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 203.172, + "new_cases_per_million": 7.496, + "new_cases_smoothed_per_million": 4.833, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-07", + "total_cases": 2127.0, + "new_cases": 67.0, + "new_cases_smoothed": 51.571, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 209.78, + "new_cases_per_million": 6.608, + "new_cases_smoothed_per_million": 5.086, + "total_deaths_per_million": 2.762, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 87.96 + }, + { + "date": "2020-05-08", + "total_cases": 2204.0, + "new_cases": 77.0, + "new_cases_smoothed": 57.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 217.375, + "new_cases_per_million": 7.594, + "new_cases_smoothed_per_million": 5.636, + "total_deaths_per_million": 2.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-09", + "total_cases": 2279.0, + "new_cases": 75.0, + "new_cases_smoothed": 60.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 224.772, + "new_cases_per_million": 7.397, + "new_cases_smoothed_per_million": 5.988, + "total_deaths_per_million": 2.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-05-10", + "total_cases": 2422.0, + "new_cases": 143.0, + "new_cases_smoothed": 75.429, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 238.875, + "new_cases_per_million": 14.104, + "new_cases_smoothed_per_million": 7.439, + "total_deaths_per_million": 3.057, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 85.19 + }, + { + "date": "2020-05-11", + "total_cases": 2519.0, + "new_cases": 97.0, + "new_cases_smoothed": 83.857, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 248.442, + "new_cases_per_million": 9.567, + "new_cases_smoothed_per_million": 8.271, + "total_deaths_per_million": 3.156, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 85.19 + }, + { + "date": "2020-05-12", + "total_cases": 2589.0, + "new_cases": 70.0, + "new_cases_smoothed": 86.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 255.346, + "new_cases_per_million": 6.904, + "new_cases_smoothed_per_million": 8.524, + "total_deaths_per_million": 3.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 85.19 + }, + { + "date": "2020-05-13", + "total_cases": 2693.0, + "new_cases": 104.0, + "new_cases_smoothed": 90.429, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 265.603, + "new_cases_per_million": 10.257, + "new_cases_smoothed_per_million": 8.919, + "total_deaths_per_million": 3.255, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 85.19 + }, + { + "date": "2020-05-14", + "total_cases": 2758.0, + "new_cases": 65.0, + "new_cases_smoothed": 90.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 272.014, + "new_cases_per_million": 6.411, + "new_cases_smoothed_per_million": 8.891, + "total_deaths_per_million": 3.452, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 85.19 + }, + { + "date": "2020-05-15", + "total_cases": 2879.0, + "new_cases": 121.0, + "new_cases_smoothed": 96.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 283.948, + "new_cases_per_million": 11.934, + "new_cases_smoothed_per_million": 9.51, + "total_deaths_per_million": 3.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 85.19 + }, + { + "date": "2020-05-16", + "total_cases": 2980.0, + "new_cases": 101.0, + "new_cases_smoothed": 100.143, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 293.91, + "new_cases_per_million": 9.961, + "new_cases_smoothed_per_million": 9.877, + "total_deaths_per_million": 3.551, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 85.19 + }, + { + "date": "2020-05-17", + "total_cases": 3138.0, + "new_cases": 158.0, + "new_cases_smoothed": 102.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 309.493, + "new_cases_per_million": 15.583, + "new_cases_smoothed_per_million": 10.088, + "total_deaths_per_million": 3.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 85.19 + }, + { + "date": "2020-05-18", + "total_cases": 3274.0, + "new_cases": 136.0, + "new_cases_smoothed": 107.857, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 322.906, + "new_cases_per_million": 13.413, + "new_cases_smoothed_per_million": 10.638, + "total_deaths_per_million": 3.846, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 3287.0, + "new_cases": 13.0, + "new_cases_smoothed": 99.714, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 324.188, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 9.835, + "total_deaths_per_million": 3.945, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 3518.0, + "new_cases": 231.0, + "new_cases_smoothed": 117.857, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 346.971, + "new_cases_per_million": 22.783, + "new_cases_smoothed_per_million": 11.624, + "total_deaths_per_million": 4.044, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 77.78 + }, + { + "date": "2020-05-21", + "total_cases": 3631.0, + "new_cases": 113.0, + "new_cases_smoothed": 124.714, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 358.116, + "new_cases_per_million": 11.145, + "new_cases_smoothed_per_million": 12.3, + "total_deaths_per_million": 4.241, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 77.78 + }, + { + "date": "2020-05-22", + "total_cases": 3749.0, + "new_cases": 118.0, + "new_cases_smoothed": 124.286, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 369.754, + "new_cases_per_million": 11.638, + "new_cases_smoothed_per_million": 12.258, + "total_deaths_per_million": 4.34, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 77.78 + }, + { + "date": "2020-05-23", + "total_cases": 3855.0, + "new_cases": 106.0, + "new_cases_smoothed": 125.0, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 380.208, + "new_cases_per_million": 10.454, + "new_cases_smoothed_per_million": 12.328, + "total_deaths_per_million": 4.537, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 77.78 + }, + { + "date": "2020-05-24", + "total_cases": 3982.0, + "new_cases": 127.0, + "new_cases_smoothed": 120.571, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 392.734, + "new_cases_per_million": 12.526, + "new_cases_smoothed_per_million": 11.892, + "total_deaths_per_million": 4.833, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 77.78 + }, + { + "date": "2020-05-25", + "total_cases": 4122.0, + "new_cases": 140.0, + "new_cases_smoothed": 121.143, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 406.542, + "new_cases_per_million": 13.808, + "new_cases_smoothed_per_million": 11.948, + "total_deaths_per_million": 4.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 77.78 + }, + { + "date": "2020-05-26", + "total_cases": 4271.0, + "new_cases": 149.0, + "new_cases_smoothed": 140.571, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 421.237, + "new_cases_per_million": 14.695, + "new_cases_smoothed_per_million": 13.864, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 4403.0, + "new_cases": 132.0, + "new_cases_smoothed": 126.429, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 434.256, + "new_cases_per_million": 13.019, + "new_cases_smoothed_per_million": 12.469, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 4568.0, + "new_cases": 165.0, + "new_cases_smoothed": 133.857, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 450.53, + "new_cases_per_million": 16.274, + "new_cases_smoothed_per_million": 13.202, + "total_deaths_per_million": 5.326, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 4759.0, + "new_cases": 191.0, + "new_cases_smoothed": 144.286, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 469.368, + "new_cases_per_million": 18.838, + "new_cases_smoothed_per_million": 14.231, + "total_deaths_per_million": 5.523, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 4989.0, + "new_cases": 230.0, + "new_cases_smoothed": 162.0, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 492.052, + "new_cases_per_million": 22.684, + "new_cases_smoothed_per_million": 15.978, + "total_deaths_per_million": 5.72, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 5246.0, + "new_cases": 257.0, + "new_cases_smoothed": 180.571, + "total_deaths": 61.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 517.399, + "new_cases_per_million": 25.347, + "new_cases_smoothed_per_million": 17.809, + "total_deaths_per_million": 6.016, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 5494.0, + "new_cases": 248.0, + "new_cases_smoothed": 196.0, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 541.859, + "new_cases_per_million": 24.46, + "new_cases_smoothed_per_million": 19.331, + "total_deaths_per_million": 6.214, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 5662.0, + "new_cases": 168.0, + "new_cases_smoothed": 198.714, + "total_deaths": 68.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 558.428, + "new_cases_per_million": 16.569, + "new_cases_smoothed_per_million": 19.599, + "total_deaths_per_million": 6.707, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.24, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 5935.0, + "new_cases": 273.0, + "new_cases_smoothed": 218.857, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 585.353, + "new_cases_per_million": 26.925, + "new_cases_smoothed_per_million": 21.585, + "total_deaths_per_million": 7.003, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.268, + "stringency_index": 85.19 + }, + { + "date": "2020-06-04", + "total_cases": 6260.0, + "new_cases": 325.0, + "new_cases_smoothed": 241.714, + "total_deaths": 76.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 617.407, + "new_cases_per_million": 32.054, + "new_cases_smoothed_per_million": 23.84, + "total_deaths_per_million": 7.496, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.31, + "stringency_index": 85.19 + }, + { + "date": "2020-06-05", + "total_cases": 6522.0, + "new_cases": 262.0, + "new_cases_smoothed": 251.857, + "total_deaths": 78.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 643.248, + "new_cases_per_million": 25.84, + "new_cases_smoothed_per_million": 24.84, + "total_deaths_per_million": 7.693, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.31, + "stringency_index": 85.19 + }, + { + "date": "2020-06-06", + "total_cases": 6860.0, + "new_cases": 338.0, + "new_cases_smoothed": 267.286, + "total_deaths": 82.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 676.584, + "new_cases_per_million": 33.336, + "new_cases_smoothed_per_million": 26.362, + "total_deaths_per_million": 8.087, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.338, + "stringency_index": 85.19 + }, + { + "date": "2020-06-07", + "total_cases": 7239.0, + "new_cases": 379.0, + "new_cases_smoothed": 284.714, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 713.963, + "new_cases_per_million": 37.38, + "new_cases_smoothed_per_million": 28.081, + "total_deaths_per_million": 8.285, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.324, + "stringency_index": 85.19 + }, + { + "date": "2020-06-08", + "total_cases": 7553.0, + "new_cases": 314.0, + "new_cases_smoothed": 294.143, + "total_deaths": 88.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 744.932, + "new_cases_per_million": 30.969, + "new_cases_smoothed_per_million": 29.011, + "total_deaths_per_million": 8.679, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.352, + "stringency_index": 77.78 + }, + { + "date": "2020-06-09", + "total_cases": 7876.0, + "new_cases": 323.0, + "new_cases_smoothed": 316.286, + "total_deaths": 93.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 776.789, + "new_cases_per_million": 31.857, + "new_cases_smoothed_per_million": 31.194, + "total_deaths_per_million": 9.172, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.352, + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 8191.0, + "new_cases": 315.0, + "new_cases_smoothed": 322.286, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 807.857, + "new_cases_per_million": 31.068, + "new_cases_smoothed_per_million": 31.786, + "total_deaths_per_million": 9.665, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.38, + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 8530.0, + "new_cases": 339.0, + "new_cases_smoothed": 324.286, + "total_deaths": 102.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 841.291, + "new_cases_per_million": 33.435, + "new_cases_smoothed_per_million": 31.983, + "total_deaths_per_million": 10.06, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.366, + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 8882.0, + "new_cases": 352.0, + "new_cases_smoothed": 337.143, + "total_deaths": 108.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 876.008, + "new_cases_per_million": 34.717, + "new_cases_smoothed_per_million": 33.252, + "total_deaths_per_million": 10.652, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.423, + "stringency_index": 77.78 + }, + { + "date": "2020-06-13", + "total_cases": 9218.0, + "new_cases": 336.0, + "new_cases_smoothed": 336.857, + "total_deaths": 113.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 909.147, + "new_cases_per_million": 33.139, + "new_cases_smoothed_per_million": 33.223, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.437, + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 9570.0, + "new_cases": 352.0, + "new_cases_smoothed": 333.0, + "total_deaths": 115.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 943.864, + "new_cases_per_million": 34.717, + "new_cases_smoothed_per_million": 32.843, + "total_deaths_per_million": 11.342, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.437, + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 9957.0, + "new_cases": 387.0, + "new_cases_smoothed": 343.429, + "total_deaths": 119.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 982.033, + "new_cases_per_million": 38.169, + "new_cases_smoothed_per_million": 33.871, + "total_deaths_per_million": 11.737, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.437, + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 10324.0, + "new_cases": 367.0, + "new_cases_smoothed": 349.714, + "total_deaths": 122.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1018.229, + "new_cases_per_million": 36.196, + "new_cases_smoothed_per_million": 34.491, + "total_deaths_per_million": 12.033, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.409, + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 10662.0, + "new_cases": 338.0, + "new_cases_smoothed": 353.0, + "total_deaths": 126.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1051.565, + "new_cases_per_million": 33.336, + "new_cases_smoothed_per_million": 34.815, + "total_deaths_per_million": 12.427, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.395, + "stringency_index": 77.78 + }, + { + "date": "2020-06-18", + "total_cases": 10991.0, + "new_cases": 329.0, + "new_cases_smoothed": 351.571, + "total_deaths": 133.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1084.013, + "new_cases_per_million": 32.448, + "new_cases_smoothed_per_million": 34.675, + "total_deaths_per_million": 13.117, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.437, + "stringency_index": 77.78 + }, + { + "date": "2020-06-19", + "total_cases": 11329.0, + "new_cases": 338.0, + "new_cases_smoothed": 349.571, + "total_deaths": 139.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1117.349, + "new_cases_per_million": 33.336, + "new_cases_smoothed_per_million": 34.477, + "total_deaths_per_million": 13.709, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.437, + "stringency_index": 77.78 + }, + { + "date": "2020-06-20", + "total_cases": 11767.0, + "new_cases": 438.0, + "new_cases_smoothed": 364.143, + "total_deaths": 143.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1160.548, + "new_cases_per_million": 43.199, + "new_cases_smoothed_per_million": 35.914, + "total_deaths_per_million": 14.104, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.423, + "stringency_index": 77.78 + }, + { + "date": "2020-06-21", + "total_cases": 12238.0, + "new_cases": 471.0, + "new_cases_smoothed": 381.143, + "total_deaths": 148.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1207.002, + "new_cases_per_million": 46.453, + "new_cases_smoothed_per_million": 37.591, + "total_deaths_per_million": 14.597, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.465, + "stringency_index": 96.3 + }, + { + "date": "2020-06-22", + "total_cases": 12729.0, + "new_cases": 491.0, + "new_cases_smoothed": 396.0, + "total_deaths": 154.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1255.428, + "new_cases_per_million": 48.426, + "new_cases_smoothed_per_million": 39.056, + "total_deaths_per_million": 15.189, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 96.3 + }, + { + "date": "2020-06-23", + "total_cases": 13207.0, + "new_cases": 478.0, + "new_cases_smoothed": 411.857, + "total_deaths": 161.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1302.571, + "new_cases_per_million": 47.144, + "new_cases_smoothed_per_million": 40.62, + "total_deaths_per_million": 15.879, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 96.3 + }, + { + "date": "2020-06-24", + "total_cases": 13715.0, + "new_cases": 508.0, + "new_cases_smoothed": 436.143, + "total_deaths": 167.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1352.674, + "new_cases_per_million": 50.103, + "new_cases_smoothed_per_million": 43.016, + "total_deaths_per_million": 16.471, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 96.3 + }, + { + "date": "2020-06-25", + "total_cases": 14305.0, + "new_cases": 590.0, + "new_cases_smoothed": 473.429, + "total_deaths": 174.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1410.864, + "new_cases_per_million": 58.19, + "new_cases_smoothed_per_million": 46.693, + "total_deaths_per_million": 17.161, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 96.3 + }, + { + "date": "2020-06-26", + "total_cases": 14852.0, + "new_cases": 547.0, + "new_cases_smoothed": 503.286, + "total_deaths": 180.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1464.813, + "new_cases_per_million": 53.949, + "new_cases_smoothed_per_million": 49.638, + "total_deaths_per_million": 17.753, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 96.3 + }, + { + "date": "2020-06-27", + "total_cases": 15369.0, + "new_cases": 517.0, + "new_cases_smoothed": 514.571, + "total_deaths": 187.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1515.804, + "new_cases_per_million": 50.99, + "new_cases_smoothed_per_million": 50.751, + "total_deaths_per_million": 18.443, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.62, + "stringency_index": 96.3 + }, + { + "date": "2020-06-28", + "total_cases": 15890.0, + "new_cases": 521.0, + "new_cases_smoothed": 521.714, + "total_deaths": 193.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1567.189, + "new_cases_per_million": 51.385, + "new_cases_smoothed_per_million": 51.455, + "total_deaths_per_million": 19.035, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.634, + "stringency_index": 96.3 + }, + { + "date": "2020-06-29", + "total_cases": 16424.0, + "new_cases": 534.0, + "new_cases_smoothed": 527.857, + "total_deaths": 198.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1619.856, + "new_cases_per_million": 52.667, + "new_cases_smoothed_per_million": 52.061, + "total_deaths_per_million": 19.528, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.62, + "stringency_index": 96.3 + }, + { + "date": "2020-06-30", + "total_cases": 16968.0, + "new_cases": 544.0, + "new_cases_smoothed": 537.286, + "total_deaths": 206.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1673.509, + "new_cases_per_million": 53.653, + "new_cases_smoothed_per_million": 52.991, + "total_deaths_per_million": 20.317, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.634, + "stringency_index": 96.3 + }, + { + "date": "2020-07-01", + "total_cases": 17524.0, + "new_cases": 556.0, + "new_cases_smoothed": 544.143, + "total_deaths": 213.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1728.346, + "new_cases_per_million": 54.837, + "new_cases_smoothed_per_million": 53.667, + "total_deaths_per_million": 21.008, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.648, + "stringency_index": 96.3 + }, + { + "date": "2020-07-02", + "total_cases": 18112.0, + "new_cases": 588.0, + "new_cases_smoothed": 543.857, + "total_deaths": 220.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1786.339, + "new_cases_per_million": 57.993, + "new_cases_smoothed_per_million": 53.639, + "total_deaths_per_million": 21.698, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.648, + "stringency_index": 96.3 + }, + { + "date": "2020-07-03", + "total_cases": 18684.0, + "new_cases": 572.0, + "new_cases_smoothed": 547.429, + "total_deaths": 228.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1842.753, + "new_cases_per_million": 56.415, + "new_cases_smoothed_per_million": 53.991, + "total_deaths_per_million": 22.487, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 96.3 + }, + { + "date": "2020-07-04", + "total_cases": 19267.0, + "new_cases": 583.0, + "new_cases_smoothed": 556.857, + "total_deaths": 235.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1900.253, + "new_cases_per_million": 57.5, + "new_cases_smoothed_per_million": 54.921, + "total_deaths_per_million": 23.177, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 96.3 + }, + { + "date": "2020-07-05", + "total_cases": 19801.0, + "new_cases": 534.0, + "new_cases_smoothed": 558.714, + "total_deaths": 241.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1952.92, + "new_cases_per_million": 52.667, + "new_cases_smoothed_per_million": 55.105, + "total_deaths_per_million": 23.769, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 96.3 + }, + { + "date": "2020-07-06", + "total_cases": 20324.0, + "new_cases": 523.0, + "new_cases_smoothed": 557.143, + "total_deaths": 250.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2004.502, + "new_cases_per_million": 51.582, + "new_cases_smoothed_per_million": 54.95, + "total_deaths_per_million": 24.657, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.733, + "stringency_index": 96.3 + }, + { + "date": "2020-07-07", + "total_cases": 20837.0, + "new_cases": 513.0, + "new_cases_smoothed": 552.714, + "total_deaths": 258.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2055.098, + "new_cases_per_million": 50.596, + "new_cases_smoothed_per_million": 54.513, + "total_deaths_per_million": 25.446, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.733, + "stringency_index": 96.3 + }, + { + "date": "2020-07-08", + "total_cases": 21374.0, + "new_cases": 537.0, + "new_cases_smoothed": 550.0, + "total_deaths": 265.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2108.061, + "new_cases_per_million": 52.963, + "new_cases_smoothed_per_million": 54.245, + "total_deaths_per_million": 26.136, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.733, + "stringency_index": 96.3 + }, + { + "date": "2020-07-09", + "total_cases": 21916.0, + "new_cases": 542.0, + "new_cases_smoothed": 543.429, + "total_deaths": 274.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2161.517, + "new_cases_per_million": 53.456, + "new_cases_smoothed_per_million": 53.597, + "total_deaths_per_million": 27.024, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.761, + "stringency_index": 96.3 + }, + { + "date": "2020-07-10", + "total_cases": 22464.0, + "new_cases": 548.0, + "new_cases_smoothed": 540.0, + "total_deaths": 284.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 2215.565, + "new_cases_per_million": 54.048, + "new_cases_smoothed_per_million": 53.259, + "total_deaths_per_million": 28.01, + "new_deaths_per_million": 0.986, + "new_deaths_smoothed_per_million": 0.789, + "stringency_index": 96.3 + }, + { + "date": "2020-07-11", + "total_cases": 22990.0, + "new_cases": 526.0, + "new_cases_smoothed": 531.857, + "total_deaths": 292.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2267.443, + "new_cases_per_million": 51.878, + "new_cases_smoothed_per_million": 52.456, + "total_deaths_per_million": 28.799, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.803, + "stringency_index": 96.3 + }, + { + "date": "2020-07-12", + "total_cases": 23521.0, + "new_cases": 531.0, + "new_cases_smoothed": 531.429, + "total_deaths": 298.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2319.814, + "new_cases_per_million": 52.371, + "new_cases_smoothed_per_million": 52.413, + "total_deaths_per_million": 29.391, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.803, + "stringency_index": 96.3 + }, + { + "date": "2020-07-13", + "total_cases": 24041.0, + "new_cases": 520.0, + "new_cases_smoothed": 531.0, + "total_deaths": 306.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 2371.1, + "new_cases_per_million": 51.286, + "new_cases_smoothed_per_million": 52.371, + "total_deaths_per_million": 30.18, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.789, + "stringency_index": 96.3 + }, + { + "date": "2020-07-14", + "total_cases": 24570.0, + "new_cases": 529.0, + "new_cases_smoothed": 533.286, + "total_deaths": 313.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2423.274, + "new_cases_per_million": 52.174, + "new_cases_smoothed_per_million": 52.597, + "total_deaths_per_million": 30.87, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.775, + "stringency_index": 96.3 + }, + { + "date": "2020-07-15", + "total_cases": 25113.0, + "new_cases": 543.0, + "new_cases_smoothed": 534.143, + "total_deaths": 319.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2476.829, + "new_cases_per_million": 53.555, + "new_cases_smoothed_per_million": 52.681, + "total_deaths_per_million": 31.462, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.761, + "stringency_index": 96.3 + }, + { + "date": "2020-07-16", + "total_cases": 25672.0, + "new_cases": 559.0, + "new_cases_smoothed": 536.571, + "total_deaths": 326.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2531.961, + "new_cases_per_million": 55.133, + "new_cases_smoothed_per_million": 52.921, + "total_deaths_per_million": 32.153, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.733, + "stringency_index": 96.3 + }, + { + "date": "2020-07-17", + "total_cases": 26165.0, + "new_cases": 493.0, + "new_cases_smoothed": 528.714, + "total_deaths": 334.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2580.585, + "new_cases_per_million": 48.623, + "new_cases_smoothed_per_million": 52.146, + "total_deaths_per_million": 32.942, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.704, + "stringency_index": 96.3 + }, + { + "date": "2020-07-18", + "total_cases": 26636.0, + "new_cases": 471.0, + "new_cases_smoothed": 520.857, + "total_deaths": 341.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2627.038, + "new_cases_per_million": 46.453, + "new_cases_smoothed_per_million": 51.371, + "total_deaths_per_million": 33.632, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.69, + "stringency_index": 96.3 + }, + { + "date": "2020-07-19", + "total_cases": 27133.0, + "new_cases": 497.0, + "new_cases_smoothed": 516.0, + "total_deaths": 349.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2676.056, + "new_cases_per_million": 49.018, + "new_cases_smoothed_per_million": 50.892, + "total_deaths_per_million": 34.421, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 96.3 + }, + { + "date": "2020-07-20", + "total_cases": 27521.0, + "new_cases": 388.0, + "new_cases_smoothed": 497.143, + "total_deaths": 354.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2714.323, + "new_cases_per_million": 38.267, + "new_cases_smoothed_per_million": 49.032, + "total_deaths_per_million": 34.914, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 96.3 + }, + { + "date": "2020-07-21", + "total_cases": 27890.0, + "new_cases": 369.0, + "new_cases_smoothed": 474.286, + "total_deaths": 363.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2750.717, + "new_cases_per_million": 36.393, + "new_cases_smoothed_per_million": 46.778, + "total_deaths_per_million": 35.802, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.704, + "stringency_index": 96.3 + }, + { + "date": "2020-07-22", + "total_cases": 28242.0, + "new_cases": 352.0, + "new_cases_smoothed": 447.0, + "total_deaths": 376.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2785.434, + "new_cases_per_million": 34.717, + "new_cases_smoothed_per_million": 44.086, + "total_deaths_per_million": 37.084, + "new_deaths_per_million": 1.282, + "new_deaths_smoothed_per_million": 0.803, + "stringency_index": 96.3 + }, + { + "date": "2020-07-23", + "total_cases": 28633.0, + "new_cases": 391.0, + "new_cases_smoothed": 423.0, + "total_deaths": 385.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 2823.997, + "new_cases_per_million": 38.563, + "new_cases_smoothed_per_million": 41.719, + "total_deaths_per_million": 37.972, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.831, + "stringency_index": 96.3 + }, + { + "date": "2020-07-24", + "total_cases": 28980.0, + "new_cases": 347.0, + "new_cases_smoothed": 402.143, + "total_deaths": 391.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2858.221, + "new_cases_per_million": 34.224, + "new_cases_smoothed_per_million": 39.662, + "total_deaths_per_million": 38.563, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.803, + "stringency_index": 96.3 + }, + { + "date": "2020-07-25", + "total_cases": 29312.0, + "new_cases": 332.0, + "new_cases_smoothed": 382.286, + "total_deaths": 400.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 2890.965, + "new_cases_per_million": 32.744, + "new_cases_smoothed_per_million": 37.704, + "total_deaths_per_million": 39.451, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.831, + "stringency_index": 96.3 + }, + { + "date": "2020-07-26", + "total_cases": 29633.0, + "new_cases": 321.0, + "new_cases_smoothed": 357.143, + "total_deaths": 408.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 2922.624, + "new_cases_per_million": 31.659, + "new_cases_smoothed_per_million": 35.224, + "total_deaths_per_million": 40.24, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.831, + "stringency_index": 96.3 + }, + { + "date": "2020-07-27", + "total_cases": 30050.0, + "new_cases": 417.0, + "new_cases_smoothed": 361.286, + "total_deaths": 417.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 2963.752, + "new_cases_per_million": 41.128, + "new_cases_smoothed_per_million": 35.633, + "total_deaths_per_million": 41.128, + "new_deaths_per_million": 0.888, + "new_deaths_smoothed_per_million": 0.888, + "stringency_index": 96.3 + }, + { + "date": "2020-07-28", + "total_cases": 30446.0, + "new_cases": 396.0, + "new_cases_smoothed": 365.143, + "total_deaths": 423.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3002.808, + "new_cases_per_million": 39.056, + "new_cases_smoothed_per_million": 36.013, + "total_deaths_per_million": 41.719, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.845, + "stringency_index": 91.67 + }, + { + "date": "2020-07-29", + "total_cases": 30858.0, + "new_cases": 412.0, + "new_cases_smoothed": 373.714, + "total_deaths": 430.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3043.443, + "new_cases_per_million": 40.634, + "new_cases_smoothed_per_million": 36.858, + "total_deaths_per_million": 42.41, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.761, + "stringency_index": 91.67 + }, + { + "date": "2020-07-30", + "total_cases": 31221.0, + "new_cases": 363.0, + "new_cases_smoothed": 369.714, + "total_deaths": 438.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3079.245, + "new_cases_per_million": 35.802, + "new_cases_smoothed_per_million": 36.464, + "total_deaths_per_million": 43.199, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.747, + "stringency_index": 91.67 + }, + { + "date": "2020-07-31", + "total_cases": 31560.0, + "new_cases": 339.0, + "new_cases_smoothed": 368.571, + "total_deaths": 441.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 3112.679, + "new_cases_per_million": 33.435, + "new_cases_smoothed_per_million": 36.351, + "total_deaths_per_million": 43.495, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.704, + "stringency_index": 91.67 + }, + { + "date": "2020-08-01", + "total_cases": 31878.0, + "new_cases": 318.0, + "new_cases_smoothed": 366.571, + "total_deaths": 448.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3144.043, + "new_cases_per_million": 31.363, + "new_cases_smoothed_per_million": 36.154, + "total_deaths_per_million": 44.185, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 91.67 + }, + { + "date": "2020-08-02", + "total_cases": 32157.0, + "new_cases": 279.0, + "new_cases_smoothed": 360.571, + "total_deaths": 454.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3171.56, + "new_cases_per_million": 27.517, + "new_cases_smoothed_per_million": 35.562, + "total_deaths_per_million": 44.777, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.648, + "stringency_index": 91.67 + }, + { + "date": "2020-08-03", + "total_cases": 32443.0, + "new_cases": 286.0, + "new_cases_smoothed": 341.857, + "total_deaths": 462.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3199.767, + "new_cases_per_million": 28.207, + "new_cases_smoothed_per_million": 33.716, + "total_deaths_per_million": 45.566, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.634, + "stringency_index": 91.67 + }, + { + "date": "2020-08-04", + "total_cases": 32684.0, + "new_cases": 241.0, + "new_cases_smoothed": 319.714, + "total_deaths": 468.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3223.536, + "new_cases_per_million": 23.769, + "new_cases_smoothed_per_million": 31.533, + "total_deaths_per_million": 46.158, + "new_deaths_per_million": 0.592, + "new_deaths_smoothed_per_million": 0.634, + "stringency_index": 91.67 + }, + { + "date": "2020-08-05", + "total_cases": 32910.0, + "new_cases": 226.0, + "new_cases_smoothed": 293.143, + "total_deaths": 473.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3245.826, + "new_cases_per_million": 22.29, + "new_cases_smoothed_per_million": 28.912, + "total_deaths_per_million": 46.651, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.606, + "stringency_index": 91.67 + }, + { + "date": "2020-08-06", + "total_cases": 33103.0, + "new_cases": 193.0, + "new_cases_smoothed": 268.857, + "total_deaths": 476.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3264.861, + "new_cases_per_million": 19.035, + "new_cases_smoothed_per_million": 26.517, + "total_deaths_per_million": 46.947, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.535, + "stringency_index": 86.11 + }, + { + "date": "2020-08-07", + "total_cases": 33247.0, + "new_cases": 144.0, + "new_cases_smoothed": 241.0, + "total_deaths": 479.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3279.064, + "new_cases_per_million": 14.202, + "new_cases_smoothed_per_million": 23.769, + "total_deaths_per_million": 47.243, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.535, + "stringency_index": 86.11 + }, + { + "date": "2020-08-08", + "total_cases": 33376.0, + "new_cases": 129.0, + "new_cases_smoothed": 214.0, + "total_deaths": 483.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3291.787, + "new_cases_per_million": 12.723, + "new_cases_smoothed_per_million": 21.106, + "total_deaths_per_million": 47.637, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 86.11 + }, + { + "date": "2020-08-09", + "total_cases": 33481.0, + "new_cases": 105.0, + "new_cases_smoothed": 189.143, + "total_deaths": 488.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3302.142, + "new_cases_per_million": 10.356, + "new_cases_smoothed_per_million": 18.655, + "total_deaths_per_million": 48.13, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 86.11 + }, + { + "date": "2020-08-10", + "total_cases": 33568.0, + "new_cases": 87.0, + "new_cases_smoothed": 160.714, + "total_deaths": 490.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3310.723, + "new_cases_per_million": 8.581, + "new_cases_smoothed_per_million": 15.851, + "total_deaths_per_million": 48.327, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.395, + "stringency_index": 85.19 + }, + { + "date": "2020-08-11", + "total_cases": 33647.0, + "new_cases": 79.0, + "new_cases_smoothed": 137.571, + "total_deaths": 492.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 3318.515, + "new_cases_per_million": 7.792, + "new_cases_smoothed_per_million": 13.568, + "total_deaths_per_million": 48.525, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.338, + "stringency_index": 85.19 + }, + { + "date": "2020-08-12", + "total_cases": 33731.0, + "new_cases": 84.0, + "new_cases_smoothed": 117.286, + "total_deaths": 495.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3326.799, + "new_cases_per_million": 8.285, + "new_cases_smoothed_per_million": 11.568, + "total_deaths_per_million": 48.821, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.31, + "stringency_index": 85.19 + }, + { + "date": "2020-08-13", + "total_cases": 33824.0, + "new_cases": 93.0, + "new_cases_smoothed": 103.0, + "total_deaths": 497.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3335.972, + "new_cases_per_million": 9.172, + "new_cases_smoothed_per_million": 10.159, + "total_deaths_per_million": 49.018, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 85.19 + }, + { + "date": "2020-08-14", + "total_cases": 33915.0, + "new_cases": 91.0, + "new_cases_smoothed": 95.429, + "total_deaths": 500.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3344.947, + "new_cases_per_million": 8.975, + "new_cases_smoothed_per_million": 9.412, + "total_deaths_per_million": 49.314, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 85.19 + }, + { + "date": "2020-08-15", + "total_cases": 34018.0, + "new_cases": 103.0, + "new_cases_smoothed": 91.714, + "total_deaths": 504.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3355.105, + "new_cases_per_million": 10.159, + "new_cases_smoothed_per_million": 9.046, + "total_deaths_per_million": 49.708, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 85.19 + }, + { + "date": "2020-08-16", + "total_cases": 34107.0, + "new_cases": 89.0, + "new_cases_smoothed": 89.429, + "total_deaths": 506.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3363.883, + "new_cases_per_million": 8.778, + "new_cases_smoothed_per_million": 8.82, + "total_deaths_per_million": 49.905, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.254, + "stringency_index": 85.19 + }, + { + "date": "2020-08-17", + "total_cases": 34219.0, + "new_cases": 112.0, + "new_cases_smoothed": 93.0, + "total_deaths": 506.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3374.929, + "new_cases_per_million": 11.046, + "new_cases_smoothed_per_million": 9.172, + "total_deaths_per_million": 49.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 85.19 + }, + { + "date": "2020-08-18", + "total_cases": 34343.0, + "new_cases": 124.0, + "new_cases_smoothed": 99.429, + "total_deaths": 508.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3387.159, + "new_cases_per_million": 12.23, + "new_cases_smoothed_per_million": 9.806, + "total_deaths_per_million": 50.103, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 85.19 + }, + { + "date": "2020-08-19", + "total_cases": 34474.0, + "new_cases": 131.0, + "new_cases_smoothed": 106.143, + "total_deaths": 509.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3400.079, + "new_cases_per_million": 12.92, + "new_cases_smoothed_per_million": 10.469, + "total_deaths_per_million": 50.201, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 85.19 + }, + { + "date": "2020-08-20", + "total_cases": 34620.0, + "new_cases": 146.0, + "new_cases_smoothed": 113.714, + "total_deaths": 510.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3414.479, + "new_cases_per_million": 14.4, + "new_cases_smoothed_per_million": 11.215, + "total_deaths_per_million": 50.3, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 85.19 + }, + { + "date": "2020-08-21", + "total_cases": 34759.0, + "new_cases": 139.0, + "new_cases_smoothed": 120.571, + "total_deaths": 510.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3428.188, + "new_cases_per_million": 13.709, + "new_cases_smoothed_per_million": 11.892, + "total_deaths_per_million": 50.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 85.19 + }, + { + "date": "2020-08-22", + "total_cases": 34921.0, + "new_cases": 162.0, + "new_cases_smoothed": 129.0, + "total_deaths": 512.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3444.166, + "new_cases_per_million": 15.978, + "new_cases_smoothed_per_million": 12.723, + "total_deaths_per_million": 50.497, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 85.19 + }, + { + "date": "2020-08-23", + "total_cases": 35105.0, + "new_cases": 184.0, + "new_cases_smoothed": 142.571, + "total_deaths": 515.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3462.313, + "new_cases_per_million": 18.147, + "new_cases_smoothed_per_million": 14.061, + "total_deaths_per_million": 50.793, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 85.19 + }, + { + "date": "2020-08-24", + "total_cases": 35274.0, + "new_cases": 169.0, + "new_cases_smoothed": 150.714, + "total_deaths": 518.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3478.981, + "new_cases_per_million": 16.668, + "new_cases_smoothed_per_million": 14.865, + "total_deaths_per_million": 51.089, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 85.19 + }, + { + "date": "2020-08-25", + "total_cases": 35426.0, + "new_cases": 152.0, + "new_cases_smoothed": 154.714, + "total_deaths": 519.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3493.973, + "new_cases_per_million": 14.991, + "new_cases_smoothed_per_million": 15.259, + "total_deaths_per_million": 51.188, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 85.19 + }, + { + "date": "2020-08-26", + "total_cases": 35559.0, + "new_cases": 133.0, + "new_cases_smoothed": 155.0, + "total_deaths": 521.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3507.09, + "new_cases_per_million": 13.117, + "new_cases_smoothed_per_million": 15.287, + "total_deaths_per_million": 51.385, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 85.19 + }, + { + "date": "2020-08-27", + "total_cases": 35707.0, + "new_cases": 148.0, + "new_cases_smoothed": 155.286, + "total_deaths": 522.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3521.687, + "new_cases_per_million": 14.597, + "new_cases_smoothed_per_million": 15.315, + "total_deaths_per_million": 51.483, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 85.19 + }, + { + "date": "2020-08-28", + "total_cases": 35844.0, + "new_cases": 137.0, + "new_cases_smoothed": 155.0, + "total_deaths": 524.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3535.199, + "new_cases_per_million": 13.512, + "new_cases_smoothed_per_million": 15.287, + "total_deaths_per_million": 51.681, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.197 + }, + { + "date": "2020-08-29", + "total_cases": 35986.0, + "new_cases": 142.0, + "new_cases_smoothed": 152.143, + "total_deaths": 527.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3549.204, + "new_cases_per_million": 14.005, + "new_cases_smoothed_per_million": 15.005, + "total_deaths_per_million": 51.977, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.211 + }, + { + "date": "2020-08-30", + "total_cases": 36174.0, + "new_cases": 188.0, + "new_cases_smoothed": 152.714, + "total_deaths": 529.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3567.746, + "new_cases_per_million": 18.542, + "new_cases_smoothed_per_million": 15.062, + "total_deaths_per_million": 52.174, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.197 + }, + { + "date": "2020-08-31", + "total_cases": 36309.0, + "new_cases": 135.0, + "new_cases_smoothed": 147.857, + "total_deaths": 531.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3581.061, + "new_cases_per_million": 13.315, + "new_cases_smoothed_per_million": 14.583, + "total_deaths_per_million": 52.371, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.183 + }, + { + "date": "2020-09-01", + "total_cases": 36435.0, + "new_cases": 126.0, + "new_cases_smoothed": 144.143, + "total_deaths": 534.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3593.488, + "new_cases_per_million": 12.427, + "new_cases_smoothed_per_million": 14.216, + "total_deaths_per_million": 52.667, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.211 + }, + { + "date": "2020-09-02", + "total_cases": 36578.0, + "new_cases": 143.0, + "new_cases_smoothed": 145.571, + "total_deaths": 536.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3607.591, + "new_cases_per_million": 14.104, + "new_cases_smoothed_per_million": 14.357, + "total_deaths_per_million": 52.864, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.211 + }, + { + "date": "2020-09-03", + "total_cases": 36732.0, + "new_cases": 154.0, + "new_cases_smoothed": 146.429, + "total_deaths": 538.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3622.78, + "new_cases_per_million": 15.189, + "new_cases_smoothed_per_million": 14.442, + "total_deaths_per_million": 53.062, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.225 + }, + { + "date": "2020-09-04", + "total_cases": 36899.0, + "new_cases": 167.0, + "new_cases_smoothed": 150.714, + "total_deaths": 541.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 3639.251, + "new_cases_per_million": 16.471, + "new_cases_smoothed_per_million": 14.865, + "total_deaths_per_million": 53.357, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.24 + }, + { + "date": "2020-09-05", + "total_cases": 37031.0, + "new_cases": 132.0, + "new_cases_smoothed": 149.286, + "total_deaths": 543.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3652.27, + "new_cases_per_million": 13.019, + "new_cases_smoothed_per_million": 14.724, + "total_deaths_per_million": 53.555, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.225 + } + ] + }, + "BHS": { + "continent": "North America", + "location": "Bahamas", + "population": 393248.0, + "population_density": 39.497, + "median_age": 34.3, + "aged_65_older": 8.996, + "aged_70_older": 5.2, + "gdp_per_capita": 27717.847, + "cardiovasc_death_rate": 235.954, + "diabetes_prevalence": 13.17, + "female_smokers": 3.1, + "male_smokers": 20.4, + "hospital_beds_per_thousand": 2.9, + "life_expectancy": 73.92, + "data": [ + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.543, + "new_cases_per_million": 2.543, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.543, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.629, + "new_cases_per_million": 5.086, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.172, + "new_cases_per_million": 2.543, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.715, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 9.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.886, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.886, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.816, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.972, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 14.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.601, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 3.633, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.601, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.633, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.144, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.996, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 21.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.401, + "new_cases_per_million": 15.258, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 2.543, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-03", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.03, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 2.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 61.03, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 7.629, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-04-05", + "total_cases": 28.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 71.202, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 6.176, + "total_deaths_per_million": 10.172, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.453 + }, + { + "date": "2020-04-06", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 73.745, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 12.715, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-04-07", + "total_cases": 33.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 83.917, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 6.902, + "total_deaths_per_million": 12.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-04-08", + "total_cases": 36.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 91.545, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 7.629, + "total_deaths_per_million": 15.258, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 2.18 + }, + { + "date": "2020-04-09", + "total_cases": 40.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 101.717, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 6.902, + "total_deaths_per_million": 17.8, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 2.18 + }, + { + "date": "2020-04-10", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 104.26, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 6.176, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 2.543 + }, + { + "date": "2020-04-11", + "total_cases": 42.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 106.803, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 6.539, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-04-12", + "total_cases": 46.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 116.975, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 6.539, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.453 + }, + { + "date": "2020-04-13", + "total_cases": 47.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 119.517, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 6.539, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-04-14", + "total_cases": 49.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 124.603, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-04-15", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 124.603, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-16", + "total_cases": 53.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.775, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 20.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-17", + "total_cases": 54.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.318, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-18", + "total_cases": 55.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.861, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-19", + "total_cases": 58.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 147.49, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-20", + "total_cases": 60.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 152.575, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-21", + "total_cases": 64.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 162.747, + "new_cases_per_million": 10.172, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-22", + "total_cases": 65.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.29, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-23", + "total_cases": 70.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 178.005, + "new_cases_per_million": 12.715, + "new_cases_smoothed_per_million": 6.176, + "total_deaths_per_million": 22.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-04-24", + "total_cases": 72.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 183.091, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 6.539, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-25", + "total_cases": 73.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 185.633, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 6.539, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-26", + "total_cases": 78.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 198.348, + "new_cases_per_million": 12.715, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-27", + "total_cases": 80.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 203.434, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-28", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 203.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-29", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 203.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-04-30", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 203.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.633, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-05-01", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.977, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.52, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 83.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.063, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.816, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 89.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 226.32, + "new_cases_per_million": 15.258, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 92.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.949, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.996, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.633, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 93.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.492, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.633, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.492, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.035, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 96.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 97.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.664, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 100.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 101.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.835, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 102.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.816, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.378, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 103.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 104.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 106.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.55, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 107.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.093, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 108.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 274.636, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 111.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.265, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 111.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 113.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.35, + "new_cases_per_million": 5.086, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 116.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.979, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 119.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 302.608, + "new_cases_per_million": 7.629, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 124.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.323, + "new_cases_per_million": 12.715, + "new_cases_smoothed_per_million": 6.176, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 129.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 328.037, + "new_cases_per_million": 12.715, + "new_cases_smoothed_per_million": 7.629, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 138.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 350.924, + "new_cases_per_million": 22.886, + "new_cases_smoothed_per_million": 9.808, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 153.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 389.067, + "new_cases_per_million": 38.144, + "new_cases_smoothed_per_million": 15.258, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 174.0, + "new_cases": 21.0, + "new_cases_smoothed": 8.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 442.469, + "new_cases_per_million": 53.401, + "new_cases_smoothed_per_million": 22.16, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 194.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 493.327, + "new_cases_per_million": 50.858, + "new_cases_smoothed_per_million": 28.335, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 219.0, + "new_cases": 25.0, + "new_cases_smoothed": 14.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.9, + "new_cases_per_million": 63.573, + "new_cases_smoothed_per_million": 36.327, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 274.0, + "new_cases": 55.0, + "new_cases_smoothed": 21.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 696.761, + "new_cases_per_million": 139.861, + "new_cases_smoothed_per_million": 54.491, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 316.0, + "new_cases": 42.0, + "new_cases_smoothed": 26.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 803.564, + "new_cases_per_million": 106.803, + "new_cases_smoothed_per_million": 67.932, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 326.0, + "new_cases": 10.0, + "new_cases_smoothed": 26.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 828.993, + "new_cases_per_million": 25.429, + "new_cases_smoothed_per_million": 68.296, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 342.0, + "new_cases": 16.0, + "new_cases_smoothed": 27.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 869.68, + "new_cases_per_million": 40.687, + "new_cases_smoothed_per_million": 68.659, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 382.0, + "new_cases": 40.0, + "new_cases_smoothed": 29.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 971.397, + "new_cases_per_million": 101.717, + "new_cases_smoothed_per_million": 75.561, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 447.0, + "new_cases": 65.0, + "new_cases_smoothed": 36.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1136.687, + "new_cases_per_million": 165.29, + "new_cases_smoothed_per_million": 91.909, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 484.0, + "new_cases": 37.0, + "new_cases_smoothed": 37.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1230.775, + "new_cases_per_million": 94.088, + "new_cases_smoothed_per_million": 96.268, + "total_deaths_per_million": 27.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 508.0, + "new_cases": 24.0, + "new_cases_smoothed": 33.429, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1291.806, + "new_cases_per_million": 61.03, + "new_cases_smoothed_per_million": 85.006, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 7.629, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-01", + "total_cases": 574.0, + "new_cases": 66.0, + "new_cases_smoothed": 36.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1459.639, + "new_cases_per_million": 167.833, + "new_cases_smoothed_per_million": 93.725, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-02", + "total_cases": 599.0, + "new_cases": 25.0, + "new_cases_smoothed": 39.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1523.212, + "new_cases_per_million": 63.573, + "new_cases_smoothed_per_million": 99.174, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-03", + "total_cases": 648.0, + "new_cases": 49.0, + "new_cases_smoothed": 43.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1647.815, + "new_cases_per_million": 124.603, + "new_cases_smoothed_per_million": 111.162, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-04", + "total_cases": 679.0, + "new_cases": 31.0, + "new_cases_smoothed": 42.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1726.646, + "new_cases_per_million": 78.831, + "new_cases_smoothed_per_million": 107.893, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-05", + "total_cases": 715.0, + "new_cases": 36.0, + "new_cases_smoothed": 38.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1818.191, + "new_cases_per_million": 91.545, + "new_cases_smoothed_per_million": 97.358, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-06", + "total_cases": 751.0, + "new_cases": 36.0, + "new_cases_smoothed": 38.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1909.736, + "new_cases_per_million": 91.545, + "new_cases_smoothed_per_million": 96.994, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-07", + "total_cases": 761.0, + "new_cases": 10.0, + "new_cases_smoothed": 36.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1935.166, + "new_cases_per_million": 25.429, + "new_cases_smoothed_per_million": 91.909, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 830.0, + "new_cases": 69.0, + "new_cases_smoothed": 36.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2110.627, + "new_cases_per_million": 175.462, + "new_cases_smoothed_per_million": 92.998, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 878.0, + "new_cases": 48.0, + "new_cases_smoothed": 39.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2232.688, + "new_cases_per_million": 122.06, + "new_cases_smoothed_per_million": 101.354, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 898.0, + "new_cases": 20.0, + "new_cases_smoothed": 35.714, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2283.546, + "new_cases_per_million": 50.858, + "new_cases_smoothed_per_million": 90.819, + "total_deaths_per_million": 38.144, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-08-11", + "total_cases": 945.0, + "new_cases": 47.0, + "new_cases_smoothed": 38.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2403.064, + "new_cases_per_million": 119.517, + "new_cases_smoothed_per_million": 96.631, + "total_deaths_per_million": 38.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-08-12", + "total_cases": 989.0, + "new_cases": 44.0, + "new_cases_smoothed": 39.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2514.952, + "new_cases_per_million": 111.889, + "new_cases_smoothed_per_million": 99.537, + "total_deaths_per_million": 38.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-08-13", + "total_cases": 1036.0, + "new_cases": 47.0, + "new_cases_smoothed": 40.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2634.47, + "new_cases_per_million": 119.517, + "new_cases_smoothed_per_million": 103.533, + "total_deaths_per_million": 38.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-08-14", + "total_cases": 1089.0, + "new_cases": 53.0, + "new_cases_smoothed": 46.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2769.245, + "new_cases_per_million": 134.775, + "new_cases_smoothed_per_million": 119.154, + "total_deaths_per_million": 38.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-08-15", + "total_cases": 1119.0, + "new_cases": 30.0, + "new_cases_smoothed": 41.286, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2845.533, + "new_cases_per_million": 76.288, + "new_cases_smoothed_per_million": 104.986, + "total_deaths_per_million": 43.23, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-16", + "total_cases": 1252.0, + "new_cases": 133.0, + "new_cases_smoothed": 53.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3183.742, + "new_cases_per_million": 338.209, + "new_cases_smoothed_per_million": 135.865, + "total_deaths_per_million": 43.23, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-17", + "total_cases": 1315.0, + "new_cases": 63.0, + "new_cases_smoothed": 59.571, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3343.946, + "new_cases_per_million": 160.204, + "new_cases_smoothed_per_million": 151.486, + "total_deaths_per_million": 45.773, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-08-18", + "total_cases": 1329.0, + "new_cases": 14.0, + "new_cases_smoothed": 54.857, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3379.547, + "new_cases_per_million": 35.601, + "new_cases_smoothed_per_million": 139.498, + "total_deaths_per_million": 48.316, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.453 + }, + { + "date": "2020-08-19", + "total_cases": 1424.0, + "new_cases": 95.0, + "new_cases_smoothed": 62.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3621.125, + "new_cases_per_million": 241.578, + "new_cases_smoothed_per_million": 158.025, + "total_deaths_per_million": 50.858, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-08-20", + "total_cases": 1531.0, + "new_cases": 107.0, + "new_cases_smoothed": 70.714, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 3893.218, + "new_cases_per_million": 272.093, + "new_cases_smoothed_per_million": 179.821, + "total_deaths_per_million": 55.944, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 2.543 + }, + { + "date": "2020-08-21", + "total_cases": 1610.0, + "new_cases": 79.0, + "new_cases_smoothed": 74.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4094.109, + "new_cases_per_million": 200.891, + "new_cases_smoothed_per_million": 189.266, + "total_deaths_per_million": 58.487, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 2.906 + }, + { + "date": "2020-08-22", + "total_cases": 1703.0, + "new_cases": 93.0, + "new_cases_smoothed": 83.429, + "total_deaths": 27.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4330.601, + "new_cases_per_million": 236.492, + "new_cases_smoothed_per_million": 212.153, + "total_deaths_per_million": 68.659, + "new_deaths_per_million": 10.172, + "new_deaths_smoothed_per_million": 3.633 + }, + { + "date": "2020-08-23", + "total_cases": 1765.0, + "new_cases": 62.0, + "new_cases_smoothed": 73.286, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4488.262, + "new_cases_per_million": 157.661, + "new_cases_smoothed_per_million": 186.36, + "total_deaths_per_million": 73.745, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 4.359 + }, + { + "date": "2020-08-24", + "total_cases": 1765.0, + "new_cases": 0.0, + "new_cases_smoothed": 64.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4488.262, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 163.474, + "total_deaths_per_million": 73.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.996 + }, + { + "date": "2020-08-25", + "total_cases": 1798.0, + "new_cases": 33.0, + "new_cases_smoothed": 67.0, + "total_deaths": 40.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 4572.178, + "new_cases_per_million": 83.917, + "new_cases_smoothed_per_million": 170.376, + "total_deaths_per_million": 101.717, + "new_deaths_per_million": 27.972, + "new_deaths_smoothed_per_million": 7.629 + }, + { + "date": "2020-08-26", + "total_cases": 1813.0, + "new_cases": 15.0, + "new_cases_smoothed": 55.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 4610.322, + "new_cases_per_million": 38.144, + "new_cases_smoothed_per_million": 141.314, + "total_deaths_per_million": 101.717, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.265 + }, + { + "date": "2020-08-27", + "total_cases": 1813.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 4610.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 102.444, + "total_deaths_per_million": 101.717, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.539 + }, + { + "date": "2020-08-28", + "total_cases": 1923.0, + "new_cases": 110.0, + "new_cases_smoothed": 44.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4890.044, + "new_cases_per_million": 279.722, + "new_cases_smoothed_per_million": 113.705, + "total_deaths_per_million": 101.717, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.176 + }, + { + "date": "2020-08-29", + "total_cases": 2057.0, + "new_cases": 134.0, + "new_cases_smoothed": 50.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5230.796, + "new_cases_per_million": 340.752, + "new_cases_smoothed_per_million": 128.599, + "total_deaths_per_million": 101.717, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.723 + }, + { + "date": "2020-08-30", + "total_cases": 2135.0, + "new_cases": 78.0, + "new_cases_smoothed": 52.857, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5429.144, + "new_cases_per_million": 198.348, + "new_cases_smoothed_per_million": 134.412, + "total_deaths_per_million": 109.346, + "new_deaths_per_million": 7.629, + "new_deaths_smoothed_per_million": 5.086 + }, + { + "date": "2020-08-31", + "total_cases": 2167.0, + "new_cases": 32.0, + "new_cases_smoothed": 57.429, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5510.518, + "new_cases_per_million": 81.374, + "new_cases_smoothed_per_million": 146.037, + "total_deaths_per_million": 109.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.086 + }, + { + "date": "2020-09-01", + "total_cases": 2217.0, + "new_cases": 50.0, + "new_cases_smoothed": 59.857, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5637.664, + "new_cases_per_million": 127.146, + "new_cases_smoothed_per_million": 152.212, + "total_deaths_per_million": 111.889, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.453 + }, + { + "date": "2020-09-02", + "total_cases": 2276.0, + "new_cases": 59.0, + "new_cases_smoothed": 66.143, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5787.696, + "new_cases_per_million": 150.033, + "new_cases_smoothed_per_million": 168.196, + "total_deaths_per_million": 116.975, + "new_deaths_per_million": 5.086, + "new_deaths_smoothed_per_million": 2.18 + }, + { + "date": "2020-09-03", + "total_cases": 2337.0, + "new_cases": 61.0, + "new_cases_smoothed": 74.857, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5942.815, + "new_cases_per_million": 155.118, + "new_cases_smoothed_per_million": 190.356, + "total_deaths_per_million": 119.517, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 2.543 + }, + { + "date": "2020-09-04", + "total_cases": 2386.0, + "new_cases": 49.0, + "new_cases_smoothed": 66.143, + "total_deaths": 50.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6067.418, + "new_cases_per_million": 124.603, + "new_cases_smoothed_per_million": 168.196, + "total_deaths_per_million": 127.146, + "new_deaths_per_million": 7.629, + "new_deaths_smoothed_per_million": 3.633 + }, + { + "date": "2020-09-05", + "total_cases": 2386.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6067.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 119.517, + "total_deaths_per_million": 127.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.633 + } + ] + }, + "BHR": { + "continent": "Asia", + "location": "Bahrain", + "population": 1701583.0, + "population_density": 1935.907, + "median_age": 32.4, + "aged_65_older": 2.372, + "aged_70_older": 1.387, + "gdp_per_capita": 43290.705, + "cardiovasc_death_rate": 151.689, + "diabetes_prevalence": 16.52, + "female_smokers": 5.8, + "male_smokers": 37.6, + "hospital_beds_per_thousand": 2.0, + "life_expectancy": 77.29, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-25", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-26", + "total_cases": 23.0, + "new_cases": 21.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.517, + "new_cases_per_million": 12.341, + "new_cases_smoothed_per_million": 1.931, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-02-27", + "total_cases": 33.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.394, + "new_cases_per_million": 5.877, + "new_cases_smoothed_per_million": 2.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-02-28", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-02-29", + "total_cases": 38.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.332, + "new_cases_per_million": 2.938, + "new_cases_smoothed_per_million": 3.19, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-01", + "total_cases": 41.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.095, + "new_cases_per_million": 1.763, + "new_cases_smoothed_per_million": 3.442, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-02", + "total_cases": 47.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.621, + "new_cases_per_million": 3.526, + "new_cases_smoothed_per_million": 3.862, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 6.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.778, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-04", + "total_cases": 49.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.797, + "new_cases_per_million": 1.175, + "new_cases_smoothed_per_million": 2.183, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-05", + "total_cases": 52.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.56, + "new_cases_per_million": 1.763, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5334.0, + "total_tests_per_thousand": 3.135, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-06", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.56, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-07", + "total_cases": 56.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.911, + "new_cases_per_million": 2.351, + "new_cases_smoothed_per_million": 1.511, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6420.0, + "total_tests_per_thousand": 3.773, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-08", + "total_cases": 63.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.024, + "new_cases_per_million": 4.114, + "new_cases_smoothed_per_million": 1.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-09", + "total_cases": 79.0, + "new_cases": 16.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.427, + "new_cases_per_million": 9.403, + "new_cases_smoothed_per_million": 2.687, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 7830.0, + "total_tests_per_thousand": 4.602, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-10", + "total_cases": 109.0, + "new_cases": 30.0, + "new_cases_smoothed": 8.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.058, + "new_cases_per_million": 17.631, + "new_cases_smoothed_per_million": 5.205, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 524.0, + "total_tests": 8354.0, + "total_tests_per_thousand": 4.91, + "new_tests_per_thousand": 0.308, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-11", + "total_cases": 110.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.646, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 5.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 456.0, + "total_tests": 8810.0, + "total_tests_per_thousand": 5.178, + "new_tests_per_thousand": 0.268, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-12", + "total_cases": 162.0, + "new_cases": 52.0, + "new_cases_smoothed": 15.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.205, + "new_cases_per_million": 30.56, + "new_cases_smoothed_per_million": 9.235, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 232.0, + "total_tests": 9042.0, + "total_tests_per_thousand": 5.314, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 530.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 33.727, + "positive_rate": 0.03, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 162.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.205, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.235, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 562.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 35.764, + "positive_rate": 0.027999999999999997, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-14", + "total_cases": 210.0, + "new_cases": 48.0, + "new_cases_smoothed": 22.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.414, + "new_cases_per_million": 28.209, + "new_cases_smoothed_per_million": 12.929, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 595.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 27.045, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-15", + "total_cases": 211.0, + "new_cases": 1.0, + "new_cases_smoothed": 21.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.002, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 12.425, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 605.0, + "new_tests_smoothed_per_thousand": 0.356, + "tests_per_case": 28.615, + "positive_rate": 0.035, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-16", + "total_cases": 214.0, + "new_cases": 3.0, + "new_cases_smoothed": 19.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.765, + "new_cases_per_million": 1.763, + "new_cases_smoothed_per_million": 11.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 12131.0, + "total_tests_per_thousand": 7.129, + "new_tests_smoothed": 614.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 31.837, + "positive_rate": 0.031, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-17", + "total_cases": 221.0, + "new_cases": 7.0, + "new_cases_smoothed": 16.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.879, + "new_cases_per_million": 4.114, + "new_cases_smoothed_per_million": 9.403, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 1422.0, + "total_tests": 13553.0, + "total_tests_per_thousand": 7.965, + "new_tests_per_thousand": 0.836, + "new_tests_smoothed": 743.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 46.438, + "positive_rate": 0.022000000000000002, + "tests_units": "units unclear", + "stringency_index": 30.56 + }, + { + "date": "2020-03-18", + "total_cases": 237.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.282, + "new_cases_per_million": 9.403, + "new_cases_smoothed_per_million": 10.662, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 942.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 51.92100000000001, + "positive_rate": 0.019, + "tests_units": "units unclear", + "stringency_index": 66.67 + }, + { + "date": "2020-03-19", + "total_cases": 256.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 150.448, + "new_cases_per_million": 11.166, + "new_cases_smoothed_per_million": 7.892, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1173.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 87.351, + "positive_rate": 0.011000000000000001, + "tests_units": "units unclear", + "stringency_index": 66.67 + }, + { + "date": "2020-03-20", + "total_cases": 269.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 158.088, + "new_cases_per_million": 7.64, + "new_cases_smoothed_per_million": 8.983, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "total_tests": 19098.0, + "total_tests_per_thousand": 11.224, + "new_tests_smoothed": 1326.0, + "new_tests_smoothed_per_thousand": 0.779, + "tests_per_case": 86.74799999999999, + "positive_rate": 0.012, + "tests_units": "units unclear", + "stringency_index": 66.67 + }, + { + "date": "2020-03-21", + "total_cases": 285.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 167.491, + "new_cases_per_million": 9.403, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1505.0, + "new_tests_smoothed_per_thousand": 0.884, + "tests_per_case": 140.467, + "positive_rate": 0.006999999999999999, + "tests_units": "units unclear", + "stringency_index": 66.67 + }, + { + "date": "2020-03-22", + "total_cases": 306.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 179.833, + "new_cases_per_million": 12.341, + "new_cases_smoothed_per_million": 7.976, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1684.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 124.084, + "positive_rate": 0.008, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-03-23", + "total_cases": 334.0, + "new_cases": 28.0, + "new_cases_smoothed": 17.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 196.288, + "new_cases_per_million": 16.455, + "new_cases_smoothed_per_million": 10.075, + "total_deaths_per_million": 1.175, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "total_tests": 25169.0, + "total_tests_per_thousand": 14.792, + "new_tests_smoothed": 1863.0, + "new_tests_smoothed_per_thousand": 1.095, + "tests_per_case": 108.675, + "positive_rate": 0.009000000000000001, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-03-24", + "total_cases": 339.0, + "new_cases": 5.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.226, + "new_cases_per_million": 2.938, + "new_cases_smoothed_per_million": 9.907, + "total_deaths_per_million": 1.175, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1867.0, + "new_tests_smoothed_per_thousand": 1.097, + "tests_per_case": 110.75399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-03-25", + "total_cases": 390.0, + "new_cases": 51.0, + "new_cases_smoothed": 21.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 229.198, + "new_cases_per_million": 29.972, + "new_cases_smoothed_per_million": 12.845, + "total_deaths_per_million": 1.763, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "new_tests_smoothed": 1811.0, + "new_tests_smoothed_per_thousand": 1.064, + "tests_per_case": 82.85600000000001, + "positive_rate": 0.012, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-03-26", + "total_cases": 419.0, + "new_cases": 29.0, + "new_cases_smoothed": 23.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 246.241, + "new_cases_per_million": 17.043, + "new_cases_smoothed_per_million": 13.685, + "total_deaths_per_million": 1.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "total_tests": 29533.0, + "total_tests_per_thousand": 17.356, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 1.031, + "tests_per_case": 75.368, + "positive_rate": 0.013000000000000001, + "tests_units": "units unclear", + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 458.0, + "new_cases": 39.0, + "new_cases_smoothed": 27.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 269.161, + "new_cases_per_million": 22.92, + "new_cases_smoothed_per_million": 15.868, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests_smoothed": 1603.0, + "new_tests_smoothed_per_thousand": 0.942, + "tests_per_case": 59.37, + "positive_rate": 0.017, + "tests_units": "units unclear", + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 466.0, + "new_cases": 8.0, + "new_cases_smoothed": 25.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 273.863, + "new_cases_per_million": 4.702, + "new_cases_smoothed_per_million": 15.196, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests_smoothed": 1427.0, + "new_tests_smoothed_per_thousand": 0.839, + "tests_per_case": 55.188, + "positive_rate": 0.018000000000000002, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-03-29", + "total_cases": 473.0, + "new_cases": 7.0, + "new_cases_smoothed": 23.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 277.976, + "new_cases_per_million": 4.114, + "new_cases_smoothed_per_million": 14.021, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "total_tests": 31895.0, + "total_tests_per_thousand": 18.744, + "new_tests_smoothed": 1250.0, + "new_tests_smoothed_per_thousand": 0.735, + "tests_per_case": 52.395, + "positive_rate": 0.019, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-03-30", + "total_cases": 500.0, + "new_cases": 27.0, + "new_cases_smoothed": 23.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 293.844, + "new_cases_per_million": 15.868, + "new_cases_smoothed_per_million": 13.937, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 701.0, + "total_tests": 32596.0, + "total_tests_per_thousand": 19.156, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 1061.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 44.74100000000001, + "positive_rate": 0.022000000000000002, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-03-31", + "total_cases": 515.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 302.659, + "new_cases_per_million": 8.815, + "new_cases_smoothed_per_million": 14.776, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests_smoothed": 1046.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 41.602, + "positive_rate": 0.024, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-01", + "total_cases": 567.0, + "new_cases": 52.0, + "new_cases_smoothed": 25.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 333.219, + "new_cases_per_million": 30.56, + "new_cases_smoothed_per_million": 14.86, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1031.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 40.774, + "positive_rate": 0.025, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-02", + "total_cases": 569.0, + "new_cases": 2.0, + "new_cases_smoothed": 21.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 334.395, + "new_cases_per_million": 1.175, + "new_cases_smoothed_per_million": 12.593, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 1016.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 47.413000000000004, + "positive_rate": 0.021, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-03", + "total_cases": 643.0, + "new_cases": 74.0, + "new_cases_smoothed": 26.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.883, + "new_cases_per_million": 43.489, + "new_cases_smoothed_per_million": 15.532, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 37996.0, + "total_tests_per_thousand": 22.33, + "new_tests_smoothed": 1097.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 41.508, + "positive_rate": 0.024, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-04", + "total_cases": 643.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.86, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1260.0, + "total_tests": 39256.0, + "total_tests_per_thousand": 23.07, + "new_tests_per_thousand": 0.74, + "new_tests_smoothed": 1164.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 46.034, + "positive_rate": 0.022000000000000002, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-05", + "total_cases": 688.0, + "new_cases": 45.0, + "new_cases_smoothed": 30.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 404.329, + "new_cases_per_million": 26.446, + "new_cases_smoothed_per_million": 18.05, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5130.0, + "total_tests": 44386.0, + "total_tests_per_thousand": 26.085, + "new_tests_per_thousand": 3.015, + "new_tests_smoothed": 1784.0, + "new_tests_smoothed_per_thousand": 1.048, + "tests_per_case": 58.083999999999996, + "positive_rate": 0.017, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 700.0, + "new_cases": 12.0, + "new_cases_smoothed": 28.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 411.382, + "new_cases_per_million": 7.052, + "new_cases_smoothed_per_million": 16.791, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3298.0, + "total_tests": 47684.0, + "total_tests_per_thousand": 28.023, + "new_tests_per_thousand": 1.938, + "new_tests_smoothed": 2155.0, + "new_tests_smoothed_per_thousand": 1.266, + "tests_per_case": 75.425, + "positive_rate": 0.013000000000000001, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-07", + "total_cases": 756.0, + "new_cases": 56.0, + "new_cases_smoothed": 34.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 444.292, + "new_cases_per_million": 32.911, + "new_cases_smoothed_per_million": 20.233, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2443.0, + "total_tests": 50127.0, + "total_tests_per_thousand": 29.459, + "new_tests_per_thousand": 1.436, + "new_tests_smoothed": 2312.0, + "new_tests_smoothed_per_thousand": 1.359, + "tests_per_case": 67.154, + "positive_rate": 0.015, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-08", + "total_cases": 811.0, + "new_cases": 55.0, + "new_cases_smoothed": 34.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 476.615, + "new_cases_per_million": 32.323, + "new_cases_smoothed_per_million": 20.485, + "total_deaths_per_million": 2.938, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2677.0, + "total_tests": 52804.0, + "total_tests_per_thousand": 31.032, + "new_tests_per_thousand": 1.573, + "new_tests_smoothed": 2501.0, + "new_tests_smoothed_per_thousand": 1.47, + "tests_per_case": 71.75, + "positive_rate": 0.013999999999999999, + "tests_units": "units unclear", + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 823.0, + "new_cases": 12.0, + "new_cases_smoothed": 36.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 483.667, + "new_cases_per_million": 7.052, + "new_cases_smoothed_per_million": 21.325, + "total_deaths_per_million": 2.938, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2292.0, + "total_tests": 55096.0, + "total_tests_per_thousand": 32.379, + "new_tests_per_thousand": 1.347, + "new_tests_smoothed": 2636.0, + "new_tests_smoothed_per_thousand": 1.549, + "tests_per_case": 72.646, + "positive_rate": 0.013999999999999999, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-10", + "total_cases": 887.0, + "new_cases": 64.0, + "new_cases_smoothed": 34.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 521.279, + "new_cases_per_million": 37.612, + "new_cases_smoothed_per_million": 20.485, + "total_deaths_per_million": 2.938, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2585.0, + "total_tests": 57681.0, + "total_tests_per_thousand": 33.898, + "new_tests_per_thousand": 1.519, + "new_tests_smoothed": 2812.0, + "new_tests_smoothed_per_thousand": 1.653, + "tests_per_case": 80.672, + "positive_rate": 0.012, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-11", + "total_cases": 998.0, + "new_cases": 111.0, + "new_cases_smoothed": 50.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 586.513, + "new_cases_per_million": 65.233, + "new_cases_smoothed_per_million": 29.804, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 3025.0, + "total_tests": 60706.0, + "total_tests_per_thousand": 35.676, + "new_tests_per_thousand": 1.778, + "new_tests_smoothed": 3064.0, + "new_tests_smoothed_per_thousand": 1.801, + "tests_per_case": 60.417, + "positive_rate": 0.017, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-12", + "total_cases": 1040.0, + "new_cases": 42.0, + "new_cases_smoothed": 50.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 611.196, + "new_cases_per_million": 24.683, + "new_cases_smoothed_per_million": 29.552, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 3267.0, + "total_tests": 63973.0, + "total_tests_per_thousand": 37.596, + "new_tests_per_thousand": 1.92, + "new_tests_smoothed": 2798.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_per_case": 55.641999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-13", + "total_cases": 1136.0, + "new_cases": 96.0, + "new_cases_smoothed": 62.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 667.614, + "new_cases_per_million": 56.418, + "new_cases_smoothed_per_million": 36.605, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 3354.0, + "total_tests": 67327.0, + "total_tests_per_thousand": 39.567, + "new_tests_per_thousand": 1.971, + "new_tests_smoothed": 2806.0, + "new_tests_smoothed_per_thousand": 1.649, + "tests_per_case": 45.05, + "positive_rate": 0.022000000000000002, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-14", + "total_cases": 1361.0, + "new_cases": 225.0, + "new_cases_smoothed": 86.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 799.843, + "new_cases_per_million": 132.23, + "new_cases_smoothed_per_million": 50.793, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 3486.0, + "total_tests": 70813.0, + "total_tests_per_thousand": 41.616, + "new_tests_per_thousand": 2.049, + "new_tests_smoothed": 2955.0, + "new_tests_smoothed_per_thousand": 1.737, + "tests_per_case": 34.19, + "positive_rate": 0.028999999999999998, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-15", + "total_cases": 1528.0, + "new_cases": 167.0, + "new_cases_smoothed": 102.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 897.987, + "new_cases_per_million": 98.144, + "new_cases_smoothed_per_million": 60.196, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2459.0, + "total_tests": 73272.0, + "total_tests_per_thousand": 43.061, + "new_tests_per_thousand": 1.445, + "new_tests_smoothed": 2924.0, + "new_tests_smoothed_per_thousand": 1.718, + "tests_per_case": 28.546999999999997, + "positive_rate": 0.035, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-16", + "total_cases": 1673.0, + "new_cases": 145.0, + "new_cases_smoothed": 121.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 983.202, + "new_cases_per_million": 85.215, + "new_cases_smoothed_per_million": 71.362, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 3672.0, + "total_tests": 76944.0, + "total_tests_per_thousand": 45.219, + "new_tests_per_thousand": 2.158, + "new_tests_smoothed": 3121.0, + "new_tests_smoothed_per_thousand": 1.834, + "tests_per_case": 25.701999999999998, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-17", + "total_cases": 1700.0, + "new_cases": 27.0, + "new_cases_smoothed": 116.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 999.07, + "new_cases_per_million": 15.868, + "new_cases_smoothed_per_million": 68.256, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2668.0, + "total_tests": 79612.0, + "total_tests_per_thousand": 46.787, + "new_tests_per_thousand": 1.568, + "new_tests_smoothed": 3133.0, + "new_tests_smoothed_per_thousand": 1.841, + "tests_per_case": 26.975, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-18", + "total_cases": 1744.0, + "new_cases": 44.0, + "new_cases_smoothed": 106.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1024.928, + "new_cases_per_million": 25.858, + "new_cases_smoothed_per_million": 62.631, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2956.0, + "total_tests": 82568.0, + "total_tests_per_thousand": 48.524, + "new_tests_per_thousand": 1.737, + "new_tests_smoothed": 3123.0, + "new_tests_smoothed_per_thousand": 1.835, + "tests_per_case": 29.304000000000002, + "positive_rate": 0.034, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-19", + "total_cases": 1773.0, + "new_cases": 29.0, + "new_cases_smoothed": 104.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1041.971, + "new_cases_per_million": 17.043, + "new_cases_smoothed_per_million": 61.539, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 4164.0, + "total_tests": 86732.0, + "total_tests_per_thousand": 50.971, + "new_tests_per_thousand": 2.447, + "new_tests_smoothed": 3251.0, + "new_tests_smoothed_per_thousand": 1.911, + "tests_per_case": 31.046, + "positive_rate": 0.032, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-20", + "total_cases": 1873.0, + "new_cases": 100.0, + "new_cases_smoothed": 105.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1100.74, + "new_cases_per_million": 58.769, + "new_cases_smoothed_per_million": 61.875, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 3575.0, + "total_tests": 90307.0, + "total_tests_per_thousand": 53.072, + "new_tests_per_thousand": 2.101, + "new_tests_smoothed": 3283.0, + "new_tests_smoothed_per_thousand": 1.929, + "tests_per_case": 31.182, + "positive_rate": 0.032, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-21", + "total_cases": 1907.0, + "new_cases": 34.0, + "new_cases_smoothed": 78.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1120.721, + "new_cases_per_million": 19.981, + "new_cases_smoothed_per_million": 45.84, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4073.0, + "total_tests": 94380.0, + "total_tests_per_thousand": 55.466, + "new_tests_per_thousand": 2.394, + "new_tests_smoothed": 3367.0, + "new_tests_smoothed_per_thousand": 1.979, + "tests_per_case": 43.167, + "positive_rate": 0.023, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-22", + "total_cases": 1973.0, + "new_cases": 66.0, + "new_cases_smoothed": 63.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.509, + "new_cases_per_million": 38.787, + "new_cases_smoothed_per_million": 37.36, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3416.0, + "total_tests": 97796.0, + "total_tests_per_thousand": 57.474, + "new_tests_per_thousand": 2.008, + "new_tests_smoothed": 3503.0, + "new_tests_smoothed_per_thousand": 2.059, + "tests_per_case": 55.103, + "positive_rate": 0.018000000000000002, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-23", + "total_cases": 2007.0, + "new_cases": 34.0, + "new_cases_smoothed": 47.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1179.49, + "new_cases_per_million": 19.981, + "new_cases_smoothed_per_million": 28.041, + "total_deaths_per_million": 4.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2235.0, + "total_tests": 100031.0, + "total_tests_per_thousand": 58.787, + "new_tests_per_thousand": 1.313, + "new_tests_smoothed": 3298.0, + "new_tests_smoothed_per_thousand": 1.938, + "tests_per_case": 69.12, + "positive_rate": 0.013999999999999999, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-24", + "total_cases": 2217.0, + "new_cases": 210.0, + "new_cases_smoothed": 73.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1302.904, + "new_cases_per_million": 123.414, + "new_cases_smoothed_per_million": 43.405, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 5334.0, + "total_tests": 105365.0, + "total_tests_per_thousand": 61.922, + "new_tests_per_thousand": 3.135, + "new_tests_smoothed": 3679.0, + "new_tests_smoothed_per_thousand": 2.162, + "tests_per_case": 49.812, + "positive_rate": 0.02, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-25", + "total_cases": 2518.0, + "new_cases": 301.0, + "new_cases_smoothed": 110.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1479.799, + "new_cases_per_million": 176.894, + "new_cases_smoothed_per_million": 64.982, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 5042.0, + "total_tests": 110407.0, + "total_tests_per_thousand": 64.885, + "new_tests_per_thousand": 2.963, + "new_tests_smoothed": 3977.0, + "new_tests_smoothed_per_thousand": 2.337, + "tests_per_case": 35.968, + "positive_rate": 0.027999999999999997, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-26", + "total_cases": 2589.0, + "new_cases": 71.0, + "new_cases_smoothed": 116.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1521.524, + "new_cases_per_million": 41.726, + "new_cases_smoothed_per_million": 68.508, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 3703.0, + "total_tests": 114110.0, + "total_tests_per_thousand": 67.061, + "new_tests_per_thousand": 2.176, + "new_tests_smoothed": 3911.0, + "new_tests_smoothed_per_thousand": 2.298, + "tests_per_case": 33.55, + "positive_rate": 0.03, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-27", + "total_cases": 2647.0, + "new_cases": 58.0, + "new_cases_smoothed": 110.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1555.61, + "new_cases_per_million": 34.086, + "new_cases_smoothed_per_million": 64.982, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 3687.0, + "total_tests": 117797.0, + "total_tests_per_thousand": 69.228, + "new_tests_per_thousand": 2.167, + "new_tests_smoothed": 3927.0, + "new_tests_smoothed_per_thousand": 2.308, + "tests_per_case": 35.516, + "positive_rate": 0.027999999999999997, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-28", + "total_cases": 2723.0, + "new_cases": 76.0, + "new_cases_smoothed": 116.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1600.275, + "new_cases_per_million": 44.664, + "new_cases_smoothed_per_million": 68.508, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 3909.0, + "total_tests": 121706.0, + "total_tests_per_thousand": 71.525, + "new_tests_per_thousand": 2.297, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 2.294, + "tests_per_case": 33.49, + "positive_rate": 0.03, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-29", + "total_cases": 2811.0, + "new_cases": 88.0, + "new_cases_smoothed": 119.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1651.991, + "new_cases_per_million": 51.717, + "new_cases_smoothed_per_million": 70.355, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 5199.0, + "total_tests": 126905.0, + "total_tests_per_thousand": 74.581, + "new_tests_per_thousand": 3.055, + "new_tests_smoothed": 4158.0, + "new_tests_smoothed_per_thousand": 2.444, + "tests_per_case": 34.733000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-04-30", + "total_cases": 2921.0, + "new_cases": 110.0, + "new_cases_smoothed": 130.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1716.637, + "new_cases_per_million": 64.646, + "new_cases_smoothed_per_million": 76.735, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2789.0, + "total_tests": 129694.0, + "total_tests_per_thousand": 76.22, + "new_tests_per_thousand": 1.639, + "new_tests_smoothed": 4238.0, + "new_tests_smoothed_per_thousand": 2.491, + "tests_per_case": 32.457, + "positive_rate": 0.031, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-01", + "total_cases": 3040.0, + "new_cases": 119.0, + "new_cases_smoothed": 117.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1786.572, + "new_cases_per_million": 69.935, + "new_cases_smoothed_per_million": 69.095, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4388.0, + "total_tests": 134082.0, + "total_tests_per_thousand": 78.798, + "new_tests_per_thousand": 2.579, + "new_tests_smoothed": 4102.0, + "new_tests_smoothed_per_thousand": 2.411, + "tests_per_case": 34.889, + "positive_rate": 0.028999999999999998, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-02", + "total_cases": 3170.0, + "new_cases": 130.0, + "new_cases_smoothed": 93.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1862.971, + "new_cases_per_million": 76.399, + "new_cases_smoothed_per_million": 54.739, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4196.0, + "total_tests": 138278.0, + "total_tests_per_thousand": 81.264, + "new_tests_per_thousand": 2.466, + "new_tests_smoothed": 3982.0, + "new_tests_smoothed_per_thousand": 2.34, + "tests_per_case": 42.751999999999995, + "positive_rate": 0.023, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-03", + "total_cases": 3284.0, + "new_cases": 114.0, + "new_cases_smoothed": 99.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1929.968, + "new_cases_per_million": 66.996, + "new_cases_smoothed_per_million": 58.349, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5877.0, + "total_tests": 144155.0, + "total_tests_per_thousand": 84.718, + "new_tests_per_thousand": 3.454, + "new_tests_smoothed": 4292.0, + "new_tests_smoothed_per_thousand": 2.522, + "tests_per_case": 43.229, + "positive_rate": 0.023, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-04", + "total_cases": 3383.0, + "new_cases": 99.0, + "new_cases_smoothed": 105.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1988.149, + "new_cases_per_million": 58.181, + "new_cases_smoothed_per_million": 61.791, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5431.0, + "total_tests": 149586.0, + "total_tests_per_thousand": 87.91, + "new_tests_per_thousand": 3.192, + "new_tests_smoothed": 4541.0, + "new_tests_smoothed_per_thousand": 2.669, + "tests_per_case": 43.18899999999999, + "positive_rate": 0.023, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-05", + "total_cases": 3533.0, + "new_cases": 150.0, + "new_cases_smoothed": 115.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2076.302, + "new_cases_per_million": 88.153, + "new_cases_smoothed_per_million": 68.004, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5915.0, + "total_tests": 155501.0, + "total_tests_per_thousand": 91.386, + "new_tests_per_thousand": 3.476, + "new_tests_smoothed": 4828.0, + "new_tests_smoothed_per_thousand": 2.837, + "tests_per_case": 41.723, + "positive_rate": 0.024, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-06", + "total_cases": 3720.0, + "new_cases": 187.0, + "new_cases_smoothed": 129.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2186.2, + "new_cases_per_million": 109.898, + "new_cases_smoothed_per_million": 76.315, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4840.0, + "total_tests": 160341.0, + "total_tests_per_thousand": 94.23, + "new_tests_per_thousand": 2.844, + "new_tests_smoothed": 4777.0, + "new_tests_smoothed_per_thousand": 2.807, + "tests_per_case": 36.787, + "positive_rate": 0.027000000000000003, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-07", + "total_cases": 3934.0, + "new_cases": 214.0, + "new_cases_smoothed": 144.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2311.965, + "new_cases_per_million": 125.765, + "new_cases_smoothed_per_million": 85.047, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6037.0, + "total_tests": 166378.0, + "total_tests_per_thousand": 97.778, + "new_tests_per_thousand": 3.548, + "new_tests_smoothed": 5241.0, + "new_tests_smoothed_per_thousand": 3.08, + "tests_per_case": 36.216, + "positive_rate": 0.027999999999999997, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-08", + "total_cases": 4199.0, + "new_cases": 265.0, + "new_cases_smoothed": 165.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2467.702, + "new_cases_per_million": 155.737, + "new_cases_smoothed_per_million": 97.304, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5780.0, + "total_tests": 172158.0, + "total_tests_per_thousand": 101.175, + "new_tests_per_thousand": 3.397, + "new_tests_smoothed": 5439.0, + "new_tests_smoothed_per_thousand": 3.196, + "tests_per_case": 32.85, + "positive_rate": 0.03, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-09", + "total_cases": 4444.0, + "new_cases": 245.0, + "new_cases_smoothed": 182.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2611.686, + "new_cases_per_million": 143.984, + "new_cases_smoothed_per_million": 106.959, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6195.0, + "total_tests": 178353.0, + "total_tests_per_thousand": 104.816, + "new_tests_per_thousand": 3.641, + "new_tests_smoothed": 5725.0, + "new_tests_smoothed_per_thousand": 3.365, + "tests_per_case": 31.456, + "positive_rate": 0.032, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-10", + "total_cases": 4774.0, + "new_cases": 330.0, + "new_cases_smoothed": 212.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2805.623, + "new_cases_per_million": 193.937, + "new_cases_smoothed_per_million": 125.094, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5676.0, + "total_tests": 184029.0, + "total_tests_per_thousand": 108.152, + "new_tests_per_thousand": 3.336, + "new_tests_smoothed": 5696.0, + "new_tests_smoothed_per_thousand": 3.347, + "tests_per_case": 26.76, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-11", + "total_cases": 4941.0, + "new_cases": 167.0, + "new_cases_smoothed": 222.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2903.767, + "new_cases_per_million": 98.144, + "new_cases_smoothed_per_million": 130.803, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6751.0, + "total_tests": 190780.0, + "total_tests_per_thousand": 112.119, + "new_tests_per_thousand": 3.967, + "new_tests_smoothed": 5885.0, + "new_tests_smoothed_per_thousand": 3.459, + "tests_per_case": 26.441, + "positive_rate": 0.038, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 5236.0, + "new_cases": 295.0, + "new_cases_smoothed": 243.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3077.135, + "new_cases_per_million": 173.368, + "new_cases_smoothed_per_million": 142.976, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7118.0, + "total_tests": 197898.0, + "total_tests_per_thousand": 116.302, + "new_tests_per_thousand": 4.183, + "new_tests_smoothed": 6057.0, + "new_tests_smoothed_per_thousand": 3.56, + "tests_per_case": 24.897, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 5531.0, + "new_cases": 295.0, + "new_cases_smoothed": 258.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3250.503, + "new_cases_per_million": 173.368, + "new_cases_smoothed_per_million": 152.043, + "total_deaths_per_million": 5.289, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 7672.0, + "total_tests": 205570.0, + "total_tests_per_thousand": 120.811, + "new_tests_per_thousand": 4.509, + "new_tests_smoothed": 6461.0, + "new_tests_smoothed_per_thousand": 3.797, + "tests_per_case": 24.973000000000003, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 5816.0, + "new_cases": 285.0, + "new_cases_smoothed": 268.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3417.994, + "new_cases_per_million": 167.491, + "new_cases_smoothed_per_million": 158.004, + "total_deaths_per_million": 5.877, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 5557.0, + "total_tests": 211127.0, + "total_tests_per_thousand": 124.077, + "new_tests_per_thousand": 3.266, + "new_tests_smoothed": 6393.0, + "new_tests_smoothed_per_thousand": 3.757, + "tests_per_case": 23.778000000000002, + "positive_rate": 0.042, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-15", + "total_cases": 6198.0, + "new_cases": 382.0, + "new_cases_smoothed": 285.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3642.491, + "new_cases_per_million": 224.497, + "new_cases_smoothed_per_million": 167.827, + "total_deaths_per_million": 5.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 11415.0, + "total_tests": 222542.0, + "total_tests_per_thousand": 130.785, + "new_tests_per_thousand": 6.708, + "new_tests_smoothed": 7198.0, + "new_tests_smoothed_per_thousand": 4.23, + "tests_per_case": 25.206, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 6583.0, + "new_cases": 385.0, + "new_cases_smoothed": 305.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3868.75, + "new_cases_per_million": 226.26, + "new_cases_smoothed_per_million": 179.581, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 7646.0, + "total_tests": 230188.0, + "total_tests_per_thousand": 135.279, + "new_tests_per_thousand": 4.493, + "new_tests_smoothed": 7405.0, + "new_tests_smoothed_per_thousand": 4.352, + "tests_per_case": 24.233, + "positive_rate": 0.040999999999999995, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 6747.0, + "new_cases": 164.0, + "new_cases_smoothed": 281.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3965.131, + "new_cases_per_million": 96.381, + "new_cases_smoothed_per_million": 165.644, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 6640.0, + "total_tests": 236828.0, + "total_tests_per_thousand": 139.181, + "new_tests_per_thousand": 3.902, + "new_tests_smoothed": 7543.0, + "new_tests_smoothed_per_thousand": 4.433, + "tests_per_case": 26.761999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-18", + "total_cases": 6956.0, + "new_cases": 209.0, + "new_cases_smoothed": 287.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4087.958, + "new_cases_per_million": 122.827, + "new_cases_smoothed_per_million": 169.17, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 6203.0, + "total_tests": 243031.0, + "total_tests_per_thousand": 142.826, + "new_tests_per_thousand": 3.645, + "new_tests_smoothed": 7464.0, + "new_tests_smoothed_per_thousand": 4.387, + "tests_per_case": 25.93, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-19", + "total_cases": 7184.0, + "new_cases": 228.0, + "new_cases_smoothed": 278.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4221.951, + "new_cases_per_million": 133.993, + "new_cases_smoothed_per_million": 163.545, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 5174.0, + "total_tests": 248205.0, + "total_tests_per_thousand": 145.867, + "new_tests_per_thousand": 3.041, + "new_tests_smoothed": 7187.0, + "new_tests_smoothed_per_thousand": 4.224, + "tests_per_case": 25.826, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-20", + "total_cases": 7532.0, + "new_cases": 348.0, + "new_cases_smoothed": 285.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4426.466, + "new_cases_per_million": 204.515, + "new_cases_smoothed_per_million": 167.995, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 7428.0, + "total_tests": 255633.0, + "total_tests_per_thousand": 150.232, + "new_tests_per_thousand": 4.365, + "new_tests_smoothed": 7152.0, + "new_tests_smoothed_per_thousand": 4.203, + "tests_per_case": 25.019000000000002, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-21", + "total_cases": 7888.0, + "new_cases": 356.0, + "new_cases_smoothed": 296.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4635.683, + "new_cases_per_million": 209.217, + "new_cases_smoothed_per_million": 173.956, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests_smoothed": 7326.0, + "new_tests_smoothed_per_thousand": 4.305, + "tests_per_case": 24.75, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-22", + "total_cases": 8174.0, + "new_cases": 286.0, + "new_cases_smoothed": 282.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4803.762, + "new_cases_per_million": 168.079, + "new_cases_smoothed_per_million": 165.896, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "total_tests": 269179.0, + "total_tests_per_thousand": 158.193, + "new_tests_smoothed": 6662.0, + "new_tests_smoothed_per_thousand": 3.915, + "tests_per_case": 23.6, + "positive_rate": 0.042, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-23", + "total_cases": 8414.0, + "new_cases": 240.0, + "new_cases_smoothed": 261.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4944.807, + "new_cases_per_million": 141.045, + "new_cases_smoothed_per_million": 153.722, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7373.0, + "total_tests": 276552.0, + "total_tests_per_thousand": 162.526, + "new_tests_per_thousand": 4.333, + "new_tests_smoothed": 6623.0, + "new_tests_smoothed_per_thousand": 3.892, + "tests_per_case": 25.32, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 8802.0, + "new_cases": 388.0, + "new_cases_smoothed": 293.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5172.83, + "new_cases_per_million": 228.023, + "new_cases_smoothed_per_million": 172.528, + "total_deaths_per_million": 7.64, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 4652.0, + "total_tests": 281204.0, + "total_tests_per_thousand": 165.26, + "new_tests_per_thousand": 2.734, + "new_tests_smoothed": 6339.0, + "new_tests_smoothed_per_thousand": 3.725, + "tests_per_case": 21.593000000000004, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 9138.0, + "new_cases": 336.0, + "new_cases_smoothed": 311.714, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5370.293, + "new_cases_per_million": 197.463, + "new_cases_smoothed_per_million": 183.191, + "total_deaths_per_million": 8.228, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2680.0, + "total_tests": 283884.0, + "total_tests_per_thousand": 166.835, + "new_tests_per_thousand": 1.575, + "new_tests_smoothed": 5836.0, + "new_tests_smoothed_per_thousand": 3.43, + "tests_per_case": 18.722, + "positive_rate": 0.053, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 9171.0, + "new_cases": 33.0, + "new_cases_smoothed": 283.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5389.687, + "new_cases_per_million": 19.394, + "new_cases_smoothed_per_million": 166.819, + "total_deaths_per_million": 8.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2339.0, + "total_tests": 286223.0, + "total_tests_per_thousand": 168.21, + "new_tests_per_thousand": 1.375, + "new_tests_smoothed": 5431.0, + "new_tests_smoothed_per_thousand": 3.192, + "tests_per_case": 19.133, + "positive_rate": 0.052000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 9366.0, + "new_cases": 195.0, + "new_cases_smoothed": 262.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5504.286, + "new_cases_per_million": 114.599, + "new_cases_smoothed_per_million": 153.974, + "total_deaths_per_million": 8.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 4904.0, + "total_tests": 291127.0, + "total_tests_per_thousand": 171.092, + "new_tests_per_thousand": 2.882, + "new_tests_smoothed": 5071.0, + "new_tests_smoothed_per_thousand": 2.98, + "tests_per_case": 19.355, + "positive_rate": 0.052000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 9633.0, + "new_cases": 267.0, + "new_cases_smoothed": 249.286, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5661.199, + "new_cases_per_million": 156.913, + "new_cases_smoothed_per_million": 146.502, + "total_deaths_per_million": 8.815, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 6746.0, + "total_tests": 297873.0, + "total_tests_per_thousand": 175.056, + "new_tests_per_thousand": 3.965, + "new_tests_smoothed": 5067.0, + "new_tests_smoothed_per_thousand": 2.978, + "tests_per_case": 20.326, + "positive_rate": 0.049, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 10052.0, + "new_cases": 419.0, + "new_cases_smoothed": 268.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5907.44, + "new_cases_per_million": 246.241, + "new_cases_smoothed_per_million": 157.668, + "total_deaths_per_million": 8.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 6306.0, + "total_tests": 304179.0, + "total_tests_per_thousand": 178.762, + "new_tests_per_thousand": 3.706, + "new_tests_smoothed": 5000.0, + "new_tests_smoothed_per_thousand": 2.938, + "tests_per_case": 18.637, + "positive_rate": 0.054000000000000006, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 10449.0, + "new_cases": 397.0, + "new_cases_smoothed": 290.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6140.752, + "new_cases_per_million": 233.312, + "new_cases_smoothed_per_million": 170.849, + "total_deaths_per_million": 8.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 5394.0, + "total_tests": 309573.0, + "total_tests_per_thousand": 181.932, + "new_tests_per_thousand": 3.17, + "new_tests_smoothed": 4717.0, + "new_tests_smoothed_per_thousand": 2.772, + "tests_per_case": 16.226, + "positive_rate": 0.062, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 10793.0, + "new_cases": 344.0, + "new_cases_smoothed": 284.429, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6342.917, + "new_cases_per_million": 202.165, + "new_cases_smoothed_per_million": 167.155, + "total_deaths_per_million": 9.991, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 7234.0, + "total_tests": 316807.0, + "total_tests_per_thousand": 186.184, + "new_tests_per_thousand": 4.251, + "new_tests_smoothed": 5086.0, + "new_tests_smoothed_per_thousand": 2.989, + "tests_per_case": 17.881, + "positive_rate": 0.055999999999999994, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 11398.0, + "new_cases": 605.0, + "new_cases_smoothed": 322.857, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6698.468, + "new_cases_per_million": 355.551, + "new_cases_smoothed_per_million": 189.739, + "total_deaths_per_million": 11.166, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 6355.0, + "total_tests": 323162.0, + "total_tests_per_thousand": 189.918, + "new_tests_per_thousand": 3.735, + "new_tests_smoothed": 5611.0, + "new_tests_smoothed_per_thousand": 3.298, + "tests_per_case": 17.379, + "positive_rate": 0.057999999999999996, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 11804.0, + "new_cases": 406.0, + "new_cases_smoothed": 376.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6937.07, + "new_cases_per_million": 238.601, + "new_cases_smoothed_per_million": 221.055, + "total_deaths_per_million": 11.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 7571.0, + "total_tests": 330733.0, + "total_tests_per_thousand": 194.368, + "new_tests_per_thousand": 4.449, + "new_tests_smoothed": 6359.0, + "new_tests_smoothed_per_thousand": 3.737, + "tests_per_case": 16.906, + "positive_rate": 0.059000000000000004, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-03", + "total_cases": 12311.0, + "new_cases": 507.0, + "new_cases_smoothed": 420.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7235.028, + "new_cases_per_million": 297.958, + "new_cases_smoothed_per_million": 247.249, + "total_deaths_per_million": 11.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 7040.0, + "total_tests": 337773.0, + "total_tests_per_thousand": 198.505, + "new_tests_per_thousand": 4.137, + "new_tests_smoothed": 6664.0, + "new_tests_smoothed_per_thousand": 3.916, + "tests_per_case": 15.84, + "positive_rate": 0.063, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-04", + "total_cases": 12815.0, + "new_cases": 504.0, + "new_cases_smoothed": 454.571, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7531.222, + "new_cases_per_million": 296.195, + "new_cases_smoothed_per_million": 267.146, + "total_deaths_per_million": 11.754, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 7564.0, + "total_tests": 345337.0, + "total_tests_per_thousand": 202.95, + "new_tests_per_thousand": 4.445, + "new_tests_smoothed": 6781.0, + "new_tests_smoothed_per_thousand": 3.985, + "tests_per_case": 14.917, + "positive_rate": 0.067, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-05", + "total_cases": 13296.0, + "new_cases": 481.0, + "new_cases_smoothed": 463.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 7813.9, + "new_cases_per_million": 282.678, + "new_cases_smoothed_per_million": 272.351, + "total_deaths_per_million": 12.341, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 8785.0, + "total_tests": 354122.0, + "total_tests_per_thousand": 208.113, + "new_tests_per_thousand": 5.163, + "new_tests_smoothed": 7135.0, + "new_tests_smoothed_per_thousand": 4.193, + "tests_per_case": 15.395999999999999, + "positive_rate": 0.065, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-06", + "total_cases": 13835.0, + "new_cases": 539.0, + "new_cases_smoothed": 483.714, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8130.664, + "new_cases_per_million": 316.764, + "new_cases_smoothed_per_million": 284.273, + "total_deaths_per_million": 13.517, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 7254.0, + "total_tests": 361376.0, + "total_tests_per_thousand": 212.376, + "new_tests_per_thousand": 4.263, + "new_tests_smoothed": 7400.0, + "new_tests_smoothed_per_thousand": 4.349, + "tests_per_case": 15.298, + "positive_rate": 0.065, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-07", + "total_cases": 14383.0, + "new_cases": 548.0, + "new_cases_smoothed": 512.857, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8452.717, + "new_cases_per_million": 322.053, + "new_cases_smoothed_per_million": 301.4, + "total_deaths_per_million": 14.105, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 5680.0, + "total_tests": 367056.0, + "total_tests_per_thousand": 215.714, + "new_tests_per_thousand": 3.338, + "new_tests_smoothed": 7178.0, + "new_tests_smoothed_per_thousand": 4.218, + "tests_per_case": 13.995999999999999, + "positive_rate": 0.071, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-08", + "total_cases": 14763.0, + "new_cases": 380.0, + "new_cases_smoothed": 480.714, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8676.039, + "new_cases_per_million": 223.321, + "new_cases_smoothed_per_million": 282.51, + "total_deaths_per_million": 15.28, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 7306.0, + "total_tests": 374362.0, + "total_tests_per_thousand": 220.008, + "new_tests_per_thousand": 4.294, + "new_tests_smoothed": 7314.0, + "new_tests_smoothed_per_thousand": 4.298, + "tests_per_case": 15.215, + "positive_rate": 0.066, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-09", + "total_cases": 15417.0, + "new_cases": 654.0, + "new_cases_smoothed": 516.143, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 9060.387, + "new_cases_per_million": 384.348, + "new_cases_smoothed_per_million": 303.331, + "total_deaths_per_million": 15.868, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 3873.0, + "total_tests": 378235.0, + "total_tests_per_thousand": 222.284, + "new_tests_per_thousand": 2.276, + "new_tests_smoothed": 6786.0, + "new_tests_smoothed_per_thousand": 3.988, + "tests_per_case": 13.148, + "positive_rate": 0.076, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-10", + "total_cases": 16200.0, + "new_cases": 783.0, + "new_cases_smoothed": 555.571, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 9520.546, + "new_cases_per_million": 460.16, + "new_cases_smoothed_per_million": 326.503, + "total_deaths_per_million": 17.043, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 7899.0, + "total_tests": 386134.0, + "total_tests_per_thousand": 226.926, + "new_tests_per_thousand": 4.642, + "new_tests_smoothed": 6909.0, + "new_tests_smoothed_per_thousand": 4.06, + "tests_per_case": 12.436, + "positive_rate": 0.08, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-11", + "total_cases": 16667.0, + "new_cases": 467.0, + "new_cases_smoothed": 550.286, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 9794.997, + "new_cases_per_million": 274.45, + "new_cases_smoothed_per_million": 323.396, + "total_deaths_per_million": 18.806, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 7776.0, + "total_tests": 393910.0, + "total_tests_per_thousand": 231.496, + "new_tests_per_thousand": 4.57, + "new_tests_smoothed": 6939.0, + "new_tests_smoothed_per_thousand": 4.078, + "tests_per_case": 12.61, + "positive_rate": 0.079, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-12", + "total_cases": 16667.0, + "new_cases": 0.0, + "new_cases_smoothed": 481.571, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 9794.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 283.014, + "total_deaths_per_million": 19.981, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 9126.0, + "total_tests": 403036.0, + "total_tests_per_thousand": 236.859, + "new_tests_per_thousand": 5.363, + "new_tests_smoothed": 6988.0, + "new_tests_smoothed_per_thousand": 4.107, + "tests_per_case": 14.511, + "positive_rate": 0.069, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-13", + "total_cases": 17713.0, + "new_cases": 1046.0, + "new_cases_smoothed": 554.0, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 10409.718, + "new_cases_per_million": 614.722, + "new_cases_smoothed_per_million": 325.579, + "total_deaths_per_million": 21.157, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 7806.0, + "total_tests": 410842.0, + "total_tests_per_thousand": 241.447, + "new_tests_per_thousand": 4.587, + "new_tests_smoothed": 7067.0, + "new_tests_smoothed_per_thousand": 4.153, + "tests_per_case": 12.755999999999998, + "positive_rate": 0.078, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-14", + "total_cases": 18227.0, + "new_cases": 514.0, + "new_cases_smoothed": 549.143, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 10711.79, + "new_cases_per_million": 302.072, + "new_cases_smoothed_per_million": 322.725, + "total_deaths_per_million": 22.92, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.259, + "new_tests": 7571.0, + "total_tests": 418413.0, + "total_tests_per_thousand": 245.896, + "new_tests_per_thousand": 4.449, + "new_tests_smoothed": 7337.0, + "new_tests_smoothed_per_thousand": 4.312, + "tests_per_case": 13.360999999999999, + "positive_rate": 0.075, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-15", + "total_cases": 18544.0, + "new_cases": 317.0, + "new_cases_smoothed": 540.143, + "total_deaths": 43.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 10898.087, + "new_cases_per_million": 186.297, + "new_cases_smoothed_per_million": 317.436, + "total_deaths_per_million": 25.271, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 6779.0, + "total_tests": 425192.0, + "total_tests_per_thousand": 249.88, + "new_tests_per_thousand": 3.984, + "new_tests_smoothed": 7261.0, + "new_tests_smoothed_per_thousand": 4.267, + "tests_per_case": 13.443, + "positive_rate": 0.07400000000000001, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-16", + "total_cases": 19013.0, + "new_cases": 469.0, + "new_cases_smoothed": 513.714, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 11173.713, + "new_cases_per_million": 275.626, + "new_cases_smoothed_per_million": 301.904, + "total_deaths_per_million": 27.034, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.595, + "new_tests": 12888.0, + "total_tests": 438080.0, + "total_tests_per_thousand": 257.454, + "new_tests_per_thousand": 7.574, + "new_tests_smoothed": 8549.0, + "new_tests_smoothed_per_thousand": 5.024, + "tests_per_case": 16.642, + "positive_rate": 0.06, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-17", + "total_cases": 19553.0, + "new_cases": 540.0, + "new_cases_smoothed": 479.0, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 11491.064, + "new_cases_per_million": 317.352, + "new_cases_smoothed_per_million": 281.503, + "total_deaths_per_million": 27.621, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.511, + "new_tests_smoothed": 8584.0, + "new_tests_smoothed_per_thousand": 5.045, + "tests_per_case": 17.921, + "positive_rate": 0.055999999999999994, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-18", + "total_cases": 19961.0, + "new_cases": 408.0, + "new_cases_smoothed": 470.571, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 11730.841, + "new_cases_per_million": 239.777, + "new_cases_smoothed_per_million": 276.549, + "total_deaths_per_million": 28.797, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.427, + "total_tests": 454368.0, + "total_tests_per_thousand": 267.027, + "new_tests_smoothed": 8637.0, + "new_tests_smoothed_per_thousand": 5.076, + "tests_per_case": 18.354, + "positive_rate": 0.054000000000000006, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-19", + "total_cases": 20430.0, + "new_cases": 469.0, + "new_cases_smoothed": 537.571, + "total_deaths": 55.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 12006.467, + "new_cases_per_million": 275.626, + "new_cases_smoothed_per_million": 315.924, + "total_deaths_per_million": 32.323, + "new_deaths_per_million": 3.526, + "new_deaths_smoothed_per_million": 1.763, + "new_tests_smoothed": 8479.0, + "new_tests_smoothed_per_thousand": 4.983, + "tests_per_case": 15.773, + "positive_rate": 0.063, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-20", + "total_cases": 20916.0, + "new_cases": 486.0, + "new_cases_smoothed": 457.571, + "total_deaths": 57.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 12292.083, + "new_cases_per_million": 285.616, + "new_cases_smoothed_per_million": 268.909, + "total_deaths_per_million": 33.498, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.763, + "total_tests": 470409.0, + "total_tests_per_thousand": 276.454, + "new_tests_smoothed": 8510.0, + "new_tests_smoothed_per_thousand": 5.001, + "tests_per_case": 18.598, + "positive_rate": 0.054000000000000006, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-21", + "total_cases": 21331.0, + "new_cases": 415.0, + "new_cases_smoothed": 443.429, + "total_deaths": 60.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 12535.974, + "new_cases_per_million": 243.891, + "new_cases_smoothed_per_million": 260.598, + "total_deaths_per_million": 35.261, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.763, + "new_tests_smoothed": 8521.0, + "new_tests_smoothed_per_thousand": 5.008, + "tests_per_case": 19.215999999999998, + "positive_rate": 0.052000000000000005, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-22", + "total_cases": 21764.0, + "new_cases": 433.0, + "new_cases_smoothed": 460.0, + "total_deaths": 63.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 12790.443, + "new_cases_per_million": 254.469, + "new_cases_smoothed_per_million": 270.337, + "total_deaths_per_million": 37.024, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.679, + "total_tests": 485715.0, + "total_tests_per_thousand": 285.449, + "new_tests_smoothed": 8646.0, + "new_tests_smoothed_per_thousand": 5.081, + "tests_per_case": 18.796, + "positive_rate": 0.053, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-23", + "total_cases": 22407.0, + "new_cases": 643.0, + "new_cases_smoothed": 484.857, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 13168.326, + "new_cases_per_million": 377.883, + "new_cases_smoothed_per_million": 284.945, + "total_deaths_per_million": 38.2, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.595, + "new_tests_smoothed": 7399.0, + "new_tests_smoothed_per_thousand": 4.348, + "tests_per_case": 15.26, + "positive_rate": 0.066, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-24", + "total_cases": 23062.0, + "new_cases": 655.0, + "new_cases_smoothed": 501.286, + "total_deaths": 67.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 13553.262, + "new_cases_per_million": 384.936, + "new_cases_smoothed_per_million": 294.6, + "total_deaths_per_million": 39.375, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.679, + "total_tests": 494028.0, + "total_tests_per_thousand": 290.334, + "new_tests_smoothed": 6829.0, + "new_tests_smoothed_per_thousand": 4.013, + "tests_per_case": 13.623, + "positive_rate": 0.073, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-25", + "total_cases": 23570.0, + "new_cases": 508.0, + "new_cases_smoothed": 515.571, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 13851.807, + "new_cases_per_million": 298.546, + "new_cases_smoothed_per_million": 302.995, + "total_deaths_per_million": 40.55, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.679, + "new_tests": 8735.0, + "total_tests": 502763.0, + "total_tests_per_thousand": 295.468, + "new_tests_per_thousand": 5.133, + "new_tests_smoothed": 6914.0, + "new_tests_smoothed_per_thousand": 4.063, + "tests_per_case": 13.41, + "positive_rate": 0.075, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-26", + "total_cases": 24081.0, + "new_cases": 511.0, + "new_cases_smoothed": 521.571, + "total_deaths": 71.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 14152.116, + "new_cases_per_million": 300.309, + "new_cases_smoothed_per_million": 306.521, + "total_deaths_per_million": 41.726, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.343, + "new_tests": 8695.0, + "total_tests": 511458.0, + "total_tests_per_thousand": 300.578, + "new_tests_per_thousand": 5.11, + "new_tests_smoothed": 7010.0, + "new_tests_smoothed_per_thousand": 4.12, + "tests_per_case": 13.44, + "positive_rate": 0.07400000000000001, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-27", + "total_cases": 24805.0, + "new_cases": 724.0, + "new_cases_smoothed": 555.571, + "total_deaths": 78.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 14577.602, + "new_cases_per_million": 425.486, + "new_cases_smoothed_per_million": 326.503, + "total_deaths_per_million": 45.84, + "new_deaths_per_million": 4.114, + "new_deaths_smoothed_per_million": 1.763, + "new_tests": 9643.0, + "total_tests": 521101.0, + "total_tests_per_thousand": 306.245, + "new_tests_per_thousand": 5.667, + "new_tests_smoothed": 7242.0, + "new_tests_smoothed_per_thousand": 4.256, + "tests_per_case": 13.035, + "positive_rate": 0.077, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-28", + "total_cases": 25267.0, + "new_cases": 462.0, + "new_cases_smoothed": 562.286, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 14849.114, + "new_cases_per_million": 271.512, + "new_cases_smoothed_per_million": 330.449, + "total_deaths_per_million": 45.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.511, + "new_tests": 8141.0, + "total_tests": 529242.0, + "total_tests_per_thousand": 311.029, + "new_tests_per_thousand": 4.784, + "new_tests_smoothed": 7311.0, + "new_tests_smoothed_per_thousand": 4.297, + "tests_per_case": 13.002, + "positive_rate": 0.077, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-29", + "total_cases": 25705.0, + "new_cases": 438.0, + "new_cases_smoothed": 563.0, + "total_deaths": 83.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 15106.521, + "new_cases_per_million": 257.407, + "new_cases_smoothed_per_million": 330.868, + "total_deaths_per_million": 48.778, + "new_deaths_per_million": 2.938, + "new_deaths_smoothed_per_million": 1.679, + "new_tests": 7274.0, + "total_tests": 536516.0, + "total_tests_per_thousand": 315.304, + "new_tests_per_thousand": 4.275, + "new_tests_smoothed": 7257.0, + "new_tests_smoothed_per_thousand": 4.265, + "tests_per_case": 12.89, + "positive_rate": 0.078, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-06-30", + "total_cases": 26239.0, + "new_cases": 534.0, + "new_cases_smoothed": 547.429, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 15420.347, + "new_cases_per_million": 313.825, + "new_cases_smoothed_per_million": 321.717, + "total_deaths_per_million": 49.366, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.595, + "new_tests": 8609.0, + "total_tests": 545125.0, + "total_tests_per_thousand": 320.363, + "new_tests_per_thousand": 5.059, + "new_tests_smoothed": 7893.0, + "new_tests_smoothed_per_thousand": 4.639, + "tests_per_case": 14.418, + "positive_rate": 0.069, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-01", + "total_cases": 26758.0, + "new_cases": 519.0, + "new_cases_smoothed": 528.0, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 15725.357, + "new_cases_per_million": 305.01, + "new_cases_smoothed_per_million": 310.299, + "total_deaths_per_million": 51.129, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.679, + "new_tests": 9114.0, + "total_tests": 554239.0, + "total_tests_per_thousand": 325.72, + "new_tests_per_thousand": 5.356, + "new_tests_smoothed": 8602.0, + "new_tests_smoothed_per_thousand": 5.055, + "tests_per_case": 16.292, + "positive_rate": 0.061, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-02", + "total_cases": 27414.0, + "new_cases": 656.0, + "new_cases_smoothed": 549.143, + "total_deaths": 92.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 16110.88, + "new_cases_per_million": 385.523, + "new_cases_smoothed_per_million": 322.725, + "total_deaths_per_million": 54.067, + "new_deaths_per_million": 2.938, + "new_deaths_smoothed_per_million": 1.931, + "new_tests": 10126.0, + "total_tests": 564365.0, + "total_tests_per_thousand": 331.671, + "new_tests_per_thousand": 5.951, + "new_tests_smoothed": 8800.0, + "new_tests_smoothed_per_thousand": 5.172, + "tests_per_case": 16.025, + "positive_rate": 0.062, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-03", + "total_cases": 27837.0, + "new_cases": 423.0, + "new_cases_smoothed": 536.571, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 16359.472, + "new_cases_per_million": 248.592, + "new_cases_smoothed_per_million": 315.337, + "total_deaths_per_million": 55.243, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.931, + "new_tests": 9740.0, + "total_tests": 574105.0, + "total_tests_per_thousand": 337.395, + "new_tests_per_thousand": 5.724, + "new_tests_smoothed": 8950.0, + "new_tests_smoothed_per_thousand": 5.26, + "tests_per_case": 16.68, + "positive_rate": 0.06, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-04", + "total_cases": 28410.0, + "new_cases": 573.0, + "new_cases_smoothed": 515.0, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 16696.218, + "new_cases_per_million": 336.745, + "new_cases_smoothed_per_million": 302.659, + "total_deaths_per_million": 55.83, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 9965.0, + "total_tests": 584070.0, + "total_tests_per_thousand": 343.251, + "new_tests_per_thousand": 5.856, + "new_tests_smoothed": 8996.0, + "new_tests_smoothed_per_thousand": 5.287, + "tests_per_case": 17.468, + "positive_rate": 0.057, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-05", + "total_cases": 28857.0, + "new_cases": 447.0, + "new_cases_smoothed": 512.857, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 16958.914, + "new_cases_per_million": 262.697, + "new_cases_smoothed_per_million": 301.4, + "total_deaths_per_million": 57.006, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.595, + "new_tests": 18081.0, + "total_tests": 602151.0, + "total_tests_per_thousand": 353.877, + "new_tests_per_thousand": 10.626, + "new_tests_smoothed": 10416.0, + "new_tests_smoothed_per_thousand": 6.121, + "tests_per_case": 20.31, + "positive_rate": 0.049, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-06", + "total_cases": 29367.0, + "new_cases": 510.0, + "new_cases_smoothed": 523.143, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 17258.635, + "new_cases_per_million": 299.721, + "new_cases_smoothed_per_million": 307.445, + "total_deaths_per_million": 57.006, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 9945.0, + "total_tests": 612096.0, + "total_tests_per_thousand": 359.722, + "new_tests_per_thousand": 5.845, + "new_tests_smoothed": 10797.0, + "new_tests_smoothed_per_thousand": 6.345, + "tests_per_case": 20.639, + "positive_rate": 0.048, + "tests_units": "units unclear", + "stringency_index": 75.0 + }, + { + "date": "2020-07-07", + "total_cases": 29821.0, + "new_cases": 454.0, + "new_cases_smoothed": 511.714, + "total_deaths": 98.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 17525.445, + "new_cases_per_million": 266.81, + "new_cases_smoothed_per_million": 300.728, + "total_deaths_per_million": 57.593, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.175, + "new_tests_smoothed": 10900.0, + "new_tests_smoothed_per_thousand": 6.406, + "tests_per_case": 21.301, + "positive_rate": 0.047, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-08", + "total_cases": 30321.0, + "new_cases": 500.0, + "new_cases_smoothed": 509.0, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 17819.289, + "new_cases_per_million": 293.844, + "new_cases_smoothed_per_million": 299.133, + "total_deaths_per_million": 57.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.924, + "total_tests": 630753.0, + "total_tests_per_thousand": 370.686, + "new_tests_smoothed": 10931.0, + "new_tests_smoothed_per_thousand": 6.424, + "tests_per_case": 21.475, + "positive_rate": 0.047, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-09", + "total_cases": 30931.0, + "new_cases": 610.0, + "new_cases_smoothed": 502.429, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 18177.779, + "new_cases_per_million": 358.49, + "new_cases_smoothed_per_million": 295.271, + "total_deaths_per_million": 58.769, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.672, + "new_tests_smoothed": 10160.0, + "new_tests_smoothed_per_thousand": 5.971, + "tests_per_case": 20.222, + "positive_rate": 0.049, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-10", + "total_cases": 31528.0, + "new_cases": 597.0, + "new_cases_smoothed": 527.286, + "total_deaths": 103.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 18528.629, + "new_cases_per_million": 350.85, + "new_cases_smoothed_per_million": 309.88, + "total_deaths_per_million": 60.532, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 0.756, + "total_tests": 640219.0, + "total_tests_per_thousand": 376.249, + "new_tests_smoothed": 9445.0, + "new_tests_smoothed_per_thousand": 5.551, + "tests_per_case": 17.912, + "positive_rate": 0.055999999999999994, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-11", + "total_cases": 32039.0, + "new_cases": 511.0, + "new_cases_smoothed": 518.429, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 18828.938, + "new_cases_per_million": 300.309, + "new_cases_smoothed_per_million": 304.674, + "total_deaths_per_million": 61.12, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 8801.0, + "total_tests": 649020.0, + "total_tests_per_thousand": 381.421, + "new_tests_per_thousand": 5.172, + "new_tests_smoothed": 9279.0, + "new_tests_smoothed_per_thousand": 5.453, + "tests_per_case": 17.898, + "positive_rate": 0.055999999999999994, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-12", + "total_cases": 32470.0, + "new_cases": 431.0, + "new_cases_smoothed": 516.143, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 19082.231, + "new_cases_per_million": 253.294, + "new_cases_smoothed_per_million": 303.331, + "total_deaths_per_million": 61.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 7639.0, + "total_tests": 656659.0, + "total_tests_per_thousand": 385.911, + "new_tests_per_thousand": 4.489, + "new_tests_smoothed": 7787.0, + "new_tests_smoothed_per_thousand": 4.576, + "tests_per_case": 15.087, + "positive_rate": 0.066, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-13", + "total_cases": 32941.0, + "new_cases": 471.0, + "new_cases_smoothed": 510.571, + "total_deaths": 109.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 19359.032, + "new_cases_per_million": 276.801, + "new_cases_smoothed_per_million": 300.057, + "total_deaths_per_million": 64.058, + "new_deaths_per_million": 2.938, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 9589.0, + "total_tests": 666248.0, + "total_tests_per_thousand": 391.546, + "new_tests_per_thousand": 5.635, + "new_tests_smoothed": 7736.0, + "new_tests_smoothed_per_thousand": 4.546, + "tests_per_case": 15.152000000000001, + "positive_rate": 0.066, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-14", + "total_cases": 33476.0, + "new_cases": 535.0, + "new_cases_smoothed": 522.143, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 19673.445, + "new_cases_per_million": 314.413, + "new_cases_smoothed_per_million": 306.857, + "total_deaths_per_million": 64.058, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 9203.0, + "total_tests": 675451.0, + "total_tests_per_thousand": 396.954, + "new_tests_per_thousand": 5.408, + "new_tests_smoothed": 7718.0, + "new_tests_smoothed_per_thousand": 4.536, + "tests_per_case": 14.780999999999999, + "positive_rate": 0.068, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-15", + "total_cases": 34078.0, + "new_cases": 602.0, + "new_cases_smoothed": 536.714, + "total_deaths": 111.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 20027.233, + "new_cases_per_million": 353.788, + "new_cases_smoothed_per_million": 315.421, + "total_deaths_per_million": 65.233, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 9867.0, + "total_tests": 685318.0, + "total_tests_per_thousand": 402.753, + "new_tests_per_thousand": 5.799, + "new_tests_smoothed": 7795.0, + "new_tests_smoothed_per_thousand": 4.581, + "tests_per_case": 14.524000000000001, + "positive_rate": 0.069, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-16", + "total_cases": 34560.0, + "new_cases": 482.0, + "new_cases_smoothed": 518.429, + "total_deaths": 117.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 20310.499, + "new_cases_per_million": 283.266, + "new_cases_smoothed_per_million": 304.674, + "total_deaths_per_million": 68.76, + "new_deaths_per_million": 3.526, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 8221.0, + "total_tests": 693539.0, + "total_tests_per_thousand": 407.585, + "new_tests_per_thousand": 4.831, + "new_tests_smoothed": 8293.0, + "new_tests_smoothed_per_thousand": 4.874, + "tests_per_case": 15.995999999999999, + "positive_rate": 0.063, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-17", + "total_cases": 35084.0, + "new_cases": 524.0, + "new_cases_smoothed": 508.0, + "total_deaths": 121.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 20618.448, + "new_cases_per_million": 307.949, + "new_cases_smoothed_per_million": 298.546, + "total_deaths_per_million": 71.11, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 1.511, + "new_tests": 9463.0, + "total_tests": 703002.0, + "total_tests_per_thousand": 413.146, + "new_tests_per_thousand": 5.561, + "new_tests_smoothed": 8969.0, + "new_tests_smoothed_per_thousand": 5.271, + "tests_per_case": 17.656, + "positive_rate": 0.057, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-18", + "total_cases": 35473.0, + "new_cases": 389.0, + "new_cases_smoothed": 490.571, + "total_deaths": 124.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 20847.058, + "new_cases_per_million": 228.611, + "new_cases_smoothed_per_million": 288.303, + "total_deaths_per_million": 72.873, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.679, + "new_tests": 7684.0, + "total_tests": 710686.0, + "total_tests_per_thousand": 417.662, + "new_tests_per_thousand": 4.516, + "new_tests_smoothed": 8809.0, + "new_tests_smoothed_per_thousand": 5.177, + "tests_per_case": 17.957, + "positive_rate": 0.055999999999999994, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-19", + "total_cases": 36004.0, + "new_cases": 531.0, + "new_cases_smoothed": 504.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 21159.121, + "new_cases_per_million": 312.062, + "new_cases_smoothed_per_million": 296.699, + "total_deaths_per_million": 72.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.679, + "new_tests": 7037.0, + "total_tests": 717723.0, + "total_tests_per_thousand": 421.797, + "new_tests_per_thousand": 4.136, + "new_tests_smoothed": 8723.0, + "new_tests_smoothed_per_thousand": 5.126, + "tests_per_case": 17.278, + "positive_rate": 0.057999999999999996, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-20", + "total_cases": 36422.0, + "new_cases": 418.0, + "new_cases_smoothed": 497.286, + "total_deaths": 126.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 21404.774, + "new_cases_per_million": 245.654, + "new_cases_smoothed_per_million": 292.249, + "total_deaths_per_million": 74.049, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 8417.0, + "total_tests": 726140.0, + "total_tests_per_thousand": 426.744, + "new_tests_per_thousand": 4.947, + "new_tests_smoothed": 8556.0, + "new_tests_smoothed_per_thousand": 5.028, + "tests_per_case": 17.205, + "positive_rate": 0.057999999999999996, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-21", + "total_cases": 36936.0, + "new_cases": 514.0, + "new_cases_smoothed": 494.286, + "total_deaths": 128.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 21706.846, + "new_cases_per_million": 302.072, + "new_cases_smoothed_per_million": 290.486, + "total_deaths_per_million": 75.224, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.595, + "new_tests": 18554.0, + "total_tests": 744694.0, + "total_tests_per_thousand": 437.648, + "new_tests_per_thousand": 10.904, + "new_tests_smoothed": 9892.0, + "new_tests_smoothed_per_thousand": 5.813, + "tests_per_case": 20.012999999999998, + "positive_rate": 0.05, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-22", + "total_cases": 37316.0, + "new_cases": 380.0, + "new_cases_smoothed": 462.571, + "total_deaths": 129.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 21930.167, + "new_cases_per_million": 223.321, + "new_cases_smoothed_per_million": 271.848, + "total_deaths_per_million": 75.812, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.511, + "new_tests_smoothed": 9628.0, + "new_tests_smoothed_per_thousand": 5.658, + "tests_per_case": 20.814, + "positive_rate": 0.048, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-23", + "total_cases": 37637.0, + "new_cases": 321.0, + "new_cases_smoothed": 439.571, + "total_deaths": 130.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 22118.815, + "new_cases_per_million": 188.648, + "new_cases_smoothed_per_million": 258.331, + "total_deaths_per_million": 76.399, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.091, + "total_tests": 760733.0, + "total_tests_per_thousand": 447.074, + "new_tests_smoothed": 9599.0, + "new_tests_smoothed_per_thousand": 5.641, + "tests_per_case": 21.837, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-24", + "total_cases": 37996.0, + "new_cases": 359.0, + "new_cases_smoothed": 416.0, + "total_deaths": 134.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 22329.795, + "new_cases_per_million": 210.98, + "new_cases_smoothed_per_million": 244.478, + "total_deaths_per_million": 78.75, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 1.091, + "new_tests_smoothed": 9629.0, + "new_tests_smoothed_per_thousand": 5.659, + "tests_per_case": 23.147, + "positive_rate": 0.043, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-25", + "total_cases": 38458.0, + "new_cases": 462.0, + "new_cases_smoothed": 426.429, + "total_deaths": 136.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 22601.307, + "new_cases_per_million": 271.512, + "new_cases_smoothed_per_million": 250.607, + "total_deaths_per_million": 79.926, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.007, + "total_tests": 780081.0, + "total_tests_per_thousand": 458.444, + "new_tests_smoothed": 9914.0, + "new_tests_smoothed_per_thousand": 5.826, + "tests_per_case": 23.249000000000002, + "positive_rate": 0.043, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-26", + "total_cases": 38747.0, + "new_cases": 289.0, + "new_cases_smoothed": 391.857, + "total_deaths": 137.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 22771.149, + "new_cases_per_million": 169.842, + "new_cases_smoothed_per_million": 230.29, + "total_deaths_per_million": 80.513, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.091, + "new_tests_smoothed": 10245.0, + "new_tests_smoothed_per_thousand": 6.021, + "tests_per_case": 26.145, + "positive_rate": 0.038, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-27", + "total_cases": 39131.0, + "new_cases": 384.0, + "new_cases_smoothed": 387.0, + "total_deaths": 140.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 22996.821, + "new_cases_per_million": 225.672, + "new_cases_smoothed_per_million": 227.435, + "total_deaths_per_million": 82.276, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.175, + "total_tests": 798799.0, + "total_tests_per_thousand": 469.445, + "new_tests_smoothed": 10380.0, + "new_tests_smoothed_per_thousand": 6.1, + "tests_per_case": 26.822, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-28", + "total_cases": 39482.0, + "new_cases": 351.0, + "new_cases_smoothed": 363.714, + "total_deaths": 141.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 23203.1, + "new_cases_per_million": 206.279, + "new_cases_smoothed_per_million": 213.751, + "total_deaths_per_million": 82.864, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 9477.0, + "total_tests": 808276.0, + "total_tests_per_thousand": 475.014, + "new_tests_per_thousand": 5.57, + "new_tests_smoothed": 9083.0, + "new_tests_smoothed_per_thousand": 5.338, + "tests_per_case": 24.973000000000003, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-29", + "total_cases": 39921.0, + "new_cases": 439.0, + "new_cases_smoothed": 372.143, + "total_deaths": 141.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 23461.095, + "new_cases_per_million": 257.995, + "new_cases_smoothed_per_million": 218.704, + "total_deaths_per_million": 82.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 9332.0, + "total_tests": 817608.0, + "total_tests_per_thousand": 480.498, + "new_tests_per_thousand": 5.484, + "new_tests_smoothed": 9271.0, + "new_tests_smoothed_per_thousand": 5.448, + "tests_per_case": 24.912, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-30", + "total_cases": 40311.0, + "new_cases": 390.0, + "new_cases_smoothed": 382.0, + "total_deaths": 144.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 23690.293, + "new_cases_per_million": 229.198, + "new_cases_smoothed_per_million": 224.497, + "total_deaths_per_million": 84.627, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 9064.0, + "total_tests": 826672.0, + "total_tests_per_thousand": 485.825, + "new_tests_per_thousand": 5.327, + "new_tests_smoothed": 9420.0, + "new_tests_smoothed_per_thousand": 5.536, + "tests_per_case": 24.66, + "positive_rate": 0.040999999999999995, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-07-31", + "total_cases": 40755.0, + "new_cases": 444.0, + "new_cases_smoothed": 394.143, + "total_deaths": 146.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 23951.227, + "new_cases_per_million": 260.933, + "new_cases_smoothed_per_million": 231.633, + "total_deaths_per_million": 85.802, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 4326.0, + "total_tests": 830998.0, + "total_tests_per_thousand": 488.368, + "new_tests_per_thousand": 2.542, + "new_tests_smoothed": 8656.0, + "new_tests_smoothed_per_thousand": 5.087, + "tests_per_case": 21.962, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-01", + "total_cases": 40982.0, + "new_cases": 227.0, + "new_cases_smoothed": 360.571, + "total_deaths": 147.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 24084.632, + "new_cases_per_million": 133.405, + "new_cases_smoothed_per_million": 211.904, + "total_deaths_per_million": 86.39, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 4569.0, + "total_tests": 835567.0, + "total_tests_per_thousand": 491.053, + "new_tests_per_thousand": 2.685, + "new_tests_smoothed": 7927.0, + "new_tests_smoothed_per_thousand": 4.659, + "tests_per_case": 21.985, + "positive_rate": 0.045, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-02", + "total_cases": 41190.0, + "new_cases": 208.0, + "new_cases_smoothed": 349.0, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 24206.871, + "new_cases_per_million": 122.239, + "new_cases_smoothed_per_million": 205.103, + "total_deaths_per_million": 86.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 7425.0, + "total_tests": 842992.0, + "total_tests_per_thousand": 495.416, + "new_tests_per_thousand": 4.364, + "new_tests_smoothed": 7650.0, + "new_tests_smoothed_per_thousand": 4.496, + "tests_per_case": 21.92, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-03", + "total_cases": 41536.0, + "new_cases": 346.0, + "new_cases_smoothed": 343.571, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 24410.211, + "new_cases_per_million": 203.34, + "new_cases_smoothed_per_million": 201.913, + "total_deaths_per_million": 86.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 7656.0, + "total_tests": 850648.0, + "total_tests_per_thousand": 499.916, + "new_tests_per_thousand": 4.499, + "new_tests_smoothed": 7407.0, + "new_tests_smoothed_per_thousand": 4.353, + "tests_per_case": 21.559, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-04", + "total_cases": 41835.0, + "new_cases": 299.0, + "new_cases_smoothed": 336.143, + "total_deaths": 150.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 24585.93, + "new_cases_per_million": 175.719, + "new_cases_smoothed_per_million": 197.547, + "total_deaths_per_million": 88.153, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 7601.0, + "total_tests": 858249.0, + "total_tests_per_thousand": 504.383, + "new_tests_per_thousand": 4.467, + "new_tests_smoothed": 7139.0, + "new_tests_smoothed_per_thousand": 4.196, + "tests_per_case": 21.238000000000003, + "positive_rate": 0.047, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-05", + "total_cases": 42132.0, + "new_cases": 297.0, + "new_cases_smoothed": 315.857, + "total_deaths": 151.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 24760.473, + "new_cases_per_million": 174.543, + "new_cases_smoothed_per_million": 185.625, + "total_deaths_per_million": 88.741, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.84, + "new_tests_smoothed": 6469.0, + "new_tests_smoothed_per_thousand": 3.802, + "tests_per_case": 20.480999999999998, + "positive_rate": 0.049, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-06", + "total_cases": 42514.0, + "new_cases": 382.0, + "new_cases_smoothed": 314.714, + "total_deaths": 154.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 24984.97, + "new_cases_per_million": 224.497, + "new_cases_smoothed_per_million": 184.954, + "total_deaths_per_million": 90.504, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 0.84, + "total_tests": 867534.0, + "total_tests_per_thousand": 509.839, + "new_tests_smoothed": 5837.0, + "new_tests_smoothed_per_thousand": 3.43, + "tests_per_case": 18.547, + "positive_rate": 0.054000000000000006, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-07", + "total_cases": 42889.0, + "new_cases": 375.0, + "new_cases_smoothed": 304.857, + "total_deaths": 156.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 25205.353, + "new_cases_per_million": 220.383, + "new_cases_smoothed_per_million": 179.161, + "total_deaths_per_million": 91.679, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 9166.0, + "total_tests": 876700.0, + "total_tests_per_thousand": 515.226, + "new_tests_per_thousand": 5.387, + "new_tests_smoothed": 6529.0, + "new_tests_smoothed_per_thousand": 3.837, + "tests_per_case": 21.416999999999998, + "positive_rate": 0.047, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-08", + "total_cases": 43307.0, + "new_cases": 418.0, + "new_cases_smoothed": 332.143, + "total_deaths": 159.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 25451.007, + "new_cases_per_million": 245.654, + "new_cases_smoothed_per_million": 195.196, + "total_deaths_per_million": 93.442, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 9395.0, + "total_tests": 886095.0, + "total_tests_per_thousand": 520.747, + "new_tests_per_thousand": 5.521, + "new_tests_smoothed": 7218.0, + "new_tests_smoothed_per_thousand": 4.242, + "tests_per_case": 21.732, + "positive_rate": 0.046, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-09", + "total_cases": 43629.0, + "new_cases": 322.0, + "new_cases_smoothed": 348.429, + "total_deaths": 161.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 25640.242, + "new_cases_per_million": 189.236, + "new_cases_smoothed_per_million": 204.767, + "total_deaths_per_million": 94.618, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 6831.0, + "total_tests": 892926.0, + "total_tests_per_thousand": 524.762, + "new_tests_per_thousand": 4.014, + "new_tests_smoothed": 7133.0, + "new_tests_smoothed_per_thousand": 4.192, + "tests_per_case": 20.472, + "positive_rate": 0.049, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-10", + "total_cases": 44011.0, + "new_cases": 382.0, + "new_cases_smoothed": 353.571, + "total_deaths": 162.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 25864.739, + "new_cases_per_million": 224.497, + "new_cases_smoothed_per_million": 207.79, + "total_deaths_per_million": 95.205, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.259, + "new_tests": 9133.0, + "total_tests": 902059.0, + "total_tests_per_thousand": 530.129, + "new_tests_per_thousand": 5.367, + "new_tests_smoothed": 7344.0, + "new_tests_smoothed_per_thousand": 4.316, + "tests_per_case": 20.771, + "positive_rate": 0.048, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-11", + "total_cases": 44397.0, + "new_cases": 386.0, + "new_cases_smoothed": 366.0, + "total_deaths": 163.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 26091.586, + "new_cases_per_million": 226.848, + "new_cases_smoothed_per_million": 215.094, + "total_deaths_per_million": 95.793, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 10052.0, + "total_tests": 912111.0, + "total_tests_per_thousand": 536.037, + "new_tests_per_thousand": 5.907, + "new_tests_smoothed": 7695.0, + "new_tests_smoothed_per_thousand": 4.522, + "tests_per_case": 21.025, + "positive_rate": 0.048, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-12", + "total_cases": 44804.0, + "new_cases": 407.0, + "new_cases_smoothed": 381.714, + "total_deaths": 165.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 26330.776, + "new_cases_per_million": 239.189, + "new_cases_smoothed_per_million": 224.329, + "total_deaths_per_million": 96.969, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 21651.0, + "total_tests": 933762.0, + "total_tests_per_thousand": 548.761, + "new_tests_per_thousand": 12.724, + "new_tests_smoothed": 10124.0, + "new_tests_smoothed_per_thousand": 5.95, + "tests_per_case": 26.522, + "positive_rate": 0.038, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-13", + "total_cases": 45264.0, + "new_cases": 460.0, + "new_cases_smoothed": 392.857, + "total_deaths": 166.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 26601.112, + "new_cases_per_million": 270.337, + "new_cases_smoothed_per_million": 230.877, + "total_deaths_per_million": 97.556, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.007, + "new_tests_smoothed": 10249.0, + "new_tests_smoothed_per_thousand": 6.023, + "tests_per_case": 26.088, + "positive_rate": 0.038, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-14", + "total_cases": 45726.0, + "new_cases": 462.0, + "new_cases_smoothed": 405.286, + "total_deaths": 167.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 26872.624, + "new_cases_per_million": 271.512, + "new_cases_smoothed_per_million": 238.182, + "total_deaths_per_million": 98.144, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.924, + "total_tests": 944798.0, + "total_tests_per_thousand": 555.246, + "new_tests_smoothed": 9728.0, + "new_tests_smoothed_per_thousand": 5.717, + "tests_per_case": 24.003, + "positive_rate": 0.042, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-15", + "total_cases": 46052.0, + "new_cases": 326.0, + "new_cases_smoothed": 392.143, + "total_deaths": 168.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27064.21, + "new_cases_per_million": 191.586, + "new_cases_smoothed_per_million": 230.458, + "total_deaths_per_million": 98.732, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 9394.0, + "total_tests": 954192.0, + "total_tests_per_thousand": 560.767, + "new_tests_per_thousand": 5.521, + "new_tests_smoothed": 9728.0, + "new_tests_smoothed_per_thousand": 5.717, + "tests_per_case": 24.807, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-16", + "total_cases": 46430.0, + "new_cases": 378.0, + "new_cases_smoothed": 400.143, + "total_deaths": 170.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27286.356, + "new_cases_per_million": 222.146, + "new_cases_smoothed_per_million": 235.159, + "total_deaths_per_million": 99.907, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 8142.0, + "total_tests": 962334.0, + "total_tests_per_thousand": 565.552, + "new_tests_per_thousand": 4.785, + "new_tests_smoothed": 9915.0, + "new_tests_smoothed_per_thousand": 5.827, + "tests_per_case": 24.779, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-17", + "total_cases": 46430.0, + "new_cases": 0.0, + "new_cases_smoothed": 345.571, + "total_deaths": 170.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27286.356, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 203.088, + "total_deaths_per_million": 99.907, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 9669.0, + "total_tests": 972003.0, + "total_tests_per_thousand": 571.235, + "new_tests_per_thousand": 5.682, + "new_tests_smoothed": 9992.0, + "new_tests_smoothed_per_thousand": 5.872, + "tests_per_case": 28.914, + "positive_rate": 0.035, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-18", + "total_cases": 47185.0, + "new_cases": 755.0, + "new_cases_smoothed": 398.286, + "total_deaths": 173.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 27730.061, + "new_cases_per_million": 443.704, + "new_cases_smoothed_per_million": 234.068, + "total_deaths_per_million": 101.67, + "new_deaths_per_million": 1.763, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 9205.0, + "total_tests": 981208.0, + "total_tests_per_thousand": 576.644, + "new_tests_per_thousand": 5.41, + "new_tests_smoothed": 9871.0, + "new_tests_smoothed_per_thousand": 5.801, + "tests_per_case": 24.784000000000002, + "positive_rate": 0.04, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-19", + "total_cases": 47185.0, + "new_cases": 0.0, + "new_cases_smoothed": 340.143, + "total_deaths": 175.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 27730.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 199.898, + "total_deaths_per_million": 102.845, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 19579.0, + "total_tests": 1000787.0, + "total_tests_per_thousand": 588.151, + "new_tests_per_thousand": 11.506, + "new_tests_smoothed": 9575.0, + "new_tests_smoothed_per_thousand": 5.627, + "tests_per_case": 28.15, + "positive_rate": 0.036000000000000004, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-20", + "total_cases": 47185.0, + "new_cases": 0.0, + "new_cases_smoothed": 274.429, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27730.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 161.278, + "total_deaths_per_million": 102.845, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.756, + "new_tests_smoothed": 9574.0, + "new_tests_smoothed_per_thousand": 5.627, + "tests_per_case": 34.887, + "positive_rate": 0.028999999999999998, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-21", + "total_cases": 47950.0, + "new_cases": 765.0, + "new_cases_smoothed": 317.714, + "total_deaths": 179.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 28179.642, + "new_cases_per_million": 449.581, + "new_cases_smoothed_per_million": 186.717, + "total_deaths_per_million": 105.196, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 1.007, + "total_tests": 1011805.0, + "total_tests_per_thousand": 594.626, + "new_tests_smoothed": 9572.0, + "new_tests_smoothed_per_thousand": 5.625, + "tests_per_case": 30.128, + "positive_rate": 0.033, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-22", + "total_cases": 48303.0, + "new_cases": 353.0, + "new_cases_smoothed": 321.571, + "total_deaths": 179.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 28387.096, + "new_cases_per_million": 207.454, + "new_cases_smoothed_per_million": 188.984, + "total_deaths_per_million": 105.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 8998.0, + "total_tests": 1020803.0, + "total_tests_per_thousand": 599.914, + "new_tests_per_thousand": 5.288, + "new_tests_smoothed": 9516.0, + "new_tests_smoothed_per_thousand": 5.592, + "tests_per_case": 29.592, + "positive_rate": 0.034, + "tests_units": "units unclear", + "stringency_index": 69.44 + }, + { + "date": "2020-08-23", + "total_cases": 49038.0, + "new_cases": 735.0, + "new_cases_smoothed": 372.571, + "total_deaths": 183.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 28819.047, + "new_cases_per_million": 431.951, + "new_cases_smoothed_per_million": 218.956, + "total_deaths_per_million": 107.547, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 9166.0, + "total_tests": 1029969.0, + "total_tests_per_thousand": 605.3, + "new_tests_per_thousand": 5.387, + "new_tests_smoothed": 9662.0, + "new_tests_smoothed_per_thousand": 5.678, + "tests_per_case": 25.933000000000003, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 60.19 + }, + { + "date": "2020-08-24", + "total_cases": 49038.0, + "new_cases": 0.0, + "new_cases_smoothed": 372.571, + "total_deaths": 184.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 28819.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 218.956, + "total_deaths_per_million": 108.135, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 9602.0, + "total_tests": 1039571.0, + "total_tests_per_thousand": 610.943, + "new_tests_per_thousand": 5.643, + "new_tests_smoothed": 9653.0, + "new_tests_smoothed_per_thousand": 5.673, + "tests_per_case": 25.909000000000002, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 60.19 + }, + { + "date": "2020-08-25", + "total_cases": 49330.0, + "new_cases": 292.0, + "new_cases_smoothed": 306.429, + "total_deaths": 184.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 28990.652, + "new_cases_per_million": 171.605, + "new_cases_smoothed_per_million": 180.084, + "total_deaths_per_million": 108.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 9364.0, + "total_tests": 1048935.0, + "total_tests_per_thousand": 616.447, + "new_tests_per_thousand": 5.503, + "new_tests_smoothed": 9675.0, + "new_tests_smoothed_per_thousand": 5.686, + "tests_per_case": 31.573, + "positive_rate": 0.032, + "tests_units": "units unclear", + "stringency_index": 60.19 + }, + { + "date": "2020-08-26", + "total_cases": 50076.0, + "new_cases": 746.0, + "new_cases_smoothed": 413.0, + "total_deaths": 186.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 29429.067, + "new_cases_per_million": 438.415, + "new_cases_smoothed_per_million": 242.715, + "total_deaths_per_million": 109.31, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 18972.0, + "total_tests": 1067907.0, + "total_tests_per_thousand": 627.596, + "new_tests_per_thousand": 11.15, + "new_tests_smoothed": 9589.0, + "new_tests_smoothed_per_thousand": 5.635, + "tests_per_case": 23.218000000000004, + "positive_rate": 0.043, + "tests_units": "units unclear", + "stringency_index": 60.19 + }, + { + "date": "2020-08-27", + "total_cases": 50393.0, + "new_cases": 317.0, + "new_cases_smoothed": 458.286, + "total_deaths": 186.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 29615.364, + "new_cases_per_million": 186.297, + "new_cases_smoothed_per_million": 269.329, + "total_deaths_per_million": 109.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.924, + "new_tests_smoothed": 9577.0, + "new_tests_smoothed_per_thousand": 5.628, + "tests_per_case": 20.897, + "positive_rate": 0.048, + "tests_units": "units unclear", + "stringency_index": 60.19 + }, + { + "date": "2020-08-28", + "total_cases": 50756.0, + "new_cases": 363.0, + "new_cases_smoothed": 400.857, + "total_deaths": 188.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 29828.695, + "new_cases_per_million": 213.331, + "new_cases_smoothed_per_million": 235.579, + "total_deaths_per_million": 110.485, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.756, + "total_tests": 1078767.0, + "total_tests_per_thousand": 633.978, + "new_tests_smoothed": 9566.0, + "new_tests_smoothed_per_thousand": 5.622, + "tests_per_case": 23.864, + "positive_rate": 0.042, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-08-29", + "total_cases": 51113.0, + "new_cases": 357.0, + "new_cases_smoothed": 401.429, + "total_deaths": 189.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 30038.499, + "new_cases_per_million": 209.805, + "new_cases_smoothed_per_million": 235.915, + "total_deaths_per_million": 111.073, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 9651.0, + "total_tests": 1088418.0, + "total_tests_per_thousand": 639.65, + "new_tests_per_thousand": 5.672, + "new_tests_smoothed": 9659.0, + "new_tests_smoothed_per_thousand": 5.676, + "tests_per_case": 24.061999999999998, + "positive_rate": 0.042, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-08-30", + "total_cases": 51391.0, + "new_cases": 278.0, + "new_cases_smoothed": 336.143, + "total_deaths": 189.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 30201.877, + "new_cases_per_million": 163.377, + "new_cases_smoothed_per_million": 197.547, + "total_deaths_per_million": 111.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 12311.0, + "total_tests": 1100729.0, + "total_tests_per_thousand": 646.885, + "new_tests_per_thousand": 7.235, + "new_tests_smoothed": 10109.0, + "new_tests_smoothed_per_thousand": 5.941, + "tests_per_case": 30.074, + "positive_rate": 0.033, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-08-31", + "total_cases": 51574.0, + "new_cases": 183.0, + "new_cases_smoothed": 362.286, + "total_deaths": 189.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 30309.424, + "new_cases_per_million": 107.547, + "new_cases_smoothed_per_million": 212.911, + "total_deaths_per_million": 111.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.42, + "new_tests_smoothed": 9262.0, + "new_tests_smoothed_per_thousand": 5.443, + "tests_per_case": 25.565, + "positive_rate": 0.039, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-09-01", + "total_cases": 51574.0, + "new_cases": 0.0, + "new_cases_smoothed": 320.571, + "total_deaths": 190.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 30309.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 188.396, + "total_deaths_per_million": 111.661, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.504, + "total_tests": 1108088.0, + "total_tests_per_thousand": 651.21, + "new_tests_smoothed": 8450.0, + "new_tests_smoothed_per_thousand": 4.966, + "tests_per_case": 26.359, + "positive_rate": 0.038, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-09-02", + "total_cases": 51972.0, + "new_cases": 398.0, + "new_cases_smoothed": 270.857, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30543.323, + "new_cases_per_million": 233.9, + "new_cases_smoothed_per_million": 159.18, + "total_deaths_per_million": 111.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 10749.0, + "total_tests": 1118837.0, + "total_tests_per_thousand": 657.527, + "new_tests_per_thousand": 6.317, + "new_tests_smoothed": 7276.0, + "new_tests_smoothed_per_thousand": 4.276, + "tests_per_case": 26.863000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-09-03", + "total_cases": 52440.0, + "new_cases": 468.0, + "new_cases_smoothed": 292.429, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30818.361, + "new_cases_per_million": 275.038, + "new_cases_smoothed_per_million": 171.857, + "total_deaths_per_million": 111.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 9992.0, + "total_tests": 1128829.0, + "total_tests_per_thousand": 663.399, + "new_tests_per_thousand": 5.872, + "new_tests_smoothed": 7927.0, + "new_tests_smoothed_per_thousand": 4.659, + "tests_per_case": 27.107, + "positive_rate": 0.037000000000000005, + "tests_units": "units unclear", + "stringency_index": 54.63 + }, + { + "date": "2020-09-04", + "total_cases": 52807.0, + "new_cases": 367.0, + "new_cases_smoothed": 293.0, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 31034.043, + "new_cases_per_million": 215.682, + "new_cases_smoothed_per_million": 172.193, + "total_deaths_per_million": 111.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 11734.0, + "total_tests": 1140563.0, + "total_tests_per_thousand": 670.295, + "new_tests_per_thousand": 6.896, + "new_tests_smoothed": 8828.0, + "new_tests_smoothed_per_thousand": 5.188, + "tests_per_case": 30.13, + "positive_rate": 0.033, + "tests_units": "units unclear" + }, + { + "date": "2020-09-05", + "total_cases": 53433.0, + "new_cases": 626.0, + "new_cases_smoothed": 331.429, + "total_deaths": 194.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 31401.936, + "new_cases_per_million": 367.893, + "new_cases_smoothed_per_million": 194.777, + "total_deaths_per_million": 114.011, + "new_deaths_per_million": 2.351, + "new_deaths_smoothed_per_million": 0.42 + } + ] + }, + "BGD": { + "continent": "Asia", + "location": "Bangladesh", + "population": 164689383.0, + "population_density": 1265.036, + "median_age": 27.5, + "aged_65_older": 5.098, + "aged_70_older": 3.262, + "gdp_per_capita": 3523.984, + "extreme_poverty": 14.8, + "cardiovasc_death_rate": 298.003, + "diabetes_prevalence": 8.38, + "female_smokers": 1.0, + "male_smokers": 44.7, + "handwashing_facilities": 34.808, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 72.59, + "data": [ + { + "date": "2020-03-04", + "total_tests": 108.0, + "total_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-05", + "new_tests": 3.0, + "total_tests": 111.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_tests": 120.0, + "total_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "new_tests": 7.0, + "total_tests": 127.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 137.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "new_tests": 10.0, + "total_tests": 147.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-11", + "new_tests": 16.0, + "total_tests": 163.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-12", + "new_tests": 24.0, + "total_tests": 187.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 11.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-13", + "new_tests": 24.0, + "total_tests": 211.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-14", + "new_tests": 30.0, + "total_tests": 241.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 268.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 293.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.03, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 49.0, + "total_tests": 342.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-18", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.049, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 381.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 43.4, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-19", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 46.0, + "total_tests": 427.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 34.0, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-20", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 36.0, + "total_tests": 463.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 36.0, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-21", + "total_cases": 17.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 36.0, + "total_tests": 499.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 18.5, + "positive_rate": 0.054000000000000006, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 24.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.012, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 65.0, + "total_tests": 564.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 27.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 56.0, + "total_tests": 620.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 47.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 13.708, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 33.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.2, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 92.0, + "total_tests": 712.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 13.25, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 39.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.237, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 82.0, + "total_tests": 794.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 59.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 13.323, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-26", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 126.0, + "total_tests": 920.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 70.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 16.897000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-27", + "total_cases": 48.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 106.0, + "total_tests": 1026.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 14.737, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 50.0, + "total_tests": 1076.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 82.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 18.516, + "positive_rate": 0.054000000000000006, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 109.0, + "total_tests": 1185.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 89.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 25.958000000000002, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 49.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.298, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 153.0, + "total_tests": 1338.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 103.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 32.773, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 264.0, + "total_tests": 1602.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 55.562, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-01", + "total_cases": 51.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.31, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 157.0, + "total_tests": 1759.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 138.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 80.5, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-02", + "total_cases": 54.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.328, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 147.0, + "total_tests": 1906.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 65.8, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-03", + "total_cases": 56.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.34, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 207.0, + "total_tests": 2113.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 135.625, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-04", + "total_cases": 61.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.37, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 434.0, + "total_tests": 2547.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 210.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 113.07700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-05", + "total_cases": 70.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.143, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.425, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 367.0, + "total_tests": 2914.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 247.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 78.59100000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-06", + "total_cases": 88.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.534, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 696.0, + "total_tests": 3610.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 325.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 58.333, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-07", + "total_cases": 123.0, + "new_cases": 35.0, + "new_cases_smoothed": 10.571, + "total_deaths": 12.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 0.747, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.073, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 792.0, + "total_tests": 4402.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 400.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 37.838, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-08", + "total_cases": 164.0, + "new_cases": 41.0, + "new_cases_smoothed": 16.143, + "total_deaths": 17.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 0.996, + "new_cases_per_million": 0.249, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 981.0, + "total_tests": 5383.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 32.088, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-09", + "total_cases": 218.0, + "new_cases": 54.0, + "new_cases_smoothed": 23.429, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1.324, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1097.0, + "total_tests": 6480.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 653.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 27.872, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-10", + "total_cases": 330.0, + "new_cases": 112.0, + "new_cases_smoothed": 39.143, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2.004, + "new_cases_per_million": 0.68, + "new_cases_smoothed_per_million": 0.238, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1184.0, + "total_tests": 7664.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 793.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 20.259, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 424.0, + "new_cases": 94.0, + "new_cases_smoothed": 51.857, + "total_deaths": 27.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2.575, + "new_cases_per_million": 0.571, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 0.164, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 649.0, + "total_tests": 8313.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 824.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 15.89, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 482.0, + "new_cases": 58.0, + "new_cases_smoothed": 58.857, + "total_deaths": 30.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2.927, + "new_cases_per_million": 0.352, + "new_cases_smoothed_per_million": 0.357, + "total_deaths_per_million": 0.182, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 1340.0, + "total_tests": 9653.0, + "total_tests_per_thousand": 0.059, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 963.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 16.362000000000002, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 621.0, + "new_cases": 139.0, + "new_cases_smoothed": 76.143, + "total_deaths": 34.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 3.771, + "new_cases_per_million": 0.844, + "new_cases_smoothed_per_million": 0.462, + "total_deaths_per_million": 0.206, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1570.0, + "total_tests": 11223.0, + "total_tests_per_thousand": 0.068, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 1088.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 14.289000000000001, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 803.0, + "new_cases": 182.0, + "new_cases_smoothed": 97.143, + "total_deaths": 39.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4.876, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 0.237, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 1905.0, + "total_tests": 13128.0, + "total_tests_per_thousand": 0.08, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1247.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 12.837, + "positive_rate": 0.078, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 1012.0, + "new_cases": 209.0, + "new_cases_smoothed": 121.143, + "total_deaths": 46.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 6.145, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 0.736, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1740.0, + "total_tests": 14868.0, + "total_tests_per_thousand": 0.09, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 1355.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 11.185, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 1231.0, + "new_cases": 219.0, + "new_cases_smoothed": 144.714, + "total_deaths": 50.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 7.475, + "new_cases_per_million": 1.33, + "new_cases_smoothed_per_million": 0.879, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2135.0, + "total_tests": 17003.0, + "total_tests_per_thousand": 0.103, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1503.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 10.386, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 1572.0, + "new_cases": 341.0, + "new_cases_smoothed": 177.429, + "total_deaths": 60.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 9.545, + "new_cases_per_million": 2.071, + "new_cases_smoothed_per_million": 1.077, + "total_deaths_per_million": 0.364, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 2190.0, + "total_tests": 19193.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1647.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 9.283, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 1838.0, + "new_cases": 266.0, + "new_cases_smoothed": 202.0, + "total_deaths": 75.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 11.16, + "new_cases_per_million": 1.615, + "new_cases_smoothed_per_million": 1.227, + "total_deaths_per_million": 0.455, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 2114.0, + "total_tests": 21307.0, + "total_tests_per_thousand": 0.129, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1856.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 9.187999999999999, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 2144.0, + "new_cases": 306.0, + "new_cases_smoothed": 237.429, + "total_deaths": 84.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 13.018, + "new_cases_per_million": 1.858, + "new_cases_smoothed_per_million": 1.442, + "total_deaths_per_million": 0.51, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 2634.0, + "total_tests": 23941.0, + "total_tests_per_thousand": 0.145, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 2041.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 8.596, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 2456.0, + "new_cases": 312.0, + "new_cases_smoothed": 262.143, + "total_deaths": 91.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 14.913, + "new_cases_per_million": 1.894, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 2663.0, + "total_tests": 26604.0, + "total_tests_per_thousand": 0.162, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 2197.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 8.381, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 2948.0, + "new_cases": 492.0, + "new_cases_smoothed": 306.429, + "total_deaths": 101.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 17.9, + "new_cases_per_million": 2.987, + "new_cases_smoothed_per_million": 1.861, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 2974.0, + "total_tests": 29578.0, + "total_tests_per_thousand": 0.18, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 2350.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.669, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 3382.0, + "new_cases": 434.0, + "new_cases_smoothed": 338.571, + "total_deaths": 110.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 20.536, + "new_cases_per_million": 2.635, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 0.668, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 3096.0, + "total_tests": 32674.0, + "total_tests_per_thousand": 0.198, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 2544.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 7.513999999999999, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 3772.0, + "new_cases": 390.0, + "new_cases_smoothed": 363.0, + "total_deaths": 120.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 22.904, + "new_cases_per_million": 2.368, + "new_cases_smoothed_per_million": 2.204, + "total_deaths_per_million": 0.729, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 3416.0, + "total_tests": 36090.0, + "total_tests_per_thousand": 0.219, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2727.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 7.5120000000000005, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 4186.0, + "new_cases": 414.0, + "new_cases_smoothed": 373.429, + "total_deaths": 127.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 25.418, + "new_cases_per_million": 2.514, + "new_cases_smoothed_per_million": 2.267, + "total_deaths_per_million": 0.771, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3686.0, + "total_tests": 39776.0, + "total_tests_per_thousand": 0.242, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 2940.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 7.872999999999999, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 4689.0, + "new_cases": 503.0, + "new_cases_smoothed": 407.286, + "total_deaths": 131.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 28.472, + "new_cases_per_million": 3.054, + "new_cases_smoothed_per_million": 2.473, + "total_deaths_per_million": 0.795, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 3236.0, + "total_tests": 43012.0, + "total_tests_per_thousand": 0.261, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 3101.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 7.614, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 4998.0, + "new_cases": 309.0, + "new_cases_smoothed": 407.714, + "total_deaths": 140.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 30.348, + "new_cases_per_million": 1.876, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 3473.0, + "total_tests": 46485.0, + "total_tests_per_thousand": 0.282, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 3221.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 7.9, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 5416.0, + "new_cases": 418.0, + "new_cases_smoothed": 422.857, + "total_deaths": 145.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 32.886, + "new_cases_per_million": 2.538, + "new_cases_smoothed_per_million": 2.568, + "total_deaths_per_million": 0.88, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 3812.0, + "total_tests": 50297.0, + "total_tests_per_thousand": 0.305, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 3385.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.005, + "positive_rate": 0.125, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 5913.0, + "new_cases": 497.0, + "new_cases_smoothed": 423.571, + "total_deaths": 152.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 35.904, + "new_cases_per_million": 3.018, + "new_cases_smoothed_per_million": 2.572, + "total_deaths_per_million": 0.923, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 4436.0, + "total_tests": 54733.0, + "total_tests_per_thousand": 0.332, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 3594.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 8.485, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 6462.0, + "new_cases": 549.0, + "new_cases_smoothed": 440.0, + "total_deaths": 155.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 39.238, + "new_cases_per_million": 3.334, + "new_cases_smoothed_per_million": 2.672, + "total_deaths_per_million": 0.941, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 4968.0, + "total_tests": 59701.0, + "total_tests_per_thousand": 0.363, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 3861.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 8.775, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 7103.0, + "new_cases": 641.0, + "new_cases_smoothed": 475.857, + "total_deaths": 163.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 43.13, + "new_cases_per_million": 3.892, + "new_cases_smoothed_per_million": 2.889, + "total_deaths_per_million": 0.99, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 4965.0, + "total_tests": 64666.0, + "total_tests_per_thousand": 0.393, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 4082.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 8.578, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 7667.0, + "new_cases": 564.0, + "new_cases_smoothed": 497.286, + "total_deaths": 168.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 46.554, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 3.02, + "total_deaths_per_million": 1.02, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 5573.0, + "total_tests": 70239.0, + "total_tests_per_thousand": 0.426, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 4352.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 8.752, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 8238.0, + "new_cases": 571.0, + "new_cases_smoothed": 507.0, + "total_deaths": 170.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 50.021, + "new_cases_per_million": 3.467, + "new_cases_smoothed_per_million": 3.079, + "total_deaths_per_million": 1.032, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 5827.0, + "total_tests": 76066.0, + "total_tests_per_thousand": 0.462, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 4722.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 9.314, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 8790.0, + "new_cases": 552.0, + "new_cases_smoothed": 541.714, + "total_deaths": 175.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 53.373, + "new_cases_per_million": 3.352, + "new_cases_smoothed_per_million": 3.289, + "total_deaths_per_million": 1.063, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 5388.0, + "total_tests": 81454.0, + "total_tests_per_thousand": 0.495, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 4996.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 9.222999999999999, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 9455.0, + "new_cases": 665.0, + "new_cases_smoothed": 577.0, + "total_deaths": 177.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 57.411, + "new_cases_per_million": 4.038, + "new_cases_smoothed_per_million": 3.504, + "total_deaths_per_million": 1.075, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 6244.0, + "total_tests": 87698.0, + "total_tests_per_thousand": 0.533, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 5343.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 9.26, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 10143.0, + "new_cases": 688.0, + "new_cases_smoothed": 604.286, + "total_deaths": 182.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 61.589, + "new_cases_per_million": 4.178, + "new_cases_smoothed_per_million": 3.669, + "total_deaths_per_million": 1.105, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5705.0, + "total_tests": 93403.0, + "total_tests_per_thousand": 0.567, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 5524.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 9.141, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 10929.0, + "new_cases": 786.0, + "new_cases_smoothed": 638.143, + "total_deaths": 183.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 66.361, + "new_cases_per_million": 4.773, + "new_cases_smoothed_per_million": 3.875, + "total_deaths_per_million": 1.111, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 6241.0, + "total_tests": 99644.0, + "total_tests_per_thousand": 0.605, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 5706.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 8.942, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 11719.0, + "new_cases": 790.0, + "new_cases_smoothed": 659.429, + "total_deaths": 186.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 71.158, + "new_cases_per_million": 4.797, + "new_cases_smoothed_per_million": 4.004, + "total_deaths_per_million": 1.129, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 5867.0, + "total_tests": 105511.0, + "total_tests_per_thousand": 0.641, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 5835.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 8.849, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 12425.0, + "new_cases": 706.0, + "new_cases_smoothed": 679.714, + "total_deaths": 199.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 75.445, + "new_cases_per_million": 4.287, + "new_cases_smoothed_per_million": 4.127, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 5943.0, + "total_tests": 111454.0, + "total_tests_per_thousand": 0.677, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 5888.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 8.662, + "positive_rate": 0.115, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 13134.0, + "new_cases": 709.0, + "new_cases_smoothed": 699.429, + "total_deaths": 206.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 79.75, + "new_cases_per_million": 4.305, + "new_cases_smoothed_per_million": 4.247, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 5465.0, + "total_tests": 116919.0, + "total_tests_per_thousand": 0.71, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 5836.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 8.344, + "positive_rate": 0.12, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 13770.0, + "new_cases": 636.0, + "new_cases_smoothed": 711.429, + "total_deaths": 214.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 83.612, + "new_cases_per_million": 3.862, + "new_cases_smoothed_per_million": 4.32, + "total_deaths_per_million": 1.299, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 5738.0, + "total_tests": 122657.0, + "total_tests_per_thousand": 0.745, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 5886.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 8.273, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 14657.0, + "new_cases": 887.0, + "new_cases_smoothed": 743.143, + "total_deaths": 228.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 88.998, + "new_cases_per_million": 5.386, + "new_cases_smoothed_per_million": 4.512, + "total_deaths_per_million": 1.384, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 7208.0, + "total_tests": 129865.0, + "total_tests_per_thousand": 0.789, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 6024.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 8.106, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 15691.0, + "new_cases": 1034.0, + "new_cases_smoothed": 792.571, + "total_deaths": 239.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 95.276, + "new_cases_per_million": 6.278, + "new_cases_smoothed_per_million": 4.813, + "total_deaths_per_million": 1.451, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 6773.0, + "total_tests": 136638.0, + "total_tests_per_thousand": 0.83, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 6176.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 7.792000000000001, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 16660.0, + "new_cases": 969.0, + "new_cases_smoothed": 818.714, + "total_deaths": 250.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 101.16, + "new_cases_per_million": 5.884, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 1.518, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 7900.0, + "total_tests": 144538.0, + "total_tests_per_thousand": 0.878, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 6413.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 7.832999999999999, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 17822.0, + "new_cases": 1162.0, + "new_cases_smoothed": 871.857, + "total_deaths": 269.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 108.216, + "new_cases_per_million": 7.056, + "new_cases_smoothed_per_million": 5.294, + "total_deaths_per_million": 1.633, + "new_deaths_per_million": 0.115, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 7392.0, + "total_tests": 151930.0, + "total_tests_per_thousand": 0.923, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 6631.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 7.606, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 18863.0, + "new_cases": 1041.0, + "new_cases_smoothed": 919.714, + "total_deaths": 283.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 114.537, + "new_cases_per_million": 6.321, + "new_cases_smoothed_per_million": 5.585, + "total_deaths_per_million": 1.718, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 8582.0, + "total_tests": 160512.0, + "total_tests_per_thousand": 0.975, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 7008.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 7.62, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 20065.0, + "new_cases": 1202.0, + "new_cases_smoothed": 990.143, + "total_deaths": 298.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 121.835, + "new_cases_per_million": 7.299, + "new_cases_smoothed_per_million": 6.012, + "total_deaths_per_million": 1.809, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 6782.0, + "total_tests": 167294.0, + "total_tests_per_thousand": 1.016, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 7196.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 7.268, + "positive_rate": 0.138, + "tests_units": "samples tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 20995.0, + "new_cases": 930.0, + "new_cases_smoothed": 1032.143, + "total_deaths": 314.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 127.482, + "new_cases_per_million": 5.647, + "new_cases_smoothed_per_million": 6.267, + "total_deaths_per_million": 1.907, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 8114.0, + "total_tests": 175408.0, + "total_tests_per_thousand": 1.065, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 7536.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 7.301, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-18", + "total_cases": 22268.0, + "new_cases": 1273.0, + "new_cases_smoothed": 1087.286, + "total_deaths": 328.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 135.212, + "new_cases_per_million": 7.73, + "new_cases_smoothed_per_million": 6.602, + "total_deaths_per_million": 1.992, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 9788.0, + "total_tests": 185196.0, + "total_tests_per_thousand": 1.125, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 7904.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 7.269, + "positive_rate": 0.138, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-19", + "total_cases": 23870.0, + "new_cases": 1602.0, + "new_cases_smoothed": 1168.429, + "total_deaths": 349.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 144.94, + "new_cases_per_million": 9.727, + "new_cases_smoothed_per_million": 7.095, + "total_deaths_per_million": 2.119, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 8449.0, + "total_tests": 193645.0, + "total_tests_per_thousand": 1.176, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 8144.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 6.97, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-20", + "total_cases": 25121.0, + "new_cases": 1251.0, + "new_cases_smoothed": 1208.714, + "total_deaths": 370.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 152.536, + "new_cases_per_million": 7.596, + "new_cases_smoothed_per_million": 7.339, + "total_deaths_per_million": 2.247, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 10207.0, + "total_tests": 203852.0, + "total_tests_per_thousand": 1.238, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 8473.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 7.01, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-21", + "total_cases": 26738.0, + "new_cases": 1617.0, + "new_cases_smoothed": 1273.714, + "total_deaths": 386.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 162.354, + "new_cases_per_million": 9.818, + "new_cases_smoothed_per_million": 7.734, + "total_deaths_per_million": 2.344, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 10262.0, + "total_tests": 214114.0, + "total_tests_per_thousand": 1.3, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 8883.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 6.974, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-22", + "total_cases": 28511.0, + "new_cases": 1773.0, + "new_cases_smoothed": 1378.286, + "total_deaths": 408.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 173.12, + "new_cases_per_million": 10.766, + "new_cases_smoothed_per_million": 8.369, + "total_deaths_per_million": 2.477, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 9727.0, + "total_tests": 223841.0, + "total_tests_per_thousand": 1.359, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 9047.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 6.564, + "positive_rate": 0.152, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-23", + "total_cases": 30205.0, + "new_cases": 1694.0, + "new_cases_smoothed": 1448.571, + "total_deaths": 432.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 183.406, + "new_cases_per_million": 10.286, + "new_cases_smoothed_per_million": 8.796, + "total_deaths_per_million": 2.623, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 10834.0, + "total_tests": 234675.0, + "total_tests_per_thousand": 1.425, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 9626.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 6.645, + "positive_rate": 0.15, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-24", + "total_cases": 32078.0, + "new_cases": 1873.0, + "new_cases_smoothed": 1583.286, + "total_deaths": 452.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 194.779, + "new_cases_per_million": 11.373, + "new_cases_smoothed_per_million": 9.614, + "total_deaths_per_million": 2.745, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 8908.0, + "total_tests": 243583.0, + "total_tests_per_thousand": 1.479, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 9739.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 6.151, + "positive_rate": 0.163, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-25", + "total_cases": 33610.0, + "new_cases": 1532.0, + "new_cases_smoothed": 1620.286, + "total_deaths": 480.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 204.081, + "new_cases_per_million": 9.302, + "new_cases_smoothed_per_million": 9.838, + "total_deaths_per_million": 2.915, + "new_deaths_per_million": 0.17, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 9451.0, + "total_tests": 253034.0, + "total_tests_per_thousand": 1.536, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 9691.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 5.981, + "positive_rate": 0.16699999999999998, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-26", + "total_cases": 35585.0, + "new_cases": 1975.0, + "new_cases_smoothed": 1673.571, + "total_deaths": 501.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 216.073, + "new_cases_per_million": 11.992, + "new_cases_smoothed_per_million": 10.162, + "total_deaths_per_million": 3.042, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5407.0, + "total_tests": 258441.0, + "total_tests_per_thousand": 1.569, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 9257.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 5.531000000000001, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-27", + "total_cases": 36751.0, + "new_cases": 1166.0, + "new_cases_smoothed": 1661.429, + "total_deaths": 522.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 223.153, + "new_cases_per_million": 7.08, + "new_cases_smoothed_per_million": 10.088, + "total_deaths_per_million": 3.17, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 8015.0, + "total_tests": 266456.0, + "total_tests_per_thousand": 1.618, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 8943.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 5.382999999999999, + "positive_rate": 0.18600000000000003, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-28", + "total_cases": 38292.0, + "new_cases": 1541.0, + "new_cases_smoothed": 1650.571, + "total_deaths": 544.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 232.51, + "new_cases_per_million": 9.357, + "new_cases_smoothed_per_million": 10.022, + "total_deaths_per_million": 3.303, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 9320.0, + "total_tests": 275776.0, + "total_tests_per_thousand": 1.675, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 8809.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 5.337000000000001, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-29", + "total_cases": 40321.0, + "new_cases": 2029.0, + "new_cases_smoothed": 1687.143, + "total_deaths": 559.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 244.831, + "new_cases_per_million": 12.32, + "new_cases_smoothed_per_million": 10.244, + "total_deaths_per_million": 3.394, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 11291.0, + "total_tests": 287067.0, + "total_tests_per_thousand": 1.743, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 9032.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 5.353, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-30", + "total_cases": 42844.0, + "new_cases": 2523.0, + "new_cases_smoothed": 1805.571, + "total_deaths": 582.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 260.15, + "new_cases_per_million": 15.32, + "new_cases_smoothed_per_million": 10.963, + "total_deaths_per_million": 3.534, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 9987.0, + "total_tests": 297054.0, + "total_tests_per_thousand": 1.804, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 8911.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 4.935, + "positive_rate": 0.203, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-31", + "total_cases": 44608.0, + "new_cases": 1764.0, + "new_cases_smoothed": 1790.0, + "total_deaths": 610.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 270.861, + "new_cases_per_million": 10.711, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 3.704, + "new_deaths_per_million": 0.17, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 11876.0, + "total_tests": 308930.0, + "total_tests_per_thousand": 1.876, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 9335.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 5.215, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-01", + "total_cases": 47153.0, + "new_cases": 2545.0, + "new_cases_smoothed": 1934.714, + "total_deaths": 650.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 286.315, + "new_cases_per_million": 15.453, + "new_cases_smoothed_per_million": 11.748, + "total_deaths_per_million": 3.947, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 11439.0, + "total_tests": 320369.0, + "total_tests_per_thousand": 1.945, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 9619.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 4.9719999999999995, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-02", + "total_cases": 49534.0, + "new_cases": 2381.0, + "new_cases_smoothed": 1992.714, + "total_deaths": 672.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 300.772, + "new_cases_per_million": 14.458, + "new_cases_smoothed_per_million": 12.1, + "total_deaths_per_million": 4.08, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 12704.0, + "total_tests": 333073.0, + "total_tests_per_thousand": 2.022, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 10662.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 5.35, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 52445.0, + "new_cases": 2911.0, + "new_cases_smoothed": 2242.0, + "total_deaths": 709.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 318.448, + "new_cases_per_million": 17.676, + "new_cases_smoothed_per_million": 13.614, + "total_deaths_per_million": 4.305, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 12510.0, + "total_tests": 345583.0, + "total_tests_per_thousand": 2.098, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 11304.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 5.042, + "positive_rate": 0.198, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 55140.0, + "new_cases": 2695.0, + "new_cases_smoothed": 2406.857, + "total_deaths": 746.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 334.812, + "new_cases_per_million": 16.364, + "new_cases_smoothed_per_million": 14.615, + "total_deaths_per_million": 4.53, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 12694.0, + "total_tests": 358277.0, + "total_tests_per_thousand": 2.175, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 11786.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 4.897, + "positive_rate": 0.204, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 57563.0, + "new_cases": 2423.0, + "new_cases_smoothed": 2463.143, + "total_deaths": 781.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 349.525, + "new_cases_per_million": 14.713, + "new_cases_smoothed_per_million": 14.956, + "total_deaths_per_million": 4.742, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 14088.0, + "total_tests": 372365.0, + "total_tests_per_thousand": 2.261, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 12185.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.947, + "positive_rate": 0.20199999999999999, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 60391.0, + "new_cases": 2828.0, + "new_cases_smoothed": 2506.714, + "total_deaths": 811.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 366.696, + "new_cases_per_million": 17.172, + "new_cases_smoothed_per_million": 15.221, + "total_deaths_per_million": 4.924, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 12486.0, + "total_tests": 384851.0, + "total_tests_per_thousand": 2.337, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 12542.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 5.003, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 63026.0, + "new_cases": 2635.0, + "new_cases_smoothed": 2631.143, + "total_deaths": 846.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 382.696, + "new_cases_per_million": 16.0, + "new_cases_smoothed_per_million": 15.976, + "total_deaths_per_million": 5.137, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 13136.0, + "total_tests": 397987.0, + "total_tests_per_thousand": 2.417, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 12722.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 4.835, + "positive_rate": 0.207, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 65769.0, + "new_cases": 2743.0, + "new_cases_smoothed": 2659.429, + "total_deaths": 888.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 399.352, + "new_cases_per_million": 16.656, + "new_cases_smoothed_per_million": 16.148, + "total_deaths_per_million": 5.392, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 12944.0, + "total_tests": 410931.0, + "total_tests_per_thousand": 2.495, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 12937.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.865, + "positive_rate": 0.20600000000000002, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 68504.0, + "new_cases": 2735.0, + "new_cases_smoothed": 2710.0, + "total_deaths": 930.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 415.959, + "new_cases_per_million": 16.607, + "new_cases_smoothed_per_million": 16.455, + "total_deaths_per_million": 5.647, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 14564.0, + "total_tests": 425495.0, + "total_tests_per_thousand": 2.584, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 13203.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 4.872, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 71675.0, + "new_cases": 3171.0, + "new_cases_smoothed": 2747.143, + "total_deaths": 975.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 435.213, + "new_cases_per_million": 19.254, + "new_cases_smoothed_per_million": 16.681, + "total_deaths_per_million": 5.92, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 16065.0, + "total_tests": 441560.0, + "total_tests_per_thousand": 2.681, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 13711.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 4.9910000000000005, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 74865.0, + "new_cases": 3190.0, + "new_cases_smoothed": 2817.857, + "total_deaths": 1012.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 454.583, + "new_cases_per_million": 19.37, + "new_cases_smoothed_per_million": 17.11, + "total_deaths_per_million": 6.145, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 15772.0, + "total_tests": 457332.0, + "total_tests_per_thousand": 2.777, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 14151.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 5.022, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 78052.0, + "new_cases": 3187.0, + "new_cases_smoothed": 2927.0, + "total_deaths": 1049.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 473.935, + "new_cases_per_million": 19.352, + "new_cases_smoothed_per_million": 17.773, + "total_deaths_per_million": 6.37, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 15990.0, + "total_tests": 473322.0, + "total_tests_per_thousand": 2.874, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 14422.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 4.927, + "positive_rate": 0.203, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 81523.0, + "new_cases": 3471.0, + "new_cases_smoothed": 3018.857, + "total_deaths": 1095.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 495.011, + "new_cases_per_million": 21.076, + "new_cases_smoothed_per_million": 18.331, + "total_deaths_per_million": 6.649, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 16638.0, + "total_tests": 489960.0, + "total_tests_per_thousand": 2.975, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 15016.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 4.974, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 84379.0, + "new_cases": 2856.0, + "new_cases_smoothed": 3050.429, + "total_deaths": 1139.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 512.352, + "new_cases_per_million": 17.342, + "new_cases_smoothed_per_million": 18.522, + "total_deaths_per_million": 6.916, + "new_deaths_per_million": 0.267, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 14505.0, + "total_tests": 504465.0, + "total_tests_per_thousand": 3.063, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 15211.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 4.987, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 87520.0, + "new_cases": 3141.0, + "new_cases_smoothed": 3107.286, + "total_deaths": 1171.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 531.425, + "new_cases_per_million": 19.072, + "new_cases_smoothed_per_million": 18.868, + "total_deaths_per_million": 7.11, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 15038.0, + "total_tests": 519503.0, + "total_tests_per_thousand": 3.154, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 15510.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 4.9910000000000005, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-16", + "total_cases": 90619.0, + "new_cases": 3099.0, + "new_cases_smoothed": 3159.286, + "total_deaths": 1209.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 550.242, + "new_cases_per_million": 18.817, + "new_cases_smoothed_per_million": 19.183, + "total_deaths_per_million": 7.341, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 17214.0, + "total_tests": 536717.0, + "total_tests_per_thousand": 3.259, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 15889.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 5.029, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-17", + "total_cases": 94481.0, + "new_cases": 3862.0, + "new_cases_smoothed": 3258.0, + "total_deaths": 1262.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 573.692, + "new_cases_per_million": 23.45, + "new_cases_smoothed_per_million": 19.783, + "total_deaths_per_million": 7.663, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 17527.0, + "total_tests": 554244.0, + "total_tests_per_thousand": 3.365, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 16098.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 4.941, + "positive_rate": 0.20199999999999999, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-18", + "total_cases": 98489.0, + "new_cases": 4008.0, + "new_cases_smoothed": 3374.857, + "total_deaths": 1305.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 598.029, + "new_cases_per_million": 24.337, + "new_cases_smoothed_per_million": 20.492, + "total_deaths_per_million": 7.924, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 16259.0, + "total_tests": 570503.0, + "total_tests_per_thousand": 3.464, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 16167.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 4.79, + "positive_rate": 0.209, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-19", + "total_cases": 102292.0, + "new_cases": 3803.0, + "new_cases_smoothed": 3462.857, + "total_deaths": 1343.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 621.121, + "new_cases_per_million": 23.092, + "new_cases_smoothed_per_million": 21.027, + "total_deaths_per_million": 8.155, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 12045.0, + "total_tests": 582548.0, + "total_tests_per_thousand": 3.537, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 15604.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 4.506, + "positive_rate": 0.222, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-20", + "total_cases": 105535.0, + "new_cases": 3243.0, + "new_cases_smoothed": 3430.286, + "total_deaths": 1388.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 640.812, + "new_cases_per_million": 19.692, + "new_cases_smoothed_per_million": 20.829, + "total_deaths_per_million": 8.428, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 17031.0, + "total_tests": 599579.0, + "total_tests_per_thousand": 3.641, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 15660.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 4.565, + "positive_rate": 0.21899999999999997, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-21", + "total_cases": 108775.0, + "new_cases": 3240.0, + "new_cases_smoothed": 3485.143, + "total_deaths": 1425.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 660.486, + "new_cases_per_million": 19.673, + "new_cases_smoothed_per_million": 21.162, + "total_deaths_per_million": 8.653, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 15585.0, + "total_tests": 615164.0, + "total_tests_per_thousand": 3.735, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 15814.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 4.538, + "positive_rate": 0.22, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-22", + "total_cases": 112306.0, + "new_cases": 3531.0, + "new_cases_smoothed": 3540.857, + "total_deaths": 1464.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 681.926, + "new_cases_per_million": 21.44, + "new_cases_smoothed_per_million": 21.5, + "total_deaths_per_million": 8.889, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 15555.0, + "total_tests": 630719.0, + "total_tests_per_thousand": 3.83, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 15888.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 4.487, + "positive_rate": 0.223, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-23", + "total_cases": 115786.0, + "new_cases": 3480.0, + "new_cases_smoothed": 3595.286, + "total_deaths": 1502.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 703.057, + "new_cases_per_million": 21.131, + "new_cases_smoothed_per_million": 21.831, + "total_deaths_per_million": 9.12, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 16292.0, + "total_tests": 647011.0, + "total_tests_per_thousand": 3.929, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 15756.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 4.382, + "positive_rate": 0.228, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-24", + "total_cases": 119198.0, + "new_cases": 3412.0, + "new_cases_smoothed": 3531.0, + "total_deaths": 1545.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 723.775, + "new_cases_per_million": 20.718, + "new_cases_smoothed_per_million": 21.44, + "total_deaths_per_million": 9.381, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 16433.0, + "total_tests": 663444.0, + "total_tests_per_thousand": 4.028, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 15600.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 4.418, + "positive_rate": 0.226, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-25", + "total_cases": 122660.0, + "new_cases": 3462.0, + "new_cases_smoothed": 3453.0, + "total_deaths": 1582.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 39.571, + "total_cases_per_million": 744.796, + "new_cases_per_million": 21.021, + "new_cases_smoothed_per_million": 20.967, + "total_deaths_per_million": 9.606, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 17999.0, + "total_tests": 681443.0, + "total_tests_per_thousand": 4.138, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 15849.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 4.59, + "positive_rate": 0.218, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-26", + "total_cases": 126606.0, + "new_cases": 3946.0, + "new_cases_smoothed": 3473.429, + "total_deaths": 1621.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 39.714, + "total_cases_per_million": 768.756, + "new_cases_per_million": 23.96, + "new_cases_smoothed_per_million": 21.091, + "total_deaths_per_million": 9.843, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.241, + "new_tests": 18498.0, + "total_tests": 699941.0, + "total_tests_per_thousand": 4.25, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 16770.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 4.828, + "positive_rate": 0.207, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-27", + "total_cases": 130474.0, + "new_cases": 3868.0, + "new_cases_smoothed": 3562.714, + "total_deaths": 1661.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 792.243, + "new_cases_per_million": 23.487, + "new_cases_smoothed_per_million": 21.633, + "total_deaths_per_million": 10.086, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 15157.0, + "total_tests": 715098.0, + "total_tests_per_thousand": 4.342, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 16503.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 4.632, + "positive_rate": 0.21600000000000003, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-28", + "total_cases": 133978.0, + "new_cases": 3504.0, + "new_cases_smoothed": 3600.429, + "total_deaths": 1695.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 813.519, + "new_cases_per_million": 21.276, + "new_cases_smoothed_per_million": 21.862, + "total_deaths_per_million": 10.292, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 18099.0, + "total_tests": 733197.0, + "total_tests_per_thousand": 4.452, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 16862.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 4.683, + "positive_rate": 0.214, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-29", + "total_cases": 137787.0, + "new_cases": 3809.0, + "new_cases_smoothed": 3640.143, + "total_deaths": 1738.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 836.648, + "new_cases_per_million": 23.128, + "new_cases_smoothed_per_million": 22.103, + "total_deaths_per_million": 10.553, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 17837.0, + "total_tests": 751034.0, + "total_tests_per_thousand": 4.56, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 17188.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 4.7219999999999995, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-06-30", + "total_cases": 141801.0, + "new_cases": 4014.0, + "new_cases_smoothed": 3716.429, + "total_deaths": 1783.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 861.021, + "new_cases_per_million": 24.373, + "new_cases_smoothed_per_million": 22.566, + "total_deaths_per_million": 10.826, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 18426.0, + "total_tests": 769460.0, + "total_tests_per_thousand": 4.672, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 17493.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 4.707, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-01", + "total_cases": 145483.0, + "new_cases": 3682.0, + "new_cases_smoothed": 3755.0, + "total_deaths": 1847.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 883.378, + "new_cases_per_million": 22.357, + "new_cases_smoothed_per_million": 22.8, + "total_deaths_per_million": 11.215, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 17875.0, + "total_tests": 787335.0, + "total_tests_per_thousand": 4.781, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 17699.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 4.713, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-02", + "total_cases": 149258.0, + "new_cases": 3775.0, + "new_cases_smoothed": 3799.714, + "total_deaths": 1888.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 43.714, + "total_cases_per_million": 906.3, + "new_cases_per_million": 22.922, + "new_cases_smoothed_per_million": 23.072, + "total_deaths_per_million": 11.464, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 18362.0, + "total_tests": 805697.0, + "total_tests_per_thousand": 4.892, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 17751.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 4.672, + "positive_rate": 0.214, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-03", + "total_cases": 153277.0, + "new_cases": 4019.0, + "new_cases_smoothed": 3810.143, + "total_deaths": 1926.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 930.704, + "new_cases_per_million": 24.404, + "new_cases_smoothed_per_million": 23.135, + "total_deaths_per_million": 11.695, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 14650.0, + "total_tests": 820347.0, + "total_tests_per_thousand": 4.981, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 17201.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 4.515, + "positive_rate": 0.222, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-04", + "total_cases": 156391.0, + "new_cases": 3114.0, + "new_cases_smoothed": 3702.429, + "total_deaths": 1968.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 949.612, + "new_cases_per_million": 18.908, + "new_cases_smoothed_per_million": 22.481, + "total_deaths_per_million": 11.95, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 14727.0, + "total_tests": 835074.0, + "total_tests_per_thousand": 5.071, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 17139.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 4.629, + "positive_rate": 0.21600000000000003, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-05", + "total_cases": 159679.0, + "new_cases": 3288.0, + "new_cases_smoothed": 3671.571, + "total_deaths": 1997.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 969.577, + "new_cases_per_million": 19.965, + "new_cases_smoothed_per_million": 22.294, + "total_deaths_per_million": 12.126, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 13988.0, + "total_tests": 849062.0, + "total_tests_per_thousand": 5.156, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 16552.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 4.508, + "positive_rate": 0.222, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-06", + "total_cases": 162417.0, + "new_cases": 2738.0, + "new_cases_smoothed": 3518.571, + "total_deaths": 2052.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 44.857, + "total_cases_per_million": 986.202, + "new_cases_per_million": 16.625, + "new_cases_smoothed_per_million": 21.365, + "total_deaths_per_million": 12.46, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 14245.0, + "total_tests": 863307.0, + "total_tests_per_thousand": 5.242, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 16039.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 4.558, + "positive_rate": 0.21899999999999997, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-07", + "total_cases": 165618.0, + "new_cases": 3201.0, + "new_cases_smoothed": 3402.429, + "total_deaths": 2096.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 44.714, + "total_cases_per_million": 1005.639, + "new_cases_per_million": 19.437, + "new_cases_smoothed_per_million": 20.66, + "total_deaths_per_million": 12.727, + "new_deaths_per_million": 0.267, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 13173.0, + "total_tests": 876480.0, + "total_tests_per_thousand": 5.322, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 15289.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 4.494, + "positive_rate": 0.223, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-08", + "total_cases": 168645.0, + "new_cases": 3027.0, + "new_cases_smoothed": 3308.857, + "total_deaths": 2151.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 43.429, + "total_cases_per_million": 1024.019, + "new_cases_per_million": 18.38, + "new_cases_smoothed_per_million": 20.092, + "total_deaths_per_million": 13.061, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 15672.0, + "total_tests": 892152.0, + "total_tests_per_thousand": 5.417, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 14974.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 4.525, + "positive_rate": 0.221, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-09", + "total_cases": 172134.0, + "new_cases": 3489.0, + "new_cases_smoothed": 3268.0, + "total_deaths": 2197.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 44.143, + "total_cases_per_million": 1045.204, + "new_cases_per_million": 21.185, + "new_cases_smoothed_per_million": 19.843, + "total_deaths_per_million": 13.34, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.268, + "new_tests": 15632.0, + "total_tests": 907784.0, + "total_tests_per_thousand": 5.512, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 14584.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 4.463, + "positive_rate": 0.22399999999999998, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-10", + "total_cases": 175494.0, + "new_cases": 3360.0, + "new_cases_smoothed": 3173.857, + "total_deaths": 2238.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 44.571, + "total_cases_per_million": 1065.606, + "new_cases_per_million": 20.402, + "new_cases_smoothed_per_million": 19.272, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 13488.0, + "total_tests": 921272.0, + "total_tests_per_thousand": 5.594, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 14418.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 4.543, + "positive_rate": 0.22, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-11", + "total_cases": 178443.0, + "new_cases": 2949.0, + "new_cases_smoothed": 3150.286, + "total_deaths": 2275.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 1083.512, + "new_cases_per_million": 17.906, + "new_cases_smoothed_per_million": 19.129, + "total_deaths_per_million": 13.814, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 11184.0, + "total_tests": 932456.0, + "total_tests_per_thousand": 5.662, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 13912.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 4.416, + "positive_rate": 0.226, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-12", + "total_cases": 181129.0, + "new_cases": 2686.0, + "new_cases_smoothed": 3064.286, + "total_deaths": 2305.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 44.0, + "total_cases_per_million": 1099.822, + "new_cases_per_million": 16.309, + "new_cases_smoothed_per_million": 18.606, + "total_deaths_per_million": 13.996, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 8068.0, + "total_tests": 940524.0, + "total_tests_per_thousand": 5.711, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 13066.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.263999999999999, + "positive_rate": 0.235, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-13", + "total_cases": 183795.0, + "new_cases": 2666.0, + "new_cases_smoothed": 3054.0, + "total_deaths": 2352.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 1116.01, + "new_cases_per_million": 16.188, + "new_cases_smoothed_per_million": 18.544, + "total_deaths_per_million": 14.281, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 12423.0, + "total_tests": 952947.0, + "total_tests_per_thousand": 5.786, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 12806.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 4.1930000000000005, + "positive_rate": 0.23800000000000002, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-14", + "total_cases": 186894.0, + "new_cases": 3099.0, + "new_cases_smoothed": 3039.429, + "total_deaths": 2391.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 1134.827, + "new_cases_per_million": 18.817, + "new_cases_smoothed_per_million": 18.456, + "total_deaths_per_million": 14.518, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.256, + "new_tests": 13453.0, + "total_tests": 966400.0, + "total_tests_per_thousand": 5.868, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 12846.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 4.226, + "positive_rate": 0.237, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-15", + "total_cases": 190057.0, + "new_cases": 3163.0, + "new_cases_smoothed": 3058.857, + "total_deaths": 2424.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 1154.033, + "new_cases_per_million": 19.206, + "new_cases_smoothed_per_million": 18.573, + "total_deaths_per_million": 14.719, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 14002.0, + "total_tests": 980402.0, + "total_tests_per_thousand": 5.953, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 12607.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 4.121, + "positive_rate": 0.243, + "tests_units": "samples tested", + "stringency_index": 74.54 + }, + { + "date": "2020-07-16", + "total_cases": 193590.0, + "new_cases": 3533.0, + "new_cases_smoothed": 3065.143, + "total_deaths": 2457.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 1175.486, + "new_cases_per_million": 21.453, + "new_cases_smoothed_per_million": 18.612, + "total_deaths_per_million": 14.919, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 12829.0, + "total_tests": 993231.0, + "total_tests_per_thousand": 6.031, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 12207.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 3.983, + "positive_rate": 0.251, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-17", + "total_cases": 196323.0, + "new_cases": 2733.0, + "new_cases_smoothed": 2975.571, + "total_deaths": 2496.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 1192.08, + "new_cases_per_million": 16.595, + "new_cases_smoothed_per_million": 18.068, + "total_deaths_per_million": 15.156, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 13520.0, + "total_tests": 1006751.0, + "total_tests_per_thousand": 6.113, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 12211.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.104, + "positive_rate": 0.244, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-18", + "total_cases": 199357.0, + "new_cases": 3034.0, + "new_cases_smoothed": 2987.714, + "total_deaths": 2547.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 1210.503, + "new_cases_per_million": 18.423, + "new_cases_smoothed_per_million": 18.142, + "total_deaths_per_million": 15.465, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.236, + "new_tests": 10923.0, + "total_tests": 1017674.0, + "total_tests_per_thousand": 6.179, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 12174.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.075, + "positive_rate": 0.245, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-19", + "total_cases": 202066.0, + "new_cases": 2709.0, + "new_cases_smoothed": 2991.0, + "total_deaths": 2581.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 1226.952, + "new_cases_per_million": 16.449, + "new_cases_smoothed_per_million": 18.161, + "total_deaths_per_million": 15.672, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 10625.0, + "total_tests": 1028299.0, + "total_tests_per_thousand": 6.244, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 12539.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 4.192, + "positive_rate": 0.239, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-20", + "total_cases": 204525.0, + "new_cases": 2459.0, + "new_cases_smoothed": 2961.429, + "total_deaths": 2618.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 1241.883, + "new_cases_per_million": 14.931, + "new_cases_smoothed_per_million": 17.982, + "total_deaths_per_million": 15.897, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 13362.0, + "total_tests": 1041661.0, + "total_tests_per_thousand": 6.325, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 12673.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 4.279, + "positive_rate": 0.23399999999999999, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-21", + "total_cases": 207453.0, + "new_cases": 2928.0, + "new_cases_smoothed": 2937.0, + "total_deaths": 2668.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 39.571, + "total_cases_per_million": 1259.662, + "new_cases_per_million": 17.779, + "new_cases_smoothed_per_million": 17.834, + "total_deaths_per_million": 16.2, + "new_deaths_per_million": 0.304, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 12898.0, + "total_tests": 1054559.0, + "total_tests_per_thousand": 6.403, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 12594.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 4.288, + "positive_rate": 0.233, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-22", + "total_cases": 210510.0, + "new_cases": 3057.0, + "new_cases_smoothed": 2921.857, + "total_deaths": 2709.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 40.714, + "total_cases_per_million": 1278.224, + "new_cases_per_million": 18.562, + "new_cases_smoothed_per_million": 17.742, + "total_deaths_per_million": 16.449, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 12050.0, + "total_tests": 1066609.0, + "total_tests_per_thousand": 6.476, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 12315.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 4.215, + "positive_rate": 0.237, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-23", + "total_cases": 213254.0, + "new_cases": 2744.0, + "new_cases_smoothed": 2809.143, + "total_deaths": 2751.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 1294.886, + "new_cases_per_million": 16.662, + "new_cases_smoothed_per_million": 17.057, + "total_deaths_per_million": 16.704, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 12398.0, + "total_tests": 1079007.0, + "total_tests_per_thousand": 6.552, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 12254.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.362, + "positive_rate": 0.22899999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-24", + "total_cases": 216110.0, + "new_cases": 2856.0, + "new_cases_smoothed": 2826.714, + "total_deaths": 2801.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 1312.228, + "new_cases_per_million": 17.342, + "new_cases_smoothed_per_million": 17.164, + "total_deaths_per_million": 17.008, + "new_deaths_per_million": 0.304, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 12027.0, + "total_tests": 1091034.0, + "total_tests_per_thousand": 6.625, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 12040.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 4.2589999999999995, + "positive_rate": 0.235, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-25", + "total_cases": 218658.0, + "new_cases": 2548.0, + "new_cases_smoothed": 2757.286, + "total_deaths": 2836.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 1327.699, + "new_cases_per_million": 15.472, + "new_cases_smoothed_per_million": 16.742, + "total_deaths_per_million": 17.22, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 10446.0, + "total_tests": 1101480.0, + "total_tests_per_thousand": 6.688, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 11972.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 4.342, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-26", + "total_cases": 221178.0, + "new_cases": 2520.0, + "new_cases_smoothed": 2730.286, + "total_deaths": 2874.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 1343.001, + "new_cases_per_million": 15.302, + "new_cases_smoothed_per_million": 16.578, + "total_deaths_per_million": 17.451, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 10078.0, + "total_tests": 1111558.0, + "total_tests_per_thousand": 6.749, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 11894.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 4.356, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-27", + "total_cases": 223453.0, + "new_cases": 2275.0, + "new_cases_smoothed": 2704.0, + "total_deaths": 2928.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 44.286, + "total_cases_per_million": 1356.815, + "new_cases_per_million": 13.814, + "new_cases_smoothed_per_million": 16.419, + "total_deaths_per_million": 17.779, + "new_deaths_per_million": 0.328, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 12859.0, + "total_tests": 1124417.0, + "total_tests_per_thousand": 6.828, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 11822.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 4.372, + "positive_rate": 0.22899999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-28", + "total_cases": 226225.0, + "new_cases": 2772.0, + "new_cases_smoothed": 2681.714, + "total_deaths": 2965.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 1373.647, + "new_cases_per_million": 16.832, + "new_cases_smoothed_per_million": 16.283, + "total_deaths_per_million": 18.004, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 12714.0, + "total_tests": 1137131.0, + "total_tests_per_thousand": 6.905, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 11796.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 4.399, + "positive_rate": 0.22699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-29", + "total_cases": 229185.0, + "new_cases": 2960.0, + "new_cases_smoothed": 2667.857, + "total_deaths": 3000.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 1391.62, + "new_cases_per_million": 17.973, + "new_cases_smoothed_per_million": 16.199, + "total_deaths_per_million": 18.216, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 14127.0, + "total_tests": 1151258.0, + "total_tests_per_thousand": 6.99, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 12093.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 4.533, + "positive_rate": 0.221, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-30", + "total_cases": 232194.0, + "new_cases": 3009.0, + "new_cases_smoothed": 2705.714, + "total_deaths": 3035.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 1409.891, + "new_cases_per_million": 18.271, + "new_cases_smoothed_per_million": 16.429, + "total_deaths_per_million": 18.429, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 12937.0, + "total_tests": 1164195.0, + "total_tests_per_thousand": 7.069, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 12170.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.498, + "positive_rate": 0.222, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-07-31", + "total_cases": 234889.0, + "new_cases": 2695.0, + "new_cases_smoothed": 2682.714, + "total_deaths": 3083.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 40.286, + "total_cases_per_million": 1426.255, + "new_cases_per_million": 16.364, + "new_cases_smoothed_per_million": 16.29, + "total_deaths_per_million": 18.72, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 12614.0, + "total_tests": 1176809.0, + "total_tests_per_thousand": 7.146, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 12254.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 4.5680000000000005, + "positive_rate": 0.21899999999999997, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-01", + "total_cases": 237661.0, + "new_cases": 2772.0, + "new_cases_smoothed": 2714.714, + "total_deaths": 3111.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 1443.086, + "new_cases_per_million": 16.832, + "new_cases_smoothed_per_million": 16.484, + "total_deaths_per_million": 18.89, + "new_deaths_per_million": 0.17, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 8802.0, + "total_tests": 1185611.0, + "total_tests_per_thousand": 7.199, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 12019.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 4.427, + "positive_rate": 0.226, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-02", + "total_cases": 239860.0, + "new_cases": 2199.0, + "new_cases_smoothed": 2668.857, + "total_deaths": 3132.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 1456.439, + "new_cases_per_million": 13.352, + "new_cases_smoothed_per_million": 16.205, + "total_deaths_per_million": 19.018, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 3684.0, + "total_tests": 1189295.0, + "total_tests_per_thousand": 7.221, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 11105.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 4.1610000000000005, + "positive_rate": 0.24, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-03", + "total_cases": 240746.0, + "new_cases": 886.0, + "new_cases_smoothed": 2470.429, + "total_deaths": 3154.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 1461.819, + "new_cases_per_million": 5.38, + "new_cases_smoothed_per_million": 15.001, + "total_deaths_per_million": 19.151, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 4249.0, + "total_tests": 1193544.0, + "total_tests_per_thousand": 7.247, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 9875.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 3.997, + "positive_rate": 0.25, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-04", + "total_cases": 242102.0, + "new_cases": 1356.0, + "new_cases_smoothed": 2268.143, + "total_deaths": 3184.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 1470.052, + "new_cases_per_million": 8.234, + "new_cases_smoothed_per_million": 13.772, + "total_deaths_per_million": 19.333, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 7712.0, + "total_tests": 1201256.0, + "total_tests_per_thousand": 7.294, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 9161.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 4.039, + "positive_rate": 0.248, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-05", + "total_cases": 244020.0, + "new_cases": 1918.0, + "new_cases_smoothed": 2119.286, + "total_deaths": 3234.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 1481.698, + "new_cases_per_million": 11.646, + "new_cases_smoothed_per_million": 12.868, + "total_deaths_per_million": 19.637, + "new_deaths_per_million": 0.304, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 11160.0, + "total_tests": 1212416.0, + "total_tests_per_thousand": 7.362, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 8737.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 4.123, + "positive_rate": 0.243, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-06", + "total_cases": 246674.0, + "new_cases": 2654.0, + "new_cases_smoothed": 2068.571, + "total_deaths": 3267.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 33.143, + "total_cases_per_million": 1497.814, + "new_cases_per_million": 16.115, + "new_cases_smoothed_per_million": 12.56, + "total_deaths_per_million": 19.837, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.201, + "new_tests": 12708.0, + "total_tests": 1225124.0, + "total_tests_per_thousand": 7.439, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 8704.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 4.208, + "positive_rate": 0.23800000000000002, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-07", + "total_cases": 249651.0, + "new_cases": 2977.0, + "new_cases_smoothed": 2108.857, + "total_deaths": 3306.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 1515.89, + "new_cases_per_million": 18.076, + "new_cases_smoothed_per_million": 12.805, + "total_deaths_per_million": 20.074, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 12699.0, + "total_tests": 1237823.0, + "total_tests_per_thousand": 7.516, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 8716.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 4.133, + "positive_rate": 0.242, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-08", + "total_cases": 252502.0, + "new_cases": 2851.0, + "new_cases_smoothed": 2120.143, + "total_deaths": 3333.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 1533.201, + "new_cases_per_million": 17.311, + "new_cases_smoothed_per_million": 12.874, + "total_deaths_per_million": 20.238, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 11737.0, + "total_tests": 1249560.0, + "total_tests_per_thousand": 7.587, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 9136.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 4.309, + "positive_rate": 0.23199999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-09", + "total_cases": 255113.0, + "new_cases": 2611.0, + "new_cases_smoothed": 2179.0, + "total_deaths": 3365.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 1549.056, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 13.231, + "total_deaths_per_million": 20.432, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 10759.0, + "total_tests": 1260319.0, + "total_tests_per_thousand": 7.653, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 10146.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 4.656000000000001, + "positive_rate": 0.215, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-10", + "total_cases": 257600.0, + "new_cases": 2487.0, + "new_cases_smoothed": 2407.714, + "total_deaths": 3399.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 1564.157, + "new_cases_per_million": 15.101, + "new_cases_smoothed_per_million": 14.62, + "total_deaths_per_million": 20.639, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 12849.0, + "total_tests": 1273168.0, + "total_tests_per_thousand": 7.731, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 11375.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 4.724, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-11", + "total_cases": 260507.0, + "new_cases": 2907.0, + "new_cases_smoothed": 2629.286, + "total_deaths": 3438.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 1581.808, + "new_cases_per_million": 17.651, + "new_cases_smoothed_per_million": 15.965, + "total_deaths_per_million": 20.876, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 14820.0, + "total_tests": 1287988.0, + "total_tests_per_thousand": 7.821, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 12390.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 4.712, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-12", + "total_cases": 263503.0, + "new_cases": 2996.0, + "new_cases_smoothed": 2783.286, + "total_deaths": 3471.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 1600.0, + "new_cases_per_million": 18.192, + "new_cases_smoothed_per_million": 16.9, + "total_deaths_per_million": 21.076, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 14751.0, + "total_tests": 1302739.0, + "total_tests_per_thousand": 7.91, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 12903.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 4.636, + "positive_rate": 0.21600000000000003, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-13", + "total_cases": 266498.0, + "new_cases": 2995.0, + "new_cases_smoothed": 2832.0, + "total_deaths": 3513.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 35.143, + "total_cases_per_million": 1618.186, + "new_cases_per_million": 18.186, + "new_cases_smoothed_per_million": 17.196, + "total_deaths_per_million": 21.331, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 13162.0, + "total_tests": 1315901.0, + "total_tests_per_thousand": 7.99, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 12968.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.579, + "positive_rate": 0.218, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-14", + "total_cases": 269115.0, + "new_cases": 2617.0, + "new_cases_smoothed": 2780.571, + "total_deaths": 3557.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 1634.076, + "new_cases_per_million": 15.891, + "new_cases_smoothed_per_million": 16.884, + "total_deaths_per_million": 21.598, + "new_deaths_per_million": 0.267, + "new_deaths_smoothed_per_million": 0.218, + "new_tests": 12856.0, + "total_tests": 1328757.0, + "total_tests_per_thousand": 8.068, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 12991.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.672, + "positive_rate": 0.214, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-15", + "total_cases": 271881.0, + "new_cases": 2766.0, + "new_cases_smoothed": 2768.429, + "total_deaths": 3591.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 1650.871, + "new_cases_per_million": 16.795, + "new_cases_smoothed_per_million": 16.81, + "total_deaths_per_million": 21.805, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 12891.0, + "total_tests": 1341648.0, + "total_tests_per_thousand": 8.147, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 13155.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 4.752, + "positive_rate": 0.21, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-16", + "total_cases": 274525.0, + "new_cases": 2644.0, + "new_cases_smoothed": 2773.143, + "total_deaths": 3625.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 1666.926, + "new_cases_per_million": 16.054, + "new_cases_smoothed_per_million": 16.839, + "total_deaths_per_million": 22.011, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 10018.0, + "total_tests": 1351666.0, + "total_tests_per_thousand": 8.207, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 13050.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.706, + "positive_rate": 0.213, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-17", + "total_cases": 276549.0, + "new_cases": 2024.0, + "new_cases_smoothed": 2707.0, + "total_deaths": 3657.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 1679.216, + "new_cases_per_million": 12.29, + "new_cases_smoothed_per_million": 16.437, + "total_deaths_per_million": 22.205, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 12523.0, + "total_tests": 1364189.0, + "total_tests_per_thousand": 8.283, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 13003.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.803, + "positive_rate": 0.20800000000000002, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-18", + "total_cases": 279144.0, + "new_cases": 2595.0, + "new_cases_smoothed": 2662.429, + "total_deaths": 3694.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 1694.973, + "new_cases_per_million": 15.757, + "new_cases_smoothed_per_million": 16.166, + "total_deaths_per_million": 22.43, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 14630.0, + "total_tests": 1378819.0, + "total_tests_per_thousand": 8.372, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 12976.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.874, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-19", + "total_cases": 282344.0, + "new_cases": 3200.0, + "new_cases_smoothed": 2691.571, + "total_deaths": 3740.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 38.429, + "total_cases_per_million": 1714.403, + "new_cases_per_million": 19.431, + "new_cases_smoothed_per_million": 16.343, + "total_deaths_per_million": 22.709, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 14678.0, + "total_tests": 1393497.0, + "total_tests_per_thousand": 8.461, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 12965.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.817, + "positive_rate": 0.20800000000000002, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-20", + "total_cases": 285091.0, + "new_cases": 2747.0, + "new_cases_smoothed": 2656.143, + "total_deaths": 3781.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 1731.083, + "new_cases_per_million": 16.68, + "new_cases_smoothed_per_million": 16.128, + "total_deaths_per_million": 22.958, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 14059.0, + "total_tests": 1407556.0, + "total_tests_per_thousand": 8.547, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 13094.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 4.93, + "positive_rate": 0.203, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-21", + "total_cases": 287959.0, + "new_cases": 2868.0, + "new_cases_smoothed": 2692.0, + "total_deaths": 3822.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 1748.498, + "new_cases_per_million": 17.415, + "new_cases_smoothed_per_million": 16.346, + "total_deaths_per_million": 23.207, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.23, + "new_tests": 12943.0, + "total_tests": 1420499.0, + "total_tests_per_thousand": 8.625, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 13106.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 4.868, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-22", + "total_cases": 290360.0, + "new_cases": 2401.0, + "new_cases_smoothed": 2639.857, + "total_deaths": 3861.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 1763.077, + "new_cases_per_million": 14.579, + "new_cases_smoothed_per_million": 16.029, + "total_deaths_per_million": 23.444, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 11356.0, + "total_tests": 1431855.0, + "total_tests_per_thousand": 8.694, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 12887.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 4.882, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-23", + "total_cases": 292625.0, + "new_cases": 2265.0, + "new_cases_smoothed": 2585.714, + "total_deaths": 3907.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 40.286, + "total_cases_per_million": 1776.83, + "new_cases_per_million": 13.753, + "new_cases_smoothed_per_million": 15.701, + "total_deaths_per_million": 23.723, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 10801.0, + "total_tests": 1442656.0, + "total_tests_per_thousand": 8.76, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 12999.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 5.027, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-24", + "total_cases": 294598.0, + "new_cases": 1973.0, + "new_cases_smoothed": 2578.429, + "total_deaths": 3941.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 1788.81, + "new_cases_per_million": 11.98, + "new_cases_smoothed_per_million": 15.656, + "total_deaths_per_million": 23.93, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 13382.0, + "total_tests": 1456038.0, + "total_tests_per_thousand": 8.841, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 13121.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 5.0889999999999995, + "positive_rate": 0.19699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-25", + "total_cases": 297083.0, + "new_cases": 2485.0, + "new_cases_smoothed": 2562.714, + "total_deaths": 3983.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 1803.899, + "new_cases_per_million": 15.089, + "new_cases_smoothed_per_million": 15.561, + "total_deaths_per_million": 24.185, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 14153.0, + "total_tests": 1470191.0, + "total_tests_per_thousand": 8.927, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 13053.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 5.093, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-26", + "total_cases": 299628.0, + "new_cases": 2545.0, + "new_cases_smoothed": 2469.143, + "total_deaths": 4028.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 41.143, + "total_cases_per_million": 1819.352, + "new_cases_per_million": 15.453, + "new_cases_smoothed_per_million": 14.993, + "total_deaths_per_million": 24.458, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 15070.0, + "total_tests": 1485261.0, + "total_tests_per_thousand": 9.019, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 13109.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 5.309, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-27", + "total_cases": 302147.0, + "new_cases": 2519.0, + "new_cases_smoothed": 2436.571, + "total_deaths": 4082.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 43.0, + "total_cases_per_million": 1834.648, + "new_cases_per_million": 15.295, + "new_cases_smoothed_per_million": 14.795, + "total_deaths_per_million": 24.786, + "new_deaths_per_million": 0.328, + "new_deaths_smoothed_per_million": 0.261, + "new_tests": 15124.0, + "total_tests": 1500385.0, + "total_tests_per_thousand": 9.11, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 13261.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 5.442, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-28", + "total_cases": 304583.0, + "new_cases": 2436.0, + "new_cases_smoothed": 2374.857, + "total_deaths": 4127.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 1849.439, + "new_cases_per_million": 14.791, + "new_cases_smoothed_per_million": 14.42, + "total_deaths_per_million": 25.059, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 13741.0, + "total_tests": 1514126.0, + "total_tests_per_thousand": 9.194, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 13375.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 5.632000000000001, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-29", + "total_cases": 306794.0, + "new_cases": 2211.0, + "new_cases_smoothed": 2347.714, + "total_deaths": 4174.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 44.714, + "total_cases_per_million": 1862.864, + "new_cases_per_million": 13.425, + "new_cases_smoothed_per_million": 14.255, + "total_deaths_per_million": 25.345, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 11689.0, + "total_tests": 1525815.0, + "total_tests_per_thousand": 9.265, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 13423.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 5.7170000000000005, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-30", + "total_cases": 308925.0, + "new_cases": 2131.0, + "new_cases_smoothed": 2328.571, + "total_deaths": 4206.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 42.714, + "total_cases_per_million": 1875.804, + "new_cases_per_million": 12.94, + "new_cases_smoothed_per_million": 14.139, + "total_deaths_per_million": 25.539, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 11934.0, + "total_tests": 1537749.0, + "total_tests_per_thousand": 9.337, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 13585.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 5.834, + "positive_rate": 0.171, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-08-31", + "total_cases": 310822.0, + "new_cases": 1897.0, + "new_cases_smoothed": 2317.714, + "total_deaths": 4248.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 1887.323, + "new_cases_per_million": 11.519, + "new_cases_smoothed_per_million": 14.073, + "total_deaths_per_million": 25.794, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 12454.0, + "total_tests": 1550203.0, + "total_tests_per_thousand": 9.413, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 13452.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 5.803999999999999, + "positive_rate": 0.172, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-09-01", + "total_cases": 312996.0, + "new_cases": 2174.0, + "new_cases_smoothed": 2273.286, + "total_deaths": 4281.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 1900.523, + "new_cases_per_million": 13.201, + "new_cases_smoothed_per_million": 13.803, + "total_deaths_per_million": 25.994, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 12209.0, + "total_tests": 1562412.0, + "total_tests_per_thousand": 9.487, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 13174.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 5.795, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-09-02", + "total_cases": 314946.0, + "new_cases": 1950.0, + "new_cases_smoothed": 2188.286, + "total_deaths": 4316.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 41.143, + "total_cases_per_million": 1912.364, + "new_cases_per_million": 11.84, + "new_cases_smoothed_per_million": 13.287, + "total_deaths_per_million": 26.207, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 15204.0, + "total_tests": 1577616.0, + "total_tests_per_thousand": 9.579, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 13194.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 6.029, + "positive_rate": 0.166, + "tests_units": "samples tested", + "stringency_index": 80.09 + }, + { + "date": "2020-09-03", + "total_cases": 317528.0, + "new_cases": 2582.0, + "new_cases_smoothed": 2197.286, + "total_deaths": 4351.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 38.429, + "total_cases_per_million": 1928.042, + "new_cases_per_million": 15.678, + "new_cases_smoothed_per_million": 13.342, + "total_deaths_per_million": 26.419, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.233 + }, + { + "date": "2020-09-04", + "total_cases": 319686.0, + "new_cases": 2158.0, + "new_cases_smoothed": 2157.571, + "total_deaths": 4383.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 1941.145, + "new_cases_per_million": 13.103, + "new_cases_smoothed_per_million": 13.101, + "total_deaths_per_million": 26.614, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.222 + }, + { + "date": "2020-09-05", + "total_cases": 321615.0, + "new_cases": 1929.0, + "new_cases_smoothed": 2117.286, + "total_deaths": 4412.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 1952.858, + "new_cases_per_million": 11.713, + "new_cases_smoothed_per_million": 12.856, + "total_deaths_per_million": 26.79, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.206 + } + ] + }, + "BRB": { + "continent": "North America", + "location": "Barbados", + "population": 287371.0, + "population_density": 664.463, + "median_age": 39.8, + "aged_65_older": 14.952, + "aged_70_older": 9.473, + "gdp_per_capita": 16978.068, + "cardiovasc_death_rate": 170.05, + "diabetes_prevalence": 13.57, + "female_smokers": 1.9, + "male_smokers": 14.5, + "handwashing_facilities": 88.469, + "hospital_beds_per_thousand": 5.8, + "life_expectancy": 79.19, + "data": [ + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.48, + "new_cases_per_million": 3.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.48, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.96, + "new_cases_per_million": 3.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 20.879, + "new_cases_per_million": 13.919, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 14.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 48.718, + "new_cases_per_million": 27.839, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 17.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 59.157, + "new_cases_per_million": 10.439, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-24", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-25", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.637, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-27", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.516, + "new_cases_per_million": 20.879, + "new_cases_smoothed_per_million": 10.937, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.948, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 26.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.475, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 33.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.834, + "new_cases_per_million": 24.359, + "new_cases_smoothed_per_million": 7.954, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.314, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-01", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.954, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-02", + "total_cases": 45.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.592, + "new_cases_per_million": 38.278, + "new_cases_smoothed_per_million": 13.422, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.439, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-04", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.439, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-05", + "total_cases": 51.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 177.471, + "new_cases_per_million": 20.879, + "new_cases_smoothed_per_million": 12.428, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-06", + "total_cases": 56.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.87, + "new_cases_per_million": 17.399, + "new_cases_smoothed_per_million": 11.434, + "total_deaths_per_million": 3.48, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 83.33 + }, + { + "date": "2020-04-07", + "total_cases": 60.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 208.789, + "new_cases_per_million": 13.919, + "new_cases_smoothed_per_million": 12.925, + "total_deaths_per_million": 6.96, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 0.994, + "stringency_index": 83.33 + }, + { + "date": "2020-04-08", + "total_cases": 63.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 219.229, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 14.416, + "total_deaths_per_million": 10.439, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 1.491, + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 219.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.948, + "total_deaths_per_million": 10.439, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.491, + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 66.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 229.668, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 10.439, + "total_deaths_per_million": 10.439, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.491, + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 67.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 233.148, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 10.937, + "total_deaths_per_million": 13.919, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 1.988, + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 68.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 236.628, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 13.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.988, + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 71.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 247.067, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 7.457, + "total_deaths_per_million": 13.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.491, + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 72.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 250.547, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 13.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.994, + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 73.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.027, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 0.994, + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 75.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 260.987, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.994, + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.994, + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.977, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.48, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 17.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 76.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 264.466, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 264.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 264.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 79.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.906, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 80.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.386, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 20.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 3.48, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.866, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 285.345, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 81.48 + }, + { + "date": "2020-05-05", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 285.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 81.48 + }, + { + "date": "2020-05-06", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 285.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.497, + "stringency_index": 81.48 + }, + { + "date": "2020-05-07", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-08", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-09", + "total_cases": 83.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.825, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-10", + "total_cases": 84.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.305, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-11", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-12", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-13", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.785, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-14", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-15", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-16", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-17", + "total_cases": 86.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 299.265, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-18", + "total_cases": 88.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 306.224, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-19", + "total_cases": 88.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 306.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-20", + "total_cases": 90.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.184, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-21", + "total_cases": 90.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-22", + "total_cases": 90.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-23", + "total_cases": 90.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-24", + "total_cases": 92.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 2.983, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-25", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-26", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-27", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-28", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-29", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-30", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-05-31", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-06-01", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-02", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-03", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-04", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-05", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-06", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-07", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-08", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-09", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-10", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-11", + "total_cases": 96.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.063, + "new_cases_per_million": 13.919, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-12", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-13", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-14", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-06-15", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-16", + "total_cases": 97.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-17", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-18", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-19", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-20", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-21", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-22", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-23", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-24", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-25", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-26", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-27", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-28", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-29", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-30", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-01", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-02", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-03", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-04", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-05", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-06", + "total_cases": 98.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-07", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-08", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-09", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-10", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-11", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-12", + "total_cases": 103.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 358.422, + "new_cases_per_million": 17.399, + "new_cases_smoothed_per_million": 2.983, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-13", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 358.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-14", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 358.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-15", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 358.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-16", + "total_cases": 104.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.902, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 2.983, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-17", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.983, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-18", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.983, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-19", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-20", + "total_cases": 105.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 365.381, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-21", + "total_cases": 106.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 368.861, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-22", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 368.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.491, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-23", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 368.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-24", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 368.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-25", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 375.821, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-26", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 375.821, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-27", + "total_cases": 110.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-28", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-29", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-30", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-07-31", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-08-01", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-08-02", + "total_cases": 122.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 424.538, + "new_cases_per_million": 41.758, + "new_cases_smoothed_per_million": 6.96, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-08-03", + "total_cases": 132.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 459.337, + "new_cases_per_million": 34.798, + "new_cases_smoothed_per_million": 10.937, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-04", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 459.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.937, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-05", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 459.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.937, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-06", + "total_cases": 133.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 462.816, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 11.434, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-07", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 462.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.434, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-08", + "total_cases": 138.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 480.215, + "new_cases_per_million": 17.399, + "new_cases_smoothed_per_million": 13.919, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-09", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 480.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.954, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-10", + "total_cases": 142.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 494.135, + "new_cases_per_million": 13.919, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-11", + "total_cases": 143.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 497.615, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.468, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-12", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 497.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.468, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-13", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 497.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-14", + "total_cases": 144.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 501.094, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.468, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-15", + "total_cases": 148.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.014, + "new_cases_per_million": 13.919, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-16", + "total_cases": 150.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.973, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-17", + "total_cases": 151.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 525.453, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-18", + "total_cases": 152.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 528.933, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-19", + "total_cases": 153.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 532.413, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-20", + "total_cases": 155.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 539.372, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-21", + "total_cases": 156.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 542.852, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-22", + "total_cases": 157.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 546.332, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-23", + "total_cases": 158.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 549.812, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 3.977, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-24", + "total_cases": 161.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 560.251, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-25", + "total_cases": 161.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 560.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-26", + "total_cases": 164.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 570.691, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 5.468, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-27", + "total_cases": 165.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 574.171, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.971, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-28", + "total_cases": 165.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 574.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-29", + "total_cases": 166.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 577.65, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 4.474, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-30", + "total_cases": 170.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 591.57, + "new_cases_per_million": 13.919, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-31", + "total_cases": 173.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 602.009, + "new_cases_per_million": 10.439, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 174.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 605.489, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 6.463, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 176.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 612.449, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 612.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.468, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 177.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 615.929, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 178.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 619.408, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BLR": { + "continent": "Europe", + "location": "Belarus", + "population": 9449321.0, + "population_density": 46.858, + "median_age": 40.3, + "aged_65_older": 14.799, + "aged_70_older": 9.788, + "gdp_per_capita": 17167.967, + "cardiovasc_death_rate": 443.129, + "diabetes_prevalence": 5.18, + "female_smokers": 10.5, + "male_smokers": 46.1, + "hospital_beds_per_thousand": 11.0, + "life_expectancy": 74.79, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5000.0, + "total_tests_per_thousand": 0.529, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.423, + "new_cases_per_million": 0.317, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.635, + "new_cases_per_million": 0.212, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 855.4, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.952, + "new_cases_per_million": 0.317, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 855.4, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.27, + "new_cases_per_million": 0.317, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 10500.0, + "total_tests_per_thousand": 1.111, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 712.8330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 21.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.222, + "new_cases_per_million": 0.952, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 720.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 336.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 2.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 829.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 386.86699999999996, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 2.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 437.733, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-16", + "total_cases": 27.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.857, + "new_cases_per_million": 0.635, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 16000.0, + "total_tests_per_thousand": 1.693, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 349.333, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-17", + "total_cases": 36.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.81, + "new_cases_per_million": 0.952, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1067.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 248.967, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-18", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.81, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1087.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 281.815, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-19", + "total_cases": 46.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.868, + "new_cases_per_million": 1.058, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1107.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 227.912, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-20", + "total_cases": 57.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.032, + "new_cases_per_million": 1.164, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 19000.0, + "total_tests_per_thousand": 2.011, + "new_tests_smoothed": 1018.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 197.94400000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-21", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 190.361, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-22", + "total_cases": 76.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.043, + "new_cases_per_million": 2.011, + "new_cases_smoothed_per_million": 0.832, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 939.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 119.509, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-23", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 900.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 128.571, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-24", + "total_cases": 81.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.572, + "new_cases_per_million": 0.529, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 950.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 147.778, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-25", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.572, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1000.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 155.556, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-26", + "total_cases": 86.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.101, + "new_cases_per_million": 0.529, + "new_cases_smoothed_per_million": 0.605, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1050.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 183.75, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-27", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 265.517, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-28", + "total_cases": 94.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.948, + "new_cases_per_million": 0.847, + "new_cases_smoothed_per_million": 0.559, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 208.108, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-29", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.948, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.272, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 427.778, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-30", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.948, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.272, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 30000.0, + "total_tests_per_thousand": 3.175, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 427.778, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-31", + "total_cases": 105.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.112, + "new_cases_per_million": 1.164, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1000.0, + "total_tests": 31000.0, + "total_tests_per_thousand": 3.281, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 316.75, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-04-01", + "total_cases": 152.0, + "new_cases": 47.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.086, + "new_cases_per_million": 4.974, + "new_cases_smoothed_per_million": 1.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1000.0, + "total_tests": 32000.0, + "total_tests_per_thousand": 3.386, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1071.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 105.59200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-04-02", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.998, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1143.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_per_case": 121.227, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-04-03", + "total_cases": 254.0, + "new_cases": 102.0, + "new_cases_smoothed": 24.0, + "total_deaths": 4.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 26.88, + "new_cases_per_million": 10.794, + "new_cases_smoothed_per_million": 2.54, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 1214.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 50.583, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-04-04", + "total_cases": 351.0, + "new_cases": 97.0, + "new_cases_smoothed": 36.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 37.146, + "new_cases_per_million": 10.265, + "new_cases_smoothed_per_million": 3.885, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 1286.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 35.027, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-05", + "total_cases": 394.0, + "new_cases": 43.0, + "new_cases_smoothed": 42.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 41.696, + "new_cases_per_million": 4.551, + "new_cases_smoothed_per_million": 4.535, + "total_deaths_per_million": 0.529, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.076, + "new_tests_smoothed": 1357.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 31.663, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-06", + "total_cases": 564.0, + "new_cases": 170.0, + "new_cases_smoothed": 67.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 59.687, + "new_cases_per_million": 17.991, + "new_cases_smoothed_per_million": 7.106, + "total_deaths_per_million": 0.847, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.121, + "total_tests": 40000.0, + "total_tests_per_thousand": 4.233, + "new_tests_smoothed": 1429.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 21.283, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-07", + "total_cases": 700.0, + "new_cases": 136.0, + "new_cases_smoothed": 85.0, + "total_deaths": 13.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 74.079, + "new_cases_per_million": 14.393, + "new_cases_smoothed_per_million": 8.995, + "total_deaths_per_million": 1.376, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.197, + "new_tests_smoothed": 1714.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 20.165, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-08", + "total_cases": 861.0, + "new_cases": 161.0, + "new_cases_smoothed": 101.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 91.118, + "new_cases_per_million": 17.038, + "new_cases_smoothed_per_million": 10.719, + "total_deaths_per_million": 1.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.197, + "total_tests": 46000.0, + "total_tests_per_thousand": 4.868, + "new_tests_smoothed": 2000.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 19.746, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-09", + "total_cases": 1066.0, + "new_cases": 205.0, + "new_cases_smoothed": 130.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 112.812, + "new_cases_per_million": 21.695, + "new_cases_smoothed_per_million": 13.818, + "total_deaths_per_million": 1.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 3000.0, + "total_tests": 49000.0, + "total_tests_per_thousand": 5.186, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 2200.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 16.849, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-10", + "total_cases": 1486.0, + "new_cases": 420.0, + "new_cases_smoothed": 176.0, + "total_deaths": 16.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 157.26, + "new_cases_per_million": 44.448, + "new_cases_smoothed_per_million": 18.626, + "total_deaths_per_million": 1.693, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.181, + "new_tests_smoothed": 2686.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 15.261, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-11", + "total_cases": 1981.0, + "new_cases": 495.0, + "new_cases_smoothed": 232.857, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 209.645, + "new_cases_per_million": 52.385, + "new_cases_smoothed_per_million": 24.643, + "total_deaths_per_million": 2.011, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.227, + "new_tests_smoothed": 3171.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 13.618, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-12", + "total_cases": 2226.0, + "new_cases": 245.0, + "new_cases_smoothed": 261.714, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 235.572, + "new_cases_per_million": 25.928, + "new_cases_smoothed_per_million": 27.697, + "total_deaths_per_million": 2.434, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.272, + "total_tests": 64000.0, + "total_tests_per_thousand": 6.773, + "new_tests_smoothed": 3657.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 13.972999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-13", + "total_cases": 2578.0, + "new_cases": 352.0, + "new_cases_smoothed": 287.714, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 272.824, + "new_cases_per_million": 37.251, + "new_cases_smoothed_per_million": 30.448, + "total_deaths_per_million": 2.752, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 4000.0, + "total_tests": 68000.0, + "total_tests_per_thousand": 7.196, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 4000.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 13.902999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-14", + "total_cases": 2919.0, + "new_cases": 341.0, + "new_cases_smoothed": 317.0, + "total_deaths": 29.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 308.911, + "new_cases_per_million": 36.087, + "new_cases_smoothed_per_million": 33.547, + "total_deaths_per_million": 3.069, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 3875.0, + "total_tests": 71875.0, + "total_tests_per_thousand": 7.606, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 4125.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 13.013, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-15", + "total_cases": 3281.0, + "new_cases": 362.0, + "new_cases_smoothed": 345.714, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 347.221, + "new_cases_per_million": 38.31, + "new_cases_smoothed_per_million": 36.586, + "total_deaths_per_million": 3.492, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 4323.0, + "total_tests": 76198.0, + "total_tests_per_thousand": 8.064, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 4314.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 12.479000000000001, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-16", + "total_cases": 3728.0, + "new_cases": 447.0, + "new_cases_smoothed": 380.286, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 394.526, + "new_cases_per_million": 47.305, + "new_cases_smoothed_per_million": 40.245, + "total_deaths_per_million": 3.81, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.348, + "new_tests_smoothed": 4644.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 12.212, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-17", + "total_cases": 4204.0, + "new_cases": 476.0, + "new_cases_smoothed": 388.286, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 444.9, + "new_cases_per_million": 50.374, + "new_cases_smoothed_per_million": 41.091, + "total_deaths_per_million": 4.233, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.363, + "total_tests": 86813.0, + "total_tests_per_thousand": 9.187, + "new_tests_smoothed": 4688.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 12.074000000000002, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-18", + "total_cases": 4779.0, + "new_cases": 575.0, + "new_cases_smoothed": 399.714, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 505.751, + "new_cases_per_million": 60.851, + "new_cases_smoothed_per_million": 42.301, + "total_deaths_per_million": 4.551, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 5896.0, + "total_tests": 92709.0, + "total_tests_per_thousand": 9.811, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 4816.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 12.049000000000001, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-19", + "total_cases": 5297.0, + "new_cases": 518.0, + "new_cases_smoothed": 438.714, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 560.569, + "new_cases_per_million": 54.819, + "new_cases_smoothed_per_million": 46.428, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 5522.0, + "total_tests": 98231.0, + "total_tests_per_thousand": 10.396, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 4890.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 11.145999999999999, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-04-20", + "total_cases": 5807.0, + "new_cases": 510.0, + "new_cases_smoothed": 461.286, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 614.542, + "new_cases_per_million": 53.972, + "new_cases_smoothed_per_million": 48.817, + "total_deaths_per_million": 4.974, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 4335.0, + "total_tests": 102566.0, + "total_tests_per_thousand": 10.854, + "new_tests_per_thousand": 0.459, + "new_tests_smoothed": 4938.0, + "new_tests_smoothed_per_thousand": 0.523, + "tests_per_case": 10.705, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-21", + "total_cases": 6264.0, + "new_cases": 457.0, + "new_cases_smoothed": 477.857, + "total_deaths": 51.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 662.905, + "new_cases_per_million": 48.363, + "new_cases_smoothed_per_million": 50.571, + "total_deaths_per_million": 5.397, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 5979.0, + "total_tests": 108545.0, + "total_tests_per_thousand": 11.487, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 5239.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 10.964, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-22", + "total_cases": 6723.0, + "new_cases": 459.0, + "new_cases_smoothed": 491.714, + "total_deaths": 55.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 711.48, + "new_cases_per_million": 48.575, + "new_cases_smoothed_per_million": 52.037, + "total_deaths_per_million": 5.821, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 6410.0, + "total_tests": 114955.0, + "total_tests_per_thousand": 12.165, + "new_tests_per_thousand": 0.678, + "new_tests_smoothed": 5537.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 11.261, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-23", + "total_cases": 7281.0, + "new_cases": 558.0, + "new_cases_smoothed": 507.571, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 770.532, + "new_cases_per_million": 59.052, + "new_cases_smoothed_per_million": 53.715, + "total_deaths_per_million": 6.138, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 7588.0, + "total_tests": 122543.0, + "total_tests_per_thousand": 12.968, + "new_tests_per_thousand": 0.803, + "new_tests_smoothed": 5862.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 11.549000000000001, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-24", + "total_cases": 8022.0, + "new_cases": 741.0, + "new_cases_smoothed": 545.429, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 848.95, + "new_cases_per_million": 78.418, + "new_cases_smoothed_per_million": 57.721, + "total_deaths_per_million": 6.35, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 8281.0, + "total_tests": 130824.0, + "total_tests_per_thousand": 13.845, + "new_tests_per_thousand": 0.876, + "new_tests_smoothed": 6287.0, + "new_tests_smoothed_per_thousand": 0.665, + "tests_per_case": 11.527000000000001, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-25", + "total_cases": 8773.0, + "new_cases": 751.0, + "new_cases_smoothed": 570.571, + "total_deaths": 63.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 928.426, + "new_cases_per_million": 79.477, + "new_cases_smoothed_per_million": 60.382, + "total_deaths_per_million": 6.667, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 8471.0, + "total_tests": 139295.0, + "total_tests_per_thousand": 14.741, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 6655.0, + "new_tests_smoothed_per_thousand": 0.704, + "tests_per_case": 11.664000000000001, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-26", + "total_cases": 9590.0, + "new_cases": 817.0, + "new_cases_smoothed": 613.286, + "total_deaths": 67.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1014.888, + "new_cases_per_million": 86.461, + "new_cases_smoothed_per_million": 64.903, + "total_deaths_per_million": 7.09, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 8230.0, + "total_tests": 147525.0, + "total_tests_per_thousand": 15.612, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 7042.0, + "new_tests_smoothed_per_thousand": 0.745, + "tests_per_case": 11.482000000000001, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-27", + "total_cases": 10463.0, + "new_cases": 873.0, + "new_cases_smoothed": 665.143, + "total_deaths": 72.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1107.275, + "new_cases_per_million": 92.388, + "new_cases_smoothed_per_million": 70.391, + "total_deaths_per_million": 7.62, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 6275.0, + "total_tests": 153800.0, + "total_tests_per_thousand": 16.276, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 7319.0, + "new_tests_smoothed_per_thousand": 0.775, + "tests_per_case": 11.004000000000001, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-28", + "total_cases": 11289.0, + "new_cases": 826.0, + "new_cases_smoothed": 717.857, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1194.689, + "new_cases_per_million": 87.414, + "new_cases_smoothed_per_million": 75.969, + "total_deaths_per_million": 7.937, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 7228.0, + "total_tests": 161028.0, + "total_tests_per_thousand": 17.041, + "new_tests_per_thousand": 0.765, + "new_tests_smoothed": 7498.0, + "new_tests_smoothed_per_thousand": 0.793, + "tests_per_case": 10.445, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-29", + "total_cases": 12208.0, + "new_cases": 919.0, + "new_cases_smoothed": 783.571, + "total_deaths": 79.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1291.945, + "new_cases_per_million": 97.256, + "new_cases_smoothed_per_million": 82.924, + "total_deaths_per_million": 8.36, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 7958.0, + "total_tests": 168986.0, + "total_tests_per_thousand": 17.883, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 7719.0, + "new_tests_smoothed_per_thousand": 0.817, + "tests_per_case": 9.851, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-04-30", + "total_cases": 13181.0, + "new_cases": 973.0, + "new_cases_smoothed": 842.857, + "total_deaths": 84.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1394.915, + "new_cases_per_million": 102.97, + "new_cases_smoothed_per_million": 89.198, + "total_deaths_per_million": 8.89, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.393, + "new_tests": 7639.0, + "total_tests": 176625.0, + "total_tests_per_thousand": 18.692, + "new_tests_per_thousand": 0.808, + "new_tests_smoothed": 7726.0, + "new_tests_smoothed_per_thousand": 0.818, + "tests_per_case": 9.166, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-01", + "total_cases": 14027.0, + "new_cases": 846.0, + "new_cases_smoothed": 857.857, + "total_deaths": 89.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1484.445, + "new_cases_per_million": 89.53, + "new_cases_smoothed_per_million": 90.785, + "total_deaths_per_million": 9.419, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.438, + "new_tests": 9637.0, + "total_tests": 186262.0, + "total_tests_per_thousand": 19.712, + "new_tests_per_thousand": 1.02, + "new_tests_smoothed": 7920.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 9.232000000000001, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-02", + "total_cases": 14917.0, + "new_cases": 890.0, + "new_cases_smoothed": 877.714, + "total_deaths": 93.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1578.632, + "new_cases_per_million": 94.187, + "new_cases_smoothed_per_million": 92.886, + "total_deaths_per_million": 9.842, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 9168.0, + "total_tests": 195430.0, + "total_tests_per_thousand": 20.682, + "new_tests_per_thousand": 0.97, + "new_tests_smoothed": 8019.0, + "new_tests_smoothed_per_thousand": 0.849, + "tests_per_case": 9.136000000000001, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-03", + "total_cases": 15828.0, + "new_cases": 911.0, + "new_cases_smoothed": 891.143, + "total_deaths": 97.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1675.041, + "new_cases_per_million": 96.409, + "new_cases_smoothed_per_million": 94.308, + "total_deaths_per_million": 10.265, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 8809.0, + "total_tests": 204239.0, + "total_tests_per_thousand": 21.614, + "new_tests_per_thousand": 0.932, + "new_tests_smoothed": 8102.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 9.092, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-04", + "total_cases": 16705.0, + "new_cases": 877.0, + "new_cases_smoothed": 891.714, + "total_deaths": 99.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1767.852, + "new_cases_per_million": 92.811, + "new_cases_smoothed_per_million": 94.368, + "total_deaths_per_million": 10.477, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.408, + "new_tests": 7130.0, + "total_tests": 211369.0, + "total_tests_per_thousand": 22.369, + "new_tests_per_thousand": 0.755, + "new_tests_smoothed": 8224.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 9.222999999999999, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-05", + "total_cases": 17489.0, + "new_cases": 784.0, + "new_cases_smoothed": 885.714, + "total_deaths": 103.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1850.821, + "new_cases_per_million": 82.969, + "new_cases_smoothed_per_million": 93.733, + "total_deaths_per_million": 10.9, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.423, + "new_tests_smoothed": 8053.0, + "new_tests_smoothed_per_thousand": 0.852, + "tests_per_case": 9.092, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-06", + "total_cases": 18350.0, + "new_cases": 861.0, + "new_cases_smoothed": 877.429, + "total_deaths": 107.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1941.938, + "new_cases_per_million": 91.118, + "new_cases_smoothed_per_million": 92.856, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.423, + "new_tests_smoothed": 7778.0, + "new_tests_smoothed_per_thousand": 0.823, + "tests_per_case": 8.865, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-07", + "total_cases": 19255.0, + "new_cases": 905.0, + "new_cases_smoothed": 867.714, + "total_deaths": 112.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2037.713, + "new_cases_per_million": 95.774, + "new_cases_smoothed_per_million": 91.828, + "total_deaths_per_million": 11.853, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.423, + "total_tests": 229466.0, + "total_tests_per_thousand": 24.284, + "new_tests_smoothed": 7549.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 8.7, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-08", + "total_cases": 20168.0, + "new_cases": 913.0, + "new_cases_smoothed": 877.286, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2134.333, + "new_cases_per_million": 96.621, + "new_cases_smoothed_per_million": 92.841, + "total_deaths_per_million": 12.276, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.408, + "new_tests": 10680.0, + "total_tests": 240146.0, + "total_tests_per_thousand": 25.414, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 7698.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 8.775, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-09", + "total_cases": 21101.0, + "new_cases": 933.0, + "new_cases_smoothed": 883.429, + "total_deaths": 121.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2233.071, + "new_cases_per_million": 98.737, + "new_cases_smoothed_per_million": 93.491, + "total_deaths_per_million": 12.805, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.423, + "new_tests": 11625.0, + "total_tests": 251771.0, + "total_tests_per_thousand": 26.644, + "new_tests_per_thousand": 1.23, + "new_tests_smoothed": 8049.0, + "new_tests_smoothed_per_thousand": 0.852, + "tests_per_case": 9.111, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-10", + "total_cases": 22052.0, + "new_cases": 951.0, + "new_cases_smoothed": 889.143, + "total_deaths": 126.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2333.713, + "new_cases_per_million": 100.642, + "new_cases_smoothed_per_million": 94.096, + "total_deaths_per_million": 13.334, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.438, + "new_tests": 11772.0, + "total_tests": 263543.0, + "total_tests_per_thousand": 27.89, + "new_tests_per_thousand": 1.246, + "new_tests_smoothed": 8472.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 9.527999999999999, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-11", + "total_cases": 22973.0, + "new_cases": 921.0, + "new_cases_smoothed": 895.429, + "total_deaths": 131.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2431.18, + "new_cases_per_million": 97.467, + "new_cases_smoothed_per_million": 94.761, + "total_deaths_per_million": 13.863, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.484, + "new_tests": 10517.0, + "total_tests": 274060.0, + "total_tests_per_thousand": 29.003, + "new_tests_per_thousand": 1.113, + "new_tests_smoothed": 8956.0, + "new_tests_smoothed_per_thousand": 0.948, + "tests_per_case": 10.002, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-12", + "total_cases": 23906.0, + "new_cases": 933.0, + "new_cases_smoothed": 916.714, + "total_deaths": 135.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2529.917, + "new_cases_per_million": 98.737, + "new_cases_smoothed_per_million": 97.014, + "total_deaths_per_million": 14.287, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.484, + "new_tests": 10385.0, + "total_tests": 284445.0, + "total_tests_per_thousand": 30.102, + "new_tests_per_thousand": 1.099, + "new_tests_smoothed": 9578.0, + "new_tests_smoothed_per_thousand": 1.014, + "tests_per_case": 10.448, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-13", + "total_cases": 24873.0, + "new_cases": 967.0, + "new_cases_smoothed": 931.857, + "total_deaths": 142.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2632.253, + "new_cases_per_million": 102.335, + "new_cases_smoothed_per_million": 98.616, + "total_deaths_per_million": 15.028, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 11935.0, + "total_tests": 296380.0, + "total_tests_per_thousand": 31.365, + "new_tests_per_thousand": 1.263, + "new_tests_smoothed": 10421.0, + "new_tests_smoothed_per_thousand": 1.103, + "tests_per_case": 11.183, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-14", + "total_cases": 25825.0, + "new_cases": 952.0, + "new_cases_smoothed": 938.571, + "total_deaths": 146.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2733.001, + "new_cases_per_million": 100.748, + "new_cases_smoothed_per_million": 99.327, + "total_deaths_per_million": 15.451, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 11776.0, + "total_tests": 308156.0, + "total_tests_per_thousand": 32.611, + "new_tests_per_thousand": 1.246, + "new_tests_smoothed": 11241.0, + "new_tests_smoothed_per_thousand": 1.19, + "tests_per_case": 11.977, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-15", + "total_cases": 26772.0, + "new_cases": 947.0, + "new_cases_smoothed": 943.429, + "total_deaths": 151.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2833.219, + "new_cases_per_million": 100.219, + "new_cases_smoothed_per_million": 99.841, + "total_deaths_per_million": 15.98, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 11733.0, + "new_tests_smoothed_per_thousand": 1.242, + "tests_per_case": 12.437000000000001, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-16", + "total_cases": 27730.0, + "new_cases": 958.0, + "new_cases_smoothed": 947.0, + "total_deaths": 156.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2934.602, + "new_cases_per_million": 101.383, + "new_cases_smoothed_per_million": 100.219, + "total_deaths_per_million": 16.509, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 12089.0, + "new_tests_smoothed_per_thousand": 1.279, + "tests_per_case": 12.765999999999998, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-17", + "total_cases": 28681.0, + "new_cases": 951.0, + "new_cases_smoothed": 947.0, + "total_deaths": 160.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3035.245, + "new_cases_per_million": 100.642, + "new_cases_smoothed_per_million": 100.219, + "total_deaths_per_million": 16.932, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 350515.0, + "total_tests_per_thousand": 37.094, + "new_tests_smoothed": 12425.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 13.12, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-18", + "total_cases": 29650.0, + "new_cases": 969.0, + "new_cases_smoothed": 953.857, + "total_deaths": 165.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3137.792, + "new_cases_per_million": 102.547, + "new_cases_smoothed_per_million": 100.945, + "total_deaths_per_million": 17.462, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 12692.0, + "new_tests_smoothed_per_thousand": 1.343, + "tests_per_case": 13.306, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-19", + "total_cases": 30572.0, + "new_cases": 922.0, + "new_cases_smoothed": 952.286, + "total_deaths": 171.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 3235.365, + "new_cases_per_million": 97.573, + "new_cases_smoothed_per_million": 100.778, + "total_deaths_per_million": 18.097, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 12977.0, + "new_tests_smoothed_per_thousand": 1.373, + "tests_per_case": 13.627, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-20", + "total_cases": 31508.0, + "new_cases": 936.0, + "new_cases_smoothed": 947.857, + "total_deaths": 175.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3334.419, + "new_cases_per_million": 99.055, + "new_cases_smoothed_per_million": 100.31, + "total_deaths_per_million": 18.52, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "total_tests": 387673.0, + "total_tests_per_thousand": 41.027, + "new_tests_smoothed": 13042.0, + "new_tests_smoothed_per_thousand": 1.38, + "tests_per_case": 13.759, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-21", + "total_cases": 32426.0, + "new_cases": 918.0, + "new_cases_smoothed": 943.0, + "total_deaths": 179.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3431.569, + "new_cases_per_million": 97.15, + "new_cases_smoothed_per_million": 99.796, + "total_deaths_per_million": 18.943, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "new_tests_smoothed": 13598.0, + "new_tests_smoothed_per_thousand": 1.439, + "tests_per_case": 14.42, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-22", + "total_cases": 33371.0, + "new_cases": 945.0, + "new_cases_smoothed": 942.714, + "total_deaths": 185.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3531.577, + "new_cases_per_million": 100.007, + "new_cases_smoothed_per_million": 99.765, + "total_deaths_per_million": 19.578, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 419004.0, + "total_tests_per_thousand": 44.342, + "new_tests_smoothed": 13818.0, + "new_tests_smoothed_per_thousand": 1.462, + "tests_per_case": 14.658, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-23", + "total_cases": 34303.0, + "new_cases": 932.0, + "new_cases_smoothed": 939.0, + "total_deaths": 190.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3630.208, + "new_cases_per_million": 98.631, + "new_cases_smoothed_per_million": 99.372, + "total_deaths_per_million": 20.107, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 15614.0, + "total_tests": 434618.0, + "total_tests_per_thousand": 45.995, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 14032.0, + "new_tests_smoothed_per_thousand": 1.485, + "tests_per_case": 14.944, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-24", + "total_cases": 35244.0, + "new_cases": 941.0, + "new_cases_smoothed": 937.571, + "total_deaths": 194.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3729.792, + "new_cases_per_million": 99.584, + "new_cases_smoothed_per_million": 99.221, + "total_deaths_per_million": 20.531, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 14042.0, + "new_tests_smoothed_per_thousand": 1.486, + "tests_per_case": 14.977, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-25", + "total_cases": 36198.0, + "new_cases": 954.0, + "new_cases_smoothed": 935.429, + "total_deaths": 199.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3830.751, + "new_cases_per_million": 100.96, + "new_cases_smoothed_per_million": 98.994, + "total_deaths_per_million": 21.06, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 463004.0, + "total_tests_per_thousand": 48.999, + "new_tests_smoothed": 14300.0, + "new_tests_smoothed_per_thousand": 1.513, + "tests_per_case": 15.287, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-26", + "total_cases": 37144.0, + "new_cases": 946.0, + "new_cases_smoothed": 938.857, + "total_deaths": 204.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3930.864, + "new_cases_per_million": 100.113, + "new_cases_smoothed_per_million": 99.357, + "total_deaths_per_million": 21.589, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.499, + "new_tests": 9902.0, + "total_tests": 472906.0, + "total_tests_per_thousand": 50.047, + "new_tests_per_thousand": 1.048, + "new_tests_smoothed": 13946.0, + "new_tests_smoothed_per_thousand": 1.476, + "tests_per_case": 14.854000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-27", + "total_cases": 38059.0, + "new_cases": 915.0, + "new_cases_smoothed": 935.857, + "total_deaths": 208.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 4027.697, + "new_cases_per_million": 96.832, + "new_cases_smoothed_per_million": 99.04, + "total_deaths_per_million": 22.012, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "new_tests_smoothed": 14092.0, + "new_tests_smoothed_per_thousand": 1.491, + "tests_per_case": 15.058, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-28", + "total_cases": 38956.0, + "new_cases": 897.0, + "new_cases_smoothed": 932.857, + "total_deaths": 214.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 4122.624, + "new_cases_per_million": 94.927, + "new_cases_smoothed_per_million": 98.722, + "total_deaths_per_million": 22.647, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 13771.0, + "new_tests_smoothed_per_thousand": 1.457, + "tests_per_case": 14.762, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-29", + "total_cases": 39858.0, + "new_cases": 902.0, + "new_cases_smoothed": 926.714, + "total_deaths": 219.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4218.081, + "new_cases_per_million": 95.457, + "new_cases_smoothed_per_million": 98.072, + "total_deaths_per_million": 23.176, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 13449.0, + "new_tests_smoothed_per_thousand": 1.423, + "tests_per_case": 14.513, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-30", + "total_cases": 40764.0, + "new_cases": 906.0, + "new_cases_smoothed": 923.0, + "total_deaths": 224.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4313.961, + "new_cases_per_million": 95.88, + "new_cases_smoothed_per_million": 97.679, + "total_deaths_per_million": 23.705, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 526559.0, + "total_tests_per_thousand": 55.725, + "new_tests_smoothed": 13134.0, + "new_tests_smoothed_per_thousand": 1.39, + "tests_per_case": 14.23, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-05-31", + "total_cases": 41658.0, + "new_cases": 894.0, + "new_cases_smoothed": 916.286, + "total_deaths": 229.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 4408.571, + "new_cases_per_million": 94.61, + "new_cases_smoothed_per_million": 96.968, + "total_deaths_per_million": 24.235, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 14534.0, + "total_tests": 541093.0, + "total_tests_per_thousand": 57.263, + "new_tests_per_thousand": 1.538, + "new_tests_smoothed": 13183.0, + "new_tests_smoothed_per_thousand": 1.395, + "tests_per_case": 14.387, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-01", + "total_cases": 42556.0, + "new_cases": 898.0, + "new_cases_smoothed": 908.286, + "total_deaths": 235.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 4503.604, + "new_cases_per_million": 95.033, + "new_cases_smoothed_per_million": 96.122, + "total_deaths_per_million": 24.87, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.544, + "new_tests": 12284.0, + "total_tests": 553377.0, + "total_tests_per_thousand": 58.563, + "new_tests_per_thousand": 1.3, + "new_tests_smoothed": 12910.0, + "new_tests_smoothed_per_thousand": 1.366, + "tests_per_case": 14.214, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-02", + "total_cases": 43403.0, + "new_cases": 847.0, + "new_cases_smoothed": 894.143, + "total_deaths": 240.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 4593.24, + "new_cases_per_million": 89.636, + "new_cases_smoothed_per_million": 94.625, + "total_deaths_per_million": 25.399, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.544, + "new_tests": 9568.0, + "total_tests": 562945.0, + "total_tests_per_thousand": 59.575, + "new_tests_per_thousand": 1.013, + "new_tests_smoothed": 12863.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 14.386, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-03", + "total_cases": 44255.0, + "new_cases": 852.0, + "new_cases_smoothed": 885.143, + "total_deaths": 243.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 4683.405, + "new_cases_per_million": 90.165, + "new_cases_smoothed_per_million": 93.673, + "total_deaths_per_million": 25.716, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 12643.0, + "new_tests_smoothed_per_thousand": 1.338, + "tests_per_case": 14.284, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-04", + "total_cases": 45116.0, + "new_cases": 861.0, + "new_cases_smoothed": 880.0, + "total_deaths": 248.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4774.523, + "new_cases_per_million": 91.118, + "new_cases_smoothed_per_million": 93.128, + "total_deaths_per_million": 26.245, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 12423.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 14.117, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-05", + "total_cases": 45981.0, + "new_cases": 865.0, + "new_cases_smoothed": 874.714, + "total_deaths": 253.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4866.064, + "new_cases_per_million": 91.541, + "new_cases_smoothed_per_million": 92.569, + "total_deaths_per_million": 26.774, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 12203.0, + "new_tests_smoothed_per_thousand": 1.291, + "tests_per_case": 13.950999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-06", + "total_cases": 46868.0, + "new_cases": 887.0, + "new_cases_smoothed": 872.0, + "total_deaths": 259.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 4959.933, + "new_cases_per_million": 93.869, + "new_cases_smoothed_per_million": 92.282, + "total_deaths_per_million": 27.409, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 11983.0, + "new_tests_smoothed_per_thousand": 1.268, + "tests_per_case": 13.742, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-07", + "total_cases": 47751.0, + "new_cases": 883.0, + "new_cases_smoothed": 870.429, + "total_deaths": 263.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 5053.379, + "new_cases_per_million": 93.446, + "new_cases_smoothed_per_million": 92.115, + "total_deaths_per_million": 27.833, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 622313.0, + "total_tests_per_thousand": 65.858, + "new_tests_smoothed": 11603.0, + "new_tests_smoothed_per_thousand": 1.228, + "tests_per_case": 13.33, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-08", + "total_cases": 48630.0, + "new_cases": 879.0, + "new_cases_smoothed": 867.714, + "total_deaths": 269.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 5146.402, + "new_cases_per_million": 93.023, + "new_cases_smoothed_per_million": 91.828, + "total_deaths_per_million": 28.468, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 10680.0, + "total_tests": 632993.0, + "total_tests_per_thousand": 66.988, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 11374.0, + "new_tests_smoothed_per_thousand": 1.204, + "tests_per_case": 13.107999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-09", + "total_cases": 49453.0, + "new_cases": 823.0, + "new_cases_smoothed": 864.286, + "total_deaths": 276.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5233.498, + "new_cases_per_million": 87.096, + "new_cases_smoothed_per_million": 91.465, + "total_deaths_per_million": 29.208, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 12331.0, + "new_tests_smoothed_per_thousand": 1.305, + "tests_per_case": 14.267000000000001, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-10", + "total_cases": 50265.0, + "new_cases": 812.0, + "new_cases_smoothed": 858.571, + "total_deaths": 282.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5319.43, + "new_cases_per_million": 85.932, + "new_cases_smoothed_per_million": 90.861, + "total_deaths_per_million": 29.843, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.59, + "new_tests_smoothed": 12958.0, + "new_tests_smoothed_per_thousand": 1.371, + "tests_per_case": 15.093, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-11", + "total_cases": 51066.0, + "new_cases": 801.0, + "new_cases_smoothed": 850.0, + "total_deaths": 288.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5404.198, + "new_cases_per_million": 84.768, + "new_cases_smoothed_per_million": 89.954, + "total_deaths_per_million": 30.478, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 13586.0, + "new_tests_smoothed_per_thousand": 1.438, + "tests_per_case": 15.984000000000002, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-12", + "total_cases": 51816.0, + "new_cases": 750.0, + "new_cases_smoothed": 833.571, + "total_deaths": 293.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5483.569, + "new_cases_per_million": 79.371, + "new_cases_smoothed_per_million": 88.215, + "total_deaths_per_million": 31.008, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 14213.0, + "new_tests_smoothed_per_thousand": 1.504, + "tests_per_case": 17.051, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-13", + "total_cases": 52520.0, + "new_cases": 704.0, + "new_cases_smoothed": 807.429, + "total_deaths": 298.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5558.071, + "new_cases_per_million": 74.503, + "new_cases_smoothed_per_million": 85.448, + "total_deaths_per_million": 31.537, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.59, + "total_tests": 714324.0, + "total_tests_per_thousand": 75.595, + "new_tests_smoothed": 14841.0, + "new_tests_smoothed_per_thousand": 1.571, + "tests_per_case": 18.381, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-14", + "total_cases": 53241.0, + "new_cases": 721.0, + "new_cases_smoothed": 784.286, + "total_deaths": 303.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5634.373, + "new_cases_per_million": 76.302, + "new_cases_smoothed_per_million": 82.999, + "total_deaths_per_million": 32.066, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 15687.0, + "new_tests_smoothed_per_thousand": 1.66, + "tests_per_case": 20.002, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-15", + "total_cases": 53973.0, + "new_cases": 732.0, + "new_cases_smoothed": 763.286, + "total_deaths": 308.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5711.839, + "new_cases_per_million": 77.466, + "new_cases_smoothed_per_million": 80.777, + "total_deaths_per_million": 32.595, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.59, + "total_tests": 749917.0, + "total_tests_per_thousand": 79.362, + "new_tests_smoothed": 16703.0, + "new_tests_smoothed_per_thousand": 1.768, + "tests_per_case": 21.883000000000003, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-16", + "total_cases": 54680.0, + "new_cases": 707.0, + "new_cases_smoothed": 746.714, + "total_deaths": 312.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5786.659, + "new_cases_per_million": 74.82, + "new_cases_smoothed_per_million": 79.023, + "total_deaths_per_million": 33.018, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.544, + "new_tests": 10632.0, + "total_tests": 760549.0, + "total_tests_per_thousand": 80.487, + "new_tests_per_thousand": 1.125, + "new_tests_smoothed": 15899.0, + "new_tests_smoothed_per_thousand": 1.683, + "tests_per_case": 21.291999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-17", + "total_cases": 55369.0, + "new_cases": 689.0, + "new_cases_smoothed": 729.143, + "total_deaths": 318.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5859.574, + "new_cases_per_million": 72.915, + "new_cases_smoothed_per_million": 77.164, + "total_deaths_per_million": 33.653, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 16424.0, + "new_tests_smoothed_per_thousand": 1.738, + "tests_per_case": 22.525, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-18", + "total_cases": 56032.0, + "new_cases": 663.0, + "new_cases_smoothed": 709.429, + "total_deaths": 324.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5929.738, + "new_cases_per_million": 70.164, + "new_cases_smoothed_per_million": 75.077, + "total_deaths_per_million": 34.288, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.544, + "total_tests": 800435.0, + "total_tests_per_thousand": 84.708, + "new_tests_smoothed": 16949.0, + "new_tests_smoothed_per_thousand": 1.794, + "tests_per_case": 23.891, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-19", + "total_cases": 56657.0, + "new_cases": 625.0, + "new_cases_smoothed": 691.571, + "total_deaths": 331.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 5995.881, + "new_cases_per_million": 66.142, + "new_cases_smoothed_per_million": 73.187, + "total_deaths_per_million": 35.029, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.574, + "new_tests": 21452.0, + "total_tests": 821887.0, + "total_tests_per_thousand": 86.978, + "new_tests_per_thousand": 2.27, + "new_tests_smoothed": 17690.0, + "new_tests_smoothed_per_thousand": 1.872, + "tests_per_case": 25.579, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-20", + "total_cases": 57333.0, + "new_cases": 676.0, + "new_cases_smoothed": 687.571, + "total_deaths": 333.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 6067.42, + "new_cases_per_million": 71.54, + "new_cases_smoothed_per_million": 72.764, + "total_deaths_per_million": 35.241, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 20286.0, + "total_tests": 842173.0, + "total_tests_per_thousand": 89.125, + "new_tests_per_thousand": 2.147, + "new_tests_smoothed": 18264.0, + "new_tests_smoothed_per_thousand": 1.933, + "tests_per_case": 26.563000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-21", + "total_cases": 57936.0, + "new_cases": 603.0, + "new_cases_smoothed": 670.714, + "total_deaths": 343.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 6131.234, + "new_cases_per_million": 63.814, + "new_cases_smoothed_per_million": 70.98, + "total_deaths_per_million": 36.299, + "new_deaths_per_million": 1.058, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 18184.0, + "new_tests_smoothed_per_thousand": 1.924, + "tests_per_case": 27.111, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-22", + "total_cases": 58505.0, + "new_cases": 569.0, + "new_cases_smoothed": 647.429, + "total_deaths": 346.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6191.45, + "new_cases_per_million": 60.216, + "new_cases_smoothed_per_million": 68.516, + "total_deaths_per_million": 36.616, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.574, + "total_tests": 876639.0, + "total_tests_per_thousand": 92.773, + "new_tests_smoothed": 18103.0, + "new_tests_smoothed_per_thousand": 1.916, + "tests_per_case": 27.961, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-23", + "total_cases": 59023.0, + "new_cases": 518.0, + "new_cases_smoothed": 620.429, + "total_deaths": 351.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 6246.269, + "new_cases_per_million": 54.819, + "new_cases_smoothed_per_million": 65.659, + "total_deaths_per_million": 37.146, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.59, + "new_tests_smoothed": 18389.0, + "new_tests_smoothed_per_thousand": 1.946, + "tests_per_case": 29.639, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-24", + "total_cases": 59487.0, + "new_cases": 464.0, + "new_cases_smoothed": 588.286, + "total_deaths": 357.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 6295.373, + "new_cases_per_million": 49.104, + "new_cases_smoothed_per_million": 62.257, + "total_deaths_per_million": 37.78, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.59, + "total_tests": 901904.0, + "total_tests_per_thousand": 95.446, + "new_tests_smoothed": 17345.0, + "new_tests_smoothed_per_thousand": 1.836, + "tests_per_case": 29.484, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-25", + "total_cases": 59945.0, + "new_cases": 458.0, + "new_cases_smoothed": 559.0, + "total_deaths": 362.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6343.842, + "new_cases_per_million": 48.469, + "new_cases_smoothed_per_million": 59.158, + "total_deaths_per_million": 38.31, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.574, + "new_tests": 17235.0, + "total_tests": 919139.0, + "total_tests_per_thousand": 97.27, + "new_tests_per_thousand": 1.824, + "new_tests_smoothed": 16958.0, + "new_tests_smoothed_per_thousand": 1.795, + "tests_per_case": 30.336, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-26", + "total_cases": 60382.0, + "new_cases": 437.0, + "new_cases_smoothed": 532.143, + "total_deaths": 367.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6390.089, + "new_cases_per_million": 46.247, + "new_cases_smoothed_per_million": 56.315, + "total_deaths_per_million": 38.839, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.544, + "new_tests": 20385.0, + "total_tests": 939524.0, + "total_tests_per_thousand": 99.428, + "new_tests_per_thousand": 2.157, + "new_tests_smoothed": 16805.0, + "new_tests_smoothed_per_thousand": 1.778, + "tests_per_case": 31.58, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-27", + "total_cases": 60713.0, + "new_cases": 331.0, + "new_cases_smoothed": 482.857, + "total_deaths": 373.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 6425.118, + "new_cases_per_million": 35.029, + "new_cases_smoothed_per_million": 51.1, + "total_deaths_per_million": 39.474, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 16406.0, + "new_tests_smoothed_per_thousand": 1.736, + "tests_per_case": 33.977, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-28", + "total_cases": 61095.0, + "new_cases": 382.0, + "new_cases_smoothed": 451.286, + "total_deaths": 377.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 6465.544, + "new_cases_per_million": 40.426, + "new_cases_smoothed_per_million": 47.759, + "total_deaths_per_million": 39.897, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 16444.0, + "new_tests_smoothed_per_thousand": 1.74, + "tests_per_case": 36.438, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-29", + "total_cases": 61475.0, + "new_cases": 380.0, + "new_cases_smoothed": 424.286, + "total_deaths": 383.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 6505.758, + "new_cases_per_million": 40.215, + "new_cases_smoothed_per_million": 44.901, + "total_deaths_per_million": 40.532, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.559, + "total_tests": 992007.0, + "total_tests_per_thousand": 104.982, + "new_tests_smoothed": 16481.0, + "new_tests_smoothed_per_thousand": 1.744, + "tests_per_case": 38.844, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-06-30", + "total_cases": 61790.0, + "new_cases": 315.0, + "new_cases_smoothed": 395.286, + "total_deaths": 387.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6539.094, + "new_cases_per_million": 33.336, + "new_cases_smoothed_per_million": 41.832, + "total_deaths_per_million": 40.955, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 16529.0, + "new_tests_smoothed_per_thousand": 1.749, + "tests_per_case": 41.815, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-07-01", + "total_cases": 62118.0, + "new_cases": 328.0, + "new_cases_smoothed": 375.857, + "total_deaths": 392.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 6573.806, + "new_cases_per_million": 34.711, + "new_cases_smoothed_per_million": 39.776, + "total_deaths_per_million": 41.484, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 16577.0, + "new_tests_smoothed_per_thousand": 1.754, + "tests_per_case": 44.105, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-07-02", + "total_cases": 62424.0, + "new_cases": 306.0, + "new_cases_smoothed": 354.143, + "total_deaths": 398.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6606.189, + "new_cases_per_million": 32.383, + "new_cases_smoothed_per_million": 37.478, + "total_deaths_per_million": 42.119, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 15967.0, + "new_tests_smoothed_per_thousand": 1.69, + "tests_per_case": 45.086000000000006, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-07-03", + "total_cases": 62698.0, + "new_cases": 274.0, + "new_cases_smoothed": 330.857, + "total_deaths": 405.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6635.186, + "new_cases_per_million": 28.997, + "new_cases_smoothed_per_million": 35.014, + "total_deaths_per_million": 42.86, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.574, + "total_tests": 1043876.0, + "total_tests_per_thousand": 110.471, + "new_tests_smoothed": 14907.0, + "new_tests_smoothed_per_thousand": 1.578, + "tests_per_case": 45.056000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-04", + "total_cases": 62997.0, + "new_cases": 299.0, + "new_cases_smoothed": 326.286, + "total_deaths": 412.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 6666.828, + "new_cases_per_million": 31.642, + "new_cases_smoothed_per_million": 34.53, + "total_deaths_per_million": 43.601, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.59, + "new_tests_smoothed": 13854.0, + "new_tests_smoothed_per_thousand": 1.466, + "tests_per_case": 42.46, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-05", + "total_cases": 63270.0, + "new_cases": 273.0, + "new_cases_smoothed": 310.714, + "total_deaths": 418.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 6695.719, + "new_cases_per_million": 28.891, + "new_cases_smoothed_per_million": 32.882, + "total_deaths_per_million": 44.236, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.62, + "new_tests_smoothed": 12801.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 41.199, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-06", + "total_cases": 63554.0, + "new_cases": 284.0, + "new_cases_smoothed": 297.0, + "total_deaths": 423.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 6725.774, + "new_cases_per_million": 30.055, + "new_cases_smoothed_per_million": 31.431, + "total_deaths_per_million": 44.765, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.605, + "total_tests": 1074240.0, + "total_tests_per_thousand": 113.684, + "new_tests_smoothed": 11748.0, + "new_tests_smoothed_per_thousand": 1.243, + "tests_per_case": 39.556, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-07", + "total_cases": 63804.0, + "new_cases": 250.0, + "new_cases_smoothed": 287.714, + "total_deaths": 429.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 6752.231, + "new_cases_per_million": 26.457, + "new_cases_smoothed_per_million": 30.448, + "total_deaths_per_million": 45.4, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.635, + "new_tests_smoothed": 11334.0, + "new_tests_smoothed_per_thousand": 1.199, + "tests_per_case": 39.393, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-08", + "total_cases": 64003.0, + "new_cases": 199.0, + "new_cases_smoothed": 269.286, + "total_deaths": 436.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 6773.291, + "new_cases_per_million": 21.06, + "new_cases_smoothed_per_million": 28.498, + "total_deaths_per_million": 46.141, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.665, + "new_tests_smoothed": 10919.0, + "new_tests_smoothed_per_thousand": 1.156, + "tests_per_case": 40.548, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-09", + "total_cases": 64224.0, + "new_cases": 221.0, + "new_cases_smoothed": 257.143, + "total_deaths": 443.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 6796.679, + "new_cases_per_million": 23.388, + "new_cases_smoothed_per_million": 27.213, + "total_deaths_per_million": 46.882, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.68, + "new_tests_smoothed": 10505.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 40.853, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-10", + "total_cases": 64411.0, + "new_cases": 187.0, + "new_cases_smoothed": 244.714, + "total_deaths": 449.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 6816.469, + "new_cases_per_million": 19.79, + "new_cases_smoothed_per_million": 25.898, + "total_deaths_per_million": 47.517, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.665, + "new_tests_smoothed": 10091.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 41.236000000000004, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-11", + "total_cases": 64604.0, + "new_cases": 193.0, + "new_cases_smoothed": 229.571, + "total_deaths": 454.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 6836.893, + "new_cases_per_million": 20.425, + "new_cases_smoothed_per_million": 24.295, + "total_deaths_per_million": 48.046, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.635, + "new_tests_smoothed": 10084.0, + "new_tests_smoothed_per_thousand": 1.067, + "tests_per_case": 43.925, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-12", + "total_cases": 64767.0, + "new_cases": 163.0, + "new_cases_smoothed": 213.857, + "total_deaths": 459.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 6854.143, + "new_cases_per_million": 17.25, + "new_cases_smoothed_per_million": 22.632, + "total_deaths_per_million": 48.575, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.62, + "total_tests": 1134653.0, + "total_tests_per_thousand": 120.078, + "new_tests_smoothed": 10076.0, + "new_tests_smoothed_per_thousand": 1.066, + "tests_per_case": 47.11600000000001, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-13", + "total_cases": 64932.0, + "new_cases": 165.0, + "new_cases_smoothed": 196.857, + "total_deaths": 464.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 6871.605, + "new_cases_per_million": 17.462, + "new_cases_smoothed_per_million": 20.833, + "total_deaths_per_million": 49.104, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.62, + "new_tests_smoothed": 9109.0, + "new_tests_smoothed_per_thousand": 0.964, + "tests_per_case": 46.272, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-14", + "total_cases": 65114.0, + "new_cases": 182.0, + "new_cases_smoothed": 187.143, + "total_deaths": 468.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 6890.865, + "new_cases_per_million": 19.261, + "new_cases_smoothed_per_million": 19.805, + "total_deaths_per_million": 49.527, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.59, + "new_tests_smoothed": 8148.0, + "new_tests_smoothed_per_thousand": 0.862, + "tests_per_case": 43.538999999999994, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-15", + "total_cases": 65269.0, + "new_cases": 155.0, + "new_cases_smoothed": 180.857, + "total_deaths": 474.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6907.269, + "new_cases_per_million": 16.403, + "new_cases_smoothed_per_million": 19.14, + "total_deaths_per_million": 50.162, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.574, + "total_tests": 1144696.0, + "total_tests_per_thousand": 121.141, + "new_tests_smoothed": 7188.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 39.744, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-16", + "total_cases": 65443.0, + "new_cases": 174.0, + "new_cases_smoothed": 174.143, + "total_deaths": 480.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 6925.683, + "new_cases_per_million": 18.414, + "new_cases_smoothed_per_million": 18.429, + "total_deaths_per_million": 50.797, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.559, + "new_tests_smoothed": 7763.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 44.578, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-17", + "total_cases": 65623.0, + "new_cases": 180.0, + "new_cases_smoothed": 173.143, + "total_deaths": 485.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6944.732, + "new_cases_per_million": 19.049, + "new_cases_smoothed_per_million": 18.323, + "total_deaths_per_million": 51.326, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.544, + "total_tests": 1172880.0, + "total_tests_per_thousand": 124.123, + "new_tests_smoothed": 8338.0, + "new_tests_smoothed_per_thousand": 0.882, + "tests_per_case": 48.157, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-18", + "total_cases": 65782.0, + "new_cases": 159.0, + "new_cases_smoothed": 168.286, + "total_deaths": 491.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 6961.558, + "new_cases_per_million": 16.827, + "new_cases_smoothed_per_million": 17.809, + "total_deaths_per_million": 51.961, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.559, + "new_tests_smoothed": 7943.0, + "new_tests_smoothed_per_thousand": 0.841, + "tests_per_case": 47.199, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-19", + "total_cases": 65953.0, + "new_cases": 171.0, + "new_cases_smoothed": 169.429, + "total_deaths": 495.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6979.655, + "new_cases_per_million": 18.097, + "new_cases_smoothed_per_million": 17.93, + "total_deaths_per_million": 52.385, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.544, + "new_tests_smoothed": 7548.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 44.55, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-20", + "total_cases": 66095.0, + "new_cases": 142.0, + "new_cases_smoothed": 166.143, + "total_deaths": 499.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 6994.682, + "new_cases_per_million": 15.028, + "new_cases_smoothed_per_million": 17.583, + "total_deaths_per_million": 52.808, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 8113.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 48.831, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-21", + "total_cases": 66213.0, + "new_cases": 118.0, + "new_cases_smoothed": 157.0, + "total_deaths": 503.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7007.17, + "new_cases_per_million": 12.488, + "new_cases_smoothed_per_million": 16.615, + "total_deaths_per_million": 53.231, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 8678.0, + "new_tests_smoothed_per_thousand": 0.918, + "tests_per_case": 55.273999999999994, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-22", + "total_cases": 66348.0, + "new_cases": 135.0, + "new_cases_smoothed": 154.143, + "total_deaths": 507.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7021.457, + "new_cases_per_million": 14.287, + "new_cases_smoothed_per_million": 16.313, + "total_deaths_per_million": 53.655, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "total_tests": 1209400.0, + "total_tests_per_thousand": 127.988, + "new_tests_smoothed": 9243.0, + "new_tests_smoothed_per_thousand": 0.978, + "tests_per_case": 59.964, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-23", + "total_cases": 66521.0, + "new_cases": 173.0, + "new_cases_smoothed": 154.0, + "total_deaths": 513.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7039.765, + "new_cases_per_million": 18.308, + "new_cases_smoothed_per_million": 16.297, + "total_deaths_per_million": 54.29, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.499, + "new_tests": 10305.0, + "total_tests": 1219705.0, + "total_tests_per_thousand": 129.079, + "new_tests_per_thousand": 1.091, + "new_tests_smoothed": 8702.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 56.506, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-24", + "total_cases": 66688.0, + "new_cases": 167.0, + "new_cases_smoothed": 152.143, + "total_deaths": 519.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7057.438, + "new_cases_per_million": 17.673, + "new_cases_smoothed_per_million": 16.101, + "total_deaths_per_million": 54.925, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 10979.0, + "total_tests": 1230684.0, + "total_tests_per_thousand": 130.24, + "new_tests_per_thousand": 1.162, + "new_tests_smoothed": 8258.0, + "new_tests_smoothed_per_thousand": 0.874, + "tests_per_case": 54.278, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-25", + "total_cases": 66846.0, + "new_cases": 158.0, + "new_cases_smoothed": 152.0, + "total_deaths": 519.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7074.159, + "new_cases_per_million": 16.721, + "new_cases_smoothed_per_million": 16.086, + "total_deaths_per_million": 54.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.423, + "new_tests": 10940.0, + "total_tests": 1241624.0, + "total_tests_per_thousand": 131.398, + "new_tests_per_thousand": 1.158, + "new_tests_smoothed": 8777.0, + "new_tests_smoothed_per_thousand": 0.929, + "tests_per_case": 57.743, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-26", + "total_cases": 67002.0, + "new_cases": 156.0, + "new_cases_smoothed": 149.857, + "total_deaths": 530.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7090.668, + "new_cases_per_million": 16.509, + "new_cases_smoothed_per_million": 15.859, + "total_deaths_per_million": 56.089, + "new_deaths_per_million": 1.164, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 9735.0, + "total_tests": 1251359.0, + "total_tests_per_thousand": 132.428, + "new_tests_per_thousand": 1.03, + "new_tests_smoothed": 9124.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 60.885, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-27", + "total_cases": 67132.0, + "new_cases": 130.0, + "new_cases_smoothed": 148.143, + "total_deaths": 534.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7104.426, + "new_cases_per_million": 13.758, + "new_cases_smoothed_per_million": 15.678, + "total_deaths_per_million": 56.512, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 6040.0, + "total_tests": 1257399.0, + "total_tests_per_thousand": 133.068, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 8944.0, + "new_tests_smoothed_per_thousand": 0.947, + "tests_per_case": 60.373999999999995, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-28", + "total_cases": 67251.0, + "new_cases": 119.0, + "new_cases_smoothed": 148.286, + "total_deaths": 538.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7117.019, + "new_cases_per_million": 12.593, + "new_cases_smoothed_per_million": 15.693, + "total_deaths_per_million": 56.935, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 9414.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 63.486000000000004, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-29", + "total_cases": 67366.0, + "new_cases": 115.0, + "new_cases_smoothed": 145.429, + "total_deaths": 543.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 7129.189, + "new_cases_per_million": 12.17, + "new_cases_smoothed_per_million": 15.39, + "total_deaths_per_million": 57.464, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.544, + "total_tests": 1278583.0, + "total_tests_per_thousand": 135.31, + "new_tests_smoothed": 9883.0, + "new_tests_smoothed_per_thousand": 1.046, + "tests_per_case": 67.958, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-30", + "total_cases": 67518.0, + "new_cases": 152.0, + "new_cases_smoothed": 142.429, + "total_deaths": 548.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7145.275, + "new_cases_per_million": 16.086, + "new_cases_smoothed_per_million": 15.073, + "total_deaths_per_million": 57.994, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 10003.0, + "total_tests": 1288586.0, + "total_tests_per_thousand": 136.368, + "new_tests_per_thousand": 1.059, + "new_tests_smoothed": 9840.0, + "new_tests_smoothed_per_thousand": 1.041, + "tests_per_case": 69.087, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-07-31", + "total_cases": 67665.0, + "new_cases": 147.0, + "new_cases_smoothed": 139.571, + "total_deaths": 553.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7160.832, + "new_cases_per_million": 15.557, + "new_cases_smoothed_per_million": 14.771, + "total_deaths_per_million": 58.523, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 10842.0, + "total_tests": 1299428.0, + "total_tests_per_thousand": 137.515, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 9821.0, + "new_tests_smoothed_per_thousand": 1.039, + "tests_per_case": 70.365, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-01", + "total_cases": 67808.0, + "new_cases": 143.0, + "new_cases_smoothed": 137.429, + "total_deaths": 559.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 7175.965, + "new_cases_per_million": 15.133, + "new_cases_smoothed_per_million": 14.544, + "total_deaths_per_million": 59.158, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.605, + "new_tests_smoothed": 9725.0, + "new_tests_smoothed_per_thousand": 1.029, + "tests_per_case": 70.764, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-02", + "total_cases": 67946.0, + "new_cases": 138.0, + "new_cases_smoothed": 134.857, + "total_deaths": 563.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7190.57, + "new_cases_per_million": 14.604, + "new_cases_smoothed_per_million": 14.272, + "total_deaths_per_million": 59.581, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "total_tests": 1319976.0, + "total_tests_per_thousand": 139.69, + "new_tests_smoothed": 9802.0, + "new_tests_smoothed_per_thousand": 1.037, + "tests_per_case": 72.684, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-03", + "total_cases": 68067.0, + "new_cases": 121.0, + "new_cases_smoothed": 133.571, + "total_deaths": 567.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7203.375, + "new_cases_per_million": 12.805, + "new_cases_smoothed_per_million": 14.136, + "total_deaths_per_million": 60.004, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "new_tests_smoothed": 9354.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 70.03, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-04", + "total_cases": 68166.0, + "new_cases": 99.0, + "new_cases_smoothed": 130.714, + "total_deaths": 571.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7213.852, + "new_cases_per_million": 10.477, + "new_cases_smoothed_per_million": 13.833, + "total_deaths_per_million": 60.428, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "total_tests": 1325776.0, + "total_tests_per_thousand": 140.304, + "new_tests_smoothed": 8255.0, + "new_tests_smoothed_per_thousand": 0.874, + "tests_per_case": 63.153, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-05", + "total_cases": 68250.0, + "new_cases": 84.0, + "new_cases_smoothed": 126.286, + "total_deaths": 574.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 7222.741, + "new_cases_per_million": 8.89, + "new_cases_smoothed_per_million": 13.365, + "total_deaths_per_million": 60.745, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.469, + "new_tests_smoothed": 8065.0, + "new_tests_smoothed_per_thousand": 0.854, + "tests_per_case": 63.863, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-06", + "total_cases": 68376.0, + "new_cases": 126.0, + "new_cases_smoothed": 122.571, + "total_deaths": 577.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 7236.075, + "new_cases_per_million": 13.334, + "new_cases_smoothed_per_million": 12.971, + "total_deaths_per_million": 61.063, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.438, + "total_tests": 1344303.0, + "total_tests_per_thousand": 142.265, + "new_tests_smoothed": 7960.0, + "new_tests_smoothed_per_thousand": 0.842, + "tests_per_case": 64.942, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-07", + "total_cases": 68503.0, + "new_cases": 127.0, + "new_cases_smoothed": 119.714, + "total_deaths": 580.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 7249.516, + "new_cases_per_million": 13.44, + "new_cases_smoothed_per_million": 12.669, + "total_deaths_per_million": 61.38, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.408, + "new_tests_smoothed": 7747.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 64.712, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-08", + "total_cases": 68614.0, + "new_cases": 111.0, + "new_cases_smoothed": 115.143, + "total_deaths": 583.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 7261.262, + "new_cases_per_million": 11.747, + "new_cases_smoothed_per_million": 12.185, + "total_deaths_per_million": 61.698, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.363, + "total_tests": 1363011.0, + "total_tests_per_thousand": 144.244, + "new_tests_smoothed": 7616.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 66.14399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-09", + "total_cases": 68738.0, + "new_cases": 124.0, + "new_cases_smoothed": 113.143, + "total_deaths": 585.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7274.385, + "new_cases_per_million": 13.123, + "new_cases_smoothed_per_million": 11.974, + "total_deaths_per_million": 61.909, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.333, + "new_tests_smoothed": 6840.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 60.455, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-10", + "total_cases": 68850.0, + "new_cases": 112.0, + "new_cases_smoothed": 111.857, + "total_deaths": 587.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7286.238, + "new_cases_per_million": 11.853, + "new_cases_smoothed_per_million": 11.838, + "total_deaths_per_million": 62.121, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.302, + "new_tests_smoothed": 7117.0, + "new_tests_smoothed_per_thousand": 0.753, + "tests_per_case": 63.626000000000005, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-11", + "total_cases": 68947.0, + "new_cases": 97.0, + "new_cases_smoothed": 111.571, + "total_deaths": 589.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7296.503, + "new_cases_per_million": 10.265, + "new_cases_smoothed_per_million": 11.807, + "total_deaths_per_million": 62.333, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.272, + "total_tests": 1377540.0, + "total_tests_per_thousand": 145.782, + "new_tests_smoothed": 7395.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 66.28, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-12", + "total_cases": 69005.0, + "new_cases": 58.0, + "new_cases_smoothed": 107.857, + "total_deaths": 592.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7302.641, + "new_cases_per_million": 6.138, + "new_cases_smoothed_per_million": 11.414, + "total_deaths_per_million": 62.65, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 6486.0, + "total_tests": 1384026.0, + "total_tests_per_thousand": 146.468, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 6998.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 64.882, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-13", + "total_cases": 69102.0, + "new_cases": 97.0, + "new_cases_smoothed": 103.714, + "total_deaths": 595.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7312.906, + "new_cases_per_million": 10.265, + "new_cases_smoothed_per_million": 10.976, + "total_deaths_per_million": 62.967, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.272, + "new_tests_smoothed": 6839.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 65.941, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-08-14", + "total_cases": 69203.0, + "new_cases": 101.0, + "new_cases_smoothed": 100.0, + "total_deaths": 599.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 7323.595, + "new_cases_per_million": 10.689, + "new_cases_smoothed_per_million": 10.583, + "total_deaths_per_million": 63.391, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.287, + "new_tests_smoothed": 6668.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 66.68, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-15", + "total_cases": 69308.0, + "new_cases": 105.0, + "new_cases_smoothed": 99.143, + "total_deaths": 603.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7334.707, + "new_cases_per_million": 11.112, + "new_cases_smoothed_per_million": 10.492, + "total_deaths_per_million": 63.814, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.302, + "new_tests_smoothed": 6496.0, + "new_tests_smoothed_per_thousand": 0.687, + "tests_per_case": 65.52199999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-16", + "total_cases": 69424.0, + "new_cases": 116.0, + "new_cases_smoothed": 98.0, + "total_deaths": 607.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7346.983, + "new_cases_per_million": 12.276, + "new_cases_smoothed_per_million": 10.371, + "total_deaths_per_million": 64.237, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.333, + "new_tests_smoothed": 6969.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 71.112, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-17", + "total_cases": 69516.0, + "new_cases": 92.0, + "new_cases_smoothed": 95.143, + "total_deaths": 610.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 7356.719, + "new_cases_per_million": 9.736, + "new_cases_smoothed_per_million": 10.069, + "total_deaths_per_million": 64.555, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.348, + "new_tests_smoothed": 7442.0, + "new_tests_smoothed_per_thousand": 0.788, + "tests_per_case": 78.219, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-18", + "total_cases": 69589.0, + "new_cases": 73.0, + "new_cases_smoothed": 91.714, + "total_deaths": 613.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 7364.444, + "new_cases_per_million": 7.725, + "new_cases_smoothed_per_million": 9.706, + "total_deaths_per_million": 64.872, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.363, + "new_tests_smoothed": 7915.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 86.301, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-19", + "total_cases": 69673.0, + "new_cases": 84.0, + "new_cases_smoothed": 95.429, + "total_deaths": 617.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 7373.334, + "new_cases_per_million": 8.89, + "new_cases_smoothed_per_million": 10.099, + "total_deaths_per_million": 65.296, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.378, + "new_tests_smoothed": 8153.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 85.436, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-20", + "total_cases": 69801.0, + "new_cases": 128.0, + "new_cases_smoothed": 99.857, + "total_deaths": 622.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 7386.88, + "new_cases_per_million": 13.546, + "new_cases_smoothed_per_million": 10.568, + "total_deaths_per_million": 65.825, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.408, + "new_tests_smoothed": 8153.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 81.64699999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-21", + "total_cases": 69950.0, + "new_cases": 149.0, + "new_cases_smoothed": 106.714, + "total_deaths": 627.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7402.648, + "new_cases_per_million": 15.768, + "new_cases_smoothed_per_million": 11.293, + "total_deaths_per_million": 66.354, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.423, + "new_tests_smoothed": 8153.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 76.4, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-22", + "total_cases": 70111.0, + "new_cases": 161.0, + "new_cases_smoothed": 114.714, + "total_deaths": 632.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 7419.687, + "new_cases_per_million": 17.038, + "new_cases_smoothed_per_million": 12.14, + "total_deaths_per_million": 66.883, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.438, + "total_tests": 1465555.0, + "total_tests_per_thousand": 155.096, + "new_tests_smoothed": 8153.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 71.072, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-23", + "total_cases": 70285.0, + "new_cases": 174.0, + "new_cases_smoothed": 123.0, + "total_deaths": 637.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 7438.101, + "new_cases_per_million": 18.414, + "new_cases_smoothed_per_million": 13.017, + "total_deaths_per_million": 67.412, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 8520.0, + "total_tests": 1474075.0, + "total_tests_per_thousand": 155.998, + "new_tests_per_thousand": 0.902, + "new_tests_smoothed": 8205.0, + "new_tests_smoothed_per_thousand": 0.868, + "tests_per_case": 66.707, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-24", + "total_cases": 70468.0, + "new_cases": 183.0, + "new_cases_smoothed": 136.0, + "total_deaths": 642.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 7457.467, + "new_cases_per_million": 19.366, + "new_cases_smoothed_per_million": 14.393, + "total_deaths_per_million": 67.941, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.484, + "new_tests_smoothed": 7467.0, + "new_tests_smoothed_per_thousand": 0.79, + "tests_per_case": 54.903999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-08-25", + "total_cases": 70645.0, + "new_cases": 177.0, + "new_cases_smoothed": 150.857, + "total_deaths": 646.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 7476.199, + "new_cases_per_million": 18.732, + "new_cases_smoothed_per_million": 15.965, + "total_deaths_per_million": 68.365, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.499, + "total_tests": 1480047.0, + "total_tests_per_thousand": 156.63, + "new_tests_smoothed": 6729.0, + "new_tests_smoothed_per_thousand": 0.712, + "tests_per_case": 44.605, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-26", + "total_cases": 70727.0, + "new_cases": 82.0, + "new_cases_smoothed": 150.571, + "total_deaths": 652.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7484.876, + "new_cases_per_million": 8.678, + "new_cases_smoothed_per_million": 15.935, + "total_deaths_per_million": 69.0, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 6805.0, + "new_tests_smoothed_per_thousand": 0.72, + "tests_per_case": 45.193999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-27", + "total_cases": 70974.0, + "new_cases": 247.0, + "new_cases_smoothed": 167.571, + "total_deaths": 657.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7511.016, + "new_cases_per_million": 26.139, + "new_cases_smoothed_per_million": 17.734, + "total_deaths_per_million": 69.529, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "total_tests": 1497421.0, + "total_tests_per_thousand": 158.469, + "new_tests_smoothed": 6882.0, + "new_tests_smoothed_per_thousand": 0.728, + "tests_per_case": 41.068999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 71165.0, + "new_cases": 191.0, + "new_cases_smoothed": 173.571, + "total_deaths": 662.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7531.229, + "new_cases_per_million": 20.213, + "new_cases_smoothed_per_million": 18.369, + "total_deaths_per_million": 70.058, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 6785.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 39.091, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 71346.0, + "new_cases": 181.0, + "new_cases_smoothed": 176.429, + "total_deaths": 667.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7550.384, + "new_cases_per_million": 19.155, + "new_cases_smoothed_per_million": 18.671, + "total_deaths_per_million": 70.587, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 6688.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 37.908, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 71523.0, + "new_cases": 177.0, + "new_cases_smoothed": 176.857, + "total_deaths": 671.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7569.115, + "new_cases_per_million": 18.732, + "new_cases_smoothed_per_million": 18.716, + "total_deaths_per_million": 71.01, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 6538.0, + "new_tests_smoothed_per_thousand": 0.692, + "tests_per_case": 36.968, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 71687.0, + "new_cases": 164.0, + "new_cases_smoothed": 174.143, + "total_deaths": 676.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7586.471, + "new_cases_per_million": 17.356, + "new_cases_smoothed_per_million": 18.429, + "total_deaths_per_million": 71.54, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 7180.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 41.231, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 71843.0, + "new_cases": 156.0, + "new_cases_smoothed": 171.143, + "total_deaths": 681.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7602.98, + "new_cases_per_million": 16.509, + "new_cases_smoothed_per_million": 18.112, + "total_deaths_per_million": 72.069, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.529, + "total_tests": 1534792.0, + "total_tests_per_thousand": 162.424, + "new_tests_smoothed": 7821.0, + "new_tests_smoothed_per_thousand": 0.828, + "tests_per_case": 45.699, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 71962.0, + "new_cases": 119.0, + "new_cases_smoothed": 176.429, + "total_deaths": 686.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7615.574, + "new_cases_per_million": 12.593, + "new_cases_smoothed_per_million": 18.671, + "total_deaths_per_million": 72.598, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "new_tests_smoothed": 7961.0, + "new_tests_smoothed_per_thousand": 0.842, + "tests_per_case": 45.123000000000005, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 72141.0, + "new_cases": 179.0, + "new_cases_smoothed": 166.714, + "total_deaths": 691.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7634.517, + "new_cases_per_million": 18.943, + "new_cases_smoothed_per_million": 17.643, + "total_deaths_per_million": 73.127, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 1554129.0, + "total_tests_per_thousand": 164.47, + "new_tests_smoothed": 8101.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 48.592, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 72302.0, + "new_cases": 161.0, + "new_cases_smoothed": 162.429, + "total_deaths": 696.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7651.555, + "new_cases_per_million": 17.038, + "new_cases_smoothed_per_million": 17.189, + "total_deaths_per_million": 73.656, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514 + }, + { + "date": "2020-09-05", + "total_cases": 72485.0, + "new_cases": 183.0, + "new_cases_smoothed": 162.714, + "total_deaths": 701.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7670.922, + "new_cases_per_million": 19.366, + "new_cases_smoothed_per_million": 17.22, + "total_deaths_per_million": 74.185, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.514 + } + ] + }, + "BEL": { + "continent": "Europe", + "location": "Belgium", + "population": 11589616.0, + "population_density": 375.564, + "median_age": 41.8, + "aged_65_older": 18.571, + "aged_70_older": 12.849, + "gdp_per_capita": 42658.576, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 114.898, + "diabetes_prevalence": 4.29, + "female_smokers": 25.1, + "male_smokers": 31.4, + "hospital_beds_per_thousand": 5.64, + "life_expectancy": 81.63, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 82.0, + "total_tests": 82.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.007, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 19.0, + "new_cases": 18.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.639, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 317.0, + "total_tests": 399.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.027, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 38.0, + "new_cases": 19.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.279, + "new_cases_per_million": 1.639, + "new_cases_smoothed_per_million": 0.456, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 538.0, + "total_tests": 937.0, + "total_tests_per_thousand": 0.081, + "new_tests_per_thousand": 0.046, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 72.0, + "new_cases": 34.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.212, + "new_cases_per_million": 2.934, + "new_cases_smoothed_per_million": 0.875, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 701.0, + "total_tests": 1638.0, + "total_tests_per_thousand": 0.141, + "new_tests_per_thousand": 0.06, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-05", + "total_cases": 125.0, + "new_cases": 53.0, + "new_cases_smoothed": 17.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.786, + "new_cases_per_million": 4.573, + "new_cases_smoothed_per_million": 1.528, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 773.0, + "total_tests": 2411.0, + "total_tests_per_thousand": 0.208, + "new_tests_per_thousand": 0.067, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "total_cases": 206.0, + "new_cases": 81.0, + "new_cases_smoothed": 29.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.775, + "new_cases_per_million": 6.989, + "new_cases_smoothed_per_million": 2.527, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1119.0, + "total_tests": 3530.0, + "total_tests_per_thousand": 0.305, + "new_tests_per_thousand": 0.097, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_cases": 316.0, + "new_cases": 110.0, + "new_cases_smoothed": 45.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.266, + "new_cases_per_million": 9.491, + "new_cases_smoothed_per_million": 3.883, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 475.0, + "total_tests": 4005.0, + "total_tests_per_thousand": 0.346, + "new_tests_per_thousand": 0.041, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "total_cases": 343.0, + "new_cases": 27.0, + "new_cases_smoothed": 48.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.595, + "new_cases_per_million": 2.33, + "new_cases_smoothed_per_million": 4.216, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 483.0, + "total_tests": 4488.0, + "total_tests_per_thousand": 0.387, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 629.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 12.874, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "total_cases": 408.0, + "new_cases": 65.0, + "new_cases_smoothed": 55.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.204, + "new_cases_per_million": 5.608, + "new_cases_smoothed_per_million": 4.795, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 610.0, + "total_tests": 5098.0, + "total_tests_per_thousand": 0.44, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 671.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 12.075, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "total_cases": 502.0, + "new_cases": 94.0, + "new_cases_smoothed": 66.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.315, + "new_cases_per_million": 8.111, + "new_cases_smoothed_per_million": 5.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 804.0, + "total_tests": 5902.0, + "total_tests_per_thousand": 0.509, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 709.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 10.696, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "total_cases": 601.0, + "new_cases": 99.0, + "new_cases_smoothed": 75.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.857, + "new_cases_per_million": 8.542, + "new_cases_smoothed_per_million": 6.521, + "total_deaths_per_million": 0.086, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1108.0, + "total_tests": 7010.0, + "total_tests_per_thousand": 0.605, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 10.149, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_cases": 775.0, + "new_cases": 174.0, + "new_cases_smoothed": 92.857, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 66.87, + "new_cases_per_million": 15.013, + "new_cases_smoothed_per_million": 8.012, + "total_deaths_per_million": 0.345, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 1438.0, + "total_tests": 8448.0, + "total_tests_per_thousand": 0.729, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 862.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 9.283, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "total_cases": 1025.0, + "new_cases": 250.0, + "new_cases_smoothed": 117.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 88.441, + "new_cases_per_million": 21.571, + "new_cases_smoothed_per_million": 10.095, + "total_deaths_per_million": 0.431, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 2524.0, + "total_tests": 10972.0, + "total_tests_per_thousand": 0.947, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 1063.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 9.085, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 23.15 + }, + { + "date": "2020-03-14", + "total_cases": 1363.0, + "new_cases": 338.0, + "new_cases_smoothed": 149.571, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 117.605, + "new_cases_per_million": 29.164, + "new_cases_smoothed_per_million": 12.906, + "total_deaths_per_million": 0.69, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2171.0, + "total_tests": 13143.0, + "total_tests_per_thousand": 1.134, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 1305.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 8.725, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-15", + "total_cases": 1542.0, + "new_cases": 179.0, + "new_cases_smoothed": 171.286, + "total_deaths": 13.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 133.05, + "new_cases_per_million": 15.445, + "new_cases_smoothed_per_million": 14.779, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 1269.0, + "total_tests": 14412.0, + "total_tests_per_thousand": 1.244, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1418.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 8.279, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-16", + "total_cases": 1756.0, + "new_cases": 214.0, + "new_cases_smoothed": 192.571, + "total_deaths": 19.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 151.515, + "new_cases_per_million": 18.465, + "new_cases_smoothed_per_million": 16.616, + "total_deaths_per_million": 1.639, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 1892.0, + "total_tests": 16304.0, + "total_tests_per_thousand": 1.407, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1601.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 8.314, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 2143.0, + "new_cases": 387.0, + "new_cases_smoothed": 234.429, + "total_deaths": 30.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 184.907, + "new_cases_per_million": 33.392, + "new_cases_smoothed_per_million": 20.227, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 2255.0, + "total_tests": 18559.0, + "total_tests_per_thousand": 1.601, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 1808.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 7.712000000000001, + "positive_rate": 0.13, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-18", + "total_cases": 2565.0, + "new_cases": 422.0, + "new_cases_smoothed": 280.571, + "total_deaths": 40.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 221.319, + "new_cases_per_million": 36.412, + "new_cases_smoothed_per_million": 24.209, + "total_deaths_per_million": 3.451, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 2714.0, + "total_tests": 21273.0, + "total_tests_per_thousand": 1.836, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 7.263999999999999, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-19", + "total_cases": 3099.0, + "new_cases": 534.0, + "new_cases_smoothed": 332.0, + "total_deaths": 62.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 267.395, + "new_cases_per_million": 46.076, + "new_cases_smoothed_per_million": 28.646, + "total_deaths_per_million": 5.35, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 0.715, + "new_tests": 3395.0, + "total_tests": 24668.0, + "total_tests_per_thousand": 2.128, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 2317.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 6.979, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-20", + "total_cases": 3812.0, + "new_cases": 713.0, + "new_cases_smoothed": 398.143, + "total_deaths": 95.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 328.915, + "new_cases_per_million": 61.521, + "new_cases_smoothed_per_million": 34.353, + "total_deaths_per_million": 8.197, + "new_deaths_per_million": 2.847, + "new_deaths_smoothed_per_million": 1.109, + "new_tests": 3120.0, + "total_tests": 27788.0, + "total_tests_per_thousand": 2.398, + "new_tests_per_thousand": 0.269, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 6.0329999999999995, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 4475.0, + "new_cases": 663.0, + "new_cases_smoothed": 444.571, + "total_deaths": 130.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 386.122, + "new_cases_per_million": 57.206, + "new_cases_smoothed_per_million": 38.359, + "total_deaths_per_million": 11.217, + "new_deaths_per_million": 3.02, + "new_deaths_smoothed_per_million": 1.504, + "new_tests": 2276.0, + "total_tests": 30064.0, + "total_tests_per_thousand": 2.594, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 2417.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 5.437, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 4945.0, + "new_cases": 470.0, + "new_cases_smoothed": 486.143, + "total_deaths": 170.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 426.675, + "new_cases_per_million": 40.554, + "new_cases_smoothed_per_million": 41.946, + "total_deaths_per_million": 14.668, + "new_deaths_per_million": 3.451, + "new_deaths_smoothed_per_million": 1.935, + "new_tests": 1414.0, + "total_tests": 31478.0, + "total_tests_per_thousand": 2.716, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 2438.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 5.015, + "positive_rate": 0.19899999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 5431.0, + "new_cases": 486.0, + "new_cases_smoothed": 525.0, + "total_deaths": 217.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 468.609, + "new_cases_per_million": 41.934, + "new_cases_smoothed_per_million": 45.299, + "total_deaths_per_million": 18.724, + "new_deaths_per_million": 4.055, + "new_deaths_smoothed_per_million": 2.441, + "new_tests": 3322.0, + "total_tests": 34800.0, + "total_tests_per_thousand": 3.003, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 2642.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 5.032, + "positive_rate": 0.19899999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 6759.0, + "new_cases": 1328.0, + "new_cases_smoothed": 659.429, + "total_deaths": 295.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 583.194, + "new_cases_per_million": 114.585, + "new_cases_smoothed_per_million": 56.898, + "total_deaths_per_million": 25.454, + "new_deaths_per_million": 6.73, + "new_deaths_smoothed_per_million": 3.266, + "new_tests": 3975.0, + "total_tests": 38775.0, + "total_tests_per_thousand": 3.346, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 2888.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 4.38, + "positive_rate": 0.228, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 7954.0, + "new_cases": 1195.0, + "new_cases_smoothed": 769.857, + "total_deaths": 371.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 47.286, + "total_cases_per_million": 686.304, + "new_cases_per_million": 103.11, + "new_cases_smoothed_per_million": 66.426, + "total_deaths_per_million": 32.011, + "new_deaths_per_million": 6.558, + "new_deaths_smoothed_per_million": 4.08, + "new_tests": 4282.0, + "total_tests": 43057.0, + "total_tests_per_thousand": 3.715, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 3112.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 4.042, + "positive_rate": 0.247, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 9153.0, + "new_cases": 1199.0, + "new_cases_smoothed": 864.857, + "total_deaths": 478.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 59.429, + "total_cases_per_million": 789.759, + "new_cases_per_million": 103.455, + "new_cases_smoothed_per_million": 74.623, + "total_deaths_per_million": 41.244, + "new_deaths_per_million": 9.232, + "new_deaths_smoothed_per_million": 5.128, + "new_tests": 4363.0, + "total_tests": 47420.0, + "total_tests_per_thousand": 4.092, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 3250.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 3.758, + "positive_rate": 0.266, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 10516.0, + "new_cases": 1363.0, + "new_cases_smoothed": 957.714, + "total_deaths": 580.0, + "new_deaths": 102.0, + "new_deaths_smoothed": 69.286, + "total_cases_per_million": 907.364, + "new_cases_per_million": 117.605, + "new_cases_smoothed_per_million": 82.636, + "total_deaths_per_million": 50.045, + "new_deaths_per_million": 8.801, + "new_deaths_smoothed_per_million": 5.978, + "new_tests": 4930.0, + "total_tests": 52350.0, + "total_tests_per_thousand": 4.517, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 3509.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 3.6639999999999997, + "positive_rate": 0.273, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 12035.0, + "new_cases": 1519.0, + "new_cases_smoothed": 1080.0, + "total_deaths": 708.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 82.571, + "total_cases_per_million": 1038.43, + "new_cases_per_million": 131.066, + "new_cases_smoothed_per_million": 93.187, + "total_deaths_per_million": 61.089, + "new_deaths_per_million": 11.044, + "new_deaths_smoothed_per_million": 7.125, + "new_tests": 3850.0, + "total_tests": 56200.0, + "total_tests_per_thousand": 4.849, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 3734.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 3.457, + "positive_rate": 0.289, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 12879.0, + "new_cases": 844.0, + "new_cases_smoothed": 1133.429, + "total_deaths": 849.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 97.0, + "total_cases_per_million": 1111.253, + "new_cases_per_million": 72.824, + "new_cases_smoothed_per_million": 97.797, + "total_deaths_per_million": 73.255, + "new_deaths_per_million": 12.166, + "new_deaths_smoothed_per_million": 8.37, + "new_tests": 2419.0, + "total_tests": 58619.0, + "total_tests_per_thousand": 5.058, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 3877.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 3.4210000000000003, + "positive_rate": 0.292, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-30", + "total_cases": 13562.0, + "new_cases": 683.0, + "new_cases_smoothed": 1161.571, + "total_deaths": 998.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 111.571, + "total_cases_per_million": 1170.185, + "new_cases_per_million": 58.932, + "new_cases_smoothed_per_million": 100.225, + "total_deaths_per_million": 86.112, + "new_deaths_per_million": 12.856, + "new_deaths_smoothed_per_million": 9.627, + "new_tests": 4101.0, + "total_tests": 62720.0, + "total_tests_per_thousand": 5.412, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 3989.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 3.4339999999999997, + "positive_rate": 0.29100000000000004, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 15300.0, + "new_cases": 1738.0, + "new_cases_smoothed": 1220.143, + "total_deaths": 1168.0, + "new_deaths": 170.0, + "new_deaths_smoothed": 124.714, + "total_cases_per_million": 1320.147, + "new_cases_per_million": 149.962, + "new_cases_smoothed_per_million": 105.279, + "total_deaths_per_million": 100.78, + "new_deaths_per_million": 14.668, + "new_deaths_smoothed_per_million": 10.761, + "new_tests": 6432.0, + "total_tests": 69152.0, + "total_tests_per_thousand": 5.967, + "new_tests_per_thousand": 0.555, + "new_tests_smoothed": 4340.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 3.557, + "positive_rate": 0.281, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-01", + "total_cases": 16981.0, + "new_cases": 1681.0, + "new_cases_smoothed": 1289.571, + "total_deaths": 1376.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 143.571, + "total_cases_per_million": 1465.191, + "new_cases_per_million": 145.044, + "new_cases_smoothed_per_million": 111.27, + "total_deaths_per_million": 118.727, + "new_deaths_per_million": 17.947, + "new_deaths_smoothed_per_million": 12.388, + "new_tests": 5891.0, + "total_tests": 75043.0, + "total_tests_per_thousand": 6.475, + "new_tests_per_thousand": 0.508, + "new_tests_smoothed": 4569.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 3.543, + "positive_rate": 0.282, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-02", + "total_cases": 18497.0, + "new_cases": 1516.0, + "new_cases_smoothed": 1334.857, + "total_deaths": 1608.0, + "new_deaths": 232.0, + "new_deaths_smoothed": 161.429, + "total_cases_per_million": 1595.998, + "new_cases_per_million": 130.807, + "new_cases_smoothed_per_million": 115.177, + "total_deaths_per_million": 138.745, + "new_deaths_per_million": 20.018, + "new_deaths_smoothed_per_million": 13.929, + "new_tests": 6088.0, + "total_tests": 81131.0, + "total_tests_per_thousand": 7.0, + "new_tests_per_thousand": 0.525, + "new_tests_smoothed": 4816.0, + "new_tests_smoothed_per_thousand": 0.416, + "tests_per_case": 3.608, + "positive_rate": 0.27699999999999997, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-03", + "total_cases": 19976.0, + "new_cases": 1479.0, + "new_cases_smoothed": 1351.429, + "total_deaths": 1827.0, + "new_deaths": 219.0, + "new_deaths_smoothed": 178.143, + "total_cases_per_million": 1723.612, + "new_cases_per_million": 127.614, + "new_cases_smoothed_per_million": 116.607, + "total_deaths_per_million": 157.641, + "new_deaths_per_million": 18.896, + "new_deaths_smoothed_per_million": 15.371, + "new_tests": 6718.0, + "total_tests": 87849.0, + "total_tests_per_thousand": 7.58, + "new_tests_per_thousand": 0.58, + "new_tests_smoothed": 5071.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 3.752, + "positive_rate": 0.267, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-04", + "total_cases": 21670.0, + "new_cases": 1694.0, + "new_cases_smoothed": 1376.429, + "total_deaths": 2063.0, + "new_deaths": 236.0, + "new_deaths_smoothed": 193.571, + "total_cases_per_million": 1869.777, + "new_cases_per_million": 146.165, + "new_cases_smoothed_per_million": 118.764, + "total_deaths_per_million": 178.004, + "new_deaths_per_million": 20.363, + "new_deaths_smoothed_per_million": 16.702, + "new_tests": 5368.0, + "total_tests": 93217.0, + "total_tests_per_thousand": 8.043, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 5288.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 3.842, + "positive_rate": 0.26, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-05", + "total_cases": 22592.0, + "new_cases": 922.0, + "new_cases_smoothed": 1387.571, + "total_deaths": 2333.0, + "new_deaths": 270.0, + "new_deaths_smoothed": 212.0, + "total_cases_per_million": 1949.331, + "new_cases_per_million": 79.554, + "new_cases_smoothed_per_million": 119.725, + "total_deaths_per_million": 201.301, + "new_deaths_per_million": 23.297, + "new_deaths_smoothed_per_million": 18.292, + "new_tests": 3828.0, + "total_tests": 97045.0, + "total_tests_per_thousand": 8.373, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 5489.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 3.9560000000000004, + "positive_rate": 0.253, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-06", + "total_cases": 23257.0, + "new_cases": 665.0, + "new_cases_smoothed": 1385.0, + "total_deaths": 2579.0, + "new_deaths": 246.0, + "new_deaths_smoothed": 225.857, + "total_cases_per_million": 2006.71, + "new_cases_per_million": 57.379, + "new_cases_smoothed_per_million": 119.504, + "total_deaths_per_million": 222.527, + "new_deaths_per_million": 21.226, + "new_deaths_smoothed_per_million": 19.488, + "new_tests": 5840.0, + "total_tests": 102885.0, + "total_tests_per_thousand": 8.877, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 5738.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 4.143, + "positive_rate": 0.24100000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-07", + "total_cases": 25191.0, + "new_cases": 1934.0, + "new_cases_smoothed": 1413.0, + "total_deaths": 2836.0, + "new_deaths": 257.0, + "new_deaths_smoothed": 238.286, + "total_cases_per_million": 2173.584, + "new_cases_per_million": 166.874, + "new_cases_smoothed_per_million": 121.919, + "total_deaths_per_million": 244.702, + "new_deaths_per_million": 22.175, + "new_deaths_smoothed_per_million": 20.56, + "new_tests": 7509.0, + "total_tests": 110394.0, + "total_tests_per_thousand": 9.525, + "new_tests_per_thousand": 0.648, + "new_tests_smoothed": 5892.0, + "new_tests_smoothed_per_thousand": 0.508, + "tests_per_case": 4.17, + "positive_rate": 0.24, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-08", + "total_cases": 26706.0, + "new_cases": 1515.0, + "new_cases_smoothed": 1389.286, + "total_deaths": 3113.0, + "new_deaths": 277.0, + "new_deaths_smoothed": 248.143, + "total_cases_per_million": 2304.304, + "new_cases_per_million": 130.72, + "new_cases_smoothed_per_million": 119.873, + "total_deaths_per_million": 268.603, + "new_deaths_per_million": 23.901, + "new_deaths_smoothed_per_million": 21.411, + "new_tests": 7972.0, + "total_tests": 118366.0, + "total_tests_per_thousand": 10.213, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 6189.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 4.455, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-09", + "total_cases": 28304.0, + "new_cases": 1598.0, + "new_cases_smoothed": 1401.0, + "total_deaths": 3434.0, + "new_deaths": 321.0, + "new_deaths_smoothed": 260.857, + "total_cases_per_million": 2442.186, + "new_cases_per_million": 137.882, + "new_cases_smoothed_per_million": 120.884, + "total_deaths_per_million": 296.3, + "new_deaths_per_million": 27.697, + "new_deaths_smoothed_per_million": 22.508, + "new_tests": 8225.0, + "total_tests": 126591.0, + "total_tests_per_thousand": 10.923, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 6494.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 4.635, + "positive_rate": 0.21600000000000003, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-10", + "total_cases": 30543.0, + "new_cases": 2239.0, + "new_cases_smoothed": 1509.571, + "total_deaths": 3705.0, + "new_deaths": 271.0, + "new_deaths_smoothed": 268.286, + "total_cases_per_million": 2635.376, + "new_cases_per_million": 193.19, + "new_cases_smoothed_per_million": 130.252, + "total_deaths_per_million": 319.683, + "new_deaths_per_million": 23.383, + "new_deaths_smoothed_per_million": 23.149, + "new_tests": 8539.0, + "total_tests": 135130.0, + "total_tests_per_thousand": 11.66, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 6754.0, + "new_tests_smoothed_per_thousand": 0.583, + "tests_per_case": 4.474, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-11", + "total_cases": 32879.0, + "new_cases": 2336.0, + "new_cases_smoothed": 1601.286, + "total_deaths": 4007.0, + "new_deaths": 302.0, + "new_deaths_smoothed": 277.714, + "total_cases_per_million": 2836.936, + "new_cases_per_million": 201.56, + "new_cases_smoothed_per_million": 138.166, + "total_deaths_per_million": 345.741, + "new_deaths_per_million": 26.058, + "new_deaths_smoothed_per_million": 23.962, + "new_tests": 8153.0, + "total_tests": 143283.0, + "total_tests_per_thousand": 12.363, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 7152.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 4.466, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-12", + "total_cases": 33908.0, + "new_cases": 1029.0, + "new_cases_smoothed": 1616.571, + "total_deaths": 4292.0, + "new_deaths": 285.0, + "new_deaths_smoothed": 279.857, + "total_cases_per_million": 2925.722, + "new_cases_per_million": 88.786, + "new_cases_smoothed_per_million": 139.484, + "total_deaths_per_million": 370.332, + "new_deaths_per_million": 24.591, + "new_deaths_smoothed_per_million": 24.147, + "new_tests": 7290.0, + "total_tests": 150573.0, + "total_tests_per_thousand": 12.992, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 7647.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 4.73, + "positive_rate": 0.21100000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-13", + "total_cases": 34432.0, + "new_cases": 524.0, + "new_cases_smoothed": 1596.429, + "total_deaths": 4557.0, + "new_deaths": 265.0, + "new_deaths_smoothed": 282.571, + "total_cases_per_million": 2970.935, + "new_cases_per_million": 45.213, + "new_cases_smoothed_per_million": 137.746, + "total_deaths_per_million": 393.197, + "new_deaths_per_million": 22.865, + "new_deaths_smoothed_per_million": 24.381, + "new_tests": 6701.0, + "total_tests": 157274.0, + "total_tests_per_thousand": 13.57, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 7770.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 4.867, + "positive_rate": 0.205, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-14", + "total_cases": 34969.0, + "new_cases": 537.0, + "new_cases_smoothed": 1396.857, + "total_deaths": 4834.0, + "new_deaths": 277.0, + "new_deaths_smoothed": 285.429, + "total_cases_per_million": 3017.27, + "new_cases_per_million": 46.335, + "new_cases_smoothed_per_million": 120.527, + "total_deaths_per_million": 417.098, + "new_deaths_per_million": 23.901, + "new_deaths_smoothed_per_million": 24.628, + "new_tests": 8164.0, + "total_tests": 165438.0, + "total_tests_per_thousand": 14.275, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 7863.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 5.629, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-15", + "total_cases": 36529.0, + "new_cases": 1560.0, + "new_cases_smoothed": 1403.286, + "total_deaths": 5095.0, + "new_deaths": 261.0, + "new_deaths_smoothed": 283.143, + "total_cases_per_million": 3151.873, + "new_cases_per_million": 134.603, + "new_cases_smoothed_per_million": 121.081, + "total_deaths_per_million": 439.618, + "new_deaths_per_million": 22.52, + "new_deaths_smoothed_per_million": 24.431, + "new_tests": 10984.0, + "total_tests": 176422.0, + "total_tests_per_thousand": 15.222, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 8294.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 5.91, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-16", + "total_cases": 38162.0, + "new_cases": 1633.0, + "new_cases_smoothed": 1408.286, + "total_deaths": 5375.0, + "new_deaths": 280.0, + "new_deaths_smoothed": 277.286, + "total_cases_per_million": 3292.775, + "new_cases_per_million": 140.902, + "new_cases_smoothed_per_million": 121.513, + "total_deaths_per_million": 463.777, + "new_deaths_per_million": 24.16, + "new_deaths_smoothed_per_million": 23.925, + "new_tests": 10747.0, + "total_tests": 187169.0, + "total_tests_per_thousand": 16.15, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 8654.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 6.145, + "positive_rate": 0.163, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-17", + "total_cases": 39836.0, + "new_cases": 1674.0, + "new_cases_smoothed": 1327.571, + "total_deaths": 5621.0, + "new_deaths": 246.0, + "new_deaths_smoothed": 273.714, + "total_cases_per_million": 3437.215, + "new_cases_per_million": 144.44, + "new_cases_smoothed_per_million": 114.548, + "total_deaths_per_million": 485.003, + "new_deaths_per_million": 21.226, + "new_deaths_smoothed_per_million": 23.617, + "new_tests": 11315.0, + "total_tests": 198484.0, + "total_tests_per_thousand": 17.126, + "new_tests_per_thousand": 0.976, + "new_tests_smoothed": 9051.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 6.818, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-18", + "total_cases": 41230.0, + "new_cases": 1394.0, + "new_cases_smoothed": 1193.0, + "total_deaths": 5826.0, + "new_deaths": 205.0, + "new_deaths_smoothed": 259.857, + "total_cases_per_million": 3557.495, + "new_cases_per_million": 120.28, + "new_cases_smoothed_per_million": 102.937, + "total_deaths_per_million": 502.691, + "new_deaths_per_million": 17.688, + "new_deaths_smoothed_per_million": 22.422, + "new_tests": 10369.0, + "total_tests": 208853.0, + "total_tests_per_thousand": 18.021, + "new_tests_per_thousand": 0.895, + "new_tests_smoothed": 9367.0, + "new_tests_smoothed_per_thousand": 0.808, + "tests_per_case": 7.852, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-19", + "total_cases": 41952.0, + "new_cases": 722.0, + "new_cases_smoothed": 1149.143, + "total_deaths": 6034.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 248.857, + "total_cases_per_million": 3619.792, + "new_cases_per_million": 62.297, + "new_cases_smoothed_per_million": 99.153, + "total_deaths_per_million": 520.638, + "new_deaths_per_million": 17.947, + "new_deaths_smoothed_per_million": 21.472, + "new_tests": 7208.0, + "total_tests": 216061.0, + "total_tests_per_thousand": 18.643, + "new_tests_per_thousand": 0.622, + "new_tests_smoothed": 9355.0, + "new_tests_smoothed_per_thousand": 0.807, + "tests_per_case": 8.141, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-20", + "total_cases": 42395.0, + "new_cases": 443.0, + "new_cases_smoothed": 1137.571, + "total_deaths": 6224.0, + "new_deaths": 190.0, + "new_deaths_smoothed": 238.143, + "total_cases_per_million": 3658.016, + "new_cases_per_million": 38.224, + "new_cases_smoothed_per_million": 98.154, + "total_deaths_per_million": 537.032, + "new_deaths_per_million": 16.394, + "new_deaths_smoothed_per_million": 20.548, + "new_tests": 11920.0, + "total_tests": 227981.0, + "total_tests_per_thousand": 19.671, + "new_tests_per_thousand": 1.029, + "new_tests_smoothed": 10101.0, + "new_tests_smoothed_per_thousand": 0.872, + "tests_per_case": 8.879, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-21", + "total_cases": 43671.0, + "new_cases": 1276.0, + "new_cases_smoothed": 1243.143, + "total_deaths": 6430.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 228.0, + "total_cases_per_million": 3768.114, + "new_cases_per_million": 110.099, + "new_cases_smoothed_per_million": 107.264, + "total_deaths_per_million": 554.807, + "new_deaths_per_million": 17.775, + "new_deaths_smoothed_per_million": 19.673, + "new_tests": 10879.0, + "total_tests": 238860.0, + "total_tests_per_thousand": 20.61, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 10489.0, + "new_tests_smoothed_per_thousand": 0.905, + "tests_per_case": 8.437000000000001, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-22", + "total_cases": 44942.0, + "new_cases": 1271.0, + "new_cases_smoothed": 1201.857, + "total_deaths": 6633.0, + "new_deaths": 203.0, + "new_deaths_smoothed": 219.714, + "total_cases_per_million": 3877.782, + "new_cases_per_million": 109.667, + "new_cases_smoothed_per_million": 103.701, + "total_deaths_per_million": 572.323, + "new_deaths_per_million": 17.516, + "new_deaths_smoothed_per_million": 18.958, + "new_tests": 15603.0, + "total_tests": 254463.0, + "total_tests_per_thousand": 21.956, + "new_tests_per_thousand": 1.346, + "new_tests_smoothed": 11149.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 9.276, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-23", + "total_cases": 45719.0, + "new_cases": 777.0, + "new_cases_smoothed": 1079.571, + "total_deaths": 6814.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 205.571, + "total_cases_per_million": 3944.824, + "new_cases_per_million": 67.043, + "new_cases_smoothed_per_million": 93.15, + "total_deaths_per_million": 587.94, + "new_deaths_per_million": 15.617, + "new_deaths_smoothed_per_million": 17.738, + "new_tests": 17389.0, + "total_tests": 271852.0, + "total_tests_per_thousand": 23.457, + "new_tests_per_thousand": 1.5, + "new_tests_smoothed": 12098.0, + "new_tests_smoothed_per_thousand": 1.044, + "tests_per_case": 11.206, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-24", + "total_cases": 46695.0, + "new_cases": 976.0, + "new_cases_smoothed": 979.857, + "total_deaths": 6970.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 192.714, + "total_cases_per_million": 4029.038, + "new_cases_per_million": 84.213, + "new_cases_smoothed_per_million": 84.546, + "total_deaths_per_million": 601.4, + "new_deaths_per_million": 13.46, + "new_deaths_smoothed_per_million": 16.628, + "new_tests": 19083.0, + "total_tests": 290935.0, + "total_tests_per_thousand": 25.103, + "new_tests_per_thousand": 1.647, + "new_tests_smoothed": 13207.0, + "new_tests_smoothed_per_thousand": 1.14, + "tests_per_case": 13.478, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-25", + "total_cases": 47506.0, + "new_cases": 811.0, + "new_cases_smoothed": 896.571, + "total_deaths": 7125.0, + "new_deaths": 155.0, + "new_deaths_smoothed": 185.571, + "total_cases_per_million": 4099.014, + "new_cases_per_million": 69.976, + "new_cases_smoothed_per_million": 77.36, + "total_deaths_per_million": 614.774, + "new_deaths_per_million": 13.374, + "new_deaths_smoothed_per_million": 16.012, + "new_tests": 17212.0, + "total_tests": 308147.0, + "total_tests_per_thousand": 26.588, + "new_tests_per_thousand": 1.485, + "new_tests_smoothed": 14185.0, + "new_tests_smoothed_per_thousand": 1.224, + "tests_per_case": 15.821, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-26", + "total_cases": 47894.0, + "new_cases": 388.0, + "new_cases_smoothed": 848.857, + "total_deaths": 7267.0, + "new_deaths": 142.0, + "new_deaths_smoothed": 176.143, + "total_cases_per_million": 4132.492, + "new_cases_per_million": 33.478, + "new_cases_smoothed_per_million": 73.243, + "total_deaths_per_million": 627.027, + "new_deaths_per_million": 12.252, + "new_deaths_smoothed_per_million": 15.198, + "new_tests": 13889.0, + "total_tests": 322036.0, + "total_tests_per_thousand": 27.787, + "new_tests_per_thousand": 1.198, + "new_tests_smoothed": 15139.0, + "new_tests_smoothed_per_thousand": 1.306, + "tests_per_case": 17.835, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-27", + "total_cases": 48099.0, + "new_cases": 205.0, + "new_cases_smoothed": 814.857, + "total_deaths": 7421.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 171.0, + "total_cases_per_million": 4150.181, + "new_cases_per_million": 17.688, + "new_cases_smoothed_per_million": 70.309, + "total_deaths_per_million": 640.315, + "new_deaths_per_million": 13.288, + "new_deaths_smoothed_per_million": 14.755, + "new_tests": 17501.0, + "total_tests": 339537.0, + "total_tests_per_thousand": 29.297, + "new_tests_per_thousand": 1.51, + "new_tests_smoothed": 15937.0, + "new_tests_smoothed_per_thousand": 1.375, + "tests_per_case": 19.558, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-28", + "total_cases": 48854.0, + "new_cases": 755.0, + "new_cases_smoothed": 740.429, + "total_deaths": 7556.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 160.857, + "total_cases_per_million": 4215.325, + "new_cases_per_million": 65.145, + "new_cases_smoothed_per_million": 63.887, + "total_deaths_per_million": 651.963, + "new_deaths_per_million": 11.648, + "new_deaths_smoothed_per_million": 13.879, + "new_tests": 20401.0, + "total_tests": 359938.0, + "total_tests_per_thousand": 31.057, + "new_tests_per_thousand": 1.76, + "new_tests_smoothed": 17297.0, + "new_tests_smoothed_per_thousand": 1.492, + "tests_per_case": 23.361, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-29", + "total_cases": 49423.0, + "new_cases": 569.0, + "new_cases_smoothed": 640.143, + "total_deaths": 7666.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 147.571, + "total_cases_per_million": 4264.421, + "new_cases_per_million": 49.096, + "new_cases_smoothed_per_million": 55.234, + "total_deaths_per_million": 661.454, + "new_deaths_per_million": 9.491, + "new_deaths_smoothed_per_million": 12.733, + "new_tests": 22684.0, + "total_tests": 382622.0, + "total_tests_per_thousand": 33.014, + "new_tests_per_thousand": 1.957, + "new_tests_smoothed": 18308.0, + "new_tests_smoothed_per_thousand": 1.58, + "tests_per_case": 28.6, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-30", + "total_cases": 49945.0, + "new_cases": 522.0, + "new_cases_smoothed": 603.714, + "total_deaths": 7773.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 137.0, + "total_cases_per_million": 4309.461, + "new_cases_per_million": 45.04, + "new_cases_smoothed_per_million": 52.091, + "total_deaths_per_million": 670.687, + "new_deaths_per_million": 9.232, + "new_deaths_smoothed_per_million": 11.821, + "new_tests": 24895.0, + "total_tests": 407517.0, + "total_tests_per_thousand": 35.162, + "new_tests_per_thousand": 2.148, + "new_tests_smoothed": 19381.0, + "new_tests_smoothed_per_thousand": 1.672, + "tests_per_case": 32.103, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-01", + "total_cases": 50531.0, + "new_cases": 586.0, + "new_cases_smoothed": 548.0, + "total_deaths": 7860.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 127.143, + "total_cases_per_million": 4360.024, + "new_cases_per_million": 50.563, + "new_cases_smoothed_per_million": 47.284, + "total_deaths_per_million": 678.193, + "new_deaths_per_million": 7.507, + "new_deaths_smoothed_per_million": 10.97, + "new_tests": 23667.0, + "total_tests": 431184.0, + "total_tests_per_thousand": 37.204, + "new_tests_per_thousand": 2.042, + "new_tests_smoothed": 20036.0, + "new_tests_smoothed_per_thousand": 1.729, + "tests_per_case": 36.562, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-02", + "total_cases": 50768.0, + "new_cases": 237.0, + "new_cases_smoothed": 466.0, + "total_deaths": 7953.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 118.286, + "total_cases_per_million": 4380.473, + "new_cases_per_million": 20.449, + "new_cases_smoothed_per_million": 40.208, + "total_deaths_per_million": 686.218, + "new_deaths_per_million": 8.024, + "new_deaths_smoothed_per_million": 10.206, + "new_tests": 16562.0, + "total_tests": 447746.0, + "total_tests_per_thousand": 38.633, + "new_tests_per_thousand": 1.429, + "new_tests_smoothed": 19943.0, + "new_tests_smoothed_per_thousand": 1.721, + "tests_per_case": 42.79600000000001, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-03", + "total_cases": 51054.0, + "new_cases": 286.0, + "new_cases_smoothed": 451.429, + "total_deaths": 8028.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 108.714, + "total_cases_per_million": 4405.15, + "new_cases_per_million": 24.677, + "new_cases_smoothed_per_million": 38.951, + "total_deaths_per_million": 692.689, + "new_deaths_per_million": 6.471, + "new_deaths_smoothed_per_million": 9.38, + "new_tests": 13444.0, + "total_tests": 461190.0, + "total_tests_per_thousand": 39.793, + "new_tests_per_thousand": 1.16, + "new_tests_smoothed": 19879.0, + "new_tests_smoothed_per_thousand": 1.715, + "tests_per_case": 44.036, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-04", + "total_cases": 51194.0, + "new_cases": 140.0, + "new_cases_smoothed": 442.143, + "total_deaths": 8122.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 100.143, + "total_cases_per_million": 4417.23, + "new_cases_per_million": 12.08, + "new_cases_smoothed_per_million": 38.15, + "total_deaths_per_million": 700.8, + "new_deaths_per_million": 8.111, + "new_deaths_smoothed_per_million": 8.641, + "new_tests": 23251.0, + "total_tests": 484441.0, + "total_tests_per_thousand": 41.8, + "new_tests_per_thousand": 2.006, + "new_tests_smoothed": 20701.0, + "new_tests_smoothed_per_thousand": 1.786, + "tests_per_case": 46.82, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-05", + "total_cases": 51864.0, + "new_cases": 670.0, + "new_cases_smoothed": 430.0, + "total_deaths": 8217.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 94.429, + "total_cases_per_million": 4475.04, + "new_cases_per_million": 57.81, + "new_cases_smoothed_per_million": 37.102, + "total_deaths_per_million": 708.997, + "new_deaths_per_million": 8.197, + "new_deaths_smoothed_per_million": 8.148, + "new_tests": 21532.0, + "total_tests": 505973.0, + "total_tests_per_thousand": 43.657, + "new_tests_per_thousand": 1.858, + "new_tests_smoothed": 20862.0, + "new_tests_smoothed_per_thousand": 1.8, + "tests_per_case": 48.516000000000005, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-06", + "total_cases": 52410.0, + "new_cases": 546.0, + "new_cases_smoothed": 426.714, + "total_deaths": 8298.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 90.286, + "total_cases_per_million": 4522.152, + "new_cases_per_million": 47.111, + "new_cases_smoothed_per_million": 36.819, + "total_deaths_per_million": 715.986, + "new_deaths_per_million": 6.989, + "new_deaths_smoothed_per_million": 7.79, + "new_tests": 20794.0, + "total_tests": 526767.0, + "total_tests_per_thousand": 45.452, + "new_tests_per_thousand": 1.794, + "new_tests_smoothed": 20592.0, + "new_tests_smoothed_per_thousand": 1.777, + "tests_per_case": 48.257, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-07", + "total_cases": 52962.0, + "new_cases": 552.0, + "new_cases_smoothed": 431.0, + "total_deaths": 8374.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 85.857, + "total_cases_per_million": 4569.78, + "new_cases_per_million": 47.629, + "new_cases_smoothed_per_million": 37.188, + "total_deaths_per_million": 722.543, + "new_deaths_per_million": 6.558, + "new_deaths_smoothed_per_million": 7.408, + "new_tests": 22074.0, + "total_tests": 548841.0, + "total_tests_per_thousand": 47.356, + "new_tests_per_thousand": 1.905, + "new_tests_smoothed": 20189.0, + "new_tests_smoothed_per_thousand": 1.742, + "tests_per_case": 46.842, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-08", + "total_cases": 53404.0, + "new_cases": 442.0, + "new_cases_smoothed": 410.429, + "total_deaths": 8445.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 83.571, + "total_cases_per_million": 4607.918, + "new_cases_per_million": 38.138, + "new_cases_smoothed_per_million": 35.413, + "total_deaths_per_million": 728.67, + "new_deaths_per_million": 6.126, + "new_deaths_smoothed_per_million": 7.211, + "new_tests": 25915.0, + "total_tests": 574756.0, + "total_tests_per_thousand": 49.592, + "new_tests_per_thousand": 2.236, + "new_tests_smoothed": 20510.0, + "new_tests_smoothed_per_thousand": 1.77, + "tests_per_case": 49.972, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-09", + "total_cases": 53887.0, + "new_cases": 483.0, + "new_cases_smoothed": 445.571, + "total_deaths": 8519.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 80.857, + "total_cases_per_million": 4649.593, + "new_cases_per_million": 41.675, + "new_cases_smoothed_per_million": 38.446, + "total_deaths_per_million": 735.055, + "new_deaths_per_million": 6.385, + "new_deaths_smoothed_per_million": 6.977, + "new_tests": 21027.0, + "total_tests": 595783.0, + "total_tests_per_thousand": 51.407, + "new_tests_per_thousand": 1.814, + "new_tests_smoothed": 21148.0, + "new_tests_smoothed_per_thousand": 1.825, + "tests_per_case": 47.463, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-10", + "total_cases": 54127.0, + "new_cases": 240.0, + "new_cases_smoothed": 439.0, + "total_deaths": 8590.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 80.286, + "total_cases_per_million": 4670.301, + "new_cases_per_million": 20.708, + "new_cases_smoothed_per_million": 37.879, + "total_deaths_per_million": 741.181, + "new_deaths_per_million": 6.126, + "new_deaths_smoothed_per_million": 6.927, + "new_tests": 12309.0, + "total_tests": 608092.0, + "total_tests_per_thousand": 52.469, + "new_tests_per_thousand": 1.062, + "new_tests_smoothed": 20986.0, + "new_tests_smoothed_per_thousand": 1.811, + "tests_per_case": 47.803999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-11", + "total_cases": 54245.0, + "new_cases": 118.0, + "new_cases_smoothed": 435.857, + "total_deaths": 8662.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 77.143, + "total_cases_per_million": 4680.483, + "new_cases_per_million": 10.182, + "new_cases_smoothed_per_million": 37.608, + "total_deaths_per_million": 747.393, + "new_deaths_per_million": 6.212, + "new_deaths_smoothed_per_million": 6.656, + "new_tests": 11064.0, + "total_tests": 619156.0, + "total_tests_per_thousand": 53.423, + "new_tests_per_thousand": 0.955, + "new_tests_smoothed": 19245.0, + "new_tests_smoothed_per_thousand": 1.661, + "tests_per_case": 44.153999999999996, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 54721.0, + "new_cases": 476.0, + "new_cases_smoothed": 408.143, + "total_deaths": 8727.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 72.857, + "total_cases_per_million": 4721.554, + "new_cases_per_million": 41.071, + "new_cases_smoothed_per_million": 35.216, + "total_deaths_per_million": 753.002, + "new_deaths_per_million": 5.608, + "new_deaths_smoothed_per_million": 6.286, + "new_tests": 20540.0, + "total_tests": 639696.0, + "total_tests_per_thousand": 55.196, + "new_tests_per_thousand": 1.772, + "new_tests_smoothed": 19103.0, + "new_tests_smoothed_per_thousand": 1.648, + "tests_per_case": 46.805, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 55116.0, + "new_cases": 395.0, + "new_cases_smoothed": 386.571, + "total_deaths": 8772.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 67.714, + "total_cases_per_million": 4755.636, + "new_cases_per_million": 34.082, + "new_cases_smoothed_per_million": 33.355, + "total_deaths_per_million": 756.884, + "new_deaths_per_million": 3.883, + "new_deaths_smoothed_per_million": 5.843, + "new_tests": 23159.0, + "total_tests": 662855.0, + "total_tests_per_thousand": 57.194, + "new_tests_per_thousand": 1.998, + "new_tests_smoothed": 19441.0, + "new_tests_smoothed_per_thousand": 1.677, + "tests_per_case": 50.291000000000004, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 55437.0, + "new_cases": 321.0, + "new_cases_smoothed": 353.571, + "total_deaths": 8828.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 64.857, + "total_cases_per_million": 4783.334, + "new_cases_per_million": 27.697, + "new_cases_smoothed_per_million": 30.508, + "total_deaths_per_million": 761.716, + "new_deaths_per_million": 4.832, + "new_deaths_smoothed_per_million": 5.596, + "new_tests": 20297.0, + "total_tests": 683152.0, + "total_tests_per_thousand": 58.945, + "new_tests_per_thousand": 1.751, + "new_tests_smoothed": 19187.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 54.266000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-15", + "total_cases": 55742.0, + "new_cases": 305.0, + "new_cases_smoothed": 334.0, + "total_deaths": 8871.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 60.857, + "total_cases_per_million": 4809.65, + "new_cases_per_million": 26.317, + "new_cases_smoothed_per_million": 28.819, + "total_deaths_per_million": 765.427, + "new_deaths_per_million": 3.71, + "new_deaths_smoothed_per_million": 5.251, + "new_tests": 20900.0, + "total_tests": 704052.0, + "total_tests_per_thousand": 60.749, + "new_tests_per_thousand": 1.803, + "new_tests_smoothed": 18471.0, + "new_tests_smoothed_per_thousand": 1.594, + "tests_per_case": 55.302, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 56088.0, + "new_cases": 346.0, + "new_cases_smoothed": 314.429, + "total_deaths": 8916.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 56.714, + "total_cases_per_million": 4839.505, + "new_cases_per_million": 29.854, + "new_cases_smoothed_per_million": 27.13, + "total_deaths_per_million": 769.309, + "new_deaths_per_million": 3.883, + "new_deaths_smoothed_per_million": 4.894, + "new_tests": 14427.0, + "total_tests": 718479.0, + "total_tests_per_thousand": 61.993, + "new_tests_per_thousand": 1.245, + "new_tests_smoothed": 17528.0, + "new_tests_smoothed_per_thousand": 1.512, + "tests_per_case": 55.746, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 56235.0, + "new_cases": 147.0, + "new_cases_smoothed": 301.143, + "total_deaths": 8946.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 50.857, + "total_cases_per_million": 4852.188, + "new_cases_per_million": 12.684, + "new_cases_smoothed_per_million": 25.984, + "total_deaths_per_million": 771.898, + "new_deaths_per_million": 2.589, + "new_deaths_smoothed_per_million": 4.388, + "new_tests": 10106.0, + "total_tests": 728585.0, + "total_tests_per_thousand": 62.865, + "new_tests_per_thousand": 0.872, + "new_tests_smoothed": 17213.0, + "new_tests_smoothed_per_thousand": 1.485, + "tests_per_case": 57.159, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-18", + "total_cases": 56316.0, + "new_cases": 81.0, + "new_cases_smoothed": 295.857, + "total_deaths": 8977.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 4859.177, + "new_cases_per_million": 6.989, + "new_cases_smoothed_per_million": 25.528, + "total_deaths_per_million": 774.573, + "new_deaths_per_million": 2.675, + "new_deaths_smoothed_per_million": 3.883, + "new_tests": 10710.0, + "total_tests": 739295.0, + "total_tests_per_thousand": 63.789, + "new_tests_per_thousand": 0.924, + "new_tests_smoothed": 17163.0, + "new_tests_smoothed_per_thousand": 1.481, + "tests_per_case": 58.011, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-19", + "total_cases": 56633.0, + "new_cases": 317.0, + "new_cases_smoothed": 273.143, + "total_deaths": 9014.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 4886.529, + "new_cases_per_million": 27.352, + "new_cases_smoothed_per_million": 23.568, + "total_deaths_per_million": 777.765, + "new_deaths_per_million": 3.193, + "new_deaths_smoothed_per_million": 3.538, + "new_tests": 16721.0, + "total_tests": 756016.0, + "total_tests_per_thousand": 65.232, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 16617.0, + "new_tests_smoothed_per_thousand": 1.434, + "tests_per_case": 60.836000000000006, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-20", + "total_cases": 56925.0, + "new_cases": 292.0, + "new_cases_smoothed": 258.429, + "total_deaths": 9047.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 4911.724, + "new_cases_per_million": 25.195, + "new_cases_smoothed_per_million": 22.298, + "total_deaths_per_million": 780.613, + "new_deaths_per_million": 2.847, + "new_deaths_smoothed_per_million": 3.39, + "new_tests": 18776.0, + "total_tests": 774792.0, + "total_tests_per_thousand": 66.852, + "new_tests_per_thousand": 1.62, + "new_tests_smoothed": 15991.0, + "new_tests_smoothed_per_thousand": 1.38, + "tests_per_case": 61.878, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-21", + "total_cases": 57310.0, + "new_cases": 385.0, + "new_cases_smoothed": 267.571, + "total_deaths": 9077.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 4944.944, + "new_cases_per_million": 33.219, + "new_cases_smoothed_per_million": 23.087, + "total_deaths_per_million": 783.201, + "new_deaths_per_million": 2.589, + "new_deaths_smoothed_per_million": 3.069, + "new_tests": 9878.0, + "total_tests": 784670.0, + "total_tests_per_thousand": 67.705, + "new_tests_per_thousand": 0.852, + "new_tests_smoothed": 14503.0, + "new_tests_smoothed_per_thousand": 1.251, + "tests_per_case": 54.202, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-22", + "total_cases": 57380.0, + "new_cases": 70.0, + "new_cases_smoothed": 234.0, + "total_deaths": 9111.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 4950.984, + "new_cases_per_million": 6.04, + "new_cases_smoothed_per_million": 20.19, + "total_deaths_per_million": 786.135, + "new_deaths_per_million": 2.934, + "new_deaths_smoothed_per_million": 2.958, + "new_tests": 13285.0, + "total_tests": 797955.0, + "total_tests_per_thousand": 68.851, + "new_tests_per_thousand": 1.146, + "new_tests_smoothed": 13415.0, + "new_tests_smoothed_per_thousand": 1.158, + "tests_per_case": 57.32899999999999, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-23", + "total_cases": 57628.0, + "new_cases": 248.0, + "new_cases_smoothed": 220.0, + "total_deaths": 9152.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 4972.382, + "new_cases_per_million": 21.398, + "new_cases_smoothed_per_million": 18.983, + "total_deaths_per_million": 789.672, + "new_deaths_per_million": 3.538, + "new_deaths_smoothed_per_million": 2.909, + "new_tests": 9227.0, + "total_tests": 807182.0, + "total_tests_per_thousand": 69.647, + "new_tests_per_thousand": 0.796, + "new_tests_smoothed": 12672.0, + "new_tests_smoothed_per_thousand": 1.093, + "tests_per_case": 57.6, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 57751.0, + "new_cases": 123.0, + "new_cases_smoothed": 216.571, + "total_deaths": 9177.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 4982.995, + "new_cases_per_million": 10.613, + "new_cases_smoothed_per_million": 18.687, + "total_deaths_per_million": 791.83, + "new_deaths_per_million": 2.157, + "new_deaths_smoothed_per_million": 2.847, + "new_tests": 7030.0, + "total_tests": 814212.0, + "total_tests_per_thousand": 70.254, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 12232.0, + "new_tests_smoothed_per_thousand": 1.055, + "tests_per_case": 56.48, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 57826.0, + "new_cases": 75.0, + "new_cases_smoothed": 215.714, + "total_deaths": 9210.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 4989.466, + "new_cases_per_million": 6.471, + "new_cases_smoothed_per_million": 18.613, + "total_deaths_per_million": 794.677, + "new_deaths_per_million": 2.847, + "new_deaths_smoothed_per_million": 2.872, + "new_tests": 9986.0, + "total_tests": 824198.0, + "total_tests_per_thousand": 71.115, + "new_tests_per_thousand": 0.862, + "new_tests_smoothed": 12129.0, + "new_tests_smoothed_per_thousand": 1.047, + "tests_per_case": 56.227, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 58140.0, + "new_cases": 314.0, + "new_cases_smoothed": 215.286, + "total_deaths": 9236.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 5016.56, + "new_cases_per_million": 27.093, + "new_cases_smoothed_per_million": 18.576, + "total_deaths_per_million": 796.92, + "new_deaths_per_million": 2.243, + "new_deaths_smoothed_per_million": 2.736, + "new_tests": 16226.0, + "total_tests": 840424.0, + "total_tests_per_thousand": 72.515, + "new_tests_per_thousand": 1.4, + "new_tests_smoothed": 12058.0, + "new_tests_smoothed_per_thousand": 1.04, + "tests_per_case": 56.00899999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 58342.0, + "new_cases": 202.0, + "new_cases_smoothed": 202.429, + "total_deaths": 9260.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 5033.989, + "new_cases_per_million": 17.429, + "new_cases_smoothed_per_million": 17.466, + "total_deaths_per_million": 798.991, + "new_deaths_per_million": 2.071, + "new_deaths_smoothed_per_million": 2.626, + "new_tests": 17790.0, + "total_tests": 858214.0, + "total_tests_per_thousand": 74.05, + "new_tests_per_thousand": 1.535, + "new_tests_smoothed": 11917.0, + "new_tests_smoothed_per_thousand": 1.028, + "tests_per_case": 58.87, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 58524.0, + "new_cases": 182.0, + "new_cases_smoothed": 173.429, + "total_deaths": 9284.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 5049.693, + "new_cases_per_million": 15.704, + "new_cases_smoothed_per_million": 14.964, + "total_deaths_per_million": 801.062, + "new_deaths_per_million": 2.071, + "new_deaths_smoothed_per_million": 2.552, + "new_tests": 13099.0, + "total_tests": 871313.0, + "total_tests_per_thousand": 75.18, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 12378.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 71.372, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 58695.0, + "new_cases": 171.0, + "new_cases_smoothed": 187.857, + "total_deaths": 9310.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 5064.447, + "new_cases_per_million": 14.755, + "new_cases_smoothed_per_million": 16.209, + "total_deaths_per_million": 803.305, + "new_deaths_per_million": 2.243, + "new_deaths_smoothed_per_million": 2.453, + "new_tests": 13626.0, + "total_tests": 884939.0, + "total_tests_per_thousand": 76.356, + "new_tests_per_thousand": 1.176, + "new_tests_smoothed": 12426.0, + "new_tests_smoothed_per_thousand": 1.072, + "tests_per_case": 66.146, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 58860.0, + "new_cases": 165.0, + "new_cases_smoothed": 176.0, + "total_deaths": 9326.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 5078.684, + "new_cases_per_million": 14.237, + "new_cases_smoothed_per_million": 15.186, + "total_deaths_per_million": 804.686, + "new_deaths_per_million": 1.381, + "new_deaths_smoothed_per_million": 2.145, + "new_tests": 9735.0, + "total_tests": 894674.0, + "total_tests_per_thousand": 77.196, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 12499.0, + "new_tests_smoothed_per_thousand": 1.078, + "tests_per_case": 71.017, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 58921.0, + "new_cases": 61.0, + "new_cases_smoothed": 167.143, + "total_deaths": 9349.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 5083.948, + "new_cases_per_million": 5.263, + "new_cases_smoothed_per_million": 14.422, + "total_deaths_per_million": 806.67, + "new_deaths_per_million": 1.985, + "new_deaths_smoothed_per_million": 2.12, + "new_tests": 6795.0, + "total_tests": 901469.0, + "total_tests_per_thousand": 77.782, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 12465.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 74.577, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 58970.0, + "new_cases": 49.0, + "new_cases_smoothed": 163.429, + "total_deaths": 9371.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 5088.175, + "new_cases_per_million": 4.228, + "new_cases_smoothed_per_million": 14.101, + "total_deaths_per_million": 808.569, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 1.985, + "new_tests": 5440.0, + "total_tests": 906909.0, + "total_tests_per_thousand": 78.252, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 11816.0, + "new_tests_smoothed_per_thousand": 1.02, + "tests_per_case": 72.301, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 59029.0, + "new_cases": 59.0, + "new_cases_smoothed": 127.0, + "total_deaths": 9392.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 5093.266, + "new_cases_per_million": 5.091, + "new_cases_smoothed_per_million": 10.958, + "total_deaths_per_million": 810.381, + "new_deaths_per_million": 1.812, + "new_deaths_smoothed_per_million": 1.923, + "new_tests": 10656.0, + "total_tests": 917565.0, + "total_tests_per_thousand": 79.171, + "new_tests_per_thousand": 0.919, + "new_tests_smoothed": 11020.0, + "new_tests_smoothed_per_thousand": 0.951, + "tests_per_case": 86.772, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-03", + "total_cases": 59210.0, + "new_cases": 181.0, + "new_cases_smoothed": 124.0, + "total_deaths": 9415.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 5108.884, + "new_cases_per_million": 15.617, + "new_cases_smoothed_per_million": 10.699, + "total_deaths_per_million": 812.365, + "new_deaths_per_million": 1.985, + "new_deaths_smoothed_per_million": 1.911, + "new_tests": 14811.0, + "total_tests": 932376.0, + "total_tests_per_thousand": 80.449, + "new_tests_per_thousand": 1.278, + "new_tests_smoothed": 10595.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 85.444, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-04", + "total_cases": 59369.0, + "new_cases": 159.0, + "new_cases_smoothed": 120.714, + "total_deaths": 9435.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 5122.603, + "new_cases_per_million": 13.719, + "new_cases_smoothed_per_million": 10.416, + "total_deaths_per_million": 814.091, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 1.861, + "new_tests": 12853.0, + "total_tests": 945229.0, + "total_tests_per_thousand": 81.558, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 10559.0, + "new_tests_smoothed_per_thousand": 0.911, + "tests_per_case": 87.471, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-05", + "total_cases": 59541.0, + "new_cases": 172.0, + "new_cases_smoothed": 120.857, + "total_deaths": 9449.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 5137.444, + "new_cases_per_million": 14.841, + "new_cases_smoothed_per_million": 10.428, + "total_deaths_per_million": 815.299, + "new_deaths_per_million": 1.208, + "new_deaths_smoothed_per_million": 1.713, + "new_tests": 13087.0, + "total_tests": 958316.0, + "total_tests_per_thousand": 82.687, + "new_tests_per_thousand": 1.129, + "new_tests_smoothed": 10482.0, + "new_tests_smoothed_per_thousand": 0.904, + "tests_per_case": 86.73, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 59695.0, + "new_cases": 154.0, + "new_cases_smoothed": 119.286, + "total_deaths": 9461.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 5150.731, + "new_cases_per_million": 13.288, + "new_cases_smoothed_per_million": 10.292, + "total_deaths_per_million": 816.334, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.664, + "new_tests": 11874.0, + "total_tests": 970190.0, + "total_tests_per_thousand": 83.712, + "new_tests_per_thousand": 1.025, + "new_tests_smoothed": 10788.0, + "new_tests_smoothed_per_thousand": 0.931, + "tests_per_case": 90.43799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 59764.0, + "new_cases": 69.0, + "new_cases_smoothed": 120.429, + "total_deaths": 9472.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 5156.685, + "new_cases_per_million": 5.954, + "new_cases_smoothed_per_million": 10.391, + "total_deaths_per_million": 817.283, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 1.516, + "new_tests": 7312.0, + "total_tests": 977502.0, + "total_tests_per_thousand": 84.343, + "new_tests_per_thousand": 0.631, + "new_tests_smoothed": 10862.0, + "new_tests_smoothed_per_thousand": 0.937, + "tests_per_case": 90.195, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 59817.0, + "new_cases": 53.0, + "new_cases_smoothed": 121.0, + "total_deaths": 9484.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 5161.258, + "new_cases_per_million": 4.573, + "new_cases_smoothed_per_million": 10.44, + "total_deaths_per_million": 818.319, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.393, + "new_tests": 11013.0, + "total_tests": 988515.0, + "total_tests_per_thousand": 85.293, + "new_tests_per_thousand": 0.95, + "new_tests_smoothed": 11658.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 96.34700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-09", + "total_cases": 59969.0, + "new_cases": 152.0, + "new_cases_smoothed": 134.286, + "total_deaths": 9493.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 5174.373, + "new_cases_per_million": 13.115, + "new_cases_smoothed_per_million": 11.587, + "total_deaths_per_million": 819.095, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 1.245, + "new_tests": 15090.0, + "total_tests": 1003605.0, + "total_tests_per_thousand": 86.595, + "new_tests_per_thousand": 1.302, + "new_tests_smoothed": 12291.0, + "new_tests_smoothed_per_thousand": 1.061, + "tests_per_case": 91.529, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-10", + "total_cases": 60114.0, + "new_cases": 145.0, + "new_cases_smoothed": 129.143, + "total_deaths": 9505.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 5186.885, + "new_cases_per_million": 12.511, + "new_cases_smoothed_per_million": 11.143, + "total_deaths_per_million": 820.131, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.109, + "new_tests": 14331.0, + "total_tests": 1017936.0, + "total_tests_per_thousand": 87.832, + "new_tests_per_thousand": 1.237, + "new_tests_smoothed": 12223.0, + "new_tests_smoothed_per_thousand": 1.055, + "tests_per_case": 94.647, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-11", + "total_cases": 60233.0, + "new_cases": 119.0, + "new_cases_smoothed": 123.429, + "total_deaths": 9517.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 5197.152, + "new_cases_per_million": 10.268, + "new_cases_smoothed_per_million": 10.65, + "total_deaths_per_million": 821.166, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.011, + "new_tests": 13949.0, + "total_tests": 1031885.0, + "total_tests_per_thousand": 89.035, + "new_tests_per_thousand": 1.204, + "new_tests_smoothed": 12379.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 100.29299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-12", + "total_cases": 60328.0, + "new_cases": 95.0, + "new_cases_smoothed": 112.429, + "total_deaths": 9524.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 5205.349, + "new_cases_per_million": 8.197, + "new_cases_smoothed_per_million": 9.701, + "total_deaths_per_million": 821.77, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 13748.0, + "total_tests": 1045633.0, + "total_tests_per_thousand": 90.222, + "new_tests_per_thousand": 1.186, + "new_tests_smoothed": 12474.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 110.95, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-13", + "total_cases": 60417.0, + "new_cases": 89.0, + "new_cases_smoothed": 103.143, + "total_deaths": 9534.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 5213.029, + "new_cases_per_million": 7.679, + "new_cases_smoothed_per_million": 8.9, + "total_deaths_per_million": 822.633, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.9, + "new_tests": 12529.0, + "total_tests": 1058162.0, + "total_tests_per_thousand": 91.303, + "new_tests_per_thousand": 1.081, + "new_tests_smoothed": 12567.0, + "new_tests_smoothed_per_thousand": 1.084, + "tests_per_case": 121.84100000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-14", + "total_cases": 60466.0, + "new_cases": 49.0, + "new_cases_smoothed": 100.286, + "total_deaths": 9539.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 5217.257, + "new_cases_per_million": 4.228, + "new_cases_smoothed_per_million": 8.653, + "total_deaths_per_million": 823.064, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.826, + "new_tests": 6245.0, + "total_tests": 1064407.0, + "total_tests_per_thousand": 91.841, + "new_tests_per_thousand": 0.539, + "new_tests_smoothed": 12415.0, + "new_tests_smoothed_per_thousand": 1.071, + "tests_per_case": 123.796, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-15", + "total_cases": 60488.0, + "new_cases": 22.0, + "new_cases_smoothed": 95.857, + "total_deaths": 9542.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 5219.155, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 8.271, + "total_deaths_per_million": 823.323, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.715, + "new_tests": 11906.0, + "total_tests": 1076313.0, + "total_tests_per_thousand": 92.869, + "new_tests_per_thousand": 1.027, + "new_tests_smoothed": 12543.0, + "new_tests_smoothed_per_thousand": 1.082, + "tests_per_case": 130.851, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-16", + "total_cases": 60635.0, + "new_cases": 147.0, + "new_cases_smoothed": 95.143, + "total_deaths": 9550.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 5231.839, + "new_cases_per_million": 12.684, + "new_cases_smoothed_per_million": 8.209, + "total_deaths_per_million": 824.013, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.703, + "new_tests": 15199.0, + "total_tests": 1091512.0, + "total_tests_per_thousand": 94.18, + "new_tests_per_thousand": 1.311, + "new_tests_smoothed": 12558.0, + "new_tests_smoothed_per_thousand": 1.084, + "tests_per_case": 131.991, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-17", + "total_cases": 60734.0, + "new_cases": 99.0, + "new_cases_smoothed": 88.571, + "total_deaths": 9557.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 5240.381, + "new_cases_per_million": 8.542, + "new_cases_smoothed_per_million": 7.642, + "total_deaths_per_million": 824.617, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.641, + "new_tests": 15330.0, + "total_tests": 1106842.0, + "total_tests_per_thousand": 95.503, + "new_tests_per_thousand": 1.323, + "new_tests_smoothed": 12701.0, + "new_tests_smoothed_per_thousand": 1.096, + "tests_per_case": 143.398, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-18", + "total_cases": 60857.0, + "new_cases": 123.0, + "new_cases_smoothed": 89.143, + "total_deaths": 9564.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5250.994, + "new_cases_per_million": 10.613, + "new_cases_smoothed_per_million": 7.692, + "total_deaths_per_million": 825.221, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 13965.0, + "total_tests": 1120807.0, + "total_tests_per_thousand": 96.708, + "new_tests_per_thousand": 1.205, + "new_tests_smoothed": 12703.0, + "new_tests_smoothed_per_thousand": 1.096, + "tests_per_case": 142.502, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-19", + "total_cases": 60965.0, + "new_cases": 108.0, + "new_cases_smoothed": 91.0, + "total_deaths": 9569.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 5260.312, + "new_cases_per_million": 9.319, + "new_cases_smoothed_per_million": 7.852, + "total_deaths_per_million": 825.653, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 13406.0, + "total_tests": 1134213.0, + "total_tests_per_thousand": 97.865, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 12654.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 139.055, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-20", + "total_cases": 61086.0, + "new_cases": 121.0, + "new_cases_smoothed": 95.571, + "total_deaths": 9573.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5270.753, + "new_cases_per_million": 10.44, + "new_cases_smoothed_per_million": 8.246, + "total_deaths_per_million": 825.998, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 12550.0, + "total_tests": 1146763.0, + "total_tests_per_thousand": 98.947, + "new_tests_per_thousand": 1.083, + "new_tests_smoothed": 12657.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 132.435, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-21", + "total_cases": 61136.0, + "new_cases": 50.0, + "new_cases_smoothed": 95.714, + "total_deaths": 9576.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 5275.067, + "new_cases_per_million": 4.314, + "new_cases_smoothed_per_million": 8.259, + "total_deaths_per_million": 826.257, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 6605.0, + "total_tests": 1153368.0, + "total_tests_per_thousand": 99.517, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 12709.0, + "new_tests_smoothed_per_thousand": 1.097, + "tests_per_case": 132.781, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-22", + "total_cases": 61156.0, + "new_cases": 20.0, + "new_cases_smoothed": 95.429, + "total_deaths": 9585.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 5276.793, + "new_cases_per_million": 1.726, + "new_cases_smoothed_per_million": 8.234, + "total_deaths_per_million": 827.033, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 11133.0, + "total_tests": 1164501.0, + "total_tests_per_thousand": 100.478, + "new_tests_per_thousand": 0.961, + "new_tests_smoothed": 12598.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 132.015, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-23", + "total_cases": 61299.0, + "new_cases": 143.0, + "new_cases_smoothed": 94.857, + "total_deaths": 9597.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5289.131, + "new_cases_per_million": 12.339, + "new_cases_smoothed_per_million": 8.185, + "total_deaths_per_million": 828.069, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 17396.0, + "total_tests": 1181897.0, + "total_tests_per_thousand": 101.979, + "new_tests_per_thousand": 1.501, + "new_tests_smoothed": 12912.0, + "new_tests_smoothed_per_thousand": 1.114, + "tests_per_case": 136.12, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-24", + "total_cases": 61409.0, + "new_cases": 110.0, + "new_cases_smoothed": 96.429, + "total_deaths": 9601.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 5298.622, + "new_cases_per_million": 9.491, + "new_cases_smoothed_per_million": 8.32, + "total_deaths_per_million": 828.414, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.542, + "new_tests": 18473.0, + "total_tests": 1200370.0, + "total_tests_per_thousand": 103.573, + "new_tests_per_thousand": 1.594, + "new_tests_smoothed": 13361.0, + "new_tests_smoothed_per_thousand": 1.153, + "tests_per_case": 138.559, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-25", + "total_cases": 61509.0, + "new_cases": 100.0, + "new_cases_smoothed": 93.143, + "total_deaths": 9604.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5307.251, + "new_cases_per_million": 8.628, + "new_cases_smoothed_per_million": 8.037, + "total_deaths_per_million": 828.673, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 15210.0, + "total_tests": 1215580.0, + "total_tests_per_thousand": 104.885, + "new_tests_per_thousand": 1.312, + "new_tests_smoothed": 13539.0, + "new_tests_smoothed_per_thousand": 1.168, + "tests_per_case": 145.357, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-26", + "total_cases": 61585.0, + "new_cases": 76.0, + "new_cases_smoothed": 88.571, + "total_deaths": 9609.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5313.808, + "new_cases_per_million": 6.558, + "new_cases_smoothed_per_million": 7.642, + "total_deaths_per_million": 829.104, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 14564.0, + "total_tests": 1230144.0, + "total_tests_per_thousand": 106.142, + "new_tests_per_thousand": 1.257, + "new_tests_smoothed": 13704.0, + "new_tests_smoothed_per_thousand": 1.182, + "tests_per_case": 154.72299999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-27", + "total_cases": 61698.0, + "new_cases": 113.0, + "new_cases_smoothed": 87.429, + "total_deaths": 9611.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 5323.559, + "new_cases_per_million": 9.75, + "new_cases_smoothed_per_million": 7.544, + "total_deaths_per_million": 829.277, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 10954.0, + "total_tests": 1241098.0, + "total_tests_per_thousand": 107.087, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 13476.0, + "new_tests_smoothed_per_thousand": 1.163, + "tests_per_case": 154.137, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-28", + "total_cases": 61739.0, + "new_cases": 41.0, + "new_cases_smoothed": 86.143, + "total_deaths": 9619.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 5327.096, + "new_cases_per_million": 3.538, + "new_cases_smoothed_per_million": 7.433, + "total_deaths_per_million": 829.967, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 6184.0, + "total_tests": 1247282.0, + "total_tests_per_thousand": 107.621, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 13416.0, + "new_tests_smoothed_per_thousand": 1.158, + "tests_per_case": 155.741, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-29", + "total_cases": 61763.0, + "new_cases": 24.0, + "new_cases_smoothed": 86.714, + "total_deaths": 9624.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5329.167, + "new_cases_per_million": 2.071, + "new_cases_smoothed_per_million": 7.482, + "total_deaths_per_million": 830.399, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 12004.0, + "total_tests": 1259286.0, + "total_tests_per_thousand": 108.656, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 13541.0, + "new_tests_smoothed_per_thousand": 1.168, + "tests_per_case": 156.157, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 61890.0, + "new_cases": 127.0, + "new_cases_smoothed": 84.429, + "total_deaths": 9627.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5340.125, + "new_cases_per_million": 10.958, + "new_cases_smoothed_per_million": 7.285, + "total_deaths_per_million": 830.657, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 16078.0, + "total_tests": 1275364.0, + "total_tests_per_thousand": 110.044, + "new_tests_per_thousand": 1.387, + "new_tests_smoothed": 13352.0, + "new_tests_smoothed_per_thousand": 1.152, + "tests_per_case": 158.14600000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 61990.0, + "new_cases": 100.0, + "new_cases_smoothed": 83.0, + "total_deaths": 9635.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 5348.754, + "new_cases_per_million": 8.628, + "new_cases_smoothed_per_million": 7.162, + "total_deaths_per_million": 831.348, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 15184.0, + "total_tests": 1290548.0, + "total_tests_per_thousand": 111.354, + "new_tests_per_thousand": 1.31, + "new_tests_smoothed": 12883.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 155.217, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-02", + "total_cases": 62125.0, + "new_cases": 135.0, + "new_cases_smoothed": 88.0, + "total_deaths": 9637.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5360.402, + "new_cases_per_million": 11.648, + "new_cases_smoothed_per_million": 7.593, + "total_deaths_per_million": 831.52, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.407, + "new_tests": 13615.0, + "total_tests": 1304163.0, + "total_tests_per_thousand": 112.529, + "new_tests_per_thousand": 1.175, + "new_tests_smoothed": 12655.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 143.80700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-03", + "total_cases": 62218.0, + "new_cases": 93.0, + "new_cases_smoothed": 90.429, + "total_deaths": 9642.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5368.426, + "new_cases_per_million": 8.024, + "new_cases_smoothed_per_million": 7.803, + "total_deaths_per_million": 831.952, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.407, + "new_tests": 12381.0, + "total_tests": 1316544.0, + "total_tests_per_thousand": 113.597, + "new_tests_per_thousand": 1.068, + "new_tests_smoothed": 12343.0, + "new_tests_smoothed_per_thousand": 1.065, + "tests_per_case": 136.494, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-04", + "total_cases": 62312.0, + "new_cases": 94.0, + "new_cases_smoothed": 87.714, + "total_deaths": 9644.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5376.537, + "new_cases_per_million": 8.111, + "new_cases_smoothed_per_million": 7.568, + "total_deaths_per_million": 832.124, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.407, + "new_tests": 10007.0, + "total_tests": 1326551.0, + "total_tests_per_thousand": 114.46, + "new_tests_per_thousand": 0.863, + "new_tests_smoothed": 12208.0, + "new_tests_smoothed_per_thousand": 1.053, + "tests_per_case": 139.179, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-05", + "total_cases": 62376.0, + "new_cases": 64.0, + "new_cases_smoothed": 91.0, + "total_deaths": 9647.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5382.059, + "new_cases_per_million": 5.522, + "new_cases_smoothed_per_million": 7.852, + "total_deaths_per_million": 832.383, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 5801.0, + "total_tests": 1332352.0, + "total_tests_per_thousand": 114.961, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 12153.0, + "new_tests_smoothed_per_thousand": 1.049, + "tests_per_case": 133.549, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-06", + "total_cases": 62400.0, + "new_cases": 24.0, + "new_cases_smoothed": 91.0, + "total_deaths": 9649.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5384.13, + "new_cases_per_million": 2.071, + "new_cases_smoothed_per_million": 7.852, + "total_deaths_per_million": 832.556, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 10721.0, + "total_tests": 1343073.0, + "total_tests_per_thousand": 115.886, + "new_tests_per_thousand": 0.925, + "new_tests_smoothed": 11970.0, + "new_tests_smoothed_per_thousand": 1.033, + "tests_per_case": 131.53799999999998, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-07", + "total_cases": 62513.0, + "new_cases": 113.0, + "new_cases_smoothed": 89.0, + "total_deaths": 9650.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5393.88, + "new_cases_per_million": 9.75, + "new_cases_smoothed_per_million": 7.679, + "total_deaths_per_million": 832.642, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.284, + "new_tests": 13930.0, + "total_tests": 1357003.0, + "total_tests_per_thousand": 117.088, + "new_tests_per_thousand": 1.202, + "new_tests_smoothed": 11663.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 131.045, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-08", + "total_cases": 62612.0, + "new_cases": 99.0, + "new_cases_smoothed": 88.857, + "total_deaths": 9653.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5402.422, + "new_cases_per_million": 8.542, + "new_cases_smoothed_per_million": 7.667, + "total_deaths_per_million": 832.901, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 13871.0, + "total_tests": 1370874.0, + "total_tests_per_thousand": 118.285, + "new_tests_per_thousand": 1.197, + "new_tests_smoothed": 11475.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 129.14, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-09", + "total_cases": 62749.0, + "new_cases": 137.0, + "new_cases_smoothed": 89.143, + "total_deaths": 9654.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5414.243, + "new_cases_per_million": 11.821, + "new_cases_smoothed_per_million": 7.692, + "total_deaths_per_million": 832.987, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 12539.0, + "total_tests": 1383413.0, + "total_tests_per_thousand": 119.367, + "new_tests_per_thousand": 1.082, + "new_tests_smoothed": 11321.0, + "new_tests_smoothed_per_thousand": 0.977, + "tests_per_case": 126.99799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-10", + "total_cases": 62873.0, + "new_cases": 124.0, + "new_cases_smoothed": 93.571, + "total_deaths": 9656.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5424.942, + "new_cases_per_million": 10.699, + "new_cases_smoothed_per_million": 8.074, + "total_deaths_per_million": 833.16, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 12032.0, + "total_tests": 1395445.0, + "total_tests_per_thousand": 120.405, + "new_tests_per_thousand": 1.038, + "new_tests_smoothed": 11272.0, + "new_tests_smoothed_per_thousand": 0.973, + "tests_per_case": 120.464, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-11", + "total_cases": 63000.0, + "new_cases": 127.0, + "new_cases_smoothed": 98.286, + "total_deaths": 9656.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5435.901, + "new_cases_per_million": 10.958, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 833.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 9304.0, + "total_tests": 1404749.0, + "total_tests_per_thousand": 121.208, + "new_tests_per_thousand": 0.803, + "new_tests_smoothed": 11171.0, + "new_tests_smoothed_per_thousand": 0.964, + "tests_per_case": 113.65799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-12", + "total_cases": 63062.0, + "new_cases": 62.0, + "new_cases_smoothed": 98.0, + "total_deaths": 9658.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5441.25, + "new_cases_per_million": 5.35, + "new_cases_smoothed_per_million": 8.456, + "total_deaths_per_million": 833.332, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 5623.0, + "total_tests": 1410372.0, + "total_tests_per_thousand": 121.693, + "new_tests_per_thousand": 0.485, + "new_tests_smoothed": 11146.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 113.735, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-13", + "total_cases": 63105.0, + "new_cases": 43.0, + "new_cases_smoothed": 100.714, + "total_deaths": 9662.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5444.96, + "new_cases_per_million": 3.71, + "new_cases_smoothed_per_million": 8.69, + "total_deaths_per_million": 833.677, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 10241.0, + "total_tests": 1420613.0, + "total_tests_per_thousand": 122.576, + "new_tests_per_thousand": 0.884, + "new_tests_smoothed": 11077.0, + "new_tests_smoothed_per_thousand": 0.956, + "tests_per_case": 109.984, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-14", + "total_cases": 63329.0, + "new_cases": 224.0, + "new_cases_smoothed": 116.571, + "total_deaths": 9662.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5464.288, + "new_cases_per_million": 19.328, + "new_cases_smoothed_per_million": 10.058, + "total_deaths_per_million": 833.677, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 15078.0, + "total_tests": 1435691.0, + "total_tests_per_thousand": 123.877, + "new_tests_per_thousand": 1.301, + "new_tests_smoothed": 11241.0, + "new_tests_smoothed_per_thousand": 0.97, + "tests_per_case": 96.43, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-15", + "total_cases": 63536.0, + "new_cases": 207.0, + "new_cases_smoothed": 132.0, + "total_deaths": 9665.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5482.149, + "new_cases_per_million": 17.861, + "new_cases_smoothed_per_million": 11.39, + "total_deaths_per_million": 833.936, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 16364.0, + "total_tests": 1452055.0, + "total_tests_per_thousand": 125.289, + "new_tests_per_thousand": 1.412, + "new_tests_smoothed": 11597.0, + "new_tests_smoothed_per_thousand": 1.001, + "tests_per_case": 87.85600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-16", + "total_cases": 63796.0, + "new_cases": 260.0, + "new_cases_smoothed": 149.571, + "total_deaths": 9670.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5504.583, + "new_cases_per_million": 22.434, + "new_cases_smoothed_per_million": 12.906, + "total_deaths_per_million": 834.368, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 14486.0, + "total_tests": 1466541.0, + "total_tests_per_thousand": 126.539, + "new_tests_per_thousand": 1.25, + "new_tests_smoothed": 11875.0, + "new_tests_smoothed_per_thousand": 1.025, + "tests_per_case": 79.39399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-17", + "total_cases": 64022.0, + "new_cases": 226.0, + "new_cases_smoothed": 164.143, + "total_deaths": 9675.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5524.083, + "new_cases_per_million": 19.5, + "new_cases_smoothed_per_million": 14.163, + "total_deaths_per_million": 834.799, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 14001.0, + "total_tests": 1480542.0, + "total_tests_per_thousand": 127.747, + "new_tests_per_thousand": 1.208, + "new_tests_smoothed": 12157.0, + "new_tests_smoothed_per_thousand": 1.049, + "tests_per_case": 74.064, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-18", + "total_cases": 64296.0, + "new_cases": 274.0, + "new_cases_smoothed": 185.143, + "total_deaths": 9677.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5547.725, + "new_cases_per_million": 23.642, + "new_cases_smoothed_per_million": 15.975, + "total_deaths_per_million": 834.972, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 10463.0, + "total_tests": 1491005.0, + "total_tests_per_thousand": 128.65, + "new_tests_per_thousand": 0.903, + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.063, + "tests_per_case": 66.554, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-19", + "total_cases": 64425.0, + "new_cases": 129.0, + "new_cases_smoothed": 194.714, + "total_deaths": 9680.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5558.855, + "new_cases_per_million": 11.131, + "new_cases_smoothed_per_million": 16.801, + "total_deaths_per_million": 835.23, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 6285.0, + "total_tests": 1497290.0, + "total_tests_per_thousand": 129.192, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 12417.0, + "new_tests_smoothed_per_thousand": 1.071, + "tests_per_case": 63.77, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-20", + "total_cases": 64490.0, + "new_cases": 65.0, + "new_cases_smoothed": 197.857, + "total_deaths": 9681.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5564.464, + "new_cases_per_million": 5.608, + "new_cases_smoothed_per_million": 17.072, + "total_deaths_per_million": 835.317, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 11902.0, + "total_tests": 1509192.0, + "total_tests_per_thousand": 130.219, + "new_tests_per_thousand": 1.027, + "new_tests_smoothed": 12654.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 63.955, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-21", + "total_cases": 64933.0, + "new_cases": 443.0, + "new_cases_smoothed": 229.143, + "total_deaths": 9683.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5602.688, + "new_cases_per_million": 38.224, + "new_cases_smoothed_per_million": 19.771, + "total_deaths_per_million": 835.489, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 12001.0, + "total_tests": 1521193.0, + "total_tests_per_thousand": 131.255, + "new_tests_per_thousand": 1.035, + "new_tests_smoothed": 12215.0, + "new_tests_smoothed_per_thousand": 1.054, + "tests_per_case": 53.306999999999995, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-22", + "total_cases": 65078.0, + "new_cases": 145.0, + "new_cases_smoothed": 220.286, + "total_deaths": 9684.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5615.199, + "new_cases_per_million": 12.511, + "new_cases_smoothed_per_million": 19.007, + "total_deaths_per_million": 835.576, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 13286.0, + "total_tests": 1534479.0, + "total_tests_per_thousand": 132.401, + "new_tests_per_thousand": 1.146, + "new_tests_smoothed": 11775.0, + "new_tests_smoothed_per_thousand": 1.016, + "tests_per_case": 53.453, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-23", + "total_cases": 65631.0, + "new_cases": 553.0, + "new_cases_smoothed": 262.143, + "total_deaths": 9686.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5662.914, + "new_cases_per_million": 47.715, + "new_cases_smoothed_per_million": 22.619, + "total_deaths_per_million": 835.748, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 18295.0, + "total_tests": 1552774.0, + "total_tests_per_thousand": 133.98, + "new_tests_per_thousand": 1.579, + "new_tests_smoothed": 12319.0, + "new_tests_smoothed_per_thousand": 1.063, + "tests_per_case": 46.993, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-24", + "total_cases": 66070.0, + "new_cases": 439.0, + "new_cases_smoothed": 292.571, + "total_deaths": 9688.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5700.793, + "new_cases_per_million": 37.879, + "new_cases_smoothed_per_million": 25.244, + "total_deaths_per_million": 835.921, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 18699.0, + "total_tests": 1571473.0, + "total_tests_per_thousand": 135.593, + "new_tests_per_thousand": 1.613, + "new_tests_smoothed": 12990.0, + "new_tests_smoothed_per_thousand": 1.121, + "tests_per_case": 44.398999999999994, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-25", + "total_cases": 66566.0, + "new_cases": 496.0, + "new_cases_smoothed": 324.286, + "total_deaths": 9693.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5743.59, + "new_cases_per_million": 42.797, + "new_cases_smoothed_per_million": 27.981, + "total_deaths_per_million": 836.352, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 14510.0, + "total_tests": 1585983.0, + "total_tests_per_thousand": 136.845, + "new_tests_per_thousand": 1.252, + "new_tests_smoothed": 13568.0, + "new_tests_smoothed_per_thousand": 1.171, + "tests_per_case": 41.84, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-26", + "total_cases": 66795.0, + "new_cases": 229.0, + "new_cases_smoothed": 338.571, + "total_deaths": 9694.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5763.349, + "new_cases_per_million": 19.759, + "new_cases_smoothed_per_million": 29.213, + "total_deaths_per_million": 836.438, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 11002.0, + "total_tests": 1596985.0, + "total_tests_per_thousand": 137.794, + "new_tests_per_thousand": 0.949, + "new_tests_smoothed": 14242.0, + "new_tests_smoothed_per_thousand": 1.229, + "tests_per_case": 42.065, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-27", + "total_cases": 66979.0, + "new_cases": 184.0, + "new_cases_smoothed": 355.571, + "total_deaths": 9696.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5779.225, + "new_cases_per_million": 15.876, + "new_cases_smoothed_per_million": 30.68, + "total_deaths_per_million": 836.611, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 14568.0, + "total_tests": 1611553.0, + "total_tests_per_thousand": 139.051, + "new_tests_per_thousand": 1.257, + "new_tests_smoothed": 14623.0, + "new_tests_smoothed_per_thousand": 1.262, + "tests_per_case": 41.125, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 67574.0, + "new_cases": 595.0, + "new_cases_smoothed": 377.286, + "total_deaths": 9700.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5830.564, + "new_cases_per_million": 51.339, + "new_cases_smoothed_per_million": 32.554, + "total_deaths_per_million": 836.956, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 25532.0, + "total_tests": 1637085.0, + "total_tests_per_thousand": 141.254, + "new_tests_per_thousand": 2.203, + "new_tests_smoothed": 16556.0, + "new_tests_smoothed_per_thousand": 1.429, + "tests_per_case": 43.882, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-29", + "total_cases": 68259.0, + "new_cases": 685.0, + "new_cases_smoothed": 454.429, + "total_deaths": 9701.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5889.669, + "new_cases_per_million": 59.105, + "new_cases_smoothed_per_million": 39.21, + "total_deaths_per_million": 837.042, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 25499.0, + "total_tests": 1662584.0, + "total_tests_per_thousand": 143.455, + "new_tests_per_thousand": 2.2, + "new_tests_smoothed": 18301.0, + "new_tests_smoothed_per_thousand": 1.579, + "tests_per_case": 40.273, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-07-30", + "total_cases": 68962.0, + "new_cases": 703.0, + "new_cases_smoothed": 475.857, + "total_deaths": 9704.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5950.327, + "new_cases_per_million": 60.658, + "new_cases_smoothed_per_million": 41.059, + "total_deaths_per_million": 837.301, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 26161.0, + "total_tests": 1688745.0, + "total_tests_per_thousand": 145.712, + "new_tests_per_thousand": 2.257, + "new_tests_smoothed": 19424.0, + "new_tests_smoothed_per_thousand": 1.676, + "tests_per_case": 40.819, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-07-31", + "total_cases": 69597.0, + "new_cases": 635.0, + "new_cases_smoothed": 503.857, + "total_deaths": 9706.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 6005.117, + "new_cases_per_million": 54.79, + "new_cases_smoothed_per_million": 43.475, + "total_deaths_per_million": 837.474, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 21545.0, + "total_tests": 1710290.0, + "total_tests_per_thousand": 147.571, + "new_tests_per_thousand": 1.859, + "new_tests_smoothed": 19831.0, + "new_tests_smoothed_per_thousand": 1.711, + "tests_per_case": 39.358000000000004, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-01", + "total_cases": 70281.0, + "new_cases": 684.0, + "new_cases_smoothed": 530.714, + "total_deaths": 9709.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6064.135, + "new_cases_per_million": 59.018, + "new_cases_smoothed_per_million": 45.792, + "total_deaths_per_million": 837.733, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 20447.0, + "total_tests": 1730737.0, + "total_tests_per_thousand": 149.335, + "new_tests_per_thousand": 1.764, + "new_tests_smoothed": 20679.0, + "new_tests_smoothed_per_thousand": 1.784, + "tests_per_case": 38.964, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-02", + "total_cases": 70590.0, + "new_cases": 309.0, + "new_cases_smoothed": 542.143, + "total_deaths": 9711.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6090.797, + "new_cases_per_million": 26.662, + "new_cases_smoothed_per_million": 46.778, + "total_deaths_per_million": 837.905, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 11705.0, + "total_tests": 1742442.0, + "total_tests_per_thousand": 150.345, + "new_tests_per_thousand": 1.01, + "new_tests_smoothed": 20780.0, + "new_tests_smoothed_per_thousand": 1.793, + "tests_per_case": 38.329, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-03", + "total_cases": 70738.0, + "new_cases": 148.0, + "new_cases_smoothed": 537.0, + "total_deaths": 9716.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6103.567, + "new_cases_per_million": 12.77, + "new_cases_smoothed_per_million": 46.335, + "total_deaths_per_million": 838.337, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 16846.0, + "total_tests": 1759288.0, + "total_tests_per_thousand": 151.799, + "new_tests_per_thousand": 1.454, + "new_tests_smoothed": 21105.0, + "new_tests_smoothed_per_thousand": 1.821, + "tests_per_case": 39.302, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-04", + "total_cases": 71532.0, + "new_cases": 794.0, + "new_cases_smoothed": 565.429, + "total_deaths": 9719.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 6172.077, + "new_cases_per_million": 68.51, + "new_cases_smoothed_per_million": 48.788, + "total_deaths_per_million": 838.596, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 25481.0, + "total_tests": 1784769.0, + "total_tests_per_thousand": 153.997, + "new_tests_per_thousand": 2.199, + "new_tests_smoothed": 21098.0, + "new_tests_smoothed_per_thousand": 1.82, + "tests_per_case": 37.313, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-05", + "total_cases": 72344.0, + "new_cases": 812.0, + "new_cases_smoothed": 583.571, + "total_deaths": 9724.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 6242.14, + "new_cases_per_million": 70.063, + "new_cases_smoothed_per_million": 50.353, + "total_deaths_per_million": 839.027, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.284, + "new_tests": 26178.0, + "total_tests": 1810947.0, + "total_tests_per_thousand": 156.256, + "new_tests_per_thousand": 2.259, + "new_tests_smoothed": 21195.0, + "new_tests_smoothed_per_thousand": 1.829, + "tests_per_case": 36.319, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-06", + "total_cases": 73109.0, + "new_cases": 765.0, + "new_cases_smoothed": 592.429, + "total_deaths": 9729.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 6308.147, + "new_cases_per_million": 66.007, + "new_cases_smoothed_per_million": 51.117, + "total_deaths_per_million": 839.458, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 23217.0, + "total_tests": 1834164.0, + "total_tests_per_thousand": 158.259, + "new_tests_per_thousand": 2.003, + "new_tests_smoothed": 20774.0, + "new_tests_smoothed_per_thousand": 1.792, + "tests_per_case": 35.066, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-08-07", + "total_cases": 73877.0, + "new_cases": 768.0, + "new_cases_smoothed": 611.429, + "total_deaths": 9733.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 6374.413, + "new_cases_per_million": 66.266, + "new_cases_smoothed_per_million": 52.757, + "total_deaths_per_million": 839.803, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 22843.0, + "total_tests": 1857007.0, + "total_tests_per_thousand": 160.23, + "new_tests_per_thousand": 1.971, + "new_tests_smoothed": 20960.0, + "new_tests_smoothed_per_thousand": 1.809, + "tests_per_case": 34.28, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-08-08", + "total_cases": 74649.0, + "new_cases": 772.0, + "new_cases_smoothed": 624.0, + "total_deaths": 9739.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 6441.024, + "new_cases_per_million": 66.611, + "new_cases_smoothed_per_million": 53.841, + "total_deaths_per_million": 840.321, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 16693.0, + "total_tests": 1873700.0, + "total_tests_per_thousand": 161.671, + "new_tests_per_thousand": 1.44, + "new_tests_smoothed": 20423.0, + "new_tests_smoothed_per_thousand": 1.762, + "tests_per_case": 32.729, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-08-09", + "total_cases": 74952.0, + "new_cases": 303.0, + "new_cases_smoothed": 623.143, + "total_deaths": 9741.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 6467.169, + "new_cases_per_million": 26.144, + "new_cases_smoothed_per_million": 53.767, + "total_deaths_per_million": 840.494, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 9964.0, + "total_tests": 1883664.0, + "total_tests_per_thousand": 162.53, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 20175.0, + "new_tests_smoothed_per_thousand": 1.741, + "tests_per_case": 32.376, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-10", + "total_cases": 75073.0, + "new_cases": 121.0, + "new_cases_smoothed": 619.286, + "total_deaths": 9746.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 6477.609, + "new_cases_per_million": 10.44, + "new_cases_smoothed_per_million": 53.435, + "total_deaths_per_million": 840.925, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 17043.0, + "total_tests": 1900707.0, + "total_tests_per_thousand": 164.001, + "new_tests_per_thousand": 1.471, + "new_tests_smoothed": 20203.0, + "new_tests_smoothed_per_thousand": 1.743, + "tests_per_case": 32.623000000000005, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-11", + "total_cases": 75946.0, + "new_cases": 873.0, + "new_cases_smoothed": 630.571, + "total_deaths": 9757.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6552.935, + "new_cases_per_million": 75.326, + "new_cases_smoothed_per_million": 54.408, + "total_deaths_per_million": 841.874, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 25663.0, + "total_tests": 1926370.0, + "total_tests_per_thousand": 166.215, + "new_tests_per_thousand": 2.214, + "new_tests_smoothed": 20229.0, + "new_tests_smoothed_per_thousand": 1.745, + "tests_per_case": 32.08, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-12", + "total_cases": 76663.0, + "new_cases": 717.0, + "new_cases_smoothed": 617.0, + "total_deaths": 9770.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 6614.801, + "new_cases_per_million": 61.866, + "new_cases_smoothed_per_million": 53.237, + "total_deaths_per_million": 842.996, + "new_deaths_per_million": 1.122, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 22073.0, + "total_tests": 1948443.0, + "total_tests_per_thousand": 168.12, + "new_tests_per_thousand": 1.905, + "new_tests_smoothed": 19642.0, + "new_tests_smoothed_per_thousand": 1.695, + "tests_per_case": 31.835, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-13", + "total_cases": 77274.0, + "new_cases": 611.0, + "new_cases_smoothed": 595.0, + "total_deaths": 9781.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 6667.52, + "new_cases_per_million": 52.72, + "new_cases_smoothed_per_million": 51.339, + "total_deaths_per_million": 843.945, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 0.641, + "new_tests": 21862.0, + "total_tests": 1970305.0, + "total_tests_per_thousand": 170.006, + "new_tests_per_thousand": 1.886, + "new_tests_smoothed": 19449.0, + "new_tests_smoothed_per_thousand": 1.678, + "tests_per_case": 32.687, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-14", + "total_cases": 77943.0, + "new_cases": 669.0, + "new_cases_smoothed": 580.857, + "total_deaths": 9793.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 6725.244, + "new_cases_per_million": 57.724, + "new_cases_smoothed_per_million": 50.119, + "total_deaths_per_million": 844.981, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.74, + "new_tests": 18683.0, + "total_tests": 1988988.0, + "total_tests_per_thousand": 171.618, + "new_tests_per_thousand": 1.612, + "new_tests_smoothed": 18854.0, + "new_tests_smoothed_per_thousand": 1.627, + "tests_per_case": 32.459, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-15", + "total_cases": 78530.0, + "new_cases": 587.0, + "new_cases_smoothed": 554.429, + "total_deaths": 9805.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 6775.893, + "new_cases_per_million": 50.649, + "new_cases_smoothed_per_million": 47.838, + "total_deaths_per_million": 846.016, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.814, + "new_tests": 12991.0, + "total_tests": 2001979.0, + "total_tests_per_thousand": 172.739, + "new_tests_per_thousand": 1.121, + "new_tests_smoothed": 18326.0, + "new_tests_smoothed_per_thousand": 1.581, + "tests_per_case": 33.054, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-16", + "total_cases": 78693.0, + "new_cases": 163.0, + "new_cases_smoothed": 534.429, + "total_deaths": 9814.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 6789.957, + "new_cases_per_million": 14.064, + "new_cases_smoothed_per_million": 46.113, + "total_deaths_per_million": 846.793, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 0.9, + "new_tests": 8931.0, + "total_tests": 2010910.0, + "total_tests_per_thousand": 173.51, + "new_tests_per_thousand": 0.771, + "new_tests_smoothed": 18178.0, + "new_tests_smoothed_per_thousand": 1.568, + "tests_per_case": 34.014, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-17", + "total_cases": 78825.0, + "new_cases": 132.0, + "new_cases_smoothed": 536.0, + "total_deaths": 9821.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 6801.347, + "new_cases_per_million": 11.39, + "new_cases_smoothed_per_million": 46.248, + "total_deaths_per_million": 847.396, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 17999.0, + "total_tests": 2028909.0, + "total_tests_per_thousand": 175.063, + "new_tests_per_thousand": 1.553, + "new_tests_smoothed": 18315.0, + "new_tests_smoothed_per_thousand": 1.58, + "tests_per_case": 34.17, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-18", + "total_cases": 79532.0, + "new_cases": 707.0, + "new_cases_smoothed": 512.286, + "total_deaths": 9828.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 6862.35, + "new_cases_per_million": 61.003, + "new_cases_smoothed_per_million": 44.202, + "total_deaths_per_million": 848.0, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.875, + "new_tests": 27123.0, + "total_tests": 2056032.0, + "total_tests_per_thousand": 177.403, + "new_tests_per_thousand": 2.34, + "new_tests_smoothed": 18523.0, + "new_tests_smoothed_per_thousand": 1.598, + "tests_per_case": 36.158, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-19", + "total_cases": 80257.0, + "new_cases": 725.0, + "new_cases_smoothed": 513.429, + "total_deaths": 9839.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 6924.906, + "new_cases_per_million": 62.556, + "new_cases_smoothed_per_million": 44.301, + "total_deaths_per_million": 848.95, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 0.851, + "new_tests": 23090.0, + "total_tests": 2079122.0, + "total_tests_per_thousand": 179.395, + "new_tests_per_thousand": 1.992, + "new_tests_smoothed": 18668.0, + "new_tests_smoothed_per_thousand": 1.611, + "tests_per_case": 36.359, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-20", + "total_cases": 80869.0, + "new_cases": 612.0, + "new_cases_smoothed": 513.571, + "total_deaths": 9848.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 6977.712, + "new_cases_per_million": 52.806, + "new_cases_smoothed_per_million": 44.313, + "total_deaths_per_million": 849.726, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 0.826, + "new_tests": 23869.0, + "total_tests": 2102991.0, + "total_tests_per_thousand": 181.455, + "new_tests_per_thousand": 2.06, + "new_tests_smoothed": 18955.0, + "new_tests_smoothed_per_thousand": 1.636, + "tests_per_case": 36.908, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-21", + "total_cases": 81450.0, + "new_cases": 581.0, + "new_cases_smoothed": 501.0, + "total_deaths": 9852.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 7027.843, + "new_cases_per_million": 50.131, + "new_cases_smoothed_per_million": 43.228, + "total_deaths_per_million": 850.071, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.727, + "new_tests": 20005.0, + "total_tests": 2122996.0, + "total_tests_per_thousand": 183.181, + "new_tests_per_thousand": 1.726, + "new_tests_smoothed": 19144.0, + "new_tests_smoothed_per_thousand": 1.652, + "tests_per_case": 38.211999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-22", + "total_cases": 81961.0, + "new_cases": 511.0, + "new_cases_smoothed": 490.143, + "total_deaths": 9855.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 7071.934, + "new_cases_per_million": 44.091, + "new_cases_smoothed_per_million": 42.292, + "total_deaths_per_million": 850.33, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.616, + "new_tests": 13293.0, + "total_tests": 2136289.0, + "total_tests_per_thousand": 184.328, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 19187.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 39.146, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-23", + "total_cases": 82164.0, + "new_cases": 203.0, + "new_cases_smoothed": 495.857, + "total_deaths": 9860.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 7089.45, + "new_cases_per_million": 17.516, + "new_cases_smoothed_per_million": 42.785, + "total_deaths_per_million": 850.762, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 7527.0, + "total_tests": 2143816.0, + "total_tests_per_thousand": 184.977, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 18987.0, + "new_tests_smoothed_per_thousand": 1.638, + "tests_per_case": 38.291, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-24", + "total_cases": 82279.0, + "new_cases": 115.0, + "new_cases_smoothed": 493.429, + "total_deaths": 9863.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 7099.372, + "new_cases_per_million": 9.923, + "new_cases_smoothed_per_million": 42.575, + "total_deaths_per_million": 851.02, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 16676.0, + "total_tests": 2160492.0, + "total_tests_per_thousand": 186.416, + "new_tests_per_thousand": 1.439, + "new_tests_smoothed": 18798.0, + "new_tests_smoothed_per_thousand": 1.622, + "tests_per_case": 38.097, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-25", + "total_cases": 82886.0, + "new_cases": 607.0, + "new_cases_smoothed": 479.143, + "total_deaths": 9868.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 7151.747, + "new_cases_per_million": 52.374, + "new_cases_smoothed_per_million": 41.342, + "total_deaths_per_million": 851.452, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 21975.0, + "total_tests": 2182467.0, + "total_tests_per_thousand": 188.312, + "new_tests_per_thousand": 1.896, + "new_tests_smoothed": 18062.0, + "new_tests_smoothed_per_thousand": 1.558, + "tests_per_case": 37.696, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-26", + "total_cases": 83413.0, + "new_cases": 527.0, + "new_cases_smoothed": 450.857, + "total_deaths": 9873.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7197.219, + "new_cases_per_million": 45.472, + "new_cases_smoothed_per_million": 38.902, + "total_deaths_per_million": 851.883, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 20882.0, + "total_tests": 2203349.0, + "total_tests_per_thousand": 190.114, + "new_tests_per_thousand": 1.802, + "new_tests_smoothed": 17747.0, + "new_tests_smoothed_per_thousand": 1.531, + "tests_per_case": 39.363, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-27", + "total_cases": 83937.0, + "new_cases": 524.0, + "new_cases_smoothed": 438.286, + "total_deaths": 9877.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 7242.432, + "new_cases_per_million": 45.213, + "new_cases_smoothed_per_million": 37.817, + "total_deaths_per_million": 852.228, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.357, + "new_tests": 17677.0, + "total_tests": 2221026.0, + "total_tests_per_thousand": 191.639, + "new_tests_per_thousand": 1.525, + "new_tests_smoothed": 16862.0, + "new_tests_smoothed_per_thousand": 1.455, + "tests_per_case": 38.473, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-28", + "total_cases": 84470.0, + "new_cases": 533.0, + "new_cases_smoothed": 431.429, + "total_deaths": 9880.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7288.421, + "new_cases_per_million": 45.989, + "new_cases_smoothed_per_million": 37.225, + "total_deaths_per_million": 852.487, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 21545.0, + "total_tests": 2242571.0, + "total_tests_per_thousand": 193.498, + "new_tests_per_thousand": 1.859, + "new_tests_smoothed": 17082.0, + "new_tests_smoothed_per_thousand": 1.474, + "tests_per_case": 39.594, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-29", + "total_cases": 85078.0, + "new_cases": 608.0, + "new_cases_smoothed": 445.286, + "total_deaths": 9884.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 7340.882, + "new_cases_per_million": 52.461, + "new_cases_smoothed_per_million": 38.421, + "total_deaths_per_million": 852.832, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.357, + "new_tests": 15809.0, + "total_tests": 2258380.0, + "total_tests_per_thousand": 194.862, + "new_tests_per_thousand": 1.364, + "new_tests_smoothed": 17442.0, + "new_tests_smoothed_per_thousand": 1.505, + "tests_per_case": 39.183, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-30", + "total_cases": 85264.0, + "new_cases": 186.0, + "new_cases_smoothed": 442.857, + "total_deaths": 9890.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 7356.931, + "new_cases_per_million": 16.049, + "new_cases_smoothed_per_million": 38.212, + "total_deaths_per_million": 853.35, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 10452.0, + "total_tests": 2268832.0, + "total_tests_per_thousand": 195.764, + "new_tests_per_thousand": 0.902, + "new_tests_smoothed": 17859.0, + "new_tests_smoothed_per_thousand": 1.541, + "tests_per_case": 40.34, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-31", + "total_cases": 85381.0, + "new_cases": 117.0, + "new_cases_smoothed": 443.143, + "total_deaths": 9891.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7367.026, + "new_cases_per_million": 10.095, + "new_cases_smoothed_per_million": 38.236, + "total_deaths_per_million": 853.436, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 13021.0, + "total_tests": 2281853.0, + "total_tests_per_thousand": 196.888, + "new_tests_per_thousand": 1.124, + "new_tests_smoothed": 17337.0, + "new_tests_smoothed_per_thousand": 1.496, + "tests_per_case": 39.135, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-09-01", + "total_cases": 86009.0, + "new_cases": 628.0, + "new_cases_smoothed": 446.143, + "total_deaths": 9894.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 7421.212, + "new_cases_per_million": 54.186, + "new_cases_smoothed_per_million": 38.495, + "total_deaths_per_million": 853.695, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.32, + "stringency_index": 50.93 + }, + { + "date": "2020-09-02", + "total_cases": 86528.0, + "new_cases": 519.0, + "new_cases_smoothed": 445.0, + "total_deaths": 9897.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 7465.994, + "new_cases_per_million": 44.781, + "new_cases_smoothed_per_million": 38.396, + "total_deaths_per_million": 853.954, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 50.93 + }, + { + "date": "2020-09-03", + "total_cases": 86948.0, + "new_cases": 420.0, + "new_cases_smoothed": 430.143, + "total_deaths": 9899.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7502.233, + "new_cases_per_million": 36.239, + "new_cases_smoothed_per_million": 37.115, + "total_deaths_per_million": 854.127, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.271 + }, + { + "date": "2020-09-04", + "total_cases": 87080.0, + "new_cases": 132.0, + "new_cases_smoothed": 372.857, + "total_deaths": 9901.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 7513.623, + "new_cases_per_million": 11.39, + "new_cases_smoothed_per_million": 32.172, + "total_deaths_per_million": 854.299, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.259 + }, + { + "date": "2020-09-05", + "total_cases": 87080.0, + "new_cases": 0.0, + "new_cases_smoothed": 286.0, + "total_deaths": 9901.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 7513.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.677, + "total_deaths_per_million": 854.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21 + } + ] + }, + "BLZ": { + "continent": "North America", + "location": "Belize", + "population": 397621.0, + "population_density": 16.426, + "median_age": 25.0, + "aged_65_older": 3.853, + "aged_70_older": 2.279, + "gdp_per_capita": 7824.362, + "cardiovasc_death_rate": 176.957, + "diabetes_prevalence": 17.11, + "handwashing_facilities": 90.083, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 74.62, + "data": [ + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.515, + "new_cases_per_million": 2.515, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.515, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.03, + "new_cases_per_million": 2.515, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.03, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.03, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-29", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.03, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-30", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.03, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-31", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.545, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-04-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.545, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.545, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.545, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-04", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.06, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-05", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-06", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.575, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 2.515, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-07", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.605, + "new_cases_per_million": 5.03, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 2.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 2.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.12, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 2.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-10", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.635, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 2.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-11", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.15, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 75.0 + }, + { + "date": "2020-04-12", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.694, + "new_cases_per_million": 7.545, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 75.0 + }, + { + "date": "2020-04-13", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 35.209, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-14", + "total_cases": 18.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.269, + "new_cases_per_million": 10.06, + "new_cases_smoothed_per_million": 3.952, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.952, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.593, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 75.0 + }, + { + "date": "2020-04-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.874, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-31", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-06-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-09", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.784, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-10", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.299, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-11", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.299, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-12", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.299, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-13", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.299, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-14", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.299, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-15", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.814, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-16", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.814, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-17", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.814, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-18", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.329, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-20", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-21", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-22", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-23", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.844, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-24", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.844, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-25", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.844, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-26", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.844, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-27", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.359, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-01", + "total_cases": 28.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.419, + "new_cases_per_million": 10.06, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-02", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.419, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-03", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.419, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-04", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 5.03, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-05", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-06", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-07", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-08", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-09", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-10", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.994, + "new_cases_per_million": 7.545, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-11", + "total_cases": 37.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.053, + "new_cases_per_million": 10.06, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-12", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.053, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-13", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.053, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-14", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.053, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-15", + "total_cases": 39.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.083, + "new_cases_per_million": 5.03, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-16", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-17", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.598, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-18", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-19", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-20", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-21", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.628, + "new_cases_per_million": 5.03, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-22", + "total_cases": 43.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.143, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-23", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-24", + "total_cases": 47.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.203, + "new_cases_per_million": 10.06, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-25", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 2.874, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-26", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.874, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-27", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.874, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-28", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-29", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-30", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.796, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-31", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-01", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-02", + "total_cases": 56.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.838, + "new_cases_per_million": 20.12, + "new_cases_smoothed_per_million": 2.874, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-03", + "total_cases": 57.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.353, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-04", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.353, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-05", + "total_cases": 72.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.077, + "new_cases_per_million": 37.724, + "new_cases_smoothed_per_million": 8.623, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-06", + "total_cases": 86.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 216.286, + "new_cases_per_million": 35.209, + "new_cases_smoothed_per_million": 13.653, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-07", + "total_cases": 114.0, + "new_cases": 28.0, + "new_cases_smoothed": 9.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.705, + "new_cases_per_million": 70.419, + "new_cases_smoothed_per_million": 23.712, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-08", + "total_cases": 146.0, + "new_cases": 32.0, + "new_cases_smoothed": 14.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 367.184, + "new_cases_per_million": 80.479, + "new_cases_smoothed_per_million": 35.209, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-09", + "total_cases": 153.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 384.789, + "new_cases_per_million": 17.605, + "new_cases_smoothed_per_million": 34.85, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-10", + "total_cases": 154.0, + "new_cases": 1.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.303, + "new_cases_per_million": 2.515, + "new_cases_smoothed_per_million": 34.85, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-11", + "total_cases": 177.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 445.148, + "new_cases_per_million": 57.844, + "new_cases_smoothed_per_million": 43.114, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-12", + "total_cases": 210.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 528.141, + "new_cases_per_million": 82.994, + "new_cases_smoothed_per_million": 49.581, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-13", + "total_cases": 296.0, + "new_cases": 86.0, + "new_cases_smoothed": 30.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 744.427, + "new_cases_per_million": 216.286, + "new_cases_smoothed_per_million": 75.449, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-14", + "total_cases": 356.0, + "new_cases": 60.0, + "new_cases_smoothed": 34.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 895.325, + "new_cases_per_million": 150.897, + "new_cases_smoothed_per_million": 86.946, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-15", + "total_cases": 388.0, + "new_cases": 32.0, + "new_cases_smoothed": 34.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 975.804, + "new_cases_per_million": 80.479, + "new_cases_smoothed_per_million": 86.946, + "total_deaths_per_million": 7.545, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 70.83 + }, + { + "date": "2020-08-16", + "total_cases": 452.0, + "new_cases": 64.0, + "new_cases_smoothed": 42.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1136.761, + "new_cases_per_million": 160.957, + "new_cases_smoothed_per_million": 107.425, + "total_deaths_per_million": 7.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 70.83 + }, + { + "date": "2020-08-17", + "total_cases": 452.0, + "new_cases": 0.0, + "new_cases_smoothed": 42.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1136.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 107.065, + "total_deaths_per_million": 7.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359, + "stringency_index": 70.83 + }, + { + "date": "2020-08-18", + "total_cases": 475.0, + "new_cases": 23.0, + "new_cases_smoothed": 42.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1194.605, + "new_cases_per_million": 57.844, + "new_cases_smoothed_per_million": 107.065, + "total_deaths_per_million": 10.06, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 70.83 + }, + { + "date": "2020-08-19", + "total_cases": 553.0, + "new_cases": 78.0, + "new_cases_smoothed": 49.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1390.772, + "new_cases_per_million": 196.167, + "new_cases_smoothed_per_million": 123.233, + "total_deaths_per_million": 10.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 70.83 + }, + { + "date": "2020-08-20", + "total_cases": 553.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1390.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 92.335, + "total_deaths_per_million": 12.575, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 1.078, + "stringency_index": 70.83 + }, + { + "date": "2020-08-21", + "total_cases": 605.0, + "new_cases": 52.0, + "new_cases_smoothed": 35.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1521.549, + "new_cases_per_million": 130.778, + "new_cases_smoothed_per_million": 89.461, + "total_deaths_per_million": 12.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.078, + "stringency_index": 70.83 + }, + { + "date": "2020-08-22", + "total_cases": 648.0, + "new_cases": 43.0, + "new_cases_smoothed": 37.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1629.693, + "new_cases_per_million": 108.143, + "new_cases_smoothed_per_million": 93.413, + "total_deaths_per_million": 12.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 70.83 + }, + { + "date": "2020-08-23", + "total_cases": 668.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1679.992, + "new_cases_per_million": 50.299, + "new_cases_smoothed_per_million": 77.604, + "total_deaths_per_million": 15.09, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 1.078, + "stringency_index": 70.83 + }, + { + "date": "2020-08-24", + "total_cases": 686.0, + "new_cases": 18.0, + "new_cases_smoothed": 33.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1725.261, + "new_cases_per_million": 45.269, + "new_cases_smoothed_per_million": 84.071, + "total_deaths_per_million": 15.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.078, + "stringency_index": 70.83 + }, + { + "date": "2020-08-25", + "total_cases": 713.0, + "new_cases": 27.0, + "new_cases_smoothed": 34.0, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1793.165, + "new_cases_per_million": 67.904, + "new_cases_smoothed_per_million": 85.509, + "total_deaths_per_million": 25.15, + "new_deaths_per_million": 10.06, + "new_deaths_smoothed_per_million": 2.156, + "stringency_index": 70.83 + }, + { + "date": "2020-08-26", + "total_cases": 730.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1835.919, + "new_cases_per_million": 42.754, + "new_cases_smoothed_per_million": 63.593, + "total_deaths_per_million": 25.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.156, + "stringency_index": 70.83 + }, + { + "date": "2020-08-27", + "total_cases": 760.0, + "new_cases": 30.0, + "new_cases_smoothed": 29.571, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1911.368, + "new_cases_per_million": 75.449, + "new_cases_smoothed_per_million": 74.371, + "total_deaths_per_million": 27.665, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 2.156, + "stringency_index": 70.83 + }, + { + "date": "2020-08-28", + "total_cases": 818.0, + "new_cases": 58.0, + "new_cases_smoothed": 30.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2057.235, + "new_cases_per_million": 145.868, + "new_cases_smoothed_per_million": 76.527, + "total_deaths_per_million": 30.179, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 2.515, + "stringency_index": 70.83 + }, + { + "date": "2020-08-29", + "total_cases": 870.0, + "new_cases": 52.0, + "new_cases_smoothed": 31.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2188.013, + "new_cases_per_million": 130.778, + "new_cases_smoothed_per_million": 79.76, + "total_deaths_per_million": 30.179, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.515, + "stringency_index": 70.83 + }, + { + "date": "2020-08-30", + "total_cases": 964.0, + "new_cases": 94.0, + "new_cases_smoothed": 42.286, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2424.419, + "new_cases_per_million": 236.406, + "new_cases_smoothed_per_million": 106.347, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 2.515, + "new_deaths_smoothed_per_million": 2.515, + "stringency_index": 70.83 + }, + { + "date": "2020-08-31", + "total_cases": 994.0, + "new_cases": 30.0, + "new_cases_smoothed": 44.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2499.868, + "new_cases_per_million": 75.449, + "new_cases_smoothed_per_million": 110.658, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.515, + "stringency_index": 70.83 + }, + { + "date": "2020-09-01", + "total_cases": 1007.0, + "new_cases": 13.0, + "new_cases_smoothed": 42.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2532.562, + "new_cases_per_million": 32.694, + "new_cases_smoothed_per_million": 105.628, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.078, + "stringency_index": 70.83 + }, + { + "date": "2020-09-02", + "total_cases": 1050.0, + "new_cases": 43.0, + "new_cases_smoothed": 45.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2640.706, + "new_cases_per_million": 108.143, + "new_cases_smoothed_per_million": 114.969, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.078 + }, + { + "date": "2020-09-03", + "total_cases": 1101.0, + "new_cases": 51.0, + "new_cases_smoothed": 48.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2768.968, + "new_cases_per_million": 128.263, + "new_cases_smoothed_per_million": 122.514, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.719 + }, + { + "date": "2020-09-04", + "total_cases": 1118.0, + "new_cases": 17.0, + "new_cases_smoothed": 42.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2811.723, + "new_cases_per_million": 42.754, + "new_cases_smoothed_per_million": 107.784, + "total_deaths_per_million": 32.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.359 + }, + { + "date": "2020-09-05", + "total_cases": 1152.0, + "new_cases": 34.0, + "new_cases_smoothed": 40.286, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2897.231, + "new_cases_per_million": 85.509, + "new_cases_smoothed_per_million": 101.317, + "total_deaths_per_million": 37.724, + "new_deaths_per_million": 5.03, + "new_deaths_smoothed_per_million": 1.078 + } + ] + }, + "BEN": { + "continent": "Africa", + "location": "Benin", + "population": 12123198.0, + "population_density": 99.11, + "median_age": 18.8, + "aged_65_older": 3.244, + "aged_70_older": 1.942, + "gdp_per_capita": 2064.236, + "extreme_poverty": 49.6, + "cardiovasc_death_rate": 235.848, + "diabetes_prevalence": 0.99, + "female_smokers": 0.6, + "male_smokers": 12.3, + "handwashing_facilities": 11.035, + "hospital_beds_per_thousand": 0.5, + "life_expectancy": 61.77, + "data": [ + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.082, + "new_cases_per_million": 0.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.082, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.082, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.165, + "new_cases_per_million": 0.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.165, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.165, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-24", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.412, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-25", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.412, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.412, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.495, + "new_cases_per_million": 0.082, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-30", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-03-31", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-01", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.66, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-02", + "total_cases": 13.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.072, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-04", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.32, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-06", + "total_cases": 22.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.815, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.189, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-07", + "total_cases": 26.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.145, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.236, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-08", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-09", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-10", + "total_cases": 30.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.475, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-11", + "total_cases": 35.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-12", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-13", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-04-14", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-15", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-16", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-17", + "total_cases": 37.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.052, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-18", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-19", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-20", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-21", + "total_cases": 54.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.454, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-22", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-23", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-24", + "total_cases": 58.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.784, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-25", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-26", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-27", + "total_cases": 64.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.279, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.318, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-28", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.279, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-29", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.279, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-30", + "total_cases": 69.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.692, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-01", + "total_cases": 84.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.929, + "new_cases_per_million": 1.237, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-02", + "total_cases": 90.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.424, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-03", + "total_cases": 90.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-04", + "total_cases": 90.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-05", + "total_cases": 96.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.919, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-06", + "total_cases": 96.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.919, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 70.83 + }, + { + "date": "2020-05-07", + "total_cases": 102.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.414, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.389, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-08", + "total_cases": 140.0, + "new_cases": 38.0, + "new_cases_smoothed": 8.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.548, + "new_cases_per_million": 3.134, + "new_cases_smoothed_per_million": 0.66, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-09", + "total_cases": 242.0, + "new_cases": 102.0, + "new_cases_smoothed": 21.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.962, + "new_cases_per_million": 8.414, + "new_cases_smoothed_per_million": 1.791, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-10", + "total_cases": 284.0, + "new_cases": 42.0, + "new_cases_smoothed": 27.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.426, + "new_cases_per_million": 3.464, + "new_cases_smoothed_per_million": 2.286, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-11", + "total_cases": 319.0, + "new_cases": 35.0, + "new_cases_smoothed": 32.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.313, + "new_cases_per_million": 2.887, + "new_cases_smoothed_per_million": 2.698, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.313, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.628, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 327.0, + "new_cases": 8.0, + "new_cases_smoothed": 33.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.973, + "new_cases_per_million": 0.66, + "new_cases_smoothed_per_million": 2.722, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.651, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-15", + "total_cases": 339.0, + "new_cases": 12.0, + "new_cases_smoothed": 28.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.963, + "new_cases_per_million": 0.99, + "new_cases_smoothed_per_million": 2.345, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.648, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-05-18", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.236, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.236, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 130.0, + "new_cases": -209.0, + "new_cases_smoothed": -28.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.723, + "new_cases_per_million": -17.24, + "new_cases_smoothed_per_million": -2.321, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": -28.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -2.321, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 135.0, + "new_cases": 5.0, + "new_cases_smoothed": -29.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.136, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": -2.404, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": -29.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.136, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -2.404, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": -29.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.136, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -2.404, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 191.0, + "new_cases": 56.0, + "new_cases_smoothed": -21.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.755, + "new_cases_per_million": 4.619, + "new_cases_smoothed_per_million": -1.744, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-26", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": -21.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -1.744, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-27", + "total_cases": 208.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.157, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-28", + "total_cases": 210.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.322, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.943, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 57.41 + }, + { + "date": "2020-05-29", + "total_cases": 210.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.884, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-30", + "total_cases": 224.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.477, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 1.049, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-31", + "total_cases": 232.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.137, + "new_cases_per_million": 0.66, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-01", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 243.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.044, + "new_cases_per_million": 0.907, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-03", + "total_cases": 244.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.127, + "new_cases_per_million": 0.082, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-04", + "total_cases": 244.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.401, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-05", + "total_cases": 261.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.529, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-06", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-07", + "total_cases": 268.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.106, + "new_cases_per_million": 0.577, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-08", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-09", + "total_cases": 305.0, + "new_cases": 37.0, + "new_cases_smoothed": 8.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.158, + "new_cases_per_million": 3.052, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-10", + "total_cases": 305.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-11", + "total_cases": 305.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-12", + "total_cases": 305.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-06-13", + "total_cases": 388.0, + "new_cases": 83.0, + "new_cases_smoothed": 18.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.005, + "new_cases_per_million": 6.846, + "new_cases_smoothed_per_million": 1.497, + "total_deaths_per_million": 0.412, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-06-14", + "total_cases": 412.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 33.984, + "new_cases_per_million": 1.98, + "new_cases_smoothed_per_million": 1.697, + "total_deaths_per_million": 0.495, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-06-15", + "total_cases": 470.0, + "new_cases": 58.0, + "new_cases_smoothed": 28.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 38.769, + "new_cases_per_million": 4.784, + "new_cases_smoothed_per_million": 2.38, + "total_deaths_per_million": 0.577, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-06-16", + "total_cases": 483.0, + "new_cases": 13.0, + "new_cases_smoothed": 25.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 39.841, + "new_cases_per_million": 1.072, + "new_cases_smoothed_per_million": 2.098, + "total_deaths_per_million": 0.742, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-06-17", + "total_cases": 532.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 43.883, + "new_cases_per_million": 4.042, + "new_cases_smoothed_per_million": 2.675, + "total_deaths_per_million": 0.742, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-06-18", + "total_cases": 572.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 47.182, + "new_cases_per_million": 3.299, + "new_cases_smoothed_per_million": 3.146, + "total_deaths_per_million": 0.742, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-06-19", + "total_cases": 597.0, + "new_cases": 25.0, + "new_cases_smoothed": 41.714, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 49.244, + "new_cases_per_million": 2.062, + "new_cases_smoothed_per_million": 3.441, + "total_deaths_per_million": 0.907, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 41.67 + }, + { + "date": "2020-06-20", + "total_cases": 650.0, + "new_cases": 53.0, + "new_cases_smoothed": 37.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 53.616, + "new_cases_per_million": 4.372, + "new_cases_smoothed_per_million": 3.087, + "total_deaths_per_million": 0.907, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 41.67 + }, + { + "date": "2020-06-21", + "total_cases": 650.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 53.616, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.805, + "total_deaths_per_million": 0.907, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-06-22", + "total_cases": 765.0, + "new_cases": 115.0, + "new_cases_smoothed": 42.143, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 63.102, + "new_cases_per_million": 9.486, + "new_cases_smoothed_per_million": 3.476, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 41.67 + }, + { + "date": "2020-06-23", + "total_cases": 807.0, + "new_cases": 42.0, + "new_cases_smoothed": 46.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 66.567, + "new_cases_per_million": 3.464, + "new_cases_smoothed_per_million": 3.818, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-06-24", + "total_cases": 850.0, + "new_cases": 43.0, + "new_cases_smoothed": 45.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 70.114, + "new_cases_per_million": 3.547, + "new_cases_smoothed_per_million": 3.747, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-06-25", + "total_cases": 902.0, + "new_cases": 52.0, + "new_cases_smoothed": 47.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.403, + "new_cases_per_million": 4.289, + "new_cases_smoothed_per_million": 3.889, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-06-26", + "total_cases": 1017.0, + "new_cases": 115.0, + "new_cases_smoothed": 60.0, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 83.889, + "new_cases_per_million": 9.486, + "new_cases_smoothed_per_million": 4.949, + "total_deaths_per_million": 1.155, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-06-27", + "total_cases": 1053.0, + "new_cases": 36.0, + "new_cases_smoothed": 57.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 86.858, + "new_cases_per_million": 2.97, + "new_cases_smoothed_per_million": 4.749, + "total_deaths_per_million": 1.155, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-06-28", + "total_cases": 1124.0, + "new_cases": 71.0, + "new_cases_smoothed": 67.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 92.715, + "new_cases_per_million": 5.857, + "new_cases_smoothed_per_million": 5.586, + "total_deaths_per_million": 1.155, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-06-29", + "total_cases": 1149.0, + "new_cases": 25.0, + "new_cases_smoothed": 54.857, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 94.777, + "new_cases_per_million": 2.062, + "new_cases_smoothed_per_million": 4.525, + "total_deaths_per_million": 1.32, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-06-30", + "total_cases": 1187.0, + "new_cases": 38.0, + "new_cases_smoothed": 54.286, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 97.911, + "new_cases_per_million": 3.134, + "new_cases_smoothed_per_million": 4.478, + "total_deaths_per_million": 1.567, + "new_deaths_per_million": 0.247, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 41.67 + }, + { + "date": "2020-07-01", + "total_cases": 1199.0, + "new_cases": 12.0, + "new_cases_smoothed": 49.857, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.99, + "new_cases_smoothed_per_million": 4.113, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 41.67 + }, + { + "date": "2020-07-02", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 42.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.5, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 41.67 + }, + { + "date": "2020-07-03", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.145, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 41.67 + }, + { + "date": "2020-07-04", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.72, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 41.67 + }, + { + "date": "2020-07-05", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.884, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 41.67 + }, + { + "date": "2020-07-06", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-07", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-07-08", + "total_cases": 1199.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.732, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-09", + "total_cases": 1285.0, + "new_cases": 86.0, + "new_cases_smoothed": 12.286, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 105.995, + "new_cases_per_million": 7.094, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 1.897, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-07-10", + "total_cases": 1285.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 105.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 1.897, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-07-11", + "total_cases": 1285.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 105.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 1.897, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-07-12", + "total_cases": 1378.0, + "new_cases": 93.0, + "new_cases_smoothed": 25.571, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.666, + "new_cases_per_million": 7.671, + "new_cases_smoothed_per_million": 2.109, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.247, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-13", + "total_cases": 1378.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.109, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-14", + "total_cases": 1378.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.109, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-15", + "total_cases": 1378.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.109, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-16", + "total_cases": 1378.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 113.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.096, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-07-17", + "total_cases": 1463.0, + "new_cases": 85.0, + "new_cases_smoothed": 25.429, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 120.678, + "new_cases_per_million": 7.011, + "new_cases_smoothed_per_million": 2.098, + "total_deaths_per_million": 2.31, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-18", + "total_cases": 1602.0, + "new_cases": 139.0, + "new_cases_smoothed": 45.286, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 132.143, + "new_cases_per_million": 11.466, + "new_cases_smoothed_per_million": 3.735, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.247, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 41.67 + }, + { + "date": "2020-07-19", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.64, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-20", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.64, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-21", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.64, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-22", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.64, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-23", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.64, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 41.67 + }, + { + "date": "2020-07-24", + "total_cases": 1694.0, + "new_cases": 92.0, + "new_cases_smoothed": 33.0, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 139.732, + "new_cases_per_million": 7.589, + "new_cases_smoothed_per_million": 2.722, + "total_deaths_per_million": 2.805, + "new_deaths_per_million": 0.247, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 41.67 + }, + { + "date": "2020-07-25", + "total_cases": 1694.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 139.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.084, + "total_deaths_per_million": 2.805, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-07-26", + "total_cases": 1694.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 139.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.084, + "total_deaths_per_million": 2.805, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-07-27", + "total_cases": 1770.0, + "new_cases": 76.0, + "new_cases_smoothed": 24.0, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 146.001, + "new_cases_per_million": 6.269, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 2.887, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-07-28", + "total_cases": 1770.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 146.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 2.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-07-29", + "total_cases": 1770.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 146.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 2.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-07-30", + "total_cases": 1770.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 146.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 2.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 41.67 + }, + { + "date": "2020-07-31", + "total_cases": 1770.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 146.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 2.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-01", + "total_cases": 1805.0, + "new_cases": 35.0, + "new_cases_smoothed": 15.857, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 148.888, + "new_cases_per_million": 2.887, + "new_cases_smoothed_per_million": 1.308, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-02", + "total_cases": 1805.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 148.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.308, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-03", + "total_cases": 1805.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 148.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-04", + "total_cases": 1805.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 148.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-05", + "total_cases": 1914.0, + "new_cases": 109.0, + "new_cases_smoothed": 20.571, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 157.879, + "new_cases_per_million": 8.991, + "new_cases_smoothed_per_million": 1.697, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-08-06", + "total_cases": 1914.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 157.879, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.697, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-08-07", + "total_cases": 1936.0, + "new_cases": 22.0, + "new_cases_smoothed": 23.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 159.694, + "new_cases_per_million": 1.815, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 41.67 + }, + { + "date": "2020-08-08", + "total_cases": 1936.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-09", + "total_cases": 1936.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-10", + "total_cases": 1936.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-11", + "total_cases": 1936.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 41.67 + }, + { + "date": "2020-08-12", + "total_cases": 2001.0, + "new_cases": 65.0, + "new_cases_smoothed": 12.429, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.055, + "new_cases_per_million": 5.362, + "new_cases_smoothed_per_million": 1.025, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-13", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.025, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-14", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-15", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 3.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-16", + "total_cases": 2063.0, + "new_cases": 62.0, + "new_cases_smoothed": 18.143, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.17, + "new_cases_per_million": 5.114, + "new_cases_smoothed_per_million": 1.497, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-17", + "total_cases": 2063.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.497, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-18", + "total_cases": 2063.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.497, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-19", + "total_cases": 2063.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-20", + "total_cases": 2063.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-21", + "total_cases": 2095.0, + "new_cases": 32.0, + "new_cases_smoothed": 13.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 172.809, + "new_cases_per_million": 2.64, + "new_cases_smoothed_per_million": 1.108, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-22", + "total_cases": 2095.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 172.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.108, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-23", + "total_cases": 2115.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.459, + "new_cases_per_million": 1.65, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-24", + "total_cases": 2115.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-25", + "total_cases": 2115.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-26", + "total_cases": 2115.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-27", + "total_cases": 2145.0, + "new_cases": 30.0, + "new_cases_smoothed": 11.714, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 2.475, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-28", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-29", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-30", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-08-31", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 41.67 + }, + { + "date": "2020-09-01", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012 + }, + { + "date": "2020-09-02", + "total_cases": 2145.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012 + }, + { + "date": "2020-09-03", + "total_cases": 2194.0, + "new_cases": 49.0, + "new_cases_smoothed": 7.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.975, + "new_cases_per_million": 4.042, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 2194.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.975, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2194.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.975, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 3.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BMU": { + "continent": "North America", + "location": "Bermuda", + "population": 62273.0, + "population_density": 1308.82, + "gdp_per_capita": 50669.315, + "cardiovasc_death_rate": 139.547, + "diabetes_prevalence": 13.0, + "life_expectancy": 82.59, + "data": [ + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 32.117, + "new_cases_per_million": 32.117, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 32.117, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 32.117, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-23", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 96.35, + "new_cases_per_million": 64.233, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-24", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 96.35, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-25", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 96.35, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-27", + "total_cases": 15.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.875, + "new_cases_per_million": 144.525, + "new_cases_smoothed_per_million": 29.823, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-28", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.992, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-29", + "total_cases": 22.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 353.283, + "new_cases_per_million": 80.292, + "new_cases_smoothed_per_million": 45.881, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-30", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 353.283, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-31", + "total_cases": 27.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 433.575, + "new_cases_per_million": 80.292, + "new_cases_smoothed_per_million": 48.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-04-01", + "total_cases": 32.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.866, + "new_cases_per_million": 80.292, + "new_cases_smoothed_per_million": 59.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-04-02", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-04-03", + "total_cases": 35.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 562.041, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 45.881, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-04-04", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 562.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.293, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 37.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 594.158, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 594.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 39.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 626.275, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 27.529, + "total_deaths_per_million": 32.117, + "new_deaths_per_million": 32.117, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 626.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 32.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 626.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 48.175, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 6.882, + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 48.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 770.8, + "new_cases_per_million": 144.525, + "new_cases_smoothed_per_million": 29.823, + "total_deaths_per_million": 64.233, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 9.176, + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 770.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.823, + "total_deaths_per_million": 64.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.176, + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 50.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 802.916, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 29.823, + "total_deaths_per_million": 64.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.176, + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 57.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 915.324, + "new_cases_per_million": 112.408, + "new_cases_smoothed_per_million": 45.881, + "total_deaths_per_million": 64.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.176, + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 915.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.293, + "total_deaths_per_million": 64.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 915.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.293, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 6.882, + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 81.0, + "new_cases": 24.0, + "new_cases_smoothed": 6.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1300.724, + "new_cases_per_million": 385.4, + "new_cases_smoothed_per_million": 96.35, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 83.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1332.841, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 80.292, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1332.841, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 80.292, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 86.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1381.016, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 82.586, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1381.016, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.527, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1381.016, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.527, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 98.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1573.716, + "new_cases_per_million": 192.7, + "new_cases_smoothed_per_million": 94.056, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 99.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1589.774, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 41.293, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1589.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.705, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1589.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.705, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1589.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.823, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 109.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1750.357, + "new_cases_per_million": 160.583, + "new_cases_smoothed_per_million": 52.763, + "total_deaths_per_million": 80.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 110.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1766.416, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 55.057, + "total_deaths_per_million": 96.35, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 110.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1766.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.529, + "total_deaths_per_million": 96.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 111.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1782.474, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 27.529, + "total_deaths_per_million": 96.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 114.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1830.649, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 96.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1830.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 96.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 75.93 + }, + { + "date": "2020-05-03", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1830.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-04", + "total_cases": 115.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1846.707, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-05", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1846.707, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-06", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1846.707, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-07", + "total_cases": 118.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1894.882, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-08", + "total_cases": 118.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1894.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-09", + "total_cases": 118.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1894.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-10", + "total_cases": 118.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1894.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-11", + "total_cases": 118.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1894.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 112.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-12", + "total_cases": 119.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1910.941, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 128.467, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-13", + "total_cases": 121.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1943.057, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 128.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-14", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1943.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 128.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-15", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1959.116, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 16.058, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-16", + "total_cases": 123.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1975.174, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-17", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1975.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-18", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1975.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.588, + "stringency_index": 72.22 + }, + { + "date": "2020-05-19", + "total_cases": 125.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2007.29, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-20", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2007.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-21", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2007.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.294, + "stringency_index": 72.22 + }, + { + "date": "2020-05-22", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2007.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-23", + "total_cases": 128.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2055.465, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-24", + "total_cases": 133.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2135.757, + "new_cases_per_million": 80.292, + "new_cases_smoothed_per_million": 22.94, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-25", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2135.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.94, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-26", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2135.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.352, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 139.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2232.107, + "new_cases_per_million": 96.35, + "new_cases_smoothed_per_million": 32.117, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 139.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2232.107, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.117, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 140.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2248.165, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 34.411, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2248.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.529, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-31", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2248.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-01", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2248.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-02", + "total_cases": 141.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 18.352, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-12", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2264.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-13", + "total_cases": 142.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2280.282, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-14", + "total_cases": 144.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-15", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-16", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-17", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-18", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-19", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2312.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-20", + "total_cases": 146.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-21", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-22", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-23", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-24", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-25", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-26", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-27", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-28", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-29", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-30", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-07-01", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-02", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-03", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-04", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-05", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-06", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-07", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2344.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-08", + "total_cases": 148.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2376.632, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-09", + "total_cases": 149.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2392.69, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-10", + "total_cases": 149.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2392.69, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-11", + "total_cases": 150.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-12", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-13", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-14", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-15", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-16", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2408.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-17", + "total_cases": 152.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2440.865, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-18", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2440.865, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-19", + "total_cases": 153.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-20", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-21", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-22", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-23", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-24", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-25", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-26", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2456.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-27", + "total_cases": 154.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2472.982, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2472.982, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-29", + "total_cases": 156.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-30", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-31", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-01", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-02", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-03", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-04", + "total_cases": 157.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 6.882, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-05", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-06", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-07", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-08", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-09", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2521.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-10", + "total_cases": 158.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2537.215, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-11", + "total_cases": 159.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2553.273, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-12", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2553.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-13", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2553.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-14", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2553.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-15", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2553.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-16", + "total_cases": 162.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2601.448, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-17", + "total_cases": 162.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2601.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-18", + "total_cases": 166.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2665.682, + "new_cases_per_million": 64.233, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-19", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2665.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-20", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2665.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-21", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2665.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-22", + "total_cases": 167.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2681.74, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 18.352, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-23", + "total_cases": 167.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2681.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-24", + "total_cases": 167.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2681.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.47, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-25", + "total_cases": 168.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2697.798, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-26", + "total_cases": 168.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2697.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-27", + "total_cases": 168.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2697.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-28", + "total_cases": 168.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2697.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-29", + "total_cases": 168.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2697.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-30", + "total_cases": 169.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2713.857, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-31", + "total_cases": 169.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2713.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.588, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-01", + "total_cases": 172.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2762.032, + "new_cases_per_million": 48.175, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-02", + "total_cases": 172.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2762.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-03", + "total_cases": 172.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2762.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.176, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-04", + "total_cases": 174.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2794.148, + "new_cases_per_million": 32.117, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-05", + "total_cases": 174.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2794.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.764, + "total_deaths_per_million": 144.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BTN": { + "continent": "Asia", + "location": "Bhutan", + "population": 771612.0, + "population_density": 21.188, + "median_age": 28.6, + "aged_65_older": 4.885, + "aged_70_older": 2.977, + "gdp_per_capita": 8708.597, + "extreme_poverty": 1.5, + "cardiovasc_death_rate": 217.066, + "diabetes_prevalence": 9.75, + "handwashing_facilities": 79.807, + "hospital_beds_per_thousand": 1.7, + "life_expectancy": 71.78, + "data": [ + { + "date": "2020-03-06", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.888, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 42.59 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-29", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.184, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-30", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-31", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-01", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-05", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-06", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-07", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-08", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-09", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-10", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-11", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-12", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-13", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-14", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-15", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-16", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-17", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-18", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-19", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-20", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-21", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-22", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-23", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-24", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-25", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-26", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-27", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-04", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-05", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-11", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.664, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-12", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.256, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-14", + "total_cases": 15.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.44, + "new_cases_per_million": 5.184, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-15", + "total_cases": 20.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.92, + "new_cases_per_million": 6.48, + "new_cases_smoothed_per_million": 2.407, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-16", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 2.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-17", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-18", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.104, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 27.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.992, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-26", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.992, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-27", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.992, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-28", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.288, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-29", + "total_cases": 31.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.176, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-30", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.768, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-05-31", + "total_cases": 43.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.727, + "new_cases_per_million": 12.96, + "new_cases_smoothed_per_million": 3.518, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-01", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.962, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-02", + "total_cases": 47.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.911, + "new_cases_per_million": 5.184, + "new_cases_smoothed_per_million": 3.703, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-03", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.703, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-04", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.518, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-05", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.207, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 3.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-06", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-07", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-08", + "total_cases": 59.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.463, + "new_cases_per_million": 14.256, + "new_cases_smoothed_per_million": 2.962, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-10", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 62.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.351, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.351, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.351, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 66.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.535, + "new_cases_per_million": 5.184, + "new_cases_smoothed_per_million": 3.333, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.535, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 67.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.831, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-18", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-19", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-20", + "total_cases": 68.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.127, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-21", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-22", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-23", + "total_cases": 69.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.423, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-24", + "total_cases": 70.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.719, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-25", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.719, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-26", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.719, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-27", + "total_cases": 75.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.199, + "new_cases_per_million": 6.48, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-28", + "total_cases": 76.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.495, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-29", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-30", + "total_cases": 77.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.791, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-07-01", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-02", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-03", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-04", + "total_cases": 78.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.087, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-05", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.087, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-06", + "total_cases": 80.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.679, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-07", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-08", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-09", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-10", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-11", + "total_cases": 82.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.271, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-12", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-13", + "total_cases": 84.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.863, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-14", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-15", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-16", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-17", + "total_cases": 86.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.455, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-18", + "total_cases": 87.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 112.751, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-19", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 112.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-20", + "total_cases": 89.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.343, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-21", + "total_cases": 90.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.639, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-22", + "total_cases": 92.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.231, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-23", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-24", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-25", + "total_cases": 92.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-26", + "total_cases": 93.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.527, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-27", + "total_cases": 95.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.119, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-28", + "total_cases": 99.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.303, + "new_cases_per_million": 5.184, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-29", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.303, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-30", + "total_cases": 101.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.895, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-07-31", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-01", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-02", + "total_cases": 102.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.191, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-03", + "total_cases": 103.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.487, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-04", + "total_cases": 103.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.487, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-05", + "total_cases": 105.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.079, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-06", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-07", + "total_cases": 108.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.967, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-08", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.967, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-09", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.967, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-10", + "total_cases": 110.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.559, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-11", + "total_cases": 113.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.447, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-12", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.447, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-13", + "total_cases": 128.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.886, + "new_cases_per_million": 19.44, + "new_cases_smoothed_per_million": 4.258, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-14", + "total_cases": 131.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.774, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 4.258, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-15", + "total_cases": 133.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 172.366, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 4.629, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-16", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 172.366, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.629, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-17", + "total_cases": 141.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.734, + "new_cases_per_million": 10.368, + "new_cases_smoothed_per_million": 5.739, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-18", + "total_cases": 146.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.214, + "new_cases_per_million": 6.48, + "new_cases_smoothed_per_million": 6.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-19", + "total_cases": 147.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.51, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 6.295, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-20", + "total_cases": 150.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.398, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-21", + "total_cases": 153.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.286, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-22", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.286, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.703, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-23", + "total_cases": 155.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.878, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-24", + "total_cases": 155.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-25", + "total_cases": 156.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.174, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-26", + "total_cases": 173.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.206, + "new_cases_per_million": 22.032, + "new_cases_smoothed_per_million": 4.814, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-08-27", + "total_cases": 183.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.166, + "new_cases_per_million": 12.96, + "new_cases_smoothed_per_million": 6.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 184.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.462, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 5.739, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 195.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.718, + "new_cases_per_million": 14.256, + "new_cases_smoothed_per_million": 7.776, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 195.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.406, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 224.0, + "new_cases": 29.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.301, + "new_cases_per_million": 37.584, + "new_cases_smoothed_per_million": 12.775, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 225.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.597, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 12.775, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 227.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.189, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 9.998, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.146, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 228.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 295.485, + "new_cases_per_million": 1.296, + "new_cases_smoothed_per_million": 6.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BOL": { + "continent": "South America", + "location": "Bolivia", + "population": 11673029.0, + "population_density": 10.202, + "median_age": 25.4, + "aged_65_older": 6.704, + "aged_70_older": 4.393, + "gdp_per_capita": 6885.829, + "extreme_poverty": 7.1, + "cardiovasc_death_rate": 204.299, + "diabetes_prevalence": 6.89, + "handwashing_facilities": 25.383, + "hospital_beds_per_thousand": 1.1, + "life_expectancy": 71.51, + "data": [ + { + "date": "2020-03-12", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.171, + "new_cases_per_million": 0.171, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.257, + "new_cases_per_million": 0.086, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-14", + "total_cases": 10.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.857, + "new_cases_per_million": 0.6, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 26.0, + "total_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-15", + "total_cases": 10.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.857, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 33.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-16", + "new_tests": 12.0, + "total_tests": 45.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 11.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.942, + "new_cases_per_million": 0.086, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 50.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-18", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.028, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 51.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 84.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-20", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.285, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 111.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-21", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.628, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 139.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 12.444, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-03-22", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.713, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 228.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 19.6, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-23", + "total_cases": 27.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.313, + "new_cases_per_million": 0.6, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 273.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 13.588, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-24", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.399, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 277.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 13.175999999999998, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-25", + "total_cases": 32.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.741, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.245, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 57.0, + "total_tests": 334.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 39.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.341, + "new_cases_per_million": 0.6, + "new_cases_smoothed_per_million": 0.33, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 108.0, + "total_tests": 442.0, + "total_tests_per_thousand": 0.038, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 13.222000000000001, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-27", + "total_cases": 61.0, + "new_cases": 22.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.226, + "new_cases_per_million": 1.885, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 74.0, + "total_tests": 516.0, + "total_tests_per_thousand": 0.044, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 8.826, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-28", + "total_cases": 74.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.339, + "new_cases_per_million": 1.114, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 559.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 7.636, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 81.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.939, + "new_cases_per_million": 0.6, + "new_cases_smoothed_per_million": 0.747, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 574.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 5.622999999999999, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 96.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.857, + "total_deaths": 3.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.224, + "new_cases_per_million": 1.285, + "new_cases_smoothed_per_million": 0.844, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 123.0, + "total_tests": 697.0, + "total_tests_per_thousand": 0.06, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 6.188, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 107.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.286, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9.166, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 82.0, + "total_tests": 779.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 6.38, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 115.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9.852, + "new_cases_per_million": 0.685, + "new_cases_smoothed_per_million": 1.016, + "total_deaths_per_million": 0.6, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 57.0, + "total_tests": 836.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 6.072, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 123.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.537, + "new_cases_per_million": 0.685, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 0.685, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 149.0, + "total_tests": 985.0, + "total_tests_per_thousand": 0.084, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 78.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 6.5, + "positive_rate": 0.154, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 132.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 11.308, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.869, + "total_deaths_per_million": 0.771, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 133.0, + "total_tests": 1118.0, + "total_tests_per_thousand": 0.096, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 86.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 8.479, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 139.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 11.908, + "new_cases_per_million": 0.6, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 0.857, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 18.0, + "total_tests": 1136.0, + "total_tests_per_thousand": 0.097, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 82.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 8.831, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 157.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 13.45, + "new_cases_per_million": 1.542, + "new_cases_smoothed_per_million": 0.93, + "total_deaths_per_million": 0.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 305.0, + "total_tests": 1441.0, + "total_tests_per_thousand": 0.123, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 11.421, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 183.0, + "new_cases": 26.0, + "new_cases_smoothed": 12.429, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 15.677, + "new_cases_per_million": 2.227, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.942, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 108.0, + "total_tests": 1549.0, + "total_tests_per_thousand": 0.133, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 122.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 9.816, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 194.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 16.62, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 1.199, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 132.0, + "total_tests": 1681.0, + "total_tests_per_thousand": 0.144, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 129.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 10.379000000000001, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 210.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 17.99, + "new_cases_per_million": 1.371, + "new_cases_smoothed_per_million": 1.163, + "total_deaths_per_million": 1.285, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 194.0, + "total_tests": 1875.0, + "total_tests_per_thousand": 0.161, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 148.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 10.905, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 264.0, + "new_cases": 54.0, + "new_cases_smoothed": 20.143, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 22.616, + "new_cases_per_million": 4.626, + "new_cases_smoothed_per_million": 1.726, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 122.0, + "total_tests": 1997.0, + "total_tests_per_thousand": 0.171, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 7.199, + "positive_rate": 0.139, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 268.0, + "new_cases": 4.0, + "new_cases_smoothed": 19.429, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 22.959, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 1.664, + "total_deaths_per_million": 1.628, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 188.0, + "total_tests": 2185.0, + "total_tests_per_thousand": 0.187, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.824, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 276.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.571, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 23.644, + "new_cases_per_million": 0.685, + "new_cases_smoothed_per_million": 1.677, + "total_deaths_per_million": 1.713, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 171.0, + "total_tests": 2356.0, + "total_tests_per_thousand": 0.202, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 174.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.891, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 300.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.429, + "total_deaths": 24.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 25.7, + "new_cases_per_million": 2.056, + "new_cases_smoothed_per_million": 1.75, + "total_deaths_per_million": 2.056, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 172.0, + "total_tests": 2528.0, + "total_tests_per_thousand": 0.217, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.587000000000001, + "positive_rate": 0.132, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 330.0, + "new_cases": 30.0, + "new_cases_smoothed": 21.0, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 28.27, + "new_cases_per_million": 2.57, + "new_cases_smoothed_per_million": 1.799, + "total_deaths_per_million": 2.313, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 165.0, + "total_tests": 2693.0, + "total_tests_per_thousand": 0.231, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.7620000000000005, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 354.0, + "new_cases": 24.0, + "new_cases_smoothed": 22.857, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 30.326, + "new_cases_per_million": 2.056, + "new_cases_smoothed_per_million": 1.958, + "total_deaths_per_million": 2.399, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 226.0, + "total_tests": 2919.0, + "total_tests_per_thousand": 0.25, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 177.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 7.744, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 397.0, + "new_cases": 43.0, + "new_cases_smoothed": 26.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 34.01, + "new_cases_per_million": 3.684, + "new_cases_smoothed_per_million": 2.289, + "total_deaths_per_million": 2.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 311.0, + "total_tests": 3230.0, + "total_tests_per_thousand": 0.277, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 194.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 7.2620000000000005, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 441.0, + "new_cases": 44.0, + "new_cases_smoothed": 25.286, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 37.779, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 2.166, + "total_deaths_per_million": 2.484, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 189.0, + "total_tests": 3419.0, + "total_tests_per_thousand": 0.293, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 203.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 8.027999999999999, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 465.0, + "new_cases": 24.0, + "new_cases_smoothed": 28.143, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 39.835, + "new_cases_per_million": 2.056, + "new_cases_smoothed_per_million": 2.411, + "total_deaths_per_million": 2.656, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 154.0, + "total_tests": 3573.0, + "total_tests_per_thousand": 0.306, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 7.0360000000000005, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 493.0, + "new_cases": 28.0, + "new_cases_smoothed": 31.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 42.234, + "new_cases_per_million": 2.399, + "new_cases_smoothed_per_million": 2.656, + "total_deaths_per_million": 2.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 350.0, + "total_tests": 3923.0, + "total_tests_per_thousand": 0.336, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 224.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 7.226, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 520.0, + "new_cases": 27.0, + "new_cases_smoothed": 31.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 44.547, + "new_cases_per_million": 2.313, + "new_cases_smoothed_per_million": 2.692, + "total_deaths_per_million": 2.741, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 212.0, + "total_tests": 4135.0, + "total_tests_per_thousand": 0.354, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 230.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 7.318, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 564.0, + "new_cases": 44.0, + "new_cases_smoothed": 33.429, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 48.317, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 2.864, + "total_deaths_per_million": 2.827, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 163.0, + "total_tests": 4298.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 229.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 6.85, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 598.0, + "new_cases": 34.0, + "new_cases_smoothed": 34.857, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 51.229, + "new_cases_per_million": 2.913, + "new_cases_smoothed_per_million": 2.986, + "total_deaths_per_million": 2.913, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 122.0, + "total_tests": 4420.0, + "total_tests_per_thousand": 0.379, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 214.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 6.138999999999999, + "positive_rate": 0.163, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 609.0, + "new_cases": 11.0, + "new_cases_smoothed": 30.286, + "total_deaths": 37.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 52.172, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 2.595, + "total_deaths_per_million": 3.17, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 435.0, + "total_tests": 4855.0, + "total_tests_per_thousand": 0.416, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 232.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 7.66, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 672.0, + "new_cases": 63.0, + "new_cases_smoothed": 33.0, + "total_deaths": 40.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 57.569, + "new_cases_per_million": 5.397, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 3.427, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 140.0, + "total_tests": 4995.0, + "total_tests_per_thousand": 0.428, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 225.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 6.818, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 703.0, + "new_cases": 31.0, + "new_cases_smoothed": 34.0, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 60.224, + "new_cases_per_million": 2.656, + "new_cases_smoothed_per_million": 2.913, + "total_deaths_per_million": 3.684, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 302.0, + "total_tests": 5297.0, + "total_tests_per_thousand": 0.454, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 246.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.235, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 807.0, + "new_cases": 104.0, + "new_cases_smoothed": 44.857, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 69.134, + "new_cases_per_million": 8.909, + "new_cases_smoothed_per_million": 3.843, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 275.0, + "total_tests": 5572.0, + "total_tests_per_thousand": 0.477, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 236.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 5.261, + "positive_rate": 0.19, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 866.0, + "new_cases": 59.0, + "new_cases_smoothed": 49.429, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 74.188, + "new_cases_per_million": 5.054, + "new_cases_smoothed_per_million": 4.234, + "total_deaths_per_million": 3.941, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 219.0, + "total_tests": 5791.0, + "total_tests_per_thousand": 0.496, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 237.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 4.795, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 950.0, + "new_cases": 84.0, + "new_cases_smoothed": 55.143, + "total_deaths": 50.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 81.384, + "new_cases_per_million": 7.196, + "new_cases_smoothed_per_million": 4.724, + "total_deaths_per_million": 4.283, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 197.0, + "total_tests": 5988.0, + "total_tests_per_thousand": 0.513, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 241.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 4.37, + "positive_rate": 0.22899999999999998, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 1014.0, + "new_cases": 64.0, + "new_cases_smoothed": 59.429, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 86.867, + "new_cases_per_million": 5.483, + "new_cases_smoothed_per_million": 5.091, + "total_deaths_per_million": 4.54, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 133.0, + "total_tests": 6121.0, + "total_tests_per_thousand": 0.524, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 243.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 4.0889999999999995, + "positive_rate": 0.245, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 1053.0, + "new_cases": 39.0, + "new_cases_smoothed": 63.429, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 90.208, + "new_cases_per_million": 3.341, + "new_cases_smoothed_per_million": 5.434, + "total_deaths_per_million": 4.712, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 288.0, + "total_tests": 6409.0, + "total_tests_per_thousand": 0.549, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 222.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 3.5, + "positive_rate": 0.28600000000000003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 1110.0, + "new_cases": 57.0, + "new_cases_smoothed": 62.571, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 95.091, + "new_cases_per_million": 4.883, + "new_cases_smoothed_per_million": 5.36, + "total_deaths_per_million": 5.054, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 142.0, + "total_tests": 6551.0, + "total_tests_per_thousand": 0.561, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 222.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 3.548, + "positive_rate": 0.282, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 1167.0, + "new_cases": 57.0, + "new_cases_smoothed": 66.286, + "total_deaths": 62.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 99.974, + "new_cases_per_million": 4.883, + "new_cases_smoothed_per_million": 5.679, + "total_deaths_per_million": 5.311, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 424.0, + "total_tests": 6975.0, + "total_tests_per_thousand": 0.598, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 3.6210000000000004, + "positive_rate": 0.276, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 1229.0, + "new_cases": 62.0, + "new_cases_smoothed": 60.286, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 105.285, + "new_cases_per_million": 5.311, + "new_cases_smoothed_per_million": 5.165, + "total_deaths_per_million": 5.654, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 676.0, + "total_tests": 7651.0, + "total_tests_per_thousand": 0.655, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 297.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 4.927, + "positive_rate": 0.203, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 1470.0, + "new_cases": 241.0, + "new_cases_smoothed": 86.286, + "total_deaths": 71.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 125.931, + "new_cases_per_million": 20.646, + "new_cases_smoothed_per_million": 7.392, + "total_deaths_per_million": 6.082, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 429.0, + "total_tests": 8080.0, + "total_tests_per_thousand": 0.692, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 327.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 3.79, + "positive_rate": 0.264, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 1594.0, + "new_cases": 124.0, + "new_cases_smoothed": 92.0, + "total_deaths": 76.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 136.554, + "new_cases_per_million": 10.623, + "new_cases_smoothed_per_million": 7.881, + "total_deaths_per_million": 6.511, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 531.0, + "total_tests": 8611.0, + "total_tests_per_thousand": 0.738, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 375.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 4.0760000000000005, + "positive_rate": 0.245, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 1681.0, + "new_cases": 87.0, + "new_cases_smoothed": 95.286, + "total_deaths": 82.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 144.007, + "new_cases_per_million": 7.453, + "new_cases_smoothed_per_million": 8.163, + "total_deaths_per_million": 7.025, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.355, + "new_tests": 384.0, + "total_tests": 8995.0, + "total_tests_per_thousand": 0.771, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 4.313, + "positive_rate": 0.23199999999999998, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 1802.0, + "new_cases": 121.0, + "new_cases_smoothed": 107.0, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 154.373, + "new_cases_per_million": 10.366, + "new_cases_smoothed_per_million": 9.166, + "total_deaths_per_million": 7.367, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 161.0, + "total_tests": 9156.0, + "total_tests_per_thousand": 0.784, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 392.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 3.6639999999999997, + "positive_rate": 0.273, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 1886.0, + "new_cases": 84.0, + "new_cases_smoothed": 110.857, + "total_deaths": 91.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 161.569, + "new_cases_per_million": 7.196, + "new_cases_smoothed_per_million": 9.497, + "total_deaths_per_million": 7.796, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 943.0, + "total_tests": 10099.0, + "total_tests_per_thousand": 0.865, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 507.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 4.573, + "positive_rate": 0.21899999999999997, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 2081.0, + "new_cases": 195.0, + "new_cases_smoothed": 130.571, + "total_deaths": 102.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 178.274, + "new_cases_per_million": 16.705, + "new_cases_smoothed_per_million": 11.186, + "total_deaths_per_million": 8.738, + "new_deaths_per_million": 0.942, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 552.0, + "total_tests": 10651.0, + "total_tests_per_thousand": 0.912, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 4.021, + "positive_rate": 0.249, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 2266.0, + "new_cases": 185.0, + "new_cases_smoothed": 148.143, + "total_deaths": 106.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 194.123, + "new_cases_per_million": 15.848, + "new_cases_smoothed_per_million": 12.691, + "total_deaths_per_million": 9.081, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.49, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 3.3819999999999997, + "positive_rate": 0.29600000000000004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 2437.0, + "new_cases": 171.0, + "new_cases_smoothed": 138.143, + "total_deaths": 114.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 208.772, + "new_cases_per_million": 14.649, + "new_cases_smoothed_per_million": 11.834, + "total_deaths_per_million": 9.766, + "new_deaths_per_million": 0.685, + "new_deaths_smoothed_per_million": 0.526, + "total_tests": 11671.0, + "total_tests_per_thousand": 1.0, + "new_tests_smoothed": 513.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 3.714, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 2556.0, + "new_cases": 119.0, + "new_cases_smoothed": 137.429, + "total_deaths": 118.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 218.966, + "new_cases_per_million": 10.194, + "new_cases_smoothed_per_million": 11.773, + "total_deaths_per_million": 10.109, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 882.0, + "total_tests": 12553.0, + "total_tests_per_thousand": 1.075, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 563.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 4.0969999999999995, + "positive_rate": 0.244, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-12", + "total_cases": 2831.0, + "new_cases": 275.0, + "new_cases_smoothed": 164.286, + "total_deaths": 122.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 242.525, + "new_cases_per_million": 23.559, + "new_cases_smoothed_per_million": 14.074, + "total_deaths_per_million": 10.451, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 527.0, + "total_tests": 13080.0, + "total_tests_per_thousand": 1.121, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 584.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 3.555, + "positive_rate": 0.281, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-13", + "total_cases": 2964.0, + "new_cases": 133.0, + "new_cases_smoothed": 166.0, + "total_deaths": 128.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 253.919, + "new_cases_per_million": 11.394, + "new_cases_smoothed_per_million": 14.221, + "total_deaths_per_million": 10.965, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 525.0, + "total_tests": 13605.0, + "total_tests_per_thousand": 1.166, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 636.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 3.8310000000000004, + "positive_rate": 0.261, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-14", + "total_cases": 3148.0, + "new_cases": 184.0, + "new_cases_smoothed": 180.286, + "total_deaths": 142.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 269.682, + "new_cases_per_million": 15.763, + "new_cases_smoothed_per_million": 15.445, + "total_deaths_per_million": 12.165, + "new_deaths_per_million": 1.199, + "new_deaths_smoothed_per_million": 0.624, + "new_tests": 554.0, + "total_tests": 14159.0, + "total_tests_per_thousand": 1.213, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 580.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 3.217, + "positive_rate": 0.311, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-15", + "total_cases": 3372.0, + "new_cases": 224.0, + "new_cases_smoothed": 184.429, + "total_deaths": 152.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 288.871, + "new_cases_per_million": 19.19, + "new_cases_smoothed_per_million": 15.8, + "total_deaths_per_million": 13.021, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.612, + "new_tests": 644.0, + "total_tests": 14803.0, + "total_tests_per_thousand": 1.268, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 593.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 3.215, + "positive_rate": 0.311, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-16", + "total_cases": 3577.0, + "new_cases": 205.0, + "new_cases_smoothed": 187.286, + "total_deaths": 164.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 306.433, + "new_cases_per_million": 17.562, + "new_cases_smoothed_per_million": 16.044, + "total_deaths_per_million": 14.049, + "new_deaths_per_million": 1.028, + "new_deaths_smoothed_per_million": 0.71, + "new_tests": 853.0, + "total_tests": 15656.0, + "total_tests_per_thousand": 1.341, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 642.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 3.428, + "positive_rate": 0.292, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-17", + "total_cases": 3826.0, + "new_cases": 249.0, + "new_cases_smoothed": 198.429, + "total_deaths": 165.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 327.764, + "new_cases_per_million": 21.331, + "new_cases_smoothed_per_million": 16.999, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.624, + "new_tests": 748.0, + "total_tests": 16404.0, + "total_tests_per_thousand": 1.405, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 676.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 3.407, + "positive_rate": 0.294, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-18", + "total_cases": 4088.0, + "new_cases": 262.0, + "new_cases_smoothed": 218.857, + "total_deaths": 169.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 350.209, + "new_cases_per_million": 22.445, + "new_cases_smoothed_per_million": 18.749, + "total_deaths_per_million": 14.478, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.624, + "new_tests": 377.0, + "total_tests": 16781.0, + "total_tests_per_thousand": 1.438, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 604.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 2.76, + "positive_rate": 0.36200000000000004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-19", + "total_cases": 4263.0, + "new_cases": 175.0, + "new_cases_smoothed": 204.571, + "total_deaths": 174.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 365.201, + "new_cases_per_million": 14.992, + "new_cases_smoothed_per_million": 17.525, + "total_deaths_per_million": 14.906, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 779.0, + "total_tests": 17560.0, + "total_tests_per_thousand": 1.504, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 640.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 3.128, + "positive_rate": 0.32, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-20", + "total_cases": 4481.0, + "new_cases": 218.0, + "new_cases_smoothed": 216.714, + "total_deaths": 189.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 383.876, + "new_cases_per_million": 18.676, + "new_cases_smoothed_per_million": 18.565, + "total_deaths_per_million": 16.191, + "new_deaths_per_million": 1.285, + "new_deaths_smoothed_per_million": 0.747, + "new_tests": 1006.0, + "total_tests": 18566.0, + "total_tests_per_thousand": 1.591, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 709.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 3.272, + "positive_rate": 0.306, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-21", + "total_cases": 4919.0, + "new_cases": 438.0, + "new_cases_smoothed": 253.0, + "total_deaths": 199.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 421.399, + "new_cases_per_million": 37.522, + "new_cases_smoothed_per_million": 21.674, + "total_deaths_per_million": 17.048, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.698, + "new_tests": 723.0, + "total_tests": 19289.0, + "total_tests_per_thousand": 1.652, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 733.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 2.897, + "positive_rate": 0.345, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-22", + "total_cases": 5187.0, + "new_cases": 268.0, + "new_cases_smoothed": 259.286, + "total_deaths": 215.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 444.358, + "new_cases_per_million": 22.959, + "new_cases_smoothed_per_million": 22.212, + "total_deaths_per_million": 18.419, + "new_deaths_per_million": 1.371, + "new_deaths_smoothed_per_million": 0.771, + "new_tests": 807.0, + "total_tests": 20096.0, + "total_tests_per_thousand": 1.722, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 756.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 2.9160000000000004, + "positive_rate": 0.34299999999999997, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-23", + "total_cases": 5579.0, + "new_cases": 392.0, + "new_cases_smoothed": 286.0, + "total_deaths": 230.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 477.939, + "new_cases_per_million": 33.582, + "new_cases_smoothed_per_million": 24.501, + "total_deaths_per_million": 19.704, + "new_deaths_per_million": 1.285, + "new_deaths_smoothed_per_million": 0.808, + "new_tests": 1109.0, + "total_tests": 21205.0, + "total_tests_per_thousand": 1.817, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 793.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 2.773, + "positive_rate": 0.361, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-24", + "total_cases": 5915.0, + "new_cases": 336.0, + "new_cases_smoothed": 298.429, + "total_deaths": 240.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 506.724, + "new_cases_per_million": 28.784, + "new_cases_smoothed_per_million": 25.566, + "total_deaths_per_million": 20.56, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.918, + "new_tests": 789.0, + "total_tests": 21994.0, + "total_tests_per_thousand": 1.884, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 799.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 2.677, + "positive_rate": 0.374, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-25", + "total_cases": 6263.0, + "new_cases": 348.0, + "new_cases_smoothed": 310.714, + "total_deaths": 250.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 536.536, + "new_cases_per_million": 29.812, + "new_cases_smoothed_per_million": 26.618, + "total_deaths_per_million": 21.417, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.991, + "new_tests": 779.0, + "total_tests": 22773.0, + "total_tests_per_thousand": 1.951, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 2.755, + "positive_rate": 0.363, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-26", + "total_cases": 6660.0, + "new_cases": 397.0, + "new_cases_smoothed": 342.429, + "total_deaths": 261.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 570.546, + "new_cases_per_million": 34.01, + "new_cases_smoothed_per_million": 29.335, + "total_deaths_per_million": 22.359, + "new_deaths_per_million": 0.942, + "new_deaths_smoothed_per_million": 1.065, + "new_tests": 866.0, + "total_tests": 23639.0, + "total_tests_per_thousand": 2.025, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 868.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 2.535, + "positive_rate": 0.395, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-27", + "total_cases": 7136.0, + "new_cases": 476.0, + "new_cases_smoothed": 379.286, + "total_deaths": 274.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 611.324, + "new_cases_per_million": 40.778, + "new_cases_smoothed_per_million": 32.492, + "total_deaths_per_million": 23.473, + "new_deaths_per_million": 1.114, + "new_deaths_smoothed_per_million": 1.04, + "new_tests": 1426.0, + "total_tests": 25065.0, + "total_tests_per_thousand": 2.147, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 928.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.447, + "positive_rate": 0.409, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-28", + "total_cases": 7768.0, + "new_cases": 632.0, + "new_cases_smoothed": 407.0, + "total_deaths": 280.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 665.466, + "new_cases_per_million": 54.142, + "new_cases_smoothed_per_million": 34.867, + "total_deaths_per_million": 23.987, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.991, + "new_tests": 1125.0, + "total_tests": 26190.0, + "total_tests_per_thousand": 2.244, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 986.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 2.423, + "positive_rate": 0.413, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-29", + "total_cases": 8387.0, + "new_cases": 619.0, + "new_cases_smoothed": 457.143, + "total_deaths": 293.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 718.494, + "new_cases_per_million": 53.028, + "new_cases_smoothed_per_million": 39.162, + "total_deaths_per_million": 25.101, + "new_deaths_per_million": 1.114, + "new_deaths_smoothed_per_million": 0.955, + "new_tests": 775.0, + "total_tests": 26965.0, + "total_tests_per_thousand": 2.31, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 981.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 2.146, + "positive_rate": 0.466, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-30", + "total_cases": 8731.0, + "new_cases": 344.0, + "new_cases_smoothed": 450.286, + "total_deaths": 300.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 747.964, + "new_cases_per_million": 29.47, + "new_cases_smoothed_per_million": 38.575, + "total_deaths_per_million": 25.7, + "new_deaths_per_million": 0.6, + "new_deaths_smoothed_per_million": 0.857, + "new_tests": 1274.0, + "total_tests": 28239.0, + "total_tests_per_thousand": 2.419, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1005.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 2.2319999999999998, + "positive_rate": 0.44799999999999995, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-31", + "total_cases": 9592.0, + "new_cases": 861.0, + "new_cases_smoothed": 525.286, + "total_deaths": 310.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 821.723, + "new_cases_per_million": 73.76, + "new_cases_smoothed_per_million": 45.0, + "total_deaths_per_million": 26.557, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.857, + "new_tests": 718.0, + "total_tests": 28957.0, + "total_tests_per_thousand": 2.481, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 995.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 1.8940000000000001, + "positive_rate": 0.528, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-06-01", + "total_cases": 9982.0, + "new_cases": 390.0, + "new_cases_smoothed": 531.286, + "total_deaths": 313.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 855.134, + "new_cases_per_million": 33.41, + "new_cases_smoothed_per_million": 45.514, + "total_deaths_per_million": 26.814, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.771, + "new_tests": 1083.0, + "total_tests": 30040.0, + "total_tests_per_thousand": 2.573, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1038.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.954, + "positive_rate": 0.512, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-02", + "total_cases": 10531.0, + "new_cases": 549.0, + "new_cases_smoothed": 553.0, + "total_deaths": 343.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 902.165, + "new_cases_per_million": 47.031, + "new_cases_smoothed_per_million": 47.374, + "total_deaths_per_million": 29.384, + "new_deaths_per_million": 2.57, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 1146.0, + "total_tests": 31186.0, + "total_tests_per_thousand": 2.672, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.949, + "positive_rate": 0.513, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-03", + "total_cases": 10991.0, + "new_cases": 460.0, + "new_cases_smoothed": 550.714, + "total_deaths": 376.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 941.572, + "new_cases_per_million": 39.407, + "new_cases_smoothed_per_million": 47.178, + "total_deaths_per_million": 32.211, + "new_deaths_per_million": 2.827, + "new_deaths_smoothed_per_million": 1.248, + "new_tests": 1300.0, + "total_tests": 32486.0, + "total_tests_per_thousand": 2.783, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 1.925, + "positive_rate": 0.52, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-04", + "total_cases": 11638.0, + "new_cases": 647.0, + "new_cases_smoothed": 552.857, + "total_deaths": 400.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 996.999, + "new_cases_per_million": 55.427, + "new_cases_smoothed_per_million": 47.362, + "total_deaths_per_million": 34.267, + "new_deaths_per_million": 2.056, + "new_deaths_smoothed_per_million": 1.469, + "new_tests": 1460.0, + "total_tests": 33946.0, + "total_tests_per_thousand": 2.908, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 1108.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 2.004, + "positive_rate": 0.499, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-05", + "total_cases": 12245.0, + "new_cases": 607.0, + "new_cases_smoothed": 551.143, + "total_deaths": 415.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1048.999, + "new_cases_per_million": 52.0, + "new_cases_smoothed_per_million": 47.215, + "total_deaths_per_million": 35.552, + "new_deaths_per_million": 1.285, + "new_deaths_smoothed_per_million": 1.493, + "new_tests": 1304.0, + "total_tests": 35250.0, + "total_tests_per_thousand": 3.02, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1184.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 2.148, + "positive_rate": 0.465, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-06", + "total_cases": 12728.0, + "new_cases": 483.0, + "new_cases_smoothed": 571.0, + "total_deaths": 427.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 1090.377, + "new_cases_per_million": 41.377, + "new_cases_smoothed_per_million": 48.916, + "total_deaths_per_million": 36.58, + "new_deaths_per_million": 1.028, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 1280.0, + "total_tests": 36530.0, + "total_tests_per_thousand": 3.129, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 1184.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 2.074, + "positive_rate": 0.48200000000000004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-07", + "total_cases": 13358.0, + "new_cases": 630.0, + "new_cases_smoothed": 538.0, + "total_deaths": 454.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 1144.347, + "new_cases_per_million": 53.971, + "new_cases_smoothed_per_million": 46.089, + "total_deaths_per_million": 38.893, + "new_deaths_per_million": 2.313, + "new_deaths_smoothed_per_million": 1.762, + "new_tests": 746.0, + "total_tests": 37276.0, + "total_tests_per_thousand": 3.193, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 2.208, + "positive_rate": 0.45299999999999996, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-08", + "total_cases": 13643.0, + "new_cases": 285.0, + "new_cases_smoothed": 523.0, + "total_deaths": 465.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 1168.763, + "new_cases_per_million": 24.415, + "new_cases_smoothed_per_million": 44.804, + "total_deaths_per_million": 39.835, + "new_deaths_per_million": 0.942, + "new_deaths_smoothed_per_million": 1.86, + "new_tests": 816.0, + "total_tests": 38092.0, + "total_tests_per_thousand": 3.263, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1150.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 2.199, + "positive_rate": 0.455, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-09", + "total_cases": 13949.0, + "new_cases": 306.0, + "new_cases_smoothed": 488.286, + "total_deaths": 475.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 1194.977, + "new_cases_per_million": 26.214, + "new_cases_smoothed_per_million": 41.83, + "total_deaths_per_million": 40.692, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 1.615, + "new_tests": 1518.0, + "total_tests": 39610.0, + "total_tests_per_thousand": 3.393, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 1203.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 2.464, + "positive_rate": 0.406, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-10", + "total_cases": 14644.0, + "new_cases": 695.0, + "new_cases_smoothed": 521.857, + "total_deaths": 487.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 1254.516, + "new_cases_per_million": 59.539, + "new_cases_smoothed_per_million": 44.706, + "total_deaths_per_million": 41.72, + "new_deaths_per_million": 1.028, + "new_deaths_smoothed_per_million": 1.358, + "new_tests": 1425.0, + "total_tests": 41035.0, + "total_tests_per_thousand": 3.515, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1221.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 2.34, + "positive_rate": 0.42700000000000005, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-11", + "total_cases": 15281.0, + "new_cases": 637.0, + "new_cases_smoothed": 520.429, + "total_deaths": 512.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1309.086, + "new_cases_per_million": 54.57, + "new_cases_smoothed_per_million": 44.584, + "total_deaths_per_million": 43.862, + "new_deaths_per_million": 2.142, + "new_deaths_smoothed_per_million": 1.371, + "new_tests": 1706.0, + "total_tests": 42741.0, + "total_tests_per_thousand": 3.662, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 1256.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 2.4130000000000003, + "positive_rate": 0.414, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-12", + "total_cases": 16165.0, + "new_cases": 884.0, + "new_cases_smoothed": 560.0, + "total_deaths": 533.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1384.816, + "new_cases_per_million": 75.73, + "new_cases_smoothed_per_million": 47.974, + "total_deaths_per_million": 45.661, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.444, + "new_tests": 1774.0, + "total_tests": 44515.0, + "total_tests_per_thousand": 3.813, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 1324.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 2.364, + "positive_rate": 0.423, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-13", + "total_cases": 16929.0, + "new_cases": 764.0, + "new_cases_smoothed": 600.143, + "total_deaths": 559.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 1450.266, + "new_cases_per_million": 65.45, + "new_cases_smoothed_per_million": 51.413, + "total_deaths_per_million": 47.888, + "new_deaths_per_million": 2.227, + "new_deaths_smoothed_per_million": 1.615, + "new_tests": 1554.0, + "total_tests": 46069.0, + "total_tests_per_thousand": 3.947, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 1363.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 2.271, + "positive_rate": 0.44, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-14", + "total_cases": 17842.0, + "new_cases": 913.0, + "new_cases_smoothed": 640.571, + "total_deaths": 585.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 1528.481, + "new_cases_per_million": 78.214, + "new_cases_smoothed_per_million": 54.876, + "total_deaths_per_million": 50.116, + "new_deaths_per_million": 2.227, + "new_deaths_smoothed_per_million": 1.603, + "new_tests": 1303.0, + "total_tests": 47372.0, + "total_tests_per_thousand": 4.058, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1442.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 2.251, + "positive_rate": 0.444, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-15", + "total_cases": 18459.0, + "new_cases": 617.0, + "new_cases_smoothed": 688.0, + "total_deaths": 611.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 1581.338, + "new_cases_per_million": 52.857, + "new_cases_smoothed_per_million": 58.939, + "total_deaths_per_million": 52.343, + "new_deaths_per_million": 2.227, + "new_deaths_smoothed_per_million": 1.787, + "new_tests": 1384.0, + "total_tests": 48756.0, + "total_tests_per_thousand": 4.177, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 1523.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 2.214, + "positive_rate": 0.452, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-16", + "total_cases": 19073.0, + "new_cases": 614.0, + "new_cases_smoothed": 732.0, + "total_deaths": 632.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 1633.938, + "new_cases_per_million": 52.6, + "new_cases_smoothed_per_million": 62.709, + "total_deaths_per_million": 54.142, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.921, + "new_tests": 1358.0, + "total_tests": 50114.0, + "total_tests_per_thousand": 4.293, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 1501.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 2.051, + "positive_rate": 0.488, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-17", + "total_cases": 19883.0, + "new_cases": 810.0, + "new_cases_smoothed": 748.429, + "total_deaths": 659.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 1703.328, + "new_cases_per_million": 69.391, + "new_cases_smoothed_per_million": 64.116, + "total_deaths_per_million": 56.455, + "new_deaths_per_million": 2.313, + "new_deaths_smoothed_per_million": 2.105, + "new_tests": 1222.0, + "total_tests": 51336.0, + "total_tests_per_thousand": 4.398, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 1472.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 1.9669999999999999, + "positive_rate": 0.508, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-18", + "total_cases": 20685.0, + "new_cases": 802.0, + "new_cases_smoothed": 772.0, + "total_deaths": 679.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 1772.034, + "new_cases_per_million": 68.705, + "new_cases_smoothed_per_million": 66.135, + "total_deaths_per_million": 58.168, + "new_deaths_per_million": 1.713, + "new_deaths_smoothed_per_million": 2.044, + "new_tests": 1420.0, + "total_tests": 52756.0, + "total_tests_per_thousand": 4.519, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1431.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 1.854, + "positive_rate": 0.539, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-19", + "total_cases": 21499.0, + "new_cases": 814.0, + "new_cases_smoothed": 762.0, + "total_deaths": 697.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 1841.767, + "new_cases_per_million": 69.733, + "new_cases_smoothed_per_million": 65.279, + "total_deaths_per_million": 59.71, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 2.007, + "new_tests": 2358.0, + "total_tests": 55114.0, + "total_tests_per_thousand": 4.721, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 1514.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 1.9869999999999999, + "positive_rate": 0.503, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-20", + "total_cases": 22476.0, + "new_cases": 977.0, + "new_cases_smoothed": 792.429, + "total_deaths": 715.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 1925.464, + "new_cases_per_million": 83.697, + "new_cases_smoothed_per_million": 67.885, + "total_deaths_per_million": 61.252, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 1.909, + "new_tests": 1850.0, + "total_tests": 56964.0, + "total_tests_per_thousand": 4.88, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 1556.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 1.964, + "positive_rate": 0.509, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-21", + "total_cases": 23512.0, + "new_cases": 1036.0, + "new_cases_smoothed": 810.0, + "total_deaths": 740.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2014.216, + "new_cases_per_million": 88.752, + "new_cases_smoothed_per_million": 69.391, + "total_deaths_per_million": 63.394, + "new_deaths_per_million": 2.142, + "new_deaths_smoothed_per_million": 1.897, + "new_tests": 1825.0, + "total_tests": 58789.0, + "total_tests_per_thousand": 5.036, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1631.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 2.0140000000000002, + "positive_rate": 0.49700000000000005, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-22", + "total_cases": 24388.0, + "new_cases": 876.0, + "new_cases_smoothed": 847.0, + "total_deaths": 773.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 2089.261, + "new_cases_per_million": 75.045, + "new_cases_smoothed_per_million": 72.56, + "total_deaths_per_million": 66.221, + "new_deaths_per_million": 2.827, + "new_deaths_smoothed_per_million": 1.983, + "new_tests": 2666.0, + "total_tests": 61455.0, + "total_tests_per_thousand": 5.265, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1814.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 2.142, + "positive_rate": 0.467, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-23", + "total_cases": 25493.0, + "new_cases": 1105.0, + "new_cases_smoothed": 917.143, + "total_deaths": 820.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 26.857, + "total_cases_per_million": 2183.923, + "new_cases_per_million": 94.663, + "new_cases_smoothed_per_million": 78.569, + "total_deaths_per_million": 70.247, + "new_deaths_per_million": 4.026, + "new_deaths_smoothed_per_million": 2.301, + "new_tests": 1756.0, + "total_tests": 63211.0, + "total_tests_per_thousand": 5.415, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 1871.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 2.04, + "positive_rate": 0.49, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-24", + "total_cases": 26389.0, + "new_cases": 896.0, + "new_cases_smoothed": 929.429, + "total_deaths": 846.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 2260.681, + "new_cases_per_million": 76.758, + "new_cases_smoothed_per_million": 79.622, + "total_deaths_per_million": 72.475, + "new_deaths_per_million": 2.227, + "new_deaths_smoothed_per_million": 2.289, + "new_tests": 1735.0, + "total_tests": 64946.0, + "total_tests_per_thousand": 5.564, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 1944.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 2.092, + "positive_rate": 0.478, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-25", + "total_cases": 27487.0, + "new_cases": 1098.0, + "new_cases_smoothed": 971.714, + "total_deaths": 876.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 2354.744, + "new_cases_per_million": 94.063, + "new_cases_smoothed_per_million": 83.244, + "total_deaths_per_million": 75.045, + "new_deaths_per_million": 2.57, + "new_deaths_smoothed_per_million": 2.411, + "new_tests": 1651.0, + "total_tests": 66597.0, + "total_tests_per_thousand": 5.705, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 1977.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 2.035, + "positive_rate": 0.49200000000000005, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-06-26", + "total_cases": 28503.0, + "new_cases": 1016.0, + "new_cases_smoothed": 1000.571, + "total_deaths": 913.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 2441.783, + "new_cases_per_million": 87.038, + "new_cases_smoothed_per_million": 85.717, + "total_deaths_per_million": 78.214, + "new_deaths_per_million": 3.17, + "new_deaths_smoothed_per_million": 2.643, + "new_tests": 2033.0, + "total_tests": 68630.0, + "total_tests_per_thousand": 5.879, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 1931.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 1.93, + "positive_rate": 0.518, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-27", + "total_cases": 29423.0, + "new_cases": 920.0, + "new_cases_smoothed": 992.429, + "total_deaths": 934.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 2520.597, + "new_cases_per_million": 78.814, + "new_cases_smoothed_per_million": 85.019, + "total_deaths_per_million": 80.014, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 2.68, + "new_tests": 2242.0, + "total_tests": 70872.0, + "total_tests_per_thousand": 6.071, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 1987.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 2.002, + "positive_rate": 0.499, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-28", + "total_cases": 30676.0, + "new_cases": 1253.0, + "new_cases_smoothed": 1023.429, + "total_deaths": 970.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 32.857, + "total_cases_per_million": 2627.938, + "new_cases_per_million": 107.341, + "new_cases_smoothed_per_million": 87.675, + "total_deaths_per_million": 83.098, + "new_deaths_per_million": 3.084, + "new_deaths_smoothed_per_million": 2.815, + "new_tests": 1364.0, + "total_tests": 72236.0, + "total_tests_per_thousand": 6.188, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1921.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 1.8769999999999998, + "positive_rate": 0.5329999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-29", + "total_cases": 31524.0, + "new_cases": 848.0, + "new_cases_smoothed": 1019.429, + "total_deaths": 1014.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 2700.584, + "new_cases_per_million": 72.646, + "new_cases_smoothed_per_million": 87.332, + "total_deaths_per_million": 86.867, + "new_deaths_per_million": 3.769, + "new_deaths_smoothed_per_million": 2.949, + "new_tests": 1036.0, + "total_tests": 73272.0, + "total_tests_per_thousand": 6.277, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 1688.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 1.656, + "positive_rate": 0.604, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-30", + "total_cases": 32125.0, + "new_cases": 601.0, + "new_cases_smoothed": 947.429, + "total_deaths": 1071.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 2752.071, + "new_cases_per_million": 51.486, + "new_cases_smoothed_per_million": 81.164, + "total_deaths_per_million": 91.75, + "new_deaths_per_million": 4.883, + "new_deaths_smoothed_per_million": 3.072, + "new_tests": 2194.0, + "total_tests": 75466.0, + "total_tests_per_thousand": 6.465, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 1751.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 1.848, + "positive_rate": 0.541, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-01", + "total_cases": 33219.0, + "new_cases": 1094.0, + "new_cases_smoothed": 975.714, + "total_deaths": 1123.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 39.571, + "total_cases_per_million": 2845.791, + "new_cases_per_million": 93.72, + "new_cases_smoothed_per_million": 83.587, + "total_deaths_per_million": 96.205, + "new_deaths_per_million": 4.455, + "new_deaths_smoothed_per_million": 3.39, + "new_tests": 1947.0, + "total_tests": 77413.0, + "total_tests_per_thousand": 6.632, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1781.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 1.825, + "positive_rate": 0.5479999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-02", + "total_cases": 34227.0, + "new_cases": 1008.0, + "new_cases_smoothed": 962.857, + "total_deaths": 1201.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 46.429, + "total_cases_per_million": 2932.144, + "new_cases_per_million": 86.353, + "new_cases_smoothed_per_million": 82.486, + "total_deaths_per_million": 102.887, + "new_deaths_per_million": 6.682, + "new_deaths_smoothed_per_million": 3.977, + "new_tests": 2154.0, + "total_tests": 79567.0, + "total_tests_per_thousand": 6.816, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 1853.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 1.9240000000000002, + "positive_rate": 0.52, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-03", + "total_cases": 35528.0, + "new_cases": 1301.0, + "new_cases_smoothed": 1003.571, + "total_deaths": 1271.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 51.143, + "total_cases_per_million": 3043.597, + "new_cases_per_million": 111.454, + "new_cases_smoothed_per_million": 85.974, + "total_deaths_per_million": 108.883, + "new_deaths_per_million": 5.997, + "new_deaths_smoothed_per_million": 4.381, + "new_tests": 2219.0, + "total_tests": 81786.0, + "total_tests_per_thousand": 7.006, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 1879.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 1.8719999999999999, + "positive_rate": 0.534, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-04", + "total_cases": 36818.0, + "new_cases": 1290.0, + "new_cases_smoothed": 1056.429, + "total_deaths": 1320.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 55.143, + "total_cases_per_million": 3154.109, + "new_cases_per_million": 110.511, + "new_cases_smoothed_per_million": 90.502, + "total_deaths_per_million": 113.081, + "new_deaths_per_million": 4.198, + "new_deaths_smoothed_per_million": 4.724, + "new_tests": 2172.0, + "total_tests": 83958.0, + "total_tests_per_thousand": 7.192, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 1869.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 1.7690000000000001, + "positive_rate": 0.565, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-05", + "total_cases": 38071.0, + "new_cases": 1253.0, + "new_cases_smoothed": 1056.429, + "total_deaths": 1378.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 3261.45, + "new_cases_per_million": 107.341, + "new_cases_smoothed_per_million": 90.502, + "total_deaths_per_million": 118.05, + "new_deaths_per_million": 4.969, + "new_deaths_smoothed_per_million": 4.993, + "new_tests": 2920.0, + "total_tests": 86878.0, + "total_tests_per_thousand": 7.443, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 2092.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 1.98, + "positive_rate": 0.505, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-06", + "total_cases": 39297.0, + "new_cases": 1226.0, + "new_cases_smoothed": 1110.429, + "total_deaths": 1434.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 60.0, + "total_cases_per_million": 3366.478, + "new_cases_per_million": 105.028, + "new_cases_smoothed_per_million": 95.128, + "total_deaths_per_million": 122.847, + "new_deaths_per_million": 4.797, + "new_deaths_smoothed_per_million": 5.14, + "new_tests": 1940.0, + "total_tests": 88818.0, + "total_tests_per_thousand": 7.609, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 2221.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 2.0, + "positive_rate": 0.5, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-07", + "total_cases": 40509.0, + "new_cases": 1212.0, + "new_cases_smoothed": 1197.714, + "total_deaths": 1476.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 57.857, + "total_cases_per_million": 3470.307, + "new_cases_per_million": 103.829, + "new_cases_smoothed_per_million": 102.605, + "total_deaths_per_million": 126.445, + "new_deaths_per_million": 3.598, + "new_deaths_smoothed_per_million": 4.956, + "new_tests": 1833.0, + "total_tests": 90651.0, + "total_tests_per_thousand": 7.766, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 2169.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 1.811, + "positive_rate": 0.552, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-08", + "total_cases": 41545.0, + "new_cases": 1036.0, + "new_cases_smoothed": 1189.429, + "total_deaths": 1530.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 58.143, + "total_cases_per_million": 3559.059, + "new_cases_per_million": 88.752, + "new_cases_smoothed_per_million": 101.895, + "total_deaths_per_million": 131.071, + "new_deaths_per_million": 4.626, + "new_deaths_smoothed_per_million": 4.981, + "new_tests": 2177.0, + "total_tests": 92828.0, + "total_tests_per_thousand": 7.952, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 2202.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 1.851, + "positive_rate": 0.54, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-09", + "total_cases": 42984.0, + "new_cases": 1439.0, + "new_cases_smoothed": 1251.0, + "total_deaths": 1577.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 53.714, + "total_cases_per_million": 3682.335, + "new_cases_per_million": 123.276, + "new_cases_smoothed_per_million": 107.17, + "total_deaths_per_million": 135.098, + "new_deaths_per_million": 4.026, + "new_deaths_smoothed_per_million": 4.602, + "new_tests": 2031.0, + "total_tests": 94859.0, + "total_tests_per_thousand": 8.126, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 2185.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 1.7469999999999999, + "positive_rate": 0.573, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-10", + "total_cases": 44113.0, + "new_cases": 1129.0, + "new_cases_smoothed": 1226.429, + "total_deaths": 1638.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 52.429, + "total_cases_per_million": 3779.053, + "new_cases_per_million": 96.719, + "new_cases_smoothed_per_million": 105.065, + "total_deaths_per_million": 140.323, + "new_deaths_per_million": 5.226, + "new_deaths_smoothed_per_million": 4.491, + "new_tests": 2196.0, + "total_tests": 97055.0, + "total_tests_per_thousand": 8.314, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 2181.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 1.778, + "positive_rate": 0.562, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-11", + "total_cases": 45565.0, + "new_cases": 1452.0, + "new_cases_smoothed": 1249.571, + "total_deaths": 1702.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 54.571, + "total_cases_per_million": 3903.443, + "new_cases_per_million": 124.389, + "new_cases_smoothed_per_million": 107.048, + "total_deaths_per_million": 145.806, + "new_deaths_per_million": 5.483, + "new_deaths_smoothed_per_million": 4.675, + "new_tests": 2699.0, + "total_tests": 99754.0, + "total_tests_per_thousand": 8.546, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 1.806, + "positive_rate": 0.5539999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-12", + "total_cases": 47200.0, + "new_cases": 1635.0, + "new_cases_smoothed": 1304.143, + "total_deaths": 1754.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 53.714, + "total_cases_per_million": 4043.509, + "new_cases_per_million": 140.066, + "new_cases_smoothed_per_million": 111.723, + "total_deaths_per_million": 150.261, + "new_deaths_per_million": 4.455, + "new_deaths_smoothed_per_million": 4.602, + "new_tests": 1869.0, + "total_tests": 101623.0, + "total_tests_per_thousand": 8.706, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 2106.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 1.615, + "positive_rate": 0.619, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-13", + "total_cases": 48187.0, + "new_cases": 987.0, + "new_cases_smoothed": 1270.0, + "total_deaths": 1807.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 53.286, + "total_cases_per_million": 4128.063, + "new_cases_per_million": 84.554, + "new_cases_smoothed_per_million": 108.798, + "total_deaths_per_million": 154.801, + "new_deaths_per_million": 4.54, + "new_deaths_smoothed_per_million": 4.565, + "new_tests": 1705.0, + "total_tests": 103328.0, + "total_tests_per_thousand": 8.852, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 2073.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 1.632, + "positive_rate": 0.613, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-14", + "total_cases": 49250.0, + "new_cases": 1063.0, + "new_cases_smoothed": 1248.714, + "total_deaths": 1866.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 55.714, + "total_cases_per_million": 4219.128, + "new_cases_per_million": 91.065, + "new_cases_smoothed_per_million": 106.974, + "total_deaths_per_million": 159.856, + "new_deaths_per_million": 5.054, + "new_deaths_smoothed_per_million": 4.773, + "new_tests": 2449.0, + "total_tests": 105777.0, + "total_tests_per_thousand": 9.062, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 2161.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 1.7309999999999999, + "positive_rate": 0.578, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-15", + "total_cases": 50867.0, + "new_cases": 1617.0, + "new_cases_smoothed": 1331.714, + "total_deaths": 1898.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 4357.652, + "new_cases_per_million": 138.524, + "new_cases_smoothed_per_million": 114.085, + "total_deaths_per_million": 162.597, + "new_deaths_per_million": 2.741, + "new_deaths_smoothed_per_million": 4.504, + "new_tests": 2460.0, + "total_tests": 108237.0, + "total_tests_per_thousand": 9.272, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 2201.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 1.653, + "positive_rate": 0.605, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-16", + "total_cases": 52218.0, + "new_cases": 1351.0, + "new_cases_smoothed": 1319.143, + "total_deaths": 1942.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 52.143, + "total_cases_per_million": 4473.389, + "new_cases_per_million": 115.737, + "new_cases_smoothed_per_million": 113.008, + "total_deaths_per_million": 166.366, + "new_deaths_per_million": 3.769, + "new_deaths_smoothed_per_million": 4.467, + "new_tests": 2875.0, + "total_tests": 111112.0, + "total_tests_per_thousand": 9.519, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 2322.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 1.76, + "positive_rate": 0.568, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-17", + "total_cases": 54156.0, + "new_cases": 1938.0, + "new_cases_smoothed": 1434.714, + "total_deaths": 1984.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 4639.413, + "new_cases_per_million": 166.024, + "new_cases_smoothed_per_million": 122.908, + "total_deaths_per_million": 169.964, + "new_deaths_per_million": 3.598, + "new_deaths_smoothed_per_million": 4.234, + "new_tests": 3070.0, + "total_tests": 114182.0, + "total_tests_per_thousand": 9.782, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 2447.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 1.706, + "positive_rate": 0.586, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-18", + "total_cases": 56102.0, + "new_cases": 1946.0, + "new_cases_smoothed": 1505.286, + "total_deaths": 2049.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 49.571, + "total_cases_per_million": 4806.122, + "new_cases_per_million": 166.709, + "new_cases_smoothed_per_million": 128.954, + "total_deaths_per_million": 175.533, + "new_deaths_per_million": 5.568, + "new_deaths_smoothed_per_million": 4.247, + "new_tests": 2982.0, + "total_tests": 117164.0, + "total_tests_per_thousand": 10.037, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 2487.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 1.652, + "positive_rate": 0.605, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-19", + "total_cases": 58138.0, + "new_cases": 2036.0, + "new_cases_smoothed": 1562.571, + "total_deaths": 2106.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 50.286, + "total_cases_per_million": 4980.541, + "new_cases_per_million": 174.419, + "new_cases_smoothed_per_million": 133.862, + "total_deaths_per_million": 180.416, + "new_deaths_per_million": 4.883, + "new_deaths_smoothed_per_million": 4.308, + "new_tests": 2600.0, + "total_tests": 119764.0, + "total_tests_per_thousand": 10.26, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 2592.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 1.659, + "positive_rate": 0.603, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-20", + "total_cases": 59582.0, + "new_cases": 1444.0, + "new_cases_smoothed": 1627.857, + "total_deaths": 2151.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 49.143, + "total_cases_per_million": 5104.245, + "new_cases_per_million": 123.704, + "new_cases_smoothed_per_million": 139.455, + "total_deaths_per_million": 184.271, + "new_deaths_per_million": 3.855, + "new_deaths_smoothed_per_million": 4.21, + "new_tests": 2023.0, + "total_tests": 121787.0, + "total_tests_per_thousand": 10.433, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 2637.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 1.62, + "positive_rate": 0.617, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-21", + "total_cases": 60991.0, + "new_cases": 1409.0, + "new_cases_smoothed": 1677.286, + "total_deaths": 2218.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 50.286, + "total_cases_per_million": 5224.951, + "new_cases_per_million": 120.706, + "new_cases_smoothed_per_million": 143.689, + "total_deaths_per_million": 190.011, + "new_deaths_per_million": 5.74, + "new_deaths_smoothed_per_million": 4.308, + "new_tests": 2548.0, + "total_tests": 124335.0, + "total_tests_per_thousand": 10.651, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 2651.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 1.581, + "positive_rate": 0.633, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-22", + "total_cases": 62357.0, + "new_cases": 1366.0, + "new_cases_smoothed": 1641.429, + "total_deaths": 2273.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 53.571, + "total_cases_per_million": 5341.973, + "new_cases_per_million": 117.022, + "new_cases_smoothed_per_million": 140.617, + "total_deaths_per_million": 194.722, + "new_deaths_per_million": 4.712, + "new_deaths_smoothed_per_million": 4.589, + "new_tests": 2832.0, + "total_tests": 127167.0, + "total_tests_per_thousand": 10.894, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 2704.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 1.6469999999999998, + "positive_rate": 0.607, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-23", + "total_cases": 64135.0, + "new_cases": 1778.0, + "new_cases_smoothed": 1702.429, + "total_deaths": 2328.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 55.143, + "total_cases_per_million": 5494.289, + "new_cases_per_million": 152.317, + "new_cases_smoothed_per_million": 145.843, + "total_deaths_per_million": 199.434, + "new_deaths_per_million": 4.712, + "new_deaths_smoothed_per_million": 4.724, + "new_tests": 2240.0, + "total_tests": 129407.0, + "total_tests_per_thousand": 11.086, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 2614.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 1.535, + "positive_rate": 0.6509999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-24", + "total_cases": 65252.0, + "new_cases": 1117.0, + "new_cases_smoothed": 1585.143, + "total_deaths": 2407.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 60.429, + "total_cases_per_million": 5589.98, + "new_cases_per_million": 95.691, + "new_cases_smoothed_per_million": 135.795, + "total_deaths_per_million": 206.202, + "new_deaths_per_million": 6.768, + "new_deaths_smoothed_per_million": 5.177, + "new_tests": 1935.0, + "total_tests": 131342.0, + "total_tests_per_thousand": 11.252, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 2451.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 1.546, + "positive_rate": 0.647, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-25", + "total_cases": 66456.0, + "new_cases": 1204.0, + "new_cases_smoothed": 1479.143, + "total_deaths": 2473.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 60.571, + "total_cases_per_million": 5693.124, + "new_cases_per_million": 103.144, + "new_cases_smoothed_per_million": 126.715, + "total_deaths_per_million": 211.856, + "new_deaths_per_million": 5.654, + "new_deaths_smoothed_per_million": 5.189, + "new_tests": 3427.0, + "total_tests": 134769.0, + "total_tests_per_thousand": 11.545, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 2515.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 1.7, + "positive_rate": 0.588, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-26", + "total_cases": 68281.0, + "new_cases": 1825.0, + "new_cases_smoothed": 1449.0, + "total_deaths": 2535.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 5849.467, + "new_cases_per_million": 156.343, + "new_cases_smoothed_per_million": 124.132, + "total_deaths_per_million": 217.167, + "new_deaths_per_million": 5.311, + "new_deaths_smoothed_per_million": 5.25, + "new_tests": 2156.0, + "total_tests": 136925.0, + "total_tests_per_thousand": 11.73, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 2452.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 1.692, + "positive_rate": 0.591, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-27", + "total_cases": 69429.0, + "new_cases": 1148.0, + "new_cases_smoothed": 1406.714, + "total_deaths": 2583.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 61.714, + "total_cases_per_million": 5947.814, + "new_cases_per_million": 98.346, + "new_cases_smoothed_per_million": 120.51, + "total_deaths_per_million": 221.279, + "new_deaths_per_million": 4.112, + "new_deaths_smoothed_per_million": 5.287, + "new_tests": 2941.0, + "total_tests": 139866.0, + "total_tests_per_thousand": 11.982, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 2583.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 1.8359999999999999, + "positive_rate": 0.545, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-28", + "total_cases": 71811.0, + "new_cases": 2382.0, + "new_cases_smoothed": 1545.714, + "total_deaths": 2647.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 6151.874, + "new_cases_per_million": 204.06, + "new_cases_smoothed_per_million": 132.418, + "total_deaths_per_million": 226.762, + "new_deaths_per_million": 5.483, + "new_deaths_smoothed_per_million": 5.25, + "new_tests": 2252.0, + "total_tests": 142118.0, + "total_tests_per_thousand": 12.175, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 2540.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 1.643, + "positive_rate": 0.609, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-29", + "total_cases": 72327.0, + "new_cases": 516.0, + "new_cases_smoothed": 1424.286, + "total_deaths": 2720.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 63.857, + "total_cases_per_million": 6196.078, + "new_cases_per_million": 44.204, + "new_cases_smoothed_per_million": 122.015, + "total_deaths_per_million": 233.016, + "new_deaths_per_million": 6.254, + "new_deaths_smoothed_per_million": 5.47, + "new_tests": 2035.0, + "total_tests": 144153.0, + "total_tests_per_thousand": 12.349, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 2427.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 1.704, + "positive_rate": 0.5870000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-30", + "total_cases": 73534.0, + "new_cases": 1207.0, + "new_cases_smoothed": 1342.714, + "total_deaths": 2808.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 68.571, + "total_cases_per_million": 6299.479, + "new_cases_per_million": 103.401, + "new_cases_smoothed_per_million": 115.027, + "total_deaths_per_million": 240.555, + "new_deaths_per_million": 7.539, + "new_deaths_smoothed_per_million": 5.874, + "new_tests": 3305.0, + "total_tests": 147458.0, + "total_tests_per_thousand": 12.632, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 2579.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 1.921, + "positive_rate": 0.521, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-31", + "total_cases": 75234.0, + "new_cases": 1700.0, + "new_cases_smoothed": 1426.0, + "total_deaths": 2894.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 69.571, + "total_cases_per_million": 6445.114, + "new_cases_per_million": 145.635, + "new_cases_smoothed_per_million": 122.162, + "total_deaths_per_million": 247.922, + "new_deaths_per_million": 7.367, + "new_deaths_smoothed_per_million": 5.96, + "new_tests": 3012.0, + "total_tests": 150470.0, + "total_tests_per_thousand": 12.89, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 2733.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 1.9169999999999998, + "positive_rate": 0.522, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-01", + "total_cases": 76789.0, + "new_cases": 1555.0, + "new_cases_smoothed": 1476.143, + "total_deaths": 2977.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 72.0, + "total_cases_per_million": 6578.327, + "new_cases_per_million": 133.213, + "new_cases_smoothed_per_million": 126.458, + "total_deaths_per_million": 255.032, + "new_deaths_per_million": 7.11, + "new_deaths_smoothed_per_million": 6.168, + "new_tests": 3484.0, + "total_tests": 153954.0, + "total_tests_per_thousand": 13.189, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 2741.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 1.857, + "positive_rate": 0.539, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-02", + "total_cases": 78793.0, + "new_cases": 2004.0, + "new_cases_smoothed": 1501.714, + "total_deaths": 3064.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 75.571, + "total_cases_per_million": 6750.005, + "new_cases_per_million": 171.678, + "new_cases_smoothed_per_million": 128.648, + "total_deaths_per_million": 262.485, + "new_deaths_per_million": 7.453, + "new_deaths_smoothed_per_million": 6.474, + "new_tests": 2970.0, + "total_tests": 156924.0, + "total_tests_per_thousand": 13.443, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 2857.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 1.902, + "positive_rate": 0.526, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-03", + "total_cases": 80153.0, + "new_cases": 1360.0, + "new_cases_smoothed": 1532.0, + "total_deaths": 3153.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 81.429, + "total_cases_per_million": 6866.513, + "new_cases_per_million": 116.508, + "new_cases_smoothed_per_million": 131.243, + "total_deaths_per_million": 270.11, + "new_deaths_per_million": 7.624, + "new_deaths_smoothed_per_million": 6.976, + "new_tests": 2903.0, + "total_tests": 159827.0, + "total_tests_per_thousand": 13.692, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 2852.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 1.8619999999999999, + "positive_rate": 0.537, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-04", + "total_cases": 81846.0, + "new_cases": 1693.0, + "new_cases_smoothed": 1433.571, + "total_deaths": 3228.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 7011.548, + "new_cases_per_million": 145.035, + "new_cases_smoothed_per_million": 122.811, + "total_deaths_per_million": 276.535, + "new_deaths_per_million": 6.425, + "new_deaths_smoothed_per_million": 7.11, + "new_tests": 2834.0, + "total_tests": 162661.0, + "total_tests_per_thousand": 13.935, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 2935.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 2.0469999999999997, + "positive_rate": 0.488, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-05", + "total_cases": 83361.0, + "new_cases": 1515.0, + "new_cases_smoothed": 1576.286, + "total_deaths": 3320.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 85.714, + "total_cases_per_million": 7141.334, + "new_cases_per_million": 129.786, + "new_cases_smoothed_per_million": 135.037, + "total_deaths_per_million": 284.416, + "new_deaths_per_million": 7.881, + "new_deaths_smoothed_per_million": 7.343, + "new_tests": 3443.0, + "total_tests": 166104.0, + "total_tests_per_thousand": 14.23, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 3136.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 1.989, + "positive_rate": 0.503, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-06", + "total_cases": 85141.0, + "new_cases": 1780.0, + "new_cases_smoothed": 1658.143, + "total_deaths": 3385.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 82.429, + "total_cases_per_million": 7293.822, + "new_cases_per_million": 152.488, + "new_cases_smoothed_per_million": 142.049, + "total_deaths_per_million": 289.985, + "new_deaths_per_million": 5.568, + "new_deaths_smoothed_per_million": 7.061, + "new_tests": 2459.0, + "total_tests": 168563.0, + "total_tests_per_thousand": 14.44, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 3015.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 1.818, + "positive_rate": 0.55, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-07", + "total_cases": 86423.0, + "new_cases": 1282.0, + "new_cases_smoothed": 1598.429, + "total_deaths": 3465.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 81.571, + "total_cases_per_million": 7403.648, + "new_cases_per_million": 109.826, + "new_cases_smoothed_per_million": 136.933, + "total_deaths_per_million": 296.838, + "new_deaths_per_million": 6.853, + "new_deaths_smoothed_per_million": 6.988, + "new_tests": 3140.0, + "total_tests": 171703.0, + "total_tests_per_thousand": 14.709, + "new_tests_per_thousand": 0.269, + "new_tests_smoothed": 3033.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 1.8969999999999998, + "positive_rate": 0.527, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-08", + "total_cases": 87891.0, + "new_cases": 1468.0, + "new_cases_smoothed": 1586.0, + "total_deaths": 3524.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 78.143, + "total_cases_per_million": 7529.408, + "new_cases_per_million": 125.76, + "new_cases_smoothed_per_million": 135.869, + "total_deaths_per_million": 301.893, + "new_deaths_per_million": 5.054, + "new_deaths_smoothed_per_million": 6.694, + "new_tests": 2438.0, + "total_tests": 174141.0, + "total_tests_per_thousand": 14.918, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 2884.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 1.818, + "positive_rate": 0.55, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-09", + "total_cases": 89055.0, + "new_cases": 1164.0, + "new_cases_smoothed": 1466.0, + "total_deaths": 3587.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 74.714, + "total_cases_per_million": 7629.125, + "new_cases_per_million": 99.717, + "new_cases_smoothed_per_million": 125.589, + "total_deaths_per_million": 307.29, + "new_deaths_per_million": 5.397, + "new_deaths_smoothed_per_million": 6.401, + "new_tests": 2167.0, + "total_tests": 176308.0, + "total_tests_per_thousand": 15.104, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 2769.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 1.889, + "positive_rate": 0.529, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-10", + "total_cases": 89999.0, + "new_cases": 944.0, + "new_cases_smoothed": 1406.571, + "total_deaths": 3640.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 69.571, + "total_cases_per_million": 7709.995, + "new_cases_per_million": 80.87, + "new_cases_smoothed_per_million": 120.498, + "total_deaths_per_million": 311.83, + "new_deaths_per_million": 4.54, + "new_deaths_smoothed_per_million": 5.96, + "new_tests": 3245.0, + "total_tests": 179553.0, + "total_tests_per_thousand": 15.382, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 2818.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 2.003, + "positive_rate": 0.499, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-11", + "total_cases": 91635.0, + "new_cases": 1636.0, + "new_cases_smoothed": 1398.429, + "total_deaths": 3712.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 69.143, + "total_cases_per_million": 7850.148, + "new_cases_per_million": 140.152, + "new_cases_smoothed_per_million": 119.8, + "total_deaths_per_million": 317.998, + "new_deaths_per_million": 6.168, + "new_deaths_smoothed_per_million": 5.923, + "new_tests": 3759.0, + "total_tests": 183312.0, + "total_tests_per_thousand": 15.704, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 2950.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 2.11, + "positive_rate": 0.474, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-12", + "total_cases": 93328.0, + "new_cases": 1693.0, + "new_cases_smoothed": 1423.857, + "total_deaths": 3761.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 63.0, + "total_cases_per_million": 7995.183, + "new_cases_per_million": 145.035, + "new_cases_smoothed_per_million": 121.978, + "total_deaths_per_million": 322.196, + "new_deaths_per_million": 4.198, + "new_deaths_smoothed_per_million": 5.397, + "new_tests": 3652.0, + "total_tests": 186964.0, + "total_tests_per_thousand": 16.017, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 2980.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 2.093, + "positive_rate": 0.478, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-13", + "total_cases": 95071.0, + "new_cases": 1743.0, + "new_cases_smoothed": 1418.571, + "total_deaths": 3827.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 63.143, + "total_cases_per_million": 8144.501, + "new_cases_per_million": 149.319, + "new_cases_smoothed_per_million": 121.526, + "total_deaths_per_million": 327.85, + "new_deaths_per_million": 5.654, + "new_deaths_smoothed_per_million": 5.409, + "new_tests": 2470.0, + "total_tests": 189434.0, + "total_tests_per_thousand": 16.228, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 2982.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 2.102, + "positive_rate": 0.47600000000000003, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-14", + "total_cases": 95071.0, + "new_cases": 0.0, + "new_cases_smoothed": 1235.429, + "total_deaths": 3827.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 51.714, + "total_cases_per_million": 8144.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.836, + "total_deaths_per_million": 327.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.43, + "new_tests": 2991.0, + "total_tests": 192425.0, + "total_tests_per_thousand": 16.485, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 2960.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 2.396, + "positive_rate": 0.41700000000000004, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-15", + "total_cases": 96459.0, + "new_cases": 1388.0, + "new_cases_smoothed": 1224.0, + "total_deaths": 3884.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 51.429, + "total_cases_per_million": 8263.408, + "new_cases_per_million": 118.907, + "new_cases_smoothed_per_million": 104.857, + "total_deaths_per_million": 332.733, + "new_deaths_per_million": 4.883, + "new_deaths_smoothed_per_million": 4.406, + "new_tests": 3552.0, + "total_tests": 195977.0, + "total_tests_per_thousand": 16.789, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 3119.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 2.548, + "positive_rate": 0.392, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-16", + "total_cases": 99146.0, + "new_cases": 2687.0, + "new_cases_smoothed": 1441.571, + "total_deaths": 4003.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 59.429, + "total_cases_per_million": 8493.597, + "new_cases_per_million": 230.189, + "new_cases_smoothed_per_million": 123.496, + "total_deaths_per_million": 342.927, + "new_deaths_per_million": 10.194, + "new_deaths_smoothed_per_million": 5.091, + "new_tests": 2721.0, + "total_tests": 198698.0, + "total_tests_per_thousand": 17.022, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 3199.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 2.219, + "positive_rate": 0.451, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-17", + "total_cases": 100344.0, + "new_cases": 1198.0, + "new_cases_smoothed": 1477.857, + "total_deaths": 4048.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 8596.226, + "new_cases_per_million": 102.63, + "new_cases_smoothed_per_million": 126.604, + "total_deaths_per_million": 346.782, + "new_deaths_per_million": 3.855, + "new_deaths_smoothed_per_million": 4.993, + "new_tests": 1513.0, + "total_tests": 200211.0, + "total_tests_per_thousand": 17.152, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 2951.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 1.9969999999999999, + "positive_rate": 0.501, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-18", + "total_cases": 101223.0, + "new_cases": 879.0, + "new_cases_smoothed": 1369.714, + "total_deaths": 4123.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 58.714, + "total_cases_per_million": 8671.528, + "new_cases_per_million": 75.302, + "new_cases_smoothed_per_million": 117.34, + "total_deaths_per_million": 353.207, + "new_deaths_per_million": 6.425, + "new_deaths_smoothed_per_million": 5.03, + "new_tests": 4607.0, + "total_tests": 204818.0, + "total_tests_per_thousand": 17.546, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 3072.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 2.2430000000000003, + "positive_rate": 0.446, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-19", + "total_cases": 103019.0, + "new_cases": 1796.0, + "new_cases_smoothed": 1384.429, + "total_deaths": 4172.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 58.714, + "total_cases_per_million": 8825.387, + "new_cases_per_million": 153.859, + "new_cases_smoothed_per_million": 118.601, + "total_deaths_per_million": 357.405, + "new_deaths_per_million": 4.198, + "new_deaths_smoothed_per_million": 5.03, + "new_tests": 3820.0, + "total_tests": 208638.0, + "total_tests_per_thousand": 17.874, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 2.2359999999999998, + "positive_rate": 0.447, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-20", + "total_cases": 105050.0, + "new_cases": 2031.0, + "new_cases_smoothed": 1425.571, + "total_deaths": 4233.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 58.0, + "total_cases_per_million": 8999.378, + "new_cases_per_million": 173.991, + "new_cases_smoothed_per_million": 122.125, + "total_deaths_per_million": 362.631, + "new_deaths_per_million": 5.226, + "new_deaths_smoothed_per_million": 4.969, + "new_tests": 2680.0, + "total_tests": 211318.0, + "total_tests_per_thousand": 18.103, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 3126.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 2.193, + "positive_rate": 0.456, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-21", + "total_cases": 106065.0, + "new_cases": 1015.0, + "new_cases_smoothed": 1570.571, + "total_deaths": 4305.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 68.286, + "total_cases_per_million": 9086.331, + "new_cases_per_million": 86.953, + "new_cases_smoothed_per_million": 134.547, + "total_deaths_per_million": 368.799, + "new_deaths_per_million": 6.168, + "new_deaths_smoothed_per_million": 5.85, + "new_tests": 2595.0, + "total_tests": 213913.0, + "total_tests_per_thousand": 18.325, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 3070.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 1.955, + "positive_rate": 0.512, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-22", + "total_cases": 107435.0, + "new_cases": 1370.0, + "new_cases_smoothed": 1568.0, + "total_deaths": 4366.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 9203.695, + "new_cases_per_million": 117.365, + "new_cases_smoothed_per_million": 134.327, + "total_deaths_per_million": 374.025, + "new_deaths_per_million": 5.226, + "new_deaths_smoothed_per_million": 5.899, + "new_tests": 2566.0, + "total_tests": 216479.0, + "total_tests_per_thousand": 18.545, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 2929.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 1.868, + "positive_rate": 0.535, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-23", + "total_cases": 108427.0, + "new_cases": 992.0, + "new_cases_smoothed": 1325.857, + "total_deaths": 4442.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 62.714, + "total_cases_per_million": 9288.677, + "new_cases_per_million": 84.982, + "new_cases_smoothed_per_million": 113.583, + "total_deaths_per_million": 380.535, + "new_deaths_per_million": 6.511, + "new_deaths_smoothed_per_million": 5.373, + "new_tests": 2385.0, + "total_tests": 218864.0, + "total_tests_per_thousand": 18.75, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 2881.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 2.173, + "positive_rate": 0.46, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-24", + "total_cases": 109149.0, + "new_cases": 722.0, + "new_cases_smoothed": 1257.857, + "total_deaths": 4509.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 65.857, + "total_cases_per_million": 9350.529, + "new_cases_per_million": 61.852, + "new_cases_smoothed_per_million": 107.758, + "total_deaths_per_million": 386.275, + "new_deaths_per_million": 5.74, + "new_deaths_smoothed_per_million": 5.642, + "new_tests": 2222.0, + "total_tests": 221086.0, + "total_tests_per_thousand": 18.94, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 2982.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 2.371, + "positive_rate": 0.42200000000000004, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-25", + "total_cases": 110148.0, + "new_cases": 999.0, + "new_cases_smoothed": 1275.0, + "total_deaths": 4578.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 65.0, + "total_cases_per_million": 9436.111, + "new_cases_per_million": 85.582, + "new_cases_smoothed_per_million": 109.226, + "total_deaths_per_million": 392.186, + "new_deaths_per_million": 5.911, + "new_deaths_smoothed_per_million": 5.568, + "new_tests": 2114.0, + "total_tests": 223200.0, + "total_tests_per_thousand": 19.121, + "new_tests_per_thousand": 0.181, + "new_tests_smoothed": 2626.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 2.06, + "positive_rate": 0.486, + "tests_units": "tests performed" + }, + { + "date": "2020-08-26", + "total_cases": 110999.0, + "new_cases": 851.0, + "new_cases_smoothed": 1140.0, + "total_deaths": 4664.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 70.286, + "total_cases_per_million": 9509.014, + "new_cases_per_million": 72.903, + "new_cases_smoothed_per_million": 97.661, + "total_deaths_per_million": 399.554, + "new_deaths_per_million": 7.367, + "new_deaths_smoothed_per_million": 6.021, + "new_tests": 2274.0, + "total_tests": 225474.0, + "total_tests_per_thousand": 19.316, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 2405.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 2.11, + "positive_rate": 0.474, + "tests_units": "tests performed" + }, + { + "date": "2020-08-27", + "total_cases": 112094.0, + "new_cases": 1095.0, + "new_cases_smoothed": 1006.286, + "total_deaths": 4726.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 70.429, + "total_cases_per_million": 9602.82, + "new_cases_per_million": 93.806, + "new_cases_smoothed_per_million": 86.206, + "total_deaths_per_million": 404.865, + "new_deaths_per_million": 5.311, + "new_deaths_smoothed_per_million": 6.033, + "new_tests": 3869.0, + "total_tests": 229343.0, + "total_tests_per_thousand": 19.647, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 2575.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 2.559, + "positive_rate": 0.391, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 113129.0, + "new_cases": 1035.0, + "new_cases_smoothed": 1009.143, + "total_deaths": 4791.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 69.429, + "total_cases_per_million": 9691.486, + "new_cases_per_million": 88.666, + "new_cases_smoothed_per_million": 86.451, + "total_deaths_per_million": 410.433, + "new_deaths_per_million": 5.568, + "new_deaths_smoothed_per_million": 5.948, + "new_tests": 3632.0, + "total_tests": 232975.0, + "total_tests_per_thousand": 19.958, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 2723.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 2.698, + "positive_rate": 0.371, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 114409.0, + "new_cases": 1280.0, + "new_cases_smoothed": 996.286, + "total_deaths": 4846.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 68.571, + "total_cases_per_million": 9801.141, + "new_cases_per_million": 109.654, + "new_cases_smoothed_per_million": 85.349, + "total_deaths_per_million": 415.145, + "new_deaths_per_million": 4.712, + "new_deaths_smoothed_per_million": 5.874, + "new_tests": 2615.0, + "total_tests": 235590.0, + "total_tests_per_thousand": 20.182, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 2730.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 2.74, + "positive_rate": 0.365, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 115354.0, + "new_cases": 945.0, + "new_cases_smoothed": 989.571, + "total_deaths": 4938.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 70.857, + "total_cases_per_million": 9882.097, + "new_cases_per_million": 80.956, + "new_cases_smoothed_per_million": 84.774, + "total_deaths_per_million": 423.026, + "new_deaths_per_million": 7.881, + "new_deaths_smoothed_per_million": 6.07, + "new_tests_smoothed": 2630.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 2.658, + "positive_rate": 0.376, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 115968.0, + "new_cases": 614.0, + "new_cases_smoothed": 974.143, + "total_deaths": 4966.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 65.286, + "total_cases_per_million": 9934.696, + "new_cases_per_million": 52.6, + "new_cases_smoothed_per_million": 83.452, + "total_deaths_per_million": 425.425, + "new_deaths_per_million": 2.399, + "new_deaths_smoothed_per_million": 5.593, + "total_tests": 238965.0, + "total_tests_per_thousand": 20.472, + "new_tests_smoothed": 2554.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 2.622, + "positive_rate": 0.381, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 116598.0, + "new_cases": 630.0, + "new_cases_smoothed": 921.429, + "total_deaths": 5027.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 64.143, + "total_cases_per_million": 9988.667, + "new_cases_per_million": 53.971, + "new_cases_smoothed_per_million": 78.937, + "total_deaths_per_million": 430.651, + "new_deaths_per_million": 5.226, + "new_deaths_smoothed_per_million": 5.495, + "new_tests": 1693.0, + "total_tests": 240658.0, + "total_tests_per_thousand": 20.617, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 2494.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 2.707, + "positive_rate": 0.369, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 117267.0, + "new_cases": 669.0, + "new_cases_smoothed": 895.429, + "total_deaths": 5101.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 62.429, + "total_cases_per_million": 10045.979, + "new_cases_per_million": 57.312, + "new_cases_smoothed_per_million": 76.709, + "total_deaths_per_million": 436.99, + "new_deaths_per_million": 6.339, + "new_deaths_smoothed_per_million": 5.348, + "new_tests": 2166.0, + "total_tests": 242824.0, + "total_tests_per_thousand": 20.802, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 2479.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 2.7689999999999997, + "positive_rate": 0.361, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 117928.0, + "new_cases": 661.0, + "new_cases_smoothed": 833.429, + "total_deaths": 5203.0, + "new_deaths": 102.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 10102.605, + "new_cases_per_million": 56.626, + "new_cases_smoothed_per_million": 71.398, + "total_deaths_per_million": 445.728, + "new_deaths_per_million": 8.738, + "new_deaths_smoothed_per_million": 5.838 + }, + { + "date": "2020-09-04", + "total_cases": 117928.0, + "new_cases": 0.0, + "new_cases_smoothed": 685.571, + "total_deaths": 5203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 58.857, + "total_cases_per_million": 10102.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 58.731, + "total_deaths_per_million": 445.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.042 + }, + { + "date": "2020-09-05", + "total_cases": 119580.0, + "new_cases": 1652.0, + "new_cases_smoothed": 738.714, + "total_deaths": 5343.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 71.0, + "total_cases_per_million": 10244.128, + "new_cases_per_million": 141.523, + "new_cases_smoothed_per_million": 63.284, + "total_deaths_per_million": 457.722, + "new_deaths_per_million": 11.993, + "new_deaths_smoothed_per_million": 6.082 + } + ] + }, + "BES": { + "continent": "North America", + "location": "Bonaire Sint Eustatius and Saba", + "population": 26221.0, + "life_expectancy": 77.79, + "data": [ + { + "date": "2020-04-02", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 76.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.412, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.687, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.687, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.824, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 343.236, + "new_cases_per_million": 76.275, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 343.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 419.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 76.275, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 533.923, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 5.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 572.061, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 572.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 572.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 572.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 572.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 686.473, + "new_cases_per_million": 114.412, + "new_cases_smoothed_per_million": 27.241, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 686.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.793, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 686.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.345, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BIH": { + "continent": "Europe", + "location": "Bosnia and Herzegovina", + "population": 3280815.0, + "population_density": 68.496, + "median_age": 42.5, + "aged_65_older": 16.569, + "aged_70_older": 10.711, + "gdp_per_capita": 11713.895, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 329.635, + "diabetes_prevalence": 10.08, + "female_smokers": 30.2, + "male_smokers": 47.7, + "handwashing_facilities": 97.164, + "hospital_beds_per_thousand": 3.5, + "life_expectancy": 77.4, + "data": [ + { + "date": "2020-03-06", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.61, + "new_cases_per_million": 0.61, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.914, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.28 + }, + { + "date": "2020-03-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.28 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.28 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.28 + }, + { + "date": "2020-03-16", + "total_cases": 18.0, + "new_cases": 15.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.486, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 0.697, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.83 + }, + { + "date": "2020-03-17", + "total_cases": 21.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.401, + "new_cases_per_million": 0.914, + "new_cases_smoothed_per_million": 0.827, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-03-18", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.144, + "new_cases_per_million": 2.743, + "new_cases_smoothed_per_million": 1.219, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-19", + "total_cases": 35.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.668, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.393, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-20", + "total_cases": 44.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.411, + "new_cases_per_million": 2.743, + "new_cases_smoothed_per_million": 1.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-03-21", + "total_cases": 62.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.898, + "new_cases_per_million": 5.486, + "new_cases_smoothed_per_million": 2.569, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-03-22", + "total_cases": 92.0, + "new_cases": 30.0, + "new_cases_smoothed": 12.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.042, + "new_cases_per_million": 9.144, + "new_cases_smoothed_per_million": 3.875, + "total_deaths_per_million": 0.305, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 89.81 + }, + { + "date": "2020-03-23", + "total_cases": 125.0, + "new_cases": 33.0, + "new_cases_smoothed": 15.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.1, + "new_cases_per_million": 10.058, + "new_cases_smoothed_per_million": 4.659, + "total_deaths_per_million": 0.305, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 89.81 + }, + { + "date": "2020-03-24", + "total_cases": 131.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.929, + "new_cases_per_million": 1.829, + "new_cases_smoothed_per_million": 4.79, + "total_deaths_per_million": 0.305, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 89.81 + }, + { + "date": "2020-03-25", + "total_cases": 164.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.988, + "new_cases_per_million": 10.058, + "new_cases_smoothed_per_million": 5.835, + "total_deaths_per_million": 0.61, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 89.81 + }, + { + "date": "2020-03-26", + "total_cases": 173.0, + "new_cases": 9.0, + "new_cases_smoothed": 19.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.731, + "new_cases_per_million": 2.743, + "new_cases_smoothed_per_million": 6.009, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 89.81 + }, + { + "date": "2020-03-27", + "total_cases": 213.0, + "new_cases": 40.0, + "new_cases_smoothed": 24.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 64.923, + "new_cases_per_million": 12.192, + "new_cases_smoothed_per_million": 7.359, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 89.81 + }, + { + "date": "2020-03-28", + "total_cases": 233.0, + "new_cases": 20.0, + "new_cases_smoothed": 24.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 71.019, + "new_cases_per_million": 6.096, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 1.219, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 89.81 + }, + { + "date": "2020-03-29", + "total_cases": 257.0, + "new_cases": 24.0, + "new_cases_smoothed": 23.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 78.334, + "new_cases_per_million": 7.315, + "new_cases_smoothed_per_million": 7.185, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 89.81 + }, + { + "date": "2020-03-30", + "total_cases": 323.0, + "new_cases": 66.0, + "new_cases_smoothed": 28.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 98.451, + "new_cases_per_million": 20.117, + "new_cases_smoothed_per_million": 8.622, + "total_deaths_per_million": 1.829, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 89.81 + }, + { + "date": "2020-03-31", + "total_cases": 353.0, + "new_cases": 30.0, + "new_cases_smoothed": 31.714, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 107.595, + "new_cases_per_million": 9.144, + "new_cases_smoothed_per_million": 9.667, + "total_deaths_per_million": 2.438, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 89.81 + }, + { + "date": "2020-04-01", + "total_cases": 413.0, + "new_cases": 60.0, + "new_cases_smoothed": 35.571, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 125.883, + "new_cases_per_million": 18.288, + "new_cases_smoothed_per_million": 10.842, + "total_deaths_per_million": 3.658, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 89.81 + }, + { + "date": "2020-04-02", + "total_cases": 464.0, + "new_cases": 51.0, + "new_cases_smoothed": 41.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 141.428, + "new_cases_per_million": 15.545, + "new_cases_smoothed_per_million": 12.671, + "total_deaths_per_million": 3.962, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 89.81 + }, + { + "date": "2020-04-03", + "total_cases": 532.0, + "new_cases": 68.0, + "new_cases_smoothed": 45.571, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 162.155, + "new_cases_per_million": 20.727, + "new_cases_smoothed_per_million": 13.89, + "total_deaths_per_million": 5.182, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 89.81 + }, + { + "date": "2020-04-04", + "total_cases": 586.0, + "new_cases": 54.0, + "new_cases_smoothed": 50.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 178.614, + "new_cases_per_million": 16.459, + "new_cases_smoothed_per_million": 15.371, + "total_deaths_per_million": 5.486, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 632.0, + "new_cases": 46.0, + "new_cases_smoothed": 53.571, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 192.635, + "new_cases_per_million": 14.021, + "new_cases_smoothed_per_million": 16.329, + "total_deaths_per_million": 6.401, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 663.0, + "new_cases": 31.0, + "new_cases_smoothed": 48.571, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 202.084, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 14.805, + "total_deaths_per_million": 7.315, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.784, + "stringency_index": 89.81 + }, + { + "date": "2020-04-07", + "total_cases": 695.0, + "new_cases": 32.0, + "new_cases_smoothed": 48.857, + "total_deaths": 28.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 211.838, + "new_cases_per_million": 9.754, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 8.534, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.871, + "stringency_index": 89.81 + }, + { + "date": "2020-04-08", + "total_cases": 781.0, + "new_cases": 86.0, + "new_cases_smoothed": 52.571, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 238.051, + "new_cases_per_million": 26.213, + "new_cases_smoothed_per_million": 16.024, + "total_deaths_per_million": 9.754, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.871, + "stringency_index": 89.81 + }, + { + "date": "2020-04-09", + "total_cases": 816.0, + "new_cases": 35.0, + "new_cases_smoothed": 50.286, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 248.719, + "new_cases_per_million": 10.668, + "new_cases_smoothed_per_million": 15.327, + "total_deaths_per_million": 10.668, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.958, + "stringency_index": 89.81 + }, + { + "date": "2020-04-10", + "total_cases": 875.0, + "new_cases": 59.0, + "new_cases_smoothed": 49.0, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 266.702, + "new_cases_per_million": 17.983, + "new_cases_smoothed_per_million": 14.935, + "total_deaths_per_million": 10.973, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.827, + "stringency_index": 92.59 + }, + { + "date": "2020-04-11", + "total_cases": 901.0, + "new_cases": 26.0, + "new_cases_smoothed": 45.0, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 274.627, + "new_cases_per_million": 7.925, + "new_cases_smoothed_per_million": 13.716, + "total_deaths_per_million": 11.278, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.827, + "stringency_index": 92.59 + }, + { + "date": "2020-04-12", + "total_cases": 948.0, + "new_cases": 47.0, + "new_cases_smoothed": 45.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 288.953, + "new_cases_per_million": 14.326, + "new_cases_smoothed_per_million": 13.76, + "total_deaths_per_million": 11.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 92.59 + }, + { + "date": "2020-04-13", + "total_cases": 1007.0, + "new_cases": 59.0, + "new_cases_smoothed": 49.143, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 306.936, + "new_cases_per_million": 17.983, + "new_cases_smoothed_per_million": 14.979, + "total_deaths_per_million": 11.582, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 92.59 + }, + { + "date": "2020-04-14", + "total_cases": 1028.0, + "new_cases": 21.0, + "new_cases_smoothed": 47.571, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 313.337, + "new_cases_per_million": 6.401, + "new_cases_smoothed_per_million": 14.5, + "total_deaths_per_million": 11.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 92.59 + }, + { + "date": "2020-04-15", + "total_cases": 1073.0, + "new_cases": 45.0, + "new_cases_smoothed": 41.714, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 327.053, + "new_cases_per_million": 13.716, + "new_cases_smoothed_per_million": 12.715, + "total_deaths_per_million": 11.887, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 92.59 + }, + { + "date": "2020-04-16", + "total_cases": 1100.0, + "new_cases": 27.0, + "new_cases_smoothed": 40.571, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 335.283, + "new_cases_per_million": 8.23, + "new_cases_smoothed_per_million": 12.366, + "total_deaths_per_million": 12.192, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 92.59 + }, + { + "date": "2020-04-17", + "total_cases": 1152.0, + "new_cases": 52.0, + "new_cases_smoothed": 39.571, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 351.132, + "new_cases_per_million": 15.85, + "new_cases_smoothed_per_million": 12.061, + "total_deaths_per_million": 12.497, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 92.59 + }, + { + "date": "2020-04-18", + "total_cases": 1210.0, + "new_cases": 58.0, + "new_cases_smoothed": 44.143, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 368.811, + "new_cases_per_million": 17.679, + "new_cases_smoothed_per_million": 13.455, + "total_deaths_per_million": 13.411, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 92.59 + }, + { + "date": "2020-04-19", + "total_cases": 1254.0, + "new_cases": 44.0, + "new_cases_smoothed": 43.714, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 382.222, + "new_cases_per_million": 13.411, + "new_cases_smoothed_per_million": 13.324, + "total_deaths_per_million": 13.716, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.348, + "stringency_index": 92.59 + }, + { + "date": "2020-04-20", + "total_cases": 1269.0, + "new_cases": 15.0, + "new_cases_smoothed": 37.429, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 386.794, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 11.408, + "total_deaths_per_million": 14.021, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.348, + "stringency_index": 92.59 + }, + { + "date": "2020-04-21", + "total_cases": 1300.0, + "new_cases": 31.0, + "new_cases_smoothed": 38.857, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 396.243, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 11.844, + "total_deaths_per_million": 14.631, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 92.59 + }, + { + "date": "2020-04-22", + "total_cases": 1340.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.143, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 408.435, + "new_cases_per_million": 12.192, + "new_cases_smoothed_per_million": 11.626, + "total_deaths_per_million": 15.24, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 92.59 + }, + { + "date": "2020-04-23", + "total_cases": 1367.0, + "new_cases": 27.0, + "new_cases_smoothed": 38.143, + "total_deaths": 52.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 416.665, + "new_cases_per_million": 8.23, + "new_cases_smoothed_per_million": 11.626, + "total_deaths_per_million": 15.85, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 92.59 + }, + { + "date": "2020-04-24", + "total_cases": 1413.0, + "new_cases": 46.0, + "new_cases_smoothed": 37.286, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 430.686, + "new_cases_per_million": 14.021, + "new_cases_smoothed_per_million": 11.365, + "total_deaths_per_million": 16.155, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 90.74 + }, + { + "date": "2020-04-25", + "total_cases": 1420.0, + "new_cases": 7.0, + "new_cases_smoothed": 30.0, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 432.819, + "new_cases_per_million": 2.134, + "new_cases_smoothed_per_million": 9.144, + "total_deaths_per_million": 16.459, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 90.74 + }, + { + "date": "2020-04-26", + "total_cases": 1485.0, + "new_cases": 65.0, + "new_cases_smoothed": 33.0, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 452.631, + "new_cases_per_million": 19.812, + "new_cases_smoothed_per_million": 10.058, + "total_deaths_per_million": 17.069, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 90.74 + }, + { + "date": "2020-04-27", + "total_cases": 1516.0, + "new_cases": 31.0, + "new_cases_smoothed": 35.286, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 462.08, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 10.755, + "total_deaths_per_million": 17.679, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 1564.0, + "new_cases": 48.0, + "new_cases_smoothed": 37.714, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 476.711, + "new_cases_per_million": 14.631, + "new_cases_smoothed_per_million": 11.495, + "total_deaths_per_million": 18.288, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 1588.0, + "new_cases": 24.0, + "new_cases_smoothed": 35.429, + "total_deaths": 62.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 484.026, + "new_cases_per_million": 7.315, + "new_cases_smoothed_per_million": 10.799, + "total_deaths_per_million": 18.898, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 1689.0, + "new_cases": 101.0, + "new_cases_smoothed": 46.0, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 514.811, + "new_cases_per_million": 30.785, + "new_cases_smoothed_per_million": 14.021, + "total_deaths_per_million": 19.507, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 1757.0, + "new_cases": 68.0, + "new_cases_smoothed": 49.143, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 535.538, + "new_cases_per_million": 20.727, + "new_cases_smoothed_per_million": 14.979, + "total_deaths_per_million": 20.727, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 1782.0, + "new_cases": 25.0, + "new_cases_smoothed": 51.714, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 543.158, + "new_cases_per_million": 7.62, + "new_cases_smoothed_per_million": 15.763, + "total_deaths_per_million": 21.031, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 1840.0, + "new_cases": 58.0, + "new_cases_smoothed": 50.714, + "total_deaths": 71.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 560.836, + "new_cases_per_million": 17.679, + "new_cases_smoothed_per_million": 15.458, + "total_deaths_per_million": 21.641, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 1857.0, + "new_cases": 17.0, + "new_cases_smoothed": 48.714, + "total_deaths": 76.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 566.018, + "new_cases_per_million": 5.182, + "new_cases_smoothed_per_million": 14.848, + "total_deaths_per_million": 23.165, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 0.784, + "stringency_index": 90.74 + }, + { + "date": "2020-05-05", + "total_cases": 1926.0, + "new_cases": 69.0, + "new_cases_smoothed": 51.714, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 587.049, + "new_cases_per_million": 21.031, + "new_cases_smoothed_per_million": 15.763, + "total_deaths_per_million": 23.47, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.74, + "stringency_index": 90.74 + }, + { + "date": "2020-05-06", + "total_cases": 1946.0, + "new_cases": 20.0, + "new_cases_smoothed": 51.143, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 593.145, + "new_cases_per_million": 6.096, + "new_cases_smoothed_per_million": 15.588, + "total_deaths_per_million": 23.775, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 90.74 + }, + { + "date": "2020-05-07", + "total_cases": 1986.0, + "new_cases": 40.0, + "new_cases_smoothed": 42.429, + "total_deaths": 84.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 605.337, + "new_cases_per_million": 12.192, + "new_cases_smoothed_per_million": 12.932, + "total_deaths_per_million": 25.603, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 0.871, + "stringency_index": 90.74 + }, + { + "date": "2020-05-08", + "total_cases": 2027.0, + "new_cases": 41.0, + "new_cases_smoothed": 38.571, + "total_deaths": 90.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 617.834, + "new_cases_per_million": 12.497, + "new_cases_smoothed_per_million": 11.757, + "total_deaths_per_million": 27.432, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 0.958, + "stringency_index": 90.74 + }, + { + "date": "2020-05-09", + "total_cases": 2070.0, + "new_cases": 43.0, + "new_cases_smoothed": 41.143, + "total_deaths": 98.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 630.941, + "new_cases_per_million": 13.106, + "new_cases_smoothed_per_million": 12.54, + "total_deaths_per_million": 29.871, + "new_deaths_per_million": 2.438, + "new_deaths_smoothed_per_million": 1.263, + "stringency_index": 90.74 + }, + { + "date": "2020-05-10", + "total_cases": 2092.0, + "new_cases": 22.0, + "new_cases_smoothed": 36.0, + "total_deaths": 101.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 637.646, + "new_cases_per_million": 6.706, + "new_cases_smoothed_per_million": 10.973, + "total_deaths_per_million": 30.785, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 1.306, + "stringency_index": 90.74 + }, + { + "date": "2020-05-11", + "total_cases": 2117.0, + "new_cases": 25.0, + "new_cases_smoothed": 37.143, + "total_deaths": 107.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 645.266, + "new_cases_per_million": 7.62, + "new_cases_smoothed_per_million": 11.321, + "total_deaths_per_million": 32.614, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 1.35, + "stringency_index": 81.48 + }, + { + "date": "2020-05-12", + "total_cases": 2142.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.857, + "total_deaths": 112.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 652.887, + "new_cases_per_million": 7.62, + "new_cases_smoothed_per_million": 9.405, + "total_deaths_per_million": 34.138, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 1.524, + "stringency_index": 81.48 + }, + { + "date": "2020-05-13", + "total_cases": 2158.0, + "new_cases": 16.0, + "new_cases_smoothed": 30.286, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 657.763, + "new_cases_per_million": 4.877, + "new_cases_smoothed_per_million": 9.231, + "total_deaths_per_million": 35.357, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.655, + "stringency_index": 81.48 + }, + { + "date": "2020-05-14", + "total_cases": 2181.0, + "new_cases": 23.0, + "new_cases_smoothed": 27.857, + "total_deaths": 120.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 664.774, + "new_cases_per_million": 7.01, + "new_cases_smoothed_per_million": 8.491, + "total_deaths_per_million": 36.576, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.568, + "stringency_index": 79.63 + }, + { + "date": "2020-05-15", + "total_cases": 2216.0, + "new_cases": 35.0, + "new_cases_smoothed": 27.0, + "total_deaths": 123.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 675.442, + "new_cases_per_million": 10.668, + "new_cases_smoothed_per_million": 8.23, + "total_deaths_per_million": 37.491, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 1.437, + "stringency_index": 76.85 + }, + { + "date": "2020-05-16", + "total_cases": 2237.0, + "new_cases": 21.0, + "new_cases_smoothed": 23.857, + "total_deaths": 127.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 681.843, + "new_cases_per_million": 6.401, + "new_cases_smoothed_per_million": 7.272, + "total_deaths_per_million": 38.71, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.263, + "stringency_index": 76.85 + }, + { + "date": "2020-05-17", + "total_cases": 2267.0, + "new_cases": 30.0, + "new_cases_smoothed": 25.0, + "total_deaths": 129.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 690.987, + "new_cases_per_million": 9.144, + "new_cases_smoothed_per_million": 7.62, + "total_deaths_per_million": 39.319, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 1.219, + "stringency_index": 76.85 + }, + { + "date": "2020-05-18", + "total_cases": 2289.0, + "new_cases": 22.0, + "new_cases_smoothed": 24.571, + "total_deaths": 132.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 697.692, + "new_cases_per_million": 6.706, + "new_cases_smoothed_per_million": 7.489, + "total_deaths_per_million": 40.234, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 1.089, + "stringency_index": 76.85 + }, + { + "date": "2020-05-19", + "total_cases": 2303.0, + "new_cases": 14.0, + "new_cases_smoothed": 23.0, + "total_deaths": 132.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 701.96, + "new_cases_per_million": 4.267, + "new_cases_smoothed_per_million": 7.01, + "total_deaths_per_million": 40.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871, + "stringency_index": 76.85 + }, + { + "date": "2020-05-20", + "total_cases": 2319.0, + "new_cases": 16.0, + "new_cases_smoothed": 23.0, + "total_deaths": 133.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 706.837, + "new_cases_per_million": 4.877, + "new_cases_smoothed_per_million": 7.01, + "total_deaths_per_million": 40.539, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.74, + "stringency_index": 76.85 + }, + { + "date": "2020-05-21", + "total_cases": 2334.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.857, + "total_deaths": 135.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 711.409, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 6.662, + "total_deaths_per_million": 41.148, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 71.3 + }, + { + "date": "2020-05-22", + "total_cases": 2352.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.429, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 716.895, + "new_cases_per_million": 5.486, + "new_cases_smoothed_per_million": 5.922, + "total_deaths_per_million": 42.368, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 71.3 + }, + { + "date": "2020-05-23", + "total_cases": 2372.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.286, + "total_deaths": 141.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 722.991, + "new_cases_per_million": 6.096, + "new_cases_smoothed_per_million": 5.878, + "total_deaths_per_million": 42.977, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 71.3 + }, + { + "date": "2020-05-24", + "total_cases": 2391.0, + "new_cases": 19.0, + "new_cases_smoothed": 17.714, + "total_deaths": 141.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 728.782, + "new_cases_per_million": 5.791, + "new_cases_smoothed_per_million": 5.399, + "total_deaths_per_million": 42.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 71.3 + }, + { + "date": "2020-05-25", + "total_cases": 2400.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.857, + "total_deaths": 143.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 731.526, + "new_cases_per_million": 2.743, + "new_cases_smoothed_per_million": 4.833, + "total_deaths_per_million": 43.587, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 71.3 + }, + { + "date": "2020-05-26", + "total_cases": 2405.0, + "new_cases": 5.0, + "new_cases_smoothed": 14.571, + "total_deaths": 145.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 733.05, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 4.441, + "total_deaths_per_million": 44.196, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 71.3 + }, + { + "date": "2020-05-27", + "total_cases": 2415.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.714, + "total_deaths": 149.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 736.098, + "new_cases_per_million": 3.048, + "new_cases_smoothed_per_million": 4.18, + "total_deaths_per_million": 45.416, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 0.697, + "stringency_index": 71.3 + }, + { + "date": "2020-05-28", + "total_cases": 2434.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.286, + "total_deaths": 150.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 741.889, + "new_cases_per_million": 5.791, + "new_cases_smoothed_per_million": 4.354, + "total_deaths_per_million": 45.72, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 71.3 + }, + { + "date": "2020-05-29", + "total_cases": 2462.0, + "new_cases": 28.0, + "new_cases_smoothed": 15.714, + "total_deaths": 152.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 750.423, + "new_cases_per_million": 8.534, + "new_cases_smoothed_per_million": 4.79, + "total_deaths_per_million": 46.33, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 65.74 + }, + { + "date": "2020-05-30", + "total_cases": 2484.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.0, + "total_deaths": 152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 757.129, + "new_cases_per_million": 6.706, + "new_cases_smoothed_per_million": 4.877, + "total_deaths_per_million": 46.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 65.74 + }, + { + "date": "2020-05-31", + "total_cases": 2493.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.571, + "total_deaths": 152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 759.872, + "new_cases_per_million": 2.743, + "new_cases_smoothed_per_million": 4.441, + "total_deaths_per_million": 46.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 65.74 + }, + { + "date": "2020-06-01", + "total_cases": 2509.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.571, + "total_deaths": 152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 764.749, + "new_cases_per_million": 4.877, + "new_cases_smoothed_per_million": 4.746, + "total_deaths_per_million": 46.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 54.63 + }, + { + "date": "2020-06-02", + "total_cases": 2523.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.857, + "total_deaths": 153.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 769.016, + "new_cases_per_million": 4.267, + "new_cases_smoothed_per_million": 5.138, + "total_deaths_per_million": 46.635, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.348, + "stringency_index": 54.63 + }, + { + "date": "2020-06-03", + "total_cases": 2534.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.0, + "total_deaths": 156.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 772.369, + "new_cases_per_million": 3.353, + "new_cases_smoothed_per_million": 5.182, + "total_deaths_per_million": 47.549, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 54.63 + }, + { + "date": "2020-06-04", + "total_cases": 2550.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.571, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 777.246, + "new_cases_per_million": 4.877, + "new_cases_smoothed_per_million": 5.051, + "total_deaths_per_million": 47.549, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 54.63 + }, + { + "date": "2020-06-05", + "total_cases": 2593.0, + "new_cases": 43.0, + "new_cases_smoothed": 18.714, + "total_deaths": 158.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 790.352, + "new_cases_per_million": 13.106, + "new_cases_smoothed_per_million": 5.704, + "total_deaths_per_million": 48.159, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 54.63 + }, + { + "date": "2020-06-06", + "total_cases": 2605.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.286, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 794.01, + "new_cases_per_million": 3.658, + "new_cases_smoothed_per_million": 5.269, + "total_deaths_per_million": 48.159, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 54.63 + }, + { + "date": "2020-06-07", + "total_cases": 2636.0, + "new_cases": 31.0, + "new_cases_smoothed": 20.429, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 803.459, + "new_cases_per_million": 9.449, + "new_cases_smoothed_per_million": 6.227, + "total_deaths_per_million": 48.159, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 54.63 + }, + { + "date": "2020-06-08", + "total_cases": 2673.0, + "new_cases": 37.0, + "new_cases_smoothed": 23.429, + "total_deaths": 159.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 814.737, + "new_cases_per_million": 11.278, + "new_cases_smoothed_per_million": 7.141, + "total_deaths_per_million": 48.464, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 54.63 + }, + { + "date": "2020-06-09", + "total_cases": 2703.0, + "new_cases": 30.0, + "new_cases_smoothed": 25.714, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 823.881, + "new_cases_per_million": 9.144, + "new_cases_smoothed_per_million": 7.838, + "total_deaths_per_million": 48.464, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 54.63 + }, + { + "date": "2020-06-10", + "total_cases": 2727.0, + "new_cases": 24.0, + "new_cases_smoothed": 27.571, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 831.196, + "new_cases_per_million": 7.315, + "new_cases_smoothed_per_million": 8.404, + "total_deaths_per_million": 48.464, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 54.63 + }, + { + "date": "2020-06-11", + "total_cases": 2776.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.286, + "total_deaths": 160.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 846.131, + "new_cases_per_million": 14.935, + "new_cases_smoothed_per_million": 9.841, + "total_deaths_per_million": 48.768, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 54.63 + }, + { + "date": "2020-06-12", + "total_cases": 2831.0, + "new_cases": 55.0, + "new_cases_smoothed": 34.0, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 862.895, + "new_cases_per_million": 16.764, + "new_cases_smoothed_per_million": 10.363, + "total_deaths_per_million": 48.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 54.63 + }, + { + "date": "2020-06-13", + "total_cases": 2892.0, + "new_cases": 61.0, + "new_cases_smoothed": 41.0, + "total_deaths": 162.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 881.488, + "new_cases_per_million": 18.593, + "new_cases_smoothed_per_million": 12.497, + "total_deaths_per_million": 49.378, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 51.85 + }, + { + "date": "2020-06-14", + "total_cases": 2940.0, + "new_cases": 48.0, + "new_cases_smoothed": 43.429, + "total_deaths": 163.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 896.119, + "new_cases_per_million": 14.631, + "new_cases_smoothed_per_million": 13.237, + "total_deaths_per_million": 49.683, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 51.85 + }, + { + "date": "2020-06-15", + "total_cases": 3001.0, + "new_cases": 61.0, + "new_cases_smoothed": 46.857, + "total_deaths": 163.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 914.712, + "new_cases_per_million": 18.593, + "new_cases_smoothed_per_million": 14.282, + "total_deaths_per_million": 49.683, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 51.85 + }, + { + "date": "2020-06-16", + "total_cases": 3039.0, + "new_cases": 38.0, + "new_cases_smoothed": 48.0, + "total_deaths": 164.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 926.294, + "new_cases_per_million": 11.582, + "new_cases_smoothed_per_million": 14.631, + "total_deaths_per_million": 49.988, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 51.85 + }, + { + "date": "2020-06-17", + "total_cases": 3084.0, + "new_cases": 45.0, + "new_cases_smoothed": 51.0, + "total_deaths": 167.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 940.01, + "new_cases_per_million": 13.716, + "new_cases_smoothed_per_million": 15.545, + "total_deaths_per_million": 50.902, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.348, + "stringency_index": 51.85 + }, + { + "date": "2020-06-18", + "total_cases": 3144.0, + "new_cases": 60.0, + "new_cases_smoothed": 52.571, + "total_deaths": 167.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 958.298, + "new_cases_per_million": 18.288, + "new_cases_smoothed_per_million": 16.024, + "total_deaths_per_million": 50.902, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 51.85 + }, + { + "date": "2020-06-19", + "total_cases": 3202.0, + "new_cases": 58.0, + "new_cases_smoothed": 53.0, + "total_deaths": 167.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 975.977, + "new_cases_per_million": 17.679, + "new_cases_smoothed_per_million": 16.155, + "total_deaths_per_million": 50.902, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 51.85 + }, + { + "date": "2020-06-20", + "total_cases": 3288.0, + "new_cases": 86.0, + "new_cases_smoothed": 56.571, + "total_deaths": 168.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1002.19, + "new_cases_per_million": 26.213, + "new_cases_smoothed_per_million": 17.243, + "total_deaths_per_million": 51.207, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 51.85 + }, + { + "date": "2020-06-21", + "total_cases": 3354.0, + "new_cases": 66.0, + "new_cases_smoothed": 59.143, + "total_deaths": 169.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1022.307, + "new_cases_per_million": 20.117, + "new_cases_smoothed_per_million": 18.027, + "total_deaths_per_million": 51.512, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 51.85 + }, + { + "date": "2020-06-22", + "total_cases": 3431.0, + "new_cases": 77.0, + "new_cases_smoothed": 61.429, + "total_deaths": 169.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1045.777, + "new_cases_per_million": 23.47, + "new_cases_smoothed_per_million": 18.724, + "total_deaths_per_million": 51.512, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 51.85 + }, + { + "date": "2020-06-23", + "total_cases": 3524.0, + "new_cases": 93.0, + "new_cases_smoothed": 69.286, + "total_deaths": 170.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1074.123, + "new_cases_per_million": 28.347, + "new_cases_smoothed_per_million": 21.118, + "total_deaths_per_million": 51.816, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 51.85 + }, + { + "date": "2020-06-24", + "total_cases": 3587.0, + "new_cases": 63.0, + "new_cases_smoothed": 71.857, + "total_deaths": 171.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1093.326, + "new_cases_per_million": 19.203, + "new_cases_smoothed_per_million": 21.902, + "total_deaths_per_million": 52.121, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 51.85 + }, + { + "date": "2020-06-25", + "total_cases": 3675.0, + "new_cases": 88.0, + "new_cases_smoothed": 75.857, + "total_deaths": 172.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1120.148, + "new_cases_per_million": 26.823, + "new_cases_smoothed_per_million": 23.121, + "total_deaths_per_million": 52.426, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 51.85 + }, + { + "date": "2020-06-26", + "total_cases": 3794.0, + "new_cases": 119.0, + "new_cases_smoothed": 84.571, + "total_deaths": 174.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1156.42, + "new_cases_per_million": 36.271, + "new_cases_smoothed_per_million": 25.778, + "total_deaths_per_million": 53.036, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.305, + "stringency_index": 51.85 + }, + { + "date": "2020-06-27", + "total_cases": 3934.0, + "new_cases": 140.0, + "new_cases_smoothed": 92.286, + "total_deaths": 177.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1199.092, + "new_cases_per_million": 42.672, + "new_cases_smoothed_per_million": 28.129, + "total_deaths_per_million": 53.95, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 51.85 + }, + { + "date": "2020-06-28", + "total_cases": 4107.0, + "new_cases": 173.0, + "new_cases_smoothed": 107.571, + "total_deaths": 179.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1251.823, + "new_cases_per_million": 52.731, + "new_cases_smoothed_per_million": 32.788, + "total_deaths_per_million": 54.56, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 51.85 + }, + { + "date": "2020-06-29", + "total_cases": 4215.0, + "new_cases": 108.0, + "new_cases_smoothed": 112.0, + "total_deaths": 182.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1284.742, + "new_cases_per_million": 32.919, + "new_cases_smoothed_per_million": 34.138, + "total_deaths_per_million": 55.474, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 4343.0, + "new_cases": 128.0, + "new_cases_smoothed": 117.0, + "total_deaths": 183.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1323.756, + "new_cases_per_million": 39.015, + "new_cases_smoothed_per_million": 35.662, + "total_deaths_per_million": 55.779, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 4453.0, + "new_cases": 110.0, + "new_cases_smoothed": 123.714, + "total_deaths": 185.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1357.285, + "new_cases_per_million": 33.528, + "new_cases_smoothed_per_million": 37.708, + "total_deaths_per_million": 56.388, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 51.85 + }, + { + "date": "2020-07-02", + "total_cases": 4606.0, + "new_cases": 153.0, + "new_cases_smoothed": 133.0, + "total_deaths": 187.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1403.919, + "new_cases_per_million": 46.635, + "new_cases_smoothed_per_million": 40.539, + "total_deaths_per_million": 56.998, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.653, + "stringency_index": 51.85 + }, + { + "date": "2020-07-03", + "total_cases": 4788.0, + "new_cases": 182.0, + "new_cases_smoothed": 142.0, + "total_deaths": 188.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1459.393, + "new_cases_per_million": 55.474, + "new_cases_smoothed_per_million": 43.282, + "total_deaths_per_million": 57.303, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.61, + "stringency_index": 51.85 + }, + { + "date": "2020-07-04", + "total_cases": 4960.0, + "new_cases": 172.0, + "new_cases_smoothed": 146.571, + "total_deaths": 190.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1511.819, + "new_cases_per_million": 52.426, + "new_cases_smoothed_per_million": 44.675, + "total_deaths_per_million": 57.912, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 51.85 + }, + { + "date": "2020-07-05", + "total_cases": 5249.0, + "new_cases": 289.0, + "new_cases_smoothed": 163.143, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1599.907, + "new_cases_per_million": 88.088, + "new_cases_smoothed_per_million": 49.726, + "total_deaths_per_million": 57.912, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 56.48 + }, + { + "date": "2020-07-06", + "total_cases": 5393.0, + "new_cases": 144.0, + "new_cases_smoothed": 168.286, + "total_deaths": 193.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1643.799, + "new_cases_per_million": 43.892, + "new_cases_smoothed_per_million": 51.294, + "total_deaths_per_million": 58.827, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 56.48 + }, + { + "date": "2020-07-07", + "total_cases": 5457.0, + "new_cases": 64.0, + "new_cases_smoothed": 159.143, + "total_deaths": 196.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1663.306, + "new_cases_per_million": 19.507, + "new_cases_smoothed_per_million": 48.507, + "total_deaths_per_million": 59.741, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 56.48 + }, + { + "date": "2020-07-08", + "total_cases": 5618.0, + "new_cases": 161.0, + "new_cases_smoothed": 166.429, + "total_deaths": 206.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1712.379, + "new_cases_per_million": 49.073, + "new_cases_smoothed_per_million": 50.728, + "total_deaths_per_million": 62.789, + "new_deaths_per_million": 3.048, + "new_deaths_smoothed_per_million": 0.914, + "stringency_index": 56.48 + }, + { + "date": "2020-07-09", + "total_cases": 5868.0, + "new_cases": 250.0, + "new_cases_smoothed": 180.286, + "total_deaths": 207.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1788.58, + "new_cases_per_million": 76.201, + "new_cases_smoothed_per_million": 54.952, + "total_deaths_per_million": 63.094, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.871, + "stringency_index": 56.48 + }, + { + "date": "2020-07-10", + "total_cases": 6087.0, + "new_cases": 219.0, + "new_cases_smoothed": 185.571, + "total_deaths": 213.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1855.332, + "new_cases_per_million": 66.752, + "new_cases_smoothed_per_million": 56.563, + "total_deaths_per_million": 64.923, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 1.089, + "stringency_index": 56.48 + }, + { + "date": "2020-07-11", + "total_cases": 6402.0, + "new_cases": 315.0, + "new_cases_smoothed": 206.0, + "total_deaths": 215.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1951.344, + "new_cases_per_million": 96.013, + "new_cases_smoothed_per_million": 62.789, + "total_deaths_per_million": 65.532, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 1.089, + "stringency_index": 56.48 + }, + { + "date": "2020-07-12", + "total_cases": 6720.0, + "new_cases": 318.0, + "new_cases_smoothed": 210.143, + "total_deaths": 218.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2048.272, + "new_cases_per_million": 96.927, + "new_cases_smoothed_per_million": 64.052, + "total_deaths_per_million": 66.447, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 1.219, + "stringency_index": 56.48 + }, + { + "date": "2020-07-13", + "total_cases": 6884.0, + "new_cases": 164.0, + "new_cases_smoothed": 213.0, + "total_deaths": 220.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2098.259, + "new_cases_per_million": 49.988, + "new_cases_smoothed_per_million": 64.923, + "total_deaths_per_million": 67.057, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 1.176, + "stringency_index": 56.48 + }, + { + "date": "2020-07-14", + "total_cases": 6979.0, + "new_cases": 95.0, + "new_cases_smoothed": 217.429, + "total_deaths": 224.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2127.215, + "new_cases_per_million": 28.956, + "new_cases_smoothed_per_million": 66.273, + "total_deaths_per_million": 68.276, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.219, + "stringency_index": 56.48 + }, + { + "date": "2020-07-15", + "total_cases": 7176.0, + "new_cases": 197.0, + "new_cases_smoothed": 222.571, + "total_deaths": 225.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2187.261, + "new_cases_per_million": 60.046, + "new_cases_smoothed_per_million": 67.84, + "total_deaths_per_million": 68.581, + "new_deaths_per_million": 0.305, + "new_deaths_smoothed_per_million": 0.827, + "stringency_index": 56.48 + }, + { + "date": "2020-07-16", + "total_cases": 7407.0, + "new_cases": 231.0, + "new_cases_smoothed": 219.857, + "total_deaths": 233.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2257.671, + "new_cases_per_million": 70.409, + "new_cases_smoothed_per_million": 67.013, + "total_deaths_per_million": 71.019, + "new_deaths_per_million": 2.438, + "new_deaths_smoothed_per_million": 1.132, + "stringency_index": 56.48 + }, + { + "date": "2020-07-17", + "total_cases": 7681.0, + "new_cases": 274.0, + "new_cases_smoothed": 227.714, + "total_deaths": 239.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2341.187, + "new_cases_per_million": 83.516, + "new_cases_smoothed_per_million": 69.408, + "total_deaths_per_million": 72.848, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 1.132, + "stringency_index": 56.48 + }, + { + "date": "2020-07-18", + "total_cases": 7908.0, + "new_cases": 227.0, + "new_cases_smoothed": 215.143, + "total_deaths": 243.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2410.377, + "new_cases_per_million": 69.19, + "new_cases_smoothed_per_million": 65.576, + "total_deaths_per_million": 74.067, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.219, + "stringency_index": 56.48 + }, + { + "date": "2020-07-19", + "total_cases": 8164.0, + "new_cases": 256.0, + "new_cases_smoothed": 206.286, + "total_deaths": 245.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2488.406, + "new_cases_per_million": 78.029, + "new_cases_smoothed_per_million": 62.876, + "total_deaths_per_million": 74.677, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 1.176, + "stringency_index": 56.48 + }, + { + "date": "2020-07-20", + "total_cases": 8452.0, + "new_cases": 288.0, + "new_cases_smoothed": 224.0, + "total_deaths": 250.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2576.189, + "new_cases_per_million": 87.783, + "new_cases_smoothed_per_million": 68.276, + "total_deaths_per_million": 76.201, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 1.306, + "stringency_index": 56.48 + }, + { + "date": "2020-07-21", + "total_cases": 8591.0, + "new_cases": 139.0, + "new_cases_smoothed": 230.286, + "total_deaths": 256.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2618.557, + "new_cases_per_million": 42.368, + "new_cases_smoothed_per_million": 70.192, + "total_deaths_per_million": 78.029, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 1.393, + "stringency_index": 56.48 + }, + { + "date": "2020-07-22", + "total_cases": 8786.0, + "new_cases": 195.0, + "new_cases_smoothed": 230.0, + "total_deaths": 261.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2677.993, + "new_cases_per_million": 59.436, + "new_cases_smoothed_per_million": 70.105, + "total_deaths_per_million": 79.553, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 1.568, + "stringency_index": 56.48 + }, + { + "date": "2020-07-23", + "total_cases": 9116.0, + "new_cases": 330.0, + "new_cases_smoothed": 244.143, + "total_deaths": 267.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2778.578, + "new_cases_per_million": 100.585, + "new_cases_smoothed_per_million": 74.415, + "total_deaths_per_million": 81.382, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 1.48, + "stringency_index": 56.48 + }, + { + "date": "2020-07-24", + "total_cases": 9460.0, + "new_cases": 344.0, + "new_cases_smoothed": 254.143, + "total_deaths": 272.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2883.43, + "new_cases_per_million": 104.852, + "new_cases_smoothed_per_million": 77.463, + "total_deaths_per_million": 82.906, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 1.437, + "stringency_index": 59.26 + }, + { + "date": "2020-07-25", + "total_cases": 9462.0, + "new_cases": 2.0, + "new_cases_smoothed": 222.0, + "total_deaths": 274.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2884.039, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 67.666, + "total_deaths_per_million": 83.516, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 1.35, + "stringency_index": 59.26 + }, + { + "date": "2020-07-26", + "total_cases": 9764.0, + "new_cases": 302.0, + "new_cases_smoothed": 228.571, + "total_deaths": 278.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2976.09, + "new_cases_per_million": 92.05, + "new_cases_smoothed_per_million": 69.669, + "total_deaths_per_million": 84.735, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.437, + "stringency_index": 59.26 + }, + { + "date": "2020-07-27", + "total_cases": 10069.0, + "new_cases": 305.0, + "new_cases_smoothed": 231.0, + "total_deaths": 283.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3069.054, + "new_cases_per_million": 92.965, + "new_cases_smoothed_per_million": 70.409, + "total_deaths_per_million": 86.259, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 1.437, + "stringency_index": 59.26 + }, + { + "date": "2020-07-28", + "total_cases": 10498.0, + "new_cases": 429.0, + "new_cases_smoothed": 272.429, + "total_deaths": 294.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3199.815, + "new_cases_per_million": 130.76, + "new_cases_smoothed_per_million": 83.037, + "total_deaths_per_million": 89.612, + "new_deaths_per_million": 3.353, + "new_deaths_smoothed_per_million": 1.655, + "stringency_index": 59.26 + }, + { + "date": "2020-07-29", + "total_cases": 10766.0, + "new_cases": 268.0, + "new_cases_smoothed": 282.857, + "total_deaths": 297.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 3281.502, + "new_cases_per_million": 81.687, + "new_cases_smoothed_per_million": 86.216, + "total_deaths_per_million": 90.526, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 1.568, + "stringency_index": 59.26 + }, + { + "date": "2020-07-30", + "total_cases": 10766.0, + "new_cases": 0.0, + "new_cases_smoothed": 235.714, + "total_deaths": 297.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3281.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 71.846, + "total_deaths_per_million": 90.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.306, + "stringency_index": 59.26 + }, + { + "date": "2020-07-31", + "total_cases": 11444.0, + "new_cases": 678.0, + "new_cases_smoothed": 283.429, + "total_deaths": 328.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3488.158, + "new_cases_per_million": 206.656, + "new_cases_smoothed_per_million": 86.39, + "total_deaths_per_million": 99.975, + "new_deaths_per_million": 9.449, + "new_deaths_smoothed_per_million": 2.438, + "stringency_index": 59.26 + }, + { + "date": "2020-08-01", + "total_cases": 11444.0, + "new_cases": 0.0, + "new_cases_smoothed": 283.143, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3488.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 86.303, + "total_deaths_per_million": 99.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.351, + "stringency_index": 59.26 + }, + { + "date": "2020-08-02", + "total_cases": 11875.0, + "new_cases": 431.0, + "new_cases_smoothed": 301.571, + "total_deaths": 335.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3619.527, + "new_cases_per_million": 131.37, + "new_cases_smoothed_per_million": 91.92, + "total_deaths_per_million": 102.109, + "new_deaths_per_million": 2.134, + "new_deaths_smoothed_per_million": 2.482, + "stringency_index": 59.26 + }, + { + "date": "2020-08-03", + "total_cases": 12108.0, + "new_cases": 233.0, + "new_cases_smoothed": 291.286, + "total_deaths": 343.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3690.546, + "new_cases_per_million": 71.019, + "new_cases_smoothed_per_million": 88.785, + "total_deaths_per_million": 104.547, + "new_deaths_per_million": 2.438, + "new_deaths_smoothed_per_million": 2.613, + "stringency_index": 59.26 + }, + { + "date": "2020-08-04", + "total_cases": 12296.0, + "new_cases": 188.0, + "new_cases_smoothed": 256.857, + "total_deaths": 347.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3747.849, + "new_cases_per_million": 57.303, + "new_cases_smoothed_per_million": 78.291, + "total_deaths_per_million": 105.766, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 2.308, + "stringency_index": 59.26 + }, + { + "date": "2020-08-05", + "total_cases": 12858.0, + "new_cases": 562.0, + "new_cases_smoothed": 298.857, + "total_deaths": 368.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 3919.148, + "new_cases_per_million": 171.299, + "new_cases_smoothed_per_million": 91.092, + "total_deaths_per_million": 112.167, + "new_deaths_per_million": 6.401, + "new_deaths_smoothed_per_million": 3.092, + "stringency_index": 59.26 + }, + { + "date": "2020-08-06", + "total_cases": 13146.0, + "new_cases": 288.0, + "new_cases_smoothed": 340.0, + "total_deaths": 374.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 4006.931, + "new_cases_per_million": 87.783, + "new_cases_smoothed_per_million": 103.633, + "total_deaths_per_million": 113.996, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 3.353, + "stringency_index": 59.26 + }, + { + "date": "2020-08-07", + "total_cases": 13397.0, + "new_cases": 251.0, + "new_cases_smoothed": 279.0, + "total_deaths": 379.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 4083.437, + "new_cases_per_million": 76.505, + "new_cases_smoothed_per_million": 85.04, + "total_deaths_per_million": 115.52, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 2.221, + "stringency_index": 59.26 + }, + { + "date": "2020-08-08", + "total_cases": 13687.0, + "new_cases": 290.0, + "new_cases_smoothed": 320.429, + "total_deaths": 394.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 4171.829, + "new_cases_per_million": 88.393, + "new_cases_smoothed_per_million": 97.667, + "total_deaths_per_million": 120.092, + "new_deaths_per_million": 4.572, + "new_deaths_smoothed_per_million": 2.874, + "stringency_index": 59.26 + }, + { + "date": "2020-08-09", + "total_cases": 14089.0, + "new_cases": 402.0, + "new_cases_smoothed": 316.286, + "total_deaths": 396.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 4294.36, + "new_cases_per_million": 122.531, + "new_cases_smoothed_per_million": 96.405, + "total_deaths_per_million": 120.702, + "new_deaths_per_million": 0.61, + "new_deaths_smoothed_per_million": 2.656, + "stringency_index": 59.26 + }, + { + "date": "2020-08-10", + "total_cases": 14325.0, + "new_cases": 236.0, + "new_cases_smoothed": 316.714, + "total_deaths": 402.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 4366.293, + "new_cases_per_million": 71.933, + "new_cases_smoothed_per_million": 96.535, + "total_deaths_per_million": 122.531, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 2.569, + "stringency_index": 59.26 + }, + { + "date": "2020-08-11", + "total_cases": 14498.0, + "new_cases": 173.0, + "new_cases_smoothed": 314.571, + "total_deaths": 425.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 4419.024, + "new_cases_per_million": 52.731, + "new_cases_smoothed_per_million": 95.882, + "total_deaths_per_million": 129.541, + "new_deaths_per_million": 7.01, + "new_deaths_smoothed_per_million": 3.396, + "stringency_index": 59.26 + }, + { + "date": "2020-08-12", + "total_cases": 14708.0, + "new_cases": 210.0, + "new_cases_smoothed": 264.286, + "total_deaths": 447.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 4483.032, + "new_cases_per_million": 64.008, + "new_cases_smoothed_per_million": 80.555, + "total_deaths_per_million": 136.247, + "new_deaths_per_million": 6.706, + "new_deaths_smoothed_per_million": 3.44, + "stringency_index": 59.26 + }, + { + "date": "2020-08-13", + "total_cases": 14961.0, + "new_cases": 253.0, + "new_cases_smoothed": 259.286, + "total_deaths": 453.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 4560.147, + "new_cases_per_million": 77.115, + "new_cases_smoothed_per_million": 79.031, + "total_deaths_per_million": 138.075, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 3.44, + "stringency_index": 59.26 + }, + { + "date": "2020-08-14", + "total_cases": 15184.0, + "new_cases": 223.0, + "new_cases_smoothed": 255.286, + "total_deaths": 458.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 4628.118, + "new_cases_per_million": 67.971, + "new_cases_smoothed_per_million": 77.812, + "total_deaths_per_million": 139.599, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 3.44, + "stringency_index": 59.26 + }, + { + "date": "2020-08-15", + "total_cases": 15534.0, + "new_cases": 350.0, + "new_cases_smoothed": 263.857, + "total_deaths": 464.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 4734.799, + "new_cases_per_million": 106.681, + "new_cases_smoothed_per_million": 80.424, + "total_deaths_per_million": 141.428, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 3.048, + "stringency_index": 59.26 + }, + { + "date": "2020-08-16", + "total_cases": 15535.0, + "new_cases": 1.0, + "new_cases_smoothed": 206.571, + "total_deaths": 469.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 4735.104, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 62.963, + "total_deaths_per_million": 142.952, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 3.179, + "stringency_index": 59.26 + }, + { + "date": "2020-08-17", + "total_cases": 15535.0, + "new_cases": 0.0, + "new_cases_smoothed": 172.857, + "total_deaths": 469.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 4735.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 52.687, + "total_deaths_per_million": 142.952, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.917, + "stringency_index": 59.26 + }, + { + "date": "2020-08-18", + "total_cases": 16035.0, + "new_cases": 500.0, + "new_cases_smoothed": 219.571, + "total_deaths": 475.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4887.505, + "new_cases_per_million": 152.401, + "new_cases_smoothed_per_million": 66.926, + "total_deaths_per_million": 144.781, + "new_deaths_per_million": 1.829, + "new_deaths_smoothed_per_million": 2.177, + "stringency_index": 59.26 + }, + { + "date": "2020-08-19", + "total_cases": 16351.0, + "new_cases": 316.0, + "new_cases_smoothed": 234.714, + "total_deaths": 495.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 4983.823, + "new_cases_per_million": 96.318, + "new_cases_smoothed_per_million": 71.541, + "total_deaths_per_million": 150.877, + "new_deaths_per_million": 6.096, + "new_deaths_smoothed_per_million": 2.09, + "stringency_index": 59.26 + }, + { + "date": "2020-08-20", + "total_cases": 16691.0, + "new_cases": 340.0, + "new_cases_smoothed": 247.143, + "total_deaths": 507.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 5087.455, + "new_cases_per_million": 103.633, + "new_cases_smoothed_per_million": 75.33, + "total_deaths_per_million": 154.535, + "new_deaths_per_million": 3.658, + "new_deaths_smoothed_per_million": 2.351, + "stringency_index": 59.26 + }, + { + "date": "2020-08-21", + "total_cases": 17029.0, + "new_cases": 338.0, + "new_cases_smoothed": 263.571, + "total_deaths": 515.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 5190.479, + "new_cases_per_million": 103.023, + "new_cases_smoothed_per_million": 80.337, + "total_deaths_per_million": 156.973, + "new_deaths_per_million": 2.438, + "new_deaths_smoothed_per_million": 2.482, + "stringency_index": 53.7 + }, + { + "date": "2020-08-22", + "total_cases": 17392.0, + "new_cases": 363.0, + "new_cases_smoothed": 265.429, + "total_deaths": 520.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 5301.122, + "new_cases_per_million": 110.643, + "new_cases_smoothed_per_million": 80.903, + "total_deaths_per_million": 158.497, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 2.438, + "stringency_index": 53.7 + }, + { + "date": "2020-08-23", + "total_cases": 17392.0, + "new_cases": 0.0, + "new_cases_smoothed": 265.286, + "total_deaths": 520.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5301.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 80.86, + "total_deaths_per_million": 158.497, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.221, + "stringency_index": 53.7 + }, + { + "date": "2020-08-24", + "total_cases": 17900.0, + "new_cases": 508.0, + "new_cases_smoothed": 337.857, + "total_deaths": 529.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 5455.961, + "new_cases_per_million": 154.84, + "new_cases_smoothed_per_million": 102.98, + "total_deaths_per_million": 161.24, + "new_deaths_per_million": 2.743, + "new_deaths_smoothed_per_million": 2.613, + "stringency_index": 53.7 + }, + { + "date": "2020-08-25", + "total_cases": 18027.0, + "new_cases": 127.0, + "new_cases_smoothed": 284.571, + "total_deaths": 540.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 5494.671, + "new_cases_per_million": 38.71, + "new_cases_smoothed_per_million": 86.738, + "total_deaths_per_million": 164.593, + "new_deaths_per_million": 3.353, + "new_deaths_smoothed_per_million": 2.83, + "stringency_index": 53.7 + }, + { + "date": "2020-08-26", + "total_cases": 18324.0, + "new_cases": 297.0, + "new_cases_smoothed": 281.857, + "total_deaths": 554.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 5585.198, + "new_cases_per_million": 90.526, + "new_cases_smoothed_per_million": 85.911, + "total_deaths_per_million": 168.86, + "new_deaths_per_million": 4.267, + "new_deaths_smoothed_per_million": 2.569, + "stringency_index": 53.7 + }, + { + "date": "2020-08-27", + "total_cases": 18609.0, + "new_cases": 285.0, + "new_cases_smoothed": 274.0, + "total_deaths": 571.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 5672.066, + "new_cases_per_million": 86.869, + "new_cases_smoothed_per_million": 83.516, + "total_deaths_per_million": 174.042, + "new_deaths_per_million": 5.182, + "new_deaths_smoothed_per_million": 2.787, + "stringency_index": 53.7 + }, + { + "date": "2020-08-28", + "total_cases": 18920.0, + "new_cases": 311.0, + "new_cases_smoothed": 270.143, + "total_deaths": 582.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 5766.86, + "new_cases_per_million": 94.794, + "new_cases_smoothed_per_million": 82.34, + "total_deaths_per_million": 177.395, + "new_deaths_per_million": 3.353, + "new_deaths_smoothed_per_million": 2.917, + "stringency_index": 53.7 + }, + { + "date": "2020-08-29", + "total_cases": 19214.0, + "new_cases": 294.0, + "new_cases_smoothed": 260.286, + "total_deaths": 585.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 5856.472, + "new_cases_per_million": 89.612, + "new_cases_smoothed_per_million": 79.336, + "total_deaths_per_million": 178.309, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 2.83, + "stringency_index": 53.7 + }, + { + "date": "2020-08-30", + "total_cases": 19214.0, + "new_cases": 0.0, + "new_cases_smoothed": 260.286, + "total_deaths": 588.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 5856.472, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 79.336, + "total_deaths_per_million": 179.224, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 2.961, + "stringency_index": 53.7 + }, + { + "date": "2020-08-31", + "total_cases": 19789.0, + "new_cases": 575.0, + "new_cases_smoothed": 269.857, + "total_deaths": 592.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 6031.733, + "new_cases_per_million": 175.261, + "new_cases_smoothed_per_million": 82.253, + "total_deaths_per_million": 180.443, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 2.743 + }, + { + "date": "2020-09-01", + "total_cases": 19964.0, + "new_cases": 175.0, + "new_cases_smoothed": 276.714, + "total_deaths": 609.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 6085.073, + "new_cases_per_million": 53.34, + "new_cases_smoothed_per_million": 84.343, + "total_deaths_per_million": 185.625, + "new_deaths_per_million": 5.182, + "new_deaths_smoothed_per_million": 3.004 + }, + { + "date": "2020-09-02", + "total_cases": 20234.0, + "new_cases": 270.0, + "new_cases_smoothed": 272.857, + "total_deaths": 620.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 6167.37, + "new_cases_per_million": 82.297, + "new_cases_smoothed_per_million": 83.167, + "total_deaths_per_million": 188.977, + "new_deaths_per_million": 3.353, + "new_deaths_smoothed_per_million": 2.874 + }, + { + "date": "2020-09-03", + "total_cases": 20517.0, + "new_cases": 283.0, + "new_cases_smoothed": 272.571, + "total_deaths": 627.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 6253.629, + "new_cases_per_million": 86.259, + "new_cases_smoothed_per_million": 83.08, + "total_deaths_per_million": 191.111, + "new_deaths_per_million": 2.134, + "new_deaths_smoothed_per_million": 2.438 + }, + { + "date": "2020-09-04", + "total_cases": 20804.0, + "new_cases": 287.0, + "new_cases_smoothed": 269.143, + "total_deaths": 636.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6341.107, + "new_cases_per_million": 87.478, + "new_cases_smoothed_per_million": 82.035, + "total_deaths_per_million": 193.854, + "new_deaths_per_million": 2.743, + "new_deaths_smoothed_per_million": 2.351 + }, + { + "date": "2020-09-05", + "total_cases": 21142.0, + "new_cases": 338.0, + "new_cases_smoothed": 275.429, + "total_deaths": 639.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6444.13, + "new_cases_per_million": 103.023, + "new_cases_smoothed_per_million": 83.951, + "total_deaths_per_million": 194.769, + "new_deaths_per_million": 0.914, + "new_deaths_smoothed_per_million": 2.351 + } + ] + }, + "BWA": { + "continent": "Africa", + "location": "Botswana", + "population": 2351625.0, + "population_density": 4.044, + "median_age": 25.8, + "aged_65_older": 3.941, + "aged_70_older": 2.242, + "gdp_per_capita": 15807.374, + "cardiovasc_death_rate": 237.372, + "diabetes_prevalence": 4.81, + "female_smokers": 5.7, + "male_smokers": 34.4, + "hospital_beds_per_thousand": 1.8, + "life_expectancy": 69.59, + "data": [ + { + "date": "2020-04-01", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.276, + "new_cases_per_million": 1.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-04-02", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 1.701, + "new_cases_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.425, + "stringency_index": 86.11 + }, + { + "date": "2020-04-03", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.701, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-04", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.701, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-05", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.701, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-06", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.551, + "new_cases_per_million": 0.85, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 86.11 + }, + { + "date": "2020-04-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 86.11 + }, + { + "date": "2020-04-09", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.977, + "new_cases_per_million": 0.425, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-10", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 2.551, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-17", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.379, + "new_cases_per_million": 0.85, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.379, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.379, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-20", + "total_cases": 20.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.505, + "new_cases_per_million": 2.126, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-23", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.85, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-27", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-28", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-29", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.425, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-30", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-01", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-02", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-03", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-04", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-05", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-06", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-07", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-08", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-09", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-10", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-11", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-12", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.425, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-13", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-14", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.631, + "new_cases_per_million": 0.425, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-19", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.631, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.631, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-21", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.332, + "new_cases_per_million": 1.701, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-22", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.332, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-23", + "total_cases": 30.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.757, + "new_cases_per_million": 0.425, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-24", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-25", + "total_cases": 35.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 2.126, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-26", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-27", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-28", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-29", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-30", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-31", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-01", + "total_cases": 38.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.159, + "new_cases_per_million": 1.276, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-02", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 40.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.01, + "new_cases_per_million": 0.85, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.86, + "new_cases_per_million": 0.85, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.86, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 48.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.411, + "new_cases_per_million": 2.551, + "new_cases_smoothed_per_million": 0.486, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.411, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.486, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 60.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 5.103, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-15", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-16", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.093, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.093, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.729, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 79.0, + "new_cases": 19.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.594, + "new_cases_per_million": 8.08, + "new_cases_smoothed_per_million": 1.883, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 89.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 4.252, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-22", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-23", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-24", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-25", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-27", + "total_cases": 125.0, + "new_cases": 36.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.155, + "new_cases_per_million": 15.309, + "new_cases_smoothed_per_million": 2.187, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-28", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.187, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-29", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.187, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-30", + "total_cases": 175.0, + "new_cases": 50.0, + "new_cases_smoothed": 12.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.417, + "new_cases_per_million": 21.262, + "new_cases_smoothed_per_million": 5.224, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-01", + "total_cases": 227.0, + "new_cases": 52.0, + "new_cases_smoothed": 19.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.529, + "new_cases_per_million": 22.112, + "new_cases_smoothed_per_million": 8.383, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-02", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.383, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-03", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.383, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-04", + "total_cases": 275.0, + "new_cases": 48.0, + "new_cases_smoothed": 21.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.94, + "new_cases_per_million": 20.411, + "new_cases_smoothed_per_million": 9.112, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-05", + "total_cases": 275.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.94, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.112, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-06", + "total_cases": 275.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.94, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.112, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-07", + "total_cases": 275.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.94, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.075, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-08", + "total_cases": 314.0, + "new_cases": 39.0, + "new_cases_smoothed": 12.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.525, + "new_cases_per_million": 16.584, + "new_cases_smoothed_per_million": 5.285, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-09", + "total_cases": 314.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.285, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-10", + "total_cases": 314.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.285, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-11", + "total_cases": 314.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.369, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-12", + "total_cases": 314.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.369, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-13", + "total_cases": 399.0, + "new_cases": 85.0, + "new_cases_smoothed": 17.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.67, + "new_cases_per_million": 36.145, + "new_cases_smoothed_per_million": 7.533, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-14", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.533, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-15", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.164, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-16", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.164, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-17", + "total_cases": 522.0, + "new_cases": 123.0, + "new_cases_smoothed": 29.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 52.304, + "new_cases_smoothed_per_million": 12.636, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-18", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.636, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-19", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.636, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-20", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.472, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-21", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.472, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-22", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.472, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-23", + "total_cases": 522.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.472, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-24", + "total_cases": 686.0, + "new_cases": 164.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.713, + "new_cases_per_million": 69.739, + "new_cases_smoothed_per_million": 9.963, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-25", + "total_cases": 686.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.713, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.963, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-07-26", + "total_cases": 686.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.713, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.963, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.17 + }, + { + "date": "2020-07-27", + "total_cases": 686.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.713, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.963, + "total_deaths_per_million": 0.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.17 + }, + { + "date": "2020-07-28", + "total_cases": 739.0, + "new_cases": 53.0, + "new_cases_smoothed": 31.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 314.251, + "new_cases_per_million": 22.538, + "new_cases_smoothed_per_million": 13.182, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.425, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 54.17 + }, + { + "date": "2020-07-29", + "total_cases": 739.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 314.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.182, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 54.17 + }, + { + "date": "2020-07-30", + "total_cases": 804.0, + "new_cases": 65.0, + "new_cases_smoothed": 40.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.891, + "new_cases_per_million": 27.64, + "new_cases_smoothed_per_million": 17.131, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 54.17 + }, + { + "date": "2020-07-31", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.168, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 64.35 + }, + { + "date": "2020-08-01", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.168, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 64.35 + }, + { + "date": "2020-08-02", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.168, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 64.35 + }, + { + "date": "2020-08-03", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.168, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 58.8 + }, + { + "date": "2020-08-04", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.8 + }, + { + "date": "2020-08-05", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.8 + }, + { + "date": "2020-08-06", + "total_cases": 804.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.8 + }, + { + "date": "2020-08-07", + "total_cases": 909.0, + "new_cases": 105.0, + "new_cases_smoothed": 15.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 386.541, + "new_cases_per_million": 44.65, + "new_cases_smoothed_per_million": 6.379, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-08", + "total_cases": 909.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 386.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.379, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-09", + "total_cases": 909.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 386.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.379, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-10", + "total_cases": 909.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 386.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.379, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-11", + "total_cases": 1066.0, + "new_cases": 157.0, + "new_cases_smoothed": 37.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 453.304, + "new_cases_per_million": 66.762, + "new_cases_smoothed_per_million": 15.916, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-12", + "total_cases": 1066.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 453.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.916, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-13", + "total_cases": 1066.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 453.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.916, + "total_deaths_per_million": 0.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-08-14", + "total_cases": 1214.0, + "new_cases": 148.0, + "new_cases_smoothed": 43.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 516.239, + "new_cases_per_million": 62.935, + "new_cases_smoothed_per_million": 18.528, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.425, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-15", + "total_cases": 1214.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 516.239, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.528, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-16", + "total_cases": 1214.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 516.239, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.528, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-17", + "total_cases": 1214.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 516.239, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.528, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-18", + "total_cases": 1308.0, + "new_cases": 94.0, + "new_cases_smoothed": 34.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 556.211, + "new_cases_per_million": 39.972, + "new_cases_smoothed_per_million": 14.701, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-19", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.701, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-20", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.701, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 47.22 + }, + { + "date": "2020-08-21", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.71, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-22", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.71, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-23", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.71, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-24", + "total_cases": 1308.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.71, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-25", + "total_cases": 1562.0, + "new_cases": 254.0, + "new_cases_smoothed": 36.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 664.222, + "new_cases_per_million": 108.01, + "new_cases_smoothed_per_million": 15.43, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-08-26", + "total_cases": 1562.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 664.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.43, + "total_deaths_per_million": 1.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-08-27", + "total_cases": 1633.0, + "new_cases": 71.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 694.413, + "new_cases_per_million": 30.192, + "new_cases_smoothed_per_million": 19.743, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 1.276, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-08-28", + "total_cases": 1633.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 694.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.743, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-08-29", + "total_cases": 1633.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 694.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.743, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-08-30", + "total_cases": 1633.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 694.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.743, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-08-31", + "total_cases": 1633.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 694.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.743, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-09-01", + "total_cases": 1724.0, + "new_cases": 91.0, + "new_cases_smoothed": 23.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 733.11, + "new_cases_per_million": 38.697, + "new_cases_smoothed_per_million": 9.841, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-09-02", + "total_cases": 1724.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 733.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.841, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 52.78 + }, + { + "date": "2020-09-03", + "total_cases": 1724.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 733.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.528, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-09-04", + "total_cases": 1724.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 733.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.528, + "total_deaths_per_million": 2.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2002.0, + "new_cases": 278.0, + "new_cases_smoothed": 52.714, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 851.326, + "new_cases_per_million": 118.216, + "new_cases_smoothed_per_million": 22.416, + "total_deaths_per_million": 3.402, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 0.121 + } + ] + }, + "BRA": { + "continent": "South America", + "location": "Brazil", + "population": 212559409.0, + "population_density": 25.04, + "median_age": 33.5, + "aged_65_older": 8.552, + "aged_70_older": 5.06, + "gdp_per_capita": 14103.452, + "extreme_poverty": 3.4, + "cardiovasc_death_rate": 177.961, + "diabetes_prevalence": 8.11, + "female_smokers": 10.1, + "male_smokers": 17.9, + "hospital_beds_per_thousand": 2.2, + "life_expectancy": 75.88, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-01", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 8.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.038, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 13.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 25.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.118, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.118, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 34.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 52.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.245, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-13", + "total_cases": 77.0, + "new_cases": 25.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.362, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-14", + "total_cases": 98.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.461, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 42.13 + }, + { + "date": "2020-03-15", + "total_cases": 121.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.569, + "new_cases_per_million": 0.108, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 42.13 + }, + { + "date": "2020-03-16", + "total_cases": 200.0, + "new_cases": 79.0, + "new_cases_smoothed": 25.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.941, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 42.13 + }, + { + "date": "2020-03-17", + "total_cases": 234.0, + "new_cases": 34.0, + "new_cases_smoothed": 29.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.101, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.87 + }, + { + "date": "2020-03-18", + "total_cases": 291.0, + "new_cases": 57.0, + "new_cases_smoothed": 36.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.369, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 60.65 + }, + { + "date": "2020-03-19", + "total_cases": 428.0, + "new_cases": 137.0, + "new_cases_smoothed": 53.714, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.014, + "new_cases_per_million": 0.645, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 66.2 + }, + { + "date": "2020-03-20", + "total_cases": 621.0, + "new_cases": 193.0, + "new_cases_smoothed": 77.714, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2.922, + "new_cases_per_million": 0.908, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 0.028, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 66.2 + }, + { + "date": "2020-03-21", + "total_cases": 904.0, + "new_cases": 283.0, + "new_cases_smoothed": 115.143, + "total_deaths": 11.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4.253, + "new_cases_per_million": 1.331, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 71.76 + }, + { + "date": "2020-03-22", + "total_cases": 1128.0, + "new_cases": 224.0, + "new_cases_smoothed": 143.857, + "total_deaths": 18.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5.307, + "new_cases_per_million": 1.054, + "new_cases_smoothed_per_million": 0.677, + "total_deaths_per_million": 0.085, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 71.76 + }, + { + "date": "2020-03-23", + "total_cases": 1546.0, + "new_cases": 418.0, + "new_cases_smoothed": 192.286, + "total_deaths": 25.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 7.273, + "new_cases_per_million": 1.967, + "new_cases_smoothed_per_million": 0.905, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 71.76 + }, + { + "date": "2020-03-24", + "total_cases": 1891.0, + "new_cases": 345.0, + "new_cases_smoothed": 236.714, + "total_deaths": 34.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 8.896, + "new_cases_per_million": 1.623, + "new_cases_smoothed_per_million": 1.114, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 71.76 + }, + { + "date": "2020-03-25", + "total_cases": 2201.0, + "new_cases": 310.0, + "new_cases_smoothed": 272.857, + "total_deaths": 46.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 10.355, + "new_cases_per_million": 1.458, + "new_cases_smoothed_per_million": 1.284, + "total_deaths_per_million": 0.216, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 71.76 + }, + { + "date": "2020-03-26", + "total_cases": 2433.0, + "new_cases": 232.0, + "new_cases_smoothed": 286.429, + "total_deaths": 57.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 11.446, + "new_cases_per_million": 1.091, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.76 + }, + { + "date": "2020-03-27", + "total_cases": 2915.0, + "new_cases": 482.0, + "new_cases_smoothed": 327.714, + "total_deaths": 77.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 13.714, + "new_cases_per_million": 2.268, + "new_cases_smoothed_per_million": 1.542, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.094, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 74.54 + }, + { + "date": "2020-03-28", + "total_cases": 3417.0, + "new_cases": 502.0, + "new_cases_smoothed": 359.0, + "total_deaths": 92.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 16.076, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 1.689, + "total_deaths_per_million": 0.433, + "new_deaths_per_million": 0.071, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 74.54 + }, + { + "date": "2020-03-29", + "total_cases": 3904.0, + "new_cases": 487.0, + "new_cases_smoothed": 396.571, + "total_deaths": 114.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 18.367, + "new_cases_per_million": 2.291, + "new_cases_smoothed_per_million": 1.866, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 74.54 + }, + { + "date": "2020-03-30", + "total_cases": 4256.0, + "new_cases": 352.0, + "new_cases_smoothed": 387.143, + "total_deaths": 136.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 20.023, + "new_cases_per_million": 1.656, + "new_cases_smoothed_per_million": 1.821, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 74.54 + }, + { + "date": "2020-03-31", + "total_cases": 4579.0, + "new_cases": 323.0, + "new_cases_smoothed": 384.0, + "total_deaths": 159.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 21.542, + "new_cases_per_million": 1.52, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 0.748, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 74.54 + }, + { + "date": "2020-04-01", + "total_cases": 5717.0, + "new_cases": 1138.0, + "new_cases_smoothed": 502.286, + "total_deaths": 201.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 26.896, + "new_cases_per_million": 5.354, + "new_cases_smoothed_per_million": 2.363, + "total_deaths_per_million": 0.946, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 74.54 + }, + { + "date": "2020-04-02", + "total_cases": 6836.0, + "new_cases": 1119.0, + "new_cases_smoothed": 629.0, + "total_deaths": 241.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 32.16, + "new_cases_per_million": 5.264, + "new_cases_smoothed_per_million": 2.959, + "total_deaths_per_million": 1.134, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 74.54 + }, + { + "date": "2020-04-03", + "total_cases": 7910.0, + "new_cases": 1074.0, + "new_cases_smoothed": 713.571, + "total_deaths": 299.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 37.213, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 3.357, + "total_deaths_per_million": 1.407, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 74.54 + }, + { + "date": "2020-04-04", + "total_cases": 9056.0, + "new_cases": 1146.0, + "new_cases_smoothed": 805.571, + "total_deaths": 359.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 42.605, + "new_cases_per_million": 5.391, + "new_cases_smoothed_per_million": 3.79, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.282, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 74.54 + }, + { + "date": "2020-04-05", + "total_cases": 10278.0, + "new_cases": 1222.0, + "new_cases_smoothed": 910.571, + "total_deaths": 432.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 45.429, + "total_cases_per_million": 48.354, + "new_cases_per_million": 5.749, + "new_cases_smoothed_per_million": 4.284, + "total_deaths_per_million": 2.032, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.214, + "stringency_index": 74.54 + }, + { + "date": "2020-04-06", + "total_cases": 11130.0, + "new_cases": 852.0, + "new_cases_smoothed": 982.0, + "total_deaths": 486.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 50.0, + "total_cases_per_million": 52.362, + "new_cases_per_million": 4.008, + "new_cases_smoothed_per_million": 4.62, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 74.54 + }, + { + "date": "2020-04-07", + "total_cases": 12056.0, + "new_cases": 926.0, + "new_cases_smoothed": 1068.143, + "total_deaths": 553.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 56.286, + "total_cases_per_million": 56.718, + "new_cases_per_million": 4.356, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 2.602, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.265, + "total_tests": 62985.0, + "total_tests_per_thousand": 0.296, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-08", + "total_cases": 13717.0, + "new_cases": 1661.0, + "new_cases_smoothed": 1142.857, + "total_deaths": 667.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 66.571, + "total_cases_per_million": 64.533, + "new_cases_per_million": 7.814, + "new_cases_smoothed_per_million": 5.377, + "total_deaths_per_million": 3.138, + "new_deaths_per_million": 0.536, + "new_deaths_smoothed_per_million": 0.313, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-09", + "total_cases": 15927.0, + "new_cases": 2210.0, + "new_cases_smoothed": 1298.714, + "total_deaths": 800.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 79.857, + "total_cases_per_million": 74.93, + "new_cases_per_million": 10.397, + "new_cases_smoothed_per_million": 6.11, + "total_deaths_per_million": 3.764, + "new_deaths_per_million": 0.626, + "new_deaths_smoothed_per_million": 0.376, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-10", + "total_cases": 17857.0, + "new_cases": 1930.0, + "new_cases_smoothed": 1421.0, + "total_deaths": 941.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 91.714, + "total_cases_per_million": 84.009, + "new_cases_per_million": 9.08, + "new_cases_smoothed_per_million": 6.685, + "total_deaths_per_million": 4.427, + "new_deaths_per_million": 0.663, + "new_deaths_smoothed_per_million": 0.431, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-11", + "total_cases": 19638.0, + "new_cases": 1781.0, + "new_cases_smoothed": 1511.714, + "total_deaths": 1056.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 99.571, + "total_cases_per_million": 92.388, + "new_cases_per_million": 8.379, + "new_cases_smoothed_per_million": 7.112, + "total_deaths_per_million": 4.968, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.468, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-12", + "total_cases": 20727.0, + "new_cases": 1089.0, + "new_cases_smoothed": 1492.714, + "total_deaths": 1124.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 98.857, + "total_cases_per_million": 97.512, + "new_cases_per_million": 5.123, + "new_cases_smoothed_per_million": 7.023, + "total_deaths_per_million": 5.288, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.465, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-13", + "total_cases": 22169.0, + "new_cases": 1442.0, + "new_cases_smoothed": 1577.0, + "total_deaths": 1223.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 105.286, + "total_cases_per_million": 104.296, + "new_cases_per_million": 6.784, + "new_cases_smoothed_per_million": 7.419, + "total_deaths_per_million": 5.754, + "new_deaths_per_million": 0.466, + "new_deaths_smoothed_per_million": 0.495, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-14", + "total_cases": 23430.0, + "new_cases": 1261.0, + "new_cases_smoothed": 1624.857, + "total_deaths": 1328.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 110.714, + "total_cases_per_million": 110.228, + "new_cases_per_million": 5.932, + "new_cases_smoothed_per_million": 7.644, + "total_deaths_per_million": 6.248, + "new_deaths_per_million": 0.494, + "new_deaths_smoothed_per_million": 0.521, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-15", + "total_cases": 25262.0, + "new_cases": 1832.0, + "new_cases_smoothed": 1649.286, + "total_deaths": 1532.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 123.571, + "total_cases_per_million": 118.847, + "new_cases_per_million": 8.619, + "new_cases_smoothed_per_million": 7.759, + "total_deaths_per_million": 7.207, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.581, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-16", + "total_cases": 28320.0, + "new_cases": 3058.0, + "new_cases_smoothed": 1770.429, + "total_deaths": 1736.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 133.714, + "total_cases_per_million": 133.233, + "new_cases_per_million": 14.387, + "new_cases_smoothed_per_million": 8.329, + "total_deaths_per_million": 8.167, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.629, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-17", + "total_cases": 30425.0, + "new_cases": 2105.0, + "new_cases_smoothed": 1795.429, + "total_deaths": 1924.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 140.429, + "total_cases_per_million": 143.136, + "new_cases_per_million": 9.903, + "new_cases_smoothed_per_million": 8.447, + "total_deaths_per_million": 9.052, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.661, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-18", + "total_cases": 33682.0, + "new_cases": 3257.0, + "new_cases_smoothed": 2006.286, + "total_deaths": 2141.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 155.0, + "total_cases_per_million": 158.459, + "new_cases_per_million": 15.323, + "new_cases_smoothed_per_million": 9.439, + "total_deaths_per_million": 10.072, + "new_deaths_per_million": 1.021, + "new_deaths_smoothed_per_million": 0.729, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-19", + "total_cases": 36599.0, + "new_cases": 2917.0, + "new_cases_smoothed": 2267.429, + "total_deaths": 2347.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 174.714, + "total_cases_per_million": 172.182, + "new_cases_per_million": 13.723, + "new_cases_smoothed_per_million": 10.667, + "total_deaths_per_million": 11.042, + "new_deaths_per_million": 0.969, + "new_deaths_smoothed_per_million": 0.822, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-20", + "total_cases": 38654.0, + "new_cases": 2055.0, + "new_cases_smoothed": 2355.0, + "total_deaths": 2462.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 177.0, + "total_cases_per_million": 181.85, + "new_cases_per_million": 9.668, + "new_cases_smoothed_per_million": 11.079, + "total_deaths_per_million": 11.583, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.833, + "total_tests": 132467.0, + "total_tests_per_thousand": 0.623, + "new_tests_smoothed": 5345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-04-21", + "total_cases": 40581.0, + "new_cases": 1927.0, + "new_cases_smoothed": 2450.143, + "total_deaths": 2575.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 178.143, + "total_cases_per_million": 190.916, + "new_cases_per_million": 9.066, + "new_cases_smoothed_per_million": 11.527, + "total_deaths_per_million": 12.114, + "new_deaths_per_million": 0.532, + "new_deaths_smoothed_per_million": 0.838, + "stringency_index": 74.54 + }, + { + "date": "2020-04-22", + "total_cases": 43079.0, + "new_cases": 2498.0, + "new_cases_smoothed": 2545.286, + "total_deaths": 2741.0, + "new_deaths": 166.0, + "new_deaths_smoothed": 172.714, + "total_cases_per_million": 202.668, + "new_cases_per_million": 11.752, + "new_cases_smoothed_per_million": 11.974, + "total_deaths_per_million": 12.895, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.813, + "stringency_index": 74.54 + }, + { + "date": "2020-04-23", + "total_cases": 45757.0, + "new_cases": 2678.0, + "new_cases_smoothed": 2491.0, + "total_deaths": 2906.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 167.143, + "total_cases_per_million": 215.267, + "new_cases_per_million": 12.599, + "new_cases_smoothed_per_million": 11.719, + "total_deaths_per_million": 13.671, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.786, + "stringency_index": 74.54 + }, + { + "date": "2020-04-24", + "total_cases": 49492.0, + "new_cases": 3735.0, + "new_cases_smoothed": 2723.857, + "total_deaths": 3313.0, + "new_deaths": 407.0, + "new_deaths_smoothed": 198.429, + "total_cases_per_million": 232.838, + "new_cases_per_million": 17.572, + "new_cases_smoothed_per_million": 12.815, + "total_deaths_per_million": 15.586, + "new_deaths_per_million": 1.915, + "new_deaths_smoothed_per_million": 0.934, + "stringency_index": 74.54 + }, + { + "date": "2020-04-25", + "total_cases": 52995.0, + "new_cases": 3503.0, + "new_cases_smoothed": 2759.0, + "total_deaths": 3670.0, + "new_deaths": 357.0, + "new_deaths_smoothed": 218.429, + "total_cases_per_million": 249.319, + "new_cases_per_million": 16.48, + "new_cases_smoothed_per_million": 12.98, + "total_deaths_per_million": 17.266, + "new_deaths_per_million": 1.68, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 74.54 + }, + { + "date": "2020-04-26", + "total_cases": 58509.0, + "new_cases": 5514.0, + "new_cases_smoothed": 3130.0, + "total_deaths": 4016.0, + "new_deaths": 346.0, + "new_deaths_smoothed": 238.429, + "total_cases_per_million": 275.26, + "new_cases_per_million": 25.941, + "new_cases_smoothed_per_million": 14.725, + "total_deaths_per_million": 18.894, + "new_deaths_per_million": 1.628, + "new_deaths_smoothed_per_million": 1.122, + "stringency_index": 77.31 + }, + { + "date": "2020-04-27", + "total_cases": 61888.0, + "new_cases": 3379.0, + "new_cases_smoothed": 3319.143, + "total_deaths": 4205.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 249.0, + "total_cases_per_million": 291.156, + "new_cases_per_million": 15.897, + "new_cases_smoothed_per_million": 15.615, + "total_deaths_per_million": 19.783, + "new_deaths_per_million": 0.889, + "new_deaths_smoothed_per_million": 1.171, + "stringency_index": 77.31 + }, + { + "date": "2020-04-28", + "total_cases": 66501.0, + "new_cases": 4613.0, + "new_cases_smoothed": 3702.857, + "total_deaths": 4543.0, + "new_deaths": 338.0, + "new_deaths_smoothed": 281.143, + "total_cases_per_million": 312.858, + "new_cases_per_million": 21.702, + "new_cases_smoothed_per_million": 17.42, + "total_deaths_per_million": 21.373, + "new_deaths_per_million": 1.59, + "new_deaths_smoothed_per_million": 1.323, + "stringency_index": 77.31 + }, + { + "date": "2020-04-29", + "total_cases": 71886.0, + "new_cases": 5385.0, + "new_cases_smoothed": 4115.286, + "total_deaths": 5017.0, + "new_deaths": 474.0, + "new_deaths_smoothed": 325.143, + "total_cases_per_million": 338.193, + "new_cases_per_million": 25.334, + "new_cases_smoothed_per_million": 19.361, + "total_deaths_per_million": 23.603, + "new_deaths_per_million": 2.23, + "new_deaths_smoothed_per_million": 1.53, + "stringency_index": 77.31 + }, + { + "date": "2020-04-30", + "total_cases": 78162.0, + "new_cases": 6276.0, + "new_cases_smoothed": 4629.286, + "total_deaths": 5466.0, + "new_deaths": 449.0, + "new_deaths_smoothed": 365.714, + "total_cases_per_million": 367.718, + "new_cases_per_million": 29.526, + "new_cases_smoothed_per_million": 21.779, + "total_deaths_per_million": 25.715, + "new_deaths_per_million": 2.112, + "new_deaths_smoothed_per_million": 1.721, + "stringency_index": 77.31 + }, + { + "date": "2020-05-01", + "total_cases": 85380.0, + "new_cases": 7218.0, + "new_cases_smoothed": 5126.857, + "total_deaths": 5901.0, + "new_deaths": 435.0, + "new_deaths_smoothed": 369.714, + "total_cases_per_million": 401.676, + "new_cases_per_million": 33.958, + "new_cases_smoothed_per_million": 24.12, + "total_deaths_per_million": 27.762, + "new_deaths_per_million": 2.046, + "new_deaths_smoothed_per_million": 1.739, + "stringency_index": 77.31 + }, + { + "date": "2020-05-02", + "total_cases": 91589.0, + "new_cases": 6209.0, + "new_cases_smoothed": 5513.429, + "total_deaths": 6329.0, + "new_deaths": 428.0, + "new_deaths_smoothed": 379.857, + "total_cases_per_million": 430.887, + "new_cases_per_million": 29.211, + "new_cases_smoothed_per_million": 25.938, + "total_deaths_per_million": 29.775, + "new_deaths_per_million": 2.014, + "new_deaths_smoothed_per_million": 1.787, + "stringency_index": 77.31 + }, + { + "date": "2020-05-03", + "total_cases": 96559.0, + "new_cases": 4970.0, + "new_cases_smoothed": 5435.714, + "total_deaths": 6750.0, + "new_deaths": 421.0, + "new_deaths_smoothed": 390.571, + "total_cases_per_million": 454.268, + "new_cases_per_million": 23.382, + "new_cases_smoothed_per_million": 25.573, + "total_deaths_per_million": 31.756, + "new_deaths_per_million": 1.981, + "new_deaths_smoothed_per_million": 1.837, + "stringency_index": 77.31 + }, + { + "date": "2020-05-04", + "total_cases": 101147.0, + "new_cases": 4588.0, + "new_cases_smoothed": 5608.429, + "total_deaths": 7025.0, + "new_deaths": 275.0, + "new_deaths_smoothed": 402.857, + "total_cases_per_million": 475.853, + "new_cases_per_million": 21.585, + "new_cases_smoothed_per_million": 26.385, + "total_deaths_per_million": 33.05, + "new_deaths_per_million": 1.294, + "new_deaths_smoothed_per_million": 1.895, + "stringency_index": 77.31 + }, + { + "date": "2020-05-05", + "total_cases": 107780.0, + "new_cases": 6633.0, + "new_cases_smoothed": 5897.0, + "total_deaths": 7321.0, + "new_deaths": 296.0, + "new_deaths_smoothed": 396.857, + "total_cases_per_million": 507.058, + "new_cases_per_million": 31.205, + "new_cases_smoothed_per_million": 27.743, + "total_deaths_per_million": 34.442, + "new_deaths_per_million": 1.393, + "new_deaths_smoothed_per_million": 1.867, + "stringency_index": 81.02 + }, + { + "date": "2020-05-06", + "total_cases": 114715.0, + "new_cases": 6935.0, + "new_cases_smoothed": 6118.429, + "total_deaths": 7921.0, + "new_deaths": 600.0, + "new_deaths_smoothed": 414.857, + "total_cases_per_million": 539.684, + "new_cases_per_million": 32.626, + "new_cases_smoothed_per_million": 28.785, + "total_deaths_per_million": 37.265, + "new_deaths_per_million": 2.823, + "new_deaths_smoothed_per_million": 1.952, + "stringency_index": 81.02 + }, + { + "date": "2020-05-07", + "total_cases": 125218.0, + "new_cases": 10503.0, + "new_cases_smoothed": 6722.286, + "total_deaths": 8536.0, + "new_deaths": 615.0, + "new_deaths_smoothed": 438.571, + "total_cases_per_million": 589.096, + "new_cases_per_million": 49.412, + "new_cases_smoothed_per_million": 31.625, + "total_deaths_per_million": 40.158, + "new_deaths_per_million": 2.893, + "new_deaths_smoothed_per_million": 2.063, + "stringency_index": 81.02 + }, + { + "date": "2020-05-08", + "total_cases": 135106.0, + "new_cases": 9888.0, + "new_cases_smoothed": 7103.714, + "total_deaths": 9146.0, + "new_deaths": 610.0, + "new_deaths_smoothed": 463.571, + "total_cases_per_million": 635.615, + "new_cases_per_million": 46.519, + "new_cases_smoothed_per_million": 33.42, + "total_deaths_per_million": 43.028, + "new_deaths_per_million": 2.87, + "new_deaths_smoothed_per_million": 2.181, + "stringency_index": 81.02 + }, + { + "date": "2020-05-09", + "total_cases": 145328.0, + "new_cases": 10222.0, + "new_cases_smoothed": 7677.0, + "total_deaths": 9897.0, + "new_deaths": 751.0, + "new_deaths_smoothed": 509.714, + "total_cases_per_million": 683.705, + "new_cases_per_million": 48.09, + "new_cases_smoothed_per_million": 36.117, + "total_deaths_per_million": 46.561, + "new_deaths_per_million": 3.533, + "new_deaths_smoothed_per_million": 2.398, + "stringency_index": 81.02 + }, + { + "date": "2020-05-10", + "total_cases": 155939.0, + "new_cases": 10611.0, + "new_cases_smoothed": 8482.857, + "total_deaths": 10627.0, + "new_deaths": 730.0, + "new_deaths_smoothed": 553.857, + "total_cases_per_million": 733.625, + "new_cases_per_million": 49.92, + "new_cases_smoothed_per_million": 39.908, + "total_deaths_per_million": 49.995, + "new_deaths_per_million": 3.434, + "new_deaths_smoothed_per_million": 2.606, + "stringency_index": 81.02 + }, + { + "date": "2020-05-11", + "total_cases": 162699.0, + "new_cases": 6760.0, + "new_cases_smoothed": 8793.143, + "total_deaths": 11123.0, + "new_deaths": 496.0, + "new_deaths_smoothed": 585.429, + "total_cases_per_million": 765.428, + "new_cases_per_million": 31.803, + "new_cases_smoothed_per_million": 41.368, + "total_deaths_per_million": 52.329, + "new_deaths_per_million": 2.333, + "new_deaths_smoothed_per_million": 2.754, + "stringency_index": 81.02 + }, + { + "date": "2020-05-12", + "total_cases": 168331.0, + "new_cases": 5632.0, + "new_cases_smoothed": 8650.143, + "total_deaths": 11519.0, + "new_deaths": 396.0, + "new_deaths_smoothed": 599.714, + "total_cases_per_million": 791.924, + "new_cases_per_million": 26.496, + "new_cases_smoothed_per_million": 40.695, + "total_deaths_per_million": 54.192, + "new_deaths_per_million": 1.863, + "new_deaths_smoothed_per_million": 2.821, + "stringency_index": 81.02 + }, + { + "date": "2020-05-13", + "total_cases": 177589.0, + "new_cases": 9258.0, + "new_cases_smoothed": 8982.0, + "total_deaths": 12400.0, + "new_deaths": 881.0, + "new_deaths_smoothed": 639.857, + "total_cases_per_million": 835.479, + "new_cases_per_million": 43.555, + "new_cases_smoothed_per_million": 42.256, + "total_deaths_per_million": 58.337, + "new_deaths_per_million": 4.145, + "new_deaths_smoothed_per_million": 3.01, + "stringency_index": 81.02 + }, + { + "date": "2020-05-14", + "total_cases": 188974.0, + "new_cases": 11385.0, + "new_cases_smoothed": 9108.0, + "total_deaths": 13149.0, + "new_deaths": 749.0, + "new_deaths_smoothed": 659.0, + "total_cases_per_million": 889.041, + "new_cases_per_million": 53.561, + "new_cases_smoothed_per_million": 42.849, + "total_deaths_per_million": 61.86, + "new_deaths_per_million": 3.524, + "new_deaths_smoothed_per_million": 3.1, + "stringency_index": 81.02 + }, + { + "date": "2020-05-15", + "total_cases": 202918.0, + "new_cases": 13944.0, + "new_cases_smoothed": 9687.429, + "total_deaths": 13993.0, + "new_deaths": 844.0, + "new_deaths_smoothed": 692.429, + "total_cases_per_million": 954.641, + "new_cases_per_million": 65.6, + "new_cases_smoothed_per_million": 45.575, + "total_deaths_per_million": 65.831, + "new_deaths_per_million": 3.971, + "new_deaths_smoothed_per_million": 3.258, + "stringency_index": 81.02 + }, + { + "date": "2020-05-16", + "total_cases": 218223.0, + "new_cases": 15305.0, + "new_cases_smoothed": 10413.571, + "total_deaths": 14817.0, + "new_deaths": 824.0, + "new_deaths_smoothed": 702.857, + "total_cases_per_million": 1026.645, + "new_cases_per_million": 72.003, + "new_cases_smoothed_per_million": 48.991, + "total_deaths_per_million": 69.708, + "new_deaths_per_million": 3.877, + "new_deaths_smoothed_per_million": 3.307, + "stringency_index": 81.02 + }, + { + "date": "2020-05-17", + "total_cases": 233142.0, + "new_cases": 14919.0, + "new_cases_smoothed": 11029.0, + "total_deaths": 15633.0, + "new_deaths": 816.0, + "new_deaths_smoothed": 715.143, + "total_cases_per_million": 1096.832, + "new_cases_per_million": 70.187, + "new_cases_smoothed_per_million": 51.887, + "total_deaths_per_million": 73.546, + "new_deaths_per_million": 3.839, + "new_deaths_smoothed_per_million": 3.364, + "stringency_index": 81.02 + }, + { + "date": "2020-05-18", + "total_cases": 241080.0, + "new_cases": 7938.0, + "new_cases_smoothed": 11197.286, + "total_deaths": 16118.0, + "new_deaths": 485.0, + "new_deaths_smoothed": 713.571, + "total_cases_per_million": 1134.177, + "new_cases_per_million": 37.345, + "new_cases_smoothed_per_million": 52.678, + "total_deaths_per_million": 75.828, + "new_deaths_per_million": 2.282, + "new_deaths_smoothed_per_million": 3.357, + "stringency_index": 81.02 + }, + { + "date": "2020-05-19", + "total_cases": 254220.0, + "new_cases": 13140.0, + "new_cases_smoothed": 12269.857, + "total_deaths": 16792.0, + "new_deaths": 674.0, + "new_deaths_smoothed": 753.286, + "total_cases_per_million": 1195.995, + "new_cases_per_million": 61.818, + "new_cases_smoothed_per_million": 57.724, + "total_deaths_per_million": 78.999, + "new_deaths_per_million": 3.171, + "new_deaths_smoothed_per_million": 3.544, + "stringency_index": 81.02 + }, + { + "date": "2020-05-20", + "total_cases": 271628.0, + "new_cases": 17408.0, + "new_cases_smoothed": 13434.143, + "total_deaths": 17971.0, + "new_deaths": 1179.0, + "new_deaths_smoothed": 795.857, + "total_cases_per_million": 1277.892, + "new_cases_per_million": 81.897, + "new_cases_smoothed_per_million": 63.202, + "total_deaths_per_million": 84.546, + "new_deaths_per_million": 5.547, + "new_deaths_smoothed_per_million": 3.744, + "stringency_index": 81.02 + }, + { + "date": "2020-05-21", + "total_cases": 291579.0, + "new_cases": 19951.0, + "new_cases_smoothed": 14657.857, + "total_deaths": 18859.0, + "new_deaths": 888.0, + "new_deaths_smoothed": 815.714, + "total_cases_per_million": 1371.753, + "new_cases_per_million": 93.861, + "new_cases_smoothed_per_million": 68.959, + "total_deaths_per_million": 88.723, + "new_deaths_per_million": 4.178, + "new_deaths_smoothed_per_million": 3.838, + "stringency_index": 81.02 + }, + { + "date": "2020-05-22", + "total_cases": 310087.0, + "new_cases": 18508.0, + "new_cases_smoothed": 15309.857, + "total_deaths": 20047.0, + "new_deaths": 1188.0, + "new_deaths_smoothed": 864.857, + "total_cases_per_million": 1458.825, + "new_cases_per_million": 87.072, + "new_cases_smoothed_per_million": 72.026, + "total_deaths_per_million": 94.312, + "new_deaths_per_million": 5.589, + "new_deaths_smoothed_per_million": 4.069, + "stringency_index": 81.02 + }, + { + "date": "2020-05-23", + "total_cases": 330890.0, + "new_cases": 20803.0, + "new_cases_smoothed": 16095.286, + "total_deaths": 21048.0, + "new_deaths": 1001.0, + "new_deaths_smoothed": 890.143, + "total_cases_per_million": 1556.694, + "new_cases_per_million": 97.869, + "new_cases_smoothed_per_million": 75.721, + "total_deaths_per_million": 99.022, + "new_deaths_per_million": 4.709, + "new_deaths_smoothed_per_million": 4.188, + "stringency_index": 81.02 + }, + { + "date": "2020-05-24", + "total_cases": 347398.0, + "new_cases": 16508.0, + "new_cases_smoothed": 16322.286, + "total_deaths": 22013.0, + "new_deaths": 965.0, + "new_deaths_smoothed": 911.429, + "total_cases_per_million": 1634.357, + "new_cases_per_million": 77.663, + "new_cases_smoothed_per_million": 76.789, + "total_deaths_per_million": 103.562, + "new_deaths_per_million": 4.54, + "new_deaths_smoothed_per_million": 4.288, + "stringency_index": 81.02 + }, + { + "date": "2020-05-25", + "total_cases": 363211.0, + "new_cases": 15813.0, + "new_cases_smoothed": 17447.286, + "total_deaths": 22666.0, + "new_deaths": 653.0, + "new_deaths_smoothed": 935.429, + "total_cases_per_million": 1708.751, + "new_cases_per_million": 74.393, + "new_cases_smoothed_per_million": 82.082, + "total_deaths_per_million": 106.634, + "new_deaths_per_million": 3.072, + "new_deaths_smoothed_per_million": 4.401, + "stringency_index": 81.02 + }, + { + "date": "2020-05-26", + "total_cases": 374898.0, + "new_cases": 11687.0, + "new_cases_smoothed": 17239.714, + "total_deaths": 23473.0, + "new_deaths": 807.0, + "new_deaths_smoothed": 954.429, + "total_cases_per_million": 1763.733, + "new_cases_per_million": 54.982, + "new_cases_smoothed_per_million": 81.105, + "total_deaths_per_million": 110.43, + "new_deaths_per_million": 3.797, + "new_deaths_smoothed_per_million": 4.49, + "stringency_index": 81.02 + }, + { + "date": "2020-05-27", + "total_cases": 391222.0, + "new_cases": 16324.0, + "new_cases_smoothed": 17084.857, + "total_deaths": 24512.0, + "new_deaths": 1039.0, + "new_deaths_smoothed": 934.429, + "total_cases_per_million": 1840.53, + "new_cases_per_million": 76.797, + "new_cases_smoothed_per_million": 80.377, + "total_deaths_per_million": 115.318, + "new_deaths_per_million": 4.888, + "new_deaths_smoothed_per_million": 4.396, + "stringency_index": 81.02 + }, + { + "date": "2020-05-28", + "total_cases": 411821.0, + "new_cases": 20599.0, + "new_cases_smoothed": 17177.429, + "total_deaths": 25598.0, + "new_deaths": 1086.0, + "new_deaths_smoothed": 962.714, + "total_cases_per_million": 1937.44, + "new_cases_per_million": 96.909, + "new_cases_smoothed_per_million": 80.812, + "total_deaths_per_million": 120.428, + "new_deaths_per_million": 5.109, + "new_deaths_smoothed_per_million": 4.529, + "stringency_index": 81.02 + }, + { + "date": "2020-05-29", + "total_cases": 438238.0, + "new_cases": 26417.0, + "new_cases_smoothed": 18307.286, + "total_deaths": 26754.0, + "new_deaths": 1156.0, + "new_deaths_smoothed": 958.143, + "total_cases_per_million": 2061.72, + "new_cases_per_million": 124.281, + "new_cases_smoothed_per_million": 86.128, + "total_deaths_per_million": 125.866, + "new_deaths_per_million": 5.438, + "new_deaths_smoothed_per_million": 4.508, + "total_tests": 485000.0, + "total_tests_per_thousand": 2.282, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-05-30", + "total_cases": 465166.0, + "new_cases": 26928.0, + "new_cases_smoothed": 19182.286, + "total_deaths": 27878.0, + "new_deaths": 1124.0, + "new_deaths_smoothed": 975.714, + "total_cases_per_million": 2188.405, + "new_cases_per_million": 126.685, + "new_cases_smoothed_per_million": 90.244, + "total_deaths_per_million": 131.154, + "new_deaths_per_million": 5.288, + "new_deaths_smoothed_per_million": 4.59, + "stringency_index": 81.02 + }, + { + "date": "2020-05-31", + "total_cases": 498440.0, + "new_cases": 33274.0, + "new_cases_smoothed": 21577.429, + "total_deaths": 28834.0, + "new_deaths": 956.0, + "new_deaths_smoothed": 974.429, + "total_cases_per_million": 2344.944, + "new_cases_per_million": 156.54, + "new_cases_smoothed_per_million": 101.512, + "total_deaths_per_million": 135.651, + "new_deaths_per_million": 4.498, + "new_deaths_smoothed_per_million": 4.584, + "stringency_index": 81.02 + }, + { + "date": "2020-06-01", + "total_cases": 514849.0, + "new_cases": 16409.0, + "new_cases_smoothed": 21662.571, + "total_deaths": 29314.0, + "new_deaths": 480.0, + "new_deaths_smoothed": 949.714, + "total_cases_per_million": 2422.142, + "new_cases_per_million": 77.197, + "new_cases_smoothed_per_million": 101.913, + "total_deaths_per_million": 137.91, + "new_deaths_per_million": 2.258, + "new_deaths_smoothed_per_million": 4.468, + "stringency_index": 77.31 + }, + { + "date": "2020-06-02", + "total_cases": 526447.0, + "new_cases": 11598.0, + "new_cases_smoothed": 21649.857, + "total_deaths": 29937.0, + "new_deaths": 623.0, + "new_deaths_smoothed": 923.429, + "total_cases_per_million": 2476.705, + "new_cases_per_million": 54.564, + "new_cases_smoothed_per_million": 101.853, + "total_deaths_per_million": 140.841, + "new_deaths_per_million": 2.931, + "new_deaths_smoothed_per_million": 4.344, + "stringency_index": 77.31 + }, + { + "date": "2020-06-03", + "total_cases": 555383.0, + "new_cases": 28936.0, + "new_cases_smoothed": 23451.571, + "total_deaths": 31199.0, + "new_deaths": 1262.0, + "new_deaths_smoothed": 955.286, + "total_cases_per_million": 2612.837, + "new_cases_per_million": 136.131, + "new_cases_smoothed_per_million": 110.329, + "total_deaths_per_million": 146.778, + "new_deaths_per_million": 5.937, + "new_deaths_smoothed_per_million": 4.494, + "stringency_index": 77.31 + }, + { + "date": "2020-06-04", + "total_cases": 584016.0, + "new_cases": 28633.0, + "new_cases_smoothed": 24599.286, + "total_deaths": 32548.0, + "new_deaths": 1349.0, + "new_deaths_smoothed": 992.857, + "total_cases_per_million": 2747.542, + "new_cases_per_million": 134.706, + "new_cases_smoothed_per_million": 115.729, + "total_deaths_per_million": 153.124, + "new_deaths_per_million": 6.346, + "new_deaths_smoothed_per_million": 4.671, + "stringency_index": 77.31 + }, + { + "date": "2020-06-05", + "total_cases": 614932.0, + "new_cases": 30916.0, + "new_cases_smoothed": 25242.0, + "total_deaths": 34021.0, + "new_deaths": 1473.0, + "new_deaths_smoothed": 1038.143, + "total_cases_per_million": 2892.989, + "new_cases_per_million": 145.446, + "new_cases_smoothed_per_million": 118.753, + "total_deaths_per_million": 160.054, + "new_deaths_per_million": 6.93, + "new_deaths_smoothed_per_million": 4.884, + "stringency_index": 77.31 + }, + { + "date": "2020-06-06", + "total_cases": 645762.0, + "new_cases": 30830.0, + "new_cases_smoothed": 25799.429, + "total_deaths": 35026.0, + "new_deaths": 1005.0, + "new_deaths_smoothed": 1021.143, + "total_cases_per_million": 3038.031, + "new_cases_per_million": 145.042, + "new_cases_smoothed_per_million": 121.375, + "total_deaths_per_million": 164.782, + "new_deaths_per_million": 4.728, + "new_deaths_smoothed_per_million": 4.804, + "stringency_index": 77.31 + }, + { + "date": "2020-06-07", + "total_cases": 672837.0, + "new_cases": 27075.0, + "new_cases_smoothed": 24913.857, + "total_deaths": 35930.0, + "new_deaths": 904.0, + "new_deaths_smoothed": 1013.714, + "total_cases_per_million": 3165.407, + "new_cases_per_million": 127.376, + "new_cases_smoothed_per_million": 117.209, + "total_deaths_per_million": 169.035, + "new_deaths_per_million": 4.253, + "new_deaths_smoothed_per_million": 4.769, + "stringency_index": 77.31 + }, + { + "date": "2020-06-08", + "total_cases": 691758.0, + "new_cases": 18921.0, + "new_cases_smoothed": 25272.714, + "total_deaths": 36455.0, + "new_deaths": 525.0, + "new_deaths_smoothed": 1020.143, + "total_cases_per_million": 3254.422, + "new_cases_per_million": 89.015, + "new_cases_smoothed_per_million": 118.897, + "total_deaths_per_million": 171.505, + "new_deaths_per_million": 2.47, + "new_deaths_smoothed_per_million": 4.799, + "stringency_index": 77.31 + }, + { + "date": "2020-06-09", + "total_cases": 707412.0, + "new_cases": 15654.0, + "new_cases_smoothed": 25852.143, + "total_deaths": 37134.0, + "new_deaths": 679.0, + "new_deaths_smoothed": 1028.143, + "total_cases_per_million": 3328.067, + "new_cases_per_million": 73.645, + "new_cases_smoothed_per_million": 121.623, + "total_deaths_per_million": 174.699, + "new_deaths_per_million": 3.194, + "new_deaths_smoothed_per_million": 4.837, + "stringency_index": 77.31 + }, + { + "date": "2020-06-10", + "total_cases": 739503.0, + "new_cases": 32091.0, + "new_cases_smoothed": 26302.857, + "total_deaths": 38406.0, + "new_deaths": 1272.0, + "new_deaths_smoothed": 1029.571, + "total_cases_per_million": 3479.041, + "new_cases_per_million": 150.974, + "new_cases_smoothed_per_million": 123.744, + "total_deaths_per_million": 180.684, + "new_deaths_per_million": 5.984, + "new_deaths_smoothed_per_million": 4.844, + "stringency_index": 77.31 + }, + { + "date": "2020-06-11", + "total_cases": 772416.0, + "new_cases": 32913.0, + "new_cases_smoothed": 26914.286, + "total_deaths": 39680.0, + "new_deaths": 1274.0, + "new_deaths_smoothed": 1018.857, + "total_cases_per_million": 3633.883, + "new_cases_per_million": 154.841, + "new_cases_smoothed_per_million": 126.62, + "total_deaths_per_million": 186.677, + "new_deaths_per_million": 5.994, + "new_deaths_smoothed_per_million": 4.793, + "stringency_index": 77.31 + }, + { + "date": "2020-06-12", + "total_cases": 802828.0, + "new_cases": 30412.0, + "new_cases_smoothed": 26842.286, + "total_deaths": 40919.0, + "new_deaths": 1239.0, + "new_deaths_smoothed": 985.429, + "total_cases_per_million": 3776.958, + "new_cases_per_million": 143.075, + "new_cases_smoothed_per_million": 126.281, + "total_deaths_per_million": 192.506, + "new_deaths_per_million": 5.829, + "new_deaths_smoothed_per_million": 4.636, + "stringency_index": 77.31 + }, + { + "date": "2020-06-13", + "total_cases": 828810.0, + "new_cases": 25982.0, + "new_cases_smoothed": 26149.714, + "total_deaths": 41828.0, + "new_deaths": 909.0, + "new_deaths_smoothed": 971.714, + "total_cases_per_million": 3899.192, + "new_cases_per_million": 122.234, + "new_cases_smoothed_per_million": 123.023, + "total_deaths_per_million": 196.783, + "new_deaths_per_million": 4.276, + "new_deaths_smoothed_per_million": 4.571, + "stringency_index": 77.31 + }, + { + "date": "2020-06-14", + "total_cases": 850514.0, + "new_cases": 21704.0, + "new_cases_smoothed": 25382.429, + "total_deaths": 42720.0, + "new_deaths": 892.0, + "new_deaths_smoothed": 970.0, + "total_cases_per_million": 4001.3, + "new_cases_per_million": 102.108, + "new_cases_smoothed_per_million": 119.413, + "total_deaths_per_million": 200.979, + "new_deaths_per_million": 4.196, + "new_deaths_smoothed_per_million": 4.563, + "stringency_index": 77.31 + }, + { + "date": "2020-06-15", + "total_cases": 867624.0, + "new_cases": 17110.0, + "new_cases_smoothed": 25123.714, + "total_deaths": 43332.0, + "new_deaths": 612.0, + "new_deaths_smoothed": 982.429, + "total_cases_per_million": 4081.795, + "new_cases_per_million": 80.495, + "new_cases_smoothed_per_million": 118.196, + "total_deaths_per_million": 203.858, + "new_deaths_per_million": 2.879, + "new_deaths_smoothed_per_million": 4.622, + "stringency_index": 77.31 + }, + { + "date": "2020-06-16", + "total_cases": 888271.0, + "new_cases": 20647.0, + "new_cases_smoothed": 25837.0, + "total_deaths": 43959.0, + "new_deaths": 627.0, + "new_deaths_smoothed": 975.0, + "total_cases_per_million": 4178.931, + "new_cases_per_million": 97.135, + "new_cases_smoothed_per_million": 121.552, + "total_deaths_per_million": 206.808, + "new_deaths_per_million": 2.95, + "new_deaths_smoothed_per_million": 4.587, + "stringency_index": 77.31 + }, + { + "date": "2020-06-17", + "total_cases": 923189.0, + "new_cases": 34918.0, + "new_cases_smoothed": 26240.857, + "total_deaths": 45241.0, + "new_deaths": 1282.0, + "new_deaths_smoothed": 976.429, + "total_cases_per_million": 4343.205, + "new_cases_per_million": 164.274, + "new_cases_smoothed_per_million": 123.452, + "total_deaths_per_million": 212.839, + "new_deaths_per_million": 6.031, + "new_deaths_smoothed_per_million": 4.594, + "stringency_index": 77.31 + }, + { + "date": "2020-06-18", + "total_cases": 955377.0, + "new_cases": 32188.0, + "new_cases_smoothed": 26137.286, + "total_deaths": 46510.0, + "new_deaths": 1269.0, + "new_deaths_smoothed": 975.714, + "total_cases_per_million": 4494.635, + "new_cases_per_million": 151.431, + "new_cases_smoothed_per_million": 122.965, + "total_deaths_per_million": 218.809, + "new_deaths_per_million": 5.97, + "new_deaths_smoothed_per_million": 4.59, + "stringency_index": 77.31 + }, + { + "date": "2020-06-19", + "total_cases": 978142.0, + "new_cases": 22765.0, + "new_cases_smoothed": 25044.857, + "total_deaths": 47748.0, + "new_deaths": 1238.0, + "new_deaths_smoothed": 975.571, + "total_cases_per_million": 4601.735, + "new_cases_per_million": 107.099, + "new_cases_smoothed_per_million": 117.825, + "total_deaths_per_million": 224.634, + "new_deaths_per_million": 5.824, + "new_deaths_smoothed_per_million": 4.59, + "stringency_index": 77.31 + }, + { + "date": "2020-06-20", + "total_cases": 1032913.0, + "new_cases": 54771.0, + "new_cases_smoothed": 29157.571, + "total_deaths": 48954.0, + "new_deaths": 1206.0, + "new_deaths_smoothed": 1018.0, + "total_cases_per_million": 4859.409, + "new_cases_per_million": 257.674, + "new_cases_smoothed_per_million": 137.174, + "total_deaths_per_million": 230.307, + "new_deaths_per_million": 5.674, + "new_deaths_smoothed_per_million": 4.789, + "stringency_index": 77.31 + }, + { + "date": "2020-06-21", + "total_cases": 1067579.0, + "new_cases": 34666.0, + "new_cases_smoothed": 31009.286, + "total_deaths": 49976.0, + "new_deaths": 1022.0, + "new_deaths_smoothed": 1036.571, + "total_cases_per_million": 5022.497, + "new_cases_per_million": 163.089, + "new_cases_smoothed_per_million": 145.885, + "total_deaths_per_million": 235.115, + "new_deaths_per_million": 4.808, + "new_deaths_smoothed_per_million": 4.877, + "stringency_index": 77.31 + }, + { + "date": "2020-06-22", + "total_cases": 1085038.0, + "new_cases": 17459.0, + "new_cases_smoothed": 31059.143, + "total_deaths": 50617.0, + "new_deaths": 641.0, + "new_deaths_smoothed": 1040.714, + "total_cases_per_million": 5104.634, + "new_cases_per_million": 82.137, + "new_cases_smoothed_per_million": 146.12, + "total_deaths_per_million": 238.131, + "new_deaths_per_million": 3.016, + "new_deaths_smoothed_per_million": 4.896, + "stringency_index": 77.31 + }, + { + "date": "2020-06-23", + "total_cases": 1106470.0, + "new_cases": 21432.0, + "new_cases_smoothed": 31171.286, + "total_deaths": 51271.0, + "new_deaths": 654.0, + "new_deaths_smoothed": 1044.571, + "total_cases_per_million": 5205.462, + "new_cases_per_million": 100.828, + "new_cases_smoothed_per_million": 146.647, + "total_deaths_per_million": 241.208, + "new_deaths_per_million": 3.077, + "new_deaths_smoothed_per_million": 4.914, + "stringency_index": 77.31 + }, + { + "date": "2020-06-24", + "total_cases": 1145906.0, + "new_cases": 39436.0, + "new_cases_smoothed": 31816.714, + "total_deaths": 52645.0, + "new_deaths": 1374.0, + "new_deaths_smoothed": 1057.714, + "total_cases_per_million": 5390.992, + "new_cases_per_million": 185.529, + "new_cases_smoothed_per_million": 149.684, + "total_deaths_per_million": 247.672, + "new_deaths_per_million": 6.464, + "new_deaths_smoothed_per_million": 4.976, + "stringency_index": 77.31 + }, + { + "date": "2020-06-25", + "total_cases": 1188631.0, + "new_cases": 42725.0, + "new_cases_smoothed": 33322.0, + "total_deaths": 53830.0, + "new_deaths": 1185.0, + "new_deaths_smoothed": 1045.714, + "total_cases_per_million": 5591.994, + "new_cases_per_million": 201.003, + "new_cases_smoothed_per_million": 156.766, + "total_deaths_per_million": 253.247, + "new_deaths_per_million": 5.575, + "new_deaths_smoothed_per_million": 4.92, + "stringency_index": 77.31 + }, + { + "date": "2020-06-26", + "total_cases": 1228114.0, + "new_cases": 39483.0, + "new_cases_smoothed": 35710.286, + "total_deaths": 54971.0, + "new_deaths": 1141.0, + "new_deaths_smoothed": 1031.857, + "total_cases_per_million": 5777.745, + "new_cases_per_million": 185.75, + "new_cases_smoothed_per_million": 168.001, + "total_deaths_per_million": 258.615, + "new_deaths_per_million": 5.368, + "new_deaths_smoothed_per_million": 4.854, + "stringency_index": 77.31 + }, + { + "date": "2020-06-27", + "total_cases": 1274974.0, + "new_cases": 46860.0, + "new_cases_smoothed": 34580.143, + "total_deaths": 55961.0, + "new_deaths": 990.0, + "new_deaths_smoothed": 1001.0, + "total_cases_per_million": 5998.201, + "new_cases_per_million": 220.456, + "new_cases_smoothed_per_million": 162.685, + "total_deaths_per_million": 263.272, + "new_deaths_per_million": 4.658, + "new_deaths_smoothed_per_million": 4.709, + "stringency_index": 77.31 + }, + { + "date": "2020-06-28", + "total_cases": 1313667.0, + "new_cases": 38693.0, + "new_cases_smoothed": 35155.429, + "total_deaths": 57070.0, + "new_deaths": 1109.0, + "new_deaths_smoothed": 1013.429, + "total_cases_per_million": 6180.235, + "new_cases_per_million": 182.034, + "new_cases_smoothed_per_million": 165.391, + "total_deaths_per_million": 268.49, + "new_deaths_per_million": 5.217, + "new_deaths_smoothed_per_million": 4.768, + "stringency_index": 77.31 + }, + { + "date": "2020-06-29", + "total_cases": 1344143.0, + "new_cases": 30476.0, + "new_cases_smoothed": 37015.0, + "total_deaths": 57622.0, + "new_deaths": 552.0, + "new_deaths_smoothed": 1000.714, + "total_cases_per_million": 6323.611, + "new_cases_per_million": 143.376, + "new_cases_smoothed_per_million": 174.14, + "total_deaths_per_million": 271.087, + "new_deaths_per_million": 2.597, + "new_deaths_smoothed_per_million": 4.708, + "stringency_index": 77.31 + }, + { + "date": "2020-06-30", + "total_cases": 1368195.0, + "new_cases": 24052.0, + "new_cases_smoothed": 37389.286, + "total_deaths": 58314.0, + "new_deaths": 692.0, + "new_deaths_smoothed": 1006.143, + "total_cases_per_million": 6436.765, + "new_cases_per_million": 113.154, + "new_cases_smoothed_per_million": 175.9, + "total_deaths_per_million": 274.342, + "new_deaths_per_million": 3.256, + "new_deaths_smoothed_per_million": 4.733, + "total_tests": 1478671.0, + "total_tests_per_thousand": 6.957, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-07-01", + "total_cases": 1402041.0, + "new_cases": 33846.0, + "new_cases_smoothed": 36590.714, + "total_deaths": 59594.0, + "new_deaths": 1280.0, + "new_deaths_smoothed": 992.714, + "total_cases_per_million": 6595.996, + "new_cases_per_million": 159.231, + "new_cases_smoothed_per_million": 172.143, + "total_deaths_per_million": 280.364, + "new_deaths_per_million": 6.022, + "new_deaths_smoothed_per_million": 4.67, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-07-02", + "total_cases": 1448753.0, + "new_cases": 46712.0, + "new_cases_smoothed": 37160.286, + "total_deaths": 60632.0, + "new_deaths": 1038.0, + "new_deaths_smoothed": 971.714, + "total_cases_per_million": 6815.756, + "new_cases_per_million": 219.76, + "new_cases_smoothed_per_million": 174.823, + "total_deaths_per_million": 285.247, + "new_deaths_per_million": 4.883, + "new_deaths_smoothed_per_million": 4.571, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-07-03", + "total_cases": 1496858.0, + "new_cases": 48105.0, + "new_cases_smoothed": 38392.0, + "total_deaths": 61884.0, + "new_deaths": 1252.0, + "new_deaths_smoothed": 987.571, + "total_cases_per_million": 7042.069, + "new_cases_per_million": 226.313, + "new_cases_smoothed_per_million": 180.618, + "total_deaths_per_million": 291.137, + "new_deaths_per_million": 5.89, + "new_deaths_smoothed_per_million": 4.646, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-04", + "total_cases": 1539081.0, + "new_cases": 42223.0, + "new_cases_smoothed": 37729.571, + "total_deaths": 63174.0, + "new_deaths": 1290.0, + "new_deaths_smoothed": 1030.429, + "total_cases_per_million": 7240.71, + "new_cases_per_million": 198.641, + "new_cases_smoothed_per_million": 177.501, + "total_deaths_per_million": 297.206, + "new_deaths_per_million": 6.069, + "new_deaths_smoothed_per_million": 4.848, + "total_tests": 2124223.0, + "total_tests_per_thousand": 9.994, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-05", + "total_cases": 1577004.0, + "new_cases": 37923.0, + "new_cases_smoothed": 37619.571, + "total_deaths": 64265.0, + "new_deaths": 1091.0, + "new_deaths_smoothed": 1027.857, + "total_cases_per_million": 7419.121, + "new_cases_per_million": 178.411, + "new_cases_smoothed_per_million": 176.984, + "total_deaths_per_million": 302.339, + "new_deaths_per_million": 5.133, + "new_deaths_smoothed_per_million": 4.836, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-06", + "total_cases": 1603055.0, + "new_cases": 26051.0, + "new_cases_smoothed": 36987.429, + "total_deaths": 64867.0, + "new_deaths": 602.0, + "new_deaths_smoothed": 1035.0, + "total_cases_per_million": 7541.68, + "new_cases_per_million": 122.559, + "new_cases_smoothed_per_million": 174.01, + "total_deaths_per_million": 305.171, + "new_deaths_per_million": 2.832, + "new_deaths_smoothed_per_million": 4.869, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-07", + "total_cases": 1623284.0, + "new_cases": 20229.0, + "new_cases_smoothed": 36441.286, + "total_deaths": 65487.0, + "new_deaths": 620.0, + "new_deaths_smoothed": 1024.714, + "total_cases_per_million": 7636.848, + "new_cases_per_million": 95.169, + "new_cases_smoothed_per_million": 171.44, + "total_deaths_per_million": 308.088, + "new_deaths_per_million": 2.917, + "new_deaths_smoothed_per_million": 4.821, + "new_tests_smoothed": 98318.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-08", + "total_cases": 1668589.0, + "new_cases": 45305.0, + "new_cases_smoothed": 38078.286, + "total_deaths": 66741.0, + "new_deaths": 1254.0, + "new_deaths_smoothed": 1021.0, + "total_cases_per_million": 7849.989, + "new_cases_per_million": 213.14, + "new_cases_smoothed_per_million": 179.142, + "total_deaths_per_million": 313.988, + "new_deaths_per_million": 5.9, + "new_deaths_smoothed_per_million": 4.803, + "new_tests_smoothed": 77295.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-09", + "total_cases": 1713160.0, + "new_cases": 44571.0, + "new_cases_smoothed": 37772.429, + "total_deaths": 67964.0, + "new_deaths": 1223.0, + "new_deaths_smoothed": 1047.429, + "total_cases_per_million": 8059.676, + "new_cases_per_million": 209.687, + "new_cases_smoothed_per_million": 177.703, + "total_deaths_per_million": 319.741, + "new_deaths_per_million": 5.754, + "new_deaths_smoothed_per_million": 4.928, + "new_tests_smoothed": 56272.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-10", + "total_cases": 1755779.0, + "new_cases": 42619.0, + "new_cases_smoothed": 36988.714, + "total_deaths": 69184.0, + "new_deaths": 1220.0, + "new_deaths_smoothed": 1042.857, + "total_cases_per_million": 8260.18, + "new_cases_per_million": 200.504, + "new_cases_smoothed_per_million": 174.016, + "total_deaths_per_million": 325.481, + "new_deaths_per_million": 5.74, + "new_deaths_smoothed_per_million": 4.906, + "new_tests_smoothed": 35249.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-11", + "total_cases": 1800827.0, + "new_cases": 45048.0, + "new_cases_smoothed": 37392.286, + "total_deaths": 70398.0, + "new_deaths": 1214.0, + "new_deaths_smoothed": 1032.0, + "total_cases_per_million": 8472.111, + "new_cases_per_million": 211.931, + "new_cases_smoothed_per_million": 175.915, + "total_deaths_per_million": 331.192, + "new_deaths_per_million": 5.711, + "new_deaths_smoothed_per_million": 4.855, + "total_tests": 2223803.0, + "total_tests_per_thousand": 10.462, + "new_tests_smoothed": 14226.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-12", + "total_cases": 1839850.0, + "new_cases": 39023.0, + "new_cases_smoothed": 37549.429, + "total_deaths": 71469.0, + "new_deaths": 1071.0, + "new_deaths_smoothed": 1029.143, + "total_cases_per_million": 8655.698, + "new_cases_per_million": 183.586, + "new_cases_smoothed_per_million": 176.654, + "total_deaths_per_million": 336.231, + "new_deaths_per_million": 5.039, + "new_deaths_smoothed_per_million": 4.842, + "new_tests_smoothed": 16661.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-13", + "total_cases": 1864681.0, + "new_cases": 24831.0, + "new_cases_smoothed": 37375.143, + "total_deaths": 72100.0, + "new_deaths": 631.0, + "new_deaths_smoothed": 1033.286, + "total_cases_per_million": 8772.517, + "new_cases_per_million": 116.819, + "new_cases_smoothed_per_million": 175.834, + "total_deaths_per_million": 339.199, + "new_deaths_per_million": 2.969, + "new_deaths_smoothed_per_million": 4.861, + "new_tests_smoothed": 19097.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-14", + "total_cases": 1884967.0, + "new_cases": 20286.0, + "new_cases_smoothed": 37383.286, + "total_deaths": 72833.0, + "new_deaths": 733.0, + "new_deaths_smoothed": 1049.429, + "total_cases_per_million": 8867.954, + "new_cases_per_million": 95.437, + "new_cases_smoothed_per_million": 175.872, + "total_deaths_per_million": 342.648, + "new_deaths_per_million": 3.448, + "new_deaths_smoothed_per_million": 4.937, + "new_tests_smoothed": 21533.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-15", + "total_cases": 1926824.0, + "new_cases": 41857.0, + "new_cases_smoothed": 36890.714, + "total_deaths": 74133.0, + "new_deaths": 1300.0, + "new_deaths_smoothed": 1056.0, + "total_cases_per_million": 9064.873, + "new_cases_per_million": 196.919, + "new_cases_smoothed_per_million": 173.555, + "total_deaths_per_million": 348.764, + "new_deaths_per_million": 6.116, + "new_deaths_smoothed_per_million": 4.968, + "new_tests_smoothed": 23968.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-16", + "total_cases": 1966748.0, + "new_cases": 39924.0, + "new_cases_smoothed": 36226.857, + "total_deaths": 75366.0, + "new_deaths": 1233.0, + "new_deaths_smoothed": 1057.429, + "total_cases_per_million": 9252.698, + "new_cases_per_million": 187.825, + "new_cases_smoothed_per_million": 170.432, + "total_deaths_per_million": 354.564, + "new_deaths_per_million": 5.801, + "new_deaths_smoothed_per_million": 4.975, + "new_tests_smoothed": 26404.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-17", + "total_cases": 2012151.0, + "new_cases": 45403.0, + "new_cases_smoothed": 36624.571, + "total_deaths": 76688.0, + "new_deaths": 1322.0, + "new_deaths_smoothed": 1072.0, + "total_cases_per_million": 9466.299, + "new_cases_per_million": 213.601, + "new_cases_smoothed_per_million": 172.303, + "total_deaths_per_million": 360.784, + "new_deaths_per_million": 6.219, + "new_deaths_smoothed_per_million": 5.043, + "new_tests_smoothed": 28839.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-18", + "total_cases": 2046328.0, + "new_cases": 34177.0, + "new_cases_smoothed": 35071.571, + "total_deaths": 77851.0, + "new_deaths": 1163.0, + "new_deaths_smoothed": 1064.714, + "total_cases_per_million": 9627.087, + "new_cases_per_million": 160.788, + "new_cases_smoothed_per_million": 164.997, + "total_deaths_per_million": 366.255, + "new_deaths_per_million": 5.471, + "new_deaths_smoothed_per_million": 5.009, + "new_tests_smoothed": 31275.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-19", + "total_cases": 2074860.0, + "new_cases": 28532.0, + "new_cases_smoothed": 33572.857, + "total_deaths": 78772.0, + "new_deaths": 921.0, + "new_deaths_smoothed": 1043.286, + "total_cases_per_million": 9761.318, + "new_cases_per_million": 134.231, + "new_cases_smoothed_per_million": 157.946, + "total_deaths_per_million": 370.588, + "new_deaths_per_million": 4.333, + "new_deaths_smoothed_per_million": 4.908, + "new_tests_smoothed": 31275.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-20", + "total_cases": 2098389.0, + "new_cases": 23529.0, + "new_cases_smoothed": 33386.857, + "total_deaths": 79488.0, + "new_deaths": 716.0, + "new_deaths_smoothed": 1055.429, + "total_cases_per_million": 9872.012, + "new_cases_per_million": 110.694, + "new_cases_smoothed_per_million": 157.071, + "total_deaths_per_million": 373.957, + "new_deaths_per_million": 3.368, + "new_deaths_smoothed_per_million": 4.965, + "new_tests_smoothed": 31275.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-21", + "total_cases": 2118646.0, + "new_cases": 20257.0, + "new_cases_smoothed": 33382.714, + "total_deaths": 80120.0, + "new_deaths": 632.0, + "new_deaths_smoothed": 1041.0, + "total_cases_per_million": 9967.312, + "new_cases_per_million": 95.3, + "new_cases_smoothed_per_million": 157.051, + "total_deaths_per_million": 376.93, + "new_deaths_per_million": 2.973, + "new_deaths_smoothed_per_million": 4.897, + "total_tests": 2536552.0, + "total_tests_per_thousand": 11.933, + "new_tests_smoothed": 31275.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-22", + "total_cases": 2159654.0, + "new_cases": 41008.0, + "new_cases_smoothed": 33261.429, + "total_deaths": 81487.0, + "new_deaths": 1367.0, + "new_deaths_smoothed": 1050.571, + "total_cases_per_million": 10160.237, + "new_cases_per_million": 192.925, + "new_cases_smoothed_per_million": 156.481, + "total_deaths_per_million": 383.361, + "new_deaths_per_million": 6.431, + "new_deaths_smoothed_per_million": 4.942, + "new_tests_smoothed": 31892.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-23", + "total_cases": 2227514.0, + "new_cases": 67860.0, + "new_cases_smoothed": 37252.286, + "total_deaths": 82771.0, + "new_deaths": 1284.0, + "new_deaths_smoothed": 1057.857, + "total_cases_per_million": 10479.489, + "new_cases_per_million": 319.252, + "new_cases_smoothed_per_million": 175.256, + "total_deaths_per_million": 389.402, + "new_deaths_per_million": 6.041, + "new_deaths_smoothed_per_million": 4.977, + "new_tests_smoothed": 32509.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-24", + "total_cases": 2287475.0, + "new_cases": 59961.0, + "new_cases_smoothed": 39332.0, + "total_deaths": 84082.0, + "new_deaths": 1311.0, + "new_deaths_smoothed": 1056.286, + "total_cases_per_million": 10761.58, + "new_cases_per_million": 282.091, + "new_cases_smoothed_per_million": 185.04, + "total_deaths_per_million": 395.569, + "new_deaths_per_million": 6.168, + "new_deaths_smoothed_per_million": 4.969, + "new_tests_smoothed": 33126.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-25", + "total_cases": 2343366.0, + "new_cases": 55891.0, + "new_cases_smoothed": 42434.0, + "total_deaths": 85238.0, + "new_deaths": 1156.0, + "new_deaths_smoothed": 1055.286, + "total_cases_per_million": 11024.523, + "new_cases_per_million": 262.943, + "new_cases_smoothed_per_million": 199.634, + "total_deaths_per_million": 401.008, + "new_deaths_per_million": 5.438, + "new_deaths_smoothed_per_million": 4.965, + "total_tests": 2678927.0, + "total_tests_per_thousand": 12.603, + "new_tests_smoothed": 33743.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-26", + "total_cases": 2394513.0, + "new_cases": 51147.0, + "new_cases_smoothed": 45664.714, + "total_deaths": 86449.0, + "new_deaths": 1211.0, + "new_deaths_smoothed": 1096.714, + "total_cases_per_million": 11265.147, + "new_cases_per_million": 240.624, + "new_cases_smoothed_per_million": 214.833, + "total_deaths_per_million": 406.705, + "new_deaths_per_million": 5.697, + "new_deaths_smoothed_per_million": 5.16, + "new_tests_smoothed": 40654.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-27", + "total_cases": 2419091.0, + "new_cases": 24578.0, + "new_cases_smoothed": 45814.571, + "total_deaths": 87004.0, + "new_deaths": 555.0, + "new_deaths_smoothed": 1073.714, + "total_cases_per_million": 11380.776, + "new_cases_per_million": 115.629, + "new_cases_smoothed_per_million": 215.538, + "total_deaths_per_million": 409.316, + "new_deaths_per_million": 2.611, + "new_deaths_smoothed_per_million": 5.051, + "new_tests_smoothed": 47566.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-28", + "total_cases": 2442375.0, + "new_cases": 23284.0, + "new_cases_smoothed": 46247.0, + "total_deaths": 87618.0, + "new_deaths": 614.0, + "new_deaths_smoothed": 1071.143, + "total_cases_per_million": 11490.317, + "new_cases_per_million": 109.541, + "new_cases_smoothed_per_million": 217.572, + "total_deaths_per_million": 412.205, + "new_deaths_per_million": 2.889, + "new_deaths_smoothed_per_million": 5.039, + "new_tests_smoothed": 54477.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_units": "tests performed", + "stringency_index": 81.02 + }, + { + "date": "2020-07-29", + "total_cases": 2483191.0, + "new_cases": 40816.0, + "new_cases_smoothed": 46219.571, + "total_deaths": 88539.0, + "new_deaths": 921.0, + "new_deaths_smoothed": 1007.429, + "total_cases_per_million": 11682.339, + "new_cases_per_million": 192.022, + "new_cases_smoothed_per_million": 217.443, + "total_deaths_per_million": 416.538, + "new_deaths_per_million": 4.333, + "new_deaths_smoothed_per_million": 4.74, + "new_tests_smoothed": 60772.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-30", + "total_cases": 2552265.0, + "new_cases": 69074.0, + "new_cases_smoothed": 46393.0, + "total_deaths": 90134.0, + "new_deaths": 1595.0, + "new_deaths_smoothed": 1051.857, + "total_cases_per_million": 12007.302, + "new_cases_per_million": 324.963, + "new_cases_smoothed_per_million": 218.259, + "total_deaths_per_million": 424.041, + "new_deaths_per_million": 7.504, + "new_deaths_smoothed_per_million": 4.949, + "new_tests_smoothed": 67066.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-31", + "total_cases": 2610102.0, + "new_cases": 57837.0, + "new_cases_smoothed": 46089.571, + "total_deaths": 91263.0, + "new_deaths": 1129.0, + "new_deaths_smoothed": 1025.857, + "total_cases_per_million": 12279.4, + "new_cases_per_million": 272.098, + "new_cases_smoothed_per_million": 216.831, + "total_deaths_per_million": 429.353, + "new_deaths_per_million": 5.311, + "new_deaths_smoothed_per_million": 4.826, + "new_tests_smoothed": 73361.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-01", + "total_cases": 2662485.0, + "new_cases": 52383.0, + "new_cases_smoothed": 45588.429, + "total_deaths": 92475.0, + "new_deaths": 1212.0, + "new_deaths_smoothed": 1033.857, + "total_cases_per_million": 12525.839, + "new_cases_per_million": 246.439, + "new_cases_smoothed_per_million": 214.474, + "total_deaths_per_million": 435.055, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 4.864, + "new_tests_smoothed": 79655.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-02", + "total_cases": 2707877.0, + "new_cases": 45392.0, + "new_cases_smoothed": 44766.286, + "total_deaths": 93563.0, + "new_deaths": 1088.0, + "new_deaths_smoothed": 1016.286, + "total_cases_per_million": 12739.389, + "new_cases_per_million": 213.55, + "new_cases_smoothed_per_million": 210.606, + "total_deaths_per_million": 440.173, + "new_deaths_per_million": 5.119, + "new_deaths_smoothed_per_million": 4.781, + "total_tests": 3316167.0, + "total_tests_per_thousand": 15.601, + "new_tests_smoothed": 79655.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-03", + "total_cases": 2733677.0, + "new_cases": 25800.0, + "new_cases_smoothed": 44940.857, + "total_deaths": 94104.0, + "new_deaths": 541.0, + "new_deaths_smoothed": 1014.286, + "total_cases_per_million": 12860.767, + "new_cases_per_million": 121.378, + "new_cases_smoothed_per_million": 211.427, + "total_deaths_per_million": 442.719, + "new_deaths_per_million": 2.545, + "new_deaths_smoothed_per_million": 4.772, + "new_tests_smoothed": 80041.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-04", + "total_cases": 2750318.0, + "new_cases": 16641.0, + "new_cases_smoothed": 43991.857, + "total_deaths": 94665.0, + "new_deaths": 561.0, + "new_deaths_smoothed": 1006.714, + "total_cases_per_million": 12939.056, + "new_cases_per_million": 78.289, + "new_cases_smoothed_per_million": 206.963, + "total_deaths_per_million": 445.358, + "new_deaths_per_million": 2.639, + "new_deaths_smoothed_per_million": 4.736, + "new_tests_smoothed": 80428.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-05", + "total_cases": 2801921.0, + "new_cases": 51603.0, + "new_cases_smoothed": 45532.857, + "total_deaths": 95819.0, + "new_deaths": 1154.0, + "new_deaths_smoothed": 1040.0, + "total_cases_per_million": 13181.825, + "new_cases_per_million": 242.77, + "new_cases_smoothed_per_million": 214.212, + "total_deaths_per_million": 450.787, + "new_deaths_per_million": 5.429, + "new_deaths_smoothed_per_million": 4.893, + "new_tests_smoothed": 80814.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-06", + "total_cases": 2859073.0, + "new_cases": 57152.0, + "new_cases_smoothed": 43829.714, + "total_deaths": 97256.0, + "new_deaths": 1437.0, + "new_deaths_smoothed": 1017.429, + "total_cases_per_million": 13450.701, + "new_cases_per_million": 268.875, + "new_cases_smoothed_per_million": 206.2, + "total_deaths_per_million": 457.547, + "new_deaths_per_million": 6.76, + "new_deaths_smoothed_per_million": 4.787, + "new_tests_smoothed": 81200.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-07", + "total_cases": 2912212.0, + "new_cases": 53139.0, + "new_cases_smoothed": 43158.571, + "total_deaths": 98493.0, + "new_deaths": 1237.0, + "new_deaths_smoothed": 1032.857, + "total_cases_per_million": 13700.697, + "new_cases_per_million": 249.996, + "new_cases_smoothed_per_million": 203.042, + "total_deaths_per_million": 463.367, + "new_deaths_per_million": 5.82, + "new_deaths_smoothed_per_million": 4.859, + "new_tests_smoothed": 81587.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-08", + "total_cases": 2962442.0, + "new_cases": 50230.0, + "new_cases_smoothed": 42851.0, + "total_deaths": 99572.0, + "new_deaths": 1079.0, + "new_deaths_smoothed": 1013.857, + "total_cases_per_million": 13937.007, + "new_cases_per_million": 236.31, + "new_cases_smoothed_per_million": 201.595, + "total_deaths_per_million": 468.443, + "new_deaths_per_million": 5.076, + "new_deaths_smoothed_per_million": 4.77, + "total_tests": 3810322.0, + "total_tests_per_thousand": 17.926, + "new_tests_smoothed": 81973.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-09", + "total_cases": 3012412.0, + "new_cases": 49970.0, + "new_cases_smoothed": 43505.0, + "total_deaths": 100477.0, + "new_deaths": 905.0, + "new_deaths_smoothed": 987.714, + "total_cases_per_million": 14172.094, + "new_cases_per_million": 235.087, + "new_cases_smoothed_per_million": 204.672, + "total_deaths_per_million": 472.701, + "new_deaths_per_million": 4.258, + "new_deaths_smoothed_per_million": 4.647, + "new_tests_smoothed": 77580.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-10", + "total_cases": 3035422.0, + "new_cases": 23010.0, + "new_cases_smoothed": 43106.429, + "total_deaths": 101049.0, + "new_deaths": 572.0, + "new_deaths_smoothed": 992.143, + "total_cases_per_million": 14280.346, + "new_cases_per_million": 108.252, + "new_cases_smoothed_per_million": 202.797, + "total_deaths_per_million": 475.392, + "new_deaths_per_million": 2.691, + "new_deaths_smoothed_per_million": 4.668, + "new_tests_smoothed": 72801.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-11", + "total_cases": 3057470.0, + "new_cases": 22048.0, + "new_cases_smoothed": 43878.857, + "total_deaths": 101752.0, + "new_deaths": 703.0, + "new_deaths_smoothed": 1012.429, + "total_cases_per_million": 14384.073, + "new_cases_per_million": 103.726, + "new_cases_smoothed_per_million": 206.431, + "total_deaths_per_million": 478.699, + "new_deaths_per_million": 3.307, + "new_deaths_smoothed_per_million": 4.763, + "new_tests_smoothed": 68021.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-12", + "total_cases": 3109630.0, + "new_cases": 52160.0, + "new_cases_smoothed": 43958.429, + "total_deaths": 103026.0, + "new_deaths": 1274.0, + "new_deaths_smoothed": 1029.571, + "total_cases_per_million": 14629.463, + "new_cases_per_million": 245.39, + "new_cases_smoothed_per_million": 206.805, + "total_deaths_per_million": 484.693, + "new_deaths_per_million": 5.994, + "new_deaths_smoothed_per_million": 4.844, + "new_tests_smoothed": 63242.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-13", + "total_cases": 3164785.0, + "new_cases": 55155.0, + "new_cases_smoothed": 43673.143, + "total_deaths": 104201.0, + "new_deaths": 1175.0, + "new_deaths_smoothed": 992.143, + "total_cases_per_million": 14888.943, + "new_cases_per_million": 259.48, + "new_cases_smoothed_per_million": 205.463, + "total_deaths_per_million": 490.221, + "new_deaths_per_million": 5.528, + "new_deaths_smoothed_per_million": 4.668, + "new_tests_smoothed": 58463.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-14", + "total_cases": 3224876.0, + "new_cases": 60091.0, + "new_cases_smoothed": 44666.286, + "total_deaths": 105463.0, + "new_deaths": 1262.0, + "new_deaths_smoothed": 995.714, + "total_cases_per_million": 15171.645, + "new_cases_per_million": 282.702, + "new_cases_smoothed_per_million": 210.136, + "total_deaths_per_million": 496.158, + "new_deaths_per_million": 5.937, + "new_deaths_smoothed_per_million": 4.684, + "new_tests_smoothed": 53684.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-15", + "total_cases": 3275520.0, + "new_cases": 50644.0, + "new_cases_smoothed": 44725.429, + "total_deaths": 106523.0, + "new_deaths": 1060.0, + "new_deaths_smoothed": 993.0, + "total_cases_per_million": 15409.904, + "new_cases_per_million": 238.258, + "new_cases_smoothed_per_million": 210.414, + "total_deaths_per_million": 501.145, + "new_deaths_per_million": 4.987, + "new_deaths_smoothed_per_million": 4.672, + "total_tests": 4152652.0, + "total_tests_per_thousand": 19.536, + "new_tests_smoothed": 48904.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-16", + "total_cases": 3317096.0, + "new_cases": 41576.0, + "new_cases_smoothed": 43526.286, + "total_deaths": 107232.0, + "new_deaths": 709.0, + "new_deaths_smoothed": 965.0, + "total_cases_per_million": 15605.501, + "new_cases_per_million": 195.597, + "new_cases_smoothed_per_million": 204.772, + "total_deaths_per_million": 504.48, + "new_deaths_per_million": 3.336, + "new_deaths_smoothed_per_million": 4.54, + "new_tests_smoothed": 55087.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-17", + "total_cases": 3340197.0, + "new_cases": 23101.0, + "new_cases_smoothed": 43539.286, + "total_deaths": 107852.0, + "new_deaths": 620.0, + "new_deaths_smoothed": 971.857, + "total_cases_per_million": 15714.181, + "new_cases_per_million": 108.68, + "new_cases_smoothed_per_million": 204.833, + "total_deaths_per_million": 507.397, + "new_deaths_per_million": 2.917, + "new_deaths_smoothed_per_million": 4.572, + "new_tests_smoothed": 61270.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-18", + "total_cases": 3359570.0, + "new_cases": 19373.0, + "new_cases_smoothed": 43157.143, + "total_deaths": 108536.0, + "new_deaths": 684.0, + "new_deaths_smoothed": 969.143, + "total_cases_per_million": 15805.322, + "new_cases_per_million": 91.142, + "new_cases_smoothed_per_million": 203.036, + "total_deaths_per_million": 510.615, + "new_deaths_per_million": 3.218, + "new_deaths_smoothed_per_million": 4.559, + "new_tests_smoothed": 67453.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-19", + "total_cases": 3407354.0, + "new_cases": 47784.0, + "new_cases_smoothed": 42532.0, + "total_deaths": 109888.0, + "new_deaths": 1352.0, + "new_deaths_smoothed": 980.286, + "total_cases_per_million": 16030.125, + "new_cases_per_million": 224.803, + "new_cases_smoothed_per_million": 200.095, + "total_deaths_per_million": 516.975, + "new_deaths_per_million": 6.361, + "new_deaths_smoothed_per_million": 4.612, + "new_tests_smoothed": 73636.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-20", + "total_cases": 3456652.0, + "new_cases": 49298.0, + "new_cases_smoothed": 41695.286, + "total_deaths": 111100.0, + "new_deaths": 1212.0, + "new_deaths_smoothed": 985.571, + "total_cases_per_million": 16262.051, + "new_cases_per_million": 231.926, + "new_cases_smoothed_per_million": 196.158, + "total_deaths_per_million": 522.677, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 4.637, + "new_tests_smoothed": 79819.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-21", + "total_cases": 3501975.0, + "new_cases": 45323.0, + "new_cases_smoothed": 39585.571, + "total_deaths": 112304.0, + "new_deaths": 1204.0, + "new_deaths_smoothed": 977.286, + "total_cases_per_million": 16475.276, + "new_cases_per_million": 213.225, + "new_cases_smoothed_per_million": 186.233, + "total_deaths_per_million": 528.342, + "new_deaths_per_million": 5.664, + "new_deaths_smoothed_per_million": 4.598, + "new_tests_smoothed": 86002.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-22", + "total_cases": 3532330.0, + "new_cases": 30355.0, + "new_cases_smoothed": 36687.143, + "total_deaths": 113358.0, + "new_deaths": 1054.0, + "new_deaths_smoothed": 976.429, + "total_cases_per_million": 16618.083, + "new_cases_per_million": 142.807, + "new_cases_smoothed_per_million": 172.597, + "total_deaths_per_million": 533.3, + "new_deaths_per_million": 4.959, + "new_deaths_smoothed_per_million": 4.594, + "total_tests": 4797948.0, + "total_tests_per_thousand": 22.572, + "new_tests_smoothed": 92185.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-23", + "total_cases": 3582362.0, + "new_cases": 50032.0, + "new_cases_smoothed": 37895.143, + "total_deaths": 114250.0, + "new_deaths": 892.0, + "new_deaths_smoothed": 1002.571, + "total_cases_per_million": 16853.462, + "new_cases_per_million": 235.379, + "new_cases_smoothed_per_million": 178.28, + "total_deaths_per_million": 537.497, + "new_deaths_per_million": 4.196, + "new_deaths_smoothed_per_million": 4.717, + "stringency_index": 64.35 + }, + { + "date": "2020-08-24", + "total_cases": 3605783.0, + "new_cases": 23421.0, + "new_cases_smoothed": 37940.857, + "total_deaths": 114744.0, + "new_deaths": 494.0, + "new_deaths_smoothed": 984.571, + "total_cases_per_million": 16963.648, + "new_cases_per_million": 110.186, + "new_cases_smoothed_per_million": 178.495, + "total_deaths_per_million": 539.821, + "new_deaths_per_million": 2.324, + "new_deaths_smoothed_per_million": 4.632 + }, + { + "date": "2020-08-25", + "total_cases": 3622861.0, + "new_cases": 17078.0, + "new_cases_smoothed": 37613.0, + "total_deaths": 115309.0, + "new_deaths": 565.0, + "new_deaths_smoothed": 967.571, + "total_cases_per_million": 17043.993, + "new_cases_per_million": 80.345, + "new_cases_smoothed_per_million": 176.953, + "total_deaths_per_million": 542.479, + "new_deaths_per_million": 2.658, + "new_deaths_smoothed_per_million": 4.552 + }, + { + "date": "2020-08-26", + "total_cases": 3669995.0, + "new_cases": 47134.0, + "new_cases_smoothed": 37520.143, + "total_deaths": 116580.0, + "new_deaths": 1271.0, + "new_deaths_smoothed": 956.0, + "total_cases_per_million": 17265.738, + "new_cases_per_million": 221.745, + "new_cases_smoothed_per_million": 176.516, + "total_deaths_per_million": 548.458, + "new_deaths_per_million": 5.98, + "new_deaths_smoothed_per_million": 4.498 + }, + { + "date": "2020-08-27", + "total_cases": 3717156.0, + "new_cases": 47161.0, + "new_cases_smoothed": 37214.857, + "total_deaths": 117665.0, + "new_deaths": 1085.0, + "new_deaths_smoothed": 937.857, + "total_cases_per_million": 17487.61, + "new_cases_per_million": 221.872, + "new_cases_smoothed_per_million": 175.08, + "total_deaths_per_million": 553.563, + "new_deaths_per_million": 5.104, + "new_deaths_smoothed_per_million": 4.412 + }, + { + "date": "2020-08-28", + "total_cases": 3761391.0, + "new_cases": 44235.0, + "new_cases_smoothed": 37059.429, + "total_deaths": 118649.0, + "new_deaths": 984.0, + "new_deaths_smoothed": 906.429, + "total_cases_per_million": 17695.716, + "new_cases_per_million": 208.107, + "new_cases_smoothed_per_million": 174.349, + "total_deaths_per_million": 558.192, + "new_deaths_per_million": 4.629, + "new_deaths_smoothed_per_million": 4.264 + }, + { + "date": "2020-08-29", + "total_cases": 3804803.0, + "new_cases": 43412.0, + "new_cases_smoothed": 38924.714, + "total_deaths": 119504.0, + "new_deaths": 855.0, + "new_deaths_smoothed": 878.0, + "total_cases_per_million": 17899.951, + "new_cases_per_million": 204.235, + "new_cases_smoothed_per_million": 183.124, + "total_deaths_per_million": 562.215, + "new_deaths_per_million": 4.022, + "new_deaths_smoothed_per_million": 4.131 + }, + { + "date": "2020-08-30", + "total_cases": 3846153.0, + "new_cases": 41350.0, + "new_cases_smoothed": 37684.429, + "total_deaths": 120462.0, + "new_deaths": 958.0, + "new_deaths_smoothed": 887.429, + "total_cases_per_million": 18094.485, + "new_cases_per_million": 194.534, + "new_cases_smoothed_per_million": 177.289, + "total_deaths_per_million": 566.722, + "new_deaths_per_million": 4.507, + "new_deaths_smoothed_per_million": 4.175 + }, + { + "date": "2020-08-31", + "total_cases": 3862311.0, + "new_cases": 16158.0, + "new_cases_smoothed": 36646.857, + "total_deaths": 120828.0, + "new_deaths": 366.0, + "new_deaths_smoothed": 869.143, + "total_cases_per_million": 18170.501, + "new_cases_per_million": 76.016, + "new_cases_smoothed_per_million": 172.408, + "total_deaths_per_million": 568.443, + "new_deaths_per_million": 1.722, + "new_deaths_smoothed_per_million": 4.089 + }, + { + "date": "2020-09-01", + "total_cases": 3908272.0, + "new_cases": 45961.0, + "new_cases_smoothed": 40773.0, + "total_deaths": 121381.0, + "new_deaths": 553.0, + "new_deaths_smoothed": 867.429, + "total_cases_per_million": 18386.728, + "new_cases_per_million": 216.227, + "new_cases_smoothed_per_million": 191.819, + "total_deaths_per_million": 571.045, + "new_deaths_per_million": 2.602, + "new_deaths_smoothed_per_million": 4.081 + }, + { + "date": "2020-09-02", + "total_cases": 3950931.0, + "new_cases": 42659.0, + "new_cases_smoothed": 40133.714, + "total_deaths": 122596.0, + "new_deaths": 1215.0, + "new_deaths_smoothed": 859.429, + "total_cases_per_million": 18587.42, + "new_cases_per_million": 200.692, + "new_cases_smoothed_per_million": 188.812, + "total_deaths_per_million": 576.761, + "new_deaths_per_million": 5.716, + "new_deaths_smoothed_per_million": 4.043 + }, + { + "date": "2020-09-03", + "total_cases": 3997865.0, + "new_cases": 46934.0, + "new_cases_smoothed": 40101.286, + "total_deaths": 123780.0, + "new_deaths": 1184.0, + "new_deaths_smoothed": 873.571, + "total_cases_per_million": 18808.224, + "new_cases_per_million": 220.804, + "new_cases_smoothed_per_million": 188.659, + "total_deaths_per_million": 582.331, + "new_deaths_per_million": 5.57, + "new_deaths_smoothed_per_million": 4.11 + }, + { + "date": "2020-09-04", + "total_cases": 4041638.0, + "new_cases": 43773.0, + "new_cases_smoothed": 40035.286, + "total_deaths": 124614.0, + "new_deaths": 834.0, + "new_deaths_smoothed": 852.143, + "total_cases_per_million": 19014.157, + "new_cases_per_million": 205.933, + "new_cases_smoothed_per_million": 188.349, + "total_deaths_per_million": 586.255, + "new_deaths_per_million": 3.924, + "new_deaths_smoothed_per_million": 4.009 + }, + { + "date": "2020-09-05", + "total_cases": 4092832.0, + "new_cases": 51194.0, + "new_cases_smoothed": 41147.0, + "total_deaths": 125521.0, + "new_deaths": 907.0, + "new_deaths_smoothed": 859.571, + "total_cases_per_million": 19255.003, + "new_cases_per_million": 240.846, + "new_cases_smoothed_per_million": 193.579, + "total_deaths_per_million": 590.522, + "new_deaths_per_million": 4.267, + "new_deaths_smoothed_per_million": 4.044 + } + ] + }, + "VGB": { + "continent": "North America", + "location": "British Virgin Islands", + "population": 30237.0, + "population_density": 207.973, + "diabetes_prevalence": 13.67, + "life_expectancy": 79.07, + "data": [ + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 66.144, + "new_cases_per_million": 66.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 66.144, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-29", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 66.144, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-30", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 66.144, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-31", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 33.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-01", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-20", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.288, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 33.072, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-21", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.36, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-22", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-23", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-24", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-25", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 198.432, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 14.174, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.174, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 72.22 + }, + { + "date": "2020-04-27", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-04-30", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-05", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-13", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-14", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-15", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-21", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-22", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-23", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-24", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-05", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-21", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-22", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-23", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-24", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-06-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-05", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-21", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-22", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-23", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-24", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-07-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-03", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-04", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-05", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-06", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-07", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-08", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-09", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.725, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-10", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-11", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-12", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-13", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-14", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-15", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-16", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-17", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-18", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-19", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 363.793, + "new_cases_per_million": 66.144, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 363.793, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.449, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-08-21", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 396.865, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 14.174, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-22", + "total_cases": 21.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.513, + "new_cases_per_million": 297.649, + "new_cases_smoothed_per_million": 56.695, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-23", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.695, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-24", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.695, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-25", + "total_cases": 26.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.874, + "new_cases_per_million": 165.36, + "new_cases_smoothed_per_million": 80.318, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-26", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 70.869, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-08-27", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 70.869, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-08-28", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.144, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-08-29", + "total_cases": 35.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1157.522, + "new_cases_per_million": 297.649, + "new_cases_smoothed_per_million": 66.144, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-08-30", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1157.522, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.144, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-08-31", + "total_cases": 37.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1223.666, + "new_cases_per_million": 66.144, + "new_cases_smoothed_per_million": 75.593, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-09-01", + "total_cases": 47.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1554.387, + "new_cases_per_million": 330.721, + "new_cases_smoothed_per_million": 99.216, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1554.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.216, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1554.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.216, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1554.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.216, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 63.0, + "new_cases": 16.0, + "new_cases_smoothed": 4.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2083.54, + "new_cases_per_million": 529.153, + "new_cases_smoothed_per_million": 132.288, + "total_deaths_per_million": 33.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BRN": { + "continent": "Asia", + "location": "Brunei", + "population": 437483.0, + "population_density": 81.347, + "median_age": 32.4, + "aged_65_older": 4.591, + "aged_70_older": 2.382, + "gdp_per_capita": 71809.251, + "cardiovasc_death_rate": 201.285, + "diabetes_prevalence": 12.79, + "female_smokers": 2.0, + "male_smokers": 30.9, + "hospital_beds_per_thousand": 2.7, + "life_expectancy": 75.86, + "data": [ + { + "date": "2020-03-10", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.286, + "new_cases_per_million": 2.286, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_cases": 11.0, + "new_cases": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 25.144, + "new_cases_per_million": 22.858, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 25.0, + "new_cases": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 57.145, + "new_cases_per_million": 32.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-14", + "total_cases": 37.0, + "new_cases": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 84.575, + "new_cases_per_million": 27.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-15", + "total_cases": 40.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 91.432, + "new_cases_per_million": 6.857, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-16", + "total_cases": 50.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.29, + "new_cases_per_million": 22.858, + "new_cases_smoothed_per_million": 16.327, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-17", + "total_cases": 54.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.433, + "new_cases_per_million": 9.143, + "new_cases_smoothed_per_million": 17.307, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-18", + "total_cases": 56.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.005, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 17.96, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-19", + "total_cases": 68.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 155.435, + "new_cases_per_million": 27.43, + "new_cases_smoothed_per_million": 18.613, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 73.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 166.864, + "new_cases_per_million": 11.429, + "new_cases_smoothed_per_million": 15.674, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 78.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 178.293, + "new_cases_per_million": 11.429, + "new_cases_smoothed_per_million": 13.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 83.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.722, + "new_cases_per_million": 11.429, + "new_cases_smoothed_per_million": 14.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 88.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 201.151, + "new_cases_per_million": 11.429, + "new_cases_smoothed_per_million": 12.409, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-24", + "total_cases": 91.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.008, + "new_cases_per_million": 6.857, + "new_cases_smoothed_per_million": 12.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 104.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.724, + "new_cases_per_million": 29.715, + "new_cases_smoothed_per_million": 15.674, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 107.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.581, + "new_cases_per_million": 6.857, + "new_cases_smoothed_per_million": 12.735, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 114.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.582, + "new_cases_per_million": 16.001, + "new_cases_smoothed_per_million": 13.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-28", + "total_cases": 115.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.867, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 12.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-29", + "total_cases": 120.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.296, + "new_cases_per_million": 11.429, + "new_cases_smoothed_per_million": 12.082, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 2.286, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-03-30", + "total_cases": 126.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 288.011, + "new_cases_per_million": 13.715, + "new_cases_smoothed_per_million": 12.409, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-03-31", + "total_cases": 127.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 290.297, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 11.756, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-04-01", + "total_cases": 129.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 294.869, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 8.164, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-04-02", + "total_cases": 131.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 299.44, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 7.837, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-04-03", + "total_cases": 133.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 304.012, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 6.204, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-04-04", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 304.012, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.878, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-04-05", + "total_cases": 135.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 4.898, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-06", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.939, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-07", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-08", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.959, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-09", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.306, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-10", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-11", + "total_cases": 136.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-12", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-13", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-14", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-15", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-16", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-17", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-18", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 310.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-19", + "total_cases": 137.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.155, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-20", + "total_cases": 138.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-21", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-22", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-23", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-24", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-25", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-26", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-27", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-28", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-29", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-04-30", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-01", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-02", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-03", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-04", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-05", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-06", + "total_cases": 138.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.441, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-07", + "total_cases": 139.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 317.727, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-08", + "total_cases": 141.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-10", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-11", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-12", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-13", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-14", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 58.33 + }, + { + "date": "2020-05-15", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-16", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-17", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-18", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-19", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-20", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-21", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-22", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-23", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-24", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-25", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-26", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-27", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-28", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 2.286, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-05-29", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-05-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-05-31", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-06-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 52.78 + }, + { + "date": "2020-06-02", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-03", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-04", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-05", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-06", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-07", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-08", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-10", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-11", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-12", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-13", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-14", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-15", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-16", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-17", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 2.286, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-18", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-19", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-20", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-21", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-22", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-23", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 49.07 + }, + { + "date": "2020-06-24", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-25", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-26", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-27", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-28", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-29", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-06-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-02", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-03", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-04", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-05", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-06", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-07", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-08", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-10", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-11", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-12", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-13", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-14", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-15", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-16", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-17", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-18", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-19", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-20", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-21", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-22", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-23", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-24", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-25", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-26", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-27", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-07-28", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-07-29", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-07-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-07-31", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-02", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-03", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-04", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-05", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-06", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-07", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-08", + "total_cases": 142.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-09", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-10", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-11", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-12", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-13", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-14", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-15", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-16", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-17", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-18", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-19", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-20", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-21", + "total_cases": 143.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 326.87, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-22", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 326.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-23", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 326.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-24", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 326.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-25", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 326.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-26", + "total_cases": 144.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-27", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-28", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-29", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-30", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-08-31", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-09-01", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-09-02", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-09-03", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-09-04", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 145.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 331.441, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BGR": { + "continent": "Europe", + "location": "Bulgaria", + "population": 6948445.0, + "population_density": 65.18, + "median_age": 44.7, + "aged_65_older": 20.801, + "aged_70_older": 13.272, + "gdp_per_capita": 18563.307, + "extreme_poverty": 1.5, + "cardiovasc_death_rate": 424.688, + "diabetes_prevalence": 5.81, + "female_smokers": 30.1, + "male_smokers": 44.4, + "hospital_beds_per_thousand": 7.454, + "life_expectancy": 75.05, + "data": [ + { + "date": "2020-03-08", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.288, + "new_cases_per_million": 0.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 21.3 + }, + { + "date": "2020-03-09", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.576, + "new_cases_per_million": 0.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 21.3 + }, + { + "date": "2020-03-12", + "total_cases": 7.0, + "new_cases": 3.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 1.007, + "new_cases_per_million": 0.432, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.144, + "stringency_index": 26.85 + }, + { + "date": "2020-03-13", + "total_cases": 23.0, + "new_cases": 16.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.31, + "new_cases_per_million": 2.303, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-03-14", + "total_cases": 31.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.461, + "new_cases_per_million": 1.151, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 50.93 + }, + { + "date": "2020-03-15", + "total_cases": 41.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.901, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 0.802, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 50.93 + }, + { + "date": "2020-03-16", + "total_cases": 51.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.34, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 62.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.923, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 1.192, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 56.48 + }, + { + "date": "2020-03-18", + "total_cases": 81.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11.657, + "new_cases_per_million": 2.734, + "new_cases_smoothed_per_million": 1.583, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 70.37 + }, + { + "date": "2020-03-19", + "total_cases": 92.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13.24, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-03-20", + "total_cases": 105.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.111, + "new_cases_per_million": 1.871, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 70.37 + }, + { + "date": "2020-03-21", + "total_cases": 127.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.277, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 73.15 + }, + { + "date": "2020-03-22", + "total_cases": 163.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.458, + "new_cases_per_million": 5.181, + "new_cases_smoothed_per_million": 2.508, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-23", + "total_cases": 185.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.625, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 2.755, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-24", + "total_cases": 201.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.927, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.858, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-25", + "total_cases": 220.0, + "new_cases": 19.0, + "new_cases_smoothed": 19.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.662, + "new_cases_per_million": 2.734, + "new_cases_smoothed_per_million": 2.858, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-26", + "total_cases": 242.0, + "new_cases": 22.0, + "new_cases_smoothed": 21.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.828, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 264.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.994, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 293.0, + "new_cases": 29.0, + "new_cases_smoothed": 23.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.168, + "new_cases_per_million": 4.174, + "new_cases_smoothed_per_million": 3.413, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 331.0, + "new_cases": 38.0, + "new_cases_smoothed": 24.0, + "total_deaths": 7.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 47.637, + "new_cases_per_million": 5.469, + "new_cases_smoothed_per_million": 3.454, + "total_deaths_per_million": 1.007, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 346.0, + "new_cases": 15.0, + "new_cases_smoothed": 23.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 49.795, + "new_cases_per_million": 2.159, + "new_cases_smoothed_per_million": 3.31, + "total_deaths_per_million": 1.151, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 359.0, + "new_cases": 13.0, + "new_cases_smoothed": 22.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 51.666, + "new_cases_per_million": 1.871, + "new_cases_smoothed_per_million": 3.248, + "total_deaths_per_million": 1.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 73.15 + }, + { + "date": "2020-04-01", + "total_cases": 399.0, + "new_cases": 40.0, + "new_cases_smoothed": 25.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 57.423, + "new_cases_per_million": 5.757, + "new_cases_smoothed_per_million": 3.68, + "total_deaths_per_million": 1.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 71.3 + }, + { + "date": "2020-04-02", + "total_cases": 422.0, + "new_cases": 23.0, + "new_cases_smoothed": 25.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 60.733, + "new_cases_per_million": 3.31, + "new_cases_smoothed_per_million": 3.701, + "total_deaths_per_million": 1.439, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 71.3 + }, + { + "date": "2020-04-03", + "total_cases": 457.0, + "new_cases": 35.0, + "new_cases_smoothed": 27.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 65.77, + "new_cases_per_million": 5.037, + "new_cases_smoothed_per_million": 3.968, + "total_deaths_per_million": 1.439, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 71.3 + }, + { + "date": "2020-04-04", + "total_cases": 485.0, + "new_cases": 28.0, + "new_cases_smoothed": 27.429, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 69.8, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 3.947, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 71.3 + }, + { + "date": "2020-04-05", + "total_cases": 503.0, + "new_cases": 18.0, + "new_cases_smoothed": 24.571, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 72.39, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 3.536, + "total_deaths_per_million": 2.447, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.206, + "stringency_index": 71.3 + }, + { + "date": "2020-04-06", + "total_cases": 531.0, + "new_cases": 28.0, + "new_cases_smoothed": 26.429, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 76.42, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 3.804, + "total_deaths_per_million": 2.878, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.247, + "stringency_index": 71.3 + }, + { + "date": "2020-04-07", + "total_cases": 549.0, + "new_cases": 18.0, + "new_cases_smoothed": 27.143, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 79.01, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 3.906, + "total_deaths_per_million": 3.166, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 71.3 + }, + { + "date": "2020-04-08", + "total_cases": 577.0, + "new_cases": 28.0, + "new_cases_smoothed": 25.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 83.04, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 3.66, + "total_deaths_per_million": 3.31, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 71.3 + }, + { + "date": "2020-04-09", + "total_cases": 593.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.429, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 85.343, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 3.516, + "total_deaths_per_million": 3.454, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 71.3 + }, + { + "date": "2020-04-10", + "total_cases": 624.0, + "new_cases": 31.0, + "new_cases_smoothed": 23.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 89.804, + "new_cases_per_million": 4.461, + "new_cases_smoothed_per_million": 3.433, + "total_deaths_per_million": 3.454, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 71.3 + }, + { + "date": "2020-04-11", + "total_cases": 635.0, + "new_cases": 11.0, + "new_cases_smoothed": 21.429, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 91.387, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 3.598, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.226, + "total_tests": 18502.0, + "total_tests_per_thousand": 2.663, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-12", + "total_cases": 661.0, + "new_cases": 26.0, + "new_cases_smoothed": 22.571, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 95.129, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 3.248, + "total_deaths_per_million": 4.03, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.226, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-13", + "total_cases": 675.0, + "new_cases": 14.0, + "new_cases_smoothed": 20.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 97.144, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.961, + "total_deaths_per_million": 4.174, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.185, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-14", + "total_cases": 685.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.429, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 98.583, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 4.605, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.206, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-15", + "total_cases": 713.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.429, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 102.613, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 5.037, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.247, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 747.0, + "new_cases": 34.0, + "new_cases_smoothed": 22.0, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 107.506, + "new_cases_per_million": 4.893, + "new_cases_smoothed_per_million": 3.166, + "total_deaths_per_million": 5.181, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.247, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 800.0, + "new_cases": 53.0, + "new_cases_smoothed": 25.143, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 115.134, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 3.618, + "total_deaths_per_million": 5.469, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.288, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 846.0, + "new_cases": 46.0, + "new_cases_smoothed": 30.143, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 121.754, + "new_cases_per_million": 6.62, + "new_cases_smoothed_per_million": 4.338, + "total_deaths_per_million": 5.901, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.329, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 32.81, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 878.0, + "new_cases": 32.0, + "new_cases_smoothed": 31.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 126.359, + "new_cases_per_million": 4.605, + "new_cases_smoothed_per_million": 4.461, + "total_deaths_per_million": 5.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "total_tests": 26417.0, + "total_tests_per_thousand": 3.802, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 31.903000000000002, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 915.0, + "new_cases": 37.0, + "new_cases_smoothed": 34.286, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 131.684, + "new_cases_per_million": 5.325, + "new_cases_smoothed_per_million": 4.934, + "total_deaths_per_million": 6.188, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.288, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 25.55, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 929.0, + "new_cases": 14.0, + "new_cases_smoothed": 34.857, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 133.699, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 5.017, + "total_deaths_per_million": 6.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "new_tests_smoothed": 762.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 21.861, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 975.0, + "new_cases": 46.0, + "new_cases_smoothed": 37.429, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 140.319, + "new_cases_per_million": 6.62, + "new_cases_smoothed_per_million": 5.387, + "total_deaths_per_million": 6.476, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "total_tests": 27000.0, + "total_tests_per_thousand": 3.886, + "new_tests_smoothed": 649.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 17.34, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 1024.0, + "new_cases": 49.0, + "new_cases_smoothed": 39.571, + "total_deaths": 49.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 147.371, + "new_cases_per_million": 7.052, + "new_cases_smoothed_per_million": 5.695, + "total_deaths_per_million": 7.052, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.267, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 22.213, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 1097.0, + "new_cases": 73.0, + "new_cases_smoothed": 42.429, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 157.877, + "new_cases_per_million": 10.506, + "new_cases_smoothed_per_million": 6.106, + "total_deaths_per_million": 7.484, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.288, + "new_tests_smoothed": 1109.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 26.138, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 1188.0, + "new_cases": 91.0, + "new_cases_smoothed": 48.857, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 170.974, + "new_cases_per_million": 13.096, + "new_cases_smoothed_per_million": 7.031, + "total_deaths_per_million": 7.772, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.267, + "new_tests_smoothed": 1339.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 27.406, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 1247.0, + "new_cases": 59.0, + "new_cases_smoothed": 52.714, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 179.465, + "new_cases_per_million": 8.491, + "new_cases_smoothed_per_million": 7.586, + "total_deaths_per_million": 7.915, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.288, + "new_tests_smoothed": 1570.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 29.783, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 1300.0, + "new_cases": 53.0, + "new_cases_smoothed": 55.0, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 187.092, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 7.915, + "total_deaths_per_million": 8.059, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.267, + "new_tests_smoothed": 1913.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 34.782, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 1363.0, + "new_cases": 63.0, + "new_cases_smoothed": 62.0, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 196.159, + "new_cases_per_million": 9.067, + "new_cases_smoothed_per_million": 8.923, + "total_deaths_per_million": 8.347, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.308, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 36.403, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 1399.0, + "new_cases": 36.0, + "new_cases_smoothed": 60.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 201.34, + "new_cases_per_million": 5.181, + "new_cases_smoothed_per_million": 8.717, + "total_deaths_per_million": 8.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "total_tests": 45208.0, + "total_tests_per_thousand": 6.506, + "new_tests_smoothed": 2601.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 42.941, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 1447.0, + "new_cases": 48.0, + "new_cases_smoothed": 60.429, + "total_deaths": 64.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 208.248, + "new_cases_per_million": 6.908, + "new_cases_smoothed_per_million": 8.697, + "total_deaths_per_million": 9.211, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.308, + "new_tests_smoothed": 2323.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 38.442, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 1506.0, + "new_cases": 59.0, + "new_cases_smoothed": 58.429, + "total_deaths": 66.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 216.739, + "new_cases_per_million": 8.491, + "new_cases_smoothed_per_million": 8.409, + "total_deaths_per_million": 9.499, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.288, + "total_tests": 46510.0, + "total_tests_per_thousand": 6.694, + "new_tests_smoothed": 2044.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 34.983000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 1588.0, + "new_cases": 82.0, + "new_cases_smoothed": 57.143, + "total_deaths": 69.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 228.54, + "new_cases_per_million": 11.801, + "new_cases_smoothed_per_million": 8.224, + "total_deaths_per_million": 9.93, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 1126.0, + "total_tests": 47636.0, + "total_tests_per_thousand": 6.856, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1833.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 32.078, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 1594.0, + "new_cases": 6.0, + "new_cases_smoothed": 49.571, + "total_deaths": 72.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 229.404, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 7.134, + "total_deaths_per_million": 10.362, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 982.0, + "total_tests": 48618.0, + "total_tests_per_thousand": 6.997, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 1602.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 32.317, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 1618.0, + "new_cases": 24.0, + "new_cases_smoothed": 45.429, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 232.858, + "new_cases_per_million": 3.454, + "new_cases_smoothed_per_million": 6.538, + "total_deaths_per_million": 10.506, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 527.0, + "total_tests": 49145.0, + "total_tests_per_thousand": 7.073, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1306.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 28.748, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 1652.0, + "new_cases": 34.0, + "new_cases_smoothed": 41.286, + "total_deaths": 78.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 237.751, + "new_cases_per_million": 4.893, + "new_cases_smoothed_per_million": 5.942, + "total_deaths_per_million": 11.226, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 1158.0, + "total_tests": 50303.0, + "total_tests_per_thousand": 7.239, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1099.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 26.619, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-06", + "total_cases": 1689.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 243.076, + "new_cases_per_million": 5.325, + "new_cases_smoothed_per_million": 5.962, + "total_deaths_per_million": 11.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 1465.0, + "total_tests": 51768.0, + "total_tests_per_thousand": 7.45, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 937.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 22.616999999999997, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-05-07", + "total_cases": 1778.0, + "new_cases": 89.0, + "new_cases_smoothed": 47.286, + "total_deaths": 84.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 255.885, + "new_cases_per_million": 12.809, + "new_cases_smoothed_per_million": 6.805, + "total_deaths_per_million": 12.089, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 1163.0, + "total_tests": 52931.0, + "total_tests_per_thousand": 7.618, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1010.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 21.36, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-05-08", + "total_cases": 1829.0, + "new_cases": 51.0, + "new_cases_smoothed": 46.143, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 263.224, + "new_cases_per_million": 7.34, + "new_cases_smoothed_per_million": 6.641, + "total_deaths_per_million": 12.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 1397.0, + "total_tests": 54328.0, + "total_tests_per_thousand": 7.819, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 1117.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 24.206999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-09", + "total_cases": 1911.0, + "new_cases": 82.0, + "new_cases_smoothed": 46.143, + "total_deaths": 88.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 275.026, + "new_cases_per_million": 11.801, + "new_cases_smoothed_per_million": 6.641, + "total_deaths_per_million": 12.665, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 1777.0, + "total_tests": 56105.0, + "total_tests_per_thousand": 8.074, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 1210.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 26.223000000000003, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-10", + "total_cases": 1955.0, + "new_cases": 44.0, + "new_cases_smoothed": 51.571, + "total_deaths": 90.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 281.358, + "new_cases_per_million": 6.332, + "new_cases_smoothed_per_million": 7.422, + "total_deaths_per_million": 12.953, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 1126.0, + "total_tests": 57231.0, + "total_tests_per_thousand": 8.237, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1230.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 23.85, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-11", + "total_cases": 1965.0, + "new_cases": 10.0, + "new_cases_smoothed": 49.571, + "total_deaths": 91.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 282.797, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 7.134, + "total_deaths_per_million": 13.096, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 403.0, + "total_tests": 57634.0, + "total_tests_per_thousand": 8.295, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1213.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 24.47, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-12", + "total_cases": 1990.0, + "new_cases": 25.0, + "new_cases_smoothed": 48.286, + "total_deaths": 93.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 286.395, + "new_cases_per_million": 3.598, + "new_cases_smoothed_per_million": 6.949, + "total_deaths_per_million": 13.384, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 1079.0, + "total_tests": 58713.0, + "total_tests_per_thousand": 8.45, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 1201.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 24.873, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-13", + "total_cases": 2023.0, + "new_cases": 33.0, + "new_cases_smoothed": 47.714, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 291.144, + "new_cases_per_million": 4.749, + "new_cases_smoothed_per_million": 6.867, + "total_deaths_per_million": 13.672, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 1387.0, + "total_tests": 60100.0, + "total_tests_per_thousand": 8.649, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 1190.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 24.94, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-14", + "total_cases": 2069.0, + "new_cases": 46.0, + "new_cases_smoothed": 41.571, + "total_deaths": 96.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 297.764, + "new_cases_per_million": 6.62, + "new_cases_smoothed_per_million": 5.983, + "total_deaths_per_million": 13.816, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 1611.0, + "total_tests": 61711.0, + "total_tests_per_thousand": 8.881, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 1254.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 30.165, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-15", + "total_cases": 2100.0, + "new_cases": 31.0, + "new_cases_smoothed": 38.714, + "total_deaths": 99.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 302.226, + "new_cases_per_million": 4.461, + "new_cases_smoothed_per_million": 5.572, + "total_deaths_per_million": 14.248, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 1608.0, + "total_tests": 63319.0, + "total_tests_per_thousand": 9.113, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 1284.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 33.166, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-16", + "total_cases": 2138.0, + "new_cases": 38.0, + "new_cases_smoothed": 32.429, + "total_deaths": 102.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 307.695, + "new_cases_per_million": 5.469, + "new_cases_smoothed_per_million": 4.667, + "total_deaths_per_million": 14.68, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 1161.0, + "total_tests": 64480.0, + "total_tests_per_thousand": 9.28, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1196.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 36.881, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-17", + "total_cases": 2211.0, + "new_cases": 73.0, + "new_cases_smoothed": 36.571, + "total_deaths": 108.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 318.201, + "new_cases_per_million": 10.506, + "new_cases_smoothed_per_million": 5.263, + "total_deaths_per_million": 15.543, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 1094.0, + "total_tests": 65574.0, + "total_tests_per_thousand": 9.437, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 1192.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 32.594, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-18", + "total_cases": 2235.0, + "new_cases": 24.0, + "new_cases_smoothed": 38.571, + "total_deaths": 110.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 321.655, + "new_cases_per_million": 3.454, + "new_cases_smoothed_per_million": 5.551, + "total_deaths_per_million": 15.831, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 362.0, + "total_tests": 65936.0, + "total_tests_per_thousand": 9.489, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1186.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 30.748, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-19", + "total_cases": 2259.0, + "new_cases": 24.0, + "new_cases_smoothed": 38.429, + "total_deaths": 112.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 325.109, + "new_cases_per_million": 3.454, + "new_cases_smoothed_per_million": 5.531, + "total_deaths_per_million": 16.119, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 874.0, + "total_tests": 66810.0, + "total_tests_per_thousand": 9.615, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 1157.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 30.108, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-20", + "total_cases": 2292.0, + "new_cases": 33.0, + "new_cases_smoothed": 38.429, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 329.858, + "new_cases_per_million": 4.749, + "new_cases_smoothed_per_million": 5.531, + "total_deaths_per_million": 16.694, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 1433.0, + "total_tests": 68243.0, + "total_tests_per_thousand": 9.821, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 30.264, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-21", + "total_cases": 2331.0, + "new_cases": 39.0, + "new_cases_smoothed": 37.429, + "total_deaths": 120.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 335.471, + "new_cases_per_million": 5.613, + "new_cases_smoothed_per_million": 5.387, + "total_deaths_per_million": 17.27, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.493, + "new_tests_smoothed": 1173.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 31.34, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-05-22", + "total_cases": 2372.0, + "new_cases": 41.0, + "new_cases_smoothed": 38.857, + "total_deaths": 125.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 341.371, + "new_cases_per_million": 5.901, + "new_cases_smoothed_per_million": 5.592, + "total_deaths_per_million": 17.99, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.535, + "total_tests": 71605.0, + "total_tests_per_thousand": 10.305, + "new_tests_smoothed": 1184.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 30.471, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-23", + "total_cases": 2408.0, + "new_cases": 36.0, + "new_cases_smoothed": 38.571, + "total_deaths": 126.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 346.552, + "new_cases_per_million": 5.181, + "new_cases_smoothed_per_million": 5.551, + "total_deaths_per_million": 18.134, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 1605.0, + "total_tests": 73210.0, + "total_tests_per_thousand": 10.536, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 1247.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 32.33, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-24", + "total_cases": 2408.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.143, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 346.552, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.05, + "total_deaths_per_million": 18.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 886.0, + "total_tests": 74096.0, + "total_tests_per_thousand": 10.664, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 1217.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 43.244, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-25", + "total_cases": 2433.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.286, + "total_deaths": 130.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 350.15, + "new_cases_per_million": 3.598, + "new_cases_smoothed_per_million": 4.071, + "total_deaths_per_million": 18.709, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 443.0, + "total_tests": 74539.0, + "total_tests_per_thousand": 10.727, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 43.449, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-26", + "total_cases": 2433.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.857, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 350.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.577, + "total_deaths_per_million": 18.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 295.0, + "total_tests": 74834.0, + "total_tests_per_thousand": 10.77, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 46.103, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-27", + "total_cases": 2460.0, + "new_cases": 27.0, + "new_cases_smoothed": 24.0, + "total_deaths": 133.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 354.036, + "new_cases_per_million": 3.886, + "new_cases_smoothed_per_million": 3.454, + "total_deaths_per_million": 19.141, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 1557.0, + "total_tests": 76391.0, + "total_tests_per_thousand": 10.994, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 1164.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 48.5, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-28", + "total_cases": 2460.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 354.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.652, + "total_deaths_per_million": 19.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 1273.0, + "total_tests": 77664.0, + "total_tests_per_thousand": 11.177, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 1106.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 60.016000000000005, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-29", + "total_cases": 2485.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.143, + "total_deaths": 136.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 357.634, + "new_cases_per_million": 3.598, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 19.573, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 1725.0, + "total_tests": 79389.0, + "total_tests_per_thousand": 11.425, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 68.885, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-05-30", + "total_cases": 2499.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.0, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 359.649, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 1.871, + "total_deaths_per_million": 20.004, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 1353.0, + "total_tests": 80742.0, + "total_tests_per_thousand": 11.62, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 1076.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 82.76899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-31", + "total_cases": 2513.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.0, + "total_deaths": 140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 361.664, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.159, + "total_deaths_per_million": 20.148, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 606.0, + "total_tests": 81348.0, + "total_tests_per_thousand": 11.707, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 1036.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 69.067, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-01", + "total_cases": 2513.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 361.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 20.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 346.0, + "total_tests": 81694.0, + "total_tests_per_thousand": 11.757, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1022.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 89.425, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-02", + "total_cases": 2513.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 144.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 361.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 20.724, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 1220.0, + "total_tests": 82914.0, + "total_tests_per_thousand": 11.933, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 100.975, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-03", + "total_cases": 2538.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.143, + "total_deaths": 144.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 365.262, + "new_cases_per_million": 3.598, + "new_cases_smoothed_per_million": 1.604, + "total_deaths_per_million": 20.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 1347.0, + "total_tests": 84261.0, + "total_tests_per_thousand": 12.127, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 1124.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 100.87200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-04", + "total_cases": 2585.0, + "new_cases": 47.0, + "new_cases_smoothed": 17.857, + "total_deaths": 147.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 372.026, + "new_cases_per_million": 6.764, + "new_cases_smoothed_per_million": 2.57, + "total_deaths_per_million": 21.156, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 1569.0, + "total_tests": 85830.0, + "total_tests_per_thousand": 12.352, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 1167.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 65.352, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-05", + "total_cases": 2585.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 372.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 21.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 2060.0, + "total_tests": 87890.0, + "total_tests_per_thousand": 12.649, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 1214.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 84.98, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-06", + "total_cases": 2668.0, + "new_cases": 83.0, + "new_cases_smoothed": 24.143, + "total_deaths": 160.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 383.971, + "new_cases_per_million": 11.945, + "new_cases_smoothed_per_million": 3.475, + "total_deaths_per_million": 23.027, + "new_deaths_per_million": 1.871, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 1196.0, + "total_tests": 89086.0, + "total_tests_per_thousand": 12.821, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 1192.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 49.373000000000005, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-07", + "total_cases": 2711.0, + "new_cases": 43.0, + "new_cases_smoothed": 28.286, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 390.159, + "new_cases_per_million": 6.188, + "new_cases_smoothed_per_million": 4.071, + "total_deaths_per_million": 23.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 816.0, + "total_tests": 89902.0, + "total_tests_per_thousand": 12.938, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1222.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 43.202, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-08", + "total_cases": 2727.0, + "new_cases": 16.0, + "new_cases_smoothed": 30.571, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 392.462, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 4.4, + "total_deaths_per_million": 23.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 427.0, + "total_tests": 90329.0, + "total_tests_per_thousand": 13.0, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 1234.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 40.364000000000004, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-09", + "total_cases": 2810.0, + "new_cases": 83.0, + "new_cases_smoothed": 42.429, + "total_deaths": 164.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 404.407, + "new_cases_per_million": 11.945, + "new_cases_smoothed_per_million": 6.106, + "total_deaths_per_million": 23.602, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 1406.0, + "total_tests": 91735.0, + "total_tests_per_thousand": 13.202, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 29.697, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-10", + "total_cases": 2889.0, + "new_cases": 79.0, + "new_cases_smoothed": 50.143, + "total_deaths": 167.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 415.776, + "new_cases_per_million": 11.369, + "new_cases_smoothed_per_million": 7.216, + "total_deaths_per_million": 24.034, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.473, + "new_tests": 1777.0, + "total_tests": 93512.0, + "total_tests_per_thousand": 13.458, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 1322.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 26.365, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-11", + "total_cases": 2993.0, + "new_cases": 104.0, + "new_cases_smoothed": 58.286, + "total_deaths": 167.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 430.744, + "new_cases_per_million": 14.967, + "new_cases_smoothed_per_million": 8.388, + "total_deaths_per_million": 24.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 2308.0, + "total_tests": 95820.0, + "total_tests_per_thousand": 13.79, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 1427.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 24.483, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-12", + "total_cases": 3086.0, + "new_cases": 93.0, + "new_cases_smoothed": 71.571, + "total_deaths": 168.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 444.128, + "new_cases_per_million": 13.384, + "new_cases_smoothed_per_million": 10.3, + "total_deaths_per_million": 24.178, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 2640.0, + "total_tests": 98460.0, + "total_tests_per_thousand": 14.17, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 1510.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 21.098000000000003, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-13", + "total_cases": 3191.0, + "new_cases": 105.0, + "new_cases_smoothed": 74.714, + "total_deaths": 172.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 459.239, + "new_cases_per_million": 15.111, + "new_cases_smoothed_per_million": 10.753, + "total_deaths_per_million": 24.754, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 2642.0, + "total_tests": 101102.0, + "total_tests_per_thousand": 14.55, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 1717.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 22.980999999999998, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-14", + "total_cases": 3266.0, + "new_cases": 75.0, + "new_cases_smoothed": 79.286, + "total_deaths": 172.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 470.033, + "new_cases_per_million": 10.794, + "new_cases_smoothed_per_million": 11.411, + "total_deaths_per_million": 24.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 1975.0, + "total_tests": 103077.0, + "total_tests_per_thousand": 14.835, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 1882.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 23.737, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-15", + "total_cases": 3290.0, + "new_cases": 24.0, + "new_cases_smoothed": 80.429, + "total_deaths": 174.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 473.487, + "new_cases_per_million": 3.454, + "new_cases_smoothed_per_million": 11.575, + "total_deaths_per_million": 25.042, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 1409.0, + "total_tests": 104486.0, + "total_tests_per_thousand": 15.037, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 2022.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 25.14, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-16", + "total_cases": 3341.0, + "new_cases": 51.0, + "new_cases_smoothed": 75.857, + "total_deaths": 176.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 480.827, + "new_cases_per_million": 7.34, + "new_cases_smoothed_per_million": 10.917, + "total_deaths_per_million": 25.329, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 3839.0, + "total_tests": 108325.0, + "total_tests_per_thousand": 15.59, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 2370.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 31.243000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-17", + "total_cases": 3453.0, + "new_cases": 112.0, + "new_cases_smoothed": 80.571, + "total_deaths": 181.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 496.946, + "new_cases_per_million": 16.119, + "new_cases_smoothed_per_million": 11.596, + "total_deaths_per_million": 26.049, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.288, + "new_tests_smoothed": 2413.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 29.949, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-18", + "total_cases": 3542.0, + "new_cases": 89.0, + "new_cases_smoothed": 78.429, + "total_deaths": 184.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 509.754, + "new_cases_per_million": 12.809, + "new_cases_smoothed_per_million": 11.287, + "total_deaths_per_million": 26.481, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.35, + "total_tests": 112483.0, + "total_tests_per_thousand": 16.188, + "new_tests_smoothed": 2380.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 30.346, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-19", + "total_cases": 3674.0, + "new_cases": 132.0, + "new_cases_smoothed": 84.0, + "total_deaths": 190.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 528.751, + "new_cases_per_million": 18.997, + "new_cases_smoothed_per_million": 12.089, + "total_deaths_per_million": 27.344, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.452, + "new_tests_smoothed": 2270.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 27.024, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-20", + "total_cases": 3755.0, + "new_cases": 81.0, + "new_cases_smoothed": 80.571, + "total_deaths": 193.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 540.409, + "new_cases_per_million": 11.657, + "new_cases_smoothed_per_million": 11.596, + "total_deaths_per_million": 27.776, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.432, + "total_tests": 116214.0, + "total_tests_per_thousand": 16.725, + "new_tests_smoothed": 2159.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 26.796, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-21", + "total_cases": 3872.0, + "new_cases": 117.0, + "new_cases_smoothed": 86.571, + "total_deaths": 199.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 557.247, + "new_cases_per_million": 16.838, + "new_cases_smoothed_per_million": 12.459, + "total_deaths_per_million": 28.64, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.555, + "new_tests_smoothed": 1917.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 22.144000000000002, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-22", + "total_cases": 3905.0, + "new_cases": 33.0, + "new_cases_smoothed": 87.857, + "total_deaths": 199.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 561.996, + "new_cases_per_million": 4.749, + "new_cases_smoothed_per_million": 12.644, + "total_deaths_per_million": 28.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "total_tests": 116780.0, + "total_tests_per_thousand": 16.807, + "new_tests_smoothed": 1756.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 19.987000000000002, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-23", + "total_cases": 3984.0, + "new_cases": 79.0, + "new_cases_smoothed": 91.857, + "total_deaths": 207.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 573.366, + "new_cases_per_million": 11.369, + "new_cases_smoothed_per_million": 13.22, + "total_deaths_per_million": 29.791, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.637, + "new_tests": 2776.0, + "total_tests": 119556.0, + "total_tests_per_thousand": 17.206, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 1604.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 17.462, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-24", + "total_cases": 4114.0, + "new_cases": 130.0, + "new_cases_smoothed": 94.429, + "total_deaths": 208.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 592.075, + "new_cases_per_million": 18.709, + "new_cases_smoothed_per_million": 13.59, + "total_deaths_per_million": 29.935, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 2946.0, + "total_tests": 122502.0, + "total_tests_per_thousand": 17.63, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 1728.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 18.3, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-25", + "total_cases": 4242.0, + "new_cases": 128.0, + "new_cases_smoothed": 100.0, + "total_deaths": 209.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 610.496, + "new_cases_per_million": 18.421, + "new_cases_smoothed_per_million": 14.392, + "total_deaths_per_million": 30.079, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 3016.0, + "total_tests": 125518.0, + "total_tests_per_thousand": 18.064, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 1862.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 18.62, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-26", + "total_cases": 4408.0, + "new_cases": 166.0, + "new_cases_smoothed": 104.857, + "total_deaths": 211.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 634.387, + "new_cases_per_million": 23.89, + "new_cases_smoothed_per_million": 15.091, + "total_deaths_per_million": 30.367, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 2775.0, + "total_tests": 128293.0, + "total_tests_per_thousand": 18.464, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 1992.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 18.997, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-27", + "total_cases": 4513.0, + "new_cases": 105.0, + "new_cases_smoothed": 108.286, + "total_deaths": 215.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 649.498, + "new_cases_per_million": 15.111, + "new_cases_smoothed_per_million": 15.584, + "total_deaths_per_million": 30.942, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 2750.0, + "total_tests": 131043.0, + "total_tests_per_thousand": 18.859, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 2118.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 19.559, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-28", + "total_cases": 4625.0, + "new_cases": 112.0, + "new_cases_smoothed": 107.571, + "total_deaths": 216.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 665.617, + "new_cases_per_million": 16.119, + "new_cases_smoothed_per_million": 15.481, + "total_deaths_per_million": 31.086, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 1528.0, + "total_tests": 132571.0, + "total_tests_per_thousand": 19.079, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 2296.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 21.344, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-29", + "total_cases": 4691.0, + "new_cases": 66.0, + "new_cases_smoothed": 112.286, + "total_deaths": 219.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 675.115, + "new_cases_per_million": 9.499, + "new_cases_smoothed_per_million": 16.16, + "total_deaths_per_million": 31.518, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 1034.0, + "total_tests": 133605.0, + "total_tests_per_thousand": 19.228, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 2404.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 21.41, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-30", + "total_cases": 4831.0, + "new_cases": 140.0, + "new_cases_smoothed": 121.0, + "total_deaths": 223.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 695.263, + "new_cases_per_million": 20.148, + "new_cases_smoothed_per_million": 17.414, + "total_deaths_per_million": 32.094, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.329, + "new_tests": 4525.0, + "total_tests": 138130.0, + "total_tests_per_thousand": 19.879, + "new_tests_per_thousand": 0.651, + "new_tests_smoothed": 2653.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 21.926, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-01", + "total_cases": 4989.0, + "new_cases": 158.0, + "new_cases_smoothed": 125.0, + "total_deaths": 230.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 718.002, + "new_cases_per_million": 22.739, + "new_cases_smoothed_per_million": 17.99, + "total_deaths_per_million": 33.101, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 3343.0, + "total_tests": 141473.0, + "total_tests_per_thousand": 20.36, + "new_tests_per_thousand": 0.481, + "new_tests_smoothed": 2710.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 21.68, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-02", + "total_cases": 5154.0, + "new_cases": 165.0, + "new_cases_smoothed": 130.286, + "total_deaths": 232.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 741.749, + "new_cases_per_million": 23.746, + "new_cases_smoothed_per_million": 18.75, + "total_deaths_per_million": 33.389, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.473, + "new_tests": 2896.0, + "total_tests": 144369.0, + "total_tests_per_thousand": 20.777, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 2693.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 20.67, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-03", + "total_cases": 5315.0, + "new_cases": 161.0, + "new_cases_smoothed": 129.571, + "total_deaths": 232.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 764.919, + "new_cases_per_million": 23.171, + "new_cases_smoothed_per_million": 18.648, + "total_deaths_per_million": 33.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 3155.0, + "total_tests": 147524.0, + "total_tests_per_thousand": 21.231, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 2747.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 21.201, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-04", + "total_cases": 5497.0, + "new_cases": 182.0, + "new_cases_smoothed": 140.571, + "total_deaths": 239.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 791.112, + "new_cases_per_million": 26.193, + "new_cases_smoothed_per_million": 20.231, + "total_deaths_per_million": 34.396, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 2538.0, + "total_tests": 150062.0, + "total_tests_per_thousand": 21.596, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 2717.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 19.328, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-05", + "total_cases": 5677.0, + "new_cases": 180.0, + "new_cases_smoothed": 150.286, + "total_deaths": 241.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 817.017, + "new_cases_per_million": 25.905, + "new_cases_smoothed_per_million": 21.629, + "total_deaths_per_million": 34.684, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 3514.0, + "total_tests": 153576.0, + "total_tests_per_thousand": 22.102, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 3001.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 19.969, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-06", + "total_cases": 5740.0, + "new_cases": 63.0, + "new_cases_smoothed": 149.857, + "total_deaths": 246.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 826.084, + "new_cases_per_million": 9.067, + "new_cases_smoothed_per_million": 21.567, + "total_deaths_per_million": 35.404, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 2775.0, + "total_tests": 156351.0, + "total_tests_per_thousand": 22.502, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 3249.0, + "new_tests_smoothed_per_thousand": 0.468, + "tests_per_case": 21.680999999999997, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-07", + "total_cases": 5914.0, + "new_cases": 174.0, + "new_cases_smoothed": 154.714, + "total_deaths": 250.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 851.126, + "new_cases_per_million": 25.042, + "new_cases_smoothed_per_million": 22.266, + "total_deaths_per_million": 35.979, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.555, + "new_tests_smoothed": 2851.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 18.428, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-08", + "total_cases": 6102.0, + "new_cases": 188.0, + "new_cases_smoothed": 159.0, + "total_deaths": 254.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 878.182, + "new_cases_per_million": 27.056, + "new_cases_smoothed_per_million": 22.883, + "total_deaths_per_million": 36.555, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.493, + "total_tests": 159818.0, + "total_tests_per_thousand": 23.001, + "new_tests_smoothed": 2621.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 16.484, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-09", + "total_cases": 6342.0, + "new_cases": 240.0, + "new_cases_smoothed": 169.714, + "total_deaths": 259.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 912.722, + "new_cases_per_million": 34.54, + "new_cases_smoothed_per_million": 24.425, + "total_deaths_per_million": 37.275, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 4286.0, + "total_tests": 164104.0, + "total_tests_per_thousand": 23.617, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 2819.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 16.61, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-07-10", + "total_cases": 6672.0, + "new_cases": 330.0, + "new_cases_smoothed": 193.857, + "total_deaths": 262.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 960.215, + "new_cases_per_million": 47.493, + "new_cases_smoothed_per_million": 27.899, + "total_deaths_per_million": 37.706, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.617, + "new_tests": 3686.0, + "total_tests": 167790.0, + "total_tests_per_thousand": 24.148, + "new_tests_per_thousand": 0.53, + "new_tests_smoothed": 2895.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 14.934000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-07-11", + "total_cases": 6964.0, + "new_cases": 292.0, + "new_cases_smoothed": 209.571, + "total_deaths": 262.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1002.239, + "new_cases_per_million": 42.024, + "new_cases_smoothed_per_million": 30.161, + "total_deaths_per_million": 37.706, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.473, + "new_tests": 4540.0, + "total_tests": 172330.0, + "total_tests_per_thousand": 24.801, + "new_tests_per_thousand": 0.653, + "new_tests_smoothed": 3181.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 15.179, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-07-12", + "total_cases": 7175.0, + "new_cases": 211.0, + "new_cases_smoothed": 214.0, + "total_deaths": 262.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1032.605, + "new_cases_per_million": 30.367, + "new_cases_smoothed_per_million": 30.798, + "total_deaths_per_million": 37.706, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 2806.0, + "total_tests": 175136.0, + "total_tests_per_thousand": 25.205, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 3080.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 14.392999999999999, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-07-13", + "total_cases": 7252.0, + "new_cases": 77.0, + "new_cases_smoothed": 216.0, + "total_deaths": 268.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1043.687, + "new_cases_per_million": 11.082, + "new_cases_smoothed_per_million": 31.086, + "total_deaths_per_million": 38.57, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1198.0, + "total_tests": 176334.0, + "total_tests_per_thousand": 25.377, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 2855.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 13.218, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-14", + "total_cases": 7411.0, + "new_cases": 159.0, + "new_cases_smoothed": 213.857, + "total_deaths": 276.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1066.57, + "new_cases_per_million": 22.883, + "new_cases_smoothed_per_million": 30.778, + "total_deaths_per_million": 39.721, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.535, + "new_tests": 3341.0, + "total_tests": 179675.0, + "total_tests_per_thousand": 25.858, + "new_tests_per_thousand": 0.481, + "new_tests_smoothed": 3084.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 14.421, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-15", + "total_cases": 7645.0, + "new_cases": 234.0, + "new_cases_smoothed": 220.429, + "total_deaths": 283.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1100.246, + "new_cases_per_million": 33.677, + "new_cases_smoothed_per_million": 31.723, + "total_deaths_per_million": 40.729, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.596, + "new_tests": 4885.0, + "total_tests": 184560.0, + "total_tests_per_thousand": 26.561, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 3535.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 16.037, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-16", + "total_cases": 7877.0, + "new_cases": 232.0, + "new_cases_smoothed": 219.286, + "total_deaths": 289.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1133.635, + "new_cases_per_million": 33.389, + "new_cases_smoothed_per_million": 31.559, + "total_deaths_per_million": 41.592, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.617, + "new_tests": 5393.0, + "total_tests": 189953.0, + "total_tests_per_thousand": 27.337, + "new_tests_per_thousand": 0.776, + "new_tests_smoothed": 3693.0, + "new_tests_smoothed_per_thousand": 0.531, + "tests_per_case": 16.840999999999998, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-17", + "total_cases": 8144.0, + "new_cases": 267.0, + "new_cases_smoothed": 210.286, + "total_deaths": 293.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1172.061, + "new_cases_per_million": 38.426, + "new_cases_smoothed_per_million": 30.264, + "total_deaths_per_million": 42.168, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.637, + "new_tests": 6526.0, + "total_tests": 196479.0, + "total_tests_per_thousand": 28.277, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 4098.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 19.488, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-18", + "total_cases": 8442.0, + "new_cases": 298.0, + "new_cases_smoothed": 211.143, + "total_deaths": 297.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1214.948, + "new_cases_per_million": 42.887, + "new_cases_smoothed_per_million": 30.387, + "total_deaths_per_million": 42.743, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.72, + "new_tests": 4884.0, + "total_tests": 201363.0, + "total_tests_per_thousand": 28.98, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 4148.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 19.645, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-19", + "total_cases": 8638.0, + "new_cases": 196.0, + "new_cases_smoothed": 209.0, + "total_deaths": 299.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1243.156, + "new_cases_per_million": 28.208, + "new_cases_smoothed_per_million": 30.079, + "total_deaths_per_million": 43.031, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.761, + "new_tests": 2003.0, + "total_tests": 203366.0, + "total_tests_per_thousand": 29.268, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 4033.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 19.297, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-20", + "total_cases": 8733.0, + "new_cases": 95.0, + "new_cases_smoothed": 211.571, + "total_deaths": 300.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1256.828, + "new_cases_per_million": 13.672, + "new_cases_smoothed_per_million": 30.449, + "total_deaths_per_million": 43.175, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.658, + "new_tests": 3155.0, + "total_tests": 206521.0, + "total_tests_per_thousand": 29.722, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 4312.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 20.381, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-21", + "total_cases": 8929.0, + "new_cases": 196.0, + "new_cases_smoothed": 216.857, + "total_deaths": 308.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1285.036, + "new_cases_per_million": 28.208, + "new_cases_smoothed_per_million": 31.209, + "total_deaths_per_million": 44.326, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.658, + "new_tests": 9051.0, + "total_tests": 215572.0, + "total_tests_per_thousand": 31.024, + "new_tests_per_thousand": 1.303, + "new_tests_smoothed": 5128.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 23.647, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-22", + "total_cases": 9254.0, + "new_cases": 325.0, + "new_cases_smoothed": 229.857, + "total_deaths": 313.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1331.809, + "new_cases_per_million": 46.773, + "new_cases_smoothed_per_million": 33.08, + "total_deaths_per_million": 45.046, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.617, + "new_tests_smoothed": 4872.0, + "new_tests_smoothed_per_thousand": 0.701, + "tests_per_case": 21.195999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-23", + "total_cases": 9584.0, + "new_cases": 330.0, + "new_cases_smoothed": 243.857, + "total_deaths": 321.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1379.301, + "new_cases_per_million": 47.493, + "new_cases_smoothed_per_million": 35.095, + "total_deaths_per_million": 46.197, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.658, + "total_tests": 221755.0, + "total_tests_per_thousand": 31.914, + "new_tests_smoothed": 4543.0, + "new_tests_smoothed_per_thousand": 0.654, + "tests_per_case": 18.63, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-24", + "total_cases": 9853.0, + "new_cases": 269.0, + "new_cases_smoothed": 244.143, + "total_deaths": 329.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1418.015, + "new_cases_per_million": 38.714, + "new_cases_smoothed_per_million": 35.136, + "total_deaths_per_million": 47.349, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.74, + "new_tests": 5913.0, + "total_tests": 227668.0, + "total_tests_per_thousand": 32.765, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 4456.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 18.252, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-25", + "total_cases": 10123.0, + "new_cases": 270.0, + "new_cases_smoothed": 240.143, + "total_deaths": 337.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1456.873, + "new_cases_per_million": 38.858, + "new_cases_smoothed_per_million": 34.561, + "total_deaths_per_million": 48.5, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.822, + "new_tests": 8124.0, + "total_tests": 235792.0, + "total_tests_per_thousand": 33.934, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 4918.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 20.479, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-26", + "total_cases": 10312.0, + "new_cases": 189.0, + "new_cases_smoothed": 239.143, + "total_deaths": 338.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1484.073, + "new_cases_per_million": 27.2, + "new_cases_smoothed_per_million": 34.417, + "total_deaths_per_million": 48.644, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.802, + "new_tests_smoothed": 5156.0, + "new_tests_smoothed_per_thousand": 0.742, + "tests_per_case": 21.56, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-27", + "total_cases": 10427.0, + "new_cases": 115.0, + "new_cases_smoothed": 242.0, + "total_deaths": 340.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1500.624, + "new_cases_per_million": 16.55, + "new_cases_smoothed_per_million": 34.828, + "total_deaths_per_million": 48.932, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.822, + "total_tests": 243126.0, + "total_tests_per_thousand": 34.99, + "new_tests_smoothed": 5229.0, + "new_tests_smoothed_per_thousand": 0.753, + "tests_per_case": 21.607, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-28", + "total_cases": 10621.0, + "new_cases": 194.0, + "new_cases_smoothed": 241.714, + "total_deaths": 347.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1528.543, + "new_cases_per_million": 27.92, + "new_cases_smoothed_per_million": 34.787, + "total_deaths_per_million": 49.939, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.802, + "new_tests": 5303.0, + "total_tests": 248429.0, + "total_tests_per_thousand": 35.753, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 4694.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 19.42, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-29", + "total_cases": 10871.0, + "new_cases": 250.0, + "new_cases_smoothed": 231.0, + "total_deaths": 355.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1564.523, + "new_cases_per_million": 35.979, + "new_cases_smoothed_per_million": 33.245, + "total_deaths_per_million": 51.091, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.864, + "new_tests": 6395.0, + "total_tests": 254824.0, + "total_tests_per_thousand": 36.674, + "new_tests_per_thousand": 0.92, + "new_tests_smoothed": 5166.0, + "new_tests_smoothed_per_thousand": 0.743, + "tests_per_case": 22.364, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-07-30", + "total_cases": 11155.0, + "new_cases": 284.0, + "new_cases_smoothed": 224.429, + "total_deaths": 368.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1605.395, + "new_cases_per_million": 40.872, + "new_cases_smoothed_per_million": 32.299, + "total_deaths_per_million": 52.961, + "new_deaths_per_million": 1.871, + "new_deaths_smoothed_per_million": 0.966, + "new_tests": 6639.0, + "total_tests": 261463.0, + "total_tests_per_thousand": 37.629, + "new_tests_per_thousand": 0.955, + "new_tests_smoothed": 5673.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 25.278000000000002, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-07-31", + "total_cases": 11420.0, + "new_cases": 265.0, + "new_cases_smoothed": 223.857, + "total_deaths": 374.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1643.533, + "new_cases_per_million": 38.138, + "new_cases_smoothed_per_million": 32.217, + "total_deaths_per_million": 53.825, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 0.925, + "new_tests": 5582.0, + "total_tests": 267045.0, + "total_tests_per_thousand": 38.432, + "new_tests_per_thousand": 0.803, + "new_tests_smoothed": 5625.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 25.128, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-01", + "total_cases": 11690.0, + "new_cases": 270.0, + "new_cases_smoothed": 223.857, + "total_deaths": 383.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1682.391, + "new_cases_per_million": 38.858, + "new_cases_smoothed_per_million": 32.217, + "total_deaths_per_million": 55.12, + "new_deaths_per_million": 1.295, + "new_deaths_smoothed_per_million": 0.946, + "new_tests": 3955.0, + "total_tests": 271000.0, + "total_tests_per_thousand": 39.002, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 5030.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 22.47, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-02", + "total_cases": 11836.0, + "new_cases": 146.0, + "new_cases_smoothed": 217.714, + "total_deaths": 385.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1703.403, + "new_cases_per_million": 21.012, + "new_cases_smoothed_per_million": 31.333, + "total_deaths_per_million": 55.408, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.966, + "new_tests": 1491.0, + "total_tests": 272491.0, + "total_tests_per_thousand": 39.216, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 4719.0, + "new_tests_smoothed_per_thousand": 0.679, + "tests_per_case": 21.675, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-03", + "total_cases": 11955.0, + "new_cases": 119.0, + "new_cases_smoothed": 218.286, + "total_deaths": 388.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1720.529, + "new_cases_per_million": 17.126, + "new_cases_smoothed_per_million": 31.415, + "total_deaths_per_million": 55.84, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.987, + "new_tests": 4137.0, + "total_tests": 276628.0, + "total_tests_per_thousand": 39.811, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 4786.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 21.925, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-08-04", + "total_cases": 11955.0, + "new_cases": 0.0, + "new_cases_smoothed": 190.571, + "total_deaths": 388.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1720.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.426, + "total_deaths_per_million": 55.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 5325.0, + "total_tests": 281953.0, + "total_tests_per_thousand": 40.578, + "new_tests_per_thousand": 0.766, + "new_tests_smoothed": 4789.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 25.13, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-05", + "total_cases": 12159.0, + "new_cases": 204.0, + "new_cases_smoothed": 184.0, + "total_deaths": 404.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1749.888, + "new_cases_per_million": 29.359, + "new_cases_smoothed_per_million": 26.481, + "total_deaths_per_million": 58.143, + "new_deaths_per_million": 2.303, + "new_deaths_smoothed_per_million": 1.007, + "new_tests_smoothed": 4283.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 23.276999999999997, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-06", + "total_cases": 12414.0, + "new_cases": 255.0, + "new_cases_smoothed": 179.857, + "total_deaths": 415.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1786.587, + "new_cases_per_million": 36.699, + "new_cases_smoothed_per_million": 25.885, + "total_deaths_per_million": 59.726, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 0.966, + "total_tests": 287654.0, + "total_tests_per_thousand": 41.398, + "new_tests_smoothed": 3742.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 20.805, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-07", + "total_cases": 12717.0, + "new_cases": 303.0, + "new_cases_smoothed": 185.286, + "total_deaths": 424.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1830.194, + "new_cases_per_million": 43.607, + "new_cases_smoothed_per_million": 26.666, + "total_deaths_per_million": 61.021, + "new_deaths_per_million": 1.295, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 6433.0, + "total_tests": 294087.0, + "total_tests_per_thousand": 42.324, + "new_tests_per_thousand": 0.926, + "new_tests_smoothed": 3863.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 20.849, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-08", + "total_cases": 13014.0, + "new_cases": 297.0, + "new_cases_smoothed": 189.143, + "total_deaths": 435.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1872.937, + "new_cases_per_million": 42.743, + "new_cases_smoothed_per_million": 27.221, + "total_deaths_per_million": 62.604, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 1.069, + "new_tests": 5837.0, + "total_tests": 299924.0, + "total_tests_per_thousand": 43.164, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 4132.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 21.846, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-09", + "total_cases": 13343.0, + "new_cases": 329.0, + "new_cases_smoothed": 215.286, + "total_deaths": 445.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1920.286, + "new_cases_per_million": 47.349, + "new_cases_smoothed_per_million": 30.983, + "total_deaths_per_million": 64.043, + "new_deaths_per_million": 1.439, + "new_deaths_smoothed_per_million": 1.234, + "new_tests": 3612.0, + "total_tests": 303536.0, + "total_tests_per_thousand": 43.684, + "new_tests_per_thousand": 0.52, + "new_tests_smoothed": 4435.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 20.601, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-10", + "total_cases": 13396.0, + "new_cases": 53.0, + "new_cases_smoothed": 205.857, + "total_deaths": 447.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1927.913, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 29.626, + "total_deaths_per_million": 64.331, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 1.213, + "new_tests": 1275.0, + "total_tests": 304811.0, + "total_tests_per_thousand": 43.868, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 4026.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 19.557000000000002, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-11", + "total_cases": 13512.0, + "new_cases": 116.0, + "new_cases_smoothed": 222.429, + "total_deaths": 459.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1944.608, + "new_cases_per_million": 16.694, + "new_cases_smoothed_per_million": 32.011, + "total_deaths_per_million": 66.058, + "new_deaths_per_million": 1.727, + "new_deaths_smoothed_per_million": 1.46, + "new_tests": 3667.0, + "total_tests": 308478.0, + "total_tests_per_thousand": 44.395, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 3789.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 17.035, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-12", + "total_cases": 13722.0, + "new_cases": 210.0, + "new_cases_smoothed": 223.286, + "total_deaths": 471.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1974.83, + "new_cases_per_million": 30.223, + "new_cases_smoothed_per_million": 32.135, + "total_deaths_per_million": 67.785, + "new_deaths_per_million": 1.727, + "new_deaths_smoothed_per_million": 1.377, + "new_tests": 5388.0, + "total_tests": 313866.0, + "total_tests_per_thousand": 45.171, + "new_tests_per_thousand": 0.775, + "new_tests_smoothed": 4152.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 18.595, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-13", + "total_cases": 13893.0, + "new_cases": 171.0, + "new_cases_smoothed": 211.286, + "total_deaths": 482.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1999.44, + "new_cases_per_million": 24.61, + "new_cases_smoothed_per_million": 30.408, + "total_deaths_per_million": 69.368, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 1.377, + "new_tests": 5108.0, + "total_tests": 318974.0, + "total_tests_per_thousand": 45.906, + "new_tests_per_thousand": 0.735, + "new_tests_smoothed": 4474.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 21.175, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-14", + "total_cases": 14069.0, + "new_cases": 176.0, + "new_cases_smoothed": 193.143, + "total_deaths": 484.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2024.77, + "new_cases_per_million": 25.329, + "new_cases_smoothed_per_million": 27.797, + "total_deaths_per_million": 69.656, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 1.234, + "new_tests": 5877.0, + "total_tests": 324851.0, + "total_tests_per_thousand": 46.752, + "new_tests_per_thousand": 0.846, + "new_tests_smoothed": 4395.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 22.755, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-15", + "total_cases": 14243.0, + "new_cases": 174.0, + "new_cases_smoothed": 175.571, + "total_deaths": 492.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2049.811, + "new_cases_per_million": 25.042, + "new_cases_smoothed_per_million": 25.268, + "total_deaths_per_million": 70.807, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 1.172, + "new_tests": 5934.0, + "total_tests": 330785.0, + "total_tests_per_thousand": 47.606, + "new_tests_per_thousand": 0.854, + "new_tests_smoothed": 4409.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 25.112, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-16", + "total_cases": 14333.0, + "new_cases": 90.0, + "new_cases_smoothed": 141.429, + "total_deaths": 495.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2062.764, + "new_cases_per_million": 12.953, + "new_cases_smoothed_per_million": 20.354, + "total_deaths_per_million": 71.239, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 2745.0, + "total_tests": 333530.0, + "total_tests_per_thousand": 48.001, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 4285.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 30.298000000000002, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-17", + "total_cases": 14365.0, + "new_cases": 32.0, + "new_cases_smoothed": 138.429, + "total_deaths": 498.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2067.369, + "new_cases_per_million": 4.605, + "new_cases_smoothed_per_million": 19.922, + "total_deaths_per_million": 71.671, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 1.049, + "new_tests": 781.0, + "total_tests": 334311.0, + "total_tests_per_thousand": 48.113, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 4214.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 30.441999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-18", + "total_cases": 14500.0, + "new_cases": 135.0, + "new_cases_smoothed": 141.143, + "total_deaths": 512.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 2086.798, + "new_cases_per_million": 19.429, + "new_cases_smoothed_per_million": 20.313, + "total_deaths_per_million": 73.686, + "new_deaths_per_million": 2.015, + "new_deaths_smoothed_per_million": 1.09, + "new_tests": 5252.0, + "total_tests": 339563.0, + "total_tests_per_thousand": 48.869, + "new_tests_per_thousand": 0.756, + "new_tests_smoothed": 4441.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 31.465, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-19", + "total_cases": 14669.0, + "new_cases": 169.0, + "new_cases_smoothed": 135.286, + "total_deaths": 519.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2111.12, + "new_cases_per_million": 24.322, + "new_cases_smoothed_per_million": 19.47, + "total_deaths_per_million": 74.693, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.987, + "new_tests": 3667.0, + "total_tests": 343230.0, + "total_tests_per_thousand": 49.397, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 4195.0, + "new_tests_smoothed_per_thousand": 0.604, + "tests_per_case": 31.008000000000003, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-20", + "total_cases": 14820.0, + "new_cases": 151.0, + "new_cases_smoothed": 132.429, + "total_deaths": 527.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 2132.851, + "new_cases_per_million": 21.731, + "new_cases_smoothed_per_million": 19.059, + "total_deaths_per_million": 75.844, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 0.925, + "new_tests": 8649.0, + "total_tests": 351879.0, + "total_tests_per_thousand": 50.641, + "new_tests_per_thousand": 1.245, + "new_tests_smoothed": 4701.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 35.498000000000005, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-21", + "total_cases": 14962.0, + "new_cases": 142.0, + "new_cases_smoothed": 127.571, + "total_deaths": 532.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2153.288, + "new_cases_per_million": 20.436, + "new_cases_smoothed_per_million": 18.36, + "total_deaths_per_million": 76.564, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.987, + "new_tests": 6844.0, + "total_tests": 358723.0, + "total_tests_per_thousand": 51.626, + "new_tests_per_thousand": 0.985, + "new_tests_smoothed": 4839.0, + "new_tests_smoothed_per_thousand": 0.696, + "tests_per_case": 37.931999999999995, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-22", + "total_cases": 15131.0, + "new_cases": 169.0, + "new_cases_smoothed": 126.857, + "total_deaths": 539.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 2177.61, + "new_cases_per_million": 24.322, + "new_cases_smoothed_per_million": 18.257, + "total_deaths_per_million": 77.571, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.966, + "new_tests": 6373.0, + "total_tests": 365096.0, + "total_tests_per_thousand": 52.544, + "new_tests_per_thousand": 0.917, + "new_tests_smoothed": 4902.0, + "new_tests_smoothed_per_thousand": 0.705, + "tests_per_case": 38.641999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-23", + "total_cases": 15227.0, + "new_cases": 96.0, + "new_cases_smoothed": 127.714, + "total_deaths": 545.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2191.426, + "new_cases_per_million": 13.816, + "new_cases_smoothed_per_million": 18.38, + "total_deaths_per_million": 78.435, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 3402.0, + "total_tests": 368498.0, + "total_tests_per_thousand": 53.033, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 4995.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 39.111, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-24", + "total_cases": 15287.0, + "new_cases": 60.0, + "new_cases_smoothed": 131.714, + "total_deaths": 545.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 2200.061, + "new_cases_per_million": 8.635, + "new_cases_smoothed_per_million": 18.956, + "total_deaths_per_million": 78.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.966, + "new_tests": 2288.0, + "total_tests": 370786.0, + "total_tests_per_thousand": 53.362, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 5211.0, + "new_tests_smoothed_per_thousand": 0.75, + "tests_per_case": 39.563, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-25", + "total_cases": 15386.0, + "new_cases": 99.0, + "new_cases_smoothed": 126.571, + "total_deaths": 563.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2214.308, + "new_cases_per_million": 14.248, + "new_cases_smoothed_per_million": 18.216, + "total_deaths_per_million": 81.025, + "new_deaths_per_million": 2.591, + "new_deaths_smoothed_per_million": 1.049, + "new_tests": 3588.0, + "total_tests": 374374.0, + "total_tests_per_thousand": 53.879, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 4973.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 39.29, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-26", + "total_cases": 15589.0, + "new_cases": 203.0, + "new_cases_smoothed": 131.429, + "total_deaths": 572.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 2243.524, + "new_cases_per_million": 29.215, + "new_cases_smoothed_per_million": 18.915, + "total_deaths_per_million": 82.321, + "new_deaths_per_million": 1.295, + "new_deaths_smoothed_per_million": 1.09, + "new_tests": 10076.0, + "total_tests": 384450.0, + "total_tests_per_thousand": 55.329, + "new_tests_per_thousand": 1.45, + "new_tests_smoothed": 5889.0, + "new_tests_smoothed_per_thousand": 0.848, + "tests_per_case": 44.808, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-27", + "total_cases": 15751.0, + "new_cases": 162.0, + "new_cases_smoothed": 133.0, + "total_deaths": 586.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 2266.838, + "new_cases_per_million": 23.315, + "new_cases_smoothed_per_million": 19.141, + "total_deaths_per_million": 84.335, + "new_deaths_per_million": 2.015, + "new_deaths_smoothed_per_million": 1.213, + "new_tests_smoothed": 5199.0, + "new_tests_smoothed_per_thousand": 0.748, + "tests_per_case": 39.09, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-28", + "total_cases": 15908.0, + "new_cases": 157.0, + "new_cases_smoothed": 135.143, + "total_deaths": 594.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 2289.433, + "new_cases_per_million": 22.595, + "new_cases_smoothed_per_million": 19.449, + "total_deaths_per_million": 85.487, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 1.275, + "total_tests": 392089.0, + "total_tests_per_thousand": 56.428, + "new_tests_smoothed": 4767.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 35.274, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-29", + "total_cases": 16065.0, + "new_cases": 157.0, + "new_cases_smoothed": 133.429, + "total_deaths": 603.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2312.028, + "new_cases_per_million": 22.595, + "new_cases_smoothed_per_million": 19.203, + "total_deaths_per_million": 86.782, + "new_deaths_per_million": 1.295, + "new_deaths_smoothed_per_million": 1.316, + "new_tests": 6337.0, + "total_tests": 398426.0, + "total_tests_per_thousand": 57.34, + "new_tests_per_thousand": 0.912, + "new_tests_smoothed": 4761.0, + "new_tests_smoothed_per_thousand": 0.685, + "tests_per_case": 35.681999999999995, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-30", + "total_cases": 16164.0, + "new_cases": 99.0, + "new_cases_smoothed": 133.857, + "total_deaths": 605.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2326.276, + "new_cases_per_million": 14.248, + "new_cases_smoothed_per_million": 19.264, + "total_deaths_per_million": 87.07, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 1.234, + "new_tests": 6257.0, + "total_tests": 404683.0, + "total_tests_per_thousand": 58.241, + "new_tests_per_thousand": 0.9, + "new_tests_smoothed": 5169.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 38.616, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-31", + "total_cases": 16190.0, + "new_cases": 26.0, + "new_cases_smoothed": 129.0, + "total_deaths": 613.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 2330.018, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 18.565, + "total_deaths_per_million": 88.221, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 1.398, + "new_tests_smoothed": 5152.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 39.938, + "positive_rate": 0.025, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 16266.0, + "new_cases": 76.0, + "new_cases_smoothed": 125.714, + "total_deaths": 629.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2340.955, + "new_cases_per_million": 10.938, + "new_cases_smoothed_per_million": 18.092, + "total_deaths_per_million": 90.524, + "new_deaths_per_million": 2.303, + "new_deaths_smoothed_per_million": 1.357, + "total_tests": 409013.0, + "total_tests_per_thousand": 58.864, + "new_tests_smoothed": 4948.0, + "new_tests_smoothed_per_thousand": 0.712, + "tests_per_case": 39.359, + "positive_rate": 0.025, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 16266.0, + "new_cases": 0.0, + "new_cases_smoothed": 96.714, + "total_deaths": 629.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2340.955, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.919, + "total_deaths_per_million": 90.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.172, + "new_tests": 6784.0, + "total_tests": 415797.0, + "total_tests_per_thousand": 59.84, + "new_tests_per_thousand": 0.976, + "new_tests_smoothed": 4478.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 46.301, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 16454.0, + "new_cases": 188.0, + "new_cases_smoothed": 100.429, + "total_deaths": 642.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 2368.012, + "new_cases_per_million": 27.056, + "new_cases_smoothed_per_million": 14.453, + "total_deaths_per_million": 92.395, + "new_deaths_per_million": 1.871, + "new_deaths_smoothed_per_million": 1.151, + "new_tests": 5443.0, + "total_tests": 421240.0, + "total_tests_per_thousand": 60.624, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 4710.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 46.898999999999994, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 16617.0, + "new_cases": 163.0, + "new_cases_smoothed": 101.286, + "total_deaths": 648.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2391.47, + "new_cases_per_million": 23.458, + "new_cases_smoothed_per_million": 14.577, + "total_deaths_per_million": 93.258, + "new_deaths_per_million": 0.864, + "new_deaths_smoothed_per_million": 1.11, + "new_tests": 7026.0, + "total_tests": 428266.0, + "total_tests_per_thousand": 61.635, + "new_tests_per_thousand": 1.011, + "new_tests_smoothed": 5168.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 51.023999999999994, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 16775.0, + "new_cases": 158.0, + "new_cases_smoothed": 101.429, + "total_deaths": 658.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2414.209, + "new_cases_per_million": 22.739, + "new_cases_smoothed_per_million": 14.597, + "total_deaths_per_million": 94.697, + "new_deaths_per_million": 1.439, + "new_deaths_smoothed_per_million": 1.131 + } + ] + }, + "BFA": { + "continent": "Africa", + "location": "Burkina Faso", + "population": 20903278.0, + "population_density": 70.151, + "median_age": 17.6, + "aged_65_older": 2.409, + "aged_70_older": 1.358, + "gdp_per_capita": 1703.102, + "extreme_poverty": 43.7, + "cardiovasc_death_rate": 269.048, + "diabetes_prevalence": 2.42, + "female_smokers": 1.6, + "male_smokers": 23.9, + "handwashing_facilities": 11.877, + "hospital_beds_per_thousand": 0.4, + "life_expectancy": 61.58, + "data": [ + { + "date": "2020-03-11", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.144, + "new_cases_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.144, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-17", + "total_cases": 20.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.957, + "new_cases_per_million": 0.813, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-18", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-19", + "total_cases": 26.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.244, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 0.048, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 33.33 + }, + { + "date": "2020-03-20", + "total_cases": 33.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.579, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.048, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 33.33 + }, + { + "date": "2020-03-21", + "total_cases": 40.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.914, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 0.048, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 73.15 + }, + { + "date": "2020-03-22", + "total_cases": 64.0, + "new_cases": 24.0, + "new_cases_smoothed": 8.714, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.062, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 73.15 + }, + { + "date": "2020-03-23", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-24", + "total_cases": 75.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.588, + "new_cases_per_million": 0.526, + "new_cases_smoothed_per_million": 0.376, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-25", + "total_cases": 99.0, + "new_cases": 24.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.736, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 0.54, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-26", + "total_cases": 114.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.454, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 84.26 + }, + { + "date": "2020-03-27", + "total_cases": 146.0, + "new_cases": 32.0, + "new_cases_smoothed": 16.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.985, + "new_cases_per_million": 1.531, + "new_cases_smoothed_per_million": 0.772, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 180.0, + "new_cases": 34.0, + "new_cases_smoothed": 16.571, + "total_deaths": 9.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.611, + "new_cases_per_million": 1.627, + "new_cases_smoothed_per_million": 0.793, + "total_deaths_per_million": 0.431, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.793, + "total_deaths_per_million": 0.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 222.0, + "new_cases": 42.0, + "new_cases_smoothed": 21.0, + "total_deaths": 12.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 10.62, + "new_cases_per_million": 2.009, + "new_cases_smoothed_per_million": 1.005, + "total_deaths_per_million": 0.574, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-01", + "total_cases": 246.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 11.768, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 1.005, + "total_deaths_per_million": 0.574, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-02", + "total_cases": 261.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.0, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 12.486, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 1.005, + "total_deaths_per_million": 0.67, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 84.26 + }, + { + "date": "2020-04-03", + "total_cases": 288.0, + "new_cases": 27.0, + "new_cases_smoothed": 20.286, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 13.778, + "new_cases_per_million": 1.292, + "new_cases_smoothed_per_million": 0.97, + "total_deaths_per_million": 0.765, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 84.26 + }, + { + "date": "2020-04-04", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 13.778, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.97, + "total_deaths_per_million": 0.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 84.26 + }, + { + "date": "2020-04-05", + "total_cases": 302.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 14.447, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.834, + "total_deaths_per_million": 0.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-06", + "total_cases": 345.0, + "new_cases": 43.0, + "new_cases_smoothed": 23.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 16.505, + "new_cases_per_million": 2.057, + "new_cases_smoothed_per_million": 1.128, + "total_deaths_per_million": 0.813, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-07", + "total_cases": 364.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 17.414, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 0.97, + "total_deaths_per_million": 0.813, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 84.26 + }, + { + "date": "2020-04-08", + "total_cases": 384.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.714, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 18.37, + "new_cases_per_million": 0.957, + "new_cases_smoothed_per_million": 0.943, + "total_deaths_per_million": 0.909, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-09", + "total_cases": 414.0, + "new_cases": 30.0, + "new_cases_smoothed": 21.857, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 19.806, + "new_cases_per_million": 1.435, + "new_cases_smoothed_per_million": 1.046, + "total_deaths_per_million": 1.1, + "new_deaths_per_million": 0.191, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-10", + "total_cases": 443.0, + "new_cases": 29.0, + "new_cases_smoothed": 22.143, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 21.193, + "new_cases_per_million": 1.387, + "new_cases_smoothed_per_million": 1.059, + "total_deaths_per_million": 1.148, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-11", + "total_cases": 448.0, + "new_cases": 5.0, + "new_cases_smoothed": 22.857, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 21.432, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 1.093, + "total_deaths_per_million": 1.244, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 84.26 + }, + { + "date": "2020-04-12", + "total_cases": 484.0, + "new_cases": 36.0, + "new_cases_smoothed": 26.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 23.154, + "new_cases_per_million": 1.722, + "new_cases_smoothed_per_million": 1.244, + "total_deaths_per_million": 1.292, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 497.0, + "new_cases": 13.0, + "new_cases_smoothed": 21.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 23.776, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 1.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 515.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.571, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 24.637, + "new_cases_per_million": 0.861, + "new_cases_smoothed_per_million": 1.032, + "total_deaths_per_million": 1.34, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 528.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.571, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 25.259, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 1.435, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 542.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.286, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 25.929, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.875, + "total_deaths_per_million": 1.531, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 543.0, + "new_cases": 1.0, + "new_cases_smoothed": 14.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 25.977, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.683, + "total_deaths_per_million": 1.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 557.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.571, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 26.647, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.745, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 565.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.029, + "new_cases_per_million": 0.383, + "new_cases_smoothed_per_million": 0.554, + "total_deaths_per_million": 1.722, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 576.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.555, + "new_cases_per_million": 0.526, + "new_cases_smoothed_per_million": 0.54, + "total_deaths_per_million": 1.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 581.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 27.795, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 1.818, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 600.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 28.704, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 1.818, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 609.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.571, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 29.134, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.458, + "total_deaths_per_million": 1.866, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 616.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.429, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 29.469, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 1.961, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 626.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 29.947, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.472, + "total_deaths_per_million": 1.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 629.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 30.091, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 1.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 632.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.0, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 30.234, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 2.009, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 635.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.714, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.378, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 2.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 638.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.522, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 2.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 641.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.665, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 2.057, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 645.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.856, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 2.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 649.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.286, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 31.048, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 2.105, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 652.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 31.191, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 2.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 662.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.286, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 31.67, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 2.153, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 672.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.286, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 32.148, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 2.201, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 67.59 + }, + { + "date": "2020-05-06", + "total_cases": 688.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.143, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 32.913, + "new_cases_per_million": 0.765, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 67.59 + }, + { + "date": "2020-05-07", + "total_cases": 729.0, + "new_cases": 41.0, + "new_cases_smoothed": 12.571, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 34.875, + "new_cases_per_million": 1.961, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 67.59 + }, + { + "date": "2020-05-08", + "total_cases": 736.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 35.21, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.622, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 67.59 + }, + { + "date": "2020-05-09", + "total_cases": 744.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.571, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 35.593, + "new_cases_per_million": 0.383, + "new_cases_smoothed_per_million": 0.649, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 67.59 + }, + { + "date": "2020-05-10", + "total_cases": 748.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 35.784, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.656, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 67.59 + }, + { + "date": "2020-05-11", + "total_cases": 751.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.714, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 35.927, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.608, + "total_deaths_per_million": 2.344, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 67.59 + }, + { + "date": "2020-05-12", + "total_cases": 760.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.571, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 36.358, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 2.392, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 67.59 + }, + { + "date": "2020-05-13", + "total_cases": 766.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.143, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.645, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.533, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 67.59 + }, + { + "date": "2020-05-14", + "total_cases": 773.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.98, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 60.19 + }, + { + "date": "2020-05-15", + "total_cases": 773.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 60.19 + }, + { + "date": "2020-05-16", + "total_cases": 782.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 37.41, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 60.19 + }, + { + "date": "2020-05-17", + "total_cases": 782.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 37.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 60.19 + }, + { + "date": "2020-05-18", + "total_cases": 796.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.08, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 60.19 + }, + { + "date": "2020-05-19", + "total_cases": 796.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-20", + "total_cases": 806.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.714, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.559, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-21", + "total_cases": 809.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.702, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-22", + "total_cases": 812.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.846, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-23", + "total_cases": 814.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.941, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-24", + "total_cases": 814.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-25", + "total_cases": 832.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.802, + "new_cases_per_million": 0.861, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-26", + "total_cases": 841.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.233, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-27", + "total_cases": 845.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.424, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-28", + "total_cases": 845.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-29", + "total_cases": 847.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.52, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-30", + "total_cases": 847.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-05-31", + "total_cases": 853.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.807, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-06-01", + "total_cases": 881.0, + "new_cases": 28.0, + "new_cases_smoothed": 7.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.146, + "new_cases_per_million": 1.34, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 45.37 + }, + { + "date": "2020-06-02", + "total_cases": 881.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 45.37 + }, + { + "date": "2020-06-03", + "total_cases": 883.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.242, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-04", + "total_cases": 884.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.29, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-05", + "total_cases": 885.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.338, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-06", + "total_cases": 888.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.481, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-07", + "total_cases": 888.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-08", + "total_cases": 889.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.529, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-09", + "total_cases": 890.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.577, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-10", + "total_cases": 891.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.625, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-11", + "total_cases": 891.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-12", + "total_cases": 892.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.673, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-13", + "total_cases": 892.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-14", + "total_cases": 894.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.768, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-15", + "total_cases": 894.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-16", + "total_cases": 894.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-17", + "total_cases": 895.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.816, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-18", + "total_cases": 899.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.008, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-19", + "total_cases": 899.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-20", + "total_cases": 900.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.055, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-21", + "total_cases": 902.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.151, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-22", + "total_cases": 903.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.199, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-23", + "total_cases": 907.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.39, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-24", + "total_cases": 919.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.964, + "new_cases_per_million": 0.574, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-25", + "total_cases": 934.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.682, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-26", + "total_cases": 941.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.017, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-27", + "total_cases": 941.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-28", + "total_cases": 941.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-29", + "total_cases": 959.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.878, + "new_cases_per_million": 0.861, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-30", + "total_cases": 959.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-01", + "total_cases": 962.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.021, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-02", + "total_cases": 962.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-03", + "total_cases": 980.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.883, + "new_cases_per_million": 0.861, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-04", + "total_cases": 987.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.217, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-05", + "total_cases": 987.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.217, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-06", + "total_cases": 987.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.217, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-07", + "total_cases": 1000.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.839, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-08", + "total_cases": 1003.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.983, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-09", + "total_cases": 1005.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.079, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-10", + "total_cases": 1020.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.796, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-11", + "total_cases": 1020.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-12", + "total_cases": 1033.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.418, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-13", + "total_cases": 1036.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.562, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-14", + "total_cases": 1036.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.562, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-15", + "total_cases": 1038.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.657, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-16", + "total_cases": 1038.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-17", + "total_cases": 1038.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-18", + "total_cases": 1047.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.088, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-19", + "total_cases": 1052.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.327, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-20", + "total_cases": 1065.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.949, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-21", + "total_cases": 1065.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-22", + "total_cases": 1065.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-23", + "total_cases": 1066.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.997, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-24", + "total_cases": 1075.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.427, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-25", + "total_cases": 1081.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.714, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-26", + "total_cases": 1086.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.954, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-27", + "total_cases": 1100.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.623, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-28", + "total_cases": 1100.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-29", + "total_cases": 1106.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.91, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-30", + "total_cases": 1117.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.437, + "new_cases_per_million": 0.526, + "new_cases_smoothed_per_million": 0.349, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-31", + "total_cases": 1117.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.437, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-01", + "total_cases": 1143.0, + "new_cases": 26.0, + "new_cases_smoothed": 8.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.68, + "new_cases_per_million": 1.244, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-02", + "total_cases": 1149.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.967, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-03", + "total_cases": 1150.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.015, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 2.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-04", + "total_cases": 1153.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.571, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.159, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.362, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 56.48 + }, + { + "date": "2020-08-05", + "total_cases": 1156.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.302, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 56.48 + }, + { + "date": "2020-08-06", + "total_cases": 1158.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.398, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 56.48 + }, + { + "date": "2020-08-07", + "total_cases": 1162.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.589, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 56.48 + }, + { + "date": "2020-08-08", + "total_cases": 1175.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.571, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 56.211, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 56.48 + }, + { + "date": "2020-08-09", + "total_cases": 1180.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 56.45, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-10", + "total_cases": 1204.0, + "new_cases": 24.0, + "new_cases_smoothed": 7.714, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.599, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-11", + "total_cases": 1211.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.286, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.933, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-12", + "total_cases": 1213.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.029, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-13", + "total_cases": 1228.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.0, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.747, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-14", + "total_cases": 1238.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.225, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.519, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-15", + "total_cases": 1240.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.286, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.321, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-16", + "total_cases": 1249.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.751, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.472, + "total_deaths_per_million": 2.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-17", + "total_cases": 1267.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.0, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.613, + "new_cases_per_million": 0.861, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-18", + "total_cases": 1280.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.857, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.234, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.472, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-19", + "total_cases": 1285.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.474, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-20", + "total_cases": 1292.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.143, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.808, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 48.15 + }, + { + "date": "2020-08-21", + "total_cases": 1297.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.048, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.403, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-08-22", + "total_cases": 1313.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.813, + "new_cases_per_million": 0.765, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-08-23", + "total_cases": 1320.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.143, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 63.148, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.485, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-08-24", + "total_cases": 1328.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.531, + "new_cases_per_million": 0.383, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 1338.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.009, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 1352.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.679, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.458, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 1352.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 1357.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.918, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 1358.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.966, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 1362.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.0, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.157, + "new_cases_per_million": 0.191, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 1368.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.444, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 1370.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.54, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 1375.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.779, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 1378.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.923, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1386.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.143, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.305, + "new_cases_per_million": 0.383, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1408.0, + "new_cases": 22.0, + "new_cases_smoothed": 7.143, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.358, + "new_cases_per_million": 1.052, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 2.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "BDI": { + "continent": "Africa", + "location": "Burundi", + "population": 11890781.0, + "population_density": 423.062, + "median_age": 17.5, + "aged_65_older": 2.562, + "aged_70_older": 1.504, + "gdp_per_capita": 702.225, + "extreme_poverty": 71.7, + "cardiovasc_death_rate": 293.068, + "diabetes_prevalence": 6.05, + "handwashing_facilities": 6.144, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 61.58, + "data": [ + { + "date": "2020-04-01", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.168, + "new_cases_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-02", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.168, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-03", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.084, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-04", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-05", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-06", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-12", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-13", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-14", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-15", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-16", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-17", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-18", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.505, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-19", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-20", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-21", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 13.89 + }, + { + "date": "2020-04-22", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-23", + "total_cases": 11.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.925, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-25", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.009, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-26", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-04-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-03", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-05", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-13", + "total_cases": 27.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.271, + "new_cases_per_million": 0.673, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-14", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-15", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-16", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-17", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-18", + "total_cases": 42.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-19", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-20", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-21", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-22", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-23", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-24", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-25", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-26", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-27", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-28", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-29", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-30", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-05-31", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-01", + "total_cases": 63.0, + "new_cases": 21.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-02", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-03", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-04", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-05", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-06", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-07", + "total_cases": 83.0, + "new_cases": 20.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.98, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-08", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-09", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-10", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-11", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-12", + "total_cases": 94.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.905, + "new_cases_per_million": 0.925, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-13", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.905, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-14", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.905, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-15", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.905, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-16", + "total_cases": 104.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.746, + "new_cases_per_million": 0.841, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-17", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-18", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-19", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-20", + "total_cases": 104.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-21", + "total_cases": 144.0, + "new_cases": 40.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 3.364, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-22", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-23", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-24", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-25", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-26", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-27", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-28", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-29", + "total_cases": 170.0, + "new_cases": 26.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.297, + "new_cases_per_million": 2.187, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-06-30", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-01", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-02", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-03", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-04", + "total_cases": 191.0, + "new_cases": 21.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-05", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-06", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-07", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-08", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-09", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-10", + "total_cases": 219.0, + "new_cases": 28.0, + "new_cases_smoothed": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.418, + "new_cases_per_million": 2.355, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-11", + "total_cases": 226.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.006, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-12", + "total_cases": 250.0, + "new_cases": 24.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.025, + "new_cases_per_million": 2.018, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-13", + "total_cases": 250.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.025, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-14", + "total_cases": 269.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.623, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 0.937, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-15", + "total_cases": 269.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.937, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-16", + "total_cases": 269.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.937, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-17", + "total_cases": 303.0, + "new_cases": 34.0, + "new_cases_smoothed": 12.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.482, + "new_cases_per_million": 2.859, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-18", + "total_cases": 310.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.071, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-19", + "total_cases": 310.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.721, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-20", + "total_cases": 310.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.721, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-21", + "total_cases": 322.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.08, + "new_cases_per_million": 1.009, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-22", + "total_cases": 328.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.584, + "new_cases_per_million": 0.505, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-23", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-24", + "total_cases": 345.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.014, + "new_cases_per_million": 1.43, + "new_cases_smoothed_per_million": 0.505, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-25", + "total_cases": 345.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-26", + "total_cases": 361.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.36, + "new_cases_per_million": 1.346, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-27", + "total_cases": 361.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-28", + "total_cases": 378.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.789, + "new_cases_per_million": 1.43, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-29", + "total_cases": 378.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-30", + "total_cases": 387.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.546, + "new_cases_per_million": 0.757, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-07-31", + "total_cases": 387.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.505, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-01", + "total_cases": 391.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.883, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.553, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-02", + "total_cases": 395.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.219, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-03", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.219, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-04", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.219, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-05", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.219, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-06", + "total_cases": 400.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.64, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-07", + "total_cases": 400.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-08", + "total_cases": 405.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.06, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-09", + "total_cases": 408.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.312, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-10", + "total_cases": 408.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.312, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-11", + "total_cases": 408.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.312, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-12", + "total_cases": 408.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.312, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-13", + "total_cases": 410.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.48, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-14", + "total_cases": 410.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-15", + "total_cases": 412.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.649, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-16", + "total_cases": 412.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-17", + "total_cases": 413.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.733, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-18", + "total_cases": 413.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-19", + "total_cases": 416.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.985, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-20", + "total_cases": 422.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.49, + "new_cases_per_million": 0.505, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-21", + "total_cases": 422.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-22", + "total_cases": 426.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.826, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-23", + "total_cases": 429.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.078, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-24", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-25", + "total_cases": 430.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.162, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-26", + "total_cases": 430.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.162, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-27", + "total_cases": 430.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.162, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-28", + "total_cases": 431.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.247, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 433.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.415, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 439.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.919, + "new_cases_per_million": 0.505, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 445.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.424, + "new_cases_per_million": 0.505, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 445.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 445.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 448.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.676, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 448.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.676, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 451.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.929, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "KHM": { + "continent": "Asia", + "location": "Cambodia", + "population": 16718971.0, + "population_density": 90.672, + "median_age": 25.6, + "aged_65_older": 4.412, + "aged_70_older": 2.385, + "gdp_per_capita": 3645.07, + "cardiovasc_death_rate": 270.892, + "diabetes_prevalence": 4.0, + "female_smokers": 2.0, + "male_smokers": 33.7, + "handwashing_facilities": 66.229, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 69.82, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.12, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.299, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-15", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.419, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-16", + "total_cases": 12.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.718, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-17", + "total_cases": 24.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.435, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-19", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-21", + "total_cases": 47.0, + "new_cases": 23.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.811, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-22", + "total_cases": 51.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.376, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-23", + "total_cases": 86.0, + "new_cases": 35.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.144, + "new_cases_per_million": 2.093, + "new_cases_smoothed_per_million": 0.632, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-24", + "total_cases": 87.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.204, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-25", + "total_cases": 91.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.443, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.572, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-03-26", + "total_cases": 96.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.742, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.615, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 98.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.862, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.632, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-28", + "total_cases": 102.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.101, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.47, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-29", + "total_cases": 103.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.161, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-30", + "total_cases": 107.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.4, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 109.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.52, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-01", + "total_cases": 109.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-02", + "total_cases": 110.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.579, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-03", + "total_cases": 114.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.819, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-04", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.819, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-05", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.819, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-06", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.819, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-07", + "total_cases": 115.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.878, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-04-08", + "total_cases": 117.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.998, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-09", + "total_cases": 118.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.058, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-10", + "total_cases": 119.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.118, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-11", + "total_cases": 120.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.177, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-12", + "total_cases": 122.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-13", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-14", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-15", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-16", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-17", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-18", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-19", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-20", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-21", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-22", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-23", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-24", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-25", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-26", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-27", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-28", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-29", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-30", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-01", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-02", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-03", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-04", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-05", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-06", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-07", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-08", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-09", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-10", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-11", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-15", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-18", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 123.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.357, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 124.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-26", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-27", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-28", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-29", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-30", + "total_cases": 125.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-31", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-01", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-02", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-03", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-04", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-05", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-06", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-07", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-08", + "total_cases": 126.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-09", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-10", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-11", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-12", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-13", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-14", + "total_cases": 128.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.656, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-15", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-16", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-17", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-18", + "total_cases": 129.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.716, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-19", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-20", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-21", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-22", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-23", + "total_cases": 130.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-24", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-25", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-26", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.776, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-27", + "total_cases": 139.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.314, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-28", + "total_cases": 141.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-29", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-06-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-02", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-03", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-04", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-05", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-06", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-07", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-07-08", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-10", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-11", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-12", + "total_cases": 156.0, + "new_cases": 15.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.331, + "new_cases_per_million": 0.897, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-13", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.331, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-14", + "total_cases": 165.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-15", + "total_cases": 165.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-16", + "total_cases": 166.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.929, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.214, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-17", + "total_cases": 171.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.228, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-18", + "total_cases": 171.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.228, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-19", + "total_cases": 171.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.228, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-20", + "total_cases": 171.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.228, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-21", + "total_cases": 197.0, + "new_cases": 26.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.783, + "new_cases_per_million": 1.555, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-22", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-23", + "total_cases": 198.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.843, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-24", + "total_cases": 202.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.082, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-25", + "total_cases": 202.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.082, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-26", + "total_cases": 225.0, + "new_cases": 23.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.458, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 0.461, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-27", + "total_cases": 225.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.461, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-28", + "total_cases": 225.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-29", + "total_cases": 226.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.518, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-30", + "total_cases": 234.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.996, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-07-31", + "total_cases": 234.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.996, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-01", + "total_cases": 239.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.295, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.316, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-02", + "total_cases": 240.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.355, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-03", + "total_cases": 240.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-04", + "total_cases": 240.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-05", + "total_cases": 243.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.534, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-08-06", + "total_cases": 243.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-07", + "total_cases": 243.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-08", + "total_cases": 246.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.714, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-09", + "total_cases": 246.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.714, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-10", + "total_cases": 251.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.013, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-11", + "total_cases": 266.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.91, + "new_cases_per_million": 0.897, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-12", + "total_cases": 268.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.03, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.214, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-13", + "total_cases": 272.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.269, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-14", + "total_cases": 273.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-15", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-16", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-17", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-18", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-19", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-20", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-21", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-22", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-23", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-24", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-25", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-26", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-27", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-28", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-29", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-30", + "total_cases": 273.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-08-31", + "total_cases": 274.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-09-01", + "total_cases": 274.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-09-02", + "total_cases": 274.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-09-03", + "total_cases": 274.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-09-04", + "total_cases": 274.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 274.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "CMR": { + "continent": "Africa", + "location": "Cameroon", + "population": 26545864.0, + "population_density": 50.885, + "median_age": 18.8, + "aged_65_older": 3.165, + "aged_70_older": 1.919, + "gdp_per_capita": 3364.926, + "extreme_poverty": 23.8, + "cardiovasc_death_rate": 244.661, + "diabetes_prevalence": 7.2, + "handwashing_facilities": 2.735, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 59.29, + "data": [ + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.038, + "new_cases_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.075, + "new_cases_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-15", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.113, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-16", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.151, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-17", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.151, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-18", + "total_cases": 10.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.377, + "new_cases_per_million": 0.226, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-19", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-20", + "total_cases": 14.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.527, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-21", + "total_cases": 27.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.017, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-24", + "total_cases": 56.0, + "new_cases": 29.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.11, + "new_cases_per_million": 1.092, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-25", + "total_cases": 72.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.712, + "new_cases_per_million": 0.603, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 57.41 + }, + { + "date": "2020-03-26", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 88.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.315, + "new_cases_per_million": 0.603, + "new_cases_smoothed_per_million": 0.398, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 57.41 + }, + { + "date": "2020-03-28", + "total_cases": 88.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.315, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 57.41 + }, + { + "date": "2020-03-29", + "total_cases": 99.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.729, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.075, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-03-30", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.729, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.075, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 142.0, + "new_cases": 43.0, + "new_cases_smoothed": 12.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.349, + "new_cases_per_million": 1.62, + "new_cases_smoothed_per_million": 0.463, + "total_deaths_per_million": 0.075, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-04-01", + "total_cases": 193.0, + "new_cases": 51.0, + "new_cases_smoothed": 17.286, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7.27, + "new_cases_per_million": 1.921, + "new_cases_smoothed_per_million": 0.651, + "total_deaths_per_million": 0.226, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 57.41 + }, + { + "date": "2020-04-02", + "total_cases": 233.0, + "new_cases": 40.0, + "new_cases_smoothed": 23.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.777, + "new_cases_per_million": 1.507, + "new_cases_smoothed_per_million": 0.866, + "total_deaths_per_million": 0.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 57.41 + }, + { + "date": "2020-04-03", + "total_cases": 271.0, + "new_cases": 38.0, + "new_cases_smoothed": 26.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.209, + "new_cases_per_million": 1.431, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.264, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 57.41 + }, + { + "date": "2020-04-04", + "total_cases": 509.0, + "new_cases": 238.0, + "new_cases_smoothed": 60.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 19.174, + "new_cases_per_million": 8.966, + "new_cases_smoothed_per_million": 2.266, + "total_deaths_per_million": 0.301, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 68.52 + }, + { + "date": "2020-04-05", + "total_cases": 555.0, + "new_cases": 46.0, + "new_cases_smoothed": 65.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 20.907, + "new_cases_per_million": 1.733, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 0.339, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 68.52 + }, + { + "date": "2020-04-06", + "total_cases": 650.0, + "new_cases": 95.0, + "new_cases_smoothed": 78.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 24.486, + "new_cases_per_million": 3.579, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 0.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 68.52 + }, + { + "date": "2020-04-07", + "total_cases": 658.0, + "new_cases": 8.0, + "new_cases_smoothed": 73.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 24.787, + "new_cases_per_million": 0.301, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 0.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 68.52 + }, + { + "date": "2020-04-08", + "total_cases": 685.0, + "new_cases": 27.0, + "new_cases_smoothed": 70.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 25.804, + "new_cases_per_million": 1.017, + "new_cases_smoothed_per_million": 2.648, + "total_deaths_per_million": 0.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 68.52 + }, + { + "date": "2020-04-09", + "total_cases": 730.0, + "new_cases": 45.0, + "new_cases_smoothed": 71.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 27.5, + "new_cases_per_million": 1.695, + "new_cases_smoothed_per_million": 2.675, + "total_deaths_per_million": 0.377, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 68.52 + }, + { + "date": "2020-04-10", + "total_cases": 730.0, + "new_cases": 0.0, + "new_cases_smoothed": 65.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 27.5, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.47, + "total_deaths_per_million": 0.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 68.52 + }, + { + "date": "2020-04-11", + "total_cases": 803.0, + "new_cases": 73.0, + "new_cases_smoothed": 42.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.25, + "new_cases_per_million": 2.75, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 0.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 68.52 + }, + { + "date": "2020-04-12", + "total_cases": 820.0, + "new_cases": 17.0, + "new_cases_smoothed": 37.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.89, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 1.426, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 68.52 + }, + { + "date": "2020-04-13", + "total_cases": 820.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 30.89, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.915, + "total_deaths_per_million": 0.452, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 68.52 + }, + { + "date": "2020-04-14", + "total_cases": 820.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 30.89, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.872, + "total_deaths_per_million": 0.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 68.52 + }, + { + "date": "2020-04-15", + "total_cases": 855.0, + "new_cases": 35.0, + "new_cases_smoothed": 24.286, + "total_deaths": 17.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 32.208, + "new_cases_per_million": 1.318, + "new_cases_smoothed_per_million": 0.915, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 68.52 + }, + { + "date": "2020-04-16", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 32.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 68.52 + }, + { + "date": "2020-04-17", + "total_cases": 855.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.857, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 32.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 68.52 + }, + { + "date": "2020-04-18", + "total_cases": 1016.0, + "new_cases": 161.0, + "new_cases_smoothed": 30.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 38.273, + "new_cases_per_million": 6.065, + "new_cases_smoothed_per_million": 1.146, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 71.3 + }, + { + "date": "2020-04-19", + "total_cases": 1016.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.055, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 71.3 + }, + { + "date": "2020-04-20", + "total_cases": 1016.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 42.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 38.273, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.055, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 71.3 + }, + { + "date": "2020-04-21", + "total_cases": 1017.0, + "new_cases": 1.0, + "new_cases_smoothed": 28.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 38.311, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 71.3 + }, + { + "date": "2020-04-22", + "total_cases": 1163.0, + "new_cases": 146.0, + "new_cases_smoothed": 44.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 43.811, + "new_cases_per_million": 5.5, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 71.3 + }, + { + "date": "2020-04-23", + "total_cases": 1163.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.0, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 43.811, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 1.62, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 71.3 + }, + { + "date": "2020-04-24", + "total_cases": 1401.0, + "new_cases": 238.0, + "new_cases_smoothed": 78.0, + "total_deaths": 49.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 52.777, + "new_cases_per_million": 8.966, + "new_cases_smoothed_per_million": 2.938, + "total_deaths_per_million": 1.846, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 71.3 + }, + { + "date": "2020-04-25", + "total_cases": 1403.0, + "new_cases": 2.0, + "new_cases_smoothed": 55.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 52.852, + "new_cases_per_million": 0.075, + "new_cases_smoothed_per_million": 2.083, + "total_deaths_per_million": 1.846, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 71.3 + }, + { + "date": "2020-04-26", + "total_cases": 1518.0, + "new_cases": 115.0, + "new_cases_smoothed": 71.714, + "total_deaths": 53.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 57.184, + "new_cases_per_million": 4.332, + "new_cases_smoothed_per_million": 2.702, + "total_deaths_per_million": 1.997, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 71.3 + }, + { + "date": "2020-04-27", + "total_cases": 1621.0, + "new_cases": 103.0, + "new_cases_smoothed": 86.429, + "total_deaths": 56.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 61.064, + "new_cases_per_million": 3.88, + "new_cases_smoothed_per_million": 3.256, + "total_deaths_per_million": 2.11, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 71.3 + }, + { + "date": "2020-04-28", + "total_cases": 1621.0, + "new_cases": 0.0, + "new_cases_smoothed": 86.286, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 61.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.25, + "total_deaths_per_million": 2.185, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 71.3 + }, + { + "date": "2020-04-29", + "total_cases": 1806.0, + "new_cases": 185.0, + "new_cases_smoothed": 91.857, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 68.033, + "new_cases_per_million": 6.969, + "new_cases_smoothed_per_million": 3.46, + "total_deaths_per_million": 2.223, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 71.3 + }, + { + "date": "2020-04-30", + "total_cases": 1832.0, + "new_cases": 26.0, + "new_cases_smoothed": 95.571, + "total_deaths": 61.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 69.013, + "new_cases_per_million": 0.979, + "new_cases_smoothed_per_million": 3.6, + "total_deaths_per_million": 2.298, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.097, + "stringency_index": 71.3 + }, + { + "date": "2020-05-01", + "total_cases": 1832.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 69.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.319, + "total_deaths_per_million": 2.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 63.89 + }, + { + "date": "2020-05-02", + "total_cases": 2069.0, + "new_cases": 237.0, + "new_cases_smoothed": 95.143, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 77.941, + "new_cases_per_million": 8.928, + "new_cases_smoothed_per_million": 3.584, + "total_deaths_per_million": 2.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 63.89 + }, + { + "date": "2020-05-03", + "total_cases": 2077.0, + "new_cases": 8.0, + "new_cases_smoothed": 79.857, + "total_deaths": 64.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 78.242, + "new_cases_per_million": 0.301, + "new_cases_smoothed_per_million": 3.008, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 63.89 + }, + { + "date": "2020-05-04", + "total_cases": 2077.0, + "new_cases": 0.0, + "new_cases_smoothed": 65.143, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 78.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 63.89 + }, + { + "date": "2020-05-05", + "total_cases": 2104.0, + "new_cases": 27.0, + "new_cases_smoothed": 69.0, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 79.259, + "new_cases_per_million": 1.017, + "new_cases_smoothed_per_million": 2.599, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 63.89 + }, + { + "date": "2020-05-06", + "total_cases": 2104.0, + "new_cases": 0.0, + "new_cases_smoothed": 42.571, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 79.259, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.604, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 63.89 + }, + { + "date": "2020-05-07", + "total_cases": 2265.0, + "new_cases": 161.0, + "new_cases_smoothed": 61.857, + "total_deaths": 108.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 85.324, + "new_cases_per_million": 6.065, + "new_cases_smoothed_per_million": 2.33, + "total_deaths_per_million": 4.068, + "new_deaths_per_million": 1.658, + "new_deaths_smoothed_per_million": 0.253, + "stringency_index": 63.89 + }, + { + "date": "2020-05-08", + "total_cases": 2265.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.857, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 85.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.33, + "total_deaths_per_million": 4.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.253, + "stringency_index": 63.89 + }, + { + "date": "2020-05-09", + "total_cases": 2265.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 85.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.055, + "total_deaths_per_million": 4.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.253, + "stringency_index": 63.89 + }, + { + "date": "2020-05-10", + "total_cases": 2274.0, + "new_cases": 9.0, + "new_cases_smoothed": 28.143, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 85.663, + "new_cases_per_million": 0.339, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 4.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 63.89 + }, + { + "date": "2020-05-11", + "total_cases": 2579.0, + "new_cases": 305.0, + "new_cases_smoothed": 71.714, + "total_deaths": 114.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 97.153, + "new_cases_per_million": 11.49, + "new_cases_smoothed_per_million": 2.702, + "total_deaths_per_million": 4.294, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.269, + "stringency_index": 63.89 + }, + { + "date": "2020-05-12", + "total_cases": 2689.0, + "new_cases": 110.0, + "new_cases_smoothed": 83.571, + "total_deaths": 125.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 101.296, + "new_cases_per_million": 4.144, + "new_cases_smoothed_per_million": 3.148, + "total_deaths_per_million": 4.709, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.328, + "stringency_index": 63.89 + }, + { + "date": "2020-05-13", + "total_cases": 2689.0, + "new_cases": 0.0, + "new_cases_smoothed": 83.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 101.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.148, + "total_deaths_per_million": 4.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.328, + "stringency_index": 63.89 + }, + { + "date": "2020-05-14", + "total_cases": 2800.0, + "new_cases": 111.0, + "new_cases_smoothed": 76.429, + "total_deaths": 136.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 105.478, + "new_cases_per_million": 4.181, + "new_cases_smoothed_per_million": 2.879, + "total_deaths_per_million": 5.123, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 63.89 + }, + { + "date": "2020-05-15", + "total_cases": 2954.0, + "new_cases": 154.0, + "new_cases_smoothed": 98.429, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 111.279, + "new_cases_per_million": 5.801, + "new_cases_smoothed_per_million": 3.708, + "total_deaths_per_million": 5.236, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 63.89 + }, + { + "date": "2020-05-16", + "total_cases": 3105.0, + "new_cases": 151.0, + "new_cases_smoothed": 120.0, + "total_deaths": 140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 116.967, + "new_cases_per_million": 5.688, + "new_cases_smoothed_per_million": 4.52, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 63.89 + }, + { + "date": "2020-05-17", + "total_cases": 3292.0, + "new_cases": 187.0, + "new_cases_smoothed": 145.429, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 124.012, + "new_cases_per_million": 7.044, + "new_cases_smoothed_per_million": 5.478, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 63.89 + }, + { + "date": "2020-05-18", + "total_cases": 3292.0, + "new_cases": 0.0, + "new_cases_smoothed": 101.857, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 124.012, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.837, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 63.89 + }, + { + "date": "2020-05-19", + "total_cases": 3292.0, + "new_cases": 0.0, + "new_cases_smoothed": 86.143, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 124.012, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.245, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 63.89 + }, + { + "date": "2020-05-20", + "total_cases": 3529.0, + "new_cases": 237.0, + "new_cases_smoothed": 120.0, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 132.94, + "new_cases_per_million": 8.928, + "new_cases_smoothed_per_million": 4.52, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 63.89 + }, + { + "date": "2020-05-21", + "total_cases": 3733.0, + "new_cases": 204.0, + "new_cases_smoothed": 133.286, + "total_deaths": 146.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 140.625, + "new_cases_per_million": 7.685, + "new_cases_smoothed_per_million": 5.021, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 63.89 + }, + { + "date": "2020-05-22", + "total_cases": 4288.0, + "new_cases": 555.0, + "new_cases_smoothed": 190.571, + "total_deaths": 156.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 161.532, + "new_cases_per_million": 20.907, + "new_cases_smoothed_per_million": 7.179, + "total_deaths_per_million": 5.877, + "new_deaths_per_million": 0.377, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 63.89 + }, + { + "date": "2020-05-23", + "total_cases": 4400.0, + "new_cases": 112.0, + "new_cases_smoothed": 185.0, + "total_deaths": 159.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 165.751, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 6.969, + "total_deaths_per_million": 5.99, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 63.89 + }, + { + "date": "2020-05-24", + "total_cases": 4597.0, + "new_cases": 197.0, + "new_cases_smoothed": 186.429, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 173.172, + "new_cases_per_million": 7.421, + "new_cases_smoothed_per_million": 7.023, + "total_deaths_per_million": 5.99, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 63.89 + }, + { + "date": "2020-05-25", + "total_cases": 4890.0, + "new_cases": 293.0, + "new_cases_smoothed": 228.286, + "total_deaths": 165.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 184.209, + "new_cases_per_million": 11.038, + "new_cases_smoothed_per_million": 8.6, + "total_deaths_per_million": 6.216, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 63.89 + }, + { + "date": "2020-05-26", + "total_cases": 5044.0, + "new_cases": 154.0, + "new_cases_smoothed": 250.286, + "total_deaths": 171.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 190.011, + "new_cases_per_million": 5.801, + "new_cases_smoothed_per_million": 9.428, + "total_deaths_per_million": 6.442, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 63.89 + }, + { + "date": "2020-05-27", + "total_cases": 5356.0, + "new_cases": 312.0, + "new_cases_smoothed": 261.0, + "total_deaths": 175.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 201.764, + "new_cases_per_million": 11.753, + "new_cases_smoothed_per_million": 9.832, + "total_deaths_per_million": 6.592, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 63.89 + }, + { + "date": "2020-05-28", + "total_cases": 5356.0, + "new_cases": 0.0, + "new_cases_smoothed": 231.857, + "total_deaths": 177.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 201.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.734, + "total_deaths_per_million": 6.668, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 63.89 + }, + { + "date": "2020-05-29", + "total_cases": 5356.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.571, + "total_deaths": 177.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 201.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.747, + "total_deaths_per_million": 6.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 63.89 + }, + { + "date": "2020-05-30", + "total_cases": 5436.0, + "new_cases": 80.0, + "new_cases_smoothed": 148.0, + "total_deaths": 177.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 204.778, + "new_cases_per_million": 3.014, + "new_cases_smoothed_per_million": 5.575, + "total_deaths_per_million": 6.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.097, + "stringency_index": 63.89 + }, + { + "date": "2020-05-31", + "total_cases": 5904.0, + "new_cases": 468.0, + "new_cases_smoothed": 186.714, + "total_deaths": 191.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 222.408, + "new_cases_per_million": 17.63, + "new_cases_smoothed_per_million": 7.034, + "total_deaths_per_million": 7.195, + "new_deaths_per_million": 0.527, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 63.89 + }, + { + "date": "2020-06-01", + "total_cases": 5904.0, + "new_cases": 0.0, + "new_cases_smoothed": 144.857, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 222.408, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.457, + "total_deaths_per_million": 7.195, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 60.19 + }, + { + "date": "2020-06-02", + "total_cases": 6397.0, + "new_cases": 493.0, + "new_cases_smoothed": 193.286, + "total_deaths": 199.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 240.979, + "new_cases_per_million": 18.572, + "new_cases_smoothed_per_million": 7.281, + "total_deaths_per_million": 7.496, + "new_deaths_per_million": 0.301, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 60.19 + }, + { + "date": "2020-06-03", + "total_cases": 6585.0, + "new_cases": 188.0, + "new_cases_smoothed": 175.571, + "total_deaths": 200.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 248.061, + "new_cases_per_million": 7.082, + "new_cases_smoothed_per_million": 6.614, + "total_deaths_per_million": 7.534, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 60.19 + }, + { + "date": "2020-06-04", + "total_cases": 6752.0, + "new_cases": 167.0, + "new_cases_smoothed": 199.429, + "total_deaths": 200.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 254.352, + "new_cases_per_million": 6.291, + "new_cases_smoothed_per_million": 7.513, + "total_deaths_per_million": 7.534, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 60.19 + }, + { + "date": "2020-06-05", + "total_cases": 6789.0, + "new_cases": 37.0, + "new_cases_smoothed": 204.714, + "total_deaths": 203.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 255.746, + "new_cases_per_million": 1.394, + "new_cases_smoothed_per_million": 7.712, + "total_deaths_per_million": 7.647, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 60.19 + }, + { + "date": "2020-06-06", + "total_cases": 7599.0, + "new_cases": 810.0, + "new_cases_smoothed": 309.0, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 286.259, + "new_cases_per_million": 30.513, + "new_cases_smoothed_per_million": 11.64, + "total_deaths_per_million": 7.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 60.19 + }, + { + "date": "2020-06-07", + "total_cases": 7599.0, + "new_cases": 0.0, + "new_cases_smoothed": 242.143, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 286.259, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.122, + "total_deaths_per_million": 7.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-06-08", + "total_cases": 7908.0, + "new_cases": 309.0, + "new_cases_smoothed": 286.286, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 297.9, + "new_cases_per_million": 11.64, + "new_cases_smoothed_per_million": 10.785, + "total_deaths_per_million": 7.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-06-09", + "total_cases": 8312.0, + "new_cases": 404.0, + "new_cases_smoothed": 273.571, + "total_deaths": 208.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 313.118, + "new_cases_per_million": 15.219, + "new_cases_smoothed_per_million": 10.306, + "total_deaths_per_million": 7.835, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 60.19 + }, + { + "date": "2020-06-10", + "total_cases": 8681.0, + "new_cases": 369.0, + "new_cases_smoothed": 299.429, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 327.019, + "new_cases_per_million": 13.9, + "new_cases_smoothed_per_million": 11.28, + "total_deaths_per_million": 7.835, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 60.19 + }, + { + "date": "2020-06-11", + "total_cases": 8929.0, + "new_cases": 248.0, + "new_cases_smoothed": 311.0, + "total_deaths": 214.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 336.361, + "new_cases_per_million": 9.342, + "new_cases_smoothed_per_million": 11.716, + "total_deaths_per_million": 8.062, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-06-12", + "total_cases": 8929.0, + "new_cases": 0.0, + "new_cases_smoothed": 305.714, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 336.361, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.516, + "total_deaths_per_million": 8.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 60.19 + }, + { + "date": "2020-06-13", + "total_cases": 9196.0, + "new_cases": 267.0, + "new_cases_smoothed": 228.143, + "total_deaths": 273.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 346.419, + "new_cases_per_million": 10.058, + "new_cases_smoothed_per_million": 8.594, + "total_deaths_per_million": 10.284, + "new_deaths_per_million": 2.223, + "new_deaths_smoothed_per_million": 0.377, + "stringency_index": 60.19 + }, + { + "date": "2020-06-14", + "total_cases": 9572.0, + "new_cases": 376.0, + "new_cases_smoothed": 281.857, + "total_deaths": 275.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 360.583, + "new_cases_per_million": 14.164, + "new_cases_smoothed_per_million": 10.618, + "total_deaths_per_million": 10.359, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.387, + "stringency_index": 60.19 + }, + { + "date": "2020-06-15", + "total_cases": 9864.0, + "new_cases": 292.0, + "new_cases_smoothed": 279.429, + "total_deaths": 276.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 371.583, + "new_cases_per_million": 11.0, + "new_cases_smoothed_per_million": 10.526, + "total_deaths_per_million": 10.397, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.393, + "stringency_index": 60.19 + }, + { + "date": "2020-06-16", + "total_cases": 9864.0, + "new_cases": 0.0, + "new_cases_smoothed": 221.714, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 371.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.352, + "total_deaths_per_million": 10.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.366, + "stringency_index": 60.19 + }, + { + "date": "2020-06-17", + "total_cases": 9864.0, + "new_cases": 0.0, + "new_cases_smoothed": 169.0, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 371.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.366, + "total_deaths_per_million": 10.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.366, + "stringency_index": 60.19 + }, + { + "date": "2020-06-18", + "total_cases": 9864.0, + "new_cases": 0.0, + "new_cases_smoothed": 133.571, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 371.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.032, + "total_deaths_per_million": 10.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.334, + "stringency_index": 60.19 + }, + { + "date": "2020-06-19", + "total_cases": 10638.0, + "new_cases": 774.0, + "new_cases_smoothed": 244.143, + "total_deaths": 282.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 400.74, + "new_cases_per_million": 29.157, + "new_cases_smoothed_per_million": 9.197, + "total_deaths_per_million": 10.623, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.366, + "stringency_index": 60.19 + }, + { + "date": "2020-06-20", + "total_cases": 11281.0, + "new_cases": 643.0, + "new_cases_smoothed": 297.857, + "total_deaths": 300.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 424.963, + "new_cases_per_million": 24.222, + "new_cases_smoothed_per_million": 11.22, + "total_deaths_per_million": 11.301, + "new_deaths_per_million": 0.678, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 60.19 + }, + { + "date": "2020-06-21", + "total_cases": 11281.0, + "new_cases": 0.0, + "new_cases_smoothed": 244.143, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 424.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.197, + "total_deaths_per_million": 11.301, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 60.19 + }, + { + "date": "2020-06-22", + "total_cases": 11610.0, + "new_cases": 329.0, + "new_cases_smoothed": 249.429, + "total_deaths": 301.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 437.356, + "new_cases_per_million": 12.394, + "new_cases_smoothed_per_million": 9.396, + "total_deaths_per_million": 11.339, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 60.19 + }, + { + "date": "2020-06-23", + "total_cases": 11892.0, + "new_cases": 282.0, + "new_cases_smoothed": 289.714, + "total_deaths": 303.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 447.979, + "new_cases_per_million": 10.623, + "new_cases_smoothed_per_million": 10.914, + "total_deaths_per_million": 11.414, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 60.19 + }, + { + "date": "2020-06-24", + "total_cases": 12041.0, + "new_cases": 149.0, + "new_cases_smoothed": 311.0, + "total_deaths": 308.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 453.592, + "new_cases_per_million": 5.613, + "new_cases_smoothed_per_million": 11.716, + "total_deaths_per_million": 11.603, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 60.19 + }, + { + "date": "2020-06-25", + "total_cases": 12270.0, + "new_cases": 229.0, + "new_cases_smoothed": 343.714, + "total_deaths": 313.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 462.219, + "new_cases_per_million": 8.627, + "new_cases_smoothed_per_million": 12.948, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 60.19 + }, + { + "date": "2020-06-26", + "total_cases": 12592.0, + "new_cases": 322.0, + "new_cases_smoothed": 279.143, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 474.349, + "new_cases_per_million": 12.13, + "new_cases_smoothed_per_million": 10.515, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 60.19 + }, + { + "date": "2020-06-27", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 187.286, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.055, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 60.19 + }, + { + "date": "2020-06-28", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 187.286, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.055, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 60.19 + }, + { + "date": "2020-06-29", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 140.286, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.285, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-06-30", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 100.0, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.767, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-07-01", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 60.19 + }, + { + "date": "2020-07-02", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.0, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.733, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-03", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-04", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-05", + "total_cases": 12592.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 474.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 11.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-06", + "total_cases": 13711.0, + "new_cases": 1119.0, + "new_cases_smoothed": 159.857, + "total_deaths": 328.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 516.502, + "new_cases_per_million": 42.153, + "new_cases_smoothed_per_million": 6.022, + "total_deaths_per_million": 12.356, + "new_deaths_per_million": 0.565, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-07-07", + "total_cases": 14037.0, + "new_cases": 326.0, + "new_cases_smoothed": 206.429, + "total_deaths": 330.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 528.783, + "new_cases_per_million": 12.281, + "new_cases_smoothed_per_million": 7.776, + "total_deaths_per_million": 12.431, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 60.19 + }, + { + "date": "2020-07-08", + "total_cases": 14916.0, + "new_cases": 879.0, + "new_cases_smoothed": 332.0, + "total_deaths": 359.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 561.895, + "new_cases_per_million": 33.113, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 14916.0, + "new_cases": 0.0, + "new_cases_smoothed": 332.0, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 561.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 14916.0, + "new_cases": 0.0, + "new_cases_smoothed": 332.0, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 561.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 60.19 + }, + { + "date": "2020-07-11", + "total_cases": 14916.0, + "new_cases": 0.0, + "new_cases_smoothed": 332.0, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 561.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 60.19 + }, + { + "date": "2020-07-12", + "total_cases": 14916.0, + "new_cases": 0.0, + "new_cases_smoothed": 332.0, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 561.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 60.19 + }, + { + "date": "2020-07-13", + "total_cases": 15173.0, + "new_cases": 257.0, + "new_cases_smoothed": 208.857, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 571.577, + "new_cases_per_million": 9.681, + "new_cases_smoothed_per_million": 7.868, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 60.19 + }, + { + "date": "2020-07-14", + "total_cases": 15173.0, + "new_cases": 0.0, + "new_cases_smoothed": 162.286, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 571.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.113, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 60.19 + }, + { + "date": "2020-07-15", + "total_cases": 15173.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.714, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 571.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.383, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 15173.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.714, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 571.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.383, + "total_deaths_per_million": 13.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 16157.0, + "new_cases": 984.0, + "new_cases_smoothed": 177.286, + "total_deaths": 373.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 37.068, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.527, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 16157.0, + "new_cases": 0.0, + "new_cases_smoothed": 177.286, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 16157.0, + "new_cases": 0.0, + "new_cases_smoothed": 177.286, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 16157.0, + "new_cases": 0.0, + "new_cases_smoothed": 140.571, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.295, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 16157.0, + "new_cases": 0.0, + "new_cases_smoothed": 140.571, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.295, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 16157.0, + "new_cases": 0.0, + "new_cases_smoothed": 140.571, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 608.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.295, + "total_deaths_per_million": 14.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 16522.0, + "new_cases": 365.0, + "new_cases_smoothed": 192.714, + "total_deaths": 382.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 622.395, + "new_cases_per_million": 13.75, + "new_cases_smoothed_per_million": 7.26, + "total_deaths_per_million": 14.39, + "new_deaths_per_million": 0.339, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 16708.0, + "new_cases": 186.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 7.007, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 16708.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 16708.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 16708.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 16708.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 16708.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.714, + "total_deaths": 385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 629.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 14.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 17255.0, + "new_cases": 547.0, + "new_cases_smoothed": 104.714, + "total_deaths": 387.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.007, + "new_cases_per_million": 20.606, + "new_cases_smoothed_per_million": 3.945, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 17255.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 650.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.944, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 17255.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 650.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.944, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 60.19 + }, + { + "date": "2020-08-02", + "total_cases": 17255.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 650.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.944, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 60.19 + }, + { + "date": "2020-08-03", + "total_cases": 17255.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 650.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.944, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 60.19 + }, + { + "date": "2020-08-04", + "total_cases": 17255.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 650.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.944, + "total_deaths_per_million": 14.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 60.19 + }, + { + "date": "2020-08-05", + "total_cases": 17718.0, + "new_cases": 463.0, + "new_cases_smoothed": 144.286, + "total_deaths": 391.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 667.449, + "new_cases_per_million": 17.442, + "new_cases_smoothed_per_million": 5.435, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 60.19 + }, + { + "date": "2020-08-06", + "total_cases": 17718.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.143, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 667.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-08-07", + "total_cases": 17718.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.143, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 667.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-08-08", + "total_cases": 17718.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.143, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 667.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-08-09", + "total_cases": 17718.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.143, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 667.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-08-10", + "total_cases": 18042.0, + "new_cases": 324.0, + "new_cases_smoothed": 112.429, + "total_deaths": 395.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 679.654, + "new_cases_per_million": 12.205, + "new_cases_smoothed_per_million": 4.235, + "total_deaths_per_million": 14.88, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 60.19 + }, + { + "date": "2020-08-11", + "total_cases": 18042.0, + "new_cases": 0.0, + "new_cases_smoothed": 112.429, + "total_deaths": 395.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 679.654, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.235, + "total_deaths_per_million": 14.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 60.19 + }, + { + "date": "2020-08-12", + "total_cases": 18213.0, + "new_cases": 171.0, + "new_cases_smoothed": 70.714, + "total_deaths": 398.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 686.096, + "new_cases_per_million": 6.442, + "new_cases_smoothed_per_million": 2.664, + "total_deaths_per_million": 14.993, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 60.19 + }, + { + "date": "2020-08-13", + "total_cases": 18263.0, + "new_cases": 50.0, + "new_cases_smoothed": 77.857, + "total_deaths": 401.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 687.979, + "new_cases_per_million": 1.884, + "new_cases_smoothed_per_million": 2.933, + "total_deaths_per_million": 15.106, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-08-14", + "total_cases": 18308.0, + "new_cases": 45.0, + "new_cases_smoothed": 84.286, + "total_deaths": 401.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 689.674, + "new_cases_per_million": 1.695, + "new_cases_smoothed_per_million": 3.175, + "total_deaths_per_million": 15.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-08-15", + "total_cases": 18469.0, + "new_cases": 161.0, + "new_cases_smoothed": 107.286, + "total_deaths": 401.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 695.739, + "new_cases_per_million": 6.065, + "new_cases_smoothed_per_million": 4.042, + "total_deaths_per_million": 15.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-08-16", + "total_cases": 18469.0, + "new_cases": 0.0, + "new_cases_smoothed": 107.286, + "total_deaths": 401.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 695.739, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.042, + "total_deaths_per_million": 15.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-08-17", + "total_cases": 18469.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.0, + "total_deaths": 401.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 695.739, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.298, + "total_deaths_per_million": 15.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 60.19 + }, + { + "date": "2020-08-18", + "total_cases": 18582.0, + "new_cases": 113.0, + "new_cases_smoothed": 77.143, + "total_deaths": 403.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 699.996, + "new_cases_per_million": 4.257, + "new_cases_smoothed_per_million": 2.906, + "total_deaths_per_million": 15.181, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 60.19 + }, + { + "date": "2020-08-19", + "total_cases": 18599.0, + "new_cases": 17.0, + "new_cases_smoothed": 55.143, + "total_deaths": 406.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 700.636, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 2.077, + "total_deaths_per_million": 15.294, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 60.19 + }, + { + "date": "2020-08-20", + "total_cases": 18624.0, + "new_cases": 25.0, + "new_cases_smoothed": 51.571, + "total_deaths": 406.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 701.578, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 1.943, + "total_deaths_per_million": 15.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 60.19 + }, + { + "date": "2020-08-21", + "total_cases": 18762.0, + "new_cases": 138.0, + "new_cases_smoothed": 64.857, + "total_deaths": 408.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 706.777, + "new_cases_per_million": 5.199, + "new_cases_smoothed_per_million": 2.443, + "total_deaths_per_million": 15.37, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 60.19 + }, + { + "date": "2020-08-22", + "total_cases": 18762.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 706.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 15.37, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 60.19 + }, + { + "date": "2020-08-23", + "total_cases": 18762.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 706.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 15.37, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 60.19 + }, + { + "date": "2020-08-24", + "total_cases": 18762.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 706.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 15.37, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 60.19 + }, + { + "date": "2020-08-25", + "total_cases": 18762.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 706.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.969, + "total_deaths_per_million": 15.37, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 60.19 + }, + { + "date": "2020-08-26", + "total_cases": 18973.0, + "new_cases": 211.0, + "new_cases_smoothed": 53.429, + "total_deaths": 410.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 714.725, + "new_cases_per_million": 7.949, + "new_cases_smoothed_per_million": 2.013, + "total_deaths_per_million": 15.445, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-08-27", + "total_cases": 18973.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 410.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 714.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.878, + "total_deaths_per_million": 15.445, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-08-28", + "total_cases": 19142.0, + "new_cases": 169.0, + "new_cases_smoothed": 54.286, + "total_deaths": 411.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 721.092, + "new_cases_per_million": 6.366, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 15.483, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-08-29", + "total_cases": 19142.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.286, + "total_deaths": 411.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 721.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 15.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-08-30", + "total_cases": 19142.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.286, + "total_deaths": 411.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 721.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 15.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-08-31", + "total_cases": 19142.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.286, + "total_deaths": 411.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 721.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 15.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-01", + "total_cases": 19142.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.286, + "total_deaths": 411.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 721.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 15.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-02", + "total_cases": 19409.0, + "new_cases": 267.0, + "new_cases_smoothed": 62.286, + "total_deaths": 414.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 731.15, + "new_cases_per_million": 10.058, + "new_cases_smoothed_per_million": 2.346, + "total_deaths_per_million": 15.596, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-03", + "total_cases": 19460.0, + "new_cases": 51.0, + "new_cases_smoothed": 69.571, + "total_deaths": 414.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 733.071, + "new_cases_per_million": 1.921, + "new_cases_smoothed_per_million": 2.621, + "total_deaths_per_million": 15.596, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-04", + "total_cases": 19604.0, + "new_cases": 144.0, + "new_cases_smoothed": 66.0, + "total_deaths": 414.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 738.495, + "new_cases_per_million": 5.425, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 15.596, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-05", + "total_cases": 19604.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.0, + "total_deaths": 414.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 738.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 15.596, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + } + ] + }, + "CAN": { + "continent": "North America", + "location": "Canada", + "population": 37742157.0, + "population_density": 4.037, + "median_age": 41.4, + "aged_65_older": 16.984, + "aged_70_older": 10.797, + "gdp_per_capita": 44017.591, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 105.599, + "diabetes_prevalence": 7.37, + "female_smokers": 12.0, + "male_smokers": 16.6, + "hospital_beds_per_thousand": 2.5, + "life_expectancy": 82.43, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.053, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.079, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-02", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-03", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-04", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-05", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.132, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-06", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-07", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.053, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-13", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-14", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-15", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.238, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-22", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-23", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-24", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-25", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.053, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-27", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.318, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-28", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.371, + "new_cases_per_million": 0.053, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-29", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.424, + "new_cases_per_million": 0.053, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-01", + "total_cases": 20.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.53, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-02", + "total_cases": 24.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.636, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-03", + "total_cases": 27.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.715, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-04", + "total_cases": 30.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.795, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-05", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.874, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-06", + "total_cases": 45.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.192, + "new_cases_per_million": 0.318, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-07", + "total_cases": 51.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.351, + "new_cases_per_million": 0.159, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-08", + "total_cases": 57.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.51, + "new_cases_per_million": 0.159, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-09", + "total_cases": 62.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.643, + "new_cases_per_million": 0.132, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-10", + "total_cases": 77.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.04, + "new_cases_per_million": 0.397, + "new_cases_smoothed_per_million": 0.189, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 2.78 + }, + { + "date": "2020-03-11", + "total_cases": 93.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.464, + "new_cases_per_million": 0.424, + "new_cases_smoothed_per_million": 0.238, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 13.89 + }, + { + "date": "2020-03-12", + "total_cases": 103.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.729, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 22.22 + }, + { + "date": "2020-03-13", + "total_cases": 138.0, + "new_cases": 35.0, + "new_cases_smoothed": 13.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.656, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 0.352, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 22.22 + }, + { + "date": "2020-03-14", + "total_cases": 176.0, + "new_cases": 38.0, + "new_cases_smoothed": 17.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.663, + "new_cases_per_million": 1.007, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 24.07 + }, + { + "date": "2020-03-15", + "total_cases": 244.0, + "new_cases": 68.0, + "new_cases_smoothed": 26.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.465, + "new_cases_per_million": 1.802, + "new_cases_smoothed_per_million": 0.708, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 24.07 + }, + { + "date": "2020-03-16", + "total_cases": 304.0, + "new_cases": 60.0, + "new_cases_smoothed": 34.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.055, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.916, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 43.52 + }, + { + "date": "2020-03-17", + "total_cases": 424.0, + "new_cases": 120.0, + "new_cases_smoothed": 49.571, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.234, + "new_cases_per_million": 3.179, + "new_cases_smoothed_per_million": 1.313, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 43.52 + }, + { + "date": "2020-03-18", + "total_cases": 569.0, + "new_cases": 145.0, + "new_cases_smoothed": 68.0, + "total_deaths": 8.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 15.076, + "new_cases_per_million": 3.842, + "new_cases_smoothed_per_million": 1.802, + "total_deaths_per_million": 0.212, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.026, + "total_tests": 53975.0, + "total_tests_per_thousand": 1.43, + "tests_units": "people tested", + "stringency_index": 61.11 + }, + { + "date": "2020-03-19", + "total_cases": 690.0, + "new_cases": 121.0, + "new_cases_smoothed": 83.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 18.282, + "new_cases_per_million": 3.206, + "new_cases_smoothed_per_million": 2.222, + "total_deaths_per_million": 0.238, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 981.0, + "total_tests": 54956.0, + "total_tests_per_thousand": 1.456, + "new_tests_per_thousand": 0.026, + "tests_units": "people tested", + "stringency_index": 61.11 + }, + { + "date": "2020-03-20", + "total_cases": 846.0, + "new_cases": 156.0, + "new_cases_smoothed": 101.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 22.415, + "new_cases_per_million": 4.133, + "new_cases_smoothed_per_million": 2.68, + "total_deaths_per_million": 0.265, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 21858.0, + "total_tests": 76814.0, + "total_tests_per_thousand": 2.035, + "new_tests_per_thousand": 0.579, + "tests_units": "people tested", + "stringency_index": 71.3 + }, + { + "date": "2020-03-21", + "total_cases": 971.0, + "new_cases": 125.0, + "new_cases_smoothed": 113.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 25.727, + "new_cases_per_million": 3.312, + "new_cases_smoothed_per_million": 3.009, + "total_deaths_per_million": 0.318, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 12069.0, + "total_tests": 88883.0, + "total_tests_per_thousand": 2.355, + "new_tests_per_thousand": 0.32, + "tests_units": "people tested", + "stringency_index": 71.3 + }, + { + "date": "2020-03-22", + "total_cases": 1302.0, + "new_cases": 331.0, + "new_cases_smoothed": 151.143, + "total_deaths": 18.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 34.497, + "new_cases_per_million": 8.77, + "new_cases_smoothed_per_million": 4.005, + "total_deaths_per_million": 0.477, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 9941.0, + "total_tests": 98824.0, + "total_tests_per_thousand": 2.618, + "new_tests_per_thousand": 0.263, + "tests_units": "people tested", + "stringency_index": 71.3 + }, + { + "date": "2020-03-23", + "total_cases": 1430.0, + "new_cases": 128.0, + "new_cases_smoothed": 160.857, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 37.889, + "new_cases_per_million": 3.391, + "new_cases_smoothed_per_million": 4.262, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 8323.0, + "total_tests": 107147.0, + "total_tests_per_thousand": 2.839, + "new_tests_per_thousand": 0.221, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-24", + "total_cases": 1646.0, + "new_cases": 216.0, + "new_cases_smoothed": 174.571, + "total_deaths": 24.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 43.612, + "new_cases_per_million": 5.723, + "new_cases_smoothed_per_million": 4.625, + "total_deaths_per_million": 0.636, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 17915.0, + "total_tests": 125062.0, + "total_tests_per_thousand": 3.314, + "new_tests_per_thousand": 0.475, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-25", + "total_cases": 1959.0, + "new_cases": 313.0, + "new_cases_smoothed": 198.571, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 51.905, + "new_cases_per_million": 8.293, + "new_cases_smoothed_per_million": 5.261, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 17092.0, + "total_tests": 142154.0, + "total_tests_per_thousand": 3.766, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 12597.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 63.438, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-26", + "total_cases": 3385.0, + "new_cases": 1426.0, + "new_cases_smoothed": 385.0, + "total_deaths": 35.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 89.688, + "new_cases_per_million": 37.783, + "new_cases_smoothed_per_million": 10.201, + "total_deaths_per_million": 0.927, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 19449.0, + "total_tests": 161603.0, + "total_tests_per_thousand": 4.282, + "new_tests_per_thousand": 0.515, + "new_tests_smoothed": 15235.0, + "new_tests_smoothed_per_thousand": 0.404, + "tests_per_case": 39.571, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-27", + "total_cases": 4018.0, + "new_cases": 633.0, + "new_cases_smoothed": 453.143, + "total_deaths": 39.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 106.459, + "new_cases_per_million": 16.772, + "new_cases_smoothed_per_million": 12.006, + "total_deaths_per_million": 1.033, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 9041.0, + "total_tests": 170644.0, + "total_tests_per_thousand": 4.521, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 13404.0, + "new_tests_smoothed_per_thousand": 0.355, + "tests_per_case": 29.58, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-28", + "total_cases": 4675.0, + "new_cases": 657.0, + "new_cases_smoothed": 529.143, + "total_deaths": 53.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 123.867, + "new_cases_per_million": 17.408, + "new_cases_smoothed_per_million": 14.02, + "total_deaths_per_million": 1.404, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 13557.0, + "total_tests": 184201.0, + "total_tests_per_thousand": 4.881, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 13617.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 25.734, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-29", + "total_cases": 5386.0, + "new_cases": 711.0, + "new_cases_smoothed": 583.429, + "total_deaths": 60.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 142.705, + "new_cases_per_million": 18.838, + "new_cases_smoothed_per_million": 15.458, + "total_deaths_per_million": 1.59, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 26234.0, + "total_tests": 210435.0, + "total_tests_per_thousand": 5.576, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 15944.0, + "new_tests_smoothed_per_thousand": 0.422, + "tests_per_case": 27.328000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-30", + "total_cases": 6255.0, + "new_cases": 869.0, + "new_cases_smoothed": 689.286, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 165.73, + "new_cases_per_million": 23.025, + "new_cases_smoothed_per_million": 18.263, + "total_deaths_per_million": 1.616, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 30703.0, + "total_tests": 241138.0, + "total_tests_per_thousand": 6.389, + "new_tests_per_thousand": 0.813, + "new_tests_smoothed": 19142.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 27.771, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-03-31", + "total_cases": 7424.0, + "new_cases": 1169.0, + "new_cases_smoothed": 825.429, + "total_deaths": 89.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 196.703, + "new_cases_per_million": 30.973, + "new_cases_smoothed_per_million": 21.87, + "total_deaths_per_million": 2.358, + "new_deaths_per_million": 0.742, + "new_deaths_smoothed_per_million": 0.246, + "new_tests_smoothed": 17710.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 21.456, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-01", + "total_cases": 8536.0, + "new_cases": 1112.0, + "new_cases_smoothed": 939.571, + "total_deaths": 96.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 226.166, + "new_cases_per_million": 29.463, + "new_cases_smoothed_per_million": 24.894, + "total_deaths_per_million": 2.544, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.261, + "total_tests": 256933.0, + "total_tests_per_thousand": 6.808, + "new_tests_smoothed": 16397.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 17.452, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-04-02", + "total_cases": 9595.0, + "new_cases": 1059.0, + "new_cases_smoothed": 887.143, + "total_deaths": 109.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 254.225, + "new_cases_per_million": 28.059, + "new_cases_smoothed_per_million": 23.505, + "total_deaths_per_million": 2.888, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 11221.0, + "total_tests": 268154.0, + "total_tests_per_thousand": 7.105, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 15222.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 17.158, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-04-03", + "total_cases": 11268.0, + "new_cases": 1673.0, + "new_cases_smoothed": 1035.714, + "total_deaths": 138.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 298.552, + "new_cases_per_million": 44.327, + "new_cases_smoothed_per_million": 27.442, + "total_deaths_per_million": 3.656, + "new_deaths_per_million": 0.768, + "new_deaths_smoothed_per_million": 0.375, + "new_tests": 26911.0, + "total_tests": 295065.0, + "total_tests_per_thousand": 7.818, + "new_tests_per_thousand": 0.713, + "new_tests_smoothed": 17774.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 17.160999999999998, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-04-04", + "total_cases": 12519.0, + "new_cases": 1251.0, + "new_cases_smoothed": 1120.571, + "total_deaths": 187.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 331.698, + "new_cases_per_million": 33.146, + "new_cases_smoothed_per_million": 29.69, + "total_deaths_per_million": 4.955, + "new_deaths_per_million": 1.298, + "new_deaths_smoothed_per_million": 0.507, + "new_tests": 16906.0, + "total_tests": 311971.0, + "total_tests_per_thousand": 8.266, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 18253.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 16.289, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-05", + "total_cases": 13882.0, + "new_cases": 1363.0, + "new_cases_smoothed": 1213.714, + "total_deaths": 231.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 367.812, + "new_cases_per_million": 36.113, + "new_cases_smoothed_per_million": 32.158, + "total_deaths_per_million": 6.12, + "new_deaths_per_million": 1.166, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 22878.0, + "total_tests": 334849.0, + "total_tests_per_thousand": 8.872, + "new_tests_per_thousand": 0.606, + "new_tests_smoothed": 17773.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 14.642999999999999, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-06", + "total_cases": 15496.0, + "new_cases": 1614.0, + "new_cases_smoothed": 1320.143, + "total_deaths": 280.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 410.575, + "new_cases_per_million": 42.764, + "new_cases_smoothed_per_million": 34.978, + "total_deaths_per_million": 7.419, + "new_deaths_per_million": 1.298, + "new_deaths_smoothed_per_million": 0.829, + "new_tests": 1957.0, + "total_tests": 336806.0, + "total_tests_per_thousand": 8.924, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 13667.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 10.353, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-07", + "total_cases": 16653.0, + "new_cases": 1157.0, + "new_cases_smoothed": 1318.429, + "total_deaths": 323.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 441.231, + "new_cases_per_million": 30.655, + "new_cases_smoothed_per_million": 34.933, + "total_deaths_per_million": 8.558, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 0.886, + "new_tests": 9701.0, + "total_tests": 346507.0, + "total_tests_per_thousand": 9.181, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 13924.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 10.561, + "positive_rate": 0.095, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-08", + "total_cases": 17883.0, + "new_cases": 1230.0, + "new_cases_smoothed": 1335.286, + "total_deaths": 380.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 473.82, + "new_cases_per_million": 32.59, + "new_cases_smoothed_per_million": 35.379, + "total_deaths_per_million": 10.068, + "new_deaths_per_million": 1.51, + "new_deaths_smoothed_per_million": 1.075, + "new_tests": 12762.0, + "total_tests": 359269.0, + "total_tests_per_thousand": 9.519, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 14619.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 10.948, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-09", + "total_cases": 19274.0, + "new_cases": 1391.0, + "new_cases_smoothed": 1382.714, + "total_deaths": 435.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 46.571, + "total_cases_per_million": 510.676, + "new_cases_per_million": 36.855, + "new_cases_smoothed_per_million": 36.636, + "total_deaths_per_million": 11.526, + "new_deaths_per_million": 1.457, + "new_deaths_smoothed_per_million": 1.234, + "new_tests": 14312.0, + "total_tests": 373581.0, + "total_tests_per_thousand": 9.898, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 15061.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 10.892000000000001, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-10", + "total_cases": 20748.0, + "new_cases": 1474.0, + "new_cases_smoothed": 1354.286, + "total_deaths": 509.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 53.0, + "total_cases_per_million": 549.73, + "new_cases_per_million": 39.054, + "new_cases_smoothed_per_million": 35.883, + "total_deaths_per_million": 13.486, + "new_deaths_per_million": 1.961, + "new_deaths_smoothed_per_million": 1.404, + "new_tests": 9741.0, + "total_tests": 383322.0, + "total_tests_per_thousand": 10.156, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 12608.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 9.31, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-11", + "total_cases": 22133.0, + "new_cases": 1385.0, + "new_cases_smoothed": 1373.429, + "total_deaths": 569.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 54.571, + "total_cases_per_million": 586.426, + "new_cases_per_million": 36.696, + "new_cases_smoothed_per_million": 36.39, + "total_deaths_per_million": 15.076, + "new_deaths_per_million": 1.59, + "new_deaths_smoothed_per_million": 1.446, + "new_tests": 18230.0, + "total_tests": 401552.0, + "total_tests_per_thousand": 10.639, + "new_tests_per_thousand": 0.483, + "new_tests_smoothed": 12797.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 9.318, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-12", + "total_cases": 23301.0, + "new_cases": 1168.0, + "new_cases_smoothed": 1345.571, + "total_deaths": 653.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 60.286, + "total_cases_per_million": 617.373, + "new_cases_per_million": 30.947, + "new_cases_smoothed_per_million": 35.652, + "total_deaths_per_million": 17.302, + "new_deaths_per_million": 2.226, + "new_deaths_smoothed_per_million": 1.597, + "new_tests": 3099.0, + "total_tests": 404651.0, + "total_tests_per_thousand": 10.721, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 9972.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 7.4110000000000005, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-13", + "total_cases": 24365.0, + "new_cases": 1064.0, + "new_cases_smoothed": 1267.0, + "total_deaths": 717.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 62.429, + "total_cases_per_million": 645.565, + "new_cases_per_million": 28.191, + "new_cases_smoothed_per_million": 33.57, + "total_deaths_per_million": 18.997, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.654, + "new_tests": 24269.0, + "total_tests": 428920.0, + "total_tests_per_thousand": 11.364, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 13159.0, + "new_tests_smoothed_per_thousand": 0.349, + "tests_per_case": 10.386, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-14", + "total_cases": 25663.0, + "new_cases": 1298.0, + "new_cases_smoothed": 1287.143, + "total_deaths": 780.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 65.286, + "total_cases_per_million": 679.956, + "new_cases_per_million": 34.391, + "new_cases_smoothed_per_million": 34.104, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 1.669, + "new_deaths_smoothed_per_million": 1.73, + "new_tests": 21797.0, + "total_tests": 450717.0, + "total_tests_per_thousand": 11.942, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 14887.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 11.565999999999999, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-15", + "total_cases": 27046.0, + "new_cases": 1383.0, + "new_cases_smoothed": 1309.0, + "total_deaths": 903.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 74.714, + "total_cases_per_million": 716.599, + "new_cases_per_million": 36.643, + "new_cases_smoothed_per_million": 34.683, + "total_deaths_per_million": 23.926, + "new_deaths_per_million": 3.259, + "new_deaths_smoothed_per_million": 1.98, + "new_tests": 11636.0, + "total_tests": 462353.0, + "total_tests_per_thousand": 12.25, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 14726.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 11.25, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-16", + "total_cases": 28364.0, + "new_cases": 1318.0, + "new_cases_smoothed": 1298.571, + "total_deaths": 1010.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 82.143, + "total_cases_per_million": 751.52, + "new_cases_per_million": 34.921, + "new_cases_smoothed_per_million": 34.406, + "total_deaths_per_million": 26.761, + "new_deaths_per_million": 2.835, + "new_deaths_smoothed_per_million": 2.176, + "new_tests": 24707.0, + "total_tests": 487060.0, + "total_tests_per_thousand": 12.905, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 16211.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 12.484000000000002, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-17", + "total_cases": 30081.0, + "new_cases": 1717.0, + "new_cases_smoothed": 1333.286, + "total_deaths": 1193.0, + "new_deaths": 183.0, + "new_deaths_smoothed": 97.714, + "total_cases_per_million": 797.013, + "new_cases_per_million": 45.493, + "new_cases_smoothed_per_million": 35.326, + "total_deaths_per_million": 31.609, + "new_deaths_per_million": 4.849, + "new_deaths_smoothed_per_million": 2.589, + "new_tests": 15943.0, + "total_tests": 503003.0, + "total_tests_per_thousand": 13.327, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 17097.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 12.823, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-18", + "total_cases": 31872.0, + "new_cases": 1791.0, + "new_cases_smoothed": 1391.286, + "total_deaths": 1309.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 105.714, + "total_cases_per_million": 844.467, + "new_cases_per_million": 47.454, + "new_cases_smoothed_per_million": 36.863, + "total_deaths_per_million": 34.683, + "new_deaths_per_million": 3.073, + "new_deaths_smoothed_per_million": 2.801, + "new_tests": 13213.0, + "total_tests": 516216.0, + "total_tests_per_thousand": 13.677, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 16381.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 11.774000000000001, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-19", + "total_cases": 33341.0, + "new_cases": 1469.0, + "new_cases_smoothed": 1434.286, + "total_deaths": 1467.0, + "new_deaths": 158.0, + "new_deaths_smoothed": 116.286, + "total_cases_per_million": 883.389, + "new_cases_per_million": 38.922, + "new_cases_smoothed_per_million": 38.002, + "total_deaths_per_million": 38.869, + "new_deaths_per_million": 4.186, + "new_deaths_smoothed_per_million": 3.081, + "new_tests": 19846.0, + "total_tests": 536062.0, + "total_tests_per_thousand": 14.203, + "new_tests_per_thousand": 0.526, + "new_tests_smoothed": 18773.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 13.089, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-20", + "total_cases": 34777.0, + "new_cases": 1436.0, + "new_cases_smoothed": 1487.429, + "total_deaths": 1580.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 123.286, + "total_cases_per_million": 921.436, + "new_cases_per_million": 38.048, + "new_cases_smoothed_per_million": 39.41, + "total_deaths_per_million": 41.863, + "new_deaths_per_million": 2.994, + "new_deaths_smoothed_per_million": 3.267, + "new_tests": 19489.0, + "total_tests": 555551.0, + "total_tests_per_thousand": 14.72, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 18090.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 12.162, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-21", + "total_cases": 36823.0, + "new_cases": 2046.0, + "new_cases_smoothed": 1594.286, + "total_deaths": 1690.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 130.0, + "total_cases_per_million": 975.646, + "new_cases_per_million": 54.21, + "new_cases_smoothed_per_million": 42.242, + "total_deaths_per_million": 44.778, + "new_deaths_per_million": 2.915, + "new_deaths_smoothed_per_million": 3.444, + "new_tests": 10380.0, + "total_tests": 565931.0, + "total_tests_per_thousand": 14.995, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 16459.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 10.324000000000002, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-22", + "total_cases": 38413.0, + "new_cases": 1590.0, + "new_cases_smoothed": 1623.857, + "total_deaths": 1834.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 133.0, + "total_cases_per_million": 1017.774, + "new_cases_per_million": 42.128, + "new_cases_smoothed_per_million": 43.025, + "total_deaths_per_million": 48.593, + "new_deaths_per_million": 3.815, + "new_deaths_smoothed_per_million": 3.524, + "new_tests": 10417.0, + "total_tests": 576348.0, + "total_tests_per_thousand": 15.271, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 16285.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 10.029, + "positive_rate": 0.1, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-23", + "total_cases": 40179.0, + "new_cases": 1766.0, + "new_cases_smoothed": 1687.857, + "total_deaths": 1974.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 137.714, + "total_cases_per_million": 1064.566, + "new_cases_per_million": 46.791, + "new_cases_smoothed_per_million": 44.721, + "total_deaths_per_million": 52.302, + "new_deaths_per_million": 3.709, + "new_deaths_smoothed_per_million": 3.649, + "new_tests": 43753.0, + "total_tests": 620101.0, + "total_tests_per_thousand": 16.43, + "new_tests_per_thousand": 1.159, + "new_tests_smoothed": 19006.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 11.26, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-24", + "total_cases": 42099.0, + "new_cases": 1920.0, + "new_cases_smoothed": 1716.857, + "total_deaths": 2146.0, + "new_deaths": 172.0, + "new_deaths_smoothed": 136.143, + "total_cases_per_million": 1115.437, + "new_cases_per_million": 50.871, + "new_cases_smoothed_per_million": 45.489, + "total_deaths_per_million": 56.859, + "new_deaths_per_million": 4.557, + "new_deaths_smoothed_per_million": 3.607, + "new_tests": 23297.0, + "total_tests": 643398.0, + "total_tests_per_thousand": 17.047, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 20056.0, + "new_tests_smoothed_per_thousand": 0.531, + "tests_per_case": 11.682, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-25", + "total_cases": 43877.0, + "new_cases": 1778.0, + "new_cases_smoothed": 1715.0, + "total_deaths": 2302.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 141.857, + "total_cases_per_million": 1162.546, + "new_cases_per_million": 47.109, + "new_cases_smoothed_per_million": 45.44, + "total_deaths_per_million": 60.993, + "new_deaths_per_million": 4.133, + "new_deaths_smoothed_per_million": 3.759, + "new_tests": 26160.0, + "total_tests": 669558.0, + "total_tests_per_thousand": 17.74, + "new_tests_per_thousand": 0.693, + "new_tests_smoothed": 21906.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 12.773, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-26", + "total_cases": 45341.0, + "new_cases": 1464.0, + "new_cases_smoothed": 1714.286, + "total_deaths": 2465.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 142.571, + "total_cases_per_million": 1201.336, + "new_cases_per_million": 38.79, + "new_cases_smoothed_per_million": 45.421, + "total_deaths_per_million": 65.312, + "new_deaths_per_million": 4.319, + "new_deaths_smoothed_per_million": 3.778, + "new_tests": 22105.0, + "total_tests": 691663.0, + "total_tests_per_thousand": 18.326, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 22229.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 12.967, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-27", + "total_cases": 46884.0, + "new_cases": 1543.0, + "new_cases_smoothed": 1729.571, + "total_deaths": 2560.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 140.0, + "total_cases_per_million": 1242.218, + "new_cases_per_million": 40.883, + "new_cases_smoothed_per_million": 45.826, + "total_deaths_per_million": 67.829, + "new_deaths_per_million": 2.517, + "new_deaths_smoothed_per_million": 3.709, + "new_tests": 25788.0, + "total_tests": 717451.0, + "total_tests_per_thousand": 19.009, + "new_tests_per_thousand": 0.683, + "new_tests_smoothed": 23129.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 13.373, + "positive_rate": 0.075, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-28", + "total_cases": 48489.0, + "new_cases": 1605.0, + "new_cases_smoothed": 1666.571, + "total_deaths": 2707.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 145.286, + "total_cases_per_million": 1284.744, + "new_cases_per_million": 42.525, + "new_cases_smoothed_per_million": 44.157, + "total_deaths_per_million": 71.724, + "new_deaths_per_million": 3.895, + "new_deaths_smoothed_per_million": 3.849, + "new_tests": 23408.0, + "total_tests": 740859.0, + "total_tests_per_thousand": 19.629, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 24990.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 14.995, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-29", + "total_cases": 50015.0, + "new_cases": 1526.0, + "new_cases_smoothed": 1657.429, + "total_deaths": 2859.0, + "new_deaths": 152.0, + "new_deaths_smoothed": 146.429, + "total_cases_per_million": 1325.176, + "new_cases_per_million": 40.432, + "new_cases_smoothed_per_million": 43.915, + "total_deaths_per_million": 75.751, + "new_deaths_per_million": 4.027, + "new_deaths_smoothed_per_million": 3.88, + "new_tests": 17553.0, + "total_tests": 758412.0, + "total_tests_per_thousand": 20.095, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 26009.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 15.692, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-04-30", + "total_cases": 51587.0, + "new_cases": 1572.0, + "new_cases_smoothed": 1629.714, + "total_deaths": 2996.0, + "new_deaths": 137.0, + "new_deaths_smoothed": 146.0, + "total_cases_per_million": 1366.827, + "new_cases_per_million": 41.651, + "new_cases_smoothed_per_million": 43.18, + "total_deaths_per_million": 79.381, + "new_deaths_per_million": 3.63, + "new_deaths_smoothed_per_million": 3.868, + "new_tests": 29871.0, + "total_tests": 788283.0, + "total_tests_per_thousand": 20.886, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 24026.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 14.742, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-01", + "total_cases": 53236.0, + "new_cases": 1649.0, + "new_cases_smoothed": 1591.0, + "total_deaths": 3184.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 148.286, + "total_cases_per_million": 1410.518, + "new_cases_per_million": 43.691, + "new_cases_smoothed_per_million": 42.154, + "total_deaths_per_million": 84.362, + "new_deaths_per_million": 4.981, + "new_deaths_smoothed_per_million": 3.929, + "new_tests": 43939.0, + "total_tests": 832222.0, + "total_tests_per_thousand": 22.05, + "new_tests_per_thousand": 1.164, + "new_tests_smoothed": 26975.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 16.955, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-02", + "total_cases": 55061.0, + "new_cases": 1825.0, + "new_cases_smoothed": 1597.714, + "total_deaths": 3391.0, + "new_deaths": 207.0, + "new_deaths_smoothed": 155.571, + "total_cases_per_million": 1458.873, + "new_cases_per_million": 48.354, + "new_cases_smoothed_per_million": 42.332, + "total_deaths_per_million": 89.846, + "new_deaths_per_million": 5.485, + "new_deaths_smoothed_per_million": 4.122, + "new_tests_smoothed": 27614.0, + "new_tests_smoothed_per_thousand": 0.732, + "tests_per_case": 17.283, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-03", + "total_cases": 56714.0, + "new_cases": 1653.0, + "new_cases_smoothed": 1624.714, + "total_deaths": 3566.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 157.286, + "total_cases_per_million": 1502.67, + "new_cases_per_million": 43.797, + "new_cases_smoothed_per_million": 43.048, + "total_deaths_per_million": 94.483, + "new_deaths_per_million": 4.637, + "new_deaths_smoothed_per_million": 4.167, + "total_tests": 893490.0, + "total_tests_per_thousand": 23.674, + "new_tests_smoothed": 28832.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 17.746, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-04", + "total_cases": 59474.0, + "new_cases": 2760.0, + "new_cases_smoothed": 1798.571, + "total_deaths": 3682.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 160.286, + "total_cases_per_million": 1575.798, + "new_cases_per_million": 73.128, + "new_cases_smoothed_per_million": 47.654, + "total_deaths_per_million": 97.557, + "new_deaths_per_million": 3.073, + "new_deaths_smoothed_per_million": 4.247, + "new_tests": 25878.0, + "total_tests": 919368.0, + "total_tests_per_thousand": 24.359, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 28845.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 16.038, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-05", + "total_cases": 60772.0, + "new_cases": 1298.0, + "new_cases_smoothed": 1754.714, + "total_deaths": 3854.0, + "new_deaths": 172.0, + "new_deaths_smoothed": 163.857, + "total_cases_per_million": 1610.189, + "new_cases_per_million": 34.391, + "new_cases_smoothed_per_million": 46.492, + "total_deaths_per_million": 102.114, + "new_deaths_per_million": 4.557, + "new_deaths_smoothed_per_million": 4.341, + "new_tests": 21199.0, + "total_tests": 940567.0, + "total_tests_per_thousand": 24.921, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 28530.0, + "new_tests_smoothed_per_thousand": 0.756, + "tests_per_case": 16.259, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-06", + "total_cases": 62046.0, + "new_cases": 1274.0, + "new_cases_smoothed": 1718.714, + "total_deaths": 4043.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 169.143, + "total_cases_per_million": 1643.944, + "new_cases_per_million": 33.755, + "new_cases_smoothed_per_million": 45.538, + "total_deaths_per_million": 107.122, + "new_deaths_per_million": 5.008, + "new_deaths_smoothed_per_million": 4.482, + "new_tests": 1959.0, + "total_tests": 942526.0, + "total_tests_per_thousand": 24.973, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 26302.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 15.302999999999999, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-07", + "total_cases": 63496.0, + "new_cases": 1450.0, + "new_cases_smoothed": 1701.286, + "total_deaths": 4232.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 176.571, + "total_cases_per_million": 1682.363, + "new_cases_per_million": 38.419, + "new_cases_smoothed_per_million": 45.077, + "total_deaths_per_million": 112.129, + "new_deaths_per_million": 5.008, + "new_deaths_smoothed_per_million": 4.678, + "new_tests": 59356.0, + "total_tests": 1001882.0, + "total_tests_per_thousand": 26.545, + "new_tests_per_thousand": 1.573, + "new_tests_smoothed": 30514.0, + "new_tests_smoothed_per_thousand": 0.808, + "tests_per_case": 17.936, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-08", + "total_cases": 64922.0, + "new_cases": 1426.0, + "new_cases_smoothed": 1669.429, + "total_deaths": 4408.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 174.857, + "total_cases_per_million": 1720.145, + "new_cases_per_million": 37.783, + "new_cases_smoothed_per_million": 44.232, + "total_deaths_per_million": 116.792, + "new_deaths_per_million": 4.663, + "new_deaths_smoothed_per_million": 4.633, + "new_tests": 30130.0, + "total_tests": 1032012.0, + "total_tests_per_thousand": 27.344, + "new_tests_per_thousand": 0.798, + "new_tests_smoothed": 28541.0, + "new_tests_smoothed_per_thousand": 0.756, + "tests_per_case": 17.096, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-09", + "total_cases": 66434.0, + "new_cases": 1512.0, + "new_cases_smoothed": 1624.714, + "total_deaths": 4569.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 168.286, + "total_cases_per_million": 1760.207, + "new_cases_per_million": 40.061, + "new_cases_smoothed_per_million": 43.048, + "total_deaths_per_million": 121.058, + "new_deaths_per_million": 4.266, + "new_deaths_smoothed_per_million": 4.459, + "new_tests": 35583.0, + "total_tests": 1067595.0, + "total_tests_per_thousand": 28.287, + "new_tests_per_thousand": 0.943, + "new_tests_smoothed": 29248.0, + "new_tests_smoothed_per_thousand": 0.775, + "tests_per_case": 18.002, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-10", + "total_cases": 67702.0, + "new_cases": 1268.0, + "new_cases_smoothed": 1569.714, + "total_deaths": 4693.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 161.0, + "total_cases_per_million": 1793.803, + "new_cases_per_million": 33.596, + "new_cases_smoothed_per_million": 41.59, + "total_deaths_per_million": 124.344, + "new_deaths_per_million": 3.285, + "new_deaths_smoothed_per_million": 4.266, + "new_tests": 25633.0, + "total_tests": 1093228.0, + "total_tests_per_thousand": 28.966, + "new_tests_per_thousand": 0.679, + "new_tests_smoothed": 28534.0, + "new_tests_smoothed_per_thousand": 0.756, + "tests_per_case": 18.178, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-05-11", + "total_cases": 68848.0, + "new_cases": 1146.0, + "new_cases_smoothed": 1339.143, + "total_deaths": 4871.0, + "new_deaths": 178.0, + "new_deaths_smoothed": 169.857, + "total_cases_per_million": 1824.167, + "new_cases_per_million": 30.364, + "new_cases_smoothed_per_million": 35.481, + "total_deaths_per_million": 129.06, + "new_deaths_per_million": 4.716, + "new_deaths_smoothed_per_million": 4.5, + "new_tests": 25722.0, + "total_tests": 1118950.0, + "total_tests_per_thousand": 29.647, + "new_tests_per_thousand": 0.682, + "new_tests_smoothed": 28512.0, + "new_tests_smoothed_per_thousand": 0.755, + "tests_per_case": 21.291, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-12", + "total_cases": 69981.0, + "new_cases": 1133.0, + "new_cases_smoothed": 1315.571, + "total_deaths": 4993.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 162.714, + "total_cases_per_million": 1854.187, + "new_cases_per_million": 30.019, + "new_cases_smoothed_per_million": 34.857, + "total_deaths_per_million": 132.292, + "new_deaths_per_million": 3.232, + "new_deaths_smoothed_per_million": 4.311, + "new_tests": 26733.0, + "total_tests": 1145683.0, + "total_tests_per_thousand": 30.356, + "new_tests_per_thousand": 0.708, + "new_tests_smoothed": 29302.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 22.273000000000003, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-13", + "total_cases": 71157.0, + "new_cases": 1176.0, + "new_cases_smoothed": 1301.571, + "total_deaths": 5169.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 160.857, + "total_cases_per_million": 1885.345, + "new_cases_per_million": 31.159, + "new_cases_smoothed_per_million": 34.486, + "total_deaths_per_million": 136.956, + "new_deaths_per_million": 4.663, + "new_deaths_smoothed_per_million": 4.262, + "new_tests": 23697.0, + "total_tests": 1169380.0, + "total_tests_per_thousand": 30.983, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 32408.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 24.899, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-14", + "total_cases": 72278.0, + "new_cases": 1121.0, + "new_cases_smoothed": 1254.571, + "total_deaths": 5304.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 153.143, + "total_cases_per_million": 1915.047, + "new_cases_per_million": 29.702, + "new_cases_smoothed_per_million": 33.241, + "total_deaths_per_million": 140.533, + "new_deaths_per_million": 3.577, + "new_deaths_smoothed_per_million": 4.058, + "new_tests": 3416.0, + "total_tests": 1172796.0, + "total_tests_per_thousand": 31.074, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 24416.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 19.462, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-15", + "total_cases": 73401.0, + "new_cases": 1123.0, + "new_cases_smoothed": 1211.286, + "total_deaths": 5472.0, + "new_deaths": 168.0, + "new_deaths_smoothed": 152.0, + "total_cases_per_million": 1944.801, + "new_cases_per_million": 29.755, + "new_cases_smoothed_per_million": 32.094, + "total_deaths_per_million": 144.984, + "new_deaths_per_million": 4.451, + "new_deaths_smoothed_per_million": 4.027, + "new_tests": 60116.0, + "total_tests": 1232912.0, + "total_tests_per_thousand": 32.667, + "new_tests_per_thousand": 1.593, + "new_tests_smoothed": 28700.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 23.694000000000003, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-16", + "total_cases": 74602.0, + "new_cases": 1201.0, + "new_cases_smoothed": 1166.857, + "total_deaths": 5562.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 141.857, + "total_cases_per_million": 1976.623, + "new_cases_per_million": 31.821, + "new_cases_smoothed_per_million": 30.917, + "total_deaths_per_million": 147.368, + "new_deaths_per_million": 2.385, + "new_deaths_smoothed_per_million": 3.759, + "new_tests": 32590.0, + "total_tests": 1265502.0, + "total_tests_per_thousand": 33.53, + "new_tests_per_thousand": 0.863, + "new_tests_smoothed": 28272.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 24.229, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-17", + "total_cases": 75853.0, + "new_cases": 1251.0, + "new_cases_smoothed": 1164.429, + "total_deaths": 5679.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 140.857, + "total_cases_per_million": 2009.769, + "new_cases_per_million": 33.146, + "new_cases_smoothed_per_million": 30.852, + "total_deaths_per_million": 150.468, + "new_deaths_per_million": 3.1, + "new_deaths_smoothed_per_million": 3.732, + "new_tests": 31193.0, + "total_tests": 1296695.0, + "total_tests_per_thousand": 34.357, + "new_tests_per_thousand": 0.826, + "new_tests_smoothed": 29067.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 24.962, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-18", + "total_cases": 76991.0, + "new_cases": 1138.0, + "new_cases_smoothed": 1163.286, + "total_deaths": 5782.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 130.143, + "total_cases_per_million": 2039.921, + "new_cases_per_million": 30.152, + "new_cases_smoothed_per_million": 30.822, + "total_deaths_per_million": 153.197, + "new_deaths_per_million": 2.729, + "new_deaths_smoothed_per_million": 3.448, + "new_tests": 23292.0, + "total_tests": 1319987.0, + "total_tests_per_thousand": 34.974, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 28720.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 24.689, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-19", + "total_cases": 78061.0, + "new_cases": 1070.0, + "new_cases_smoothed": 1154.286, + "total_deaths": 5842.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 121.286, + "total_cases_per_million": 2068.271, + "new_cases_per_million": 28.35, + "new_cases_smoothed_per_million": 30.583, + "total_deaths_per_million": 154.787, + "new_deaths_per_million": 1.59, + "new_deaths_smoothed_per_million": 3.214, + "new_tests": 16980.0, + "total_tests": 1336967.0, + "total_tests_per_thousand": 35.424, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 27326.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 23.674, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-20", + "total_cases": 79101.0, + "new_cases": 1040.0, + "new_cases_smoothed": 1134.857, + "total_deaths": 5912.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 106.143, + "total_cases_per_million": 2095.826, + "new_cases_per_million": 27.555, + "new_cases_smoothed_per_million": 30.069, + "total_deaths_per_million": 156.642, + "new_deaths_per_million": 1.855, + "new_deaths_smoothed_per_million": 2.812, + "new_tests": 35962.0, + "total_tests": 1372929.0, + "total_tests_per_thousand": 36.377, + "new_tests_per_thousand": 0.953, + "new_tests_smoothed": 29078.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 25.623, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-21", + "total_cases": 80091.0, + "new_cases": 990.0, + "new_cases_smoothed": 1116.143, + "total_deaths": 6030.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 103.714, + "total_cases_per_million": 2122.057, + "new_cases_per_million": 26.231, + "new_cases_smoothed_per_million": 29.573, + "total_deaths_per_million": 159.768, + "new_deaths_per_million": 3.126, + "new_deaths_smoothed_per_million": 2.748, + "new_tests": 2121.0, + "total_tests": 1375050.0, + "total_tests_per_thousand": 36.433, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 28893.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 25.886, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-22", + "total_cases": 81313.0, + "new_cases": 1222.0, + "new_cases_smoothed": 1130.286, + "total_deaths": 6152.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 97.143, + "total_cases_per_million": 2154.434, + "new_cases_per_million": 32.378, + "new_cases_smoothed_per_million": 29.948, + "total_deaths_per_million": 163.001, + "new_deaths_per_million": 3.232, + "new_deaths_smoothed_per_million": 2.574, + "new_tests": 26514.0, + "total_tests": 1401564.0, + "total_tests_per_thousand": 37.135, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 24093.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 21.316, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-23", + "total_cases": 82469.0, + "new_cases": 1156.0, + "new_cases_smoothed": 1123.857, + "total_deaths": 6250.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 98.286, + "total_cases_per_million": 2185.063, + "new_cases_per_million": 30.629, + "new_cases_smoothed_per_million": 29.777, + "total_deaths_per_million": 165.597, + "new_deaths_per_million": 2.597, + "new_deaths_smoothed_per_million": 2.604, + "new_tests": 30347.0, + "total_tests": 1431911.0, + "total_tests_per_thousand": 37.939, + "new_tests_per_thousand": 0.804, + "new_tests_smoothed": 23773.0, + "new_tests_smoothed_per_thousand": 0.63, + "tests_per_case": 21.153000000000002, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-24", + "total_cases": 83610.0, + "new_cases": 1141.0, + "new_cases_smoothed": 1108.143, + "total_deaths": 6355.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 96.571, + "total_cases_per_million": 2215.295, + "new_cases_per_million": 30.231, + "new_cases_smoothed_per_million": 29.361, + "total_deaths_per_million": 168.379, + "new_deaths_per_million": 2.782, + "new_deaths_smoothed_per_million": 2.559, + "new_tests": 22979.0, + "total_tests": 1454890.0, + "total_tests_per_thousand": 38.548, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 22599.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 20.394000000000002, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-25", + "total_cases": 84688.0, + "new_cases": 1078.0, + "new_cases_smoothed": 1099.571, + "total_deaths": 6424.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 91.714, + "total_cases_per_million": 2243.857, + "new_cases_per_million": 28.562, + "new_cases_smoothed_per_million": 29.134, + "total_deaths_per_million": 170.208, + "new_deaths_per_million": 1.828, + "new_deaths_smoothed_per_million": 2.43, + "new_tests": 24872.0, + "total_tests": 1479762.0, + "total_tests_per_thousand": 39.207, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 22825.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 20.758000000000003, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-26", + "total_cases": 85700.0, + "new_cases": 1012.0, + "new_cases_smoothed": 1091.286, + "total_deaths": 6545.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 100.429, + "total_cases_per_million": 2270.67, + "new_cases_per_million": 26.814, + "new_cases_smoothed_per_million": 28.914, + "total_deaths_per_million": 173.414, + "new_deaths_per_million": 3.206, + "new_deaths_smoothed_per_million": 2.661, + "new_tests": 20719.0, + "total_tests": 1500481.0, + "total_tests_per_thousand": 39.756, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 23359.0, + "new_tests_smoothed_per_thousand": 0.619, + "tests_per_case": 21.405, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-27", + "total_cases": 86636.0, + "new_cases": 936.0, + "new_cases_smoothed": 1076.429, + "total_deaths": 6639.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 103.857, + "total_cases_per_million": 2295.47, + "new_cases_per_million": 24.8, + "new_cases_smoothed_per_million": 28.521, + "total_deaths_per_million": 175.904, + "new_deaths_per_million": 2.491, + "new_deaths_smoothed_per_million": 2.752, + "new_tests": 27758.0, + "total_tests": 1528239.0, + "total_tests_per_thousand": 40.492, + "new_tests_per_thousand": 0.735, + "new_tests_smoothed": 22187.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 20.612, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-28", + "total_cases": 87508.0, + "new_cases": 872.0, + "new_cases_smoothed": 1059.571, + "total_deaths": 6765.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 105.0, + "total_cases_per_million": 2318.574, + "new_cases_per_million": 23.104, + "new_cases_smoothed_per_million": 28.074, + "total_deaths_per_million": 179.243, + "new_deaths_per_million": 3.338, + "new_deaths_smoothed_per_million": 2.782, + "new_tests": 30965.0, + "total_tests": 1559204.0, + "total_tests_per_thousand": 41.312, + "new_tests_per_thousand": 0.82, + "new_tests_smoothed": 26308.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 24.829, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-29", + "total_cases": 88501.0, + "new_cases": 993.0, + "new_cases_smoothed": 1026.857, + "total_deaths": 6877.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 103.571, + "total_cases_per_million": 2344.885, + "new_cases_per_million": 26.31, + "new_cases_smoothed_per_million": 27.207, + "total_deaths_per_million": 182.21, + "new_deaths_per_million": 2.968, + "new_deaths_smoothed_per_million": 2.744, + "new_tests": 34173.0, + "total_tests": 1593377.0, + "total_tests_per_thousand": 42.217, + "new_tests_per_thousand": 0.905, + "new_tests_smoothed": 27402.0, + "new_tests_smoothed_per_thousand": 0.726, + "tests_per_case": 26.685, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-30", + "total_cases": 89407.0, + "new_cases": 906.0, + "new_cases_smoothed": 991.143, + "total_deaths": 6979.0, + "new_deaths": 102.0, + "new_deaths_smoothed": 104.143, + "total_cases_per_million": 2368.89, + "new_cases_per_million": 24.005, + "new_cases_smoothed_per_million": 26.261, + "total_deaths_per_million": 184.913, + "new_deaths_per_million": 2.703, + "new_deaths_smoothed_per_million": 2.759, + "new_tests": 37797.0, + "total_tests": 1631174.0, + "total_tests_per_thousand": 43.219, + "new_tests_per_thousand": 1.001, + "new_tests_smoothed": 28466.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 28.72, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-05-31", + "total_cases": 90179.0, + "new_cases": 772.0, + "new_cases_smoothed": 938.429, + "total_deaths": 7073.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 102.571, + "total_cases_per_million": 2389.344, + "new_cases_per_million": 20.455, + "new_cases_smoothed_per_million": 24.864, + "total_deaths_per_million": 187.403, + "new_deaths_per_million": 2.491, + "new_deaths_smoothed_per_million": 2.718, + "new_tests": 31868.0, + "total_tests": 1663042.0, + "total_tests_per_thousand": 44.063, + "new_tests_per_thousand": 0.844, + "new_tests_smoothed": 29736.0, + "new_tests_smoothed_per_thousand": 0.788, + "tests_per_case": 31.686999999999998, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-01", + "total_cases": 90936.0, + "new_cases": 757.0, + "new_cases_smoothed": 892.571, + "total_deaths": 7295.0, + "new_deaths": 222.0, + "new_deaths_smoothed": 124.429, + "total_cases_per_million": 2409.401, + "new_cases_per_million": 20.057, + "new_cases_smoothed_per_million": 23.649, + "total_deaths_per_million": 193.285, + "new_deaths_per_million": 5.882, + "new_deaths_smoothed_per_million": 3.297, + "new_tests": 28255.0, + "total_tests": 1691297.0, + "total_tests_per_thousand": 44.812, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 30219.0, + "new_tests_smoothed_per_thousand": 0.801, + "tests_per_case": 33.856, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-02", + "total_cases": 91694.0, + "new_cases": 758.0, + "new_cases_smoothed": 856.286, + "total_deaths": 7326.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 111.571, + "total_cases_per_million": 2429.485, + "new_cases_per_million": 20.084, + "new_cases_smoothed_per_million": 22.688, + "total_deaths_per_million": 194.107, + "new_deaths_per_million": 0.821, + "new_deaths_smoothed_per_million": 2.956, + "new_tests": 30138.0, + "total_tests": 1721435.0, + "total_tests_per_thousand": 45.61, + "new_tests_per_thousand": 0.799, + "new_tests_smoothed": 31565.0, + "new_tests_smoothed_per_thousand": 0.836, + "tests_per_case": 36.863, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-03", + "total_cases": 92399.0, + "new_cases": 705.0, + "new_cases_smoothed": 823.286, + "total_deaths": 7395.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 108.0, + "total_cases_per_million": 2448.164, + "new_cases_per_million": 18.679, + "new_cases_smoothed_per_million": 21.813, + "total_deaths_per_million": 195.935, + "new_deaths_per_million": 1.828, + "new_deaths_smoothed_per_million": 2.862, + "new_tests": 30112.0, + "total_tests": 1751547.0, + "total_tests_per_thousand": 46.408, + "new_tests_per_thousand": 0.798, + "new_tests_smoothed": 31901.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 38.748000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-04", + "total_cases": 93074.0, + "new_cases": 675.0, + "new_cases_smoothed": 795.143, + "total_deaths": 7498.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 104.714, + "total_cases_per_million": 2466.049, + "new_cases_per_million": 17.885, + "new_cases_smoothed_per_million": 21.068, + "total_deaths_per_million": 198.664, + "new_deaths_per_million": 2.729, + "new_deaths_smoothed_per_million": 2.774, + "new_tests": 35823.0, + "total_tests": 1787370.0, + "total_tests_per_thousand": 47.357, + "new_tests_per_thousand": 0.949, + "new_tests_smoothed": 32595.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 40.993, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-05", + "total_cases": 93715.0, + "new_cases": 641.0, + "new_cases_smoothed": 744.857, + "total_deaths": 7637.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 108.571, + "total_cases_per_million": 2483.032, + "new_cases_per_million": 16.984, + "new_cases_smoothed_per_million": 19.735, + "total_deaths_per_million": 202.347, + "new_deaths_per_million": 3.683, + "new_deaths_smoothed_per_million": 2.877, + "new_tests": 37411.0, + "total_tests": 1824781.0, + "total_tests_per_thousand": 48.349, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 33058.0, + "new_tests_smoothed_per_thousand": 0.876, + "tests_per_case": 44.382, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-06", + "total_cases": 94324.0, + "new_cases": 609.0, + "new_cases_smoothed": 702.429, + "total_deaths": 7703.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 103.429, + "total_cases_per_million": 2499.168, + "new_cases_per_million": 16.136, + "new_cases_smoothed_per_million": 18.611, + "total_deaths_per_million": 204.095, + "new_deaths_per_million": 1.749, + "new_deaths_smoothed_per_million": 2.74, + "new_tests": 5641.0, + "total_tests": 1830422.0, + "total_tests_per_thousand": 48.498, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 28464.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 40.522, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-07", + "total_cases": 95046.0, + "new_cases": 722.0, + "new_cases_smoothed": 695.286, + "total_deaths": 7773.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 100.0, + "total_cases_per_million": 2518.298, + "new_cases_per_million": 19.13, + "new_cases_smoothed_per_million": 18.422, + "total_deaths_per_million": 205.95, + "new_deaths_per_million": 1.855, + "new_deaths_smoothed_per_million": 2.65, + "new_tests": 37779.0, + "total_tests": 1868201.0, + "total_tests_per_thousand": 49.499, + "new_tests_per_thousand": 1.001, + "new_tests_smoothed": 29308.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 42.152, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-08", + "total_cases": 95688.0, + "new_cases": 642.0, + "new_cases_smoothed": 678.857, + "total_deaths": 7800.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 2535.308, + "new_cases_per_million": 17.01, + "new_cases_smoothed_per_million": 17.987, + "total_deaths_per_million": 206.665, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 1.911, + "new_tests": 28545.0, + "total_tests": 1896746.0, + "total_tests_per_thousand": 50.255, + "new_tests_per_thousand": 0.756, + "new_tests_smoothed": 29350.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 43.233999999999995, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-09", + "total_cases": 96233.0, + "new_cases": 545.0, + "new_cases_smoothed": 648.429, + "total_deaths": 7835.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 72.714, + "total_cases_per_million": 2549.748, + "new_cases_per_million": 14.44, + "new_cases_smoothed_per_million": 17.18, + "total_deaths_per_million": 207.593, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.927, + "new_tests": 33319.0, + "total_tests": 1930065.0, + "total_tests_per_thousand": 51.138, + "new_tests_per_thousand": 0.883, + "new_tests_smoothed": 29804.0, + "new_tests_smoothed_per_thousand": 0.79, + "tests_per_case": 45.963, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-10", + "total_cases": 96642.0, + "new_cases": 409.0, + "new_cases_smoothed": 606.143, + "total_deaths": 7897.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 71.714, + "total_cases_per_million": 2560.585, + "new_cases_per_million": 10.837, + "new_cases_smoothed_per_million": 16.06, + "total_deaths_per_million": 209.236, + "new_deaths_per_million": 1.643, + "new_deaths_smoothed_per_million": 1.9, + "new_tests": 25578.0, + "total_tests": 1955643.0, + "total_tests_per_thousand": 51.816, + "new_tests_per_thousand": 0.678, + "new_tests_smoothed": 29157.0, + "new_tests_smoothed_per_thousand": 0.773, + "tests_per_case": 48.103, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-11", + "total_cases": 97114.0, + "new_cases": 472.0, + "new_cases_smoothed": 577.143, + "total_deaths": 7960.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 66.0, + "total_cases_per_million": 2573.091, + "new_cases_per_million": 12.506, + "new_cases_smoothed_per_million": 15.292, + "total_deaths_per_million": 210.905, + "new_deaths_per_million": 1.669, + "new_deaths_smoothed_per_million": 1.749, + "new_tests": 33536.0, + "total_tests": 1989179.0, + "total_tests_per_thousand": 52.704, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 28830.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 49.953, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-12", + "total_cases": 97519.0, + "new_cases": 405.0, + "new_cases_smoothed": 543.429, + "total_deaths": 7994.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 51.0, + "total_cases_per_million": 2583.822, + "new_cases_per_million": 10.731, + "new_cases_smoothed_per_million": 14.398, + "total_deaths_per_million": 211.806, + "new_deaths_per_million": 0.901, + "new_deaths_smoothed_per_million": 1.351, + "new_tests": 39241.0, + "total_tests": 2028420.0, + "total_tests_per_thousand": 53.744, + "new_tests_per_thousand": 1.04, + "new_tests_smoothed": 29091.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 53.532, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-13", + "total_cases": 97932.0, + "new_cases": 413.0, + "new_cases_smoothed": 515.429, + "total_deaths": 8049.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 2594.764, + "new_cases_per_million": 10.943, + "new_cases_smoothed_per_million": 13.657, + "total_deaths_per_million": 213.263, + "new_deaths_per_million": 1.457, + "new_deaths_smoothed_per_million": 1.31, + "new_tests": 43600.0, + "total_tests": 2072020.0, + "total_tests_per_thousand": 54.899, + "new_tests_per_thousand": 1.155, + "new_tests_smoothed": 34514.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 66.962, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-14", + "total_cases": 98399.0, + "new_cases": 467.0, + "new_cases_smoothed": 479.0, + "total_deaths": 8107.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 47.714, + "total_cases_per_million": 2607.138, + "new_cases_per_million": 12.373, + "new_cases_smoothed_per_million": 12.691, + "total_deaths_per_million": 214.8, + "new_deaths_per_million": 1.537, + "new_deaths_smoothed_per_million": 1.264, + "new_tests": 41828.0, + "total_tests": 2113848.0, + "total_tests_per_thousand": 56.008, + "new_tests_per_thousand": 1.108, + "new_tests_smoothed": 35092.0, + "new_tests_smoothed_per_thousand": 0.93, + "tests_per_case": 73.26100000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-15", + "total_cases": 98776.0, + "new_cases": 377.0, + "new_cases_smoothed": 441.143, + "total_deaths": 8146.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 2617.127, + "new_cases_per_million": 9.989, + "new_cases_smoothed_per_million": 11.688, + "total_deaths_per_million": 215.833, + "new_deaths_per_million": 1.033, + "new_deaths_smoothed_per_million": 1.31, + "new_tests": 38852.0, + "total_tests": 2152700.0, + "total_tests_per_thousand": 57.037, + "new_tests_per_thousand": 1.029, + "new_tests_smoothed": 36565.0, + "new_tests_smoothed_per_thousand": 0.969, + "tests_per_case": 82.887, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-16", + "total_cases": 99136.0, + "new_cases": 360.0, + "new_cases_smoothed": 414.714, + "total_deaths": 8175.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 48.571, + "total_cases_per_million": 2626.665, + "new_cases_per_million": 9.538, + "new_cases_smoothed_per_million": 10.988, + "total_deaths_per_million": 216.601, + "new_deaths_per_million": 0.768, + "new_deaths_smoothed_per_million": 1.287, + "new_tests": 30700.0, + "total_tests": 2183400.0, + "total_tests_per_thousand": 57.85, + "new_tests_per_thousand": 0.813, + "new_tests_smoothed": 36191.0, + "new_tests_smoothed_per_thousand": 0.959, + "tests_per_case": 87.26700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-17", + "total_cases": 99456.0, + "new_cases": 320.0, + "new_cases_smoothed": 402.0, + "total_deaths": 8213.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 45.143, + "total_cases_per_million": 2635.144, + "new_cases_per_million": 8.479, + "new_cases_smoothed_per_million": 10.651, + "total_deaths_per_million": 217.608, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 33254.0, + "total_tests": 2216654.0, + "total_tests_per_thousand": 58.732, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 37287.0, + "new_tests_smoothed_per_thousand": 0.988, + "tests_per_case": 92.75399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-18", + "total_cases": 99842.0, + "new_cases": 386.0, + "new_cases_smoothed": 389.714, + "total_deaths": 8254.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 2645.371, + "new_cases_per_million": 10.227, + "new_cases_smoothed_per_million": 10.326, + "total_deaths_per_million": 218.694, + "new_deaths_per_million": 1.086, + "new_deaths_smoothed_per_million": 1.113, + "new_tests": 37751.0, + "total_tests": 2254405.0, + "total_tests_per_thousand": 59.732, + "new_tests_per_thousand": 1.0, + "new_tests_smoothed": 37889.0, + "new_tests_smoothed_per_thousand": 1.004, + "tests_per_case": 97.223, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-19", + "total_cases": 100209.0, + "new_cases": 367.0, + "new_cases_smoothed": 384.286, + "total_deaths": 8300.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 43.714, + "total_cases_per_million": 2655.095, + "new_cases_per_million": 9.724, + "new_cases_smoothed_per_million": 10.182, + "total_deaths_per_million": 219.913, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.158, + "new_tests": 40959.0, + "total_tests": 2295364.0, + "total_tests_per_thousand": 60.817, + "new_tests_per_thousand": 1.085, + "new_tests_smoothed": 38135.0, + "new_tests_smoothed_per_thousand": 1.01, + "tests_per_case": 99.236, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-20", + "total_cases": 100618.0, + "new_cases": 409.0, + "new_cases_smoothed": 383.714, + "total_deaths": 8346.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 2665.931, + "new_cases_per_million": 10.837, + "new_cases_smoothed_per_million": 10.167, + "total_deaths_per_million": 221.132, + "new_deaths_per_million": 1.219, + "new_deaths_smoothed_per_million": 1.124, + "new_tests": 44123.0, + "total_tests": 2339487.0, + "total_tests_per_thousand": 61.986, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 38210.0, + "new_tests_smoothed_per_thousand": 1.012, + "tests_per_case": 99.579, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-21", + "total_cases": 101008.0, + "new_cases": 390.0, + "new_cases_smoothed": 372.714, + "total_deaths": 8410.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 43.286, + "total_cases_per_million": 2676.265, + "new_cases_per_million": 10.333, + "new_cases_smoothed_per_million": 9.875, + "total_deaths_per_million": 222.828, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.147, + "new_tests": 43218.0, + "total_tests": 2382705.0, + "total_tests_per_thousand": 63.131, + "new_tests_per_thousand": 1.145, + "new_tests_smoothed": 38408.0, + "new_tests_smoothed_per_thousand": 1.018, + "tests_per_case": 103.04899999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-22", + "total_cases": 101326.0, + "new_cases": 318.0, + "new_cases_smoothed": 364.286, + "total_deaths": 8430.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 2684.69, + "new_cases_per_million": 8.426, + "new_cases_smoothed_per_million": 9.652, + "total_deaths_per_million": 223.358, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 1.075, + "new_tests": 32660.0, + "total_tests": 2415365.0, + "total_tests_per_thousand": 63.996, + "new_tests_per_thousand": 0.865, + "new_tests_smoothed": 37524.0, + "new_tests_smoothed_per_thousand": 0.994, + "tests_per_case": 103.007, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-23", + "total_cases": 101637.0, + "new_cases": 311.0, + "new_cases_smoothed": 357.286, + "total_deaths": 8436.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 2692.93, + "new_cases_per_million": 8.24, + "new_cases_smoothed_per_million": 9.466, + "total_deaths_per_million": 223.517, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.988, + "new_tests": 28677.0, + "total_tests": 2444042.0, + "total_tests_per_thousand": 64.756, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 37235.0, + "new_tests_smoothed_per_thousand": 0.987, + "tests_per_case": 104.21600000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-24", + "total_cases": 101963.0, + "new_cases": 326.0, + "new_cases_smoothed": 358.143, + "total_deaths": 8454.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 2701.568, + "new_cases_per_million": 8.638, + "new_cases_smoothed_per_million": 9.489, + "total_deaths_per_million": 223.994, + "new_deaths_per_million": 0.477, + "new_deaths_smoothed_per_million": 0.912, + "new_tests": 38751.0, + "total_tests": 2482793.0, + "total_tests_per_thousand": 65.783, + "new_tests_per_thousand": 1.027, + "new_tests_smoothed": 38020.0, + "new_tests_smoothed_per_thousand": 1.007, + "tests_per_case": 106.15899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-25", + "total_cases": 102242.0, + "new_cases": 279.0, + "new_cases_smoothed": 342.857, + "total_deaths": 8484.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 32.857, + "total_cases_per_million": 2708.96, + "new_cases_per_million": 7.392, + "new_cases_smoothed_per_million": 9.084, + "total_deaths_per_million": 224.788, + "new_deaths_per_million": 0.795, + "new_deaths_smoothed_per_million": 0.871, + "new_tests": 35781.0, + "total_tests": 2518574.0, + "total_tests_per_thousand": 66.731, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 37738.0, + "new_tests_smoothed_per_thousand": 1.0, + "tests_per_case": 110.069, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-26", + "total_cases": 102611.0, + "new_cases": 369.0, + "new_cases_smoothed": 343.143, + "total_deaths": 8504.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 2718.737, + "new_cases_per_million": 9.777, + "new_cases_smoothed_per_million": 9.092, + "total_deaths_per_million": 225.318, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.772, + "new_tests": 39713.0, + "total_tests": 2558287.0, + "total_tests_per_thousand": 67.783, + "new_tests_per_thousand": 1.052, + "new_tests_smoothed": 37560.0, + "new_tests_smoothed_per_thousand": 0.995, + "tests_per_case": 109.459, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-27", + "total_cases": 102783.0, + "new_cases": 172.0, + "new_cases_smoothed": 309.286, + "total_deaths": 8508.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 2723.294, + "new_cases_per_million": 4.557, + "new_cases_smoothed_per_million": 8.195, + "total_deaths_per_million": 225.424, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.613, + "new_tests": 39880.0, + "total_tests": 2598167.0, + "total_tests_per_thousand": 68.84, + "new_tests_per_thousand": 1.057, + "new_tests_smoothed": 36954.0, + "new_tests_smoothed_per_thousand": 0.979, + "tests_per_case": 119.48200000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-28", + "total_cases": 103021.0, + "new_cases": 238.0, + "new_cases_smoothed": 287.571, + "total_deaths": 8516.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 2729.6, + "new_cases_per_million": 6.306, + "new_cases_smoothed_per_million": 7.619, + "total_deaths_per_million": 225.636, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.401, + "new_tests": 42072.0, + "total_tests": 2640239.0, + "total_tests_per_thousand": 69.955, + "new_tests_per_thousand": 1.115, + "new_tests_smoothed": 36791.0, + "new_tests_smoothed_per_thousand": 0.975, + "tests_per_case": 127.93700000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-29", + "total_cases": 103239.0, + "new_cases": 218.0, + "new_cases_smoothed": 273.286, + "total_deaths": 8522.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 2735.376, + "new_cases_per_million": 5.776, + "new_cases_smoothed_per_million": 7.241, + "total_deaths_per_million": 225.795, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 36390.0, + "total_tests": 2676629.0, + "total_tests_per_thousand": 70.919, + "new_tests_per_thousand": 0.964, + "new_tests_smoothed": 37323.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 136.571, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-06-30", + "total_cases": 103907.0, + "new_cases": 668.0, + "new_cases_smoothed": 324.286, + "total_deaths": 8566.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2753.075, + "new_cases_per_million": 17.699, + "new_cases_smoothed_per_million": 8.592, + "total_deaths_per_million": 226.961, + "new_deaths_per_million": 1.166, + "new_deaths_smoothed_per_million": 0.492, + "new_tests": 44980.0, + "total_tests": 2721609.0, + "total_tests_per_thousand": 72.111, + "new_tests_per_thousand": 1.192, + "new_tests_smoothed": 39652.0, + "new_tests_smoothed_per_thousand": 1.051, + "tests_per_case": 122.275, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-01", + "total_cases": 104193.0, + "new_cases": 286.0, + "new_cases_smoothed": 318.571, + "total_deaths": 8591.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 2760.653, + "new_cases_per_million": 7.578, + "new_cases_smoothed_per_million": 8.441, + "total_deaths_per_million": 227.623, + "new_deaths_per_million": 0.662, + "new_deaths_smoothed_per_million": 0.519, + "new_tests": 48468.0, + "total_tests": 2770077.0, + "total_tests_per_thousand": 73.395, + "new_tests_per_thousand": 1.284, + "new_tests_smoothed": 41041.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 128.828, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-02", + "total_cases": 104193.0, + "new_cases": 0.0, + "new_cases_smoothed": 278.714, + "total_deaths": 8591.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2760.653, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.385, + "total_deaths_per_million": 227.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.405, + "new_tests_smoothed": 41507.0, + "new_tests_smoothed_per_thousand": 1.1, + "tests_per_case": 148.923, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-03", + "total_cases": 104760.0, + "new_cases": 567.0, + "new_cases_smoothed": 307.0, + "total_deaths": 8642.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2775.676, + "new_cases_per_million": 15.023, + "new_cases_smoothed_per_million": 8.134, + "total_deaths_per_million": 228.975, + "new_deaths_per_million": 1.351, + "new_deaths_smoothed_per_million": 0.522, + "total_tests": 2848168.0, + "total_tests_per_thousand": 75.464, + "new_tests_smoothed": 41412.0, + "new_tests_smoothed_per_thousand": 1.097, + "tests_per_case": 134.893, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-04", + "total_cases": 105079.0, + "new_cases": 319.0, + "new_cases_smoothed": 328.0, + "total_deaths": 8663.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2784.128, + "new_cases_per_million": 8.452, + "new_cases_smoothed_per_million": 8.691, + "total_deaths_per_million": 229.531, + "new_deaths_per_million": 0.556, + "new_deaths_smoothed_per_million": 0.587, + "new_tests": 37502.0, + "total_tests": 2885670.0, + "total_tests_per_thousand": 76.457, + "new_tests_per_thousand": 0.994, + "new_tests_smoothed": 41072.0, + "new_tests_smoothed_per_thousand": 1.088, + "tests_per_case": 125.22, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-05", + "total_cases": 105305.0, + "new_cases": 226.0, + "new_cases_smoothed": 326.286, + "total_deaths": 8674.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 2790.116, + "new_cases_per_million": 5.988, + "new_cases_smoothed_per_million": 8.645, + "total_deaths_per_million": 229.823, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.598, + "new_tests": 29208.0, + "total_tests": 2914878.0, + "total_tests_per_thousand": 77.231, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 39234.0, + "new_tests_smoothed_per_thousand": 1.04, + "tests_per_case": 120.244, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-06", + "total_cases": 105524.0, + "new_cases": 219.0, + "new_cases_smoothed": 326.429, + "total_deaths": 8684.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 2795.919, + "new_cases_per_million": 5.803, + "new_cases_smoothed_per_million": 8.649, + "total_deaths_per_million": 230.088, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.613, + "new_tests": 25971.0, + "total_tests": 2940849.0, + "total_tests_per_thousand": 77.919, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 37746.0, + "new_tests_smoothed_per_thousand": 1.0, + "tests_per_case": 115.633, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-07", + "total_cases": 105923.0, + "new_cases": 399.0, + "new_cases_smoothed": 288.0, + "total_deaths": 8693.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 2806.49, + "new_cases_per_million": 10.572, + "new_cases_smoothed_per_million": 7.631, + "total_deaths_per_million": 230.326, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 34786.0, + "total_tests": 2975635.0, + "total_tests_per_thousand": 78.841, + "new_tests_per_thousand": 0.922, + "new_tests_smoothed": 36289.0, + "new_tests_smoothed_per_thousand": 0.961, + "tests_per_case": 126.00299999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-08", + "total_cases": 106155.0, + "new_cases": 232.0, + "new_cases_smoothed": 280.286, + "total_deaths": 8711.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 2812.637, + "new_cases_per_million": 6.147, + "new_cases_smoothed_per_million": 7.426, + "total_deaths_per_million": 230.803, + "new_deaths_per_million": 0.477, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 44461.0, + "total_tests": 3020096.0, + "total_tests_per_thousand": 80.019, + "new_tests_per_thousand": 1.178, + "new_tests_smoothed": 35717.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 127.431, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 68.98 + }, + { + "date": "2020-07-09", + "total_cases": 106422.0, + "new_cases": 267.0, + "new_cases_smoothed": 318.429, + "total_deaths": 8737.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 2819.712, + "new_cases_per_million": 7.074, + "new_cases_smoothed_per_million": 8.437, + "total_deaths_per_million": 231.492, + "new_deaths_per_million": 0.689, + "new_deaths_smoothed_per_million": 0.553, + "new_tests": 35169.0, + "total_tests": 3055265.0, + "total_tests_per_thousand": 80.951, + "new_tests_per_thousand": 0.932, + "new_tests_smoothed": 35163.0, + "new_tests_smoothed_per_thousand": 0.932, + "tests_per_case": 110.427, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-10", + "total_cases": 106793.0, + "new_cases": 371.0, + "new_cases_smoothed": 290.429, + "total_deaths": 8749.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2829.542, + "new_cases_per_million": 9.83, + "new_cases_smoothed_per_million": 7.695, + "total_deaths_per_million": 231.81, + "new_deaths_per_million": 0.318, + "new_deaths_smoothed_per_million": 0.405, + "new_tests": 42852.0, + "total_tests": 3098117.0, + "total_tests_per_thousand": 82.086, + "new_tests_per_thousand": 1.135, + "new_tests_smoothed": 35707.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 122.946, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-11", + "total_cases": 107114.0, + "new_cases": 321.0, + "new_cases_smoothed": 290.714, + "total_deaths": 8759.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 2838.047, + "new_cases_per_million": 8.505, + "new_cases_smoothed_per_million": 7.703, + "total_deaths_per_million": 232.075, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 44509.0, + "total_tests": 3142626.0, + "total_tests_per_thousand": 83.266, + "new_tests_per_thousand": 1.179, + "new_tests_smoothed": 36708.0, + "new_tests_smoothed_per_thousand": 0.973, + "tests_per_case": 126.26799999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-12", + "total_cases": 107335.0, + "new_cases": 221.0, + "new_cases_smoothed": 290.0, + "total_deaths": 8773.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 2843.902, + "new_cases_per_million": 5.856, + "new_cases_smoothed_per_million": 7.684, + "total_deaths_per_million": 232.446, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.375, + "new_tests": 40814.0, + "total_tests": 3183440.0, + "total_tests_per_thousand": 84.347, + "new_tests_per_thousand": 1.081, + "new_tests_smoothed": 38366.0, + "new_tests_smoothed_per_thousand": 1.017, + "tests_per_case": 132.297, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-13", + "total_cases": 107579.0, + "new_cases": 244.0, + "new_cases_smoothed": 293.571, + "total_deaths": 8783.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 2850.367, + "new_cases_per_million": 6.465, + "new_cases_smoothed_per_million": 7.778, + "total_deaths_per_million": 232.711, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.375, + "new_tests": 29363.0, + "total_tests": 3212803.0, + "total_tests_per_thousand": 85.125, + "new_tests_per_thousand": 0.778, + "new_tests_smoothed": 38851.0, + "new_tests_smoothed_per_thousand": 1.029, + "tests_per_case": 132.339, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-14", + "total_cases": 108144.0, + "new_cases": 565.0, + "new_cases_smoothed": 317.286, + "total_deaths": 8790.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 2865.337, + "new_cases_per_million": 14.97, + "new_cases_smoothed_per_million": 8.407, + "total_deaths_per_million": 232.896, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 44729.0, + "total_tests": 3257532.0, + "total_tests_per_thousand": 86.31, + "new_tests_per_thousand": 1.185, + "new_tests_smoothed": 40271.0, + "new_tests_smoothed_per_thousand": 1.067, + "tests_per_case": 126.92299999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-15", + "total_cases": 108475.0, + "new_cases": 331.0, + "new_cases_smoothed": 331.429, + "total_deaths": 8798.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 2874.107, + "new_cases_per_million": 8.77, + "new_cases_smoothed_per_million": 8.781, + "total_deaths_per_million": 233.108, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.329, + "new_tests": 44875.0, + "total_tests": 3302407.0, + "total_tests_per_thousand": 87.499, + "new_tests_per_thousand": 1.189, + "new_tests_smoothed": 40330.0, + "new_tests_smoothed_per_thousand": 1.069, + "tests_per_case": 121.685, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-16", + "total_cases": 108816.0, + "new_cases": 341.0, + "new_cases_smoothed": 342.0, + "total_deaths": 8810.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 2883.142, + "new_cases_per_million": 9.035, + "new_cases_smoothed_per_million": 9.061, + "total_deaths_per_million": 233.426, + "new_deaths_per_million": 0.318, + "new_deaths_smoothed_per_million": 0.276, + "new_tests": 39410.0, + "total_tests": 3341817.0, + "total_tests_per_thousand": 88.543, + "new_tests_per_thousand": 1.044, + "new_tests_smoothed": 40936.0, + "new_tests_smoothed_per_thousand": 1.085, + "tests_per_case": 119.696, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-17", + "total_cases": 109253.0, + "new_cases": 437.0, + "new_cases_smoothed": 351.429, + "total_deaths": 8827.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 2894.721, + "new_cases_per_million": 11.579, + "new_cases_smoothed_per_million": 9.311, + "total_deaths_per_million": 233.876, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 45862.0, + "total_tests": 3387679.0, + "total_tests_per_thousand": 89.758, + "new_tests_per_thousand": 1.215, + "new_tests_smoothed": 41366.0, + "new_tests_smoothed_per_thousand": 1.096, + "tests_per_case": 117.708, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-18", + "total_cases": 109658.0, + "new_cases": 405.0, + "new_cases_smoothed": 363.429, + "total_deaths": 8839.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 2905.451, + "new_cases_per_million": 10.731, + "new_cases_smoothed_per_million": 9.629, + "total_deaths_per_million": 234.194, + "new_deaths_per_million": 0.318, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 50286.0, + "total_tests": 3437965.0, + "total_tests_per_thousand": 91.091, + "new_tests_per_thousand": 1.332, + "new_tests_smoothed": 42191.0, + "new_tests_smoothed_per_thousand": 1.118, + "tests_per_case": 116.09200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-19", + "total_cases": 109658.0, + "new_cases": 0.0, + "new_cases_smoothed": 331.857, + "total_deaths": 8839.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2905.451, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.793, + "total_deaths_per_million": 234.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 43763.0, + "total_tests": 3481728.0, + "total_tests_per_thousand": 92.25, + "new_tests_per_thousand": 1.16, + "new_tests_smoothed": 42613.0, + "new_tests_smoothed_per_thousand": 1.129, + "tests_per_case": 128.408, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-20", + "total_cases": 110338.0, + "new_cases": 680.0, + "new_cases_smoothed": 394.143, + "total_deaths": 8852.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 2923.468, + "new_cases_per_million": 18.017, + "new_cases_smoothed_per_million": 10.443, + "total_deaths_per_million": 234.539, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.261, + "new_tests": 38738.0, + "total_tests": 3520466.0, + "total_tests_per_thousand": 93.277, + "new_tests_per_thousand": 1.026, + "new_tests_smoothed": 43952.0, + "new_tests_smoothed_per_thousand": 1.165, + "tests_per_case": 111.51299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-21", + "total_cases": 111113.0, + "new_cases": 775.0, + "new_cases_smoothed": 424.143, + "total_deaths": 8858.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 2944.002, + "new_cases_per_million": 20.534, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 234.698, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 53088.0, + "total_tests": 3573554.0, + "total_tests_per_thousand": 94.683, + "new_tests_per_thousand": 1.407, + "new_tests_smoothed": 45146.0, + "new_tests_smoothed_per_thousand": 1.196, + "tests_per_case": 106.441, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-22", + "total_cases": 111684.0, + "new_cases": 571.0, + "new_cases_smoothed": 458.429, + "total_deaths": 8862.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2959.131, + "new_cases_per_million": 15.129, + "new_cases_smoothed_per_million": 12.146, + "total_deaths_per_million": 234.804, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 43098.0, + "total_tests": 3616652.0, + "total_tests_per_thousand": 95.825, + "new_tests_per_thousand": 1.142, + "new_tests_smoothed": 44892.0, + "new_tests_smoothed_per_thousand": 1.189, + "tests_per_case": 97.926, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-23", + "total_cases": 112227.0, + "new_cases": 543.0, + "new_cases_smoothed": 487.286, + "total_deaths": 8870.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2973.518, + "new_cases_per_million": 14.387, + "new_cases_smoothed_per_million": 12.911, + "total_deaths_per_million": 235.016, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 43126.0, + "total_tests": 3659778.0, + "total_tests_per_thousand": 96.968, + "new_tests_per_thousand": 1.143, + "new_tests_smoothed": 45423.0, + "new_tests_smoothed_per_thousand": 1.204, + "tests_per_case": 93.21600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-24", + "total_cases": 112659.0, + "new_cases": 432.0, + "new_cases_smoothed": 486.571, + "total_deaths": 8874.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 2984.965, + "new_cases_per_million": 11.446, + "new_cases_smoothed_per_million": 12.892, + "total_deaths_per_million": 235.122, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 37544.0, + "total_tests": 3697322.0, + "total_tests_per_thousand": 97.963, + "new_tests_per_thousand": 0.995, + "new_tests_smoothed": 44235.0, + "new_tests_smoothed_per_thousand": 1.172, + "tests_per_case": 90.912, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-25", + "total_cases": 113193.0, + "new_cases": 534.0, + "new_cases_smoothed": 505.0, + "total_deaths": 8881.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2999.113, + "new_cases_per_million": 14.149, + "new_cases_smoothed_per_million": 13.38, + "total_deaths_per_million": 235.307, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 20161.0, + "total_tests": 3717483.0, + "total_tests_per_thousand": 98.497, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 39931.0, + "new_tests_smoothed_per_thousand": 1.058, + "tests_per_case": 79.071, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-26", + "total_cases": 113543.0, + "new_cases": 350.0, + "new_cases_smoothed": 555.0, + "total_deaths": 8885.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3008.387, + "new_cases_per_million": 9.273, + "new_cases_smoothed_per_million": 14.705, + "total_deaths_per_million": 235.413, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 44444.0, + "total_tests": 3761927.0, + "total_tests_per_thousand": 99.674, + "new_tests_per_thousand": 1.178, + "new_tests_smoothed": 40028.0, + "new_tests_smoothed_per_thousand": 1.061, + "tests_per_case": 72.123, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-27", + "total_cases": 113898.0, + "new_cases": 355.0, + "new_cases_smoothed": 508.571, + "total_deaths": 8890.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3017.793, + "new_cases_per_million": 9.406, + "new_cases_smoothed_per_million": 13.475, + "total_deaths_per_million": 235.546, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 102003.0, + "total_tests": 3863930.0, + "total_tests_per_thousand": 102.377, + "new_tests_per_thousand": 2.703, + "new_tests_smoothed": 49066.0, + "new_tests_smoothed_per_thousand": 1.3, + "tests_per_case": 96.478, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-28", + "total_cases": 114597.0, + "new_cases": 699.0, + "new_cases_smoothed": 497.714, + "total_deaths": 8901.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3036.313, + "new_cases_per_million": 18.52, + "new_cases_smoothed_per_million": 13.187, + "total_deaths_per_million": 235.837, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 35262.0, + "total_tests": 3899192.0, + "total_tests_per_thousand": 103.311, + "new_tests_per_thousand": 0.934, + "new_tests_smoothed": 46520.0, + "new_tests_smoothed_per_thousand": 1.233, + "tests_per_case": 93.46700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-29", + "total_cases": 114980.0, + "new_cases": 383.0, + "new_cases_smoothed": 470.857, + "total_deaths": 8912.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 3046.461, + "new_cases_per_million": 10.148, + "new_cases_smoothed_per_million": 12.476, + "total_deaths_per_million": 236.129, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 47373.0, + "total_tests": 3946565.0, + "total_tests_per_thousand": 104.566, + "new_tests_per_thousand": 1.255, + "new_tests_smoothed": 47130.0, + "new_tests_smoothed_per_thousand": 1.249, + "tests_per_case": 100.094, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-30", + "total_cases": 115456.0, + "new_cases": 476.0, + "new_cases_smoothed": 461.286, + "total_deaths": 8917.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 3059.073, + "new_cases_per_million": 12.612, + "new_cases_smoothed_per_million": 12.222, + "total_deaths_per_million": 236.261, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 50060.0, + "total_tests": 3996625.0, + "total_tests_per_thousand": 105.893, + "new_tests_per_thousand": 1.326, + "new_tests_smoothed": 48121.0, + "new_tests_smoothed_per_thousand": 1.275, + "tests_per_case": 104.319, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-31", + "total_cases": 115785.0, + "new_cases": 329.0, + "new_cases_smoothed": 446.571, + "total_deaths": 8929.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3067.79, + "new_cases_per_million": 8.717, + "new_cases_smoothed_per_million": 11.832, + "total_deaths_per_million": 236.579, + "new_deaths_per_million": 0.318, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 53733.0, + "total_tests": 4050358.0, + "total_tests_per_thousand": 107.317, + "new_tests_per_thousand": 1.424, + "new_tests_smoothed": 50434.0, + "new_tests_smoothed_per_thousand": 1.336, + "tests_per_case": 112.936, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-01", + "total_cases": 116298.0, + "new_cases": 513.0, + "new_cases_smoothed": 443.571, + "total_deaths": 8935.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3081.382, + "new_cases_per_million": 13.592, + "new_cases_smoothed_per_million": 11.753, + "total_deaths_per_million": 236.738, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.204, + "new_tests": 48394.0, + "total_tests": 4098752.0, + "total_tests_per_thousand": 108.599, + "new_tests_per_thousand": 1.282, + "new_tests_smoothed": 54467.0, + "new_tests_smoothed_per_thousand": 1.443, + "tests_per_case": 122.792, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-02", + "total_cases": 116585.0, + "new_cases": 287.0, + "new_cases_smoothed": 434.571, + "total_deaths": 8941.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3088.986, + "new_cases_per_million": 7.604, + "new_cases_smoothed_per_million": 11.514, + "total_deaths_per_million": 236.897, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 44707.0, + "total_tests": 4143459.0, + "total_tests_per_thousand": 109.783, + "new_tests_per_thousand": 1.185, + "new_tests_smoothed": 54505.0, + "new_tests_smoothed_per_thousand": 1.444, + "tests_per_case": 125.42200000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-03", + "total_cases": 116870.0, + "new_cases": 285.0, + "new_cases_smoothed": 424.571, + "total_deaths": 8945.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3096.537, + "new_cases_per_million": 7.551, + "new_cases_smoothed_per_million": 11.249, + "total_deaths_per_million": 237.003, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 34736.0, + "total_tests": 4178195.0, + "total_tests_per_thousand": 110.704, + "new_tests_per_thousand": 0.92, + "new_tests_smoothed": 44895.0, + "new_tests_smoothed_per_thousand": 1.19, + "tests_per_case": 105.742, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-04", + "total_cases": 117017.0, + "new_cases": 147.0, + "new_cases_smoothed": 345.714, + "total_deaths": 8947.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3100.432, + "new_cases_per_million": 3.895, + "new_cases_smoothed_per_million": 9.16, + "total_deaths_per_million": 237.056, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 58326.0, + "total_tests": 4236521.0, + "total_tests_per_thousand": 112.249, + "new_tests_per_thousand": 1.545, + "new_tests_smoothed": 48190.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 139.393, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-05", + "total_cases": 117777.0, + "new_cases": 760.0, + "new_cases_smoothed": 399.571, + "total_deaths": 8958.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3120.569, + "new_cases_per_million": 20.137, + "new_cases_smoothed_per_million": 10.587, + "total_deaths_per_million": 237.347, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.174, + "new_tests_smoothed": 44000.0, + "new_tests_smoothed_per_thousand": 1.166, + "tests_per_case": 110.118, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-06", + "total_cases": 118172.0, + "new_cases": 395.0, + "new_cases_smoothed": 388.0, + "total_deaths": 8962.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3131.035, + "new_cases_per_million": 10.466, + "new_cases_smoothed_per_million": 10.28, + "total_deaths_per_million": 237.453, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.17, + "total_tests": 4272606.0, + "total_tests_per_thousand": 113.205, + "new_tests_smoothed": 39426.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 101.613, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-07", + "total_cases": 118546.0, + "new_cases": 374.0, + "new_cases_smoothed": 394.429, + "total_deaths": 8966.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 3140.944, + "new_cases_per_million": 9.909, + "new_cases_smoothed_per_million": 10.451, + "total_deaths_per_million": 237.559, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 46566.0, + "total_tests": 4319172.0, + "total_tests_per_thousand": 114.439, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 38402.0, + "new_tests_smoothed_per_thousand": 1.017, + "tests_per_case": 97.361, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-08", + "total_cases": 118970.0, + "new_cases": 424.0, + "new_cases_smoothed": 381.714, + "total_deaths": 8970.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3152.178, + "new_cases_per_million": 11.234, + "new_cases_smoothed_per_million": 10.114, + "total_deaths_per_million": 237.665, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 48036.0, + "total_tests": 4367208.0, + "total_tests_per_thousand": 115.712, + "new_tests_per_thousand": 1.273, + "new_tests_smoothed": 38351.0, + "new_tests_smoothed_per_thousand": 1.016, + "tests_per_case": 100.47, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-09", + "total_cases": 119206.0, + "new_cases": 236.0, + "new_cases_smoothed": 374.429, + "total_deaths": 8976.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3158.431, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 9.921, + "total_deaths_per_million": 237.824, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 36830.0, + "total_tests": 4404038.0, + "total_tests_per_thousand": 116.688, + "new_tests_per_thousand": 0.976, + "new_tests_smoothed": 37226.0, + "new_tests_smoothed_per_thousand": 0.986, + "tests_per_case": 99.421, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-10", + "total_cases": 119451.0, + "new_cases": 245.0, + "new_cases_smoothed": 368.714, + "total_deaths": 8981.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 3164.922, + "new_cases_per_million": 6.491, + "new_cases_smoothed_per_million": 9.769, + "total_deaths_per_million": 237.957, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 43772.0, + "total_tests": 4447810.0, + "total_tests_per_thousand": 117.847, + "new_tests_per_thousand": 1.16, + "new_tests_smoothed": 38516.0, + "new_tests_smoothed_per_thousand": 1.021, + "tests_per_case": 104.46, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-11", + "total_cases": 120117.0, + "new_cases": 666.0, + "new_cases_smoothed": 442.857, + "total_deaths": 8987.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 3182.569, + "new_cases_per_million": 17.646, + "new_cases_smoothed_per_million": 11.734, + "total_deaths_per_million": 238.116, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 57408.0, + "total_tests": 4505218.0, + "total_tests_per_thousand": 119.368, + "new_tests_per_thousand": 1.521, + "new_tests_smoothed": 38385.0, + "new_tests_smoothed_per_thousand": 1.017, + "tests_per_case": 86.676, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 67.13 + }, + { + "date": "2020-08-12", + "total_cases": 120406.0, + "new_cases": 289.0, + "new_cases_smoothed": 375.571, + "total_deaths": 8991.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3190.226, + "new_cases_per_million": 7.657, + "new_cases_smoothed_per_million": 9.951, + "total_deaths_per_million": 238.222, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.125, + "new_tests": 36529.0, + "total_tests": 4541747.0, + "total_tests_per_thousand": 120.336, + "new_tests_per_thousand": 0.968, + "new_tests_smoothed": 41026.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 109.236, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-13", + "total_cases": 120829.0, + "new_cases": 423.0, + "new_cases_smoothed": 379.571, + "total_deaths": 9006.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3201.433, + "new_cases_per_million": 11.208, + "new_cases_smoothed_per_million": 10.057, + "total_deaths_per_million": 238.619, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.167, + "new_tests": 39336.0, + "total_tests": 4581083.0, + "total_tests_per_thousand": 121.378, + "new_tests_per_thousand": 1.042, + "new_tests_smoothed": 44068.0, + "new_tests_smoothed_per_thousand": 1.168, + "tests_per_case": 116.09899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-14", + "total_cases": 121234.0, + "new_cases": 405.0, + "new_cases_smoothed": 384.0, + "total_deaths": 9015.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3212.164, + "new_cases_per_million": 10.731, + "new_cases_smoothed_per_million": 10.174, + "total_deaths_per_million": 238.858, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 54022.0, + "total_tests": 4635105.0, + "total_tests_per_thousand": 122.81, + "new_tests_per_thousand": 1.431, + "new_tests_smoothed": 45133.0, + "new_tests_smoothed_per_thousand": 1.196, + "tests_per_case": 117.53399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-15", + "total_cases": 121652.0, + "new_cases": 418.0, + "new_cases_smoothed": 383.143, + "total_deaths": 9020.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 3223.239, + "new_cases_per_million": 11.075, + "new_cases_smoothed_per_million": 10.152, + "total_deaths_per_million": 238.99, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 50558.0, + "total_tests": 4685663.0, + "total_tests_per_thousand": 124.149, + "new_tests_per_thousand": 1.34, + "new_tests_smoothed": 45494.0, + "new_tests_smoothed_per_thousand": 1.205, + "tests_per_case": 118.73899999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-16", + "total_cases": 121889.0, + "new_cases": 237.0, + "new_cases_smoothed": 383.286, + "total_deaths": 9024.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3229.519, + "new_cases_per_million": 6.279, + "new_cases_smoothed_per_million": 10.155, + "total_deaths_per_million": 239.096, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 55483.0, + "total_tests": 4741146.0, + "total_tests_per_thousand": 125.619, + "new_tests_per_thousand": 1.47, + "new_tests_smoothed": 48158.0, + "new_tests_smoothed_per_thousand": 1.276, + "tests_per_case": 125.645, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-17", + "total_cases": 122087.0, + "new_cases": 198.0, + "new_cases_smoothed": 376.571, + "total_deaths": 9026.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3234.765, + "new_cases_per_million": 5.246, + "new_cases_smoothed_per_million": 9.977, + "total_deaths_per_million": 239.149, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 37214.0, + "total_tests": 4778360.0, + "total_tests_per_thousand": 126.605, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 47221.0, + "new_tests_smoothed_per_thousand": 1.251, + "tests_per_case": 125.397, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-18", + "total_cases": 122872.0, + "new_cases": 785.0, + "new_cases_smoothed": 393.571, + "total_deaths": 9032.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3255.564, + "new_cases_per_million": 20.799, + "new_cases_smoothed_per_million": 10.428, + "total_deaths_per_million": 239.308, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 61683.0, + "total_tests": 4840043.0, + "total_tests_per_thousand": 128.24, + "new_tests_per_thousand": 1.634, + "new_tests_smoothed": 47832.0, + "new_tests_smoothed_per_thousand": 1.267, + "tests_per_case": 121.53299999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-19", + "total_cases": 123154.0, + "new_cases": 282.0, + "new_cases_smoothed": 392.571, + "total_deaths": 9045.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3263.036, + "new_cases_per_million": 7.472, + "new_cases_smoothed_per_million": 10.401, + "total_deaths_per_million": 239.652, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.204, + "new_tests": 40129.0, + "total_tests": 4880172.0, + "total_tests_per_thousand": 129.303, + "new_tests_per_thousand": 1.063, + "new_tests_smoothed": 48346.0, + "new_tests_smoothed_per_thousand": 1.281, + "tests_per_case": 123.152, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-20", + "total_cases": 123490.0, + "new_cases": 336.0, + "new_cases_smoothed": 380.143, + "total_deaths": 9049.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3271.938, + "new_cases_per_million": 8.903, + "new_cases_smoothed_per_million": 10.072, + "total_deaths_per_million": 239.758, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 45274.0, + "total_tests": 4925446.0, + "total_tests_per_thousand": 130.503, + "new_tests_per_thousand": 1.2, + "new_tests_smoothed": 49195.0, + "new_tests_smoothed_per_thousand": 1.303, + "tests_per_case": 129.412, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-21", + "total_cases": 123873.0, + "new_cases": 383.0, + "new_cases_smoothed": 377.0, + "total_deaths": 9054.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3282.086, + "new_cases_per_million": 10.148, + "new_cases_smoothed_per_million": 9.989, + "total_deaths_per_million": 239.891, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 48769.0, + "total_tests": 4974215.0, + "total_tests_per_thousand": 131.795, + "new_tests_per_thousand": 1.292, + "new_tests_smoothed": 48444.0, + "new_tests_smoothed_per_thousand": 1.284, + "tests_per_case": 128.499, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-22", + "total_cases": 124372.0, + "new_cases": 499.0, + "new_cases_smoothed": 388.571, + "total_deaths": 9064.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3295.307, + "new_cases_per_million": 13.221, + "new_cases_smoothed_per_million": 10.295, + "total_deaths_per_million": 240.156, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.167, + "new_tests": 59844.0, + "total_tests": 5034059.0, + "total_tests_per_thousand": 133.38, + "new_tests_per_thousand": 1.586, + "new_tests_smoothed": 49771.0, + "new_tests_smoothed_per_thousand": 1.319, + "tests_per_case": 128.08700000000002, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-23", + "total_cases": 124629.0, + "new_cases": 257.0, + "new_cases_smoothed": 391.429, + "total_deaths": 9071.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 3302.117, + "new_cases_per_million": 6.809, + "new_cases_smoothed_per_million": 10.371, + "total_deaths_per_million": 240.341, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 42675.0, + "total_tests": 5076734.0, + "total_tests_per_thousand": 134.511, + "new_tests_per_thousand": 1.131, + "new_tests_smoothed": 47941.0, + "new_tests_smoothed_per_thousand": 1.27, + "tests_per_case": 122.477, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-24", + "total_cases": 124896.0, + "new_cases": 267.0, + "new_cases_smoothed": 401.286, + "total_deaths": 9073.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 3309.191, + "new_cases_per_million": 7.074, + "new_cases_smoothed_per_million": 10.632, + "total_deaths_per_million": 240.394, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 38756.0, + "total_tests": 5115490.0, + "total_tests_per_thousand": 135.538, + "new_tests_per_thousand": 1.027, + "new_tests_smoothed": 48161.0, + "new_tests_smoothed_per_thousand": 1.276, + "tests_per_case": 120.01700000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 64.35 + }, + { + "date": "2020-08-25", + "total_cases": 125647.0, + "new_cases": 751.0, + "new_cases_smoothed": 396.429, + "total_deaths": 9083.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 3329.089, + "new_cases_per_million": 19.898, + "new_cases_smoothed_per_million": 10.504, + "total_deaths_per_million": 240.659, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 53676.0, + "total_tests": 5169166.0, + "total_tests_per_thousand": 136.96, + "new_tests_per_thousand": 1.422, + "new_tests_smoothed": 47018.0, + "new_tests_smoothed_per_thousand": 1.246, + "tests_per_case": 118.604, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 61.57 + }, + { + "date": "2020-08-26", + "total_cases": 125969.0, + "new_cases": 322.0, + "new_cases_smoothed": 402.143, + "total_deaths": 9090.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3337.621, + "new_cases_per_million": 8.532, + "new_cases_smoothed_per_million": 10.655, + "total_deaths_per_million": 240.845, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 35844.0, + "total_tests": 5205010.0, + "total_tests_per_thousand": 137.91, + "new_tests_per_thousand": 0.95, + "new_tests_smoothed": 46405.0, + "new_tests_smoothed_per_thousand": 1.23, + "tests_per_case": 115.39399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 61.57 + }, + { + "date": "2020-08-27", + "total_cases": 126417.0, + "new_cases": 448.0, + "new_cases_smoothed": 418.143, + "total_deaths": 9094.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 3349.491, + "new_cases_per_million": 11.87, + "new_cases_smoothed_per_million": 11.079, + "total_deaths_per_million": 240.951, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 41255.0, + "total_tests": 5246265.0, + "total_tests_per_thousand": 139.003, + "new_tests_per_thousand": 1.093, + "new_tests_smoothed": 45831.0, + "new_tests_smoothed_per_thousand": 1.214, + "tests_per_case": 109.60600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 61.57 + }, + { + "date": "2020-08-28", + "total_cases": 126848.0, + "new_cases": 431.0, + "new_cases_smoothed": 425.0, + "total_deaths": 9102.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3360.91, + "new_cases_per_million": 11.42, + "new_cases_smoothed_per_million": 11.261, + "total_deaths_per_million": 241.163, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 47671.0, + "total_tests": 5293936.0, + "total_tests_per_thousand": 140.266, + "new_tests_per_thousand": 1.263, + "new_tests_smoothed": 45674.0, + "new_tests_smoothed_per_thousand": 1.21, + "tests_per_case": 107.46799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 127358.0, + "new_cases": 510.0, + "new_cases_smoothed": 426.571, + "total_deaths": 9108.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3374.423, + "new_cases_per_million": 13.513, + "new_cases_smoothed_per_million": 11.302, + "total_deaths_per_million": 241.322, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.167, + "new_tests": 61328.0, + "total_tests": 5355264.0, + "total_tests_per_thousand": 141.891, + "new_tests_per_thousand": 1.625, + "new_tests_smoothed": 45886.0, + "new_tests_smoothed_per_thousand": 1.216, + "tests_per_case": 107.569, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 127673.0, + "new_cases": 315.0, + "new_cases_smoothed": 434.857, + "total_deaths": 9113.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 3382.769, + "new_cases_per_million": 8.346, + "new_cases_smoothed_per_million": 11.522, + "total_deaths_per_million": 241.454, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 85107.0, + "total_tests": 5440371.0, + "total_tests_per_thousand": 144.146, + "new_tests_per_thousand": 2.255, + "new_tests_smoothed": 51948.0, + "new_tests_smoothed_per_thousand": 1.376, + "tests_per_case": 119.46, + "positive_rate": 0.008, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 127940.0, + "new_cases": 267.0, + "new_cases_smoothed": 434.857, + "total_deaths": 9117.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3389.843, + "new_cases_per_million": 7.074, + "new_cases_smoothed_per_million": 11.522, + "total_deaths_per_million": 241.56, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.167, + "new_tests_smoothed": 50979.0, + "new_tests_smoothed_per_thousand": 1.351, + "tests_per_case": 117.23200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 128948.0, + "new_cases": 1008.0, + "new_cases_smoothed": 471.571, + "total_deaths": 9126.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3416.551, + "new_cases_per_million": 26.708, + "new_cases_smoothed_per_million": 12.495, + "total_deaths_per_million": 241.799, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.163, + "total_tests": 5504316.0, + "total_tests_per_thousand": 145.84, + "new_tests_smoothed": 47879.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 101.531, + "positive_rate": 0.01, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 129425.0, + "new_cases": 477.0, + "new_cases_smoothed": 493.714, + "total_deaths": 9132.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 3429.189, + "new_cases_per_million": 12.638, + "new_cases_smoothed_per_million": 13.081, + "total_deaths_per_million": 241.958, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 41157.0, + "total_tests": 5545473.0, + "total_tests_per_thousand": 146.93, + "new_tests_per_thousand": 1.09, + "new_tests_smoothed": 48638.0, + "new_tests_smoothed_per_thousand": 1.289, + "tests_per_case": 98.514, + "positive_rate": 0.01, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 129923.0, + "new_cases": 498.0, + "new_cases_smoothed": 500.857, + "total_deaths": 9135.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 3442.384, + "new_cases_per_million": 13.195, + "new_cases_smoothed_per_million": 13.27, + "total_deaths_per_million": 242.037, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 44595.0, + "total_tests": 5590068.0, + "total_tests_per_thousand": 148.112, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 49115.0, + "new_tests_smoothed_per_thousand": 1.301, + "tests_per_case": 98.06200000000001, + "positive_rate": 0.01, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 130493.0, + "new_cases": 570.0, + "new_cases_smoothed": 520.714, + "total_deaths": 9141.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3457.487, + "new_cases_per_million": 15.102, + "new_cases_smoothed_per_million": 13.797, + "total_deaths_per_million": 242.196, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 48635.0, + "total_tests": 5638703.0, + "total_tests_per_thousand": 149.401, + "new_tests_per_thousand": 1.289, + "new_tests_smoothed": 49252.0, + "new_tests_smoothed_per_thousand": 1.305, + "tests_per_case": 94.585, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-09-05", + "total_cases": 131124.0, + "new_cases": 631.0, + "new_cases_smoothed": 538.0, + "total_deaths": 9141.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 3474.205, + "new_cases_per_million": 16.719, + "new_cases_smoothed_per_million": 14.255, + "total_deaths_per_million": 242.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125 + } + ] + }, + "CPV": { + "continent": "Africa", + "location": "Cape Verde", + "population": 555988.0, + "population_density": 135.58, + "median_age": 25.7, + "aged_65_older": 4.46, + "aged_70_older": 3.437, + "gdp_per_capita": 6222.554, + "cardiovasc_death_rate": 182.219, + "diabetes_prevalence": 2.42, + "female_smokers": 2.1, + "male_smokers": 16.5, + "hospital_beds_per_thousand": 2.1, + "life_expectancy": 72.98, + "data": [ + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.597, + "new_cases_per_million": 3.597, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.396, + "new_cases_per_million": 1.799, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.396, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.396, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 5.396, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 1.799, + "stringency_index": 50.93 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.194, + "new_cases_per_million": 1.799, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.993, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 1.285, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 53.7 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 74.07 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 74.07 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 74.07 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 74.07 + }, + { + "date": "2020-04-01", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.792, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.792, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.792, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.792, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.389, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.986, + "new_cases_per_million": 3.597, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.785, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 55.0, + "new_cases": 44.0, + "new_cases_smoothed": 6.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.923, + "new_cases_per_million": 79.138, + "new_cases_smoothed_per_million": 12.333, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.923, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.333, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.722, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 12.59, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 58.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.319, + "new_cases_per_million": 3.597, + "new_cases_smoothed_per_million": 12.847, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 61.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.715, + "new_cases_per_million": 5.396, + "new_cases_smoothed_per_million": 13.104, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 67.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.506, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 14.646, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.389, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 73.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.298, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 4.625, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 82.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 147.485, + "new_cases_per_million": 16.187, + "new_cases_smoothed_per_million": 6.937, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 88.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.277, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 8.222, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 90.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.874, + "new_cases_per_million": 3.597, + "new_cases_smoothed_per_million": 8.222, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 106.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.652, + "new_cases_per_million": 28.778, + "new_cases_smoothed_per_million": 11.562, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 109.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.047, + "new_cases_per_million": 5.396, + "new_cases_smoothed_per_million": 10.792, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 113.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.242, + "new_cases_per_million": 7.194, + "new_cases_smoothed_per_million": 11.819, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.278, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 121.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.631, + "new_cases_per_million": 14.389, + "new_cases_smoothed_per_million": 10.021, + "total_deaths_per_million": 1.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 123.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 221.228, + "new_cases_per_million": 3.597, + "new_cases_smoothed_per_million": 8.993, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 152.0, + "new_cases": 29.0, + "new_cases_smoothed": 8.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.387, + "new_cases_per_million": 52.159, + "new_cases_smoothed_per_million": 15.93, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 165.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 296.769, + "new_cases_per_million": 23.382, + "new_cases_smoothed_per_million": 15.16, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 175.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 314.755, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 16.958, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 186.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 334.54, + "new_cases_per_million": 19.785, + "new_cases_smoothed_per_million": 18.757, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 191.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 343.533, + "new_cases_per_million": 8.993, + "new_cases_smoothed_per_million": 20.042, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-08", + "total_cases": 218.0, + "new_cases": 27.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 392.095, + "new_cases_per_million": 48.562, + "new_cases_smoothed_per_million": 24.923, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-09", + "total_cases": 230.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 413.678, + "new_cases_per_million": 21.583, + "new_cases_smoothed_per_million": 27.493, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-10", + "total_cases": 236.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 424.47, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 21.583, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 246.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 442.456, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 20.812, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-12", + "total_cases": 260.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 467.636, + "new_cases_per_million": 25.18, + "new_cases_smoothed_per_million": 21.84, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-13", + "total_cases": 270.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 485.622, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 21.583, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-14", + "total_cases": 289.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 519.795, + "new_cases_per_million": 34.173, + "new_cases_smoothed_per_million": 25.18, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-15", + "total_cases": 315.0, + "new_cases": 26.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 566.559, + "new_cases_per_million": 46.764, + "new_cases_smoothed_per_million": 24.923, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-16", + "total_cases": 326.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 586.344, + "new_cases_per_million": 19.785, + "new_cases_smoothed_per_million": 24.667, + "total_deaths_per_million": 3.597, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-17", + "total_cases": 328.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 589.941, + "new_cases_per_million": 3.597, + "new_cases_smoothed_per_million": 23.639, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-18", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 589.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.069, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-19", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 589.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.472, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-20", + "total_cases": 335.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 602.531, + "new_cases_per_million": 12.59, + "new_cases_smoothed_per_million": 16.701, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-21", + "total_cases": 349.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 627.711, + "new_cases_per_million": 25.18, + "new_cases_smoothed_per_million": 15.417, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-22", + "total_cases": 356.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 640.302, + "new_cases_per_million": 12.59, + "new_cases_smoothed_per_million": 10.535, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-23", + "total_cases": 362.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 651.093, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 9.25, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-24", + "total_cases": 371.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 667.281, + "new_cases_per_million": 16.187, + "new_cases_smoothed_per_million": 11.049, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-05-25", + "total_cases": 380.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 683.468, + "new_cases_per_million": 16.187, + "new_cases_smoothed_per_million": 13.361, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-05-26", + "total_cases": 390.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 701.454, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 15.93, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-05-27", + "total_cases": 390.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 701.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-28", + "total_cases": 390.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 701.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.535, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-29", + "total_cases": 390.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 701.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-30", + "total_cases": 405.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 728.433, + "new_cases_per_million": 26.979, + "new_cases_smoothed_per_million": 11.049, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-05-31", + "total_cases": 421.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 757.211, + "new_cases_per_million": 28.778, + "new_cases_smoothed_per_million": 12.847, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-01", + "total_cases": 435.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 782.391, + "new_cases_per_million": 25.18, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-02", + "total_cases": 458.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 823.759, + "new_cases_per_million": 41.368, + "new_cases_smoothed_per_million": 17.472, + "total_deaths_per_million": 7.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-03", + "total_cases": 466.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 838.148, + "new_cases_per_million": 14.389, + "new_cases_smoothed_per_million": 19.528, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-04", + "total_cases": 477.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 857.932, + "new_cases_per_million": 19.785, + "new_cases_smoothed_per_million": 22.354, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-05", + "total_cases": 502.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 902.897, + "new_cases_per_million": 44.965, + "new_cases_smoothed_per_million": 28.778, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-06", + "total_cases": 536.0, + "new_cases": 34.0, + "new_cases_smoothed": 18.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 964.05, + "new_cases_per_million": 61.152, + "new_cases_smoothed_per_million": 33.66, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-07", + "total_cases": 542.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 974.841, + "new_cases_per_million": 10.792, + "new_cases_smoothed_per_million": 31.09, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-08", + "total_cases": 554.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 996.424, + "new_cases_per_million": 21.583, + "new_cases_smoothed_per_million": 30.576, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-09", + "total_cases": 567.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1019.806, + "new_cases_per_million": 23.382, + "new_cases_smoothed_per_million": 28.007, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-10", + "total_cases": 585.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1052.181, + "new_cases_per_million": 32.375, + "new_cases_smoothed_per_million": 30.576, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-06-11", + "total_cases": 615.0, + "new_cases": 30.0, + "new_cases_smoothed": 19.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1106.139, + "new_cases_per_million": 53.958, + "new_cases_smoothed_per_million": 35.458, + "total_deaths_per_million": 8.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-06-12", + "total_cases": 657.0, + "new_cases": 42.0, + "new_cases_smoothed": 22.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1181.68, + "new_cases_per_million": 75.541, + "new_cases_smoothed_per_million": 39.826, + "total_deaths_per_million": 10.792, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-13", + "total_cases": 697.0, + "new_cases": 40.0, + "new_cases_smoothed": 23.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1253.624, + "new_cases_per_million": 71.944, + "new_cases_smoothed_per_million": 41.368, + "total_deaths_per_million": 10.792, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-14", + "total_cases": 726.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1305.784, + "new_cases_per_million": 52.159, + "new_cases_smoothed_per_million": 47.277, + "total_deaths_per_million": 10.792, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-15", + "total_cases": 750.0, + "new_cases": 24.0, + "new_cases_smoothed": 28.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1348.95, + "new_cases_per_million": 43.166, + "new_cases_smoothed_per_million": 50.361, + "total_deaths_per_million": 10.792, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-16", + "total_cases": 760.0, + "new_cases": 10.0, + "new_cases_smoothed": 27.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1366.936, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 49.59, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-17", + "total_cases": 781.0, + "new_cases": 21.0, + "new_cases_smoothed": 28.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1404.707, + "new_cases_per_million": 37.771, + "new_cases_smoothed_per_million": 50.361, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-18", + "total_cases": 792.0, + "new_cases": 11.0, + "new_cases_smoothed": 25.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1424.491, + "new_cases_per_million": 19.785, + "new_cases_smoothed_per_million": 45.479, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-19", + "total_cases": 823.0, + "new_cases": 31.0, + "new_cases_smoothed": 23.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1480.248, + "new_cases_per_million": 55.757, + "new_cases_smoothed_per_million": 42.653, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-20", + "total_cases": 848.0, + "new_cases": 25.0, + "new_cases_smoothed": 21.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1525.213, + "new_cases_per_million": 44.965, + "new_cases_smoothed_per_million": 38.798, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-21", + "total_cases": 863.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1552.192, + "new_cases_per_million": 26.979, + "new_cases_smoothed_per_million": 35.201, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-22", + "total_cases": 890.0, + "new_cases": 27.0, + "new_cases_smoothed": 20.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1600.754, + "new_cases_per_million": 48.562, + "new_cases_smoothed_per_million": 35.972, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-23", + "total_cases": 944.0, + "new_cases": 54.0, + "new_cases_smoothed": 26.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1697.878, + "new_cases_per_million": 97.124, + "new_cases_smoothed_per_million": 47.277, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-24", + "total_cases": 982.0, + "new_cases": 38.0, + "new_cases_smoothed": 28.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1766.225, + "new_cases_per_million": 68.347, + "new_cases_smoothed_per_million": 51.646, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-25", + "total_cases": 999.0, + "new_cases": 17.0, + "new_cases_smoothed": 29.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1796.801, + "new_cases_per_million": 30.576, + "new_cases_smoothed_per_million": 53.187, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-26", + "total_cases": 1003.0, + "new_cases": 4.0, + "new_cases_smoothed": 25.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1803.996, + "new_cases_per_million": 7.194, + "new_cases_smoothed_per_million": 46.25, + "total_deaths_per_million": 14.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.17 + }, + { + "date": "2020-06-27", + "total_cases": 1027.0, + "new_cases": 24.0, + "new_cases_smoothed": 25.571, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1847.162, + "new_cases_per_million": 43.166, + "new_cases_smoothed_per_million": 45.993, + "total_deaths_per_million": 17.986, + "new_deaths_per_million": 3.597, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-06-28", + "total_cases": 1091.0, + "new_cases": 64.0, + "new_cases_smoothed": 32.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1962.273, + "new_cases_per_million": 115.11, + "new_cases_smoothed_per_million": 58.583, + "total_deaths_per_million": 21.583, + "new_deaths_per_million": 3.597, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-06-29", + "total_cases": 1155.0, + "new_cases": 64.0, + "new_cases_smoothed": 37.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2077.383, + "new_cases_per_million": 115.11, + "new_cases_smoothed_per_million": 68.09, + "total_deaths_per_million": 21.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-06-30", + "total_cases": 1165.0, + "new_cases": 10.0, + "new_cases_smoothed": 31.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2095.369, + "new_cases_per_million": 17.986, + "new_cases_smoothed_per_million": 56.784, + "total_deaths_per_million": 21.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-07-01", + "total_cases": 1227.0, + "new_cases": 62.0, + "new_cases_smoothed": 35.0, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2206.882, + "new_cases_per_million": 111.513, + "new_cases_smoothed_per_million": 62.951, + "total_deaths_per_million": 26.979, + "new_deaths_per_million": 5.396, + "new_deaths_smoothed_per_million": 1.799, + "stringency_index": 79.17 + }, + { + "date": "2020-07-02", + "total_cases": 1267.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2278.826, + "new_cases_per_million": 71.944, + "new_cases_smoothed_per_million": 68.861, + "total_deaths_per_million": 26.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.799, + "stringency_index": 79.17 + }, + { + "date": "2020-07-03", + "total_cases": 1301.0, + "new_cases": 34.0, + "new_cases_smoothed": 42.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2339.979, + "new_cases_per_million": 61.152, + "new_cases_smoothed_per_million": 76.569, + "total_deaths_per_million": 26.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.799, + "stringency_index": 79.17 + }, + { + "date": "2020-07-04", + "total_cases": 1382.0, + "new_cases": 81.0, + "new_cases_smoothed": 50.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2485.665, + "new_cases_per_million": 145.687, + "new_cases_smoothed_per_million": 91.215, + "total_deaths_per_million": 26.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.285, + "stringency_index": 79.17 + }, + { + "date": "2020-07-05", + "total_cases": 1420.0, + "new_cases": 38.0, + "new_cases_smoothed": 47.0, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2554.012, + "new_cases_per_million": 68.347, + "new_cases_smoothed_per_million": 84.534, + "total_deaths_per_million": 28.778, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-07-06", + "total_cases": 1451.0, + "new_cases": 31.0, + "new_cases_smoothed": 42.286, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2609.769, + "new_cases_per_million": 55.757, + "new_cases_smoothed_per_million": 76.055, + "total_deaths_per_million": 30.576, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.285, + "stringency_index": 79.17 + }, + { + "date": "2020-07-07", + "total_cases": 1463.0, + "new_cases": 12.0, + "new_cases_smoothed": 42.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2631.352, + "new_cases_per_million": 21.583, + "new_cases_smoothed_per_million": 76.569, + "total_deaths_per_million": 30.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.285, + "stringency_index": 79.17 + }, + { + "date": "2020-07-08", + "total_cases": 1499.0, + "new_cases": 36.0, + "new_cases_smoothed": 38.857, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2696.101, + "new_cases_per_million": 64.75, + "new_cases_smoothed_per_million": 69.888, + "total_deaths_per_million": 32.375, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 79.17 + }, + { + "date": "2020-07-09", + "total_cases": 1542.0, + "new_cases": 43.0, + "new_cases_smoothed": 39.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2773.441, + "new_cases_per_million": 77.34, + "new_cases_smoothed_per_million": 70.659, + "total_deaths_per_million": 32.375, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 79.17 + }, + { + "date": "2020-07-10", + "total_cases": 1553.0, + "new_cases": 11.0, + "new_cases_smoothed": 36.0, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2793.226, + "new_cases_per_million": 19.785, + "new_cases_smoothed_per_million": 64.75, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-07-11", + "total_cases": 1553.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2793.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.937, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 79.17 + }, + { + "date": "2020-07-12", + "total_cases": 1591.0, + "new_cases": 38.0, + "new_cases_smoothed": 24.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2861.573, + "new_cases_per_million": 68.347, + "new_cases_smoothed_per_million": 43.937, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 79.17 + }, + { + "date": "2020-07-13", + "total_cases": 1698.0, + "new_cases": 107.0, + "new_cases_smoothed": 35.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3054.023, + "new_cases_per_million": 192.45, + "new_cases_smoothed_per_million": 63.465, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-07-14", + "total_cases": 1722.0, + "new_cases": 24.0, + "new_cases_smoothed": 37.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3097.189, + "new_cases_per_million": 43.166, + "new_cases_smoothed_per_million": 66.548, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 79.17 + }, + { + "date": "2020-07-15", + "total_cases": 1780.0, + "new_cases": 58.0, + "new_cases_smoothed": 40.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3201.508, + "new_cases_per_million": 104.319, + "new_cases_smoothed_per_million": 72.201, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 68.06 + }, + { + "date": "2020-07-16", + "total_cases": 1837.0, + "new_cases": 57.0, + "new_cases_smoothed": 42.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3304.028, + "new_cases_per_million": 102.52, + "new_cases_smoothed_per_million": 75.798, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 68.06 + }, + { + "date": "2020-07-17", + "total_cases": 1894.0, + "new_cases": 57.0, + "new_cases_smoothed": 48.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3406.548, + "new_cases_per_million": 102.52, + "new_cases_smoothed_per_million": 87.618, + "total_deaths_per_million": 34.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.06 + }, + { + "date": "2020-07-18", + "total_cases": 1939.0, + "new_cases": 45.0, + "new_cases_smoothed": 55.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3487.485, + "new_cases_per_million": 80.937, + "new_cases_smoothed_per_million": 99.18, + "total_deaths_per_million": 35.972, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 68.06 + }, + { + "date": "2020-07-19", + "total_cases": 2014.0, + "new_cases": 75.0, + "new_cases_smoothed": 60.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3622.38, + "new_cases_per_million": 134.895, + "new_cases_smoothed_per_million": 108.687, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-20", + "total_cases": 2043.0, + "new_cases": 29.0, + "new_cases_smoothed": 49.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3674.54, + "new_cases_per_million": 52.159, + "new_cases_smoothed_per_million": 88.645, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-21", + "total_cases": 2071.0, + "new_cases": 28.0, + "new_cases_smoothed": 49.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3724.901, + "new_cases_per_million": 50.361, + "new_cases_smoothed_per_million": 89.673, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-22", + "total_cases": 2107.0, + "new_cases": 36.0, + "new_cases_smoothed": 46.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3789.65, + "new_cases_per_million": 64.75, + "new_cases_smoothed_per_million": 84.02, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-23", + "total_cases": 2154.0, + "new_cases": 47.0, + "new_cases_smoothed": 45.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3874.184, + "new_cases_per_million": 84.534, + "new_cases_smoothed_per_million": 81.451, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-24", + "total_cases": 2190.0, + "new_cases": 36.0, + "new_cases_smoothed": 42.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3938.934, + "new_cases_per_million": 64.75, + "new_cases_smoothed_per_million": 76.055, + "total_deaths_per_million": 37.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-25", + "total_cases": 2220.0, + "new_cases": 30.0, + "new_cases_smoothed": 40.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3992.892, + "new_cases_per_million": 53.958, + "new_cases_smoothed_per_million": 72.201, + "total_deaths_per_million": 39.569, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 68.06 + }, + { + "date": "2020-07-26", + "total_cases": 2258.0, + "new_cases": 38.0, + "new_cases_smoothed": 34.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4061.239, + "new_cases_per_million": 68.347, + "new_cases_smoothed_per_million": 62.694, + "total_deaths_per_million": 39.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 68.06 + }, + { + "date": "2020-07-27", + "total_cases": 2307.0, + "new_cases": 49.0, + "new_cases_smoothed": 37.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4149.37, + "new_cases_per_million": 88.131, + "new_cases_smoothed_per_million": 67.833, + "total_deaths_per_million": 39.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-07-28", + "total_cases": 2328.0, + "new_cases": 21.0, + "new_cases_smoothed": 36.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4187.141, + "new_cases_per_million": 37.771, + "new_cases_smoothed_per_million": 66.034, + "total_deaths_per_million": 39.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-07-29", + "total_cases": 2354.0, + "new_cases": 26.0, + "new_cases_smoothed": 35.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4233.904, + "new_cases_per_million": 46.764, + "new_cases_smoothed_per_million": 63.465, + "total_deaths_per_million": 39.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-07-30", + "total_cases": 2373.0, + "new_cases": 19.0, + "new_cases_smoothed": 31.286, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4268.078, + "new_cases_per_million": 34.173, + "new_cases_smoothed_per_million": 56.27, + "total_deaths_per_million": 41.368, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-07-31", + "total_cases": 2373.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4268.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 47.021, + "total_deaths_per_million": 41.368, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-01", + "total_cases": 2451.0, + "new_cases": 78.0, + "new_cases_smoothed": 33.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4408.369, + "new_cases_per_million": 140.291, + "new_cases_smoothed_per_million": 59.354, + "total_deaths_per_million": 41.368, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-08-02", + "total_cases": 2480.0, + "new_cases": 29.0, + "new_cases_smoothed": 31.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4460.528, + "new_cases_per_million": 52.159, + "new_cases_smoothed_per_million": 57.041, + "total_deaths_per_million": 43.166, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-03", + "total_cases": 2547.0, + "new_cases": 67.0, + "new_cases_smoothed": 34.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4581.034, + "new_cases_per_million": 120.506, + "new_cases_smoothed_per_million": 61.666, + "total_deaths_per_million": 43.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-04", + "total_cases": 2583.0, + "new_cases": 36.0, + "new_cases_smoothed": 36.429, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4645.784, + "new_cases_per_million": 64.75, + "new_cases_smoothed_per_million": 65.52, + "total_deaths_per_million": 44.965, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-08-05", + "total_cases": 2631.0, + "new_cases": 48.0, + "new_cases_smoothed": 39.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4732.117, + "new_cases_per_million": 86.333, + "new_cases_smoothed_per_million": 71.173, + "total_deaths_per_million": 46.764, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-06", + "total_cases": 2689.0, + "new_cases": 58.0, + "new_cases_smoothed": 45.143, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4836.435, + "new_cases_per_million": 104.319, + "new_cases_smoothed_per_million": 81.194, + "total_deaths_per_million": 48.562, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-07", + "total_cases": 2734.0, + "new_cases": 45.0, + "new_cases_smoothed": 51.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4917.372, + "new_cases_per_million": 80.937, + "new_cases_smoothed_per_million": 92.756, + "total_deaths_per_million": 48.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-08", + "total_cases": 2780.0, + "new_cases": 46.0, + "new_cases_smoothed": 47.0, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5000.108, + "new_cases_per_million": 82.736, + "new_cases_smoothed_per_million": 84.534, + "total_deaths_per_million": 52.159, + "new_deaths_per_million": 3.597, + "new_deaths_smoothed_per_million": 1.542, + "stringency_index": 70.83 + }, + { + "date": "2020-08-09", + "total_cases": 2835.0, + "new_cases": 55.0, + "new_cases_smoothed": 50.714, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5099.031, + "new_cases_per_million": 98.923, + "new_cases_smoothed_per_million": 91.215, + "total_deaths_per_million": 57.555, + "new_deaths_per_million": 5.396, + "new_deaths_smoothed_per_million": 2.056, + "stringency_index": 70.83 + }, + { + "date": "2020-08-10", + "total_cases": 2858.0, + "new_cases": 23.0, + "new_cases_smoothed": 44.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5140.399, + "new_cases_per_million": 41.368, + "new_cases_smoothed_per_million": 79.909, + "total_deaths_per_million": 57.555, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.056, + "stringency_index": 70.83 + }, + { + "date": "2020-08-11", + "total_cases": 2883.0, + "new_cases": 25.0, + "new_cases_smoothed": 42.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5185.364, + "new_cases_per_million": 44.965, + "new_cases_smoothed_per_million": 77.083, + "total_deaths_per_million": 57.555, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.799, + "stringency_index": 70.83 + }, + { + "date": "2020-08-12", + "total_cases": 2920.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.286, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5251.912, + "new_cases_per_million": 66.548, + "new_cases_smoothed_per_million": 74.256, + "total_deaths_per_million": 59.354, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.799, + "stringency_index": 70.83 + }, + { + "date": "2020-08-13", + "total_cases": 3000.0, + "new_cases": 80.0, + "new_cases_smoothed": 44.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5395.8, + "new_cases_per_million": 143.888, + "new_cases_smoothed_per_million": 79.909, + "total_deaths_per_million": 59.354, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.542, + "stringency_index": 70.83 + }, + { + "date": "2020-08-14", + "total_cases": 3073.0, + "new_cases": 73.0, + "new_cases_smoothed": 48.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5527.098, + "new_cases_per_million": 131.298, + "new_cases_smoothed_per_million": 87.104, + "total_deaths_per_million": 59.354, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.542, + "stringency_index": 70.83 + }, + { + "date": "2020-08-15", + "total_cases": 3136.0, + "new_cases": 63.0, + "new_cases_smoothed": 50.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5640.41, + "new_cases_per_million": 113.312, + "new_cases_smoothed_per_million": 91.472, + "total_deaths_per_million": 59.354, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-16", + "total_cases": 3163.0, + "new_cases": 27.0, + "new_cases_smoothed": 46.857, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5688.972, + "new_cases_per_million": 48.562, + "new_cases_smoothed_per_million": 84.277, + "total_deaths_per_million": 61.152, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-17", + "total_cases": 3179.0, + "new_cases": 16.0, + "new_cases_smoothed": 45.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5717.749, + "new_cases_per_million": 28.778, + "new_cases_smoothed_per_million": 82.479, + "total_deaths_per_million": 62.951, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-08-18", + "total_cases": 3203.0, + "new_cases": 24.0, + "new_cases_smoothed": 45.714, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5760.916, + "new_cases_per_million": 43.166, + "new_cases_smoothed_per_million": 82.222, + "total_deaths_per_million": 64.75, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-19", + "total_cases": 3253.0, + "new_cases": 50.0, + "new_cases_smoothed": 47.571, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5850.846, + "new_cases_per_million": 89.93, + "new_cases_smoothed_per_million": 85.562, + "total_deaths_per_million": 64.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-08-20", + "total_cases": 3321.0, + "new_cases": 68.0, + "new_cases_smoothed": 45.857, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5973.15, + "new_cases_per_million": 122.305, + "new_cases_smoothed_per_million": 82.479, + "total_deaths_per_million": 64.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-08-21", + "total_cases": 3368.0, + "new_cases": 47.0, + "new_cases_smoothed": 42.143, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6057.685, + "new_cases_per_million": 84.534, + "new_cases_smoothed_per_million": 75.798, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-22", + "total_cases": 3412.0, + "new_cases": 44.0, + "new_cases_smoothed": 39.429, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6136.823, + "new_cases_per_million": 79.138, + "new_cases_smoothed_per_million": 70.916, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "stringency_index": 70.83 + }, + { + "date": "2020-08-23", + "total_cases": 3455.0, + "new_cases": 43.0, + "new_cases_smoothed": 41.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6214.163, + "new_cases_per_million": 77.34, + "new_cases_smoothed_per_million": 75.027, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-08-24", + "total_cases": 3509.0, + "new_cases": 54.0, + "new_cases_smoothed": 47.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6311.287, + "new_cases_per_million": 97.124, + "new_cases_smoothed_per_million": 84.791, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-25", + "total_cases": 3532.0, + "new_cases": 23.0, + "new_cases_smoothed": 47.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6352.655, + "new_cases_per_million": 41.368, + "new_cases_smoothed_per_million": 84.534, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-08-26", + "total_cases": 3568.0, + "new_cases": 36.0, + "new_cases_smoothed": 45.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6417.405, + "new_cases_per_million": 64.75, + "new_cases_smoothed_per_million": 80.937, + "total_deaths_per_million": 66.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-08-27", + "total_cases": 3630.0, + "new_cases": 62.0, + "new_cases_smoothed": 44.143, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6528.918, + "new_cases_per_million": 111.513, + "new_cases_smoothed_per_million": 79.395, + "total_deaths_per_million": 68.347, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-28", + "total_cases": 3699.0, + "new_cases": 69.0, + "new_cases_smoothed": 47.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6653.021, + "new_cases_per_million": 124.103, + "new_cases_smoothed_per_million": 85.048, + "total_deaths_per_million": 68.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-08-29", + "total_cases": 3745.0, + "new_cases": 46.0, + "new_cases_smoothed": 47.571, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6735.757, + "new_cases_per_million": 82.736, + "new_cases_smoothed_per_million": 85.562, + "total_deaths_per_million": 68.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 70.83 + }, + { + "date": "2020-08-30", + "total_cases": 3778.0, + "new_cases": 33.0, + "new_cases_smoothed": 46.143, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6795.111, + "new_cases_per_million": 59.354, + "new_cases_smoothed_per_million": 82.993, + "total_deaths_per_million": 70.145, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 70.83 + }, + { + "date": "2020-08-31", + "total_cases": 3852.0, + "new_cases": 74.0, + "new_cases_smoothed": 49.0, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6928.207, + "new_cases_per_million": 133.096, + "new_cases_smoothed_per_million": 88.131, + "total_deaths_per_million": 71.944, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.771, + "stringency_index": 70.83 + }, + { + "date": "2020-09-01", + "total_cases": 3884.0, + "new_cases": 32.0, + "new_cases_smoothed": 50.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6985.762, + "new_cases_per_million": 57.555, + "new_cases_smoothed_per_million": 90.444, + "total_deaths_per_million": 71.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771 + }, + { + "date": "2020-09-02", + "total_cases": 3970.0, + "new_cases": 86.0, + "new_cases_smoothed": 57.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7140.442, + "new_cases_per_million": 154.68, + "new_cases_smoothed_per_million": 103.291, + "total_deaths_per_million": 71.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771 + }, + { + "date": "2020-09-03", + "total_cases": 4048.0, + "new_cases": 78.0, + "new_cases_smoothed": 59.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7280.733, + "new_cases_per_million": 140.291, + "new_cases_smoothed_per_million": 107.402, + "total_deaths_per_million": 73.743, + "new_deaths_per_million": 1.799, + "new_deaths_smoothed_per_million": 0.771 + }, + { + "date": "2020-09-04", + "total_cases": 4125.0, + "new_cases": 77.0, + "new_cases_smoothed": 60.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7419.225, + "new_cases_per_million": 138.492, + "new_cases_smoothed_per_million": 109.458, + "total_deaths_per_million": 73.743, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771 + }, + { + "date": "2020-09-05", + "total_cases": 4200.0, + "new_cases": 75.0, + "new_cases_smoothed": 65.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7554.12, + "new_cases_per_million": 134.895, + "new_cases_smoothed_per_million": 116.909, + "total_deaths_per_million": 73.743, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.771 + } + ] + }, + "CYM": { + "continent": "North America", + "location": "Cayman Islands", + "population": 65720.0, + "population_density": 256.496, + "gdp_per_capita": 49903.029, + "diabetes_prevalence": 13.22, + "life_expectancy": 83.92, + "data": [ + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 15.216, + "new_cases_per_million": 15.216, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 45.648, + "new_cases_per_million": 30.432, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 15.216, + "stringency_index": 47.22 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 45.648, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 45.648, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 45.648, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 45.648, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.648, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.521, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.174, + "stringency_index": 76.85 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.296, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.174, + "stringency_index": 76.85 + }, + { + "date": "2020-03-28", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.729, + "new_cases_per_million": 30.432, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.729, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.729, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.593, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 19.564, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.025, + "new_cases_per_million": 30.432, + "new_cases_smoothed_per_million": 23.911, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 22.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 334.753, + "new_cases_per_million": 121.729, + "new_cases_smoothed_per_million": 41.301, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 28.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 426.05, + "new_cases_per_million": 91.296, + "new_cases_smoothed_per_million": 47.822, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 441.266, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 45.648, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 532.562, + "new_cases_per_million": 91.296, + "new_cases_smoothed_per_million": 58.691, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 39.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 593.427, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 67.385, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 593.427, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 58.691, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 45.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 684.723, + "new_cases_per_million": 91.296, + "new_cases_smoothed_per_million": 67.385, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 684.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 684.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.953, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 684.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 53.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 806.452, + "new_cases_per_million": 121.729, + "new_cases_smoothed_per_million": 39.127, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 806.452, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.432, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 806.452, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.432, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 54.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 821.668, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 19.564, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 60.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.964, + "new_cases_per_million": 91.296, + "new_cases_smoothed_per_million": 32.606, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-17", + "total_cases": 61.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 928.18, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-18", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 928.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-19", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 928.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-20", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 928.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-21", + "total_cases": 66.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1004.26, + "new_cases_per_million": 76.08, + "new_cases_smoothed_per_million": 28.258, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-22", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1004.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.085, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-23", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1004.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.042, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-24", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1004.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-25", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1004.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-26", + "total_cases": 70.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1065.125, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 19.564, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1065.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.564, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1065.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1065.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1110.773, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-05-01", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1110.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-05-02", + "total_cases": 74.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1125.989, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-05-03", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1125.989, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-05-04", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1125.989, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-05-05", + "total_cases": 75.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1141.205, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.09 + }, + { + "date": "2020-05-06", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1141.205, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-07", + "total_cases": 78.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1186.853, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-08", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1186.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-09", + "total_cases": 81.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1232.502, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-10", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1232.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-11", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1232.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-12", + "total_cases": 84.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1278.15, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 19.564, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-13", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1293.366, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 21.737, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-14", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1293.366, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.216, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-15", + "total_cases": 93.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1415.094, + "new_cases_per_million": 121.729, + "new_cases_smoothed_per_million": 32.606, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-16", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1415.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.085, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-17", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1430.31, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 28.258, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-18", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1430.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.258, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-19", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1430.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.737, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-20", + "total_cases": 111.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1688.984, + "new_cases_per_million": 258.673, + "new_cases_smoothed_per_million": 56.517, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-21", + "total_cases": 111.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1688.984, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.517, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-22", + "total_cases": 111.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1688.984, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 39.127, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-23", + "total_cases": 121.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1841.144, + "new_cases_per_million": 152.161, + "new_cases_smoothed_per_million": 60.864, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-24", + "total_cases": 129.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1962.873, + "new_cases_per_million": 121.729, + "new_cases_smoothed_per_million": 76.08, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-25", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1962.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 76.08, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-26", + "total_cases": 134.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2038.953, + "new_cases_per_million": 76.08, + "new_cases_smoothed_per_million": 86.949, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-27", + "total_cases": 137.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2084.601, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 56.517, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-28", + "total_cases": 140.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2130.25, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 63.038, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-29", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2130.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 63.038, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-30", + "total_cases": 141.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2145.466, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 43.474, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-05-31", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2145.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.085, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2145.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.085, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-02", + "total_cases": 150.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2282.41, + "new_cases_per_million": 136.945, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-03", + "total_cases": 151.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2297.626, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 30.432, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-04", + "total_cases": 156.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2373.707, + "new_cases_per_million": 76.08, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-05", + "total_cases": 160.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2434.571, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 43.474, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-06", + "total_cases": 164.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2495.435, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-07", + "total_cases": 164.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2495.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-08", + "total_cases": 164.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2495.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-09", + "total_cases": 171.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2601.948, + "new_cases_per_million": 106.512, + "new_cases_smoothed_per_million": 45.648, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-10", + "total_cases": 176.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2678.028, + "new_cases_per_million": 76.08, + "new_cases_smoothed_per_million": 54.343, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-11", + "total_cases": 180.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2738.892, + "new_cases_per_million": 60.864, + "new_cases_smoothed_per_million": 52.169, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-12", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2738.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.474, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-13", + "total_cases": 187.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2845.405, + "new_cases_per_million": 106.512, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-14", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2845.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-15", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2845.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.996, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-16", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2845.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.78, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-17", + "total_cases": 193.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2936.701, + "new_cases_per_million": 91.296, + "new_cases_smoothed_per_million": 36.953, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-18", + "total_cases": 193.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2936.701, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.258, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-06-19", + "total_cases": 193.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2936.701, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.258, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.2 + }, + { + "date": "2020-06-20", + "total_cases": 195.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2967.133, + "new_cases_per_million": 30.432, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.2 + }, + { + "date": "2020-06-21", + "total_cases": 195.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2967.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.2 + }, + { + "date": "2020-06-22", + "total_cases": 195.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2967.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-23", + "total_cases": 195.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2967.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.39, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-24", + "total_cases": 195.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2967.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-25", + "total_cases": 196.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2982.349, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 6.521, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-26", + "total_cases": 196.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2982.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.521, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-27", + "total_cases": 196.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2982.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.174, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-28", + "total_cases": 196.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2982.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.174, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-29", + "total_cases": 196.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2982.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.174, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-06-30", + "total_cases": 199.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3027.998, + "new_cases_per_million": 45.648, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-07-01", + "total_cases": 200.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3043.214, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.39 + }, + { + "date": "2020-07-02", + "total_cases": 201.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 15.216, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.174, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3058.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 203.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 30.432, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3088.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 205.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 30.432, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.347, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 205.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3119.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 15.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "CAF": { + "continent": "Africa", + "location": "Central African Republic", + "population": 4829764.0, + "population_density": 7.479, + "median_age": 18.3, + "aged_65_older": 3.655, + "aged_70_older": 2.251, + "gdp_per_capita": 661.24, + "cardiovasc_death_rate": 435.727, + "diabetes_prevalence": 6.1, + "handwashing_facilities": 16.603, + "hospital_beds_per_thousand": 1.0, + "life_expectancy": 53.28, + "data": [ + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.621, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-23", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.035, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-29", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.242, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-30", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-31", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-02", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.656, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-05", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.863, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-06", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-07", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-08", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-09", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.07, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-17", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.485, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-22", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.899, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-23", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.313, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-24", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.52, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-25", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.934, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-26", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-27", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-28", + "total_cases": 50.0, + "new_cases": 31.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.352, + "new_cases_per_million": 6.419, + "new_cases_smoothed_per_million": 1.124, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-29", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-30", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-01", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.976, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-02", + "total_cases": 72.0, + "new_cases": 22.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.908, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-03", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.908, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-04", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.908, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-05", + "total_cases": 94.0, + "new_cases": 22.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.463, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-06", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-07", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-08", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 143.0, + "new_cases": 49.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.608, + "new_cases_per_million": 10.145, + "new_cases_smoothed_per_million": 2.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 179.0, + "new_cases": 36.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.062, + "new_cases_per_million": 7.454, + "new_cases_smoothed_per_million": 3.165, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.514, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.514, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 197.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.789, + "new_cases_per_million": 3.727, + "new_cases_smoothed_per_million": 3.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-15", + "total_cases": 221.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.758, + "new_cases_per_million": 4.969, + "new_cases_smoothed_per_million": 3.756, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-16", + "total_cases": 301.0, + "new_cases": 80.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.322, + "new_cases_per_million": 16.564, + "new_cases_smoothed_per_million": 4.673, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-17", + "total_cases": 327.0, + "new_cases": 26.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.705, + "new_cases_per_million": 5.383, + "new_cases_smoothed_per_million": 5.442, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-18", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.378, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-19", + "total_cases": 336.0, + "new_cases": 9.0, + "new_cases_smoothed": 22.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.569, + "new_cases_per_million": 1.863, + "new_cases_smoothed_per_million": 4.644, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-20", + "total_cases": 411.0, + "new_cases": 75.0, + "new_cases_smoothed": 33.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.097, + "new_cases_per_million": 15.529, + "new_cases_smoothed_per_million": 6.862, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-21", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.097, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.33, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-22", + "total_cases": 436.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.274, + "new_cases_per_million": 5.176, + "new_cases_smoothed_per_million": 6.359, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-23", + "total_cases": 479.0, + "new_cases": 43.0, + "new_cases_smoothed": 25.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.177, + "new_cases_per_million": 8.903, + "new_cases_smoothed_per_million": 5.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-24", + "total_cases": 552.0, + "new_cases": 73.0, + "new_cases_smoothed": 32.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.291, + "new_cases_per_million": 15.115, + "new_cases_smoothed_per_million": 6.655, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-25", + "total_cases": 604.0, + "new_cases": 52.0, + "new_cases_smoothed": 39.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.058, + "new_cases_per_million": 10.767, + "new_cases_smoothed_per_million": 8.193, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-26", + "total_cases": 652.0, + "new_cases": 48.0, + "new_cases_smoothed": 45.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.996, + "new_cases_per_million": 9.938, + "new_cases_smoothed_per_million": 9.347, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-27", + "total_cases": 671.0, + "new_cases": 19.0, + "new_cases_smoothed": 37.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.93, + "new_cases_per_million": 3.934, + "new_cases_smoothed_per_million": 7.69, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-28", + "total_cases": 702.0, + "new_cases": 31.0, + "new_cases_smoothed": 41.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 145.349, + "new_cases_per_million": 6.419, + "new_cases_smoothed_per_million": 8.607, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-29", + "total_cases": 755.0, + "new_cases": 53.0, + "new_cases_smoothed": 45.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 156.322, + "new_cases_per_million": 10.974, + "new_cases_smoothed_per_million": 9.436, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-30", + "total_cases": 874.0, + "new_cases": 119.0, + "new_cases_smoothed": 56.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 180.961, + "new_cases_per_million": 24.639, + "new_cases_smoothed_per_million": 11.684, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-05-31", + "total_cases": 962.0, + "new_cases": 88.0, + "new_cases_smoothed": 58.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.182, + "new_cases_per_million": 18.22, + "new_cases_smoothed_per_million": 12.127, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-01", + "total_cases": 1011.0, + "new_cases": 49.0, + "new_cases_smoothed": 58.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 209.327, + "new_cases_per_million": 10.145, + "new_cases_smoothed_per_million": 12.038, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-06-02", + "total_cases": 1069.0, + "new_cases": 58.0, + "new_cases_smoothed": 59.571, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 221.336, + "new_cases_per_million": 12.009, + "new_cases_smoothed_per_million": 12.334, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-03", + "total_cases": 1173.0, + "new_cases": 104.0, + "new_cases_smoothed": 71.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 242.869, + "new_cases_per_million": 21.533, + "new_cases_smoothed_per_million": 14.848, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-04", + "total_cases": 1189.0, + "new_cases": 16.0, + "new_cases_smoothed": 69.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 246.182, + "new_cases_per_million": 3.313, + "new_cases_smoothed_per_million": 14.405, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-05", + "total_cases": 1288.0, + "new_cases": 99.0, + "new_cases_smoothed": 76.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 266.68, + "new_cases_per_million": 20.498, + "new_cases_smoothed_per_million": 15.765, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-06", + "total_cases": 1451.0, + "new_cases": 163.0, + "new_cases_smoothed": 82.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 300.429, + "new_cases_per_million": 33.749, + "new_cases_smoothed_per_million": 17.067, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-07", + "total_cases": 1570.0, + "new_cases": 119.0, + "new_cases_smoothed": 86.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 325.068, + "new_cases_per_million": 24.639, + "new_cases_smoothed_per_million": 17.984, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 75.93 + }, + { + "date": "2020-06-08", + "total_cases": 1634.0, + "new_cases": 64.0, + "new_cases_smoothed": 89.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 338.319, + "new_cases_per_million": 13.251, + "new_cases_smoothed_per_million": 18.427, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.93 + }, + { + "date": "2020-06-09", + "total_cases": 1850.0, + "new_cases": 216.0, + "new_cases_smoothed": 111.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 383.041, + "new_cases_per_million": 44.723, + "new_cases_smoothed_per_million": 23.101, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-06-10", + "total_cases": 1888.0, + "new_cases": 38.0, + "new_cases_smoothed": 102.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 390.909, + "new_cases_per_million": 7.868, + "new_cases_smoothed_per_million": 21.149, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 75.93 + }, + { + "date": "2020-06-11", + "total_cases": 1952.0, + "new_cases": 64.0, + "new_cases_smoothed": 109.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 404.161, + "new_cases_per_million": 13.251, + "new_cases_smoothed_per_million": 22.568, + "total_deaths_per_million": 1.242, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 64.81 + }, + { + "date": "2020-06-12", + "total_cases": 2044.0, + "new_cases": 92.0, + "new_cases_smoothed": 108.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 423.209, + "new_cases_per_million": 19.049, + "new_cases_smoothed_per_million": 22.361, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 64.81 + }, + { + "date": "2020-06-13", + "total_cases": 2057.0, + "new_cases": 13.0, + "new_cases_smoothed": 86.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 425.901, + "new_cases_per_million": 2.692, + "new_cases_smoothed_per_million": 17.925, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 64.81 + }, + { + "date": "2020-06-14", + "total_cases": 2057.0, + "new_cases": 0.0, + "new_cases_smoothed": 69.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 425.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.405, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 64.81 + }, + { + "date": "2020-06-15", + "total_cases": 2222.0, + "new_cases": 165.0, + "new_cases_smoothed": 84.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 460.064, + "new_cases_per_million": 34.163, + "new_cases_smoothed_per_million": 17.392, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 64.81 + }, + { + "date": "2020-06-16", + "total_cases": 2289.0, + "new_cases": 67.0, + "new_cases_smoothed": 62.714, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 473.936, + "new_cases_per_million": 13.872, + "new_cases_smoothed_per_million": 12.985, + "total_deaths_per_million": 2.07, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-06-17", + "total_cases": 2410.0, + "new_cases": 121.0, + "new_cases_smoothed": 74.571, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 498.989, + "new_cases_per_million": 25.053, + "new_cases_smoothed_per_million": 15.44, + "total_deaths_per_million": 2.899, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.266, + "stringency_index": 64.81 + }, + { + "date": "2020-06-18", + "total_cases": 2564.0, + "new_cases": 154.0, + "new_cases_smoothed": 87.429, + "total_deaths": 18.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 530.875, + "new_cases_per_million": 31.886, + "new_cases_smoothed_per_million": 18.102, + "total_deaths_per_million": 3.727, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 64.81 + }, + { + "date": "2020-06-19", + "total_cases": 2605.0, + "new_cases": 41.0, + "new_cases_smoothed": 80.143, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 539.364, + "new_cases_per_million": 8.489, + "new_cases_smoothed_per_million": 16.594, + "total_deaths_per_million": 3.934, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 64.81 + }, + { + "date": "2020-06-20", + "total_cases": 2605.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 539.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.209, + "total_deaths_per_million": 3.934, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 64.81 + }, + { + "date": "2020-06-21", + "total_cases": 2808.0, + "new_cases": 203.0, + "new_cases_smoothed": 107.286, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 581.395, + "new_cases_per_million": 42.031, + "new_cases_smoothed_per_million": 22.213, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.473, + "stringency_index": 64.81 + }, + { + "date": "2020-06-22", + "total_cases": 2808.0, + "new_cases": 0.0, + "new_cases_smoothed": 83.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 581.395, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.333, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.473, + "stringency_index": 64.81 + }, + { + "date": "2020-06-23", + "total_cases": 2963.0, + "new_cases": 155.0, + "new_cases_smoothed": 96.286, + "total_deaths": 30.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 613.488, + "new_cases_per_million": 32.093, + "new_cases_smoothed_per_million": 19.936, + "total_deaths_per_million": 6.211, + "new_deaths_per_million": 1.449, + "new_deaths_smoothed_per_million": 0.592, + "stringency_index": 64.81 + }, + { + "date": "2020-06-24", + "total_cases": 3051.0, + "new_cases": 88.0, + "new_cases_smoothed": 91.571, + "total_deaths": 37.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 631.708, + "new_cases_per_million": 18.22, + "new_cases_smoothed_per_million": 18.96, + "total_deaths_per_million": 7.661, + "new_deaths_per_million": 1.449, + "new_deaths_smoothed_per_million": 0.68, + "stringency_index": 64.81 + }, + { + "date": "2020-06-25", + "total_cases": 3099.0, + "new_cases": 48.0, + "new_cases_smoothed": 76.429, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 641.646, + "new_cases_per_million": 9.938, + "new_cases_smoothed_per_million": 15.824, + "total_deaths_per_million": 7.868, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.592, + "stringency_index": 64.81 + }, + { + "date": "2020-06-26", + "total_cases": 3244.0, + "new_cases": 145.0, + "new_cases_smoothed": 91.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 671.668, + "new_cases_per_million": 30.022, + "new_cases_smoothed_per_million": 18.901, + "total_deaths_per_million": 8.282, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.621, + "stringency_index": 64.81 + }, + { + "date": "2020-06-27", + "total_cases": 3340.0, + "new_cases": 96.0, + "new_cases_smoothed": 105.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 691.545, + "new_cases_per_million": 19.877, + "new_cases_smoothed_per_million": 21.74, + "total_deaths_per_million": 8.282, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.621, + "stringency_index": 64.81 + }, + { + "date": "2020-06-28", + "total_cases": 3429.0, + "new_cases": 89.0, + "new_cases_smoothed": 88.714, + "total_deaths": 45.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 709.973, + "new_cases_per_million": 18.427, + "new_cases_smoothed_per_million": 18.368, + "total_deaths_per_million": 9.317, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.651, + "stringency_index": 64.81 + }, + { + "date": "2020-06-29", + "total_cases": 3429.0, + "new_cases": 0.0, + "new_cases_smoothed": 88.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 709.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.368, + "total_deaths_per_million": 9.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.651, + "stringency_index": 64.81 + }, + { + "date": "2020-06-30", + "total_cases": 3613.0, + "new_cases": 184.0, + "new_cases_smoothed": 92.857, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 748.07, + "new_cases_per_million": 38.097, + "new_cases_smoothed_per_million": 19.226, + "total_deaths_per_million": 9.731, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.503, + "stringency_index": 64.81 + }, + { + "date": "2020-07-01", + "total_cases": 3745.0, + "new_cases": 132.0, + "new_cases_smoothed": 99.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 775.4, + "new_cases_per_million": 27.331, + "new_cases_smoothed_per_million": 20.527, + "total_deaths_per_million": 9.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 64.81 + }, + { + "date": "2020-07-02", + "total_cases": 3745.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 775.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.108, + "total_deaths_per_million": 9.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.266, + "stringency_index": 64.81 + }, + { + "date": "2020-07-03", + "total_cases": 3823.0, + "new_cases": 78.0, + "new_cases_smoothed": 82.714, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 791.55, + "new_cases_per_million": 16.15, + "new_cases_smoothed_per_million": 17.126, + "total_deaths_per_million": 9.938, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 64.81 + }, + { + "date": "2020-07-04", + "total_cases": 3918.0, + "new_cases": 95.0, + "new_cases_smoothed": 82.571, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 811.22, + "new_cases_per_million": 19.67, + "new_cases_smoothed_per_million": 17.096, + "total_deaths_per_million": 9.938, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 64.81 + }, + { + "date": "2020-07-05", + "total_cases": 3969.0, + "new_cases": 51.0, + "new_cases_smoothed": 77.143, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 821.779, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 15.972, + "total_deaths_per_million": 9.938, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 64.81 + }, + { + "date": "2020-07-06", + "total_cases": 3969.0, + "new_cases": 0.0, + "new_cases_smoothed": 77.143, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 821.779, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.972, + "total_deaths_per_million": 9.938, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 64.81 + }, + { + "date": "2020-07-07", + "total_cases": 4033.0, + "new_cases": 64.0, + "new_cases_smoothed": 60.0, + "total_deaths": 52.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 835.03, + "new_cases_per_million": 13.251, + "new_cases_smoothed_per_million": 12.423, + "total_deaths_per_million": 10.767, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-08", + "total_cases": 4071.0, + "new_cases": 38.0, + "new_cases_smoothed": 46.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 842.898, + "new_cases_per_million": 7.868, + "new_cases_smoothed_per_million": 9.643, + "total_deaths_per_million": 10.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-09", + "total_cases": 4109.0, + "new_cases": 38.0, + "new_cases_smoothed": 52.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 850.766, + "new_cases_per_million": 7.868, + "new_cases_smoothed_per_million": 10.767, + "total_deaths_per_million": 10.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-10", + "total_cases": 4200.0, + "new_cases": 91.0, + "new_cases_smoothed": 53.857, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 869.608, + "new_cases_per_million": 18.842, + "new_cases_smoothed_per_million": 11.151, + "total_deaths_per_million": 10.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 64.81 + }, + { + "date": "2020-07-11", + "total_cases": 4259.0, + "new_cases": 59.0, + "new_cases_smoothed": 48.714, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 881.824, + "new_cases_per_million": 12.216, + "new_cases_smoothed_per_million": 10.086, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-12", + "total_cases": 4288.0, + "new_cases": 29.0, + "new_cases_smoothed": 45.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 887.828, + "new_cases_per_million": 6.004, + "new_cases_smoothed_per_million": 9.436, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-13", + "total_cases": 4288.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 887.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.436, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 64.81 + }, + { + "date": "2020-07-14", + "total_cases": 4321.0, + "new_cases": 33.0, + "new_cases_smoothed": 41.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 894.661, + "new_cases_per_million": 6.833, + "new_cases_smoothed_per_million": 8.519, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 4356.0, + "new_cases": 35.0, + "new_cases_smoothed": 40.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 901.907, + "new_cases_per_million": 7.247, + "new_cases_smoothed_per_million": 8.43, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 4362.0, + "new_cases": 6.0, + "new_cases_smoothed": 36.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 903.15, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 7.483, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 4373.0, + "new_cases": 11.0, + "new_cases_smoothed": 24.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 905.427, + "new_cases_per_million": 2.278, + "new_cases_smoothed_per_million": 5.117, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 53.7 + }, + { + "date": "2020-07-18", + "total_cases": 4389.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 908.74, + "new_cases_per_million": 3.313, + "new_cases_smoothed_per_million": 3.845, + "total_deaths_per_million": 10.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-19", + "total_cases": 4485.0, + "new_cases": 96.0, + "new_cases_smoothed": 28.143, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 928.617, + "new_cases_per_million": 19.877, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 11.388, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 53.7 + }, + { + "date": "2020-07-20", + "total_cases": 4485.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.143, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 928.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 11.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 53.7 + }, + { + "date": "2020-07-21", + "total_cases": 4548.0, + "new_cases": 63.0, + "new_cases_smoothed": 32.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 941.661, + "new_cases_per_million": 13.044, + "new_cases_smoothed_per_million": 6.714, + "total_deaths_per_million": 11.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 53.7 + }, + { + "date": "2020-07-22", + "total_cases": 4561.0, + "new_cases": 13.0, + "new_cases_smoothed": 29.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 944.353, + "new_cases_per_million": 2.692, + "new_cases_smoothed_per_million": 6.064, + "total_deaths_per_million": 11.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 53.7 + }, + { + "date": "2020-07-23", + "total_cases": 4574.0, + "new_cases": 13.0, + "new_cases_smoothed": 30.286, + "total_deaths": 57.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 947.044, + "new_cases_per_million": 2.692, + "new_cases_smoothed_per_million": 6.271, + "total_deaths_per_million": 11.802, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 53.7 + }, + { + "date": "2020-07-24", + "total_cases": 4590.0, + "new_cases": 16.0, + "new_cases_smoothed": 31.0, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 950.357, + "new_cases_per_million": 3.313, + "new_cases_smoothed_per_million": 6.419, + "total_deaths_per_million": 12.009, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 54.63 + }, + { + "date": "2020-07-25", + "total_cases": 4593.0, + "new_cases": 3.0, + "new_cases_smoothed": 29.143, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 950.978, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 6.034, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 54.63 + }, + { + "date": "2020-07-26", + "total_cases": 4598.0, + "new_cases": 5.0, + "new_cases_smoothed": 16.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 952.013, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 3.342, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 54.63 + }, + { + "date": "2020-07-27", + "total_cases": 4599.0, + "new_cases": 1.0, + "new_cases_smoothed": 16.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 952.22, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 3.372, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 54.63 + }, + { + "date": "2020-07-28", + "total_cases": 4599.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 952.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.509, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 54.63 + }, + { + "date": "2020-07-29", + "total_cases": 4599.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 952.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.124, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 54.63 + }, + { + "date": "2020-07-30", + "total_cases": 4605.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 953.463, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 54.63 + }, + { + "date": "2020-07-31", + "total_cases": 4605.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 953.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-01", + "total_cases": 4608.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 954.084, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-02", + "total_cases": 4614.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 955.326, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-03", + "total_cases": 4614.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 955.326, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-04", + "total_cases": 4614.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 955.326, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-05", + "total_cases": 4618.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 956.154, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-06", + "total_cases": 4618.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 956.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-07", + "total_cases": 4620.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 956.568, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-08", + "total_cases": 4641.0, + "new_cases": 21.0, + "new_cases_smoothed": 4.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 960.917, + "new_cases_per_million": 4.348, + "new_cases_smoothed_per_million": 0.976, + "total_deaths_per_million": 12.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-09", + "total_cases": 4641.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 960.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.423, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-10", + "total_cases": 4641.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 960.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-11", + "total_cases": 4641.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 960.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-12", + "total_cases": 4647.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 962.159, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 54.63 + }, + { + "date": "2020-08-13", + "total_cases": 4652.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 963.194, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 1.006, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 54.63 + }, + { + "date": "2020-08-14", + "total_cases": 4652.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 963.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 54.63 + }, + { + "date": "2020-08-15", + "total_cases": 4652.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 963.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 54.63 + }, + { + "date": "2020-08-16", + "total_cases": 4652.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 963.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-17", + "total_cases": 4652.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 963.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-18", + "total_cases": 4667.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 966.3, + "new_cases_per_million": 3.106, + "new_cases_smoothed_per_million": 0.769, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-19", + "total_cases": 4679.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 2.485, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-20", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-21", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-22", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-23", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-24", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-08-25", + "total_cases": 4679.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 968.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-26", + "total_cases": 4691.0, + "new_cases": 12.0, + "new_cases_smoothed": 1.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 971.269, + "new_cases_per_million": 2.485, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-27", + "total_cases": 4698.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.718, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-28", + "total_cases": 4698.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-29", + "total_cases": 4700.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 973.132, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-30", + "total_cases": 4700.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 973.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-31", + "total_cases": 4700.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 973.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 12.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-09-01", + "total_cases": 4711.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.571, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 975.41, + "new_cases_per_million": 2.278, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 12.837, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 60.19 + }, + { + "date": "2020-09-02", + "total_cases": 4711.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 975.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.592, + "total_deaths_per_million": 12.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 60.19 + }, + { + "date": "2020-09-03", + "total_cases": 4712.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 975.617, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 12.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 60.19 + }, + { + "date": "2020-09-04", + "total_cases": 4729.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.429, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.137, + "new_cases_per_million": 3.52, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 12.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-05", + "total_cases": 4729.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 12.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + } + ] + }, + "TCD": { + "continent": "Africa", + "location": "Chad", + "population": 16425859.0, + "population_density": 11.833, + "median_age": 16.7, + "aged_65_older": 2.486, + "aged_70_older": 1.446, + "gdp_per_capita": 1768.153, + "extreme_poverty": 38.4, + "cardiovasc_death_rate": 280.995, + "diabetes_prevalence": 6.1, + "handwashing_facilities": 5.818, + "life_expectancy": 54.24, + "data": [ + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.122, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.122, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.122, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.183, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-04-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-04-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-04", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-05", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-06", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.548, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-07", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.548, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-08", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.548, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-09", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.609, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.67, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-04-13", + "total_cases": 15.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.913, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 23.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.4, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 27.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.644, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.644, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 33.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.07, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.07, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 40.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.435, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 46.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.8, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 52.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.166, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.166, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 73.0, + "new_cases": 21.0, + "new_cases_smoothed": 4.714, + "total_deaths": 5.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4.444, + "new_cases_per_million": 1.278, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4.444, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 117.0, + "new_cases": 44.0, + "new_cases_smoothed": 11.0, + "total_deaths": 10.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7.123, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 0.67, + "total_deaths_per_million": 0.609, + "new_deaths_per_million": 0.304, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 0.609, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 0.609, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 170.0, + "new_cases": 53.0, + "new_cases_smoothed": 16.857, + "total_deaths": 17.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 10.35, + "new_cases_per_million": 3.227, + "new_cases_smoothed_per_million": 1.026, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.426, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 10.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.026, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 253.0, + "new_cases": 83.0, + "new_cases_smoothed": 25.714, + "total_deaths": 27.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 15.403, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 1.565, + "total_deaths_per_million": 1.644, + "new_deaths_per_million": 0.609, + "new_deaths_smoothed_per_million": 0.191, + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 260.0, + "new_cases": 7.0, + "new_cases_smoothed": 26.714, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 15.829, + "new_cases_per_million": 0.426, + "new_cases_smoothed_per_million": 1.626, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 322.0, + "new_cases": 62.0, + "new_cases_smoothed": 29.286, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 19.603, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 1.783, + "total_deaths_per_million": 1.887, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 19.603, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.783, + "total_deaths_per_million": 1.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 88.89 + }, + { + "date": "2020-05-12", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 19.603, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.783, + "total_deaths_per_million": 1.887, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 357.0, + "new_cases": 35.0, + "new_cases_smoothed": 26.714, + "total_deaths": 40.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 21.734, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.626, + "total_deaths_per_million": 2.435, + "new_deaths_per_million": 0.548, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 372.0, + "new_cases": 15.0, + "new_cases_smoothed": 28.857, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 22.647, + "new_cases_per_million": 0.913, + "new_cases_smoothed_per_million": 1.757, + "total_deaths_per_million": 2.557, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.217, + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 399.0, + "new_cases": 27.0, + "new_cases_smoothed": 20.857, + "total_deaths": 46.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 24.291, + "new_cases_per_million": 1.644, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 2.8, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.165, + "stringency_index": 87.04 + }, + { + "date": "2020-05-16", + "total_cases": 428.0, + "new_cases": 29.0, + "new_cases_smoothed": 24.0, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 26.056, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.461, + "total_deaths_per_million": 2.922, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 87.04 + }, + { + "date": "2020-05-17", + "total_cases": 474.0, + "new_cases": 46.0, + "new_cases_smoothed": 21.714, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 28.857, + "new_cases_per_million": 2.8, + "new_cases_smoothed_per_million": 1.322, + "total_deaths_per_million": 3.044, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.165, + "stringency_index": 87.04 + }, + { + "date": "2020-05-18", + "total_cases": 503.0, + "new_cases": 29.0, + "new_cases_smoothed": 25.857, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 30.622, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.574, + "total_deaths_per_million": 3.227, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.191, + "stringency_index": 74.07 + }, + { + "date": "2020-05-19", + "total_cases": 519.0, + "new_cases": 16.0, + "new_cases_smoothed": 28.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 31.597, + "new_cases_per_million": 0.974, + "new_cases_smoothed_per_million": 1.713, + "total_deaths_per_million": 3.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.191, + "stringency_index": 74.07 + }, + { + "date": "2020-05-20", + "total_cases": 545.0, + "new_cases": 26.0, + "new_cases_smoothed": 26.857, + "total_deaths": 56.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 33.179, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 1.635, + "total_deaths_per_million": 3.409, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.139, + "stringency_index": 74.07 + }, + { + "date": "2020-05-21", + "total_cases": 565.0, + "new_cases": 20.0, + "new_cases_smoothed": 27.571, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 34.397, + "new_cases_per_million": 1.218, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 3.47, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 74.07 + }, + { + "date": "2020-05-22", + "total_cases": 588.0, + "new_cases": 23.0, + "new_cases_smoothed": 27.0, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 35.797, + "new_cases_per_million": 1.4, + "new_cases_smoothed_per_million": 1.644, + "total_deaths_per_million": 3.531, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 74.07 + }, + { + "date": "2020-05-23", + "total_cases": 611.0, + "new_cases": 23.0, + "new_cases_smoothed": 26.143, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 37.197, + "new_cases_per_million": 1.4, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.592, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 74.07 + }, + { + "date": "2020-05-24", + "total_cases": 648.0, + "new_cases": 37.0, + "new_cases_smoothed": 24.857, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 39.45, + "new_cases_per_million": 2.253, + "new_cases_smoothed_per_million": 1.513, + "total_deaths_per_million": 3.653, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 74.07 + }, + { + "date": "2020-05-25", + "total_cases": 675.0, + "new_cases": 27.0, + "new_cases_smoothed": 24.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 41.094, + "new_cases_per_million": 1.644, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 3.653, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 74.07 + }, + { + "date": "2020-05-26", + "total_cases": 687.0, + "new_cases": 12.0, + "new_cases_smoothed": 24.0, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 41.824, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 1.461, + "total_deaths_per_million": 3.714, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 74.07 + }, + { + "date": "2020-05-27", + "total_cases": 700.0, + "new_cases": 13.0, + "new_cases_smoothed": 22.143, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.616, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 3.775, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 74.07 + }, + { + "date": "2020-05-28", + "total_cases": 715.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.429, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 43.529, + "new_cases_per_million": 0.913, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 3.896, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 74.07 + }, + { + "date": "2020-05-29", + "total_cases": 726.0, + "new_cases": 11.0, + "new_cases_smoothed": 19.714, + "total_deaths": 65.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 44.199, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 3.957, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 74.07 + }, + { + "date": "2020-05-30", + "total_cases": 759.0, + "new_cases": 33.0, + "new_cases_smoothed": 21.143, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 46.208, + "new_cases_per_million": 2.009, + "new_cases_smoothed_per_million": 1.287, + "total_deaths_per_million": 3.957, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 74.07 + }, + { + "date": "2020-05-31", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 46.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.965, + "total_deaths_per_million": 3.957, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 74.07 + }, + { + "date": "2020-06-01", + "total_cases": 778.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.714, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 47.364, + "new_cases_per_million": 1.157, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 3.957, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 74.07 + }, + { + "date": "2020-06-02", + "total_cases": 790.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.714, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 48.095, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 4.018, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 74.07 + }, + { + "date": "2020-06-03", + "total_cases": 803.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.714, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 48.886, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 4.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-04", + "total_cases": 820.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.921, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 0.913, + "total_deaths_per_million": 4.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 74.07 + }, + { + "date": "2020-06-05", + "total_cases": 828.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.571, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 50.408, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.887, + "total_deaths_per_million": 4.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 74.07 + }, + { + "date": "2020-06-06", + "total_cases": 836.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.0, + "total_deaths": 68.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 50.895, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.67, + "total_deaths_per_million": 4.14, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 74.07 + }, + { + "date": "2020-06-07", + "total_cases": 836.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.0, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 50.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.67, + "total_deaths_per_million": 4.201, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-08", + "total_cases": 837.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 50.956, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.513, + "total_deaths_per_million": 4.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-09", + "total_cases": 839.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 51.078, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-10", + "total_cases": 844.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 51.382, + "new_cases_per_million": 0.304, + "new_cases_smoothed_per_million": 0.357, + "total_deaths_per_million": 4.322, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 74.07 + }, + { + "date": "2020-06-11", + "total_cases": 846.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 72.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 51.504, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.383, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 74.07 + }, + { + "date": "2020-06-12", + "total_cases": 848.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 51.626, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 4.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 74.07 + }, + { + "date": "2020-06-13", + "total_cases": 848.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 51.626, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 4.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-14", + "total_cases": 848.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 51.626, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 4.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 74.07 + }, + { + "date": "2020-06-15", + "total_cases": 850.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 51.748, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 74.07 + }, + { + "date": "2020-06-16", + "total_cases": 850.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 73.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 51.748, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 74.07 + }, + { + "date": "2020-06-17", + "total_cases": 853.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 74.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 51.93, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 74.07 + }, + { + "date": "2020-06-18", + "total_cases": 854.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 51.991, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 74.07 + }, + { + "date": "2020-06-19", + "total_cases": 854.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 51.991, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 74.07 + }, + { + "date": "2020-06-20", + "total_cases": 858.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 52.235, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 74.07 + }, + { + "date": "2020-06-21", + "total_cases": 858.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 52.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 74.07 + }, + { + "date": "2020-06-22", + "total_cases": 858.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 74.07 + }, + { + "date": "2020-06-23", + "total_cases": 858.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 74.07 + }, + { + "date": "2020-06-24", + "total_cases": 860.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.356, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-25", + "total_cases": 860.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.356, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-26", + "total_cases": 863.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.539, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-27", + "total_cases": 865.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.661, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-28", + "total_cases": 865.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.661, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-29", + "total_cases": 866.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.722, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-06-30", + "total_cases": 866.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-01", + "total_cases": 866.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-02", + "total_cases": 866.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-03", + "total_cases": 868.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.844, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-04", + "total_cases": 871.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.026, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-05", + "total_cases": 871.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-06", + "total_cases": 872.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.087, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-07", + "total_cases": 872.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.087, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-08", + "total_cases": 873.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.148, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-09", + "total_cases": 873.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-10", + "total_cases": 873.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-11", + "total_cases": 874.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.209, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-12", + "total_cases": 874.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.209, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 4.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-13", + "total_cases": 880.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 75.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.574, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-14", + "total_cases": 880.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-15", + "total_cases": 884.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.818, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-16", + "total_cases": 885.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.878, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-17", + "total_cases": 886.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.939, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-18", + "total_cases": 887.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 54.0, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-19", + "total_cases": 889.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 54.122, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.59 + }, + { + "date": "2020-07-20", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-21", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-22", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-23", + "total_cases": 889.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.122, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-24", + "total_cases": 915.0, + "new_cases": 26.0, + "new_cases_smoothed": 4.143, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.705, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-25", + "total_cases": 915.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-26", + "total_cases": 915.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-27", + "total_cases": 915.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-07-28", + "total_cases": 922.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.131, + "new_cases_per_million": 0.426, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-29", + "total_cases": 926.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.375, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-30", + "total_cases": 926.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.375, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-31", + "total_cases": 935.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.857, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.922, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-08-01", + "total_cases": 936.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.983, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-02", + "total_cases": 936.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.983, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-03", + "total_cases": 936.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.983, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-04", + "total_cases": 936.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.983, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-05", + "total_cases": 938.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.105, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-06", + "total_cases": 939.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.166, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 4.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-07", + "total_cases": 942.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 76.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.349, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-08", + "total_cases": 942.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-09", + "total_cases": 942.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-10", + "total_cases": 944.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.47, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-11", + "total_cases": 945.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.531, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-12", + "total_cases": 946.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.592, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-13", + "total_cases": 949.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.775, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 64.81 + }, + { + "date": "2020-08-14", + "total_cases": 949.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-15", + "total_cases": 951.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.897, + "new_cases_per_million": 0.122, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-16", + "total_cases": 952.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.957, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-17", + "total_cases": 956.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.201, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-18", + "total_cases": 959.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.384, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-19", + "total_cases": 970.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.429, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.053, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-20", + "total_cases": 971.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.114, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-21", + "total_cases": 972.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.175, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-22", + "total_cases": 981.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.723, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-23", + "total_cases": 982.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.784, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-24", + "total_cases": 986.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.027, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-25", + "total_cases": 987.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.088, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 995.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.571, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.575, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-27", + "total_cases": 998.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.758, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.235, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-28", + "total_cases": 1004.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.123, + "new_cases_per_million": 0.365, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-29", + "total_cases": 1008.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.367, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.235, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-30", + "total_cases": 1008.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.367, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-31", + "total_cases": 1012.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.61, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-09-01", + "total_cases": 1013.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.671, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-09-02", + "total_cases": 1017.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.915, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 1017.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.915, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.165, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1018.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.975, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1023.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.28, + "new_cases_per_million": 0.304, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "CHL": { + "continent": "South America", + "location": "Chile", + "population": 19116209.0, + "population_density": 24.282, + "median_age": 35.4, + "aged_65_older": 11.087, + "aged_70_older": 6.938, + "gdp_per_capita": 22767.037, + "extreme_poverty": 1.3, + "cardiovasc_death_rate": 127.993, + "diabetes_prevalence": 8.46, + "female_smokers": 34.2, + "male_smokers": 41.5, + "hospital_beds_per_thousand": 2.11, + "life_expectancy": 80.18, + "data": [ + { + "date": "2020-03-04", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.052, + "new_cases_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.209, + "new_cases_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.262, + "new_cases_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 10.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.523, + "new_cases_per_million": 0.262, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 17.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.209, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 23.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.203, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 33.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.726, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 43.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.249, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.284, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 61.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.191, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 0.418, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-16", + "total_cases": 75.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.923, + "new_cases_per_million": 0.732, + "new_cases_smoothed_per_million": 0.486, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-17", + "total_cases": 156.0, + "new_cases": 81.0, + "new_cases_smoothed": 20.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.161, + "new_cases_per_million": 4.237, + "new_cases_smoothed_per_million": 1.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-18", + "total_cases": 201.0, + "new_cases": 45.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.515, + "new_cases_per_million": 2.354, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 238.0, + "new_cases": 37.0, + "new_cases_smoothed": 30.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.45, + "new_cases_per_million": 1.936, + "new_cases_smoothed_per_million": 1.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 342.0, + "new_cases": 104.0, + "new_cases_smoothed": 44.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.891, + "new_cases_per_million": 5.44, + "new_cases_smoothed_per_million": 2.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-21", + "total_cases": 434.0, + "new_cases": 92.0, + "new_cases_smoothed": 55.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.703, + "new_cases_per_million": 4.813, + "new_cases_smoothed_per_million": 2.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-22", + "total_cases": 537.0, + "new_cases": 103.0, + "new_cases_smoothed": 68.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.091, + "new_cases_per_million": 5.388, + "new_cases_smoothed_per_million": 3.557, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-23", + "total_cases": 632.0, + "new_cases": 95.0, + "new_cases_smoothed": 79.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.061, + "new_cases_per_million": 4.97, + "new_cases_smoothed_per_million": 4.163, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 51.85 + }, + { + "date": "2020-03-24", + "total_cases": 746.0, + "new_cases": 114.0, + "new_cases_smoothed": 84.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.024, + "new_cases_per_million": 5.964, + "new_cases_smoothed_per_million": 4.409, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 51.85 + }, + { + "date": "2020-03-25", + "total_cases": 922.0, + "new_cases": 176.0, + "new_cases_smoothed": 103.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 48.231, + "new_cases_per_million": 9.207, + "new_cases_smoothed_per_million": 5.388, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 73.15 + }, + { + "date": "2020-03-26", + "total_cases": 1142.0, + "new_cases": 220.0, + "new_cases_smoothed": 129.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 59.74, + "new_cases_per_million": 11.509, + "new_cases_smoothed_per_million": 6.756, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 1306.0, + "new_cases": 164.0, + "new_cases_smoothed": 137.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 68.319, + "new_cases_per_million": 8.579, + "new_cases_smoothed_per_million": 7.204, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 1610.0, + "new_cases": 304.0, + "new_cases_smoothed": 168.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 84.222, + "new_cases_per_million": 15.903, + "new_cases_smoothed_per_million": 8.788, + "total_deaths_per_million": 0.262, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 1909.0, + "new_cases": 299.0, + "new_cases_smoothed": 196.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 99.863, + "new_cases_per_million": 15.641, + "new_cases_smoothed_per_million": 10.253, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 2139.0, + "new_cases": 230.0, + "new_cases_smoothed": 215.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 111.895, + "new_cases_per_million": 12.032, + "new_cases_smoothed_per_million": 11.262, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 2449.0, + "new_cases": 310.0, + "new_cases_smoothed": 243.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 128.111, + "new_cases_per_million": 16.217, + "new_cases_smoothed_per_million": 12.727, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 73.15 + }, + { + "date": "2020-04-01", + "total_cases": 2738.0, + "new_cases": 289.0, + "new_cases_smoothed": 259.429, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 143.229, + "new_cases_per_million": 15.118, + "new_cases_smoothed_per_million": 13.571, + "total_deaths_per_million": 0.628, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.075, + "total_tests": 38040.0, + "total_tests_per_thousand": 1.99, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-02", + "total_cases": 3031.0, + "new_cases": 293.0, + "new_cases_smoothed": 269.857, + "total_deaths": 16.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 158.557, + "new_cases_per_million": 15.327, + "new_cases_smoothed_per_million": 14.117, + "total_deaths_per_million": 0.837, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 2685.0, + "total_tests": 40725.0, + "total_tests_per_thousand": 2.13, + "new_tests_per_thousand": 0.14, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 3404.0, + "new_cases": 373.0, + "new_cases_smoothed": 299.714, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 178.069, + "new_cases_per_million": 19.512, + "new_cases_smoothed_per_million": 15.679, + "total_deaths_per_million": 0.942, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3405.0, + "total_tests": 44130.0, + "total_tests_per_thousand": 2.309, + "new_tests_per_thousand": 0.178, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-04", + "total_cases": 3737.0, + "new_cases": 333.0, + "new_cases_smoothed": 303.857, + "total_deaths": 22.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 195.489, + "new_cases_per_million": 17.42, + "new_cases_smoothed_per_million": 15.895, + "total_deaths_per_million": 1.151, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 4483.0, + "total_tests": 48613.0, + "total_tests_per_thousand": 2.543, + "new_tests_per_thousand": 0.235, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-05", + "total_cases": 4161.0, + "new_cases": 424.0, + "new_cases_smoothed": 321.714, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 217.669, + "new_cases_per_million": 22.18, + "new_cases_smoothed_per_million": 16.829, + "total_deaths_per_million": 1.412, + "new_deaths_per_million": 0.262, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 3343.0, + "total_tests": 51956.0, + "total_tests_per_thousand": 2.718, + "new_tests_per_thousand": 0.175, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-06", + "total_cases": 4471.0, + "new_cases": 310.0, + "new_cases_smoothed": 333.143, + "total_deaths": 34.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 233.885, + "new_cases_per_million": 16.217, + "new_cases_smoothed_per_million": 17.427, + "total_deaths_per_million": 1.779, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 2908.0, + "total_tests": 54864.0, + "total_tests_per_thousand": 2.87, + "new_tests_per_thousand": 0.152, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 4815.0, + "new_cases": 344.0, + "new_cases_smoothed": 338.0, + "total_deaths": 37.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 251.88, + "new_cases_per_million": 17.995, + "new_cases_smoothed_per_million": 17.681, + "total_deaths_per_million": 1.936, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 2258.0, + "total_tests": 57122.0, + "total_tests_per_thousand": 2.988, + "new_tests_per_thousand": 0.118, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 5116.0, + "new_cases": 301.0, + "new_cases_smoothed": 339.714, + "total_deaths": 43.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 267.626, + "new_cases_per_million": 15.746, + "new_cases_smoothed_per_million": 17.771, + "total_deaths_per_million": 2.249, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 3269.0, + "total_tests": 60391.0, + "total_tests_per_thousand": 3.159, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 3193.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 9.399, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 5546.0, + "new_cases": 430.0, + "new_cases_smoothed": 359.286, + "total_deaths": 48.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 290.12, + "new_cases_per_million": 22.494, + "new_cases_smoothed_per_million": 18.795, + "total_deaths_per_million": 2.511, + "new_deaths_per_million": 0.262, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 7962.0, + "total_tests": 68353.0, + "total_tests_per_thousand": 3.576, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 3947.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 10.985999999999999, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 5972.0, + "new_cases": 426.0, + "new_cases_smoothed": 366.857, + "total_deaths": 57.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 312.405, + "new_cases_per_million": 22.285, + "new_cases_smoothed_per_million": 19.191, + "total_deaths_per_million": 2.982, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 4444.0, + "total_tests": 72797.0, + "total_tests_per_thousand": 3.808, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 4095.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 11.162, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 6501.0, + "new_cases": 529.0, + "new_cases_smoothed": 394.857, + "total_deaths": 65.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 340.078, + "new_cases_per_million": 27.673, + "new_cases_smoothed_per_million": 20.656, + "total_deaths_per_million": 3.4, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 3577.0, + "total_tests": 76374.0, + "total_tests_per_thousand": 3.995, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 3966.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 10.044, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 6927.0, + "new_cases": 426.0, + "new_cases_smoothed": 395.143, + "total_deaths": 73.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 362.363, + "new_cases_per_million": 22.285, + "new_cases_smoothed_per_million": 20.671, + "total_deaths_per_million": 3.819, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 5897.0, + "total_tests": 82271.0, + "total_tests_per_thousand": 4.304, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 4331.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 10.960999999999999, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 7213.0, + "new_cases": 286.0, + "new_cases_smoothed": 391.714, + "total_deaths": 80.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 377.324, + "new_cases_per_million": 14.961, + "new_cases_smoothed_per_million": 20.491, + "total_deaths_per_million": 4.185, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 2764.0, + "total_tests": 85035.0, + "total_tests_per_thousand": 4.448, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 4310.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 11.003, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 7525.0, + "new_cases": 312.0, + "new_cases_smoothed": 387.143, + "total_deaths": 82.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 393.645, + "new_cases_per_million": 16.321, + "new_cases_smoothed_per_million": 20.252, + "total_deaths_per_million": 4.29, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 2759.0, + "total_tests": 87794.0, + "total_tests_per_thousand": 4.593, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 4382.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 11.319, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 7917.0, + "new_cases": 392.0, + "new_cases_smoothed": 400.143, + "total_deaths": 92.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 414.151, + "new_cases_per_million": 20.506, + "new_cases_smoothed_per_million": 20.932, + "total_deaths_per_million": 4.813, + "new_deaths_per_million": 0.523, + "new_deaths_smoothed_per_million": 0.366, + "new_tests": 4079.0, + "total_tests": 91873.0, + "total_tests_per_thousand": 4.806, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 4497.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 11.238, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 8273.0, + "new_cases": 356.0, + "new_cases_smoothed": 389.571, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 432.774, + "new_cases_per_million": 18.623, + "new_cases_smoothed_per_million": 20.379, + "total_deaths_per_million": 4.917, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 6551.0, + "total_tests": 98424.0, + "total_tests_per_thousand": 5.149, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 4296.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 11.027999999999999, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 8807.0, + "new_cases": 534.0, + "new_cases_smoothed": 405.0, + "total_deaths": 105.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 460.709, + "new_cases_per_million": 27.934, + "new_cases_smoothed_per_million": 21.186, + "total_deaths_per_million": 5.493, + "new_deaths_per_million": 0.575, + "new_deaths_smoothed_per_million": 0.359, + "new_tests": 5449.0, + "total_tests": 103873.0, + "total_tests_per_thousand": 5.434, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 4439.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 10.96, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 9252.0, + "new_cases": 445.0, + "new_cases_smoothed": 393.0, + "total_deaths": 116.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 483.987, + "new_cases_per_million": 23.279, + "new_cases_smoothed_per_million": 20.558, + "total_deaths_per_million": 6.068, + "new_deaths_per_million": 0.575, + "new_deaths_smoothed_per_million": 0.381, + "new_tests": 5018.0, + "total_tests": 108891.0, + "total_tests_per_thousand": 5.696, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 4645.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 11.819, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 9730.0, + "new_cases": 478.0, + "new_cases_smoothed": 400.429, + "total_deaths": 126.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 508.992, + "new_cases_per_million": 25.005, + "new_cases_smoothed_per_million": 20.947, + "total_deaths_per_million": 6.591, + "new_deaths_per_million": 0.523, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 4758.0, + "total_tests": 113649.0, + "total_tests_per_thousand": 5.945, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 4483.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 11.196, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 10088.0, + "new_cases": 358.0, + "new_cases_smoothed": 410.714, + "total_deaths": 133.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 527.72, + "new_cases_per_million": 18.728, + "new_cases_smoothed_per_million": 21.485, + "total_deaths_per_million": 6.957, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 5178.0, + "total_tests": 118827.0, + "total_tests_per_thousand": 6.216, + "new_tests_per_thousand": 0.271, + "new_tests_smoothed": 4827.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 11.753, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 10507.0, + "new_cases": 419.0, + "new_cases_smoothed": 426.0, + "total_deaths": 139.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 549.638, + "new_cases_per_million": 21.919, + "new_cases_smoothed_per_million": 22.285, + "total_deaths_per_million": 7.271, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.426, + "new_tests": 3530.0, + "total_tests": 122357.0, + "total_tests_per_thousand": 6.401, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 4938.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 11.592, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 10832.0, + "new_cases": 325.0, + "new_cases_smoothed": 416.429, + "total_deaths": 147.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 566.64, + "new_cases_per_million": 17.001, + "new_cases_smoothed_per_million": 21.784, + "total_deaths_per_million": 7.69, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 6365.0, + "total_tests": 128722.0, + "total_tests_per_thousand": 6.734, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 5264.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 12.640999999999998, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 11296.0, + "new_cases": 464.0, + "new_cases_smoothed": 431.857, + "total_deaths": 160.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 590.912, + "new_cases_per_million": 24.273, + "new_cases_smoothed_per_million": 22.591, + "total_deaths_per_million": 8.37, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 6425.0, + "total_tests": 135147.0, + "total_tests_per_thousand": 7.07, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 5246.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 12.148, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 11812.0, + "new_cases": 516.0, + "new_cases_smoothed": 429.286, + "total_deaths": 168.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 617.905, + "new_cases_per_million": 26.993, + "new_cases_smoothed_per_million": 22.457, + "total_deaths_per_million": 8.788, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.471, + "new_tests": 7120.0, + "total_tests": 142267.0, + "total_tests_per_thousand": 7.442, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 5485.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 12.777000000000001, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 12306.0, + "new_cases": 494.0, + "new_cases_smoothed": 436.286, + "total_deaths": 174.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 643.747, + "new_cases_per_million": 25.842, + "new_cases_smoothed_per_million": 22.823, + "total_deaths_per_million": 9.102, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.433, + "new_tests": 6945.0, + "total_tests": 149212.0, + "total_tests_per_thousand": 7.806, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 5760.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 13.202, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 12858.0, + "new_cases": 552.0, + "new_cases_smoothed": 446.857, + "total_deaths": 181.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 672.623, + "new_cases_per_million": 28.876, + "new_cases_smoothed_per_million": 23.376, + "total_deaths_per_million": 9.468, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 6763.0, + "total_tests": 155975.0, + "total_tests_per_thousand": 8.159, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 6047.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 13.532, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 13331.0, + "new_cases": 473.0, + "new_cases_smoothed": 463.286, + "total_deaths": 189.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 697.366, + "new_cases_per_million": 24.743, + "new_cases_smoothed_per_million": 24.235, + "total_deaths_per_million": 9.887, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 5260.0, + "total_tests": 161235.0, + "total_tests_per_thousand": 8.434, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 6058.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 13.075999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 13813.0, + "new_cases": 482.0, + "new_cases_smoothed": 472.286, + "total_deaths": 198.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 722.581, + "new_cases_per_million": 25.214, + "new_cases_smoothed_per_million": 24.706, + "total_deaths_per_million": 10.358, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.441, + "new_tests": 4930.0, + "total_tests": 166165.0, + "total_tests_per_thousand": 8.692, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 6258.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 13.25, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 14365.0, + "new_cases": 552.0, + "new_cases_smoothed": 504.714, + "total_deaths": 207.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 751.457, + "new_cases_per_million": 28.876, + "new_cases_smoothed_per_million": 26.402, + "total_deaths_per_million": 10.829, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 6454.0, + "total_tests": 172619.0, + "total_tests_per_thousand": 9.03, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 6271.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 12.425, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 14885.0, + "new_cases": 520.0, + "new_cases_smoothed": 512.714, + "total_deaths": 216.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 778.659, + "new_cases_per_million": 27.202, + "new_cases_smoothed_per_million": 26.821, + "total_deaths_per_million": 11.299, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 7898.0, + "total_tests": 180517.0, + "total_tests_per_thousand": 9.443, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 6481.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 12.640999999999998, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 16023.0, + "new_cases": 1138.0, + "new_cases_smoothed": 601.571, + "total_deaths": 227.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 838.189, + "new_cases_per_million": 59.531, + "new_cases_smoothed_per_million": 31.469, + "total_deaths_per_million": 11.875, + "new_deaths_per_million": 0.575, + "new_deaths_smoothed_per_million": 0.441, + "new_tests": 8916.0, + "total_tests": 189433.0, + "total_tests_per_thousand": 9.91, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 6738.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 11.200999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 17008.0, + "new_cases": 985.0, + "new_cases_smoothed": 671.714, + "total_deaths": 234.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 889.716, + "new_cases_per_million": 51.527, + "new_cases_smoothed_per_million": 35.138, + "total_deaths_per_million": 12.241, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 9967.0, + "total_tests": 199400.0, + "total_tests_per_thousand": 10.431, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 7170.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 10.674000000000001, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 18435.0, + "new_cases": 1427.0, + "new_cases_smoothed": 796.714, + "total_deaths": 247.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 964.365, + "new_cases_per_million": 74.649, + "new_cases_smoothed_per_million": 41.677, + "total_deaths_per_million": 12.921, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 6818.0, + "total_tests": 206218.0, + "total_tests_per_thousand": 10.788, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 7178.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 9.01, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 19663.0, + "new_cases": 1228.0, + "new_cases_smoothed": 904.571, + "total_deaths": 260.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1028.604, + "new_cases_per_million": 64.239, + "new_cases_smoothed_per_million": 47.32, + "total_deaths_per_million": 13.601, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 0.531, + "new_tests": 7913.0, + "total_tests": 214131.0, + "total_tests_per_thousand": 11.202, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 7557.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 8.354, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 20643.0, + "new_cases": 980.0, + "new_cases_smoothed": 975.714, + "total_deaths": 270.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1079.869, + "new_cases_per_million": 51.265, + "new_cases_smoothed_per_million": 51.041, + "total_deaths_per_million": 14.124, + "new_deaths_per_million": 0.523, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 7964.0, + "total_tests": 222095.0, + "total_tests_per_thousand": 11.618, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 7990.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 8.189, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-06", + "total_cases": 22016.0, + "new_cases": 1373.0, + "new_cases_smoothed": 1093.0, + "total_deaths": 275.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 1151.693, + "new_cases_per_million": 71.824, + "new_cases_smoothed_per_million": 57.177, + "total_deaths_per_million": 14.386, + "new_deaths_per_million": 0.262, + "new_deaths_smoothed_per_million": 0.508, + "new_tests": 10013.0, + "total_tests": 232108.0, + "total_tests_per_thousand": 12.142, + "new_tests_per_thousand": 0.524, + "new_tests_smoothed": 8498.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 7.775, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 23048.0, + "new_cases": 1032.0, + "new_cases_smoothed": 1166.143, + "total_deaths": 281.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1205.678, + "new_cases_per_million": 53.986, + "new_cases_smoothed_per_million": 61.003, + "total_deaths_per_million": 14.7, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.486, + "new_tests": 12118.0, + "total_tests": 244226.0, + "total_tests_per_thousand": 12.776, + "new_tests_per_thousand": 0.634, + "new_tests_smoothed": 9101.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 7.803999999999999, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 24581.0, + "new_cases": 1533.0, + "new_cases_smoothed": 1222.571, + "total_deaths": 285.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1285.872, + "new_cases_per_million": 80.194, + "new_cases_smoothed_per_million": 63.955, + "total_deaths_per_million": 14.909, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.433, + "new_tests": 11735.0, + "total_tests": 255961.0, + "total_tests_per_thousand": 13.39, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 9504.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 7.774, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 25972.0, + "new_cases": 1391.0, + "new_cases_smoothed": 1280.571, + "total_deaths": 294.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1358.638, + "new_cases_per_million": 72.765, + "new_cases_smoothed_per_million": 66.989, + "total_deaths_per_million": 15.38, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 11943.0, + "total_tests": 267904.0, + "total_tests_per_thousand": 14.014, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 9786.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 7.642, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 27219.0, + "new_cases": 1247.0, + "new_cases_smoothed": 1254.857, + "total_deaths": 304.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1423.87, + "new_cases_per_million": 65.233, + "new_cases_smoothed_per_million": 65.644, + "total_deaths_per_million": 15.903, + "new_deaths_per_million": 0.523, + "new_deaths_smoothed_per_million": 0.426, + "new_tests": 12780.0, + "total_tests": 280684.0, + "total_tests_per_thousand": 14.683, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 10638.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 8.477, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 28866.0, + "new_cases": 1647.0, + "new_cases_smoothed": 1314.714, + "total_deaths": 312.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1510.027, + "new_cases_per_million": 86.157, + "new_cases_smoothed_per_million": 68.775, + "total_deaths_per_million": 16.321, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.389, + "new_tests": 13373.0, + "total_tests": 294057.0, + "total_tests_per_thousand": 15.383, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 11418.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 8.685, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 30063.0, + "new_cases": 1197.0, + "new_cases_smoothed": 1345.714, + "total_deaths": 323.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1572.644, + "new_cases_per_million": 62.617, + "new_cases_smoothed_per_million": 70.397, + "total_deaths_per_million": 16.897, + "new_deaths_per_million": 0.575, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 9283.0, + "total_tests": 303340.0, + "total_tests_per_thousand": 15.868, + "new_tests_per_thousand": 0.486, + "new_tests_smoothed": 11606.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 8.624, + "positive_rate": 0.11599999999999999, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 31721.0, + "new_cases": 1658.0, + "new_cases_smoothed": 1386.429, + "total_deaths": 335.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1659.377, + "new_cases_per_million": 86.733, + "new_cases_smoothed_per_million": 72.526, + "total_deaths_per_million": 17.524, + "new_deaths_per_million": 0.628, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 10410.0, + "total_tests": 313750.0, + "total_tests_per_thousand": 16.413, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 11663.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 8.412, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 34381.0, + "new_cases": 2660.0, + "new_cases_smoothed": 1619.0, + "total_deaths": 346.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1798.526, + "new_cases_per_million": 139.149, + "new_cases_smoothed_per_million": 84.693, + "total_deaths_per_million": 18.1, + "new_deaths_per_million": 0.575, + "new_deaths_smoothed_per_million": 0.486, + "new_tests": 11667.0, + "total_tests": 325417.0, + "total_tests_per_thousand": 17.023, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 11599.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 7.164, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-15", + "total_cases": 37040.0, + "new_cases": 2659.0, + "new_cases_smoothed": 1779.857, + "total_deaths": 358.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 1937.623, + "new_cases_per_million": 139.097, + "new_cases_smoothed_per_million": 93.107, + "total_deaths_per_million": 18.728, + "new_deaths_per_million": 0.628, + "new_deaths_smoothed_per_million": 0.546, + "new_tests": 16095.0, + "total_tests": 341512.0, + "total_tests_per_thousand": 17.865, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 12222.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 6.867000000000001, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-16", + "total_cases": 39542.0, + "new_cases": 2502.0, + "new_cases_smoothed": 1938.571, + "total_deaths": 394.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 2068.506, + "new_cases_per_million": 130.884, + "new_cases_smoothed_per_million": 101.41, + "total_deaths_per_million": 20.611, + "new_deaths_per_million": 1.883, + "new_deaths_smoothed_per_million": 0.747, + "new_tests": 8813.0, + "total_tests": 350325.0, + "total_tests_per_thousand": 18.326, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 11774.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 6.074, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-17", + "total_cases": 41428.0, + "new_cases": 1886.0, + "new_cases_smoothed": 2029.857, + "total_deaths": 421.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 2167.166, + "new_cases_per_million": 98.66, + "new_cases_smoothed_per_million": 106.185, + "total_deaths_per_million": 22.023, + "new_deaths_per_million": 1.412, + "new_deaths_smoothed_per_million": 0.874, + "new_tests": 13171.0, + "total_tests": 363496.0, + "total_tests_per_thousand": 19.015, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 11830.0, + "new_tests_smoothed_per_thousand": 0.619, + "tests_per_case": 5.827999999999999, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-18", + "total_cases": 43781.0, + "new_cases": 2353.0, + "new_cases_smoothed": 2130.714, + "total_deaths": 450.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2290.255, + "new_cases_per_million": 123.089, + "new_cases_smoothed_per_million": 111.461, + "total_deaths_per_million": 23.54, + "new_deaths_per_million": 1.517, + "new_deaths_smoothed_per_million": 1.031, + "new_tests": 17515.0, + "total_tests": 381011.0, + "total_tests_per_thousand": 19.931, + "new_tests_per_thousand": 0.916, + "new_tests_smoothed": 12422.0, + "new_tests_smoothed_per_thousand": 0.65, + "tests_per_case": 5.83, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-19", + "total_cases": 46059.0, + "new_cases": 2278.0, + "new_cases_smoothed": 2285.143, + "total_deaths": 478.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2409.421, + "new_cases_per_million": 119.166, + "new_cases_smoothed_per_million": 119.54, + "total_deaths_per_million": 25.005, + "new_deaths_per_million": 1.465, + "new_deaths_smoothed_per_million": 1.158, + "new_tests": 16189.0, + "total_tests": 397200.0, + "total_tests_per_thousand": 20.778, + "new_tests_per_thousand": 0.847, + "new_tests_smoothed": 13409.0, + "new_tests_smoothed_per_thousand": 0.701, + "tests_per_case": 5.867999999999999, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-20", + "total_cases": 49579.0, + "new_cases": 3520.0, + "new_cases_smoothed": 2551.143, + "total_deaths": 509.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 2593.558, + "new_cases_per_million": 184.137, + "new_cases_smoothed_per_million": 133.454, + "total_deaths_per_million": 26.627, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.3, + "new_tests": 12469.0, + "total_tests": 409669.0, + "total_tests_per_thousand": 21.43, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 13703.0, + "new_tests_smoothed_per_thousand": 0.717, + "tests_per_case": 5.371, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-21", + "total_cases": 53617.0, + "new_cases": 4038.0, + "new_cases_smoothed": 2748.0, + "total_deaths": 544.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 2804.793, + "new_cases_per_million": 211.234, + "new_cases_smoothed_per_million": 143.752, + "total_deaths_per_million": 28.458, + "new_deaths_per_million": 1.831, + "new_deaths_smoothed_per_million": 1.48, + "new_tests": 16334.0, + "total_tests": 426003.0, + "total_tests_per_thousand": 22.285, + "new_tests_per_thousand": 0.854, + "new_tests_smoothed": 14369.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 5.229, + "positive_rate": 0.191, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-22", + "total_cases": 57581.0, + "new_cases": 3964.0, + "new_cases_smoothed": 2934.429, + "total_deaths": 589.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 3012.156, + "new_cases_per_million": 207.363, + "new_cases_smoothed_per_million": 153.505, + "total_deaths_per_million": 30.812, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 1.726, + "new_tests": 16090.0, + "total_tests": 442093.0, + "total_tests_per_thousand": 23.127, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 14369.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 4.897, + "positive_rate": 0.204, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-23", + "total_cases": 61857.0, + "new_cases": 4276.0, + "new_cases_smoothed": 3187.857, + "total_deaths": 630.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 3235.84, + "new_cases_per_million": 223.685, + "new_cases_smoothed_per_million": 166.762, + "total_deaths_per_million": 32.956, + "new_deaths_per_million": 2.145, + "new_deaths_smoothed_per_million": 1.764, + "new_tests": 15239.0, + "total_tests": 457332.0, + "total_tests_per_thousand": 23.924, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 15287.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 4.795, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-24", + "total_cases": 65393.0, + "new_cases": 3536.0, + "new_cases_smoothed": 3423.571, + "total_deaths": 673.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 3420.814, + "new_cases_per_million": 184.974, + "new_cases_smoothed_per_million": 179.093, + "total_deaths_per_million": 35.206, + "new_deaths_per_million": 2.249, + "new_deaths_smoothed_per_million": 1.883, + "new_tests": 14426.0, + "total_tests": 471758.0, + "total_tests_per_thousand": 24.678, + "new_tests_per_thousand": 0.755, + "new_tests_smoothed": 15466.0, + "new_tests_smoothed_per_thousand": 0.809, + "tests_per_case": 4.518, + "positive_rate": 0.221, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-25", + "total_cases": 69102.0, + "new_cases": 3709.0, + "new_cases_smoothed": 3617.286, + "total_deaths": 718.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 3614.838, + "new_cases_per_million": 194.024, + "new_cases_smoothed_per_million": 189.226, + "total_deaths_per_million": 37.56, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 2.003, + "new_tests": 16283.0, + "total_tests": 488041.0, + "total_tests_per_thousand": 25.53, + "new_tests_per_thousand": 0.852, + "new_tests_smoothed": 15290.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 4.227, + "positive_rate": 0.237, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-26", + "total_cases": 73997.0, + "new_cases": 4895.0, + "new_cases_smoothed": 3991.143, + "total_deaths": 761.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 3870.903, + "new_cases_per_million": 256.065, + "new_cases_smoothed_per_million": 208.783, + "total_deaths_per_million": 39.809, + "new_deaths_per_million": 2.249, + "new_deaths_smoothed_per_million": 2.115, + "new_tests": 13084.0, + "total_tests": 501125.0, + "total_tests_per_thousand": 26.215, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 14846.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 3.72, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-27", + "total_cases": 77961.0, + "new_cases": 3964.0, + "new_cases_smoothed": 4054.571, + "total_deaths": 806.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 4078.267, + "new_cases_per_million": 207.363, + "new_cases_smoothed_per_million": 212.101, + "total_deaths_per_million": 42.163, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 2.22, + "new_tests": 13398.0, + "total_tests": 514523.0, + "total_tests_per_thousand": 26.916, + "new_tests_per_thousand": 0.701, + "new_tests_smoothed": 14979.0, + "new_tests_smoothed_per_thousand": 0.784, + "tests_per_case": 3.694, + "positive_rate": 0.271, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-28", + "total_cases": 82289.0, + "new_cases": 4328.0, + "new_cases_smoothed": 4096.0, + "total_deaths": 841.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 4304.671, + "new_cases_per_million": 226.405, + "new_cases_smoothed_per_million": 214.268, + "total_deaths_per_million": 43.994, + "new_deaths_per_million": 1.831, + "new_deaths_smoothed_per_million": 2.22, + "new_tests": 15650.0, + "total_tests": 530173.0, + "total_tests_per_thousand": 27.734, + "new_tests_per_thousand": 0.819, + "new_tests_smoothed": 14881.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 3.633, + "positive_rate": 0.275, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-29", + "total_cases": 86943.0, + "new_cases": 4654.0, + "new_cases_smoothed": 4194.571, + "total_deaths": 890.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 43.0, + "total_cases_per_million": 4548.13, + "new_cases_per_million": 243.458, + "new_cases_smoothed_per_million": 219.425, + "total_deaths_per_million": 46.557, + "new_deaths_per_million": 2.563, + "new_deaths_smoothed_per_million": 2.249, + "new_tests": 16333.0, + "total_tests": 546506.0, + "total_tests_per_thousand": 28.589, + "new_tests_per_thousand": 0.854, + "new_tests_smoothed": 14916.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 3.556, + "positive_rate": 0.281, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-30", + "total_cases": 90638.0, + "new_cases": 3695.0, + "new_cases_smoothed": 4111.571, + "total_deaths": 944.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 44.857, + "total_cases_per_million": 4741.421, + "new_cases_per_million": 193.291, + "new_cases_smoothed_per_million": 215.083, + "total_deaths_per_million": 49.382, + "new_deaths_per_million": 2.825, + "new_deaths_smoothed_per_million": 2.347, + "new_tests": 16814.0, + "total_tests": 563320.0, + "total_tests_per_thousand": 29.468, + "new_tests_per_thousand": 0.88, + "new_tests_smoothed": 15141.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 3.6830000000000003, + "positive_rate": 0.272, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-31", + "total_cases": 94858.0, + "new_cases": 4220.0, + "new_cases_smoothed": 4209.286, + "total_deaths": 997.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 4962.176, + "new_cases_per_million": 220.755, + "new_cases_smoothed_per_million": 220.195, + "total_deaths_per_million": 52.155, + "new_deaths_per_million": 2.773, + "new_deaths_smoothed_per_million": 2.421, + "new_tests": 19120.0, + "total_tests": 582440.0, + "total_tests_per_thousand": 30.468, + "new_tests_per_thousand": 1.0, + "new_tests_smoothed": 15812.0, + "new_tests_smoothed_per_thousand": 0.827, + "tests_per_case": 3.7560000000000002, + "positive_rate": 0.266, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-01", + "total_cases": 99688.0, + "new_cases": 4830.0, + "new_cases_smoothed": 4369.429, + "total_deaths": 1054.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 48.0, + "total_cases_per_million": 5214.841, + "new_cases_per_million": 252.665, + "new_cases_smoothed_per_million": 228.572, + "total_deaths_per_million": 55.136, + "new_deaths_per_million": 2.982, + "new_deaths_smoothed_per_million": 2.511, + "new_tests": 16750.0, + "total_tests": 599190.0, + "total_tests_per_thousand": 31.345, + "new_tests_per_thousand": 0.876, + "new_tests_smoothed": 15878.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 3.634, + "positive_rate": 0.275, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-02", + "total_cases": 105159.0, + "new_cases": 5471.0, + "new_cases_smoothed": 4451.714, + "total_deaths": 1113.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 50.286, + "total_cases_per_million": 5501.038, + "new_cases_per_million": 286.197, + "new_cases_smoothed_per_million": 232.876, + "total_deaths_per_million": 58.223, + "new_deaths_per_million": 3.086, + "new_deaths_smoothed_per_million": 2.631, + "new_tests": 13582.0, + "total_tests": 612772.0, + "total_tests_per_thousand": 32.055, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 15950.0, + "new_tests_smoothed_per_thousand": 0.834, + "tests_per_case": 3.583, + "positive_rate": 0.27899999999999997, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-03", + "total_cases": 108686.0, + "new_cases": 3527.0, + "new_cases_smoothed": 4389.286, + "total_deaths": 1188.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 54.571, + "total_cases_per_million": 5685.542, + "new_cases_per_million": 184.503, + "new_cases_smoothed_per_million": 229.611, + "total_deaths_per_million": 62.146, + "new_deaths_per_million": 3.923, + "new_deaths_smoothed_per_million": 2.855, + "new_tests": 15546.0, + "total_tests": 628318.0, + "total_tests_per_thousand": 32.868, + "new_tests_per_thousand": 0.813, + "new_tests_smoothed": 16256.0, + "new_tests_smoothed_per_thousand": 0.85, + "tests_per_case": 3.7039999999999997, + "positive_rate": 0.27, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-04", + "total_cases": 113628.0, + "new_cases": 4942.0, + "new_cases_smoothed": 4477.0, + "total_deaths": 1275.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 62.0, + "total_cases_per_million": 5944.066, + "new_cases_per_million": 258.524, + "new_cases_smoothed_per_million": 234.199, + "total_deaths_per_million": 66.697, + "new_deaths_per_million": 4.551, + "new_deaths_smoothed_per_million": 3.243, + "new_tests": 18458.0, + "total_tests": 646776.0, + "total_tests_per_thousand": 33.834, + "new_tests_per_thousand": 0.966, + "new_tests_smoothed": 16658.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 3.721, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-05", + "total_cases": 118292.0, + "new_cases": 4664.0, + "new_cases_smoothed": 4478.429, + "total_deaths": 1356.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 66.571, + "total_cases_per_million": 6188.047, + "new_cases_per_million": 243.981, + "new_cases_smoothed_per_million": 234.274, + "total_deaths_per_million": 70.935, + "new_deaths_per_million": 4.237, + "new_deaths_smoothed_per_million": 3.482, + "new_tests": 21780.0, + "total_tests": 668556.0, + "total_tests_per_thousand": 34.973, + "new_tests_per_thousand": 1.139, + "new_tests_smoothed": 17436.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 3.8930000000000002, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-06", + "total_cases": 122499.0, + "new_cases": 4207.0, + "new_cases_smoothed": 4551.571, + "total_deaths": 1448.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 72.0, + "total_cases_per_million": 6408.122, + "new_cases_per_million": 220.075, + "new_cases_smoothed_per_million": 238.1, + "total_deaths_per_million": 75.747, + "new_deaths_per_million": 4.813, + "new_deaths_smoothed_per_million": 3.766, + "new_tests": 18954.0, + "total_tests": 687510.0, + "total_tests_per_thousand": 35.965, + "new_tests_per_thousand": 0.992, + "new_tests_smoothed": 17741.0, + "new_tests_smoothed_per_thousand": 0.928, + "tests_per_case": 3.898, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-07", + "total_cases": 127745.0, + "new_cases": 5246.0, + "new_cases_smoothed": 4698.143, + "total_deaths": 1541.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 77.714, + "total_cases_per_million": 6682.549, + "new_cases_per_million": 274.427, + "new_cases_smoothed_per_million": 245.767, + "total_deaths_per_million": 80.612, + "new_deaths_per_million": 4.865, + "new_deaths_smoothed_per_million": 4.065, + "new_tests": 21263.0, + "total_tests": 708773.0, + "total_tests_per_thousand": 37.077, + "new_tests_per_thousand": 1.112, + "new_tests_smoothed": 18048.0, + "new_tests_smoothed_per_thousand": 0.944, + "tests_per_case": 3.842, + "positive_rate": 0.26, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-08", + "total_cases": 134150.0, + "new_cases": 6405.0, + "new_cases_smoothed": 4923.143, + "total_deaths": 2190.0, + "new_deaths": 649.0, + "new_deaths_smoothed": 162.286, + "total_cases_per_million": 7017.605, + "new_cases_per_million": 335.056, + "new_cases_smoothed_per_million": 257.538, + "total_deaths_per_million": 114.562, + "new_deaths_per_million": 33.95, + "new_deaths_smoothed_per_million": 8.489, + "new_tests": 20042.0, + "total_tests": 728815.0, + "total_tests_per_thousand": 38.125, + "new_tests_per_thousand": 1.048, + "new_tests_smoothed": 18518.0, + "new_tests_smoothed_per_thousand": 0.969, + "tests_per_case": 3.761, + "positive_rate": 0.266, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-09", + "total_cases": 138846.0, + "new_cases": 4696.0, + "new_cases_smoothed": 4812.429, + "total_deaths": 2264.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 164.429, + "total_cases_per_million": 7263.26, + "new_cases_per_million": 245.655, + "new_cases_smoothed_per_million": 251.746, + "total_deaths_per_million": 118.434, + "new_deaths_per_million": 3.871, + "new_deaths_smoothed_per_million": 8.602, + "new_tests": 17777.0, + "total_tests": 746592.0, + "total_tests_per_thousand": 39.055, + "new_tests_per_thousand": 0.93, + "new_tests_smoothed": 19117.0, + "new_tests_smoothed_per_thousand": 1.0, + "tests_per_case": 3.972, + "positive_rate": 0.252, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-10", + "total_cases": 142759.0, + "new_cases": 3913.0, + "new_cases_smoothed": 4867.571, + "total_deaths": 2283.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 156.429, + "total_cases_per_million": 7467.956, + "new_cases_per_million": 204.695, + "new_cases_smoothed_per_million": 254.631, + "total_deaths_per_million": 119.427, + "new_deaths_per_million": 0.994, + "new_deaths_smoothed_per_million": 8.183, + "new_tests": 14475.0, + "total_tests": 761067.0, + "total_tests_per_thousand": 39.813, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 18964.0, + "new_tests_smoothed_per_thousand": 0.992, + "tests_per_case": 3.8960000000000004, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-11", + "total_cases": 148496.0, + "new_cases": 5737.0, + "new_cases_smoothed": 4981.143, + "total_deaths": 2475.0, + "new_deaths": 192.0, + "new_deaths_smoothed": 171.429, + "total_cases_per_million": 7768.067, + "new_cases_per_million": 300.112, + "new_cases_smoothed_per_million": 260.572, + "total_deaths_per_million": 129.471, + "new_deaths_per_million": 10.044, + "new_deaths_smoothed_per_million": 8.968, + "new_tests": 19976.0, + "total_tests": 781043.0, + "total_tests_per_thousand": 40.858, + "new_tests_per_thousand": 1.045, + "new_tests_smoothed": 19181.0, + "new_tests_smoothed_per_thousand": 1.003, + "tests_per_case": 3.8510000000000004, + "positive_rate": 0.26, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-12", + "total_cases": 154092.0, + "new_cases": 5596.0, + "new_cases_smoothed": 5114.286, + "total_deaths": 2648.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 184.571, + "total_cases_per_million": 8060.803, + "new_cases_per_million": 292.736, + "new_cases_smoothed_per_million": 267.537, + "total_deaths_per_million": 138.521, + "new_deaths_per_million": 9.05, + "new_deaths_smoothed_per_million": 9.655, + "new_tests": 18733.0, + "total_tests": 799776.0, + "total_tests_per_thousand": 41.838, + "new_tests_per_thousand": 0.98, + "new_tests_smoothed": 18746.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 3.665, + "positive_rate": 0.273, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-13", + "total_cases": 160846.0, + "new_cases": 6754.0, + "new_cases_smoothed": 5478.143, + "total_deaths": 2870.0, + "new_deaths": 222.0, + "new_deaths_smoothed": 203.143, + "total_cases_per_million": 8414.116, + "new_cases_per_million": 353.313, + "new_cases_smoothed_per_million": 286.571, + "total_deaths_per_million": 150.134, + "new_deaths_per_million": 11.613, + "new_deaths_smoothed_per_million": 10.627, + "new_tests": 20223.0, + "total_tests": 819999.0, + "total_tests_per_thousand": 42.895, + "new_tests_per_thousand": 1.058, + "new_tests_smoothed": 18927.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 3.455, + "positive_rate": 0.289, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-14", + "total_cases": 167355.0, + "new_cases": 6509.0, + "new_cases_smoothed": 5658.571, + "total_deaths": 3101.0, + "new_deaths": 231.0, + "new_deaths_smoothed": 222.857, + "total_cases_per_million": 8754.612, + "new_cases_per_million": 340.496, + "new_cases_smoothed_per_million": 296.009, + "total_deaths_per_million": 162.218, + "new_deaths_per_million": 12.084, + "new_deaths_smoothed_per_million": 11.658, + "new_tests": 20151.0, + "total_tests": 840150.0, + "total_tests_per_thousand": 43.95, + "new_tests_per_thousand": 1.054, + "new_tests_smoothed": 18768.0, + "new_tests_smoothed_per_thousand": 0.982, + "tests_per_case": 3.3169999999999997, + "positive_rate": 0.302, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-15", + "total_cases": 174293.0, + "new_cases": 6938.0, + "new_cases_smoothed": 5734.714, + "total_deaths": 3323.0, + "new_deaths": 222.0, + "new_deaths_smoothed": 161.857, + "total_cases_per_million": 9117.55, + "new_cases_per_million": 362.938, + "new_cases_smoothed_per_million": 299.992, + "total_deaths_per_million": 173.832, + "new_deaths_per_million": 11.613, + "new_deaths_smoothed_per_million": 8.467, + "new_tests": 18808.0, + "total_tests": 858958.0, + "total_tests_per_thousand": 44.933, + "new_tests_per_thousand": 0.984, + "new_tests_smoothed": 18592.0, + "new_tests_smoothed_per_thousand": 0.973, + "tests_per_case": 3.242, + "positive_rate": 0.308, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-16", + "total_cases": 179436.0, + "new_cases": 5143.0, + "new_cases_smoothed": 5798.571, + "total_deaths": 3362.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 156.857, + "total_cases_per_million": 9386.589, + "new_cases_per_million": 269.039, + "new_cases_smoothed_per_million": 303.333, + "total_deaths_per_million": 175.872, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 8.205, + "new_tests": 14575.0, + "total_tests": 873533.0, + "total_tests_per_thousand": 45.696, + "new_tests_per_thousand": 0.762, + "new_tests_smoothed": 18134.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 3.127, + "positive_rate": 0.32, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-17", + "total_cases": 184449.0, + "new_cases": 5013.0, + "new_cases_smoothed": 5955.714, + "total_deaths": 3383.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 157.143, + "total_cases_per_million": 9648.827, + "new_cases_per_million": 262.238, + "new_cases_smoothed_per_million": 311.553, + "total_deaths_per_million": 176.97, + "new_deaths_per_million": 1.099, + "new_deaths_smoothed_per_million": 8.22, + "new_tests": 12636.0, + "total_tests": 886169.0, + "total_tests_per_thousand": 46.357, + "new_tests_per_thousand": 0.661, + "new_tests_smoothed": 17872.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 3.0010000000000003, + "positive_rate": 0.33299999999999996, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-18", + "total_cases": 220628.0, + "new_cases": 36179.0, + "new_cases_smoothed": 10304.571, + "total_deaths": 3615.0, + "new_deaths": 232.0, + "new_deaths_smoothed": 162.857, + "total_cases_per_million": 11541.41, + "new_cases_per_million": 1892.582, + "new_cases_smoothed_per_million": 539.049, + "total_deaths_per_million": 189.107, + "new_deaths_per_million": 12.136, + "new_deaths_smoothed_per_million": 8.519, + "new_tests": 16997.0, + "total_tests": 903166.0, + "total_tests_per_thousand": 47.246, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 17446.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 1.693, + "positive_rate": 0.591, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-19", + "total_cases": 225103.0, + "new_cases": 4475.0, + "new_cases_smoothed": 10144.429, + "total_deaths": 3841.0, + "new_deaths": 226.0, + "new_deaths_smoothed": 170.429, + "total_cases_per_million": 11775.504, + "new_cases_per_million": 234.095, + "new_cases_smoothed_per_million": 530.672, + "total_deaths_per_million": 200.929, + "new_deaths_per_million": 11.822, + "new_deaths_smoothed_per_million": 8.915, + "new_tests": 20347.0, + "total_tests": 923513.0, + "total_tests_per_thousand": 48.31, + "new_tests_per_thousand": 1.064, + "new_tests_smoothed": 17677.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 1.743, + "positive_rate": 0.574, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-20", + "total_cases": 231393.0, + "new_cases": 6290.0, + "new_cases_smoothed": 10078.143, + "total_deaths": 4093.0, + "new_deaths": 252.0, + "new_deaths_smoothed": 174.714, + "total_cases_per_million": 12104.544, + "new_cases_per_million": 329.04, + "new_cases_smoothed_per_million": 527.204, + "total_deaths_per_million": 214.111, + "new_deaths_per_million": 13.183, + "new_deaths_smoothed_per_million": 9.14, + "new_tests": 20080.0, + "total_tests": 943593.0, + "total_tests_per_thousand": 49.361, + "new_tests_per_thousand": 1.05, + "new_tests_smoothed": 17656.0, + "new_tests_smoothed_per_thousand": 0.924, + "tests_per_case": 1.7519999999999998, + "positive_rate": 0.5710000000000001, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-21", + "total_cases": 236748.0, + "new_cases": 5355.0, + "new_cases_smoothed": 9913.286, + "total_deaths": 4295.0, + "new_deaths": 202.0, + "new_deaths_smoothed": 170.571, + "total_cases_per_million": 12384.673, + "new_cases_per_million": 280.129, + "new_cases_smoothed_per_million": 518.58, + "total_deaths_per_million": 224.678, + "new_deaths_per_million": 10.567, + "new_deaths_smoothed_per_million": 8.923, + "new_tests": 20115.0, + "total_tests": 963708.0, + "total_tests_per_thousand": 50.413, + "new_tests_per_thousand": 1.052, + "new_tests_smoothed": 17651.0, + "new_tests_smoothed_per_thousand": 0.923, + "tests_per_case": 1.781, + "positive_rate": 0.562, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-22", + "total_cases": 242355.0, + "new_cases": 5607.0, + "new_cases_smoothed": 9723.143, + "total_deaths": 4479.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 165.143, + "total_cases_per_million": 12677.984, + "new_cases_per_million": 293.311, + "new_cases_smoothed_per_million": 508.633, + "total_deaths_per_million": 234.304, + "new_deaths_per_million": 9.625, + "new_deaths_smoothed_per_million": 8.639, + "new_tests": 18645.0, + "total_tests": 982353.0, + "total_tests_per_thousand": 51.388, + "new_tests_per_thousand": 0.975, + "new_tests_smoothed": 17628.0, + "new_tests_smoothed_per_thousand": 0.922, + "tests_per_case": 1.8130000000000002, + "positive_rate": 0.552, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-23", + "total_cases": 246963.0, + "new_cases": 4608.0, + "new_cases_smoothed": 9646.714, + "total_deaths": 4502.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 162.857, + "total_cases_per_million": 12919.036, + "new_cases_per_million": 241.052, + "new_cases_smoothed_per_million": 504.635, + "total_deaths_per_million": 235.507, + "new_deaths_per_million": 1.203, + "new_deaths_smoothed_per_million": 8.519, + "new_tests": 12707.0, + "total_tests": 995060.0, + "total_tests_per_thousand": 52.053, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 17361.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 1.8, + "positive_rate": 0.556, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-24", + "total_cases": 250767.0, + "new_cases": 3804.0, + "new_cases_smoothed": 9474.0, + "total_deaths": 4505.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 160.286, + "total_cases_per_million": 13118.03, + "new_cases_per_million": 198.993, + "new_cases_smoothed_per_million": 495.6, + "total_deaths_per_million": 235.664, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 8.385, + "new_tests": 12575.0, + "total_tests": 1007635.0, + "total_tests_per_thousand": 52.711, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 17352.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 1.8319999999999999, + "positive_rate": 0.546, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-25", + "total_cases": 254416.0, + "new_cases": 3649.0, + "new_cases_smoothed": 4826.857, + "total_deaths": 4731.0, + "new_deaths": 226.0, + "new_deaths_smoothed": 159.429, + "total_cases_per_million": 13308.915, + "new_cases_per_million": 190.885, + "new_cases_smoothed_per_million": 252.501, + "total_deaths_per_million": 247.486, + "new_deaths_per_million": 11.822, + "new_deaths_smoothed_per_million": 8.34, + "new_tests": 17446.0, + "total_tests": 1025081.0, + "total_tests_per_thousand": 53.624, + "new_tests_per_thousand": 0.913, + "new_tests_smoothed": 17416.0, + "new_tests_smoothed_per_thousand": 0.911, + "tests_per_case": 3.608, + "positive_rate": 0.27699999999999997, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-26", + "total_cases": 259064.0, + "new_cases": 4648.0, + "new_cases_smoothed": 4851.571, + "total_deaths": 4903.0, + "new_deaths": 172.0, + "new_deaths_smoothed": 151.714, + "total_cases_per_million": 13552.059, + "new_cases_per_million": 243.144, + "new_cases_smoothed_per_million": 253.794, + "total_deaths_per_million": 256.484, + "new_deaths_per_million": 8.998, + "new_deaths_smoothed_per_million": 7.936, + "new_tests": 18249.0, + "total_tests": 1043330.0, + "total_tests_per_thousand": 54.578, + "new_tests_per_thousand": 0.955, + "new_tests_smoothed": 17117.0, + "new_tests_smoothed_per_thousand": 0.895, + "tests_per_case": 3.528, + "positive_rate": 0.28300000000000003, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-27", + "total_cases": 263360.0, + "new_cases": 4296.0, + "new_cases_smoothed": 4566.714, + "total_deaths": 5068.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 139.286, + "total_cases_per_million": 13776.79, + "new_cases_per_million": 224.731, + "new_cases_smoothed_per_million": 238.892, + "total_deaths_per_million": 265.115, + "new_deaths_per_million": 8.631, + "new_deaths_smoothed_per_million": 7.286, + "new_tests": 17944.0, + "total_tests": 1061274.0, + "total_tests_per_thousand": 55.517, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 16812.0, + "new_tests_smoothed_per_thousand": 0.879, + "tests_per_case": 3.681, + "positive_rate": 0.272, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-28", + "total_cases": 267766.0, + "new_cases": 4406.0, + "new_cases_smoothed": 4431.143, + "total_deaths": 5347.0, + "new_deaths": 279.0, + "new_deaths_smoothed": 150.286, + "total_cases_per_million": 14007.275, + "new_cases_per_million": 230.485, + "new_cases_smoothed_per_million": 231.8, + "total_deaths_per_million": 279.71, + "new_deaths_per_million": 14.595, + "new_deaths_smoothed_per_million": 7.862, + "new_tests": 18370.0, + "total_tests": 1079644.0, + "total_tests_per_thousand": 56.478, + "new_tests_per_thousand": 0.961, + "new_tests_smoothed": 16562.0, + "new_tests_smoothed_per_thousand": 0.866, + "tests_per_case": 3.738, + "positive_rate": 0.268, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-29", + "total_cases": 271982.0, + "new_cases": 4216.0, + "new_cases_smoothed": 4232.429, + "total_deaths": 5509.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 147.143, + "total_cases_per_million": 14227.821, + "new_cases_per_million": 220.546, + "new_cases_smoothed_per_million": 221.405, + "total_deaths_per_million": 288.185, + "new_deaths_per_million": 8.474, + "new_deaths_smoothed_per_million": 7.697, + "new_tests": 16799.0, + "total_tests": 1096443.0, + "total_tests_per_thousand": 57.357, + "new_tests_per_thousand": 0.879, + "new_tests_smoothed": 16299.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 3.8510000000000004, + "positive_rate": 0.26, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-30", + "total_cases": 275999.0, + "new_cases": 4017.0, + "new_cases_smoothed": 4148.0, + "total_deaths": 5575.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 153.286, + "total_cases_per_million": 14437.957, + "new_cases_per_million": 210.136, + "new_cases_smoothed_per_million": 216.989, + "total_deaths_per_million": 291.637, + "new_deaths_per_million": 3.453, + "new_deaths_smoothed_per_million": 8.019, + "new_tests": 13349.0, + "total_tests": 1109792.0, + "total_tests_per_thousand": 58.055, + "new_tests_per_thousand": 0.698, + "new_tests_smoothed": 16390.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 3.951, + "positive_rate": 0.253, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-07-01", + "total_cases": 279393.0, + "new_cases": 3394.0, + "new_cases_smoothed": 4089.429, + "total_deaths": 5688.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 169.0, + "total_cases_per_million": 14615.502, + "new_cases_per_million": 177.546, + "new_cases_smoothed_per_million": 213.925, + "total_deaths_per_million": 297.549, + "new_deaths_per_million": 5.911, + "new_deaths_smoothed_per_million": 8.841, + "new_tests": 10385.0, + "total_tests": 1120177.0, + "total_tests_per_thousand": 58.598, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 16077.0, + "new_tests_smoothed_per_thousand": 0.841, + "tests_per_case": 3.931, + "positive_rate": 0.254, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-07-02", + "total_cases": 282043.0, + "new_cases": 2650.0, + "new_cases_smoothed": 3946.714, + "total_deaths": 5753.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 146.0, + "total_cases_per_million": 14754.128, + "new_cases_per_million": 138.626, + "new_cases_smoothed_per_million": 206.459, + "total_deaths_per_million": 300.949, + "new_deaths_per_million": 3.4, + "new_deaths_smoothed_per_million": 7.637, + "new_tests": 10831.0, + "total_tests": 1131008.0, + "total_tests_per_thousand": 59.165, + "new_tests_per_thousand": 0.567, + "new_tests_smoothed": 15132.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 3.8339999999999996, + "positive_rate": 0.261, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-07-03", + "total_cases": 284541.0, + "new_cases": 2498.0, + "new_cases_smoothed": 3639.571, + "total_deaths": 5920.0, + "new_deaths": 167.0, + "new_deaths_smoothed": 145.286, + "total_cases_per_million": 14884.803, + "new_cases_per_million": 130.674, + "new_cases_smoothed_per_million": 190.392, + "total_deaths_per_million": 309.685, + "new_deaths_per_million": 8.736, + "new_deaths_smoothed_per_million": 7.6, + "new_tests": 15585.0, + "total_tests": 1146593.0, + "total_tests_per_thousand": 59.98, + "new_tests_per_thousand": 0.815, + "new_tests_smoothed": 14752.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 4.053, + "positive_rate": 0.247, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-04", + "total_cases": 288089.0, + "new_cases": 3548.0, + "new_cases_smoothed": 3532.714, + "total_deaths": 6051.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 140.429, + "total_cases_per_million": 15070.404, + "new_cases_per_million": 185.602, + "new_cases_smoothed_per_million": 184.802, + "total_deaths_per_million": 316.538, + "new_deaths_per_million": 6.853, + "new_deaths_smoothed_per_million": 7.346, + "new_tests": 17314.0, + "total_tests": 1163907.0, + "total_tests_per_thousand": 60.886, + "new_tests_per_thousand": 0.906, + "new_tests_smoothed": 14662.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 4.15, + "positive_rate": 0.24100000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-05", + "total_cases": 291847.0, + "new_cases": 3758.0, + "new_cases_smoothed": 3440.143, + "total_deaths": 6192.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 120.714, + "total_cases_per_million": 15266.991, + "new_cases_per_million": 196.587, + "new_cases_smoothed_per_million": 179.959, + "total_deaths_per_million": 323.914, + "new_deaths_per_million": 7.376, + "new_deaths_smoothed_per_million": 6.315, + "new_tests": 17977.0, + "total_tests": 1181884.0, + "total_tests_per_thousand": 61.826, + "new_tests_per_thousand": 0.94, + "new_tests_smoothed": 14606.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 4.246, + "positive_rate": 0.23600000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-06", + "total_cases": 295532.0, + "new_cases": 3685.0, + "new_cases_smoothed": 3364.286, + "total_deaths": 6308.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 114.143, + "total_cases_per_million": 15459.76, + "new_cases_per_million": 192.768, + "new_cases_smoothed_per_million": 175.991, + "total_deaths_per_million": 329.982, + "new_deaths_per_million": 6.068, + "new_deaths_smoothed_per_million": 5.971, + "new_tests": 16377.0, + "total_tests": 1198261.0, + "total_tests_per_thousand": 62.683, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 14545.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 4.323, + "positive_rate": 0.231, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-07", + "total_cases": 298557.0, + "new_cases": 3025.0, + "new_cases_smoothed": 3222.571, + "total_deaths": 6384.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 115.571, + "total_cases_per_million": 15618.003, + "new_cases_per_million": 158.243, + "new_cases_smoothed_per_million": 168.578, + "total_deaths_per_million": 333.957, + "new_deaths_per_million": 3.976, + "new_deaths_smoothed_per_million": 6.046, + "new_tests": 12065.0, + "total_tests": 1210326.0, + "total_tests_per_thousand": 63.314, + "new_tests_per_thousand": 0.631, + "new_tests_smoothed": 14362.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 4.457, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-08", + "total_cases": 301019.0, + "new_cases": 2462.0, + "new_cases_smoothed": 3089.429, + "total_deaths": 6434.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 106.571, + "total_cases_per_million": 15746.794, + "new_cases_per_million": 128.791, + "new_cases_smoothed_per_million": 161.613, + "total_deaths_per_million": 336.573, + "new_deaths_per_million": 2.616, + "new_deaths_smoothed_per_million": 5.575, + "new_tests": 10464.0, + "total_tests": 1220790.0, + "total_tests_per_thousand": 63.862, + "new_tests_per_thousand": 0.547, + "new_tests_smoothed": 14373.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 4.652, + "positive_rate": 0.215, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-09", + "total_cases": 303083.0, + "new_cases": 2064.0, + "new_cases_smoothed": 3005.714, + "total_deaths": 6573.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 117.143, + "total_cases_per_million": 15854.765, + "new_cases_per_million": 107.971, + "new_cases_smoothed_per_million": 157.234, + "total_deaths_per_million": 343.844, + "new_deaths_per_million": 7.271, + "new_deaths_smoothed_per_million": 6.128, + "new_tests": 16842.0, + "total_tests": 1237632.0, + "total_tests_per_thousand": 64.743, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 15232.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 5.0680000000000005, + "positive_rate": 0.19699999999999998, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-10", + "total_cases": 306216.0, + "new_cases": 3133.0, + "new_cases_smoothed": 3096.429, + "total_deaths": 6682.0, + "new_deaths": 109.0, + "new_deaths_smoothed": 108.857, + "total_cases_per_million": 16018.657, + "new_cases_per_million": 163.892, + "new_cases_smoothed_per_million": 161.979, + "total_deaths_per_million": 349.546, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 5.694, + "new_tests": 17727.0, + "total_tests": 1255359.0, + "total_tests_per_thousand": 65.67, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 15538.0, + "new_tests_smoothed_per_thousand": 0.813, + "tests_per_case": 5.018, + "positive_rate": 0.19899999999999998, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-11", + "total_cases": 309274.0, + "new_cases": 3058.0, + "new_cases_smoothed": 3026.429, + "total_deaths": 6781.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 104.286, + "total_cases_per_million": 16178.626, + "new_cases_per_million": 159.969, + "new_cases_smoothed_per_million": 158.317, + "total_deaths_per_million": 354.725, + "new_deaths_per_million": 5.179, + "new_deaths_smoothed_per_million": 5.455, + "new_tests": 18268.0, + "total_tests": 1273627.0, + "total_tests_per_thousand": 66.626, + "new_tests_per_thousand": 0.956, + "new_tests_smoothed": 15674.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 5.178999999999999, + "positive_rate": 0.193, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-12", + "total_cases": 312029.0, + "new_cases": 2755.0, + "new_cases_smoothed": 2883.143, + "total_deaths": 6881.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 98.429, + "total_cases_per_million": 16322.745, + "new_cases_per_million": 144.119, + "new_cases_smoothed_per_million": 150.822, + "total_deaths_per_million": 359.956, + "new_deaths_per_million": 5.231, + "new_deaths_smoothed_per_million": 5.149, + "new_tests": 19171.0, + "total_tests": 1292798.0, + "total_tests_per_thousand": 67.628, + "new_tests_per_thousand": 1.003, + "new_tests_smoothed": 15845.0, + "new_tests_smoothed_per_thousand": 0.829, + "tests_per_case": 5.496, + "positive_rate": 0.182, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-13", + "total_cases": 315041.0, + "new_cases": 3012.0, + "new_cases_smoothed": 2787.0, + "total_deaths": 6979.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 95.857, + "total_cases_per_million": 16480.307, + "new_cases_per_million": 157.563, + "new_cases_smoothed_per_million": 145.793, + "total_deaths_per_million": 365.083, + "new_deaths_per_million": 5.127, + "new_deaths_smoothed_per_million": 5.014, + "new_tests": 17467.0, + "total_tests": 1310265.0, + "total_tests_per_thousand": 68.542, + "new_tests_per_thousand": 0.914, + "new_tests_smoothed": 16001.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 5.7410000000000005, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-14", + "total_cases": 317657.0, + "new_cases": 2616.0, + "new_cases_smoothed": 2728.571, + "total_deaths": 7024.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 91.429, + "total_cases_per_million": 16617.155, + "new_cases_per_million": 136.847, + "new_cases_smoothed_per_million": 142.736, + "total_deaths_per_million": 367.437, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 4.783, + "new_tests": 12238.0, + "total_tests": 1322503.0, + "total_tests_per_thousand": 69.182, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 16025.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 5.872999999999999, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-15", + "total_cases": 319493.0, + "new_cases": 1836.0, + "new_cases_smoothed": 2639.143, + "total_deaths": 7069.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 90.714, + "total_cases_per_million": 16713.199, + "new_cases_per_million": 96.044, + "new_cases_smoothed_per_million": 138.058, + "total_deaths_per_million": 369.791, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 4.745, + "new_tests": 12209.0, + "total_tests": 1334712.0, + "total_tests_per_thousand": 69.821, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 16275.0, + "new_tests_smoothed_per_thousand": 0.851, + "tests_per_case": 6.167000000000001, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-16", + "total_cases": 321205.0, + "new_cases": 1712.0, + "new_cases_smoothed": 2588.857, + "total_deaths": 7186.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 87.571, + "total_cases_per_million": 16802.756, + "new_cases_per_million": 89.558, + "new_cases_smoothed_per_million": 135.427, + "total_deaths_per_million": 375.911, + "new_deaths_per_million": 6.12, + "new_deaths_smoothed_per_million": 4.581, + "new_tests": 17192.0, + "total_tests": 1351904.0, + "total_tests_per_thousand": 70.72, + "new_tests_per_thousand": 0.899, + "new_tests_smoothed": 16325.0, + "new_tests_smoothed_per_thousand": 0.854, + "tests_per_case": 6.306, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-07-17", + "total_cases": 323698.0, + "new_cases": 2493.0, + "new_cases_smoothed": 2497.429, + "total_deaths": 7290.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 86.857, + "total_cases_per_million": 16933.169, + "new_cases_per_million": 130.413, + "new_cases_smoothed_per_million": 130.645, + "total_deaths_per_million": 381.352, + "new_deaths_per_million": 5.44, + "new_deaths_smoothed_per_million": 4.544, + "new_tests": 18699.0, + "total_tests": 1370603.0, + "total_tests_per_thousand": 71.698, + "new_tests_per_thousand": 0.978, + "new_tests_smoothed": 16463.0, + "new_tests_smoothed_per_thousand": 0.861, + "tests_per_case": 6.5920000000000005, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-18", + "total_cases": 326539.0, + "new_cases": 2841.0, + "new_cases_smoothed": 2466.429, + "total_deaths": 8347.0, + "new_deaths": 1057.0, + "new_deaths_smoothed": 223.714, + "total_cases_per_million": 17081.786, + "new_cases_per_million": 148.617, + "new_cases_smoothed_per_million": 129.023, + "total_deaths_per_million": 436.645, + "new_deaths_per_million": 55.293, + "new_deaths_smoothed_per_million": 11.703, + "new_tests": 17716.0, + "total_tests": 1388319.0, + "total_tests_per_thousand": 72.625, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 16385.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 6.643, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-19", + "total_cases": 328846.0, + "new_cases": 2307.0, + "new_cases_smoothed": 2402.429, + "total_deaths": 8445.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 223.429, + "total_cases_per_million": 17202.469, + "new_cases_per_million": 120.683, + "new_cases_smoothed_per_million": 125.675, + "total_deaths_per_million": 441.772, + "new_deaths_per_million": 5.127, + "new_deaths_smoothed_per_million": 11.688, + "new_tests": 15728.0, + "total_tests": 1404047.0, + "total_tests_per_thousand": 73.448, + "new_tests_per_thousand": 0.823, + "new_tests_smoothed": 15893.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 6.615, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-20", + "total_cases": 330930.0, + "new_cases": 2084.0, + "new_cases_smoothed": 2269.857, + "total_deaths": 8503.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 217.714, + "total_cases_per_million": 17311.487, + "new_cases_per_million": 109.017, + "new_cases_smoothed_per_million": 118.74, + "total_deaths_per_million": 444.806, + "new_deaths_per_million": 3.034, + "new_deaths_smoothed_per_million": 11.389, + "new_tests": 16343.0, + "total_tests": 1420390.0, + "total_tests_per_thousand": 74.303, + "new_tests_per_thousand": 0.855, + "new_tests_smoothed": 15732.0, + "new_tests_smoothed_per_thousand": 0.823, + "tests_per_case": 6.931, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-21", + "total_cases": 333029.0, + "new_cases": 2099.0, + "new_cases_smoothed": 2196.0, + "total_deaths": 8633.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 229.857, + "total_cases_per_million": 17421.289, + "new_cases_per_million": 109.802, + "new_cases_smoothed_per_million": 114.876, + "total_deaths_per_million": 451.606, + "new_deaths_per_million": 6.801, + "new_deaths_smoothed_per_million": 12.024, + "new_tests": 12590.0, + "total_tests": 1432980.0, + "total_tests_per_thousand": 74.962, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 15782.0, + "new_tests_smoothed_per_thousand": 0.826, + "tests_per_case": 7.187, + "positive_rate": 0.139, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-22", + "total_cases": 334683.0, + "new_cases": 1654.0, + "new_cases_smoothed": 2170.0, + "total_deaths": 8677.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 229.714, + "total_cases_per_million": 17507.812, + "new_cases_per_million": 86.523, + "new_cases_smoothed_per_million": 113.516, + "total_deaths_per_million": 453.908, + "new_deaths_per_million": 2.302, + "new_deaths_smoothed_per_million": 12.017, + "new_tests": 12793.0, + "total_tests": 1445773.0, + "total_tests_per_thousand": 75.631, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 15866.0, + "new_tests_smoothed_per_thousand": 0.83, + "tests_per_case": 7.312, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-23", + "total_cases": 336402.0, + "new_cases": 1719.0, + "new_cases_smoothed": 2171.0, + "total_deaths": 8722.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 219.429, + "total_cases_per_million": 17597.736, + "new_cases_per_million": 89.924, + "new_cases_smoothed_per_million": 113.569, + "total_deaths_per_million": 456.262, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 11.479, + "new_tests": 18867.0, + "total_tests": 1464640.0, + "total_tests_per_thousand": 76.618, + "new_tests_per_thousand": 0.987, + "new_tests_smoothed": 16105.0, + "new_tests_smoothed_per_thousand": 0.842, + "tests_per_case": 7.417999999999999, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-24", + "total_cases": 338759.0, + "new_cases": 2357.0, + "new_cases_smoothed": 2151.571, + "total_deaths": 8838.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 221.143, + "total_cases_per_million": 17721.035, + "new_cases_per_million": 123.299, + "new_cases_smoothed_per_million": 112.552, + "total_deaths_per_million": 462.33, + "new_deaths_per_million": 6.068, + "new_deaths_smoothed_per_million": 11.568, + "new_tests": 21071.0, + "total_tests": 1485711.0, + "total_tests_per_thousand": 77.72, + "new_tests_per_thousand": 1.102, + "new_tests_smoothed": 16444.0, + "new_tests_smoothed_per_thousand": 0.86, + "tests_per_case": 7.643, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-25", + "total_cases": 341304.0, + "new_cases": 2545.0, + "new_cases_smoothed": 2109.286, + "total_deaths": 8914.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 81.0, + "total_cases_per_million": 17854.168, + "new_cases_per_million": 133.133, + "new_cases_smoothed_per_million": 110.34, + "total_deaths_per_million": 466.306, + "new_deaths_per_million": 3.976, + "new_deaths_smoothed_per_million": 4.237, + "new_tests": 19133.0, + "total_tests": 1504844.0, + "total_tests_per_thousand": 78.721, + "new_tests_per_thousand": 1.001, + "new_tests_smoothed": 16646.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 7.892, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-26", + "total_cases": 343592.0, + "new_cases": 2288.0, + "new_cases_smoothed": 2106.571, + "total_deaths": 9020.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 82.143, + "total_cases_per_million": 17973.857, + "new_cases_per_million": 119.689, + "new_cases_smoothed_per_million": 110.198, + "total_deaths_per_million": 471.851, + "new_deaths_per_million": 5.545, + "new_deaths_smoothed_per_million": 4.297, + "new_tests": 19709.0, + "total_tests": 1524553.0, + "total_tests_per_thousand": 79.752, + "new_tests_per_thousand": 1.031, + "new_tests_smoothed": 17215.0, + "new_tests_smoothed_per_thousand": 0.901, + "tests_per_case": 8.172, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-27", + "total_cases": 345790.0, + "new_cases": 2198.0, + "new_cases_smoothed": 2122.857, + "total_deaths": 9112.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 87.0, + "total_cases_per_million": 18088.838, + "new_cases_per_million": 114.981, + "new_cases_smoothed_per_million": 111.05, + "total_deaths_per_million": 476.664, + "new_deaths_per_million": 4.813, + "new_deaths_smoothed_per_million": 4.551, + "new_tests": 21544.0, + "total_tests": 1546097.0, + "total_tests_per_thousand": 80.879, + "new_tests_per_thousand": 1.127, + "new_tests_smoothed": 17958.0, + "new_tests_smoothed_per_thousand": 0.939, + "tests_per_case": 8.459, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-28", + "total_cases": 347923.0, + "new_cases": 2133.0, + "new_cases_smoothed": 2127.714, + "total_deaths": 9187.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 18200.418, + "new_cases_per_million": 111.581, + "new_cases_smoothed_per_million": 111.304, + "total_deaths_per_million": 480.587, + "new_deaths_per_million": 3.923, + "new_deaths_smoothed_per_million": 4.14, + "new_tests": 17596.0, + "total_tests": 1563693.0, + "total_tests_per_thousand": 81.799, + "new_tests_per_thousand": 0.92, + "new_tests_smoothed": 18673.0, + "new_tests_smoothed_per_thousand": 0.977, + "tests_per_case": 8.776, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-29", + "total_cases": 349800.0, + "new_cases": 1877.0, + "new_cases_smoothed": 2159.571, + "total_deaths": 9240.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 80.429, + "total_cases_per_million": 18298.607, + "new_cases_per_million": 98.189, + "new_cases_smoothed_per_million": 112.971, + "total_deaths_per_million": 483.359, + "new_deaths_per_million": 2.773, + "new_deaths_smoothed_per_million": 4.207, + "new_tests": 17130.0, + "total_tests": 1580823.0, + "total_tests_per_thousand": 82.695, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 19293.0, + "new_tests_smoothed_per_thousand": 1.009, + "tests_per_case": 8.934, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-30", + "total_cases": 351575.0, + "new_cases": 1775.0, + "new_cases_smoothed": 2167.571, + "total_deaths": 9278.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 79.429, + "total_cases_per_million": 18391.46, + "new_cases_per_million": 92.853, + "new_cases_smoothed_per_million": 113.389, + "total_deaths_per_million": 485.347, + "new_deaths_per_million": 1.988, + "new_deaths_smoothed_per_million": 4.155, + "new_tests": 20295.0, + "total_tests": 1601118.0, + "total_tests_per_thousand": 83.757, + "new_tests_per_thousand": 1.062, + "new_tests_smoothed": 19497.0, + "new_tests_smoothed_per_thousand": 1.02, + "tests_per_case": 8.995, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-07-31", + "total_cases": 353536.0, + "new_cases": 1961.0, + "new_cases_smoothed": 2111.0, + "total_deaths": 9377.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 77.0, + "total_cases_per_million": 18494.043, + "new_cases_per_million": 102.583, + "new_cases_smoothed_per_million": 110.43, + "total_deaths_per_million": 490.526, + "new_deaths_per_million": 5.179, + "new_deaths_smoothed_per_million": 4.028, + "new_tests": 22874.0, + "total_tests": 1623992.0, + "total_tests_per_thousand": 84.954, + "new_tests_per_thousand": 1.197, + "new_tests_smoothed": 19754.0, + "new_tests_smoothed_per_thousand": 1.033, + "tests_per_case": 9.357999999999999, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 86.57 + }, + { + "date": "2020-08-01", + "total_cases": 355667.0, + "new_cases": 2131.0, + "new_cases_smoothed": 2051.857, + "total_deaths": 9457.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 77.571, + "total_cases_per_million": 18605.52, + "new_cases_per_million": 111.476, + "new_cases_smoothed_per_million": 107.336, + "total_deaths_per_million": 494.711, + "new_deaths_per_million": 4.185, + "new_deaths_smoothed_per_million": 4.058, + "new_tests": 24398.0, + "total_tests": 1648390.0, + "total_tests_per_thousand": 86.23, + "new_tests_per_thousand": 1.276, + "new_tests_smoothed": 20507.0, + "new_tests_smoothed_per_thousand": 1.073, + "tests_per_case": 9.994, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-02", + "total_cases": 357658.0, + "new_cases": 1991.0, + "new_cases_smoothed": 2009.429, + "total_deaths": 9533.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 18709.672, + "new_cases_per_million": 104.152, + "new_cases_smoothed_per_million": 105.116, + "total_deaths_per_million": 498.687, + "new_deaths_per_million": 3.976, + "new_deaths_smoothed_per_million": 3.834, + "new_tests": 24899.0, + "total_tests": 1673289.0, + "total_tests_per_thousand": 87.532, + "new_tests_per_thousand": 1.303, + "new_tests_smoothed": 21248.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 10.574000000000002, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-03", + "total_cases": 359731.0, + "new_cases": 2073.0, + "new_cases_smoothed": 1991.571, + "total_deaths": 9608.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 70.857, + "total_cases_per_million": 18818.114, + "new_cases_per_million": 108.442, + "new_cases_smoothed_per_million": 104.182, + "total_deaths_per_million": 502.61, + "new_deaths_per_million": 3.923, + "new_deaths_smoothed_per_million": 3.707, + "new_tests": 24269.0, + "total_tests": 1697558.0, + "total_tests_per_thousand": 88.802, + "new_tests_per_thousand": 1.27, + "new_tests_smoothed": 21637.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 10.864, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-04", + "total_cases": 361493.0, + "new_cases": 1762.0, + "new_cases_smoothed": 1938.571, + "total_deaths": 9707.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 74.286, + "total_cases_per_million": 18910.287, + "new_cases_per_million": 92.173, + "new_cases_smoothed_per_million": 101.41, + "total_deaths_per_million": 507.789, + "new_deaths_per_million": 5.179, + "new_deaths_smoothed_per_million": 3.886, + "new_tests": 18857.0, + "total_tests": 1716415.0, + "total_tests_per_thousand": 89.788, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 21817.0, + "new_tests_smoothed_per_thousand": 1.141, + "tests_per_case": 11.254000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-05", + "total_cases": 362962.0, + "new_cases": 1469.0, + "new_cases_smoothed": 1880.286, + "total_deaths": 9745.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 18987.133, + "new_cases_per_million": 76.846, + "new_cases_smoothed_per_million": 98.361, + "total_deaths_per_million": 509.777, + "new_deaths_per_million": 1.988, + "new_deaths_smoothed_per_million": 3.774, + "new_tests": 21398.0, + "total_tests": 1737813.0, + "total_tests_per_thousand": 90.908, + "new_tests_per_thousand": 1.119, + "new_tests_smoothed": 22427.0, + "new_tests_smoothed_per_thousand": 1.173, + "tests_per_case": 11.927, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-06", + "total_cases": 364723.0, + "new_cases": 1761.0, + "new_cases_smoothed": 1878.286, + "total_deaths": 9792.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 73.429, + "total_cases_per_million": 19079.254, + "new_cases_per_million": 92.121, + "new_cases_smoothed_per_million": 98.256, + "total_deaths_per_million": 512.235, + "new_deaths_per_million": 2.459, + "new_deaths_smoothed_per_million": 3.841, + "new_tests": 22802.0, + "total_tests": 1760615.0, + "total_tests_per_thousand": 92.101, + "new_tests_per_thousand": 1.193, + "new_tests_smoothed": 22785.0, + "new_tests_smoothed_per_thousand": 1.192, + "tests_per_case": 12.130999999999998, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-07", + "total_cases": 366671.0, + "new_cases": 1948.0, + "new_cases_smoothed": 1876.429, + "total_deaths": 9889.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 73.143, + "total_cases_per_million": 19181.157, + "new_cases_per_million": 101.903, + "new_cases_smoothed_per_million": 98.159, + "total_deaths_per_million": 517.31, + "new_deaths_per_million": 5.074, + "new_deaths_smoothed_per_million": 3.826, + "new_tests": 25243.0, + "total_tests": 1785858.0, + "total_tests_per_thousand": 93.421, + "new_tests_per_thousand": 1.321, + "new_tests_smoothed": 23124.0, + "new_tests_smoothed_per_thousand": 1.21, + "tests_per_case": 12.323, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-08", + "total_cases": 368825.0, + "new_cases": 2154.0, + "new_cases_smoothed": 1879.714, + "total_deaths": 9958.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 71.571, + "total_cases_per_million": 19293.836, + "new_cases_per_million": 112.679, + "new_cases_smoothed_per_million": 98.331, + "total_deaths_per_million": 520.919, + "new_deaths_per_million": 3.61, + "new_deaths_smoothed_per_million": 3.744, + "new_tests": 27037.0, + "total_tests": 1812895.0, + "total_tests_per_thousand": 94.835, + "new_tests_per_thousand": 1.414, + "new_tests_smoothed": 23501.0, + "new_tests_smoothed_per_thousand": 1.229, + "tests_per_case": 12.502, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-09", + "total_cases": 371023.0, + "new_cases": 2198.0, + "new_cases_smoothed": 1909.286, + "total_deaths": 10011.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 68.286, + "total_cases_per_million": 19408.817, + "new_cases_per_million": 114.981, + "new_cases_smoothed_per_million": 99.878, + "total_deaths_per_million": 523.692, + "new_deaths_per_million": 2.773, + "new_deaths_smoothed_per_million": 3.572, + "new_tests": 28460.0, + "total_tests": 1841355.0, + "total_tests_per_thousand": 96.324, + "new_tests_per_thousand": 1.489, + "new_tests_smoothed": 24009.0, + "new_tests_smoothed_per_thousand": 1.256, + "tests_per_case": 12.575, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-08-10", + "total_cases": 373056.0, + "new_cases": 2033.0, + "new_cases_smoothed": 1903.571, + "total_deaths": 10077.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 67.0, + "total_cases_per_million": 19515.166, + "new_cases_per_million": 106.35, + "new_cases_smoothed_per_million": 99.579, + "total_deaths_per_million": 527.144, + "new_deaths_per_million": 3.453, + "new_deaths_smoothed_per_million": 3.505, + "new_tests": 26012.0, + "total_tests": 1867367.0, + "total_tests_per_thousand": 97.685, + "new_tests_per_thousand": 1.361, + "new_tests_smoothed": 24258.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 12.743, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-11", + "total_cases": 375044.0, + "new_cases": 1988.0, + "new_cases_smoothed": 1935.857, + "total_deaths": 10139.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 61.714, + "total_cases_per_million": 19619.162, + "new_cases_per_million": 103.996, + "new_cases_smoothed_per_million": 101.268, + "total_deaths_per_million": 530.388, + "new_deaths_per_million": 3.243, + "new_deaths_smoothed_per_million": 3.228, + "new_tests": 22249.0, + "total_tests": 1889616.0, + "total_tests_per_thousand": 98.849, + "new_tests_per_thousand": 1.164, + "new_tests_smoothed": 24743.0, + "new_tests_smoothed_per_thousand": 1.294, + "tests_per_case": 12.780999999999999, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-12", + "total_cases": 376616.0, + "new_cases": 1572.0, + "new_cases_smoothed": 1950.571, + "total_deaths": 10178.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 61.857, + "total_cases_per_million": 19701.396, + "new_cases_per_million": 82.234, + "new_cases_smoothed_per_million": 102.038, + "total_deaths_per_million": 532.428, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 3.236, + "new_tests": 19348.0, + "total_tests": 1908964.0, + "total_tests_per_thousand": 99.861, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 24450.0, + "new_tests_smoothed_per_thousand": 1.279, + "tests_per_case": 12.535, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-13", + "total_cases": 378168.0, + "new_cases": 1552.0, + "new_cases_smoothed": 1920.714, + "total_deaths": 10205.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 59.0, + "total_cases_per_million": 19782.583, + "new_cases_per_million": 81.188, + "new_cases_smoothed_per_million": 100.476, + "total_deaths_per_million": 533.84, + "new_deaths_per_million": 1.412, + "new_deaths_smoothed_per_million": 3.086, + "new_tests": 23628.0, + "total_tests": 1932592.0, + "total_tests_per_thousand": 101.097, + "new_tests_per_thousand": 1.236, + "new_tests_smoothed": 24568.0, + "new_tests_smoothed_per_thousand": 1.285, + "tests_per_case": 12.790999999999999, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-14", + "total_cases": 380034.0, + "new_cases": 1866.0, + "new_cases_smoothed": 1909.0, + "total_deaths": 10299.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 58.571, + "total_cases_per_million": 19880.197, + "new_cases_per_million": 97.613, + "new_cases_smoothed_per_million": 99.863, + "total_deaths_per_million": 538.757, + "new_deaths_per_million": 4.917, + "new_deaths_smoothed_per_million": 3.064, + "new_tests": 27618.0, + "total_tests": 1960210.0, + "total_tests_per_thousand": 102.542, + "new_tests_per_thousand": 1.445, + "new_tests_smoothed": 24907.0, + "new_tests_smoothed_per_thousand": 1.303, + "tests_per_case": 13.047, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-15", + "total_cases": 382111.0, + "new_cases": 2077.0, + "new_cases_smoothed": 1898.0, + "total_deaths": 10340.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 54.571, + "total_cases_per_million": 19988.848, + "new_cases_per_million": 108.651, + "new_cases_smoothed_per_million": 99.287, + "total_deaths_per_million": 540.902, + "new_deaths_per_million": 2.145, + "new_deaths_smoothed_per_million": 2.855, + "new_tests": 28499.0, + "total_tests": 1988709.0, + "total_tests_per_thousand": 104.033, + "new_tests_per_thousand": 1.491, + "new_tests_smoothed": 25116.0, + "new_tests_smoothed_per_thousand": 1.314, + "tests_per_case": 13.232999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-16", + "total_cases": 383902.0, + "new_cases": 1791.0, + "new_cases_smoothed": 1839.857, + "total_deaths": 10395.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 54.857, + "total_cases_per_million": 20082.538, + "new_cases_per_million": 93.69, + "new_cases_smoothed_per_million": 96.246, + "total_deaths_per_million": 543.779, + "new_deaths_per_million": 2.877, + "new_deaths_smoothed_per_million": 2.87, + "new_tests": 30882.0, + "total_tests": 2019591.0, + "total_tests_per_thousand": 105.648, + "new_tests_per_thousand": 1.615, + "new_tests_smoothed": 25462.0, + "new_tests_smoothed_per_thousand": 1.332, + "tests_per_case": 13.839, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-17", + "total_cases": 385946.0, + "new_cases": 2044.0, + "new_cases_smoothed": 1841.429, + "total_deaths": 10452.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 53.571, + "total_cases_per_million": 20189.463, + "new_cases_per_million": 106.925, + "new_cases_smoothed_per_million": 96.328, + "total_deaths_per_million": 546.761, + "new_deaths_per_million": 2.982, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 25289.0, + "total_tests": 2044880.0, + "total_tests_per_thousand": 106.971, + "new_tests_per_thousand": 1.323, + "new_tests_smoothed": 25359.0, + "new_tests_smoothed_per_thousand": 1.327, + "tests_per_case": 13.770999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-18", + "total_cases": 387502.0, + "new_cases": 1556.0, + "new_cases_smoothed": 1779.714, + "total_deaths": 10513.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 53.429, + "total_cases_per_million": 20270.86, + "new_cases_per_million": 81.397, + "new_cases_smoothed_per_million": 93.1, + "total_deaths_per_million": 549.952, + "new_deaths_per_million": 3.191, + "new_deaths_smoothed_per_million": 2.795, + "new_tests": 23199.0, + "total_tests": 2068079.0, + "total_tests_per_thousand": 108.185, + "new_tests_per_thousand": 1.214, + "new_tests_smoothed": 25495.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 14.325, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-19", + "total_cases": 388855.0, + "new_cases": 1353.0, + "new_cases_smoothed": 1748.429, + "total_deaths": 10546.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 20341.638, + "new_cases_per_million": 70.778, + "new_cases_smoothed_per_million": 91.463, + "total_deaths_per_million": 551.678, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 2.75, + "new_tests": 19275.0, + "total_tests": 2087354.0, + "total_tests_per_thousand": 109.193, + "new_tests_per_thousand": 1.008, + "new_tests_smoothed": 25484.0, + "new_tests_smoothed_per_thousand": 1.333, + "tests_per_case": 14.575, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-20", + "total_cases": 390037.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1695.571, + "total_deaths": 10578.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 53.286, + "total_cases_per_million": 20403.47, + "new_cases_per_million": 61.832, + "new_cases_smoothed_per_million": 88.698, + "total_deaths_per_million": 553.352, + "new_deaths_per_million": 1.674, + "new_deaths_smoothed_per_million": 2.787, + "new_tests": 26278.0, + "total_tests": 2113632.0, + "total_tests_per_thousand": 110.568, + "new_tests_per_thousand": 1.375, + "new_tests_smoothed": 25863.0, + "new_tests_smoothed_per_thousand": 1.353, + "tests_per_case": 15.253, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-21", + "total_cases": 391849.0, + "new_cases": 1812.0, + "new_cases_smoothed": 1687.857, + "total_deaths": 10671.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 53.143, + "total_cases_per_million": 20498.259, + "new_cases_per_million": 94.789, + "new_cases_smoothed_per_million": 88.295, + "total_deaths_per_million": 558.217, + "new_deaths_per_million": 4.865, + "new_deaths_smoothed_per_million": 2.78, + "new_tests": 28669.0, + "total_tests": 2142301.0, + "total_tests_per_thousand": 112.067, + "new_tests_per_thousand": 1.5, + "new_tests_smoothed": 26013.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 15.412, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-22", + "total_cases": 393769.0, + "new_cases": 1920.0, + "new_cases_smoothed": 1665.429, + "total_deaths": 10723.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 54.714, + "total_cases_per_million": 20598.697, + "new_cases_per_million": 100.438, + "new_cases_smoothed_per_million": 87.121, + "total_deaths_per_million": 560.938, + "new_deaths_per_million": 2.72, + "new_deaths_smoothed_per_million": 2.862, + "new_tests": 29727.0, + "total_tests": 2172028.0, + "total_tests_per_thousand": 113.622, + "new_tests_per_thousand": 1.555, + "new_tests_smoothed": 26188.0, + "new_tests_smoothed_per_thousand": 1.37, + "tests_per_case": 15.724, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-23", + "total_cases": 395708.0, + "new_cases": 1939.0, + "new_cases_smoothed": 1686.571, + "total_deaths": 10792.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 56.714, + "total_cases_per_million": 20700.129, + "new_cases_per_million": 101.432, + "new_cases_smoothed_per_million": 88.227, + "total_deaths_per_million": 564.547, + "new_deaths_per_million": 3.61, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 31981.0, + "total_tests": 2204009.0, + "total_tests_per_thousand": 115.295, + "new_tests_per_thousand": 1.673, + "new_tests_smoothed": 26345.0, + "new_tests_smoothed_per_thousand": 1.378, + "tests_per_case": 15.62, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-24", + "total_cases": 397665.0, + "new_cases": 1957.0, + "new_cases_smoothed": 1674.143, + "total_deaths": 10852.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 57.143, + "total_cases_per_million": 20802.503, + "new_cases_per_million": 102.374, + "new_cases_smoothed_per_million": 87.577, + "total_deaths_per_million": 567.686, + "new_deaths_per_million": 3.139, + "new_deaths_smoothed_per_million": 2.989, + "new_tests": 27454.0, + "total_tests": 2231463.0, + "total_tests_per_thousand": 116.731, + "new_tests_per_thousand": 1.436, + "new_tests_smoothed": 26655.0, + "new_tests_smoothed_per_thousand": 1.394, + "tests_per_case": 15.922, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-25", + "total_cases": 399568.0, + "new_cases": 1903.0, + "new_cases_smoothed": 1723.714, + "total_deaths": 10916.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 57.571, + "total_cases_per_million": 20902.052, + "new_cases_per_million": 99.549, + "new_cases_smoothed_per_million": 90.17, + "total_deaths_per_million": 571.034, + "new_deaths_per_million": 3.348, + "new_deaths_smoothed_per_million": 3.012, + "new_tests": 24503.0, + "total_tests": 2255966.0, + "total_tests_per_thousand": 118.013, + "new_tests_per_thousand": 1.282, + "new_tests_smoothed": 26841.0, + "new_tests_smoothed_per_thousand": 1.404, + "tests_per_case": 15.572000000000001, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-26", + "total_cases": 400985.0, + "new_cases": 1417.0, + "new_cases_smoothed": 1732.857, + "total_deaths": 10958.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 58.857, + "total_cases_per_million": 20976.178, + "new_cases_per_million": 74.126, + "new_cases_smoothed_per_million": 90.649, + "total_deaths_per_million": 573.231, + "new_deaths_per_million": 2.197, + "new_deaths_smoothed_per_million": 3.079, + "new_tests": 20257.0, + "total_tests": 2276223.0, + "total_tests_per_thousand": 119.073, + "new_tests_per_thousand": 1.06, + "new_tests_smoothed": 26981.0, + "new_tests_smoothed_per_thousand": 1.411, + "tests_per_case": 15.57, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-27", + "total_cases": 402365.0, + "new_cases": 1380.0, + "new_cases_smoothed": 1761.143, + "total_deaths": 10990.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 58.857, + "total_cases_per_million": 21048.368, + "new_cases_per_million": 72.19, + "new_cases_smoothed_per_million": 92.128, + "total_deaths_per_million": 574.905, + "new_deaths_per_million": 1.674, + "new_deaths_smoothed_per_million": 3.079, + "new_tests": 27019.0, + "total_tests": 2303242.0, + "total_tests_per_thousand": 120.486, + "new_tests_per_thousand": 1.413, + "new_tests_smoothed": 27087.0, + "new_tests_smoothed_per_thousand": 1.417, + "tests_per_case": 15.38, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-08-28", + "total_cases": 404102.0, + "new_cases": 1737.0, + "new_cases_smoothed": 1750.429, + "total_deaths": 11072.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 57.286, + "total_cases_per_million": 21139.233, + "new_cases_per_million": 90.865, + "new_cases_smoothed_per_million": 91.568, + "total_deaths_per_million": 579.194, + "new_deaths_per_million": 4.29, + "new_deaths_smoothed_per_million": 2.997, + "new_tests": 30274.0, + "total_tests": 2333516.0, + "total_tests_per_thousand": 122.07, + "new_tests_per_thousand": 1.584, + "new_tests_smoothed": 27316.0, + "new_tests_smoothed_per_thousand": 1.429, + "tests_per_case": 15.605, + "positive_rate": 0.064, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 405972.0, + "new_cases": 1870.0, + "new_cases_smoothed": 1743.286, + "total_deaths": 11132.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 58.429, + "total_cases_per_million": 21237.056, + "new_cases_per_million": 97.823, + "new_cases_smoothed_per_million": 91.194, + "total_deaths_per_million": 582.333, + "new_deaths_per_million": 3.139, + "new_deaths_smoothed_per_million": 3.056, + "new_tests": 32237.0, + "total_tests": 2365753.0, + "total_tests_per_thousand": 123.756, + "new_tests_per_thousand": 1.686, + "new_tests_smoothed": 27675.0, + "new_tests_smoothed_per_thousand": 1.448, + "tests_per_case": 15.875, + "positive_rate": 0.063, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 408009.0, + "new_cases": 2037.0, + "new_cases_smoothed": 1757.286, + "total_deaths": 11181.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 55.571, + "total_cases_per_million": 21343.615, + "new_cases_per_million": 106.559, + "new_cases_smoothed_per_million": 91.926, + "total_deaths_per_million": 584.896, + "new_deaths_per_million": 2.563, + "new_deaths_smoothed_per_million": 2.907, + "new_tests": 34769.0, + "total_tests": 2400522.0, + "total_tests_per_thousand": 125.575, + "new_tests_per_thousand": 1.819, + "new_tests_smoothed": 28073.0, + "new_tests_smoothed_per_thousand": 1.469, + "tests_per_case": 15.975, + "positive_rate": 0.063, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 409974.0, + "new_cases": 1965.0, + "new_cases_smoothed": 1758.429, + "total_deaths": 11244.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 56.0, + "total_cases_per_million": 21446.407, + "new_cases_per_million": 102.792, + "new_cases_smoothed_per_million": 91.986, + "total_deaths_per_million": 588.192, + "new_deaths_per_million": 3.296, + "new_deaths_smoothed_per_million": 2.929, + "new_tests": 31914.0, + "total_tests": 2432436.0, + "total_tests_per_thousand": 127.245, + "new_tests_per_thousand": 1.669, + "new_tests_smoothed": 28710.0, + "new_tests_smoothed_per_thousand": 1.502, + "tests_per_case": 16.327, + "positive_rate": 0.061, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 411726.0, + "new_cases": 1752.0, + "new_cases_smoothed": 1736.857, + "total_deaths": 11289.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 53.286, + "total_cases_per_million": 21538.057, + "new_cases_per_million": 91.65, + "new_cases_smoothed_per_million": 90.858, + "total_deaths_per_million": 590.546, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 2.787, + "new_tests": 26326.0, + "total_tests": 2458762.0, + "total_tests_per_thousand": 128.622, + "new_tests_per_thousand": 1.377, + "new_tests_smoothed": 28971.0, + "new_tests_smoothed_per_thousand": 1.516, + "tests_per_case": 16.68, + "positive_rate": 0.06, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 413145.0, + "new_cases": 1419.0, + "new_cases_smoothed": 1737.143, + "total_deaths": 11321.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 51.857, + "total_cases_per_million": 21612.287, + "new_cases_per_million": 74.23, + "new_cases_smoothed_per_million": 90.873, + "total_deaths_per_million": 592.22, + "new_deaths_per_million": 1.674, + "new_deaths_smoothed_per_million": 2.713, + "new_tests": 22746.0, + "total_tests": 2481508.0, + "total_tests_per_thousand": 129.812, + "new_tests_per_thousand": 1.19, + "new_tests_smoothed": 29326.0, + "new_tests_smoothed_per_thousand": 1.534, + "tests_per_case": 16.882, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 414739.0, + "new_cases": 1594.0, + "new_cases_smoothed": 1767.714, + "total_deaths": 11344.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 50.571, + "total_cases_per_million": 21695.672, + "new_cases_per_million": 83.385, + "new_cases_smoothed_per_million": 92.472, + "total_deaths_per_million": 593.423, + "new_deaths_per_million": 1.203, + "new_deaths_smoothed_per_million": 2.645, + "new_tests": 27242.0, + "total_tests": 2508750.0, + "total_tests_per_thousand": 131.237, + "new_tests_per_thousand": 1.425, + "new_tests_smoothed": 29358.0, + "new_tests_smoothed_per_thousand": 1.536, + "tests_per_case": 16.608, + "positive_rate": 0.06, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 416501.0, + "new_cases": 1762.0, + "new_cases_smoothed": 1771.286, + "total_deaths": 11422.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 50.0, + "total_cases_per_million": 21787.845, + "new_cases_per_million": 92.173, + "new_cases_smoothed_per_million": 92.659, + "total_deaths_per_million": 597.503, + "new_deaths_per_million": 4.08, + "new_deaths_smoothed_per_million": 2.616 + }, + { + "date": "2020-09-05", + "total_cases": 418469.0, + "new_cases": 1968.0, + "new_cases_smoothed": 1785.286, + "total_deaths": 11494.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 51.714, + "total_cases_per_million": 21890.794, + "new_cases_per_million": 102.949, + "new_cases_smoothed_per_million": 93.391, + "total_deaths_per_million": 601.27, + "new_deaths_per_million": 3.766, + "new_deaths_smoothed_per_million": 2.705 + } + ] + }, + "CHN": { + "continent": "Asia", + "location": "China", + "population": 1439323774.0, + "population_density": 147.674, + "median_age": 38.7, + "aged_65_older": 10.641, + "aged_70_older": 5.929, + "gdp_per_capita": 15308.712, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 261.899, + "diabetes_prevalence": 9.74, + "female_smokers": 1.9, + "male_smokers": 48.4, + "hospital_beds_per_thousand": 4.34, + "life_expectancy": 76.91, + "data": [ + { + "date": "2019-12-31", + "total_cases": 27.0, + "new_cases": 27.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.019, + "new_cases_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 27.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.019, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 27.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.019, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 44.0, + "new_cases": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.031, + "new_cases_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 44.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.031, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 59.0, + "new_cases": 15.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-06", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-07", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-08", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-09", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-10", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-11", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-12", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-13", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-14", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-15", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-16", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-17", + "total_cases": 63.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.044, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-18", + "total_cases": 80.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.056, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-19", + "total_cases": 216.0, + "new_cases": 136.0, + "new_cases_smoothed": 22.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.15, + "new_cases_per_million": 0.094, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-20", + "total_cases": 235.0, + "new_cases": 19.0, + "new_cases_smoothed": 25.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.163, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-21", + "total_cases": 386.0, + "new_cases": 151.0, + "new_cases_smoothed": 46.714, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.268, + "new_cases_per_million": 0.105, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.004, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-22", + "total_cases": 526.0, + "new_cases": 140.0, + "new_cases_smoothed": 66.714, + "total_deaths": 17.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 0.365, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.012, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 26.39 + }, + { + "date": "2020-01-23", + "total_cases": 623.0, + "new_cases": 97.0, + "new_cases_smoothed": 80.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 0.433, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 44.91 + }, + { + "date": "2020-01-24", + "total_cases": 882.0, + "new_cases": 259.0, + "new_cases_smoothed": 117.0, + "total_deaths": 26.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 0.613, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 44.91 + }, + { + "date": "2020-01-25", + "total_cases": 1323.0, + "new_cases": 441.0, + "new_cases_smoothed": 177.571, + "total_deaths": 41.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 0.919, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.028, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 47.69 + }, + { + "date": "2020-01-26", + "total_cases": 1988.0, + "new_cases": 665.0, + "new_cases_smoothed": 253.143, + "total_deaths": 56.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1.381, + "new_cases_per_million": 0.462, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 69.91 + }, + { + "date": "2020-01-27", + "total_cases": 2775.0, + "new_cases": 787.0, + "new_cases_smoothed": 362.857, + "total_deaths": 81.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1.928, + "new_cases_per_million": 0.547, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 69.91 + }, + { + "date": "2020-01-28", + "total_cases": 4528.0, + "new_cases": 1753.0, + "new_cases_smoothed": 591.714, + "total_deaths": 106.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 3.146, + "new_cases_per_million": 1.218, + "new_cases_smoothed_per_million": 0.411, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 69.91 + }, + { + "date": "2020-01-29", + "total_cases": 5994.0, + "new_cases": 1466.0, + "new_cases_smoothed": 781.143, + "total_deaths": 132.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 4.164, + "new_cases_per_million": 1.019, + "new_cases_smoothed_per_million": 0.543, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 69.91 + }, + { + "date": "2020-01-30", + "total_cases": 7734.0, + "new_cases": 1740.0, + "new_cases_smoothed": 1015.857, + "total_deaths": 170.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 5.373, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 69.91 + }, + { + "date": "2020-01-31", + "total_cases": 9714.0, + "new_cases": 1980.0, + "new_cases_smoothed": 1261.714, + "total_deaths": 213.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 6.749, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 0.877, + "total_deaths_per_million": 0.148, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 69.91 + }, + { + "date": "2020-02-01", + "total_cases": 11809.0, + "new_cases": 2095.0, + "new_cases_smoothed": 1498.0, + "total_deaths": 259.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 8.205, + "new_cases_per_million": 1.456, + "new_cases_smoothed_per_million": 1.041, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 77.31 + }, + { + "date": "2020-02-02", + "total_cases": 14399.0, + "new_cases": 2590.0, + "new_cases_smoothed": 1773.0, + "total_deaths": 304.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 10.004, + "new_cases_per_million": 1.799, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 0.211, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 77.31 + }, + { + "date": "2020-02-03", + "total_cases": 17211.0, + "new_cases": 2812.0, + "new_cases_smoothed": 2062.286, + "total_deaths": 361.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 11.958, + "new_cases_per_million": 1.954, + "new_cases_smoothed_per_million": 1.433, + "total_deaths_per_million": 0.251, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 77.31 + }, + { + "date": "2020-02-04", + "total_cases": 20448.0, + "new_cases": 3237.0, + "new_cases_smoothed": 2274.286, + "total_deaths": 426.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 45.714, + "total_cases_per_million": 14.207, + "new_cases_per_million": 2.249, + "new_cases_smoothed_per_million": 1.58, + "total_deaths_per_million": 0.296, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 77.31 + }, + { + "date": "2020-02-05", + "total_cases": 24320.0, + "new_cases": 3872.0, + "new_cases_smoothed": 2618.0, + "total_deaths": 492.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 51.429, + "total_cases_per_million": 16.897, + "new_cases_per_million": 2.69, + "new_cases_smoothed_per_million": 1.819, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 77.31 + }, + { + "date": "2020-02-06", + "total_cases": 28047.0, + "new_cases": 3727.0, + "new_cases_smoothed": 2901.857, + "total_deaths": 564.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 56.286, + "total_cases_per_million": 19.486, + "new_cases_per_million": 2.589, + "new_cases_smoothed_per_million": 2.016, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 77.31 + }, + { + "date": "2020-02-07", + "total_cases": 31207.0, + "new_cases": 3160.0, + "new_cases_smoothed": 3070.429, + "total_deaths": 637.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 60.571, + "total_cases_per_million": 21.682, + "new_cases_per_million": 2.195, + "new_cases_smoothed_per_million": 2.133, + "total_deaths_per_million": 0.443, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 77.31 + }, + { + "date": "2020-02-08", + "total_cases": 34625.0, + "new_cases": 3418.0, + "new_cases_smoothed": 3259.429, + "total_deaths": 723.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 24.056, + "new_cases_per_million": 2.375, + "new_cases_smoothed_per_million": 2.265, + "total_deaths_per_million": 0.502, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 77.31 + }, + { + "date": "2020-02-09", + "total_cases": 37232.0, + "new_cases": 2607.0, + "new_cases_smoothed": 3261.857, + "total_deaths": 812.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 72.571, + "total_cases_per_million": 25.868, + "new_cases_per_million": 1.811, + "new_cases_smoothed_per_million": 2.266, + "total_deaths_per_million": 0.564, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 77.31 + }, + { + "date": "2020-02-10", + "total_cases": 40206.0, + "new_cases": 2974.0, + "new_cases_smoothed": 3285.0, + "total_deaths": 909.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 78.286, + "total_cases_per_million": 27.934, + "new_cases_per_million": 2.066, + "new_cases_smoothed_per_million": 2.282, + "total_deaths_per_million": 0.632, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 75.46 + }, + { + "date": "2020-02-11", + "total_cases": 42696.0, + "new_cases": 2490.0, + "new_cases_smoothed": 3178.286, + "total_deaths": 1017.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 84.429, + "total_cases_per_million": 29.664, + "new_cases_per_million": 1.73, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 0.707, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 75.46 + }, + { + "date": "2020-02-12", + "total_cases": 44724.0, + "new_cases": 2028.0, + "new_cases_smoothed": 2914.857, + "total_deaths": 1114.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 88.857, + "total_cases_per_million": 31.073, + "new_cases_per_million": 1.409, + "new_cases_smoothed_per_million": 2.025, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 75.46 + }, + { + "date": "2020-02-13", + "total_cases": 59865.0, + "new_cases": 15141.0, + "new_cases_smoothed": 4545.429, + "total_deaths": 1368.0, + "new_deaths": 254.0, + "new_deaths_smoothed": 114.857, + "total_cases_per_million": 41.592, + "new_cases_per_million": 10.52, + "new_cases_smoothed_per_million": 3.158, + "total_deaths_per_million": 0.95, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.08, + "stringency_index": 75.46 + }, + { + "date": "2020-02-14", + "total_cases": 64021.0, + "new_cases": 4156.0, + "new_cases_smoothed": 4687.714, + "total_deaths": 1381.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 106.286, + "total_cases_per_million": 44.48, + "new_cases_per_million": 2.887, + "new_cases_smoothed_per_million": 3.257, + "total_deaths_per_million": 0.959, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 75.46 + }, + { + "date": "2020-02-15", + "total_cases": 66559.0, + "new_cases": 2538.0, + "new_cases_smoothed": 4562.0, + "total_deaths": 1524.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 114.429, + "total_cases_per_million": 46.243, + "new_cases_per_million": 1.763, + "new_cases_smoothed_per_million": 3.17, + "total_deaths_per_million": 1.059, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.08, + "stringency_index": 75.46 + }, + { + "date": "2020-02-16", + "total_cases": 68566.0, + "new_cases": 2007.0, + "new_cases_smoothed": 4476.286, + "total_deaths": 1666.0, + "new_deaths": 142.0, + "new_deaths_smoothed": 122.0, + "total_cases_per_million": 47.638, + "new_cases_per_million": 1.394, + "new_cases_smoothed_per_million": 3.11, + "total_deaths_per_million": 1.157, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.46 + }, + { + "date": "2020-02-17", + "total_cases": 70618.0, + "new_cases": 2052.0, + "new_cases_smoothed": 4344.571, + "total_deaths": 1771.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 123.143, + "total_cases_per_million": 49.063, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 3.018, + "total_deaths_per_million": 1.23, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 75.46 + }, + { + "date": "2020-02-18", + "total_cases": 72508.0, + "new_cases": 1890.0, + "new_cases_smoothed": 4258.857, + "total_deaths": 1869.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 121.714, + "total_cases_per_million": 50.376, + "new_cases_per_million": 1.313, + "new_cases_smoothed_per_million": 2.959, + "total_deaths_per_million": 1.299, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.46 + }, + { + "date": "2020-02-19", + "total_cases": 74258.0, + "new_cases": 1750.0, + "new_cases_smoothed": 4219.143, + "total_deaths": 2008.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 127.714, + "total_cases_per_million": 51.592, + "new_cases_per_million": 1.216, + "new_cases_smoothed_per_million": 2.931, + "total_deaths_per_million": 1.395, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 75.46 + }, + { + "date": "2020-02-20", + "total_cases": 74652.0, + "new_cases": 394.0, + "new_cases_smoothed": 2112.429, + "total_deaths": 2120.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 107.429, + "total_cases_per_million": 51.866, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 1.473, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 75.46 + }, + { + "date": "2020-02-21", + "total_cases": 75543.0, + "new_cases": 891.0, + "new_cases_smoothed": 1646.0, + "total_deaths": 2238.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 122.429, + "total_cases_per_million": 52.485, + "new_cases_per_million": 0.619, + "new_cases_smoothed_per_million": 1.144, + "total_deaths_per_million": 1.555, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.46 + }, + { + "date": "2020-02-22", + "total_cases": 76369.0, + "new_cases": 826.0, + "new_cases_smoothed": 1401.429, + "total_deaths": 2347.0, + "new_deaths": 109.0, + "new_deaths_smoothed": 117.571, + "total_cases_per_million": 53.059, + "new_cases_per_million": 0.574, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 1.631, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 75.46 + }, + { + "date": "2020-02-23", + "total_cases": 77016.0, + "new_cases": 647.0, + "new_cases_smoothed": 1207.143, + "total_deaths": 2445.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 111.286, + "total_cases_per_million": 53.508, + "new_cases_per_million": 0.45, + "new_cases_smoothed_per_million": 0.839, + "total_deaths_per_million": 1.699, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 75.46 + }, + { + "date": "2020-02-24", + "total_cases": 77234.0, + "new_cases": 218.0, + "new_cases_smoothed": 945.143, + "total_deaths": 2595.0, + "new_deaths": 150.0, + "new_deaths_smoothed": 117.714, + "total_cases_per_million": 53.66, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 1.803, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 75.46 + }, + { + "date": "2020-02-25", + "total_cases": 77749.0, + "new_cases": 515.0, + "new_cases_smoothed": 748.714, + "total_deaths": 2665.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 113.714, + "total_cases_per_million": 54.018, + "new_cases_per_million": 0.358, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 1.852, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.079, + "stringency_index": 81.02 + }, + { + "date": "2020-02-26", + "total_cases": 78159.0, + "new_cases": 410.0, + "new_cases_smoothed": 557.286, + "total_deaths": 2717.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 101.286, + "total_cases_per_million": 54.303, + "new_cases_per_million": 0.285, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 1.888, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 81.02 + }, + { + "date": "2020-02-27", + "total_cases": 78598.0, + "new_cases": 439.0, + "new_cases_smoothed": 563.714, + "total_deaths": 2746.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 89.429, + "total_cases_per_million": 54.608, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 1.908, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 81.02 + }, + { + "date": "2020-02-28", + "total_cases": 78927.0, + "new_cases": 329.0, + "new_cases_smoothed": 483.429, + "total_deaths": 2790.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 78.857, + "total_cases_per_million": 54.836, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 1.938, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 81.02 + }, + { + "date": "2020-02-29", + "total_cases": 79355.0, + "new_cases": 428.0, + "new_cases_smoothed": 426.571, + "total_deaths": 2837.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 70.0, + "total_cases_per_million": 55.134, + "new_cases_per_million": 0.297, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 81.02 + }, + { + "date": "2020-03-01", + "total_cases": 79929.0, + "new_cases": 574.0, + "new_cases_smoothed": 416.143, + "total_deaths": 2872.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 61.0, + "total_cases_per_million": 55.532, + "new_cases_per_million": 0.399, + "new_cases_smoothed_per_million": 0.289, + "total_deaths_per_million": 1.995, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 81.02 + }, + { + "date": "2020-03-02", + "total_cases": 80134.0, + "new_cases": 205.0, + "new_cases_smoothed": 414.286, + "total_deaths": 2914.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 45.571, + "total_cases_per_million": 55.675, + "new_cases_per_million": 0.142, + "new_cases_smoothed_per_million": 0.288, + "total_deaths_per_million": 2.025, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 81.02 + }, + { + "date": "2020-03-03", + "total_cases": 80261.0, + "new_cases": 127.0, + "new_cases_smoothed": 358.857, + "total_deaths": 2946.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 55.763, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 2.047, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 81.02 + }, + { + "date": "2020-03-04", + "total_cases": 80380.0, + "new_cases": 119.0, + "new_cases_smoothed": 317.286, + "total_deaths": 2983.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 55.846, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 2.073, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 81.02 + }, + { + "date": "2020-03-05", + "total_cases": 80497.0, + "new_cases": 117.0, + "new_cases_smoothed": 271.286, + "total_deaths": 3014.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 55.927, + "new_cases_per_million": 0.081, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 2.094, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 81.02 + }, + { + "date": "2020-03-06", + "total_cases": 80667.0, + "new_cases": 170.0, + "new_cases_smoothed": 248.571, + "total_deaths": 3044.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 56.045, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 2.115, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 81.02 + }, + { + "date": "2020-03-07", + "total_cases": 80768.0, + "new_cases": 101.0, + "new_cases_smoothed": 201.857, + "total_deaths": 3072.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 56.115, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 2.134, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 81.02 + }, + { + "date": "2020-03-08", + "total_cases": 80814.0, + "new_cases": 46.0, + "new_cases_smoothed": 126.429, + "total_deaths": 3099.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 32.429, + "total_cases_per_million": 56.147, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 2.153, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 81.02 + }, + { + "date": "2020-03-09", + "total_cases": 80859.0, + "new_cases": 45.0, + "new_cases_smoothed": 103.571, + "total_deaths": 3122.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 56.178, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 2.169, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 81.02 + }, + { + "date": "2020-03-10", + "total_cases": 80879.0, + "new_cases": 20.0, + "new_cases_smoothed": 88.286, + "total_deaths": 3139.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 27.571, + "total_cases_per_million": 56.192, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 2.181, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 81.02 + }, + { + "date": "2020-03-11", + "total_cases": 80908.0, + "new_cases": 29.0, + "new_cases_smoothed": 75.429, + "total_deaths": 3161.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 56.213, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 2.196, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 81.02 + }, + { + "date": "2020-03-12", + "total_cases": 80932.0, + "new_cases": 24.0, + "new_cases_smoothed": 62.143, + "total_deaths": 3172.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 56.229, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 2.204, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 81.02 + }, + { + "date": "2020-03-13", + "total_cases": 80954.0, + "new_cases": 22.0, + "new_cases_smoothed": 41.0, + "total_deaths": 3179.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 56.244, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 2.209, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.02 + }, + { + "date": "2020-03-14", + "total_cases": 80973.0, + "new_cases": 19.0, + "new_cases_smoothed": 29.286, + "total_deaths": 3194.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 56.258, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 2.219, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 81.02 + }, + { + "date": "2020-03-15", + "total_cases": 80995.0, + "new_cases": 22.0, + "new_cases_smoothed": 25.857, + "total_deaths": 3203.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 56.273, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.225, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 81.02 + }, + { + "date": "2020-03-16", + "total_cases": 81020.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.0, + "total_deaths": 3216.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 56.29, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 2.234, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 79.17 + }, + { + "date": "2020-03-17", + "total_cases": 81063.0, + "new_cases": 43.0, + "new_cases_smoothed": 26.286, + "total_deaths": 3225.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 56.32, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.241, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 79.17 + }, + { + "date": "2020-03-18", + "total_cases": 81086.0, + "new_cases": 23.0, + "new_cases_smoothed": 25.429, + "total_deaths": 3241.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 56.336, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.252, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 79.17 + }, + { + "date": "2020-03-19", + "total_cases": 81130.0, + "new_cases": 44.0, + "new_cases_smoothed": 28.286, + "total_deaths": 3249.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 56.367, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 2.257, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 79.17 + }, + { + "date": "2020-03-20", + "total_cases": 81229.0, + "new_cases": 99.0, + "new_cases_smoothed": 39.286, + "total_deaths": 3253.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 56.436, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 2.26, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 79.17 + }, + { + "date": "2020-03-21", + "total_cases": 81281.0, + "new_cases": 52.0, + "new_cases_smoothed": 44.0, + "total_deaths": 3259.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 56.472, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 2.264, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 79.17 + }, + { + "date": "2020-03-22", + "total_cases": 81346.0, + "new_cases": 65.0, + "new_cases_smoothed": 50.143, + "total_deaths": 3265.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 56.517, + "new_cases_per_million": 0.045, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.268, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 79.17 + }, + { + "date": "2020-03-23", + "total_cases": 81484.0, + "new_cases": 138.0, + "new_cases_smoothed": 66.286, + "total_deaths": 3274.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 56.613, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 2.275, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 79.17 + }, + { + "date": "2020-03-24", + "total_cases": 81553.0, + "new_cases": 69.0, + "new_cases_smoothed": 70.0, + "total_deaths": 3281.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 56.661, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 2.28, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 79.17 + }, + { + "date": "2020-03-25", + "total_cases": 81631.0, + "new_cases": 78.0, + "new_cases_smoothed": 77.857, + "total_deaths": 3285.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 56.715, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 2.282, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 79.17 + }, + { + "date": "2020-03-26", + "total_cases": 81733.0, + "new_cases": 102.0, + "new_cases_smoothed": 86.143, + "total_deaths": 3291.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 56.786, + "new_cases_per_million": 0.071, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.94 + }, + { + "date": "2020-03-27", + "total_cases": 81827.0, + "new_cases": 94.0, + "new_cases_smoothed": 85.429, + "total_deaths": 3296.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 56.851, + "new_cases_per_million": 0.065, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 2.29, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.94 + }, + { + "date": "2020-03-28", + "total_cases": 81946.0, + "new_cases": 119.0, + "new_cases_smoothed": 95.0, + "total_deaths": 3299.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 56.934, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 2.292, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 73.61 + }, + { + "date": "2020-03-29", + "total_cases": 82059.0, + "new_cases": 113.0, + "new_cases_smoothed": 101.857, + "total_deaths": 3304.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 57.012, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 73.61 + }, + { + "date": "2020-03-30", + "total_cases": 82157.0, + "new_cases": 98.0, + "new_cases_smoothed": 96.143, + "total_deaths": 3306.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 57.08, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 2.297, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 73.61 + }, + { + "date": "2020-03-31", + "total_cases": 82241.0, + "new_cases": 84.0, + "new_cases_smoothed": 98.286, + "total_deaths": 3309.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 57.139, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 2.299, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 73.61 + }, + { + "date": "2020-04-01", + "total_cases": 82295.0, + "new_cases": 54.0, + "new_cases_smoothed": 94.857, + "total_deaths": 3310.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 57.176, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 73.61 + }, + { + "date": "2020-04-02", + "total_cases": 82395.0, + "new_cases": 100.0, + "new_cases_smoothed": 94.571, + "total_deaths": 3316.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 57.246, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 2.304, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 73.61 + }, + { + "date": "2020-04-03", + "total_cases": 82465.0, + "new_cases": 70.0, + "new_cases_smoothed": 91.143, + "total_deaths": 3326.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 57.294, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 2.311, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 69.91 + }, + { + "date": "2020-04-04", + "total_cases": 82527.0, + "new_cases": 62.0, + "new_cases_smoothed": 83.0, + "total_deaths": 3330.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 57.337, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 2.314, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 69.91 + }, + { + "date": "2020-04-05", + "total_cases": 82575.0, + "new_cases": 48.0, + "new_cases_smoothed": 73.714, + "total_deaths": 3333.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 57.371, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 2.316, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 69.91 + }, + { + "date": "2020-04-06", + "total_cases": 82642.0, + "new_cases": 67.0, + "new_cases_smoothed": 69.286, + "total_deaths": 3335.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 57.417, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 2.317, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 69.91 + }, + { + "date": "2020-04-07", + "total_cases": 82698.0, + "new_cases": 56.0, + "new_cases_smoothed": 65.286, + "total_deaths": 3335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 57.456, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 2.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 69.91 + }, + { + "date": "2020-04-08", + "total_cases": 82784.0, + "new_cases": 86.0, + "new_cases_smoothed": 69.857, + "total_deaths": 3337.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 57.516, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 2.318, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 56.94 + }, + { + "date": "2020-04-09", + "total_cases": 82870.0, + "new_cases": 86.0, + "new_cases_smoothed": 67.857, + "total_deaths": 3339.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 57.576, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.32, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 56.94 + }, + { + "date": "2020-04-10", + "total_cases": 82925.0, + "new_cases": 55.0, + "new_cases_smoothed": 65.714, + "total_deaths": 3340.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 57.614, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 2.321, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-11", + "total_cases": 83004.0, + "new_cases": 79.0, + "new_cases_smoothed": 68.143, + "total_deaths": 3343.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 57.669, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.323, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-12", + "total_cases": 83097.0, + "new_cases": 93.0, + "new_cases_smoothed": 74.571, + "total_deaths": 3343.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 57.733, + "new_cases_per_million": 0.065, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 2.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-13", + "total_cases": 83209.0, + "new_cases": 112.0, + "new_cases_smoothed": 81.0, + "total_deaths": 3345.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 57.811, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 2.324, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-14", + "total_cases": 83303.0, + "new_cases": 94.0, + "new_cases_smoothed": 86.429, + "total_deaths": 3345.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 57.876, + "new_cases_per_million": 0.065, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 2.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-15", + "total_cases": 83352.0, + "new_cases": 49.0, + "new_cases_smoothed": 81.143, + "total_deaths": 3346.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 57.911, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 2.325, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-16", + "total_cases": 83402.0, + "new_cases": 50.0, + "new_cases_smoothed": 76.0, + "total_deaths": 3346.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 57.945, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 2.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 56.94 + }, + { + "date": "2020-04-17", + "total_cases": 83754.0, + "new_cases": 352.0, + "new_cases_smoothed": 118.429, + "total_deaths": 4636.0, + "new_deaths": 1290.0, + "new_deaths_smoothed": 185.143, + "total_cases_per_million": 58.19, + "new_cases_per_million": 0.245, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.896, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 56.94 + }, + { + "date": "2020-04-18", + "total_cases": 83785.0, + "new_cases": 31.0, + "new_cases_smoothed": 111.571, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.714, + "total_cases_per_million": 58.211, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-19", + "total_cases": 83803.0, + "new_cases": 18.0, + "new_cases_smoothed": 100.857, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.714, + "total_cases_per_million": 58.224, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-20", + "total_cases": 83817.0, + "new_cases": 14.0, + "new_cases_smoothed": 86.857, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.429, + "total_cases_per_million": 58.234, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-21", + "total_cases": 83849.0, + "new_cases": 32.0, + "new_cases_smoothed": 78.0, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.429, + "total_cases_per_million": 58.256, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-22", + "total_cases": 83864.0, + "new_cases": 15.0, + "new_cases_smoothed": 73.143, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.286, + "total_cases_per_million": 58.266, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-23", + "total_cases": 83876.0, + "new_cases": 12.0, + "new_cases_smoothed": 67.714, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 184.286, + "total_cases_per_million": 58.275, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 56.94 + }, + { + "date": "2020-04-24", + "total_cases": 83884.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.571, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.28, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-25", + "total_cases": 83899.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.286, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.291, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-26", + "total_cases": 83909.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.143, + "total_deaths": 4636.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.298, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 3.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-27", + "total_cases": 83912.0, + "new_cases": 3.0, + "new_cases_smoothed": 13.571, + "total_deaths": 4637.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.3, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-28", + "total_cases": 83938.0, + "new_cases": 26.0, + "new_cases_smoothed": 12.714, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.318, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-29", + "total_cases": 83940.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.857, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.319, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-04-30", + "total_cases": 83944.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.714, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.322, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-01", + "total_cases": 83956.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.286, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.33, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-02", + "total_cases": 83959.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.571, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.332, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-03", + "total_cases": 83961.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.334, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-04", + "total_cases": 83964.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.336, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-05", + "total_cases": 83966.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.337, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-06", + "total_cases": 83968.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.339, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-07", + "total_cases": 83970.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.34, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-08", + "total_cases": 83976.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.344, + "new_cases_per_million": 0.004, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-09", + "total_cases": 83976.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.344, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.94 + }, + { + "date": "2020-05-10", + "total_cases": 83991.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.354, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-11", + "total_cases": 84010.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.571, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.368, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-12", + "total_cases": 84011.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.368, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-13", + "total_cases": 84018.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.373, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-14", + "total_cases": 84024.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.377, + "new_cases_per_million": 0.004, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-15", + "total_cases": 84029.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.381, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-16", + "total_cases": 84038.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 4637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.387, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-17", + "total_cases": 84044.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 4638.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.391, + "new_cases_per_million": 0.004, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-18", + "total_cases": 84054.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.398, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-19", + "total_cases": 84063.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.405, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-20", + "total_cases": 84065.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.406, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-21", + "total_cases": 84067.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.407, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-22", + "total_cases": 84079.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.143, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.416, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-23", + "total_cases": 84081.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.417, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-24", + "total_cases": 84084.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.419, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-25", + "total_cases": 84095.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.857, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.427, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-26", + "total_cases": 84102.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.432, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-27", + "total_cases": 84103.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.432, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-28", + "total_cases": 84106.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.434, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-29", + "total_cases": 84106.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-30", + "total_cases": 84123.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.0, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.446, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-31", + "total_cases": 84128.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.45, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-01", + "total_cases": 84147.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.463, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-02", + "total_cases": 84154.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.468, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-03", + "total_cases": 84159.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.471, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-04", + "total_cases": 84160.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.472, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-05", + "total_cases": 84171.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.48, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-06", + "total_cases": 84177.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.484, + "new_cases_per_million": 0.004, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-07", + "total_cases": 84186.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.49, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-08", + "total_cases": 84191.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.493, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-09", + "total_cases": 84194.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.496, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-10", + "total_cases": 84198.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.498, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-11", + "total_cases": 84209.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.0, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.506, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-12", + "total_cases": 84216.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.511, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-13", + "total_cases": 84228.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.519, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-14", + "total_cases": 84288.0, + "new_cases": 60.0, + "new_cases_smoothed": 14.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.561, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-15", + "total_cases": 84335.0, + "new_cases": 47.0, + "new_cases_smoothed": 20.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.593, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-06-16", + "total_cases": 84378.0, + "new_cases": 43.0, + "new_cases_smoothed": 26.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.623, + "new_cases_per_million": 0.03, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-17", + "total_cases": 84422.0, + "new_cases": 44.0, + "new_cases_smoothed": 32.0, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.654, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-18", + "total_cases": 84458.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.571, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.679, + "new_cases_per_million": 0.025, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-19", + "total_cases": 84494.0, + "new_cases": 36.0, + "new_cases_smoothed": 39.714, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.704, + "new_cases_per_million": 0.025, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-20", + "total_cases": 84524.0, + "new_cases": 30.0, + "new_cases_smoothed": 42.286, + "total_deaths": 4638.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.725, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 3.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-21", + "total_cases": 84553.0, + "new_cases": 29.0, + "new_cases_smoothed": 37.857, + "total_deaths": 4639.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.745, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-22", + "total_cases": 84572.0, + "new_cases": 19.0, + "new_cases_smoothed": 33.857, + "total_deaths": 4639.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.758, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-23", + "total_cases": 84624.0, + "new_cases": 52.0, + "new_cases_smoothed": 35.143, + "total_deaths": 4639.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.794, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-24", + "total_cases": 84653.0, + "new_cases": 29.0, + "new_cases_smoothed": 33.0, + "total_deaths": 4640.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.814, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-25", + "total_cases": 84673.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.714, + "total_deaths": 4640.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.828, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-26", + "total_cases": 84701.0, + "new_cases": 28.0, + "new_cases_smoothed": 29.571, + "total_deaths": 4641.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 58.848, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-27", + "total_cases": 84725.0, + "new_cases": 24.0, + "new_cases_smoothed": 28.714, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 58.864, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-28", + "total_cases": 84743.0, + "new_cases": 18.0, + "new_cases_smoothed": 27.143, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.877, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-29", + "total_cases": 84757.0, + "new_cases": 14.0, + "new_cases_smoothed": 26.429, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.887, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-06-30", + "total_cases": 84780.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.286, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.903, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-01", + "total_cases": 84785.0, + "new_cases": 5.0, + "new_cases_smoothed": 18.857, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.906, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-02", + "total_cases": 84816.0, + "new_cases": 31.0, + "new_cases_smoothed": 20.429, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.928, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-03", + "total_cases": 84830.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.429, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.937, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-04", + "total_cases": 84839.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.286, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.944, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-05", + "total_cases": 84857.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.286, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.956, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-06", + "total_cases": 84871.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.286, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.966, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-07", + "total_cases": 84896.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.571, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.983, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-08", + "total_cases": 84917.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.857, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.998, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-09", + "total_cases": 84950.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.143, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.021, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-10", + "total_cases": 84996.0, + "new_cases": 46.0, + "new_cases_smoothed": 23.714, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.053, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-11", + "total_cases": 85036.0, + "new_cases": 40.0, + "new_cases_smoothed": 28.143, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.081, + "new_cases_per_million": 0.028, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-12", + "total_cases": 85071.0, + "new_cases": 35.0, + "new_cases_smoothed": 30.571, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.105, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-13", + "total_cases": 85117.0, + "new_cases": 46.0, + "new_cases_smoothed": 35.143, + "total_deaths": 4641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.137, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-14", + "total_cases": 85172.0, + "new_cases": 55.0, + "new_cases_smoothed": 39.429, + "total_deaths": 4642.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.175, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 3.225, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-15", + "total_cases": 85226.0, + "new_cases": 54.0, + "new_cases_smoothed": 44.143, + "total_deaths": 4642.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.213, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 3.225, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-16", + "total_cases": 85246.0, + "new_cases": 20.0, + "new_cases_smoothed": 42.286, + "total_deaths": 4644.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 59.226, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 3.227, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-17", + "total_cases": 85323.0, + "new_cases": 77.0, + "new_cases_smoothed": 46.714, + "total_deaths": 4644.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 59.28, + "new_cases_per_million": 0.053, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 3.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-18", + "total_cases": 85403.0, + "new_cases": 80.0, + "new_cases_smoothed": 52.429, + "total_deaths": 4645.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 59.336, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 3.227, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-19", + "total_cases": 85483.0, + "new_cases": 80.0, + "new_cases_smoothed": 58.857, + "total_deaths": 4646.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 59.391, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 3.228, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-20", + "total_cases": 85613.0, + "new_cases": 130.0, + "new_cases_smoothed": 70.857, + "total_deaths": 4646.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 59.481, + "new_cases_per_million": 0.09, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 3.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-21", + "total_cases": 85697.0, + "new_cases": 84.0, + "new_cases_smoothed": 75.0, + "total_deaths": 4646.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 59.54, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 3.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-22", + "total_cases": 85771.0, + "new_cases": 74.0, + "new_cases_smoothed": 77.857, + "total_deaths": 4648.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 59.591, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 3.229, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-23", + "total_cases": 85906.0, + "new_cases": 135.0, + "new_cases_smoothed": 94.286, + "total_deaths": 4648.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 59.685, + "new_cases_per_million": 0.094, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 3.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-24", + "total_cases": 86045.0, + "new_cases": 139.0, + "new_cases_smoothed": 103.143, + "total_deaths": 4649.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 59.782, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 3.23, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-25", + "total_cases": 86202.0, + "new_cases": 157.0, + "new_cases_smoothed": 114.143, + "total_deaths": 4650.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 59.891, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 3.231, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-07-26", + "total_cases": 86381.0, + "new_cases": 179.0, + "new_cases_smoothed": 128.286, + "total_deaths": 4652.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 60.015, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 3.232, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-27", + "total_cases": 86570.0, + "new_cases": 189.0, + "new_cases_smoothed": 136.714, + "total_deaths": 4652.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 60.146, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.095, + "total_deaths_per_million": 3.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-28", + "total_cases": 86783.0, + "new_cases": 213.0, + "new_cases_smoothed": 155.143, + "total_deaths": 4656.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 60.294, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 3.235, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-29", + "total_cases": 86990.0, + "new_cases": 207.0, + "new_cases_smoothed": 174.143, + "total_deaths": 4657.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 60.438, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 3.236, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-30", + "total_cases": 87213.0, + "new_cases": 223.0, + "new_cases_smoothed": 186.714, + "total_deaths": 4659.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 60.593, + "new_cases_per_million": 0.155, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 3.237, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-07-31", + "total_cases": 87489.0, + "new_cases": 276.0, + "new_cases_smoothed": 206.286, + "total_deaths": 4659.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 60.785, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.143, + "total_deaths_per_million": 3.237, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-01", + "total_cases": 87655.0, + "new_cases": 166.0, + "new_cases_smoothed": 207.571, + "total_deaths": 4661.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 60.9, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 3.238, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-02", + "total_cases": 87827.0, + "new_cases": 172.0, + "new_cases_smoothed": 206.571, + "total_deaths": 4667.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 61.02, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 3.242, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-03", + "total_cases": 87985.0, + "new_cases": 158.0, + "new_cases_smoothed": 202.143, + "total_deaths": 4669.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 61.129, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 3.244, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-04", + "total_cases": 88099.0, + "new_cases": 114.0, + "new_cases_smoothed": 188.0, + "total_deaths": 4672.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 61.209, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 3.246, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-05", + "total_cases": 88206.0, + "new_cases": 107.0, + "new_cases_smoothed": 173.714, + "total_deaths": 4676.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 61.283, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 3.249, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-06", + "total_cases": 88328.0, + "new_cases": 122.0, + "new_cases_smoothed": 159.286, + "total_deaths": 4677.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 61.368, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 3.249, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-07", + "total_cases": 88460.0, + "new_cases": 132.0, + "new_cases_smoothed": 138.714, + "total_deaths": 4680.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 61.459, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 3.252, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-08", + "total_cases": 88580.0, + "new_cases": 120.0, + "new_cases_smoothed": 132.143, + "total_deaths": 4681.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 61.543, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 3.252, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-09", + "total_cases": 88672.0, + "new_cases": 92.0, + "new_cases_smoothed": 120.714, + "total_deaths": 4681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 61.607, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 3.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-10", + "total_cases": 88793.0, + "new_cases": 121.0, + "new_cases_smoothed": 115.429, + "total_deaths": 4686.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 61.691, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 3.256, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-11", + "total_cases": 88906.0, + "new_cases": 113.0, + "new_cases_smoothed": 115.286, + "total_deaths": 4690.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 61.769, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 3.258, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-12", + "total_cases": 88964.0, + "new_cases": 58.0, + "new_cases_smoothed": 108.286, + "total_deaths": 4693.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 61.81, + "new_cases_per_million": 0.04, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-13", + "total_cases": 89045.0, + "new_cases": 81.0, + "new_cases_smoothed": 102.429, + "total_deaths": 4697.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 61.866, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 3.263, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-14", + "total_cases": 89144.0, + "new_cases": 99.0, + "new_cases_smoothed": 97.714, + "total_deaths": 4700.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 61.935, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 3.265, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-15", + "total_cases": 89214.0, + "new_cases": 70.0, + "new_cases_smoothed": 90.571, + "total_deaths": 4701.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 61.983, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 3.266, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-16", + "total_cases": 89279.0, + "new_cases": 65.0, + "new_cases_smoothed": 86.714, + "total_deaths": 4703.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 62.028, + "new_cases_per_million": 0.045, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 3.268, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-17", + "total_cases": 89375.0, + "new_cases": 96.0, + "new_cases_smoothed": 83.143, + "total_deaths": 4703.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 62.095, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 3.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 81.94 + }, + { + "date": "2020-08-18", + "total_cases": 89441.0, + "new_cases": 66.0, + "new_cases_smoothed": 76.429, + "total_deaths": 4703.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 62.141, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 3.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-19", + "total_cases": 89494.0, + "new_cases": 53.0, + "new_cases_smoothed": 75.714, + "total_deaths": 4705.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 62.178, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 3.269, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-20", + "total_cases": 89527.0, + "new_cases": 33.0, + "new_cases_smoothed": 68.857, + "total_deaths": 4706.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 62.201, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 3.27, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-21", + "total_cases": 89567.0, + "new_cases": 40.0, + "new_cases_smoothed": 60.429, + "total_deaths": 4709.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 62.229, + "new_cases_per_million": 0.028, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 3.272, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-22", + "total_cases": 89616.0, + "new_cases": 49.0, + "new_cases_smoothed": 57.429, + "total_deaths": 4711.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 62.263, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 3.273, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-23", + "total_cases": 89654.0, + "new_cases": 38.0, + "new_cases_smoothed": 53.571, + "total_deaths": 4711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 62.289, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 3.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-24", + "total_cases": 89695.0, + "new_cases": 41.0, + "new_cases_smoothed": 45.714, + "total_deaths": 4711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 62.317, + "new_cases_per_million": 0.028, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 3.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-25", + "total_cases": 89718.0, + "new_cases": 23.0, + "new_cases_smoothed": 39.571, + "total_deaths": 4711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 62.333, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 3.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-26", + "total_cases": 89752.0, + "new_cases": 34.0, + "new_cases_smoothed": 36.857, + "total_deaths": 4712.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 62.357, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 3.274, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-27", + "total_cases": 89784.0, + "new_cases": 32.0, + "new_cases_smoothed": 36.714, + "total_deaths": 4713.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 62.379, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 3.274, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 81.94 + }, + { + "date": "2020-08-28", + "total_cases": 89814.0, + "new_cases": 30.0, + "new_cases_smoothed": 35.286, + "total_deaths": 4715.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 62.4, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 3.276, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-08-29", + "total_cases": 89836.0, + "new_cases": 22.0, + "new_cases_smoothed": 31.429, + "total_deaths": 4718.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 62.415, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 3.278, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-08-30", + "total_cases": 89863.0, + "new_cases": 27.0, + "new_cases_smoothed": 29.857, + "total_deaths": 4721.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 62.434, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 3.28, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-08-31", + "total_cases": 89895.0, + "new_cases": 32.0, + "new_cases_smoothed": 28.571, + "total_deaths": 4722.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 62.456, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 3.281, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-09-01", + "total_cases": 89914.0, + "new_cases": 19.0, + "new_cases_smoothed": 28.0, + "total_deaths": 4723.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 62.47, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 3.281, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-09-02", + "total_cases": 89934.0, + "new_cases": 20.0, + "new_cases_smoothed": 26.0, + "total_deaths": 4724.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 62.484, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 3.282, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-09-03", + "total_cases": 89953.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.143, + "total_deaths": 4727.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 62.497, + "new_cases_per_million": 0.013, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 3.284, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-09-04", + "total_cases": 89986.0, + "new_cases": 33.0, + "new_cases_smoothed": 24.571, + "total_deaths": 4728.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 62.52, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 3.285, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-09-05", + "total_cases": 90008.0, + "new_cases": 22.0, + "new_cases_smoothed": 24.571, + "total_deaths": 4728.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 62.535, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 3.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001 + } + ] + }, + "COL": { + "continent": "South America", + "location": "Colombia", + "population": 50882884.0, + "population_density": 44.223, + "median_age": 32.2, + "aged_65_older": 7.646, + "aged_70_older": 4.312, + "gdp_per_capita": 13254.949, + "extreme_poverty": 4.5, + "cardiovasc_death_rate": 124.24, + "diabetes_prevalence": 7.44, + "female_smokers": 4.7, + "male_smokers": 13.5, + "handwashing_facilities": 65.386, + "hospital_beds_per_thousand": 1.71, + "life_expectancy": 77.29, + "data": [ + { + "date": "2020-03-05", + "total_tests": 636.0, + "total_tests_per_thousand": 0.012, + "tests_units": "samples tested", + "stringency_index": 12.04 + }, + { + "date": "2020-03-06", + "new_tests": 103.0, + "total_tests": 739.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 12.04 + }, + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 810.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 12.04 + }, + { + "date": "2020-03-08", + "new_tests": 3.0, + "total_tests": 813.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 12.04 + }, + { + "date": "2020-03-09", + "new_tests": 38.0, + "total_tests": 851.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 14.81 + }, + { + "date": "2020-03-10", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.059, + "new_cases_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 927.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 14.81 + }, + { + "date": "2020-03-11", + "new_tests": 206.0, + "total_tests": 1133.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 14.81 + }, + { + "date": "2020-03-12", + "total_cases": 9.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.177, + "new_cases_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 260.0, + "total_tests": 1393.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 108.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 1.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 361.0, + "total_tests": 1754.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-14", + "total_cases": 16.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.314, + "new_cases_per_million": 0.138, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 589.0, + "total_tests": 2343.0, + "total_tests_per_thousand": 0.046, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 219.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 102.2, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-15", + "total_cases": 34.0, + "new_cases": 18.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.668, + "new_cases_per_million": 0.354, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 833.0, + "total_tests": 3176.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 71.697, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-16", + "total_cases": 45.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.884, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 431.0, + "total_tests": 3607.0, + "total_tests_per_thousand": 0.071, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 62.681999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 45.37 + }, + { + "date": "2020-03-17", + "total_cases": 57.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.12, + "new_cases_per_million": 0.236, + "new_cases_smoothed_per_million": 0.152, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 324.0, + "total_tests": 3931.0, + "total_tests_per_thousand": 0.077, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 55.611000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-18", + "total_cases": 65.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.277, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 759.0, + "total_tests": 4690.0, + "total_tests_per_thousand": 0.092, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 508.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 57.355, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-19", + "total_cases": 102.0, + "new_cases": 37.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.005, + "new_cases_per_million": 0.727, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 673.0, + "total_tests": 5363.0, + "total_tests_per_thousand": 0.105, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 567.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 42.677, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-20", + "total_cases": 128.0, + "new_cases": 26.0, + "new_cases_smoothed": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.516, + "new_cases_per_million": 0.511, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 403.0, + "total_tests": 5766.0, + "total_tests_per_thousand": 0.113, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 573.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 33.705999999999996, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-21", + "total_cases": 158.0, + "new_cases": 30.0, + "new_cases_smoothed": 20.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.105, + "new_cases_per_million": 0.59, + "new_cases_smoothed_per_million": 0.399, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 298.0, + "total_tests": 6064.0, + "total_tests_per_thousand": 0.119, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 532.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 26.225, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-22", + "total_cases": 210.0, + "new_cases": 52.0, + "new_cases_smoothed": 25.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.127, + "new_cases_per_million": 1.022, + "new_cases_smoothed_per_million": 0.494, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 846.0, + "total_tests": 6910.0, + "total_tests_per_thousand": 0.136, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 533.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 21.199, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-23", + "total_cases": 235.0, + "new_cases": 25.0, + "new_cases_smoothed": 27.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.618, + "new_cases_per_million": 0.491, + "new_cases_smoothed_per_million": 0.533, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 375.0, + "total_tests": 7285.0, + "total_tests_per_thousand": 0.143, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 19.342, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested", + "stringency_index": 53.7 + }, + { + "date": "2020-03-24", + "total_cases": 306.0, + "new_cases": 71.0, + "new_cases_smoothed": 35.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.014, + "new_cases_per_million": 1.395, + "new_cases_smoothed_per_million": 0.699, + "total_deaths_per_million": 0.059, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 766.0, + "total_tests": 8051.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 589.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 16.558, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 53.7 + }, + { + "date": "2020-03-25", + "total_cases": 378.0, + "new_cases": 72.0, + "new_cases_smoothed": 44.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.429, + "new_cases_per_million": 1.415, + "new_cases_smoothed_per_million": 0.879, + "total_deaths_per_million": 0.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 746.0, + "total_tests": 8797.0, + "total_tests_per_thousand": 0.173, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 13.128, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-26", + "total_cases": 470.0, + "new_cases": 92.0, + "new_cases_smoothed": 52.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9.237, + "new_cases_per_million": 1.808, + "new_cases_smoothed_per_million": 1.033, + "total_deaths_per_million": 0.079, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 431.0, + "total_tests": 9228.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 552.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 10.5, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-27", + "total_cases": 491.0, + "new_cases": 21.0, + "new_cases_smoothed": 51.857, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9.65, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 1.019, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 258.0, + "total_tests": 9486.0, + "total_tests_per_thousand": 0.186, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 531.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 10.24, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-28", + "total_cases": 539.0, + "new_cases": 48.0, + "new_cases_smoothed": 54.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.593, + "new_cases_per_million": 0.943, + "new_cases_smoothed_per_million": 1.07, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 1365.0, + "total_tests": 10851.0, + "total_tests_per_thousand": 0.213, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 684.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 12.567, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-29", + "total_cases": 608.0, + "new_cases": 69.0, + "new_cases_smoothed": 56.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11.949, + "new_cases_per_million": 1.356, + "new_cases_smoothed_per_million": 1.117, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 1474.0, + "total_tests": 12325.0, + "total_tests_per_thousand": 0.242, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 774.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 13.613, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-30", + "total_cases": 702.0, + "new_cases": 94.0, + "new_cases_smoothed": 66.714, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 13.796, + "new_cases_per_million": 1.847, + "new_cases_smoothed_per_million": 1.311, + "total_deaths_per_million": 0.197, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1491.0, + "total_tests": 13816.0, + "total_tests_per_thousand": 0.272, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 13.985, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-31", + "total_cases": 798.0, + "new_cases": 96.0, + "new_cases_smoothed": 70.286, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 15.683, + "new_cases_per_million": 1.887, + "new_cases_smoothed_per_million": 1.381, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 4047.0, + "total_tests": 17863.0, + "total_tests_per_thousand": 0.351, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1402.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 19.947, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-01", + "total_cases": 906.0, + "new_cases": 108.0, + "new_cases_smoothed": 75.429, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 17.806, + "new_cases_per_million": 2.123, + "new_cases_smoothed_per_million": 1.482, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 2390.0, + "total_tests": 20253.0, + "total_tests_per_thousand": 0.398, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 1637.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 21.703000000000003, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-02", + "total_cases": 1065.0, + "new_cases": 159.0, + "new_cases_smoothed": 85.0, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 20.93, + "new_cases_per_million": 3.125, + "new_cases_smoothed_per_million": 1.671, + "total_deaths_per_million": 0.334, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1159.0, + "total_tests": 21412.0, + "total_tests_per_thousand": 0.421, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1741.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 20.482, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-03", + "total_cases": 1161.0, + "new_cases": 96.0, + "new_cases_smoothed": 95.714, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 22.817, + "new_cases_per_million": 1.887, + "new_cases_smoothed_per_million": 1.881, + "total_deaths_per_million": 0.373, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1340.0, + "total_tests": 22752.0, + "total_tests_per_thousand": 0.447, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1895.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 19.799, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-04", + "total_cases": 1267.0, + "new_cases": 106.0, + "new_cases_smoothed": 104.0, + "total_deaths": 25.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 24.9, + "new_cases_per_million": 2.083, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 0.491, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1104.0, + "total_tests": 23856.0, + "total_tests_per_thousand": 0.469, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1858.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 17.865, + "positive_rate": 0.055999999999999994, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-05", + "total_cases": 1406.0, + "new_cases": 139.0, + "new_cases_smoothed": 114.0, + "total_deaths": 32.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 27.632, + "new_cases_per_million": 2.732, + "new_cases_smoothed_per_million": 2.24, + "total_deaths_per_million": 0.629, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 1691.0, + "total_tests": 25547.0, + "total_tests_per_thousand": 0.502, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1889.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 16.57, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-06", + "total_cases": 1485.0, + "new_cases": 79.0, + "new_cases_smoothed": 111.857, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 29.185, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 2.198, + "total_deaths_per_million": 0.688, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 2421.0, + "total_tests": 27968.0, + "total_tests_per_thousand": 0.55, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 2022.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 18.077, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-07", + "total_cases": 1579.0, + "new_cases": 94.0, + "new_cases_smoothed": 111.571, + "total_deaths": 46.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 31.032, + "new_cases_per_million": 1.847, + "new_cases_smoothed_per_million": 2.193, + "total_deaths_per_million": 0.904, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.09, + "new_tests": 2760.0, + "total_tests": 30728.0, + "total_tests_per_thousand": 0.604, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1838.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 16.474, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-08", + "total_cases": 1780.0, + "new_cases": 201.0, + "new_cases_smoothed": 124.857, + "total_deaths": 50.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 34.982, + "new_cases_per_million": 3.95, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 0.983, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 3130.0, + "total_tests": 33858.0, + "total_tests_per_thousand": 0.665, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1944.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 15.57, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-09", + "total_cases": 2054.0, + "new_cases": 274.0, + "new_cases_smoothed": 141.286, + "total_deaths": 55.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 40.367, + "new_cases_per_million": 5.385, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 1.081, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 1335.0, + "total_tests": 35193.0, + "total_tests_per_thousand": 0.692, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1969.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 13.936, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-10", + "total_cases": 2223.0, + "new_cases": 169.0, + "new_cases_smoothed": 151.714, + "total_deaths": 69.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 43.689, + "new_cases_per_million": 3.321, + "new_cases_smoothed_per_million": 2.982, + "total_deaths_per_million": 1.356, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 2683.0, + "total_tests": 37876.0, + "total_tests_per_thousand": 0.744, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2161.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 14.244000000000002, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 2473.0, + "new_cases": 250.0, + "new_cases_smoothed": 172.286, + "total_deaths": 80.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 48.602, + "new_cases_per_million": 4.913, + "new_cases_smoothed_per_million": 3.386, + "total_deaths_per_million": 1.572, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 2742.0, + "total_tests": 40618.0, + "total_tests_per_thousand": 0.798, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2395.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 13.901, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 2709.0, + "new_cases": 236.0, + "new_cases_smoothed": 186.143, + "total_deaths": 100.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 53.24, + "new_cases_per_million": 4.638, + "new_cases_smoothed_per_million": 3.658, + "total_deaths_per_million": 1.965, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.191, + "new_tests": 1162.0, + "total_tests": 41780.0, + "total_tests_per_thousand": 0.821, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 2319.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 12.458, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 2776.0, + "new_cases": 67.0, + "new_cases_smoothed": 184.429, + "total_deaths": 109.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 54.557, + "new_cases_per_million": 1.317, + "new_cases_smoothed_per_million": 3.625, + "total_deaths_per_million": 2.142, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 1256.0, + "total_tests": 43036.0, + "total_tests_per_thousand": 0.846, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 2153.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 11.674000000000001, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 2852.0, + "new_cases": 76.0, + "new_cases_smoothed": 181.857, + "total_deaths": 112.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 56.05, + "new_cases_per_million": 1.494, + "new_cases_smoothed_per_million": 3.574, + "total_deaths_per_million": 2.201, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 2315.0, + "total_tests": 45351.0, + "total_tests_per_thousand": 0.891, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 2089.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 11.487, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 2979.0, + "new_cases": 127.0, + "new_cases_smoothed": 171.286, + "total_deaths": 127.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 58.546, + "new_cases_per_million": 2.496, + "new_cases_smoothed_per_million": 3.366, + "total_deaths_per_million": 2.496, + "new_deaths_per_million": 0.295, + "new_deaths_smoothed_per_million": 0.216, + "new_tests": 3205.0, + "total_tests": 48556.0, + "total_tests_per_thousand": 0.954, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 2100.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 12.26, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 3105.0, + "new_cases": 126.0, + "new_cases_smoothed": 150.143, + "total_deaths": 131.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 61.022, + "new_cases_per_million": 2.476, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 2.575, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 3457.0, + "total_tests": 52013.0, + "total_tests_per_thousand": 1.022, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 2403.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 16.005, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 3233.0, + "new_cases": 128.0, + "new_cases_smoothed": 144.286, + "total_deaths": 144.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 63.538, + "new_cases_per_million": 2.516, + "new_cases_smoothed_per_million": 2.836, + "total_deaths_per_million": 2.83, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 3488.0, + "total_tests": 55501.0, + "total_tests_per_thousand": 1.091, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 2518.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 17.451, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 3439.0, + "new_cases": 206.0, + "new_cases_smoothed": 138.0, + "total_deaths": 153.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 67.587, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 2.712, + "total_deaths_per_million": 3.007, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 3429.0, + "total_tests": 58930.0, + "total_tests_per_thousand": 1.158, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 2616.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 18.957, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 3621.0, + "new_cases": 182.0, + "new_cases_smoothed": 130.286, + "total_deaths": 166.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 71.163, + "new_cases_per_million": 3.577, + "new_cases_smoothed_per_million": 2.561, + "total_deaths_per_million": 3.262, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 3744.0, + "total_tests": 62674.0, + "total_tests_per_thousand": 1.232, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 2985.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 22.910999999999998, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 3792.0, + "new_cases": 171.0, + "new_cases_smoothed": 145.143, + "total_deaths": 179.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 74.524, + "new_cases_per_million": 3.361, + "new_cases_smoothed_per_million": 2.852, + "total_deaths_per_million": 3.518, + "new_deaths_per_million": 0.255, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 2423.0, + "total_tests": 65097.0, + "total_tests_per_thousand": 1.279, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 3152.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 21.717, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 3977.0, + "new_cases": 185.0, + "new_cases_smoothed": 160.714, + "total_deaths": 189.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 78.16, + "new_cases_per_million": 3.636, + "new_cases_smoothed_per_million": 3.159, + "total_deaths_per_million": 3.714, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.216, + "new_tests": 3259.0, + "total_tests": 68356.0, + "total_tests_per_thousand": 1.343, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 3286.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 20.445999999999998, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 4149.0, + "new_cases": 172.0, + "new_cases_smoothed": 167.143, + "total_deaths": 196.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 81.54, + "new_cases_per_million": 3.38, + "new_cases_smoothed_per_million": 3.285, + "total_deaths_per_million": 3.852, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.194, + "new_tests": 3051.0, + "total_tests": 71407.0, + "total_tests_per_thousand": 1.403, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 3264.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 19.528, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 4356.0, + "new_cases": 207.0, + "new_cases_smoothed": 178.714, + "total_deaths": 206.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 85.608, + "new_cases_per_million": 4.068, + "new_cases_smoothed_per_million": 3.512, + "total_deaths_per_million": 4.049, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 3457.0, + "total_tests": 74864.0, + "total_tests_per_thousand": 1.471, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 3264.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 18.264, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 4561.0, + "new_cases": 205.0, + "new_cases_smoothed": 189.714, + "total_deaths": 215.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 89.637, + "new_cases_per_million": 4.029, + "new_cases_smoothed_per_million": 3.728, + "total_deaths_per_million": 4.225, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 3121.0, + "total_tests": 77985.0, + "total_tests_per_thousand": 1.533, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 3212.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 16.930999999999997, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 4881.0, + "new_cases": 320.0, + "new_cases_smoothed": 206.0, + "total_deaths": 225.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 95.926, + "new_cases_per_million": 6.289, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 4.422, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 3068.0, + "total_tests": 81053.0, + "total_tests_per_thousand": 1.593, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 3160.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 15.34, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 5142.0, + "new_cases": 261.0, + "new_cases_smoothed": 217.286, + "total_deaths": 233.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 101.056, + "new_cases_per_million": 5.129, + "new_cases_smoothed_per_million": 4.27, + "total_deaths_per_million": 4.579, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 6053.0, + "total_tests": 87106.0, + "total_tests_per_thousand": 1.712, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 3490.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 16.062, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 5379.0, + "new_cases": 237.0, + "new_cases_smoothed": 226.714, + "total_deaths": 243.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 105.713, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 4.456, + "total_deaths_per_million": 4.776, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 3793.0, + "total_tests": 90899.0, + "total_tests_per_thousand": 1.786, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 3686.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 16.258, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 5597.0, + "new_cases": 218.0, + "new_cases_smoothed": 231.429, + "total_deaths": 253.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 109.998, + "new_cases_per_million": 4.284, + "new_cases_smoothed_per_million": 4.548, + "total_deaths_per_million": 4.972, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 4186.0, + "total_tests": 95085.0, + "total_tests_per_thousand": 1.869, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 3818.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 16.498, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 5949.0, + "new_cases": 352.0, + "new_cases_smoothed": 257.143, + "total_deaths": 269.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 116.916, + "new_cases_per_million": 6.918, + "new_cases_smoothed_per_million": 5.054, + "total_deaths_per_million": 5.287, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 5068.0, + "total_tests": 100153.0, + "total_tests_per_thousand": 1.968, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 4107.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 15.972000000000001, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 6211.0, + "new_cases": 262.0, + "new_cases_smoothed": 265.0, + "total_deaths": 278.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 122.065, + "new_cases_per_million": 5.149, + "new_cases_smoothed_per_million": 5.208, + "total_deaths_per_million": 5.464, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 4504.0, + "total_tests": 104657.0, + "total_tests_per_thousand": 2.057, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 4256.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 16.06, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 6507.0, + "new_cases": 296.0, + "new_cases_smoothed": 278.0, + "total_deaths": 293.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 127.882, + "new_cases_per_million": 5.817, + "new_cases_smoothed_per_million": 5.464, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.295, + "new_deaths_smoothed_per_million": 0.219, + "new_tests": 4293.0, + "total_tests": 108950.0, + "total_tests_per_thousand": 2.141, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 4424.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 15.914000000000001, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 7006.0, + "new_cases": 499.0, + "new_cases_smoothed": 303.571, + "total_deaths": 314.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 137.689, + "new_cases_per_million": 9.807, + "new_cases_smoothed_per_million": 5.966, + "total_deaths_per_million": 6.171, + "new_deaths_per_million": 0.413, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 5652.0, + "total_tests": 114602.0, + "total_tests_per_thousand": 2.252, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 4793.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 15.789000000000001, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 7285.0, + "new_cases": 279.0, + "new_cases_smoothed": 306.143, + "total_deaths": 324.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 143.172, + "new_cases_per_million": 5.483, + "new_cases_smoothed_per_million": 6.017, + "total_deaths_per_million": 6.368, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 4199.0, + "total_tests": 118801.0, + "total_tests_per_thousand": 2.335, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 4528.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 14.79, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 7668.0, + "new_cases": 383.0, + "new_cases_smoothed": 327.0, + "total_deaths": 340.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 150.699, + "new_cases_per_million": 7.527, + "new_cases_smoothed_per_million": 6.427, + "total_deaths_per_million": 6.682, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.272, + "new_tests": 4228.0, + "total_tests": 123029.0, + "total_tests_per_thousand": 2.418, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 4590.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 14.037, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-05", + "total_cases": 7973.0, + "new_cases": 305.0, + "new_cases_smoothed": 339.429, + "total_deaths": 358.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 156.693, + "new_cases_per_million": 5.994, + "new_cases_smoothed_per_million": 6.671, + "total_deaths_per_million": 7.036, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 4076.0, + "total_tests": 127105.0, + "total_tests_per_thousand": 2.498, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 4574.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 13.475999999999999, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-06", + "total_cases": 8613.0, + "new_cases": 640.0, + "new_cases_smoothed": 380.571, + "total_deaths": 378.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 169.271, + "new_cases_per_million": 12.578, + "new_cases_smoothed_per_million": 7.479, + "total_deaths_per_million": 7.429, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 4005.0, + "total_tests": 131110.0, + "total_tests_per_thousand": 2.577, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 4422.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 11.619000000000002, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 8959.0, + "new_cases": 346.0, + "new_cases_smoothed": 392.571, + "total_deaths": 397.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 176.071, + "new_cases_per_million": 6.8, + "new_cases_smoothed_per_million": 7.715, + "total_deaths_per_million": 7.802, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.334, + "new_tests": 4242.0, + "total_tests": 135352.0, + "total_tests_per_thousand": 2.66, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 4385.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 11.17, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 9456.0, + "new_cases": 497.0, + "new_cases_smoothed": 421.286, + "total_deaths": 407.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 185.839, + "new_cases_per_million": 9.768, + "new_cases_smoothed_per_million": 8.28, + "total_deaths_per_million": 7.999, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.32, + "new_tests": 4387.0, + "total_tests": 139739.0, + "total_tests_per_thousand": 2.746, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 4398.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 10.439, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 10051.0, + "new_cases": 595.0, + "new_cases_smoothed": 435.0, + "total_deaths": 428.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 197.532, + "new_cases_per_million": 11.694, + "new_cases_smoothed_per_million": 8.549, + "total_deaths_per_million": 8.411, + "new_deaths_per_million": 0.413, + "new_deaths_smoothed_per_million": 0.32, + "new_tests": 5173.0, + "total_tests": 144912.0, + "total_tests_per_thousand": 2.848, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 4330.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 9.954, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 10495.0, + "new_cases": 444.0, + "new_cases_smoothed": 458.571, + "total_deaths": 445.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 206.258, + "new_cases_per_million": 8.726, + "new_cases_smoothed_per_million": 9.012, + "total_deaths_per_million": 8.746, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 6484.0, + "total_tests": 151396.0, + "total_tests_per_thousand": 2.975, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 4656.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 10.152999999999999, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 11063.0, + "new_cases": 568.0, + "new_cases_smoothed": 485.0, + "total_deaths": 463.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 217.421, + "new_cases_per_million": 11.163, + "new_cases_smoothed_per_million": 9.532, + "total_deaths_per_million": 9.099, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 7537.0, + "total_tests": 158933.0, + "total_tests_per_thousand": 3.124, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 5129.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 10.575, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 11613.0, + "new_cases": 550.0, + "new_cases_smoothed": 520.0, + "total_deaths": 479.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 228.23, + "new_cases_per_million": 10.809, + "new_cases_smoothed_per_million": 10.22, + "total_deaths_per_million": 9.414, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 6805.0, + "total_tests": 165738.0, + "total_tests_per_thousand": 3.257, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 5519.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 10.613, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 12272.0, + "new_cases": 659.0, + "new_cases_smoothed": 522.714, + "total_deaths": 493.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 241.181, + "new_cases_per_million": 12.951, + "new_cases_smoothed_per_million": 10.273, + "total_deaths_per_million": 9.689, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.323, + "new_tests": 6061.0, + "total_tests": 171799.0, + "total_tests_per_thousand": 3.376, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 5813.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 11.120999999999999, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 12930.0, + "new_cases": 658.0, + "new_cases_smoothed": 567.286, + "total_deaths": 509.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 254.113, + "new_cases_per_million": 12.932, + "new_cases_smoothed_per_million": 11.149, + "total_deaths_per_million": 10.003, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.314, + "new_tests": 5251.0, + "total_tests": 177050.0, + "total_tests_per_thousand": 3.48, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 5957.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 10.501, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 13610.0, + "new_cases": 680.0, + "new_cases_smoothed": 593.429, + "total_deaths": 525.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 267.477, + "new_cases_per_million": 13.364, + "new_cases_smoothed_per_million": 11.663, + "total_deaths_per_million": 10.318, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.331, + "new_tests": 6062.0, + "total_tests": 183112.0, + "total_tests_per_thousand": 3.599, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 6196.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 10.440999999999999, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-16", + "total_cases": 14216.0, + "new_cases": 606.0, + "new_cases_smoothed": 595.0, + "total_deaths": 546.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 279.387, + "new_cases_per_million": 11.91, + "new_cases_smoothed_per_million": 11.694, + "total_deaths_per_million": 10.731, + "new_deaths_per_million": 0.413, + "new_deaths_smoothed_per_million": 0.331, + "new_tests": 7002.0, + "total_tests": 190114.0, + "total_tests_per_thousand": 3.736, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 6457.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 10.852, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-17", + "total_cases": 14939.0, + "new_cases": 723.0, + "new_cases_smoothed": 634.857, + "total_deaths": 562.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 293.596, + "new_cases_per_million": 14.209, + "new_cases_smoothed_per_million": 12.477, + "total_deaths_per_million": 11.045, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 6303.0, + "total_tests": 196417.0, + "total_tests_per_thousand": 3.86, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 6432.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 10.131, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-18", + "total_cases": 15574.0, + "new_cases": 635.0, + "new_cases_smoothed": 644.429, + "total_deaths": 574.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 306.075, + "new_cases_per_million": 12.48, + "new_cases_smoothed_per_million": 12.665, + "total_deaths_per_million": 11.281, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.312, + "new_tests": 5391.0, + "total_tests": 201808.0, + "total_tests_per_thousand": 3.966, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 6125.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 9.505, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-19", + "total_cases": 16295.0, + "new_cases": 721.0, + "new_cases_smoothed": 668.857, + "total_deaths": 592.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 320.245, + "new_cases_per_million": 14.17, + "new_cases_smoothed_per_million": 13.145, + "total_deaths_per_million": 11.635, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 6238.0, + "total_tests": 208046.0, + "total_tests_per_thousand": 4.089, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 6044.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 9.036, + "positive_rate": 0.111, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-20", + "total_cases": 16935.0, + "new_cases": 640.0, + "new_cases_smoothed": 666.143, + "total_deaths": 613.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 332.823, + "new_cases_per_million": 12.578, + "new_cases_smoothed_per_million": 13.092, + "total_deaths_per_million": 12.047, + "new_deaths_per_million": 0.413, + "new_deaths_smoothed_per_million": 0.337, + "new_tests": 6490.0, + "total_tests": 214536.0, + "total_tests_per_thousand": 4.216, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 6105.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 9.165, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-21", + "total_cases": 17687.0, + "new_cases": 752.0, + "new_cases_smoothed": 679.571, + "total_deaths": 630.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 347.602, + "new_cases_per_million": 14.779, + "new_cases_smoothed_per_million": 13.356, + "total_deaths_per_million": 12.381, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 7674.0, + "total_tests": 222210.0, + "total_tests_per_thousand": 4.367, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 6451.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 9.493, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 18330.0, + "new_cases": 643.0, + "new_cases_smoothed": 674.286, + "total_deaths": 652.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 360.239, + "new_cases_per_million": 12.637, + "new_cases_smoothed_per_million": 13.252, + "total_deaths_per_million": 12.814, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.357, + "new_tests": 13738.0, + "total_tests": 235948.0, + "total_tests_per_thousand": 4.637, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 7548.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 11.194, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 19131.0, + "new_cases": 801.0, + "new_cases_smoothed": 702.143, + "total_deaths": 682.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 375.981, + "new_cases_per_million": 15.742, + "new_cases_smoothed_per_million": 13.799, + "total_deaths_per_million": 13.403, + "new_deaths_per_million": 0.59, + "new_deaths_smoothed_per_million": 0.382, + "new_tests": 7171.0, + "total_tests": 243119.0, + "total_tests_per_thousand": 4.778, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 7572.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 10.784, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 20177.0, + "new_cases": 1046.0, + "new_cases_smoothed": 748.286, + "total_deaths": 705.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 396.538, + "new_cases_per_million": 20.557, + "new_cases_smoothed_per_million": 14.706, + "total_deaths_per_million": 13.855, + "new_deaths_per_million": 0.452, + "new_deaths_smoothed_per_million": 0.401, + "new_tests": 9623.0, + "total_tests": 252742.0, + "total_tests_per_thousand": 4.967, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 8046.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 10.753, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 21175.0, + "new_cases": 998.0, + "new_cases_smoothed": 800.143, + "total_deaths": 727.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 416.152, + "new_cases_per_million": 19.614, + "new_cases_smoothed_per_million": 15.725, + "total_deaths_per_million": 14.288, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.43, + "new_tests": 8070.0, + "total_tests": 260812.0, + "total_tests_per_thousand": 5.126, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 8429.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 10.534, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 21981.0, + "new_cases": 806.0, + "new_cases_smoothed": 812.286, + "total_deaths": 750.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 431.992, + "new_cases_per_million": 15.84, + "new_cases_smoothed_per_million": 15.964, + "total_deaths_per_million": 14.74, + "new_deaths_per_million": 0.452, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 10306.0, + "total_tests": 271118.0, + "total_tests_per_thousand": 5.328, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 9010.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 11.092, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 23003.0, + "new_cases": 1022.0, + "new_cases_smoothed": 866.857, + "total_deaths": 776.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 452.077, + "new_cases_per_million": 20.085, + "new_cases_smoothed_per_million": 17.036, + "total_deaths_per_million": 15.251, + "new_deaths_per_million": 0.511, + "new_deaths_smoothed_per_million": 0.458, + "new_tests": 12366.0, + "total_tests": 283484.0, + "total_tests_per_thousand": 5.571, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 9850.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 11.363, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 24104.0, + "new_cases": 1101.0, + "new_cases_smoothed": 916.714, + "total_deaths": 803.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 473.715, + "new_cases_per_million": 21.638, + "new_cases_smoothed_per_million": 18.016, + "total_deaths_per_million": 15.781, + "new_deaths_per_million": 0.531, + "new_deaths_smoothed_per_million": 0.486, + "new_tests": 12130.0, + "total_tests": 295614.0, + "total_tests_per_thousand": 5.81, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 10486.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 11.439, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 25366.0, + "new_cases": 1262.0, + "new_cases_smoothed": 1005.143, + "total_deaths": 822.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 498.517, + "new_cases_per_million": 24.802, + "new_cases_smoothed_per_million": 19.754, + "total_deaths_per_million": 16.155, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 10797.0, + "total_tests": 306411.0, + "total_tests_per_thousand": 6.022, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 10066.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 10.014, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-30", + "total_cases": 26688.0, + "new_cases": 1322.0, + "new_cases_smoothed": 1079.571, + "total_deaths": 853.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 524.499, + "new_cases_per_million": 25.981, + "new_cases_smoothed_per_million": 21.217, + "total_deaths_per_million": 16.764, + "new_deaths_per_million": 0.609, + "new_deaths_smoothed_per_million": 0.48, + "new_tests": 13368.0, + "total_tests": 319779.0, + "total_tests_per_thousand": 6.285, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 10951.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 10.144, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-05-31", + "total_cases": 28236.0, + "new_cases": 1548.0, + "new_cases_smoothed": 1151.286, + "total_deaths": 890.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 554.921, + "new_cases_per_million": 30.423, + "new_cases_smoothed_per_million": 22.626, + "total_deaths_per_million": 17.491, + "new_deaths_per_million": 0.727, + "new_deaths_smoothed_per_million": 0.519, + "new_tests": 12038.0, + "total_tests": 331817.0, + "total_tests_per_thousand": 6.521, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 11296.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 9.812000000000001, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-01", + "total_cases": 29383.0, + "new_cases": 1147.0, + "new_cases_smoothed": 1172.571, + "total_deaths": 939.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 577.463, + "new_cases_per_million": 22.542, + "new_cases_smoothed_per_million": 23.045, + "total_deaths_per_million": 18.454, + "new_deaths_per_million": 0.963, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 9325.0, + "total_tests": 341142.0, + "total_tests_per_thousand": 6.704, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 11476.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 9.787, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-02", + "total_cases": 30493.0, + "new_cases": 1110.0, + "new_cases_smoothed": 1216.0, + "total_deaths": 969.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 599.278, + "new_cases_per_million": 21.815, + "new_cases_smoothed_per_million": 23.898, + "total_deaths_per_million": 19.044, + "new_deaths_per_million": 0.59, + "new_deaths_smoothed_per_million": 0.615, + "new_tests": 9071.0, + "total_tests": 350213.0, + "total_tests_per_thousand": 6.883, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 11299.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 9.292, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-03", + "total_cases": 31833.0, + "new_cases": 1340.0, + "new_cases_smoothed": 1261.429, + "total_deaths": 1009.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 625.613, + "new_cases_per_million": 26.335, + "new_cases_smoothed_per_million": 24.791, + "total_deaths_per_million": 19.83, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.654, + "new_tests": 12219.0, + "total_tests": 362432.0, + "total_tests_per_thousand": 7.123, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 11278.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 8.941, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-04", + "total_cases": 33354.0, + "new_cases": 1521.0, + "new_cases_smoothed": 1321.429, + "total_deaths": 1045.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 655.505, + "new_cases_per_million": 29.892, + "new_cases_smoothed_per_million": 25.97, + "total_deaths_per_million": 20.537, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.679, + "new_tests": 12160.0, + "total_tests": 374592.0, + "total_tests_per_thousand": 7.362, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 11283.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 8.538, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-05", + "total_cases": 35120.0, + "new_cases": 1766.0, + "new_cases_smoothed": 1393.429, + "total_deaths": 1087.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 690.212, + "new_cases_per_million": 34.707, + "new_cases_smoothed_per_million": 27.385, + "total_deaths_per_million": 21.363, + "new_deaths_per_million": 0.825, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 12346.0, + "total_tests": 386938.0, + "total_tests_per_thousand": 7.604, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 11504.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 8.256, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-06", + "total_cases": 36635.0, + "new_cases": 1515.0, + "new_cases_smoothed": 1421.0, + "total_deaths": 1145.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 41.714, + "total_cases_per_million": 719.987, + "new_cases_per_million": 29.774, + "new_cases_smoothed_per_million": 27.927, + "total_deaths_per_million": 22.503, + "new_deaths_per_million": 1.14, + "new_deaths_smoothed_per_million": 0.82, + "new_tests": 12567.0, + "total_tests": 399505.0, + "total_tests_per_thousand": 7.851, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 11389.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 8.015, + "positive_rate": 0.125, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-07", + "total_cases": 38027.0, + "new_cases": 1392.0, + "new_cases_smoothed": 1398.714, + "total_deaths": 1205.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 747.344, + "new_cases_per_million": 27.357, + "new_cases_smoothed_per_million": 27.489, + "total_deaths_per_million": 23.682, + "new_deaths_per_million": 1.179, + "new_deaths_smoothed_per_million": 0.884, + "new_tests": 11214.0, + "total_tests": 410719.0, + "total_tests_per_thousand": 8.072, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 11272.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 8.059, + "positive_rate": 0.124, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-08", + "total_cases": 39236.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1407.571, + "total_deaths": 1259.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 45.714, + "total_cases_per_million": 771.104, + "new_cases_per_million": 23.76, + "new_cases_smoothed_per_million": 27.663, + "total_deaths_per_million": 24.743, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 0.898, + "new_tests": 11004.0, + "total_tests": 421723.0, + "total_tests_per_thousand": 8.288, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 11512.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 8.179, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-09", + "total_cases": 40719.0, + "new_cases": 1483.0, + "new_cases_smoothed": 1460.857, + "total_deaths": 1308.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 48.429, + "total_cases_per_million": 800.249, + "new_cases_per_million": 29.145, + "new_cases_smoothed_per_million": 28.71, + "total_deaths_per_million": 25.706, + "new_deaths_per_million": 0.963, + "new_deaths_smoothed_per_million": 0.952, + "new_tests": 11147.0, + "total_tests": 432870.0, + "total_tests_per_thousand": 8.507, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 11808.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 8.083, + "positive_rate": 0.124, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-10", + "total_cases": 42078.0, + "new_cases": 1359.0, + "new_cases_smoothed": 1463.571, + "total_deaths": 1372.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 51.857, + "total_cases_per_million": 826.958, + "new_cases_per_million": 26.708, + "new_cases_smoothed_per_million": 28.764, + "total_deaths_per_million": 26.964, + "new_deaths_per_million": 1.258, + "new_deaths_smoothed_per_million": 1.019, + "new_tests": 12063.0, + "total_tests": 444933.0, + "total_tests_per_thousand": 8.744, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 11786.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 8.052999999999999, + "positive_rate": 0.124, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-11", + "total_cases": 43682.0, + "new_cases": 1604.0, + "new_cases_smoothed": 1475.429, + "total_deaths": 1433.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 55.429, + "total_cases_per_million": 858.481, + "new_cases_per_million": 31.523, + "new_cases_smoothed_per_million": 28.997, + "total_deaths_per_million": 28.163, + "new_deaths_per_million": 1.199, + "new_deaths_smoothed_per_million": 1.089, + "new_tests": 13391.0, + "total_tests": 458324.0, + "total_tests_per_thousand": 9.007, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 11962.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 8.107000000000001, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-12", + "total_cases": 43682.0, + "new_cases": 0.0, + "new_cases_smoothed": 1223.143, + "total_deaths": 1433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 858.481, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.038, + "total_deaths_per_million": 28.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 12027.0, + "total_tests": 470351.0, + "total_tests_per_thousand": 9.244, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 11916.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 9.742, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-13", + "total_cases": 46858.0, + "new_cases": 3176.0, + "new_cases_smoothed": 1460.429, + "total_deaths": 1545.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 57.143, + "total_cases_per_million": 920.899, + "new_cases_per_million": 62.418, + "new_cases_smoothed_per_million": 28.702, + "total_deaths_per_million": 30.364, + "new_deaths_per_million": 2.201, + "new_deaths_smoothed_per_million": 1.123, + "new_tests": 12481.0, + "total_tests": 482832.0, + "total_tests_per_thousand": 9.489, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 11904.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 8.151, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-14", + "total_cases": 48746.0, + "new_cases": 1888.0, + "new_cases_smoothed": 1531.286, + "total_deaths": 1592.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 55.286, + "total_cases_per_million": 958.004, + "new_cases_per_million": 37.105, + "new_cases_smoothed_per_million": 30.094, + "total_deaths_per_million": 31.288, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 1.087, + "new_tests": 12192.0, + "total_tests": 495024.0, + "total_tests_per_thousand": 9.729, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 12044.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 7.865, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-15", + "total_cases": 50939.0, + "new_cases": 2193.0, + "new_cases_smoothed": 1671.857, + "total_deaths": 1667.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 1001.103, + "new_cases_per_million": 43.099, + "new_cases_smoothed_per_million": 32.857, + "total_deaths_per_million": 32.762, + "new_deaths_per_million": 1.474, + "new_deaths_smoothed_per_million": 1.145, + "new_tests": 12564.0, + "total_tests": 507588.0, + "total_tests_per_thousand": 9.976, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 12266.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 7.337000000000001, + "positive_rate": 0.136, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-16", + "total_cases": 53063.0, + "new_cases": 2124.0, + "new_cases_smoothed": 1763.429, + "total_deaths": 1726.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 59.714, + "total_cases_per_million": 1042.846, + "new_cases_per_million": 41.743, + "new_cases_smoothed_per_million": 34.657, + "total_deaths_per_million": 33.921, + "new_deaths_per_million": 1.16, + "new_deaths_smoothed_per_million": 1.174, + "new_tests": 12402.0, + "total_tests": 519990.0, + "total_tests_per_thousand": 10.219, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 12446.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 7.058, + "positive_rate": 0.142, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-17", + "total_cases": 54931.0, + "new_cases": 1868.0, + "new_cases_smoothed": 1836.143, + "total_deaths": 1801.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 1079.558, + "new_cases_per_million": 36.712, + "new_cases_smoothed_per_million": 36.086, + "total_deaths_per_million": 35.395, + "new_deaths_per_million": 1.474, + "new_deaths_smoothed_per_million": 1.204, + "new_tests": 15230.0, + "total_tests": 535220.0, + "total_tests_per_thousand": 10.519, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 12898.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 7.025, + "positive_rate": 0.142, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-18", + "total_cases": 57046.0, + "new_cases": 2115.0, + "new_cases_smoothed": 1909.143, + "total_deaths": 1864.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 61.571, + "total_cases_per_million": 1121.124, + "new_cases_per_million": 41.566, + "new_cases_smoothed_per_million": 37.52, + "total_deaths_per_million": 36.633, + "new_deaths_per_million": 1.238, + "new_deaths_smoothed_per_million": 1.21, + "new_tests": 15391.0, + "total_tests": 550611.0, + "total_tests_per_thousand": 10.821, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 13184.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 6.906000000000001, + "positive_rate": 0.145, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-19", + "total_cases": 60217.0, + "new_cases": 3171.0, + "new_cases_smoothed": 2362.143, + "total_deaths": 1950.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 73.857, + "total_cases_per_million": 1183.443, + "new_cases_per_million": 62.32, + "new_cases_smoothed_per_million": 46.423, + "total_deaths_per_million": 38.323, + "new_deaths_per_million": 1.69, + "new_deaths_smoothed_per_million": 1.452, + "new_tests": 17713.0, + "total_tests": 568324.0, + "total_tests_per_thousand": 11.169, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 13996.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 5.925, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-20", + "total_cases": 63276.0, + "new_cases": 3059.0, + "new_cases_smoothed": 2345.429, + "total_deaths": 2045.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 71.429, + "total_cases_per_million": 1243.562, + "new_cases_per_million": 60.118, + "new_cases_smoothed_per_million": 46.095, + "total_deaths_per_million": 40.19, + "new_deaths_per_million": 1.867, + "new_deaths_smoothed_per_million": 1.404, + "new_tests": 17498.0, + "total_tests": 585822.0, + "total_tests_per_thousand": 11.513, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 14713.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 6.273, + "positive_rate": 0.159, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-21", + "total_cases": 65633.0, + "new_cases": 2357.0, + "new_cases_smoothed": 2412.429, + "total_deaths": 2126.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 76.286, + "total_cases_per_million": 1289.884, + "new_cases_per_million": 46.322, + "new_cases_smoothed_per_million": 47.411, + "total_deaths_per_million": 41.782, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.499, + "new_tests": 18451.0, + "total_tests": 604273.0, + "total_tests_per_thousand": 11.876, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 15607.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 6.468999999999999, + "positive_rate": 0.155, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-22", + "total_cases": 68652.0, + "new_cases": 3019.0, + "new_cases_smoothed": 2530.429, + "total_deaths": 2237.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 81.429, + "total_cases_per_million": 1349.216, + "new_cases_per_million": 59.332, + "new_cases_smoothed_per_million": 49.73, + "total_deaths_per_million": 43.964, + "new_deaths_per_million": 2.181, + "new_deaths_smoothed_per_million": 1.6, + "new_tests": 16015.0, + "total_tests": 620288.0, + "total_tests_per_thousand": 12.191, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 16100.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 6.3629999999999995, + "positive_rate": 0.157, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-23", + "total_cases": 71183.0, + "new_cases": 2531.0, + "new_cases_smoothed": 2588.571, + "total_deaths": 2310.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 83.429, + "total_cases_per_million": 1398.958, + "new_cases_per_million": 49.742, + "new_cases_smoothed_per_million": 50.873, + "total_deaths_per_million": 45.398, + "new_deaths_per_million": 1.435, + "new_deaths_smoothed_per_million": 1.64, + "new_tests": 14323.0, + "total_tests": 634611.0, + "total_tests_per_thousand": 12.472, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 16374.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 6.325, + "positive_rate": 0.158, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-24", + "total_cases": 73572.0, + "new_cases": 2389.0, + "new_cases_smoothed": 2663.0, + "total_deaths": 2404.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 86.143, + "total_cases_per_million": 1445.909, + "new_cases_per_million": 46.951, + "new_cases_smoothed_per_million": 52.336, + "total_deaths_per_million": 47.246, + "new_deaths_per_million": 1.847, + "new_deaths_smoothed_per_million": 1.693, + "new_tests": 16981.0, + "total_tests": 651592.0, + "total_tests_per_thousand": 12.806, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 16625.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 6.242999999999999, + "positive_rate": 0.16, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-25", + "total_cases": 77113.0, + "new_cases": 3541.0, + "new_cases_smoothed": 2866.714, + "total_deaths": 2491.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 89.571, + "total_cases_per_million": 1515.5, + "new_cases_per_million": 69.591, + "new_cases_smoothed_per_million": 56.339, + "total_deaths_per_million": 48.956, + "new_deaths_per_million": 1.71, + "new_deaths_smoothed_per_million": 1.76, + "new_tests": 18501.0, + "total_tests": 670093.0, + "total_tests_per_thousand": 13.169, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 17069.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 5.954, + "positive_rate": 0.168, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-26", + "total_cases": 80599.0, + "new_cases": 3486.0, + "new_cases_smoothed": 2911.714, + "total_deaths": 2654.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 100.571, + "total_cases_per_million": 1584.01, + "new_cases_per_million": 68.51, + "new_cases_smoothed_per_million": 57.224, + "total_deaths_per_million": 52.159, + "new_deaths_per_million": 3.203, + "new_deaths_smoothed_per_million": 1.977, + "new_tests": 18866.0, + "total_tests": 688959.0, + "total_tests_per_thousand": 13.54, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 17234.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 5.919, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-27", + "total_cases": 84442.0, + "new_cases": 3843.0, + "new_cases_smoothed": 3023.714, + "total_deaths": 2811.0, + "new_deaths": 157.0, + "new_deaths_smoothed": 109.429, + "total_cases_per_million": 1659.536, + "new_cases_per_million": 75.526, + "new_cases_smoothed_per_million": 59.425, + "total_deaths_per_million": 55.245, + "new_deaths_per_million": 3.086, + "new_deaths_smoothed_per_million": 2.151, + "new_tests": 18729.0, + "total_tests": 707688.0, + "total_tests_per_thousand": 13.908, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 17409.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 5.757000000000001, + "positive_rate": 0.174, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-28", + "total_cases": 88591.0, + "new_cases": 4149.0, + "new_cases_smoothed": 3279.714, + "total_deaths": 2939.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 116.143, + "total_cases_per_million": 1741.077, + "new_cases_per_million": 81.54, + "new_cases_smoothed_per_million": 64.456, + "total_deaths_per_million": 57.76, + "new_deaths_per_million": 2.516, + "new_deaths_smoothed_per_million": 2.283, + "new_tests": 18140.0, + "total_tests": 725828.0, + "total_tests_per_thousand": 14.265, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 17365.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 5.295, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-29", + "total_cases": 91769.0, + "new_cases": 3178.0, + "new_cases_smoothed": 3302.429, + "total_deaths": 3106.0, + "new_deaths": 167.0, + "new_deaths_smoothed": 124.143, + "total_cases_per_million": 1803.534, + "new_cases_per_million": 62.457, + "new_cases_smoothed_per_million": 64.903, + "total_deaths_per_million": 61.042, + "new_deaths_per_million": 3.282, + "new_deaths_smoothed_per_million": 2.44, + "new_tests": 17609.0, + "total_tests": 743437.0, + "total_tests_per_thousand": 14.611, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 17593.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 5.327000000000001, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-06-30", + "total_cases": 95043.0, + "new_cases": 3274.0, + "new_cases_smoothed": 3408.571, + "total_deaths": 3223.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 130.429, + "total_cases_per_million": 1867.878, + "new_cases_per_million": 64.344, + "new_cases_smoothed_per_million": 66.989, + "total_deaths_per_million": 63.342, + "new_deaths_per_million": 2.299, + "new_deaths_smoothed_per_million": 2.563, + "new_tests": 17282.0, + "total_tests": 760719.0, + "total_tests_per_thousand": 14.95, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 18015.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 5.285, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-01", + "total_cases": 97846.0, + "new_cases": 2803.0, + "new_cases_smoothed": 3467.714, + "total_deaths": 3334.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 132.857, + "total_cases_per_million": 1922.965, + "new_cases_per_million": 55.087, + "new_cases_smoothed_per_million": 68.151, + "total_deaths_per_million": 65.523, + "new_deaths_per_million": 2.181, + "new_deaths_smoothed_per_million": 2.611, + "new_tests": 18054.0, + "total_tests": 778773.0, + "total_tests_per_thousand": 15.305, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 18169.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 5.239, + "positive_rate": 0.191, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-02", + "total_cases": 102009.0, + "new_cases": 4163.0, + "new_cases_smoothed": 3556.571, + "total_deaths": 3470.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 139.857, + "total_cases_per_million": 2004.78, + "new_cases_per_million": 81.815, + "new_cases_smoothed_per_million": 69.897, + "total_deaths_per_million": 68.196, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 2.749, + "new_tests": 19335.0, + "total_tests": 798108.0, + "total_tests_per_thousand": 15.685, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 18288.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 5.142, + "positive_rate": 0.19399999999999998, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-03", + "total_cases": 106110.0, + "new_cases": 4101.0, + "new_cases_smoothed": 3644.429, + "total_deaths": 3641.0, + "new_deaths": 171.0, + "new_deaths_smoothed": 141.0, + "total_cases_per_million": 2085.377, + "new_cases_per_million": 80.597, + "new_cases_smoothed_per_million": 71.624, + "total_deaths_per_million": 71.556, + "new_deaths_per_million": 3.361, + "new_deaths_smoothed_per_million": 2.771, + "new_tests": 20595.0, + "total_tests": 818703.0, + "total_tests_per_thousand": 16.09, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 18535.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 5.086, + "positive_rate": 0.19699999999999998, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-04", + "total_cases": 109505.0, + "new_cases": 3395.0, + "new_cases_smoothed": 3580.429, + "total_deaths": 3777.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 138.0, + "total_cases_per_million": 2152.099, + "new_cases_per_million": 66.722, + "new_cases_smoothed_per_million": 70.366, + "total_deaths_per_million": 74.229, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 2.712, + "new_tests": 21028.0, + "total_tests": 839731.0, + "total_tests_per_thousand": 16.503, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 18863.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 5.268, + "positive_rate": 0.19, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-05", + "total_cases": 113389.0, + "new_cases": 3884.0, + "new_cases_smoothed": 3542.571, + "total_deaths": 3942.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 143.286, + "total_cases_per_million": 2228.431, + "new_cases_per_million": 76.332, + "new_cases_smoothed_per_million": 69.622, + "total_deaths_per_million": 77.472, + "new_deaths_per_million": 3.243, + "new_deaths_smoothed_per_million": 2.816, + "new_tests": 21000.0, + "total_tests": 860731.0, + "total_tests_per_thousand": 16.916, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 19272.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 5.44, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-06", + "total_cases": 117110.0, + "new_cases": 3721.0, + "new_cases_smoothed": 3620.143, + "total_deaths": 4064.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 136.857, + "total_cases_per_million": 2301.56, + "new_cases_per_million": 73.129, + "new_cases_smoothed_per_million": 71.147, + "total_deaths_per_million": 79.87, + "new_deaths_per_million": 2.398, + "new_deaths_smoothed_per_million": 2.69, + "new_tests": 20459.0, + "total_tests": 881190.0, + "total_tests_per_thousand": 17.318, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 19679.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 5.436, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-07", + "total_cases": 120281.0, + "new_cases": 3171.0, + "new_cases_smoothed": 3605.429, + "total_deaths": 4210.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 141.0, + "total_cases_per_million": 2363.879, + "new_cases_per_million": 62.32, + "new_cases_smoothed_per_million": 70.857, + "total_deaths_per_million": 82.739, + "new_deaths_per_million": 2.869, + "new_deaths_smoothed_per_million": 2.771, + "new_tests": 21115.0, + "total_tests": 902305.0, + "total_tests_per_thousand": 17.733, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 20227.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 5.61, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-08", + "total_cases": 124494.0, + "new_cases": 4213.0, + "new_cases_smoothed": 3806.857, + "total_deaths": 4359.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 146.429, + "total_cases_per_million": 2446.677, + "new_cases_per_million": 82.798, + "new_cases_smoothed_per_million": 74.816, + "total_deaths_per_million": 85.667, + "new_deaths_per_million": 2.928, + "new_deaths_smoothed_per_million": 2.878, + "new_tests": 21409.0, + "total_tests": 923714.0, + "total_tests_per_thousand": 18.154, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 20706.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 5.439, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-09", + "total_cases": 128638.0, + "new_cases": 4144.0, + "new_cases_smoothed": 3804.143, + "total_deaths": 4527.0, + "new_deaths": 168.0, + "new_deaths_smoothed": 151.0, + "total_cases_per_million": 2528.119, + "new_cases_per_million": 81.442, + "new_cases_smoothed_per_million": 74.763, + "total_deaths_per_million": 88.969, + "new_deaths_per_million": 3.302, + "new_deaths_smoothed_per_million": 2.968, + "new_tests": 21526.0, + "total_tests": 945240.0, + "total_tests_per_thousand": 18.577, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 21019.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 5.525, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-10", + "total_cases": 133973.0, + "new_cases": 5335.0, + "new_cases_smoothed": 3980.429, + "total_deaths": 4714.0, + "new_deaths": 187.0, + "new_deaths_smoothed": 153.286, + "total_cases_per_million": 2632.968, + "new_cases_per_million": 104.849, + "new_cases_smoothed_per_million": 78.227, + "total_deaths_per_million": 92.644, + "new_deaths_per_million": 3.675, + "new_deaths_smoothed_per_million": 3.013, + "new_tests": 23225.0, + "total_tests": 968465.0, + "total_tests_per_thousand": 19.033, + "new_tests_per_thousand": 0.456, + "new_tests_smoothed": 21395.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 5.375, + "positive_rate": 0.18600000000000003, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-11", + "total_cases": 140776.0, + "new_cases": 6803.0, + "new_cases_smoothed": 4467.286, + "total_deaths": 4925.0, + "new_deaths": 211.0, + "new_deaths_smoothed": 164.0, + "total_cases_per_million": 2766.667, + "new_cases_per_million": 133.699, + "new_cases_smoothed_per_million": 87.795, + "total_deaths_per_million": 96.791, + "new_deaths_per_million": 4.147, + "new_deaths_smoothed_per_million": 3.223, + "new_tests": 37628.0, + "total_tests": 1006093.0, + "total_tests_per_thousand": 19.773, + "new_tests_per_thousand": 0.74, + "new_tests_smoothed": 23766.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 5.32, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-12", + "total_cases": 145362.0, + "new_cases": 4586.0, + "new_cases_smoothed": 4567.571, + "total_deaths": 5119.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 168.143, + "total_cases_per_million": 2856.796, + "new_cases_per_million": 90.129, + "new_cases_smoothed_per_million": 89.766, + "total_deaths_per_million": 100.604, + "new_deaths_per_million": 3.813, + "new_deaths_smoothed_per_million": 3.305, + "new_tests": 25137.0, + "total_tests": 1031230.0, + "total_tests_per_thousand": 20.267, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 24357.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 5.332999999999999, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-13", + "total_cases": 150445.0, + "new_cases": 5083.0, + "new_cases_smoothed": 4762.143, + "total_deaths": 5307.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 177.571, + "total_cases_per_million": 2956.692, + "new_cases_per_million": 99.896, + "new_cases_smoothed_per_million": 93.59, + "total_deaths_per_million": 104.298, + "new_deaths_per_million": 3.695, + "new_deaths_smoothed_per_million": 3.49, + "new_tests": 25584.0, + "total_tests": 1056814.0, + "total_tests_per_thousand": 20.77, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 25089.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 5.268, + "positive_rate": 0.19, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-14", + "total_cases": 154227.0, + "new_cases": 3782.0, + "new_cases_smoothed": 4849.429, + "total_deaths": 5455.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 177.857, + "total_cases_per_million": 3031.019, + "new_cases_per_million": 74.328, + "new_cases_smoothed_per_million": 95.306, + "total_deaths_per_million": 107.207, + "new_deaths_per_million": 2.909, + "new_deaths_smoothed_per_million": 3.495, + "new_tests": 25601.0, + "total_tests": 1082415.0, + "total_tests_per_thousand": 21.273, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 25730.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 5.306, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-15", + "total_cases": 159898.0, + "new_cases": 5671.0, + "new_cases_smoothed": 5057.714, + "total_deaths": 5625.0, + "new_deaths": 170.0, + "new_deaths_smoothed": 180.857, + "total_cases_per_million": 3142.471, + "new_cases_per_million": 111.452, + "new_cases_smoothed_per_million": 99.399, + "total_deaths_per_million": 110.548, + "new_deaths_per_million": 3.341, + "new_deaths_smoothed_per_million": 3.554, + "new_tests": 25733.0, + "total_tests": 1108148.0, + "total_tests_per_thousand": 21.778, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 26348.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 5.209, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-16", + "total_cases": 165169.0, + "new_cases": 5271.0, + "new_cases_smoothed": 5218.714, + "total_deaths": 5814.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 183.857, + "total_cases_per_million": 3246.062, + "new_cases_per_million": 103.591, + "new_cases_smoothed_per_million": 102.563, + "total_deaths_per_million": 114.262, + "new_deaths_per_million": 3.714, + "new_deaths_smoothed_per_million": 3.613, + "new_tests": 25359.0, + "total_tests": 1133507.0, + "total_tests_per_thousand": 22.277, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 26895.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 5.154, + "positive_rate": 0.19399999999999998, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-17", + "total_cases": 173206.0, + "new_cases": 8037.0, + "new_cases_smoothed": 5604.714, + "total_deaths": 6029.0, + "new_deaths": 215.0, + "new_deaths_smoothed": 187.857, + "total_cases_per_million": 3404.013, + "new_cases_per_million": 157.951, + "new_cases_smoothed_per_million": 110.149, + "total_deaths_per_million": 118.488, + "new_deaths_per_million": 4.225, + "new_deaths_smoothed_per_million": 3.692, + "new_tests": 26055.0, + "total_tests": 1159562.0, + "total_tests_per_thousand": 22.789, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 27300.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 4.871, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-18", + "total_cases": 182140.0, + "new_cases": 8934.0, + "new_cases_smoothed": 5909.143, + "total_deaths": 6288.0, + "new_deaths": 259.0, + "new_deaths_smoothed": 194.714, + "total_cases_per_million": 3579.593, + "new_cases_per_million": 175.58, + "new_cases_smoothed_per_million": 116.132, + "total_deaths_per_million": 123.578, + "new_deaths_per_million": 5.09, + "new_deaths_smoothed_per_million": 3.827, + "new_tests": 26422.0, + "total_tests": 1185984.0, + "total_tests_per_thousand": 23.308, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 25699.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 4.349, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-19", + "total_cases": 190700.0, + "new_cases": 8560.0, + "new_cases_smoothed": 6476.857, + "total_deaths": 6516.0, + "new_deaths": 228.0, + "new_deaths_smoothed": 199.571, + "total_cases_per_million": 3747.822, + "new_cases_per_million": 168.229, + "new_cases_smoothed_per_million": 127.29, + "total_deaths_per_million": 128.059, + "new_deaths_per_million": 4.481, + "new_deaths_smoothed_per_million": 3.922, + "new_tests": 24079.0, + "total_tests": 1210063.0, + "total_tests_per_thousand": 23.781, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 25548.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 3.945, + "positive_rate": 0.254, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-20", + "total_cases": 197278.0, + "new_cases": 6578.0, + "new_cases_smoothed": 6690.429, + "total_deaths": 6736.0, + "new_deaths": 220.0, + "new_deaths_smoothed": 204.143, + "total_cases_per_million": 3877.099, + "new_cases_per_million": 129.277, + "new_cases_smoothed_per_million": 131.487, + "total_deaths_per_million": 132.382, + "new_deaths_per_million": 4.324, + "new_deaths_smoothed_per_million": 4.012, + "new_tests": 26473.0, + "total_tests": 1236536.0, + "total_tests_per_thousand": 24.302, + "new_tests_per_thousand": 0.52, + "new_tests_smoothed": 25675.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 3.838, + "positive_rate": 0.261, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-21", + "total_cases": 204005.0, + "new_cases": 6727.0, + "new_cases_smoothed": 7111.143, + "total_deaths": 6929.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 210.571, + "total_cases_per_million": 4009.305, + "new_cases_per_million": 132.206, + "new_cases_smoothed_per_million": 139.755, + "total_deaths_per_million": 136.175, + "new_deaths_per_million": 3.793, + "new_deaths_smoothed_per_million": 4.138, + "new_tests": 27164.0, + "total_tests": 1263700.0, + "total_tests_per_thousand": 24.835, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 25898.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 3.642, + "positive_rate": 0.275, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-22", + "total_cases": 211038.0, + "new_cases": 7033.0, + "new_cases_smoothed": 7305.714, + "total_deaths": 7166.0, + "new_deaths": 237.0, + "new_deaths_smoothed": 220.143, + "total_cases_per_million": 4147.524, + "new_cases_per_million": 138.219, + "new_cases_smoothed_per_million": 143.579, + "total_deaths_per_million": 140.833, + "new_deaths_per_million": 4.658, + "new_deaths_smoothed_per_million": 4.326, + "new_tests": 28801.0, + "total_tests": 1292501.0, + "total_tests_per_thousand": 25.401, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 26336.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 3.605, + "positive_rate": 0.27699999999999997, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-23", + "total_cases": 218428.0, + "new_cases": 7390.0, + "new_cases_smoothed": 7608.429, + "total_deaths": 7373.0, + "new_deaths": 207.0, + "new_deaths_smoothed": 222.714, + "total_cases_per_million": 4292.76, + "new_cases_per_million": 145.235, + "new_cases_smoothed_per_million": 149.528, + "total_deaths_per_million": 144.901, + "new_deaths_per_million": 4.068, + "new_deaths_smoothed_per_million": 4.377, + "new_tests": 28434.0, + "total_tests": 1320935.0, + "total_tests_per_thousand": 25.96, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 26775.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 3.5189999999999997, + "positive_rate": 0.284, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-24", + "total_cases": 226373.0, + "new_cases": 7945.0, + "new_cases_smoothed": 7595.286, + "total_deaths": 7688.0, + "new_deaths": 315.0, + "new_deaths_smoothed": 237.0, + "total_cases_per_million": 4448.903, + "new_cases_per_million": 156.143, + "new_cases_smoothed_per_million": 149.27, + "total_deaths_per_million": 151.092, + "new_deaths_per_million": 6.191, + "new_deaths_smoothed_per_million": 4.658, + "new_tests": 28567.0, + "total_tests": 1349502.0, + "total_tests_per_thousand": 26.522, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 27134.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 3.572, + "positive_rate": 0.28, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-25", + "total_cases": 233541.0, + "new_cases": 7168.0, + "new_cases_smoothed": 7343.0, + "total_deaths": 7975.0, + "new_deaths": 287.0, + "new_deaths_smoothed": 241.0, + "total_cases_per_million": 4589.775, + "new_cases_per_million": 140.873, + "new_cases_smoothed_per_million": 144.312, + "total_deaths_per_million": 156.732, + "new_deaths_per_million": 5.64, + "new_deaths_smoothed_per_million": 4.736, + "new_tests": 29541.0, + "total_tests": 1379043.0, + "total_tests_per_thousand": 27.102, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 27580.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 3.7560000000000002, + "positive_rate": 0.266, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-26", + "total_cases": 240795.0, + "new_cases": 7254.0, + "new_cases_smoothed": 7156.429, + "total_deaths": 8269.0, + "new_deaths": 294.0, + "new_deaths_smoothed": 250.429, + "total_cases_per_million": 4732.338, + "new_cases_per_million": 142.563, + "new_cases_smoothed_per_million": 140.645, + "total_deaths_per_million": 162.51, + "new_deaths_per_million": 5.778, + "new_deaths_smoothed_per_million": 4.922, + "new_tests": 30081.0, + "total_tests": 1409124.0, + "total_tests_per_thousand": 27.693, + "new_tests_per_thousand": 0.591, + "new_tests_smoothed": 28437.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 3.9739999999999998, + "positive_rate": 0.252, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-27", + "total_cases": 248976.0, + "new_cases": 8181.0, + "new_cases_smoothed": 7385.429, + "total_deaths": 8525.0, + "new_deaths": 256.0, + "new_deaths_smoothed": 255.571, + "total_cases_per_million": 4893.119, + "new_cases_per_million": 160.781, + "new_cases_smoothed_per_million": 145.146, + "total_deaths_per_million": 167.542, + "new_deaths_per_million": 5.031, + "new_deaths_smoothed_per_million": 5.023, + "new_tests": 30312.0, + "total_tests": 1439436.0, + "total_tests_per_thousand": 28.289, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 28986.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 3.925, + "positive_rate": 0.255, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-28", + "total_cases": 257101.0, + "new_cases": 8125.0, + "new_cases_smoothed": 7585.143, + "total_deaths": 8777.0, + "new_deaths": 252.0, + "new_deaths_smoothed": 264.0, + "total_cases_per_million": 5052.799, + "new_cases_per_million": 159.68, + "new_cases_smoothed_per_million": 149.071, + "total_deaths_per_million": 172.494, + "new_deaths_per_million": 4.953, + "new_deaths_smoothed_per_million": 5.188, + "new_tests": 31177.0, + "total_tests": 1470613.0, + "total_tests_per_thousand": 28.902, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 29559.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 3.897, + "positive_rate": 0.257, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-29", + "total_cases": 267385.0, + "new_cases": 10284.0, + "new_cases_smoothed": 8049.571, + "total_deaths": 9074.0, + "new_deaths": 297.0, + "new_deaths_smoothed": 272.571, + "total_cases_per_million": 5254.91, + "new_cases_per_million": 202.111, + "new_cases_smoothed_per_million": 158.198, + "total_deaths_per_million": 178.331, + "new_deaths_per_million": 5.837, + "new_deaths_smoothed_per_million": 5.357, + "new_tests": 32196.0, + "total_tests": 1502809.0, + "total_tests_per_thousand": 29.535, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 30044.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 3.7319999999999998, + "positive_rate": 0.268, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-30", + "total_cases": 276055.0, + "new_cases": 8670.0, + "new_cases_smoothed": 8232.429, + "total_deaths": 9454.0, + "new_deaths": 380.0, + "new_deaths_smoothed": 297.286, + "total_cases_per_million": 5425.302, + "new_cases_per_million": 170.391, + "new_cases_smoothed_per_million": 161.792, + "total_deaths_per_million": 185.799, + "new_deaths_per_million": 7.468, + "new_deaths_smoothed_per_million": 5.843, + "new_tests": 34880.0, + "total_tests": 1537689.0, + "total_tests_per_thousand": 30.22, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 30965.0, + "new_tests_smoothed_per_thousand": 0.609, + "tests_per_case": 3.761, + "positive_rate": 0.266, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-31", + "total_cases": 286020.0, + "new_cases": 9965.0, + "new_cases_smoothed": 8521.0, + "total_deaths": 9810.0, + "new_deaths": 356.0, + "new_deaths_smoothed": 303.143, + "total_cases_per_million": 5621.144, + "new_cases_per_million": 195.842, + "new_cases_smoothed_per_million": 167.463, + "total_deaths_per_million": 192.796, + "new_deaths_per_million": 6.996, + "new_deaths_smoothed_per_million": 5.958, + "new_tests": 35990.0, + "total_tests": 1573679.0, + "total_tests_per_thousand": 30.927, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 32025.0, + "new_tests_smoothed_per_thousand": 0.629, + "tests_per_case": 3.758, + "positive_rate": 0.266, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-01", + "total_cases": 295508.0, + "new_cases": 9488.0, + "new_cases_smoothed": 8852.429, + "total_deaths": 10105.0, + "new_deaths": 295.0, + "new_deaths_smoothed": 304.286, + "total_cases_per_million": 5807.611, + "new_cases_per_million": 186.467, + "new_cases_smoothed_per_million": 173.977, + "total_deaths_per_million": 198.593, + "new_deaths_per_million": 5.798, + "new_deaths_smoothed_per_million": 5.98, + "new_tests": 36050.0, + "total_tests": 1609729.0, + "total_tests_per_thousand": 31.636, + "new_tests_per_thousand": 0.708, + "new_tests_smoothed": 32955.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 3.7230000000000003, + "positive_rate": 0.26899999999999996, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-02", + "total_cases": 306181.0, + "new_cases": 10673.0, + "new_cases_smoothed": 9340.857, + "total_deaths": 10330.0, + "new_deaths": 225.0, + "new_deaths_smoothed": 294.429, + "total_cases_per_million": 6017.367, + "new_cases_per_million": 209.756, + "new_cases_smoothed_per_million": 183.576, + "total_deaths_per_million": 203.015, + "new_deaths_per_million": 4.422, + "new_deaths_smoothed_per_million": 5.786, + "new_tests": 37666.0, + "total_tests": 1647395.0, + "total_tests_per_thousand": 32.376, + "new_tests_per_thousand": 0.74, + "new_tests_smoothed": 34039.0, + "new_tests_smoothed_per_thousand": 0.669, + "tests_per_case": 3.6439999999999997, + "positive_rate": 0.27399999999999997, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-03", + "total_cases": 317651.0, + "new_cases": 11470.0, + "new_cases_smoothed": 9810.714, + "total_deaths": 10650.0, + "new_deaths": 320.0, + "new_deaths_smoothed": 303.571, + "total_cases_per_million": 6242.787, + "new_cases_per_million": 225.42, + "new_cases_smoothed_per_million": 192.81, + "total_deaths_per_million": 209.304, + "new_deaths_per_million": 6.289, + "new_deaths_smoothed_per_million": 5.966, + "new_tests": 38135.0, + "total_tests": 1685530.0, + "total_tests_per_thousand": 33.126, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 35156.0, + "new_tests_smoothed_per_thousand": 0.691, + "tests_per_case": 3.583, + "positive_rate": 0.27899999999999997, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-04", + "total_cases": 327850.0, + "new_cases": 10199.0, + "new_cases_smoothed": 10107.0, + "total_deaths": 11017.0, + "new_deaths": 367.0, + "new_deaths_smoothed": 320.0, + "total_cases_per_million": 6443.228, + "new_cases_per_million": 200.441, + "new_cases_smoothed_per_million": 198.633, + "total_deaths_per_million": 216.517, + "new_deaths_per_million": 7.213, + "new_deaths_smoothed_per_million": 6.289, + "new_tests": 37978.0, + "total_tests": 1723508.0, + "total_tests_per_thousand": 33.872, + "new_tests_per_thousand": 0.746, + "new_tests_smoothed": 36128.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 3.575, + "positive_rate": 0.28, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-05", + "total_cases": 334979.0, + "new_cases": 7129.0, + "new_cases_smoothed": 9656.286, + "total_deaths": 11315.0, + "new_deaths": 298.0, + "new_deaths_smoothed": 320.143, + "total_cases_per_million": 6583.334, + "new_cases_per_million": 140.106, + "new_cases_smoothed_per_million": 189.775, + "total_deaths_per_million": 222.373, + "new_deaths_per_million": 5.857, + "new_deaths_smoothed_per_million": 6.292, + "new_tests": 38264.0, + "total_tests": 1761772.0, + "total_tests_per_thousand": 34.624, + "new_tests_per_thousand": 0.752, + "new_tests_smoothed": 36995.0, + "new_tests_smoothed_per_thousand": 0.727, + "tests_per_case": 3.8310000000000004, + "positive_rate": 0.261, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-06", + "total_cases": 345714.0, + "new_cases": 10735.0, + "new_cases_smoothed": 9951.286, + "total_deaths": 11624.0, + "new_deaths": 309.0, + "new_deaths_smoothed": 310.0, + "total_cases_per_million": 6794.308, + "new_cases_per_million": 210.975, + "new_cases_smoothed_per_million": 195.572, + "total_deaths_per_million": 228.446, + "new_deaths_per_million": 6.073, + "new_deaths_smoothed_per_million": 6.092, + "new_tests": 40063.0, + "total_tests": 1801835.0, + "total_tests_per_thousand": 35.411, + "new_tests_per_thousand": 0.787, + "new_tests_smoothed": 37735.0, + "new_tests_smoothed_per_thousand": 0.742, + "tests_per_case": 3.792, + "positive_rate": 0.264, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-07", + "total_cases": 357710.0, + "new_cases": 11996.0, + "new_cases_smoothed": 10241.429, + "total_deaths": 11939.0, + "new_deaths": 315.0, + "new_deaths_smoothed": 304.143, + "total_cases_per_million": 7030.065, + "new_cases_per_million": 235.757, + "new_cases_smoothed_per_million": 201.275, + "total_deaths_per_million": 234.637, + "new_deaths_per_million": 6.191, + "new_deaths_smoothed_per_million": 5.977, + "new_tests": 40457.0, + "total_tests": 1842292.0, + "total_tests_per_thousand": 36.207, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 38373.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 3.747, + "positive_rate": 0.267, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-08", + "total_cases": 367196.0, + "new_cases": 9486.0, + "new_cases_smoothed": 10241.143, + "total_deaths": 12250.0, + "new_deaths": 311.0, + "new_deaths_smoothed": 306.429, + "total_cases_per_million": 7216.493, + "new_cases_per_million": 186.428, + "new_cases_smoothed_per_million": 201.269, + "total_deaths_per_million": 240.749, + "new_deaths_per_million": 6.112, + "new_deaths_smoothed_per_million": 6.022, + "new_tests": 35076.0, + "total_tests": 1877368.0, + "total_tests_per_thousand": 36.896, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 38234.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 3.733, + "positive_rate": 0.268, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-09", + "total_cases": 376870.0, + "new_cases": 9674.0, + "new_cases_smoothed": 10098.429, + "total_deaths": 12540.0, + "new_deaths": 290.0, + "new_deaths_smoothed": 315.714, + "total_cases_per_million": 7406.616, + "new_cases_per_million": 190.123, + "new_cases_smoothed_per_million": 198.464, + "total_deaths_per_million": 246.448, + "new_deaths_per_million": 5.699, + "new_deaths_smoothed_per_million": 6.205, + "new_tests": 31743.0, + "total_tests": 1909111.0, + "total_tests_per_thousand": 37.52, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 37388.0, + "new_tests_smoothed_per_thousand": 0.735, + "tests_per_case": 3.702, + "positive_rate": 0.27, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-10", + "total_cases": 387481.0, + "new_cases": 10611.0, + "new_cases_smoothed": 9975.714, + "total_deaths": 12842.0, + "new_deaths": 302.0, + "new_deaths_smoothed": 313.143, + "total_cases_per_million": 7615.154, + "new_cases_per_million": 208.538, + "new_cases_smoothed_per_million": 196.052, + "total_deaths_per_million": 252.383, + "new_deaths_per_million": 5.935, + "new_deaths_smoothed_per_million": 6.154, + "new_tests": 33619.0, + "total_tests": 1942730.0, + "total_tests_per_thousand": 38.18, + "new_tests_per_thousand": 0.661, + "new_tests_smoothed": 36743.0, + "new_tests_smoothed_per_thousand": 0.722, + "tests_per_case": 3.6830000000000003, + "positive_rate": 0.271, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-11", + "total_cases": 397623.0, + "new_cases": 10142.0, + "new_cases_smoothed": 9967.571, + "total_deaths": 13154.0, + "new_deaths": 312.0, + "new_deaths_smoothed": 305.286, + "total_cases_per_million": 7814.475, + "new_cases_per_million": 199.32, + "new_cases_smoothed_per_million": 195.892, + "total_deaths_per_million": 258.515, + "new_deaths_per_million": 6.132, + "new_deaths_smoothed_per_million": 6.0, + "new_tests": 40101.0, + "total_tests": 1982831.0, + "total_tests_per_thousand": 38.969, + "new_tests_per_thousand": 0.788, + "new_tests_smoothed": 37046.0, + "new_tests_smoothed_per_thousand": 0.728, + "tests_per_case": 3.717, + "positive_rate": 0.26899999999999996, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-12", + "total_cases": 410453.0, + "new_cases": 12830.0, + "new_cases_smoothed": 10782.0, + "total_deaths": 13475.0, + "new_deaths": 321.0, + "new_deaths_smoothed": 308.571, + "total_cases_per_million": 8066.622, + "new_cases_per_million": 252.148, + "new_cases_smoothed_per_million": 211.898, + "total_deaths_per_million": 264.824, + "new_deaths_per_million": 6.309, + "new_deaths_smoothed_per_million": 6.064, + "new_tests": 40425.0, + "total_tests": 2023256.0, + "total_tests_per_thousand": 39.763, + "new_tests_per_thousand": 0.794, + "new_tests_smoothed": 37355.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 3.465, + "positive_rate": 0.289, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-13", + "total_cases": 422519.0, + "new_cases": 12066.0, + "new_cases_smoothed": 10972.143, + "total_deaths": 13837.0, + "new_deaths": 362.0, + "new_deaths_smoothed": 316.143, + "total_cases_per_million": 8303.755, + "new_cases_per_million": 237.133, + "new_cases_smoothed_per_million": 215.635, + "total_deaths_per_million": 271.938, + "new_deaths_per_million": 7.114, + "new_deaths_smoothed_per_million": 6.213, + "new_tests": 40076.0, + "total_tests": 2063332.0, + "total_tests_per_thousand": 40.551, + "new_tests_per_thousand": 0.788, + "new_tests_smoothed": 37357.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 3.405, + "positive_rate": 0.294, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-14", + "total_cases": 433805.0, + "new_cases": 11286.0, + "new_cases_smoothed": 10870.714, + "total_deaths": 14145.0, + "new_deaths": 308.0, + "new_deaths_smoothed": 315.143, + "total_cases_per_million": 8525.558, + "new_cases_per_million": 221.803, + "new_cases_smoothed_per_million": 213.642, + "total_deaths_per_million": 277.991, + "new_deaths_per_million": 6.053, + "new_deaths_smoothed_per_million": 6.193, + "new_tests": 41434.0, + "total_tests": 2104766.0, + "total_tests_per_thousand": 41.365, + "new_tests_per_thousand": 0.814, + "new_tests_smoothed": 37496.0, + "new_tests_smoothed_per_thousand": 0.737, + "tests_per_case": 3.449, + "positive_rate": 0.29, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-15", + "total_cases": 445111.0, + "new_cases": 11306.0, + "new_cases_smoothed": 11130.714, + "total_deaths": 14492.0, + "new_deaths": 347.0, + "new_deaths_smoothed": 320.286, + "total_cases_per_million": 8747.755, + "new_cases_per_million": 222.197, + "new_cases_smoothed_per_million": 218.752, + "total_deaths_per_million": 284.811, + "new_deaths_per_million": 6.82, + "new_deaths_smoothed_per_million": 6.295, + "new_tests": 38331.0, + "total_tests": 2143097.0, + "total_tests_per_thousand": 42.118, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 37961.0, + "new_tests_smoothed_per_thousand": 0.746, + "tests_per_case": 3.41, + "positive_rate": 0.293, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-16", + "total_cases": 456689.0, + "new_cases": 11578.0, + "new_cases_smoothed": 11402.714, + "total_deaths": 14810.0, + "new_deaths": 318.0, + "new_deaths_smoothed": 324.286, + "total_cases_per_million": 8975.297, + "new_cases_per_million": 227.542, + "new_cases_smoothed_per_million": 224.097, + "total_deaths_per_million": 291.061, + "new_deaths_per_million": 6.25, + "new_deaths_smoothed_per_million": 6.373, + "new_tests": 34892.0, + "total_tests": 2177989.0, + "total_tests_per_thousand": 42.804, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 38411.0, + "new_tests_smoothed_per_thousand": 0.755, + "tests_per_case": 3.3689999999999998, + "positive_rate": 0.297, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-17", + "total_cases": 468332.0, + "new_cases": 11643.0, + "new_cases_smoothed": 11550.143, + "total_deaths": 15097.0, + "new_deaths": 287.0, + "new_deaths_smoothed": 322.143, + "total_cases_per_million": 9204.117, + "new_cases_per_million": 228.82, + "new_cases_smoothed_per_million": 226.995, + "total_deaths_per_million": 296.701, + "new_deaths_per_million": 5.64, + "new_deaths_smoothed_per_million": 6.331, + "new_tests": 32723.0, + "total_tests": 2210712.0, + "total_tests_per_thousand": 43.447, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 38283.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 3.315, + "positive_rate": 0.302, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-18", + "total_cases": 476660.0, + "new_cases": 8328.0, + "new_cases_smoothed": 11291.0, + "total_deaths": 15372.0, + "new_deaths": 275.0, + "new_deaths_smoothed": 316.857, + "total_cases_per_million": 9367.787, + "new_cases_per_million": 163.67, + "new_cases_smoothed_per_million": 221.902, + "total_deaths_per_million": 302.106, + "new_deaths_per_million": 5.405, + "new_deaths_smoothed_per_million": 6.227, + "new_tests": 35883.0, + "total_tests": 2246595.0, + "total_tests_per_thousand": 44.152, + "new_tests_per_thousand": 0.705, + "new_tests_smoothed": 37681.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 3.3369999999999997, + "positive_rate": 0.3, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-19", + "total_cases": 489122.0, + "new_cases": 12462.0, + "new_cases_smoothed": 11238.429, + "total_deaths": 15619.0, + "new_deaths": 247.0, + "new_deaths_smoothed": 306.286, + "total_cases_per_million": 9612.702, + "new_cases_per_million": 244.915, + "new_cases_smoothed_per_million": 220.869, + "total_deaths_per_million": 306.96, + "new_deaths_per_million": 4.854, + "new_deaths_smoothed_per_million": 6.019, + "new_tests": 30920.0, + "total_tests": 2277515.0, + "total_tests_per_thousand": 44.76, + "new_tests_per_thousand": 0.608, + "new_tests_smoothed": 36323.0, + "new_tests_smoothed_per_thousand": 0.714, + "tests_per_case": 3.2319999999999998, + "positive_rate": 0.309, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-20", + "total_cases": 502178.0, + "new_cases": 13056.0, + "new_cases_smoothed": 11379.857, + "total_deaths": 15979.0, + "new_deaths": 360.0, + "new_deaths_smoothed": 306.0, + "total_cases_per_million": 9869.291, + "new_cases_per_million": 256.589, + "new_cases_smoothed_per_million": 223.648, + "total_deaths_per_million": 314.035, + "new_deaths_per_million": 7.075, + "new_deaths_smoothed_per_million": 6.014, + "new_tests": 31932.0, + "total_tests": 2309447.0, + "total_tests_per_thousand": 45.388, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 35159.0, + "new_tests_smoothed_per_thousand": 0.691, + "tests_per_case": 3.09, + "positive_rate": 0.324, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-21", + "total_cases": 513719.0, + "new_cases": 11541.0, + "new_cases_smoothed": 11416.286, + "total_deaths": 16183.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 291.143, + "total_cases_per_million": 10096.106, + "new_cases_per_million": 226.815, + "new_cases_smoothed_per_million": 224.364, + "total_deaths_per_million": 318.044, + "new_deaths_per_million": 4.009, + "new_deaths_smoothed_per_million": 5.722, + "new_tests": 30654.0, + "total_tests": 2340101.0, + "total_tests_per_thousand": 45.99, + "new_tests_per_thousand": 0.602, + "new_tests_smoothed": 33619.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 2.945, + "positive_rate": 0.34, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-22", + "total_cases": 522138.0, + "new_cases": 8419.0, + "new_cases_smoothed": 11003.857, + "total_deaths": 16568.0, + "new_deaths": 385.0, + "new_deaths_smoothed": 296.571, + "total_cases_per_million": 10261.565, + "new_cases_per_million": 165.458, + "new_cases_smoothed_per_million": 216.259, + "total_deaths_per_million": 325.61, + "new_deaths_per_million": 7.566, + "new_deaths_smoothed_per_million": 5.829, + "new_tests": 33967.0, + "total_tests": 2374068.0, + "total_tests_per_thousand": 46.657, + "new_tests_per_thousand": 0.668, + "new_tests_smoothed": 32996.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 2.9989999999999997, + "positive_rate": 0.33299999999999996, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-23", + "total_cases": 533103.0, + "new_cases": 10965.0, + "new_cases_smoothed": 10916.286, + "total_deaths": 16968.0, + "new_deaths": 400.0, + "new_deaths_smoothed": 308.286, + "total_cases_per_million": 10477.059, + "new_cases_per_million": 215.495, + "new_cases_smoothed_per_million": 214.537, + "total_deaths_per_million": 333.472, + "new_deaths_per_million": 7.861, + "new_deaths_smoothed_per_million": 6.059, + "new_tests": 22824.0, + "total_tests": 2396892.0, + "total_tests_per_thousand": 47.106, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 31272.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 2.865, + "positive_rate": 0.349, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-24", + "total_cases": 541147.0, + "new_cases": 8044.0, + "new_cases_smoothed": 10402.143, + "total_deaths": 17316.0, + "new_deaths": 348.0, + "new_deaths_smoothed": 317.0, + "total_cases_per_million": 10635.148, + "new_cases_per_million": 158.089, + "new_cases_smoothed_per_million": 204.433, + "total_deaths_per_million": 340.311, + "new_deaths_per_million": 6.839, + "new_deaths_smoothed_per_million": 6.23, + "new_tests": 31049.0, + "total_tests": 2427941.0, + "total_tests_per_thousand": 47.716, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 31033.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 2.983, + "positive_rate": 0.335, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-25", + "total_cases": 551696.0, + "new_cases": 10549.0, + "new_cases_smoothed": 10719.429, + "total_deaths": 17612.0, + "new_deaths": 296.0, + "new_deaths_smoothed": 320.0, + "total_cases_per_million": 10842.467, + "new_cases_per_million": 207.319, + "new_cases_smoothed_per_million": 210.669, + "total_deaths_per_million": 346.128, + "new_deaths_per_million": 5.817, + "new_deaths_smoothed_per_million": 6.289, + "new_tests": 30925.0, + "total_tests": 2458866.0, + "total_tests_per_thousand": 48.324, + "new_tests_per_thousand": 0.608, + "new_tests_smoothed": 30324.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 2.8289999999999997, + "positive_rate": 0.353, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-26", + "total_cases": 562128.0, + "new_cases": 10432.0, + "new_cases_smoothed": 10429.429, + "total_deaths": 17889.0, + "new_deaths": 277.0, + "new_deaths_smoothed": 324.286, + "total_cases_per_million": 11047.487, + "new_cases_per_million": 205.02, + "new_cases_smoothed_per_million": 204.969, + "total_deaths_per_million": 351.572, + "new_deaths_per_million": 5.444, + "new_deaths_smoothed_per_million": 6.373, + "new_tests": 30564.0, + "total_tests": 2489430.0, + "total_tests_per_thousand": 48.925, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 30274.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 2.903, + "positive_rate": 0.345, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-27", + "total_cases": 572270.0, + "new_cases": 10142.0, + "new_cases_smoothed": 10013.143, + "total_deaths": 18184.0, + "new_deaths": 295.0, + "new_deaths_smoothed": 315.0, + "total_cases_per_million": 11246.807, + "new_cases_per_million": 199.32, + "new_cases_smoothed_per_million": 196.788, + "total_deaths_per_million": 357.37, + "new_deaths_per_million": 5.798, + "new_deaths_smoothed_per_million": 6.191, + "new_tests": 30079.0, + "total_tests": 2519509.0, + "total_tests_per_thousand": 49.516, + "new_tests_per_thousand": 0.591, + "new_tests_smoothed": 30009.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 2.997, + "positive_rate": 0.33399999999999996, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-08-28", + "total_cases": 582022.0, + "new_cases": 9752.0, + "new_cases_smoothed": 9757.571, + "total_deaths": 18468.0, + "new_deaths": 284.0, + "new_deaths_smoothed": 326.429, + "total_cases_per_million": 11438.463, + "new_cases_per_million": 191.656, + "new_cases_smoothed_per_million": 191.765, + "total_deaths_per_million": 362.951, + "new_deaths_per_million": 5.581, + "new_deaths_smoothed_per_million": 6.415, + "new_tests": 28349.0, + "total_tests": 2547858.0, + "total_tests_per_thousand": 50.073, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 29680.0, + "new_tests_smoothed_per_thousand": 0.583, + "tests_per_case": 3.042, + "positive_rate": 0.32899999999999996, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 590520.0, + "new_cases": 8498.0, + "new_cases_smoothed": 9768.857, + "total_deaths": 18767.0, + "new_deaths": 299.0, + "new_deaths_smoothed": 314.143, + "total_cases_per_million": 11605.474, + "new_cases_per_million": 167.011, + "new_cases_smoothed_per_million": 191.987, + "total_deaths_per_million": 368.827, + "new_deaths_per_million": 5.876, + "new_deaths_smoothed_per_million": 6.174, + "new_tests": 24966.0, + "total_tests": 2572824.0, + "total_tests_per_thousand": 50.564, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 28394.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 2.907, + "positive_rate": 0.344, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 599914.0, + "new_cases": 9394.0, + "new_cases_smoothed": 9544.429, + "total_deaths": 19064.0, + "new_deaths": 297.0, + "new_deaths_smoothed": 299.429, + "total_cases_per_million": 11790.094, + "new_cases_per_million": 184.62, + "new_cases_smoothed_per_million": 187.576, + "total_deaths_per_million": 374.664, + "new_deaths_per_million": 5.837, + "new_deaths_smoothed_per_million": 5.885, + "new_tests": 26879.0, + "total_tests": 2599703.0, + "total_tests_per_thousand": 51.092, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 28973.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 3.036, + "positive_rate": 0.32899999999999996, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 607938.0, + "new_cases": 8024.0, + "new_cases_smoothed": 9541.571, + "total_deaths": 19364.0, + "new_deaths": 300.0, + "new_deaths_smoothed": 292.571, + "total_cases_per_million": 11947.79, + "new_cases_per_million": 157.695, + "new_cases_smoothed_per_million": 187.52, + "total_deaths_per_million": 380.56, + "new_deaths_per_million": 5.896, + "new_deaths_smoothed_per_million": 5.75, + "new_tests": 25349.0, + "total_tests": 2625052.0, + "total_tests_per_thousand": 51.59, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 28159.0, + "new_tests_smoothed_per_thousand": 0.553, + "tests_per_case": 2.951, + "positive_rate": 0.33899999999999997, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 615168.0, + "new_cases": 7230.0, + "new_cases_smoothed": 9067.429, + "total_deaths": 19663.0, + "new_deaths": 299.0, + "new_deaths_smoothed": 293.0, + "total_cases_per_million": 12089.881, + "new_cases_per_million": 142.091, + "new_cases_smoothed_per_million": 178.202, + "total_deaths_per_million": 386.436, + "new_deaths_per_million": 5.876, + "new_deaths_smoothed_per_million": 5.758, + "new_tests": 22650.0, + "total_tests": 2647702.0, + "total_tests_per_thousand": 52.035, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 26977.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 2.975, + "positive_rate": 0.336, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 624069.0, + "new_cases": 8901.0, + "new_cases_smoothed": 8848.714, + "total_deaths": 20052.0, + "new_deaths": 389.0, + "new_deaths_smoothed": 309.0, + "total_cases_per_million": 12264.812, + "new_cases_per_million": 174.931, + "new_cases_smoothed_per_million": 173.904, + "total_deaths_per_million": 394.081, + "new_deaths_per_million": 7.645, + "new_deaths_smoothed_per_million": 6.073, + "new_tests": 28452.0, + "total_tests": 2676154.0, + "total_tests_per_thousand": 52.594, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 26675.0, + "new_tests_smoothed_per_thousand": 0.524, + "tests_per_case": 3.015, + "positive_rate": 0.332, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 633339.0, + "new_cases": 9270.0, + "new_cases_smoothed": 8724.143, + "total_deaths": 20348.0, + "new_deaths": 296.0, + "new_deaths_smoothed": 309.143, + "total_cases_per_million": 12446.995, + "new_cases_per_million": 182.183, + "new_cases_smoothed_per_million": 171.455, + "total_deaths_per_million": 399.899, + "new_deaths_per_million": 5.817, + "new_deaths_smoothed_per_million": 6.076, + "new_tests": 23735.0, + "total_tests": 2699889.0, + "total_tests_per_thousand": 53.061, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 25769.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 2.9539999999999997, + "positive_rate": 0.33899999999999997, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 641574.0, + "new_cases": 8235.0, + "new_cases_smoothed": 8507.429, + "total_deaths": 20618.0, + "new_deaths": 270.0, + "new_deaths_smoothed": 307.143, + "total_cases_per_million": 12608.837, + "new_cases_per_million": 161.842, + "new_cases_smoothed_per_million": 167.196, + "total_deaths_per_million": 405.205, + "new_deaths_per_million": 5.306, + "new_deaths_smoothed_per_million": 6.036 + }, + { + "date": "2020-09-05", + "total_cases": 650062.0, + "new_cases": 8488.0, + "new_cases_smoothed": 8506.0, + "total_deaths": 20888.0, + "new_deaths": 270.0, + "new_deaths_smoothed": 303.0, + "total_cases_per_million": 12775.652, + "new_cases_per_million": 166.814, + "new_cases_smoothed_per_million": 167.168, + "total_deaths_per_million": 410.511, + "new_deaths_per_million": 5.306, + "new_deaths_smoothed_per_million": 5.955 + } + ] + }, + "COM": { + "continent": "Africa", + "location": "Comoros", + "population": 869595.0, + "population_density": 437.352, + "median_age": 20.4, + "aged_65_older": 2.963, + "aged_70_older": 1.726, + "gdp_per_capita": 1413.89, + "extreme_poverty": 18.1, + "cardiovasc_death_rate": 261.516, + "diabetes_prevalence": 11.88, + "female_smokers": 4.4, + "male_smokers": 23.6, + "handwashing_facilities": 15.574, + "hospital_beds_per_thousand": 2.2, + "life_expectancy": 64.32, + "data": [ + { + "date": "2020-05-02", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.15, + "new_cases_per_million": 1.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.15, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.45, + "new_cases_per_million": 2.3, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 4.6, + "new_cases_per_million": 1.15, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 1.15 + }, + { + "date": "2020-05-06", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 4.6, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 8.0, + "new_cases": 4.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 9.2, + "new_cases_per_million": 4.6, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-10", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.65, + "new_cases_per_million": 3.45, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 34.0, + "new_cases": 23.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.099, + "new_cases_per_million": 26.449, + "new_cases_smoothed_per_million": 3.778, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.778, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.778, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 78.0, + "new_cases": 44.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.697, + "new_cases_per_million": 50.598, + "new_cases_smoothed_per_million": 11.007, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.697, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.007, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 87.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.047, + "new_cases_per_million": 10.35, + "new_cases_smoothed_per_million": 12.485, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.485, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.707, + "total_deaths_per_million": 1.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.707, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 1.15, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-29", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.707, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-30", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.479, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-05-31", + "total_cases": 106.0, + "new_cases": 19.0, + "new_cases_smoothed": 4.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 121.896, + "new_cases_per_million": 21.849, + "new_cases_smoothed_per_million": 4.6, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-01", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 121.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.121, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-02", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 121.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.121, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-03", + "total_cases": 132.0, + "new_cases": 26.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 151.795, + "new_cases_per_million": 29.899, + "new_cases_smoothed_per_million": 7.393, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-04", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 151.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.393, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 151.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.393, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 151.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.393, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 141.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.144, + "new_cases_per_million": 10.35, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 162.0, + "new_cases": 21.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.294, + "new_cases_per_million": 24.149, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 162.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 162.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 162.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 176.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.393, + "new_cases_per_million": 16.099, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.393, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.393, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 2.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 197.0, + "new_cases": 21.0, + "new_cases_smoothed": 5.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 226.542, + "new_cases_per_million": 24.149, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 3.45, + "new_deaths_per_million": 1.15, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-18", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 226.542, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.75, + "total_deaths_per_million": 3.45, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164 + }, + { + "date": "2020-06-19", + "total_cases": 210.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 241.492, + "new_cases_per_million": 14.949, + "new_cases_smoothed_per_million": 7.885, + "total_deaths_per_million": 5.75, + "new_deaths_per_million": 2.3, + "new_deaths_smoothed_per_million": 0.493 + }, + { + "date": "2020-06-20", + "total_cases": 210.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 241.492, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.885, + "total_deaths_per_million": 5.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493 + }, + { + "date": "2020-06-21", + "total_cases": 247.0, + "new_cases": 37.0, + "new_cases_smoothed": 10.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 284.04, + "new_cases_per_million": 42.549, + "new_cases_smoothed_per_million": 11.664, + "total_deaths_per_million": 5.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493 + }, + { + "date": "2020-06-22", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.664, + "total_deaths_per_million": 5.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493 + }, + { + "date": "2020-06-23", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.664, + "total_deaths_per_million": 5.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493 + }, + { + "date": "2020-06-24", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.214, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 2.3, + "new_deaths_smoothed_per_million": 0.657 + }, + { + "date": "2020-06-25", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.214, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.657 + }, + { + "date": "2020-06-26", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.078, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-06-27", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.078, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-06-28", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 284.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-06-29", + "total_cases": 272.0, + "new_cases": 25.0, + "new_cases_smoothed": 3.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 312.789, + "new_cases_per_million": 28.749, + "new_cases_smoothed_per_million": 4.107, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-06-30", + "total_cases": 272.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 312.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.107, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-07-01", + "total_cases": 303.0, + "new_cases": 31.0, + "new_cases_smoothed": 8.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.438, + "new_cases_per_million": 35.649, + "new_cases_smoothed_per_million": 9.2, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 303.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.2, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 303.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.2, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 309.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 355.338, + "new_cases_per_million": 6.9, + "new_cases_smoothed_per_million": 10.185, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 309.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 355.338, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.185, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 311.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 357.638, + "new_cases_per_million": 2.3, + "new_cases_smoothed_per_million": 6.407, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 311.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 357.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.407, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 313.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 359.938, + "new_cases_per_million": 2.3, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 359.938, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 359.938, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 359.938, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 317.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.538, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 317.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 317.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 317.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 321.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 369.137, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 328.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.187, + "new_cases_per_million": 8.05, + "new_cases_smoothed_per_million": 2.464, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.464, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 334.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 384.087, + "new_cases_per_million": 6.9, + "new_cases_smoothed_per_million": 2.793, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 384.087, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.793, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 337.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.537, + "new_cases_per_million": 3.45, + "new_cases_smoothed_per_million": 3.286, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.537, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.628, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 340.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 3.45, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 390.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 378.0, + "new_cases": 38.0, + "new_cases_smoothed": 5.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 434.685, + "new_cases_per_million": 43.699, + "new_cases_smoothed_per_million": 6.735, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 378.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 434.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.243, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 382.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 439.285, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 6.9, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 386.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 443.885, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 7.557, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 386.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 443.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.557, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 386.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 443.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.557, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 388.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 446.185, + "new_cases_per_million": 2.3, + "new_cases_smoothed_per_million": 7.885, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 388.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 446.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 396.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 455.384, + "new_cases_per_million": 9.2, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 396.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 455.384, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.3, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 399.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 3.45, + "new_cases_smoothed_per_million": 2.136, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.136, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.136, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 399.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 403.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 463.434, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 405.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 465.734, + "new_cases_per_million": 2.3, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 405.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 465.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 405.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 465.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 405.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 465.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 406.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 466.884, + "new_cases_per_million": 1.15, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 406.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 466.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 406.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 466.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 417.0, + "new_cases": 11.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 12.65, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 417.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 417.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 417.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 417.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 417.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 479.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 422.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 485.283, + "new_cases_per_million": 5.75, + "new_cases_smoothed_per_million": 2.628, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 423.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 486.433, + "new_cases_per_million": 1.15, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 423.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 486.433, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 423.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 486.433, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 427.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 491.033, + "new_cases_per_million": 4.6, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 448.0, + "new_cases": 21.0, + "new_cases_smoothed": 4.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.182, + "new_cases_per_million": 24.149, + "new_cases_smoothed_per_million": 5.093, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 448.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.093, + "total_deaths_per_million": 8.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "COG": { + "continent": "Africa", + "location": "Congo", + "population": 5518092.0, + "population_density": 15.405, + "median_age": 19.0, + "aged_65_older": 3.402, + "aged_70_older": 2.063, + "gdp_per_capita": 4881.406, + "extreme_poverty": 37.0, + "cardiovasc_death_rate": 344.094, + "diabetes_prevalence": 7.2, + "female_smokers": 1.7, + "male_smokers": 52.3, + "handwashing_facilities": 47.964, + "life_expectancy": 64.57, + "data": [ + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.181, + "new_cases_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.181, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.181, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.362, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-22", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.181, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-23", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-27", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-28", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-29", + "total_cases": 19.0, + "new_cases": 15.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.443, + "new_cases_per_million": 2.718, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.443, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-03-31", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.443, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-01", + "total_cases": 22.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.987, + "new_cases_per_million": 0.544, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-02", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-03", + "total_cases": 41.0, + "new_cases": 19.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.43, + "new_cases_per_million": 3.443, + "new_cases_smoothed_per_million": 0.958, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-04-04", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.958, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-04-05", + "total_cases": 45.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.155, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-04-06", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-04-07", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-04-08", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.595, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-04-09", + "total_cases": 60.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.873, + "new_cases_per_million": 2.718, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-04-10", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-11", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-12", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-13", + "total_cases": 70.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.686, + "new_cases_per_million": 1.812, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-14", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-15", + "total_cases": 74.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.41, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-16", + "total_cases": 117.0, + "new_cases": 43.0, + "new_cases_smoothed": 8.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.203, + "new_cases_per_million": 7.793, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-17", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 0.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-18", + "total_cases": 143.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.915, + "new_cases_per_million": 4.712, + "new_cases_smoothed_per_million": 2.149, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-19", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.915, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.149, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-20", + "total_cases": 160.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.996, + "new_cases_per_million": 3.081, + "new_cases_smoothed_per_million": 2.33, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-21", + "total_cases": 160.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.996, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.33, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-22", + "total_cases": 165.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.902, + "new_cases_per_million": 0.906, + "new_cases_smoothed_per_million": 2.356, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-23", + "total_cases": 186.0, + "new_cases": 21.0, + "new_cases_smoothed": 9.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.707, + "new_cases_per_million": 3.806, + "new_cases_smoothed_per_million": 1.786, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-24", + "total_cases": 186.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.707, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.786, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-04-25", + "total_cases": 200.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.244, + "new_cases_per_million": 2.537, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-04-26", + "total_cases": 200.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.244, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-27", + "total_cases": 200.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.244, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.036, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-28", + "total_cases": 207.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.513, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 1.217, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-29", + "total_cases": 207.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.087, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-04-30", + "total_cases": 220.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.869, + "new_cases_per_million": 2.356, + "new_cases_smoothed_per_million": 0.88, + "total_deaths_per_million": 1.631, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-05-01", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.88, + "total_deaths_per_million": 1.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 97.22 + }, + { + "date": "2020-05-02", + "total_cases": 229.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.5, + "new_cases_per_million": 1.631, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 97.22 + }, + { + "date": "2020-05-03", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 41.5, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-05-04", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 41.5, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-05-05", + "total_cases": 236.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 42.768, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-05-06", + "total_cases": 236.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 42.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 97.22 + }, + { + "date": "2020-05-07", + "total_cases": 264.0, + "new_cases": 28.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 47.843, + "new_cases_per_million": 5.074, + "new_cases_smoothed_per_million": 1.139, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-05-08", + "total_cases": 274.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.655, + "new_cases_per_million": 1.812, + "new_cases_smoothed_per_million": 1.398, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-05-09", + "total_cases": 287.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.011, + "new_cases_per_million": 2.356, + "new_cases_smoothed_per_million": 1.502, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-05-10", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.502, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-05-11", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.502, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-05-12", + "total_cases": 333.0, + "new_cases": 46.0, + "new_cases_smoothed": 13.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.347, + "new_cases_per_million": 8.336, + "new_cases_smoothed_per_million": 2.511, + "total_deaths_per_million": 1.993, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-05-13", + "total_cases": 333.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.347, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.511, + "total_deaths_per_million": 1.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-05-14", + "total_cases": 341.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.797, + "new_cases_per_million": 1.45, + "new_cases_smoothed_per_million": 1.993, + "total_deaths_per_million": 1.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 97.22 + }, + { + "date": "2020-05-15", + "total_cases": 391.0, + "new_cases": 50.0, + "new_cases_smoothed": 16.714, + "total_deaths": 15.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 70.858, + "new_cases_per_million": 9.061, + "new_cases_smoothed_per_million": 3.029, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.725, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-05-16", + "total_cases": 391.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 70.858, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.692, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-05-17", + "total_cases": 412.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 74.663, + "new_cases_per_million": 3.806, + "new_cases_smoothed_per_million": 3.236, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 97.22 + }, + { + "date": "2020-05-18", + "total_cases": 412.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 74.663, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.236, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 82.41 + }, + { + "date": "2020-05-19", + "total_cases": 412.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.663, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-05-20", + "total_cases": 420.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 76.113, + "new_cases_per_million": 1.45, + "new_cases_smoothed_per_million": 2.252, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-05-21", + "total_cases": 420.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 76.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 2.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 469.0, + "new_cases": 49.0, + "new_cases_smoothed": 11.143, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.993, + "new_cases_per_million": 8.88, + "new_cases_smoothed_per_million": 2.019, + "total_deaths_per_million": 2.9, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 82.41 + }, + { + "date": "2020-05-23", + "total_cases": 469.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.019, + "total_deaths_per_million": 2.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 82.41 + }, + { + "date": "2020-05-24", + "total_cases": 487.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.255, + "new_cases_per_million": 3.262, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 2.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 82.41 + }, + { + "date": "2020-05-25", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 2.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 82.41 + }, + { + "date": "2020-05-26", + "total_cases": 531.0, + "new_cases": 44.0, + "new_cases_smoothed": 17.0, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 96.229, + "new_cases_per_million": 7.974, + "new_cases_smoothed_per_million": 3.081, + "total_deaths_per_million": 3.081, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 82.41 + }, + { + "date": "2020-05-27", + "total_cases": 569.0, + "new_cases": 38.0, + "new_cases_smoothed": 21.286, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 103.115, + "new_cases_per_million": 6.886, + "new_cases_smoothed_per_million": 3.857, + "total_deaths_per_million": 3.443, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-05-28", + "total_cases": 571.0, + "new_cases": 2.0, + "new_cases_smoothed": 21.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 103.478, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 3.909, + "total_deaths_per_million": 3.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-05-29", + "total_cases": 571.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 103.478, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.641, + "total_deaths_per_million": 3.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 82.41 + }, + { + "date": "2020-05-30", + "total_cases": 587.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 106.377, + "new_cases_per_million": 2.9, + "new_cases_smoothed_per_million": 3.055, + "total_deaths_per_million": 3.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 82.41 + }, + { + "date": "2020-05-31", + "total_cases": 587.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 106.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.589, + "total_deaths_per_million": 3.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 82.41 + }, + { + "date": "2020-06-01", + "total_cases": 611.0, + "new_cases": 24.0, + "new_cases_smoothed": 17.714, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 110.727, + "new_cases_per_million": 4.349, + "new_cases_smoothed_per_million": 3.21, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 82.41 + }, + { + "date": "2020-06-02", + "total_cases": 611.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 110.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.071, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-03", + "total_cases": 611.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 110.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.087, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-06-04", + "total_cases": 618.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 111.995, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 1.217, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-06-05", + "total_cases": 635.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 115.076, + "new_cases_per_million": 3.081, + "new_cases_smoothed_per_million": 1.657, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 639.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 115.801, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 1.346, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 683.0, + "new_cases": 44.0, + "new_cases_smoothed": 13.714, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 123.775, + "new_cases_per_million": 7.974, + "new_cases_smoothed_per_million": 2.485, + "total_deaths_per_million": 3.987, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 683.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 3.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-06-09", + "total_cases": 683.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 3.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-06-10", + "total_cases": 728.0, + "new_cases": 45.0, + "new_cases_smoothed": 16.714, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 131.93, + "new_cases_per_million": 8.155, + "new_cases_smoothed_per_million": 3.029, + "total_deaths_per_million": 4.349, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-06-11", + "total_cases": 745.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.143, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 135.01, + "new_cases_per_million": 3.081, + "new_cases_smoothed_per_million": 3.288, + "total_deaths_per_million": 4.531, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 73.15 + }, + { + "date": "2020-06-12", + "total_cases": 745.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 135.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.848, + "total_deaths_per_million": 4.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 73.15 + }, + { + "date": "2020-06-13", + "total_cases": 745.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 135.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.744, + "total_deaths_per_million": 4.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 73.15 + }, + { + "date": "2020-06-14", + "total_cases": 779.0, + "new_cases": 34.0, + "new_cases_smoothed": 13.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 141.172, + "new_cases_per_million": 6.162, + "new_cases_smoothed_per_million": 2.485, + "total_deaths_per_million": 4.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-15", + "total_cases": 779.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 141.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.485, + "total_deaths_per_million": 4.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-16", + "total_cases": 883.0, + "new_cases": 104.0, + "new_cases_smoothed": 28.571, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 160.019, + "new_cases_per_million": 18.847, + "new_cases_smoothed_per_million": 5.178, + "total_deaths_per_million": 4.893, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 73.15 + }, + { + "date": "2020-06-17", + "total_cases": 883.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 160.019, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.013, + "total_deaths_per_million": 4.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-18", + "total_cases": 883.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 160.019, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.573, + "total_deaths_per_million": 4.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-06-19", + "total_cases": 883.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 160.019, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.573, + "total_deaths_per_million": 4.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-06-20", + "total_cases": 883.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 160.019, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.573, + "total_deaths_per_million": 4.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-06-21", + "total_cases": 1013.0, + "new_cases": 130.0, + "new_cases_smoothed": 33.429, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 183.578, + "new_cases_per_million": 23.559, + "new_cases_smoothed_per_million": 6.058, + "total_deaths_per_million": 5.074, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-22", + "total_cases": 1013.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 183.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.058, + "total_deaths_per_million": 5.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-06-23", + "total_cases": 1087.0, + "new_cases": 74.0, + "new_cases_smoothed": 29.143, + "total_deaths": 37.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 196.988, + "new_cases_per_million": 13.41, + "new_cases_smoothed_per_million": 5.281, + "total_deaths_per_million": 6.705, + "new_deaths_per_million": 1.631, + "new_deaths_smoothed_per_million": 0.259, + "stringency_index": 73.15 + }, + { + "date": "2020-06-24", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 196.988, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.281, + "total_deaths_per_million": 6.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.259, + "stringency_index": 73.15 + }, + { + "date": "2020-06-25", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 196.988, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.281, + "total_deaths_per_million": 6.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.259, + "stringency_index": 73.15 + }, + { + "date": "2020-06-26", + "total_cases": 1204.0, + "new_cases": 117.0, + "new_cases_smoothed": 45.857, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 218.191, + "new_cases_per_million": 21.203, + "new_cases_smoothed_per_million": 8.31, + "total_deaths_per_million": 6.886, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.285, + "stringency_index": 73.15 + }, + { + "date": "2020-06-27", + "total_cases": 1204.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.857, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 218.191, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.31, + "total_deaths_per_million": 6.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.285, + "stringency_index": 73.15 + }, + { + "date": "2020-06-28", + "total_cases": 1245.0, + "new_cases": 41.0, + "new_cases_smoothed": 33.143, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 225.621, + "new_cases_per_million": 7.43, + "new_cases_smoothed_per_million": 6.006, + "total_deaths_per_million": 7.249, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 73.15 + }, + { + "date": "2020-06-29", + "total_cases": 1245.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 225.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.006, + "total_deaths_per_million": 7.249, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 73.15 + }, + { + "date": "2020-06-30", + "total_cases": 1245.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 225.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.09, + "total_deaths_per_million": 7.249, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-01", + "total_cases": 1245.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 225.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.09, + "total_deaths_per_million": 7.249, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-02", + "total_cases": 1382.0, + "new_cases": 137.0, + "new_cases_smoothed": 42.143, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 250.449, + "new_cases_per_million": 24.827, + "new_cases_smoothed_per_million": 7.637, + "total_deaths_per_million": 7.43, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-07-03", + "total_cases": 1382.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.429, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 250.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.608, + "total_deaths_per_million": 7.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-04", + "total_cases": 1557.0, + "new_cases": 175.0, + "new_cases_smoothed": 50.429, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 282.163, + "new_cases_per_million": 31.714, + "new_cases_smoothed_per_million": 9.139, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.544, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 73.15 + }, + { + "date": "2020-07-05", + "total_cases": 1557.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.571, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 282.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-07-06", + "total_cases": 1557.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.571, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 282.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-07-07", + "total_cases": 1557.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.571, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 282.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-07-08", + "total_cases": 1557.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.571, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 282.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 73.15 + }, + { + "date": "2020-07-09", + "total_cases": 1821.0, + "new_cases": 264.0, + "new_cases_smoothed": 62.714, + "total_deaths": 47.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 330.005, + "new_cases_per_million": 47.843, + "new_cases_smoothed_per_million": 11.365, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.544, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 73.15 + }, + { + "date": "2020-07-10", + "total_cases": 1821.0, + "new_cases": 0.0, + "new_cases_smoothed": 62.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 330.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.365, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 73.15 + }, + { + "date": "2020-07-11", + "total_cases": 2028.0, + "new_cases": 207.0, + "new_cases_smoothed": 67.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 367.518, + "new_cases_per_million": 37.513, + "new_cases_smoothed_per_million": 12.194, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-12", + "total_cases": 2028.0, + "new_cases": 0.0, + "new_cases_smoothed": 67.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 367.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.194, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-13", + "total_cases": 2103.0, + "new_cases": 75.0, + "new_cases_smoothed": 78.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 381.11, + "new_cases_per_million": 13.592, + "new_cases_smoothed_per_million": 14.135, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-14", + "total_cases": 2103.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 381.11, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.135, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-15", + "total_cases": 2222.0, + "new_cases": 119.0, + "new_cases_smoothed": 95.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 402.675, + "new_cases_per_million": 21.565, + "new_cases_smoothed_per_million": 17.216, + "total_deaths_per_million": 8.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 73.15 + }, + { + "date": "2020-07-16", + "total_cases": 2358.0, + "new_cases": 136.0, + "new_cases_smoothed": 76.714, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 427.322, + "new_cases_per_million": 24.646, + "new_cases_smoothed_per_million": 13.902, + "total_deaths_per_million": 8.699, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-07-17", + "total_cases": 2358.0, + "new_cases": 0.0, + "new_cases_smoothed": 76.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 427.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.902, + "total_deaths_per_million": 8.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-07-18", + "total_cases": 2633.0, + "new_cases": 275.0, + "new_cases_smoothed": 86.429, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.158, + "new_cases_per_million": 49.836, + "new_cases_smoothed_per_million": 15.663, + "total_deaths_per_million": 8.88, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-07-19", + "total_cases": 2633.0, + "new_cases": 0.0, + "new_cases_smoothed": 86.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.663, + "total_deaths_per_million": 8.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-07-20", + "total_cases": 2633.0, + "new_cases": 0.0, + "new_cases_smoothed": 75.714, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.721, + "total_deaths_per_million": 8.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 73.15 + }, + { + "date": "2020-07-21", + "total_cases": 2851.0, + "new_cases": 218.0, + "new_cases_smoothed": 106.857, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 516.664, + "new_cases_per_million": 39.506, + "new_cases_smoothed_per_million": 19.365, + "total_deaths_per_million": 9.061, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 62.04 + }, + { + "date": "2020-07-22", + "total_cases": 2851.0, + "new_cases": 0.0, + "new_cases_smoothed": 89.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 516.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.284, + "total_deaths_per_million": 9.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 62.04 + }, + { + "date": "2020-07-23", + "total_cases": 2851.0, + "new_cases": 0.0, + "new_cases_smoothed": 70.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 516.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.763, + "total_deaths_per_million": 9.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 62.04 + }, + { + "date": "2020-07-24", + "total_cases": 3038.0, + "new_cases": 187.0, + "new_cases_smoothed": 97.143, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 550.553, + "new_cases_per_million": 33.889, + "new_cases_smoothed_per_million": 17.604, + "total_deaths_per_million": 9.242, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 62.04 + }, + { + "date": "2020-07-25", + "total_cases": 3038.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 550.553, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.485, + "total_deaths_per_million": 9.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 62.04 + }, + { + "date": "2020-07-26", + "total_cases": 3038.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 550.553, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.485, + "total_deaths_per_million": 9.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 62.04 + }, + { + "date": "2020-07-27", + "total_cases": 3038.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 550.553, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.485, + "total_deaths_per_million": 9.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 62.04 + }, + { + "date": "2020-07-28", + "total_cases": 3200.0, + "new_cases": 162.0, + "new_cases_smoothed": 49.857, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 579.911, + "new_cases_per_million": 29.358, + "new_cases_smoothed_per_million": 9.035, + "total_deaths_per_million": 9.786, + "new_deaths_per_million": 0.544, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 62.04 + }, + { + "date": "2020-07-29", + "total_cases": 3200.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 579.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.035, + "total_deaths_per_million": 9.786, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 62.04 + }, + { + "date": "2020-07-30", + "total_cases": 3200.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 579.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.035, + "total_deaths_per_million": 9.786, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 62.04 + }, + { + "date": "2020-07-31", + "total_cases": 3376.0, + "new_cases": 176.0, + "new_cases_smoothed": 48.286, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 611.806, + "new_cases_per_million": 31.895, + "new_cases_smoothed_per_million": 8.75, + "total_deaths_per_million": 10.148, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 62.04 + }, + { + "date": "2020-08-01", + "total_cases": 3376.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 611.806, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.75, + "total_deaths_per_million": 10.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 62.04 + }, + { + "date": "2020-08-02", + "total_cases": 3387.0, + "new_cases": 11.0, + "new_cases_smoothed": 49.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 613.799, + "new_cases_per_million": 1.993, + "new_cases_smoothed_per_million": 9.035, + "total_deaths_per_million": 10.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 62.04 + }, + { + "date": "2020-08-03", + "total_cases": 3387.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 613.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.035, + "total_deaths_per_million": 10.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 62.04 + }, + { + "date": "2020-08-04", + "total_cases": 3546.0, + "new_cases": 159.0, + "new_cases_smoothed": 49.429, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 642.613, + "new_cases_per_million": 28.814, + "new_cases_smoothed_per_million": 8.958, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 67.59 + }, + { + "date": "2020-08-05", + "total_cases": 3546.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 642.613, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.958, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 67.59 + }, + { + "date": "2020-08-06", + "total_cases": 3546.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 642.613, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.958, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 67.59 + }, + { + "date": "2020-08-07", + "total_cases": 3637.0, + "new_cases": 91.0, + "new_cases_smoothed": 37.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 659.105, + "new_cases_per_million": 16.491, + "new_cases_smoothed_per_million": 6.757, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-08", + "total_cases": 3637.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 659.105, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.757, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-09", + "total_cases": 3664.0, + "new_cases": 27.0, + "new_cases_smoothed": 39.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 663.998, + "new_cases_per_million": 4.893, + "new_cases_smoothed_per_million": 7.171, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-10", + "total_cases": 3664.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 663.998, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.171, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-11", + "total_cases": 3664.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.998, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.055, + "total_deaths_per_million": 10.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-12", + "total_cases": 3745.0, + "new_cases": 81.0, + "new_cases_smoothed": 28.429, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.677, + "new_cases_per_million": 14.679, + "new_cases_smoothed_per_million": 5.152, + "total_deaths_per_million": 10.873, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-13", + "total_cases": 3745.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.152, + "total_deaths_per_million": 10.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-14", + "total_cases": 3745.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 10.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-15", + "total_cases": 3745.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 10.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-16", + "total_cases": 3745.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.097, + "total_deaths_per_million": 10.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 67.59 + }, + { + "date": "2020-08-17", + "total_cases": 3835.0, + "new_cases": 90.0, + "new_cases_smoothed": 24.429, + "total_deaths": 76.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 694.987, + "new_cases_per_million": 16.31, + "new_cases_smoothed_per_million": 4.427, + "total_deaths_per_million": 13.773, + "new_deaths_per_million": 2.9, + "new_deaths_smoothed_per_million": 0.466, + "stringency_index": 67.59 + }, + { + "date": "2020-08-18", + "total_cases": 3835.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.429, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 694.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.427, + "total_deaths_per_million": 13.773, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.466, + "stringency_index": 67.59 + }, + { + "date": "2020-08-19", + "total_cases": 3835.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 694.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.33, + "total_deaths_per_million": 13.773, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.414, + "stringency_index": 67.59 + }, + { + "date": "2020-08-20", + "total_cases": 3850.0, + "new_cases": 15.0, + "new_cases_smoothed": 15.0, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 697.705, + "new_cases_per_million": 2.718, + "new_cases_smoothed_per_million": 2.718, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 67.59 + }, + { + "date": "2020-08-21", + "total_cases": 3850.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 697.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.718, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 67.59 + }, + { + "date": "2020-08-22", + "total_cases": 3850.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 697.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.718, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 67.59 + }, + { + "date": "2020-08-23", + "total_cases": 3850.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 697.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.718, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 67.59 + }, + { + "date": "2020-08-24", + "total_cases": 3850.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 697.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 62.04 + }, + { + "date": "2020-08-25", + "total_cases": 3850.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 697.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 13.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-08-26", + "total_cases": 3979.0, + "new_cases": 129.0, + "new_cases_smoothed": 20.571, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 721.083, + "new_cases_per_million": 23.378, + "new_cases_smoothed_per_million": 3.728, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.052 + }, + { + "date": "2020-08-27", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-08-28", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-08-29", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-08-30", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-08-31", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-01", + "total_cases": 3979.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.34, + "total_deaths_per_million": 14.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-02", + "total_cases": 4628.0, + "new_cases": 649.0, + "new_cases_smoothed": 92.714, + "total_deaths": 102.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 838.696, + "new_cases_per_million": 117.613, + "new_cases_smoothed_per_million": 16.802, + "total_deaths_per_million": 18.485, + "new_deaths_per_million": 4.349, + "new_deaths_smoothed_per_million": 0.621 + }, + { + "date": "2020-09-03", + "total_cases": 4628.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 838.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.802, + "total_deaths_per_million": 18.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.621 + }, + { + "date": "2020-09-04", + "total_cases": 4628.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 838.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.802, + "total_deaths_per_million": 18.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.621 + }, + { + "date": "2020-09-05", + "total_cases": 4628.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 838.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.802, + "total_deaths_per_million": 18.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.621 + } + ] + }, + "CRI": { + "continent": "North America", + "location": "Costa Rica", + "population": 5094114.0, + "population_density": 96.079, + "median_age": 33.6, + "aged_65_older": 9.468, + "aged_70_older": 5.694, + "gdp_per_capita": 15524.995, + "extreme_poverty": 1.3, + "cardiovasc_death_rate": 137.973, + "diabetes_prevalence": 8.78, + "female_smokers": 6.4, + "male_smokers": 17.4, + "handwashing_facilities": 83.841, + "hospital_beds_per_thousand": 1.13, + "life_expectancy": 80.28, + "data": [ + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.196, + "new_cases_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.982, + "new_cases_per_million": 0.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 9.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.767, + "new_cases_per_million": 0.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-03-11", + "total_cases": 13.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.552, + "new_cases_per_million": 0.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 68.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.013, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 29.63 + }, + { + "date": "2020-03-12", + "total_cases": 22.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 4.319, + "new_cases_per_million": 1.767, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 157.0, + "total_tests_per_thousand": 0.031, + "new_tests_per_thousand": 0.017, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 37.04 + }, + { + "date": "2020-03-13", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.515, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 86.0, + "total_tests": 243.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.017, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 37.04 + }, + { + "date": "2020-03-14", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.104, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 0.701, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 127.0, + "total_tests": 370.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.025, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 37.04 + }, + { + "date": "2020-03-15", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.3, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.729, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 413.0, + "total_tests_per_thousand": 0.081, + "new_tests_per_thousand": 0.008, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 37.04 + }, + { + "date": "2020-03-16", + "total_cases": 35.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.871, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 584.0, + "total_tests_per_thousand": 0.115, + "new_tests_per_thousand": 0.034, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 37.04 + }, + { + "date": "2020-03-17", + "total_cases": 41.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.049, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 0.897, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 114.0, + "total_tests": 698.0, + "total_tests_per_thousand": 0.137, + "new_tests_per_thousand": 0.022, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-03-18", + "total_cases": 50.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.815, + "new_cases_per_million": 1.767, + "new_cases_smoothed_per_million": 1.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 154.0, + "total_tests": 852.0, + "total_tests_per_thousand": 0.167, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 112.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-03-19", + "total_cases": 69.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13.545, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 116.0, + "total_tests": 968.0, + "total_tests_per_thousand": 0.19, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 116.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-03-20", + "total_cases": 87.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.079, + "new_cases_per_million": 3.533, + "new_cases_smoothed_per_million": 1.795, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 119.0, + "total_tests": 1087.0, + "total_tests_per_thousand": 0.213, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 121.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-03-21", + "total_cases": 113.0, + "new_cases": 26.0, + "new_cases_smoothed": 12.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.182, + "new_cases_per_million": 5.104, + "new_cases_smoothed_per_million": 2.44, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 148.0, + "total_tests": 1235.0, + "total_tests_per_thousand": 0.242, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-22", + "total_cases": 117.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.968, + "new_cases_per_million": 0.785, + "new_cases_smoothed_per_million": 2.524, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 227.0, + "total_tests": 1462.0, + "total_tests_per_thousand": 0.287, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-23", + "total_cases": 134.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 26.305, + "new_cases_per_million": 3.337, + "new_cases_smoothed_per_million": 2.776, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 157.0, + "total_tests": 1619.0, + "total_tests_per_thousand": 0.318, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 148.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-24", + "total_cases": 158.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 31.016, + "new_cases_per_million": 4.711, + "new_cases_smoothed_per_million": 3.281, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 165.0, + "total_tests": 1784.0, + "total_tests_per_thousand": 0.35, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-25", + "total_cases": 177.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 34.746, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.562, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 89.0, + "total_tests": 1873.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-26", + "total_cases": 201.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.457, + "new_cases_per_million": 4.711, + "new_cases_smoothed_per_million": 3.702, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 677.0, + "total_tests": 2550.0, + "total_tests_per_thousand": 0.501, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 226.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-27", + "total_cases": 231.0, + "new_cases": 30.0, + "new_cases_smoothed": 20.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.346, + "new_cases_per_million": 5.889, + "new_cases_smoothed_per_million": 4.038, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 487.0, + "total_tests": 3037.0, + "total_tests_per_thousand": 0.596, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 279.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-28", + "total_cases": 263.0, + "new_cases": 32.0, + "new_cases_smoothed": 21.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.628, + "new_cases_per_million": 6.282, + "new_cases_smoothed_per_million": 4.207, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 158.0, + "total_tests": 3195.0, + "total_tests_per_thousand": 0.627, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 280.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-29", + "total_cases": 295.0, + "new_cases": 32.0, + "new_cases_smoothed": 25.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.91, + "new_cases_per_million": 6.282, + "new_cases_smoothed_per_million": 4.992, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 222.0, + "total_tests": 3417.0, + "total_tests_per_thousand": 0.671, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 279.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-30", + "total_cases": 314.0, + "new_cases": 19.0, + "new_cases_smoothed": 25.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.64, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 5.048, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 263.0, + "total_tests": 3680.0, + "total_tests_per_thousand": 0.722, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 294.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-03-31", + "total_cases": 330.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.781, + "new_cases_per_million": 3.141, + "new_cases_smoothed_per_million": 4.823, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 153.0, + "total_tests": 3833.0, + "total_tests_per_thousand": 0.752, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 293.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 71.3 + }, + { + "date": "2020-04-01", + "total_cases": 347.0, + "new_cases": 17.0, + "new_cases_smoothed": 24.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.118, + "new_cases_per_million": 3.337, + "new_cases_smoothed_per_million": 4.767, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 373.0, + "total_tests": 4206.0, + "total_tests_per_thousand": 0.826, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-02", + "total_cases": 375.0, + "new_cases": 28.0, + "new_cases_smoothed": 24.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.614, + "new_cases_per_million": 5.497, + "new_cases_smoothed_per_million": 4.88, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 132.0, + "total_tests": 4338.0, + "total_tests_per_thousand": 0.852, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 255.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-03", + "total_cases": 396.0, + "new_cases": 21.0, + "new_cases_smoothed": 23.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.737, + "new_cases_per_million": 4.122, + "new_cases_smoothed_per_million": 4.627, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 110.0, + "total_tests": 4448.0, + "total_tests_per_thousand": 0.873, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-04", + "total_cases": 416.0, + "new_cases": 20.0, + "new_cases_smoothed": 21.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.663, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 4.291, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 194.0, + "total_tests": 4642.0, + "total_tests_per_thousand": 0.911, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 207.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-05", + "total_cases": 435.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.393, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.926, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 444.0, + "total_tests": 5086.0, + "total_tests_per_thousand": 0.998, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 238.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-06", + "total_cases": 454.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.122, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.926, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 265.0, + "total_tests": 5351.0, + "total_tests_per_thousand": 1.05, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 239.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-07", + "total_cases": 467.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.674, + "new_cases_per_million": 2.552, + "new_cases_smoothed_per_million": 3.842, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 162.0, + "total_tests": 5513.0, + "total_tests_per_thousand": 1.082, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.0 + }, + { + "date": "2020-04-08", + "total_cases": 483.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 94.815, + "new_cases_per_million": 3.141, + "new_cases_smoothed_per_million": 3.814, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 510.0, + "total_tests": 6023.0, + "total_tests_per_thousand": 1.182, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 260.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 502.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.545, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.562, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 263.0, + "total_tests": 6286.0, + "total_tests_per_thousand": 1.234, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 278.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 539.0, + "new_cases": 37.0, + "new_cases_smoothed": 20.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 105.808, + "new_cases_per_million": 7.263, + "new_cases_smoothed_per_million": 4.01, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 154.0, + "total_tests": 6440.0, + "total_tests_per_thousand": 1.264, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 285.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 77.78 + }, + { + "date": "2020-04-11", + "total_cases": 558.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.538, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.982, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 156.0, + "total_tests": 6596.0, + "total_tests_per_thousand": 1.295, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 279.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 577.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 113.268, + "new_cases_per_million": 3.73, + "new_cases_smoothed_per_million": 3.982, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 154.0, + "total_tests": 6750.0, + "total_tests_per_thousand": 1.325, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 238.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 595.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 116.801, + "new_cases_per_million": 3.533, + "new_cases_smoothed_per_million": 3.954, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 106.0, + "total_tests": 6856.0, + "total_tests_per_thousand": 1.346, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 215.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-14", + "total_cases": 612.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 120.139, + "new_cases_per_million": 3.337, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 76.0, + "total_tests": 6932.0, + "total_tests_per_thousand": 1.361, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 203.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-15", + "total_cases": 618.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 121.316, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 3.786, + "total_deaths_per_million": 0.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 193.0, + "total_tests": 7125.0, + "total_tests_per_thousand": 1.399, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 157.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-16", + "total_cases": 626.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 122.887, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 3.477, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 214.0, + "total_tests": 7339.0, + "total_tests_per_thousand": 1.441, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-17", + "total_cases": 642.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 126.028, + "new_cases_per_million": 3.141, + "new_cases_smoothed_per_million": 2.888, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 172.0, + "total_tests": 7511.0, + "total_tests_per_thousand": 1.474, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 153.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-18", + "total_cases": 649.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.402, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 2.552, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 227.0, + "total_tests": 7738.0, + "total_tests_per_thousand": 1.519, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-19", + "total_cases": 655.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.58, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 2.187, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 52.0, + "total_tests": 7790.0, + "total_tests_per_thousand": 1.529, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-20", + "total_cases": 660.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.561, + "new_cases_per_million": 0.982, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 96.0, + "total_tests": 7886.0, + "total_tests_per_thousand": 1.548, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 147.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-21", + "total_cases": 662.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.143, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 129.954, + "new_cases_per_million": 0.393, + "new_cases_smoothed_per_million": 1.402, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 266.0, + "total_tests": 8152.0, + "total_tests_per_thousand": 1.6, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 174.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-22", + "total_cases": 669.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 131.328, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 1.43, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 301.0, + "total_tests": 8453.0, + "total_tests_per_thousand": 1.659, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-23", + "total_cases": 681.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 133.684, + "new_cases_per_million": 2.356, + "new_cases_smoothed_per_million": 1.542, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 253.0, + "total_tests": 8706.0, + "total_tests_per_thousand": 1.709, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 195.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-24", + "total_cases": 687.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 134.862, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 1.262, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 102.0, + "total_tests": 8808.0, + "total_tests_per_thousand": 1.729, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 185.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-25", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 134.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.066, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 87.0, + "total_tests": 8895.0, + "total_tests_per_thousand": 1.746, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 165.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-26", + "total_cases": 693.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 136.039, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 1.066, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 37.0, + "total_tests": 8932.0, + "total_tests_per_thousand": 1.753, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 75.93 + }, + { + "date": "2020-04-27", + "total_cases": 695.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 136.432, + "new_cases_per_million": 0.393, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 58.0, + "total_tests": 8990.0, + "total_tests_per_thousand": 1.765, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 158.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 81.48 + }, + { + "date": "2020-04-28", + "total_cases": 697.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.825, + "new_cases_per_million": 0.393, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 59.0, + "total_tests": 9049.0, + "total_tests_per_thousand": 1.776, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 128.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 81.48 + }, + { + "date": "2020-04-29", + "total_cases": 705.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.395, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 1.01, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 237.0, + "total_tests": 9286.0, + "total_tests_per_thousand": 1.823, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 81.48 + }, + { + "date": "2020-04-30", + "total_cases": 713.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.965, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 0.897, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 109.0, + "total_tests": 9395.0, + "total_tests_per_thousand": 1.844, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 98.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 81.48 + }, + { + "date": "2020-05-01", + "total_cases": 719.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.143, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 0.897, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 167.0, + "total_tests": 9562.0, + "total_tests_per_thousand": 1.877, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 108.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-02", + "total_cases": 725.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.321, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 1.066, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 91.0, + "total_tests": 9653.0, + "total_tests_per_thousand": 1.895, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 108.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-03", + "total_cases": 733.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.892, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 1.122, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 120.0, + "total_tests": 9773.0, + "total_tests_per_thousand": 1.918, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 120.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-04", + "total_cases": 739.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.069, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 106.0, + "total_tests": 9879.0, + "total_tests_per_thousand": 1.939, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-05", + "total_cases": 742.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.658, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 1.262, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 73.0, + "total_tests": 9952.0, + "total_tests_per_thousand": 1.954, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 129.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-06", + "total_cases": 755.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 148.21, + "new_cases_per_million": 2.552, + "new_cases_smoothed_per_million": 1.402, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 209.0, + "total_tests": 10161.0, + "total_tests_per_thousand": 1.995, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 125.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-07", + "total_cases": 761.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 149.388, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 1.346, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 274.0, + "total_tests": 10435.0, + "total_tests_per_thousand": 2.048, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-08", + "total_cases": 765.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.173, + "new_cases_per_million": 0.785, + "new_cases_smoothed_per_million": 1.29, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 452.0, + "total_tests": 10887.0, + "total_tests_per_thousand": 2.137, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 189.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-09", + "total_cases": 773.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 151.744, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 1.346, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 449.0, + "total_tests": 11336.0, + "total_tests_per_thousand": 2.225, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-10", + "total_cases": 780.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.118, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 592.0, + "total_tests": 11928.0, + "total_tests_per_thousand": 2.342, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 308.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-11", + "total_cases": 792.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 155.474, + "new_cases_per_million": 2.356, + "new_cases_smoothed_per_million": 1.486, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 120.0, + "total_tests": 12048.0, + "total_tests_per_thousand": 2.365, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 310.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-12", + "total_cases": 801.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 157.24, + "new_cases_per_million": 1.767, + "new_cases_smoothed_per_million": 1.655, + "total_deaths_per_million": 1.374, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 73.0, + "total_tests": 12121.0, + "total_tests_per_thousand": 2.379, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 310.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-13", + "total_cases": 804.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 157.829, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 1.374, + "total_deaths_per_million": 1.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 446.0, + "total_tests": 12567.0, + "total_tests_per_thousand": 2.467, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 344.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-14", + "total_cases": 815.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 159.989, + "new_cases_per_million": 2.159, + "new_cases_smoothed_per_million": 1.514, + "total_deaths_per_million": 1.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 315.0, + "total_tests": 12882.0, + "total_tests_per_thousand": 2.529, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-15", + "total_cases": 830.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 162.933, + "new_cases_per_million": 2.945, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 209.0, + "total_tests": 13091.0, + "total_tests_per_thousand": 2.57, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 315.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-16", + "total_cases": 843.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 165.485, + "new_cases_per_million": 2.552, + "new_cases_smoothed_per_million": 1.963, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 665.0, + "total_tests": 13756.0, + "total_tests_per_thousand": 2.7, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-17", + "total_cases": 853.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.429, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 167.448, + "new_cases_per_million": 1.963, + "new_cases_smoothed_per_million": 2.047, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 576.0, + "total_tests": 14332.0, + "total_tests_per_thousand": 2.813, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-18", + "total_cases": 863.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 169.411, + "new_cases_per_million": 1.963, + "new_cases_smoothed_per_million": 1.991, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 206.0, + "total_tests": 14538.0, + "total_tests_per_thousand": 2.854, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-19", + "total_cases": 866.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 170.0, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 138.0, + "total_tests": 14676.0, + "total_tests_per_thousand": 2.881, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-20", + "total_cases": 882.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 173.141, + "new_cases_per_million": 3.141, + "new_cases_smoothed_per_million": 2.187, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 434.0, + "total_tests": 15110.0, + "total_tests_per_thousand": 2.966, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 363.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-21", + "total_cases": 897.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 176.086, + "new_cases_per_million": 2.945, + "new_cases_smoothed_per_million": 2.3, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 168.0, + "total_tests": 15278.0, + "total_tests_per_thousand": 2.999, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 342.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-22", + "total_cases": 903.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 177.263, + "new_cases_per_million": 1.178, + "new_cases_smoothed_per_million": 2.047, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 486.0, + "total_tests": 15764.0, + "total_tests_per_thousand": 3.095, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 382.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-23", + "total_cases": 911.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 178.834, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 1.907, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 235.0, + "total_tests": 15999.0, + "total_tests_per_thousand": 3.141, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-24", + "total_cases": 918.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.208, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 410.0, + "total_tests": 16409.0, + "total_tests_per_thousand": 3.221, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 297.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-25", + "total_cases": 930.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.564, + "new_cases_per_million": 2.356, + "new_cases_smoothed_per_million": 1.879, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 157.0, + "total_tests": 16566.0, + "total_tests_per_thousand": 3.252, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 290.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-26", + "total_cases": 951.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.686, + "new_cases_per_million": 4.122, + "new_cases_smoothed_per_million": 2.384, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 125.0, + "total_tests": 16691.0, + "total_tests_per_thousand": 3.277, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 288.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 956.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.668, + "new_cases_per_million": 0.982, + "new_cases_smoothed_per_million": 2.075, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 649.0, + "total_tests": 17340.0, + "total_tests_per_thousand": 3.404, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 984.0, + "new_cases": 28.0, + "new_cases_smoothed": 12.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.164, + "new_cases_per_million": 5.497, + "new_cases_smoothed_per_million": 2.44, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 374.0, + "total_tests": 17714.0, + "total_tests_per_thousand": 3.477, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 348.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 1000.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.305, + "new_cases_per_million": 3.141, + "new_cases_smoothed_per_million": 2.72, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 540.0, + "total_tests": 18254.0, + "total_tests_per_thousand": 3.583, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 1022.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.624, + "new_cases_per_million": 4.319, + "new_cases_smoothed_per_million": 3.113, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 467.0, + "total_tests": 18721.0, + "total_tests_per_thousand": 3.675, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 389.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-05-31", + "total_cases": 1047.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.531, + "new_cases_per_million": 4.908, + "new_cases_smoothed_per_million": 3.618, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 515.0, + "total_tests": 19236.0, + "total_tests_per_thousand": 3.776, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 404.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-01", + "total_cases": 1056.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.298, + "new_cases_per_million": 1.767, + "new_cases_smoothed_per_million": 3.533, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 267.0, + "total_tests": 19503.0, + "total_tests_per_thousand": 3.829, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 420.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-02", + "total_cases": 1084.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 212.795, + "new_cases_per_million": 5.497, + "new_cases_smoothed_per_million": 3.73, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 264.0, + "total_tests": 19767.0, + "total_tests_per_thousand": 3.88, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 439.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 1105.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 216.917, + "new_cases_per_million": 4.122, + "new_cases_smoothed_per_million": 4.178, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 415.0, + "total_tests": 20182.0, + "total_tests_per_thousand": 3.962, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 406.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 1157.0, + "new_cases": 52.0, + "new_cases_smoothed": 24.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 227.125, + "new_cases_per_million": 10.208, + "new_cases_smoothed_per_million": 4.852, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 376.0, + "total_tests": 20558.0, + "total_tests_per_thousand": 4.036, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 406.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 1194.0, + "new_cases": 37.0, + "new_cases_smoothed": 27.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.388, + "new_cases_per_million": 7.263, + "new_cases_smoothed_per_million": 5.44, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 443.0, + "total_tests": 21001.0, + "total_tests_per_thousand": 4.123, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 392.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 1228.0, + "new_cases": 34.0, + "new_cases_smoothed": 29.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.063, + "new_cases_per_million": 6.674, + "new_cases_smoothed_per_million": 5.777, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 334.0, + "total_tests": 21335.0, + "total_tests_per_thousand": 4.188, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 373.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 1263.0, + "new_cases": 35.0, + "new_cases_smoothed": 30.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.933, + "new_cases_per_million": 6.871, + "new_cases_smoothed_per_million": 6.057, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 268.0, + "total_tests": 21603.0, + "total_tests_per_thousand": 4.241, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 1318.0, + "new_cases": 55.0, + "new_cases_smoothed": 37.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.73, + "new_cases_per_million": 10.797, + "new_cases_smoothed_per_million": 7.347, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 161.0, + "total_tests": 21764.0, + "total_tests_per_thousand": 4.272, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 323.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 1342.0, + "new_cases": 24.0, + "new_cases_smoothed": 36.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.441, + "new_cases_per_million": 4.711, + "new_cases_smoothed_per_million": 7.235, + "total_deaths_per_million": 1.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 229.0, + "total_tests": 21993.0, + "total_tests_per_thousand": 4.317, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 318.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 1375.0, + "new_cases": 33.0, + "new_cases_smoothed": 38.571, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.919, + "new_cases_per_million": 6.478, + "new_cases_smoothed_per_million": 7.572, + "total_deaths_per_million": 2.159, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 427.0, + "total_tests": 22420.0, + "total_tests_per_thousand": 4.401, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 1461.0, + "new_cases": 86.0, + "new_cases_smoothed": 43.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 286.802, + "new_cases_per_million": 16.882, + "new_cases_smoothed_per_million": 8.525, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 381.0, + "total_tests": 22801.0, + "total_tests_per_thousand": 4.476, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-12", + "total_cases": 1538.0, + "new_cases": 77.0, + "new_cases_smoothed": 49.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 301.917, + "new_cases_per_million": 15.115, + "new_cases_smoothed_per_million": 9.647, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 483.0, + "total_tests": 23284.0, + "total_tests_per_thousand": 4.571, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 326.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-13", + "total_cases": 1612.0, + "new_cases": 74.0, + "new_cases_smoothed": 54.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 316.444, + "new_cases_per_million": 14.527, + "new_cases_smoothed_per_million": 10.769, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 510.0, + "total_tests": 23794.0, + "total_tests_per_thousand": 4.671, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 351.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-14", + "total_cases": 1662.0, + "new_cases": 50.0, + "new_cases_smoothed": 57.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 326.259, + "new_cases_per_million": 9.815, + "new_cases_smoothed_per_million": 11.189, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 308.0, + "total_tests": 24102.0, + "total_tests_per_thousand": 4.731, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 357.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-15", + "total_cases": 1715.0, + "new_cases": 53.0, + "new_cases_smoothed": 56.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 336.663, + "new_cases_per_million": 10.404, + "new_cases_smoothed_per_million": 11.133, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 237.0, + "total_tests": 24339.0, + "total_tests_per_thousand": 4.778, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 1744.0, + "new_cases": 29.0, + "new_cases_smoothed": 57.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 342.356, + "new_cases_per_million": 5.693, + "new_cases_smoothed_per_million": 11.274, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 278.0, + "total_tests": 24617.0, + "total_tests_per_thousand": 4.832, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 375.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 1769.0, + "new_cases": 25.0, + "new_cases_smoothed": 56.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 347.264, + "new_cases_per_million": 4.908, + "new_cases_smoothed_per_million": 11.049, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 451.0, + "total_tests": 25068.0, + "total_tests_per_thousand": 4.921, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 378.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "total_cases": 1871.0, + "new_cases": 102.0, + "new_cases_smoothed": 58.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 367.287, + "new_cases_per_million": 20.023, + "new_cases_smoothed_per_million": 11.498, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 447.0, + "total_tests": 25515.0, + "total_tests_per_thousand": 5.009, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 388.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 1939.0, + "new_cases": 68.0, + "new_cases_smoothed": 57.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 380.635, + "new_cases_per_million": 13.349, + "new_cases_smoothed_per_million": 11.245, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 629.0, + "total_tests": 26144.0, + "total_tests_per_thousand": 5.132, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 409.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 2058.0, + "new_cases": 119.0, + "new_cases_smoothed": 63.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 403.996, + "new_cases_per_million": 23.36, + "new_cases_smoothed_per_million": 12.507, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 457.0, + "total_tests": 26601.0, + "total_tests_per_thousand": 5.222, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 401.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 2127.0, + "new_cases": 69.0, + "new_cases_smoothed": 66.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 417.541, + "new_cases_per_million": 13.545, + "new_cases_smoothed_per_million": 13.04, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 391.0, + "total_tests": 26992.0, + "total_tests_per_thousand": 5.299, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 413.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 2213.0, + "new_cases": 86.0, + "new_cases_smoothed": 71.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 434.423, + "new_cases_per_million": 16.882, + "new_cases_smoothed_per_million": 13.966, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 244.0, + "total_tests": 27236.0, + "total_tests_per_thousand": 5.347, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 414.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-23", + "total_cases": 2277.0, + "new_cases": 64.0, + "new_cases_smoothed": 76.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 446.986, + "new_cases_per_million": 12.564, + "new_cases_smoothed_per_million": 14.947, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 443.0, + "total_tests": 27679.0, + "total_tests_per_thousand": 5.434, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 437.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-24", + "total_cases": 2368.0, + "new_cases": 91.0, + "new_cases_smoothed": 85.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 464.85, + "new_cases_per_million": 17.864, + "new_cases_smoothed_per_million": 16.798, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 621.0, + "total_tests": 28300.0, + "total_tests_per_thousand": 5.555, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-25", + "total_cases": 2515.0, + "new_cases": 147.0, + "new_cases_smoothed": 92.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 493.707, + "new_cases_per_million": 28.857, + "new_cases_smoothed_per_million": 18.06, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 703.0, + "total_tests": 29003.0, + "total_tests_per_thousand": 5.693, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 498.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 72.22 + }, + { + "date": "2020-06-26", + "total_cases": 2684.0, + "new_cases": 169.0, + "new_cases_smoothed": 106.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 526.883, + "new_cases_per_million": 33.176, + "new_cases_smoothed_per_million": 20.892, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 687.0, + "total_tests": 29690.0, + "total_tests_per_thousand": 5.828, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 507.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-06-27", + "total_cases": 2836.0, + "new_cases": 152.0, + "new_cases_smoothed": 111.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 556.721, + "new_cases_per_million": 29.838, + "new_cases_smoothed_per_million": 21.818, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 890.0, + "total_tests": 30580.0, + "total_tests_per_thousand": 6.003, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 568.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-06-28", + "total_cases": 2979.0, + "new_cases": 143.0, + "new_cases_smoothed": 121.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 584.793, + "new_cases_per_million": 28.072, + "new_cases_smoothed_per_million": 23.893, + "total_deaths_per_million": 2.356, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 743.0, + "total_tests": 31323.0, + "total_tests_per_thousand": 6.149, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 619.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-06-29", + "total_cases": 3130.0, + "new_cases": 151.0, + "new_cases_smoothed": 131.0, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 614.435, + "new_cases_per_million": 29.642, + "new_cases_smoothed_per_million": 25.716, + "total_deaths_per_million": 2.945, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 691.0, + "total_tests": 32014.0, + "total_tests_per_thousand": 6.285, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 683.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-06-30", + "total_cases": 3269.0, + "new_cases": 139.0, + "new_cases_smoothed": 141.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 641.721, + "new_cases_per_million": 27.286, + "new_cases_smoothed_per_million": 27.819, + "total_deaths_per_million": 2.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 594.0, + "total_tests": 32608.0, + "total_tests_per_thousand": 6.401, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 704.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-01", + "total_cases": 3459.0, + "new_cases": 190.0, + "new_cases_smoothed": 155.857, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 679.019, + "new_cases_per_million": 37.298, + "new_cases_smoothed_per_million": 30.596, + "total_deaths_per_million": 3.141, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 853.0, + "total_tests": 33461.0, + "total_tests_per_thousand": 6.569, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 737.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-02", + "total_cases": 3753.0, + "new_cases": 294.0, + "new_cases_smoothed": 176.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 736.733, + "new_cases_per_million": 57.714, + "new_cases_smoothed_per_million": 34.718, + "total_deaths_per_million": 3.337, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 1259.0, + "total_tests": 34720.0, + "total_tests_per_thousand": 6.816, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 817.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-03", + "total_cases": 4023.0, + "new_cases": 270.0, + "new_cases_smoothed": 191.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 789.735, + "new_cases_per_million": 53.002, + "new_cases_smoothed_per_million": 37.55, + "total_deaths_per_million": 3.337, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 933.0, + "total_tests": 35653.0, + "total_tests_per_thousand": 6.999, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 852.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-04", + "total_cases": 4311.0, + "new_cases": 288.0, + "new_cases_smoothed": 210.714, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 846.271, + "new_cases_per_million": 56.536, + "new_cases_smoothed_per_million": 41.364, + "total_deaths_per_million": 3.533, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 998.0, + "total_tests": 36651.0, + "total_tests_per_thousand": 7.195, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 867.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-05", + "total_cases": 4621.0, + "new_cases": 310.0, + "new_cases_smoothed": 234.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 907.125, + "new_cases_per_million": 60.855, + "new_cases_smoothed_per_million": 46.048, + "total_deaths_per_million": 3.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 1197.0, + "total_tests": 37848.0, + "total_tests_per_thousand": 7.43, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 932.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-06", + "total_cases": 4996.0, + "new_cases": 375.0, + "new_cases_smoothed": 266.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 980.74, + "new_cases_per_million": 73.614, + "new_cases_smoothed_per_million": 52.329, + "total_deaths_per_million": 3.73, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 1000.0, + "total_tests": 38848.0, + "total_tests_per_thousand": 7.626, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 976.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-07", + "total_cases": 5241.0, + "new_cases": 245.0, + "new_cases_smoothed": 281.714, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1028.834, + "new_cases_per_million": 48.095, + "new_cases_smoothed_per_million": 55.302, + "total_deaths_per_million": 4.515, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 1222.0, + "total_tests": 40070.0, + "total_tests_per_thousand": 7.866, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 1066.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-08", + "total_cases": 5486.0, + "new_cases": 245.0, + "new_cases_smoothed": 289.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1076.929, + "new_cases_per_million": 48.095, + "new_cases_smoothed_per_million": 56.844, + "total_deaths_per_million": 4.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1128.0, + "total_tests": 41198.0, + "total_tests_per_thousand": 8.087, + "new_tests_per_thousand": 0.221, + "new_tests_smoothed": 1105.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-09", + "total_cases": 5836.0, + "new_cases": 350.0, + "new_cases_smoothed": 297.571, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1145.636, + "new_cases_per_million": 68.707, + "new_cases_smoothed_per_million": 58.415, + "total_deaths_per_million": 4.711, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1750.0, + "total_tests": 42948.0, + "total_tests_per_thousand": 8.431, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 1175.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-10", + "total_cases": 6485.0, + "new_cases": 649.0, + "new_cases_smoothed": 351.714, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1273.038, + "new_cases_per_million": 127.402, + "new_cases_smoothed_per_million": 69.043, + "total_deaths_per_million": 4.908, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 1367.0, + "total_tests": 44315.0, + "total_tests_per_thousand": 8.699, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-11", + "total_cases": 6845.0, + "new_cases": 360.0, + "new_cases_smoothed": 362.0, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1343.708, + "new_cases_per_million": 70.67, + "new_cases_smoothed_per_million": 71.062, + "total_deaths_per_million": 5.104, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 1595.0, + "total_tests": 45910.0, + "total_tests_per_thousand": 9.012, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 1323.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-12", + "total_cases": 7231.0, + "new_cases": 386.0, + "new_cases_smoothed": 372.857, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1419.481, + "new_cases_per_million": 75.774, + "new_cases_smoothed_per_million": 73.194, + "total_deaths_per_million": 5.497, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 1654.0, + "total_tests": 47564.0, + "total_tests_per_thousand": 9.337, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 1388.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-13", + "total_cases": 7596.0, + "new_cases": 365.0, + "new_cases_smoothed": 371.429, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1491.133, + "new_cases_per_million": 71.651, + "new_cases_smoothed_per_million": 72.913, + "total_deaths_per_million": 5.889, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 1989.0, + "total_tests": 49553.0, + "total_tests_per_thousand": 9.728, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 1529.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-14", + "total_cases": 8036.0, + "new_cases": 440.0, + "new_cases_smoothed": 399.286, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1577.507, + "new_cases_per_million": 86.374, + "new_cases_smoothed_per_million": 78.382, + "total_deaths_per_million": 6.085, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 1435.0, + "total_tests": 50988.0, + "total_tests_per_thousand": 10.009, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 1560.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-15", + "total_cases": 8482.0, + "new_cases": 446.0, + "new_cases_smoothed": 428.0, + "total_deaths": 36.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1665.059, + "new_cases_per_million": 87.552, + "new_cases_smoothed_per_million": 84.019, + "total_deaths_per_million": 7.067, + "new_deaths_per_million": 0.982, + "new_deaths_smoothed_per_million": 0.365, + "new_tests": 1393.0, + "total_tests": 52381.0, + "total_tests_per_thousand": 10.283, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 1598.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-16", + "total_cases": 8986.0, + "new_cases": 504.0, + "new_cases_smoothed": 450.0, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1763.997, + "new_cases_per_million": 98.938, + "new_cases_smoothed_per_million": 88.337, + "total_deaths_per_million": 7.852, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.449, + "new_tests": 1503.0, + "total_tests": 53884.0, + "total_tests_per_thousand": 10.578, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 1562.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-17", + "total_cases": 9546.0, + "new_cases": 560.0, + "new_cases_smoothed": 437.286, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1873.927, + "new_cases_per_million": 109.931, + "new_cases_smoothed_per_million": 85.841, + "total_deaths_per_million": 8.245, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 1568.0, + "total_tests": 55452.0, + "total_tests_per_thousand": 10.886, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 1591.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-18", + "total_cases": 9969.0, + "new_cases": 423.0, + "new_cases_smoothed": 446.286, + "total_deaths": 47.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1956.964, + "new_cases_per_million": 83.037, + "new_cases_smoothed_per_million": 87.608, + "total_deaths_per_million": 9.226, + "new_deaths_per_million": 0.982, + "new_deaths_smoothed_per_million": 0.589, + "new_tests": 1116.0, + "total_tests": 56568.0, + "total_tests_per_thousand": 11.105, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 1523.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-19", + "total_cases": 10551.0, + "new_cases": 582.0, + "new_cases_smoothed": 474.286, + "total_deaths": 54.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2071.214, + "new_cases_per_million": 114.25, + "new_cases_smoothed_per_million": 93.105, + "total_deaths_per_million": 10.6, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 0.729, + "new_tests": 1524.0, + "total_tests": 58092.0, + "total_tests_per_thousand": 11.404, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 1504.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-20", + "total_cases": 11114.0, + "new_cases": 563.0, + "new_cases_smoothed": 502.571, + "total_deaths": 62.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2181.734, + "new_cases_per_million": 110.52, + "new_cases_smoothed_per_million": 98.657, + "total_deaths_per_million": 12.171, + "new_deaths_per_million": 1.57, + "new_deaths_smoothed_per_million": 0.897, + "new_tests": 1117.0, + "total_tests": 59209.0, + "total_tests_per_thousand": 11.623, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 1379.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-21", + "total_cases": 11534.0, + "new_cases": 420.0, + "new_cases_smoothed": 499.714, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2264.182, + "new_cases_per_million": 82.448, + "new_cases_smoothed_per_million": 98.096, + "total_deaths_per_million": 12.956, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.982, + "new_tests": 1104.0, + "total_tests": 60313.0, + "total_tests_per_thousand": 11.84, + "new_tests_per_thousand": 0.217, + "new_tests_smoothed": 1332.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-22", + "total_cases": 11811.0, + "new_cases": 277.0, + "new_cases_smoothed": 475.571, + "total_deaths": 68.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2318.558, + "new_cases_per_million": 54.376, + "new_cases_smoothed_per_million": 93.357, + "total_deaths_per_million": 13.349, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.897, + "new_tests": 1228.0, + "total_tests": 61541.0, + "total_tests_per_thousand": 12.081, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 1309.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-23", + "total_cases": 12361.0, + "new_cases": 550.0, + "new_cases_smoothed": 482.143, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2426.526, + "new_cases_per_million": 107.968, + "new_cases_smoothed_per_million": 94.647, + "total_deaths_per_million": 13.938, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 0.869, + "new_tests": 1829.0, + "total_tests": 63370.0, + "total_tests_per_thousand": 12.44, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 1355.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-24", + "total_cases": 13129.0, + "new_cases": 768.0, + "new_cases_smoothed": 511.857, + "total_deaths": 80.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2577.288, + "new_cases_per_million": 150.762, + "new_cases_smoothed_per_million": 100.48, + "total_deaths_per_million": 15.704, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.066, + "new_tests": 1510.0, + "total_tests": 64880.0, + "total_tests_per_thousand": 12.736, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 1347.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-25", + "total_cases": 13669.0, + "new_cases": 540.0, + "new_cases_smoothed": 528.571, + "total_deaths": 87.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2683.293, + "new_cases_per_million": 106.005, + "new_cases_smoothed_per_million": 103.761, + "total_deaths_per_million": 17.079, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.122, + "new_tests": 1842.0, + "total_tests": 66722.0, + "total_tests_per_thousand": 13.098, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 1451.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-26", + "total_cases": 14600.0, + "new_cases": 931.0, + "new_cases_smoothed": 578.429, + "total_deaths": 98.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2866.053, + "new_cases_per_million": 182.76, + "new_cases_smoothed_per_million": 113.548, + "total_deaths_per_million": 19.238, + "new_deaths_per_million": 2.159, + "new_deaths_smoothed_per_million": 1.234, + "new_tests": 1564.0, + "total_tests": 68286.0, + "total_tests_per_thousand": 13.405, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 1456.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-27", + "total_cases": 15229.0, + "new_cases": 629.0, + "new_cases_smoothed": 587.857, + "total_deaths": 104.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2989.529, + "new_cases_per_million": 123.476, + "new_cases_smoothed_per_million": 115.399, + "total_deaths_per_million": 20.416, + "new_deaths_per_million": 1.178, + "new_deaths_smoothed_per_million": 1.178, + "new_tests": 1701.0, + "total_tests": 69987.0, + "total_tests_per_thousand": 13.739, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 1540.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-28", + "total_cases": 15841.0, + "new_cases": 612.0, + "new_cases_smoothed": 615.286, + "total_deaths": 115.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3109.667, + "new_cases_per_million": 120.139, + "new_cases_smoothed_per_million": 120.784, + "total_deaths_per_million": 22.575, + "new_deaths_per_million": 2.159, + "new_deaths_smoothed_per_million": 1.374, + "new_tests": 1501.0, + "total_tests": 71488.0, + "total_tests_per_thousand": 14.033, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 1596.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-29", + "total_cases": 16344.0, + "new_cases": 503.0, + "new_cases_smoothed": 647.571, + "total_deaths": 125.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3208.409, + "new_cases_per_million": 98.741, + "new_cases_smoothed_per_million": 127.122, + "total_deaths_per_million": 24.538, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 1656.0, + "total_tests": 73144.0, + "total_tests_per_thousand": 14.359, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 1658.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-30", + "total_cases": 16800.0, + "new_cases": 456.0, + "new_cases_smoothed": 634.143, + "total_deaths": 133.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 3297.924, + "new_cases_per_million": 89.515, + "new_cases_smoothed_per_million": 124.485, + "total_deaths_per_million": 26.109, + "new_deaths_per_million": 1.57, + "new_deaths_smoothed_per_million": 1.739, + "new_tests": 1840.0, + "total_tests": 74984.0, + "total_tests_per_thousand": 14.72, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 1659.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-07-31", + "total_cases": 17290.0, + "new_cases": 490.0, + "new_cases_smoothed": 594.429, + "total_deaths": 140.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3394.113, + "new_cases_per_million": 96.189, + "new_cases_smoothed_per_million": 116.689, + "total_deaths_per_million": 27.483, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.683, + "new_tests": 1744.0, + "total_tests": 76728.0, + "total_tests_per_thousand": 15.062, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 1693.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 73.61 + }, + { + "date": "2020-08-01", + "total_cases": 17820.0, + "new_cases": 530.0, + "new_cases_smoothed": 593.0, + "total_deaths": 150.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3498.155, + "new_cases_per_million": 104.042, + "new_cases_smoothed_per_million": 116.409, + "total_deaths_per_million": 29.446, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.767, + "new_tests": 1663.0, + "total_tests": 78391.0, + "total_tests_per_thousand": 15.389, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 1667.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-02", + "total_cases": 18187.0, + "new_cases": 367.0, + "new_cases_smoothed": 512.429, + "total_deaths": 154.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3570.199, + "new_cases_per_million": 72.044, + "new_cases_smoothed_per_million": 100.592, + "total_deaths_per_million": 30.231, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 1.57, + "new_tests": 2015.0, + "total_tests": 80406.0, + "total_tests_per_thousand": 15.784, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-03", + "total_cases": 18975.0, + "new_cases": 788.0, + "new_cases_smoothed": 535.143, + "total_deaths": 162.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 3724.887, + "new_cases_per_million": 154.688, + "new_cases_smoothed_per_million": 105.051, + "total_deaths_per_million": 31.801, + "new_deaths_per_million": 1.57, + "new_deaths_smoothed_per_million": 1.627, + "new_tests": 1550.0, + "total_tests": 81956.0, + "total_tests_per_thousand": 16.088, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 1710.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-04", + "total_cases": 19402.0, + "new_cases": 427.0, + "new_cases_smoothed": 508.714, + "total_deaths": 171.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3808.709, + "new_cases_per_million": 83.822, + "new_cases_smoothed_per_million": 99.863, + "total_deaths_per_million": 33.568, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.57, + "new_tests": 1584.0, + "total_tests": 83540.0, + "total_tests_per_thousand": 16.399, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 1722.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-05", + "total_cases": 19837.0, + "new_cases": 435.0, + "new_cases_smoothed": 499.0, + "total_deaths": 181.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3894.102, + "new_cases_per_million": 85.393, + "new_cases_smoothed_per_million": 97.956, + "total_deaths_per_million": 35.531, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.57, + "new_tests": 1799.0, + "total_tests": 85339.0, + "total_tests_per_thousand": 16.752, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 1742.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-06", + "total_cases": 20417.0, + "new_cases": 580.0, + "new_cases_smoothed": 516.714, + "total_deaths": 191.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 4007.959, + "new_cases_per_million": 113.857, + "new_cases_smoothed_per_million": 101.434, + "total_deaths_per_million": 37.494, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.627, + "new_tests": 1885.0, + "total_tests": 87224.0, + "total_tests_per_thousand": 17.123, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 1749.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-07", + "total_cases": 21070.0, + "new_cases": 653.0, + "new_cases_smoothed": 540.0, + "total_deaths": 200.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 4136.146, + "new_cases_per_million": 128.187, + "new_cases_smoothed_per_million": 106.005, + "total_deaths_per_million": 39.261, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.683, + "new_tests": 1780.0, + "total_tests": 89004.0, + "total_tests_per_thousand": 17.472, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 1754.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-08", + "total_cases": 22081.0, + "new_cases": 1011.0, + "new_cases_smoothed": 608.714, + "total_deaths": 218.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 4334.61, + "new_cases_per_million": 198.464, + "new_cases_smoothed_per_million": 119.494, + "total_deaths_per_million": 42.794, + "new_deaths_per_million": 3.533, + "new_deaths_smoothed_per_million": 1.907, + "new_tests": 1687.0, + "total_tests": 90691.0, + "total_tests_per_thousand": 17.803, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 1757.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-09", + "total_cases": 22082.0, + "new_cases": 1.0, + "new_cases_smoothed": 556.429, + "total_deaths": 228.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 4334.807, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 109.23, + "total_deaths_per_million": 44.758, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 2.075, + "new_tests": 1405.0, + "total_tests": 92096.0, + "total_tests_per_thousand": 18.079, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 1670.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 62.96 + }, + { + "date": "2020-08-10", + "total_cases": 23286.0, + "new_cases": 1204.0, + "new_cases_smoothed": 615.857, + "total_deaths": 235.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 4571.158, + "new_cases_per_million": 236.351, + "new_cases_smoothed_per_million": 120.896, + "total_deaths_per_million": 46.132, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 2.047, + "new_tests": 1457.0, + "total_tests": 93553.0, + "total_tests_per_thousand": 18.365, + "new_tests_per_thousand": 0.286, + "new_tests_smoothed": 1657.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-11", + "total_cases": 23872.0, + "new_cases": 586.0, + "new_cases_smoothed": 638.571, + "total_deaths": 244.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 4686.193, + "new_cases_per_million": 115.035, + "new_cases_smoothed_per_million": 125.355, + "total_deaths_per_million": 47.898, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 2.047, + "new_tests": 1251.0, + "total_tests": 94804.0, + "total_tests_per_thousand": 18.61, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 1609.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-12", + "total_cases": 24508.0, + "new_cases": 636.0, + "new_cases_smoothed": 667.286, + "total_deaths": 255.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 4811.043, + "new_cases_per_million": 124.85, + "new_cases_smoothed_per_million": 130.992, + "total_deaths_per_million": 50.058, + "new_deaths_per_million": 2.159, + "new_deaths_smoothed_per_million": 2.075, + "new_tests": 1664.0, + "total_tests": 96468.0, + "total_tests_per_thousand": 18.937, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 1590.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-13", + "total_cases": 25057.0, + "new_cases": 549.0, + "new_cases_smoothed": 662.857, + "total_deaths": 263.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 4918.814, + "new_cases_per_million": 107.771, + "new_cases_smoothed_per_million": 130.122, + "total_deaths_per_million": 51.628, + "new_deaths_per_million": 1.57, + "new_deaths_smoothed_per_million": 2.019, + "new_tests": 1997.0, + "total_tests": 98465.0, + "total_tests_per_thousand": 19.329, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 1606.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-14", + "total_cases": 26129.0, + "new_cases": 1072.0, + "new_cases_smoothed": 722.714, + "total_deaths": 272.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 5129.253, + "new_cases_per_million": 210.439, + "new_cases_smoothed_per_million": 141.872, + "total_deaths_per_million": 53.395, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 2.019, + "new_tests": 2172.0, + "total_tests": 100637.0, + "total_tests_per_thousand": 19.756, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 1662.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-15", + "total_cases": 26931.0, + "new_cases": 802.0, + "new_cases_smoothed": 692.857, + "total_deaths": 281.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 5286.69, + "new_cases_per_million": 157.437, + "new_cases_smoothed_per_million": 136.011, + "total_deaths_per_million": 55.162, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.767, + "new_tests": 2197.0, + "total_tests": 102834.0, + "total_tests_per_thousand": 20.187, + "new_tests_per_thousand": 0.431, + "new_tests_smoothed": 1735.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-16", + "total_cases": 27737.0, + "new_cases": 806.0, + "new_cases_smoothed": 807.857, + "total_deaths": 291.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 5444.912, + "new_cases_per_million": 158.222, + "new_cases_smoothed_per_million": 158.586, + "total_deaths_per_million": 57.125, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.767, + "new_tests": 2244.0, + "total_tests": 105078.0, + "total_tests_per_thousand": 20.627, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 1855.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-17", + "total_cases": 28465.0, + "new_cases": 728.0, + "new_cases_smoothed": 739.857, + "total_deaths": 294.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 5587.822, + "new_cases_per_million": 142.91, + "new_cases_smoothed_per_million": 145.238, + "total_deaths_per_million": 57.714, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 1.655, + "new_tests": 1535.0, + "total_tests": 106613.0, + "total_tests_per_thousand": 20.929, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 1866.0, + "new_tests_smoothed_per_thousand": 0.366, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-18", + "total_cases": 29084.0, + "new_cases": 619.0, + "new_cases_smoothed": 744.571, + "total_deaths": 304.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 5709.334, + "new_cases_per_million": 121.513, + "new_cases_smoothed_per_million": 146.163, + "total_deaths_per_million": 59.677, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.683, + "new_tests": 1059.0, + "total_tests": 107672.0, + "total_tests_per_thousand": 21.137, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 1838.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-19", + "total_cases": 29643.0, + "new_cases": 559.0, + "new_cases_smoothed": 733.571, + "total_deaths": 314.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 5819.069, + "new_cases_per_million": 109.734, + "new_cases_smoothed_per_million": 144.004, + "total_deaths_per_million": 61.64, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.655, + "new_tests": 1535.0, + "total_tests": 109207.0, + "total_tests_per_thousand": 21.438, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 1820.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-20", + "total_cases": 30409.0, + "new_cases": 766.0, + "new_cases_smoothed": 764.571, + "total_deaths": 321.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 5969.438, + "new_cases_per_million": 150.37, + "new_cases_smoothed_per_million": 150.089, + "total_deaths_per_million": 63.014, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.627, + "new_tests": 1195.0, + "total_tests": 110402.0, + "total_tests_per_thousand": 21.672, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 1705.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-21", + "total_cases": 31075.0, + "new_cases": 666.0, + "new_cases_smoothed": 706.571, + "total_deaths": 333.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 6100.178, + "new_cases_per_million": 130.739, + "new_cases_smoothed_per_million": 138.703, + "total_deaths_per_million": 65.37, + "new_deaths_per_million": 2.356, + "new_deaths_smoothed_per_million": 1.711, + "new_tests": 1838.0, + "total_tests": 112240.0, + "total_tests_per_thousand": 22.033, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 1658.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-22", + "total_cases": 32134.0, + "new_cases": 1059.0, + "new_cases_smoothed": 743.286, + "total_deaths": 340.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 6308.065, + "new_cases_per_million": 207.887, + "new_cases_smoothed_per_million": 145.911, + "total_deaths_per_million": 66.744, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.655, + "new_tests": 2131.0, + "total_tests": 114371.0, + "total_tests_per_thousand": 22.452, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 1648.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-23", + "total_cases": 33084.0, + "new_cases": 950.0, + "new_cases_smoothed": 763.857, + "total_deaths": 348.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6494.554, + "new_cases_per_million": 186.49, + "new_cases_smoothed_per_million": 149.949, + "total_deaths_per_million": 68.314, + "new_deaths_per_million": 1.57, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 2093.0, + "total_tests": 116464.0, + "total_tests_per_thousand": 22.862, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 1627.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-24", + "total_cases": 33820.0, + "new_cases": 736.0, + "new_cases_smoothed": 765.0, + "total_deaths": 355.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 6639.035, + "new_cases_per_million": 144.48, + "new_cases_smoothed_per_million": 150.173, + "total_deaths_per_million": 69.688, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.711, + "new_tests": 1533.0, + "total_tests": 117997.0, + "total_tests_per_thousand": 23.163, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 1626.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-25", + "total_cases": 34463.0, + "new_cases": 643.0, + "new_cases_smoothed": 768.429, + "total_deaths": 362.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6765.259, + "new_cases_per_million": 126.224, + "new_cases_smoothed_per_million": 150.846, + "total_deaths_per_million": 71.062, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.627, + "new_tests": 1304.0, + "total_tests": 119301.0, + "total_tests_per_thousand": 23.419, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 1661.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-26", + "total_cases": 35305.0, + "new_cases": 842.0, + "new_cases_smoothed": 808.857, + "total_deaths": 376.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 6930.548, + "new_cases_per_million": 165.289, + "new_cases_smoothed_per_million": 158.783, + "total_deaths_per_million": 73.811, + "new_deaths_per_million": 2.748, + "new_deaths_smoothed_per_million": 1.739, + "new_tests": 2048.0, + "total_tests": 121349.0, + "total_tests_per_thousand": 23.821, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 1735.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-27", + "total_cases": 36307.0, + "new_cases": 1002.0, + "new_cases_smoothed": 842.571, + "total_deaths": 386.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 7127.245, + "new_cases_per_million": 196.698, + "new_cases_smoothed_per_million": 165.401, + "total_deaths_per_million": 75.774, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.823, + "new_tests": 1859.0, + "total_tests": 123208.0, + "total_tests_per_thousand": 24.186, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 1829.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_units": "people tested (incl. non-PCR)", + "stringency_index": 66.67 + }, + { + "date": "2020-08-28", + "total_cases": 37292.0, + "new_cases": 985.0, + "new_cases_smoothed": 888.143, + "total_deaths": 397.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 7320.606, + "new_cases_per_million": 193.36, + "new_cases_smoothed_per_million": 174.347, + "total_deaths_per_million": 77.933, + "new_deaths_per_million": 2.159, + "new_deaths_smoothed_per_million": 1.795, + "new_tests": 2211.0, + "total_tests": 125419.0, + "total_tests_per_thousand": 24.62, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 1883.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_units": "people tested (incl. non-PCR)" + }, + { + "date": "2020-08-29", + "total_cases": 38485.0, + "new_cases": 1193.0, + "new_cases_smoothed": 907.286, + "total_deaths": 407.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 7554.798, + "new_cases_per_million": 234.192, + "new_cases_smoothed_per_million": 178.105, + "total_deaths_per_million": 79.896, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.879, + "new_tests": 2633.0, + "total_tests": 128052.0, + "total_tests_per_thousand": 25.137, + "new_tests_per_thousand": 0.517, + "new_tests_smoothed": 1954.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_units": "people tested (incl. non-PCR)" + }, + { + "date": "2020-08-30", + "total_cases": 39699.0, + "new_cases": 1214.0, + "new_cases_smoothed": 945.0, + "total_deaths": 418.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 7793.112, + "new_cases_per_million": 238.314, + "new_cases_smoothed_per_million": 185.508, + "total_deaths_per_million": 82.055, + "new_deaths_per_million": 2.159, + "new_deaths_smoothed_per_million": 1.963, + "new_tests": 804.0, + "total_tests": 128856.0, + "total_tests_per_thousand": 25.295, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 1770.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_units": "people tested (incl. non-PCR)" + }, + { + "date": "2020-08-31", + "total_cases": 39699.0, + "new_cases": 0.0, + "new_cases_smoothed": 839.857, + "total_deaths": 418.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 7793.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 164.868, + "total_deaths_per_million": 82.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.767, + "new_tests": 2767.0, + "total_tests": 131623.0, + "total_tests_per_thousand": 25.838, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 1947.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_units": "people tested (incl. non-PCR)" + }, + { + "date": "2020-09-01", + "total_cases": 41287.0, + "new_cases": 1588.0, + "new_cases_smoothed": 974.857, + "total_deaths": 436.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 8104.844, + "new_cases_per_million": 311.732, + "new_cases_smoothed_per_million": 191.369, + "total_deaths_per_million": 85.589, + "new_deaths_per_million": 3.533, + "new_deaths_smoothed_per_million": 2.075, + "new_tests": 1488.0, + "total_tests": 133111.0, + "total_tests_per_thousand": 26.13, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 1973.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_units": "people tested (incl. non-PCR)" + }, + { + "date": "2020-09-02", + "total_cases": 42184.0, + "new_cases": 897.0, + "new_cases_smoothed": 982.714, + "total_deaths": 443.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 8280.93, + "new_cases_per_million": 176.086, + "new_cases_smoothed_per_million": 192.912, + "total_deaths_per_million": 86.963, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.879 + }, + { + "date": "2020-09-03", + "total_cases": 43305.0, + "new_cases": 1121.0, + "new_cases_smoothed": 999.714, + "total_deaths": 453.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 8500.988, + "new_cases_per_million": 220.058, + "new_cases_smoothed_per_million": 196.249, + "total_deaths_per_million": 88.926, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.879 + }, + { + "date": "2020-09-04", + "total_cases": 44458.0, + "new_cases": 1153.0, + "new_cases_smoothed": 1023.714, + "total_deaths": 460.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 8727.327, + "new_cases_per_million": 226.34, + "new_cases_smoothed_per_million": 200.96, + "total_deaths_per_million": 90.3, + "new_deaths_per_million": 1.374, + "new_deaths_smoothed_per_million": 1.767 + }, + { + "date": "2020-09-05", + "total_cases": 45680.0, + "new_cases": 1222.0, + "new_cases_smoothed": 1027.857, + "total_deaths": 469.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 8967.212, + "new_cases_per_million": 239.885, + "new_cases_smoothed_per_million": 201.773, + "total_deaths_per_million": 92.067, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.739 + } + ] + }, + "CIV": { + "continent": "Africa", + "location": "Cote d'Ivoire", + "population": 26378275.0, + "population_density": 76.399, + "median_age": 18.7, + "aged_65_older": 2.933, + "aged_70_older": 1.582, + "gdp_per_capita": 3601.006, + "extreme_poverty": 28.2, + "cardiovasc_death_rate": 303.74, + "diabetes_prevalence": 2.42, + "handwashing_facilities": 19.351, + "life_expectancy": 57.78, + "data": [ + { + "date": "2020-03-12", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.038, + "new_cases_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 4.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.114, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.19, + "new_cases_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-18", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.19, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-19", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.227, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-20", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.341, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-21", + "total_cases": 14.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.531, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 17.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.644, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-23", + "total_cases": 25.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.948, + "new_cases_per_million": 0.303, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-24", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.948, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-25", + "total_cases": 73.0, + "new_cases": 48.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.767, + "new_cases_per_million": 1.82, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-26", + "total_cases": 80.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.033, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.401, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-27", + "total_cases": 96.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.639, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-28", + "total_cases": 101.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.829, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-29", + "total_cases": 140.0, + "new_cases": 39.0, + "new_cases_smoothed": 17.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.307, + "new_cases_per_million": 1.478, + "new_cases_smoothed_per_million": 0.666, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-30", + "total_cases": 165.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.255, + "new_cases_per_million": 0.948, + "new_cases_smoothed_per_million": 0.758, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-03-31", + "total_cases": 168.0, + "new_cases": 3.0, + "new_cases_smoothed": 20.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.369, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.774, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-04-01", + "total_cases": 168.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.369, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-04-02", + "total_cases": 190.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.203, + "new_cases_per_million": 0.834, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-04-03", + "total_cases": 194.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.355, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-04-04", + "total_cases": 218.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.264, + "new_cases_per_million": 0.91, + "new_cases_smoothed_per_million": 0.634, + "total_deaths_per_million": 0.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-04-05", + "total_cases": 245.0, + "new_cases": 27.0, + "new_cases_smoothed": 15.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.288, + "new_cases_per_million": 1.024, + "new_cases_smoothed_per_million": 0.569, + "total_deaths_per_million": 0.076, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-06", + "total_cases": 261.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.895, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-07", + "total_cases": 323.0, + "new_cases": 62.0, + "new_cases_smoothed": 22.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12.245, + "new_cases_per_million": 2.35, + "new_cases_smoothed_per_million": 0.839, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-08", + "total_cases": 349.0, + "new_cases": 26.0, + "new_cases_smoothed": 25.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.231, + "new_cases_per_million": 0.986, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-09", + "total_cases": 384.0, + "new_cases": 35.0, + "new_cases_smoothed": 27.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.557, + "new_cases_per_million": 1.327, + "new_cases_smoothed_per_million": 1.051, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-10", + "total_cases": 444.0, + "new_cases": 60.0, + "new_cases_smoothed": 35.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.832, + "new_cases_per_million": 2.275, + "new_cases_smoothed_per_million": 1.354, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-11", + "total_cases": 480.0, + "new_cases": 36.0, + "new_cases_smoothed": 37.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.197, + "new_cases_per_million": 1.365, + "new_cases_smoothed_per_million": 1.419, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-12", + "total_cases": 533.0, + "new_cases": 53.0, + "new_cases_smoothed": 41.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.206, + "new_cases_per_million": 2.009, + "new_cases_smoothed_per_million": 1.56, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 80.56 + }, + { + "date": "2020-04-13", + "total_cases": 574.0, + "new_cases": 41.0, + "new_cases_smoothed": 44.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.76, + "new_cases_per_million": 1.554, + "new_cases_smoothed_per_million": 1.695, + "total_deaths_per_million": 0.19, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 3658.0, + "total_tests_per_thousand": 0.139, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-14", + "total_cases": 626.0, + "new_cases": 52.0, + "new_cases_smoothed": 43.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.732, + "new_cases_per_million": 1.971, + "new_cases_smoothed_per_million": 1.641, + "total_deaths_per_million": 0.227, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 129.0, + "total_tests": 3787.0, + "total_tests_per_thousand": 0.144, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-15", + "total_cases": 626.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.5, + "total_deaths_per_million": 0.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 238.0, + "total_tests": 4025.0, + "total_tests_per_thousand": 0.153, + "new_tests_per_thousand": 0.009, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-16", + "total_cases": 654.0, + "new_cases": 28.0, + "new_cases_smoothed": 38.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.793, + "new_cases_per_million": 1.061, + "new_cases_smoothed_per_million": 1.462, + "total_deaths_per_million": 0.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 298.0, + "total_tests": 4323.0, + "total_tests_per_thousand": 0.164, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-17", + "total_cases": 688.0, + "new_cases": 34.0, + "new_cases_smoothed": 34.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.082, + "new_cases_per_million": 1.289, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 0.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 296.0, + "total_tests": 4619.0, + "total_tests_per_thousand": 0.175, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-18", + "total_cases": 742.0, + "new_cases": 54.0, + "new_cases_smoothed": 37.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 28.129, + "new_cases_per_million": 2.047, + "new_cases_smoothed_per_million": 1.419, + "total_deaths_per_million": 0.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 361.0, + "total_tests": 4980.0, + "total_tests_per_thousand": 0.189, + "new_tests_per_thousand": 0.014, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-19", + "total_cases": 801.0, + "new_cases": 59.0, + "new_cases_smoothed": 38.286, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.366, + "new_cases_per_million": 2.237, + "new_cases_smoothed_per_million": 1.451, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 399.0, + "total_tests": 5379.0, + "total_tests_per_thousand": 0.204, + "new_tests_per_thousand": 0.015, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-20", + "total_cases": 847.0, + "new_cases": 46.0, + "new_cases_smoothed": 39.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 32.11, + "new_cases_per_million": 1.744, + "new_cases_smoothed_per_million": 1.478, + "total_deaths_per_million": 0.341, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 351.0, + "total_tests": 5730.0, + "total_tests_per_thousand": 0.217, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 296.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 7.59, + "positive_rate": 0.132, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-21", + "total_cases": 879.0, + "new_cases": 32.0, + "new_cases_smoothed": 36.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 33.323, + "new_cases_per_million": 1.213, + "new_cases_smoothed_per_million": 1.37, + "total_deaths_per_million": 0.379, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 270.0, + "total_tests": 6000.0, + "total_tests_per_thousand": 0.227, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 316.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 8.743, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-22", + "total_cases": 916.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.429, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 34.726, + "new_cases_per_million": 1.403, + "new_cases_smoothed_per_million": 1.571, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 342.0, + "total_tests": 6342.0, + "total_tests_per_thousand": 0.24, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 331.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.99, + "positive_rate": 0.125, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-23", + "total_cases": 952.0, + "new_cases": 36.0, + "new_cases_smoothed": 42.571, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 36.09, + "new_cases_per_million": 1.365, + "new_cases_smoothed_per_million": 1.614, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 504.0, + "total_tests": 6846.0, + "total_tests_per_thousand": 0.26, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 8.456, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-24", + "total_cases": 1004.0, + "new_cases": 52.0, + "new_cases_smoothed": 45.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 38.062, + "new_cases_per_million": 1.971, + "new_cases_smoothed_per_million": 1.711, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 584.0, + "total_tests": 7430.0, + "total_tests_per_thousand": 0.282, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 402.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.905, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-25", + "total_cases": 1077.0, + "new_cases": 73.0, + "new_cases_smoothed": 47.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 40.829, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 1.814, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 302.0, + "total_tests": 7732.0, + "total_tests_per_thousand": 0.293, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.212, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-26", + "total_cases": 1111.0, + "new_cases": 34.0, + "new_cases_smoothed": 44.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.118, + "new_cases_per_million": 1.289, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 560.0, + "total_tests": 8292.0, + "total_tests_per_thousand": 0.314, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 416.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 9.394, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-27", + "total_cases": 1150.0, + "new_cases": 39.0, + "new_cases_smoothed": 43.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 43.596, + "new_cases_per_million": 1.478, + "new_cases_smoothed_per_million": 1.641, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 289.0, + "total_tests": 8581.0, + "total_tests_per_thousand": 0.325, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 407.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.402999999999999, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-28", + "total_cases": 1164.0, + "new_cases": 14.0, + "new_cases_smoothed": 40.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 44.127, + "new_cases_per_million": 0.531, + "new_cases_smoothed_per_million": 1.543, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 179.0, + "total_tests": 8760.0, + "total_tests_per_thousand": 0.332, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.677, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-29", + "total_cases": 1183.0, + "new_cases": 19.0, + "new_cases_smoothed": 38.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.848, + "new_cases_per_million": 0.72, + "new_cases_smoothed_per_million": 1.446, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 512.0, + "total_tests": 9272.0, + "total_tests_per_thousand": 0.352, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 419.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.985, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-30", + "total_cases": 1238.0, + "new_cases": 55.0, + "new_cases_smoothed": 40.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.933, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 385.0, + "total_tests": 9657.0, + "total_tests_per_thousand": 0.366, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 402.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.839, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-01", + "total_cases": 1275.0, + "new_cases": 37.0, + "new_cases_smoothed": 38.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.335, + "new_cases_per_million": 1.403, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 379.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 9.79, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-02", + "total_cases": 1333.0, + "new_cases": 58.0, + "new_cases_smoothed": 36.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 50.534, + "new_cases_per_million": 2.199, + "new_cases_smoothed_per_million": 1.386, + "total_deaths_per_million": 0.569, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.005, + "total_tests": 10508.0, + "total_tests_per_thousand": 0.398, + "new_tests_smoothed": 397.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.855, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-03", + "total_cases": 1362.0, + "new_cases": 29.0, + "new_cases_smoothed": 35.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.633, + "new_cases_per_million": 1.099, + "new_cases_smoothed_per_million": 1.359, + "total_deaths_per_million": 0.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 288.0, + "total_tests": 10796.0, + "total_tests_per_thousand": 0.409, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 358.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 9.984, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-04", + "total_cases": 1398.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.429, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.998, + "new_cases_per_million": 1.365, + "new_cases_smoothed_per_million": 1.343, + "total_deaths_per_million": 0.644, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 482.0, + "total_tests": 11278.0, + "total_tests_per_thousand": 0.428, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 385.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.867, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-05", + "total_cases": 1432.0, + "new_cases": 34.0, + "new_cases_smoothed": 38.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 54.287, + "new_cases_per_million": 1.289, + "new_cases_smoothed_per_million": 1.451, + "total_deaths_per_million": 0.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 170.0, + "total_tests": 11448.0, + "total_tests_per_thousand": 0.434, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 384.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.03, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-06", + "total_cases": 1464.0, + "new_cases": 32.0, + "new_cases_smoothed": 40.143, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 55.5, + "new_cases_per_million": 1.213, + "new_cases_smoothed_per_million": 1.522, + "total_deaths_per_million": 0.682, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 497.0, + "total_tests": 11945.0, + "total_tests_per_thousand": 0.453, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 382.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 9.516, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-07", + "total_cases": 1516.0, + "new_cases": 52.0, + "new_cases_smoothed": 39.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 57.472, + "new_cases_per_million": 1.971, + "new_cases_smoothed_per_million": 1.506, + "total_deaths_per_million": 0.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 367.0, + "total_tests": 12312.0, + "total_tests_per_thousand": 0.467, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 379.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 9.543, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-08", + "total_cases": 1571.0, + "new_cases": 55.0, + "new_cases_smoothed": 42.286, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 59.557, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 1.603, + "total_deaths_per_million": 0.758, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 456.0, + "total_tests": 12768.0, + "total_tests_per_thousand": 0.484, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 384.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.081, + "positive_rate": 0.11, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-09", + "total_cases": 1602.0, + "new_cases": 31.0, + "new_cases_smoothed": 38.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 60.732, + "new_cases_per_million": 1.175, + "new_cases_smoothed_per_million": 1.457, + "total_deaths_per_million": 0.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 573.0, + "total_tests": 13341.0, + "total_tests_per_thousand": 0.506, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 405.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.539000000000001, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-10", + "total_cases": 1667.0, + "new_cases": 65.0, + "new_cases_smoothed": 43.571, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 63.196, + "new_cases_per_million": 2.464, + "new_cases_smoothed_per_million": 1.652, + "total_deaths_per_million": 0.796, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 322.0, + "total_tests": 13663.0, + "total_tests_per_thousand": 0.518, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 410.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 9.41, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-11", + "total_cases": 1700.0, + "new_cases": 33.0, + "new_cases_smoothed": 43.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 64.447, + "new_cases_per_million": 1.251, + "new_cases_smoothed_per_million": 1.636, + "total_deaths_per_million": 0.796, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 499.0, + "total_tests": 14162.0, + "total_tests_per_thousand": 0.537, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 412.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 9.55, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-12", + "total_cases": 1730.0, + "new_cases": 30.0, + "new_cases_smoothed": 42.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 65.584, + "new_cases_per_million": 1.137, + "new_cases_smoothed_per_million": 1.614, + "total_deaths_per_million": 0.796, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 506.0, + "total_tests": 14668.0, + "total_tests_per_thousand": 0.556, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 460.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 10.805, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-13", + "total_cases": 1857.0, + "new_cases": 127.0, + "new_cases_smoothed": 56.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 70.399, + "new_cases_per_million": 4.815, + "new_cases_smoothed_per_million": 2.128, + "total_deaths_per_million": 0.796, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 592.0, + "total_tests": 15260.0, + "total_tests_per_thousand": 0.579, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 474.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 8.443, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-14", + "total_cases": 1912.0, + "new_cases": 55.0, + "new_cases_smoothed": 56.571, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 72.484, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 2.145, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 680.0, + "total_tests": 15940.0, + "total_tests_per_thousand": 0.604, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 9.157, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-15", + "total_cases": 1971.0, + "new_cases": 59.0, + "new_cases_smoothed": 57.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.721, + "new_cases_per_million": 2.237, + "new_cases_smoothed_per_million": 2.166, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 728.0, + "total_tests": 16668.0, + "total_tests_per_thousand": 0.632, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 557.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 9.747, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-05-16", + "total_cases": 2017.0, + "new_cases": 46.0, + "new_cases_smoothed": 59.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 76.464, + "new_cases_per_million": 1.744, + "new_cases_smoothed_per_million": 2.248, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 845.0, + "total_tests": 17513.0, + "total_tests_per_thousand": 0.664, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 596.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 10.052999999999999, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-17", + "total_cases": 2061.0, + "new_cases": 44.0, + "new_cases_smoothed": 56.286, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 78.132, + "new_cases_per_million": 1.668, + "new_cases_smoothed_per_million": 2.134, + "total_deaths_per_million": 0.948, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 790.0, + "total_tests": 18303.0, + "total_tests_per_thousand": 0.694, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 663.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 11.779000000000002, + "positive_rate": 0.085, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-18", + "total_cases": 2109.0, + "new_cases": 48.0, + "new_cases_smoothed": 58.429, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 79.952, + "new_cases_per_million": 1.82, + "new_cases_smoothed_per_million": 2.215, + "total_deaths_per_million": 1.024, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 305.0, + "total_tests": 18608.0, + "total_tests_per_thousand": 0.705, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 635.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 10.868, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-19", + "total_cases": 2119.0, + "new_cases": 10.0, + "new_cases_smoothed": 55.571, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 80.331, + "new_cases_per_million": 0.379, + "new_cases_smoothed_per_million": 2.107, + "total_deaths_per_million": 1.061, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 566.0, + "total_tests": 19174.0, + "total_tests_per_thousand": 0.727, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 11.589, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-20", + "total_cases": 2153.0, + "new_cases": 34.0, + "new_cases_smoothed": 42.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 81.62, + "new_cases_per_million": 1.289, + "new_cases_smoothed_per_million": 1.603, + "total_deaths_per_million": 1.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 840.0, + "total_tests": 20014.0, + "total_tests_per_thousand": 0.759, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 679.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 16.057000000000002, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-21", + "total_cases": 2231.0, + "new_cases": 78.0, + "new_cases_smoothed": 45.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 84.577, + "new_cases_per_million": 2.957, + "new_cases_smoothed_per_million": 1.728, + "total_deaths_per_million": 1.099, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1055.0, + "total_tests": 21069.0, + "total_tests_per_thousand": 0.799, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 733.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 16.085, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-22", + "total_cases": 2231.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 84.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.408, + "total_deaths_per_million": 1.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1164.0, + "total_tests": 22233.0, + "total_tests_per_thousand": 0.843, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 21.404, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-23", + "total_cases": 2301.0, + "new_cases": 70.0, + "new_cases_smoothed": 40.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 87.231, + "new_cases_per_million": 2.654, + "new_cases_smoothed_per_million": 1.538, + "total_deaths_per_million": 1.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 727.0, + "total_tests": 22960.0, + "total_tests_per_thousand": 0.87, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 19.176, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-24", + "total_cases": 2366.0, + "new_cases": 65.0, + "new_cases_smoothed": 43.571, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 89.695, + "new_cases_per_million": 2.464, + "new_cases_smoothed_per_million": 1.652, + "total_deaths_per_million": 1.137, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 484.0, + "total_tests": 23444.0, + "total_tests_per_thousand": 0.889, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 734.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 16.846, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-25", + "total_cases": 2376.0, + "new_cases": 10.0, + "new_cases_smoothed": 38.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 90.074, + "new_cases_per_million": 0.379, + "new_cases_smoothed_per_million": 1.446, + "total_deaths_per_million": 1.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 873.0, + "total_tests": 24317.0, + "total_tests_per_thousand": 0.922, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 816.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 21.393, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-26", + "total_cases": 2423.0, + "new_cases": 47.0, + "new_cases_smoothed": 43.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 91.856, + "new_cases_per_million": 1.782, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 1.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 782.0, + "total_tests": 25099.0, + "total_tests_per_thousand": 0.952, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 846.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 19.48, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-27", + "total_cases": 2477.0, + "new_cases": 54.0, + "new_cases_smoothed": 46.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 93.903, + "new_cases_per_million": 2.047, + "new_cases_smoothed_per_million": 1.755, + "total_deaths_per_million": 1.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 425.0, + "total_tests": 25524.0, + "total_tests_per_thousand": 0.968, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 787.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 17.003, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-28", + "total_cases": 2556.0, + "new_cases": 79.0, + "new_cases_smoothed": 46.429, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 96.898, + "new_cases_per_million": 2.995, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 1.175, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 497.0, + "total_tests": 26021.0, + "total_tests_per_thousand": 0.986, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 707.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 15.228, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-29", + "total_cases": 2641.0, + "new_cases": 85.0, + "new_cases_smoothed": 58.571, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 100.12, + "new_cases_per_million": 3.222, + "new_cases_smoothed_per_million": 2.22, + "total_deaths_per_million": 1.213, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 527.0, + "total_tests": 26548.0, + "total_tests_per_thousand": 1.006, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 10.517000000000001, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-30", + "total_cases": 2750.0, + "new_cases": 109.0, + "new_cases_smoothed": 64.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.252, + "new_cases_per_million": 4.132, + "new_cases_smoothed_per_million": 2.432, + "total_deaths_per_million": 1.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 357.0, + "total_tests": 26905.0, + "total_tests_per_thousand": 1.02, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 564.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.793, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-05-31", + "total_cases": 2799.0, + "new_cases": 49.0, + "new_cases_smoothed": 61.857, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 106.11, + "new_cases_per_million": 1.858, + "new_cases_smoothed_per_million": 2.345, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 134.0, + "total_tests": 27039.0, + "total_tests_per_thousand": 1.025, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 514.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 8.309, + "positive_rate": 0.12, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-01", + "total_cases": 2833.0, + "new_cases": 34.0, + "new_cases_smoothed": 65.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 107.399, + "new_cases_per_million": 1.289, + "new_cases_smoothed_per_million": 2.475, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 611.0, + "total_tests": 27650.0, + "total_tests_per_thousand": 1.048, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 476.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 7.291, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-02", + "total_cases": 2951.0, + "new_cases": 118.0, + "new_cases_smoothed": 75.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 111.872, + "new_cases_per_million": 4.473, + "new_cases_smoothed_per_million": 2.859, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 470.0, + "total_tests": 28120.0, + "total_tests_per_thousand": 1.066, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 432.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 5.727, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-03", + "total_cases": 3024.0, + "new_cases": 73.0, + "new_cases_smoothed": 78.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 114.64, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 2.962, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 402.0, + "total_tests": 28522.0, + "total_tests_per_thousand": 1.081, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 428.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 5.477, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-04", + "total_cases": 3024.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 114.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.535, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 706.0, + "total_tests": 29228.0, + "total_tests_per_thousand": 1.108, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 458.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 6.85, + "positive_rate": 0.146, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-05", + "total_cases": 3262.0, + "new_cases": 238.0, + "new_cases_smoothed": 88.714, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 123.662, + "new_cases_per_million": 9.023, + "new_cases_smoothed_per_million": 3.363, + "total_deaths_per_million": 1.327, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 628.0, + "total_tests": 29856.0, + "total_tests_per_thousand": 1.132, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 5.332000000000001, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-06", + "total_cases": 3431.0, + "new_cases": 169.0, + "new_cases_smoothed": 97.286, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 130.069, + "new_cases_per_million": 6.407, + "new_cases_smoothed_per_million": 3.688, + "total_deaths_per_million": 1.365, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 756.0, + "total_tests": 30612.0, + "total_tests_per_thousand": 1.161, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 530.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 5.4479999999999995, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-07", + "total_cases": 3557.0, + "new_cases": 126.0, + "new_cases_smoothed": 108.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 134.846, + "new_cases_per_million": 4.777, + "new_cases_smoothed_per_million": 4.105, + "total_deaths_per_million": 1.365, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 937.0, + "total_tests": 31549.0, + "total_tests_per_thousand": 1.196, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 5.947, + "positive_rate": 0.168, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-08", + "total_cases": 3739.0, + "new_cases": 182.0, + "new_cases_smoothed": 129.429, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 141.745, + "new_cases_per_million": 6.9, + "new_cases_smoothed_per_million": 4.907, + "total_deaths_per_million": 1.365, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 800.0, + "total_tests": 32349.0, + "total_tests_per_thousand": 1.226, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 671.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 5.184, + "positive_rate": 0.193, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-09", + "total_cases": 3881.0, + "new_cases": 142.0, + "new_cases_smoothed": 132.857, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 147.129, + "new_cases_per_million": 5.383, + "new_cases_smoothed_per_million": 5.037, + "total_deaths_per_million": 1.441, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 515.0, + "total_tests": 32864.0, + "total_tests_per_thousand": 1.246, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 678.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 5.103, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-10", + "total_cases": 3995.0, + "new_cases": 114.0, + "new_cases_smoothed": 138.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 151.45, + "new_cases_per_million": 4.322, + "new_cases_smoothed_per_million": 5.259, + "total_deaths_per_million": 1.441, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 612.0, + "total_tests": 33476.0, + "total_tests_per_thousand": 1.269, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 708.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 5.104, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-11", + "total_cases": 4181.0, + "new_cases": 186.0, + "new_cases_smoothed": 165.286, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 158.502, + "new_cases_per_million": 7.051, + "new_cases_smoothed_per_million": 6.266, + "total_deaths_per_million": 1.554, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 796.0, + "total_tests": 34272.0, + "total_tests_per_thousand": 1.299, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 4.362, + "positive_rate": 0.22899999999999998, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-12", + "total_cases": 4404.0, + "new_cases": 223.0, + "new_cases_smoothed": 163.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 166.956, + "new_cases_per_million": 8.454, + "new_cases_smoothed_per_million": 6.185, + "total_deaths_per_million": 1.554, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 750.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 4.5969999999999995, + "positive_rate": 0.218, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-13", + "total_cases": 4684.0, + "new_cases": 280.0, + "new_cases_smoothed": 179.0, + "total_deaths": 45.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 177.57, + "new_cases_per_million": 10.615, + "new_cases_smoothed_per_million": 6.786, + "total_deaths_per_million": 1.706, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.049, + "total_tests": 35935.0, + "total_tests_per_thousand": 1.362, + "new_tests_smoothed": 760.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 4.246, + "positive_rate": 0.23600000000000002, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 4848.0, + "new_cases": 164.0, + "new_cases_smoothed": 184.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 183.788, + "new_cases_per_million": 6.217, + "new_cases_smoothed_per_million": 6.992, + "total_deaths_per_million": 1.706, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 848.0, + "total_tests": 36783.0, + "total_tests_per_thousand": 1.394, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 748.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 4.056, + "positive_rate": 0.247, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 5084.0, + "new_cases": 236.0, + "new_cases_smoothed": 192.143, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 192.734, + "new_cases_per_million": 8.947, + "new_cases_smoothed_per_million": 7.284, + "total_deaths_per_million": 1.706, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 870.0, + "total_tests": 37653.0, + "total_tests_per_thousand": 1.427, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 758.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 3.945, + "positive_rate": 0.253, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-16", + "total_cases": 5439.0, + "new_cases": 355.0, + "new_cases_smoothed": 222.571, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 206.192, + "new_cases_per_million": 13.458, + "new_cases_smoothed_per_million": 8.438, + "total_deaths_per_million": 1.744, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 984.0, + "total_tests": 38637.0, + "total_tests_per_thousand": 1.465, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 825.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 3.707, + "positive_rate": 0.27, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 5679.0, + "new_cases": 240.0, + "new_cases_smoothed": 240.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 215.291, + "new_cases_per_million": 9.098, + "new_cases_smoothed_per_million": 9.12, + "total_deaths_per_million": 1.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1214.0, + "total_tests": 39851.0, + "total_tests_per_thousand": 1.511, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 911.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 3.787, + "positive_rate": 0.264, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 6063.0, + "new_cases": 384.0, + "new_cases_smoothed": 268.857, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 229.848, + "new_cases_per_million": 14.557, + "new_cases_smoothed_per_million": 10.192, + "total_deaths_per_million": 1.82, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1592.0, + "total_tests": 41443.0, + "total_tests_per_thousand": 1.571, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1024.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 3.8089999999999997, + "positive_rate": 0.263, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 6063.0, + "new_cases": 0.0, + "new_cases_smoothed": 237.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 229.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.985, + "total_deaths_per_million": 1.82, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1632.0, + "total_tests": 43075.0, + "total_tests_per_thousand": 1.633, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1139.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 4.806, + "positive_rate": 0.20800000000000002, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 6444.0, + "new_cases": 381.0, + "new_cases_smoothed": 251.429, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 244.292, + "new_cases_per_million": 14.444, + "new_cases_smoothed_per_million": 9.532, + "total_deaths_per_million": 1.858, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1155.0, + "total_tests": 44230.0, + "total_tests_per_thousand": 1.677, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 1185.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 4.713, + "positive_rate": 0.212, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 6874.0, + "new_cases": 430.0, + "new_cases_smoothed": 289.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 260.593, + "new_cases_per_million": 16.301, + "new_cases_smoothed_per_million": 10.972, + "total_deaths_per_million": 1.858, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 922.0, + "total_tests": 45152.0, + "total_tests_per_thousand": 1.712, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1196.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 4.132, + "positive_rate": 0.242, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-22", + "total_cases": 7492.0, + "new_cases": 618.0, + "new_cases_smoothed": 344.0, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 284.022, + "new_cases_per_million": 23.428, + "new_cases_smoothed_per_million": 13.041, + "total_deaths_per_million": 1.933, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 844.0, + "total_tests": 45996.0, + "total_tests_per_thousand": 1.744, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1192.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 3.465, + "positive_rate": 0.289, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-23", + "total_cases": 7492.0, + "new_cases": 0.0, + "new_cases_smoothed": 293.286, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 284.022, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.118, + "total_deaths_per_million": 2.047, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1303.0, + "total_tests": 47299.0, + "total_tests_per_thousand": 1.793, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 4.218, + "positive_rate": 0.237, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-24", + "total_cases": 7904.0, + "new_cases": 412.0, + "new_cases_smoothed": 317.857, + "total_deaths": 58.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 299.641, + "new_cases_per_million": 15.619, + "new_cases_smoothed_per_million": 12.05, + "total_deaths_per_million": 2.199, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 1041.0, + "total_tests": 48340.0, + "total_tests_per_thousand": 1.833, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1213.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 3.8160000000000003, + "positive_rate": 0.262, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-25", + "total_cases": 7904.0, + "new_cases": 0.0, + "new_cases_smoothed": 263.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 299.641, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.97, + "total_deaths_per_million": 2.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1012.0, + "total_tests": 49352.0, + "total_tests_per_thousand": 1.871, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1130.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 4.297, + "positive_rate": 0.233, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 8164.0, + "new_cases": 260.0, + "new_cases_smoothed": 300.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 309.497, + "new_cases_per_million": 9.857, + "new_cases_smoothed_per_million": 11.378, + "total_deaths_per_million": 2.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1562.0, + "total_tests": 50914.0, + "total_tests_per_thousand": 1.93, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 3.7319999999999998, + "positive_rate": 0.268, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-06-27", + "total_cases": 8334.0, + "new_cases": 170.0, + "new_cases_smoothed": 270.0, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 315.942, + "new_cases_per_million": 6.445, + "new_cases_smoothed_per_million": 10.236, + "total_deaths_per_million": 2.275, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1347.0, + "total_tests": 52261.0, + "total_tests_per_thousand": 1.981, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 4.248, + "positive_rate": 0.235, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-06-28", + "total_cases": 8739.0, + "new_cases": 405.0, + "new_cases_smoothed": 266.429, + "total_deaths": 64.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 331.295, + "new_cases_per_million": 15.354, + "new_cases_smoothed_per_million": 10.1, + "total_deaths_per_million": 2.426, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 624.0, + "total_tests": 52885.0, + "total_tests_per_thousand": 2.005, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1105.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 4.147, + "positive_rate": 0.24100000000000002, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-06-29", + "total_cases": 8944.0, + "new_cases": 205.0, + "new_cases_smoothed": 207.429, + "total_deaths": 66.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 339.067, + "new_cases_per_million": 7.772, + "new_cases_smoothed_per_million": 7.864, + "total_deaths_per_million": 2.502, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 1053.0, + "total_tests": 53938.0, + "total_tests_per_thousand": 2.045, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1135.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 5.472, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-06-30", + "total_cases": 9214.0, + "new_cases": 270.0, + "new_cases_smoothed": 246.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 349.303, + "new_cases_per_million": 10.236, + "new_cases_smoothed_per_million": 9.326, + "total_deaths_per_million": 2.502, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 2012.0, + "total_tests": 55950.0, + "total_tests_per_thousand": 2.121, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1236.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 5.024, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-01", + "total_cases": 9499.0, + "new_cases": 285.0, + "new_cases_smoothed": 227.857, + "total_deaths": 68.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 360.107, + "new_cases_per_million": 10.804, + "new_cases_smoothed_per_million": 8.638, + "total_deaths_per_million": 2.578, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1824.0, + "total_tests": 57774.0, + "total_tests_per_thousand": 2.19, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1348.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 5.916, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-02", + "total_cases": 9702.0, + "new_cases": 203.0, + "new_cases_smoothed": 256.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 367.803, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 9.737, + "total_deaths_per_million": 2.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1608.0, + "total_tests": 59382.0, + "total_tests_per_thousand": 2.251, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 1433.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 5.579, + "positive_rate": 0.179, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-03", + "total_cases": 9992.0, + "new_cases": 290.0, + "new_cases_smoothed": 261.143, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 378.797, + "new_cases_per_million": 10.994, + "new_cases_smoothed_per_million": 9.9, + "total_deaths_per_million": 2.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1270.0, + "total_tests": 60652.0, + "total_tests_per_thousand": 2.299, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1391.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 5.327000000000001, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-04", + "total_cases": 10244.0, + "new_cases": 252.0, + "new_cases_smoothed": 272.857, + "total_deaths": 70.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 388.35, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 10.344, + "total_deaths_per_million": 2.654, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1553.0, + "total_tests": 62205.0, + "total_tests_per_thousand": 2.358, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1421.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 5.207999999999999, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-05", + "total_cases": 10462.0, + "new_cases": 218.0, + "new_cases_smoothed": 246.143, + "total_deaths": 72.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 396.614, + "new_cases_per_million": 8.264, + "new_cases_smoothed_per_million": 9.331, + "total_deaths_per_million": 2.73, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2219.0, + "total_tests": 64424.0, + "total_tests_per_thousand": 2.442, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1648.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 6.695, + "positive_rate": 0.149, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-06", + "total_cases": 10772.0, + "new_cases": 310.0, + "new_cases_smoothed": 261.143, + "total_deaths": 74.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 408.366, + "new_cases_per_million": 11.752, + "new_cases_smoothed_per_million": 9.9, + "total_deaths_per_million": 2.805, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1464.0, + "total_tests": 65888.0, + "total_tests_per_thousand": 2.498, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1707.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 6.537000000000001, + "positive_rate": 0.153, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-07", + "total_cases": 10966.0, + "new_cases": 194.0, + "new_cases_smoothed": 250.286, + "total_deaths": 75.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 415.721, + "new_cases_per_million": 7.355, + "new_cases_smoothed_per_million": 9.488, + "total_deaths_per_million": 2.843, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 1280.0, + "total_tests": 67168.0, + "total_tests_per_thousand": 2.546, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1603.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 6.405, + "positive_rate": 0.156, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-08", + "total_cases": 10966.0, + "new_cases": 0.0, + "new_cases_smoothed": 209.571, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 415.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.945, + "total_deaths_per_million": 2.843, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1841.0, + "total_tests": 69009.0, + "total_tests_per_thousand": 2.616, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1605.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 7.6579999999999995, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-09", + "total_cases": 11504.0, + "new_cases": 538.0, + "new_cases_smoothed": 257.429, + "total_deaths": 78.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 436.116, + "new_cases_per_million": 20.396, + "new_cases_smoothed_per_million": 9.759, + "total_deaths_per_million": 2.957, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1405.0, + "total_tests": 70414.0, + "total_tests_per_thousand": 2.669, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 1576.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 6.122000000000001, + "positive_rate": 0.163, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-10", + "total_cases": 11750.0, + "new_cases": 246.0, + "new_cases_smoothed": 251.143, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 445.442, + "new_cases_per_million": 9.326, + "new_cases_smoothed_per_million": 9.521, + "total_deaths_per_million": 2.995, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 2185.0, + "total_tests": 72599.0, + "total_tests_per_thousand": 2.752, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1707.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 6.797000000000001, + "positive_rate": 0.147, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-11", + "total_cases": 12052.0, + "new_cases": 302.0, + "new_cases_smoothed": 258.286, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 456.891, + "new_cases_per_million": 11.449, + "new_cases_smoothed_per_million": 9.792, + "total_deaths_per_million": 3.071, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 2281.0, + "total_tests": 74880.0, + "total_tests_per_thousand": 2.839, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 1811.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 7.0120000000000005, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-12", + "total_cases": 12443.0, + "new_cases": 391.0, + "new_cases_smoothed": 283.0, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 471.714, + "new_cases_per_million": 14.823, + "new_cases_smoothed_per_million": 10.729, + "total_deaths_per_million": 3.109, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1370.0, + "total_tests": 76250.0, + "total_tests_per_thousand": 2.891, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1689.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 5.968, + "positive_rate": 0.168, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-13", + "total_cases": 12766.0, + "new_cases": 323.0, + "new_cases_smoothed": 284.857, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 483.959, + "new_cases_per_million": 12.245, + "new_cases_smoothed_per_million": 10.799, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 1134.0, + "total_tests": 77384.0, + "total_tests_per_thousand": 2.934, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1642.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 5.763999999999999, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-14", + "total_cases": 12872.0, + "new_cases": 106.0, + "new_cases_smoothed": 272.286, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 487.977, + "new_cases_per_million": 4.018, + "new_cases_smoothed_per_million": 10.322, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 682.0, + "total_tests": 78066.0, + "total_tests_per_thousand": 2.959, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1557.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 5.718, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-15", + "total_cases": 13037.0, + "new_cases": 165.0, + "new_cases_smoothed": 295.857, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 494.232, + "new_cases_per_million": 6.255, + "new_cases_smoothed_per_million": 11.216, + "total_deaths_per_million": 3.298, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 1829.0, + "total_tests": 79895.0, + "total_tests_per_thousand": 3.029, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1555.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 5.256, + "positive_rate": 0.19, + "tests_units": "samples tested", + "stringency_index": 57.87 + }, + { + "date": "2020-07-16", + "total_cases": 13403.0, + "new_cases": 366.0, + "new_cases_smoothed": 271.286, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 508.108, + "new_cases_per_million": 13.875, + "new_cases_smoothed_per_million": 10.284, + "total_deaths_per_million": 3.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 738.0, + "total_tests": 80633.0, + "total_tests_per_thousand": 3.057, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1460.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 5.382000000000001, + "positive_rate": 0.18600000000000003, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-17", + "total_cases": 13554.0, + "new_cases": 151.0, + "new_cases_smoothed": 257.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 513.832, + "new_cases_per_million": 5.724, + "new_cases_smoothed_per_million": 9.77, + "total_deaths_per_million": 3.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 746.0, + "total_tests": 81379.0, + "total_tests_per_thousand": 3.085, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1254.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 4.8660000000000005, + "positive_rate": 0.20600000000000002, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-18", + "total_cases": 13696.0, + "new_cases": 142.0, + "new_cases_smoothed": 234.857, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 519.215, + "new_cases_per_million": 5.383, + "new_cases_smoothed_per_million": 8.903, + "total_deaths_per_million": 3.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1237.0, + "total_tests": 82616.0, + "total_tests_per_thousand": 3.132, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 1105.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 4.705, + "positive_rate": 0.213, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-19", + "total_cases": 13912.0, + "new_cases": 216.0, + "new_cases_smoothed": 209.857, + "total_deaths": 91.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 527.404, + "new_cases_per_million": 8.189, + "new_cases_smoothed_per_million": 7.956, + "total_deaths_per_million": 3.45, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 1137.0, + "total_tests": 83753.0, + "total_tests_per_thousand": 3.175, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1072.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 5.1080000000000005, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-20", + "total_cases": 14119.0, + "new_cases": 207.0, + "new_cases_smoothed": 193.286, + "total_deaths": 92.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 535.251, + "new_cases_per_million": 7.847, + "new_cases_smoothed_per_million": 7.327, + "total_deaths_per_million": 3.488, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1656.0, + "total_tests": 85409.0, + "total_tests_per_thousand": 3.238, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 5.928999999999999, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-21", + "total_cases": 14312.0, + "new_cases": 193.0, + "new_cases_smoothed": 205.714, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 542.568, + "new_cases_per_million": 7.317, + "new_cases_smoothed_per_million": 7.799, + "total_deaths_per_million": 3.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1143.0, + "total_tests": 86552.0, + "total_tests_per_thousand": 3.281, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1212.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 5.892, + "positive_rate": 0.17, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-22", + "total_cases": 14531.0, + "new_cases": 219.0, + "new_cases_smoothed": 213.429, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 550.87, + "new_cases_per_million": 8.302, + "new_cases_smoothed_per_million": 8.091, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1131.0, + "total_tests": 87683.0, + "total_tests_per_thousand": 3.324, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1113.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 5.215, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-23", + "total_cases": 14531.0, + "new_cases": 0.0, + "new_cases_smoothed": 161.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 550.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.109, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 2237.0, + "total_tests": 89920.0, + "total_tests_per_thousand": 3.409, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 1327.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 8.235, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-24", + "total_cases": 15001.0, + "new_cases": 470.0, + "new_cases_smoothed": 206.714, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 568.688, + "new_cases_per_million": 17.818, + "new_cases_smoothed_per_million": 7.837, + "total_deaths_per_million": 3.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1735.0, + "total_tests": 91655.0, + "total_tests_per_thousand": 3.475, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1468.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 7.102, + "positive_rate": 0.141, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-25", + "total_cases": 15253.0, + "new_cases": 252.0, + "new_cases_smoothed": 222.429, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 578.241, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 8.432, + "total_deaths_per_million": 3.564, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 2004.0, + "total_tests": 93659.0, + "total_tests_per_thousand": 3.551, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1578.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 7.093999999999999, + "positive_rate": 0.141, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-26", + "total_cases": 15494.0, + "new_cases": 241.0, + "new_cases_smoothed": 226.0, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 587.377, + "new_cases_per_million": 9.136, + "new_cases_smoothed_per_million": 8.568, + "total_deaths_per_million": 3.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 1446.0, + "total_tests": 95105.0, + "total_tests_per_thousand": 3.605, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1622.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 7.1770000000000005, + "positive_rate": 0.139, + "tests_units": "samples tested", + "stringency_index": 60.65 + }, + { + "date": "2020-07-27", + "total_cases": 15596.0, + "new_cases": 102.0, + "new_cases_smoothed": 211.0, + "total_deaths": 96.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 591.244, + "new_cases_per_million": 3.867, + "new_cases_smoothed_per_million": 7.999, + "total_deaths_per_million": 3.639, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 992.0, + "total_tests": 96097.0, + "total_tests_per_thousand": 3.643, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1527.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 7.237, + "positive_rate": 0.138, + "tests_units": "samples tested", + "stringency_index": 44.91 + }, + { + "date": "2020-07-28", + "total_cases": 15655.0, + "new_cases": 59.0, + "new_cases_smoothed": 191.857, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 593.481, + "new_cases_per_million": 2.237, + "new_cases_smoothed_per_million": 7.273, + "total_deaths_per_million": 3.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 671.0, + "total_tests": 96768.0, + "total_tests_per_thousand": 3.668, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1459.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 7.605, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 44.91 + }, + { + "date": "2020-07-29", + "total_cases": 15713.0, + "new_cases": 58.0, + "new_cases_smoothed": 168.857, + "total_deaths": 98.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 595.68, + "new_cases_per_million": 2.199, + "new_cases_smoothed_per_million": 6.401, + "total_deaths_per_million": 3.715, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1246.0, + "total_tests": 98014.0, + "total_tests_per_thousand": 3.716, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 1476.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 8.741, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 44.91 + }, + { + "date": "2020-07-30", + "total_cases": 15813.0, + "new_cases": 100.0, + "new_cases_smoothed": 183.143, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 599.471, + "new_cases_per_million": 3.791, + "new_cases_smoothed_per_million": 6.943, + "total_deaths_per_million": 3.753, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1720.0, + "total_tests": 99734.0, + "total_tests_per_thousand": 3.781, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1402.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 7.655, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 44.91 + }, + { + "date": "2020-07-31", + "total_cases": 15978.0, + "new_cases": 165.0, + "new_cases_smoothed": 139.571, + "total_deaths": 100.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 605.726, + "new_cases_per_million": 6.255, + "new_cases_smoothed_per_million": 5.291, + "total_deaths_per_million": 3.791, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 951.0, + "total_tests": 100685.0, + "total_tests_per_thousand": 3.817, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1290.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 9.243, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-01", + "total_cases": 16047.0, + "new_cases": 69.0, + "new_cases_smoothed": 113.429, + "total_deaths": 102.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 608.342, + "new_cases_per_million": 2.616, + "new_cases_smoothed_per_million": 4.3, + "total_deaths_per_million": 3.867, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 898.0, + "total_tests": 101583.0, + "total_tests_per_thousand": 3.851, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1132.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 9.98, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-02", + "total_cases": 16109.0, + "new_cases": 62.0, + "new_cases_smoothed": 87.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 610.692, + "new_cases_per_million": 2.35, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 3.867, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1102.0, + "total_tests": 102685.0, + "total_tests_per_thousand": 3.893, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 1083.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 12.327, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-03", + "total_cases": 16182.0, + "new_cases": 73.0, + "new_cases_smoothed": 83.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 613.459, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 3.174, + "total_deaths_per_million": 3.867, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 427.0, + "total_tests": 103112.0, + "total_tests_per_thousand": 3.909, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1002.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 11.969000000000001, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-04", + "total_cases": 16220.0, + "new_cases": 38.0, + "new_cases_smoothed": 80.714, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 614.9, + "new_cases_per_million": 1.441, + "new_cases_smoothed_per_million": 3.06, + "total_deaths_per_million": 3.867, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 512.0, + "total_tests": 103624.0, + "total_tests_per_thousand": 3.928, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 12.129000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-05", + "total_cases": 16293.0, + "new_cases": 73.0, + "new_cases_smoothed": 82.857, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 617.667, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 3.141, + "total_deaths_per_million": 3.905, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 870.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 10.5, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-06", + "total_cases": 16349.0, + "new_cases": 56.0, + "new_cases_smoothed": 76.571, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 619.79, + "new_cases_per_million": 2.123, + "new_cases_smoothed_per_million": 2.903, + "total_deaths_per_million": 3.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "total_tests": 104584.0, + "total_tests_per_thousand": 3.965, + "new_tests_smoothed": 693.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 9.05, + "positive_rate": 0.11, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-07", + "total_cases": 16447.0, + "new_cases": 98.0, + "new_cases_smoothed": 67.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 623.506, + "new_cases_per_million": 3.715, + "new_cases_smoothed_per_million": 2.54, + "total_deaths_per_million": 3.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 924.0, + "total_tests": 105508.0, + "total_tests_per_thousand": 4.0, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 689.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 10.284, + "positive_rate": 0.09699999999999999, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-08", + "total_cases": 16524.0, + "new_cases": 77.0, + "new_cases_smoothed": 68.143, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 626.425, + "new_cases_per_million": 2.919, + "new_cases_smoothed_per_million": 2.583, + "total_deaths_per_million": 3.943, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1245.0, + "total_tests": 106753.0, + "total_tests_per_thousand": 4.047, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 739.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 10.845, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-09", + "total_cases": 16620.0, + "new_cases": 96.0, + "new_cases_smoothed": 73.0, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 630.064, + "new_cases_per_million": 3.639, + "new_cases_smoothed_per_million": 2.767, + "total_deaths_per_million": 3.943, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2109.0, + "total_tests": 108862.0, + "total_tests_per_thousand": 4.127, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 882.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 12.082, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-10", + "total_cases": 16715.0, + "new_cases": 95.0, + "new_cases_smoothed": 76.143, + "total_deaths": 105.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 633.665, + "new_cases_per_million": 3.601, + "new_cases_smoothed_per_million": 2.887, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 815.0, + "total_tests": 109677.0, + "total_tests_per_thousand": 4.158, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 12.319, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-11", + "total_cases": 16798.0, + "new_cases": 83.0, + "new_cases_smoothed": 82.571, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 636.812, + "new_cases_per_million": 3.147, + "new_cases_smoothed_per_million": 3.13, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 682.0, + "total_tests": 110359.0, + "total_tests_per_thousand": 4.184, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 962.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 11.651, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-12", + "total_cases": 16847.0, + "new_cases": 49.0, + "new_cases_smoothed": 79.143, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 638.67, + "new_cases_per_million": 1.858, + "new_cases_smoothed_per_million": 3.0, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 252.0, + "total_tests": 110611.0, + "total_tests_per_thousand": 4.193, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 11.751, + "positive_rate": 0.085, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-13", + "total_cases": 16847.0, + "new_cases": 0.0, + "new_cases_smoothed": 71.143, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 638.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.697, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 521.0, + "total_tests": 111132.0, + "total_tests_per_thousand": 4.213, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 935.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 13.142999999999999, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-14", + "total_cases": 16889.0, + "new_cases": 42.0, + "new_cases_smoothed": 63.143, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 640.262, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 2.394, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 929.0, + "total_tests": 112061.0, + "total_tests_per_thousand": 4.248, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 936.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 14.824000000000002, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-15", + "total_cases": 16935.0, + "new_cases": 46.0, + "new_cases_smoothed": 58.714, + "total_deaths": 106.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 642.006, + "new_cases_per_million": 1.744, + "new_cases_smoothed_per_million": 2.226, + "total_deaths_per_million": 4.018, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 870.0, + "total_tests": 112931.0, + "total_tests_per_thousand": 4.281, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 15.039000000000001, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-16", + "total_cases": 16993.0, + "new_cases": 58.0, + "new_cases_smoothed": 53.286, + "total_deaths": 108.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 644.204, + "new_cases_per_million": 2.199, + "new_cases_smoothed_per_million": 2.02, + "total_deaths_per_million": 4.094, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 457.0, + "total_tests": 113388.0, + "total_tests_per_thousand": 4.299, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 647.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 12.142000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-17", + "total_cases": 17026.0, + "new_cases": 33.0, + "new_cases_smoothed": 44.429, + "total_deaths": 110.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 645.455, + "new_cases_per_million": 1.251, + "new_cases_smoothed_per_million": 1.684, + "total_deaths_per_million": 4.17, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1032.0, + "total_tests": 114420.0, + "total_tests_per_thousand": 4.338, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 678.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 15.26, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-18", + "total_cases": 17026.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 645.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.235, + "total_deaths_per_million": 4.17, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 918.0, + "total_tests": 115338.0, + "total_tests_per_thousand": 4.372, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 711.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 21.829, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-19", + "total_cases": 17150.0, + "new_cases": 124.0, + "new_cases_smoothed": 43.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.156, + "new_cases_per_million": 4.701, + "new_cases_smoothed_per_million": 1.641, + "total_deaths_per_million": 4.17, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1447.0, + "total_tests": 116785.0, + "total_tests_per_thousand": 4.427, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 882.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 20.375999999999998, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-20", + "total_cases": 17232.0, + "new_cases": 82.0, + "new_cases_smoothed": 55.0, + "total_deaths": 111.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 653.265, + "new_cases_per_million": 3.109, + "new_cases_smoothed_per_million": 2.085, + "total_deaths_per_million": 4.208, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 330.0, + "total_tests": 117115.0, + "total_tests_per_thousand": 4.44, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 855.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 15.545, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 26.39 + }, + { + "date": "2020-08-21", + "total_cases": 17249.0, + "new_cases": 17.0, + "new_cases_smoothed": 51.429, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 653.909, + "new_cases_per_million": 0.644, + "new_cases_smoothed_per_million": 1.95, + "total_deaths_per_million": 4.246, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 950.0, + "total_tests": 118065.0, + "total_tests_per_thousand": 4.476, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 858.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 16.683, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-22", + "total_cases": 17310.0, + "new_cases": 61.0, + "new_cases_smoothed": 53.571, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 656.222, + "new_cases_per_million": 2.313, + "new_cases_smoothed_per_million": 2.031, + "total_deaths_per_million": 4.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1101.0, + "total_tests": 119166.0, + "total_tests_per_thousand": 4.518, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 891.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 16.632, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-23", + "total_cases": 17374.0, + "new_cases": 64.0, + "new_cases_smoothed": 54.429, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 658.648, + "new_cases_per_million": 2.426, + "new_cases_smoothed_per_million": 2.063, + "total_deaths_per_million": 4.284, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1133.0, + "total_tests": 120299.0, + "total_tests_per_thousand": 4.561, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 987.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 18.134, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-24", + "total_cases": 17471.0, + "new_cases": 97.0, + "new_cases_smoothed": 63.571, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 662.325, + "new_cases_per_million": 3.677, + "new_cases_smoothed_per_million": 2.41, + "total_deaths_per_million": 4.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 987.0, + "total_tests": 121286.0, + "total_tests_per_thousand": 4.598, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 981.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 15.431, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-25", + "total_cases": 17506.0, + "new_cases": 35.0, + "new_cases_smoothed": 68.571, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 663.652, + "new_cases_per_million": 1.327, + "new_cases_smoothed_per_million": 2.6, + "total_deaths_per_million": 4.322, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 793.0, + "total_tests": 122079.0, + "total_tests_per_thousand": 4.628, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 963.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 14.044, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-26", + "total_cases": 17562.0, + "new_cases": 56.0, + "new_cases_smoothed": 58.857, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 665.775, + "new_cases_per_million": 2.123, + "new_cases_smoothed_per_million": 2.231, + "total_deaths_per_million": 4.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 896.0, + "total_tests": 122975.0, + "total_tests_per_thousand": 4.662, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 884.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 15.019, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-27", + "total_cases": 17603.0, + "new_cases": 41.0, + "new_cases_smoothed": 53.0, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 667.329, + "new_cases_per_million": 1.554, + "new_cases_smoothed_per_million": 2.009, + "total_deaths_per_million": 4.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 1082.0, + "total_tests": 124057.0, + "total_tests_per_thousand": 4.703, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 18.717, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-28", + "total_cases": 17702.0, + "new_cases": 99.0, + "new_cases_smoothed": 64.714, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 671.083, + "new_cases_per_million": 3.753, + "new_cases_smoothed_per_million": 2.453, + "total_deaths_per_million": 4.36, + "new_deaths_per_million": 0.038, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 1028.0, + "total_tests": 125085.0, + "total_tests_per_thousand": 4.742, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1003.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 15.499, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-29", + "total_cases": 17797.0, + "new_cases": 95.0, + "new_cases_smoothed": 69.571, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 674.684, + "new_cases_per_million": 3.601, + "new_cases_smoothed_per_million": 2.637, + "total_deaths_per_million": 4.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 887.0, + "total_tests": 125972.0, + "total_tests_per_thousand": 4.776, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 972.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 13.970999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-30", + "total_cases": 17893.0, + "new_cases": 96.0, + "new_cases_smoothed": 74.143, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 678.323, + "new_cases_per_million": 3.639, + "new_cases_smoothed_per_million": 2.811, + "total_deaths_per_million": 4.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 580.0, + "total_tests": 126552.0, + "total_tests_per_thousand": 4.798, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 893.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 12.044, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-08-31", + "total_cases": 17948.0, + "new_cases": 55.0, + "new_cases_smoothed": 68.143, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 680.408, + "new_cases_per_million": 2.085, + "new_cases_smoothed_per_million": 2.583, + "total_deaths_per_million": 4.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1252.0, + "total_tests": 127804.0, + "total_tests_per_thousand": 4.845, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 931.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 13.662, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 32.87 + }, + { + "date": "2020-09-01", + "total_cases": 18067.0, + "new_cases": 119.0, + "new_cases_smoothed": 80.143, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 684.92, + "new_cases_per_million": 4.511, + "new_cases_smoothed_per_million": 3.038, + "total_deaths_per_million": 4.435, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 383.0, + "total_tests": 128187.0, + "total_tests_per_thousand": 4.86, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 10.892999999999999, + "positive_rate": 0.092, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 18103.0, + "new_cases": 36.0, + "new_cases_smoothed": 77.286, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 686.284, + "new_cases_per_million": 1.365, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 4.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 938.0, + "total_tests": 129125.0, + "total_tests_per_thousand": 4.895, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 11.373, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 18161.0, + "new_cases": 58.0, + "new_cases_smoothed": 79.714, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 688.483, + "new_cases_per_million": 2.199, + "new_cases_smoothed_per_million": 3.022, + "total_deaths_per_million": 4.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 921.0, + "total_tests": 130046.0, + "total_tests_per_thousand": 4.93, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 10.738, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 18208.0, + "new_cases": 47.0, + "new_cases_smoothed": 72.286, + "total_deaths": 119.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 690.265, + "new_cases_per_million": 1.782, + "new_cases_smoothed_per_million": 2.74, + "total_deaths_per_million": 4.511, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-05", + "total_cases": 18269.0, + "new_cases": 61.0, + "new_cases_smoothed": 67.429, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 692.578, + "new_cases_per_million": 2.313, + "new_cases_smoothed_per_million": 2.556, + "total_deaths_per_million": 4.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + } + ] + }, + "HRV": { + "continent": "Europe", + "location": "Croatia", + "population": 4105268.0, + "population_density": 73.726, + "median_age": 44.0, + "aged_65_older": 19.724, + "aged_70_older": 13.053, + "gdp_per_capita": 22669.797, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 253.782, + "diabetes_prevalence": 5.59, + "female_smokers": 34.3, + "male_smokers": 39.9, + "hospital_beds_per_thousand": 5.54, + "life_expectancy": 78.49, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.244, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.731, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.218, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.218, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-02", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.705, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-03", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.949, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 247.0, + "total_tests_per_thousand": 0.06, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-04", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.192, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 255.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 273.0, + "total_tests_per_thousand": 0.066, + "new_tests_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.436, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 302.0, + "total_tests_per_thousand": 0.074, + "new_tests_per_thousand": 0.007, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.679, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 317.0, + "total_tests_per_thousand": 0.077, + "new_tests_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.923, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 327.0, + "total_tests_per_thousand": 0.08, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 344.0, + "total_tests_per_thousand": 0.084, + "new_tests_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 365.0, + "total_tests_per_thousand": 0.089, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 29.75, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-11", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.167, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-12", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.897, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 483.0, + "total_tests_per_thousand": 0.118, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 30.0, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-13", + "total_cases": 25.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.09, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 0.522, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 553.0, + "total_tests_per_thousand": 0.135, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 16.8, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-14", + "total_cases": 31.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.551, + "new_cases_per_million": 1.462, + "new_cases_smoothed_per_million": 0.696, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 96.0, + "total_tests": 649.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 47.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 16.45, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-03-15", + "total_cases": 37.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 1.462, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 96.0, + "total_tests": 745.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 16.8, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-16", + "total_cases": 48.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.692, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 1.253, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 880.0, + "total_tests_per_thousand": 0.214, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 77.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 14.972000000000001, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-17", + "total_cases": 56.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.641, + "new_cases_per_million": 1.949, + "new_cases_smoothed_per_million": 1.531, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 229.0, + "total_tests": 1109.0, + "total_tests_per_thousand": 0.27, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 106.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 16.864, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-18", + "total_cases": 69.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.808, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 1.949, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 72.0, + "total_tests": 1181.0, + "total_tests_per_thousand": 0.288, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 108.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 13.5, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-03-19", + "total_cases": 81.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.731, + "new_cases_per_million": 2.923, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 83.0, + "total_tests": 1264.0, + "total_tests_per_thousand": 0.308, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 112.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 12.062000000000001, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 104.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.333, + "new_cases_per_million": 5.603, + "new_cases_smoothed_per_million": 2.749, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 156.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 13.823, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 66.67 + }, + { + "date": "2020-03-21", + "total_cases": 126.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.692, + "new_cases_per_million": 5.359, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 196.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 14.442, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-03-22", + "total_cases": 206.0, + "new_cases": 80.0, + "new_cases_smoothed": 24.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.179, + "new_cases_per_million": 19.487, + "new_cases_smoothed_per_million": 5.881, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 237.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 9.817, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-03-23", + "total_cases": 235.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.244, + "new_cases_per_million": 7.064, + "new_cases_smoothed_per_million": 6.507, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 271.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 10.144, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-24", + "total_cases": 306.0, + "new_cases": 71.0, + "new_cases_smoothed": 35.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.538, + "new_cases_per_million": 17.295, + "new_cases_smoothed_per_million": 8.7, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3159.0, + "total_tests_per_thousand": 0.769, + "new_tests_smoothed": 293.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 8.204, + "positive_rate": 0.122, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-25", + "total_cases": 382.0, + "new_cases": 76.0, + "new_cases_smoothed": 44.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 93.051, + "new_cases_per_million": 18.513, + "new_cases_smoothed_per_million": 10.892, + "total_deaths_per_million": 0.244, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 459.0, + "total_tests": 3618.0, + "total_tests_per_thousand": 0.881, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 348.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 7.7829999999999995, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-26", + "total_cases": 418.0, + "new_cases": 36.0, + "new_cases_smoothed": 48.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 101.82, + "new_cases_per_million": 8.769, + "new_cases_smoothed_per_million": 11.727, + "total_deaths_per_million": 0.244, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 590.0, + "total_tests": 4208.0, + "total_tests_per_thousand": 1.025, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 421.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 8.745, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 495.0, + "new_cases": 77.0, + "new_cases_smoothed": 55.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 120.577, + "new_cases_per_million": 18.756, + "new_cases_smoothed_per_million": 13.606, + "total_deaths_per_million": 0.487, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 570.0, + "total_tests": 4778.0, + "total_tests_per_thousand": 1.164, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 448.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 8.02, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 586.0, + "new_cases": 91.0, + "new_cases_smoothed": 65.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 142.743, + "new_cases_per_million": 22.167, + "new_cases_smoothed_per_million": 16.007, + "total_deaths_per_million": 0.731, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 437.0, + "total_tests": 5215.0, + "total_tests_per_thousand": 1.27, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 456.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 6.939, + "positive_rate": 0.14400000000000002, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 657.0, + "new_cases": 71.0, + "new_cases_smoothed": 64.429, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 160.038, + "new_cases_per_million": 17.295, + "new_cases_smoothed_per_million": 15.694, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 685.0, + "total_tests": 5900.0, + "total_tests_per_thousand": 1.437, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 500.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 7.761, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 713.0, + "new_cases": 56.0, + "new_cases_smoothed": 68.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 173.679, + "new_cases_per_million": 13.641, + "new_cases_smoothed_per_million": 16.634, + "total_deaths_per_million": 1.462, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 504.0, + "total_tests": 6404.0, + "total_tests_per_thousand": 1.56, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 7.586, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 790.0, + "new_cases": 77.0, + "new_cases_smoothed": 69.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 192.436, + "new_cases_per_million": 18.756, + "new_cases_smoothed_per_million": 16.842, + "total_deaths_per_million": 1.462, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 611.0, + "total_tests": 7015.0, + "total_tests_per_thousand": 1.709, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 551.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 7.968999999999999, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 867.0, + "new_cases": 77.0, + "new_cases_smoothed": 69.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 211.192, + "new_cases_per_million": 18.756, + "new_cases_smoothed_per_million": 16.877, + "total_deaths_per_million": 1.462, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 665.0, + "total_tests": 7680.0, + "total_tests_per_thousand": 1.871, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 580.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 8.371, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 963.0, + "new_cases": 96.0, + "new_cases_smoothed": 77.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 234.577, + "new_cases_per_million": 23.385, + "new_cases_smoothed_per_million": 18.965, + "total_deaths_per_million": 1.462, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 672.0, + "total_tests": 8352.0, + "total_tests_per_thousand": 2.034, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 592.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 7.604, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 1011.0, + "new_cases": 48.0, + "new_cases_smoothed": 73.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 246.269, + "new_cases_per_million": 11.692, + "new_cases_smoothed_per_million": 17.956, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 898.0, + "total_tests": 9250.0, + "total_tests_per_thousand": 2.253, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 639.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 8.669, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 1079.0, + "new_cases": 68.0, + "new_cases_smoothed": 70.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 262.833, + "new_cases_per_million": 16.564, + "new_cases_smoothed_per_million": 17.156, + "total_deaths_per_million": 1.949, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 583.0, + "total_tests": 9833.0, + "total_tests_per_thousand": 2.395, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 660.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 9.371, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 1126.0, + "new_cases": 47.0, + "new_cases_smoothed": 67.0, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 274.282, + "new_cases_per_million": 11.449, + "new_cases_smoothed_per_million": 16.32, + "total_deaths_per_million": 2.923, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 1014.0, + "total_tests": 10847.0, + "total_tests_per_thousand": 2.642, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 707.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 10.552, + "positive_rate": 0.095, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 1182.0, + "new_cases": 56.0, + "new_cases_smoothed": 67.0, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 287.923, + "new_cases_per_million": 13.641, + "new_cases_smoothed_per_million": 16.32, + "total_deaths_per_million": 3.654, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 617.0, + "total_tests": 11464.0, + "total_tests_per_thousand": 2.793, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 723.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 10.790999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 1222.0, + "new_cases": 40.0, + "new_cases_smoothed": 61.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 297.666, + "new_cases_per_million": 9.744, + "new_cases_smoothed_per_million": 15.033, + "total_deaths_per_million": 3.897, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 858.0, + "total_tests": 12322.0, + "total_tests_per_thousand": 3.002, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 758.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 12.282, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 1282.0, + "new_cases": 60.0, + "new_cases_smoothed": 59.286, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 312.282, + "new_cases_per_million": 14.615, + "new_cases_smoothed_per_million": 14.441, + "total_deaths_per_million": 4.385, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 803.0, + "total_tests": 13125.0, + "total_tests_per_thousand": 3.197, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 13.123, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 1343.0, + "new_cases": 61.0, + "new_cases_smoothed": 54.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 327.141, + "new_cases_per_million": 14.859, + "new_cases_smoothed_per_million": 13.223, + "total_deaths_per_million": 4.628, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 555.0, + "total_tests": 13680.0, + "total_tests_per_thousand": 3.332, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 761.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 14.017999999999999, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 1407.0, + "new_cases": 64.0, + "new_cases_smoothed": 56.571, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 342.73, + "new_cases_per_million": 15.59, + "new_cases_smoothed_per_million": 13.78, + "total_deaths_per_million": 4.872, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 932.0, + "total_tests": 14612.0, + "total_tests_per_thousand": 3.559, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 766.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 13.54, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 1495.0, + "new_cases": 88.0, + "new_cases_smoothed": 59.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 364.166, + "new_cases_per_million": 21.436, + "new_cases_smoothed_per_million": 14.476, + "total_deaths_per_million": 5.115, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1079.0, + "total_tests": 15691.0, + "total_tests_per_thousand": 3.822, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 837.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 14.084000000000001, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 1534.0, + "new_cases": 39.0, + "new_cases_smoothed": 58.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 373.666, + "new_cases_per_million": 9.5, + "new_cases_smoothed_per_million": 14.198, + "total_deaths_per_million": 5.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 690.0, + "total_tests": 16381.0, + "total_tests_per_thousand": 3.99, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 791.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 13.571, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 1600.0, + "new_cases": 66.0, + "new_cases_smoothed": 59.714, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 389.743, + "new_cases_per_million": 16.077, + "new_cases_smoothed_per_million": 14.546, + "total_deaths_per_million": 5.603, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1409.0, + "total_tests": 17790.0, + "total_tests_per_thousand": 4.333, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 904.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 15.139000000000001, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 1650.0, + "new_cases": 50.0, + "new_cases_smoothed": 61.143, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 401.923, + "new_cases_per_million": 12.179, + "new_cases_smoothed_per_million": 14.894, + "total_deaths_per_million": 6.09, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 569.0, + "total_tests": 18359.0, + "total_tests_per_thousand": 4.472, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 862.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 14.097999999999999, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 1704.0, + "new_cases": 54.0, + "new_cases_smoothed": 60.286, + "total_deaths": 31.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 415.076, + "new_cases_per_million": 13.154, + "new_cases_smoothed_per_million": 14.685, + "total_deaths_per_million": 7.551, + "new_deaths_per_million": 1.462, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 897.0, + "total_tests": 19256.0, + "total_tests_per_thousand": 4.691, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 14.530999999999999, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 1741.0, + "new_cases": 37.0, + "new_cases_smoothed": 56.857, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 424.089, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 13.85, + "total_deaths_per_million": 8.282, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 902.0, + "total_tests": 20158.0, + "total_tests_per_thousand": 4.91, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 925.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 16.269000000000002, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 1791.0, + "new_cases": 50.0, + "new_cases_smoothed": 54.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 436.269, + "new_cases_per_million": 12.179, + "new_cases_smoothed_per_million": 13.363, + "total_deaths_per_million": 8.526, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 795.0, + "total_tests": 20953.0, + "total_tests_per_thousand": 5.104, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 906.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 16.516, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 1814.0, + "new_cases": 23.0, + "new_cases_smoothed": 45.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 441.871, + "new_cases_per_million": 5.603, + "new_cases_smoothed_per_million": 11.101, + "total_deaths_per_million": 8.769, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 694.0, + "total_tests": 21647.0, + "total_tests_per_thousand": 5.273, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 851.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 18.674, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 1832.0, + "new_cases": 18.0, + "new_cases_smoothed": 42.571, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 446.256, + "new_cases_per_million": 4.385, + "new_cases_smoothed_per_million": 10.37, + "total_deaths_per_million": 9.5, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.626, + "new_tests": 2539.0, + "total_tests": 24186.0, + "total_tests_per_thousand": 5.891, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 1115.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 26.191, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 1871.0, + "new_cases": 39.0, + "new_cases_smoothed": 38.714, + "total_deaths": 47.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 455.756, + "new_cases_per_million": 9.5, + "new_cases_smoothed_per_million": 9.43, + "total_deaths_per_million": 11.449, + "new_deaths_per_million": 1.949, + "new_deaths_smoothed_per_million": 0.835, + "new_tests": 2424.0, + "total_tests": 26610.0, + "total_tests_per_thousand": 6.482, + "new_tests_per_thousand": 0.59, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 32.546, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 1881.0, + "new_cases": 10.0, + "new_cases_smoothed": 33.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 458.192, + "new_cases_per_million": 2.436, + "new_cases_smoothed_per_million": 8.038, + "total_deaths_per_million": 11.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.766, + "new_tests_smoothed": 1250.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 37.879, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 1908.0, + "new_cases": 27.0, + "new_cases_smoothed": 29.143, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 464.769, + "new_cases_per_million": 6.577, + "new_cases_smoothed_per_million": 7.099, + "total_deaths_per_million": 11.692, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.592, + "total_tests": 27614.0, + "total_tests_per_thousand": 6.726, + "new_tests_smoothed": 1194.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 40.971000000000004, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 1950.0, + "new_cases": 42.0, + "new_cases_smoothed": 29.857, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 474.999, + "new_cases_per_million": 10.231, + "new_cases_smoothed_per_million": 7.273, + "total_deaths_per_million": 11.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "new_tests": 1239.0, + "total_tests": 28853.0, + "total_tests_per_thousand": 7.028, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 1242.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 41.598, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 1981.0, + "new_cases": 31.0, + "new_cases_smoothed": 27.143, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 482.551, + "new_cases_per_million": 7.551, + "new_cases_smoothed_per_million": 6.612, + "total_deaths_per_million": 12.179, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 1360.0, + "total_tests": 30213.0, + "total_tests_per_thousand": 7.36, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 1323.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 48.742, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 2009.0, + "new_cases": 28.0, + "new_cases_smoothed": 27.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 489.371, + "new_cases_per_million": 6.821, + "new_cases_smoothed_per_million": 6.786, + "total_deaths_per_million": 12.423, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 700.0, + "total_tests": 30913.0, + "total_tests_per_thousand": 7.53, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 1324.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 47.528, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 2016.0, + "new_cases": 7.0, + "new_cases_smoothed": 26.286, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 491.076, + "new_cases_per_million": 1.705, + "new_cases_smoothed_per_million": 6.403, + "total_deaths_per_million": 13.154, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 709.0, + "total_tests": 31622.0, + "total_tests_per_thousand": 7.703, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 1062.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 40.402, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 2030.0, + "new_cases": 14.0, + "new_cases_smoothed": 22.714, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 494.487, + "new_cases_per_million": 3.41, + "new_cases_smoothed_per_million": 5.533, + "total_deaths_per_million": 13.397, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1195.0, + "total_tests": 32817.0, + "total_tests_per_thousand": 7.994, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 887.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 39.05, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-04-28", + "total_cases": 2039.0, + "new_cases": 9.0, + "new_cases_smoothed": 22.571, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 496.679, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 5.498, + "total_deaths_per_million": 14.372, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 760.0, + "total_tests": 33577.0, + "total_tests_per_thousand": 8.179, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 924.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 40.937, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-04-29", + "total_cases": 2047.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.857, + "total_deaths": 63.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 498.628, + "new_cases_per_million": 1.949, + "new_cases_smoothed_per_million": 4.837, + "total_deaths_per_million": 15.346, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 899.0, + "total_tests": 34476.0, + "total_tests_per_thousand": 8.398, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 980.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 49.353, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-04-30", + "total_cases": 2062.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.0, + "total_deaths": 67.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 502.281, + "new_cases_per_million": 3.654, + "new_cases_smoothed_per_million": 3.897, + "total_deaths_per_million": 16.32, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.661, + "new_tests": 2441.0, + "total_tests": 36917.0, + "total_tests_per_thousand": 8.993, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 1152.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 72.0, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-01", + "total_cases": 2076.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.571, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 505.692, + "new_cases_per_million": 3.41, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 16.808, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.661, + "new_tests_smoothed": 1003.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 73.905, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 2085.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.857, + "total_deaths": 75.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 507.884, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 2.645, + "total_deaths_per_million": 18.269, + "new_deaths_per_million": 1.462, + "new_deaths_smoothed_per_million": 0.835, + "total_tests": 37557.0, + "total_tests_per_thousand": 9.148, + "new_tests_smoothed": 949.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 87.40799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 2088.0, + "new_cases": 3.0, + "new_cases_smoothed": 10.286, + "total_deaths": 77.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 508.615, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 2.505, + "total_deaths_per_million": 18.756, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.8, + "new_tests": 527.0, + "total_tests": 38084.0, + "total_tests_per_thousand": 9.277, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 923.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 89.736, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 2096.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.429, + "total_deaths": 79.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 510.564, + "new_cases_per_million": 1.949, + "new_cases_smoothed_per_million": 2.297, + "total_deaths_per_million": 19.244, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.835, + "new_tests": 956.0, + "total_tests": 39040.0, + "total_tests_per_thousand": 9.51, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 889.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 94.288, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 2101.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.857, + "total_deaths": 80.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 511.781, + "new_cases_per_million": 1.218, + "new_cases_smoothed_per_million": 2.158, + "total_deaths_per_million": 19.487, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.731, + "new_tests": 933.0, + "total_tests": 39973.0, + "total_tests_per_thousand": 9.737, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 914.0, + "new_tests_smoothed_per_thousand": 0.223, + "tests_per_case": 103.194, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 2112.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.286, + "total_deaths": 83.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 514.461, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 20.218, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.696, + "new_tests": 1080.0, + "total_tests": 41053.0, + "total_tests_per_thousand": 10.0, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 940.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 101.23100000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 2119.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 516.166, + "new_cases_per_million": 1.705, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 20.705, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.626, + "new_tests": 885.0, + "total_tests": 41938.0, + "total_tests_per_thousand": 10.216, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 717.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 88.053, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 2125.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.0, + "total_deaths": 86.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 517.628, + "new_cases_per_million": 1.462, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 20.949, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 1440.0, + "total_tests": 43378.0, + "total_tests_per_thousand": 10.566, + "new_tests_per_thousand": 0.351, + "new_tests_smoothed": 877.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 125.286, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 2161.0, + "new_cases": 36.0, + "new_cases_smoothed": 10.857, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 526.397, + "new_cases_per_million": 8.769, + "new_cases_smoothed_per_million": 2.645, + "total_deaths_per_million": 20.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 840.0, + "total_tests": 44218.0, + "total_tests_per_thousand": 10.771, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 952.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 87.684, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 2176.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.571, + "total_deaths": 87.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 530.051, + "new_cases_per_million": 3.654, + "new_cases_smoothed_per_million": 3.062, + "total_deaths_per_million": 21.192, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 668.0, + "total_tests": 44886.0, + "total_tests_per_thousand": 10.934, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 972.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 77.318, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 2187.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.0, + "total_deaths": 90.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 532.73, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 3.167, + "total_deaths_per_million": 21.923, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 1185.0, + "total_tests": 46071.0, + "total_tests_per_thousand": 11.222, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 77.23100000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-12", + "total_cases": 2196.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.571, + "total_deaths": 91.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 534.922, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 22.167, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 1409.0, + "total_tests": 47480.0, + "total_tests_per_thousand": 11.566, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 1072.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 78.98899999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-13", + "total_cases": 2207.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.571, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 537.602, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 22.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1257.0, + "total_tests": 48737.0, + "total_tests_per_thousand": 11.872, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 1098.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 80.905, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-14", + "total_cases": 2213.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.429, + "total_deaths": 94.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 539.063, + "new_cases_per_million": 1.462, + "new_cases_smoothed_per_million": 3.271, + "total_deaths_per_million": 22.897, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 1603.0, + "total_tests": 50340.0, + "total_tests_per_thousand": 12.262, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 1200.0, + "new_tests_smoothed_per_thousand": 0.292, + "tests_per_case": 89.36200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-15", + "total_cases": 2221.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.714, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 541.012, + "new_cases_per_million": 1.949, + "new_cases_smoothed_per_million": 3.341, + "total_deaths_per_million": 22.897, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1228.0, + "total_tests": 51568.0, + "total_tests_per_thousand": 12.561, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 1170.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 85.31200000000001, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-16", + "total_cases": 2222.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.714, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 541.256, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 23.141, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 857.0, + "total_tests": 52425.0, + "total_tests_per_thousand": 12.77, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 1172.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 134.49200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-17", + "total_cases": 2224.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 541.743, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 1.67, + "total_deaths_per_million": 23.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1452.0, + "total_tests": 53877.0, + "total_tests_per_thousand": 13.124, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 1284.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 187.25, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-18", + "total_cases": 2226.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 542.23, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 1.357, + "total_deaths_per_million": 23.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 943.0, + "total_tests": 54820.0, + "total_tests_per_thousand": 13.354, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 1250.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 224.359, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-19", + "total_cases": 2228.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 542.717, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 1.114, + "total_deaths_per_million": 23.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 980.0, + "total_tests": 55800.0, + "total_tests_per_thousand": 13.592, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 1189.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 260.094, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-20", + "total_cases": 2232.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 96.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 543.692, + "new_cases_per_million": 0.974, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 23.385, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1221.0, + "total_tests": 57021.0, + "total_tests_per_thousand": 13.89, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 1183.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 331.24, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-21", + "total_cases": 2234.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 544.179, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 23.385, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 1161.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 387.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-22", + "total_cases": 2237.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 97.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 544.91, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 0.557, + "total_deaths_per_million": 23.628, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.104, + "total_tests": 59911.0, + "total_tests_per_thousand": 14.594, + "new_tests_smoothed": 1192.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 521.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-23", + "total_cases": 2243.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 99.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 546.371, + "new_cases_per_million": 1.462, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 24.115, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 953.0, + "total_tests": 60864.0, + "total_tests_per_thousand": 14.826, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 1206.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 402.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-24", + "total_cases": 2243.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 546.371, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.661, + "total_deaths_per_million": 24.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 618.0, + "total_tests": 61482.0, + "total_tests_per_thousand": 14.976, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 400.105, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-25", + "total_cases": 2244.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 546.615, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.626, + "total_deaths_per_million": 24.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 940.0, + "total_tests": 62422.0, + "total_tests_per_thousand": 15.205, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 422.333, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-26", + "total_cases": 2244.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 100.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 546.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.557, + "total_deaths_per_million": 24.359, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1260.0, + "total_tests": 63682.0, + "total_tests_per_thousand": 15.512, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 1126.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 492.625, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-05-27", + "total_cases": 2244.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 101.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 546.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.418, + "total_deaths_per_million": 24.603, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 584.0, + "total_tests": 64266.0, + "total_tests_per_thousand": 15.655, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 1035.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 603.75, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-05-28", + "total_cases": 2244.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 101.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 546.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.348, + "total_deaths_per_million": 24.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 828.0, + "total_tests": 65094.0, + "total_tests_per_thousand": 15.856, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 947.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 662.9, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-29", + "total_cases": 2245.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 546.858, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 24.846, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 415.0, + "total_tests": 65509.0, + "total_tests_per_thousand": 15.957, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 800.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 700.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-30", + "total_cases": 2245.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 546.858, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 635.0, + "total_tests": 66144.0, + "total_tests_per_thousand": 16.112, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 754.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 2639.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-31", + "total_cases": 2246.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 547.102, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 261.0, + "total_tests": 66405.0, + "total_tests_per_thousand": 16.176, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 703.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 1640.3329999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-01", + "total_cases": 2246.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 547.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 290.0, + "total_tests": 66695.0, + "total_tests_per_thousand": 16.246, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 610.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 2135.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-02", + "total_cases": 2246.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 547.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 602.0, + "total_tests": 67297.0, + "total_tests_per_thousand": 16.393, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 516.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 1806.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-03", + "total_cases": 2246.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 547.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 517.0, + "total_tests": 67814.0, + "total_tests_per_thousand": 16.519, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 507.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 1774.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-04", + "total_cases": 2246.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 547.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 183.0, + "total_tests": 67997.0, + "total_tests_per_thousand": 16.563, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 415.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 1452.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-05", + "total_cases": 2247.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 270.0, + "total_tests": 68267.0, + "total_tests_per_thousand": 16.629, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 1379.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-06", + "total_cases": 2247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 247.0, + "total_tests": 68514.0, + "total_tests_per_thousand": 16.689, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 339.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 1186.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-07", + "total_cases": 2247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 25.333, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 226.0, + "total_tests": 68740.0, + "total_tests_per_thousand": 16.744, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 334.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 2338.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-08", + "total_cases": 2247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 25.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 126.0, + "total_tests": 68866.0, + "total_tests_per_thousand": 16.775, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 310.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 2170.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-09", + "total_cases": 2247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 25.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 249.0, + "total_tests": 69115.0, + "total_tests_per_thousand": 16.836, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 260.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 1820.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-10", + "total_cases": 2247.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 547.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 25.82, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 234.0, + "total_tests": 69349.0, + "total_tests_per_thousand": 16.893, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 219.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 1533.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-11", + "total_cases": 2249.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 547.833, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 25.82, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 257.0, + "total_tests": 69606.0, + "total_tests_per_thousand": 16.955, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 230.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 536.6669999999999, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-06-12", + "total_cases": 2249.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 547.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 25.82, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 115.0, + "total_tests": 69721.0, + "total_tests_per_thousand": 16.983, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 208.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 728.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-13", + "total_cases": 2249.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 547.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 246.0, + "total_tests": 69967.0, + "total_tests_per_thousand": 17.043, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 208.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 728.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-14", + "total_cases": 2251.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 548.32, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 143.0, + "total_tests": 70110.0, + "total_tests_per_thousand": 17.078, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 196.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-15", + "total_cases": 2252.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 548.563, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 144.0, + "total_tests": 70254.0, + "total_tests_per_thousand": 17.113, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 277.2, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-16", + "total_cases": 2254.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 549.051, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 272.0, + "total_tests": 70526.0, + "total_tests_per_thousand": 17.179, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 202.0, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-17", + "total_cases": 2255.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 549.294, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 186.0, + "total_tests": 70712.0, + "total_tests_per_thousand": 17.225, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 195.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 170.625, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-18", + "total_cases": 2258.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 550.025, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 283.0, + "total_tests": 70995.0, + "total_tests_per_thousand": 17.294, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-19", + "total_cases": 2269.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.857, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 552.704, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 0.696, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 819.0, + "total_tests": 71814.0, + "total_tests_per_thousand": 17.493, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 299.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 104.65, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-20", + "total_cases": 2280.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 555.384, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 1.079, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 388.0, + "total_tests": 72202.0, + "total_tests_per_thousand": 17.588, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 72.032, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-21", + "total_cases": 2299.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.857, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 560.012, + "new_cases_per_million": 4.628, + "new_cases_smoothed_per_million": 1.67, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 276.0, + "total_tests": 72478.0, + "total_tests_per_thousand": 17.655, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 49.292, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-22", + "total_cases": 2317.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.286, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 564.397, + "new_cases_per_million": 4.385, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 268.0, + "total_tests": 72746.0, + "total_tests_per_thousand": 17.72, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 38.338, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-23", + "total_cases": 2336.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.714, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 569.025, + "new_cases_per_million": 4.628, + "new_cases_smoothed_per_million": 2.853, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 347.0, + "total_tests": 73093.0, + "total_tests_per_thousand": 17.805, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 31.329, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-24", + "total_cases": 2366.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.857, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 576.333, + "new_cases_per_million": 7.308, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 645.0, + "total_tests": 73738.0, + "total_tests_per_thousand": 17.962, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 432.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 27.243000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-25", + "total_cases": 2388.0, + "new_cases": 22.0, + "new_cases_smoothed": 18.571, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 581.692, + "new_cases_per_million": 5.359, + "new_cases_smoothed_per_million": 4.524, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 919.0, + "total_tests": 74657.0, + "total_tests_per_thousand": 18.186, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 28.162, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-26", + "total_cases": 2483.0, + "new_cases": 95.0, + "new_cases_smoothed": 30.571, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 604.833, + "new_cases_per_million": 23.141, + "new_cases_smoothed_per_million": 7.447, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 547.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 17.893, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-27", + "total_cases": 2539.0, + "new_cases": 56.0, + "new_cases_smoothed": 37.0, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 618.474, + "new_cases_per_million": 13.641, + "new_cases_smoothed_per_million": 9.013, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 76624.0, + "total_tests_per_thousand": 18.665, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 17.081, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-28", + "total_cases": 2624.0, + "new_cases": 85.0, + "new_cases_smoothed": 46.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 639.179, + "new_cases_per_million": 20.705, + "new_cases_smoothed_per_million": 11.31, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 829.0, + "total_tests": 77453.0, + "total_tests_per_thousand": 18.867, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 711.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 15.314, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-29", + "total_cases": 2691.0, + "new_cases": 67.0, + "new_cases_smoothed": 53.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 655.499, + "new_cases_per_million": 16.32, + "new_cases_smoothed_per_million": 13.015, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 730.0, + "total_tests": 78183.0, + "total_tests_per_thousand": 19.045, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 777.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 14.543, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-30", + "total_cases": 2725.0, + "new_cases": 34.0, + "new_cases_smoothed": 55.571, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.781, + "new_cases_per_million": 8.282, + "new_cases_smoothed_per_million": 13.537, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 921.0, + "total_tests": 79104.0, + "total_tests_per_thousand": 19.269, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 859.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 15.458, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-01", + "total_cases": 2777.0, + "new_cases": 52.0, + "new_cases_smoothed": 58.714, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 676.448, + "new_cases_per_million": 12.667, + "new_cases_smoothed_per_million": 14.302, + "total_deaths_per_million": 26.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1352.0, + "total_tests": 80456.0, + "total_tests_per_thousand": 19.598, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 960.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 16.35, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-02", + "total_cases": 2831.0, + "new_cases": 54.0, + "new_cases_smoothed": 63.286, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 689.602, + "new_cases_per_million": 13.154, + "new_cases_smoothed_per_million": 15.416, + "total_deaths_per_million": 26.308, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 981.0, + "total_tests": 81437.0, + "total_tests_per_thousand": 19.837, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 969.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 15.312000000000001, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-03", + "total_cases": 2912.0, + "new_cases": 81.0, + "new_cases_smoothed": 61.286, + "total_deaths": 110.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 709.332, + "new_cases_per_million": 19.731, + "new_cases_smoothed_per_million": 14.929, + "total_deaths_per_million": 26.795, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 1465.0, + "total_tests": 82902.0, + "total_tests_per_thousand": 20.194, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 16.921, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-04", + "total_cases": 3008.0, + "new_cases": 96.0, + "new_cases_smoothed": 67.0, + "total_deaths": 112.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 732.717, + "new_cases_per_million": 23.385, + "new_cases_smoothed_per_million": 16.32, + "total_deaths_per_million": 27.282, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1264.0, + "total_tests": 84166.0, + "total_tests_per_thousand": 20.502, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 1077.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 16.075, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-05", + "total_cases": 3094.0, + "new_cases": 86.0, + "new_cases_smoothed": 67.143, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 753.666, + "new_cases_per_million": 20.949, + "new_cases_smoothed_per_million": 16.355, + "total_deaths_per_million": 27.526, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1244.0, + "total_tests": 85410.0, + "total_tests_per_thousand": 20.805, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 1137.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 16.934, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-06", + "total_cases": 3151.0, + "new_cases": 57.0, + "new_cases_smoothed": 65.714, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 767.55, + "new_cases_per_million": 13.885, + "new_cases_smoothed_per_million": 16.007, + "total_deaths_per_million": 27.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 587.0, + "total_tests": 85997.0, + "total_tests_per_thousand": 20.948, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 1116.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 16.983, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-07", + "total_cases": 3220.0, + "new_cases": 69.0, + "new_cases_smoothed": 70.714, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 784.358, + "new_cases_per_million": 16.808, + "new_cases_smoothed_per_million": 17.225, + "total_deaths_per_million": 27.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 863.0, + "total_tests": 86860.0, + "total_tests_per_thousand": 21.158, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 1108.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 15.669, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-08", + "total_cases": 3272.0, + "new_cases": 52.0, + "new_cases_smoothed": 70.714, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 797.025, + "new_cases_per_million": 12.667, + "new_cases_smoothed_per_million": 17.225, + "total_deaths_per_million": 27.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1375.0, + "total_tests": 88235.0, + "total_tests_per_thousand": 21.493, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 1111.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 15.710999999999999, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-09", + "total_cases": 3325.0, + "new_cases": 53.0, + "new_cases_smoothed": 70.571, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 809.935, + "new_cases_per_million": 12.91, + "new_cases_smoothed_per_million": 17.19, + "total_deaths_per_million": 27.769, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1529.0, + "total_tests": 89764.0, + "total_tests_per_thousand": 21.866, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 1190.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 16.862000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-10", + "total_cases": 3416.0, + "new_cases": 91.0, + "new_cases_smoothed": 72.0, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 832.102, + "new_cases_per_million": 22.167, + "new_cases_smoothed_per_million": 17.538, + "total_deaths_per_million": 28.013, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1722.0, + "total_tests": 91486.0, + "total_tests_per_thousand": 22.285, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 1226.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 17.028, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-11", + "total_cases": 3532.0, + "new_cases": 116.0, + "new_cases_smoothed": 74.857, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 860.358, + "new_cases_per_million": 28.256, + "new_cases_smoothed_per_million": 18.234, + "total_deaths_per_million": 28.5, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1322.0, + "total_tests": 92808.0, + "total_tests_per_thousand": 22.607, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 1235.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 16.498, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 29.63 + }, + { + "date": "2020-07-12", + "total_cases": 3672.0, + "new_cases": 140.0, + "new_cases_smoothed": 82.571, + "total_deaths": 118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 894.46, + "new_cases_per_million": 34.103, + "new_cases_smoothed_per_million": 20.114, + "total_deaths_per_million": 28.744, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 763.0, + "total_tests": 93571.0, + "total_tests_per_thousand": 22.793, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 1166.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 14.120999999999999, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 29.63 + }, + { + "date": "2020-07-13", + "total_cases": 3722.0, + "new_cases": 50.0, + "new_cases_smoothed": 81.571, + "total_deaths": 119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 906.64, + "new_cases_per_million": 12.179, + "new_cases_smoothed_per_million": 19.87, + "total_deaths_per_million": 28.987, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 604.0, + "total_tests": 94175.0, + "total_tests_per_thousand": 22.94, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 14.319, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 29.63 + }, + { + "date": "2020-07-14", + "total_cases": 3775.0, + "new_cases": 53.0, + "new_cases_smoothed": 79.286, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 919.55, + "new_cases_per_million": 12.91, + "new_cases_smoothed_per_million": 19.313, + "total_deaths_per_million": 28.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1745.0, + "total_tests": 95920.0, + "total_tests_per_thousand": 23.365, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 1294.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 16.320999999999998, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 29.63 + }, + { + "date": "2020-07-15", + "total_cases": 3827.0, + "new_cases": 52.0, + "new_cases_smoothed": 79.286, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 932.217, + "new_cases_per_million": 12.667, + "new_cases_smoothed_per_million": 19.313, + "total_deaths_per_million": 28.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1804.0, + "total_tests": 97724.0, + "total_tests_per_thousand": 23.805, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 1356.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 17.102999999999998, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-16", + "total_cases": 3953.0, + "new_cases": 126.0, + "new_cases_smoothed": 89.714, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 962.909, + "new_cases_per_million": 30.692, + "new_cases_smoothed_per_million": 21.853, + "total_deaths_per_million": 28.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1690.0, + "total_tests": 99414.0, + "total_tests_per_thousand": 24.216, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 1379.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 15.370999999999999, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-17", + "total_cases": 4039.0, + "new_cases": 86.0, + "new_cases_smoothed": 89.0, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 983.858, + "new_cases_per_million": 20.949, + "new_cases_smoothed_per_million": 21.679, + "total_deaths_per_million": 28.987, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 1437.0, + "total_tests": 100851.0, + "total_tests_per_thousand": 24.566, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 1338.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 15.034, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-18", + "total_cases": 4137.0, + "new_cases": 98.0, + "new_cases_smoothed": 86.429, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1007.73, + "new_cases_per_million": 23.872, + "new_cases_smoothed_per_million": 21.053, + "total_deaths_per_million": 29.231, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 1338.0, + "total_tests": 102189.0, + "total_tests_per_thousand": 24.892, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 1340.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 15.504000000000001, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-19", + "total_cases": 4235.0, + "new_cases": 98.0, + "new_cases_smoothed": 80.429, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1031.601, + "new_cases_per_million": 23.872, + "new_cases_smoothed_per_million": 19.592, + "total_deaths_per_million": 29.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 915.0, + "total_tests": 103104.0, + "total_tests_per_thousand": 25.115, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 1362.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 16.934, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-20", + "total_cases": 4354.0, + "new_cases": 119.0, + "new_cases_smoothed": 90.286, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1060.588, + "new_cases_per_million": 28.987, + "new_cases_smoothed_per_million": 21.993, + "total_deaths_per_million": 29.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 1028.0, + "total_tests": 104132.0, + "total_tests_per_thousand": 25.365, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 1422.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 15.75, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-07-21", + "total_cases": 4370.0, + "new_cases": 16.0, + "new_cases_smoothed": 85.0, + "total_deaths": 122.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1064.486, + "new_cases_per_million": 3.897, + "new_cases_smoothed_per_million": 20.705, + "total_deaths_per_million": 29.718, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 1394.0, + "total_tests": 105526.0, + "total_tests_per_thousand": 25.705, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 1372.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 16.141, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-22", + "total_cases": 4422.0, + "new_cases": 52.0, + "new_cases_smoothed": 85.0, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1077.153, + "new_cases_per_million": 12.667, + "new_cases_smoothed_per_million": 20.705, + "total_deaths_per_million": 29.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 1279.0, + "total_tests": 106805.0, + "total_tests_per_thousand": 26.017, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 1297.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 15.259, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-23", + "total_cases": 4530.0, + "new_cases": 108.0, + "new_cases_smoothed": 82.429, + "total_deaths": 125.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1103.46, + "new_cases_per_million": 26.308, + "new_cases_smoothed_per_million": 20.079, + "total_deaths_per_million": 30.449, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1417.0, + "total_tests": 108222.0, + "total_tests_per_thousand": 26.362, + "new_tests_per_thousand": 0.345, + "new_tests_smoothed": 1258.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 15.262, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-24", + "total_cases": 4634.0, + "new_cases": 104.0, + "new_cases_smoothed": 85.0, + "total_deaths": 128.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1128.794, + "new_cases_per_million": 25.333, + "new_cases_smoothed_per_million": 20.705, + "total_deaths_per_million": 31.179, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 1136.0, + "total_tests": 109358.0, + "total_tests_per_thousand": 26.638, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 1215.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 14.294, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-25", + "total_cases": 4715.0, + "new_cases": 81.0, + "new_cases_smoothed": 82.571, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1148.524, + "new_cases_per_million": 19.731, + "new_cases_smoothed_per_million": 20.114, + "total_deaths_per_million": 31.179, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1156.0, + "total_tests": 110514.0, + "total_tests_per_thousand": 26.92, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 1189.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 14.4, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-26", + "total_cases": 4792.0, + "new_cases": 77.0, + "new_cases_smoothed": 79.571, + "total_deaths": 133.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1167.281, + "new_cases_per_million": 18.756, + "new_cases_smoothed_per_million": 19.383, + "total_deaths_per_million": 32.397, + "new_deaths_per_million": 1.218, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1489.0, + "total_tests": 112003.0, + "total_tests_per_thousand": 27.283, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 1271.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 15.972999999999999, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-27", + "total_cases": 4857.0, + "new_cases": 65.0, + "new_cases_smoothed": 71.857, + "total_deaths": 136.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1183.114, + "new_cases_per_million": 15.833, + "new_cases_smoothed_per_million": 17.504, + "total_deaths_per_million": 33.128, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.557, + "new_tests": 831.0, + "total_tests": 112834.0, + "total_tests_per_thousand": 27.485, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 1243.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 17.298, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-28", + "total_cases": 4881.0, + "new_cases": 24.0, + "new_cases_smoothed": 73.0, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1188.96, + "new_cases_per_million": 5.846, + "new_cases_smoothed_per_million": 17.782, + "total_deaths_per_million": 33.859, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 1256.0, + "total_tests": 114090.0, + "total_tests_per_thousand": 27.791, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 1223.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 16.753, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-29", + "total_cases": 4923.0, + "new_cases": 42.0, + "new_cases_smoothed": 71.571, + "total_deaths": 140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1199.191, + "new_cases_per_million": 10.231, + "new_cases_smoothed_per_million": 17.434, + "total_deaths_per_million": 34.103, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.626, + "new_tests": 1632.0, + "total_tests": 115722.0, + "total_tests_per_thousand": 28.189, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 1274.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 17.8, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-30", + "total_cases": 4993.0, + "new_cases": 70.0, + "new_cases_smoothed": 66.143, + "total_deaths": 141.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1216.242, + "new_cases_per_million": 17.051, + "new_cases_smoothed_per_million": 16.112, + "total_deaths_per_million": 34.346, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.557, + "new_tests": 1448.0, + "total_tests": 117170.0, + "total_tests_per_thousand": 28.541, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 1278.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 19.322, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-31", + "total_cases": 5071.0, + "new_cases": 78.0, + "new_cases_smoothed": 62.429, + "total_deaths": 144.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1235.242, + "new_cases_per_million": 19.0, + "new_cases_smoothed_per_million": 15.207, + "total_deaths_per_million": 35.077, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.557, + "new_tests": 1785.0, + "total_tests": 118955.0, + "total_tests_per_thousand": 28.976, + "new_tests_per_thousand": 0.435, + "new_tests_smoothed": 1371.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 21.961, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-08-01", + "total_cases": 5138.0, + "new_cases": 67.0, + "new_cases_smoothed": 60.429, + "total_deaths": 145.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1251.563, + "new_cases_per_million": 16.32, + "new_cases_smoothed_per_million": 14.72, + "total_deaths_per_million": 35.32, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 1381.0, + "total_tests": 120336.0, + "total_tests_per_thousand": 29.313, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 1403.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 23.217, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-08-02", + "total_cases": 5224.0, + "new_cases": 86.0, + "new_cases_smoothed": 61.714, + "total_deaths": 145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1272.511, + "new_cases_per_million": 20.949, + "new_cases_smoothed_per_million": 15.033, + "total_deaths_per_million": 35.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 984.0, + "total_tests": 121320.0, + "total_tests_per_thousand": 29.552, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 1331.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 21.566999999999997, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-08-03", + "total_cases": 5260.0, + "new_cases": 36.0, + "new_cases_smoothed": 57.571, + "total_deaths": 149.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1281.281, + "new_cases_per_million": 8.769, + "new_cases_smoothed_per_million": 14.024, + "total_deaths_per_million": 36.295, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 763.0, + "total_tests": 122083.0, + "total_tests_per_thousand": 29.738, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 1321.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 22.945, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-08-04", + "total_cases": 5296.0, + "new_cases": 36.0, + "new_cases_smoothed": 59.286, + "total_deaths": 153.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1290.05, + "new_cases_per_million": 8.769, + "new_cases_smoothed_per_million": 14.441, + "total_deaths_per_million": 37.269, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.487, + "new_tests": 1116.0, + "total_tests": 123199.0, + "total_tests_per_thousand": 30.01, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 1301.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 21.945, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-08-05", + "total_cases": 5318.0, + "new_cases": 22.0, + "new_cases_smoothed": 56.429, + "total_deaths": 154.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1295.409, + "new_cases_per_million": 5.359, + "new_cases_smoothed_per_million": 13.745, + "total_deaths_per_million": 37.513, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.487, + "new_tests": 1184.0, + "total_tests": 124383.0, + "total_tests_per_thousand": 30.298, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 21.921999999999997, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-06", + "total_cases": 5376.0, + "new_cases": 58.0, + "new_cases_smoothed": 54.714, + "total_deaths": 154.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1309.537, + "new_cases_per_million": 14.128, + "new_cases_smoothed_per_million": 13.328, + "total_deaths_per_million": 37.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 934.0, + "total_tests": 125317.0, + "total_tests_per_thousand": 30.526, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1164.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 21.274, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-07", + "total_cases": 5404.0, + "new_cases": 28.0, + "new_cases_smoothed": 47.571, + "total_deaths": 155.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1316.357, + "new_cases_per_million": 6.821, + "new_cases_smoothed_per_million": 11.588, + "total_deaths_per_million": 37.756, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 1093.0, + "total_tests": 126410.0, + "total_tests_per_thousand": 30.792, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 1065.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 22.386999999999997, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-08", + "total_cases": 5466.0, + "new_cases": 62.0, + "new_cases_smoothed": 46.857, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1331.46, + "new_cases_per_million": 15.103, + "new_cases_smoothed_per_million": 11.414, + "total_deaths_per_million": 37.756, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 995.0, + "total_tests": 127405.0, + "total_tests_per_thousand": 31.035, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 1010.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 21.555, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-09", + "total_cases": 5543.0, + "new_cases": 77.0, + "new_cases_smoothed": 45.571, + "total_deaths": 157.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1350.216, + "new_cases_per_million": 18.756, + "new_cases_smoothed_per_million": 11.101, + "total_deaths_per_million": 38.244, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 727.0, + "total_tests": 128132.0, + "total_tests_per_thousand": 31.212, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 973.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 21.351, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-10", + "total_cases": 5604.0, + "new_cases": 61.0, + "new_cases_smoothed": 49.143, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1365.075, + "new_cases_per_million": 14.859, + "new_cases_smoothed_per_million": 11.971, + "total_deaths_per_million": 38.244, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1247.0, + "total_tests": 129379.0, + "total_tests_per_thousand": 31.515, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 1042.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 21.203000000000003, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-11", + "total_cases": 5649.0, + "new_cases": 45.0, + "new_cases_smoothed": 50.429, + "total_deaths": 158.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1376.037, + "new_cases_per_million": 10.962, + "new_cases_smoothed_per_million": 12.284, + "total_deaths_per_million": 38.487, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1309.0, + "total_tests": 130688.0, + "total_tests_per_thousand": 31.834, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 1070.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 21.218000000000004, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-12", + "total_cases": 5740.0, + "new_cases": 91.0, + "new_cases_smoothed": 60.286, + "total_deaths": 160.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1398.203, + "new_cases_per_million": 22.167, + "new_cases_smoothed_per_million": 14.685, + "total_deaths_per_million": 38.974, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1604.0, + "total_tests": 132292.0, + "total_tests_per_thousand": 32.225, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 1130.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 18.744, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-13", + "total_cases": 5870.0, + "new_cases": 130.0, + "new_cases_smoothed": 70.571, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1429.87, + "new_cases_per_million": 31.667, + "new_cases_smoothed_per_million": 17.19, + "total_deaths_per_million": 38.974, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1201.0, + "total_tests": 133493.0, + "total_tests_per_thousand": 32.517, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 16.551, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-14", + "total_cases": 6050.0, + "new_cases": 180.0, + "new_cases_smoothed": 92.286, + "total_deaths": 161.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1473.716, + "new_cases_per_million": 43.846, + "new_cases_smoothed_per_million": 22.48, + "total_deaths_per_million": 39.218, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1249.0, + "total_tests": 134742.0, + "total_tests_per_thousand": 32.822, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 1190.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 12.895, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-15", + "total_cases": 6258.0, + "new_cases": 208.0, + "new_cases_smoothed": 113.143, + "total_deaths": 163.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1524.383, + "new_cases_per_million": 50.667, + "new_cases_smoothed_per_million": 27.56, + "total_deaths_per_million": 39.705, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1538.0, + "total_tests": 136280.0, + "total_tests_per_thousand": 33.196, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 1268.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 11.207, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-16", + "total_cases": 6420.0, + "new_cases": 162.0, + "new_cases_smoothed": 125.286, + "total_deaths": 165.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1563.844, + "new_cases_per_million": 39.461, + "new_cases_smoothed_per_million": 30.518, + "total_deaths_per_million": 40.192, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1377.0, + "total_tests": 137657.0, + "total_tests_per_thousand": 33.532, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 1361.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 10.863, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-17", + "total_cases": 6571.0, + "new_cases": 151.0, + "new_cases_smoothed": 138.143, + "total_deaths": 166.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1600.626, + "new_cases_per_million": 36.782, + "new_cases_smoothed_per_million": 33.65, + "total_deaths_per_million": 40.436, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 990.0, + "total_tests": 138647.0, + "total_tests_per_thousand": 33.773, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 1324.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 9.584, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-18", + "total_cases": 6656.0, + "new_cases": 85.0, + "new_cases_smoothed": 143.857, + "total_deaths": 166.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1621.331, + "new_cases_per_million": 20.705, + "new_cases_smoothed_per_million": 35.042, + "total_deaths_per_million": 40.436, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 1824.0, + "total_tests": 140471.0, + "total_tests_per_thousand": 34.217, + "new_tests_per_thousand": 0.444, + "new_tests_smoothed": 1398.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 9.718, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-19", + "total_cases": 6855.0, + "new_cases": 199.0, + "new_cases_smoothed": 159.286, + "total_deaths": 166.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1669.806, + "new_cases_per_million": 48.474, + "new_cases_smoothed_per_million": 38.8, + "total_deaths_per_million": 40.436, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 1653.0, + "total_tests": 142124.0, + "total_tests_per_thousand": 34.62, + "new_tests_per_thousand": 0.403, + "new_tests_smoothed": 1405.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 8.821, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-20", + "total_cases": 7074.0, + "new_cases": 219.0, + "new_cases_smoothed": 172.0, + "total_deaths": 168.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1723.152, + "new_cases_per_million": 53.346, + "new_cases_smoothed_per_million": 41.897, + "total_deaths_per_million": 40.923, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 2397.0, + "total_tests": 144521.0, + "total_tests_per_thousand": 35.204, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 1575.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 9.157, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-21", + "total_cases": 7329.0, + "new_cases": 255.0, + "new_cases_smoothed": 182.714, + "total_deaths": 168.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1785.267, + "new_cases_per_million": 62.115, + "new_cases_smoothed_per_million": 44.507, + "total_deaths_per_million": 40.923, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 1647.0, + "total_tests": 146168.0, + "total_tests_per_thousand": 35.605, + "new_tests_per_thousand": 0.401, + "new_tests_smoothed": 1632.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 8.932, + "positive_rate": 0.11199999999999999, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-22", + "total_cases": 7594.0, + "new_cases": 265.0, + "new_cases_smoothed": 190.857, + "total_deaths": 169.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1849.818, + "new_cases_per_million": 64.551, + "new_cases_smoothed_per_million": 46.491, + "total_deaths_per_million": 41.167, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 2574.0, + "total_tests": 148742.0, + "total_tests_per_thousand": 36.232, + "new_tests_per_thousand": 0.627, + "new_tests_smoothed": 1780.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 9.326, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-23", + "total_cases": 7900.0, + "new_cases": 306.0, + "new_cases_smoothed": 211.429, + "total_deaths": 170.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1924.357, + "new_cases_per_million": 74.538, + "new_cases_smoothed_per_million": 51.502, + "total_deaths_per_million": 41.41, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 1718.0, + "total_tests": 150460.0, + "total_tests_per_thousand": 36.65, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 1829.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 8.651, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-24", + "total_cases": 8175.0, + "new_cases": 275.0, + "new_cases_smoothed": 229.143, + "total_deaths": 171.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1991.344, + "new_cases_per_million": 66.987, + "new_cases_smoothed_per_million": 55.817, + "total_deaths_per_million": 41.654, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 2364.0, + "total_tests": 152824.0, + "total_tests_per_thousand": 37.226, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 2025.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 8.837, + "positive_rate": 0.113, + "tests_units": "people tested" + }, + { + "date": "2020-08-25", + "total_cases": 8311.0, + "new_cases": 136.0, + "new_cases_smoothed": 236.429, + "total_deaths": 173.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2024.472, + "new_cases_per_million": 33.128, + "new_cases_smoothed_per_million": 57.592, + "total_deaths_per_million": 42.141, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 1335.0, + "total_tests": 154159.0, + "total_tests_per_thousand": 37.552, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 1955.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 8.269, + "positive_rate": 0.121, + "tests_units": "people tested" + }, + { + "date": "2020-08-26", + "total_cases": 8530.0, + "new_cases": 219.0, + "new_cases_smoothed": 239.286, + "total_deaths": 175.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2077.818, + "new_cases_per_million": 53.346, + "new_cases_smoothed_per_million": 58.287, + "total_deaths_per_million": 42.628, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 3228.0, + "total_tests": 157387.0, + "total_tests_per_thousand": 38.338, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 2180.0, + "new_tests_smoothed_per_thousand": 0.531, + "tests_per_case": 9.11, + "positive_rate": 0.11, + "tests_units": "people tested" + }, + { + "date": "2020-08-27", + "total_cases": 8888.0, + "new_cases": 358.0, + "new_cases_smoothed": 259.143, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2165.023, + "new_cases_per_million": 87.205, + "new_cases_smoothed_per_million": 63.124, + "total_deaths_per_million": 42.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 2849.0, + "total_tests": 160236.0, + "total_tests_per_thousand": 39.032, + "new_tests_per_thousand": 0.694, + "new_tests_smoothed": 2245.0, + "new_tests_smoothed_per_thousand": 0.547, + "tests_per_case": 8.663, + "positive_rate": 0.115, + "tests_units": "people tested" + }, + { + "date": "2020-08-28", + "total_cases": 9192.0, + "new_cases": 304.0, + "new_cases_smoothed": 266.143, + "total_deaths": 177.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2239.074, + "new_cases_per_million": 74.051, + "new_cases_smoothed_per_million": 64.83, + "total_deaths_per_million": 43.115, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 2065.0, + "total_tests": 162301.0, + "total_tests_per_thousand": 39.535, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 2305.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 8.661, + "positive_rate": 0.115, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 9549.0, + "new_cases": 357.0, + "new_cases_smoothed": 279.286, + "total_deaths": 180.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2326.036, + "new_cases_per_million": 86.961, + "new_cases_smoothed_per_million": 68.031, + "total_deaths_per_million": 43.846, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 3415.0, + "total_tests": 165716.0, + "total_tests_per_thousand": 40.367, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 2425.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 8.683, + "positive_rate": 0.115, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 9861.0, + "new_cases": 312.0, + "new_cases_smoothed": 280.143, + "total_deaths": 183.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2402.036, + "new_cases_per_million": 76.0, + "new_cases_smoothed_per_million": 68.24, + "total_deaths_per_million": 44.577, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 922.0, + "total_tests": 166638.0, + "total_tests_per_thousand": 40.591, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 2311.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 8.249, + "positive_rate": 0.121, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 10123.0, + "new_cases": 262.0, + "new_cases_smoothed": 278.286, + "total_deaths": 184.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2465.856, + "new_cases_per_million": 63.82, + "new_cases_smoothed_per_million": 67.787, + "total_deaths_per_million": 44.82, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1591.0, + "total_tests": 168229.0, + "total_tests_per_thousand": 40.979, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 2201.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 7.909, + "positive_rate": 0.126, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 10269.0, + "new_cases": 146.0, + "new_cases_smoothed": 279.714, + "total_deaths": 186.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2501.42, + "new_cases_per_million": 35.564, + "new_cases_smoothed_per_million": 68.135, + "total_deaths_per_million": 45.308, + "new_deaths_per_million": 0.487, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 2995.0, + "total_tests": 171224.0, + "total_tests_per_thousand": 41.708, + "new_tests_per_thousand": 0.73, + "new_tests_smoothed": 2438.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 8.716000000000001, + "positive_rate": 0.115, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 10414.0, + "new_cases": 145.0, + "new_cases_smoothed": 269.143, + "total_deaths": 187.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2536.741, + "new_cases_per_million": 35.32, + "new_cases_smoothed_per_million": 65.56, + "total_deaths_per_million": 45.551, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 4122.0, + "total_tests": 175346.0, + "total_tests_per_thousand": 42.712, + "new_tests_per_thousand": 1.004, + "new_tests_smoothed": 2566.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 9.533999999999999, + "positive_rate": 0.105, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 10725.0, + "new_cases": 311.0, + "new_cases_smoothed": 262.429, + "total_deaths": 191.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2612.497, + "new_cases_per_million": 75.756, + "new_cases_smoothed_per_million": 63.925, + "total_deaths_per_million": 46.526, + "new_deaths_per_million": 0.974, + "new_deaths_smoothed_per_million": 0.557, + "new_tests": 4492.0, + "total_tests": 179838.0, + "total_tests_per_thousand": 43.807, + "new_tests_per_thousand": 1.094, + "new_tests_smoothed": 2800.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 10.67, + "positive_rate": 0.094, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 11094.0, + "new_cases": 369.0, + "new_cases_smoothed": 271.714, + "total_deaths": 194.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2702.381, + "new_cases_per_million": 89.885, + "new_cases_smoothed_per_million": 66.187, + "total_deaths_per_million": 47.256, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 4074.0, + "total_tests": 183912.0, + "total_tests_per_thousand": 44.799, + "new_tests_per_thousand": 0.992, + "new_tests_smoothed": 3087.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 11.360999999999999, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-09-05", + "total_cases": 11428.0, + "new_cases": 334.0, + "new_cases_smoothed": 268.429, + "total_deaths": 195.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2783.74, + "new_cases_per_million": 81.359, + "new_cases_smoothed_per_million": 65.386, + "total_deaths_per_million": 47.5, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.522 + } + ] + }, + "CUB": { + "continent": "North America", + "location": "Cuba", + "population": 11326616.0, + "population_density": 110.408, + "median_age": 43.1, + "aged_65_older": 14.738, + "aged_70_older": 9.719, + "cardiovasc_death_rate": 190.968, + "diabetes_prevalence": 8.27, + "female_smokers": 17.1, + "male_smokers": 53.3, + "handwashing_facilities": 85.198, + "hospital_beds_per_thousand": 5.2, + "life_expectancy": 78.8, + "data": [ + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.265, + "new_cases_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-14", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.353, + "new_cases_per_million": 0.088, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-15", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.353, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-18", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.618, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-19", + "total_cases": 11.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.971, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 13.89 + }, + { + "date": "2020-03-20", + "total_cases": 16.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.413, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 30.56 + }, + { + "date": "2020-03-21", + "total_cases": 21.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.854, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.214, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 30.56 + }, + { + "date": "2020-03-22", + "total_cases": 25.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.207, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "total_tests": 518.0, + "total_tests_per_thousand": 0.046, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-23", + "total_cases": 35.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.09, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.391, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 107.0, + "total_tests": 625.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.009, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-03-24", + "total_cases": 40.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.532, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 113.0, + "total_tests": 738.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.01, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-25", + "total_cases": 48.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.238, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.517, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 155.0, + "total_tests": 893.0, + "total_tests_per_thousand": 0.079, + "new_tests_per_thousand": 0.014, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-26", + "total_cases": 57.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.032, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 0.58, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 146.0, + "total_tests": 1039.0, + "total_tests_per_thousand": 0.092, + "new_tests_per_thousand": 0.013, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-27", + "total_cases": 67.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.915, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.643, + "total_deaths_per_million": 0.177, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 329.0, + "total_tests": 1368.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.029, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-28", + "total_cases": 80.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.063, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 0.744, + "total_deaths_per_million": 0.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 297.0, + "total_tests": 1665.0, + "total_tests_per_thousand": 0.147, + "new_tests_per_thousand": 0.026, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-29", + "total_cases": 119.0, + "new_cases": 39.0, + "new_cases_smoothed": 13.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.506, + "new_cases_per_million": 3.443, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 0.265, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 342.0, + "total_tests": 2007.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 213.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 15.862, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-30", + "total_cases": 139.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12.272, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 0.265, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 315.0, + "total_tests": 2322.0, + "total_tests_per_thousand": 0.205, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 242.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 16.288, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-31", + "total_cases": 170.0, + "new_cases": 31.0, + "new_cases_smoothed": 18.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.009, + "new_cases_per_million": 2.737, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 0.353, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 444.0, + "total_tests": 2766.0, + "total_tests_per_thousand": 0.244, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 290.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 15.615, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-01", + "total_cases": 186.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.714, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 16.421, + "new_cases_per_million": 1.413, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 576.0, + "total_tests": 3342.0, + "total_tests_per_thousand": 0.295, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 17.754, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-02", + "total_cases": 212.0, + "new_cases": 26.0, + "new_cases_smoothed": 22.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 18.717, + "new_cases_per_million": 2.295, + "new_cases_smoothed_per_million": 1.955, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 803.0, + "total_tests": 4145.0, + "total_tests_per_thousand": 0.366, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 444.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 20.052, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-03", + "total_cases": 233.0, + "new_cases": 21.0, + "new_cases_smoothed": 23.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 20.571, + "new_cases_per_million": 1.854, + "new_cases_smoothed_per_million": 2.094, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1057.0, + "total_tests": 5202.0, + "total_tests_per_thousand": 0.459, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 548.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 23.108, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-04", + "total_cases": 269.0, + "new_cases": 36.0, + "new_cases_smoothed": 27.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 23.749, + "new_cases_per_million": 3.178, + "new_cases_smoothed_per_million": 2.384, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1201.0, + "total_tests": 6403.0, + "total_tests_per_thousand": 0.565, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 677.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 25.074, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-05", + "total_cases": 288.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 25.427, + "new_cases_per_million": 1.677, + "new_cases_smoothed_per_million": 2.132, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 764.0, + "total_tests": 7167.0, + "total_tests_per_thousand": 0.633, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 737.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 30.526999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-06", + "total_cases": 320.0, + "new_cases": 32.0, + "new_cases_smoothed": 25.857, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 28.252, + "new_cases_per_million": 2.825, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 0.706, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1056.0, + "total_tests": 8223.0, + "total_tests_per_thousand": 0.726, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 843.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 32.602, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-04-07", + "total_cases": 350.0, + "new_cases": 30.0, + "new_cases_smoothed": 25.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 30.901, + "new_cases_per_million": 2.649, + "new_cases_smoothed_per_million": 2.27, + "total_deaths_per_million": 0.795, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1187.0, + "total_tests": 9410.0, + "total_tests_per_thousand": 0.831, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 949.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 36.906, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-04-08", + "total_cases": 396.0, + "new_cases": 46.0, + "new_cases_smoothed": 30.0, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 34.962, + "new_cases_per_million": 4.061, + "new_cases_smoothed_per_million": 2.649, + "total_deaths_per_million": 0.971, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1315.0, + "total_tests": 10725.0, + "total_tests_per_thousand": 0.947, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 1055.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 35.167, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-04-09", + "total_cases": 457.0, + "new_cases": 61.0, + "new_cases_smoothed": 35.0, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 40.347, + "new_cases_per_million": 5.386, + "new_cases_smoothed_per_million": 3.09, + "total_deaths_per_million": 1.059, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1298.0, + "total_tests": 12023.0, + "total_tests_per_thousand": 1.061, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 1125.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 32.143, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-04-10", + "total_cases": 515.0, + "new_cases": 58.0, + "new_cases_smoothed": 40.286, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 45.468, + "new_cases_per_million": 5.121, + "new_cases_smoothed_per_million": 3.557, + "total_deaths_per_million": 1.324, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 1139.0, + "total_tests": 13162.0, + "total_tests_per_thousand": 1.162, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 1137.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 28.223000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-04-11", + "total_cases": 564.0, + "new_cases": 49.0, + "new_cases_smoothed": 42.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 49.794, + "new_cases_per_million": 4.326, + "new_cases_smoothed_per_million": 3.721, + "total_deaths_per_million": 1.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 1895.0, + "total_tests": 15057.0, + "total_tests_per_thousand": 1.329, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1236.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 29.329, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 620.0, + "new_cases": 56.0, + "new_cases_smoothed": 47.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 54.738, + "new_cases_per_million": 4.944, + "new_cases_smoothed_per_million": 4.187, + "total_deaths_per_million": 1.413, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 2076.0, + "total_tests": 17133.0, + "total_tests_per_thousand": 1.513, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 1424.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 30.024, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 669.0, + "new_cases": 49.0, + "new_cases_smoothed": 49.857, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 59.064, + "new_cases_per_million": 4.326, + "new_cases_smoothed_per_million": 4.402, + "total_deaths_per_million": 1.589, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1634.0, + "total_tests": 18767.0, + "total_tests_per_thousand": 1.657, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 1506.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 30.206, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 726.0, + "new_cases": 57.0, + "new_cases_smoothed": 53.714, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 64.097, + "new_cases_per_million": 5.032, + "new_cases_smoothed_per_million": 4.742, + "total_deaths_per_million": 1.854, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1684.0, + "total_tests": 20451.0, + "total_tests_per_thousand": 1.806, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 1577.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 29.359, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 766.0, + "new_cases": 40.0, + "new_cases_smoothed": 52.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 67.628, + "new_cases_per_million": 3.532, + "new_cases_smoothed_per_million": 4.667, + "total_deaths_per_million": 1.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1386.0, + "total_tests": 21837.0, + "total_tests_per_thousand": 1.928, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1587.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 30.024, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 814.0, + "new_cases": 48.0, + "new_cases_smoothed": 51.0, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 71.866, + "new_cases_per_million": 4.238, + "new_cases_smoothed_per_million": 4.503, + "total_deaths_per_million": 2.119, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1480.0, + "total_tests": 23317.0, + "total_tests_per_thousand": 2.059, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 1613.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 31.627, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 862.0, + "new_cases": 48.0, + "new_cases_smoothed": 49.571, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 76.104, + "new_cases_per_million": 4.238, + "new_cases_smoothed_per_million": 4.377, + "total_deaths_per_million": 2.384, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1895.0, + "total_tests": 25212.0, + "total_tests_per_thousand": 2.226, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1721.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 34.718, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-18", + "total_cases": 923.0, + "new_cases": 61.0, + "new_cases_smoothed": 51.286, + "total_deaths": 31.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 81.489, + "new_cases_per_million": 5.386, + "new_cases_smoothed_per_million": 4.528, + "total_deaths_per_million": 2.737, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 1770.0, + "total_tests": 26982.0, + "total_tests_per_thousand": 2.382, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1704.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 33.226, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-19", + "total_cases": 986.0, + "new_cases": 63.0, + "new_cases_smoothed": 52.286, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 87.052, + "new_cases_per_million": 5.562, + "new_cases_smoothed_per_million": 4.616, + "total_deaths_per_million": 2.825, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 1616.0, + "total_tests": 28598.0, + "total_tests_per_thousand": 2.525, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 1638.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 31.328000000000003, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-20", + "total_cases": 1035.0, + "new_cases": 49.0, + "new_cases_smoothed": 52.286, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 91.378, + "new_cases_per_million": 4.326, + "new_cases_smoothed_per_million": 4.616, + "total_deaths_per_million": 3.002, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 1818.0, + "total_tests": 30416.0, + "total_tests_per_thousand": 2.685, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 1664.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 31.825, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-21", + "total_cases": 1087.0, + "new_cases": 52.0, + "new_cases_smoothed": 51.571, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 95.969, + "new_cases_per_million": 4.591, + "new_cases_smoothed_per_million": 4.553, + "total_deaths_per_million": 3.178, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 1860.0, + "total_tests": 32276.0, + "total_tests_per_thousand": 2.85, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 1689.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 32.751, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-22", + "total_cases": 1137.0, + "new_cases": 50.0, + "new_cases_smoothed": 53.0, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 100.383, + "new_cases_per_million": 4.414, + "new_cases_smoothed_per_million": 4.679, + "total_deaths_per_million": 3.355, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.214, + "new_tests": 1967.0, + "total_tests": 34243.0, + "total_tests_per_thousand": 3.023, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 1772.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 33.434, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-23", + "total_cases": 1189.0, + "new_cases": 52.0, + "new_cases_smoothed": 53.571, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 104.974, + "new_cases_per_million": 4.591, + "new_cases_smoothed_per_million": 4.73, + "total_deaths_per_million": 3.532, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 1891.0, + "total_tests": 36134.0, + "total_tests_per_thousand": 3.19, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 1831.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 34.179, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-24", + "total_cases": 1235.0, + "new_cases": 46.0, + "new_cases_smoothed": 53.286, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 109.035, + "new_cases_per_million": 4.061, + "new_cases_smoothed_per_million": 4.704, + "total_deaths_per_million": 3.796, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 1857.0, + "total_tests": 37991.0, + "total_tests_per_thousand": 3.354, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 1826.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 34.268, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-25", + "total_cases": 1285.0, + "new_cases": 50.0, + "new_cases_smoothed": 51.714, + "total_deaths": 49.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 113.45, + "new_cases_per_million": 4.414, + "new_cases_smoothed_per_million": 4.566, + "total_deaths_per_million": 4.326, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1837.0, + "total_tests": 39828.0, + "total_tests_per_thousand": 3.516, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1835.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 35.483000000000004, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-26", + "total_cases": 1337.0, + "new_cases": 52.0, + "new_cases_smoothed": 50.143, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 118.041, + "new_cases_per_million": 4.591, + "new_cases_smoothed_per_million": 4.427, + "total_deaths_per_million": 4.503, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 1823.0, + "total_tests": 41651.0, + "total_tests_per_thousand": 3.677, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 1865.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 37.194, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-27", + "total_cases": 1369.0, + "new_cases": 32.0, + "new_cases_smoothed": 47.714, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 120.866, + "new_cases_per_million": 2.825, + "new_cases_smoothed_per_million": 4.213, + "total_deaths_per_million": 4.768, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 1857.0, + "total_tests": 43508.0, + "total_tests_per_thousand": 3.841, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 1870.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 39.192, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-28", + "total_cases": 1389.0, + "new_cases": 20.0, + "new_cases_smoothed": 43.143, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 122.632, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 4.944, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 1836.0, + "total_tests": 45344.0, + "total_tests_per_thousand": 4.003, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1867.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 43.275, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-29", + "total_cases": 1437.0, + "new_cases": 48.0, + "new_cases_smoothed": 42.857, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 126.869, + "new_cases_per_million": 4.238, + "new_cases_smoothed_per_million": 3.784, + "total_deaths_per_million": 5.121, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 2003.0, + "total_tests": 47347.0, + "total_tests_per_thousand": 4.18, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 1872.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 43.68, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-30", + "total_cases": 1467.0, + "new_cases": 30.0, + "new_cases_smoothed": 39.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 129.518, + "new_cases_per_million": 2.649, + "new_cases_smoothed_per_million": 3.506, + "total_deaths_per_million": 5.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 2062.0, + "total_tests": 49409.0, + "total_tests_per_thousand": 4.362, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 1896.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 47.74100000000001, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-01", + "total_cases": 1501.0, + "new_cases": 34.0, + "new_cases_smoothed": 38.0, + "total_deaths": 61.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 132.52, + "new_cases_per_million": 3.002, + "new_cases_smoothed_per_million": 3.355, + "total_deaths_per_million": 5.386, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 2097.0, + "total_tests": 51506.0, + "total_tests_per_thousand": 4.547, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 1931.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 50.816, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-02", + "total_cases": 1537.0, + "new_cases": 36.0, + "new_cases_smoothed": 36.0, + "total_deaths": 64.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 135.698, + "new_cases_per_million": 3.178, + "new_cases_smoothed_per_million": 3.178, + "total_deaths_per_million": 5.65, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 2039.0, + "total_tests": 53545.0, + "total_tests_per_thousand": 4.727, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 1960.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 54.443999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-03", + "total_cases": 1611.0, + "new_cases": 74.0, + "new_cases_smoothed": 39.143, + "total_deaths": 66.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 142.231, + "new_cases_per_million": 6.533, + "new_cases_smoothed_per_million": 3.456, + "total_deaths_per_million": 5.827, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 1997.0, + "total_tests": 55542.0, + "total_tests_per_thousand": 4.904, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 1984.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 50.68600000000001, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-04", + "total_cases": 1649.0, + "new_cases": 38.0, + "new_cases_smoothed": 40.0, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 145.586, + "new_cases_per_million": 3.355, + "new_cases_smoothed_per_million": 3.532, + "total_deaths_per_million": 5.915, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 2169.0, + "total_tests": 57711.0, + "total_tests_per_thousand": 5.095, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 2029.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 50.725, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-05", + "total_cases": 1668.0, + "new_cases": 19.0, + "new_cases_smoothed": 39.857, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 147.264, + "new_cases_per_million": 1.677, + "new_cases_smoothed_per_million": 3.519, + "total_deaths_per_million": 6.092, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 1937.0, + "total_tests": 59648.0, + "total_tests_per_thousand": 5.266, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 2043.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 51.258, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-06", + "total_cases": 1685.0, + "new_cases": 17.0, + "new_cases_smoothed": 35.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 148.765, + "new_cases_per_million": 1.501, + "new_cases_smoothed_per_million": 3.128, + "total_deaths_per_million": 6.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 1965.0, + "total_tests": 61613.0, + "total_tests_per_thousand": 5.44, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 57.523999999999994, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-07", + "total_cases": 1703.0, + "new_cases": 18.0, + "new_cases_smoothed": 33.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 150.354, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 2.977, + "total_deaths_per_million": 6.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 1947.0, + "total_tests": 63560.0, + "total_tests_per_thousand": 5.612, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 2022.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 59.975, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-08", + "total_cases": 1729.0, + "new_cases": 26.0, + "new_cases_smoothed": 32.571, + "total_deaths": 73.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 152.649, + "new_cases_per_million": 2.295, + "new_cases_smoothed_per_million": 2.876, + "total_deaths_per_million": 6.445, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1949.0, + "total_tests": 65509.0, + "total_tests_per_thousand": 5.784, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 2000.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 61.403999999999996, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-09", + "total_cases": 1741.0, + "new_cases": 12.0, + "new_cases_smoothed": 29.143, + "total_deaths": 74.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 153.709, + "new_cases_per_million": 1.059, + "new_cases_smoothed_per_million": 2.573, + "total_deaths_per_million": 6.533, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1826.0, + "total_tests": 67335.0, + "total_tests_per_thousand": 5.945, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 1970.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 67.598, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-10", + "total_cases": 1754.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.429, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 154.856, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 1.804, + "total_deaths_per_million": 6.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 1847.0, + "total_tests": 69182.0, + "total_tests_per_thousand": 6.108, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1949.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 95.406, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-11", + "total_cases": 1766.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.714, + "total_deaths": 77.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 155.916, + "new_cases_per_million": 1.059, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 6.798, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1975.0, + "total_tests": 71157.0, + "total_tests_per_thousand": 6.282, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 1921.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 114.932, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 1783.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.429, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 157.417, + "new_cases_per_million": 1.501, + "new_cases_smoothed_per_million": 1.45, + "total_deaths_per_million": 6.798, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 1972.0, + "total_tests": 73129.0, + "total_tests_per_thousand": 6.456, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 1926.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 117.235, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 1804.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.0, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 159.271, + "new_cases_per_million": 1.854, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 6.886, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 2013.0, + "total_tests": 75142.0, + "total_tests_per_thousand": 6.634, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 1933.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 113.706, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 1810.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.286, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 159.801, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.35, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 2232.0, + "total_tests": 77374.0, + "total_tests_per_thousand": 6.831, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 1973.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 129.075, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 1830.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.429, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 161.566, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.274, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2460.0, + "total_tests": 79834.0, + "total_tests_per_thousand": 7.048, + "new_tests_per_thousand": 0.217, + "new_tests_smoothed": 2046.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 141.80200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 1840.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.143, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 162.449, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 1.249, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 2083.0, + "total_tests": 81917.0, + "total_tests_per_thousand": 7.232, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 2083.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 147.283, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 1862.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.429, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 164.392, + "new_cases_per_million": 1.942, + "new_cases_smoothed_per_million": 1.362, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 1951.0, + "total_tests": 83868.0, + "total_tests_per_thousand": 7.405, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 2098.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 135.981, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-18", + "total_cases": 1872.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.143, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 165.274, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 1.337, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1688.0, + "total_tests": 85556.0, + "total_tests_per_thousand": 7.554, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 2057.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 135.84, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-19", + "total_cases": 1881.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.0, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 166.069, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1732.0, + "total_tests": 87288.0, + "total_tests_per_thousand": 7.706, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 2023.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 144.5, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-20", + "total_cases": 1887.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.857, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 166.599, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.047, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1743.0, + "total_tests": 89031.0, + "total_tests_per_thousand": 7.86, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 1984.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 167.325, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-21", + "total_cases": 1900.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.857, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 167.746, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 1.135, + "total_deaths_per_million": 6.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1880.0, + "total_tests": 90911.0, + "total_tests_per_thousand": 8.026, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 1934.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 150.422, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-22", + "total_cases": 1908.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.143, + "total_deaths": 80.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 168.453, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 7.063, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1718.0, + "total_tests": 92629.0, + "total_tests_per_thousand": 8.178, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 1828.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 164.051, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-23", + "total_cases": 1916.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.857, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 169.159, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.959, + "total_deaths_per_million": 7.151, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1431.0, + "total_tests": 94060.0, + "total_tests_per_thousand": 8.304, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 1735.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 159.803, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-24", + "total_cases": 1931.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.857, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 170.483, + "new_cases_per_million": 1.324, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 7.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1451.0, + "total_tests": 95511.0, + "total_tests_per_thousand": 8.432, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 1663.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 168.71, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-25", + "total_cases": 1941.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.857, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.366, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1492.0, + "total_tests": 97003.0, + "total_tests_per_thousand": 8.564, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 1635.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 165.87, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-26", + "total_cases": 1947.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.896, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.832, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1378.0, + "total_tests": 98381.0, + "total_tests_per_thousand": 8.686, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1585.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 168.106, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-27", + "total_cases": 1963.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.857, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 173.309, + "new_cases_per_million": 1.413, + "new_cases_smoothed_per_million": 0.959, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1364.0, + "total_tests": 99745.0, + "total_tests_per_thousand": 8.806, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 1531.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 141.013, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-28", + "total_cases": 1974.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.571, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 174.28, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 0.933, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1363.0, + "total_tests": 101108.0, + "total_tests_per_thousand": 8.927, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 1457.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 137.82399999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-29", + "total_cases": 1983.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.714, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 175.074, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 0.946, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 2015.0, + "total_tests": 103123.0, + "total_tests_per_thousand": 9.104, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 1499.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 139.907, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-30", + "total_cases": 2005.0, + "new_cases": 22.0, + "new_cases_smoothed": 12.714, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 177.017, + "new_cases_per_million": 1.942, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.24, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2151.0, + "total_tests": 105274.0, + "total_tests_per_thousand": 9.294, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 1602.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-31", + "total_cases": 2025.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.429, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 178.782, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1763.0, + "total_tests": 107037.0, + "total_tests_per_thousand": 9.45, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1647.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 122.649, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-01", + "total_cases": 2045.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 180.548, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1352.0, + "total_tests": 108389.0, + "total_tests_per_thousand": 9.569, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 1627.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 109.51, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-02", + "total_cases": 2083.0, + "new_cases": 38.0, + "new_cases_smoothed": 19.429, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 183.903, + "new_cases_per_million": 3.355, + "new_cases_smoothed_per_million": 1.715, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1960.0, + "total_tests": 110349.0, + "total_tests_per_thousand": 9.742, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 1710.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 88.015, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-03", + "total_cases": 2092.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.429, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 184.698, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 1.627, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2100.0, + "total_tests": 112449.0, + "total_tests_per_thousand": 9.928, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 1815.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 98.488, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-04", + "total_cases": 2107.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 186.022, + "new_cases_per_million": 1.324, + "new_cases_smoothed_per_million": 1.677, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2015.0, + "total_tests": 114464.0, + "total_tests_per_thousand": 10.106, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 1908.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 100.421, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-05", + "total_cases": 2119.0, + "new_cases": 12.0, + "new_cases_smoothed": 19.429, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 187.081, + "new_cases_per_million": 1.059, + "new_cases_smoothed_per_million": 1.715, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2004.0, + "total_tests": 116468.0, + "total_tests_per_thousand": 10.283, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 1906.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 98.103, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-06", + "total_cases": 2133.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.286, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 188.317, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.614, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2020.0, + "total_tests": 118488.0, + "total_tests_per_thousand": 10.461, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 1888.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 103.25, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-07", + "total_cases": 2173.0, + "new_cases": 40.0, + "new_cases_smoothed": 21.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 191.849, + "new_cases_per_million": 3.532, + "new_cases_smoothed_per_million": 1.867, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2048.0, + "total_tests": 120536.0, + "total_tests_per_thousand": 10.642, + "new_tests_per_thousand": 0.181, + "new_tests_smoothed": 1928.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 91.189, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-08", + "total_cases": 2191.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.438, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 1.841, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2067.0, + "total_tests": 122603.0, + "total_tests_per_thousand": 10.824, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 2031.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 97.37700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-09", + "total_cases": 2200.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.714, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.233, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2344.0, + "total_tests": 124947.0, + "total_tests_per_thousand": 11.031, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 2085.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 124.744, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-10", + "total_cases": 2205.0, + "new_cases": 5.0, + "new_cases_smoothed": 16.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.674, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 1.425, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2095.0, + "total_tests": 127042.0, + "total_tests_per_thousand": 11.216, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 2085.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 129.159, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-11", + "total_cases": 2211.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.204, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 7.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2090.0, + "total_tests": 129132.0, + "total_tests_per_thousand": 11.401, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 2095.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 141.01, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-12", + "total_cases": 2219.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.286, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 195.91, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 1.261, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2496.0, + "total_tests": 131628.0, + "total_tests_per_thousand": 11.621, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 2166.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 151.62, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-13", + "total_cases": 2233.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.286, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 197.146, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.261, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2135.0, + "total_tests": 133763.0, + "total_tests_per_thousand": 11.81, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 2182.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 152.74, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-14", + "total_cases": 2238.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 197.588, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.82, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2486.0, + "total_tests": 136249.0, + "total_tests_per_thousand": 12.029, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 2245.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 241.769, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-15", + "total_cases": 2248.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.143, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 198.471, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2582.0, + "total_tests": 138831.0, + "total_tests_per_thousand": 12.257, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 2318.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 284.66700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-16", + "total_cases": 2262.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.857, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.707, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 0.782, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2320.0, + "total_tests": 141151.0, + "total_tests_per_thousand": 12.462, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 2315.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 261.371, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-17", + "total_cases": 2273.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.714, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.678, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2582.0, + "total_tests": 143733.0, + "total_tests_per_thousand": 12.69, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 2384.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 245.412, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-18", + "total_cases": 2280.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.857, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 201.296, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2543.0, + "total_tests": 146276.0, + "total_tests_per_thousand": 12.914, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 2449.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 248.449, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-19", + "total_cases": 2295.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.857, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.62, + "new_cases_per_million": 1.324, + "new_cases_smoothed_per_million": 0.959, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2536.0, + "total_tests": 148812.0, + "total_tests_per_thousand": 13.138, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 226.118, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-20", + "total_cases": 2305.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.286, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 203.503, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2352.0, + "total_tests": 151164.0, + "total_tests_per_thousand": 13.346, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 2486.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 241.69400000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-21", + "total_cases": 2309.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.143, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 203.856, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2069.0, + "total_tests": 153233.0, + "total_tests_per_thousand": 13.529, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 2426.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 239.183, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-22", + "total_cases": 2312.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.121, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.807, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2148.0, + "total_tests": 155381.0, + "total_tests_per_thousand": 13.718, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 2364.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 258.562, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-23", + "total_cases": 2315.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.571, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.386, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.668, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2006.0, + "total_tests": 157387.0, + "total_tests_per_thousand": 13.895, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 2319.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 306.283, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-24", + "total_cases": 2318.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.651, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.568, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2184.0, + "total_tests": 159571.0, + "total_tests_per_thousand": 14.088, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 2263.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 352.022, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-25", + "total_cases": 2319.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.571, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.739, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2103.0, + "total_tests": 161674.0, + "total_tests_per_thousand": 14.274, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 2200.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 394.87199999999996, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-26", + "total_cases": 2321.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.916, + "new_cases_per_million": 0.177, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2288.0, + "total_tests": 163962.0, + "total_tests_per_thousand": 14.476, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 2164.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 582.615, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-27", + "total_cases": 2325.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.269, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 7.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2373.0, + "total_tests": 166335.0, + "total_tests_per_thousand": 14.685, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 2167.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 758.45, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-28", + "total_cases": 2330.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 86.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 205.71, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2210.0, + "total_tests": 168545.0, + "total_tests_per_thousand": 14.88, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 2187.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 729.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-29", + "total_cases": 2332.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 205.887, + "new_cases_per_million": 0.177, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2246.0, + "total_tests": 170791.0, + "total_tests_per_thousand": 15.079, + "new_tests_per_thousand": 0.198, + "new_tests_smoothed": 2201.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 770.35, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-06-30", + "total_cases": 2340.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.571, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.593, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2272.0, + "total_tests": 173063.0, + "total_tests_per_thousand": 15.279, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 2239.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 626.92, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-07-01", + "total_cases": 2341.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.681, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.29, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2309.0, + "total_tests": 175372.0, + "total_tests_per_thousand": 15.483, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 686.913, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-07-02", + "total_cases": 2348.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.299, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2690.0, + "total_tests": 178062.0, + "total_tests_per_thousand": 15.721, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 2341.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 565.069, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-07-03", + "total_cases": 2353.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.741, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.404, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2635.0, + "total_tests": 180697.0, + "total_tests_per_thousand": 15.953, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 2391.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 523.031, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-04", + "total_cases": 2361.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 208.447, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2446.0, + "total_tests": 183143.0, + "total_tests_per_thousand": 16.169, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 2401.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 466.861, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-05", + "total_cases": 2369.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 209.153, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3375.0, + "total_tests": 186518.0, + "total_tests_per_thousand": 16.467, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 2568.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 460.923, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-06", + "total_cases": 2372.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 209.418, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.505, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3081.0, + "total_tests": 189599.0, + "total_tests_per_thousand": 16.739, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 2687.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 470.225, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-07", + "total_cases": 2380.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 210.125, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.505, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2844.0, + "total_tests": 192443.0, + "total_tests_per_thousand": 16.99, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 2769.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 484.575, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-08", + "total_cases": 2395.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.714, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.449, + "new_cases_per_million": 1.324, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3091.0, + "total_tests": 195534.0, + "total_tests_per_thousand": 17.263, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 2880.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 373.333, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-09", + "total_cases": 2399.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.802, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.643, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3141.0, + "total_tests": 198675.0, + "total_tests_per_thousand": 17.541, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 2945.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 404.216, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-10", + "total_cases": 2403.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 212.155, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.631, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3339.0, + "total_tests": 202014.0, + "total_tests_per_thousand": 17.835, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 3045.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 426.3, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-11", + "total_cases": 2413.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.038, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.656, + "total_deaths_per_million": 7.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3106.0, + "total_tests": 205120.0, + "total_tests_per_thousand": 18.11, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 3140.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 422.69199999999995, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-12", + "total_cases": 2420.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.286, + "total_deaths": 87.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 213.656, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.643, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2978.0, + "total_tests": 208098.0, + "total_tests_per_thousand": 18.372, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 3083.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 423.157, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-13", + "total_cases": 2426.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 214.186, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3329.0, + "total_tests": 211427.0, + "total_tests_per_thousand": 18.666, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 3118.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 404.185, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-14", + "total_cases": 2428.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 214.362, + "new_cases_per_million": 0.177, + "new_cases_smoothed_per_million": 0.605, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3372.0, + "total_tests": 214799.0, + "total_tests_per_thousand": 18.964, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 3194.0, + "new_tests_smoothed_per_thousand": 0.282, + "tests_per_case": 465.792, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-15", + "total_cases": 2432.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 214.715, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2761.0, + "total_tests": 217560.0, + "total_tests_per_thousand": 19.208, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 3147.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 595.378, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-16", + "total_cases": 2438.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 215.245, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3179.0, + "total_tests": 220739.0, + "total_tests_per_thousand": 19.489, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 3152.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 565.744, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-17", + "total_cases": 2440.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 215.422, + "new_cases_per_million": 0.177, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2959.0, + "total_tests": 223698.0, + "total_tests_per_thousand": 19.75, + "new_tests_per_thousand": 0.261, + "new_tests_smoothed": 3098.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 586.1080000000001, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-18", + "total_cases": 2444.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 215.775, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.391, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2745.0, + "total_tests": 226443.0, + "total_tests_per_thousand": 19.992, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 3046.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 687.806, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-19", + "total_cases": 2445.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 215.863, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2914.0, + "total_tests": 229357.0, + "total_tests_per_thousand": 20.249, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 3037.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 850.36, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-20", + "total_cases": 2446.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 215.952, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2746.0, + "total_tests": 232103.0, + "total_tests_per_thousand": 20.492, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 2954.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 1033.9, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-21", + "total_cases": 2446.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 215.952, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2714.0, + "total_tests": 234817.0, + "total_tests_per_thousand": 20.731, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 2860.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 1112.222, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-22", + "total_cases": 2449.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 216.216, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.214, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3002.0, + "total_tests": 237819.0, + "total_tests_per_thousand": 20.996, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 2894.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 1191.647, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-23", + "total_cases": 2462.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.429, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.364, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3075.0, + "total_tests": 240894.0, + "total_tests_per_thousand": 21.268, + "new_tests_per_thousand": 0.271, + "new_tests_smoothed": 2879.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 839.7080000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-24", + "total_cases": 2466.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.717, + "new_cases_per_million": 0.353, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3126.0, + "total_tests": 244020.0, + "total_tests_per_thousand": 21.544, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 2903.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 781.577, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-25", + "total_cases": 2469.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.982, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3183.0, + "total_tests": 247203.0, + "total_tests_per_thousand": 21.825, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 2966.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 830.48, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-26", + "total_cases": 2478.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 218.777, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 0.416, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3212.0, + "total_tests": 250415.0, + "total_tests_per_thousand": 22.109, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 3008.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 638.061, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-27", + "total_cases": 2495.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.0, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.278, + "new_cases_per_million": 1.501, + "new_cases_smoothed_per_million": 0.618, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3346.0, + "total_tests": 253761.0, + "total_tests_per_thousand": 22.404, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 3094.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 442.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-28", + "total_cases": 2532.0, + "new_cases": 37.0, + "new_cases_smoothed": 12.286, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.544, + "new_cases_per_million": 3.267, + "new_cases_smoothed_per_million": 1.085, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3235.0, + "total_tests": 256996.0, + "total_tests_per_thousand": 22.69, + "new_tests_per_thousand": 0.286, + "new_tests_smoothed": 3168.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 257.86, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-29", + "total_cases": 2555.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.143, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.575, + "new_cases_per_million": 2.031, + "new_cases_smoothed_per_million": 1.337, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3455.0, + "total_tests": 260451.0, + "total_tests_per_thousand": 22.995, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 3233.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 213.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-30", + "total_cases": 2588.0, + "new_cases": 33.0, + "new_cases_smoothed": 18.0, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.488, + "new_cases_per_million": 2.913, + "new_cases_smoothed_per_million": 1.589, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3696.0, + "total_tests": 264147.0, + "total_tests_per_thousand": 23.321, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 3322.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 184.55599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-31", + "total_cases": 2597.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.283, + "new_cases_per_million": 0.795, + "new_cases_smoothed_per_million": 1.652, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3502.0, + "total_tests": 267649.0, + "total_tests_per_thousand": 23.63, + "new_tests_per_thousand": 0.309, + "new_tests_smoothed": 3376.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 180.39700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-01", + "total_cases": 2608.0, + "new_cases": 11.0, + "new_cases_smoothed": 19.857, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 230.254, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 1.753, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3340.0, + "total_tests": 270989.0, + "total_tests_per_thousand": 23.925, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 3398.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 171.122, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-02", + "total_cases": 2633.0, + "new_cases": 25.0, + "new_cases_smoothed": 22.143, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.461, + "new_cases_per_million": 2.207, + "new_cases_smoothed_per_million": 1.955, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3485.0, + "total_tests": 274474.0, + "total_tests_per_thousand": 24.233, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 3437.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 155.219, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-03", + "total_cases": 2646.0, + "new_cases": 13.0, + "new_cases_smoothed": 21.571, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.609, + "new_cases_per_million": 1.148, + "new_cases_smoothed_per_million": 1.904, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3389.0, + "total_tests": 277863.0, + "total_tests_per_thousand": 24.532, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 3443.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 159.609, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-04", + "total_cases": 2670.0, + "new_cases": 24.0, + "new_cases_smoothed": 19.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 235.728, + "new_cases_per_million": 2.119, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3732.0, + "total_tests": 281595.0, + "total_tests_per_thousand": 24.861, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 3514.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 178.24599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-05", + "total_cases": 2701.0, + "new_cases": 31.0, + "new_cases_smoothed": 20.857, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 238.465, + "new_cases_per_million": 2.737, + "new_cases_smoothed_per_million": 1.841, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3876.0, + "total_tests": 285471.0, + "total_tests_per_thousand": 25.204, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 3574.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 171.356, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-06", + "total_cases": 2726.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.714, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 240.672, + "new_cases_per_million": 2.207, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3941.0, + "total_tests": 289412.0, + "total_tests_per_thousand": 25.551, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 3609.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_per_case": 183.065, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-07", + "total_cases": 2775.0, + "new_cases": 49.0, + "new_cases_smoothed": 25.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.998, + "new_cases_per_million": 4.326, + "new_cases_smoothed_per_million": 2.245, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3657.0, + "total_tests": 293069.0, + "total_tests_per_thousand": 25.874, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 3631.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 142.792, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-08", + "total_cases": 2829.0, + "new_cases": 54.0, + "new_cases_smoothed": 31.571, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 249.766, + "new_cases_per_million": 4.768, + "new_cases_smoothed_per_million": 2.787, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4262.0, + "total_tests": 297331.0, + "total_tests_per_thousand": 26.251, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 3763.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 119.19, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-08-09", + "total_cases": 2888.0, + "new_cases": 59.0, + "new_cases_smoothed": 36.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 254.975, + "new_cases_per_million": 5.209, + "new_cases_smoothed_per_million": 3.216, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4267.0, + "total_tests": 301598.0, + "total_tests_per_thousand": 26.627, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 3875.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 106.37299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-10", + "total_cases": 2953.0, + "new_cases": 65.0, + "new_cases_smoothed": 43.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.713, + "new_cases_per_million": 5.739, + "new_cases_smoothed_per_million": 3.872, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4054.0, + "total_tests": 305652.0, + "total_tests_per_thousand": 26.985, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 3970.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 90.521, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-11", + "total_cases": 3046.0, + "new_cases": 93.0, + "new_cases_smoothed": 53.714, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 268.924, + "new_cases_per_million": 8.211, + "new_cases_smoothed_per_million": 4.742, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4256.0, + "total_tests": 309908.0, + "total_tests_per_thousand": 27.361, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 4045.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 75.306, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-12", + "total_cases": 3093.0, + "new_cases": 47.0, + "new_cases_smoothed": 56.0, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 273.074, + "new_cases_per_million": 4.15, + "new_cases_smoothed_per_million": 4.944, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4591.0, + "total_tests": 314499.0, + "total_tests_per_thousand": 27.766, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 4147.0, + "new_tests_smoothed_per_thousand": 0.366, + "tests_per_case": 74.054, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-13", + "total_cases": 3128.0, + "new_cases": 35.0, + "new_cases_smoothed": 57.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 276.164, + "new_cases_per_million": 3.09, + "new_cases_smoothed_per_million": 5.07, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4941.0, + "total_tests": 319440.0, + "total_tests_per_thousand": 28.203, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 4290.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 74.70100000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-14", + "total_cases": 3174.0, + "new_cases": 46.0, + "new_cases_smoothed": 57.0, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.225, + "new_cases_per_million": 4.061, + "new_cases_smoothed_per_million": 5.032, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4603.0, + "total_tests": 324043.0, + "total_tests_per_thousand": 28.609, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 4425.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 77.632, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-15", + "total_cases": 3229.0, + "new_cases": 55.0, + "new_cases_smoothed": 57.143, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.081, + "new_cases_per_million": 4.856, + "new_cases_smoothed_per_million": 5.045, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3646.0, + "total_tests": 327689.0, + "total_tests_per_thousand": 28.931, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 4337.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 75.89699999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-16", + "total_cases": 3292.0, + "new_cases": 63.0, + "new_cases_smoothed": 57.714, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.643, + "new_cases_per_million": 5.562, + "new_cases_smoothed_per_million": 5.095, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4350.0, + "total_tests": 332039.0, + "total_tests_per_thousand": 29.315, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 4349.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 75.354, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-17", + "total_cases": 3316.0, + "new_cases": 24.0, + "new_cases_smoothed": 51.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.762, + "new_cases_per_million": 2.119, + "new_cases_smoothed_per_million": 4.578, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4294.0, + "total_tests": 336333.0, + "total_tests_per_thousand": 29.694, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 4383.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 84.521, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-18", + "total_cases": 3364.0, + "new_cases": 48.0, + "new_cases_smoothed": 45.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 297.0, + "new_cases_per_million": 4.238, + "new_cases_smoothed_per_million": 4.011, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4990.0, + "total_tests": 341323.0, + "total_tests_per_thousand": 30.135, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 4488.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 98.792, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-19", + "total_cases": 3408.0, + "new_cases": 44.0, + "new_cases_smoothed": 45.0, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.884, + "new_cases_per_million": 3.885, + "new_cases_smoothed_per_million": 3.973, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5116.0, + "total_tests": 346439.0, + "total_tests_per_thousand": 30.586, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 4563.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 101.4, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-20", + "total_cases": 3482.0, + "new_cases": 74.0, + "new_cases_smoothed": 50.571, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 307.418, + "new_cases_per_million": 6.533, + "new_cases_smoothed_per_million": 4.465, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5224.0, + "total_tests": 351663.0, + "total_tests_per_thousand": 31.047, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 4603.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 91.02, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-21", + "total_cases": 3565.0, + "new_cases": 83.0, + "new_cases_smoothed": 55.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 314.745, + "new_cases_per_million": 7.328, + "new_cases_smoothed_per_million": 4.931, + "total_deaths_per_million": 7.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4562.0, + "total_tests": 356225.0, + "total_tests_per_thousand": 31.45, + "new_tests_per_thousand": 0.403, + "new_tests_smoothed": 4597.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 82.29899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-22", + "total_cases": 3582.0, + "new_cases": 17.0, + "new_cases_smoothed": 50.429, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 316.246, + "new_cases_per_million": 1.501, + "new_cases_smoothed_per_million": 4.452, + "total_deaths_per_million": 7.858, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4867.0, + "total_tests": 361092.0, + "total_tests_per_thousand": 31.88, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 4772.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 94.62899999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-23", + "total_cases": 3617.0, + "new_cases": 35.0, + "new_cases_smoothed": 46.429, + "total_deaths": 89.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 319.336, + "new_cases_per_million": 3.09, + "new_cases_smoothed_per_million": 4.099, + "total_deaths_per_million": 7.858, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4261.0, + "total_tests": 365353.0, + "total_tests_per_thousand": 32.256, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 4759.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 102.50200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-24", + "total_cases": 3682.0, + "new_cases": 65.0, + "new_cases_smoothed": 52.286, + "total_deaths": 91.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 325.075, + "new_cases_per_million": 5.739, + "new_cases_smoothed_per_million": 4.616, + "total_deaths_per_million": 8.034, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 4536.0, + "total_tests": 369889.0, + "total_tests_per_thousand": 32.657, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 4794.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 91.689, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-25", + "total_cases": 3717.0, + "new_cases": 35.0, + "new_cases_smoothed": 50.429, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 328.165, + "new_cases_per_million": 3.09, + "new_cases_smoothed_per_million": 4.452, + "total_deaths_per_million": 8.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 3056.0, + "total_tests": 372945.0, + "total_tests_per_thousand": 32.926, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 4517.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 89.572, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-26", + "total_cases": 3744.0, + "new_cases": 27.0, + "new_cases_smoothed": 48.0, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 330.549, + "new_cases_per_million": 2.384, + "new_cases_smoothed_per_million": 4.238, + "total_deaths_per_million": 8.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 4549.0, + "total_tests": 377494.0, + "total_tests_per_thousand": 33.328, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 4436.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 92.417, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-27", + "total_cases": 3759.0, + "new_cases": 15.0, + "new_cases_smoothed": 39.571, + "total_deaths": 92.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 331.873, + "new_cases_per_million": 1.324, + "new_cases_smoothed_per_million": 3.494, + "total_deaths_per_million": 8.122, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5002.0, + "total_tests": 382496.0, + "total_tests_per_thousand": 33.77, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 4405.0, + "new_tests_smoothed_per_thousand": 0.389, + "tests_per_case": 111.318, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-28", + "total_cases": 3806.0, + "new_cases": 47.0, + "new_cases_smoothed": 34.429, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 336.023, + "new_cases_per_million": 4.15, + "new_cases_smoothed_per_million": 3.04, + "total_deaths_per_million": 8.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5698.0, + "total_tests": 388194.0, + "total_tests_per_thousand": 34.273, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 4567.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 132.651, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-29", + "total_cases": 3866.0, + "new_cases": 60.0, + "new_cases_smoothed": 40.571, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 341.32, + "new_cases_per_million": 5.297, + "new_cases_smoothed_per_million": 3.582, + "total_deaths_per_million": 8.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 4591.0, + "total_tests": 392785.0, + "total_tests_per_thousand": 34.678, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 4528.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 111.60600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-30", + "total_cases": 3925.0, + "new_cases": 59.0, + "new_cases_smoothed": 44.0, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 346.529, + "new_cases_per_million": 5.209, + "new_cases_smoothed_per_million": 3.885, + "total_deaths_per_million": 8.299, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 5438.0, + "total_tests": 398223.0, + "total_tests_per_thousand": 35.158, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 4696.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 106.727, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-31", + "total_cases": 3973.0, + "new_cases": 48.0, + "new_cases_smoothed": 41.571, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 350.767, + "new_cases_per_million": 4.238, + "new_cases_smoothed_per_million": 3.67, + "total_deaths_per_million": 8.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 4958.0, + "total_tests": 403181.0, + "total_tests_per_thousand": 35.596, + "new_tests_per_thousand": 0.438, + "new_tests_smoothed": 4756.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 114.405, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-09-01", + "total_cases": 4032.0, + "new_cases": 59.0, + "new_cases_smoothed": 45.0, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 355.976, + "new_cases_per_million": 5.209, + "new_cases_smoothed_per_million": 3.973, + "total_deaths_per_million": 8.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 5546.0, + "total_tests": 408727.0, + "total_tests_per_thousand": 36.086, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 5112.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 113.6, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 4065.0, + "new_cases": 33.0, + "new_cases_smoothed": 45.857, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 358.889, + "new_cases_per_million": 2.913, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 8.387, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5691.0, + "total_tests": 414418.0, + "total_tests_per_thousand": 36.588, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 5275.0, + "new_tests_smoothed_per_thousand": 0.466, + "tests_per_case": 115.031, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 4126.0, + "new_cases": 61.0, + "new_cases_smoothed": 52.429, + "total_deaths": 98.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 364.275, + "new_cases_per_million": 5.386, + "new_cases_smoothed_per_million": 4.629, + "total_deaths_per_million": 8.652, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.076 + }, + { + "date": "2020-09-04", + "total_cases": 4214.0, + "new_cases": 88.0, + "new_cases_smoothed": 58.286, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 372.044, + "new_cases_per_million": 7.769, + "new_cases_smoothed_per_million": 5.146, + "total_deaths_per_million": 8.829, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.101 + }, + { + "date": "2020-09-05", + "total_cases": 4266.0, + "new_cases": 52.0, + "new_cases_smoothed": 57.143, + "total_deaths": 100.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 376.635, + "new_cases_per_million": 4.591, + "new_cases_smoothed_per_million": 5.045, + "total_deaths_per_million": 8.829, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101 + } + ] + }, + "CUW": { + "continent": "North America", + "location": "Curacao", + "population": 164100.0, + "population_density": 362.644, + "median_age": 41.7, + "aged_65_older": 16.367, + "aged_70_older": 10.068, + "diabetes_prevalence": 11.62, + "life_expectancy": 78.88, + "data": [ + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.094, + "new_cases_per_million": 6.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-19", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.871, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.282, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.741, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.741, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.741, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.563, + "new_cases_per_million": 18.282, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 4.353, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 36.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 6.094, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.657, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-03-28", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 48.751, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 48.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-03-30", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 54.845, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 5.223, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-03-31", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 2.612, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-04-01", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 67.032, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.871 + }, + { + "date": "2020-04-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.22, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.595, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.689, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.689, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.689, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.783, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.877, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.877, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.877, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 28.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.628, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.722, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.909, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.003, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 33.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 201.097, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.191, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.285, + "new_cases_per_million": 6.094, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.612, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 37.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.472, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 4.353, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.472, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 43.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.035, + "new_cases_per_million": 36.563, + "new_cases_smoothed_per_million": 7.835, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 47.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.411, + "new_cases_per_million": 24.375, + "new_cases_smoothed_per_million": 10.447, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.411, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.447, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 49.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 298.598, + "new_cases_per_million": 12.188, + "new_cases_smoothed_per_million": 12.188, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 53.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 322.974, + "new_cases_per_million": 24.375, + "new_cases_smoothed_per_million": 15.67, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 57.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 347.349, + "new_cases_per_million": 24.375, + "new_cases_smoothed_per_million": 17.411, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 347.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.411, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 347.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.188, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 68.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 414.381, + "new_cases_per_million": 67.032, + "new_cases_smoothed_per_million": 18.282, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 414.381, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.282, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 414.381, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.54, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 75.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 457.038, + "new_cases_per_million": 42.657, + "new_cases_smoothed_per_million": 19.152, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 78.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 475.32, + "new_cases_per_million": 18.282, + "new_cases_smoothed_per_million": 18.282, + "total_deaths_per_million": 6.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "CYP": { + "continent": "Europe", + "location": "Cyprus", + "population": 875899.0, + "population_density": 127.657, + "median_age": 37.3, + "aged_65_older": 13.416, + "aged_70_older": 8.563, + "gdp_per_capita": 32415.132, + "cardiovasc_death_rate": 141.171, + "diabetes_prevalence": 9.24, + "female_smokers": 19.6, + "male_smokers": 52.7, + "hospital_beds_per_thousand": 3.4, + "life_expectancy": 80.98, + "data": [ + { + "date": "2020-03-10", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.283, + "new_cases_per_million": 2.283, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-12", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.85, + "new_cases_per_million": 4.567, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-14", + "total_cases": 14.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 15.984, + "new_cases_per_million": 9.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-03-15", + "total_cases": 21.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 23.975, + "new_cases_per_million": 7.992, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-16", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.251, + "new_cases_per_million": 10.275, + "new_cases_smoothed_per_million": 4.893, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-17", + "total_cases": 40.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.667, + "new_cases_per_million": 11.417, + "new_cases_smoothed_per_million": 6.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-18", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.667, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-19", + "total_cases": 58.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.218, + "new_cases_per_million": 20.55, + "new_cases_smoothed_per_million": 8.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-20", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.218, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-21", + "total_cases": 67.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.493, + "new_cases_per_million": 10.275, + "new_cases_smoothed_per_million": 8.644, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-22", + "total_cases": 84.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.901, + "new_cases_per_million": 19.409, + "new_cases_smoothed_per_million": 10.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-23", + "total_cases": 95.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.46, + "new_cases_per_million": 12.559, + "new_cases_smoothed_per_million": 10.601, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-24", + "total_cases": 116.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.435, + "new_cases_per_million": 23.975, + "new_cases_smoothed_per_million": 12.395, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-03-25", + "total_cases": 124.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.0, + "total_deaths": 3.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 141.569, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 13.7, + "total_deaths_per_million": 3.425, + "new_deaths_per_million": 3.425, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-03-26", + "total_cases": 132.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 150.702, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 12.069, + "total_deaths_per_million": 3.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-03-27", + "total_cases": 146.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 166.686, + "new_cases_per_million": 15.984, + "new_cases_smoothed_per_million": 14.353, + "total_deaths_per_million": 3.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-03-28", + "total_cases": 162.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 184.953, + "new_cases_per_million": 18.267, + "new_cases_smoothed_per_million": 15.494, + "total_deaths_per_million": 5.708, + "new_deaths_per_million": 2.283, + "new_deaths_smoothed_per_million": 0.815, + "stringency_index": 92.59 + }, + { + "date": "2020-03-29", + "total_cases": 179.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 204.361, + "new_cases_per_million": 19.409, + "new_cases_smoothed_per_million": 15.494, + "total_deaths_per_million": 5.708, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.815, + "stringency_index": 92.59 + }, + { + "date": "2020-03-30", + "total_cases": 214.0, + "new_cases": 35.0, + "new_cases_smoothed": 17.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 244.32, + "new_cases_per_million": 39.959, + "new_cases_smoothed_per_million": 19.409, + "total_deaths_per_million": 6.85, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.979, + "stringency_index": 92.59 + }, + { + "date": "2020-03-31", + "total_cases": 230.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 262.587, + "new_cases_per_million": 18.267, + "new_cases_smoothed_per_million": 18.593, + "total_deaths_per_million": 7.992, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 1.142, + "stringency_index": 92.59 + }, + { + "date": "2020-04-01", + "total_cases": 262.0, + "new_cases": 32.0, + "new_cases_smoothed": 19.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 299.121, + "new_cases_per_million": 36.534, + "new_cases_smoothed_per_million": 22.507, + "total_deaths_per_million": 9.133, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.815, + "stringency_index": 92.59 + }, + { + "date": "2020-04-02", + "total_cases": 320.0, + "new_cases": 58.0, + "new_cases_smoothed": 26.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 365.339, + "new_cases_per_million": 66.218, + "new_cases_smoothed_per_million": 30.662, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.979, + "stringency_index": 92.59 + }, + { + "date": "2020-04-03", + "total_cases": 356.0, + "new_cases": 36.0, + "new_cases_smoothed": 30.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 406.44, + "new_cases_per_million": 41.101, + "new_cases_smoothed_per_million": 34.251, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.979, + "stringency_index": 92.59 + }, + { + "date": "2020-04-04", + "total_cases": 396.0, + "new_cases": 40.0, + "new_cases_smoothed": 33.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 452.107, + "new_cases_per_million": 45.667, + "new_cases_smoothed_per_million": 38.165, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652, + "stringency_index": 92.59 + }, + { + "date": "2020-04-05", + "total_cases": 426.0, + "new_cases": 30.0, + "new_cases_smoothed": 35.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 486.357, + "new_cases_per_million": 34.251, + "new_cases_smoothed_per_million": 40.285, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652, + "stringency_index": 92.59 + }, + { + "date": "2020-04-06", + "total_cases": 446.0, + "new_cases": 20.0, + "new_cases_smoothed": 33.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 509.191, + "new_cases_per_million": 22.834, + "new_cases_smoothed_per_million": 37.839, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-04-07", + "total_cases": 465.0, + "new_cases": 19.0, + "new_cases_smoothed": 33.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 530.883, + "new_cases_per_million": 21.692, + "new_cases_smoothed_per_million": 38.328, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-04-08", + "total_cases": 494.0, + "new_cases": 29.0, + "new_cases_smoothed": 33.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 563.992, + "new_cases_per_million": 33.109, + "new_cases_smoothed_per_million": 37.839, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-04-09", + "total_cases": 526.0, + "new_cases": 32.0, + "new_cases_smoothed": 29.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 600.526, + "new_cases_per_million": 36.534, + "new_cases_smoothed_per_million": 33.598, + "total_deaths_per_million": 10.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-10", + "total_cases": 564.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.714, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 643.91, + "new_cases_per_million": 43.384, + "new_cases_smoothed_per_million": 33.924, + "total_deaths_per_million": 11.417, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-04-11", + "total_cases": 595.0, + "new_cases": 31.0, + "new_cases_smoothed": 28.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 679.302, + "new_cases_per_million": 35.392, + "new_cases_smoothed_per_million": 32.456, + "total_deaths_per_million": 11.417, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-04-12", + "total_cases": 616.0, + "new_cases": 21.0, + "new_cases_smoothed": 27.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 703.277, + "new_cases_per_million": 23.975, + "new_cases_smoothed_per_million": 30.989, + "total_deaths_per_million": 11.417, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-04-13", + "total_cases": 633.0, + "new_cases": 17.0, + "new_cases_smoothed": 26.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 722.686, + "new_cases_per_million": 19.409, + "new_cases_smoothed_per_million": 30.499, + "total_deaths_per_million": 12.559, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-04-14", + "total_cases": 662.0, + "new_cases": 29.0, + "new_cases_smoothed": 28.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 755.795, + "new_cases_per_million": 33.109, + "new_cases_smoothed_per_million": 32.13, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-04-15", + "total_cases": 695.0, + "new_cases": 33.0, + "new_cases_smoothed": 28.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 793.47, + "new_cases_per_million": 37.676, + "new_cases_smoothed_per_million": 32.783, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 92.59 + }, + { + "date": "2020-04-16", + "total_cases": 715.0, + "new_cases": 20.0, + "new_cases_smoothed": 27.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 816.304, + "new_cases_per_million": 22.834, + "new_cases_smoothed_per_million": 30.825, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 94.44 + }, + { + "date": "2020-04-17", + "total_cases": 735.0, + "new_cases": 20.0, + "new_cases_smoothed": 24.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 839.138, + "new_cases_per_million": 22.834, + "new_cases_smoothed_per_million": 27.89, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-18", + "total_cases": 735.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 839.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.834, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-19", + "total_cases": 761.0, + "new_cases": 26.0, + "new_cases_smoothed": 20.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 868.822, + "new_cases_per_million": 29.684, + "new_cases_smoothed_per_million": 23.649, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-20", + "total_cases": 767.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 875.672, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 21.855, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 94.44 + }, + { + "date": "2020-04-21", + "total_cases": 772.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 881.38, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 17.941, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-22", + "total_cases": 784.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 895.08, + "new_cases_per_million": 13.7, + "new_cases_smoothed_per_million": 14.516, + "total_deaths_per_million": 13.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 94.44 + }, + { + "date": "2020-04-23", + "total_cases": 790.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.714, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 901.93, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 12.232, + "total_deaths_per_million": 15.984, + "new_deaths_per_million": 2.283, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-24", + "total_cases": 795.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 907.639, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 9.786, + "total_deaths_per_million": 15.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-25", + "total_cases": 804.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 917.914, + "new_cases_per_million": 10.275, + "new_cases_smoothed_per_million": 11.254, + "total_deaths_per_million": 15.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-26", + "total_cases": 810.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 924.764, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 7.992, + "total_deaths_per_million": 15.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 817.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 932.756, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 8.155, + "total_deaths_per_million": 15.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 822.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 938.464, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 8.155, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 837.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 955.59, + "new_cases_per_million": 17.125, + "new_cases_smoothed_per_million": 8.644, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.489, + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 843.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 962.44, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 8.644, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 94.44 + }, + { + "date": "2020-05-01", + "total_cases": 850.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 970.432, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 8.97, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 94.44 + }, + { + "date": "2020-05-02", + "total_cases": 857.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 978.423, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 8.644, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 94.44 + }, + { + "date": "2020-05-03", + "total_cases": 864.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 986.415, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 8.807, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 94.44 + }, + { + "date": "2020-05-04", + "total_cases": 872.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 995.549, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 8.97, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-05", + "total_cases": 874.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 997.832, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 8.481, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-06", + "total_cases": 878.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1002.399, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 6.687, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-07", + "total_cases": 883.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1008.107, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 6.524, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-08", + "total_cases": 889.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1014.957, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 6.361, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-09", + "total_cases": 891.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1017.241, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 5.545, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-10", + "total_cases": 892.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1018.382, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 4.567, + "total_deaths_per_million": 17.125, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-05-11", + "total_cases": 898.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1025.232, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 4.241, + "total_deaths_per_million": 18.267, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-12", + "total_cases": 901.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1028.657, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 4.404, + "total_deaths_per_million": 18.267, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-13", + "total_cases": 903.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1030.941, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 4.077, + "total_deaths_per_million": 18.267, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-14", + "total_cases": 905.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1033.224, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 3.588, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-05-15", + "total_cases": 907.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1035.508, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-05-16", + "total_cases": 910.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1038.933, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-05-17", + "total_cases": 914.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1043.499, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 3.588, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 92.59 + }, + { + "date": "2020-05-18", + "total_cases": 916.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1045.783, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-19", + "total_cases": 917.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1046.924, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-20", + "total_cases": 918.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1048.066, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.446, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 92.59 + }, + { + "date": "2020-05-21", + "total_cases": 922.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1052.633, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-22", + "total_cases": 923.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1053.774, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-23", + "total_cases": 927.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1058.341, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-24", + "total_cases": 927.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1058.341, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.12, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-25", + "total_cases": 935.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1067.475, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-26", + "total_cases": 937.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1069.758, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 3.262, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-27", + "total_cases": 939.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1072.041, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-28", + "total_cases": 939.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1072.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-29", + "total_cases": 941.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1074.325, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-30", + "total_cases": 941.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1074.325, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-05-31", + "total_cases": 943.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1076.608, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-01", + "total_cases": 944.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1077.75, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-02", + "total_cases": 949.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1083.458, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 1.957, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-03", + "total_cases": 952.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1086.883, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 2.12, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-04", + "total_cases": 958.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1093.733, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-05", + "total_cases": 958.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1093.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-06", + "total_cases": 960.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1096.017, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 19.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-07", + "total_cases": 960.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1096.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 76.85 + }, + { + "date": "2020-06-08", + "total_cases": 964.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1100.584, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 3.262, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 71.3 + }, + { + "date": "2020-06-09", + "total_cases": 970.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1107.434, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 972.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1109.717, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 3.262, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 974.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1112.0, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 975.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1113.142, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 980.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1118.85, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 3.262, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 980.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1118.85, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.262, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 983.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1122.276, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-16", + "total_cases": 985.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.446, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-17", + "total_cases": 985.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.12, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-18", + "total_cases": 985.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.794, + "total_deaths_per_million": 20.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-19", + "total_cases": 985.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.631, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-20", + "total_cases": 985.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-21", + "total_cases": 985.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1124.559, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-22", + "total_cases": 986.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1125.701, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 0.489, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-23", + "total_cases": 988.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1127.984, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 0.489, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 62.96 + }, + { + "date": "2020-06-24", + "total_cases": 990.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1130.267, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-06-25", + "total_cases": 991.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1131.409, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 0.979, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-06-26", + "total_cases": 992.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1132.551, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-06-27", + "total_cases": 992.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1132.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-06-28", + "total_cases": 994.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1134.834, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-06-29", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1134.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-06-30", + "total_cases": 996.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1137.117, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-01", + "total_cases": 998.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1139.401, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-02", + "total_cases": 999.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1140.542, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-03", + "total_cases": 999.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1140.542, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-04", + "total_cases": 999.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1140.542, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-05", + "total_cases": 1002.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1143.968, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-06", + "total_cases": 1003.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1145.109, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-07", + "total_cases": 1004.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1146.251, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-08", + "total_cases": 1005.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1147.393, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-09", + "total_cases": 1008.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1150.818, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-10", + "total_cases": 1010.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1153.101, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 1.794, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-11", + "total_cases": 1013.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1156.526, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-12", + "total_cases": 1014.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1157.668, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 1.957, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-13", + "total_cases": 1021.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1165.66, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-14", + "total_cases": 1022.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1166.801, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-15", + "total_cases": 1022.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1166.801, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-16", + "total_cases": 1023.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1167.943, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.446, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-17", + "total_cases": 1031.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1177.076, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-18", + "total_cases": 1031.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1177.076, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-19", + "total_cases": 1037.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1183.926, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 3.751, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-20", + "total_cases": 1038.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1185.068, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-21", + "total_cases": 1038.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1185.068, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-22", + "total_cases": 1040.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1187.352, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.936, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-23", + "total_cases": 1040.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1187.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-24", + "total_cases": 1045.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1193.06, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-25", + "total_cases": 1047.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1195.343, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-26", + "total_cases": 1053.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1202.193, + "new_cases_per_million": 6.85, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-27", + "total_cases": 1057.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1206.76, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 3.099, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-28", + "total_cases": 1060.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1210.185, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 3.588, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-29", + "total_cases": 1067.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1218.177, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 4.404, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-30", + "total_cases": 1080.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1233.019, + "new_cases_per_million": 14.842, + "new_cases_smoothed_per_million": 6.524, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-07-31", + "total_cases": 1084.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1237.586, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 6.361, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-01", + "total_cases": 1114.0, + "new_cases": 30.0, + "new_cases_smoothed": 9.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1271.836, + "new_cases_per_million": 34.251, + "new_cases_smoothed_per_million": 10.928, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-02", + "total_cases": 1124.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1283.253, + "new_cases_per_million": 11.417, + "new_cases_smoothed_per_million": 11.58, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-03", + "total_cases": 1150.0, + "new_cases": 26.0, + "new_cases_smoothed": 13.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1312.937, + "new_cases_per_million": 29.684, + "new_cases_smoothed_per_million": 15.168, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-04", + "total_cases": 1155.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1318.645, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 15.494, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-05", + "total_cases": 1180.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1347.187, + "new_cases_per_million": 28.542, + "new_cases_smoothed_per_million": 18.43, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-06", + "total_cases": 1195.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1364.313, + "new_cases_per_million": 17.125, + "new_cases_smoothed_per_million": 18.756, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-07", + "total_cases": 1208.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1379.154, + "new_cases_per_million": 14.842, + "new_cases_smoothed_per_million": 20.224, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-08", + "total_cases": 1222.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1395.138, + "new_cases_per_million": 15.984, + "new_cases_smoothed_per_million": 17.615, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-09", + "total_cases": 1233.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1407.697, + "new_cases_per_million": 12.559, + "new_cases_smoothed_per_million": 17.778, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-10", + "total_cases": 1242.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1417.972, + "new_cases_per_million": 10.275, + "new_cases_smoothed_per_million": 15.005, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-11", + "total_cases": 1252.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1429.389, + "new_cases_per_million": 11.417, + "new_cases_smoothed_per_million": 15.82, + "total_deaths_per_million": 21.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-12", + "total_cases": 1277.0, + "new_cases": 25.0, + "new_cases_smoothed": 13.857, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1457.931, + "new_cases_per_million": 28.542, + "new_cases_smoothed_per_million": 15.82, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-13", + "total_cases": 1291.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1473.914, + "new_cases_per_million": 15.984, + "new_cases_smoothed_per_million": 15.657, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-14", + "total_cases": 1305.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1489.898, + "new_cases_per_million": 15.984, + "new_cases_smoothed_per_million": 15.82, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-15", + "total_cases": 1318.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1504.74, + "new_cases_per_million": 14.842, + "new_cases_smoothed_per_million": 15.657, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-16", + "total_cases": 1332.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1520.723, + "new_cases_per_million": 15.984, + "new_cases_smoothed_per_million": 16.147, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-17", + "total_cases": 1332.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1520.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.679, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-18", + "total_cases": 1351.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1542.415, + "new_cases_per_million": 21.692, + "new_cases_smoothed_per_million": 16.147, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-19", + "total_cases": 1359.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1551.549, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 13.374, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-20", + "total_cases": 1385.0, + "new_cases": 26.0, + "new_cases_smoothed": 13.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1581.233, + "new_cases_per_million": 29.684, + "new_cases_smoothed_per_million": 15.331, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 1.142, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-21", + "total_cases": 1395.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1592.649, + "new_cases_per_million": 11.417, + "new_cases_smoothed_per_million": 14.679, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 47.22 + }, + { + "date": "2020-08-22", + "total_cases": 1406.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1605.208, + "new_cases_per_million": 12.559, + "new_cases_smoothed_per_million": 14.353, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.0 + }, + { + "date": "2020-08-23", + "total_cases": 1417.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1617.766, + "new_cases_per_million": 12.559, + "new_cases_smoothed_per_million": 13.863, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.0 + }, + { + "date": "2020-08-24", + "total_cases": 1421.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1622.333, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 14.516, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.0 + }, + { + "date": "2020-08-25", + "total_cases": 1451.0, + "new_cases": 30.0, + "new_cases_smoothed": 14.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1656.584, + "new_cases_per_million": 34.251, + "new_cases_smoothed_per_million": 16.31, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.0 + }, + { + "date": "2020-08-26", + "total_cases": 1474.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1682.842, + "new_cases_per_million": 26.259, + "new_cases_smoothed_per_million": 18.756, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.0 + }, + { + "date": "2020-08-27", + "total_cases": 1481.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1690.834, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 15.657, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-08-28", + "total_cases": 1481.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1690.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.026, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-08-29", + "total_cases": 1481.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1690.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.232, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-08-30", + "total_cases": 1483.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1693.118, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 10.764, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-08-31", + "total_cases": 1487.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1697.684, + "new_cases_per_million": 4.567, + "new_cases_smoothed_per_million": 10.764, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-09-01", + "total_cases": 1488.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1698.826, + "new_cases_per_million": 1.142, + "new_cases_smoothed_per_million": 6.035, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-09-02", + "total_cases": 1490.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1701.109, + "new_cases_per_million": 2.283, + "new_cases_smoothed_per_million": 2.61, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-09-03", + "total_cases": 1495.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1706.818, + "new_cases_per_million": 5.708, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1498.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1710.243, + "new_cases_per_million": 3.425, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1498.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1710.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 23.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "CZE": { + "continent": "Europe", + "location": "Czech Republic", + "population": 10708982.0, + "population_density": 137.176, + "median_age": 43.3, + "aged_65_older": 19.027, + "aged_70_older": 11.58, + "gdp_per_capita": 32605.906, + "cardiovasc_death_rate": 227.485, + "diabetes_prevalence": 6.82, + "female_smokers": 30.5, + "male_smokers": 38.3, + "hospital_beds_per_thousand": 6.63, + "life_expectancy": 79.38, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 28.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 33.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 34.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 37.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 38.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 43.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 48.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 53.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 56.0, + "total_tests_per_thousand": 0.005, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 62.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 64.0, + "total_tests_per_thousand": 0.006, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 72.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 74.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 75.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 76.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 77.0, + "total_tests_per_thousand": 0.007, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 78.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 80.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 82.0, + "total_tests_per_thousand": 0.008, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 83.0, + "total_tests_per_thousand": 0.008, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 86.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 98.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 112.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 135.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 170.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 193.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 200.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 211.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.28, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 262.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 53.667, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 340.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 46.2, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 407.0, + "total_tests_per_thousand": 0.038, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 54.6, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.747, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 483.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 39.375, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.121, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 111.0, + "total_tests": 594.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 33.25, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "total_cases": 19.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.774, + "new_cases_per_million": 0.654, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 193.0, + "total_tests": 787.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 84.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 30.947, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "total_cases": 26.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.428, + "new_cases_per_million": 0.654, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 141.0, + "total_tests": 928.0, + "total_tests_per_thousand": 0.087, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 102.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 27.462, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "total_cases": 32.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.988, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 265.0, + "total_tests": 1193.0, + "total_tests_per_thousand": 0.111, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 133.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 32.103, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 40.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.735, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 165.0, + "total_tests": 1358.0, + "total_tests_per_thousand": 0.127, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 29.0, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 63.0, + "new_cases": 23.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.883, + "new_cases_per_million": 2.148, + "new_cases_smoothed_per_million": 0.774, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 458.0, + "total_tests": 1816.0, + "total_tests_per_thousand": 0.17, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 201.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 24.259, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-12", + "total_cases": 94.0, + "new_cases": 31.0, + "new_cases_smoothed": 12.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.778, + "new_cases_per_million": 2.895, + "new_cases_smoothed_per_million": 1.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 537.0, + "total_tests": 2353.0, + "total_tests_per_thousand": 0.22, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 267.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 21.733, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-13", + "total_cases": 116.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.832, + "new_cases_per_million": 2.054, + "new_cases_smoothed_per_million": 1.387, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 845.0, + "total_tests": 3198.0, + "total_tests_per_thousand": 0.299, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 372.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 25.038, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-03-14", + "total_cases": 150.0, + "new_cases": 34.0, + "new_cases_smoothed": 18.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.007, + "new_cases_per_million": 3.175, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 986.0, + "total_tests": 4184.0, + "total_tests_per_thousand": 0.391, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 485.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 25.916, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-15", + "total_cases": 214.0, + "new_cases": 64.0, + "new_cases_smoothed": 26.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.983, + "new_cases_per_million": 5.976, + "new_cases_smoothed_per_million": 2.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1028.0, + "total_tests": 5212.0, + "total_tests_per_thousand": 0.487, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 22.787, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-16", + "total_cases": 298.0, + "new_cases": 84.0, + "new_cases_smoothed": 38.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.827, + "new_cases_per_million": 7.844, + "new_cases_smoothed_per_million": 3.548, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1319.0, + "total_tests": 6531.0, + "total_tests_per_thousand": 0.61, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 763.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 20.079, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-17", + "total_cases": 344.0, + "new_cases": 46.0, + "new_cases_smoothed": 43.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.123, + "new_cases_per_million": 4.295, + "new_cases_smoothed_per_million": 4.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1294.0, + "total_tests": 7825.0, + "total_tests_per_thousand": 0.731, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 924.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 21.276, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-18", + "total_cases": 434.0, + "new_cases": 90.0, + "new_cases_smoothed": 53.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.527, + "new_cases_per_million": 8.404, + "new_cases_smoothed_per_million": 4.949, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1756.0, + "total_tests": 9581.0, + "total_tests_per_thousand": 0.895, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 1109.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 20.925, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-19", + "total_cases": 522.0, + "new_cases": 88.0, + "new_cases_smoothed": 61.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.744, + "new_cases_per_million": 8.217, + "new_cases_smoothed_per_million": 5.709, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2259.0, + "total_tests": 11840.0, + "total_tests_per_thousand": 1.106, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 1355.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 22.160999999999998, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-20", + "total_cases": 694.0, + "new_cases": 172.0, + "new_cases_smoothed": 82.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.805, + "new_cases_per_million": 16.061, + "new_cases_smoothed_per_million": 7.71, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2121.0, + "total_tests": 13961.0, + "total_tests_per_thousand": 1.304, + "new_tests_per_thousand": 0.198, + "new_tests_smoothed": 1538.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 18.625999999999998, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-21", + "total_cases": 904.0, + "new_cases": 210.0, + "new_cases_smoothed": 107.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 84.415, + "new_cases_per_million": 19.61, + "new_cases_smoothed_per_million": 10.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1882.0, + "total_tests": 15843.0, + "total_tests_per_thousand": 1.479, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 1666.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 15.467, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-22", + "total_cases": 995.0, + "new_cases": 91.0, + "new_cases_smoothed": 111.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.913, + "new_cases_per_million": 8.498, + "new_cases_smoothed_per_million": 10.418, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1801.0, + "total_tests": 17644.0, + "total_tests_per_thousand": 1.648, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 1776.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 15.918, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-23", + "total_cases": 1165.0, + "new_cases": 170.0, + "new_cases_smoothed": 123.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 108.787, + "new_cases_per_million": 15.875, + "new_cases_smoothed_per_million": 11.566, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2291.0, + "total_tests": 19935.0, + "total_tests_per_thousand": 1.862, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 1915.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 15.460999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-24", + "total_cases": 1236.0, + "new_cases": 71.0, + "new_cases_smoothed": 127.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 115.417, + "new_cases_per_million": 6.63, + "new_cases_smoothed_per_million": 11.899, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3062.0, + "total_tests": 22997.0, + "total_tests_per_thousand": 2.147, + "new_tests_per_thousand": 0.286, + "new_tests_smoothed": 2167.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 17.006, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-25", + "total_cases": 1394.0, + "new_cases": 158.0, + "new_cases_smoothed": 137.143, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 130.171, + "new_cases_per_million": 14.754, + "new_cases_smoothed_per_million": 12.806, + "total_deaths_per_million": 0.28, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 4107.0, + "total_tests": 27104.0, + "total_tests_per_thousand": 2.531, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2503.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 18.250999999999998, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-26", + "total_cases": 1654.0, + "new_cases": 260.0, + "new_cases_smoothed": 161.714, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 154.45, + "new_cases_per_million": 24.279, + "new_cases_smoothed_per_million": 15.101, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 4633.0, + "total_tests": 31737.0, + "total_tests_per_thousand": 2.964, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 2842.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 17.574, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-27", + "total_cases": 2062.0, + "new_cases": 408.0, + "new_cases_smoothed": 195.429, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 192.549, + "new_cases_per_million": 38.099, + "new_cases_smoothed_per_million": 18.249, + "total_deaths_per_million": 0.84, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 5359.0, + "total_tests": 37096.0, + "total_tests_per_thousand": 3.464, + "new_tests_per_thousand": 0.5, + "new_tests_smoothed": 3305.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 16.912, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-28", + "total_cases": 2279.0, + "new_cases": 217.0, + "new_cases_smoothed": 196.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 212.812, + "new_cases_per_million": 20.263, + "new_cases_smoothed_per_million": 18.342, + "total_deaths_per_million": 0.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 4224.0, + "total_tests": 41320.0, + "total_tests_per_thousand": 3.858, + "new_tests_per_thousand": 0.394, + "new_tests_smoothed": 3640.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 18.531, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-29", + "total_cases": 2663.0, + "new_cases": 384.0, + "new_cases_smoothed": 238.286, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 248.67, + "new_cases_per_million": 35.858, + "new_cases_smoothed_per_million": 22.251, + "total_deaths_per_million": 1.027, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 2848.0, + "total_tests": 44168.0, + "total_tests_per_thousand": 4.124, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 3789.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 15.901, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-30", + "total_cases": 2829.0, + "new_cases": 166.0, + "new_cases_smoothed": 237.714, + "total_deaths": 16.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 264.171, + "new_cases_per_million": 15.501, + "new_cases_smoothed_per_million": 22.198, + "total_deaths_per_million": 1.494, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 5159.0, + "total_tests": 49327.0, + "total_tests_per_thousand": 4.606, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 4199.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 17.664, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 3002.0, + "new_cases": 173.0, + "new_cases_smoothed": 252.286, + "total_deaths": 24.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 280.325, + "new_cases_per_million": 16.155, + "new_cases_smoothed_per_million": 23.558, + "total_deaths_per_million": 2.241, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 6661.0, + "total_tests": 55988.0, + "total_tests_per_thousand": 5.228, + "new_tests_per_thousand": 0.622, + "new_tests_smoothed": 4713.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 18.680999999999997, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 3308.0, + "new_cases": 306.0, + "new_cases_smoothed": 273.429, + "total_deaths": 31.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 308.9, + "new_cases_per_million": 28.574, + "new_cases_smoothed_per_million": 25.533, + "total_deaths_per_million": 2.895, + "new_deaths_per_million": 0.654, + "new_deaths_smoothed_per_million": 0.374, + "new_tests": 6102.0, + "total_tests": 62090.0, + "total_tests_per_thousand": 5.798, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 4998.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 18.279, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 3589.0, + "new_cases": 281.0, + "new_cases_smoothed": 276.429, + "total_deaths": 39.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 335.139, + "new_cases_per_million": 26.24, + "new_cases_smoothed_per_million": 25.813, + "total_deaths_per_million": 3.642, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.44, + "new_tests": 6673.0, + "total_tests": 68763.0, + "total_tests_per_thousand": 6.421, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 5289.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 19.133, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-03", + "total_cases": 3858.0, + "new_cases": 269.0, + "new_cases_smoothed": 256.571, + "total_deaths": 44.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 360.258, + "new_cases_per_million": 25.119, + "new_cases_smoothed_per_million": 23.959, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.467, + "new_tests": 7398.0, + "total_tests": 76161.0, + "total_tests_per_thousand": 7.112, + "new_tests_per_thousand": 0.691, + "new_tests_smoothed": 5581.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 21.752, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-04", + "total_cases": 4190.0, + "new_cases": 332.0, + "new_cases_smoothed": 273.0, + "total_deaths": 53.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 391.26, + "new_cases_per_million": 31.002, + "new_cases_smoothed_per_million": 25.493, + "total_deaths_per_million": 4.949, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.587, + "new_tests": 5837.0, + "total_tests": 81998.0, + "total_tests_per_thousand": 7.657, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 5811.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 21.285999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-05", + "total_cases": 4472.0, + "new_cases": 282.0, + "new_cases_smoothed": 258.429, + "total_deaths": 59.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 417.593, + "new_cases_per_million": 26.333, + "new_cases_smoothed_per_million": 24.132, + "total_deaths_per_million": 5.509, + "new_deaths_per_million": 0.56, + "new_deaths_smoothed_per_million": 0.64, + "new_tests": 4812.0, + "total_tests": 86810.0, + "total_tests_per_thousand": 8.106, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 6092.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 23.573, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-06", + "total_cases": 4587.0, + "new_cases": 115.0, + "new_cases_smoothed": 251.143, + "total_deaths": 67.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 428.332, + "new_cases_per_million": 10.739, + "new_cases_smoothed_per_million": 23.452, + "total_deaths_per_million": 6.256, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.68, + "new_tests": 6435.0, + "total_tests": 93245.0, + "total_tests_per_thousand": 8.707, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 6274.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 24.982, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-07", + "total_cases": 4822.0, + "new_cases": 235.0, + "new_cases_smoothed": 260.0, + "total_deaths": 78.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 450.276, + "new_cases_per_million": 21.944, + "new_cases_smoothed_per_million": 24.279, + "total_deaths_per_million": 7.284, + "new_deaths_per_million": 1.027, + "new_deaths_smoothed_per_million": 0.72, + "new_tests": 8173.0, + "total_tests": 101418.0, + "total_tests_per_thousand": 9.47, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 6490.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 24.962, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-08", + "total_cases": 5017.0, + "new_cases": 195.0, + "new_cases_smoothed": 244.143, + "total_deaths": 88.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 468.485, + "new_cases_per_million": 18.209, + "new_cases_smoothed_per_million": 22.798, + "total_deaths_per_million": 8.217, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 0.76, + "new_tests": 8469.0, + "total_tests": 109887.0, + "total_tests_per_thousand": 10.261, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 6828.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 27.967, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-09", + "total_cases": 5312.0, + "new_cases": 295.0, + "new_cases_smoothed": 246.143, + "total_deaths": 99.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 496.032, + "new_cases_per_million": 27.547, + "new_cases_smoothed_per_million": 22.985, + "total_deaths_per_million": 9.245, + "new_deaths_per_million": 1.027, + "new_deaths_smoothed_per_million": 0.8, + "new_tests": 8180.0, + "total_tests": 118067.0, + "total_tests_per_thousand": 11.025, + "new_tests_per_thousand": 0.764, + "new_tests_smoothed": 7043.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 28.613000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-10", + "total_cases": 5569.0, + "new_cases": 257.0, + "new_cases_smoothed": 244.429, + "total_deaths": 112.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 520.031, + "new_cases_per_million": 23.999, + "new_cases_smoothed_per_million": 22.825, + "total_deaths_per_million": 10.459, + "new_deaths_per_million": 1.214, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 5702.0, + "total_tests": 123769.0, + "total_tests_per_thousand": 11.557, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 6801.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 27.824, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-11", + "total_cases": 5732.0, + "new_cases": 163.0, + "new_cases_smoothed": 220.286, + "total_deaths": 119.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 535.252, + "new_cases_per_million": 15.221, + "new_cases_smoothed_per_million": 20.57, + "total_deaths_per_million": 11.112, + "new_deaths_per_million": 0.654, + "new_deaths_smoothed_per_million": 0.88, + "new_tests": 4891.0, + "total_tests": 128660.0, + "total_tests_per_thousand": 12.014, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 6666.0, + "new_tests_smoothed_per_thousand": 0.622, + "tests_per_case": 30.261, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-12", + "total_cases": 5902.0, + "new_cases": 170.0, + "new_cases_smoothed": 204.286, + "total_deaths": 129.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 551.126, + "new_cases_per_million": 15.875, + "new_cases_smoothed_per_million": 19.076, + "total_deaths_per_million": 12.046, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 0.934, + "new_tests": 3250.0, + "total_tests": 131910.0, + "total_tests_per_thousand": 12.318, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 6443.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 31.539, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-13", + "total_cases": 5991.0, + "new_cases": 89.0, + "new_cases_smoothed": 200.571, + "total_deaths": 138.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 559.437, + "new_cases_per_million": 8.311, + "new_cases_smoothed_per_million": 18.729, + "total_deaths_per_million": 12.886, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.947, + "new_tests": 3215.0, + "total_tests": 135125.0, + "total_tests_per_thousand": 12.618, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 5983.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 29.83, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-04-14", + "total_cases": 6059.0, + "new_cases": 68.0, + "new_cases_smoothed": 176.714, + "total_deaths": 143.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 565.787, + "new_cases_per_million": 6.35, + "new_cases_smoothed_per_million": 16.502, + "total_deaths_per_million": 13.353, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.867, + "new_tests": 6173.0, + "total_tests": 141298.0, + "total_tests_per_thousand": 13.194, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 5697.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 32.238, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-15", + "total_cases": 6141.0, + "new_cases": 82.0, + "new_cases_smoothed": 160.571, + "total_deaths": 161.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 573.444, + "new_cases_per_million": 7.657, + "new_cases_smoothed_per_million": 14.994, + "total_deaths_per_million": 15.034, + "new_deaths_per_million": 1.681, + "new_deaths_smoothed_per_million": 0.974, + "new_tests": 8476.0, + "total_tests": 149774.0, + "total_tests_per_thousand": 13.986, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 5698.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 35.486, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-16", + "total_cases": 6303.0, + "new_cases": 162.0, + "new_cases_smoothed": 141.571, + "total_deaths": 166.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 588.571, + "new_cases_per_million": 15.127, + "new_cases_smoothed_per_million": 13.22, + "total_deaths_per_million": 15.501, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.894, + "new_tests": 8381.0, + "total_tests": 158155.0, + "total_tests_per_thousand": 14.768, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 5727.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 40.453, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-17", + "total_cases": 6433.0, + "new_cases": 130.0, + "new_cases_smoothed": 123.429, + "total_deaths": 169.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 600.711, + "new_cases_per_million": 12.139, + "new_cases_smoothed_per_million": 11.526, + "total_deaths_per_million": 15.781, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.76, + "new_tests": 8288.0, + "total_tests": 166443.0, + "total_tests_per_thousand": 15.542, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 6096.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 49.388999999999996, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-18", + "total_cases": 6549.0, + "new_cases": 116.0, + "new_cases_smoothed": 116.714, + "total_deaths": 173.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 611.543, + "new_cases_per_million": 10.832, + "new_cases_smoothed_per_million": 10.899, + "total_deaths_per_million": 16.155, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.72, + "new_tests": 5605.0, + "total_tests": 172048.0, + "total_tests_per_thousand": 16.066, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 6198.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 53.104, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-19", + "total_cases": 6654.0, + "new_cases": 105.0, + "new_cases_smoothed": 107.429, + "total_deaths": 181.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 621.348, + "new_cases_per_million": 9.805, + "new_cases_smoothed_per_million": 10.032, + "total_deaths_per_million": 16.902, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.694, + "new_tests": 4027.0, + "total_tests": 176075.0, + "total_tests_per_thousand": 16.442, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 6309.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 58.727, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-04-20", + "total_cases": 6787.0, + "new_cases": 133.0, + "new_cases_smoothed": 113.714, + "total_deaths": 188.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 633.767, + "new_cases_per_million": 12.419, + "new_cases_smoothed_per_million": 10.619, + "total_deaths_per_million": 17.555, + "new_deaths_per_million": 0.654, + "new_deaths_smoothed_per_million": 0.667, + "new_tests": 6567.0, + "total_tests": 182642.0, + "total_tests_per_thousand": 17.055, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 6788.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 59.693000000000005, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-04-21", + "total_cases": 6914.0, + "new_cases": 127.0, + "new_cases_smoothed": 122.143, + "total_deaths": 196.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 645.626, + "new_cases_per_million": 11.859, + "new_cases_smoothed_per_million": 11.406, + "total_deaths_per_million": 18.302, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.707, + "new_tests": 8341.0, + "total_tests": 190983.0, + "total_tests_per_thousand": 17.834, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 7098.0, + "new_tests_smoothed_per_thousand": 0.663, + "tests_per_case": 58.111999999999995, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-22", + "total_cases": 7041.0, + "new_cases": 127.0, + "new_cases_smoothed": 128.571, + "total_deaths": 201.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 657.485, + "new_cases_per_million": 11.859, + "new_cases_smoothed_per_million": 12.006, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.534, + "new_tests": 8818.0, + "total_tests": 199801.0, + "total_tests_per_thousand": 18.657, + "new_tests_per_thousand": 0.823, + "new_tests_smoothed": 7147.0, + "new_tests_smoothed_per_thousand": 0.667, + "tests_per_case": 55.588, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-23", + "total_cases": 7136.0, + "new_cases": 95.0, + "new_cases_smoothed": 119.0, + "total_deaths": 210.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 666.357, + "new_cases_per_million": 8.871, + "new_cases_smoothed_per_million": 11.112, + "total_deaths_per_million": 19.61, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.587, + "new_tests": 7901.0, + "total_tests": 207702.0, + "total_tests_per_thousand": 19.395, + "new_tests_per_thousand": 0.738, + "new_tests_smoothed": 7078.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 59.479, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-24", + "total_cases": 7188.0, + "new_cases": 52.0, + "new_cases_smoothed": 107.857, + "total_deaths": 213.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 671.212, + "new_cases_per_million": 4.856, + "new_cases_smoothed_per_million": 10.072, + "total_deaths_per_million": 19.89, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.587, + "new_tests": 7129.0, + "total_tests": 214831.0, + "total_tests_per_thousand": 20.061, + "new_tests_per_thousand": 0.666, + "new_tests_smoothed": 6913.0, + "new_tests_smoothed_per_thousand": 0.646, + "tests_per_case": 64.094, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-25", + "total_cases": 7273.0, + "new_cases": 85.0, + "new_cases_smoothed": 103.429, + "total_deaths": 215.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 679.15, + "new_cases_per_million": 7.937, + "new_cases_smoothed_per_million": 9.658, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.56, + "new_tests": 4446.0, + "total_tests": 219277.0, + "total_tests_per_thousand": 20.476, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 6747.0, + "new_tests_smoothed_per_thousand": 0.63, + "tests_per_case": 65.233, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-26", + "total_cases": 7352.0, + "new_cases": 79.0, + "new_cases_smoothed": 99.714, + "total_deaths": 218.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 686.527, + "new_cases_per_million": 7.377, + "new_cases_smoothed_per_million": 9.311, + "total_deaths_per_million": 20.357, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.494, + "new_tests": 3381.0, + "total_tests": 222658.0, + "total_tests_per_thousand": 20.792, + "new_tests_per_thousand": 0.316, + "new_tests_smoothed": 6655.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 66.741, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-04-27", + "total_cases": 7404.0, + "new_cases": 52.0, + "new_cases_smoothed": 88.143, + "total_deaths": 221.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 691.382, + "new_cases_per_million": 4.856, + "new_cases_smoothed_per_million": 8.231, + "total_deaths_per_million": 20.637, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.44, + "new_tests": 7754.0, + "total_tests": 230412.0, + "total_tests_per_thousand": 21.516, + "new_tests_per_thousand": 0.724, + "new_tests_smoothed": 6824.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 77.42, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-04-28", + "total_cases": 7449.0, + "new_cases": 45.0, + "new_cases_smoothed": 76.429, + "total_deaths": 223.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 695.584, + "new_cases_per_million": 4.202, + "new_cases_smoothed_per_million": 7.137, + "total_deaths_per_million": 20.824, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 8741.0, + "total_tests": 239153.0, + "total_tests_per_thousand": 22.332, + "new_tests_per_thousand": 0.816, + "new_tests_smoothed": 6881.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 90.03200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-04-29", + "total_cases": 7504.0, + "new_cases": 55.0, + "new_cases_smoothed": 66.143, + "total_deaths": 227.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 700.72, + "new_cases_per_million": 5.136, + "new_cases_smoothed_per_million": 6.176, + "total_deaths_per_million": 21.197, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 7322.0, + "total_tests": 246475.0, + "total_tests_per_thousand": 23.016, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 6668.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 100.81200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-04-30", + "total_cases": 7579.0, + "new_cases": 75.0, + "new_cases_smoothed": 63.286, + "total_deaths": 227.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 707.724, + "new_cases_per_million": 7.003, + "new_cases_smoothed_per_million": 5.91, + "total_deaths_per_million": 21.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 7396.0, + "total_tests": 253871.0, + "total_tests_per_thousand": 23.706, + "new_tests_per_thousand": 0.691, + "new_tests_smoothed": 6596.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 104.226, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-01", + "total_cases": 7682.0, + "new_cases": 103.0, + "new_cases_smoothed": 70.571, + "total_deaths": 236.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 717.342, + "new_cases_per_million": 9.618, + "new_cases_smoothed_per_million": 6.59, + "total_deaths_per_million": 22.038, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 4497.0, + "total_tests": 258368.0, + "total_tests_per_thousand": 24.126, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 6220.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 88.13799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-02", + "total_cases": 7737.0, + "new_cases": 55.0, + "new_cases_smoothed": 66.286, + "total_deaths": 240.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 722.478, + "new_cases_per_million": 5.136, + "new_cases_smoothed_per_million": 6.19, + "total_deaths_per_million": 22.411, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 3885.0, + "total_tests": 262253.0, + "total_tests_per_thousand": 24.489, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 6139.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 92.61399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-03", + "total_cases": 7755.0, + "new_cases": 18.0, + "new_cases_smoothed": 57.571, + "total_deaths": 245.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 724.158, + "new_cases_per_million": 1.681, + "new_cases_smoothed_per_million": 5.376, + "total_deaths_per_million": 22.878, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 3881.0, + "total_tests": 266134.0, + "total_tests_per_thousand": 24.851, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 6211.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 107.883, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-04", + "total_cases": 7781.0, + "new_cases": 26.0, + "new_cases_smoothed": 53.857, + "total_deaths": 248.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 726.586, + "new_cases_per_million": 2.428, + "new_cases_smoothed_per_million": 5.029, + "total_deaths_per_million": 23.158, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 7756.0, + "total_tests": 273890.0, + "total_tests_per_thousand": 25.576, + "new_tests_per_thousand": 0.724, + "new_tests_smoothed": 6211.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 115.324, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-05", + "total_cases": 7819.0, + "new_cases": 38.0, + "new_cases_smoothed": 52.857, + "total_deaths": 252.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 730.135, + "new_cases_per_million": 3.548, + "new_cases_smoothed_per_million": 4.936, + "total_deaths_per_million": 23.532, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.387, + "new_tests": 9383.0, + "total_tests": 283273.0, + "total_tests_per_thousand": 26.452, + "new_tests_per_thousand": 0.876, + "new_tests_smoothed": 6303.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 119.24600000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-06", + "total_cases": 7896.0, + "new_cases": 77.0, + "new_cases_smoothed": 56.0, + "total_deaths": 257.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 737.325, + "new_cases_per_million": 7.19, + "new_cases_smoothed_per_million": 5.229, + "total_deaths_per_million": 23.999, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.4, + "new_tests": 8052.0, + "total_tests": 291325.0, + "total_tests_per_thousand": 27.204, + "new_tests_per_thousand": 0.752, + "new_tests_smoothed": 6407.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 114.411, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-07", + "total_cases": 7974.0, + "new_cases": 78.0, + "new_cases_smoothed": 56.429, + "total_deaths": 262.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 744.609, + "new_cases_per_million": 7.284, + "new_cases_smoothed_per_million": 5.269, + "total_deaths_per_million": 24.465, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.467, + "new_tests": 7599.0, + "total_tests": 298924.0, + "total_tests_per_thousand": 27.913, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 6436.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 114.056, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-08", + "total_cases": 8031.0, + "new_cases": 57.0, + "new_cases_smoothed": 49.857, + "total_deaths": 270.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 749.931, + "new_cases_per_million": 5.323, + "new_cases_smoothed_per_million": 4.656, + "total_deaths_per_million": 25.212, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 4510.0, + "total_tests": 303434.0, + "total_tests_per_thousand": 28.335, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 6438.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 129.129, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-09", + "total_cases": 8077.0, + "new_cases": 46.0, + "new_cases_smoothed": 48.571, + "total_deaths": 273.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 754.227, + "new_cases_per_million": 4.295, + "new_cases_smoothed_per_million": 4.536, + "total_deaths_per_million": 25.493, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.44, + "new_tests": 3788.0, + "total_tests": 307222.0, + "total_tests_per_thousand": 28.688, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 6424.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 132.259, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-10", + "total_cases": 8095.0, + "new_cases": 18.0, + "new_cases_smoothed": 48.571, + "total_deaths": 276.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 755.908, + "new_cases_per_million": 1.681, + "new_cases_smoothed_per_million": 4.536, + "total_deaths_per_million": 25.773, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.414, + "new_tests": 4052.0, + "total_tests": 311274.0, + "total_tests_per_thousand": 29.067, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 6449.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 132.774, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-11", + "total_cases": 8123.0, + "new_cases": 28.0, + "new_cases_smoothed": 48.857, + "total_deaths": 280.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 758.522, + "new_cases_per_million": 2.615, + "new_cases_smoothed_per_million": 4.562, + "total_deaths_per_million": 26.146, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.427, + "new_tests": 7809.0, + "total_tests": 319083.0, + "total_tests_per_thousand": 29.796, + "new_tests_per_thousand": 0.729, + "new_tests_smoothed": 6456.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 132.14, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 8176.0, + "new_cases": 53.0, + "new_cases_smoothed": 51.0, + "total_deaths": 282.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 763.471, + "new_cases_per_million": 4.949, + "new_cases_smoothed_per_million": 4.762, + "total_deaths_per_million": 26.333, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.4, + "new_tests": 8755.0, + "total_tests": 327838.0, + "total_tests_per_thousand": 30.613, + "new_tests_per_thousand": 0.818, + "new_tests_smoothed": 6366.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 124.824, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 8221.0, + "new_cases": 45.0, + "new_cases_smoothed": 46.429, + "total_deaths": 283.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 767.673, + "new_cases_per_million": 4.202, + "new_cases_smoothed_per_million": 4.335, + "total_deaths_per_million": 26.426, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 7687.0, + "total_tests": 335525.0, + "total_tests_per_thousand": 31.331, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 6314.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 135.994, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 8269.0, + "new_cases": 48.0, + "new_cases_smoothed": 42.143, + "total_deaths": 290.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 772.156, + "new_cases_per_million": 4.482, + "new_cases_smoothed_per_million": 3.935, + "total_deaths_per_million": 27.08, + "new_deaths_per_million": 0.654, + "new_deaths_smoothed_per_million": 0.374, + "new_tests": 6902.0, + "total_tests": 342427.0, + "total_tests_per_thousand": 31.976, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 6215.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 147.475, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-15", + "total_cases": 8351.0, + "new_cases": 82.0, + "new_cases_smoothed": 45.714, + "total_deaths": 293.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 779.813, + "new_cases_per_million": 7.657, + "new_cases_smoothed_per_million": 4.269, + "total_deaths_per_million": 27.36, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 6790.0, + "total_tests": 349217.0, + "total_tests_per_thousand": 32.61, + "new_tests_per_thousand": 0.634, + "new_tests_smoothed": 6540.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 143.062, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 8406.0, + "new_cases": 55.0, + "new_cases_smoothed": 47.0, + "total_deaths": 295.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 784.949, + "new_cases_per_million": 5.136, + "new_cases_smoothed_per_million": 4.389, + "total_deaths_per_million": 27.547, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.293, + "new_tests": 4197.0, + "total_tests": 353414.0, + "total_tests_per_thousand": 33.002, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 6599.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 140.404, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 8455.0, + "new_cases": 49.0, + "new_cases_smoothed": 51.429, + "total_deaths": 296.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 789.524, + "new_cases_per_million": 4.576, + "new_cases_smoothed_per_million": 4.802, + "total_deaths_per_million": 27.64, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 3553.0, + "total_tests": 356967.0, + "total_tests_per_thousand": 33.333, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 6528.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 126.93299999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-18", + "total_cases": 8475.0, + "new_cases": 20.0, + "new_cases_smoothed": 50.286, + "total_deaths": 297.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 791.392, + "new_cases_per_million": 1.868, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 27.734, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 7458.0, + "total_tests": 364425.0, + "total_tests_per_thousand": 34.03, + "new_tests_per_thousand": 0.696, + "new_tests_smoothed": 6477.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 128.804, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 8586.0, + "new_cases": 111.0, + "new_cases_smoothed": 58.571, + "total_deaths": 297.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 801.757, + "new_cases_per_million": 10.365, + "new_cases_smoothed_per_million": 5.469, + "total_deaths_per_million": 27.734, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 8336.0, + "total_tests": 372761.0, + "total_tests_per_thousand": 34.808, + "new_tests_per_thousand": 0.778, + "new_tests_smoothed": 6418.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 109.57600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 8647.0, + "new_cases": 61.0, + "new_cases_smoothed": 60.857, + "total_deaths": 302.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 807.453, + "new_cases_per_million": 5.696, + "new_cases_smoothed_per_million": 5.683, + "total_deaths_per_million": 28.201, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.253, + "new_tests": 7518.0, + "total_tests": 380279.0, + "total_tests_per_thousand": 35.51, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 6393.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 105.04899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 8721.0, + "new_cases": 74.0, + "new_cases_smoothed": 64.571, + "total_deaths": 304.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 814.363, + "new_cases_per_million": 6.91, + "new_cases_smoothed_per_million": 6.03, + "total_deaths_per_million": 28.387, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 7290.0, + "total_tests": 387569.0, + "total_tests_per_thousand": 36.191, + "new_tests_per_thousand": 0.681, + "new_tests_smoothed": 6449.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 99.874, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 8754.0, + "new_cases": 33.0, + "new_cases_smoothed": 57.571, + "total_deaths": 306.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 817.445, + "new_cases_per_million": 3.082, + "new_cases_smoothed_per_million": 5.376, + "total_deaths_per_million": 28.574, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 7748.0, + "total_tests": 395317.0, + "total_tests_per_thousand": 36.915, + "new_tests_per_thousand": 0.724, + "new_tests_smoothed": 6586.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 114.397, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 8813.0, + "new_cases": 59.0, + "new_cases_smoothed": 58.143, + "total_deaths": 312.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 822.954, + "new_cases_per_million": 5.509, + "new_cases_smoothed_per_million": 5.429, + "total_deaths_per_million": 29.134, + "new_deaths_per_million": 0.56, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 5059.0, + "total_tests": 400376.0, + "total_tests_per_thousand": 37.387, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 6709.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 115.38799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 8890.0, + "new_cases": 77.0, + "new_cases_smoothed": 62.143, + "total_deaths": 314.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 830.144, + "new_cases_per_million": 7.19, + "new_cases_smoothed_per_million": 5.803, + "total_deaths_per_million": 29.321, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 3849.0, + "total_tests": 404225.0, + "total_tests_per_thousand": 37.746, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 6751.0, + "new_tests_smoothed_per_thousand": 0.63, + "tests_per_case": 108.637, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 8957.0, + "new_cases": 67.0, + "new_cases_smoothed": 68.857, + "total_deaths": 315.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 836.401, + "new_cases_per_million": 6.256, + "new_cases_smoothed_per_million": 6.43, + "total_deaths_per_million": 29.415, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 7508.0, + "total_tests": 411733.0, + "total_tests_per_thousand": 38.447, + "new_tests_per_thousand": 0.701, + "new_tests_smoothed": 6758.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 98.145, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-26", + "total_cases": 9004.0, + "new_cases": 47.0, + "new_cases_smoothed": 59.714, + "total_deaths": 317.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 840.79, + "new_cases_per_million": 4.389, + "new_cases_smoothed_per_million": 5.576, + "total_deaths_per_million": 29.601, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 7241.0, + "total_tests": 418974.0, + "total_tests_per_thousand": 39.124, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 6602.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 110.56, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-27", + "total_cases": 9050.0, + "new_cases": 46.0, + "new_cases_smoothed": 57.571, + "total_deaths": 317.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 845.085, + "new_cases_per_million": 4.295, + "new_cases_smoothed_per_million": 5.376, + "total_deaths_per_million": 29.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 6846.0, + "total_tests": 425820.0, + "total_tests_per_thousand": 39.763, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 6506.0, + "new_tests_smoothed_per_thousand": 0.608, + "tests_per_case": 113.007, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-28", + "total_cases": 9086.0, + "new_cases": 36.0, + "new_cases_smoothed": 52.143, + "total_deaths": 317.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 848.447, + "new_cases_per_million": 3.362, + "new_cases_smoothed_per_million": 4.869, + "total_deaths_per_million": 29.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 6013.0, + "total_tests": 431833.0, + "total_tests_per_thousand": 40.324, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 6323.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 121.26299999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-29", + "total_cases": 9140.0, + "new_cases": 54.0, + "new_cases_smoothed": 55.143, + "total_deaths": 319.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 853.489, + "new_cases_per_million": 5.042, + "new_cases_smoothed_per_million": 5.149, + "total_deaths_per_million": 29.788, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 6113.0, + "total_tests": 437946.0, + "total_tests_per_thousand": 40.895, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 6090.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 110.44, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-30", + "total_cases": 9196.0, + "new_cases": 56.0, + "new_cases_smoothed": 54.714, + "total_deaths": 319.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 858.718, + "new_cases_per_million": 5.229, + "new_cases_smoothed_per_million": 5.109, + "total_deaths_per_million": 29.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 3548.0, + "total_tests": 441494.0, + "total_tests_per_thousand": 41.227, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 5874.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 107.35799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-31", + "total_cases": 9230.0, + "new_cases": 34.0, + "new_cases_smoothed": 48.571, + "total_deaths": 319.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 861.893, + "new_cases_per_million": 3.175, + "new_cases_smoothed_per_million": 4.536, + "total_deaths_per_million": 29.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 2141.0, + "total_tests": 443635.0, + "total_tests_per_thousand": 41.426, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 5630.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 115.912, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-01", + "total_cases": 9273.0, + "new_cases": 43.0, + "new_cases_smoothed": 45.143, + "total_deaths": 320.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 865.909, + "new_cases_per_million": 4.015, + "new_cases_smoothed_per_million": 4.215, + "total_deaths_per_million": 29.881, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 5721.0, + "total_tests": 449356.0, + "total_tests_per_thousand": 41.961, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 5375.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 119.066, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-02", + "total_cases": 9302.0, + "new_cases": 29.0, + "new_cases_smoothed": 42.571, + "total_deaths": 321.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 868.617, + "new_cases_per_million": 2.708, + "new_cases_smoothed_per_million": 3.975, + "total_deaths_per_million": 29.975, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 6478.0, + "total_tests": 455834.0, + "total_tests_per_thousand": 42.566, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 5266.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 123.698, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-03", + "total_cases": 9364.0, + "new_cases": 62.0, + "new_cases_smoothed": 44.857, + "total_deaths": 323.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 874.406, + "new_cases_per_million": 5.79, + "new_cases_smoothed_per_million": 4.189, + "total_deaths_per_million": 30.162, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 5313.0, + "total_tests": 461147.0, + "total_tests_per_thousand": 43.062, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 5047.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 112.51299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-04", + "total_cases": 9438.0, + "new_cases": 74.0, + "new_cases_smoothed": 50.286, + "total_deaths": 324.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 881.316, + "new_cases_per_million": 6.91, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 30.255, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 5011.0, + "total_tests": 466158.0, + "total_tests_per_thousand": 43.53, + "new_tests_per_thousand": 0.468, + "new_tests_smoothed": 4904.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 97.523, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-05", + "total_cases": 9494.0, + "new_cases": 56.0, + "new_cases_smoothed": 50.571, + "total_deaths": 326.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 886.546, + "new_cases_per_million": 5.229, + "new_cases_smoothed_per_million": 4.722, + "total_deaths_per_million": 30.442, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 4173.0, + "total_tests": 470331.0, + "total_tests_per_thousand": 43.919, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 4626.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 91.475, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-06", + "total_cases": 9529.0, + "new_cases": 35.0, + "new_cases_smoothed": 47.571, + "total_deaths": 327.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 889.814, + "new_cases_per_million": 3.268, + "new_cases_smoothed_per_million": 4.442, + "total_deaths_per_million": 30.535, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 2150.0, + "total_tests": 472481.0, + "total_tests_per_thousand": 44.12, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 4427.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 93.06, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-07", + "total_cases": 9567.0, + "new_cases": 38.0, + "new_cases_smoothed": 48.143, + "total_deaths": 327.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 893.362, + "new_cases_per_million": 3.548, + "new_cases_smoothed_per_million": 4.496, + "total_deaths_per_million": 30.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 2127.0, + "total_tests": 474608.0, + "total_tests_per_thousand": 44.319, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 4425.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 91.914, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-08", + "total_cases": 9628.0, + "new_cases": 61.0, + "new_cases_smoothed": 50.714, + "total_deaths": 327.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 899.058, + "new_cases_per_million": 5.696, + "new_cases_smoothed_per_million": 4.736, + "total_deaths_per_million": 30.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 4684.0, + "total_tests": 479292.0, + "total_tests_per_thousand": 44.756, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 4277.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 84.335, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-09", + "total_cases": 9697.0, + "new_cases": 69.0, + "new_cases_smoothed": 56.429, + "total_deaths": 328.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 905.502, + "new_cases_per_million": 6.443, + "new_cases_smoothed_per_million": 5.269, + "total_deaths_per_million": 30.628, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 4552.0, + "total_tests": 483844.0, + "total_tests_per_thousand": 45.181, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 4001.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 70.904, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-10", + "total_cases": 9751.0, + "new_cases": 54.0, + "new_cases_smoothed": 55.286, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 910.544, + "new_cases_per_million": 5.042, + "new_cases_smoothed_per_million": 5.163, + "total_deaths_per_million": 30.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 4068.0, + "total_tests": 487912.0, + "total_tests_per_thousand": 45.561, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 3824.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 69.168, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-11", + "total_cases": 9824.0, + "new_cases": 73.0, + "new_cases_smoothed": 55.143, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 917.361, + "new_cases_per_million": 6.817, + "new_cases_smoothed_per_million": 5.149, + "total_deaths_per_million": 30.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3739.0, + "total_tests": 491651.0, + "total_tests_per_thousand": 45.91, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 3642.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 66.047, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-12", + "total_cases": 9886.0, + "new_cases": 62.0, + "new_cases_smoothed": 56.0, + "total_deaths": 329.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 923.15, + "new_cases_per_million": 5.79, + "new_cases_smoothed_per_million": 5.229, + "total_deaths_per_million": 30.722, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 3726.0, + "total_tests": 495377.0, + "total_tests_per_thousand": 46.258, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 3578.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 63.893, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-13", + "total_cases": 9938.0, + "new_cases": 52.0, + "new_cases_smoothed": 58.429, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 928.006, + "new_cases_per_million": 4.856, + "new_cases_smoothed_per_million": 5.456, + "total_deaths_per_million": 30.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1652.0, + "total_tests": 497029.0, + "total_tests_per_thousand": 46.412, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 3507.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 60.022, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-14", + "total_cases": 9991.0, + "new_cases": 53.0, + "new_cases_smoothed": 60.571, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 932.955, + "new_cases_per_million": 4.949, + "new_cases_smoothed_per_million": 5.656, + "total_deaths_per_million": 30.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1121.0, + "total_tests": 498150.0, + "total_tests_per_thousand": 46.517, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3363.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 55.521, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-15", + "total_cases": 10024.0, + "new_cases": 33.0, + "new_cases_smoothed": 56.571, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 936.037, + "new_cases_per_million": 3.082, + "new_cases_smoothed_per_million": 5.283, + "total_deaths_per_million": 30.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3673.0, + "total_tests": 501823.0, + "total_tests_per_thousand": 46.86, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 3219.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 56.902, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-16", + "total_cases": 10064.0, + "new_cases": 40.0, + "new_cases_smoothed": 52.429, + "total_deaths": 330.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 939.772, + "new_cases_per_million": 3.735, + "new_cases_smoothed_per_million": 4.896, + "total_deaths_per_million": 30.815, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4023.0, + "total_tests": 505846.0, + "total_tests_per_thousand": 47.236, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 3143.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 59.948, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-17", + "total_cases": 10111.0, + "new_cases": 47.0, + "new_cases_smoothed": 51.429, + "total_deaths": 331.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 944.161, + "new_cases_per_million": 4.389, + "new_cases_smoothed_per_million": 4.802, + "total_deaths_per_million": 30.909, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 4036.0, + "total_tests": 509882.0, + "total_tests_per_thousand": 47.613, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 3139.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 61.036, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-18", + "total_cases": 10162.0, + "new_cases": 51.0, + "new_cases_smoothed": 48.286, + "total_deaths": 333.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 948.923, + "new_cases_per_million": 4.762, + "new_cases_smoothed_per_million": 4.509, + "total_deaths_per_million": 31.095, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 4403.0, + "total_tests": 514285.0, + "total_tests_per_thousand": 48.024, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 3233.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 66.956, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-19", + "total_cases": 10230.0, + "new_cases": 68.0, + "new_cases_smoothed": 49.143, + "total_deaths": 334.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 955.273, + "new_cases_per_million": 6.35, + "new_cases_smoothed_per_million": 4.589, + "total_deaths_per_million": 31.189, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 3574.0, + "total_tests": 517859.0, + "total_tests_per_thousand": 48.357, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 3212.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 65.36, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-20", + "total_cases": 10406.0, + "new_cases": 176.0, + "new_cases_smoothed": 66.857, + "total_deaths": 335.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 971.708, + "new_cases_per_million": 16.435, + "new_cases_smoothed_per_million": 6.243, + "total_deaths_per_million": 31.282, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 1699.0, + "total_tests": 519558.0, + "total_tests_per_thousand": 48.516, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 3218.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 48.132, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-21", + "total_cases": 10448.0, + "new_cases": 42.0, + "new_cases_smoothed": 65.286, + "total_deaths": 336.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 975.63, + "new_cases_per_million": 3.922, + "new_cases_smoothed_per_million": 6.096, + "total_deaths_per_million": 31.376, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 1313.0, + "total_tests": 520871.0, + "total_tests_per_thousand": 48.639, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 3246.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 49.72, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-22", + "total_cases": 10498.0, + "new_cases": 50.0, + "new_cases_smoothed": 67.714, + "total_deaths": 336.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 980.299, + "new_cases_per_million": 4.669, + "new_cases_smoothed_per_million": 6.323, + "total_deaths_per_million": 31.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 3910.0, + "total_tests": 524781.0, + "total_tests_per_thousand": 49.004, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 3280.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 48.43899999999999, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-23", + "total_cases": 10561.0, + "new_cases": 63.0, + "new_cases_smoothed": 71.0, + "total_deaths": 336.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 986.182, + "new_cases_per_million": 5.883, + "new_cases_smoothed_per_million": 6.63, + "total_deaths_per_million": 31.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 4567.0, + "total_tests": 529348.0, + "total_tests_per_thousand": 49.43, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 3357.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 47.282, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-24", + "total_cases": 10650.0, + "new_cases": 89.0, + "new_cases_smoothed": 77.0, + "total_deaths": 339.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 994.492, + "new_cases_per_million": 8.311, + "new_cases_smoothed_per_million": 7.19, + "total_deaths_per_million": 31.656, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 4287.0, + "total_tests": 533635.0, + "total_tests_per_thousand": 49.831, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 3393.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 44.065, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-25", + "total_cases": 10777.0, + "new_cases": 127.0, + "new_cases_smoothed": 87.857, + "total_deaths": 343.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1006.351, + "new_cases_per_million": 11.859, + "new_cases_smoothed_per_million": 8.204, + "total_deaths_per_million": 32.029, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 4047.0, + "total_tests": 537682.0, + "total_tests_per_thousand": 50.209, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 3342.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 38.039, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-26", + "total_cases": 10870.0, + "new_cases": 93.0, + "new_cases_smoothed": 91.429, + "total_deaths": 345.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1015.036, + "new_cases_per_million": 8.684, + "new_cases_smoothed_per_million": 8.538, + "total_deaths_per_million": 32.216, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 4533.0, + "total_tests": 542215.0, + "total_tests_per_thousand": 50.632, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 3479.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 38.052, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-27", + "total_cases": 11038.0, + "new_cases": 168.0, + "new_cases_smoothed": 90.286, + "total_deaths": 345.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1030.724, + "new_cases_per_million": 15.688, + "new_cases_smoothed_per_million": 8.431, + "total_deaths_per_million": 32.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 2554.0, + "total_tests": 544769.0, + "total_tests_per_thousand": 50.87, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 3602.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 39.896, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-28", + "total_cases": 11298.0, + "new_cases": 260.0, + "new_cases_smoothed": 121.429, + "total_deaths": 347.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1055.002, + "new_cases_per_million": 24.279, + "new_cases_smoothed_per_million": 11.339, + "total_deaths_per_million": 32.403, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 2423.0, + "total_tests": 547192.0, + "total_tests_per_thousand": 51.097, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 3760.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 30.965, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-29", + "total_cases": 11603.0, + "new_cases": 305.0, + "new_cases_smoothed": 157.857, + "total_deaths": 348.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1083.483, + "new_cases_per_million": 28.481, + "new_cases_smoothed_per_million": 14.741, + "total_deaths_per_million": 32.496, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 4485.0, + "total_tests": 551677.0, + "total_tests_per_thousand": 51.515, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 3842.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 24.338, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-06-30", + "total_cases": 11805.0, + "new_cases": 202.0, + "new_cases_smoothed": 177.714, + "total_deaths": 348.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1102.346, + "new_cases_per_million": 18.863, + "new_cases_smoothed_per_million": 16.595, + "total_deaths_per_million": 32.496, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 4412.0, + "total_tests": 556089.0, + "total_tests_per_thousand": 51.927, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 3820.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 21.495, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-01", + "total_cases": 11954.0, + "new_cases": 149.0, + "new_cases_smoothed": 186.286, + "total_deaths": 349.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1116.259, + "new_cases_per_million": 13.914, + "new_cases_smoothed_per_million": 17.395, + "total_deaths_per_million": 32.589, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 4593.0, + "total_tests": 560682.0, + "total_tests_per_thousand": 52.356, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 3864.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 20.741999999999997, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-02", + "total_cases": 12046.0, + "new_cases": 92.0, + "new_cases_smoothed": 181.286, + "total_deaths": 349.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1124.85, + "new_cases_per_million": 8.591, + "new_cases_smoothed_per_million": 16.928, + "total_deaths_per_million": 32.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 4665.0, + "total_tests": 565347.0, + "total_tests_per_thousand": 52.792, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 3952.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 21.8, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-03", + "total_cases": 12178.0, + "new_cases": 132.0, + "new_cases_smoothed": 186.857, + "total_deaths": 351.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1137.176, + "new_cases_per_million": 12.326, + "new_cases_smoothed_per_million": 17.449, + "total_deaths_per_million": 32.776, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 5109.0, + "total_tests": 570456.0, + "total_tests_per_thousand": 53.269, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 4034.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 21.589000000000002, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-04", + "total_cases": 12319.0, + "new_cases": 141.0, + "new_cases_smoothed": 183.0, + "total_deaths": 352.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1150.343, + "new_cases_per_million": 13.167, + "new_cases_smoothed_per_million": 17.088, + "total_deaths_per_million": 32.87, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 1687.0, + "total_tests": 572143.0, + "total_tests_per_thousand": 53.426, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 3911.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 21.372, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-05", + "total_cases": 12440.0, + "new_cases": 121.0, + "new_cases_smoothed": 163.143, + "total_deaths": 351.0, + "new_deaths": -1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1161.642, + "new_cases_per_million": 11.299, + "new_cases_smoothed_per_million": 15.234, + "total_deaths_per_million": 32.776, + "new_deaths_per_million": -0.093, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1524.0, + "total_tests": 573667.0, + "total_tests_per_thousand": 53.569, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 3782.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 23.182, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-06", + "total_cases": 12515.0, + "new_cases": 75.0, + "new_cases_smoothed": 130.286, + "total_deaths": 348.0, + "new_deaths": -3.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1168.645, + "new_cases_per_million": 7.003, + "new_cases_smoothed_per_million": 12.166, + "total_deaths_per_million": 32.496, + "new_deaths_per_million": -0.28, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1714.0, + "total_tests": 575381.0, + "total_tests_per_thousand": 53.729, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 3386.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 25.989, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-07", + "total_cases": 12566.0, + "new_cases": 51.0, + "new_cases_smoothed": 108.714, + "total_deaths": 350.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1173.408, + "new_cases_per_million": 4.762, + "new_cases_smoothed_per_million": 10.152, + "total_deaths_per_million": 32.683, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4159.0, + "total_tests": 579540.0, + "total_tests_per_thousand": 54.117, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 3350.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 30.815, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-08", + "total_cases": 12685.0, + "new_cases": 119.0, + "new_cases_smoothed": 104.429, + "total_deaths": 351.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1184.52, + "new_cases_per_million": 11.112, + "new_cases_smoothed_per_million": 9.751, + "total_deaths_per_million": 32.776, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 5406.0, + "total_tests": 584946.0, + "total_tests_per_thousand": 54.622, + "new_tests_per_thousand": 0.505, + "new_tests_smoothed": 3466.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 33.19, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-09", + "total_cases": 12814.0, + "new_cases": 129.0, + "new_cases_smoothed": 109.714, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1196.566, + "new_cases_per_million": 12.046, + "new_cases_smoothed_per_million": 10.245, + "total_deaths_per_million": 32.776, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4682.0, + "total_tests": 589628.0, + "total_tests_per_thousand": 55.059, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 3469.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 31.618000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-10", + "total_cases": 12919.0, + "new_cases": 105.0, + "new_cases_smoothed": 105.857, + "total_deaths": 352.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1206.371, + "new_cases_per_million": 9.805, + "new_cases_smoothed_per_million": 9.885, + "total_deaths_per_million": 32.87, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 5333.0, + "total_tests": 594961.0, + "total_tests_per_thousand": 55.557, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 3501.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 33.073, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-11", + "total_cases": 13062.0, + "new_cases": 143.0, + "new_cases_smoothed": 106.143, + "total_deaths": 352.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1219.724, + "new_cases_per_million": 13.353, + "new_cases_smoothed_per_million": 9.912, + "total_deaths_per_million": 32.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2321.0, + "total_tests": 597282.0, + "total_tests_per_thousand": 55.774, + "new_tests_per_thousand": 0.217, + "new_tests_smoothed": 3591.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 33.832, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-12", + "total_cases": 13115.0, + "new_cases": 53.0, + "new_cases_smoothed": 96.429, + "total_deaths": 352.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1224.673, + "new_cases_per_million": 4.949, + "new_cases_smoothed_per_million": 9.004, + "total_deaths_per_million": 32.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1787.0, + "total_tests": 599069.0, + "total_tests_per_thousand": 55.941, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 3629.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 37.634, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-13", + "total_cases": 13174.0, + "new_cases": 59.0, + "new_cases_smoothed": 94.143, + "total_deaths": 352.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1230.182, + "new_cases_per_million": 5.509, + "new_cases_smoothed_per_million": 8.791, + "total_deaths_per_million": 32.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4424.0, + "total_tests": 603493.0, + "total_tests_per_thousand": 56.354, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 4016.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 42.659, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-14", + "total_cases": 13238.0, + "new_cases": 64.0, + "new_cases_smoothed": 96.0, + "total_deaths": 353.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1236.159, + "new_cases_per_million": 5.976, + "new_cases_smoothed_per_million": 8.964, + "total_deaths_per_million": 32.963, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 4802.0, + "total_tests": 608295.0, + "total_tests_per_thousand": 56.802, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 4108.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 42.792, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-15", + "total_cases": 13341.0, + "new_cases": 103.0, + "new_cases_smoothed": 93.714, + "total_deaths": 355.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1245.777, + "new_cases_per_million": 9.618, + "new_cases_smoothed_per_million": 8.751, + "total_deaths_per_million": 33.15, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4694.0, + "total_tests": 612989.0, + "total_tests_per_thousand": 57.241, + "new_tests_per_thousand": 0.438, + "new_tests_smoothed": 4006.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 42.747, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-16", + "total_cases": 13475.0, + "new_cases": 134.0, + "new_cases_smoothed": 94.429, + "total_deaths": 355.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1258.29, + "new_cases_per_million": 12.513, + "new_cases_smoothed_per_million": 8.818, + "total_deaths_per_million": 33.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4730.0, + "total_tests": 617719.0, + "total_tests_per_thousand": 57.682, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 4013.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 42.498000000000005, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-17", + "total_cases": 13612.0, + "new_cases": 137.0, + "new_cases_smoothed": 99.0, + "total_deaths": 355.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1271.083, + "new_cases_per_million": 12.793, + "new_cases_smoothed_per_million": 9.245, + "total_deaths_per_million": 33.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 4727.0, + "total_tests": 622446.0, + "total_tests_per_thousand": 58.124, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 3926.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 39.657, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 34.72 + }, + { + "date": "2020-07-18", + "total_cases": 13742.0, + "new_cases": 130.0, + "new_cases_smoothed": 97.143, + "total_deaths": 358.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1283.222, + "new_cases_per_million": 12.139, + "new_cases_smoothed_per_million": 9.071, + "total_deaths_per_million": 33.43, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 2334.0, + "total_tests": 624780.0, + "total_tests_per_thousand": 58.342, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 3928.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 40.435, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-19", + "total_cases": 13855.0, + "new_cases": 113.0, + "new_cases_smoothed": 105.714, + "total_deaths": 358.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1293.774, + "new_cases_per_million": 10.552, + "new_cases_smoothed_per_million": 9.872, + "total_deaths_per_million": 33.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 1830.0, + "total_tests": 626610.0, + "total_tests_per_thousand": 58.513, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 3934.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 37.214, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-20", + "total_cases": 13945.0, + "new_cases": 90.0, + "new_cases_smoothed": 110.143, + "total_deaths": 359.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1302.178, + "new_cases_per_million": 8.404, + "new_cases_smoothed_per_million": 10.285, + "total_deaths_per_million": 33.523, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 5785.0, + "total_tests": 632395.0, + "total_tests_per_thousand": 59.053, + "new_tests_per_thousand": 0.54, + "new_tests_smoothed": 4129.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 37.488, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-21", + "total_cases": 14098.0, + "new_cases": 153.0, + "new_cases_smoothed": 122.857, + "total_deaths": 359.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1316.465, + "new_cases_per_million": 14.287, + "new_cases_smoothed_per_million": 11.472, + "total_deaths_per_million": 33.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 6089.0, + "total_tests": 638484.0, + "total_tests_per_thousand": 59.621, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 4313.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 35.106, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-22", + "total_cases": 14324.0, + "new_cases": 226.0, + "new_cases_smoothed": 140.429, + "total_deaths": 360.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1337.569, + "new_cases_per_million": 21.104, + "new_cases_smoothed_per_million": 13.113, + "total_deaths_per_million": 33.617, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 6609.0, + "total_tests": 645093.0, + "total_tests_per_thousand": 60.238, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 4586.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 32.657, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-23", + "total_cases": 14570.0, + "new_cases": 246.0, + "new_cases_smoothed": 156.429, + "total_deaths": 364.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1360.54, + "new_cases_per_million": 22.971, + "new_cases_smoothed_per_million": 14.607, + "total_deaths_per_million": 33.99, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 5557.0, + "total_tests": 650650.0, + "total_tests_per_thousand": 60.757, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 4704.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 30.070999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-24", + "total_cases": 14800.0, + "new_cases": 230.0, + "new_cases_smoothed": 169.714, + "total_deaths": 365.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1382.017, + "new_cases_per_million": 21.477, + "new_cases_smoothed_per_million": 15.848, + "total_deaths_per_million": 34.084, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 6238.0, + "total_tests": 656888.0, + "total_tests_per_thousand": 61.34, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 4920.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 28.99, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-25", + "total_cases": 15081.0, + "new_cases": 281.0, + "new_cases_smoothed": 191.286, + "total_deaths": 368.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1408.257, + "new_cases_per_million": 26.24, + "new_cases_smoothed_per_million": 17.862, + "total_deaths_per_million": 34.364, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 3337.0, + "total_tests": 660225.0, + "total_tests_per_thousand": 61.652, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 5064.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 26.473000000000003, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-26", + "total_cases": 15212.0, + "new_cases": 131.0, + "new_cases_smoothed": 193.857, + "total_deaths": 368.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1420.49, + "new_cases_per_million": 12.233, + "new_cases_smoothed_per_million": 18.102, + "total_deaths_per_million": 34.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1776.0, + "total_tests": 662001.0, + "total_tests_per_thousand": 61.817, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 5056.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 26.081, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 37.5 + }, + { + "date": "2020-07-27", + "total_cases": 15324.0, + "new_cases": 112.0, + "new_cases_smoothed": 197.0, + "total_deaths": 371.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1430.948, + "new_cases_per_million": 10.459, + "new_cases_smoothed_per_million": 18.396, + "total_deaths_per_million": 34.644, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 6520.0, + "total_tests": 668521.0, + "total_tests_per_thousand": 62.426, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 5161.0, + "new_tests_smoothed_per_thousand": 0.482, + "tests_per_case": 26.198, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-28", + "total_cases": 15516.0, + "new_cases": 192.0, + "new_cases_smoothed": 202.571, + "total_deaths": 373.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1448.877, + "new_cases_per_million": 17.929, + "new_cases_smoothed_per_million": 18.916, + "total_deaths_per_million": 34.831, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 7836.0, + "total_tests": 676357.0, + "total_tests_per_thousand": 63.158, + "new_tests_per_thousand": 0.732, + "new_tests_smoothed": 5410.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 26.706999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-29", + "total_cases": 15799.0, + "new_cases": 283.0, + "new_cases_smoothed": 210.714, + "total_deaths": 373.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1475.304, + "new_cases_per_million": 26.426, + "new_cases_smoothed_per_million": 19.676, + "total_deaths_per_million": 34.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 7453.0, + "total_tests": 683810.0, + "total_tests_per_thousand": 63.854, + "new_tests_per_thousand": 0.696, + "new_tests_smoothed": 5531.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 26.249000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-30", + "total_cases": 16093.0, + "new_cases": 294.0, + "new_cases_smoothed": 217.571, + "total_deaths": 374.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1502.757, + "new_cases_per_million": 27.454, + "new_cases_smoothed_per_million": 20.317, + "total_deaths_per_million": 34.924, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 7606.0, + "total_tests": 691416.0, + "total_tests_per_thousand": 64.564, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 5824.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 26.768, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-07-31", + "total_cases": 16342.0, + "new_cases": 249.0, + "new_cases_smoothed": 220.286, + "total_deaths": 379.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1526.009, + "new_cases_per_million": 23.252, + "new_cases_smoothed_per_million": 20.57, + "total_deaths_per_million": 35.391, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 8175.0, + "total_tests": 699591.0, + "total_tests_per_thousand": 65.327, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 6100.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 27.691, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-01", + "total_cases": 16574.0, + "new_cases": 232.0, + "new_cases_smoothed": 213.286, + "total_deaths": 382.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1547.673, + "new_cases_per_million": 21.664, + "new_cases_smoothed_per_million": 19.917, + "total_deaths_per_million": 35.671, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 4701.0, + "total_tests": 704292.0, + "total_tests_per_thousand": 65.766, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 6295.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 29.514, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-02", + "total_cases": 16699.0, + "new_cases": 125.0, + "new_cases_smoothed": 212.429, + "total_deaths": 383.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1559.345, + "new_cases_per_million": 11.672, + "new_cases_smoothed_per_million": 19.836, + "total_deaths_per_million": 35.764, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 2646.0, + "total_tests": 706938.0, + "total_tests_per_thousand": 66.014, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 6420.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 30.221999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-03", + "total_cases": 16800.0, + "new_cases": 101.0, + "new_cases_smoothed": 210.857, + "total_deaths": 383.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1568.777, + "new_cases_per_million": 9.431, + "new_cases_smoothed_per_million": 19.69, + "total_deaths_per_million": 35.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 7704.0, + "total_tests": 714642.0, + "total_tests_per_thousand": 66.733, + "new_tests_per_thousand": 0.719, + "new_tests_smoothed": 6589.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 31.249000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-04", + "total_cases": 17008.0, + "new_cases": 208.0, + "new_cases_smoothed": 213.143, + "total_deaths": 383.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1588.2, + "new_cases_per_million": 19.423, + "new_cases_smoothed_per_million": 19.903, + "total_deaths_per_million": 35.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 8381.0, + "total_tests": 723023.0, + "total_tests_per_thousand": 67.516, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 6667.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 31.279, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-05", + "total_cases": 17286.0, + "new_cases": 278.0, + "new_cases_smoothed": 212.429, + "total_deaths": 383.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1614.159, + "new_cases_per_million": 25.96, + "new_cases_smoothed_per_million": 19.836, + "total_deaths_per_million": 35.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 6922.0, + "total_tests": 729945.0, + "total_tests_per_thousand": 68.162, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 6591.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 31.026999999999997, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-06", + "total_cases": 17529.0, + "new_cases": 243.0, + "new_cases_smoothed": 205.143, + "total_deaths": 388.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1636.85, + "new_cases_per_million": 22.691, + "new_cases_smoothed_per_million": 19.156, + "total_deaths_per_million": 36.231, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 7347.0, + "total_tests": 737292.0, + "total_tests_per_thousand": 68.848, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 6554.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 31.948, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-07", + "total_cases": 17740.0, + "new_cases": 211.0, + "new_cases_smoothed": 199.714, + "total_deaths": 389.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1656.553, + "new_cases_per_million": 19.703, + "new_cases_smoothed_per_million": 18.649, + "total_deaths_per_million": 36.325, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 9179.0, + "total_tests": 746471.0, + "total_tests_per_thousand": 69.705, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 6697.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 33.533, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-08", + "total_cases": 18060.0, + "new_cases": 320.0, + "new_cases_smoothed": 212.286, + "total_deaths": 389.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1686.435, + "new_cases_per_million": 29.881, + "new_cases_smoothed_per_million": 19.823, + "total_deaths_per_million": 36.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 5486.0, + "total_tests": 751957.0, + "total_tests_per_thousand": 70.217, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 6809.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 32.075, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-09", + "total_cases": 18235.0, + "new_cases": 175.0, + "new_cases_smoothed": 219.429, + "total_deaths": 389.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1702.776, + "new_cases_per_million": 16.341, + "new_cases_smoothed_per_million": 20.49, + "total_deaths_per_million": 36.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 2859.0, + "total_tests": 754816.0, + "total_tests_per_thousand": 70.484, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 6840.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 31.171999999999997, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-10", + "total_cases": 18355.0, + "new_cases": 120.0, + "new_cases_smoothed": 222.143, + "total_deaths": 389.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1713.982, + "new_cases_per_million": 11.206, + "new_cases_smoothed_per_million": 20.744, + "total_deaths_per_million": 36.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 6355.0, + "total_tests": 761171.0, + "total_tests_per_thousand": 71.078, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 6647.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 29.921999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-11", + "total_cases": 18494.0, + "new_cases": 139.0, + "new_cases_smoothed": 212.286, + "total_deaths": 389.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1726.962, + "new_cases_per_million": 12.98, + "new_cases_smoothed_per_million": 19.823, + "total_deaths_per_million": 36.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 8321.0, + "total_tests": 769492.0, + "total_tests_per_thousand": 71.855, + "new_tests_per_thousand": 0.777, + "new_tests_smoothed": 6638.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 31.269000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-12", + "total_cases": 18783.0, + "new_cases": 289.0, + "new_cases_smoothed": 213.857, + "total_deaths": 391.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1753.948, + "new_cases_per_million": 26.987, + "new_cases_smoothed_per_million": 19.97, + "total_deaths_per_million": 36.511, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 7754.0, + "total_tests": 777246.0, + "total_tests_per_thousand": 72.579, + "new_tests_per_thousand": 0.724, + "new_tests_smoothed": 6757.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 31.596, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-13", + "total_cases": 19075.0, + "new_cases": 292.0, + "new_cases_smoothed": 220.857, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1781.215, + "new_cases_per_million": 27.267, + "new_cases_smoothed_per_million": 20.624, + "total_deaths_per_million": 36.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 7188.0, + "total_tests": 784434.0, + "total_tests_per_thousand": 73.25, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 6735.0, + "new_tests_smoothed_per_thousand": 0.629, + "tests_per_case": 30.495, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-14", + "total_cases": 19401.0, + "new_cases": 326.0, + "new_cases_smoothed": 237.286, + "total_deaths": 391.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1811.657, + "new_cases_per_million": 30.442, + "new_cases_smoothed_per_million": 22.158, + "total_deaths_per_million": 36.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 7785.0, + "total_tests": 792219.0, + "total_tests_per_thousand": 73.977, + "new_tests_per_thousand": 0.727, + "new_tests_smoothed": 6535.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 27.541, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-15", + "total_cases": 19693.0, + "new_cases": 292.0, + "new_cases_smoothed": 233.286, + "total_deaths": 394.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1838.924, + "new_cases_per_million": 27.267, + "new_cases_smoothed_per_million": 21.784, + "total_deaths_per_million": 36.792, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 4937.0, + "total_tests": 797156.0, + "total_tests_per_thousand": 74.438, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 6457.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 27.679000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-16", + "total_cases": 19891.0, + "new_cases": 198.0, + "new_cases_smoothed": 236.571, + "total_deaths": 395.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1857.413, + "new_cases_per_million": 18.489, + "new_cases_smoothed_per_million": 22.091, + "total_deaths_per_million": 36.885, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 2872.0, + "total_tests": 800028.0, + "total_tests_per_thousand": 74.706, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 6459.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 27.303, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-17", + "total_cases": 20012.0, + "new_cases": 121.0, + "new_cases_smoothed": 236.714, + "total_deaths": 397.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1868.712, + "new_cases_per_million": 11.299, + "new_cases_smoothed_per_million": 22.104, + "total_deaths_per_million": 37.072, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 7190.0, + "total_tests": 807218.0, + "total_tests_per_thousand": 75.378, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 6578.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 27.789, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-18", + "total_cases": 20202.0, + "new_cases": 190.0, + "new_cases_smoothed": 244.0, + "total_deaths": 399.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1886.454, + "new_cases_per_million": 17.742, + "new_cases_smoothed_per_million": 22.785, + "total_deaths_per_million": 37.258, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 7596.0, + "total_tests": 814814.0, + "total_tests_per_thousand": 76.087, + "new_tests_per_thousand": 0.709, + "new_tests_smoothed": 6475.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 26.537, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-19", + "total_cases": 20483.0, + "new_cases": 281.0, + "new_cases_smoothed": 242.857, + "total_deaths": 401.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1912.693, + "new_cases_per_million": 26.24, + "new_cases_smoothed_per_million": 22.678, + "total_deaths_per_million": 37.445, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 7537.0, + "total_tests": 822351.0, + "total_tests_per_thousand": 76.791, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 6444.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 26.534000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-20", + "total_cases": 20798.0, + "new_cases": 315.0, + "new_cases_smoothed": 246.143, + "total_deaths": 404.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1942.108, + "new_cases_per_million": 29.415, + "new_cases_smoothed_per_million": 22.985, + "total_deaths_per_million": 37.725, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 8167.0, + "total_tests": 830518.0, + "total_tests_per_thousand": 77.553, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 6583.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 26.745, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-21", + "total_cases": 21045.0, + "new_cases": 247.0, + "new_cases_smoothed": 234.857, + "total_deaths": 406.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1965.173, + "new_cases_per_million": 23.065, + "new_cases_smoothed_per_million": 21.931, + "total_deaths_per_million": 37.912, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 9680.0, + "total_tests": 840198.0, + "total_tests_per_thousand": 78.457, + "new_tests_per_thousand": 0.904, + "new_tests_smoothed": 6854.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 29.184, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-22", + "total_cases": 21551.0, + "new_cases": 506.0, + "new_cases_smoothed": 265.429, + "total_deaths": 411.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2012.423, + "new_cases_per_million": 47.25, + "new_cases_smoothed_per_million": 24.786, + "total_deaths_per_million": 38.379, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 5022.0, + "total_tests": 845220.0, + "total_tests_per_thousand": 78.926, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 6866.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 25.868000000000002, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-23", + "total_cases": 21790.0, + "new_cases": 239.0, + "new_cases_smoothed": 271.286, + "total_deaths": 411.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2034.741, + "new_cases_per_million": 22.318, + "new_cases_smoothed_per_million": 25.333, + "total_deaths_per_million": 38.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 2397.0, + "total_tests": 847617.0, + "total_tests_per_thousand": 79.15, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 6798.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 25.058000000000003, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-24", + "total_cases": 21923.0, + "new_cases": 133.0, + "new_cases_smoothed": 273.0, + "total_deaths": 412.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2047.16, + "new_cases_per_million": 12.419, + "new_cases_smoothed_per_million": 25.493, + "total_deaths_per_million": 38.472, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 7376.0, + "total_tests": 854993.0, + "total_tests_per_thousand": 79.839, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 6825.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 25.0, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-25", + "total_cases": 22181.0, + "new_cases": 258.0, + "new_cases_smoothed": 282.714, + "total_deaths": 415.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2071.252, + "new_cases_per_million": 24.092, + "new_cases_smoothed_per_million": 26.4, + "total_deaths_per_million": 38.753, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 8756.0, + "total_tests": 863749.0, + "total_tests_per_thousand": 80.656, + "new_tests_per_thousand": 0.818, + "new_tests_smoothed": 6991.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 24.728, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-26", + "total_cases": 22548.0, + "new_cases": 367.0, + "new_cases_smoothed": 295.0, + "total_deaths": 416.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2105.522, + "new_cases_per_million": 34.27, + "new_cases_smoothed_per_million": 27.547, + "total_deaths_per_million": 38.846, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 8853.0, + "total_tests": 872602.0, + "total_tests_per_thousand": 81.483, + "new_tests_per_thousand": 0.827, + "new_tests_smoothed": 7179.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 24.336, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-08-27", + "total_cases": 22951.0, + "new_cases": 403.0, + "new_cases_smoothed": 307.571, + "total_deaths": 418.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2143.154, + "new_cases_per_million": 37.632, + "new_cases_smoothed_per_million": 28.721, + "total_deaths_per_million": 39.033, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 9188.0, + "total_tests": 881790.0, + "total_tests_per_thousand": 82.341, + "new_tests_per_thousand": 0.858, + "new_tests_smoothed": 7325.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 23.816, + "positive_rate": 0.042, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 23300.0, + "new_cases": 349.0, + "new_cases_smoothed": 322.143, + "total_deaths": 418.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2175.744, + "new_cases_per_million": 32.589, + "new_cases_smoothed_per_million": 30.082, + "total_deaths_per_million": 39.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 10764.0, + "total_tests": 892554.0, + "total_tests_per_thousand": 83.346, + "new_tests_per_thousand": 1.005, + "new_tests_smoothed": 7479.0, + "new_tests_smoothed_per_thousand": 0.698, + "tests_per_case": 23.215999999999998, + "positive_rate": 0.043, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 23777.0, + "new_cases": 477.0, + "new_cases_smoothed": 318.0, + "total_deaths": 419.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2220.286, + "new_cases_per_million": 44.542, + "new_cases_smoothed_per_million": 29.695, + "total_deaths_per_million": 39.126, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 6566.0, + "total_tests": 899120.0, + "total_tests_per_thousand": 83.959, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 7700.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 24.214000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 24094.0, + "new_cases": 317.0, + "new_cases_smoothed": 329.143, + "total_deaths": 421.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2249.887, + "new_cases_per_million": 29.601, + "new_cases_smoothed_per_million": 30.735, + "total_deaths_per_million": 39.313, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 3944.0, + "total_tests": 903064.0, + "total_tests_per_thousand": 84.328, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 7921.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 24.066, + "positive_rate": 0.042, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 24367.0, + "new_cases": 273.0, + "new_cases_smoothed": 349.143, + "total_deaths": 423.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2275.38, + "new_cases_per_million": 25.493, + "new_cases_smoothed_per_million": 32.603, + "total_deaths_per_million": 39.5, + "new_deaths_per_million": 0.187, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 9341.0, + "total_tests": 912405.0, + "total_tests_per_thousand": 85.2, + "new_tests_per_thousand": 0.872, + "new_tests_smoothed": 8202.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 23.491999999999997, + "positive_rate": 0.043, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 24618.0, + "new_cases": 251.0, + "new_cases_smoothed": 348.143, + "total_deaths": 424.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2298.818, + "new_cases_per_million": 23.438, + "new_cases_smoothed_per_million": 32.509, + "total_deaths_per_million": 39.593, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 11070.0, + "total_tests": 923475.0, + "total_tests_per_thousand": 86.234, + "new_tests_per_thousand": 1.034, + "new_tests_smoothed": 8532.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 24.506999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 25117.0, + "new_cases": 499.0, + "new_cases_smoothed": 367.0, + "total_deaths": 425.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2345.414, + "new_cases_per_million": 46.596, + "new_cases_smoothed_per_million": 34.27, + "total_deaths_per_million": 39.686, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 10978.0, + "total_tests": 934453.0, + "total_tests_per_thousand": 87.259, + "new_tests_per_thousand": 1.025, + "new_tests_smoothed": 8836.0, + "new_tests_smoothed_per_thousand": 0.825, + "tests_per_case": 24.076, + "positive_rate": 0.042, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 25773.0, + "new_cases": 656.0, + "new_cases_smoothed": 403.143, + "total_deaths": 425.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2406.671, + "new_cases_per_million": 61.257, + "new_cases_smoothed_per_million": 37.645, + "total_deaths_per_million": 39.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093 + }, + { + "date": "2020-09-04", + "total_cases": 26452.0, + "new_cases": 679.0, + "new_cases_smoothed": 450.286, + "total_deaths": 426.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2470.076, + "new_cases_per_million": 63.405, + "new_cases_smoothed_per_million": 42.047, + "total_deaths_per_million": 39.78, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.107 + }, + { + "date": "2020-09-05", + "total_cases": 27249.0, + "new_cases": 797.0, + "new_cases_smoothed": 496.0, + "total_deaths": 429.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2544.5, + "new_cases_per_million": 74.424, + "new_cases_smoothed_per_million": 46.316, + "total_deaths_per_million": 40.06, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.133 + } + ] + }, + "COD": { + "continent": "Africa", + "location": "Democratic Republic of Congo", + "population": 89561404.0, + "population_density": 35.879, + "median_age": 17.0, + "aged_65_older": 3.02, + "aged_70_older": 1.745, + "gdp_per_capita": 808.133, + "extreme_poverty": 77.1, + "cardiovasc_death_rate": 318.949, + "diabetes_prevalence": 6.1, + "handwashing_facilities": 4.472, + "life_expectancy": 60.68, + "data": [ + { + "date": "2020-03-11", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.011, + "new_cases_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-14", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-17", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.033, + "new_cases_per_million": 0.011, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-19", + "total_cases": 14.0, + "new_cases": 11.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.123, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-20", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-21", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-22", + "total_cases": 23.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.257, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.011, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 58.33 + }, + { + "date": "2020-03-23", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.29, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 58.33 + }, + { + "date": "2020-03-24", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 77.78 + }, + { + "date": "2020-03-25", + "total_cases": 45.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.502, + "new_cases_per_million": 0.212, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 77.78 + }, + { + "date": "2020-03-26", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 77.78 + }, + { + "date": "2020-03-27", + "total_cases": 54.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.603, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.045, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 77.78 + }, + { + "date": "2020-03-28", + "total_cases": 58.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.648, + "new_cases_per_million": 0.045, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 77.78 + }, + { + "date": "2020-03-29", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.648, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 77.78 + }, + { + "date": "2020-03-30", + "total_cases": 81.0, + "new_cases": 23.0, + "new_cases_smoothed": 7.857, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 0.904, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 77.78 + }, + { + "date": "2020-03-31", + "total_cases": 98.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.094, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 77.78 + }, + { + "date": "2020-04-01", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 77.78 + }, + { + "date": "2020-04-02", + "total_cases": 123.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.143, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1.373, + "new_cases_per_million": 0.279, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.123, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 77.78 + }, + { + "date": "2020-04-03", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.11, + "total_deaths_per_million": 0.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 77.78 + }, + { + "date": "2020-04-04", + "total_cases": 134.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.857, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1.496, + "new_cases_per_million": 0.123, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.145, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 77.78 + }, + { + "date": "2020-04-05", + "total_cases": 154.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.714, + "total_deaths": 18.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1.719, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 77.78 + }, + { + "date": "2020-04-06", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1.719, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-04-07", + "total_cases": 161.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1.798, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-04-08", + "total_cases": 180.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2.01, + "new_cases_per_million": 0.212, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 64.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-09", + "total_cases": 183.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.571, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2.043, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 98.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-10", + "total_cases": 215.0, + "new_cases": 32.0, + "new_cases_smoothed": 13.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2.401, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 127.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-11", + "total_cases": 223.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.49, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 122.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-12", + "total_cases": 234.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.613, + "new_cases_per_million": 0.123, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-13", + "total_cases": 234.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.613, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 68.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-14", + "total_cases": 235.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.624, + "new_cases_per_million": 0.011, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 197.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-15", + "total_cases": 254.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.571, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.836, + "new_cases_per_million": 0.212, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 206.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-16", + "total_cases": 267.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.0, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.981, + "new_cases_per_million": 0.145, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 0.246, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 141.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-17", + "total_cases": 287.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.286, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.205, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 300.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-18", + "total_cases": 307.0, + "new_cases": 20.0, + "new_cases_smoothed": 12.0, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.428, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 297.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-19", + "total_cases": 327.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.651, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 127.0, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 191.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 14.376, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-20", + "total_cases": 332.0, + "new_cases": 5.0, + "new_cases_smoothed": 14.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.707, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 86.0, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 193.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 13.786, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-21", + "total_cases": 350.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.908, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 123.0, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 183.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 11.139000000000001, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-22", + "total_cases": 359.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.008, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.167, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 119.0, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 170.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 11.333, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-23", + "total_cases": 377.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.209, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 74.0, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 161.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 10.245, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-24", + "total_cases": 394.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.399, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.171, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 136.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 8.963, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-25", + "total_cases": 416.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.571, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.645, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.313, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 190.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 122.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 7.835, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-26", + "total_cases": 442.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.935, + "new_cases_per_million": 0.29, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 0.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-27", + "total_cases": 459.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.125, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.203, + "total_deaths_per_million": 0.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 70.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-28", + "total_cases": 471.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.286, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.259, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 187.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-29", + "total_cases": 491.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.482, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.211, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 126.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-04-30", + "total_cases": 500.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.571, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5.583, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.01, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-01", + "total_cases": 572.0, + "new_cases": 72.0, + "new_cases_smoothed": 25.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6.387, + "new_cases_per_million": 0.804, + "new_cases_smoothed_per_million": 0.284, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 238.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-02", + "total_cases": 604.0, + "new_cases": 32.0, + "new_cases_smoothed": 26.857, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.744, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.357, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 164.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-03", + "total_cases": 674.0, + "new_cases": 70.0, + "new_cases_smoothed": 33.143, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7.526, + "new_cases_per_million": 0.782, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.368, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-04", + "total_cases": 684.0, + "new_cases": 10.0, + "new_cases_smoothed": 32.143, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 7.637, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 0.38, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 121.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-05", + "total_cases": 684.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 0.38, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-06", + "total_cases": 705.0, + "new_cases": 21.0, + "new_cases_smoothed": 30.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.872, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.341, + "total_deaths_per_million": 0.38, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 374.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-07", + "total_cases": 863.0, + "new_cases": 158.0, + "new_cases_smoothed": 51.857, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9.636, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 0.402, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 270.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-08", + "total_cases": 897.0, + "new_cases": 34.0, + "new_cases_smoothed": 46.429, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.015, + "new_cases_per_million": 0.38, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 131.0, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-09", + "total_cases": 937.0, + "new_cases": 40.0, + "new_cases_smoothed": 47.571, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.462, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 0.435, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-10", + "total_cases": 991.0, + "new_cases": 54.0, + "new_cases_smoothed": 45.286, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 11.065, + "new_cases_per_million": 0.603, + "new_cases_smoothed_per_million": 0.506, + "total_deaths_per_million": 0.458, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.013, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-11", + "total_cases": 1024.0, + "new_cases": 33.0, + "new_cases_smoothed": 48.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 11.433, + "new_cases_per_million": 0.368, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.458, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 289.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-12", + "total_cases": 1102.0, + "new_cases": 78.0, + "new_cases_smoothed": 59.714, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 12.304, + "new_cases_per_million": 0.871, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 0.491, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 192.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-13", + "total_cases": 1169.0, + "new_cases": 67.0, + "new_cases_smoothed": 66.286, + "total_deaths": 50.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 13.052, + "new_cases_per_million": 0.748, + "new_cases_smoothed_per_million": 0.74, + "total_deaths_per_million": 0.558, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 310.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-14", + "total_cases": 1242.0, + "new_cases": 73.0, + "new_cases_smoothed": 54.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 13.868, + "new_cases_per_million": 0.815, + "new_cases_smoothed_per_million": 0.605, + "total_deaths_per_million": 0.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 209.0, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-15", + "total_cases": 1298.0, + "new_cases": 56.0, + "new_cases_smoothed": 57.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 14.493, + "new_cases_per_million": 0.625, + "new_cases_smoothed_per_million": 0.64, + "total_deaths_per_million": 0.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-16", + "total_cases": 1369.0, + "new_cases": 71.0, + "new_cases_smoothed": 61.714, + "total_deaths": 60.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 15.286, + "new_cases_per_million": 0.793, + "new_cases_smoothed_per_million": 0.689, + "total_deaths_per_million": 0.67, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 242.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 1454.0, + "new_cases": 85.0, + "new_cases_smoothed": 66.143, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 16.235, + "new_cases_per_million": 0.949, + "new_cases_smoothed_per_million": 0.739, + "total_deaths_per_million": 0.67, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 1454.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 16.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.67, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 1629.0, + "new_cases": 175.0, + "new_cases_smoothed": 75.286, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 18.189, + "new_cases_per_million": 1.954, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.681, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.027, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 1731.0, + "new_cases": 102.0, + "new_cases_smoothed": 80.286, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 19.328, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 0.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 1835.0, + "new_cases": 104.0, + "new_cases_smoothed": 84.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 20.489, + "new_cases_per_million": 1.161, + "new_cases_smoothed_per_million": 0.946, + "total_deaths_per_million": 0.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 225.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 1945.0, + "new_cases": 110.0, + "new_cases_smoothed": 92.429, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 21.717, + "new_cases_per_million": 1.228, + "new_cases_smoothed_per_million": 1.032, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.021, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 2025.0, + "new_cases": 80.0, + "new_cases_smoothed": 93.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.61, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 1.046, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 287.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 2141.0, + "new_cases": 116.0, + "new_cases_smoothed": 98.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.905, + "new_cases_per_million": 1.295, + "new_cases_smoothed_per_million": 1.096, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 402.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 2297.0, + "new_cases": 156.0, + "new_cases_smoothed": 120.429, + "total_deaths": 67.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 25.647, + "new_cases_per_million": 1.742, + "new_cases_smoothed_per_million": 1.345, + "total_deaths_per_million": 0.748, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 2297.0, + "new_cases": 0.0, + "new_cases_smoothed": 95.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 25.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.066, + "total_deaths_per_million": 0.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 410.0, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 2545.0, + "new_cases": 248.0, + "new_cases_smoothed": 116.286, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 28.416, + "new_cases_per_million": 2.769, + "new_cases_smoothed_per_million": 1.298, + "total_deaths_per_million": 0.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 367.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 2659.0, + "new_cases": 114.0, + "new_cases_smoothed": 117.714, + "total_deaths": 68.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 29.689, + "new_cases_per_million": 1.273, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 0.759, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 327.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 2832.0, + "new_cases": 173.0, + "new_cases_smoothed": 126.714, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 31.621, + "new_cases_per_million": 1.932, + "new_cases_smoothed_per_million": 1.415, + "total_deaths_per_million": 0.77, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 398.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 2833.0, + "new_cases": 1.0, + "new_cases_smoothed": 115.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 31.632, + "new_cases_per_million": 0.011, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 0.77, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 357.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 2966.0, + "new_cases": 133.0, + "new_cases_smoothed": 117.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 33.117, + "new_cases_per_million": 1.485, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 0.77, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 3049.0, + "new_cases": 83.0, + "new_cases_smoothed": 107.429, + "total_deaths": 71.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 34.044, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 1.199, + "total_deaths_per_million": 0.793, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 3194.0, + "new_cases": 145.0, + "new_cases_smoothed": 128.143, + "total_deaths": 72.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 35.663, + "new_cases_per_million": 1.619, + "new_cases_smoothed_per_million": 1.431, + "total_deaths_per_million": 0.804, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 610.0, + "new_tests_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 3325.0, + "new_cases": 131.0, + "new_cases_smoothed": 111.429, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 37.125, + "new_cases_per_million": 1.463, + "new_cases_smoothed_per_million": 1.244, + "total_deaths_per_million": 0.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 650.0, + "new_tests_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 3494.0, + "new_cases": 169.0, + "new_cases_smoothed": 119.286, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 39.012, + "new_cases_per_million": 1.887, + "new_cases_smoothed_per_million": 1.332, + "total_deaths_per_million": 0.837, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 415.0, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 3643.0, + "new_cases": 149.0, + "new_cases_smoothed": 115.857, + "total_deaths": 78.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 40.676, + "new_cases_per_million": 1.664, + "new_cases_smoothed_per_million": 1.294, + "total_deaths_per_million": 0.871, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 440.0, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 3764.0, + "new_cases": 121.0, + "new_cases_smoothed": 133.0, + "total_deaths": 81.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 42.027, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.485, + "total_deaths_per_million": 0.904, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 492.0, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 3878.0, + "new_cases": 114.0, + "new_cases_smoothed": 130.286, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 43.3, + "new_cases_per_million": 1.273, + "new_cases_smoothed_per_million": 1.455, + "total_deaths_per_million": 0.904, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 4016.0, + "new_cases": 138.0, + "new_cases_smoothed": 138.143, + "total_deaths": 85.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 44.841, + "new_cases_per_million": 1.541, + "new_cases_smoothed_per_million": 1.542, + "total_deaths_per_million": 0.949, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.022, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 4105.0, + "new_cases": 89.0, + "new_cases_smoothed": 130.143, + "total_deaths": 87.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 45.834, + "new_cases_per_million": 0.994, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.971, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 392.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 4258.0, + "new_cases": 153.0, + "new_cases_smoothed": 133.286, + "total_deaths": 89.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 47.543, + "new_cases_per_million": 1.708, + "new_cases_smoothed_per_million": 1.488, + "total_deaths_per_million": 0.994, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 655.0, + "new_tests_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 4389.0, + "new_cases": 131.0, + "new_cases_smoothed": 127.857, + "total_deaths": 95.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 49.005, + "new_cases_per_million": 1.463, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 1.061, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 579.0, + "new_tests_per_thousand": 0.006, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 4514.0, + "new_cases": 125.0, + "new_cases_smoothed": 124.429, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 50.401, + "new_cases_per_million": 1.396, + "new_cases_smoothed_per_million": 1.389, + "total_deaths_per_million": 1.083, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 366.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 4636.0, + "new_cases": 122.0, + "new_cases_smoothed": 124.571, + "total_deaths": 100.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 51.763, + "new_cases_per_million": 1.362, + "new_cases_smoothed_per_million": 1.391, + "total_deaths_per_million": 1.117, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 362.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 4723.0, + "new_cases": 87.0, + "new_cases_smoothed": 120.714, + "total_deaths": 105.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 52.735, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 1.172, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.038, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 4777.0, + "new_cases": 54.0, + "new_cases_smoothed": 108.714, + "total_deaths": 106.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 53.338, + "new_cases_per_million": 0.603, + "new_cases_smoothed_per_million": 1.214, + "total_deaths_per_million": 1.184, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.033, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 4837.0, + "new_cases": 60.0, + "new_cases_smoothed": 104.571, + "total_deaths": 112.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 54.008, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 1.168, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 549.0, + "new_tests_per_thousand": 0.006, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 4974.0, + "new_cases": 137.0, + "new_cases_smoothed": 102.286, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 55.537, + "new_cases_per_million": 1.53, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 569.0, + "new_tests_per_thousand": 0.006, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 5099.0, + "new_cases": 125.0, + "new_cases_smoothed": 101.429, + "total_deaths": 115.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 56.933, + "new_cases_per_million": 1.396, + "new_cases_smoothed_per_million": 1.133, + "total_deaths_per_million": 1.284, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 624.0, + "new_tests_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 5282.0, + "new_cases": 183.0, + "new_cases_smoothed": 109.714, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 58.976, + "new_cases_per_million": 2.043, + "new_cases_smoothed_per_million": 1.225, + "total_deaths_per_million": 1.306, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 839.0, + "new_tests_per_thousand": 0.009, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 5476.0, + "new_cases": 194.0, + "new_cases_smoothed": 120.0, + "total_deaths": 121.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 61.142, + "new_cases_per_million": 2.166, + "new_cases_smoothed_per_million": 1.34, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.033, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 5671.0, + "new_cases": 195.0, + "new_cases_smoothed": 135.429, + "total_deaths": 124.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 63.32, + "new_cases_per_million": 2.177, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 1.385, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 336.0, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 5826.0, + "new_cases": 155.0, + "new_cases_smoothed": 149.857, + "total_deaths": 130.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 65.05, + "new_cases_per_million": 1.731, + "new_cases_smoothed_per_million": 1.673, + "total_deaths_per_million": 1.452, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.038, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 5925.0, + "new_cases": 99.0, + "new_cases_smoothed": 155.429, + "total_deaths": 135.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 66.156, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 1.735, + "total_deaths_per_million": 1.507, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 962.0, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 6027.0, + "new_cases": 102.0, + "new_cases_smoothed": 150.429, + "total_deaths": 135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 67.295, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 1.68, + "total_deaths_per_million": 1.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 974.0, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 6027.0, + "new_cases": 0.0, + "new_cases_smoothed": 132.571, + "total_deaths": 135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 67.295, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.48, + "total_deaths_per_million": 1.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 824.0, + "new_tests_per_thousand": 0.009, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 6411.0, + "new_cases": 384.0, + "new_cases_smoothed": 161.286, + "total_deaths": 142.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 71.582, + "new_cases_per_million": 4.288, + "new_cases_smoothed_per_million": 1.801, + "total_deaths_per_million": 1.586, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 951.0, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 6552.0, + "new_cases": 141.0, + "new_cases_smoothed": 153.714, + "total_deaths": 149.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 73.157, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 1.716, + "total_deaths_per_million": 1.664, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 975.0, + "new_tests_per_thousand": 0.011, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 6552.0, + "new_cases": 0.0, + "new_cases_smoothed": 125.857, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 73.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.405, + "total_deaths_per_million": 1.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 475.0, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 6826.0, + "new_cases": 274.0, + "new_cases_smoothed": 142.857, + "total_deaths": 157.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 76.216, + "new_cases_per_million": 3.059, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 1.753, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 923.0, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 869.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 6.082999999999999, + "positive_rate": 0.16399999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 6939.0, + "new_cases": 113.0, + "new_cases_smoothed": 144.857, + "total_deaths": 167.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 77.478, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 1.617, + "total_deaths_per_million": 1.865, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 686.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 830.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 5.73, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 7038.0, + "new_cases": 99.0, + "new_cases_smoothed": 144.429, + "total_deaths": 169.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 78.583, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 1.613, + "total_deaths_per_million": 1.887, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 662.0, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 785.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 5.435, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 7121.0, + "new_cases": 83.0, + "new_cases_smoothed": 156.286, + "total_deaths": 174.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 79.51, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 1.745, + "total_deaths_per_million": 1.943, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 748.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 774.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 4.952, + "positive_rate": 0.20199999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 7188.0, + "new_cases": 67.0, + "new_cases_smoothed": 111.0, + "total_deaths": 175.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 80.258, + "new_cases_per_million": 0.748, + "new_cases_smoothed_per_million": 1.239, + "total_deaths_per_million": 1.954, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 758.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 6.73, + "positive_rate": 0.149, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 7188.0, + "new_cases": 0.0, + "new_cases_smoothed": 90.857, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 80.258, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.014, + "total_deaths_per_million": 1.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 243.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 642.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 7.066, + "positive_rate": 0.142, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 7378.0, + "new_cases": 190.0, + "new_cases_smoothed": 118.0, + "total_deaths": 181.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 82.379, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 2.021, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 335.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 622.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.271, + "positive_rate": 0.19, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 7410.0, + "new_cases": 32.0, + "new_cases_smoothed": 83.429, + "total_deaths": 181.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 82.737, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 2.021, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 846.0, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 7.324, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 7432.0, + "new_cases": 22.0, + "new_cases_smoothed": 70.429, + "total_deaths": 182.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 82.982, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 2.032, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 919.0, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 9.144, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 7660.0, + "new_cases": 228.0, + "new_cases_smoothed": 88.857, + "total_deaths": 182.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 85.528, + "new_cases_per_million": 2.546, + "new_cases_smoothed_per_million": 0.992, + "total_deaths_per_million": 2.032, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 1217.0, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 724.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 8.148, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 7737.0, + "new_cases": 77.0, + "new_cases_smoothed": 88.0, + "total_deaths": 184.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 86.388, + "new_cases_per_million": 0.86, + "new_cases_smoothed_per_million": 0.983, + "total_deaths_per_million": 2.054, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 566.0, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 698.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 7.932, + "positive_rate": 0.126, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 7845.0, + "new_cases": 108.0, + "new_cases_smoothed": 93.857, + "total_deaths": 188.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 87.594, + "new_cases_per_million": 1.206, + "new_cases_smoothed_per_million": 1.048, + "total_deaths_per_million": 2.099, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 893.0, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 717.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 7.638999999999999, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 7904.0, + "new_cases": 59.0, + "new_cases_smoothed": 102.286, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 88.252, + "new_cases_per_million": 0.659, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 2.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 466.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 749.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 7.3229999999999995, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 7970.0, + "new_cases": 66.0, + "new_cases_smoothed": 84.571, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 88.989, + "new_cases_per_million": 0.737, + "new_cases_smoothed_per_million": 0.944, + "total_deaths_per_million": 2.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 349.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 751.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 8.88, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 8032.0, + "new_cases": 62.0, + "new_cases_smoothed": 88.857, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 89.681, + "new_cases_per_million": 0.692, + "new_cases_smoothed_per_million": 0.992, + "total_deaths_per_million": 2.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 741.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 736.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 8.283, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 8074.0, + "new_cases": 42.0, + "new_cases_smoothed": 91.714, + "total_deaths": 189.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 90.15, + "new_cases_per_million": 0.469, + "new_cases_smoothed_per_million": 1.024, + "total_deaths_per_million": 2.11, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 456.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 670.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 7.305, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 8135.0, + "new_cases": 61.0, + "new_cases_smoothed": 67.857, + "total_deaths": 189.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 90.832, + "new_cases_per_million": 0.681, + "new_cases_smoothed_per_million": 0.758, + "total_deaths_per_million": 2.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 563.0, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 576.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 8.488, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 8162.0, + "new_cases": 27.0, + "new_cases_smoothed": 60.714, + "total_deaths": 191.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 91.133, + "new_cases_per_million": 0.301, + "new_cases_smoothed_per_million": 0.678, + "total_deaths_per_million": 2.133, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 464.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 562.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 9.256, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 8198.0, + "new_cases": 36.0, + "new_cases_smoothed": 50.429, + "total_deaths": 192.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 91.535, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 800.0, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 548.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 10.867, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 8248.0, + "new_cases": 50.0, + "new_cases_smoothed": 49.143, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 92.093, + "new_cases_per_million": 0.558, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 435.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 544.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 11.07, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 8323.0, + "new_cases": 75.0, + "new_cases_smoothed": 50.429, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 92.931, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 423.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 555.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 11.005999999999998, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 8402.0, + "new_cases": 79.0, + "new_cases_smoothed": 52.857, + "total_deaths": 193.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 93.813, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 2.155, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 649.0, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 541.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 10.235, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 8442.0, + "new_cases": 40.0, + "new_cases_smoothed": 52.571, + "total_deaths": 194.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 94.259, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 2.166, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 741.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 582.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 11.071, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 8533.0, + "new_cases": 91.0, + "new_cases_smoothed": 56.857, + "total_deaths": 195.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 95.275, + "new_cases_per_million": 1.016, + "new_cases_smoothed_per_million": 0.635, + "total_deaths_per_million": 2.177, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 737.0, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 607.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 10.675999999999998, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-23", + "total_cases": 8625.0, + "new_cases": 92.0, + "new_cases_smoothed": 66.143, + "total_deaths": 197.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 96.303, + "new_cases_per_million": 1.027, + "new_cases_smoothed_per_million": 0.739, + "total_deaths_per_million": 2.2, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 645.0, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 633.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 9.57, + "positive_rate": 0.10400000000000001, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-24", + "total_cases": 8719.0, + "new_cases": 94.0, + "new_cases_smoothed": 74.429, + "total_deaths": 200.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 97.352, + "new_cases_per_million": 1.05, + "new_cases_smoothed_per_million": 0.831, + "total_deaths_per_million": 2.233, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 464.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 585.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 7.86, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-25", + "total_cases": 8766.0, + "new_cases": 47.0, + "new_cases_smoothed": 74.0, + "total_deaths": 200.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 97.877, + "new_cases_per_million": 0.525, + "new_cases_smoothed_per_million": 0.826, + "total_deaths_per_million": 2.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 669.0, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 618.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 8.351, + "positive_rate": 0.12, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-26", + "total_cases": 8800.0, + "new_cases": 34.0, + "new_cases_smoothed": 68.143, + "total_deaths": 203.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 98.257, + "new_cases_per_million": 0.38, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 2.267, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 137.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 577.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 8.468, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-27", + "total_cases": 8831.0, + "new_cases": 31.0, + "new_cases_smoothed": 61.286, + "total_deaths": 204.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 98.603, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.684, + "total_deaths_per_million": 2.278, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 242.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 519.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 8.469, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-28", + "total_cases": 8844.0, + "new_cases": 13.0, + "new_cases_smoothed": 57.429, + "total_deaths": 208.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 98.748, + "new_cases_per_million": 0.145, + "new_cases_smoothed_per_million": 0.641, + "total_deaths_per_million": 2.322, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 242.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 448.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 7.801, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-29", + "total_cases": 8873.0, + "new_cases": 29.0, + "new_cases_smoothed": 48.571, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 99.072, + "new_cases_per_million": 0.324, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 2.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 637.0, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 434.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 8.935, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-30", + "total_cases": 8931.0, + "new_cases": 58.0, + "new_cases_smoothed": 43.714, + "total_deaths": 213.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 99.719, + "new_cases_per_million": 0.648, + "new_cases_smoothed_per_million": 0.488, + "total_deaths_per_million": 2.378, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 364.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.013, + "positive_rate": 0.111, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-31", + "total_cases": 9010.0, + "new_cases": 79.0, + "new_cases_smoothed": 41.571, + "total_deaths": 214.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 100.601, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 417.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.309, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-01", + "total_cases": 9070.0, + "new_cases": 60.0, + "new_cases_smoothed": 43.429, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 101.271, + "new_cases_per_million": 0.67, + "new_cases_smoothed_per_million": 0.485, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 289.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.667999999999999, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-02", + "total_cases": 9083.0, + "new_cases": 13.0, + "new_cases_smoothed": 40.429, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 101.416, + "new_cases_per_million": 0.145, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 237.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 347.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 8.583, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-03", + "total_cases": 9114.0, + "new_cases": 31.0, + "new_cases_smoothed": 40.429, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 101.763, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 431.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 374.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.251, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-04", + "total_cases": 9132.0, + "new_cases": 18.0, + "new_cases_smoothed": 41.143, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 101.964, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.459, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 344.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 388.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.431000000000001, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-05", + "total_cases": 9177.0, + "new_cases": 45.0, + "new_cases_smoothed": 43.429, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 102.466, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.485, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 489.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 8.451, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-06", + "total_cases": 9252.0, + "new_cases": 75.0, + "new_cases_smoothed": 45.857, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 103.303, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 342.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 364.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.938, + "positive_rate": 0.126, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-07", + "total_cases": 9308.0, + "new_cases": 56.0, + "new_cases_smoothed": 42.571, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.929, + "new_cases_per_million": 0.625, + "new_cases_smoothed_per_million": 0.475, + "total_deaths_per_million": 2.389, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 431.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 366.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 8.597000000000001, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-08", + "total_cases": 9354.0, + "new_cases": 46.0, + "new_cases_smoothed": 40.571, + "total_deaths": 217.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.442, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.453, + "total_deaths_per_million": 2.423, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 342.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 374.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.218, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-09", + "total_cases": 9453.0, + "new_cases": 99.0, + "new_cases_smoothed": 52.857, + "total_deaths": 223.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 105.548, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 2.49, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 267.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 378.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.151, + "positive_rate": 0.14, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-10", + "total_cases": 9453.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.429, + "total_deaths": 223.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 105.548, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.541, + "total_deaths_per_million": 2.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 299.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 359.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.412999999999999, + "positive_rate": 0.135, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-11", + "total_cases": 9488.0, + "new_cases": 35.0, + "new_cases_smoothed": 50.857, + "total_deaths": 223.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 105.938, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.568, + "total_deaths_per_million": 2.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 462.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 376.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.393, + "positive_rate": 0.135, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-12", + "total_cases": 9498.0, + "new_cases": 10.0, + "new_cases_smoothed": 45.857, + "total_deaths": 224.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 106.05, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 2.501, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 413.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 7.96, + "positive_rate": 0.126, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-13", + "total_cases": 9537.0, + "new_cases": 39.0, + "new_cases_smoothed": 40.714, + "total_deaths": 225.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 106.486, + "new_cases_per_million": 0.435, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 2.512, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 326.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 363.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 8.916, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-14", + "total_cases": 9588.0, + "new_cases": 51.0, + "new_cases_smoothed": 40.0, + "total_deaths": 234.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 107.055, + "new_cases_per_million": 0.569, + "new_cases_smoothed_per_million": 0.447, + "total_deaths_per_million": 2.613, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 480.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.25, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-15", + "total_cases": 9604.0, + "new_cases": 16.0, + "new_cases_smoothed": 35.714, + "total_deaths": 238.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 107.234, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.399, + "total_deaths_per_million": 2.657, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 437.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 383.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 10.724, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-16", + "total_cases": 9637.0, + "new_cases": 33.0, + "new_cases_smoothed": 26.286, + "total_deaths": 239.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 107.602, + "new_cases_per_million": 0.368, + "new_cases_smoothed_per_million": 0.293, + "total_deaths_per_million": 2.669, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 208.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 375.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 14.265999999999998, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-17", + "total_cases": 9675.0, + "new_cases": 38.0, + "new_cases_smoothed": 31.714, + "total_deaths": 239.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 108.026, + "new_cases_per_million": 0.424, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 2.669, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 333.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 11.982000000000001, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-18", + "total_cases": 9705.0, + "new_cases": 30.0, + "new_cases_smoothed": 31.0, + "total_deaths": 242.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 108.361, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.346, + "total_deaths_per_million": 2.702, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 293.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 11.484000000000002, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-19", + "total_cases": 9720.0, + "new_cases": 15.0, + "new_cases_smoothed": 31.714, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 108.529, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 2.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 398.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 354.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 11.162, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-20", + "total_cases": 9740.0, + "new_cases": 20.0, + "new_cases_smoothed": 29.0, + "total_deaths": 245.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 108.752, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 2.736, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 309.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 351.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 12.103, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-21", + "total_cases": 9756.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.0, + "total_deaths": 246.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 108.931, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 2.747, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 254.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 13.292, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-22", + "total_cases": 9801.0, + "new_cases": 45.0, + "new_cases_smoothed": 28.143, + "total_deaths": 247.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 109.433, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 2.758, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 422.0, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 317.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 11.264000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-23", + "total_cases": 9810.0, + "new_cases": 9.0, + "new_cases_smoothed": 24.714, + "total_deaths": 250.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 109.534, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 2.791, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 154.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 309.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 12.503, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-24", + "total_cases": 9829.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.0, + "total_deaths": 250.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 109.746, + "new_cases_per_million": 0.212, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 2.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 184.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 288.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 13.091, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-25", + "total_cases": 9841.0, + "new_cases": 12.0, + "new_cases_smoothed": 19.429, + "total_deaths": 250.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 109.88, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 2.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 217.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 277.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.257, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-26", + "total_cases": 9890.0, + "new_cases": 49.0, + "new_cases_smoothed": 24.286, + "total_deaths": 250.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 110.427, + "new_cases_per_million": 0.547, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 2.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 148.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 241.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 9.924, + "positive_rate": 0.10099999999999999, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-27", + "total_cases": 9911.0, + "new_cases": 21.0, + "new_cases_smoothed": 24.429, + "total_deaths": 253.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 110.662, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 2.825, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 296.0, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 239.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 9.783999999999999, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-28", + "total_cases": 9914.0, + "new_cases": 3.0, + "new_cases_smoothed": 22.571, + "total_deaths": 254.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 110.695, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 2.836, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 151.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 225.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 9.968, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-29", + "total_cases": 9993.0, + "new_cases": 79.0, + "new_cases_smoothed": 27.429, + "total_deaths": 254.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 111.577, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 2.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 339.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 213.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 7.766, + "positive_rate": 0.129, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-30", + "total_cases": 10007.0, + "new_cases": 14.0, + "new_cases_smoothed": 28.143, + "total_deaths": 257.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 111.733, + "new_cases_per_million": 0.156, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 2.87, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 327.0, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 237.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 8.421, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-31", + "total_cases": 10044.0, + "new_cases": 37.0, + "new_cases_smoothed": 30.714, + "total_deaths": 257.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 112.147, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 2.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 135.0, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 230.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 7.4879999999999995, + "positive_rate": 0.134, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-09-01", + "total_cases": 10096.0, + "new_cases": 52.0, + "new_cases_smoothed": 36.429, + "total_deaths": 257.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 112.727, + "new_cases_per_million": 0.581, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 2.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-09-02", + "total_cases": 10103.0, + "new_cases": 7.0, + "new_cases_smoothed": 30.429, + "total_deaths": 258.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 112.805, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 2.881, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 266.0, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-09-03", + "total_cases": 10113.0, + "new_cases": 10.0, + "new_cases_smoothed": 28.857, + "total_deaths": 258.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 112.917, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 2.881, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 37.04 + }, + { + "date": "2020-09-04", + "total_cases": 10125.0, + "new_cases": 12.0, + "new_cases_smoothed": 30.143, + "total_deaths": 258.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 113.051, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 2.881, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 37.04 + }, + { + "date": "2020-09-05", + "total_cases": 10148.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.143, + "total_deaths": 258.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 113.308, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 2.881, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006 + } + ] + }, + "DNK": { + "continent": "Europe", + "location": "Denmark", + "population": 5792203.0, + "population_density": 136.52, + "median_age": 42.3, + "aged_65_older": 19.677, + "aged_70_older": 12.325, + "gdp_per_capita": 46682.515, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 114.767, + "diabetes_prevalence": 6.41, + "female_smokers": 19.3, + "male_smokers": 18.8, + "hospital_beds_per_thousand": 2.5, + "life_expectancy": 80.9, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 1.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 2.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 3.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 5.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 6.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 7.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 9.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 10.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 11.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 12.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 14.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 17.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 19.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 21.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 31.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 62.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.173, + "new_cases_per_million": 0.173, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 111.0, + "total_tests": 173.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 61.0, + "total_tests": 234.0, + "total_tests_per_thousand": 0.04, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 217.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.345, + "new_cases_per_million": 0.173, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 74.0, + "total_tests": 308.0, + "total_tests_per_thousand": 0.053, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 143.5, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.518, + "new_cases_per_million": 0.173, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 49.0, + "total_tests": 357.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 48.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.691, + "new_cases_per_million": 0.173, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 80.0, + "total_tests": 437.0, + "total_tests_per_thousand": 0.075, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 59.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 103.25, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.863, + "new_cases_per_million": 0.173, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 63.0, + "total_tests": 500.0, + "total_tests_per_thousand": 0.086, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 67.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 93.8, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-04", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.381, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.197, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 589.0, + "total_tests_per_thousand": 0.102, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 75.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 65.625, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-05", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.726, + "new_cases_per_million": 0.345, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 109.0, + "total_tests": 698.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 75.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 58.333, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-06", + "total_cases": 20.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.453, + "new_cases_per_million": 1.726, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 127.0, + "total_tests": 825.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 84.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 30.947, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 25.93 + }, + { + "date": "2020-03-07", + "total_cases": 23.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.971, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 108.0, + "total_tests": 933.0, + "total_tests_per_thousand": 0.161, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 89.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 29.666999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 25.93 + }, + { + "date": "2020-03-08", + "total_cases": 31.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.352, + "new_cases_per_million": 1.381, + "new_cases_smoothed_per_million": 0.691, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 229.0, + "total_tests": 1162.0, + "total_tests_per_thousand": 0.201, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 115.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 28.75, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 25.93 + }, + { + "date": "2020-03-09", + "total_cases": 38.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.561, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 0.839, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 578.0, + "total_tests": 1740.0, + "total_tests_per_thousand": 0.3, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 186.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 38.294000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 25.93 + }, + { + "date": "2020-03-10", + "total_cases": 113.0, + "new_cases": 75.0, + "new_cases_smoothed": 15.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.509, + "new_cases_per_million": 12.948, + "new_cases_smoothed_per_million": 2.664, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 806.0, + "total_tests": 2546.0, + "total_tests_per_thousand": 0.44, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 18.926, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-03-11", + "total_cases": 264.0, + "new_cases": 151.0, + "new_cases_smoothed": 36.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.579, + "new_cases_per_million": 26.07, + "new_cases_smoothed_per_million": 6.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 883.0, + "total_tests": 3429.0, + "total_tests_per_thousand": 0.592, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 406.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 11.102, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-03-12", + "total_cases": 516.0, + "new_cases": 252.0, + "new_cases_smoothed": 72.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.085, + "new_cases_per_million": 43.507, + "new_cases_smoothed_per_million": 12.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 676.0, + "total_tests": 4105.0, + "total_tests_per_thousand": 0.709, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 487.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 6.737, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-03-13", + "total_cases": 676.0, + "new_cases": 160.0, + "new_cases_smoothed": 93.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.709, + "new_cases_per_million": 27.623, + "new_cases_smoothed_per_million": 16.179, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 710.0, + "total_tests": 4815.0, + "total_tests_per_thousand": 0.831, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 570.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 6.082000000000001, + "positive_rate": 0.16399999999999998, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-03-14", + "total_cases": 804.0, + "new_cases": 128.0, + "new_cases_smoothed": 111.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.807, + "new_cases_per_million": 22.099, + "new_cases_smoothed_per_million": 19.262, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 583.0, + "total_tests": 5398.0, + "total_tests_per_thousand": 0.932, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 638.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 5.718, + "positive_rate": 0.175, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-15", + "total_cases": 827.0, + "new_cases": 23.0, + "new_cases_smoothed": 113.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.778, + "new_cases_per_million": 3.971, + "new_cases_smoothed_per_million": 19.632, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 723.0, + "total_tests": 6121.0, + "total_tests_per_thousand": 1.057, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 708.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 6.226, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-16", + "total_cases": 875.0, + "new_cases": 48.0, + "new_cases_smoothed": 119.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 151.065, + "new_cases_per_million": 8.287, + "new_cases_smoothed_per_million": 20.644, + "total_deaths_per_million": 0.173, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 1016.0, + "total_tests": 7137.0, + "total_tests_per_thousand": 1.232, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 771.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 6.4479999999999995, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-17", + "total_cases": 932.0, + "new_cases": 57.0, + "new_cases_smoothed": 117.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 160.906, + "new_cases_per_million": 9.841, + "new_cases_smoothed_per_million": 20.2, + "total_deaths_per_million": 0.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 948.0, + "total_tests": 8085.0, + "total_tests_per_thousand": 1.396, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 791.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 6.761, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-18", + "total_cases": 1024.0, + "new_cases": 92.0, + "new_cases_smoothed": 108.571, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 176.789, + "new_cases_per_million": 15.883, + "new_cases_smoothed_per_million": 18.744, + "total_deaths_per_million": 0.691, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 1226.0, + "total_tests": 9311.0, + "total_tests_per_thousand": 1.608, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 840.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 7.737, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-19", + "total_cases": 1115.0, + "new_cases": 91.0, + "new_cases_smoothed": 85.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 192.5, + "new_cases_per_million": 15.711, + "new_cases_smoothed_per_million": 14.774, + "total_deaths_per_million": 0.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 1848.0, + "total_tests": 11159.0, + "total_tests_per_thousand": 1.927, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 11.78, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-20", + "total_cases": 1151.0, + "new_cases": 36.0, + "new_cases_smoothed": 67.857, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 198.715, + "new_cases_per_million": 6.215, + "new_cases_smoothed_per_million": 11.715, + "total_deaths_per_million": 1.036, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 1179.0, + "total_tests": 12338.0, + "total_tests_per_thousand": 2.13, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 1075.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 15.842, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-21", + "total_cases": 1255.0, + "new_cases": 104.0, + "new_cases_smoothed": 64.429, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 216.671, + "new_cases_per_million": 17.955, + "new_cases_smoothed_per_million": 11.123, + "total_deaths_per_million": 1.554, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 602.0, + "total_tests": 12940.0, + "total_tests_per_thousand": 2.234, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1077.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 16.715999999999998, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-22", + "total_cases": 1326.0, + "new_cases": 71.0, + "new_cases_smoothed": 71.286, + "total_deaths": 13.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 228.928, + "new_cases_per_million": 12.258, + "new_cases_smoothed_per_million": 12.307, + "total_deaths_per_million": 2.244, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 533.0, + "total_tests": 13473.0, + "total_tests_per_thousand": 2.326, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 1050.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 14.729000000000001, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-23", + "total_cases": 1395.0, + "new_cases": 69.0, + "new_cases_smoothed": 74.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 240.841, + "new_cases_per_million": 11.913, + "new_cases_smoothed_per_million": 12.825, + "total_deaths_per_million": 2.244, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.296, + "new_tests": 1125.0, + "total_tests": 14598.0, + "total_tests_per_thousand": 2.52, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 1066.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 14.35, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-24", + "total_cases": 1460.0, + "new_cases": 65.0, + "new_cases_smoothed": 75.429, + "total_deaths": 24.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 252.063, + "new_cases_per_million": 11.222, + "new_cases_smoothed_per_million": 13.022, + "total_deaths_per_million": 4.144, + "new_deaths_per_million": 1.899, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 1123.0, + "total_tests": 15721.0, + "total_tests_per_thousand": 2.714, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 1091.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 14.464, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-25", + "total_cases": 1591.0, + "new_cases": 131.0, + "new_cases_smoothed": 81.0, + "total_deaths": 32.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 274.68, + "new_cases_per_million": 22.617, + "new_cases_smoothed_per_million": 13.984, + "total_deaths_per_million": 5.525, + "new_deaths_per_million": 1.381, + "new_deaths_smoothed_per_million": 0.691, + "new_tests": 1372.0, + "total_tests": 17093.0, + "total_tests_per_thousand": 2.951, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 13.728, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-26", + "total_cases": 1724.0, + "new_cases": 133.0, + "new_cases_smoothed": 87.0, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 297.642, + "new_cases_per_million": 22.962, + "new_cases_smoothed_per_million": 15.02, + "total_deaths_per_million": 5.87, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.74, + "new_tests": 1611.0, + "total_tests": 18704.0, + "total_tests_per_thousand": 3.229, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 12.390999999999998, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-27", + "total_cases": 1877.0, + "new_cases": 153.0, + "new_cases_smoothed": 103.714, + "total_deaths": 41.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 324.056, + "new_cases_per_million": 26.415, + "new_cases_smoothed_per_million": 17.906, + "total_deaths_per_million": 7.078, + "new_deaths_per_million": 1.209, + "new_deaths_smoothed_per_million": 0.863, + "new_tests": 2110.0, + "total_tests": 20814.0, + "total_tests_per_thousand": 3.593, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 1211.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 11.675999999999998, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-28", + "total_cases": 2046.0, + "new_cases": 169.0, + "new_cases_smoothed": 113.0, + "total_deaths": 52.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 353.233, + "new_cases_per_million": 29.177, + "new_cases_smoothed_per_million": 19.509, + "total_deaths_per_million": 8.978, + "new_deaths_per_million": 1.899, + "new_deaths_smoothed_per_million": 1.061, + "new_tests": 1383.0, + "total_tests": 22197.0, + "total_tests_per_thousand": 3.832, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 1322.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 11.699000000000002, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-29", + "total_cases": 2201.0, + "new_cases": 155.0, + "new_cases_smoothed": 125.0, + "total_deaths": 65.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 379.994, + "new_cases_per_million": 26.76, + "new_cases_smoothed_per_million": 21.581, + "total_deaths_per_million": 11.222, + "new_deaths_per_million": 2.244, + "new_deaths_smoothed_per_million": 1.283, + "new_tests": 1301.0, + "total_tests": 23498.0, + "total_tests_per_thousand": 4.057, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 11.456, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-30", + "total_cases": 2395.0, + "new_cases": 194.0, + "new_cases_smoothed": 142.857, + "total_deaths": 72.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 413.487, + "new_cases_per_million": 33.493, + "new_cases_smoothed_per_million": 24.664, + "total_deaths_per_million": 12.431, + "new_deaths_per_million": 1.209, + "new_deaths_smoothed_per_million": 1.455, + "new_tests": 3218.0, + "total_tests": 26716.0, + "total_tests_per_thousand": 4.612, + "new_tests_per_thousand": 0.556, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 12.117, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-31", + "total_cases": 2577.0, + "new_cases": 182.0, + "new_cases_smoothed": 159.571, + "total_deaths": 77.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 444.908, + "new_cases_per_million": 31.422, + "new_cases_smoothed_per_million": 27.549, + "total_deaths_per_million": 13.294, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 1.307, + "new_tests": 3210.0, + "total_tests": 29926.0, + "total_tests_per_thousand": 5.167, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 2029.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 12.715, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-01", + "total_cases": 2860.0, + "new_cases": 283.0, + "new_cases_smoothed": 181.286, + "total_deaths": 90.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 493.767, + "new_cases_per_million": 48.859, + "new_cases_smoothed_per_million": 31.298, + "total_deaths_per_million": 15.538, + "new_deaths_per_million": 2.244, + "new_deaths_smoothed_per_million": 1.43, + "new_tests": 3557.0, + "total_tests": 33483.0, + "total_tests_per_thousand": 5.781, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 2341.0, + "new_tests_smoothed_per_thousand": 0.404, + "tests_per_case": 12.913, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-02", + "total_cases": 3107.0, + "new_cases": 247.0, + "new_cases_smoothed": 197.571, + "total_deaths": 104.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 536.411, + "new_cases_per_million": 42.644, + "new_cases_smoothed_per_million": 34.11, + "total_deaths_per_million": 17.955, + "new_deaths_per_million": 2.417, + "new_deaths_smoothed_per_million": 1.726, + "new_tests": 5752.0, + "total_tests": 39235.0, + "total_tests_per_thousand": 6.774, + "new_tests_per_thousand": 0.993, + "new_tests_smoothed": 2933.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 14.845, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-03", + "total_cases": 3386.0, + "new_cases": 279.0, + "new_cases_smoothed": 215.571, + "total_deaths": 123.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 584.579, + "new_cases_per_million": 48.168, + "new_cases_smoothed_per_million": 37.218, + "total_deaths_per_million": 21.235, + "new_deaths_per_million": 3.28, + "new_deaths_smoothed_per_million": 2.022, + "new_tests": 6617.0, + "total_tests": 45852.0, + "total_tests_per_thousand": 7.916, + "new_tests_per_thousand": 1.142, + "new_tests_smoothed": 3577.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 16.593, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-04", + "total_cases": 3757.0, + "new_cases": 371.0, + "new_cases_smoothed": 244.429, + "total_deaths": 139.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 648.631, + "new_cases_per_million": 64.052, + "new_cases_smoothed_per_million": 42.2, + "total_deaths_per_million": 23.998, + "new_deaths_per_million": 2.762, + "new_deaths_smoothed_per_million": 2.146, + "new_tests": 3697.0, + "total_tests": 49549.0, + "total_tests_per_thousand": 8.554, + "new_tests_per_thousand": 0.638, + "new_tests_smoothed": 3907.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 15.984000000000002, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-05", + "total_cases": 4077.0, + "new_cases": 320.0, + "new_cases_smoothed": 268.0, + "total_deaths": 161.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 703.877, + "new_cases_per_million": 55.247, + "new_cases_smoothed_per_million": 46.269, + "total_deaths_per_million": 27.796, + "new_deaths_per_million": 3.798, + "new_deaths_smoothed_per_million": 2.368, + "new_tests": 2213.0, + "total_tests": 51762.0, + "total_tests_per_thousand": 8.936, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 4038.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 15.067, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-06", + "total_cases": 4369.0, + "new_cases": 292.0, + "new_cases_smoothed": 282.0, + "total_deaths": 179.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 754.29, + "new_cases_per_million": 50.413, + "new_cases_smoothed_per_million": 48.686, + "total_deaths_per_million": 30.904, + "new_deaths_per_million": 3.108, + "new_deaths_smoothed_per_million": 2.639, + "new_tests": 6569.0, + "total_tests": 58331.0, + "total_tests_per_thousand": 10.071, + "new_tests_per_thousand": 1.134, + "new_tests_smoothed": 4516.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 16.014, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-07", + "total_cases": 4681.0, + "new_cases": 312.0, + "new_cases_smoothed": 300.571, + "total_deaths": 187.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 808.155, + "new_cases_per_million": 53.866, + "new_cases_smoothed_per_million": 51.892, + "total_deaths_per_million": 32.285, + "new_deaths_per_million": 1.381, + "new_deaths_smoothed_per_million": 2.713, + "new_tests": 6384.0, + "total_tests": 64715.0, + "total_tests_per_thousand": 11.173, + "new_tests_per_thousand": 1.102, + "new_tests_smoothed": 4970.0, + "new_tests_smoothed_per_thousand": 0.858, + "tests_per_case": 16.535, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-08", + "total_cases": 5071.0, + "new_cases": 390.0, + "new_cases_smoothed": 315.857, + "total_deaths": 203.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 875.487, + "new_cases_per_million": 67.332, + "new_cases_smoothed_per_million": 54.531, + "total_deaths_per_million": 35.047, + "new_deaths_per_million": 2.762, + "new_deaths_smoothed_per_million": 2.787, + "new_tests": 5632.0, + "total_tests": 70347.0, + "total_tests_per_thousand": 12.145, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 5266.0, + "new_tests_smoothed_per_thousand": 0.909, + "tests_per_case": 16.672, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-09", + "total_cases": 5402.0, + "new_cases": 331.0, + "new_cases_smoothed": 327.857, + "total_deaths": 218.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 932.633, + "new_cases_per_million": 57.146, + "new_cases_smoothed_per_million": 56.603, + "total_deaths_per_million": 37.637, + "new_deaths_per_million": 2.59, + "new_deaths_smoothed_per_million": 2.812, + "new_tests": 2552.0, + "total_tests": 72899.0, + "total_tests_per_thousand": 12.586, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 4809.0, + "new_tests_smoothed_per_thousand": 0.83, + "tests_per_case": 14.668, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-10", + "total_cases": 5635.0, + "new_cases": 233.0, + "new_cases_smoothed": 321.286, + "total_deaths": 237.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 972.86, + "new_cases_per_million": 40.226, + "new_cases_smoothed_per_million": 55.469, + "total_deaths_per_million": 40.917, + "new_deaths_per_million": 3.28, + "new_deaths_smoothed_per_million": 2.812, + "new_tests": 2326.0, + "total_tests": 75225.0, + "total_tests_per_thousand": 12.987, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 4196.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 13.06, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-11", + "total_cases": 5819.0, + "new_cases": 184.0, + "new_cases_smoothed": 294.571, + "total_deaths": 247.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 1004.626, + "new_cases_per_million": 31.767, + "new_cases_smoothed_per_million": 50.857, + "total_deaths_per_million": 42.644, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 2.664, + "new_tests": 2229.0, + "total_tests": 77454.0, + "total_tests_per_thousand": 13.372, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 3986.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 13.532, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-12", + "total_cases": 5996.0, + "new_cases": 177.0, + "new_cases_smoothed": 274.143, + "total_deaths": 260.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 1035.185, + "new_cases_per_million": 30.558, + "new_cases_smoothed_per_million": 47.33, + "total_deaths_per_million": 44.888, + "new_deaths_per_million": 2.244, + "new_deaths_smoothed_per_million": 2.442, + "new_tests": 2143.0, + "total_tests": 79597.0, + "total_tests_per_thousand": 13.742, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 3976.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 14.503, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-13", + "total_cases": 6174.0, + "new_cases": 178.0, + "new_cases_smoothed": 257.857, + "total_deaths": 273.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 1065.916, + "new_cases_per_million": 30.731, + "new_cases_smoothed_per_million": 44.518, + "total_deaths_per_million": 47.132, + "new_deaths_per_million": 2.244, + "new_deaths_smoothed_per_million": 2.318, + "new_tests": 2149.0, + "total_tests": 81746.0, + "total_tests_per_thousand": 14.113, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 3345.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 12.972000000000001, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-14", + "total_cases": 6318.0, + "new_cases": 144.0, + "new_cases_smoothed": 233.857, + "total_deaths": 285.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 1090.777, + "new_cases_per_million": 24.861, + "new_cases_smoothed_per_million": 40.374, + "total_deaths_per_million": 49.204, + "new_deaths_per_million": 2.072, + "new_deaths_smoothed_per_million": 2.417, + "new_tests": 6219.0, + "total_tests": 87965.0, + "total_tests_per_thousand": 15.187, + "new_tests_per_thousand": 1.074, + "new_tests_smoothed": 3321.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 14.200999999999999, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-15", + "total_cases": 6511.0, + "new_cases": 193.0, + "new_cases_smoothed": 205.714, + "total_deaths": 299.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 1124.097, + "new_cases_per_million": 33.321, + "new_cases_smoothed_per_million": 35.516, + "total_deaths_per_million": 51.621, + "new_deaths_per_million": 2.417, + "new_deaths_smoothed_per_million": 2.368, + "new_tests": 5634.0, + "total_tests": 93599.0, + "total_tests_per_thousand": 16.159, + "new_tests_per_thousand": 0.973, + "new_tests_smoothed": 3322.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 16.149, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-16", + "total_cases": 6681.0, + "new_cases": 170.0, + "new_cases_smoothed": 182.714, + "total_deaths": 309.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 1153.447, + "new_cases_per_million": 29.35, + "new_cases_smoothed_per_million": 31.545, + "total_deaths_per_million": 53.348, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 2.244, + "new_tests": 5332.0, + "total_tests": 98931.0, + "total_tests_per_thousand": 17.08, + "new_tests_per_thousand": 0.921, + "new_tests_smoothed": 3719.0, + "new_tests_smoothed_per_thousand": 0.642, + "tests_per_case": 20.354, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-17", + "total_cases": 6879.0, + "new_cases": 198.0, + "new_cases_smoothed": 177.714, + "total_deaths": 321.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 1187.631, + "new_cases_per_million": 34.184, + "new_cases_smoothed_per_million": 30.682, + "total_deaths_per_million": 55.419, + "new_deaths_per_million": 2.072, + "new_deaths_smoothed_per_million": 2.072, + "new_tests": 4803.0, + "total_tests": 103734.0, + "total_tests_per_thousand": 17.909, + "new_tests_per_thousand": 0.829, + "new_tests_smoothed": 4073.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 22.919, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-18", + "total_cases": 7073.0, + "new_cases": 194.0, + "new_cases_smoothed": 179.143, + "total_deaths": 336.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 1221.124, + "new_cases_per_million": 33.493, + "new_cases_smoothed_per_million": 30.928, + "total_deaths_per_million": 58.009, + "new_deaths_per_million": 2.59, + "new_deaths_smoothed_per_million": 2.195, + "new_tests": 2302.0, + "total_tests": 106036.0, + "total_tests_per_thousand": 18.307, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 4083.0, + "new_tests_smoothed_per_thousand": 0.705, + "tests_per_case": 22.791999999999998, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-19", + "total_cases": 7242.0, + "new_cases": 169.0, + "new_cases_smoothed": 178.0, + "total_deaths": 346.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 1250.301, + "new_cases_per_million": 29.177, + "new_cases_smoothed_per_million": 30.731, + "total_deaths_per_million": 59.735, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 2.121, + "new_tests": 1886.0, + "total_tests": 107922.0, + "total_tests_per_thousand": 18.632, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 4046.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 22.73, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-20", + "total_cases": 7384.0, + "new_cases": 142.0, + "new_cases_smoothed": 172.857, + "total_deaths": 355.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1274.817, + "new_cases_per_million": 24.516, + "new_cases_smoothed_per_million": 29.843, + "total_deaths_per_million": 61.289, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 2.022, + "new_tests": 6670.0, + "total_tests": 114592.0, + "total_tests_per_thousand": 19.784, + "new_tests_per_thousand": 1.152, + "new_tests_smoothed": 4692.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 27.144000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-21", + "total_cases": 7515.0, + "new_cases": 131.0, + "new_cases_smoothed": 171.0, + "total_deaths": 364.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 1297.434, + "new_cases_per_million": 22.617, + "new_cases_smoothed_per_million": 29.522, + "total_deaths_per_million": 62.843, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.948, + "new_tests": 9775.0, + "total_tests": 124367.0, + "total_tests_per_thousand": 21.471, + "new_tests_per_thousand": 1.688, + "new_tests_smoothed": 5200.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 30.409000000000002, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-22", + "total_cases": 7695.0, + "new_cases": 180.0, + "new_cases_smoothed": 169.143, + "total_deaths": 370.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1328.51, + "new_cases_per_million": 31.076, + "new_cases_smoothed_per_million": 29.202, + "total_deaths_per_million": 63.879, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 1.751, + "new_tests": 11605.0, + "total_tests": 135972.0, + "total_tests_per_thousand": 23.475, + "new_tests_per_thousand": 2.004, + "new_tests_smoothed": 6053.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 35.786, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-23", + "total_cases": 7912.0, + "new_cases": 217.0, + "new_cases_smoothed": 175.857, + "total_deaths": 384.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1365.974, + "new_cases_per_million": 37.464, + "new_cases_smoothed_per_million": 30.361, + "total_deaths_per_million": 66.296, + "new_deaths_per_million": 2.417, + "new_deaths_smoothed_per_million": 1.85, + "new_tests": 12486.0, + "total_tests": 148458.0, + "total_tests_per_thousand": 25.631, + "new_tests_per_thousand": 2.156, + "new_tests_smoothed": 7075.0, + "new_tests_smoothed_per_thousand": 1.221, + "tests_per_case": 40.232, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-24", + "total_cases": 8073.0, + "new_cases": 161.0, + "new_cases_smoothed": 170.571, + "total_deaths": 394.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 1393.77, + "new_cases_per_million": 27.796, + "new_cases_smoothed_per_million": 29.448, + "total_deaths_per_million": 68.022, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 1.8, + "new_tests": 14819.0, + "total_tests": 163277.0, + "total_tests_per_thousand": 28.189, + "new_tests_per_thousand": 2.558, + "new_tests_smoothed": 8506.0, + "new_tests_smoothed_per_thousand": 1.469, + "tests_per_case": 49.868, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-25", + "total_cases": 8210.0, + "new_cases": 137.0, + "new_cases_smoothed": 162.429, + "total_deaths": 403.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1417.423, + "new_cases_per_million": 23.652, + "new_cases_smoothed_per_million": 28.043, + "total_deaths_per_million": 69.576, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.652, + "new_tests": 12432.0, + "total_tests": 175709.0, + "total_tests_per_thousand": 30.335, + "new_tests_per_thousand": 2.146, + "new_tests_smoothed": 9953.0, + "new_tests_smoothed_per_thousand": 1.718, + "tests_per_case": 61.276, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-26", + "total_cases": 8445.0, + "new_cases": 235.0, + "new_cases_smoothed": 171.857, + "total_deaths": 418.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1457.994, + "new_cases_per_million": 40.572, + "new_cases_smoothed_per_million": 29.67, + "total_deaths_per_million": 72.166, + "new_deaths_per_million": 2.59, + "new_deaths_smoothed_per_million": 1.776, + "new_tests": 10327.0, + "total_tests": 186036.0, + "total_tests_per_thousand": 32.118, + "new_tests_per_thousand": 1.783, + "new_tests_smoothed": 11159.0, + "new_tests_smoothed_per_thousand": 1.927, + "tests_per_case": 64.932, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-27", + "total_cases": 8575.0, + "new_cases": 130.0, + "new_cases_smoothed": 170.143, + "total_deaths": 422.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1480.438, + "new_cases_per_million": 22.444, + "new_cases_smoothed_per_million": 29.374, + "total_deaths_per_million": 72.857, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 1.652, + "new_tests": 17351.0, + "total_tests": 203387.0, + "total_tests_per_thousand": 35.114, + "new_tests_per_thousand": 2.996, + "new_tests_smoothed": 12685.0, + "new_tests_smoothed_per_thousand": 2.19, + "tests_per_case": 74.555, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-28", + "total_cases": 8698.0, + "new_cases": 123.0, + "new_cases_smoothed": 169.0, + "total_deaths": 427.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1501.674, + "new_cases_per_million": 21.235, + "new_cases_smoothed_per_million": 29.177, + "total_deaths_per_million": 73.72, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 16267.0, + "total_tests": 219654.0, + "total_tests_per_thousand": 37.922, + "new_tests_per_thousand": 2.808, + "new_tests_smoothed": 13612.0, + "new_tests_smoothed_per_thousand": 2.35, + "tests_per_case": 80.544, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-29", + "total_cases": 8851.0, + "new_cases": 153.0, + "new_cases_smoothed": 165.143, + "total_deaths": 434.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1528.089, + "new_cases_per_million": 26.415, + "new_cases_smoothed_per_million": 28.511, + "total_deaths_per_million": 74.928, + "new_deaths_per_million": 1.209, + "new_deaths_smoothed_per_million": 1.578, + "new_tests": 16077.0, + "total_tests": 235731.0, + "total_tests_per_thousand": 40.698, + "new_tests_per_thousand": 2.776, + "new_tests_smoothed": 14251.0, + "new_tests_smoothed_per_thousand": 2.46, + "tests_per_case": 86.295, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-30", + "total_cases": 9008.0, + "new_cases": 157.0, + "new_cases_smoothed": 156.571, + "total_deaths": 443.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1555.194, + "new_cases_per_million": 27.105, + "new_cases_smoothed_per_million": 27.031, + "total_deaths_per_million": 76.482, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.455, + "new_tests": 15951.0, + "total_tests": 251682.0, + "total_tests_per_thousand": 43.452, + "new_tests_per_thousand": 2.754, + "new_tests_smoothed": 14746.0, + "new_tests_smoothed_per_thousand": 2.546, + "tests_per_case": 94.181, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-01", + "total_cases": 9158.0, + "new_cases": 150.0, + "new_cases_smoothed": 155.0, + "total_deaths": 452.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1581.091, + "new_cases_per_million": 25.897, + "new_cases_smoothed_per_million": 26.76, + "total_deaths_per_million": 78.036, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.43, + "new_tests": 14445.0, + "total_tests": 266127.0, + "total_tests_per_thousand": 45.946, + "new_tests_per_thousand": 2.494, + "new_tests_smoothed": 14693.0, + "new_tests_smoothed_per_thousand": 2.537, + "tests_per_case": 94.794, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-02", + "total_cases": 9311.0, + "new_cases": 153.0, + "new_cases_smoothed": 157.286, + "total_deaths": 462.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1607.506, + "new_cases_per_million": 26.415, + "new_cases_smoothed_per_million": 27.155, + "total_deaths_per_million": 79.762, + "new_deaths_per_million": 1.726, + "new_deaths_smoothed_per_million": 1.455, + "new_tests": 11146.0, + "total_tests": 277273.0, + "total_tests_per_thousand": 47.87, + "new_tests_per_thousand": 1.924, + "new_tests_smoothed": 14509.0, + "new_tests_smoothed_per_thousand": 2.505, + "tests_per_case": 92.24600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-03", + "total_cases": 9407.0, + "new_cases": 96.0, + "new_cases_smoothed": 137.429, + "total_deaths": 473.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1624.08, + "new_cases_per_million": 16.574, + "new_cases_smoothed_per_million": 23.726, + "total_deaths_per_million": 81.662, + "new_deaths_per_million": 1.899, + "new_deaths_smoothed_per_million": 1.357, + "new_tests": 8999.0, + "total_tests": 286272.0, + "total_tests_per_thousand": 49.424, + "new_tests_per_thousand": 1.554, + "new_tests_smoothed": 14319.0, + "new_tests_smoothed_per_thousand": 2.472, + "tests_per_case": 104.19200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-04", + "total_cases": 9523.0, + "new_cases": 116.0, + "new_cases_smoothed": 135.429, + "total_deaths": 481.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1644.107, + "new_cases_per_million": 20.027, + "new_cases_smoothed_per_million": 23.381, + "total_deaths_per_million": 83.043, + "new_deaths_per_million": 1.381, + "new_deaths_smoothed_per_million": 1.455, + "new_tests": 17780.0, + "total_tests": 304052.0, + "total_tests_per_thousand": 52.493, + "new_tests_per_thousand": 3.07, + "new_tests_smoothed": 14381.0, + "new_tests_smoothed_per_thousand": 2.483, + "tests_per_case": 106.189, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-05", + "total_cases": 9670.0, + "new_cases": 147.0, + "new_cases_smoothed": 138.857, + "total_deaths": 490.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1669.486, + "new_cases_per_million": 25.379, + "new_cases_smoothed_per_million": 23.973, + "total_deaths_per_million": 84.596, + "new_deaths_per_million": 1.554, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 15795.0, + "total_tests": 319847.0, + "total_tests_per_thousand": 55.22, + "new_tests_per_thousand": 2.727, + "new_tests_smoothed": 14313.0, + "new_tests_smoothed_per_thousand": 2.471, + "tests_per_case": 103.07700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-06", + "total_cases": 9821.0, + "new_cases": 151.0, + "new_cases_smoothed": 138.571, + "total_deaths": 497.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1695.555, + "new_cases_per_million": 26.07, + "new_cases_smoothed_per_million": 23.924, + "total_deaths_per_million": 85.805, + "new_deaths_per_million": 1.209, + "new_deaths_smoothed_per_million": 1.554, + "new_tests": 14328.0, + "total_tests": 334175.0, + "total_tests_per_thousand": 57.694, + "new_tests_per_thousand": 2.474, + "new_tests_smoothed": 14063.0, + "new_tests_smoothed_per_thousand": 2.428, + "tests_per_case": 101.486, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-07", + "total_cases": 9983.0, + "new_cases": 162.0, + "new_cases_smoothed": 139.286, + "total_deaths": 500.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1723.524, + "new_cases_per_million": 27.969, + "new_cases_smoothed_per_million": 24.047, + "total_deaths_per_million": 86.323, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 1.406, + "new_tests": 14371.0, + "total_tests": 348546.0, + "total_tests_per_thousand": 60.175, + "new_tests_per_thousand": 2.481, + "new_tests_smoothed": 13838.0, + "new_tests_smoothed_per_thousand": 2.389, + "tests_per_case": 99.35, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-05-08", + "total_cases": 10083.0, + "new_cases": 100.0, + "new_cases_smoothed": 132.143, + "total_deaths": 506.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1740.788, + "new_cases_per_million": 17.265, + "new_cases_smoothed_per_million": 22.814, + "total_deaths_per_million": 87.359, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 1.332, + "new_tests": 8373.0, + "total_tests": 356919.0, + "total_tests_per_thousand": 61.621, + "new_tests_per_thousand": 1.446, + "new_tests_smoothed": 12970.0, + "new_tests_smoothed_per_thousand": 2.239, + "tests_per_case": 98.15100000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-09", + "total_cases": 10218.0, + "new_cases": 135.0, + "new_cases_smoothed": 129.571, + "total_deaths": 512.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1764.096, + "new_cases_per_million": 23.307, + "new_cases_smoothed_per_million": 22.37, + "total_deaths_per_million": 88.395, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 8246.0, + "total_tests": 365165.0, + "total_tests_per_thousand": 63.044, + "new_tests_per_thousand": 1.424, + "new_tests_smoothed": 12556.0, + "new_tests_smoothed_per_thousand": 2.168, + "tests_per_case": 96.904, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-10", + "total_cases": 10319.0, + "new_cases": 101.0, + "new_cases_smoothed": 130.286, + "total_deaths": 516.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1781.533, + "new_cases_per_million": 17.437, + "new_cases_smoothed_per_million": 22.493, + "total_deaths_per_million": 89.085, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 1.061, + "new_tests": 6687.0, + "total_tests": 371852.0, + "total_tests_per_thousand": 64.199, + "new_tests_per_thousand": 1.154, + "new_tests_smoothed": 12226.0, + "new_tests_smoothed_per_thousand": 2.111, + "tests_per_case": 93.84, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-11", + "total_cases": 10429.0, + "new_cases": 110.0, + "new_cases_smoothed": 129.429, + "total_deaths": 519.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1800.524, + "new_cases_per_million": 18.991, + "new_cases_smoothed_per_million": 22.345, + "total_deaths_per_million": 89.603, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.937, + "new_tests": 16448.0, + "total_tests": 388300.0, + "total_tests_per_thousand": 67.038, + "new_tests_per_thousand": 2.84, + "new_tests_smoothed": 12035.0, + "new_tests_smoothed_per_thousand": 2.078, + "tests_per_case": 92.986, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-12", + "total_cases": 10513.0, + "new_cases": 84.0, + "new_cases_smoothed": 120.429, + "total_deaths": 524.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1815.026, + "new_cases_per_million": 14.502, + "new_cases_smoothed_per_million": 20.791, + "total_deaths_per_million": 90.466, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 14783.0, + "total_tests": 403083.0, + "total_tests_per_thousand": 69.591, + "new_tests_per_thousand": 2.552, + "new_tests_smoothed": 11891.0, + "new_tests_smoothed_per_thousand": 2.053, + "tests_per_case": 98.73899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-13", + "total_cases": 10591.0, + "new_cases": 78.0, + "new_cases_smoothed": 110.0, + "total_deaths": 528.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1828.493, + "new_cases_per_million": 13.466, + "new_cases_smoothed_per_million": 18.991, + "total_deaths_per_million": 91.157, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.765, + "new_tests": 14759.0, + "total_tests": 417842.0, + "total_tests_per_thousand": 72.139, + "new_tests_per_thousand": 2.548, + "new_tests_smoothed": 11952.0, + "new_tests_smoothed_per_thousand": 2.063, + "tests_per_case": 108.655, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-14", + "total_cases": 10667.0, + "new_cases": 76.0, + "new_cases_smoothed": 97.714, + "total_deaths": 534.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1841.614, + "new_cases_per_million": 13.121, + "new_cases_smoothed_per_million": 16.87, + "total_deaths_per_million": 92.193, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 12995.0, + "total_tests": 430837.0, + "total_tests_per_thousand": 74.382, + "new_tests_per_thousand": 2.244, + "new_tests_smoothed": 11756.0, + "new_tests_smoothed_per_thousand": 2.03, + "tests_per_case": 120.31, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-15", + "total_cases": 10713.0, + "new_cases": 46.0, + "new_cases_smoothed": 90.0, + "total_deaths": 538.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1849.555, + "new_cases_per_million": 7.942, + "new_cases_smoothed_per_million": 15.538, + "total_deaths_per_million": 92.883, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.789, + "new_tests": 12670.0, + "total_tests": 443507.0, + "total_tests_per_thousand": 76.57, + "new_tests_per_thousand": 2.187, + "new_tests_smoothed": 12370.0, + "new_tests_smoothed_per_thousand": 2.136, + "tests_per_case": 137.444, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-16", + "total_cases": 10791.0, + "new_cases": 78.0, + "new_cases_smoothed": 81.857, + "total_deaths": 538.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1863.022, + "new_cases_per_million": 13.466, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 92.883, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.641, + "new_tests": 7698.0, + "total_tests": 451205.0, + "total_tests_per_thousand": 77.899, + "new_tests_per_thousand": 1.329, + "new_tests_smoothed": 12291.0, + "new_tests_smoothed_per_thousand": 2.122, + "tests_per_case": 150.15200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-17", + "total_cases": 10858.0, + "new_cases": 67.0, + "new_cases_smoothed": 77.0, + "total_deaths": 543.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1874.589, + "new_cases_per_million": 11.567, + "new_cases_smoothed_per_million": 13.294, + "total_deaths_per_million": 93.747, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.666, + "new_tests": 7070.0, + "total_tests": 458275.0, + "total_tests_per_thousand": 79.119, + "new_tests_per_thousand": 1.221, + "new_tests_smoothed": 12346.0, + "new_tests_smoothed_per_thousand": 2.131, + "tests_per_case": 160.338, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-18", + "total_cases": 10927.0, + "new_cases": 69.0, + "new_cases_smoothed": 71.143, + "total_deaths": 547.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1886.502, + "new_cases_per_million": 11.913, + "new_cases_smoothed_per_million": 12.283, + "total_deaths_per_million": 94.437, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.691, + "new_tests": 15281.0, + "total_tests": 473556.0, + "total_tests_per_thousand": 81.757, + "new_tests_per_thousand": 2.638, + "new_tests_smoothed": 12179.0, + "new_tests_smoothed_per_thousand": 2.103, + "tests_per_case": 171.19099999999997, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-19", + "total_cases": 10968.0, + "new_cases": 41.0, + "new_cases_smoothed": 65.0, + "total_deaths": 548.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1893.58, + "new_cases_per_million": 7.078, + "new_cases_smoothed_per_million": 11.222, + "total_deaths_per_million": 94.61, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 14983.0, + "total_tests": 488539.0, + "total_tests_per_thousand": 84.344, + "new_tests_per_thousand": 2.587, + "new_tests_smoothed": 12208.0, + "new_tests_smoothed_per_thousand": 2.108, + "tests_per_case": 187.815, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-20", + "total_cases": 11044.0, + "new_cases": 76.0, + "new_cases_smoothed": 64.714, + "total_deaths": 551.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1906.701, + "new_cases_per_million": 13.121, + "new_cases_smoothed_per_million": 11.173, + "total_deaths_per_million": 95.128, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 14460.0, + "total_tests": 502999.0, + "total_tests_per_thousand": 86.841, + "new_tests_per_thousand": 2.496, + "new_tests_smoothed": 12165.0, + "new_tests_smoothed_per_thousand": 2.1, + "tests_per_case": 187.98, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-21", + "total_cases": 11117.0, + "new_cases": 73.0, + "new_cases_smoothed": 64.286, + "total_deaths": 554.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1919.304, + "new_cases_per_million": 12.603, + "new_cases_smoothed_per_million": 11.099, + "total_deaths_per_million": 95.646, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 8472.0, + "total_tests": 511471.0, + "total_tests_per_thousand": 88.303, + "new_tests_per_thousand": 1.463, + "new_tests_smoothed": 11519.0, + "new_tests_smoothed_per_thousand": 1.989, + "tests_per_case": 179.18400000000003, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-22", + "total_cases": 11182.0, + "new_cases": 65.0, + "new_cases_smoothed": 67.0, + "total_deaths": 561.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1930.526, + "new_cases_per_million": 11.222, + "new_cases_smoothed_per_million": 11.567, + "total_deaths_per_million": 96.854, + "new_deaths_per_million": 1.209, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 12305.0, + "total_tests": 523776.0, + "total_tests_per_thousand": 90.428, + "new_tests_per_thousand": 2.124, + "new_tests_smoothed": 11467.0, + "new_tests_smoothed_per_thousand": 1.98, + "tests_per_case": 171.149, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-23", + "total_cases": 11230.0, + "new_cases": 48.0, + "new_cases_smoothed": 62.714, + "total_deaths": 561.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1938.813, + "new_cases_per_million": 8.287, + "new_cases_smoothed_per_million": 10.827, + "total_deaths_per_million": 96.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 8781.0, + "total_tests": 532557.0, + "total_tests_per_thousand": 91.944, + "new_tests_per_thousand": 1.516, + "new_tests_smoothed": 11622.0, + "new_tests_smoothed_per_thousand": 2.006, + "tests_per_case": 185.317, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-24", + "total_cases": 11289.0, + "new_cases": 59.0, + "new_cases_smoothed": 61.571, + "total_deaths": 561.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1948.999, + "new_cases_per_million": 10.186, + "new_cases_smoothed_per_million": 10.63, + "total_deaths_per_million": 96.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 8666.0, + "total_tests": 541223.0, + "total_tests_per_thousand": 93.44, + "new_tests_per_thousand": 1.496, + "new_tests_smoothed": 11850.0, + "new_tests_smoothed_per_thousand": 2.046, + "tests_per_case": 192.459, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-25", + "total_cases": 11360.0, + "new_cases": 71.0, + "new_cases_smoothed": 61.857, + "total_deaths": 562.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1961.257, + "new_cases_per_million": 12.258, + "new_cases_smoothed_per_million": 10.679, + "total_deaths_per_million": 97.027, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 18296.0, + "total_tests": 559519.0, + "total_tests_per_thousand": 96.599, + "new_tests_per_thousand": 3.159, + "new_tests_smoothed": 12280.0, + "new_tests_smoothed_per_thousand": 2.12, + "tests_per_case": 198.52200000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-26", + "total_cases": 11387.0, + "new_cases": 27.0, + "new_cases_smoothed": 59.857, + "total_deaths": 563.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1965.919, + "new_cases_per_million": 4.661, + "new_cases_smoothed_per_million": 10.334, + "total_deaths_per_million": 97.2, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 15978.0, + "total_tests": 575497.0, + "total_tests_per_thousand": 99.357, + "new_tests_per_thousand": 2.759, + "new_tests_smoothed": 12423.0, + "new_tests_smoothed_per_thousand": 2.145, + "tests_per_case": 207.544, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-27", + "total_cases": 11428.0, + "new_cases": 41.0, + "new_cases_smoothed": 54.857, + "total_deaths": 563.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1972.997, + "new_cases_per_million": 7.078, + "new_cases_smoothed_per_million": 9.471, + "total_deaths_per_million": 97.2, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.296, + "new_tests": 14787.0, + "total_tests": 590284.0, + "total_tests_per_thousand": 101.91, + "new_tests_per_thousand": 2.553, + "new_tests_smoothed": 12469.0, + "new_tests_smoothed_per_thousand": 2.153, + "tests_per_case": 227.299, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-28", + "total_cases": 11480.0, + "new_cases": 52.0, + "new_cases_smoothed": 51.857, + "total_deaths": 565.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1981.975, + "new_cases_per_million": 8.978, + "new_cases_smoothed_per_million": 8.953, + "total_deaths_per_million": 97.545, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 13164.0, + "total_tests": 603448.0, + "total_tests_per_thousand": 104.183, + "new_tests_per_thousand": 2.273, + "new_tests_smoothed": 13140.0, + "new_tests_smoothed_per_thousand": 2.269, + "tests_per_case": 253.388, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-29", + "total_cases": 11512.0, + "new_cases": 32.0, + "new_cases_smoothed": 47.143, + "total_deaths": 568.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1987.499, + "new_cases_per_million": 5.525, + "new_cases_smoothed_per_million": 8.139, + "total_deaths_per_million": 98.063, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 11781.0, + "total_tests": 615229.0, + "total_tests_per_thousand": 106.217, + "new_tests_per_thousand": 2.034, + "new_tests_smoothed": 13065.0, + "new_tests_smoothed_per_thousand": 2.256, + "tests_per_case": 277.13599999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-30", + "total_cases": 11593.0, + "new_cases": 81.0, + "new_cases_smoothed": 51.857, + "total_deaths": 568.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2001.484, + "new_cases_per_million": 13.984, + "new_cases_smoothed_per_million": 8.953, + "total_deaths_per_million": 98.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 7178.0, + "total_tests": 622407.0, + "total_tests_per_thousand": 107.456, + "new_tests_per_thousand": 1.239, + "new_tests_smoothed": 12836.0, + "new_tests_smoothed_per_thousand": 2.216, + "tests_per_case": 247.52599999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-31", + "total_cases": 11633.0, + "new_cases": 40.0, + "new_cases_smoothed": 49.143, + "total_deaths": 571.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2008.39, + "new_cases_per_million": 6.906, + "new_cases_smoothed_per_million": 8.484, + "total_deaths_per_million": 98.581, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 7636.0, + "total_tests": 630043.0, + "total_tests_per_thousand": 108.774, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 12689.0, + "new_tests_smoothed_per_thousand": 2.191, + "tests_per_case": 258.20599999999996, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-01", + "total_cases": 11669.0, + "new_cases": 36.0, + "new_cases_smoothed": 44.143, + "total_deaths": 574.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2014.605, + "new_cases_per_million": 6.215, + "new_cases_smoothed_per_million": 7.621, + "total_deaths_per_million": 99.099, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.296, + "new_tests": 8723.0, + "total_tests": 638766.0, + "total_tests_per_thousand": 110.28, + "new_tests_per_thousand": 1.506, + "new_tests_smoothed": 11321.0, + "new_tests_smoothed_per_thousand": 1.955, + "tests_per_case": 256.46299999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-02", + "total_cases": 11699.0, + "new_cases": 30.0, + "new_cases_smoothed": 44.571, + "total_deaths": 576.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2019.784, + "new_cases_per_million": 5.179, + "new_cases_smoothed_per_million": 7.695, + "total_deaths_per_million": 99.444, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 15535.0, + "total_tests": 654301.0, + "total_tests_per_thousand": 112.962, + "new_tests_per_thousand": 2.682, + "new_tests_smoothed": 11258.0, + "new_tests_smoothed_per_thousand": 1.944, + "tests_per_case": 252.583, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 11734.0, + "new_cases": 35.0, + "new_cases_smoothed": 43.714, + "total_deaths": 580.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2025.827, + "new_cases_per_million": 6.043, + "new_cases_smoothed_per_million": 7.547, + "total_deaths_per_million": 100.135, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 13459.0, + "total_tests": 667760.0, + "total_tests_per_thousand": 115.286, + "new_tests_per_thousand": 2.324, + "new_tests_smoothed": 11068.0, + "new_tests_smoothed_per_thousand": 1.911, + "tests_per_case": 253.19, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 11771.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.571, + "total_deaths": 580.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2032.215, + "new_cases_per_million": 6.388, + "new_cases_smoothed_per_million": 7.177, + "total_deaths_per_million": 100.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 11866.0, + "total_tests": 679626.0, + "total_tests_per_thousand": 117.335, + "new_tests_per_thousand": 2.049, + "new_tests_smoothed": 10883.0, + "new_tests_smoothed_per_thousand": 1.879, + "tests_per_case": 261.79, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 11811.0, + "new_cases": 40.0, + "new_cases_smoothed": 42.714, + "total_deaths": 582.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2039.121, + "new_cases_per_million": 6.906, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 100.48, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 9656.0, + "total_tests": 689282.0, + "total_tests_per_thousand": 119.002, + "new_tests_per_thousand": 1.667, + "new_tests_smoothed": 10579.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 247.669, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 11875.0, + "new_cases": 64.0, + "new_cases_smoothed": 40.286, + "total_deaths": 586.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 2050.17, + "new_cases_per_million": 11.049, + "new_cases_smoothed_per_million": 6.955, + "total_deaths_per_million": 101.17, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 7971.0, + "total_tests": 697253.0, + "total_tests_per_thousand": 120.378, + "new_tests_per_thousand": 1.376, + "new_tests_smoothed": 10692.0, + "new_tests_smoothed_per_thousand": 1.846, + "tests_per_case": 265.404, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 11924.0, + "new_cases": 49.0, + "new_cases_smoothed": 41.571, + "total_deaths": 587.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2058.63, + "new_cases_per_million": 8.46, + "new_cases_smoothed_per_million": 7.177, + "total_deaths_per_million": 101.343, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 7746.0, + "total_tests": 704999.0, + "total_tests_per_thousand": 121.715, + "new_tests_per_thousand": 1.337, + "new_tests_smoothed": 10708.0, + "new_tests_smoothed_per_thousand": 1.849, + "tests_per_case": 257.58099999999996, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 11948.0, + "new_cases": 24.0, + "new_cases_smoothed": 39.857, + "total_deaths": 589.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2062.773, + "new_cases_per_million": 4.144, + "new_cases_smoothed_per_million": 6.881, + "total_deaths_per_million": 101.688, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 16859.0, + "total_tests": 721858.0, + "total_tests_per_thousand": 124.626, + "new_tests_per_thousand": 2.911, + "new_tests_smoothed": 11870.0, + "new_tests_smoothed_per_thousand": 2.049, + "tests_per_case": 297.814, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 11962.0, + "new_cases": 14.0, + "new_cases_smoothed": 37.571, + "total_deaths": 593.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2065.19, + "new_cases_per_million": 2.417, + "new_cases_smoothed_per_million": 6.487, + "total_deaths_per_million": 102.379, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 15648.0, + "total_tests": 737506.0, + "total_tests_per_thousand": 127.327, + "new_tests_per_thousand": 2.702, + "new_tests_smoothed": 11886.0, + "new_tests_smoothed_per_thousand": 2.052, + "tests_per_case": 316.357, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 12001.0, + "new_cases": 39.0, + "new_cases_smoothed": 38.143, + "total_deaths": 593.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2071.923, + "new_cases_per_million": 6.733, + "new_cases_smoothed_per_million": 6.585, + "total_deaths_per_million": 102.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 14960.0, + "total_tests": 752466.0, + "total_tests_per_thousand": 129.91, + "new_tests_per_thousand": 2.583, + "new_tests_smoothed": 12101.0, + "new_tests_smoothed_per_thousand": 2.089, + "tests_per_case": 317.255, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 12016.0, + "new_cases": 15.0, + "new_cases_smoothed": 35.0, + "total_deaths": 593.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2074.513, + "new_cases_per_million": 2.59, + "new_cases_smoothed_per_million": 6.043, + "total_deaths_per_million": 102.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 14548.0, + "total_tests": 767014.0, + "total_tests_per_thousand": 132.422, + "new_tests_per_thousand": 2.512, + "new_tests_smoothed": 12484.0, + "new_tests_smoothed_per_thousand": 2.155, + "tests_per_case": 356.686, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 12035.0, + "new_cases": 19.0, + "new_cases_smoothed": 32.0, + "total_deaths": 593.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2077.793, + "new_cases_per_million": 3.28, + "new_cases_smoothed_per_million": 5.525, + "total_deaths_per_million": 102.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 14870.0, + "total_tests": 781884.0, + "total_tests_per_thousand": 134.989, + "new_tests_per_thousand": 2.567, + "new_tests_smoothed": 13229.0, + "new_tests_smoothed_per_thousand": 2.284, + "tests_per_case": 413.406, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 12099.0, + "new_cases": 64.0, + "new_cases_smoothed": 32.0, + "total_deaths": 594.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2088.843, + "new_cases_per_million": 11.049, + "new_cases_smoothed_per_million": 5.525, + "total_deaths_per_million": 102.552, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 10009.0, + "total_tests": 791893.0, + "total_tests_per_thousand": 136.717, + "new_tests_per_thousand": 1.728, + "new_tests_smoothed": 13520.0, + "new_tests_smoothed_per_thousand": 2.334, + "tests_per_case": 422.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 12139.0, + "new_cases": 40.0, + "new_cases_smoothed": 30.714, + "total_deaths": 597.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2095.748, + "new_cases_per_million": 6.906, + "new_cases_smoothed_per_million": 5.303, + "total_deaths_per_million": 103.07, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 9061.0, + "total_tests": 800954.0, + "total_tests_per_thousand": 138.281, + "new_tests_per_thousand": 1.564, + "new_tests_smoothed": 13708.0, + "new_tests_smoothed_per_thousand": 2.367, + "tests_per_case": 446.30699999999996, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 12193.0, + "new_cases": 54.0, + "new_cases_smoothed": 35.0, + "total_deaths": 597.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2105.071, + "new_cases_per_million": 9.323, + "new_cases_smoothed_per_million": 6.043, + "total_deaths_per_million": 103.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 17714.0, + "total_tests": 818668.0, + "total_tests_per_thousand": 141.34, + "new_tests_per_thousand": 3.058, + "new_tests_smoothed": 13830.0, + "new_tests_smoothed_per_thousand": 2.388, + "tests_per_case": 395.14300000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-16", + "total_cases": 12217.0, + "new_cases": 24.0, + "new_cases_smoothed": 36.429, + "total_deaths": 598.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2109.215, + "new_cases_per_million": 4.144, + "new_cases_smoothed_per_million": 6.289, + "total_deaths_per_million": 103.242, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 18201.0, + "total_tests": 836869.0, + "total_tests_per_thousand": 144.482, + "new_tests_per_thousand": 3.142, + "new_tests_smoothed": 14195.0, + "new_tests_smoothed_per_thousand": 2.451, + "tests_per_case": 389.667, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-17", + "total_cases": 12250.0, + "new_cases": 33.0, + "new_cases_smoothed": 35.571, + "total_deaths": 598.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2114.912, + "new_cases_per_million": 5.697, + "new_cases_smoothed_per_million": 6.141, + "total_deaths_per_million": 103.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 19225.0, + "total_tests": 856094.0, + "total_tests_per_thousand": 147.801, + "new_tests_per_thousand": 3.319, + "new_tests_smoothed": 14804.0, + "new_tests_smoothed_per_thousand": 2.556, + "tests_per_case": 416.17699999999996, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-18", + "total_cases": 12294.0, + "new_cases": 44.0, + "new_cases_smoothed": 39.714, + "total_deaths": 598.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2122.508, + "new_cases_per_million": 7.596, + "new_cases_smoothed_per_million": 6.857, + "total_deaths_per_million": 103.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 17516.0, + "total_tests": 873610.0, + "total_tests_per_thousand": 150.825, + "new_tests_per_thousand": 3.024, + "new_tests_smoothed": 15228.0, + "new_tests_smoothed_per_thousand": 2.629, + "tests_per_case": 383.439, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-19", + "total_cases": 12344.0, + "new_cases": 50.0, + "new_cases_smoothed": 44.143, + "total_deaths": 600.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2131.141, + "new_cases_per_million": 8.632, + "new_cases_smoothed_per_million": 7.621, + "total_deaths_per_million": 103.588, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 16990.0, + "total_tests": 890600.0, + "total_tests_per_thousand": 153.758, + "new_tests_per_thousand": 2.933, + "new_tests_smoothed": 15531.0, + "new_tests_smoothed_per_thousand": 2.681, + "tests_per_case": 351.835, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-20", + "total_cases": 12391.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.714, + "total_deaths": 600.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2139.255, + "new_cases_per_million": 8.114, + "new_cases_smoothed_per_million": 7.202, + "total_deaths_per_million": 103.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 12098.0, + "total_tests": 902698.0, + "total_tests_per_thousand": 155.847, + "new_tests_per_thousand": 2.089, + "new_tests_smoothed": 15829.0, + "new_tests_smoothed_per_thousand": 2.733, + "tests_per_case": 379.462, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-21", + "total_cases": 12391.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.0, + "total_deaths": 600.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2139.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.215, + "total_deaths_per_million": 103.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 11415.0, + "total_tests": 914113.0, + "total_tests_per_thousand": 157.818, + "new_tests_per_thousand": 1.971, + "new_tests_smoothed": 16166.0, + "new_tests_smoothed_per_thousand": 2.791, + "tests_per_case": 449.056, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-22", + "total_cases": 12391.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.286, + "total_deaths": 600.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2139.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.883, + "total_deaths_per_million": 103.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 21456.0, + "total_tests": 935569.0, + "total_tests_per_thousand": 161.522, + "new_tests_per_thousand": 3.704, + "new_tests_smoothed": 16700.0, + "new_tests_smoothed_per_thousand": 2.883, + "tests_per_case": 590.404, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-23", + "total_cases": 12527.0, + "new_cases": 136.0, + "new_cases_smoothed": 44.286, + "total_deaths": 602.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2162.735, + "new_cases_per_million": 23.48, + "new_cases_smoothed_per_million": 7.646, + "total_deaths_per_million": 103.933, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 20913.0, + "total_tests": 956482.0, + "total_tests_per_thousand": 165.133, + "new_tests_per_thousand": 3.611, + "new_tests_smoothed": 17088.0, + "new_tests_smoothed_per_thousand": 2.95, + "tests_per_case": 385.858, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-24", + "total_cases": 12561.0, + "new_cases": 34.0, + "new_cases_smoothed": 44.429, + "total_deaths": 603.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2168.605, + "new_cases_per_million": 5.87, + "new_cases_smoothed_per_million": 7.67, + "total_deaths_per_million": 104.105, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 20079.0, + "total_tests": 976561.0, + "total_tests_per_thousand": 168.599, + "new_tests_per_thousand": 3.467, + "new_tests_smoothed": 17210.0, + "new_tests_smoothed_per_thousand": 2.971, + "tests_per_case": 387.36300000000006, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-25", + "total_cases": 12615.0, + "new_cases": 54.0, + "new_cases_smoothed": 45.857, + "total_deaths": 603.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2177.928, + "new_cases_per_million": 9.323, + "new_cases_smoothed_per_million": 7.917, + "total_deaths_per_million": 104.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 16830.0, + "total_tests": 993391.0, + "total_tests_per_thousand": 171.505, + "new_tests_per_thousand": 2.906, + "new_tests_smoothed": 17112.0, + "new_tests_smoothed_per_thousand": 2.954, + "tests_per_case": 373.159, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-26", + "total_cases": 12636.0, + "new_cases": 21.0, + "new_cases_smoothed": 41.714, + "total_deaths": 603.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2181.553, + "new_cases_per_million": 3.626, + "new_cases_smoothed_per_million": 7.202, + "total_deaths_per_million": 104.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 15838.0, + "total_tests": 1009229.0, + "total_tests_per_thousand": 174.239, + "new_tests_per_thousand": 2.734, + "new_tests_smoothed": 16947.0, + "new_tests_smoothed_per_thousand": 2.926, + "tests_per_case": 406.264, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-27", + "total_cases": 12675.0, + "new_cases": 39.0, + "new_cases_smoothed": 40.571, + "total_deaths": 604.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2188.287, + "new_cases_per_million": 6.733, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 104.278, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 9484.0, + "total_tests": 1018713.0, + "total_tests_per_thousand": 175.877, + "new_tests_per_thousand": 1.637, + "new_tests_smoothed": 16574.0, + "new_tests_smoothed_per_thousand": 2.861, + "tests_per_case": 408.514, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-28", + "total_cases": 12675.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.571, + "total_deaths": 604.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2188.287, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 104.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 9461.0, + "total_tests": 1028174.0, + "total_tests_per_thousand": 177.51, + "new_tests_per_thousand": 1.633, + "new_tests_smoothed": 16294.0, + "new_tests_smoothed_per_thousand": 2.813, + "tests_per_case": 401.61300000000006, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-29", + "total_cases": 12675.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.571, + "total_deaths": 604.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2188.287, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 104.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 18719.0, + "total_tests": 1046893.0, + "total_tests_per_thousand": 180.742, + "new_tests_per_thousand": 3.232, + "new_tests_smoothed": 15903.0, + "new_tests_smoothed_per_thousand": 2.746, + "tests_per_case": 391.975, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-30", + "total_cases": 12751.0, + "new_cases": 76.0, + "new_cases_smoothed": 32.0, + "total_deaths": 605.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2201.408, + "new_cases_per_million": 13.121, + "new_cases_smoothed_per_million": 5.525, + "total_deaths_per_million": 104.451, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 17884.0, + "total_tests": 1064777.0, + "total_tests_per_thousand": 183.829, + "new_tests_per_thousand": 3.088, + "new_tests_smoothed": 15471.0, + "new_tests_smoothed_per_thousand": 2.671, + "tests_per_case": 483.469, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-01", + "total_cases": 12768.0, + "new_cases": 17.0, + "new_cases_smoothed": 29.571, + "total_deaths": 605.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2204.343, + "new_cases_per_million": 2.935, + "new_cases_smoothed_per_million": 5.105, + "total_deaths_per_million": 104.451, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 17613.0, + "total_tests": 1082390.0, + "total_tests_per_thousand": 186.87, + "new_tests_per_thousand": 3.041, + "new_tests_smoothed": 15118.0, + "new_tests_smoothed_per_thousand": 2.61, + "tests_per_case": 511.23699999999997, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-02", + "total_cases": 12794.0, + "new_cases": 26.0, + "new_cases_smoothed": 25.571, + "total_deaths": 606.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2208.831, + "new_cases_per_million": 4.489, + "new_cases_smoothed_per_million": 4.415, + "total_deaths_per_million": 104.623, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 15361.0, + "total_tests": 1097751.0, + "total_tests_per_thousand": 189.522, + "new_tests_per_thousand": 2.652, + "new_tests_smoothed": 14909.0, + "new_tests_smoothed_per_thousand": 2.574, + "tests_per_case": 583.034, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-03", + "total_cases": 12815.0, + "new_cases": 21.0, + "new_cases_smoothed": 25.571, + "total_deaths": 606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2212.457, + "new_cases_per_million": 3.626, + "new_cases_smoothed_per_million": 4.415, + "total_deaths_per_million": 104.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 14320.0, + "total_tests": 1112071.0, + "total_tests_per_thousand": 191.994, + "new_tests_per_thousand": 2.472, + "new_tests_smoothed": 14692.0, + "new_tests_smoothed_per_thousand": 2.537, + "tests_per_case": 574.547, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-04", + "total_cases": 12832.0, + "new_cases": 17.0, + "new_cases_smoothed": 22.429, + "total_deaths": 606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2215.392, + "new_cases_per_million": 2.935, + "new_cases_smoothed_per_million": 3.872, + "total_deaths_per_million": 104.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 9624.0, + "total_tests": 1121695.0, + "total_tests_per_thousand": 193.656, + "new_tests_per_thousand": 1.662, + "new_tests_smoothed": 14712.0, + "new_tests_smoothed_per_thousand": 2.54, + "tests_per_case": 655.949, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-05", + "total_cases": 12832.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.429, + "total_deaths": 606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2215.392, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.872, + "total_deaths_per_million": 104.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 9737.0, + "total_tests": 1131432.0, + "total_tests_per_thousand": 195.337, + "new_tests_per_thousand": 1.681, + "new_tests_smoothed": 14751.0, + "new_tests_smoothed_per_thousand": 2.547, + "tests_per_case": 657.688, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-06", + "total_cases": 12832.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.429, + "total_deaths": 606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2215.392, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.872, + "total_deaths_per_million": 104.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 17841.0, + "total_tests": 1149273.0, + "total_tests_per_thousand": 198.417, + "new_tests_per_thousand": 3.08, + "new_tests_smoothed": 14626.0, + "new_tests_smoothed_per_thousand": 2.525, + "tests_per_case": 652.115, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-07", + "total_cases": 12878.0, + "new_cases": 46.0, + "new_cases_smoothed": 18.143, + "total_deaths": 607.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2223.334, + "new_cases_per_million": 7.942, + "new_cases_smoothed_per_million": 3.132, + "total_deaths_per_million": 104.796, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 16513.0, + "total_tests": 1165786.0, + "total_tests_per_thousand": 201.268, + "new_tests_per_thousand": 2.851, + "new_tests_smoothed": 14430.0, + "new_tests_smoothed_per_thousand": 2.491, + "tests_per_case": 795.3539999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-07-08", + "total_cases": 12888.0, + "new_cases": 10.0, + "new_cases_smoothed": 17.143, + "total_deaths": 609.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2225.06, + "new_cases_per_million": 1.726, + "new_cases_smoothed_per_million": 2.96, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 15903.0, + "total_tests": 1181689.0, + "total_tests_per_thousand": 204.014, + "new_tests_per_thousand": 2.746, + "new_tests_smoothed": 14186.0, + "new_tests_smoothed_per_thousand": 2.449, + "tests_per_case": 827.5169999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 12900.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.143, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2227.132, + "new_cases_per_million": 2.072, + "new_cases_smoothed_per_million": 2.614, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 14303.0, + "total_tests": 1195992.0, + "total_tests_per_thousand": 206.483, + "new_tests_per_thousand": 2.469, + "new_tests_smoothed": 14034.0, + "new_tests_smoothed_per_thousand": 2.423, + "tests_per_case": 926.7739999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 12916.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.429, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2229.894, + "new_cases_per_million": 2.762, + "new_cases_smoothed_per_million": 2.491, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 14186.0, + "total_tests": 1210178.0, + "total_tests_per_thousand": 208.932, + "new_tests_per_thousand": 2.449, + "new_tests_smoothed": 14015.0, + "new_tests_smoothed_per_thousand": 2.42, + "tests_per_case": 971.337, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-11", + "total_cases": 12946.0, + "new_cases": 30.0, + "new_cases_smoothed": 16.286, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2235.074, + "new_cases_per_million": 5.179, + "new_cases_smoothed_per_million": 2.812, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 9650.0, + "total_tests": 1219828.0, + "total_tests_per_thousand": 210.598, + "new_tests_per_thousand": 1.666, + "new_tests_smoothed": 14019.0, + "new_tests_smoothed_per_thousand": 2.42, + "tests_per_case": 860.816, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-12", + "total_cases": 12946.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.286, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2235.074, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.812, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 9133.0, + "total_tests": 1228961.0, + "total_tests_per_thousand": 212.175, + "new_tests_per_thousand": 1.577, + "new_tests_smoothed": 13933.0, + "new_tests_smoothed_per_thousand": 2.405, + "tests_per_case": 855.535, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-13", + "total_cases": 12946.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.286, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2235.074, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.812, + "total_deaths_per_million": 105.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 18281.0, + "total_tests": 1247242.0, + "total_tests_per_thousand": 215.331, + "new_tests_per_thousand": 3.156, + "new_tests_smoothed": 13996.0, + "new_tests_smoothed_per_thousand": 2.416, + "tests_per_case": 859.404, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-14", + "total_cases": 13037.0, + "new_cases": 91.0, + "new_cases_smoothed": 22.714, + "total_deaths": 610.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2250.784, + "new_cases_per_million": 15.711, + "new_cases_smoothed_per_million": 3.922, + "total_deaths_per_million": 105.314, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 16717.0, + "total_tests": 1263959.0, + "total_tests_per_thousand": 218.217, + "new_tests_per_thousand": 2.886, + "new_tests_smoothed": 14025.0, + "new_tests_smoothed_per_thousand": 2.421, + "tests_per_case": 617.453, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-15", + "total_cases": 13061.0, + "new_cases": 24.0, + "new_cases_smoothed": 24.714, + "total_deaths": 610.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2254.928, + "new_cases_per_million": 4.144, + "new_cases_smoothed_per_million": 4.267, + "total_deaths_per_million": 105.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 16345.0, + "total_tests": 1280304.0, + "total_tests_per_thousand": 221.039, + "new_tests_per_thousand": 2.822, + "new_tests_smoothed": 14088.0, + "new_tests_smoothed_per_thousand": 2.432, + "tests_per_case": 570.035, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 13092.0, + "new_cases": 31.0, + "new_cases_smoothed": 27.429, + "total_deaths": 610.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2260.28, + "new_cases_per_million": 5.352, + "new_cases_smoothed_per_million": 4.735, + "total_deaths_per_million": 105.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 15181.0, + "total_tests": 1295485.0, + "total_tests_per_thousand": 223.66, + "new_tests_per_thousand": 2.621, + "new_tests_smoothed": 14213.0, + "new_tests_smoothed_per_thousand": 2.454, + "tests_per_case": 518.182, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 13124.0, + "new_cases": 32.0, + "new_cases_smoothed": 29.714, + "total_deaths": 610.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2265.805, + "new_cases_per_million": 5.525, + "new_cases_smoothed_per_million": 5.13, + "total_deaths_per_million": 105.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 14271.0, + "total_tests": 1309756.0, + "total_tests_per_thousand": 226.124, + "new_tests_per_thousand": 2.464, + "new_tests_smoothed": 14225.0, + "new_tests_smoothed_per_thousand": 2.456, + "tests_per_case": 478.726, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 13173.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.429, + "total_deaths": 611.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2274.264, + "new_cases_per_million": 8.46, + "new_cases_smoothed_per_million": 5.599, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 10670.0, + "total_tests": 1320426.0, + "total_tests_per_thousand": 227.966, + "new_tests_per_thousand": 1.842, + "new_tests_smoothed": 14371.0, + "new_tests_smoothed_per_thousand": 2.481, + "tests_per_case": 443.159, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 13173.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.429, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2274.264, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.599, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 10936.0, + "total_tests": 1331362.0, + "total_tests_per_thousand": 229.854, + "new_tests_per_thousand": 1.888, + "new_tests_smoothed": 14629.0, + "new_tests_smoothed_per_thousand": 2.526, + "tests_per_case": 451.115, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 13173.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.429, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2274.264, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.599, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 18211.0, + "total_tests": 1349573.0, + "total_tests_per_thousand": 232.998, + "new_tests_per_thousand": 3.144, + "new_tests_smoothed": 14619.0, + "new_tests_smoothed_per_thousand": 2.524, + "tests_per_case": 450.806, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 13262.0, + "new_cases": 89.0, + "new_cases_smoothed": 32.143, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2289.63, + "new_cases_per_million": 15.365, + "new_cases_smoothed_per_million": 5.549, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 16693.0, + "total_tests": 1366266.0, + "total_tests_per_thousand": 235.88, + "new_tests_per_thousand": 2.882, + "new_tests_smoothed": 14615.0, + "new_tests_smoothed_per_thousand": 2.523, + "tests_per_case": 454.689, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 13302.0, + "new_cases": 40.0, + "new_cases_smoothed": 34.429, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2296.536, + "new_cases_per_million": 6.906, + "new_cases_smoothed_per_million": 5.944, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 16637.0, + "total_tests": 1382903.0, + "total_tests_per_thousand": 238.753, + "new_tests_per_thousand": 2.872, + "new_tests_smoothed": 14657.0, + "new_tests_smoothed_per_thousand": 2.53, + "tests_per_case": 425.722, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 13350.0, + "new_cases": 48.0, + "new_cases_smoothed": 36.857, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2304.823, + "new_cases_per_million": 8.287, + "new_cases_smoothed_per_million": 6.363, + "total_deaths_per_million": 105.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 15793.0, + "total_tests": 1398696.0, + "total_tests_per_thousand": 241.479, + "new_tests_per_thousand": 2.727, + "new_tests_smoothed": 14744.0, + "new_tests_smoothed_per_thousand": 2.545, + "tests_per_case": 400.031, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 13390.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.0, + "total_deaths": 612.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2311.728, + "new_cases_per_million": 6.906, + "new_cases_smoothed_per_million": 6.561, + "total_deaths_per_million": 105.659, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 16107.0, + "total_tests": 1414803.0, + "total_tests_per_thousand": 244.26, + "new_tests_per_thousand": 2.781, + "new_tests_smoothed": 15007.0, + "new_tests_smoothed_per_thousand": 2.591, + "tests_per_case": 394.921, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 13438.0, + "new_cases": 48.0, + "new_cases_smoothed": 37.857, + "total_deaths": 613.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2320.015, + "new_cases_per_million": 8.287, + "new_cases_smoothed_per_million": 6.536, + "total_deaths_per_million": 105.832, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 11731.0, + "total_tests": 1426534.0, + "total_tests_per_thousand": 246.285, + "new_tests_per_thousand": 2.025, + "new_tests_smoothed": 15158.0, + "new_tests_smoothed_per_thousand": 2.617, + "tests_per_case": 400.4, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 13438.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.857, + "total_deaths": 613.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2320.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.536, + "total_deaths_per_million": 105.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 12813.0, + "total_tests": 1439347.0, + "total_tests_per_thousand": 248.497, + "new_tests_per_thousand": 2.212, + "new_tests_smoothed": 15426.0, + "new_tests_smoothed_per_thousand": 2.663, + "tests_per_case": 407.47900000000004, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 13438.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.857, + "total_deaths": 613.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2320.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.536, + "total_deaths_per_million": 105.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 20720.0, + "total_tests": 1460067.0, + "total_tests_per_thousand": 252.075, + "new_tests_per_thousand": 3.577, + "new_tests_smoothed": 15785.0, + "new_tests_smoothed_per_thousand": 2.725, + "tests_per_case": 416.962, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 13547.0, + "new_cases": 109.0, + "new_cases_smoothed": 40.714, + "total_deaths": 613.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2338.834, + "new_cases_per_million": 18.818, + "new_cases_smoothed_per_million": 7.029, + "total_deaths_per_million": 105.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 20376.0, + "total_tests": 1480443.0, + "total_tests_per_thousand": 255.592, + "new_tests_per_thousand": 3.518, + "new_tests_smoothed": 16311.0, + "new_tests_smoothed_per_thousand": 2.816, + "tests_per_case": 400.621, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 13577.0, + "new_cases": 30.0, + "new_cases_smoothed": 39.286, + "total_deaths": 613.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2344.013, + "new_cases_per_million": 5.179, + "new_cases_smoothed_per_million": 6.783, + "total_deaths_per_million": 105.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 20217.0, + "total_tests": 1500660.0, + "total_tests_per_thousand": 259.083, + "new_tests_per_thousand": 3.49, + "new_tests_smoothed": 16822.0, + "new_tests_smoothed_per_thousand": 2.904, + "tests_per_case": 428.19599999999997, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 13634.0, + "new_cases": 57.0, + "new_cases_smoothed": 40.571, + "total_deaths": 614.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2353.854, + "new_cases_per_million": 9.841, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 106.005, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 20547.0, + "total_tests": 1521207.0, + "total_tests_per_thousand": 262.63, + "new_tests_per_thousand": 3.547, + "new_tests_smoothed": 17502.0, + "new_tests_smoothed_per_thousand": 3.022, + "tests_per_case": 431.38699999999994, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 13725.0, + "new_cases": 91.0, + "new_cases_smoothed": 47.857, + "total_deaths": 615.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2369.565, + "new_cases_per_million": 15.711, + "new_cases_smoothed_per_million": 8.262, + "total_deaths_per_million": 106.177, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 19917.0, + "total_tests": 1541124.0, + "total_tests_per_thousand": 266.069, + "new_tests_per_thousand": 3.439, + "new_tests_smoothed": 18046.0, + "new_tests_smoothed_per_thousand": 3.116, + "tests_per_case": 377.08099999999996, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 13789.0, + "new_cases": 64.0, + "new_cases_smoothed": 50.143, + "total_deaths": 615.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2380.614, + "new_cases_per_million": 11.049, + "new_cases_smoothed_per_million": 8.657, + "total_deaths_per_million": 106.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 14305.0, + "total_tests": 1555429.0, + "total_tests_per_thousand": 268.538, + "new_tests_per_thousand": 2.47, + "new_tests_smoothed": 18414.0, + "new_tests_smoothed_per_thousand": 3.179, + "tests_per_case": 367.231, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-02", + "total_cases": 13789.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.143, + "total_deaths": 615.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2380.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.657, + "total_deaths_per_million": 106.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 15713.0, + "total_tests": 1571142.0, + "total_tests_per_thousand": 271.251, + "new_tests_per_thousand": 2.713, + "new_tests_smoothed": 18828.0, + "new_tests_smoothed_per_thousand": 3.251, + "tests_per_case": 375.48699999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-03", + "total_cases": 13789.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.143, + "total_deaths": 615.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2380.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.657, + "total_deaths_per_million": 106.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 23844.0, + "total_tests": 1594986.0, + "total_tests_per_thousand": 275.368, + "new_tests_per_thousand": 4.117, + "new_tests_smoothed": 19274.0, + "new_tests_smoothed_per_thousand": 3.328, + "tests_per_case": 384.38199999999995, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-04", + "total_cases": 13996.0, + "new_cases": 207.0, + "new_cases_smoothed": 64.143, + "total_deaths": 616.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2416.352, + "new_cases_per_million": 35.738, + "new_cases_smoothed_per_million": 11.074, + "total_deaths_per_million": 106.35, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 24943.0, + "total_tests": 1619929.0, + "total_tests_per_thousand": 279.674, + "new_tests_per_thousand": 4.306, + "new_tests_smoothed": 19927.0, + "new_tests_smoothed_per_thousand": 3.44, + "tests_per_case": 310.666, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-05", + "total_cases": 14073.0, + "new_cases": 77.0, + "new_cases_smoothed": 70.857, + "total_deaths": 616.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2429.646, + "new_cases_per_million": 13.294, + "new_cases_smoothed_per_million": 12.233, + "total_deaths_per_million": 106.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 24875.0, + "total_tests": 1644804.0, + "total_tests_per_thousand": 283.969, + "new_tests_per_thousand": 4.295, + "new_tests_smoothed": 20592.0, + "new_tests_smoothed_per_thousand": 3.555, + "tests_per_case": 290.613, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-06", + "total_cases": 14185.0, + "new_cases": 112.0, + "new_cases_smoothed": 78.714, + "total_deaths": 616.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2448.982, + "new_cases_per_million": 19.336, + "new_cases_smoothed_per_million": 13.59, + "total_deaths_per_million": 106.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 26851.0, + "total_tests": 1671655.0, + "total_tests_per_thousand": 288.604, + "new_tests_per_thousand": 4.636, + "new_tests_smoothed": 21493.0, + "new_tests_smoothed_per_thousand": 3.711, + "tests_per_case": 273.051, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-07", + "total_cases": 14306.0, + "new_cases": 121.0, + "new_cases_smoothed": 83.0, + "total_deaths": 617.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2469.872, + "new_cases_per_million": 20.89, + "new_cases_smoothed_per_million": 14.33, + "total_deaths_per_million": 106.523, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 27068.0, + "total_tests": 1698723.0, + "total_tests_per_thousand": 293.278, + "new_tests_per_thousand": 4.673, + "new_tests_smoothed": 22514.0, + "new_tests_smoothed_per_thousand": 3.887, + "tests_per_case": 271.253, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-08", + "total_cases": 14442.0, + "new_cases": 136.0, + "new_cases_smoothed": 93.286, + "total_deaths": 617.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2493.352, + "new_cases_per_million": 23.48, + "new_cases_smoothed_per_million": 16.105, + "total_deaths_per_million": 106.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 20786.0, + "total_tests": 1719509.0, + "total_tests_per_thousand": 296.866, + "new_tests_per_thousand": 3.589, + "new_tests_smoothed": 23440.0, + "new_tests_smoothed_per_thousand": 4.047, + "tests_per_case": 251.271, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-09", + "total_cases": 14442.0, + "new_cases": 0.0, + "new_cases_smoothed": 93.286, + "total_deaths": 617.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2493.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.105, + "total_deaths_per_million": 106.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 20929.0, + "total_tests": 1740438.0, + "total_tests_per_thousand": 300.479, + "new_tests_per_thousand": 3.613, + "new_tests_smoothed": 24185.0, + "new_tests_smoothed_per_thousand": 4.175, + "tests_per_case": 259.257, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-10", + "total_cases": 14442.0, + "new_cases": 0.0, + "new_cases_smoothed": 93.286, + "total_deaths": 617.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2493.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.105, + "total_deaths_per_million": 106.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 30945.0, + "total_tests": 1771383.0, + "total_tests_per_thousand": 305.822, + "new_tests_per_thousand": 5.343, + "new_tests_smoothed": 25200.0, + "new_tests_smoothed_per_thousand": 4.351, + "tests_per_case": 270.138, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-11", + "total_cases": 14815.0, + "new_cases": 373.0, + "new_cases_smoothed": 117.0, + "total_deaths": 620.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2557.749, + "new_cases_per_million": 64.397, + "new_cases_smoothed_per_million": 20.2, + "total_deaths_per_million": 107.04, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 33522.0, + "total_tests": 1804905.0, + "total_tests_per_thousand": 311.609, + "new_tests_per_thousand": 5.787, + "new_tests_smoothed": 26425.0, + "new_tests_smoothed_per_thousand": 4.562, + "tests_per_case": 225.855, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-12", + "total_cases": 14959.0, + "new_cases": 144.0, + "new_cases_smoothed": 126.571, + "total_deaths": 621.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2582.61, + "new_cases_per_million": 24.861, + "new_cases_smoothed_per_million": 21.852, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 34725.0, + "total_tests": 1839630.0, + "total_tests_per_thousand": 317.605, + "new_tests_per_thousand": 5.995, + "new_tests_smoothed": 27832.0, + "new_tests_smoothed_per_thousand": 4.805, + "tests_per_case": 219.892, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-13", + "total_cases": 15070.0, + "new_cases": 111.0, + "new_cases_smoothed": 126.429, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2601.773, + "new_cases_per_million": 19.164, + "new_cases_smoothed_per_million": 21.827, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 33768.0, + "total_tests": 1873398.0, + "total_tests_per_thousand": 323.434, + "new_tests_per_thousand": 5.83, + "new_tests_smoothed": 28820.0, + "new_tests_smoothed_per_thousand": 4.976, + "tests_per_case": 227.955, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-14", + "total_cases": 15214.0, + "new_cases": 144.0, + "new_cases_smoothed": 129.714, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2626.634, + "new_cases_per_million": 24.861, + "new_cases_smoothed_per_million": 22.395, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 32562.0, + "total_tests": 1905960.0, + "total_tests_per_thousand": 329.056, + "new_tests_per_thousand": 5.622, + "new_tests_smoothed": 29605.0, + "new_tests_smoothed_per_thousand": 5.111, + "tests_per_case": 228.232, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-15", + "total_cases": 15379.0, + "new_cases": 165.0, + "new_cases_smoothed": 133.857, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2655.121, + "new_cases_per_million": 28.487, + "new_cases_smoothed_per_million": 23.11, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 25239.0, + "total_tests": 1931199.0, + "total_tests_per_thousand": 333.414, + "new_tests_per_thousand": 4.357, + "new_tests_smoothed": 30241.0, + "new_tests_smoothed_per_thousand": 5.221, + "tests_per_case": 225.92, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-16", + "total_cases": 15483.0, + "new_cases": 104.0, + "new_cases_smoothed": 148.714, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2673.076, + "new_cases_per_million": 17.955, + "new_cases_smoothed_per_million": 25.675, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 25600.0, + "total_tests": 1956799.0, + "total_tests_per_thousand": 337.833, + "new_tests_per_thousand": 4.42, + "new_tests_smoothed": 30909.0, + "new_tests_smoothed_per_thousand": 5.336, + "tests_per_case": 207.84099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-17", + "total_cases": 15617.0, + "new_cases": 134.0, + "new_cases_smoothed": 167.857, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2696.211, + "new_cases_per_million": 23.135, + "new_cases_smoothed_per_million": 28.98, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 35585.0, + "total_tests": 1992384.0, + "total_tests_per_thousand": 343.977, + "new_tests_per_thousand": 6.144, + "new_tests_smoothed": 31572.0, + "new_tests_smoothed_per_thousand": 5.451, + "tests_per_case": 188.08900000000003, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-18", + "total_cases": 15740.0, + "new_cases": 123.0, + "new_cases_smoothed": 132.143, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2717.446, + "new_cases_per_million": 21.235, + "new_cases_smoothed_per_million": 22.814, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 37880.0, + "total_tests": 2030264.0, + "total_tests_per_thousand": 350.517, + "new_tests_per_thousand": 6.54, + "new_tests_smoothed": 32194.0, + "new_tests_smoothed_per_thousand": 5.558, + "tests_per_case": 243.63, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-19", + "total_cases": 15855.0, + "new_cases": 115.0, + "new_cases_smoothed": 128.0, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2737.3, + "new_cases_per_million": 19.854, + "new_cases_smoothed_per_million": 22.099, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39062.0, + "total_tests": 2069326.0, + "total_tests_per_thousand": 357.261, + "new_tests_per_thousand": 6.744, + "new_tests_smoothed": 32814.0, + "new_tests_smoothed_per_thousand": 5.665, + "tests_per_case": 256.35900000000004, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-20", + "total_cases": 15940.0, + "new_cases": 85.0, + "new_cases_smoothed": 124.286, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2751.975, + "new_cases_per_million": 14.675, + "new_cases_smoothed_per_million": 21.457, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 38009.0, + "total_tests": 2107335.0, + "total_tests_per_thousand": 363.823, + "new_tests_per_thousand": 6.562, + "new_tests_smoothed": 33420.0, + "new_tests_smoothed_per_thousand": 5.77, + "tests_per_case": 268.897, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-21", + "total_cases": 16056.0, + "new_cases": 116.0, + "new_cases_smoothed": 120.286, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2772.002, + "new_cases_per_million": 20.027, + "new_cases_smoothed_per_million": 20.767, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35703.0, + "total_tests": 2143038.0, + "total_tests_per_thousand": 369.987, + "new_tests_per_thousand": 6.164, + "new_tests_smoothed": 33868.0, + "new_tests_smoothed_per_thousand": 5.847, + "tests_per_case": 281.563, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-22", + "total_cases": 16127.0, + "new_cases": 71.0, + "new_cases_smoothed": 106.857, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2784.26, + "new_cases_per_million": 12.258, + "new_cases_smoothed_per_million": 18.448, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28637.0, + "total_tests": 2171675.0, + "total_tests_per_thousand": 374.931, + "new_tests_per_thousand": 4.944, + "new_tests_smoothed": 34354.0, + "new_tests_smoothed_per_thousand": 5.931, + "tests_per_case": 321.495, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-23", + "total_cases": 16127.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.0, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2784.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.883, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27555.0, + "total_tests": 2199230.0, + "total_tests_per_thousand": 379.688, + "new_tests_per_thousand": 4.757, + "new_tests_smoothed": 34633.0, + "new_tests_smoothed_per_thousand": 5.979, + "tests_per_case": 376.44599999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-24", + "total_cases": 16127.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.857, + "total_deaths": 621.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2784.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.578, + "total_deaths_per_million": 107.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39325.0, + "total_tests": 2238555.0, + "total_tests_per_thousand": 386.477, + "new_tests_per_thousand": 6.789, + "new_tests_smoothed": 35167.0, + "new_tests_smoothed_per_thousand": 6.071, + "tests_per_case": 482.684, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-25", + "total_cases": 16397.0, + "new_cases": 270.0, + "new_cases_smoothed": 93.857, + "total_deaths": 623.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2830.875, + "new_cases_per_million": 46.614, + "new_cases_smoothed_per_million": 16.204, + "total_deaths_per_million": 107.558, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 39743.0, + "total_tests": 2278298.0, + "total_tests_per_thousand": 393.339, + "new_tests_per_thousand": 6.861, + "new_tests_smoothed": 35433.0, + "new_tests_smoothed_per_thousand": 6.117, + "tests_per_case": 377.52099999999996, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-26", + "total_cases": 16480.0, + "new_cases": 83.0, + "new_cases_smoothed": 89.286, + "total_deaths": 623.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2845.204, + "new_cases_per_million": 14.33, + "new_cases_smoothed_per_million": 15.415, + "total_deaths_per_million": 107.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 40045.0, + "total_tests": 2318343.0, + "total_tests_per_thousand": 400.252, + "new_tests_per_thousand": 6.914, + "new_tests_smoothed": 35574.0, + "new_tests_smoothed_per_thousand": 6.142, + "tests_per_case": 398.42900000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-27", + "total_cases": 16537.0, + "new_cases": 57.0, + "new_cases_smoothed": 85.286, + "total_deaths": 623.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2855.045, + "new_cases_per_million": 9.841, + "new_cases_smoothed_per_million": 14.724, + "total_deaths_per_million": 107.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 38668.0, + "total_tests": 2357011.0, + "total_tests_per_thousand": 406.928, + "new_tests_per_thousand": 6.676, + "new_tests_smoothed": 35668.0, + "new_tests_smoothed_per_thousand": 6.158, + "tests_per_case": 418.218, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-28", + "total_cases": 16627.0, + "new_cases": 90.0, + "new_cases_smoothed": 81.571, + "total_deaths": 624.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2870.583, + "new_cases_per_million": 15.538, + "new_cases_smoothed_per_million": 14.083, + "total_deaths_per_million": 107.731, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 35426.0, + "total_tests": 2392437.0, + "total_tests_per_thousand": 413.044, + "new_tests_per_thousand": 6.116, + "new_tests_smoothed": 35628.0, + "new_tests_smoothed_per_thousand": 6.151, + "tests_per_case": 436.77099999999996, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-29", + "total_cases": 16700.0, + "new_cases": 73.0, + "new_cases_smoothed": 81.857, + "total_deaths": 624.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2883.186, + "new_cases_per_million": 12.603, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 107.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 25181.0, + "total_tests": 2417618.0, + "total_tests_per_thousand": 417.392, + "new_tests_per_thousand": 4.347, + "new_tests_smoothed": 35135.0, + "new_tests_smoothed_per_thousand": 6.066, + "tests_per_case": 429.223, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-30", + "total_cases": 16700.0, + "new_cases": 0.0, + "new_cases_smoothed": 81.857, + "total_deaths": 624.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2883.186, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 107.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 25240.0, + "total_tests": 2442858.0, + "total_tests_per_thousand": 421.749, + "new_tests_per_thousand": 4.358, + "new_tests_smoothed": 34804.0, + "new_tests_smoothed_per_thousand": 6.009, + "tests_per_case": 425.18, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-08-31", + "total_cases": 16700.0, + "new_cases": 0.0, + "new_cases_smoothed": 81.857, + "total_deaths": 624.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2883.186, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.132, + "total_deaths_per_million": 107.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 38892.0, + "total_tests": 2481750.0, + "total_tests_per_thousand": 428.464, + "new_tests_per_thousand": 6.715, + "new_tests_smoothed": 34742.0, + "new_tests_smoothed_per_thousand": 5.998, + "tests_per_case": 424.42199999999997, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-09-01", + "total_cases": 16985.0, + "new_cases": 285.0, + "new_cases_smoothed": 84.0, + "total_deaths": 624.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2932.39, + "new_cases_per_million": 49.204, + "new_cases_smoothed_per_million": 14.502, + "total_deaths_per_million": 107.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 29923.0, + "total_tests": 2511673.0, + "total_tests_per_thousand": 433.63, + "new_tests_per_thousand": 5.166, + "new_tests_smoothed": 33339.0, + "new_tests_smoothed_per_thousand": 5.756, + "tests_per_case": 396.89300000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-09-02", + "total_cases": 17084.0, + "new_cases": 99.0, + "new_cases_smoothed": 86.286, + "total_deaths": 625.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2949.482, + "new_cases_per_million": 17.092, + "new_cases_smoothed_per_million": 14.897, + "total_deaths_per_million": 107.904, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 7125.0, + "total_tests": 2518798.0, + "total_tests_per_thousand": 434.86, + "new_tests_per_thousand": 1.23, + "new_tests_smoothed": 28636.0, + "new_tests_smoothed_per_thousand": 4.944, + "tests_per_case": 331.874, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-09-03", + "total_cases": 17195.0, + "new_cases": 111.0, + "new_cases_smoothed": 94.0, + "total_deaths": 626.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2968.646, + "new_cases_per_million": 19.164, + "new_cases_smoothed_per_million": 16.229, + "total_deaths_per_million": 108.076, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074 + }, + { + "date": "2020-09-04", + "total_cases": 17374.0, + "new_cases": 179.0, + "new_cases_smoothed": 106.714, + "total_deaths": 626.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2999.55, + "new_cases_per_million": 30.904, + "new_cases_smoothed_per_million": 18.424, + "total_deaths_per_million": 108.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049 + }, + { + "date": "2020-09-05", + "total_cases": 17547.0, + "new_cases": 173.0, + "new_cases_smoothed": 121.0, + "total_deaths": 627.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3029.417, + "new_cases_per_million": 29.868, + "new_cases_smoothed_per_million": 20.89, + "total_deaths_per_million": 108.249, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.074 + } + ] + }, + "DJI": { + "continent": "Africa", + "location": "Djibouti", + "population": 988002.0, + "population_density": 41.285, + "median_age": 25.4, + "aged_65_older": 4.213, + "aged_70_older": 2.38, + "gdp_per_capita": 2705.406, + "extreme_poverty": 22.5, + "cardiovasc_death_rate": 258.037, + "diabetes_prevalence": 6.05, + "female_smokers": 1.7, + "male_smokers": 24.5, + "hospital_beds_per_thousand": 1.4, + "life_expectancy": 67.11, + "data": [ + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.012, + "new_cases_per_million": 1.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.012, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.012, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.012, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.012, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.036, + "new_cases_per_million": 2.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 12.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.146, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.158, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 1.735, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.182, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 2.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.231, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 2.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 26.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.316, + "new_cases_per_million": 7.085, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 31.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.376, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 34.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.413, + "new_cases_per_million": 3.036, + "new_cases_smoothed_per_million": 3.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 41.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.498, + "new_cases_per_million": 7.085, + "new_cases_smoothed_per_million": 4.193, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 51.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.619, + "new_cases_per_million": 10.121, + "new_cases_smoothed_per_million": 5.205, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 59.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.716, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 5.784, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 90.0, + "new_cases": 31.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.093, + "new_cases_per_million": 31.376, + "new_cases_smoothed_per_million": 9.254, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 121.0, + "new_cases": 31.0, + "new_cases_smoothed": 12.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.469, + "new_cases_per_million": 31.376, + "new_cases_smoothed_per_million": 13.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 135.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.639, + "new_cases_per_million": 14.17, + "new_cases_smoothed_per_million": 14.604, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 140.0, + "new_cases": 5.0, + "new_cases_smoothed": 14.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 141.7, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 14.315, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 150.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 151.822, + "new_cases_per_million": 10.121, + "new_cases_smoothed_per_million": 15.761, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 187.0, + "new_cases": 37.0, + "new_cases_smoothed": 19.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 189.271, + "new_cases_per_million": 37.449, + "new_cases_smoothed_per_million": 19.665, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 214.0, + "new_cases": 27.0, + "new_cases_smoothed": 22.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 216.599, + "new_cases_per_million": 27.328, + "new_cases_smoothed_per_million": 22.412, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 298.0, + "new_cases": 84.0, + "new_cases_smoothed": 29.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 301.619, + "new_cases_per_million": 85.02, + "new_cases_smoothed_per_million": 30.075, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 363.0, + "new_cases": 65.0, + "new_cases_smoothed": 34.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 367.408, + "new_cases_per_million": 65.789, + "new_cases_smoothed_per_million": 34.991, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 435.0, + "new_cases": 72.0, + "new_cases_smoothed": 42.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 440.283, + "new_cases_per_million": 72.874, + "new_cases_smoothed_per_million": 43.378, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 591.0, + "new_cases": 156.0, + "new_cases_smoothed": 64.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 598.177, + "new_cases_per_million": 157.894, + "new_cases_smoothed_per_million": 65.211, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 732.0, + "new_cases": 141.0, + "new_cases_smoothed": 83.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 740.889, + "new_cases_per_million": 142.712, + "new_cases_smoothed_per_million": 84.153, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 732.0, + "new_cases": 0.0, + "new_cases_smoothed": 77.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 740.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.803, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 846.0, + "new_cases": 114.0, + "new_cases_smoothed": 90.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 856.274, + "new_cases_per_million": 115.384, + "new_cases_smoothed_per_million": 91.382, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 846.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 856.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 79.236, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 945.0, + "new_cases": 99.0, + "new_cases_smoothed": 83.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 956.476, + "new_cases_per_million": 100.202, + "new_cases_smoothed_per_million": 84.153, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 974.0, + "new_cases": 29.0, + "new_cases_smoothed": 77.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 985.828, + "new_cases_per_million": 29.352, + "new_cases_smoothed_per_million": 77.935, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 986.0, + "new_cases": 12.0, + "new_cases_smoothed": 56.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 997.974, + "new_cases_per_million": 12.146, + "new_cases_smoothed_per_million": 57.114, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 999.0, + "new_cases": 13.0, + "new_cases_smoothed": 38.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1011.132, + "new_cases_per_million": 13.158, + "new_cases_smoothed_per_million": 38.606, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 1008.0, + "new_cases": 9.0, + "new_cases_smoothed": 39.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1020.241, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 39.907, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-27", + "total_cases": 1023.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1035.423, + "new_cases_per_million": 15.182, + "new_cases_smoothed_per_million": 25.593, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-28", + "total_cases": 1035.0, + "new_cases": 12.0, + "new_cases_smoothed": 27.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1047.569, + "new_cases_per_million": 12.146, + "new_cases_smoothed_per_million": 27.328, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-29", + "total_cases": 1072.0, + "new_cases": 37.0, + "new_cases_smoothed": 18.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1085.018, + "new_cases_per_million": 37.449, + "new_cases_smoothed_per_million": 18.363, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-30", + "total_cases": 1077.0, + "new_cases": 5.0, + "new_cases_smoothed": 14.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1090.079, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 14.893, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-01", + "total_cases": 1089.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1102.224, + "new_cases_per_million": 12.146, + "new_cases_smoothed_per_million": 14.893, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-02", + "total_cases": 1097.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1110.322, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 14.17, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-03", + "total_cases": 1112.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1125.504, + "new_cases_per_million": 15.182, + "new_cases_smoothed_per_million": 15.038, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-04", + "total_cases": 1112.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1125.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.869, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-05", + "total_cases": 1116.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1129.552, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 11.712, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-06", + "total_cases": 1120.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1133.601, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 6.94, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-07", + "total_cases": 1120.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1133.601, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.217, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-08", + "total_cases": 1133.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1146.759, + "new_cases_per_million": 13.158, + "new_cases_smoothed_per_million": 6.362, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-09", + "total_cases": 1135.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1148.783, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 5.494, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-10", + "total_cases": 1189.0, + "new_cases": 54.0, + "new_cases_smoothed": 11.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1203.439, + "new_cases_per_million": 54.656, + "new_cases_smoothed_per_million": 11.134, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-11", + "total_cases": 1210.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1224.694, + "new_cases_per_million": 21.255, + "new_cases_smoothed_per_million": 14.17, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 1227.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1241.9, + "new_cases_per_million": 17.206, + "new_cases_smoothed_per_million": 16.05, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 1256.0, + "new_cases": 29.0, + "new_cases_smoothed": 19.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1271.252, + "new_cases_per_million": 29.352, + "new_cases_smoothed_per_million": 19.665, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 1268.0, + "new_cases": 12.0, + "new_cases_smoothed": 21.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1283.398, + "new_cases_per_million": 12.146, + "new_cases_smoothed_per_million": 21.4, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 1284.0, + "new_cases": 16.0, + "new_cases_smoothed": 21.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1299.593, + "new_cases_per_million": 16.194, + "new_cases_smoothed_per_million": 21.833, + "total_deaths_per_million": 3.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 1309.0, + "new_cases": 25.0, + "new_cases_smoothed": 24.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1324.896, + "new_cases_per_million": 25.304, + "new_cases_smoothed_per_million": 25.159, + "total_deaths_per_million": 4.049, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 1331.0, + "new_cases": 22.0, + "new_cases_smoothed": 20.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1347.163, + "new_cases_per_million": 22.267, + "new_cases_smoothed_per_million": 20.532, + "total_deaths_per_million": 4.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 59.26 + }, + { + "date": "2020-05-18", + "total_cases": 1401.0, + "new_cases": 70.0, + "new_cases_smoothed": 27.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1418.013, + "new_cases_per_million": 70.85, + "new_cases_smoothed_per_million": 27.617, + "total_deaths_per_million": 4.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 59.26 + }, + { + "date": "2020-05-19", + "total_cases": 1518.0, + "new_cases": 117.0, + "new_cases_smoothed": 41.571, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1536.434, + "new_cases_per_million": 118.421, + "new_cases_smoothed_per_million": 42.076, + "total_deaths_per_million": 7.085, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 59.26 + }, + { + "date": "2020-05-20", + "total_cases": 1518.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1536.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.883, + "total_deaths_per_million": 7.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 59.26 + }, + { + "date": "2020-05-21", + "total_cases": 1828.0, + "new_cases": 310.0, + "new_cases_smoothed": 80.0, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1850.199, + "new_cases_per_million": 313.765, + "new_cases_smoothed_per_million": 80.971, + "total_deaths_per_million": 9.109, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 59.26 + }, + { + "date": "2020-05-22", + "total_cases": 2047.0, + "new_cases": 219.0, + "new_cases_smoothed": 109.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2071.858, + "new_cases_per_million": 221.659, + "new_cases_smoothed_per_million": 110.324, + "total_deaths_per_million": 10.121, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 59.26 + }, + { + "date": "2020-05-23", + "total_cases": 2270.0, + "new_cases": 223.0, + "new_cases_smoothed": 137.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2297.566, + "new_cases_per_million": 225.708, + "new_cases_smoothed_per_million": 138.953, + "total_deaths_per_million": 10.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-05-24", + "total_cases": 2270.0, + "new_cases": 0.0, + "new_cases_smoothed": 134.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2297.566, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 135.772, + "total_deaths_per_million": 10.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-05-25", + "total_cases": 2270.0, + "new_cases": 0.0, + "new_cases_smoothed": 124.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2297.566, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 125.65, + "total_deaths_per_million": 10.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-05-26", + "total_cases": 2468.0, + "new_cases": 198.0, + "new_cases_smoothed": 135.714, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2497.971, + "new_cases_per_million": 200.404, + "new_cases_smoothed_per_million": 137.362, + "total_deaths_per_million": 14.17, + "new_deaths_per_million": 4.049, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-05-27", + "total_cases": 2468.0, + "new_cases": 0.0, + "new_cases_smoothed": 135.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2497.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 137.362, + "total_deaths_per_million": 14.17, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-05-28", + "total_cases": 2697.0, + "new_cases": 229.0, + "new_cases_smoothed": 124.143, + "total_deaths": 18.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2729.752, + "new_cases_per_million": 231.781, + "new_cases_smoothed_per_million": 125.65, + "total_deaths_per_million": 18.219, + "new_deaths_per_million": 4.049, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-05-29", + "total_cases": 2914.0, + "new_cases": 217.0, + "new_cases_smoothed": 123.857, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2949.387, + "new_cases_per_million": 219.635, + "new_cases_smoothed_per_million": 125.361, + "total_deaths_per_million": 20.243, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 1.446, + "stringency_index": 53.7 + }, + { + "date": "2020-05-30", + "total_cases": 2914.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2949.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 93.117, + "total_deaths_per_million": 20.243, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.446, + "stringency_index": 53.7 + }, + { + "date": "2020-05-31", + "total_cases": 3194.0, + "new_cases": 280.0, + "new_cases_smoothed": 132.0, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3232.787, + "new_cases_per_million": 283.4, + "new_cases_smoothed_per_million": 133.603, + "total_deaths_per_million": 22.267, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 53.7 + }, + { + "date": "2020-06-01", + "total_cases": 3354.0, + "new_cases": 160.0, + "new_cases_smoothed": 154.857, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3394.73, + "new_cases_per_million": 161.943, + "new_cases_smoothed_per_million": 156.738, + "total_deaths_per_million": 24.291, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 2.024, + "stringency_index": 53.7 + }, + { + "date": "2020-06-02", + "total_cases": 3569.0, + "new_cases": 215.0, + "new_cases_smoothed": 157.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3612.341, + "new_cases_per_million": 217.611, + "new_cases_smoothed_per_million": 159.196, + "total_deaths_per_million": 24.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.446, + "stringency_index": 53.7 + }, + { + "date": "2020-06-03", + "total_cases": 3779.0, + "new_cases": 210.0, + "new_cases_smoothed": 187.286, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3824.891, + "new_cases_per_million": 212.55, + "new_cases_smoothed_per_million": 189.56, + "total_deaths_per_million": 25.304, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.591, + "stringency_index": 53.7 + }, + { + "date": "2020-06-04", + "total_cases": 3935.0, + "new_cases": 156.0, + "new_cases_smoothed": 176.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3982.785, + "new_cases_per_million": 157.894, + "new_cases_smoothed_per_million": 179.005, + "total_deaths_per_million": 26.316, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.157, + "stringency_index": 53.7 + }, + { + "date": "2020-06-05", + "total_cases": 4054.0, + "new_cases": 119.0, + "new_cases_smoothed": 162.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4103.231, + "new_cases_per_million": 120.445, + "new_cases_smoothed_per_million": 164.835, + "total_deaths_per_million": 26.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-06-06", + "total_cases": 4123.0, + "new_cases": 69.0, + "new_cases_smoothed": 172.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4173.068, + "new_cases_per_million": 69.838, + "new_cases_smoothed_per_million": 174.812, + "total_deaths_per_million": 26.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-06-07", + "total_cases": 4169.0, + "new_cases": 46.0, + "new_cases_smoothed": 139.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4219.627, + "new_cases_per_million": 46.559, + "new_cases_smoothed_per_million": 140.977, + "total_deaths_per_million": 26.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 53.7 + }, + { + "date": "2020-06-08", + "total_cases": 4207.0, + "new_cases": 38.0, + "new_cases_smoothed": 121.857, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4258.089, + "new_cases_per_million": 38.461, + "new_cases_smoothed_per_million": 123.337, + "total_deaths_per_million": 28.34, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 53.7 + }, + { + "date": "2020-06-09", + "total_cases": 4278.0, + "new_cases": 71.0, + "new_cases_smoothed": 101.286, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4329.951, + "new_cases_per_million": 71.862, + "new_cases_smoothed_per_million": 102.516, + "total_deaths_per_million": 31.376, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-06-10", + "total_cases": 4331.0, + "new_cases": 53.0, + "new_cases_smoothed": 78.857, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4383.594, + "new_cases_per_million": 53.644, + "new_cases_smoothed_per_million": 79.815, + "total_deaths_per_million": 34.413, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-06-11", + "total_cases": 4373.0, + "new_cases": 42.0, + "new_cases_smoothed": 62.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4426.104, + "new_cases_per_million": 42.51, + "new_cases_smoothed_per_million": 63.331, + "total_deaths_per_million": 34.413, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.157, + "stringency_index": 53.7 + }, + { + "date": "2020-06-12", + "total_cases": 4398.0, + "new_cases": 25.0, + "new_cases_smoothed": 49.143, + "total_deaths": 37.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4451.408, + "new_cases_per_million": 25.304, + "new_cases_smoothed_per_million": 49.74, + "total_deaths_per_million": 37.449, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 1.591, + "stringency_index": 53.7 + }, + { + "date": "2020-06-13", + "total_cases": 4441.0, + "new_cases": 43.0, + "new_cases_smoothed": 45.429, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4494.93, + "new_cases_per_million": 43.522, + "new_cases_smoothed_per_million": 45.98, + "total_deaths_per_million": 38.461, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 53.7 + }, + { + "date": "2020-06-14", + "total_cases": 4449.0, + "new_cases": 8.0, + "new_cases_smoothed": 40.0, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4503.027, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 40.486, + "total_deaths_per_million": 41.498, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 2.169, + "stringency_index": 53.7 + }, + { + "date": "2020-06-15", + "total_cases": 4465.0, + "new_cases": 16.0, + "new_cases_smoothed": 36.857, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4519.222, + "new_cases_per_million": 16.194, + "new_cases_smoothed_per_million": 37.305, + "total_deaths_per_million": 43.522, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 2.169, + "stringency_index": 53.7 + }, + { + "date": "2020-06-16", + "total_cases": 4501.0, + "new_cases": 36.0, + "new_cases_smoothed": 31.857, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4555.659, + "new_cases_per_million": 36.437, + "new_cases_smoothed_per_million": 32.244, + "total_deaths_per_million": 43.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 53.7 + }, + { + "date": "2020-06-17", + "total_cases": 4539.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.714, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4594.12, + "new_cases_per_million": 38.461, + "new_cases_smoothed_per_million": 30.075, + "total_deaths_per_million": 43.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-06-18", + "total_cases": 4545.0, + "new_cases": 6.0, + "new_cases_smoothed": 24.571, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4600.193, + "new_cases_per_million": 6.073, + "new_cases_smoothed_per_million": 24.87, + "total_deaths_per_million": 43.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-06-19", + "total_cases": 4557.0, + "new_cases": 12.0, + "new_cases_smoothed": 22.714, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4612.339, + "new_cases_per_million": 12.146, + "new_cases_smoothed_per_million": 22.99, + "total_deaths_per_million": 43.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-06-20", + "total_cases": 4565.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.714, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4620.436, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 17.929, + "total_deaths_per_million": 45.546, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-06-21", + "total_cases": 4565.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.571, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4620.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.773, + "total_deaths_per_million": 45.546, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 53.7 + }, + { + "date": "2020-06-22", + "total_cases": 4582.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4637.642, + "new_cases_per_million": 17.206, + "new_cases_smoothed_per_million": 16.917, + "total_deaths_per_million": 45.546, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 53.7 + }, + { + "date": "2020-06-23", + "total_cases": 4599.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.0, + "total_deaths": 48.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4654.849, + "new_cases_per_million": 17.206, + "new_cases_smoothed_per_million": 14.17, + "total_deaths_per_million": 48.583, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 0.723, + "stringency_index": 53.7 + }, + { + "date": "2020-06-24", + "total_cases": 4617.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.143, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4673.067, + "new_cases_per_million": 18.219, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 49.595, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 53.7 + }, + { + "date": "2020-06-25", + "total_cases": 4630.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.143, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4686.225, + "new_cases_per_million": 13.158, + "new_cases_smoothed_per_million": 12.29, + "total_deaths_per_million": 52.631, + "new_deaths_per_million": 3.036, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-06-26", + "total_cases": 4635.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4691.286, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 52.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.301, + "stringency_index": 53.7 + }, + { + "date": "2020-06-27", + "total_cases": 4643.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4699.383, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 52.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-06-28", + "total_cases": 4643.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4699.383, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 52.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-06-29", + "total_cases": 4643.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4699.383, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.82, + "total_deaths_per_million": 52.631, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 53.7 + }, + { + "date": "2020-06-30", + "total_cases": 4656.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.143, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4712.541, + "new_cases_per_million": 13.158, + "new_cases_smoothed_per_million": 8.242, + "total_deaths_per_million": 53.644, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.723, + "stringency_index": 53.7 + }, + { + "date": "2020-07-01", + "total_cases": 4682.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.286, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4738.857, + "new_cases_per_million": 26.316, + "new_cases_smoothed_per_million": 9.398, + "total_deaths_per_million": 54.656, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.723, + "stringency_index": 53.7 + }, + { + "date": "2020-07-02", + "total_cases": 4704.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.571, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4761.124, + "new_cases_per_million": 22.267, + "new_cases_smoothed_per_million": 10.7, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.434, + "stringency_index": 53.7 + }, + { + "date": "2020-07-03", + "total_cases": 4715.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4772.258, + "new_cases_per_million": 11.134, + "new_cases_smoothed_per_million": 11.567, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.434, + "stringency_index": 53.7 + }, + { + "date": "2020-07-04", + "total_cases": 4736.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4793.513, + "new_cases_per_million": 21.255, + "new_cases_smoothed_per_million": 13.447, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.434, + "stringency_index": 53.7 + }, + { + "date": "2020-07-05", + "total_cases": 4736.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4793.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.447, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.434, + "stringency_index": 53.7 + }, + { + "date": "2020-07-06", + "total_cases": 4792.0, + "new_cases": 56.0, + "new_cases_smoothed": 21.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4850.193, + "new_cases_per_million": 56.68, + "new_cases_smoothed_per_million": 21.544, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.434, + "stringency_index": 53.7 + }, + { + "date": "2020-07-07", + "total_cases": 4822.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4880.557, + "new_cases_per_million": 30.364, + "new_cases_smoothed_per_million": 24.002, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 53.7 + }, + { + "date": "2020-07-08", + "total_cases": 4878.0, + "new_cases": 56.0, + "new_cases_smoothed": 28.0, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4937.237, + "new_cases_per_million": 56.68, + "new_cases_smoothed_per_million": 28.34, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-09", + "total_cases": 4889.0, + "new_cases": 11.0, + "new_cases_smoothed": 26.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4948.371, + "new_cases_per_million": 11.134, + "new_cases_smoothed_per_million": 26.75, + "total_deaths_per_million": 55.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-10", + "total_cases": 4955.0, + "new_cases": 66.0, + "new_cases_smoothed": 34.286, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5015.172, + "new_cases_per_million": 66.801, + "new_cases_smoothed_per_million": 34.702, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-11", + "total_cases": 4955.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5015.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.666, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-12", + "total_cases": 4955.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5015.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.666, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-13", + "total_cases": 4972.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.714, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5032.378, + "new_cases_per_million": 17.206, + "new_cases_smoothed_per_million": 26.027, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-14", + "total_cases": 4977.0, + "new_cases": 5.0, + "new_cases_smoothed": 22.143, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5037.439, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 22.412, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 4979.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5039.463, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 14.604, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 4985.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.714, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5045.536, + "new_cases_per_million": 6.073, + "new_cases_smoothed_per_million": 13.881, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 4993.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5053.633, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 5.494, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-18", + "total_cases": 5003.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5063.755, + "new_cases_per_million": 10.121, + "new_cases_smoothed_per_million": 6.94, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-19", + "total_cases": 5003.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5063.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.94, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-20", + "total_cases": 5011.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5071.852, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 5.639, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-21", + "total_cases": 5020.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.143, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5080.961, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 6.217, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-22", + "total_cases": 5027.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5088.046, + "new_cases_per_million": 7.085, + "new_cases_smoothed_per_million": 6.94, + "total_deaths_per_million": 56.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-23", + "total_cases": 5030.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5091.083, + "new_cases_per_million": 3.036, + "new_cases_smoothed_per_million": 6.507, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 2.024, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-24", + "total_cases": 5031.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5092.095, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 5.494, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-25", + "total_cases": 5039.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5100.192, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 5.205, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-26", + "total_cases": 5039.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5100.192, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.205, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-27", + "total_cases": 5050.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5111.326, + "new_cases_per_million": 11.134, + "new_cases_smoothed_per_million": 5.639, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-28", + "total_cases": 5059.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5120.435, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 5.639, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-29", + "total_cases": 5068.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5129.544, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 5.928, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "stringency_index": 45.37 + }, + { + "date": "2020-07-30", + "total_cases": 5081.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5142.702, + "new_cases_per_million": 13.158, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-31", + "total_cases": 5081.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5142.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.23, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-01", + "total_cases": 5081.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5142.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.073, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-02", + "total_cases": 5081.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5142.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.073, + "total_deaths_per_million": 58.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-03", + "total_cases": 5161.0, + "new_cases": 80.0, + "new_cases_smoothed": 15.857, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5223.674, + "new_cases_per_million": 80.971, + "new_cases_smoothed_per_million": 16.05, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-04", + "total_cases": 5240.0, + "new_cases": 79.0, + "new_cases_smoothed": 25.857, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5303.633, + "new_cases_per_million": 79.959, + "new_cases_smoothed_per_million": 26.171, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-05", + "total_cases": 5248.0, + "new_cases": 8.0, + "new_cases_smoothed": 25.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5311.73, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 26.027, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-06", + "total_cases": 5330.0, + "new_cases": 82.0, + "new_cases_smoothed": 35.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5394.726, + "new_cases_per_million": 82.996, + "new_cases_smoothed_per_million": 36.003, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-07", + "total_cases": 5334.0, + "new_cases": 4.0, + "new_cases_smoothed": 36.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5398.774, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 36.582, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-08", + "total_cases": 5338.0, + "new_cases": 4.0, + "new_cases_smoothed": 36.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5402.823, + "new_cases_per_million": 4.049, + "new_cases_smoothed_per_million": 37.16, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-09", + "total_cases": 5338.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5402.823, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.16, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-10", + "total_cases": 5344.0, + "new_cases": 6.0, + "new_cases_smoothed": 26.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5408.896, + "new_cases_per_million": 6.073, + "new_cases_smoothed_per_million": 26.46, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-11", + "total_cases": 5347.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5411.932, + "new_cases_per_million": 3.036, + "new_cases_smoothed_per_million": 15.471, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-12", + "total_cases": 5348.0, + "new_cases": 1.0, + "new_cases_smoothed": 14.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5412.945, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 14.459, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-13", + "total_cases": 5358.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.0, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5423.066, + "new_cases_per_million": 10.121, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-14", + "total_cases": 5358.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5423.066, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-15", + "total_cases": 5367.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5432.175, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 4.193, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-16", + "total_cases": 5367.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5432.175, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.193, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-17", + "total_cases": 5369.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5434.2, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 3.615, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-18", + "total_cases": 5372.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5437.236, + "new_cases_per_million": 3.036, + "new_cases_smoothed_per_million": 3.615, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-19", + "total_cases": 5374.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5439.26, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 3.759, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-20", + "total_cases": 5374.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5439.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-21", + "total_cases": 5374.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5439.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 59.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-22", + "total_cases": 5382.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.143, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5447.357, + "new_cases_per_million": 8.097, + "new_cases_smoothed_per_million": 2.169, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-23", + "total_cases": 5382.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5447.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.169, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-24", + "total_cases": 5382.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5447.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.88, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-25", + "total_cases": 5383.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5448.37, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-26", + "total_cases": 5383.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5448.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-27", + "total_cases": 5383.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5448.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-28", + "total_cases": 5383.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5448.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 45.37 + }, + { + "date": "2020-08-29", + "total_cases": 5383.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5448.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-30", + "total_cases": 5385.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5450.394, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-08-31", + "total_cases": 5385.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5450.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-09-01", + "total_cases": 5387.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5452.418, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-09-02", + "total_cases": 5387.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5452.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-09-03", + "total_cases": 5387.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5452.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 5387.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5452.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 5387.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5452.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 60.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "DMA": { + "continent": "North America", + "location": "Dominica", + "population": 71991.0, + "population_density": 98.567, + "gdp_per_capita": 9673.367, + "cardiovasc_death_rate": 227.376, + "diabetes_prevalence": 11.62, + "hospital_beds_per_thousand": 3.8, + "life_expectancy": 75.0, + "data": [ + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 13.891, + "new_cases_per_million": 13.891, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 13.891, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 27.781, + "new_cases_per_million": 13.891, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-26", + "total_cases": 7.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 97.234, + "new_cases_per_million": 69.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-27", + "total_cases": 11.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 55.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-28", + "total_cases": 11.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.828, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.844, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-31", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.844, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-04-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.859, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 166.688, + "new_cases_per_million": 13.891, + "new_cases_smoothed_per_million": 9.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 166.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.469, + "new_cases_per_million": 27.781, + "new_cases_smoothed_per_million": 5.953, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.953, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.953, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.359, + "new_cases_per_million": 13.891, + "new_cases_smoothed_per_million": 7.938, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.938, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.953, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 13.891, + "new_cases_smoothed_per_million": 7.938, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-22", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-23", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-24", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-25", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-26", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-31", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-02", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 27.781, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-06-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-06-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-06-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-06-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-31", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.031, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-22", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.922, + "new_cases_per_million": 13.891, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-25", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 13.891, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-26", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-27", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-28", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-29", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-30", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-31", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-01", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-02", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-03", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-05", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + } + ] + }, + "DOM": { + "continent": "North America", + "location": "Dominican Republic", + "population": 10847904.0, + "population_density": 222.873, + "median_age": 27.6, + "aged_65_older": 6.981, + "aged_70_older": 4.419, + "gdp_per_capita": 14600.861, + "extreme_poverty": 1.6, + "cardiovasc_death_rate": 266.653, + "diabetes_prevalence": 8.2, + "female_smokers": 8.5, + "male_smokers": 19.1, + "handwashing_facilities": 55.182, + "hospital_beds_per_thousand": 1.6, + "life_expectancy": 74.08, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.461, + "new_cases_per_million": 0.277, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-14", + "total_cases": 11.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.014, + "new_cases_per_million": 0.553, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-03-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-19", + "total_cases": 21.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.936, + "new_cases_per_million": 0.922, + "new_cases_smoothed_per_million": 0.211, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-03-20", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.211, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 34.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.134, + "new_cases_per_million": 1.198, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.184, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 112.0, + "new_cases": 78.0, + "new_cases_smoothed": 14.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.325, + "new_cases_per_million": 7.19, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 202.0, + "new_cases": 90.0, + "new_cases_smoothed": 27.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.621, + "new_cases_per_million": 8.297, + "new_cases_smoothed_per_million": 2.515, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 245.0, + "new_cases": 43.0, + "new_cases_smoothed": 33.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.585, + "new_cases_per_million": 3.964, + "new_cases_smoothed_per_million": 3.082, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 89.81 + }, + { + "date": "2020-03-25", + "total_cases": 312.0, + "new_cases": 67.0, + "new_cases_smoothed": 43.0, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 28.761, + "new_cases_per_million": 6.176, + "new_cases_smoothed_per_million": 3.964, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.277, + "new_deaths_smoothed_per_million": 0.079, + "stringency_index": 89.81 + }, + { + "date": "2020-03-26", + "total_cases": 392.0, + "new_cases": 80.0, + "new_cases_smoothed": 53.0, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 36.136, + "new_cases_per_million": 7.375, + "new_cases_smoothed_per_million": 4.886, + "total_deaths_per_million": 0.922, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.132, + "stringency_index": 89.81 + }, + { + "date": "2020-03-27", + "total_cases": 488.0, + "new_cases": 96.0, + "new_cases_smoothed": 66.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 44.986, + "new_cases_per_million": 8.85, + "new_cases_smoothed_per_million": 6.15, + "total_deaths_per_million": 0.922, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "stringency_index": 89.81 + }, + { + "date": "2020-03-28", + "total_cases": 581.0, + "new_cases": 93.0, + "new_cases_smoothed": 78.143, + "total_deaths": 20.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 53.559, + "new_cases_per_million": 8.573, + "new_cases_smoothed_per_million": 7.203, + "total_deaths_per_million": 1.844, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 89.81 + }, + { + "date": "2020-03-29", + "total_cases": 719.0, + "new_cases": 138.0, + "new_cases_smoothed": 86.714, + "total_deaths": 28.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 66.28, + "new_cases_per_million": 12.721, + "new_cases_smoothed_per_million": 7.994, + "total_deaths_per_million": 2.581, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.329, + "stringency_index": 89.81 + }, + { + "date": "2020-03-30", + "total_cases": 859.0, + "new_cases": 140.0, + "new_cases_smoothed": 93.857, + "total_deaths": 39.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 79.186, + "new_cases_per_million": 12.906, + "new_cases_smoothed_per_million": 8.652, + "total_deaths_per_million": 3.595, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.474, + "stringency_index": 89.81 + }, + { + "date": "2020-03-31", + "total_cases": 901.0, + "new_cases": 42.0, + "new_cases_smoothed": 93.714, + "total_deaths": 42.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 83.058, + "new_cases_per_million": 3.872, + "new_cases_smoothed_per_million": 8.639, + "total_deaths_per_million": 3.872, + "new_deaths_per_million": 0.277, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 89.81 + }, + { + "date": "2020-04-01", + "total_cases": 1109.0, + "new_cases": 208.0, + "new_cases_smoothed": 113.857, + "total_deaths": 51.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 102.232, + "new_cases_per_million": 19.174, + "new_cases_smoothed_per_million": 10.496, + "total_deaths_per_million": 4.701, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.593, + "stringency_index": 89.81 + }, + { + "date": "2020-04-02", + "total_cases": 1284.0, + "new_cases": 175.0, + "new_cases_smoothed": 127.429, + "total_deaths": 57.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 118.364, + "new_cases_per_million": 16.132, + "new_cases_smoothed_per_million": 11.747, + "total_deaths_per_million": 5.254, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.619, + "stringency_index": 89.81 + }, + { + "date": "2020-04-03", + "total_cases": 1380.0, + "new_cases": 96.0, + "new_cases_smoothed": 127.429, + "total_deaths": 60.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 127.214, + "new_cases_per_million": 8.85, + "new_cases_smoothed_per_million": 11.747, + "total_deaths_per_million": 5.531, + "new_deaths_per_million": 0.277, + "new_deaths_smoothed_per_million": 0.658, + "stringency_index": 89.81 + }, + { + "date": "2020-04-04", + "total_cases": 1488.0, + "new_cases": 108.0, + "new_cases_smoothed": 129.571, + "total_deaths": 68.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 137.169, + "new_cases_per_million": 9.956, + "new_cases_smoothed_per_million": 11.944, + "total_deaths_per_million": 6.268, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.632, + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 1578.0, + "new_cases": 90.0, + "new_cases_smoothed": 122.714, + "total_deaths": 77.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 145.466, + "new_cases_per_million": 8.297, + "new_cases_smoothed_per_million": 11.312, + "total_deaths_per_million": 7.098, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 1745.0, + "new_cases": 167.0, + "new_cases_smoothed": 126.571, + "total_deaths": 82.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 160.861, + "new_cases_per_million": 15.395, + "new_cases_smoothed_per_million": 11.668, + "total_deaths_per_million": 7.559, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 89.81 + }, + { + "date": "2020-04-07", + "total_cases": 1828.0, + "new_cases": 83.0, + "new_cases_smoothed": 132.429, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 168.512, + "new_cases_per_million": 7.651, + "new_cases_smoothed_per_million": 12.208, + "total_deaths_per_million": 7.928, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.579, + "stringency_index": 89.81 + }, + { + "date": "2020-04-08", + "total_cases": 1956.0, + "new_cases": 128.0, + "new_cases_smoothed": 121.0, + "total_deaths": 98.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 180.311, + "new_cases_per_million": 11.8, + "new_cases_smoothed_per_million": 11.154, + "total_deaths_per_million": 9.034, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 0.619, + "stringency_index": 89.81 + }, + { + "date": "2020-04-09", + "total_cases": 2111.0, + "new_cases": 155.0, + "new_cases_smoothed": 118.143, + "total_deaths": 108.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 194.6, + "new_cases_per_million": 14.288, + "new_cases_smoothed_per_million": 10.891, + "total_deaths_per_million": 9.956, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.672, + "stringency_index": 89.81 + }, + { + "date": "2020-04-10", + "total_cases": 2349.0, + "new_cases": 238.0, + "new_cases_smoothed": 138.429, + "total_deaths": 118.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 216.54, + "new_cases_per_million": 21.94, + "new_cases_smoothed_per_million": 12.761, + "total_deaths_per_million": 10.878, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.764, + "stringency_index": 89.81 + }, + { + "date": "2020-04-11", + "total_cases": 2620.0, + "new_cases": 271.0, + "new_cases_smoothed": 161.714, + "total_deaths": 126.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 241.521, + "new_cases_per_million": 24.982, + "new_cases_smoothed_per_million": 14.907, + "total_deaths_per_million": 11.615, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.764, + "stringency_index": 89.81 + }, + { + "date": "2020-04-12", + "total_cases": 2759.0, + "new_cases": 139.0, + "new_cases_smoothed": 168.714, + "total_deaths": 135.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 254.335, + "new_cases_per_million": 12.814, + "new_cases_smoothed_per_million": 15.553, + "total_deaths_per_million": 12.445, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.764, + "stringency_index": 89.81 + }, + { + "date": "2020-04-13", + "total_cases": 2967.0, + "new_cases": 208.0, + "new_cases_smoothed": 174.571, + "total_deaths": 173.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 273.509, + "new_cases_per_million": 19.174, + "new_cases_smoothed_per_million": 16.093, + "total_deaths_per_million": 15.948, + "new_deaths_per_million": 3.503, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 89.81 + }, + { + "date": "2020-04-14", + "total_cases": 3167.0, + "new_cases": 200.0, + "new_cases_smoothed": 191.286, + "total_deaths": 177.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 291.946, + "new_cases_per_million": 18.437, + "new_cases_smoothed_per_million": 17.633, + "total_deaths_per_million": 16.317, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 89.81 + }, + { + "date": "2020-04-15", + "total_cases": 3286.0, + "new_cases": 119.0, + "new_cases_smoothed": 190.0, + "total_deaths": 183.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 302.916, + "new_cases_per_million": 10.97, + "new_cases_smoothed_per_million": 17.515, + "total_deaths_per_million": 16.87, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.119, + "stringency_index": 89.81 + }, + { + "date": "2020-04-16", + "total_cases": 3614.0, + "new_cases": 328.0, + "new_cases_smoothed": 214.714, + "total_deaths": 189.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 333.152, + "new_cases_per_million": 30.236, + "new_cases_smoothed_per_million": 19.793, + "total_deaths_per_million": 17.423, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.067, + "stringency_index": 89.81 + }, + { + "date": "2020-04-17", + "total_cases": 3755.0, + "new_cases": 141.0, + "new_cases_smoothed": 200.857, + "total_deaths": 196.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 346.15, + "new_cases_per_million": 12.998, + "new_cases_smoothed_per_million": 18.516, + "total_deaths_per_million": 18.068, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 89.81 + }, + { + "date": "2020-04-18", + "total_cases": 4126.0, + "new_cases": 371.0, + "new_cases_smoothed": 215.143, + "total_deaths": 200.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 380.35, + "new_cases_per_million": 34.2, + "new_cases_smoothed_per_million": 19.833, + "total_deaths_per_million": 18.437, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.975, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 4335.0, + "new_cases": 209.0, + "new_cases_smoothed": 225.143, + "total_deaths": 217.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 399.616, + "new_cases_per_million": 19.266, + "new_cases_smoothed_per_million": 20.755, + "total_deaths_per_million": 20.004, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.08, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 4680.0, + "new_cases": 345.0, + "new_cases_smoothed": 244.714, + "total_deaths": 226.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 431.42, + "new_cases_per_million": 31.803, + "new_cases_smoothed_per_million": 22.559, + "total_deaths_per_million": 20.834, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.698, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 4964.0, + "new_cases": 284.0, + "new_cases_smoothed": 256.714, + "total_deaths": 235.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 457.6, + "new_cases_per_million": 26.18, + "new_cases_smoothed_per_million": 23.665, + "total_deaths_per_million": 21.663, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.764, + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 5044.0, + "new_cases": 80.0, + "new_cases_smoothed": 251.143, + "total_deaths": 245.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 464.975, + "new_cases_per_million": 7.375, + "new_cases_smoothed_per_million": 23.151, + "total_deaths_per_million": 22.585, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.816, + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 5300.0, + "new_cases": 256.0, + "new_cases_smoothed": 240.857, + "total_deaths": 260.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 488.574, + "new_cases_per_million": 23.599, + "new_cases_smoothed_per_million": 22.203, + "total_deaths_per_million": 23.968, + "new_deaths_per_million": 1.383, + "new_deaths_smoothed_per_million": 0.935, + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 5543.0, + "new_cases": 243.0, + "new_cases_smoothed": 255.429, + "total_deaths": 265.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 510.974, + "new_cases_per_million": 22.401, + "new_cases_smoothed_per_million": 23.546, + "total_deaths_per_million": 24.429, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.909, + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 5749.0, + "new_cases": 206.0, + "new_cases_smoothed": 231.857, + "total_deaths": 267.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 529.964, + "new_cases_per_million": 18.99, + "new_cases_smoothed_per_million": 21.373, + "total_deaths_per_million": 24.613, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.882, + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 5926.0, + "new_cases": 177.0, + "new_cases_smoothed": 227.286, + "total_deaths": 273.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 546.281, + "new_cases_per_million": 16.317, + "new_cases_smoothed_per_million": 20.952, + "total_deaths_per_million": 25.166, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.737, + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 6135.0, + "new_cases": 209.0, + "new_cases_smoothed": 207.857, + "total_deaths": 278.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 565.547, + "new_cases_per_million": 19.266, + "new_cases_smoothed_per_million": 19.161, + "total_deaths_per_million": 25.627, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.685, + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 6135.0, + "new_cases": 0.0, + "new_cases_smoothed": 167.286, + "total_deaths": 278.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 565.547, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.421, + "total_deaths_per_million": 25.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 97.22 + }, + { + "date": "2020-04-29", + "total_cases": 6416.0, + "new_cases": 281.0, + "new_cases_smoothed": 196.0, + "total_deaths": 286.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 591.451, + "new_cases_per_million": 25.904, + "new_cases_smoothed_per_million": 18.068, + "total_deaths_per_million": 26.365, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.54, + "stringency_index": 97.22 + }, + { + "date": "2020-04-30", + "total_cases": 6652.0, + "new_cases": 236.0, + "new_cases_smoothed": 193.143, + "total_deaths": 293.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 613.206, + "new_cases_per_million": 21.755, + "new_cases_smoothed_per_million": 17.805, + "total_deaths_per_million": 27.01, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 97.22 + }, + { + "date": "2020-05-01", + "total_cases": 6972.0, + "new_cases": 320.0, + "new_cases_smoothed": 204.143, + "total_deaths": 301.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 642.705, + "new_cases_per_million": 29.499, + "new_cases_smoothed_per_million": 18.819, + "total_deaths_per_million": 27.747, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.474, + "stringency_index": 97.22 + }, + { + "date": "2020-05-02", + "total_cases": 7288.0, + "new_cases": 316.0, + "new_cases_smoothed": 219.857, + "total_deaths": 313.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 671.835, + "new_cases_per_million": 29.13, + "new_cases_smoothed_per_million": 20.267, + "total_deaths_per_million": 28.854, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 0.606, + "stringency_index": 97.22 + }, + { + "date": "2020-05-03", + "total_cases": 7578.0, + "new_cases": 290.0, + "new_cases_smoothed": 236.0, + "total_deaths": 326.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 698.568, + "new_cases_per_million": 26.733, + "new_cases_smoothed_per_million": 21.755, + "total_deaths_per_million": 30.052, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 0.698, + "stringency_index": 97.22 + }, + { + "date": "2020-05-04", + "total_cases": 7954.0, + "new_cases": 376.0, + "new_cases_smoothed": 259.857, + "total_deaths": 333.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 733.229, + "new_cases_per_million": 34.661, + "new_cases_smoothed_per_million": 23.955, + "total_deaths_per_million": 30.697, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.724, + "stringency_index": 97.22 + }, + { + "date": "2020-05-05", + "total_cases": 8235.0, + "new_cases": 281.0, + "new_cases_smoothed": 300.0, + "total_deaths": 346.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 759.133, + "new_cases_per_million": 25.904, + "new_cases_smoothed_per_million": 27.655, + "total_deaths_per_million": 31.896, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 0.895, + "stringency_index": 97.22 + }, + { + "date": "2020-05-06", + "total_cases": 8480.0, + "new_cases": 245.0, + "new_cases_smoothed": 294.857, + "total_deaths": 354.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 781.718, + "new_cases_per_million": 22.585, + "new_cases_smoothed_per_million": 27.181, + "total_deaths_per_million": 32.633, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.895, + "stringency_index": 97.22 + }, + { + "date": "2020-05-07", + "total_cases": 8807.0, + "new_cases": 327.0, + "new_cases_smoothed": 307.857, + "total_deaths": 362.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 811.862, + "new_cases_per_million": 30.144, + "new_cases_smoothed_per_million": 28.379, + "total_deaths_per_million": 33.371, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.909, + "stringency_index": 97.22 + }, + { + "date": "2020-05-08", + "total_cases": 9095.0, + "new_cases": 288.0, + "new_cases_smoothed": 303.286, + "total_deaths": 373.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 838.411, + "new_cases_per_million": 26.549, + "new_cases_smoothed_per_million": 27.958, + "total_deaths_per_million": 34.385, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.948, + "stringency_index": 97.22 + }, + { + "date": "2020-05-09", + "total_cases": 9376.0, + "new_cases": 281.0, + "new_cases_smoothed": 298.286, + "total_deaths": 380.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 864.314, + "new_cases_per_million": 25.904, + "new_cases_smoothed_per_million": 27.497, + "total_deaths_per_million": 35.03, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.882, + "stringency_index": 97.22 + }, + { + "date": "2020-05-10", + "total_cases": 9882.0, + "new_cases": 506.0, + "new_cases_smoothed": 329.143, + "total_deaths": 385.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 910.959, + "new_cases_per_million": 46.645, + "new_cases_smoothed_per_million": 30.342, + "total_deaths_per_million": 35.491, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.777, + "stringency_index": 97.22 + }, + { + "date": "2020-05-11", + "total_cases": 10347.0, + "new_cases": 465.0, + "new_cases_smoothed": 341.857, + "total_deaths": 388.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 953.825, + "new_cases_per_million": 42.865, + "new_cases_smoothed_per_million": 31.514, + "total_deaths_per_million": 35.767, + "new_deaths_per_million": 0.277, + "new_deaths_smoothed_per_million": 0.724, + "stringency_index": 97.22 + }, + { + "date": "2020-05-12", + "total_cases": 10634.0, + "new_cases": 287.0, + "new_cases_smoothed": 342.714, + "total_deaths": 393.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 980.282, + "new_cases_per_million": 26.457, + "new_cases_smoothed_per_million": 31.593, + "total_deaths_per_million": 36.228, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.619, + "stringency_index": 97.22 + }, + { + "date": "2020-05-13", + "total_cases": 10900.0, + "new_cases": 266.0, + "new_cases_smoothed": 345.714, + "total_deaths": 402.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1004.802, + "new_cases_per_million": 24.521, + "new_cases_smoothed_per_million": 31.869, + "total_deaths_per_million": 37.058, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.632, + "stringency_index": 97.22 + }, + { + "date": "2020-05-14", + "total_cases": 11196.0, + "new_cases": 296.0, + "new_cases_smoothed": 341.286, + "total_deaths": 409.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1032.089, + "new_cases_per_million": 27.286, + "new_cases_smoothed_per_million": 31.461, + "total_deaths_per_million": 37.703, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.619, + "stringency_index": 97.22 + }, + { + "date": "2020-05-15", + "total_cases": 11320.0, + "new_cases": 124.0, + "new_cases_smoothed": 317.857, + "total_deaths": 422.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1043.52, + "new_cases_per_million": 11.431, + "new_cases_smoothed_per_million": 29.301, + "total_deaths_per_million": 38.902, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 97.22 + }, + { + "date": "2020-05-16", + "total_cases": 11739.0, + "new_cases": 419.0, + "new_cases_smoothed": 337.571, + "total_deaths": 424.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1082.145, + "new_cases_per_million": 38.625, + "new_cases_smoothed_per_million": 31.119, + "total_deaths_per_million": 39.086, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.579, + "stringency_index": 97.22 + }, + { + "date": "2020-05-17", + "total_cases": 11893.0, + "new_cases": 154.0, + "new_cases_smoothed": 287.286, + "total_deaths": 424.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1096.341, + "new_cases_per_million": 14.196, + "new_cases_smoothed_per_million": 26.483, + "total_deaths_per_million": 39.086, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 97.22 + }, + { + "date": "2020-05-18", + "total_cases": 12314.0, + "new_cases": 421.0, + "new_cases_smoothed": 281.0, + "total_deaths": 428.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1135.15, + "new_cases_per_million": 38.809, + "new_cases_smoothed_per_million": 25.904, + "total_deaths_per_million": 39.455, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.527, + "stringency_index": 93.52 + }, + { + "date": "2020-05-19", + "total_cases": 12725.0, + "new_cases": 411.0, + "new_cases_smoothed": 298.714, + "total_deaths": 434.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1173.038, + "new_cases_per_million": 37.888, + "new_cases_smoothed_per_million": 27.537, + "total_deaths_per_million": 40.008, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.54, + "stringency_index": 93.52 + }, + { + "date": "2020-05-20", + "total_cases": 13223.0, + "new_cases": 498.0, + "new_cases_smoothed": 331.857, + "total_deaths": 441.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1218.945, + "new_cases_per_million": 45.907, + "new_cases_smoothed_per_million": 30.592, + "total_deaths_per_million": 40.653, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.514, + "stringency_index": 84.26 + }, + { + "date": "2020-05-21", + "total_cases": 13477.0, + "new_cases": 254.0, + "new_cases_smoothed": 325.857, + "total_deaths": 446.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1242.36, + "new_cases_per_million": 23.415, + "new_cases_smoothed_per_million": 30.039, + "total_deaths_per_million": 41.114, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 84.26 + }, + { + "date": "2020-05-22", + "total_cases": 13657.0, + "new_cases": 180.0, + "new_cases_smoothed": 333.857, + "total_deaths": 448.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1258.953, + "new_cases_per_million": 16.593, + "new_cases_smoothed_per_million": 30.776, + "total_deaths_per_million": 41.298, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.342, + "stringency_index": 84.26 + }, + { + "date": "2020-05-23", + "total_cases": 13989.0, + "new_cases": 332.0, + "new_cases_smoothed": 321.429, + "total_deaths": 456.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1289.558, + "new_cases_per_million": 30.605, + "new_cases_smoothed_per_million": 29.63, + "total_deaths_per_million": 42.036, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.421, + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 14422.0, + "new_cases": 433.0, + "new_cases_smoothed": 361.286, + "total_deaths": 458.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1329.473, + "new_cases_per_million": 39.916, + "new_cases_smoothed_per_million": 33.305, + "total_deaths_per_million": 42.22, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 14422.0, + "new_cases": 0.0, + "new_cases_smoothed": 301.143, + "total_deaths": 458.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1329.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.76, + "total_deaths_per_million": 42.22, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.395, + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 15073.0, + "new_cases": 651.0, + "new_cases_smoothed": 335.429, + "total_deaths": 460.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1389.485, + "new_cases_per_million": 60.012, + "new_cases_smoothed_per_million": 30.921, + "total_deaths_per_million": 42.405, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.342, + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 15264.0, + "new_cases": 191.0, + "new_cases_smoothed": 291.571, + "total_deaths": 468.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1407.092, + "new_cases_per_million": 17.607, + "new_cases_smoothed_per_million": 26.878, + "total_deaths_per_million": 43.142, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.356, + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 15723.0, + "new_cases": 459.0, + "new_cases_smoothed": 320.857, + "total_deaths": 474.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1449.404, + "new_cases_per_million": 42.312, + "new_cases_smoothed_per_million": 29.578, + "total_deaths_per_million": 43.695, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 16068.0, + "new_cases": 345.0, + "new_cases_smoothed": 344.429, + "total_deaths": 485.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1481.208, + "new_cases_per_million": 31.803, + "new_cases_smoothed_per_million": 31.751, + "total_deaths_per_million": 44.709, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 16531.0, + "new_cases": 463.0, + "new_cases_smoothed": 363.143, + "total_deaths": 488.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1523.889, + "new_cases_per_million": 42.681, + "new_cases_smoothed_per_million": 33.476, + "total_deaths_per_million": 44.986, + "new_deaths_per_million": 0.277, + "new_deaths_smoothed_per_million": 0.421, + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 16908.0, + "new_cases": 377.0, + "new_cases_smoothed": 355.143, + "total_deaths": 498.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1558.642, + "new_cases_per_million": 34.753, + "new_cases_smoothed_per_million": 32.738, + "total_deaths_per_million": 45.907, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.527, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 17285.0, + "new_cases": 377.0, + "new_cases_smoothed": 409.0, + "total_deaths": 502.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1593.395, + "new_cases_per_million": 34.753, + "new_cases_smoothed_per_million": 37.703, + "total_deaths_per_million": 46.276, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.579, + "stringency_index": 78.7 + }, + { + "date": "2020-06-02", + "total_cases": 17572.0, + "new_cases": 287.0, + "new_cases_smoothed": 357.0, + "total_deaths": 502.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1619.852, + "new_cases_per_million": 26.457, + "new_cases_smoothed_per_million": 32.91, + "total_deaths_per_million": 46.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.553, + "stringency_index": 78.7 + }, + { + "date": "2020-06-03", + "total_cases": 17752.0, + "new_cases": 180.0, + "new_cases_smoothed": 355.429, + "total_deaths": 515.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1636.445, + "new_cases_per_million": 16.593, + "new_cases_smoothed_per_million": 32.765, + "total_deaths_per_million": 47.475, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 0.619, + "stringency_index": 78.7 + }, + { + "date": "2020-06-04", + "total_cases": 18040.0, + "new_cases": 288.0, + "new_cases_smoothed": 331.0, + "total_deaths": 516.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1662.994, + "new_cases_per_million": 26.549, + "new_cases_smoothed_per_million": 30.513, + "total_deaths_per_million": 47.567, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.553, + "stringency_index": 78.7 + }, + { + "date": "2020-06-05", + "total_cases": 18319.0, + "new_cases": 279.0, + "new_cases_smoothed": 321.571, + "total_deaths": 520.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1688.713, + "new_cases_per_million": 25.719, + "new_cases_smoothed_per_million": 29.644, + "total_deaths_per_million": 47.936, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 78.7 + }, + { + "date": "2020-06-06", + "total_cases": 18708.0, + "new_cases": 389.0, + "new_cases_smoothed": 311.0, + "total_deaths": 525.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1724.573, + "new_cases_per_million": 35.859, + "new_cases_smoothed_per_million": 28.669, + "total_deaths_per_million": 48.396, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 78.7 + }, + { + "date": "2020-06-07", + "total_cases": 19195.0, + "new_cases": 487.0, + "new_cases_smoothed": 326.714, + "total_deaths": 536.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1769.466, + "new_cases_per_million": 44.893, + "new_cases_smoothed_per_million": 30.118, + "total_deaths_per_million": 49.41, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.5, + "stringency_index": 78.7 + }, + { + "date": "2020-06-08", + "total_cases": 19600.0, + "new_cases": 405.0, + "new_cases_smoothed": 330.714, + "total_deaths": 538.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1806.801, + "new_cases_per_million": 37.334, + "new_cases_smoothed_per_million": 30.486, + "total_deaths_per_million": 49.595, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.474, + "stringency_index": 78.7 + }, + { + "date": "2020-06-09", + "total_cases": 20126.0, + "new_cases": 526.0, + "new_cases_smoothed": 364.857, + "total_deaths": 539.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1855.289, + "new_cases_per_million": 48.489, + "new_cases_smoothed_per_million": 33.634, + "total_deaths_per_million": 49.687, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 78.7 + }, + { + "date": "2020-06-10", + "total_cases": 20415.0, + "new_cases": 289.0, + "new_cases_smoothed": 380.429, + "total_deaths": 544.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1881.93, + "new_cases_per_million": 26.641, + "new_cases_smoothed_per_million": 35.069, + "total_deaths_per_million": 50.148, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.382, + "stringency_index": 78.7 + }, + { + "date": "2020-06-11", + "total_cases": 20808.0, + "new_cases": 393.0, + "new_cases_smoothed": 395.429, + "total_deaths": 550.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1918.159, + "new_cases_per_million": 36.228, + "new_cases_smoothed_per_million": 36.452, + "total_deaths_per_million": 50.701, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 78.7 + }, + { + "date": "2020-06-12", + "total_cases": 21437.0, + "new_cases": 629.0, + "new_cases_smoothed": 445.429, + "total_deaths": 561.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1976.142, + "new_cases_per_million": 57.984, + "new_cases_smoothed_per_million": 41.061, + "total_deaths_per_million": 51.715, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.54, + "stringency_index": 78.7 + }, + { + "date": "2020-06-13", + "total_cases": 22008.0, + "new_cases": 571.0, + "new_cases_smoothed": 471.429, + "total_deaths": 568.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 2028.779, + "new_cases_per_million": 52.637, + "new_cases_smoothed_per_million": 43.458, + "total_deaths_per_million": 52.36, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.566, + "stringency_index": 78.7 + }, + { + "date": "2020-06-14", + "total_cases": 22572.0, + "new_cases": 564.0, + "new_cases_smoothed": 482.429, + "total_deaths": 577.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 2080.771, + "new_cases_per_million": 51.992, + "new_cases_smoothed_per_million": 44.472, + "total_deaths_per_million": 53.19, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.54, + "stringency_index": 78.7 + }, + { + "date": "2020-06-15", + "total_cases": 22962.0, + "new_cases": 390.0, + "new_cases_smoothed": 480.286, + "total_deaths": 592.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2116.722, + "new_cases_per_million": 35.952, + "new_cases_smoothed_per_million": 44.275, + "total_deaths_per_million": 54.573, + "new_deaths_per_million": 1.383, + "new_deaths_smoothed_per_million": 0.711, + "stringency_index": 78.7 + }, + { + "date": "2020-06-16", + "total_cases": 23271.0, + "new_cases": 309.0, + "new_cases_smoothed": 449.286, + "total_deaths": 605.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2145.207, + "new_cases_per_million": 28.485, + "new_cases_smoothed_per_million": 41.417, + "total_deaths_per_million": 55.771, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 0.869, + "stringency_index": 78.7 + }, + { + "date": "2020-06-17", + "total_cases": 23686.0, + "new_cases": 415.0, + "new_cases_smoothed": 467.286, + "total_deaths": 615.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 2183.463, + "new_cases_per_million": 38.256, + "new_cases_smoothed_per_million": 43.076, + "total_deaths_per_million": 56.693, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.935, + "stringency_index": 78.7 + }, + { + "date": "2020-06-18", + "total_cases": 24105.0, + "new_cases": 419.0, + "new_cases_smoothed": 471.0, + "total_deaths": 633.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 2222.088, + "new_cases_per_million": 38.625, + "new_cases_smoothed_per_million": 43.419, + "total_deaths_per_million": 58.352, + "new_deaths_per_million": 1.659, + "new_deaths_smoothed_per_million": 1.093, + "stringency_index": 78.7 + }, + { + "date": "2020-06-19", + "total_cases": 24645.0, + "new_cases": 540.0, + "new_cases_smoothed": 458.286, + "total_deaths": 635.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 2271.867, + "new_cases_per_million": 49.779, + "new_cases_smoothed_per_million": 42.246, + "total_deaths_per_million": 58.537, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.975, + "stringency_index": 78.7 + }, + { + "date": "2020-06-20", + "total_cases": 25068.0, + "new_cases": 423.0, + "new_cases_smoothed": 437.143, + "total_deaths": 647.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 2310.861, + "new_cases_per_million": 38.994, + "new_cases_smoothed_per_million": 40.297, + "total_deaths_per_million": 59.643, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 1.04, + "stringency_index": 78.7 + }, + { + "date": "2020-06-21", + "total_cases": 25778.0, + "new_cases": 710.0, + "new_cases_smoothed": 458.0, + "total_deaths": 655.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 2376.312, + "new_cases_per_million": 65.45, + "new_cases_smoothed_per_million": 42.22, + "total_deaths_per_million": 60.38, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 78.7 + }, + { + "date": "2020-06-22", + "total_cases": 26677.0, + "new_cases": 899.0, + "new_cases_smoothed": 530.714, + "total_deaths": 662.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 2459.185, + "new_cases_per_million": 82.873, + "new_cases_smoothed_per_million": 48.923, + "total_deaths_per_million": 61.026, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.922, + "stringency_index": 78.7 + }, + { + "date": "2020-06-23", + "total_cases": 27370.0, + "new_cases": 693.0, + "new_cases_smoothed": 585.571, + "total_deaths": 669.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2523.068, + "new_cases_per_million": 63.883, + "new_cases_smoothed_per_million": 53.98, + "total_deaths_per_million": 61.671, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.843, + "stringency_index": 78.7 + }, + { + "date": "2020-06-24", + "total_cases": 27936.0, + "new_cases": 566.0, + "new_cases_smoothed": 607.143, + "total_deaths": 675.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2575.244, + "new_cases_per_million": 52.176, + "new_cases_smoothed_per_million": 55.969, + "total_deaths_per_million": 62.224, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.79, + "stringency_index": 78.7 + }, + { + "date": "2020-06-25", + "total_cases": 28631.0, + "new_cases": 695.0, + "new_cases_smoothed": 646.571, + "total_deaths": 691.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2639.312, + "new_cases_per_million": 64.068, + "new_cases_smoothed_per_million": 59.603, + "total_deaths_per_million": 63.699, + "new_deaths_per_million": 1.475, + "new_deaths_smoothed_per_million": 0.764, + "stringency_index": 78.7 + }, + { + "date": "2020-06-26", + "total_cases": 29141.0, + "new_cases": 510.0, + "new_cases_smoothed": 642.286, + "total_deaths": 698.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 2686.325, + "new_cases_per_million": 47.014, + "new_cases_smoothed_per_million": 59.208, + "total_deaths_per_million": 64.344, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.83, + "stringency_index": 78.7 + }, + { + "date": "2020-06-27", + "total_cases": 29764.0, + "new_cases": 623.0, + "new_cases_smoothed": 670.857, + "total_deaths": 712.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 2743.756, + "new_cases_per_million": 57.43, + "new_cases_smoothed_per_million": 61.842, + "total_deaths_per_million": 65.635, + "new_deaths_per_million": 1.291, + "new_deaths_smoothed_per_million": 0.856, + "stringency_index": 78.7 + }, + { + "date": "2020-06-28", + "total_cases": 30619.0, + "new_cases": 855.0, + "new_cases_smoothed": 691.571, + "total_deaths": 718.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 2822.573, + "new_cases_per_million": 78.817, + "new_cases_smoothed_per_million": 63.752, + "total_deaths_per_million": 66.188, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.83, + "stringency_index": 75.0 + }, + { + "date": "2020-06-29", + "total_cases": 31373.0, + "new_cases": 754.0, + "new_cases_smoothed": 670.857, + "total_deaths": 726.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2892.079, + "new_cases_per_million": 69.507, + "new_cases_smoothed_per_million": 61.842, + "total_deaths_per_million": 66.925, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.843, + "stringency_index": 75.0 + }, + { + "date": "2020-06-30", + "total_cases": 31816.0, + "new_cases": 443.0, + "new_cases_smoothed": 635.143, + "total_deaths": 733.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2932.917, + "new_cases_per_million": 40.837, + "new_cases_smoothed_per_million": 58.55, + "total_deaths_per_million": 67.571, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.843, + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 32568.0, + "new_cases": 752.0, + "new_cases_smoothed": 661.714, + "total_deaths": 747.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 3002.239, + "new_cases_per_million": 69.322, + "new_cases_smoothed_per_million": 60.999, + "total_deaths_per_million": 68.861, + "new_deaths_per_million": 1.291, + "new_deaths_smoothed_per_million": 0.948, + "stringency_index": 75.0 + }, + { + "date": "2020-07-02", + "total_cases": 33387.0, + "new_cases": 819.0, + "new_cases_smoothed": 679.429, + "total_deaths": 754.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3077.737, + "new_cases_per_million": 75.498, + "new_cases_smoothed_per_million": 62.632, + "total_deaths_per_million": 69.507, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.83, + "stringency_index": 75.0 + }, + { + "date": "2020-07-03", + "total_cases": 34197.0, + "new_cases": 810.0, + "new_cases_smoothed": 722.286, + "total_deaths": 765.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 3152.406, + "new_cases_per_million": 74.669, + "new_cases_smoothed_per_million": 66.583, + "total_deaths_per_million": 70.521, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.882, + "stringency_index": 75.0 + }, + { + "date": "2020-07-04", + "total_cases": 35148.0, + "new_cases": 951.0, + "new_cases_smoothed": 769.143, + "total_deaths": 775.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3240.073, + "new_cases_per_million": 87.667, + "new_cases_smoothed_per_million": 70.902, + "total_deaths_per_million": 71.442, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.83, + "stringency_index": 75.0 + }, + { + "date": "2020-07-05", + "total_cases": 36184.0, + "new_cases": 1036.0, + "new_cases_smoothed": 795.0, + "total_deaths": 786.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 3335.575, + "new_cases_per_million": 95.502, + "new_cases_smoothed_per_million": 73.286, + "total_deaths_per_million": 72.456, + "new_deaths_per_million": 1.014, + "new_deaths_smoothed_per_million": 0.895, + "stringency_index": 75.0 + }, + { + "date": "2020-07-06", + "total_cases": 37425.0, + "new_cases": 1241.0, + "new_cases_smoothed": 864.571, + "total_deaths": 794.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 3449.975, + "new_cases_per_million": 114.4, + "new_cases_smoothed_per_million": 79.699, + "total_deaths_per_million": 73.194, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.895, + "stringency_index": 75.0 + }, + { + "date": "2020-07-07", + "total_cases": 38128.0, + "new_cases": 703.0, + "new_cases_smoothed": 901.714, + "total_deaths": 804.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 3514.78, + "new_cases_per_million": 64.805, + "new_cases_smoothed_per_million": 83.123, + "total_deaths_per_million": 74.116, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.935, + "stringency_index": 75.0 + }, + { + "date": "2020-07-08", + "total_cases": 38430.0, + "new_cases": 302.0, + "new_cases_smoothed": 837.429, + "total_deaths": 821.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 3542.62, + "new_cases_per_million": 27.839, + "new_cases_smoothed_per_million": 77.197, + "total_deaths_per_million": 75.683, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 0.975, + "stringency_index": 75.0 + }, + { + "date": "2020-07-09", + "total_cases": 39588.0, + "new_cases": 1158.0, + "new_cases_smoothed": 885.857, + "total_deaths": 829.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 3649.369, + "new_cases_per_million": 106.749, + "new_cases_smoothed_per_million": 81.662, + "total_deaths_per_million": 76.42, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.988, + "stringency_index": 75.0 + }, + { + "date": "2020-07-10", + "total_cases": 40790.0, + "new_cases": 1202.0, + "new_cases_smoothed": 941.857, + "total_deaths": 842.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 3760.173, + "new_cases_per_million": 110.805, + "new_cases_smoothed_per_million": 86.824, + "total_deaths_per_million": 77.619, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 1.014, + "stringency_index": 75.0 + }, + { + "date": "2020-07-11", + "total_cases": 41915.0, + "new_cases": 1125.0, + "new_cases_smoothed": 966.714, + "total_deaths": 864.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 3863.88, + "new_cases_per_million": 103.707, + "new_cases_smoothed_per_million": 89.115, + "total_deaths_per_million": 79.647, + "new_deaths_per_million": 2.028, + "new_deaths_smoothed_per_million": 1.172, + "stringency_index": 75.0 + }, + { + "date": "2020-07-12", + "total_cases": 43114.0, + "new_cases": 1199.0, + "new_cases_smoothed": 990.0, + "total_deaths": 880.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3974.408, + "new_cases_per_million": 110.528, + "new_cases_smoothed_per_million": 91.262, + "total_deaths_per_million": 81.122, + "new_deaths_per_million": 1.475, + "new_deaths_smoothed_per_million": 1.238, + "stringency_index": 75.0 + }, + { + "date": "2020-07-13", + "total_cases": 44532.0, + "new_cases": 1418.0, + "new_cases_smoothed": 1015.286, + "total_deaths": 897.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 4105.125, + "new_cases_per_million": 130.716, + "new_cases_smoothed_per_million": 93.593, + "total_deaths_per_million": 82.689, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.356, + "stringency_index": 75.0 + }, + { + "date": "2020-07-14", + "total_cases": 45506.0, + "new_cases": 974.0, + "new_cases_smoothed": 1054.0, + "total_deaths": 903.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 4194.912, + "new_cases_per_million": 89.787, + "new_cases_smoothed_per_million": 97.162, + "total_deaths_per_million": 83.242, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.304, + "stringency_index": 75.0 + }, + { + "date": "2020-07-15", + "total_cases": 46305.0, + "new_cases": 799.0, + "new_cases_smoothed": 1125.0, + "total_deaths": 910.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4268.567, + "new_cases_per_million": 73.655, + "new_cases_smoothed_per_million": 103.707, + "total_deaths_per_million": 83.887, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 1.172, + "stringency_index": 75.0 + }, + { + "date": "2020-07-16", + "total_cases": 47671.0, + "new_cases": 1366.0, + "new_cases_smoothed": 1154.714, + "total_deaths": 929.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 4394.489, + "new_cases_per_million": 125.923, + "new_cases_smoothed_per_million": 106.446, + "total_deaths_per_million": 85.639, + "new_deaths_per_million": 1.751, + "new_deaths_smoothed_per_million": 1.317, + "stringency_index": 75.0 + }, + { + "date": "2020-07-17", + "total_cases": 48743.0, + "new_cases": 1072.0, + "new_cases_smoothed": 1136.143, + "total_deaths": 941.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 4493.31, + "new_cases_per_million": 98.821, + "new_cases_smoothed_per_million": 104.734, + "total_deaths_per_million": 86.745, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 1.304, + "stringency_index": 75.0 + }, + { + "date": "2020-07-18", + "total_cases": 50113.0, + "new_cases": 1370.0, + "new_cases_smoothed": 1171.143, + "total_deaths": 942.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 4619.602, + "new_cases_per_million": 126.292, + "new_cases_smoothed_per_million": 107.96, + "total_deaths_per_million": 86.837, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 75.0 + }, + { + "date": "2020-07-19", + "total_cases": 51519.0, + "new_cases": 1406.0, + "new_cases_smoothed": 1200.714, + "total_deaths": 971.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4749.212, + "new_cases_per_million": 129.61, + "new_cases_smoothed_per_million": 110.686, + "total_deaths_per_million": 89.51, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 75.0 + }, + { + "date": "2020-07-20", + "total_cases": 52855.0, + "new_cases": 1336.0, + "new_cases_smoothed": 1189.0, + "total_deaths": 981.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 4872.37, + "new_cases_per_million": 123.157, + "new_cases_smoothed_per_million": 109.606, + "total_deaths_per_million": 90.432, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 1.106, + "stringency_index": 78.7 + }, + { + "date": "2020-07-21", + "total_cases": 53956.0, + "new_cases": 1101.0, + "new_cases_smoothed": 1207.143, + "total_deaths": 993.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 4973.864, + "new_cases_per_million": 101.494, + "new_cases_smoothed_per_million": 111.279, + "total_deaths_per_million": 91.538, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 1.185, + "stringency_index": 78.7 + }, + { + "date": "2020-07-22", + "total_cases": 54797.0, + "new_cases": 841.0, + "new_cases_smoothed": 1213.143, + "total_deaths": 999.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 5051.391, + "new_cases_per_million": 77.526, + "new_cases_smoothed_per_million": 111.832, + "total_deaths_per_million": 92.092, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.172, + "stringency_index": 78.7 + }, + { + "date": "2020-07-23", + "total_cases": 56043.0, + "new_cases": 1246.0, + "new_cases_smoothed": 1196.0, + "total_deaths": 1005.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 5166.251, + "new_cases_per_million": 114.861, + "new_cases_smoothed_per_million": 110.252, + "total_deaths_per_million": 92.645, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.001, + "stringency_index": 78.7 + }, + { + "date": "2020-07-24", + "total_cases": 57615.0, + "new_cases": 1572.0, + "new_cases_smoothed": 1267.429, + "total_deaths": 1006.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 5311.164, + "new_cases_per_million": 144.913, + "new_cases_smoothed_per_million": 116.836, + "total_deaths_per_million": 92.737, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.856, + "stringency_index": 78.7 + }, + { + "date": "2020-07-25", + "total_cases": 59077.0, + "new_cases": 1462.0, + "new_cases_smoothed": 1280.571, + "total_deaths": 1036.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 5445.937, + "new_cases_per_million": 134.773, + "new_cases_smoothed_per_million": 118.048, + "total_deaths_per_million": 95.502, + "new_deaths_per_million": 2.766, + "new_deaths_smoothed_per_million": 1.238, + "stringency_index": 78.7 + }, + { + "date": "2020-07-26", + "total_cases": 60896.0, + "new_cases": 1819.0, + "new_cases_smoothed": 1339.571, + "total_deaths": 1055.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 5613.619, + "new_cases_per_million": 167.682, + "new_cases_smoothed_per_million": 123.487, + "total_deaths_per_million": 97.254, + "new_deaths_per_million": 1.751, + "new_deaths_smoothed_per_million": 1.106, + "stringency_index": 78.7 + }, + { + "date": "2020-07-27", + "total_cases": 62908.0, + "new_cases": 2012.0, + "new_cases_smoothed": 1436.143, + "total_deaths": 1063.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 5799.093, + "new_cases_per_million": 185.474, + "new_cases_smoothed_per_million": 132.389, + "total_deaths_per_million": 97.991, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.08, + "stringency_index": 78.7 + }, + { + "date": "2020-07-28", + "total_cases": 64156.0, + "new_cases": 1248.0, + "new_cases_smoothed": 1457.143, + "total_deaths": 1083.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 5914.138, + "new_cases_per_million": 115.045, + "new_cases_smoothed_per_million": 134.325, + "total_deaths_per_million": 99.835, + "new_deaths_per_million": 1.844, + "new_deaths_smoothed_per_million": 1.185, + "stringency_index": 78.7 + }, + { + "date": "2020-07-29", + "total_cases": 64690.0, + "new_cases": 534.0, + "new_cases_smoothed": 1413.286, + "total_deaths": 1101.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 5963.364, + "new_cases_per_million": 49.226, + "new_cases_smoothed_per_million": 130.282, + "total_deaths_per_million": 101.494, + "new_deaths_per_million": 1.659, + "new_deaths_smoothed_per_million": 1.343, + "stringency_index": 78.7 + }, + { + "date": "2020-07-30", + "total_cases": 66182.0, + "new_cases": 1492.0, + "new_cases_smoothed": 1448.429, + "total_deaths": 1123.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 6100.902, + "new_cases_per_million": 137.538, + "new_cases_smoothed_per_million": 133.522, + "total_deaths_per_million": 103.522, + "new_deaths_per_million": 2.028, + "new_deaths_smoothed_per_million": 1.554, + "stringency_index": 78.7 + }, + { + "date": "2020-07-31", + "total_cases": 67915.0, + "new_cases": 1733.0, + "new_cases_smoothed": 1471.429, + "total_deaths": 1146.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 6260.656, + "new_cases_per_million": 159.754, + "new_cases_smoothed_per_million": 135.642, + "total_deaths_per_million": 105.643, + "new_deaths_per_million": 2.12, + "new_deaths_smoothed_per_million": 1.844, + "stringency_index": 78.7 + }, + { + "date": "2020-08-01", + "total_cases": 69649.0, + "new_cases": 1734.0, + "new_cases_smoothed": 1510.286, + "total_deaths": 1160.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 6420.503, + "new_cases_per_million": 159.847, + "new_cases_smoothed_per_million": 139.224, + "total_deaths_per_million": 106.933, + "new_deaths_per_million": 1.291, + "new_deaths_smoothed_per_million": 1.633, + "stringency_index": 78.7 + }, + { + "date": "2020-08-02", + "total_cases": 71415.0, + "new_cases": 1766.0, + "new_cases_smoothed": 1502.714, + "total_deaths": 1170.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 6583.299, + "new_cases_per_million": 162.796, + "new_cases_smoothed_per_million": 138.526, + "total_deaths_per_million": 107.855, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 1.514, + "stringency_index": 78.7 + }, + { + "date": "2020-08-03", + "total_cases": 72243.0, + "new_cases": 828.0, + "new_cases_smoothed": 1333.571, + "total_deaths": 1178.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 6659.628, + "new_cases_per_million": 76.328, + "new_cases_smoothed_per_million": 122.934, + "total_deaths_per_million": 108.592, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.514, + "stringency_index": 78.7 + }, + { + "date": "2020-08-04", + "total_cases": 73117.0, + "new_cases": 874.0, + "new_cases_smoothed": 1280.143, + "total_deaths": 1183.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 6740.196, + "new_cases_per_million": 80.569, + "new_cases_smoothed_per_million": 118.008, + "total_deaths_per_million": 109.053, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 1.317, + "stringency_index": 78.7 + }, + { + "date": "2020-08-05", + "total_cases": 74295.0, + "new_cases": 1178.0, + "new_cases_smoothed": 1372.143, + "total_deaths": 1213.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 6848.788, + "new_cases_per_million": 108.592, + "new_cases_smoothed_per_million": 126.489, + "total_deaths_per_million": 111.819, + "new_deaths_per_million": 2.766, + "new_deaths_smoothed_per_million": 1.475, + "stringency_index": 78.7 + }, + { + "date": "2020-08-06", + "total_cases": 75660.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1354.0, + "total_deaths": 1222.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 6974.619, + "new_cases_per_million": 125.831, + "new_cases_smoothed_per_million": 124.817, + "total_deaths_per_million": 112.648, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 1.304, + "stringency_index": 78.7 + }, + { + "date": "2020-08-07", + "total_cases": 76536.0, + "new_cases": 876.0, + "new_cases_smoothed": 1231.571, + "total_deaths": 1246.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 7055.372, + "new_cases_per_million": 80.753, + "new_cases_smoothed_per_million": 113.531, + "total_deaths_per_million": 114.861, + "new_deaths_per_million": 2.212, + "new_deaths_smoothed_per_million": 1.317, + "stringency_index": 78.7 + }, + { + "date": "2020-08-08", + "total_cases": 77709.0, + "new_cases": 1173.0, + "new_cases_smoothed": 1151.429, + "total_deaths": 1259.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 7163.504, + "new_cases_per_million": 108.131, + "new_cases_smoothed_per_million": 106.143, + "total_deaths_per_million": 116.059, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 1.304, + "stringency_index": 78.7 + }, + { + "date": "2020-08-09", + "total_cases": 78778.0, + "new_cases": 1069.0, + "new_cases_smoothed": 1051.857, + "total_deaths": 1289.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 7262.048, + "new_cases_per_million": 98.544, + "new_cases_smoothed_per_million": 96.964, + "total_deaths_per_million": 118.825, + "new_deaths_per_million": 2.766, + "new_deaths_smoothed_per_million": 1.567, + "stringency_index": 78.7 + }, + { + "date": "2020-08-10", + "total_cases": 79732.0, + "new_cases": 954.0, + "new_cases_smoothed": 1069.857, + "total_deaths": 1309.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 7349.991, + "new_cases_per_million": 87.943, + "new_cases_smoothed_per_million": 98.623, + "total_deaths_per_million": 120.668, + "new_deaths_per_million": 1.844, + "new_deaths_smoothed_per_million": 1.725, + "stringency_index": 78.7 + }, + { + "date": "2020-08-11", + "total_cases": 80499.0, + "new_cases": 767.0, + "new_cases_smoothed": 1054.571, + "total_deaths": 1328.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 7420.696, + "new_cases_per_million": 70.705, + "new_cases_smoothed_per_million": 97.214, + "total_deaths_per_million": 122.42, + "new_deaths_per_million": 1.751, + "new_deaths_smoothed_per_million": 1.91, + "stringency_index": 78.7 + }, + { + "date": "2020-08-12", + "total_cases": 81094.0, + "new_cases": 595.0, + "new_cases_smoothed": 971.286, + "total_deaths": 1346.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 7475.546, + "new_cases_per_million": 54.849, + "new_cases_smoothed_per_million": 89.537, + "total_deaths_per_million": 124.079, + "new_deaths_per_million": 1.659, + "new_deaths_smoothed_per_million": 1.751, + "stringency_index": 78.7 + }, + { + "date": "2020-08-13", + "total_cases": 82224.0, + "new_cases": 1130.0, + "new_cases_smoothed": 937.714, + "total_deaths": 1371.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 7579.713, + "new_cases_per_million": 104.168, + "new_cases_smoothed_per_million": 86.442, + "total_deaths_per_million": 126.384, + "new_deaths_per_million": 2.305, + "new_deaths_smoothed_per_million": 1.962, + "stringency_index": 78.7 + }, + { + "date": "2020-08-14", + "total_cases": 83134.0, + "new_cases": 910.0, + "new_cases_smoothed": 942.571, + "total_deaths": 1393.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 7663.6, + "new_cases_per_million": 83.887, + "new_cases_smoothed_per_million": 86.89, + "total_deaths_per_million": 128.412, + "new_deaths_per_million": 2.028, + "new_deaths_smoothed_per_million": 1.936, + "stringency_index": 78.7 + }, + { + "date": "2020-08-15", + "total_cases": 84488.0, + "new_cases": 1354.0, + "new_cases_smoothed": 968.429, + "total_deaths": 1409.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 7788.417, + "new_cases_per_million": 124.817, + "new_cases_smoothed_per_million": 89.273, + "total_deaths_per_million": 129.887, + "new_deaths_per_million": 1.475, + "new_deaths_smoothed_per_million": 1.975, + "stringency_index": 78.7 + }, + { + "date": "2020-08-16", + "total_cases": 85545.0, + "new_cases": 1057.0, + "new_cases_smoothed": 966.714, + "total_deaths": 1438.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 7885.855, + "new_cases_per_million": 97.438, + "new_cases_smoothed_per_million": 89.115, + "total_deaths_per_million": 132.56, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 1.962, + "stringency_index": 78.7 + }, + { + "date": "2020-08-17", + "total_cases": 86309.0, + "new_cases": 764.0, + "new_cases_smoothed": 939.571, + "total_deaths": 1453.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 7956.284, + "new_cases_per_million": 70.428, + "new_cases_smoothed_per_million": 86.613, + "total_deaths_per_million": 133.943, + "new_deaths_per_million": 1.383, + "new_deaths_smoothed_per_million": 1.896, + "stringency_index": 78.7 + }, + { + "date": "2020-08-18", + "total_cases": 86737.0, + "new_cases": 428.0, + "new_cases_smoothed": 891.143, + "total_deaths": 1481.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 7995.738, + "new_cases_per_million": 39.455, + "new_cases_smoothed_per_million": 82.149, + "total_deaths_per_million": 136.524, + "new_deaths_per_million": 2.581, + "new_deaths_smoothed_per_million": 2.015, + "stringency_index": 78.7 + }, + { + "date": "2020-08-19", + "total_cases": 87123.0, + "new_cases": 386.0, + "new_cases_smoothed": 861.286, + "total_deaths": 1489.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 8031.321, + "new_cases_per_million": 35.583, + "new_cases_smoothed_per_million": 79.397, + "total_deaths_per_million": 137.262, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.883, + "stringency_index": 78.7 + }, + { + "date": "2020-08-20", + "total_cases": 88127.0, + "new_cases": 1004.0, + "new_cases_smoothed": 843.286, + "total_deaths": 1501.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 8123.874, + "new_cases_per_million": 92.552, + "new_cases_smoothed_per_million": 77.737, + "total_deaths_per_million": 138.368, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 1.712, + "stringency_index": 78.7 + }, + { + "date": "2020-08-21", + "total_cases": 89010.0, + "new_cases": 883.0, + "new_cases_smoothed": 839.429, + "total_deaths": 1505.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 8205.272, + "new_cases_per_million": 81.398, + "new_cases_smoothed_per_million": 77.382, + "total_deaths_per_million": 138.736, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 1.475, + "stringency_index": 78.7 + }, + { + "date": "2020-08-22", + "total_cases": 89867.0, + "new_cases": 857.0, + "new_cases_smoothed": 768.429, + "total_deaths": 1533.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 8284.273, + "new_cases_per_million": 79.001, + "new_cases_smoothed_per_million": 70.837, + "total_deaths_per_million": 141.318, + "new_deaths_per_million": 2.581, + "new_deaths_smoothed_per_million": 1.633, + "stringency_index": 75.93 + }, + { + "date": "2020-08-23", + "total_cases": 90561.0, + "new_cases": 694.0, + "new_cases_smoothed": 716.571, + "total_deaths": 1554.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 8348.249, + "new_cases_per_million": 63.975, + "new_cases_smoothed_per_million": 66.056, + "total_deaths_per_million": 143.253, + "new_deaths_per_million": 1.936, + "new_deaths_smoothed_per_million": 1.528, + "stringency_index": 75.93 + }, + { + "date": "2020-08-24", + "total_cases": 91161.0, + "new_cases": 600.0, + "new_cases_smoothed": 693.143, + "total_deaths": 1567.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 8403.559, + "new_cases_per_million": 55.31, + "new_cases_smoothed_per_million": 63.896, + "total_deaths_per_million": 144.452, + "new_deaths_per_million": 1.198, + "new_deaths_smoothed_per_million": 1.501, + "stringency_index": 75.93 + }, + { + "date": "2020-08-25", + "total_cases": 91608.0, + "new_cases": 447.0, + "new_cases_smoothed": 695.857, + "total_deaths": 1573.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 8444.765, + "new_cases_per_million": 41.206, + "new_cases_smoothed_per_million": 64.147, + "total_deaths_per_million": 145.005, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.212, + "stringency_index": 75.93 + }, + { + "date": "2020-08-26", + "total_cases": 92217.0, + "new_cases": 609.0, + "new_cases_smoothed": 727.714, + "total_deaths": 1585.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 8500.905, + "new_cases_per_million": 56.14, + "new_cases_smoothed_per_million": 67.083, + "total_deaths_per_million": 146.111, + "new_deaths_per_million": 1.106, + "new_deaths_smoothed_per_million": 1.264, + "stringency_index": 75.93 + }, + { + "date": "2020-08-27", + "total_cases": 92557.0, + "new_cases": 340.0, + "new_cases_smoothed": 632.857, + "total_deaths": 1613.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 8532.247, + "new_cases_per_million": 31.342, + "new_cases_smoothed_per_million": 58.339, + "total_deaths_per_million": 148.692, + "new_deaths_per_million": 2.581, + "new_deaths_smoothed_per_million": 1.475, + "stringency_index": 75.93 + }, + { + "date": "2020-08-28", + "total_cases": 92964.0, + "new_cases": 407.0, + "new_cases_smoothed": 564.857, + "total_deaths": 1630.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 8569.766, + "new_cases_per_million": 37.519, + "new_cases_smoothed_per_million": 52.071, + "total_deaths_per_million": 150.259, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.646, + "stringency_index": 75.93 + }, + { + "date": "2020-08-29", + "total_cases": 93390.0, + "new_cases": 426.0, + "new_cases_smoothed": 503.286, + "total_deaths": 1648.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 8609.036, + "new_cases_per_million": 39.27, + "new_cases_smoothed_per_million": 46.395, + "total_deaths_per_million": 151.919, + "new_deaths_per_million": 1.659, + "new_deaths_smoothed_per_million": 1.514, + "stringency_index": 75.93 + }, + { + "date": "2020-08-30", + "total_cases": 93732.0, + "new_cases": 342.0, + "new_cases_smoothed": 453.0, + "total_deaths": 1673.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 8640.563, + "new_cases_per_million": 31.527, + "new_cases_smoothed_per_million": 41.759, + "total_deaths_per_million": 154.223, + "new_deaths_per_million": 2.305, + "new_deaths_smoothed_per_million": 1.567, + "stringency_index": 75.93 + }, + { + "date": "2020-08-31", + "total_cases": 94241.0, + "new_cases": 509.0, + "new_cases_smoothed": 440.0, + "total_deaths": 1681.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 8687.485, + "new_cases_per_million": 46.922, + "new_cases_smoothed_per_million": 40.561, + "total_deaths_per_million": 154.961, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.501 + }, + { + "date": "2020-09-01", + "total_cases": 94715.0, + "new_cases": 474.0, + "new_cases_smoothed": 443.857, + "total_deaths": 1710.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 8731.18, + "new_cases_per_million": 43.695, + "new_cases_smoothed_per_million": 40.916, + "total_deaths_per_million": 157.634, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 1.804 + }, + { + "date": "2020-09-02", + "total_cases": 94979.0, + "new_cases": 264.0, + "new_cases_smoothed": 394.571, + "total_deaths": 1738.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 8755.516, + "new_cases_per_million": 24.336, + "new_cases_smoothed_per_million": 36.373, + "total_deaths_per_million": 160.215, + "new_deaths_per_million": 2.581, + "new_deaths_smoothed_per_million": 2.015 + }, + { + "date": "2020-09-03", + "total_cases": 95627.0, + "new_cases": 648.0, + "new_cases_smoothed": 438.571, + "total_deaths": 1765.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 8815.251, + "new_cases_per_million": 59.735, + "new_cases_smoothed_per_million": 40.429, + "total_deaths_per_million": 162.704, + "new_deaths_per_million": 2.489, + "new_deaths_smoothed_per_million": 2.002 + }, + { + "date": "2020-09-04", + "total_cases": 96629.0, + "new_cases": 1002.0, + "new_cases_smoothed": 523.571, + "total_deaths": 1801.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 8907.619, + "new_cases_per_million": 92.368, + "new_cases_smoothed_per_million": 48.265, + "total_deaths_per_million": 166.023, + "new_deaths_per_million": 3.319, + "new_deaths_smoothed_per_million": 2.252 + }, + { + "date": "2020-09-05", + "total_cases": 96629.0, + "new_cases": 0.0, + "new_cases_smoothed": 462.714, + "total_deaths": 1801.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 8907.619, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.655, + "total_deaths_per_million": 166.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.015 + } + ] + }, + "ECU": { + "continent": "South America", + "location": "Ecuador", + "population": 17643060.0, + "population_density": 66.939, + "median_age": 28.1, + "aged_65_older": 7.104, + "aged_70_older": 4.458, + "gdp_per_capita": 10581.936, + "extreme_poverty": 3.6, + "cardiovasc_death_rate": 140.448, + "diabetes_prevalence": 5.55, + "female_smokers": 2.0, + "male_smokers": 12.3, + "handwashing_facilities": 80.635, + "hospital_beds_per_thousand": 1.5, + "life_expectancy": 77.01, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-02", + "total_cases": 6.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.34, + "new_cases_per_million": 0.283, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-03", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.397, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-05", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.567, + "new_cases_per_million": 0.17, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-06", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.737, + "new_cases_per_million": 0.17, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 1.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 1.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-09", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.794, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-10", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.85, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-11", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.964, + "new_cases_per_million": 0.113, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-14", + "total_cases": 23.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.304, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 36.11 + }, + { + "date": "2020-03-15", + "total_cases": 28.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.587, + "new_cases_per_million": 0.283, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.113, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 55.56 + }, + { + "date": "2020-03-16", + "total_cases": 37.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.097, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.113, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 55.56 + }, + { + "date": "2020-03-17", + "total_cases": 58.0, + "new_cases": 21.0, + "new_cases_smoothed": 6.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.287, + "new_cases_per_million": 1.19, + "new_cases_smoothed_per_million": 0.348, + "total_deaths_per_million": 0.113, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-03-18", + "total_cases": 111.0, + "new_cases": 53.0, + "new_cases_smoothed": 13.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.291, + "new_cases_per_million": 3.004, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.113, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "total_tests": 480.0, + "total_tests_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-19", + "total_cases": 168.0, + "new_cases": 57.0, + "new_cases_smoothed": 21.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9.522, + "new_cases_per_million": 3.231, + "new_cases_smoothed_per_million": 1.223, + "total_deaths_per_million": 0.17, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 192.0, + "total_tests": 672.0, + "total_tests_per_thousand": 0.038, + "new_tests_per_thousand": 0.011, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-20", + "total_cases": 199.0, + "new_cases": 31.0, + "new_cases_smoothed": 26.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.279, + "new_cases_per_million": 1.757, + "new_cases_smoothed_per_million": 1.474, + "total_deaths_per_million": 0.17, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 287.0, + "total_tests": 959.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.016, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-21", + "total_cases": 426.0, + "new_cases": 227.0, + "new_cases_smoothed": 57.571, + "total_deaths": 7.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 24.145, + "new_cases_per_million": 12.866, + "new_cases_smoothed_per_million": 3.263, + "total_deaths_per_million": 0.397, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 222.0, + "total_tests": 1181.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.013, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-22", + "total_cases": 532.0, + "new_cases": 106.0, + "new_cases_smoothed": 72.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 30.153, + "new_cases_per_million": 6.008, + "new_cases_smoothed_per_million": 4.081, + "total_deaths_per_million": 0.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 480.0, + "total_tests": 1661.0, + "total_tests_per_thousand": 0.094, + "new_tests_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-23", + "total_cases": 789.0, + "new_cases": 257.0, + "new_cases_smoothed": 107.429, + "total_deaths": 14.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 44.72, + "new_cases_per_million": 14.567, + "new_cases_smoothed_per_million": 6.089, + "total_deaths_per_million": 0.794, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 411.0, + "total_tests": 2072.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.023, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-24", + "total_cases": 981.0, + "new_cases": 192.0, + "new_cases_smoothed": 131.857, + "total_deaths": 18.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 55.603, + "new_cases_per_million": 10.882, + "new_cases_smoothed_per_million": 7.474, + "total_deaths_per_million": 1.02, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 235.0, + "total_tests": 2307.0, + "total_tests_per_thousand": 0.131, + "new_tests_per_thousand": 0.013, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-25", + "total_cases": 1082.0, + "new_cases": 101.0, + "new_cases_smoothed": 138.714, + "total_deaths": 27.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 61.327, + "new_cases_per_million": 5.725, + "new_cases_smoothed_per_million": 7.862, + "total_deaths_per_million": 1.53, + "new_deaths_per_million": 0.51, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 291.0, + "total_tests": 2598.0, + "total_tests_per_thousand": 0.147, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 303.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 1211.0, + "new_cases": 129.0, + "new_cases_smoothed": 149.0, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 68.639, + "new_cases_per_million": 7.312, + "new_cases_smoothed_per_million": 8.445, + "total_deaths_per_million": 1.644, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 527.0, + "total_tests": 3125.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-27", + "total_cases": 1403.0, + "new_cases": 192.0, + "new_cases_smoothed": 172.0, + "total_deaths": 34.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 79.521, + "new_cases_per_million": 10.882, + "new_cases_smoothed_per_million": 9.749, + "total_deaths_per_million": 1.927, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 443.0, + "total_tests": 3568.0, + "total_tests_per_thousand": 0.202, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 373.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-28", + "total_cases": 1627.0, + "new_cases": 224.0, + "new_cases_smoothed": 171.571, + "total_deaths": 41.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 92.218, + "new_cases_per_million": 12.696, + "new_cases_smoothed_per_million": 9.725, + "total_deaths_per_million": 2.324, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 367.0, + "total_tests": 3935.0, + "total_tests_per_thousand": 0.223, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 1835.0, + "new_cases": 208.0, + "new_cases_smoothed": 186.143, + "total_deaths": 48.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 104.007, + "new_cases_per_million": 11.789, + "new_cases_smoothed_per_million": 10.55, + "total_deaths_per_million": 2.721, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.332, + "new_tests": 188.0, + "total_tests": 4123.0, + "total_tests_per_thousand": 0.234, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 1890.0, + "new_cases": 55.0, + "new_cases_smoothed": 157.286, + "total_deaths": 58.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 107.124, + "new_cases_per_million": 3.117, + "new_cases_smoothed_per_million": 8.915, + "total_deaths_per_million": 3.287, + "new_deaths_per_million": 0.567, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 96.0, + "total_tests": 4219.0, + "total_tests_per_thousand": 0.239, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 307.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 1966.0, + "new_cases": 76.0, + "new_cases_smoothed": 140.714, + "total_deaths": 62.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 111.432, + "new_cases_per_million": 4.308, + "new_cases_smoothed_per_million": 7.976, + "total_deaths_per_million": 3.514, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 609.0, + "total_tests": 4828.0, + "total_tests_per_thousand": 0.274, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 2302.0, + "new_cases": 336.0, + "new_cases_smoothed": 174.286, + "total_deaths": 79.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 130.476, + "new_cases_per_million": 19.044, + "new_cases_smoothed_per_million": 9.878, + "total_deaths_per_million": 4.478, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 0.421, + "new_tests": 763.0, + "total_tests": 5591.0, + "total_tests_per_thousand": 0.317, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 428.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 2758.0, + "new_cases": 456.0, + "new_cases_smoothed": 221.0, + "total_deaths": 120.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 156.322, + "new_cases_per_million": 25.846, + "new_cases_smoothed_per_million": 12.526, + "total_deaths_per_million": 6.802, + "new_deaths_per_million": 2.324, + "new_deaths_smoothed_per_million": 0.737, + "new_tests": 711.0, + "total_tests": 6302.0, + "total_tests_per_thousand": 0.357, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 454.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 3163.0, + "new_cases": 405.0, + "new_cases_smoothed": 251.429, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 179.277, + "new_cases_per_million": 22.955, + "new_cases_smoothed_per_million": 14.251, + "total_deaths_per_million": 6.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.696, + "new_tests": 354.0, + "total_tests": 6656.0, + "total_tests_per_thousand": 0.377, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 441.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 3368.0, + "new_cases": 205.0, + "new_cases_smoothed": 248.714, + "total_deaths": 145.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 190.897, + "new_cases_per_million": 11.619, + "new_cases_smoothed_per_million": 14.097, + "total_deaths_per_million": 8.219, + "new_deaths_per_million": 1.417, + "new_deaths_smoothed_per_million": 0.842, + "new_tests": 178.0, + "total_tests": 6834.0, + "total_tests_per_thousand": 0.387, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 414.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 3465.0, + "new_cases": 97.0, + "new_cases_smoothed": 232.857, + "total_deaths": 172.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 196.395, + "new_cases_per_million": 5.498, + "new_cases_smoothed_per_million": 13.198, + "total_deaths_per_million": 9.749, + "new_deaths_per_million": 1.53, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 415.0, + "total_tests": 7249.0, + "total_tests_per_thousand": 0.411, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 447.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 3646.0, + "new_cases": 181.0, + "new_cases_smoothed": 250.857, + "total_deaths": 180.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 206.653, + "new_cases_per_million": 10.259, + "new_cases_smoothed_per_million": 14.218, + "total_deaths_per_million": 10.202, + "new_deaths_per_million": 0.453, + "new_deaths_smoothed_per_million": 0.988, + "new_tests": 341.0, + "total_tests": 7590.0, + "total_tests_per_thousand": 0.43, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 482.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 3747.0, + "new_cases": 101.0, + "new_cases_smoothed": 254.429, + "total_deaths": 191.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 212.378, + "new_cases_per_million": 5.725, + "new_cases_smoothed_per_million": 14.421, + "total_deaths_per_million": 10.826, + "new_deaths_per_million": 0.623, + "new_deaths_smoothed_per_million": 1.045, + "new_tests": 361.0, + "total_tests": 7951.0, + "total_tests_per_thousand": 0.451, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 446.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 3995.0, + "new_cases": 248.0, + "new_cases_smoothed": 241.857, + "total_deaths": 220.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 226.435, + "new_cases_per_million": 14.057, + "new_cases_smoothed_per_million": 13.708, + "total_deaths_per_million": 12.469, + "new_deaths_per_million": 1.644, + "new_deaths_smoothed_per_million": 1.142, + "new_tests": 707.0, + "total_tests": 8658.0, + "total_tests_per_thousand": 0.491, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 438.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 4450.0, + "new_cases": 455.0, + "new_cases_smoothed": 241.714, + "total_deaths": 242.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 252.224, + "new_cases_per_million": 25.789, + "new_cases_smoothed_per_million": 13.7, + "total_deaths_per_million": 13.716, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 0.988, + "new_tests": 981.0, + "total_tests": 9639.0, + "total_tests_per_thousand": 0.546, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 477.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 4965.0, + "new_cases": 515.0, + "new_cases_smoothed": 257.429, + "total_deaths": 272.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 281.414, + "new_cases_per_million": 29.19, + "new_cases_smoothed_per_million": 14.591, + "total_deaths_per_million": 15.417, + "new_deaths_per_million": 1.7, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 4018.0, + "total_tests": 13657.0, + "total_tests_per_thousand": 0.774, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1000.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 7161.0, + "new_cases": 2196.0, + "new_cases_smoothed": 541.857, + "total_deaths": 297.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 405.882, + "new_cases_per_million": 124.468, + "new_cases_smoothed_per_million": 30.712, + "total_deaths_per_million": 16.834, + "new_deaths_per_million": 1.417, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 544.0, + "total_tests": 14201.0, + "total_tests_per_thousand": 0.805, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1052.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 7257.0, + "new_cases": 96.0, + "new_cases_smoothed": 541.714, + "total_deaths": 315.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 411.323, + "new_cases_per_million": 5.441, + "new_cases_smoothed_per_million": 30.704, + "total_deaths_per_million": 17.854, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.158, + "new_tests": 383.0, + "total_tests": 14584.0, + "total_tests_per_thousand": 0.827, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 7466.0, + "new_cases": 209.0, + "new_cases_smoothed": 545.714, + "total_deaths": 333.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 423.169, + "new_cases_per_million": 11.846, + "new_cases_smoothed_per_million": 30.931, + "total_deaths_per_million": 18.874, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.239, + "new_tests": 242.0, + "total_tests": 14826.0, + "total_tests_per_thousand": 0.84, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1034.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 7529.0, + "new_cases": 63.0, + "new_cases_smoothed": 540.286, + "total_deaths": 355.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 426.74, + "new_cases_per_million": 3.571, + "new_cases_smoothed_per_million": 30.623, + "total_deaths_per_million": 20.121, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 1.328, + "new_tests": 272.0, + "total_tests": 15098.0, + "total_tests_per_thousand": 0.856, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1021.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 7603.0, + "new_cases": 74.0, + "new_cases_smoothed": 515.429, + "total_deaths": 355.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 430.934, + "new_cases_per_million": 4.194, + "new_cases_smoothed_per_million": 29.214, + "total_deaths_per_million": 20.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.093, + "new_tests": 516.0, + "total_tests": 15614.0, + "total_tests_per_thousand": 0.885, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 994.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 7858.0, + "new_cases": 255.0, + "new_cases_smoothed": 486.857, + "total_deaths": 388.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 445.388, + "new_cases_per_million": 14.453, + "new_cases_smoothed_per_million": 27.595, + "total_deaths_per_million": 21.992, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 1.182, + "new_tests": 523.0, + "total_tests": 16137.0, + "total_tests_per_thousand": 0.915, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 928.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 8225.0, + "new_cases": 367.0, + "new_cases_smoothed": 465.714, + "total_deaths": 403.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 466.189, + "new_cases_per_million": 20.801, + "new_cases_smoothed_per_million": 26.396, + "total_deaths_per_million": 22.842, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 1.061, + "new_tests": 388.0, + "total_tests": 16525.0, + "total_tests_per_thousand": 0.937, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 410.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 8450.0, + "new_cases": 225.0, + "new_cases_smoothed": 184.143, + "total_deaths": 421.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 478.942, + "new_cases_per_million": 12.753, + "new_cases_smoothed_per_million": 10.437, + "total_deaths_per_million": 23.862, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 988.0, + "total_tests": 17513.0, + "total_tests_per_thousand": 0.993, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 9022.0, + "new_cases": 572.0, + "new_cases_smoothed": 252.143, + "total_deaths": 456.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 511.363, + "new_cases_per_million": 32.421, + "new_cases_smoothed_per_million": 14.291, + "total_deaths_per_million": 25.846, + "new_deaths_per_million": 1.984, + "new_deaths_smoothed_per_million": 1.142, + "new_tests": 920.0, + "total_tests": 18433.0, + "total_tests_per_thousand": 1.045, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 9468.0, + "new_cases": 446.0, + "new_cases_smoothed": 286.0, + "total_deaths": 474.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 536.642, + "new_cases_per_million": 25.279, + "new_cases_smoothed_per_million": 16.21, + "total_deaths_per_million": 26.866, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.142, + "new_tests": 1427.0, + "total_tests": 19860.0, + "total_tests_per_thousand": 1.126, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 719.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 10128.0, + "new_cases": 660.0, + "new_cases_smoothed": 371.286, + "total_deaths": 507.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 574.05, + "new_cases_per_million": 37.408, + "new_cases_smoothed_per_million": 21.044, + "total_deaths_per_million": 28.737, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 620.0, + "total_tests": 20480.0, + "total_tests_per_thousand": 1.161, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 769.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 10398.0, + "new_cases": 270.0, + "new_cases_smoothed": 399.286, + "total_deaths": 520.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 589.354, + "new_cases_per_million": 15.303, + "new_cases_smoothed_per_million": 22.631, + "total_deaths_per_million": 29.473, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.336, + "new_tests": 1127.0, + "total_tests": 21607.0, + "total_tests_per_thousand": 1.225, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 10850.0, + "new_cases": 452.0, + "new_cases_smoothed": 427.429, + "total_deaths": 537.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 614.973, + "new_cases_per_million": 25.619, + "new_cases_smoothed_per_million": 24.226, + "total_deaths_per_million": 30.437, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 1.206, + "new_tests": 1776.0, + "total_tests": 23383.0, + "total_tests_per_thousand": 1.325, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 1035.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 11183.0, + "new_cases": 333.0, + "new_cases_smoothed": 422.571, + "total_deaths": 560.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 633.847, + "new_cases_per_million": 18.874, + "new_cases_smoothed_per_million": 23.951, + "total_deaths_per_million": 31.741, + "new_deaths_per_million": 1.304, + "new_deaths_smoothed_per_million": 1.271, + "new_tests_smoothed": 1257.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 11183.0, + "new_cases": 0.0, + "new_cases_smoothed": 390.429, + "total_deaths": 576.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 633.847, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.129, + "total_deaths_per_million": 32.647, + "new_deaths_per_million": 0.907, + "new_deaths_smoothed_per_million": 1.255, + "new_tests_smoothed": 1392.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 11183.0, + "new_cases": 0.0, + "new_cases_smoothed": 308.714, + "total_deaths": 576.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 633.847, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.498, + "total_deaths_per_million": 32.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.972, + "new_tests_smoothed": 1538.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 22719.0, + "new_cases": 11536.0, + "new_cases_smoothed": 1893.0, + "total_deaths": 576.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 1287.702, + "new_cases_per_million": 653.855, + "new_cases_smoothed_per_million": 107.294, + "total_deaths_per_million": 32.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.826, + "total_tests": 31134.0, + "total_tests_per_thousand": 1.765, + "new_tests_smoothed": 1611.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 23240.0, + "new_cases": 521.0, + "new_cases_smoothed": 1873.143, + "total_deaths": 663.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 1317.232, + "new_cases_per_million": 29.53, + "new_cases_smoothed_per_million": 106.169, + "total_deaths_per_million": 37.579, + "new_deaths_per_million": 4.931, + "new_deaths_smoothed_per_million": 1.263, + "new_tests": 1326.0, + "total_tests": 32460.0, + "total_tests_per_thousand": 1.84, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1711.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 24258.0, + "new_cases": 1018.0, + "new_cases_smoothed": 1980.0, + "total_deaths": 871.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 50.143, + "total_cases_per_million": 1374.932, + "new_cases_per_million": 57.7, + "new_cases_smoothed_per_million": 112.225, + "total_deaths_per_million": 49.368, + "new_deaths_per_million": 11.789, + "new_deaths_smoothed_per_million": 2.842, + "new_tests": 1224.0, + "total_tests": 33684.0, + "total_tests_per_thousand": 1.909, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1725.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 24675.0, + "new_cases": 417.0, + "new_cases_smoothed": 1975.0, + "total_deaths": 883.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 1398.567, + "new_cases_per_million": 23.635, + "new_cases_smoothed_per_million": 111.942, + "total_deaths_per_million": 50.048, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 663.0, + "total_tests": 34347.0, + "total_tests_per_thousand": 1.947, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1566.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 24934.0, + "new_cases": 259.0, + "new_cases_smoothed": 1964.429, + "total_deaths": 900.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 48.571, + "total_cases_per_million": 1413.247, + "new_cases_per_million": 14.68, + "new_cases_smoothed_per_million": 111.343, + "total_deaths_per_million": 51.012, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 2.753, + "new_tests": 2714.0, + "total_tests": 37061.0, + "total_tests_per_thousand": 2.101, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 1677.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 26336.0, + "new_cases": 1402.0, + "new_cases_smoothed": 2164.714, + "total_deaths": 1063.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 69.571, + "total_cases_per_million": 1492.712, + "new_cases_per_million": 79.465, + "new_cases_smoothed_per_million": 122.695, + "total_deaths_per_million": 60.25, + "new_deaths_per_million": 9.239, + "new_deaths_smoothed_per_million": 3.943, + "new_tests": 1863.0, + "total_tests": 38924.0, + "total_tests_per_thousand": 2.206, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1666.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 27464.0, + "new_cases": 1128.0, + "new_cases_smoothed": 2325.857, + "total_deaths": 1371.0, + "new_deaths": 308.0, + "new_deaths_smoothed": 113.571, + "total_cases_per_million": 1556.646, + "new_cases_per_million": 63.934, + "new_cases_smoothed_per_million": 131.828, + "total_deaths_per_million": 77.708, + "new_deaths_per_million": 17.457, + "new_deaths_smoothed_per_million": 6.437, + "new_tests": 4803.0, + "total_tests": 43727.0, + "total_tests_per_thousand": 2.478, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 2076.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 29538.0, + "new_cases": 2074.0, + "new_cases_smoothed": 974.143, + "total_deaths": 1564.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 141.143, + "total_cases_per_million": 1674.199, + "new_cases_per_million": 117.553, + "new_cases_smoothed_per_million": 55.214, + "total_deaths_per_million": 88.647, + "new_deaths_per_million": 10.939, + "new_deaths_smoothed_per_million": 8.0, + "new_tests": 2533.0, + "total_tests": 46260.0, + "total_tests_per_thousand": 2.622, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 2161.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-05", + "total_cases": 31881.0, + "new_cases": 2343.0, + "new_cases_smoothed": 1234.429, + "total_deaths": 1569.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 129.429, + "total_cases_per_million": 1806.999, + "new_cases_per_million": 132.8, + "new_cases_smoothed_per_million": 69.967, + "total_deaths_per_million": 88.93, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 7.336, + "new_tests_smoothed": 1729.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-06", + "total_cases": 31881.0, + "new_cases": 0.0, + "new_cases_smoothed": 1089.0, + "total_deaths": 1569.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 99.714, + "total_cases_per_million": 1806.999, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.724, + "total_deaths_per_million": 88.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.652, + "total_tests": 42870.0, + "total_tests_per_thousand": 2.43, + "new_tests_smoothed": 1312.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-07", + "total_cases": 29420.0, + "new_cases": -2461.0, + "new_cases_smoothed": 677.857, + "total_deaths": 1618.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 105.0, + "total_cases_per_million": 1667.511, + "new_cases_per_million": -139.488, + "new_cases_smoothed_per_million": 38.421, + "total_deaths_per_million": 91.707, + "new_deaths_per_million": 2.777, + "new_deaths_smoothed_per_million": 5.951, + "new_tests": 1503.0, + "total_tests": 44373.0, + "total_tests_per_thousand": 2.515, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-08", + "total_cases": 30298.0, + "new_cases": 878.0, + "new_cases_smoothed": 766.286, + "total_deaths": 1654.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 107.714, + "total_cases_per_million": 1717.276, + "new_cases_per_million": 49.765, + "new_cases_smoothed_per_million": 43.433, + "total_deaths_per_million": 93.748, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 6.105, + "new_tests": -3743.0, + "total_tests": 40630.0, + "total_tests_per_thousand": 2.303, + "new_tests_per_thousand": -0.212, + "new_tests_smoothed": 510.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-09", + "total_cases": 28818.0, + "new_cases": -1480.0, + "new_cases_smoothed": 354.571, + "total_deaths": 1704.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 91.571, + "total_cases_per_million": 1633.39, + "new_cases_per_million": -83.886, + "new_cases_smoothed_per_million": 20.097, + "total_deaths_per_million": 96.582, + "new_deaths_per_million": 2.834, + "new_deaths_smoothed_per_million": 5.19, + "new_tests": 871.0, + "total_tests": 41501.0, + "total_tests_per_thousand": 2.352, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-10", + "total_cases": 29071.0, + "new_cases": 253.0, + "new_cases_smoothed": 229.571, + "total_deaths": 1717.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 1647.73, + "new_cases_per_million": 14.34, + "new_cases_smoothed_per_million": 13.012, + "total_deaths_per_million": 97.319, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 1814.0, + "total_tests": 43315.0, + "total_tests_per_thousand": 2.455, + "new_tests_per_thousand": 0.103, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-11", + "total_cases": 29559.0, + "new_cases": 488.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2127.0, + "new_deaths": 410.0, + "new_deaths_smoothed": 80.429, + "total_cases_per_million": 1675.39, + "new_cases_per_million": 27.66, + "new_cases_smoothed_per_million": 0.17, + "total_deaths_per_million": 120.557, + "new_deaths_per_million": 23.239, + "new_deaths_smoothed_per_million": 4.559, + "new_tests": -1377.0, + "total_tests": 41938.0, + "total_tests_per_thousand": 2.377, + "new_tests_per_thousand": -0.078, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-12", + "total_cases": 29509.0, + "new_cases": -50.0, + "new_cases_smoothed": -338.857, + "total_deaths": 2145.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 82.286, + "total_cases_per_million": 1672.556, + "new_cases_per_million": -2.834, + "new_cases_smoothed_per_million": -19.206, + "total_deaths_per_million": 121.578, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 4.664, + "new_tests": 2250.0, + "total_tests": 44188.0, + "total_tests_per_thousand": 2.505, + "new_tests_per_thousand": 0.128, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-13", + "total_cases": 30419.0, + "new_cases": 910.0, + "new_cases_smoothed": -208.857, + "total_deaths": 2327.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 108.286, + "total_cases_per_million": 1724.134, + "new_cases_per_million": 51.578, + "new_cases_smoothed_per_million": -11.838, + "total_deaths_per_million": 131.893, + "new_deaths_per_million": 10.316, + "new_deaths_smoothed_per_million": 6.138, + "new_tests": 97.0, + "total_tests": 44285.0, + "total_tests_per_thousand": 2.51, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-14", + "total_cases": 30486.0, + "new_cases": 67.0, + "new_cases_smoothed": 152.286, + "total_deaths": 2334.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 102.286, + "total_cases_per_million": 1727.932, + "new_cases_per_million": 3.798, + "new_cases_smoothed_per_million": 8.631, + "total_deaths_per_million": 132.29, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 5.798, + "new_tests": 64.0, + "total_tests": 44349.0, + "total_tests_per_thousand": 2.514, + "new_tests_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-15", + "total_cases": 30502.0, + "new_cases": 16.0, + "new_cases_smoothed": 29.143, + "total_deaths": 2338.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 97.714, + "total_cases_per_million": 1728.838, + "new_cases_per_million": 0.907, + "new_cases_smoothed_per_million": 1.652, + "total_deaths_per_million": 132.517, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 5.538, + "new_tests": 3532.0, + "total_tests": 47881.0, + "total_tests_per_thousand": 2.714, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 1036.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-16", + "total_cases": 31467.0, + "new_cases": 965.0, + "new_cases_smoothed": 378.429, + "total_deaths": 2594.0, + "new_deaths": 256.0, + "new_deaths_smoothed": 127.143, + "total_cases_per_million": 1783.534, + "new_cases_per_million": 54.696, + "new_cases_smoothed_per_million": 21.449, + "total_deaths_per_million": 147.027, + "new_deaths_per_million": 14.51, + "new_deaths_smoothed_per_million": 7.206, + "new_tests": 2139.0, + "total_tests": 50020.0, + "total_tests_per_thousand": 2.835, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 1217.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-17", + "total_cases": 32763.0, + "new_cases": 1296.0, + "new_cases_smoothed": 527.429, + "total_deaths": 2688.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 138.714, + "total_cases_per_million": 1856.991, + "new_cases_per_million": 73.457, + "new_cases_smoothed_per_million": 29.894, + "total_deaths_per_million": 152.355, + "new_deaths_per_million": 5.328, + "new_deaths_smoothed_per_million": 7.862, + "new_tests": 1375.0, + "total_tests": 51395.0, + "total_tests_per_thousand": 2.913, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-18", + "total_cases": 33182.0, + "new_cases": 419.0, + "new_cases_smoothed": 517.571, + "total_deaths": 2736.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 87.0, + "total_cases_per_million": 1880.74, + "new_cases_per_million": 23.749, + "new_cases_smoothed_per_million": 29.336, + "total_deaths_per_million": 155.075, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 4.931, + "new_tests": 1317.0, + "total_tests": 52712.0, + "total_tests_per_thousand": 2.988, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1539.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-19", + "total_cases": 33582.0, + "new_cases": 400.0, + "new_cases_smoothed": 581.857, + "total_deaths": 2799.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 93.429, + "total_cases_per_million": 1903.411, + "new_cases_per_million": 22.672, + "new_cases_smoothed_per_million": 32.979, + "total_deaths_per_million": 158.646, + "new_deaths_per_million": 3.571, + "new_deaths_smoothed_per_million": 5.295, + "new_tests": 1101.0, + "total_tests": 53813.0, + "total_tests_per_thousand": 3.05, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1375.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-20", + "total_cases": 34151.0, + "new_cases": 569.0, + "new_cases_smoothed": 533.143, + "total_deaths": 2839.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 73.143, + "total_cases_per_million": 1935.662, + "new_cases_per_million": 32.251, + "new_cases_smoothed_per_million": 30.218, + "total_deaths_per_million": 160.913, + "new_deaths_per_million": 2.267, + "new_deaths_smoothed_per_million": 4.146, + "new_tests": 1571.0, + "total_tests": 55384.0, + "total_tests_per_thousand": 3.139, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 1586.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-21", + "total_cases": 34854.0, + "new_cases": 703.0, + "new_cases_smoothed": 624.0, + "total_deaths": 2888.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 1975.508, + "new_cases_per_million": 39.846, + "new_cases_smoothed_per_million": 35.368, + "total_deaths_per_million": 163.69, + "new_deaths_per_million": 2.777, + "new_deaths_smoothed_per_million": 4.486, + "new_tests": 1742.0, + "total_tests": 57126.0, + "total_tests_per_thousand": 3.238, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 1825.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-22", + "total_cases": 35306.0, + "new_cases": 452.0, + "new_cases_smoothed": 686.286, + "total_deaths": 2939.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 85.857, + "total_cases_per_million": 2001.127, + "new_cases_per_million": 25.619, + "new_cases_smoothed_per_million": 38.898, + "total_deaths_per_million": 166.581, + "new_deaths_per_million": 2.891, + "new_deaths_smoothed_per_million": 4.866, + "new_tests": 2409.0, + "total_tests": 59535.0, + "total_tests_per_thousand": 3.374, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 1665.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-23", + "total_cases": 35828.0, + "new_cases": 522.0, + "new_cases_smoothed": 623.0, + "total_deaths": 3056.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 66.0, + "total_cases_per_million": 2030.713, + "new_cases_per_million": 29.587, + "new_cases_smoothed_per_million": 35.311, + "total_deaths_per_million": 173.213, + "new_deaths_per_million": 6.632, + "new_deaths_smoothed_per_million": 3.741, + "new_tests": 1161.0, + "total_tests": 60696.0, + "total_tests_per_thousand": 3.44, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1525.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-24", + "total_cases": 36258.0, + "new_cases": 430.0, + "new_cases_smoothed": 499.286, + "total_deaths": 3096.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 2055.086, + "new_cases_per_million": 24.372, + "new_cases_smoothed_per_million": 28.299, + "total_deaths_per_million": 175.48, + "new_deaths_per_million": 2.267, + "new_deaths_smoothed_per_million": 3.304, + "new_tests": 1231.0, + "total_tests": 61927.0, + "total_tests_per_thousand": 3.51, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1505.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-25", + "total_cases": 36756.0, + "new_cases": 498.0, + "new_cases_smoothed": 510.571, + "total_deaths": 3108.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 53.143, + "total_cases_per_million": 2083.312, + "new_cases_per_million": 28.226, + "new_cases_smoothed_per_million": 28.939, + "total_deaths_per_million": 176.16, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 3.012, + "new_tests": 2268.0, + "total_tests": 64195.0, + "total_tests_per_thousand": 3.639, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 1640.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-26", + "total_cases": 37355.0, + "new_cases": 599.0, + "new_cases_smoothed": 539.0, + "total_deaths": 3203.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 57.714, + "total_cases_per_million": 2117.263, + "new_cases_per_million": 33.951, + "new_cases_smoothed_per_million": 30.55, + "total_deaths_per_million": 181.544, + "new_deaths_per_million": 5.385, + "new_deaths_smoothed_per_million": 3.271, + "new_tests": 582.0, + "total_tests": 64777.0, + "total_tests_per_thousand": 3.672, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1566.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-27", + "total_cases": 37355.0, + "new_cases": 0.0, + "new_cases_smoothed": 457.714, + "total_deaths": 3203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 52.0, + "total_cases_per_million": 2117.263, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.943, + "total_deaths_per_million": 181.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.947, + "new_tests": 1583.0, + "total_tests": 66360.0, + "total_tests_per_thousand": 3.761, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1568.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-28", + "total_cases": 38103.0, + "new_cases": 748.0, + "new_cases_smoothed": 464.143, + "total_deaths": 3275.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 55.286, + "total_cases_per_million": 2159.659, + "new_cases_per_million": 42.396, + "new_cases_smoothed_per_million": 26.307, + "total_deaths_per_million": 185.625, + "new_deaths_per_million": 4.081, + "new_deaths_smoothed_per_million": 3.134, + "new_tests": 779.0, + "total_tests": 67139.0, + "total_tests_per_thousand": 3.805, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 1430.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-29", + "total_cases": 38471.0, + "new_cases": 368.0, + "new_cases_smoothed": 452.143, + "total_deaths": 3313.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 53.429, + "total_cases_per_million": 2180.517, + "new_cases_per_million": 20.858, + "new_cases_smoothed_per_million": 25.627, + "total_deaths_per_million": 187.779, + "new_deaths_per_million": 2.154, + "new_deaths_smoothed_per_million": 3.028, + "new_tests": 579.0, + "total_tests": 67718.0, + "total_tests_per_thousand": 3.838, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1169.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-30", + "total_cases": 38571.0, + "new_cases": 100.0, + "new_cases_smoothed": 391.857, + "total_deaths": 3334.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 39.714, + "total_cases_per_million": 2186.185, + "new_cases_per_million": 5.668, + "new_cases_smoothed_per_million": 22.21, + "total_deaths_per_million": 188.969, + "new_deaths_per_million": 1.19, + "new_deaths_smoothed_per_million": 2.251, + "new_tests": 513.0, + "total_tests": 68231.0, + "total_tests_per_thousand": 3.867, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1076.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-31", + "total_cases": 38571.0, + "new_cases": 0.0, + "new_cases_smoothed": 330.429, + "total_deaths": 3334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 2186.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.729, + "total_deaths_per_million": 188.969, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.927, + "new_tests": 757.0, + "total_tests": 68988.0, + "total_tests_per_thousand": 3.91, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1009.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-06-01", + "total_cases": 39098.0, + "new_cases": 527.0, + "new_cases_smoothed": 334.571, + "total_deaths": 3358.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 2216.055, + "new_cases_per_million": 29.87, + "new_cases_smoothed_per_million": 18.963, + "total_deaths_per_million": 190.33, + "new_deaths_per_million": 1.36, + "new_deaths_smoothed_per_million": 2.024, + "new_tests": 2434.0, + "total_tests": 71422.0, + "total_tests_per_thousand": 4.048, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-02", + "total_cases": 39994.0, + "new_cases": 896.0, + "new_cases_smoothed": 377.0, + "total_deaths": 3394.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 2266.84, + "new_cases_per_million": 50.785, + "new_cases_smoothed_per_million": 21.368, + "total_deaths_per_million": 192.37, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 1.547, + "new_tests": 1347.0, + "total_tests": 72769.0, + "total_tests_per_thousand": 4.125, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1142.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-03", + "total_cases": 40414.0, + "new_cases": 420.0, + "new_cases_smoothed": 437.0, + "total_deaths": 3438.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 2290.646, + "new_cases_per_million": 23.805, + "new_cases_smoothed_per_million": 24.769, + "total_deaths_per_million": 194.864, + "new_deaths_per_million": 2.494, + "new_deaths_smoothed_per_million": 1.903, + "new_tests": 1959.0, + "total_tests": 74728.0, + "total_tests_per_thousand": 4.236, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 1195.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-04", + "total_cases": 40966.0, + "new_cases": 552.0, + "new_cases_smoothed": 409.0, + "total_deaths": 3486.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 2321.933, + "new_cases_per_million": 31.287, + "new_cases_smoothed_per_million": 23.182, + "total_deaths_per_million": 197.585, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 1.708, + "new_tests": 1415.0, + "total_tests": 76143.0, + "total_tests_per_thousand": 4.316, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1286.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-05", + "total_cases": 40966.0, + "new_cases": 0.0, + "new_cases_smoothed": 356.429, + "total_deaths": 3486.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 2321.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.202, + "total_deaths_per_million": 197.585, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.401, + "new_tests": 2136.0, + "total_tests": 78279.0, + "total_tests_per_thousand": 4.437, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 1509.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-06", + "total_cases": 41575.0, + "new_cases": 609.0, + "new_cases_smoothed": 429.143, + "total_deaths": 3534.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 2356.451, + "new_cases_per_million": 34.518, + "new_cases_smoothed_per_million": 24.324, + "total_deaths_per_million": 200.305, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 1.619, + "new_tests": 844.0, + "total_tests": 79123.0, + "total_tests_per_thousand": 4.485, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1556.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-07", + "total_cases": 42728.0, + "new_cases": 1153.0, + "new_cases_smoothed": 593.857, + "total_deaths": 3608.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 2421.802, + "new_cases_per_million": 65.351, + "new_cases_smoothed_per_million": 33.66, + "total_deaths_per_million": 204.5, + "new_deaths_per_million": 4.194, + "new_deaths_smoothed_per_million": 2.219, + "new_tests": 1253.0, + "total_tests": 80376.0, + "total_tests_per_thousand": 4.556, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 1627.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-08", + "total_cases": 43120.0, + "new_cases": 392.0, + "new_cases_smoothed": 574.571, + "total_deaths": 3621.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 2444.02, + "new_cases_per_million": 22.218, + "new_cases_smoothed_per_million": 32.566, + "total_deaths_per_million": 205.237, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 2.13, + "new_tests": 420.0, + "total_tests": 80796.0, + "total_tests_per_thousand": 4.579, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1339.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 43378.0, + "new_cases": 258.0, + "new_cases_smoothed": 483.429, + "total_deaths": 3642.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 2458.644, + "new_cases_per_million": 14.623, + "new_cases_smoothed_per_million": 27.4, + "total_deaths_per_million": 206.427, + "new_deaths_per_million": 1.19, + "new_deaths_smoothed_per_million": 2.008, + "new_tests": 1483.0, + "total_tests": 82279.0, + "total_tests_per_thousand": 4.664, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1359.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-10", + "total_cases": 43917.0, + "new_cases": 539.0, + "new_cases_smoothed": 500.429, + "total_deaths": 3690.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 2489.194, + "new_cases_per_million": 30.55, + "new_cases_smoothed_per_million": 28.364, + "total_deaths_per_million": 209.147, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 2.04, + "new_tests": 1121.0, + "total_tests": 83400.0, + "total_tests_per_thousand": 4.727, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 44440.0, + "new_cases": 523.0, + "new_cases_smoothed": 496.286, + "total_deaths": 3720.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 2518.837, + "new_cases_per_million": 29.643, + "new_cases_smoothed_per_million": 28.129, + "total_deaths_per_million": 210.848, + "new_deaths_per_million": 1.7, + "new_deaths_smoothed_per_million": 1.895, + "new_tests": 2192.0, + "total_tests": 85592.0, + "total_tests_per_thousand": 4.851, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 1350.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 44440.0, + "new_cases": 0.0, + "new_cases_smoothed": 496.286, + "total_deaths": 3720.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 2518.837, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.129, + "total_deaths_per_million": 210.848, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.895, + "new_tests": 1969.0, + "total_tests": 87561.0, + "total_tests_per_thousand": 4.963, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1326.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 45778.0, + "new_cases": 1338.0, + "new_cases_smoothed": 600.429, + "total_deaths": 3828.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 2594.675, + "new_cases_per_million": 75.837, + "new_cases_smoothed_per_million": 34.032, + "total_deaths_per_million": 216.969, + "new_deaths_per_million": 6.121, + "new_deaths_smoothed_per_million": 2.381, + "new_tests": 1385.0, + "total_tests": 88946.0, + "total_tests_per_thousand": 5.041, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1403.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 46356.0, + "new_cases": 578.0, + "new_cases_smoothed": 518.286, + "total_deaths": 3874.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 2627.435, + "new_cases_per_million": 32.761, + "new_cases_smoothed_per_million": 29.376, + "total_deaths_per_million": 219.576, + "new_deaths_per_million": 2.607, + "new_deaths_smoothed_per_million": 2.154, + "new_tests": 896.0, + "total_tests": 89842.0, + "total_tests_per_thousand": 5.092, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1352.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 46751.0, + "new_cases": 395.0, + "new_cases_smoothed": 518.714, + "total_deaths": 3896.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 2649.824, + "new_cases_per_million": 22.388, + "new_cases_smoothed_per_million": 29.4, + "total_deaths_per_million": 220.823, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 2.227, + "new_tests": 1259.0, + "total_tests": 91101.0, + "total_tests_per_thousand": 5.164, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 1472.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 47322.0, + "new_cases": 571.0, + "new_cases_smoothed": 563.429, + "total_deaths": 3929.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 2682.188, + "new_cases_per_million": 32.364, + "new_cases_smoothed_per_million": 31.935, + "total_deaths_per_million": 222.694, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 2.324, + "new_tests": 1863.0, + "total_tests": 92964.0, + "total_tests_per_thousand": 5.269, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1526.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 47943.0, + "new_cases": 621.0, + "new_cases_smoothed": 575.143, + "total_deaths": 3970.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 2717.386, + "new_cases_per_million": 35.198, + "new_cases_smoothed_per_million": 32.599, + "total_deaths_per_million": 225.018, + "new_deaths_per_million": 2.324, + "new_deaths_smoothed_per_million": 2.267, + "new_tests": 1262.0, + "total_tests": 94226.0, + "total_tests_per_thousand": 5.341, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 1547.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-18", + "total_cases": 48490.0, + "new_cases": 547.0, + "new_cases_smoothed": 578.571, + "total_deaths": 4007.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 2748.389, + "new_cases_per_million": 31.004, + "new_cases_smoothed_per_million": 32.793, + "total_deaths_per_million": 227.115, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 2.324, + "new_tests": 1470.0, + "total_tests": 95696.0, + "total_tests_per_thousand": 5.424, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1443.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-19", + "total_cases": 49097.0, + "new_cases": 607.0, + "new_cases_smoothed": 665.286, + "total_deaths": 4087.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 52.429, + "total_cases_per_million": 2782.794, + "new_cases_per_million": 34.404, + "new_cases_smoothed_per_million": 37.708, + "total_deaths_per_million": 231.649, + "new_deaths_per_million": 4.534, + "new_deaths_smoothed_per_million": 2.972, + "new_tests": 1879.0, + "total_tests": 97575.0, + "total_tests_per_thousand": 5.531, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 1431.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-20", + "total_cases": 49731.0, + "new_cases": 634.0, + "new_cases_smoothed": 564.714, + "total_deaths": 4156.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 46.857, + "total_cases_per_million": 2818.729, + "new_cases_per_million": 35.935, + "new_cases_smoothed_per_million": 32.008, + "total_deaths_per_million": 235.56, + "new_deaths_per_million": 3.911, + "new_deaths_smoothed_per_million": 2.656, + "new_tests": 1466.0, + "total_tests": 99041.0, + "total_tests_per_thousand": 5.614, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1442.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-21", + "total_cases": 50183.0, + "new_cases": 452.0, + "new_cases_smoothed": 546.714, + "total_deaths": 4199.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 46.429, + "total_cases_per_million": 2844.348, + "new_cases_per_million": 25.619, + "new_cases_smoothed_per_million": 30.987, + "total_deaths_per_million": 237.997, + "new_deaths_per_million": 2.437, + "new_deaths_smoothed_per_million": 2.632, + "new_tests": 1227.0, + "total_tests": 100268.0, + "total_tests_per_thousand": 5.683, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1489.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-22", + "total_cases": 50640.0, + "new_cases": 457.0, + "new_cases_smoothed": 555.571, + "total_deaths": 4223.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 46.714, + "total_cases_per_million": 2870.25, + "new_cases_per_million": 25.903, + "new_cases_smoothed_per_million": 31.49, + "total_deaths_per_million": 239.358, + "new_deaths_per_million": 1.36, + "new_deaths_smoothed_per_million": 2.648, + "new_tests": 488.0, + "total_tests": 100756.0, + "total_tests_per_thousand": 5.711, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1379.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-23", + "total_cases": 50640.0, + "new_cases": 0.0, + "new_cases_smoothed": 474.0, + "total_deaths": 4223.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 2870.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.866, + "total_deaths_per_million": 239.358, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.381, + "new_tests": 2099.0, + "total_tests": 102855.0, + "total_tests_per_thousand": 5.83, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 1413.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-24", + "total_cases": 51643.0, + "new_cases": 1003.0, + "new_cases_smoothed": 528.571, + "total_deaths": 4274.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 43.429, + "total_cases_per_million": 2927.1, + "new_cases_per_million": 56.85, + "new_cases_smoothed_per_million": 29.959, + "total_deaths_per_million": 242.248, + "new_deaths_per_million": 2.891, + "new_deaths_smoothed_per_million": 2.462, + "new_tests": 1717.0, + "total_tests": 104572.0, + "total_tests_per_thousand": 5.927, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 1478.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-25", + "total_cases": 52334.0, + "new_cases": 691.0, + "new_cases_smoothed": 549.143, + "total_deaths": 4309.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 2966.265, + "new_cases_per_million": 39.166, + "new_cases_smoothed_per_million": 31.125, + "total_deaths_per_million": 244.232, + "new_deaths_per_million": 1.984, + "new_deaths_smoothed_per_million": 2.445, + "new_tests": 1904.0, + "total_tests": 106476.0, + "total_tests_per_thousand": 6.035, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 1540.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-26", + "total_cases": 53156.0, + "new_cases": 822.0, + "new_cases_smoothed": 579.857, + "total_deaths": 4343.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 3012.856, + "new_cases_per_million": 46.591, + "new_cases_smoothed_per_million": 32.866, + "total_deaths_per_million": 246.159, + "new_deaths_per_million": 1.927, + "new_deaths_smoothed_per_million": 2.073, + "new_tests": 1995.0, + "total_tests": 108471.0, + "total_tests_per_thousand": 6.148, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 1557.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-27", + "total_cases": 53856.0, + "new_cases": 700.0, + "new_cases_smoothed": 589.286, + "total_deaths": 4406.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 3052.532, + "new_cases_per_million": 39.676, + "new_cases_smoothed_per_million": 33.4, + "total_deaths_per_million": 249.73, + "new_deaths_per_million": 3.571, + "new_deaths_smoothed_per_million": 2.024, + "new_tests": 1468.0, + "total_tests": 109939.0, + "total_tests_per_thousand": 6.231, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1557.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-28", + "total_cases": 54574.0, + "new_cases": 718.0, + "new_cases_smoothed": 627.286, + "total_deaths": 4424.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 3093.228, + "new_cases_per_million": 40.696, + "new_cases_smoothed_per_million": 35.554, + "total_deaths_per_million": 250.75, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.822, + "new_tests": 1584.0, + "total_tests": 111523.0, + "total_tests_per_thousand": 6.321, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1608.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-29", + "total_cases": 55255.0, + "new_cases": 681.0, + "new_cases_smoothed": 659.286, + "total_deaths": 4429.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 3131.826, + "new_cases_per_million": 38.599, + "new_cases_smoothed_per_million": 37.368, + "total_deaths_per_million": 251.034, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 1.668, + "new_tests": 1322.0, + "total_tests": 112845.0, + "total_tests_per_thousand": 6.396, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1727.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-06-30", + "total_cases": 55665.0, + "new_cases": 410.0, + "new_cases_smoothed": 717.857, + "total_deaths": 4502.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 3155.065, + "new_cases_per_million": 23.239, + "new_cases_smoothed_per_million": 40.688, + "total_deaths_per_million": 255.171, + "new_deaths_per_million": 4.138, + "new_deaths_smoothed_per_million": 2.259, + "new_tests": 2065.0, + "total_tests": 114910.0, + "total_tests_per_thousand": 6.513, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1722.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-01", + "total_cases": 56432.0, + "new_cases": 767.0, + "new_cases_smoothed": 684.143, + "total_deaths": 4527.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 3198.538, + "new_cases_per_million": 43.473, + "new_cases_smoothed_per_million": 38.777, + "total_deaths_per_million": 256.588, + "new_deaths_per_million": 1.417, + "new_deaths_smoothed_per_million": 2.049, + "new_tests": 2693.0, + "total_tests": 117603.0, + "total_tests_per_thousand": 6.666, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 1862.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-02", + "total_cases": 58257.0, + "new_cases": 1825.0, + "new_cases_smoothed": 846.143, + "total_deaths": 4576.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 3301.978, + "new_cases_per_million": 103.44, + "new_cases_smoothed_per_million": 47.959, + "total_deaths_per_million": 259.365, + "new_deaths_per_million": 2.777, + "new_deaths_smoothed_per_million": 2.162, + "new_tests": 2743.0, + "total_tests": 120346.0, + "total_tests_per_thousand": 6.821, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 1981.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-03", + "total_cases": 59468.0, + "new_cases": 1211.0, + "new_cases_smoothed": 901.714, + "total_deaths": 4639.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 42.286, + "total_cases_per_million": 3370.617, + "new_cases_per_million": 68.639, + "new_cases_smoothed_per_million": 51.109, + "total_deaths_per_million": 262.936, + "new_deaths_per_million": 3.571, + "new_deaths_smoothed_per_million": 2.397, + "new_tests": 2285.0, + "total_tests": 122631.0, + "total_tests_per_thousand": 6.951, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 2023.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-04", + "total_cases": 60657.0, + "new_cases": 1189.0, + "new_cases_smoothed": 971.571, + "total_deaths": 4700.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 3438.009, + "new_cases_per_million": 67.392, + "new_cases_smoothed_per_million": 55.068, + "total_deaths_per_million": 266.394, + "new_deaths_per_million": 3.457, + "new_deaths_smoothed_per_million": 2.381, + "new_tests": 2104.0, + "total_tests": 124735.0, + "total_tests_per_thousand": 7.07, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 2114.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-05", + "total_cases": 61535.0, + "new_cases": 878.0, + "new_cases_smoothed": 994.429, + "total_deaths": 4769.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 49.286, + "total_cases_per_million": 3487.774, + "new_cases_per_million": 49.765, + "new_cases_smoothed_per_million": 56.364, + "total_deaths_per_million": 270.305, + "new_deaths_per_million": 3.911, + "new_deaths_smoothed_per_million": 2.793, + "new_tests": 999.0, + "total_tests": 125734.0, + "total_tests_per_thousand": 7.127, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2030.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-06", + "total_cases": 61958.0, + "new_cases": 423.0, + "new_cases_smoothed": 957.571, + "total_deaths": 4781.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 50.286, + "total_cases_per_million": 3511.749, + "new_cases_per_million": 23.975, + "new_cases_smoothed_per_million": 54.275, + "total_deaths_per_million": 270.985, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 2.85, + "new_tests": 965.0, + "total_tests": 126699.0, + "total_tests_per_thousand": 7.181, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1979.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-07", + "total_cases": 62380.0, + "new_cases": 422.0, + "new_cases_smoothed": 959.286, + "total_deaths": 4821.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 45.571, + "total_cases_per_million": 3535.668, + "new_cases_per_million": 23.919, + "new_cases_smoothed_per_million": 54.372, + "total_deaths_per_million": 273.252, + "new_deaths_per_million": 2.267, + "new_deaths_smoothed_per_million": 2.583, + "new_tests": 2126.0, + "total_tests": 128825.0, + "total_tests_per_thousand": 7.302, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 1988.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-08", + "total_cases": 63245.0, + "new_cases": 865.0, + "new_cases_smoothed": 973.286, + "total_deaths": 4873.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 3584.696, + "new_cases_per_million": 49.028, + "new_cases_smoothed_per_million": 55.165, + "total_deaths_per_million": 276.199, + "new_deaths_per_million": 2.947, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 2397.0, + "total_tests": 131222.0, + "total_tests_per_thousand": 7.438, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 1946.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-09", + "total_cases": 64221.0, + "new_cases": 976.0, + "new_cases_smoothed": 852.0, + "total_deaths": 4900.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 3640.015, + "new_cases_per_million": 55.319, + "new_cases_smoothed_per_million": 48.291, + "total_deaths_per_million": 277.73, + "new_deaths_per_million": 1.53, + "new_deaths_smoothed_per_million": 2.623, + "new_tests": 1985.0, + "total_tests": 133207.0, + "total_tests_per_thousand": 7.55, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 1837.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-10", + "total_cases": 65018.0, + "new_cases": 797.0, + "new_cases_smoothed": 792.857, + "total_deaths": 4939.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 3685.188, + "new_cases_per_million": 45.174, + "new_cases_smoothed_per_million": 44.939, + "total_deaths_per_million": 279.94, + "new_deaths_per_million": 2.211, + "new_deaths_smoothed_per_million": 2.429, + "new_tests": 1604.0, + "total_tests": 134811.0, + "total_tests_per_thousand": 7.641, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 1740.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-11", + "total_cases": 65801.0, + "new_cases": 783.0, + "new_cases_smoothed": 734.857, + "total_deaths": 4983.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 3729.568, + "new_cases_per_million": 44.38, + "new_cases_smoothed_per_million": 41.651, + "total_deaths_per_million": 282.434, + "new_deaths_per_million": 2.494, + "new_deaths_smoothed_per_million": 2.291, + "new_tests": 2608.0, + "total_tests": 137419.0, + "total_tests_per_thousand": 7.789, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 1812.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-12", + "total_cases": 67209.0, + "new_cases": 1408.0, + "new_cases_smoothed": 810.571, + "total_deaths": 5031.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 3809.373, + "new_cases_per_million": 79.805, + "new_cases_smoothed_per_million": 45.943, + "total_deaths_per_million": 285.155, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 2.121, + "new_tests": 1852.0, + "total_tests": 139271.0, + "total_tests_per_thousand": 7.894, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 1934.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-13", + "total_cases": 67870.0, + "new_cases": 661.0, + "new_cases_smoothed": 844.571, + "total_deaths": 5047.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 3846.838, + "new_cases_per_million": 37.465, + "new_cases_smoothed_per_million": 47.87, + "total_deaths_per_million": 286.061, + "new_deaths_per_million": 0.907, + "new_deaths_smoothed_per_million": 2.154, + "new_tests": 1331.0, + "total_tests": 140602.0, + "total_tests_per_thousand": 7.969, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1986.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-14", + "total_cases": 68459.0, + "new_cases": 589.0, + "new_cases_smoothed": 868.429, + "total_deaths": 5063.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 3880.223, + "new_cases_per_million": 33.384, + "new_cases_smoothed_per_million": 49.222, + "total_deaths_per_million": 286.968, + "new_deaths_per_million": 0.907, + "new_deaths_smoothed_per_million": 1.959, + "new_tests": 2388.0, + "total_tests": 142990.0, + "total_tests_per_thousand": 8.105, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 2024.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-15", + "total_cases": 69570.0, + "new_cases": 1111.0, + "new_cases_smoothed": 903.571, + "total_deaths": 5130.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 36.714, + "total_cases_per_million": 3943.194, + "new_cases_per_million": 62.971, + "new_cases_smoothed_per_million": 51.214, + "total_deaths_per_million": 290.766, + "new_deaths_per_million": 3.798, + "new_deaths_smoothed_per_million": 2.081, + "new_tests": 2217.0, + "total_tests": 145207.0, + "total_tests_per_thousand": 8.23, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 1998.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-16", + "total_cases": 70329.0, + "new_cases": 759.0, + "new_cases_smoothed": 872.571, + "total_deaths": 5158.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 3986.213, + "new_cases_per_million": 43.02, + "new_cases_smoothed_per_million": 49.457, + "total_deaths_per_million": 292.353, + "new_deaths_per_million": 1.587, + "new_deaths_smoothed_per_million": 2.089, + "new_tests": 2786.0, + "total_tests": 147993.0, + "total_tests_per_thousand": 8.388, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 2112.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-17", + "total_cases": 71365.0, + "new_cases": 1036.0, + "new_cases_smoothed": 906.714, + "total_deaths": 5207.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 4044.933, + "new_cases_per_million": 58.72, + "new_cases_smoothed_per_million": 51.392, + "total_deaths_per_million": 295.13, + "new_deaths_per_million": 2.777, + "new_deaths_smoothed_per_million": 2.17, + "new_tests": 2368.0, + "total_tests": 150361.0, + "total_tests_per_thousand": 8.522, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 2221.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-18", + "total_cases": 72444.0, + "new_cases": 1079.0, + "new_cases_smoothed": 949.0, + "total_deaths": 5250.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 4106.09, + "new_cases_per_million": 61.157, + "new_cases_smoothed_per_million": 53.789, + "total_deaths_per_million": 297.567, + "new_deaths_per_million": 2.437, + "new_deaths_smoothed_per_million": 2.162, + "new_tests": 2087.0, + "total_tests": 152448.0, + "total_tests_per_thousand": 8.641, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2147.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-19", + "total_cases": 73382.0, + "new_cases": 938.0, + "new_cases_smoothed": 881.857, + "total_deaths": 5282.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 4159.256, + "new_cases_per_million": 53.165, + "new_cases_smoothed_per_million": 49.983, + "total_deaths_per_million": 299.381, + "new_deaths_per_million": 1.814, + "new_deaths_smoothed_per_million": 2.032, + "new_tests": 1702.0, + "total_tests": 154150.0, + "total_tests_per_thousand": 8.737, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 2126.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-20", + "total_cases": 74013.0, + "new_cases": 631.0, + "new_cases_smoothed": 877.571, + "total_deaths": 5313.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 4195.021, + "new_cases_per_million": 35.765, + "new_cases_smoothed_per_million": 49.74, + "total_deaths_per_million": 301.138, + "new_deaths_per_million": 1.757, + "new_deaths_smoothed_per_million": 2.154, + "new_tests": 1618.0, + "total_tests": 155768.0, + "total_tests_per_thousand": 8.829, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 2167.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-21", + "total_cases": 74620.0, + "new_cases": 607.0, + "new_cases_smoothed": 880.143, + "total_deaths": 5318.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 36.429, + "total_cases_per_million": 4229.425, + "new_cases_per_million": 34.404, + "new_cases_smoothed_per_million": 49.886, + "total_deaths_per_million": 301.422, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 2.065, + "new_tests": 3384.0, + "total_tests": 159152.0, + "total_tests_per_thousand": 9.021, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 2309.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-22", + "total_cases": 76217.0, + "new_cases": 1597.0, + "new_cases_smoothed": 949.571, + "total_deaths": 5366.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 4319.942, + "new_cases_per_million": 90.517, + "new_cases_smoothed_per_million": 53.821, + "total_deaths_per_million": 304.142, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 1.911, + "new_tests": 2291.0, + "total_tests": 161443.0, + "total_tests_per_thousand": 9.151, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 2319.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-23", + "total_cases": 77257.0, + "new_cases": 1040.0, + "new_cases_smoothed": 989.714, + "total_deaths": 5418.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 4378.889, + "new_cases_per_million": 58.947, + "new_cases_smoothed_per_million": 56.097, + "total_deaths_per_million": 307.09, + "new_deaths_per_million": 2.947, + "new_deaths_smoothed_per_million": 2.105, + "new_tests": 2155.0, + "total_tests": 163598.0, + "total_tests_per_thousand": 9.273, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 2229.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_units": "people tested", + "stringency_index": 81.02 + }, + { + "date": "2020-07-24", + "total_cases": 78148.0, + "new_cases": 891.0, + "new_cases_smoothed": 969.0, + "total_deaths": 5439.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 33.143, + "total_cases_per_million": 4429.39, + "new_cases_per_million": 50.501, + "new_cases_smoothed_per_million": 54.922, + "total_deaths_per_million": 308.28, + "new_deaths_per_million": 1.19, + "new_deaths_smoothed_per_million": 1.879, + "new_tests": 2114.0, + "total_tests": 165712.0, + "total_tests_per_thousand": 9.392, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 2193.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-25", + "total_cases": 79049.0, + "new_cases": 901.0, + "new_cases_smoothed": 943.571, + "total_deaths": 5468.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 4480.459, + "new_cases_per_million": 51.068, + "new_cases_smoothed_per_million": 53.481, + "total_deaths_per_million": 309.924, + "new_deaths_per_million": 1.644, + "new_deaths_smoothed_per_million": 1.765, + "new_tests": 2070.0, + "total_tests": 167782.0, + "total_tests_per_thousand": 9.51, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 2191.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-26", + "total_cases": 80036.0, + "new_cases": 987.0, + "new_cases_smoothed": 950.571, + "total_deaths": 5507.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 4536.401, + "new_cases_per_million": 55.943, + "new_cases_smoothed_per_million": 53.878, + "total_deaths_per_million": 312.134, + "new_deaths_per_million": 2.211, + "new_deaths_smoothed_per_million": 1.822, + "new_tests": 1823.0, + "total_tests": 169605.0, + "total_tests_per_thousand": 9.613, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 2208.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-27", + "total_cases": 80694.0, + "new_cases": 658.0, + "new_cases_smoothed": 954.429, + "total_deaths": 5515.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 4573.696, + "new_cases_per_million": 37.295, + "new_cases_smoothed_per_million": 54.097, + "total_deaths_per_million": 312.587, + "new_deaths_per_million": 0.453, + "new_deaths_smoothed_per_million": 1.636, + "new_tests": 1126.0, + "total_tests": 170731.0, + "total_tests_per_thousand": 9.677, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 2138.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-28", + "total_cases": 81161.0, + "new_cases": 467.0, + "new_cases_smoothed": 934.429, + "total_deaths": 5532.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 4600.166, + "new_cases_per_million": 26.469, + "new_cases_smoothed_per_million": 52.963, + "total_deaths_per_million": 313.551, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 1.733, + "new_tests": 3364.0, + "total_tests": 174095.0, + "total_tests_per_thousand": 9.868, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 2135.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-29", + "total_cases": 82279.0, + "new_cases": 1118.0, + "new_cases_smoothed": 866.0, + "total_deaths": 5584.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 4663.533, + "new_cases_per_million": 63.368, + "new_cases_smoothed_per_million": 49.084, + "total_deaths_per_million": 316.498, + "new_deaths_per_million": 2.947, + "new_deaths_smoothed_per_million": 1.765, + "new_tests": 2113.0, + "total_tests": 176208.0, + "total_tests_per_thousand": 9.987, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 2109.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-30", + "total_cases": 83193.0, + "new_cases": 914.0, + "new_cases_smoothed": 848.0, + "total_deaths": 5623.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 29.286, + "total_cases_per_million": 4715.338, + "new_cases_per_million": 51.805, + "new_cases_smoothed_per_million": 48.064, + "total_deaths_per_million": 318.709, + "new_deaths_per_million": 2.211, + "new_deaths_smoothed_per_million": 1.66, + "new_tests": 2885.0, + "total_tests": 179093.0, + "total_tests_per_thousand": 10.151, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 2214.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-07-31", + "total_cases": 84370.0, + "new_cases": 1177.0, + "new_cases_smoothed": 888.857, + "total_deaths": 5657.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 4782.05, + "new_cases_per_million": 66.712, + "new_cases_smoothed_per_million": 50.38, + "total_deaths_per_million": 320.636, + "new_deaths_per_million": 1.927, + "new_deaths_smoothed_per_million": 1.765, + "new_tests": 2501.0, + "total_tests": 181594.0, + "total_tests_per_thousand": 10.293, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 2269.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_units": "people tested", + "stringency_index": 78.24 + }, + { + "date": "2020-08-01", + "total_cases": 85355.0, + "new_cases": 985.0, + "new_cases_smoothed": 900.857, + "total_deaths": 5702.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 4837.88, + "new_cases_per_million": 55.829, + "new_cases_smoothed_per_million": 51.06, + "total_deaths_per_million": 323.187, + "new_deaths_per_million": 2.551, + "new_deaths_smoothed_per_million": 1.895, + "new_tests": 2451.0, + "total_tests": 184045.0, + "total_tests_per_thousand": 10.432, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 2323.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-02", + "total_cases": 86232.0, + "new_cases": 877.0, + "new_cases_smoothed": 885.143, + "total_deaths": 5736.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 4887.588, + "new_cases_per_million": 49.708, + "new_cases_smoothed_per_million": 50.169, + "total_deaths_per_million": 325.114, + "new_deaths_per_million": 1.927, + "new_deaths_smoothed_per_million": 1.854, + "new_tests": 878.0, + "total_tests": 184923.0, + "total_tests_per_thousand": 10.481, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2188.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-03", + "total_cases": 86524.0, + "new_cases": 292.0, + "new_cases_smoothed": 832.857, + "total_deaths": 5750.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 4904.138, + "new_cases_per_million": 16.55, + "new_cases_smoothed_per_million": 47.206, + "total_deaths_per_million": 325.907, + "new_deaths_per_million": 0.794, + "new_deaths_smoothed_per_million": 1.903, + "new_tests": 1413.0, + "total_tests": 186336.0, + "total_tests_per_thousand": 10.561, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 2229.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-04", + "total_cases": 87041.0, + "new_cases": 517.0, + "new_cases_smoothed": 840.0, + "total_deaths": 5767.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 4933.441, + "new_cases_per_million": 29.303, + "new_cases_smoothed_per_million": 47.611, + "total_deaths_per_million": 326.871, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 1.903, + "new_tests": 2095.0, + "total_tests": 188431.0, + "total_tests_per_thousand": 10.68, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 2048.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-05", + "total_cases": 87963.0, + "new_cases": 922.0, + "new_cases_smoothed": 812.0, + "total_deaths": 5808.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 4985.7, + "new_cases_per_million": 52.259, + "new_cases_smoothed_per_million": 46.024, + "total_deaths_per_million": 329.195, + "new_deaths_per_million": 2.324, + "new_deaths_smoothed_per_million": 1.814, + "new_tests": 2156.0, + "total_tests": 190587.0, + "total_tests_per_thousand": 10.802, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 2054.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-06", + "total_cases": 88866.0, + "new_cases": 903.0, + "new_cases_smoothed": 810.429, + "total_deaths": 5847.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 5036.881, + "new_cases_per_million": 51.182, + "new_cases_smoothed_per_million": 45.935, + "total_deaths_per_million": 331.405, + "new_deaths_per_million": 2.211, + "new_deaths_smoothed_per_million": 1.814, + "new_tests": 3762.0, + "total_tests": 194349.0, + "total_tests_per_thousand": 11.016, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 2179.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-07", + "total_cases": 90537.0, + "new_cases": 1671.0, + "new_cases_smoothed": 881.0, + "total_deaths": 5887.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 32.857, + "total_cases_per_million": 5131.593, + "new_cases_per_million": 94.711, + "new_cases_smoothed_per_million": 49.935, + "total_deaths_per_million": 333.672, + "new_deaths_per_million": 2.267, + "new_deaths_smoothed_per_million": 1.862, + "new_tests": 3508.0, + "total_tests": 197857.0, + "total_tests_per_thousand": 11.214, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 2323.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-08", + "total_cases": 91969.0, + "new_cases": 1432.0, + "new_cases_smoothed": 944.857, + "total_deaths": 5897.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 5212.758, + "new_cases_per_million": 81.165, + "new_cases_smoothed_per_million": 53.554, + "total_deaths_per_million": 334.239, + "new_deaths_per_million": 0.567, + "new_deaths_smoothed_per_million": 1.579, + "new_tests": 4537.0, + "total_tests": 202394.0, + "total_tests_per_thousand": 11.472, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 2621.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-09", + "total_cases": 93572.0, + "new_cases": 1603.0, + "new_cases_smoothed": 1048.571, + "total_deaths": 5916.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 5303.615, + "new_cases_per_million": 90.857, + "new_cases_smoothed_per_million": 59.433, + "total_deaths_per_million": 335.316, + "new_deaths_per_million": 1.077, + "new_deaths_smoothed_per_million": 1.457, + "new_tests": 2335.0, + "total_tests": 204729.0, + "total_tests_per_thousand": 11.604, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 2829.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-10", + "total_cases": 94459.0, + "new_cases": 887.0, + "new_cases_smoothed": 1133.571, + "total_deaths": 5922.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 5353.89, + "new_cases_per_million": 50.275, + "new_cases_smoothed_per_million": 64.25, + "total_deaths_per_million": 335.656, + "new_deaths_per_million": 0.34, + "new_deaths_smoothed_per_million": 1.393, + "new_tests": 635.0, + "total_tests": 205364.0, + "total_tests_per_thousand": 11.64, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 2718.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-11", + "total_cases": 94701.0, + "new_cases": 242.0, + "new_cases_smoothed": 1094.286, + "total_deaths": 5932.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 5367.606, + "new_cases_per_million": 13.716, + "new_cases_smoothed_per_million": 62.024, + "total_deaths_per_million": 336.223, + "new_deaths_per_million": 0.567, + "new_deaths_smoothed_per_million": 1.336, + "new_tests": 2172.0, + "total_tests": 207536.0, + "total_tests_per_thousand": 11.763, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 2729.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-12", + "total_cases": 95563.0, + "new_cases": 862.0, + "new_cases_smoothed": 1085.714, + "total_deaths": 5951.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 5416.464, + "new_cases_per_million": 48.858, + "new_cases_smoothed_per_million": 61.538, + "total_deaths_per_million": 337.3, + "new_deaths_per_million": 1.077, + "new_deaths_smoothed_per_million": 1.158, + "new_tests": 3656.0, + "total_tests": 211192.0, + "total_tests_per_thousand": 11.97, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 2944.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-13", + "total_cases": 97110.0, + "new_cases": 1547.0, + "new_cases_smoothed": 1177.714, + "total_deaths": 5984.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 5504.147, + "new_cases_per_million": 87.683, + "new_cases_smoothed_per_million": 66.752, + "total_deaths_per_million": 339.17, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 1.109, + "new_tests": 3285.0, + "total_tests": 214477.0, + "total_tests_per_thousand": 12.156, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 2875.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-14", + "total_cases": 98343.0, + "new_cases": 1233.0, + "new_cases_smoothed": 1115.143, + "total_deaths": 6010.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 5574.033, + "new_cases_per_million": 69.886, + "new_cases_smoothed_per_million": 63.206, + "total_deaths_per_million": 340.644, + "new_deaths_per_million": 1.474, + "new_deaths_smoothed_per_million": 0.996, + "new_tests": 2997.0, + "total_tests": 217474.0, + "total_tests_per_thousand": 12.326, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 2802.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-15", + "total_cases": 99409.0, + "new_cases": 1066.0, + "new_cases_smoothed": 1062.857, + "total_deaths": 6030.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 5634.453, + "new_cases_per_million": 60.42, + "new_cases_smoothed_per_million": 60.242, + "total_deaths_per_million": 341.777, + "new_deaths_per_million": 1.134, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 3689.0, + "total_tests": 221163.0, + "total_tests_per_thousand": 12.535, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 2681.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-16", + "total_cases": 100688.0, + "new_cases": 1279.0, + "new_cases_smoothed": 1016.571, + "total_deaths": 6065.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 5706.947, + "new_cases_per_million": 72.493, + "new_cases_smoothed_per_million": 57.619, + "total_deaths_per_million": 343.761, + "new_deaths_per_million": 1.984, + "new_deaths_smoothed_per_million": 1.206, + "new_tests": 2679.0, + "total_tests": 223842.0, + "total_tests_per_thousand": 12.687, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 2730.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-17", + "total_cases": 101542.0, + "new_cases": 854.0, + "new_cases_smoothed": 1011.857, + "total_deaths": 6070.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 5755.351, + "new_cases_per_million": 48.404, + "new_cases_smoothed_per_million": 57.352, + "total_deaths_per_million": 344.045, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 1.198, + "new_tests": 993.0, + "total_tests": 224835.0, + "total_tests_per_thousand": 12.744, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2782.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-18", + "total_cases": 101751.0, + "new_cases": 209.0, + "new_cases_smoothed": 1007.143, + "total_deaths": 6083.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 5767.197, + "new_cases_per_million": 11.846, + "new_cases_smoothed_per_million": 57.084, + "total_deaths_per_million": 344.781, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 1.223, + "new_tests": 3203.0, + "total_tests": 228038.0, + "total_tests_per_thousand": 12.925, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 2929.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-19", + "total_cases": 102941.0, + "new_cases": 1190.0, + "new_cases_smoothed": 1054.0, + "total_deaths": 6105.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 5834.645, + "new_cases_per_million": 67.449, + "new_cases_smoothed_per_million": 59.74, + "total_deaths_per_million": 346.028, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 1.247, + "new_tests": 3845.0, + "total_tests": 231883.0, + "total_tests_per_thousand": 13.143, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 2956.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-20", + "total_cases": 104475.0, + "new_cases": 1534.0, + "new_cases_smoothed": 1052.143, + "total_deaths": 6146.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 5921.592, + "new_cases_per_million": 86.946, + "new_cases_smoothed_per_million": 59.635, + "total_deaths_per_million": 348.352, + "new_deaths_per_million": 2.324, + "new_deaths_smoothed_per_million": 1.312, + "new_tests": 3518.0, + "total_tests": 235401.0, + "total_tests_per_thousand": 13.342, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 2989.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-21", + "total_cases": 105508.0, + "new_cases": 1033.0, + "new_cases_smoothed": 1023.571, + "total_deaths": 6200.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 5980.142, + "new_cases_per_million": 58.55, + "new_cases_smoothed_per_million": 58.016, + "total_deaths_per_million": 351.413, + "new_deaths_per_million": 3.061, + "new_deaths_smoothed_per_million": 1.538, + "new_tests": 2757.0, + "total_tests": 238158.0, + "total_tests_per_thousand": 13.499, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 2955.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-22", + "total_cases": 106481.0, + "new_cases": 973.0, + "new_cases_smoothed": 1010.286, + "total_deaths": 6248.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 6035.291, + "new_cases_per_million": 55.149, + "new_cases_smoothed_per_million": 57.262, + "total_deaths_per_million": 354.134, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 1.765, + "new_tests": 1608.0, + "total_tests": 239766.0, + "total_tests_per_thousand": 13.59, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 2658.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-23", + "total_cases": 107089.0, + "new_cases": 608.0, + "new_cases_smoothed": 914.429, + "total_deaths": 6277.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 6069.752, + "new_cases_per_million": 34.461, + "new_cases_smoothed_per_million": 51.829, + "total_deaths_per_million": 355.777, + "new_deaths_per_million": 1.644, + "new_deaths_smoothed_per_million": 1.717, + "new_tests": 2348.0, + "total_tests": 242114.0, + "total_tests_per_thousand": 13.723, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 2610.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-24", + "total_cases": 107769.0, + "new_cases": 680.0, + "new_cases_smoothed": 889.571, + "total_deaths": 6310.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 6108.294, + "new_cases_per_million": 38.542, + "new_cases_smoothed_per_million": 50.42, + "total_deaths_per_million": 357.648, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 1.943, + "new_tests": 1323.0, + "total_tests": 243437.0, + "total_tests_per_thousand": 13.798, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 2657.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-25", + "total_cases": 108289.0, + "new_cases": 520.0, + "new_cases_smoothed": 934.0, + "total_deaths": 6322.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 34.143, + "total_cases_per_million": 6137.767, + "new_cases_per_million": 29.473, + "new_cases_smoothed_per_million": 52.939, + "total_deaths_per_million": 358.328, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 1.935, + "new_tests": 2546.0, + "total_tests": 245983.0, + "total_tests_per_thousand": 13.942, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 2564.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-26", + "total_cases": 109030.0, + "new_cases": 741.0, + "new_cases_smoothed": 869.857, + "total_deaths": 6368.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 6179.767, + "new_cases_per_million": 42.0, + "new_cases_smoothed_per_million": 49.303, + "total_deaths_per_million": 360.935, + "new_deaths_per_million": 2.607, + "new_deaths_smoothed_per_million": 2.13, + "new_tests": 3469.0, + "total_tests": 249452.0, + "total_tests_per_thousand": 14.139, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 2510.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-27", + "total_cases": 110549.0, + "new_cases": 1519.0, + "new_cases_smoothed": 867.714, + "total_deaths": 6410.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 6265.863, + "new_cases_per_million": 86.096, + "new_cases_smoothed_per_million": 49.182, + "total_deaths_per_million": 363.316, + "new_deaths_per_million": 2.381, + "new_deaths_smoothed_per_million": 2.138, + "new_tests": 2080.0, + "total_tests": 251532.0, + "total_tests_per_thousand": 14.257, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2304.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_units": "people tested", + "stringency_index": 76.39 + }, + { + "date": "2020-08-28", + "total_cases": 111219.0, + "new_cases": 670.0, + "new_cases_smoothed": 815.857, + "total_deaths": 6471.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 38.714, + "total_cases_per_million": 6303.838, + "new_cases_per_million": 37.975, + "new_cases_smoothed_per_million": 46.242, + "total_deaths_per_million": 366.773, + "new_deaths_per_million": 3.457, + "new_deaths_smoothed_per_million": 2.194, + "new_tests": 2444.0, + "total_tests": 253976.0, + "total_tests_per_thousand": 14.395, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 2260.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 112141.0, + "new_cases": 922.0, + "new_cases_smoothed": 808.571, + "total_deaths": 6504.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 6356.097, + "new_cases_per_million": 52.259, + "new_cases_smoothed_per_million": 45.829, + "total_deaths_per_million": 368.644, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 2.073, + "new_tests": 2236.0, + "total_tests": 256212.0, + "total_tests_per_thousand": 14.522, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 2349.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 112906.0, + "new_cases": 765.0, + "new_cases_smoothed": 831.0, + "total_deaths": 6537.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 6399.457, + "new_cases_per_million": 43.36, + "new_cases_smoothed_per_million": 47.101, + "total_deaths_per_million": 370.514, + "new_deaths_per_million": 1.87, + "new_deaths_smoothed_per_million": 2.105, + "new_tests": 2054.0, + "total_tests": 258266.0, + "total_tests_per_thousand": 14.638, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 2307.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 113648.0, + "new_cases": 742.0, + "new_cases_smoothed": 839.857, + "total_deaths": 6555.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 6441.513, + "new_cases_per_million": 42.056, + "new_cases_smoothed_per_million": 47.603, + "total_deaths_per_million": 371.534, + "new_deaths_per_million": 1.02, + "new_deaths_smoothed_per_million": 1.984, + "new_tests": 627.0, + "total_tests": 258893.0, + "total_tests_per_thousand": 14.674, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 2208.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 113767.0, + "new_cases": 119.0, + "new_cases_smoothed": 782.571, + "total_deaths": 6556.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 6448.258, + "new_cases_per_million": 6.745, + "new_cases_smoothed_per_million": 44.356, + "total_deaths_per_million": 371.591, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 1.895, + "new_tests": 1520.0, + "total_tests": 260413.0, + "total_tests_per_thousand": 14.76, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 2061.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 114309.0, + "new_cases": 542.0, + "new_cases_smoothed": 754.143, + "total_deaths": 6571.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 29.0, + "total_cases_per_million": 6478.978, + "new_cases_per_million": 30.72, + "new_cases_smoothed_per_million": 42.744, + "total_deaths_per_million": 372.441, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 1.644, + "new_tests": 2828.0, + "total_tests": 263241.0, + "total_tests_per_thousand": 14.92, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 1970.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 115457.0, + "new_cases": 1148.0, + "new_cases_smoothed": 701.143, + "total_deaths": 6619.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 6544.046, + "new_cases_per_million": 65.068, + "new_cases_smoothed_per_million": 39.74, + "total_deaths_per_million": 375.162, + "new_deaths_per_million": 2.721, + "new_deaths_smoothed_per_million": 1.692, + "new_tests": 2399.0, + "total_tests": 265640.0, + "total_tests_per_thousand": 15.056, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 2015.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 116360.0, + "new_cases": 903.0, + "new_cases_smoothed": 734.429, + "total_deaths": 6648.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 6595.228, + "new_cases_per_million": 51.182, + "new_cases_smoothed_per_million": 41.627, + "total_deaths_per_million": 376.805, + "new_deaths_per_million": 1.644, + "new_deaths_smoothed_per_million": 1.433 + }, + { + "date": "2020-09-05", + "total_cases": 117175.0, + "new_cases": 815.0, + "new_cases_smoothed": 719.143, + "total_deaths": 6674.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 6641.422, + "new_cases_per_million": 46.194, + "new_cases_smoothed_per_million": 40.761, + "total_deaths_per_million": 378.279, + "new_deaths_per_million": 1.474, + "new_deaths_smoothed_per_million": 1.377 + } + ] + }, + "EGY": { + "continent": "Africa", + "location": "Egypt", + "population": 102334403.0, + "population_density": 97.999, + "median_age": 25.3, + "aged_65_older": 5.159, + "aged_70_older": 2.891, + "gdp_per_capita": 10550.206, + "extreme_poverty": 1.3, + "cardiovasc_death_rate": 525.432, + "diabetes_prevalence": 17.31, + "female_smokers": 0.2, + "male_smokers": 50.1, + "handwashing_facilities": 89.827, + "hospital_beds_per_thousand": 1.6, + "life_expectancy": 71.99, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 15.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.117, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 2.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 49.0, + "new_cases": 34.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.479, + "new_cases_per_million": 0.332, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "total_cases": 55.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.537, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 59.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.577, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 60.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.586, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 80.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 93.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.909, + "new_cases_per_million": 0.127, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 110.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.166, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 18.52 + }, + { + "date": "2020-03-17", + "total_cases": 126.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.231, + "new_cases_per_million": 0.156, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 18.52 + }, + { + "date": "2020-03-18", + "total_cases": 166.0, + "new_cases": 40.0, + "new_cases_smoothed": 15.286, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.622, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 18.52 + }, + { + "date": "2020-03-19", + "total_cases": 196.0, + "new_cases": 30.0, + "new_cases_smoothed": 19.429, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.915, + "new_cases_per_million": 0.293, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 0.059, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 29.63 + }, + { + "date": "2020-03-20", + "total_cases": 210.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.052, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 29.63 + }, + { + "date": "2020-03-21", + "total_cases": 256.0, + "new_cases": 46.0, + "new_cases_smoothed": 23.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.502, + "new_cases_per_million": 0.45, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.068, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 40.74 + }, + { + "date": "2020-03-22", + "total_cases": 285.0, + "new_cases": 29.0, + "new_cases_smoothed": 27.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2.785, + "new_cases_per_million": 0.283, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 0.078, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 40.74 + }, + { + "date": "2020-03-23", + "total_cases": 294.0, + "new_cases": 9.0, + "new_cases_smoothed": 26.286, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2.873, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.098, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 40.74 + }, + { + "date": "2020-03-24", + "total_cases": 327.0, + "new_cases": 33.0, + "new_cases_smoothed": 28.714, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3.195, + "new_cases_per_million": 0.322, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 51.85 + }, + { + "date": "2020-03-25", + "total_cases": 366.0, + "new_cases": 39.0, + "new_cases_smoothed": 28.571, + "total_deaths": 19.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3.577, + "new_cases_per_million": 0.381, + "new_cases_smoothed_per_million": 0.279, + "total_deaths_per_million": 0.186, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-26", + "total_cases": 442.0, + "new_cases": 76.0, + "new_cases_smoothed": 35.143, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4.319, + "new_cases_per_million": 0.743, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.205, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-27", + "total_cases": 456.0, + "new_cases": 14.0, + "new_cases_smoothed": 35.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4.456, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.205, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 495.0, + "new_cases": 39.0, + "new_cases_smoothed": 34.143, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4.837, + "new_cases_per_million": 0.381, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 536.0, + "new_cases": 41.0, + "new_cases_smoothed": 35.857, + "total_deaths": 30.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5.238, + "new_cases_per_million": 0.401, + "new_cases_smoothed_per_million": 0.35, + "total_deaths_per_million": 0.293, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 576.0, + "new_cases": 40.0, + "new_cases_smoothed": 40.286, + "total_deaths": 36.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5.629, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 609.0, + "new_cases": 33.0, + "new_cases_smoothed": 40.286, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5.951, + "new_cases_per_million": 0.322, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 84.26 + }, + { + "date": "2020-04-01", + "total_cases": 656.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.429, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 6.41, + "new_cases_per_million": 0.459, + "new_cases_smoothed_per_million": 0.405, + "total_deaths_per_million": 0.401, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 84.26 + }, + { + "date": "2020-04-02", + "total_cases": 710.0, + "new_cases": 54.0, + "new_cases_smoothed": 38.286, + "total_deaths": 46.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 6.938, + "new_cases_per_million": 0.528, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 0.45, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 84.26 + }, + { + "date": "2020-04-03", + "total_cases": 779.0, + "new_cases": 69.0, + "new_cases_smoothed": 46.143, + "total_deaths": 52.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 7.612, + "new_cases_per_million": 0.674, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 84.26 + }, + { + "date": "2020-04-04", + "total_cases": 779.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7.612, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 84.26 + }, + { + "date": "2020-04-05", + "total_cases": 985.0, + "new_cases": 206.0, + "new_cases_smoothed": 64.143, + "total_deaths": 66.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 9.625, + "new_cases_per_million": 2.013, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.645, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 84.26 + }, + { + "date": "2020-04-06", + "total_cases": 1070.0, + "new_cases": 85.0, + "new_cases_smoothed": 70.571, + "total_deaths": 71.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 10.456, + "new_cases_per_million": 0.831, + "new_cases_smoothed_per_million": 0.69, + "total_deaths_per_million": 0.694, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 84.26 + }, + { + "date": "2020-04-07", + "total_cases": 1073.0, + "new_cases": 3.0, + "new_cases_smoothed": 66.286, + "total_deaths": 78.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 10.485, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.648, + "total_deaths_per_million": 0.762, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 84.26 + }, + { + "date": "2020-04-08", + "total_cases": 1322.0, + "new_cases": 249.0, + "new_cases_smoothed": 95.143, + "total_deaths": 85.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 12.918, + "new_cases_per_million": 2.433, + "new_cases_smoothed_per_million": 0.93, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 84.26 + }, + { + "date": "2020-04-09", + "total_cases": 1560.0, + "new_cases": 238.0, + "new_cases_smoothed": 121.429, + "total_deaths": 103.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 15.244, + "new_cases_per_million": 2.326, + "new_cases_smoothed_per_million": 1.187, + "total_deaths_per_million": 1.007, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.08, + "stringency_index": 84.26 + }, + { + "date": "2020-04-10", + "total_cases": 1699.0, + "new_cases": 139.0, + "new_cases_smoothed": 131.429, + "total_deaths": 118.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 16.602, + "new_cases_per_million": 1.358, + "new_cases_smoothed_per_million": 1.284, + "total_deaths_per_million": 1.153, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 84.26 + }, + { + "date": "2020-04-11", + "total_cases": 1794.0, + "new_cases": 95.0, + "new_cases_smoothed": 145.0, + "total_deaths": 135.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 17.531, + "new_cases_per_million": 0.928, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 1.319, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 84.26 + }, + { + "date": "2020-04-12", + "total_cases": 1939.0, + "new_cases": 145.0, + "new_cases_smoothed": 136.286, + "total_deaths": 146.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 18.948, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 1.332, + "total_deaths_per_million": 1.427, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 2065.0, + "new_cases": 126.0, + "new_cases_smoothed": 142.143, + "total_deaths": 159.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 20.179, + "new_cases_per_million": 1.231, + "new_cases_smoothed_per_million": 1.389, + "total_deaths_per_million": 1.554, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 2190.0, + "new_cases": 125.0, + "new_cases_smoothed": 159.571, + "total_deaths": 164.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 21.4, + "new_cases_per_million": 1.221, + "new_cases_smoothed_per_million": 1.559, + "total_deaths_per_million": 1.603, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 2350.0, + "new_cases": 160.0, + "new_cases_smoothed": 146.857, + "total_deaths": 178.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 22.964, + "new_cases_per_million": 1.564, + "new_cases_smoothed_per_million": 1.435, + "total_deaths_per_million": 1.739, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 2505.0, + "new_cases": 155.0, + "new_cases_smoothed": 135.0, + "total_deaths": 183.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 24.479, + "new_cases_per_million": 1.515, + "new_cases_smoothed_per_million": 1.319, + "total_deaths_per_million": 1.788, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 2673.0, + "new_cases": 168.0, + "new_cases_smoothed": 139.143, + "total_deaths": 196.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 26.12, + "new_cases_per_million": 1.642, + "new_cases_smoothed_per_million": 1.36, + "total_deaths_per_million": 1.915, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 2844.0, + "new_cases": 171.0, + "new_cases_smoothed": 150.0, + "total_deaths": 205.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 27.791, + "new_cases_per_million": 1.671, + "new_cases_smoothed_per_million": 1.466, + "total_deaths_per_million": 2.003, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.098, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 3032.0, + "new_cases": 188.0, + "new_cases_smoothed": 156.143, + "total_deaths": 224.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 29.628, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 1.526, + "total_deaths_per_million": 2.189, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 3144.0, + "new_cases": 112.0, + "new_cases_smoothed": 154.143, + "total_deaths": 239.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 30.723, + "new_cases_per_million": 1.094, + "new_cases_smoothed_per_million": 1.506, + "total_deaths_per_million": 2.335, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 3333.0, + "new_cases": 189.0, + "new_cases_smoothed": 163.286, + "total_deaths": 250.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 32.57, + "new_cases_per_million": 1.847, + "new_cases_smoothed_per_million": 1.596, + "total_deaths_per_million": 2.443, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 3490.0, + "new_cases": 157.0, + "new_cases_smoothed": 162.857, + "total_deaths": 264.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 34.104, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 2.58, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 3490.0, + "new_cases": 0.0, + "new_cases_smoothed": 140.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 34.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 2.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 3659.0, + "new_cases": 169.0, + "new_cases_smoothed": 140.857, + "total_deaths": 276.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 35.755, + "new_cases_per_million": 1.651, + "new_cases_smoothed_per_million": 1.376, + "total_deaths_per_million": 2.697, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 4092.0, + "new_cases": 433.0, + "new_cases_smoothed": 178.286, + "total_deaths": 294.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 39.987, + "new_cases_per_million": 4.231, + "new_cases_smoothed_per_million": 1.742, + "total_deaths_per_million": 2.873, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 4319.0, + "new_cases": 227.0, + "new_cases_smoothed": 183.857, + "total_deaths": 307.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 42.205, + "new_cases_per_million": 2.218, + "new_cases_smoothed_per_million": 1.797, + "total_deaths_per_million": 3.0, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 4319.0, + "new_cases": 0.0, + "new_cases_smoothed": 167.857, + "total_deaths": 307.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 42.205, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 3.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.095, + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 4782.0, + "new_cases": 463.0, + "new_cases_smoothed": 207.0, + "total_deaths": 337.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 46.729, + "new_cases_per_million": 4.524, + "new_cases_smoothed_per_million": 2.023, + "total_deaths_per_million": 3.293, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 5042.0, + "new_cases": 260.0, + "new_cases_smoothed": 221.714, + "total_deaths": 359.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 49.27, + "new_cases_per_million": 2.541, + "new_cases_smoothed_per_million": 2.167, + "total_deaths_per_million": 3.508, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 5268.0, + "new_cases": 226.0, + "new_cases_smoothed": 254.0, + "total_deaths": 380.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 51.478, + "new_cases_per_million": 2.208, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 3.713, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 5537.0, + "new_cases": 269.0, + "new_cases_smoothed": 268.286, + "total_deaths": 392.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 54.107, + "new_cases_per_million": 2.629, + "new_cases_smoothed_per_million": 2.622, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 5895.0, + "new_cases": 358.0, + "new_cases_smoothed": 257.571, + "total_deaths": 406.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 57.605, + "new_cases_per_million": 3.498, + "new_cases_smoothed_per_million": 2.517, + "total_deaths_per_million": 3.967, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 6193.0, + "new_cases": 298.0, + "new_cases_smoothed": 267.714, + "total_deaths": 415.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 60.517, + "new_cases_per_million": 2.912, + "new_cases_smoothed_per_million": 2.616, + "total_deaths_per_million": 4.055, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 6465.0, + "new_cases": 272.0, + "new_cases_smoothed": 306.571, + "total_deaths": 429.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 63.175, + "new_cases_per_million": 2.658, + "new_cases_smoothed_per_million": 2.996, + "total_deaths_per_million": 4.192, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.17, + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 6813.0, + "new_cases": 348.0, + "new_cases_smoothed": 290.143, + "total_deaths": 436.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 66.576, + "new_cases_per_million": 3.401, + "new_cases_smoothed_per_million": 2.835, + "total_deaths_per_million": 4.261, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 7201.0, + "new_cases": 388.0, + "new_cases_smoothed": 308.429, + "total_deaths": 452.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 70.367, + "new_cases_per_million": 3.791, + "new_cases_smoothed_per_million": 3.014, + "total_deaths_per_million": 4.417, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 7588.0, + "new_cases": 387.0, + "new_cases_smoothed": 331.429, + "total_deaths": 469.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 74.149, + "new_cases_per_million": 3.782, + "new_cases_smoothed_per_million": 3.239, + "total_deaths_per_million": 4.583, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 7981.0, + "new_cases": 393.0, + "new_cases_smoothed": 349.143, + "total_deaths": 482.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 77.989, + "new_cases_per_million": 3.84, + "new_cases_smoothed_per_million": 3.412, + "total_deaths_per_million": 4.71, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 8476.0, + "new_cases": 495.0, + "new_cases_smoothed": 368.714, + "total_deaths": 503.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 82.826, + "new_cases_per_million": 4.837, + "new_cases_smoothed_per_million": 3.603, + "total_deaths_per_million": 4.915, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 8964.0, + "new_cases": 488.0, + "new_cases_smoothed": 395.857, + "total_deaths": 514.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 87.595, + "new_cases_per_million": 4.769, + "new_cases_smoothed_per_million": 3.868, + "total_deaths_per_million": 5.023, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 9400.0, + "new_cases": 436.0, + "new_cases_smoothed": 419.286, + "total_deaths": 525.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 91.856, + "new_cases_per_million": 4.261, + "new_cases_smoothed_per_million": 4.097, + "total_deaths_per_million": 5.13, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 9746.0, + "new_cases": 346.0, + "new_cases_smoothed": 419.0, + "total_deaths": 533.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 95.237, + "new_cases_per_million": 3.381, + "new_cases_smoothed_per_million": 4.094, + "total_deaths_per_million": 5.208, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.135, + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 10093.0, + "new_cases": 347.0, + "new_cases_smoothed": 413.143, + "total_deaths": 544.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 98.628, + "new_cases_per_million": 3.391, + "new_cases_smoothed_per_million": 4.037, + "total_deaths_per_million": 5.316, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 10431.0, + "new_cases": 338.0, + "new_cases_smoothed": 406.143, + "total_deaths": 556.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 101.931, + "new_cases_per_million": 3.303, + "new_cases_smoothed_per_million": 3.969, + "total_deaths_per_million": 5.433, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 84.26 + }, + { + "date": "2020-05-15", + "total_cases": 10829.0, + "new_cases": 398.0, + "new_cases_smoothed": 406.857, + "total_deaths": 571.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 105.82, + "new_cases_per_million": 3.889, + "new_cases_smoothed_per_million": 3.976, + "total_deaths_per_million": 5.58, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 84.26 + }, + { + "date": "2020-05-16", + "total_cases": 11228.0, + "new_cases": 399.0, + "new_cases_smoothed": 393.143, + "total_deaths": 592.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 109.719, + "new_cases_per_million": 3.899, + "new_cases_smoothed_per_million": 3.842, + "total_deaths_per_million": 5.785, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 84.26 + }, + { + "date": "2020-05-17", + "total_cases": 11719.0, + "new_cases": 491.0, + "new_cases_smoothed": 393.571, + "total_deaths": 612.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 114.517, + "new_cases_per_million": 4.798, + "new_cases_smoothed_per_million": 3.846, + "total_deaths_per_million": 5.98, + "new_deaths_per_million": 0.195, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 84.26 + }, + { + "date": "2020-05-18", + "total_cases": 12229.0, + "new_cases": 510.0, + "new_cases_smoothed": 404.143, + "total_deaths": 630.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 119.5, + "new_cases_per_million": 4.984, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 6.156, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 84.26 + }, + { + "date": "2020-05-19", + "total_cases": 12764.0, + "new_cases": 535.0, + "new_cases_smoothed": 431.143, + "total_deaths": 645.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 124.728, + "new_cases_per_million": 5.228, + "new_cases_smoothed_per_million": 4.213, + "total_deaths_per_million": 6.303, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 84.26 + }, + { + "date": "2020-05-20", + "total_cases": 13484.0, + "new_cases": 720.0, + "new_cases_smoothed": 484.429, + "total_deaths": 659.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 131.764, + "new_cases_per_million": 7.036, + "new_cases_smoothed_per_million": 4.734, + "total_deaths_per_million": 6.44, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 84.26 + }, + { + "date": "2020-05-21", + "total_cases": 14229.0, + "new_cases": 745.0, + "new_cases_smoothed": 542.571, + "total_deaths": 680.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 139.044, + "new_cases_per_million": 7.28, + "new_cases_smoothed_per_million": 5.302, + "total_deaths_per_million": 6.645, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 84.26 + }, + { + "date": "2020-05-22", + "total_cases": 15003.0, + "new_cases": 774.0, + "new_cases_smoothed": 596.286, + "total_deaths": 696.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 146.608, + "new_cases_per_million": 7.563, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 6.801, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 84.26 + }, + { + "date": "2020-05-23", + "total_cases": 15786.0, + "new_cases": 783.0, + "new_cases_smoothed": 651.143, + "total_deaths": 707.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 154.259, + "new_cases_per_million": 7.651, + "new_cases_smoothed_per_million": 6.363, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 16613.0, + "new_cases": 827.0, + "new_cases_smoothed": 699.143, + "total_deaths": 735.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 162.34, + "new_cases_per_million": 8.081, + "new_cases_smoothed_per_million": 6.832, + "total_deaths_per_million": 7.182, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 17265.0, + "new_cases": 652.0, + "new_cases_smoothed": 719.429, + "total_deaths": 764.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 168.712, + "new_cases_per_million": 6.371, + "new_cases_smoothed_per_million": 7.03, + "total_deaths_per_million": 7.466, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 17967.0, + "new_cases": 702.0, + "new_cases_smoothed": 743.286, + "total_deaths": 783.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 175.571, + "new_cases_per_million": 6.86, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 7.651, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 18756.0, + "new_cases": 789.0, + "new_cases_smoothed": 753.143, + "total_deaths": 797.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 183.281, + "new_cases_per_million": 7.71, + "new_cases_smoothed_per_million": 7.36, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 19666.0, + "new_cases": 910.0, + "new_cases_smoothed": 776.714, + "total_deaths": 816.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 192.174, + "new_cases_per_million": 8.892, + "new_cases_smoothed_per_million": 7.59, + "total_deaths_per_million": 7.974, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.19, + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 20793.0, + "new_cases": 1127.0, + "new_cases_smoothed": 827.143, + "total_deaths": 845.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 203.187, + "new_cases_per_million": 11.013, + "new_cases_smoothed_per_million": 8.083, + "total_deaths_per_million": 8.257, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 22082.0, + "new_cases": 1289.0, + "new_cases_smoothed": 899.429, + "total_deaths": 879.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 215.783, + "new_cases_per_million": 12.596, + "new_cases_smoothed_per_million": 8.789, + "total_deaths_per_million": 8.589, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.24, + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 23449.0, + "new_cases": 1367.0, + "new_cases_smoothed": 976.571, + "total_deaths": 913.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 229.141, + "new_cases_per_million": 13.358, + "new_cases_smoothed_per_million": 9.543, + "total_deaths_per_million": 8.922, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.248, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 24985.0, + "new_cases": 1536.0, + "new_cases_smoothed": 1102.857, + "total_deaths": 959.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 244.151, + "new_cases_per_million": 15.01, + "new_cases_smoothed_per_million": 10.777, + "total_deaths_per_million": 9.371, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 84.26 + }, + { + "date": "2020-06-02", + "total_cases": 26384.0, + "new_cases": 1399.0, + "new_cases_smoothed": 1202.429, + "total_deaths": 1005.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 257.821, + "new_cases_per_million": 13.671, + "new_cases_smoothed_per_million": 11.75, + "total_deaths_per_million": 9.821, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.31, + "stringency_index": 84.26 + }, + { + "date": "2020-06-03", + "total_cases": 27536.0, + "new_cases": 1152.0, + "new_cases_smoothed": 1254.286, + "total_deaths": 1052.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 36.429, + "total_cases_per_million": 269.079, + "new_cases_per_million": 11.257, + "new_cases_smoothed_per_million": 12.257, + "total_deaths_per_million": 10.28, + "new_deaths_per_million": 0.459, + "new_deaths_smoothed_per_million": 0.356, + "stringency_index": 84.26 + }, + { + "date": "2020-06-04", + "total_cases": 28615.0, + "new_cases": 1079.0, + "new_cases_smoothed": 1278.429, + "total_deaths": 1088.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 279.622, + "new_cases_per_million": 10.544, + "new_cases_smoothed_per_million": 12.493, + "total_deaths_per_million": 10.632, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.38, + "stringency_index": 84.26 + }, + { + "date": "2020-06-05", + "total_cases": 29767.0, + "new_cases": 1152.0, + "new_cases_smoothed": 1282.0, + "total_deaths": 1126.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 290.88, + "new_cases_per_million": 11.257, + "new_cases_smoothed_per_million": 12.528, + "total_deaths_per_million": 11.003, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 84.26 + }, + { + "date": "2020-06-06", + "total_cases": 31115.0, + "new_cases": 1348.0, + "new_cases_smoothed": 1290.429, + "total_deaths": 1166.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 304.052, + "new_cases_per_million": 13.173, + "new_cases_smoothed_per_million": 12.61, + "total_deaths_per_million": 11.394, + "new_deaths_per_million": 0.391, + "new_deaths_smoothed_per_million": 0.401, + "stringency_index": 84.26 + }, + { + "date": "2020-06-07", + "total_cases": 32612.0, + "new_cases": 1497.0, + "new_cases_smoothed": 1309.0, + "total_deaths": 1198.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 40.714, + "total_cases_per_million": 318.681, + "new_cases_per_million": 14.629, + "new_cases_smoothed_per_million": 12.791, + "total_deaths_per_million": 11.707, + "new_deaths_per_million": 0.313, + "new_deaths_smoothed_per_million": 0.398, + "stringency_index": 71.3 + }, + { + "date": "2020-06-08", + "total_cases": 34079.0, + "new_cases": 1467.0, + "new_cases_smoothed": 1299.143, + "total_deaths": 1237.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 39.714, + "total_cases_per_million": 333.016, + "new_cases_per_million": 14.335, + "new_cases_smoothed_per_million": 12.695, + "total_deaths_per_million": 12.088, + "new_deaths_per_million": 0.381, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 71.3 + }, + { + "date": "2020-06-09", + "total_cases": 35444.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1294.286, + "total_deaths": 1271.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 346.355, + "new_cases_per_million": 13.339, + "new_cases_smoothed_per_million": 12.648, + "total_deaths_per_million": 12.42, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.371, + "stringency_index": 71.3 + }, + { + "date": "2020-06-10", + "total_cases": 36829.0, + "new_cases": 1385.0, + "new_cases_smoothed": 1327.571, + "total_deaths": 1306.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 359.889, + "new_cases_per_million": 13.534, + "new_cases_smoothed_per_million": 12.973, + "total_deaths_per_million": 12.762, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 71.3 + }, + { + "date": "2020-06-11", + "total_cases": 38284.0, + "new_cases": 1455.0, + "new_cases_smoothed": 1381.286, + "total_deaths": 1342.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 374.107, + "new_cases_per_million": 14.218, + "new_cases_smoothed_per_million": 13.498, + "total_deaths_per_million": 13.114, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 71.3 + }, + { + "date": "2020-06-12", + "total_cases": 39726.0, + "new_cases": 1442.0, + "new_cases_smoothed": 1422.714, + "total_deaths": 1377.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 388.198, + "new_cases_per_million": 14.091, + "new_cases_smoothed_per_million": 13.903, + "total_deaths_per_million": 13.456, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.35, + "stringency_index": 71.3 + }, + { + "date": "2020-06-13", + "total_cases": 41304.0, + "new_cases": 1578.0, + "new_cases_smoothed": 1455.571, + "total_deaths": 1422.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 403.618, + "new_cases_per_million": 15.42, + "new_cases_smoothed_per_million": 14.224, + "total_deaths_per_million": 13.896, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.357, + "stringency_index": 71.3 + }, + { + "date": "2020-06-14", + "total_cases": 42980.0, + "new_cases": 1676.0, + "new_cases_smoothed": 1481.143, + "total_deaths": 1484.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 419.996, + "new_cases_per_million": 16.378, + "new_cases_smoothed_per_million": 14.474, + "total_deaths_per_million": 14.501, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.399, + "stringency_index": 71.3 + }, + { + "date": "2020-06-15", + "total_cases": 44598.0, + "new_cases": 1618.0, + "new_cases_smoothed": 1502.714, + "total_deaths": 1575.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 48.286, + "total_cases_per_million": 435.807, + "new_cases_per_million": 15.811, + "new_cases_smoothed_per_million": 14.684, + "total_deaths_per_million": 15.391, + "new_deaths_per_million": 0.889, + "new_deaths_smoothed_per_million": 0.472, + "stringency_index": 71.3 + }, + { + "date": "2020-06-16", + "total_cases": 46289.0, + "new_cases": 1691.0, + "new_cases_smoothed": 1549.286, + "total_deaths": 1672.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 57.286, + "total_cases_per_million": 452.331, + "new_cases_per_million": 16.524, + "new_cases_smoothed_per_million": 15.139, + "total_deaths_per_million": 16.339, + "new_deaths_per_million": 0.948, + "new_deaths_smoothed_per_million": 0.56, + "stringency_index": 71.3 + }, + { + "date": "2020-06-17", + "total_cases": 47856.0, + "new_cases": 1567.0, + "new_cases_smoothed": 1575.286, + "total_deaths": 1766.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 65.714, + "total_cases_per_million": 467.643, + "new_cases_per_million": 15.313, + "new_cases_smoothed_per_million": 15.394, + "total_deaths_per_million": 17.257, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 0.642, + "stringency_index": 71.3 + }, + { + "date": "2020-06-18", + "total_cases": 49219.0, + "new_cases": 1363.0, + "new_cases_smoothed": 1562.143, + "total_deaths": 1850.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 72.571, + "total_cases_per_million": 480.962, + "new_cases_per_million": 13.319, + "new_cases_smoothed_per_million": 15.265, + "total_deaths_per_million": 18.078, + "new_deaths_per_million": 0.821, + "new_deaths_smoothed_per_million": 0.709, + "stringency_index": 71.3 + }, + { + "date": "2020-06-19", + "total_cases": 50437.0, + "new_cases": 1218.0, + "new_cases_smoothed": 1530.143, + "total_deaths": 1938.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 80.143, + "total_cases_per_million": 492.865, + "new_cases_per_million": 11.902, + "new_cases_smoothed_per_million": 14.952, + "total_deaths_per_million": 18.938, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 0.783, + "stringency_index": 71.3 + }, + { + "date": "2020-06-20", + "total_cases": 52211.0, + "new_cases": 1774.0, + "new_cases_smoothed": 1558.143, + "total_deaths": 2017.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 85.0, + "total_cases_per_million": 510.2, + "new_cases_per_million": 17.335, + "new_cases_smoothed_per_million": 15.226, + "total_deaths_per_million": 19.71, + "new_deaths_per_million": 0.772, + "new_deaths_smoothed_per_million": 0.831, + "stringency_index": 71.3 + }, + { + "date": "2020-06-21", + "total_cases": 53758.0, + "new_cases": 1547.0, + "new_cases_smoothed": 1539.714, + "total_deaths": 2106.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 88.857, + "total_cases_per_million": 525.317, + "new_cases_per_million": 15.117, + "new_cases_smoothed_per_million": 15.046, + "total_deaths_per_million": 20.58, + "new_deaths_per_million": 0.87, + "new_deaths_smoothed_per_million": 0.868, + "stringency_index": 71.3 + }, + { + "date": "2020-06-22", + "total_cases": 55233.0, + "new_cases": 1475.0, + "new_cases_smoothed": 1519.286, + "total_deaths": 2193.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 88.286, + "total_cases_per_million": 539.731, + "new_cases_per_million": 14.414, + "new_cases_smoothed_per_million": 14.846, + "total_deaths_per_million": 21.43, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 0.863, + "stringency_index": 71.3 + }, + { + "date": "2020-06-23", + "total_cases": 56809.0, + "new_cases": 1576.0, + "new_cases_smoothed": 1502.857, + "total_deaths": 2278.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 86.571, + "total_cases_per_million": 555.131, + "new_cases_per_million": 15.4, + "new_cases_smoothed_per_million": 14.686, + "total_deaths_per_million": 22.26, + "new_deaths_per_million": 0.831, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 71.3 + }, + { + "date": "2020-06-24", + "total_cases": 58141.0, + "new_cases": 1332.0, + "new_cases_smoothed": 1469.286, + "total_deaths": 2365.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 85.571, + "total_cases_per_million": 568.147, + "new_cases_per_million": 13.016, + "new_cases_smoothed_per_million": 14.358, + "total_deaths_per_million": 23.111, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 0.836, + "stringency_index": 71.3 + }, + { + "date": "2020-06-25", + "total_cases": 59561.0, + "new_cases": 1420.0, + "new_cases_smoothed": 1477.429, + "total_deaths": 2450.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 85.714, + "total_cases_per_million": 582.023, + "new_cases_per_million": 13.876, + "new_cases_smoothed_per_million": 14.437, + "total_deaths_per_million": 23.941, + "new_deaths_per_million": 0.831, + "new_deaths_smoothed_per_million": 0.838, + "stringency_index": 71.3 + }, + { + "date": "2020-06-26", + "total_cases": 61130.0, + "new_cases": 1569.0, + "new_cases_smoothed": 1527.571, + "total_deaths": 2533.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 85.0, + "total_cases_per_million": 597.355, + "new_cases_per_million": 15.332, + "new_cases_smoothed_per_million": 14.927, + "total_deaths_per_million": 24.752, + "new_deaths_per_million": 0.811, + "new_deaths_smoothed_per_million": 0.831, + "stringency_index": 71.3 + }, + { + "date": "2020-06-27", + "total_cases": 62755.0, + "new_cases": 1625.0, + "new_cases_smoothed": 1506.286, + "total_deaths": 2620.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 86.143, + "total_cases_per_million": 613.235, + "new_cases_per_million": 15.879, + "new_cases_smoothed_per_million": 14.719, + "total_deaths_per_million": 25.602, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 0.842, + "stringency_index": 71.3 + }, + { + "date": "2020-06-28", + "total_cases": 63923.0, + "new_cases": 1168.0, + "new_cases_smoothed": 1452.143, + "total_deaths": 2708.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 86.0, + "total_cases_per_million": 624.648, + "new_cases_per_million": 11.414, + "new_cases_smoothed_per_million": 14.19, + "total_deaths_per_million": 26.462, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 0.84, + "stringency_index": 71.3 + }, + { + "date": "2020-06-29", + "total_cases": 65188.0, + "new_cases": 1265.0, + "new_cases_smoothed": 1422.143, + "total_deaths": 2789.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 85.143, + "total_cases_per_million": 637.01, + "new_cases_per_million": 12.361, + "new_cases_smoothed_per_million": 13.897, + "total_deaths_per_million": 27.254, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.832, + "stringency_index": 71.3 + }, + { + "date": "2020-06-30", + "total_cases": 66754.0, + "new_cases": 1566.0, + "new_cases_smoothed": 1420.714, + "total_deaths": 2872.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 84.857, + "total_cases_per_million": 652.312, + "new_cases_per_million": 15.303, + "new_cases_smoothed_per_million": 13.883, + "total_deaths_per_million": 28.065, + "new_deaths_per_million": 0.811, + "new_deaths_smoothed_per_million": 0.829, + "stringency_index": 71.3 + }, + { + "date": "2020-07-01", + "total_cases": 68311.0, + "new_cases": 1557.0, + "new_cases_smoothed": 1452.857, + "total_deaths": 2953.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 84.0, + "total_cases_per_million": 667.527, + "new_cases_per_million": 15.215, + "new_cases_smoothed_per_million": 14.197, + "total_deaths_per_million": 28.856, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.821, + "stringency_index": 60.19 + }, + { + "date": "2020-07-02", + "total_cases": 69814.0, + "new_cases": 1503.0, + "new_cases_smoothed": 1464.714, + "total_deaths": 3034.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 83.429, + "total_cases_per_million": 682.214, + "new_cases_per_million": 14.687, + "new_cases_smoothed_per_million": 14.313, + "total_deaths_per_million": 29.648, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.815, + "stringency_index": 60.19 + }, + { + "date": "2020-07-03", + "total_cases": 71299.0, + "new_cases": 1485.0, + "new_cases_smoothed": 1452.714, + "total_deaths": 3120.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 83.857, + "total_cases_per_million": 696.726, + "new_cases_per_million": 14.511, + "new_cases_smoothed_per_million": 14.196, + "total_deaths_per_million": 30.488, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.819, + "stringency_index": 60.19 + }, + { + "date": "2020-07-04", + "total_cases": 72711.0, + "new_cases": 1412.0, + "new_cases_smoothed": 1422.286, + "total_deaths": 3201.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 710.524, + "new_cases_per_million": 13.798, + "new_cases_smoothed_per_million": 13.898, + "total_deaths_per_million": 31.28, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.811, + "stringency_index": 60.19 + }, + { + "date": "2020-07-05", + "total_cases": 74035.0, + "new_cases": 1324.0, + "new_cases_smoothed": 1444.571, + "total_deaths": 3280.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 81.714, + "total_cases_per_million": 723.461, + "new_cases_per_million": 12.938, + "new_cases_smoothed_per_million": 14.116, + "total_deaths_per_million": 32.052, + "new_deaths_per_million": 0.772, + "new_deaths_smoothed_per_million": 0.799, + "stringency_index": 60.19 + }, + { + "date": "2020-07-06", + "total_cases": 75253.0, + "new_cases": 1218.0, + "new_cases_smoothed": 1437.857, + "total_deaths": 3343.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 735.364, + "new_cases_per_million": 11.902, + "new_cases_smoothed_per_million": 14.051, + "total_deaths_per_million": 32.667, + "new_deaths_per_million": 0.616, + "new_deaths_smoothed_per_million": 0.773, + "stringency_index": 60.19 + }, + { + "date": "2020-07-07", + "total_cases": 76222.0, + "new_cases": 969.0, + "new_cases_smoothed": 1352.571, + "total_deaths": 3422.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 78.571, + "total_cases_per_million": 744.833, + "new_cases_per_million": 9.469, + "new_cases_smoothed_per_million": 13.217, + "total_deaths_per_million": 33.439, + "new_deaths_per_million": 0.772, + "new_deaths_smoothed_per_million": 0.768, + "stringency_index": 60.19 + }, + { + "date": "2020-07-08", + "total_cases": 77279.0, + "new_cases": 1057.0, + "new_cases_smoothed": 1281.143, + "total_deaths": 3489.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 76.571, + "total_cases_per_million": 755.161, + "new_cases_per_million": 10.329, + "new_cases_smoothed_per_million": 12.519, + "total_deaths_per_million": 34.094, + "new_deaths_per_million": 0.655, + "new_deaths_smoothed_per_million": 0.748, + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 78304.0, + "new_cases": 1025.0, + "new_cases_smoothed": 1212.857, + "total_deaths": 3564.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 75.714, + "total_cases_per_million": 765.178, + "new_cases_per_million": 10.016, + "new_cases_smoothed_per_million": 11.852, + "total_deaths_per_million": 34.827, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.74, + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 79254.0, + "new_cases": 950.0, + "new_cases_smoothed": 1136.429, + "total_deaths": 3617.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 71.0, + "total_cases_per_million": 774.461, + "new_cases_per_million": 9.283, + "new_cases_smoothed_per_million": 11.105, + "total_deaths_per_million": 35.345, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.694, + "stringency_index": 60.19 + }, + { + "date": "2020-07-11", + "total_cases": 80235.0, + "new_cases": 981.0, + "new_cases_smoothed": 1074.857, + "total_deaths": 3702.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 71.571, + "total_cases_per_million": 784.047, + "new_cases_per_million": 9.586, + "new_cases_smoothed_per_million": 10.503, + "total_deaths_per_million": 36.176, + "new_deaths_per_million": 0.831, + "new_deaths_smoothed_per_million": 0.699, + "stringency_index": 60.19 + }, + { + "date": "2020-07-12", + "total_cases": 81158.0, + "new_cases": 923.0, + "new_cases_smoothed": 1017.571, + "total_deaths": 3769.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 69.857, + "total_cases_per_million": 793.067, + "new_cases_per_million": 9.019, + "new_cases_smoothed_per_million": 9.944, + "total_deaths_per_million": 36.83, + "new_deaths_per_million": 0.655, + "new_deaths_smoothed_per_million": 0.683, + "stringency_index": 60.19 + }, + { + "date": "2020-07-13", + "total_cases": 82070.0, + "new_cases": 912.0, + "new_cases_smoothed": 973.857, + "total_deaths": 3858.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 73.571, + "total_cases_per_million": 801.979, + "new_cases_per_million": 8.912, + "new_cases_smoothed_per_million": 9.516, + "total_deaths_per_million": 37.7, + "new_deaths_per_million": 0.87, + "new_deaths_smoothed_per_million": 0.719, + "stringency_index": 60.19 + }, + { + "date": "2020-07-14", + "total_cases": 83001.0, + "new_cases": 931.0, + "new_cases_smoothed": 968.429, + "total_deaths": 3935.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 811.076, + "new_cases_per_million": 9.098, + "new_cases_smoothed_per_million": 9.463, + "total_deaths_per_million": 38.452, + "new_deaths_per_million": 0.752, + "new_deaths_smoothed_per_million": 0.716, + "stringency_index": 60.19 + }, + { + "date": "2020-07-15", + "total_cases": 83930.0, + "new_cases": 929.0, + "new_cases_smoothed": 950.143, + "total_deaths": 4008.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 74.143, + "total_cases_per_million": 820.154, + "new_cases_per_million": 9.078, + "new_cases_smoothed_per_million": 9.285, + "total_deaths_per_million": 39.166, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.725, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 84843.0, + "new_cases": 913.0, + "new_cases_smoothed": 934.143, + "total_deaths": 4067.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 71.857, + "total_cases_per_million": 829.076, + "new_cases_per_million": 8.922, + "new_cases_smoothed_per_million": 9.128, + "total_deaths_per_million": 39.742, + "new_deaths_per_million": 0.577, + "new_deaths_smoothed_per_million": 0.702, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 85771.0, + "new_cases": 928.0, + "new_cases_smoothed": 931.0, + "total_deaths": 4120.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 71.857, + "total_cases_per_million": 838.144, + "new_cases_per_million": 9.068, + "new_cases_smoothed_per_million": 9.098, + "total_deaths_per_million": 40.26, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.702, + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 86474.0, + "new_cases": 703.0, + "new_cases_smoothed": 891.286, + "total_deaths": 4188.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 69.429, + "total_cases_per_million": 845.014, + "new_cases_per_million": 6.87, + "new_cases_smoothed_per_million": 8.71, + "total_deaths_per_million": 40.925, + "new_deaths_per_million": 0.664, + "new_deaths_smoothed_per_million": 0.678, + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 87172.0, + "new_cases": 698.0, + "new_cases_smoothed": 859.143, + "total_deaths": 4251.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 851.835, + "new_cases_per_million": 6.821, + "new_cases_smoothed_per_million": 8.395, + "total_deaths_per_million": 41.54, + "new_deaths_per_million": 0.616, + "new_deaths_smoothed_per_million": 0.673, + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 87775.0, + "new_cases": 603.0, + "new_cases_smoothed": 815.0, + "total_deaths": 4302.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 63.429, + "total_cases_per_million": 857.727, + "new_cases_per_million": 5.892, + "new_cases_smoothed_per_million": 7.964, + "total_deaths_per_million": 42.039, + "new_deaths_per_million": 0.498, + "new_deaths_smoothed_per_million": 0.62, + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 88402.0, + "new_cases": 627.0, + "new_cases_smoothed": 771.571, + "total_deaths": 4352.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 59.571, + "total_cases_per_million": 863.854, + "new_cases_per_million": 6.127, + "new_cases_smoothed_per_million": 7.54, + "total_deaths_per_million": 42.527, + "new_deaths_per_million": 0.489, + "new_deaths_smoothed_per_million": 0.582, + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 89078.0, + "new_cases": 676.0, + "new_cases_smoothed": 735.429, + "total_deaths": 4399.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 55.857, + "total_cases_per_million": 870.46, + "new_cases_per_million": 6.606, + "new_cases_smoothed_per_million": 7.187, + "total_deaths_per_million": 42.987, + "new_deaths_per_million": 0.459, + "new_deaths_smoothed_per_million": 0.546, + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 89745.0, + "new_cases": 667.0, + "new_cases_smoothed": 700.286, + "total_deaths": 4440.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 53.286, + "total_cases_per_million": 876.978, + "new_cases_per_million": 6.518, + "new_cases_smoothed_per_million": 6.843, + "total_deaths_per_million": 43.387, + "new_deaths_per_million": 0.401, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 90413.0, + "new_cases": 668.0, + "new_cases_smoothed": 663.143, + "total_deaths": 4480.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 51.429, + "total_cases_per_million": 883.505, + "new_cases_per_million": 6.528, + "new_cases_smoothed_per_million": 6.48, + "total_deaths_per_million": 43.778, + "new_deaths_per_million": 0.391, + "new_deaths_smoothed_per_million": 0.503, + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 91072.0, + "new_cases": 659.0, + "new_cases_smoothed": 656.857, + "total_deaths": 4518.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 47.143, + "total_cases_per_million": 889.945, + "new_cases_per_million": 6.44, + "new_cases_smoothed_per_million": 6.419, + "total_deaths_per_million": 44.149, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 91583.0, + "new_cases": 511.0, + "new_cases_smoothed": 630.143, + "total_deaths": 4558.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 894.939, + "new_cases_per_million": 4.993, + "new_cases_smoothed_per_million": 6.158, + "total_deaths_per_million": 44.54, + "new_deaths_per_million": 0.391, + "new_deaths_smoothed_per_million": 0.429, + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 92062.0, + "new_cases": 479.0, + "new_cases_smoothed": 612.429, + "total_deaths": 4606.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 43.429, + "total_cases_per_million": 899.619, + "new_cases_per_million": 4.681, + "new_cases_smoothed_per_million": 5.985, + "total_deaths_per_million": 45.009, + "new_deaths_per_million": 0.469, + "new_deaths_smoothed_per_million": 0.424, + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 92482.0, + "new_cases": 420.0, + "new_cases_smoothed": 582.857, + "total_deaths": 4652.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 903.723, + "new_cases_per_million": 4.104, + "new_cases_smoothed_per_million": 5.696, + "total_deaths_per_million": 45.459, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.419, + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 92947.0, + "new_cases": 465.0, + "new_cases_smoothed": 552.714, + "total_deaths": 4691.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 41.714, + "total_cases_per_million": 908.267, + "new_cases_per_million": 4.544, + "new_cases_smoothed_per_million": 5.401, + "total_deaths_per_million": 45.84, + "new_deaths_per_million": 0.381, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 93356.0, + "new_cases": 409.0, + "new_cases_smoothed": 515.857, + "total_deaths": 4728.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.143, + "total_cases_per_million": 912.264, + "new_cases_per_million": 3.997, + "new_cases_smoothed_per_million": 5.041, + "total_deaths_per_million": 46.201, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.402, + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 93757.0, + "new_cases": 401.0, + "new_cases_smoothed": 477.714, + "total_deaths": 4774.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 916.183, + "new_cases_per_million": 3.919, + "new_cases_smoothed_per_million": 4.668, + "total_deaths_per_million": 46.651, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.41, + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 94078.0, + "new_cases": 321.0, + "new_cases_smoothed": 429.429, + "total_deaths": 4805.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 919.319, + "new_cases_per_million": 3.137, + "new_cases_smoothed_per_million": 4.196, + "total_deaths_per_million": 46.954, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.401, + "stringency_index": 60.19 + }, + { + "date": "2020-08-02", + "total_cases": 94316.0, + "new_cases": 238.0, + "new_cases_smoothed": 390.429, + "total_deaths": 4834.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 921.645, + "new_cases_per_million": 2.326, + "new_cases_smoothed_per_million": 3.815, + "total_deaths_per_million": 47.237, + "new_deaths_per_million": 0.283, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 60.19 + }, + { + "date": "2020-08-03", + "total_cases": 94483.0, + "new_cases": 167.0, + "new_cases_smoothed": 345.857, + "total_deaths": 4865.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 37.0, + "total_cases_per_million": 923.277, + "new_cases_per_million": 1.632, + "new_cases_smoothed_per_million": 3.38, + "total_deaths_per_million": 47.54, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.362, + "stringency_index": 57.41 + }, + { + "date": "2020-08-04", + "total_cases": 94640.0, + "new_cases": 157.0, + "new_cases_smoothed": 308.286, + "total_deaths": 4888.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 924.811, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 3.013, + "total_deaths_per_million": 47.765, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.329, + "stringency_index": 57.41 + }, + { + "date": "2020-08-05", + "total_cases": 94752.0, + "new_cases": 112.0, + "new_cases_smoothed": 257.857, + "total_deaths": 4912.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 925.906, + "new_cases_per_million": 1.094, + "new_cases_smoothed_per_million": 2.52, + "total_deaths_per_million": 47.999, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.309, + "stringency_index": 57.41 + }, + { + "date": "2020-08-06", + "total_cases": 94875.0, + "new_cases": 123.0, + "new_cases_smoothed": 217.0, + "total_deaths": 4930.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 927.108, + "new_cases_per_million": 1.202, + "new_cases_smoothed_per_million": 2.12, + "total_deaths_per_million": 48.175, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.282, + "stringency_index": 57.41 + }, + { + "date": "2020-08-07", + "total_cases": 95006.0, + "new_cases": 131.0, + "new_cases_smoothed": 178.429, + "total_deaths": 4951.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 928.388, + "new_cases_per_million": 1.28, + "new_cases_smoothed_per_million": 1.744, + "total_deaths_per_million": 48.381, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.247, + "stringency_index": 57.41 + }, + { + "date": "2020-08-08", + "total_cases": 95147.0, + "new_cases": 141.0, + "new_cases_smoothed": 152.714, + "total_deaths": 4971.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 23.714, + "total_cases_per_million": 929.766, + "new_cases_per_million": 1.378, + "new_cases_smoothed_per_million": 1.492, + "total_deaths_per_million": 48.576, + "new_deaths_per_million": 0.195, + "new_deaths_smoothed_per_million": 0.232, + "stringency_index": 57.41 + }, + { + "date": "2020-08-09", + "total_cases": 95314.0, + "new_cases": 167.0, + "new_cases_smoothed": 142.571, + "total_deaths": 4992.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 931.397, + "new_cases_per_million": 1.632, + "new_cases_smoothed_per_million": 1.393, + "total_deaths_per_million": 48.781, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.221, + "stringency_index": 57.41 + }, + { + "date": "2020-08-10", + "total_cases": 95492.0, + "new_cases": 178.0, + "new_cases_smoothed": 144.143, + "total_deaths": 5009.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 933.137, + "new_cases_per_million": 1.739, + "new_cases_smoothed_per_million": 1.409, + "total_deaths_per_million": 48.947, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 57.41 + }, + { + "date": "2020-08-11", + "total_cases": 95666.0, + "new_cases": 174.0, + "new_cases_smoothed": 146.571, + "total_deaths": 5035.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 934.837, + "new_cases_per_million": 1.7, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 49.201, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.205, + "stringency_index": 57.41 + }, + { + "date": "2020-08-12", + "total_cases": 95834.0, + "new_cases": 168.0, + "new_cases_smoothed": 154.571, + "total_deaths": 5059.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 936.479, + "new_cases_per_million": 1.642, + "new_cases_smoothed_per_million": 1.51, + "total_deaths_per_million": 49.436, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.205, + "stringency_index": 57.41 + }, + { + "date": "2020-08-13", + "total_cases": 95963.0, + "new_cases": 129.0, + "new_cases_smoothed": 155.429, + "total_deaths": 5085.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 937.739, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 1.519, + "total_deaths_per_million": 49.69, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 57.41 + }, + { + "date": "2020-08-14", + "total_cases": 96108.0, + "new_cases": 145.0, + "new_cases_smoothed": 157.429, + "total_deaths": 5107.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 939.156, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 1.538, + "total_deaths_per_million": 49.905, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 57.41 + }, + { + "date": "2020-08-15", + "total_cases": 96220.0, + "new_cases": 112.0, + "new_cases_smoothed": 153.286, + "total_deaths": 5124.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 940.251, + "new_cases_per_million": 1.094, + "new_cases_smoothed_per_million": 1.498, + "total_deaths_per_million": 50.071, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.214, + "stringency_index": 57.41 + }, + { + "date": "2020-08-16", + "total_cases": 96336.0, + "new_cases": 116.0, + "new_cases_smoothed": 146.0, + "total_deaths": 5141.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 941.384, + "new_cases_per_million": 1.134, + "new_cases_smoothed_per_million": 1.427, + "total_deaths_per_million": 50.237, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 57.41 + }, + { + "date": "2020-08-17", + "total_cases": 96475.0, + "new_cases": 139.0, + "new_cases_smoothed": 140.429, + "total_deaths": 5160.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 942.743, + "new_cases_per_million": 1.358, + "new_cases_smoothed_per_million": 1.372, + "total_deaths_per_million": 50.423, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.211, + "stringency_index": 57.41 + }, + { + "date": "2020-08-18", + "total_cases": 96590.0, + "new_cases": 115.0, + "new_cases_smoothed": 132.0, + "total_deaths": 5173.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 943.866, + "new_cases_per_million": 1.124, + "new_cases_smoothed_per_million": 1.29, + "total_deaths_per_million": 50.55, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 57.41 + }, + { + "date": "2020-08-19", + "total_cases": 96590.0, + "new_cases": 0.0, + "new_cases_smoothed": 108.0, + "total_deaths": 5173.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 943.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.055, + "total_deaths_per_million": 50.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "stringency_index": 57.41 + }, + { + "date": "2020-08-20", + "total_cases": 96914.0, + "new_cases": 324.0, + "new_cases_smoothed": 135.857, + "total_deaths": 5197.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 947.032, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 1.328, + "total_deaths_per_million": 50.784, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 57.41 + }, + { + "date": "2020-08-21", + "total_cases": 97025.0, + "new_cases": 111.0, + "new_cases_smoothed": 131.0, + "total_deaths": 5212.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 948.117, + "new_cases_per_million": 1.085, + "new_cases_smoothed_per_million": 1.28, + "total_deaths_per_million": 50.931, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 57.41 + }, + { + "date": "2020-08-22", + "total_cases": 97148.0, + "new_cases": 123.0, + "new_cases_smoothed": 132.571, + "total_deaths": 5231.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 949.319, + "new_cases_per_million": 1.202, + "new_cases_smoothed_per_million": 1.295, + "total_deaths_per_million": 51.117, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 57.41 + }, + { + "date": "2020-08-23", + "total_cases": 97237.0, + "new_cases": 89.0, + "new_cases_smoothed": 128.714, + "total_deaths": 5243.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 950.189, + "new_cases_per_million": 0.87, + "new_cases_smoothed_per_million": 1.258, + "total_deaths_per_million": 51.234, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.142, + "stringency_index": 62.96 + }, + { + "date": "2020-08-24", + "total_cases": 97237.0, + "new_cases": 0.0, + "new_cases_smoothed": 108.857, + "total_deaths": 5243.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 950.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.064, + "total_deaths_per_million": 51.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 62.96 + }, + { + "date": "2020-08-25", + "total_cases": 97478.0, + "new_cases": 241.0, + "new_cases_smoothed": 126.857, + "total_deaths": 5280.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 952.544, + "new_cases_per_million": 2.355, + "new_cases_smoothed_per_million": 1.24, + "total_deaths_per_million": 51.596, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 62.96 + }, + { + "date": "2020-08-26", + "total_cases": 97619.0, + "new_cases": 141.0, + "new_cases_smoothed": 147.0, + "total_deaths": 5298.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 953.922, + "new_cases_per_million": 1.378, + "new_cases_smoothed_per_million": 1.436, + "total_deaths_per_million": 51.771, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.174, + "stringency_index": 62.96 + }, + { + "date": "2020-08-27", + "total_cases": 97825.0, + "new_cases": 206.0, + "new_cases_smoothed": 130.143, + "total_deaths": 5317.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 955.935, + "new_cases_per_million": 2.013, + "new_cases_smoothed_per_million": 1.272, + "total_deaths_per_million": 51.957, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 62.96 + }, + { + "date": "2020-08-28", + "total_cases": 98062.0, + "new_cases": 237.0, + "new_cases_smoothed": 148.143, + "total_deaths": 5342.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 958.251, + "new_cases_per_million": 2.316, + "new_cases_smoothed_per_million": 1.448, + "total_deaths_per_million": 52.201, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.181, + "stringency_index": 62.96 + }, + { + "date": "2020-08-29", + "total_cases": 98285.0, + "new_cases": 223.0, + "new_cases_smoothed": 162.429, + "total_deaths": 5362.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 960.43, + "new_cases_per_million": 2.179, + "new_cases_smoothed_per_million": 1.587, + "total_deaths_per_million": 52.397, + "new_deaths_per_million": 0.195, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 62.96 + }, + { + "date": "2020-08-30", + "total_cases": 98497.0, + "new_cases": 212.0, + "new_cases_smoothed": 180.0, + "total_deaths": 5376.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 962.501, + "new_cases_per_million": 2.072, + "new_cases_smoothed_per_million": 1.759, + "total_deaths_per_million": 52.534, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.186, + "stringency_index": 62.96 + }, + { + "date": "2020-08-31", + "total_cases": 98727.0, + "new_cases": 230.0, + "new_cases_smoothed": 212.857, + "total_deaths": 5399.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 964.749, + "new_cases_per_million": 2.248, + "new_cases_smoothed_per_million": 2.08, + "total_deaths_per_million": 52.758, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 62.96 + }, + { + "date": "2020-09-01", + "total_cases": 98939.0, + "new_cases": 212.0, + "new_cases_smoothed": 208.714, + "total_deaths": 5421.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 966.821, + "new_cases_per_million": 2.072, + "new_cases_smoothed_per_million": 2.04, + "total_deaths_per_million": 52.973, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 62.96 + }, + { + "date": "2020-09-02", + "total_cases": 99115.0, + "new_cases": 176.0, + "new_cases_smoothed": 213.714, + "total_deaths": 5440.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 968.54, + "new_cases_per_million": 1.72, + "new_cases_smoothed_per_million": 2.088, + "total_deaths_per_million": 53.159, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.198 + }, + { + "date": "2020-09-03", + "total_cases": 99280.0, + "new_cases": 165.0, + "new_cases_smoothed": 207.857, + "total_deaths": 5461.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 970.153, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 2.031, + "total_deaths_per_million": 53.364, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.201 + }, + { + "date": "2020-09-04", + "total_cases": 99425.0, + "new_cases": 145.0, + "new_cases_smoothed": 194.714, + "total_deaths": 5479.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 971.57, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 1.903, + "total_deaths_per_million": 53.54, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.191 + }, + { + "date": "2020-09-05", + "total_cases": 99582.0, + "new_cases": 157.0, + "new_cases_smoothed": 185.286, + "total_deaths": 5495.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 973.104, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 1.811, + "total_deaths_per_million": 53.697, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.186 + } + ] + }, + "SLV": { + "continent": "North America", + "location": "El Salvador", + "population": 6486201.0, + "population_density": 307.811, + "median_age": 27.6, + "aged_65_older": 8.273, + "aged_70_older": 5.417, + "gdp_per_capita": 7292.458, + "extreme_poverty": 2.2, + "cardiovasc_death_rate": 167.295, + "diabetes_prevalence": 8.87, + "female_smokers": 2.5, + "male_smokers": 18.8, + "handwashing_facilities": 90.65, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 73.32, + "data": [ + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.154, + "new_cases_per_million": 0.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.154, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.463, + "new_cases_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.463, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.463, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-24", + "total_cases": 5.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.771, + "new_cases_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-25", + "total_cases": 9.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.388, + "new_cases_per_million": 0.617, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-26", + "total_cases": 13.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.004, + "new_cases_per_million": 0.617, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-29", + "total_cases": 19.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.929, + "new_cases_per_million": 0.925, + "new_cases_smoothed_per_million": 0.352, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-30", + "total_cases": 30.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.625, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 0.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-31", + "total_cases": 32.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.934, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-01", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.507, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 88.89 + }, + { + "date": "2020-04-02", + "total_cases": 41.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.321, + "new_cases_per_million": 1.388, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 0.308, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 88.89 + }, + { + "date": "2020-04-03", + "total_cases": 46.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.092, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 0.308, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 88.89 + }, + { + "date": "2020-04-04", + "total_cases": 56.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.634, + "new_cases_per_million": 1.542, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 0.463, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 88.89 + }, + { + "date": "2020-04-05", + "total_cases": 62.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9.559, + "new_cases_per_million": 0.925, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 0.463, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 88.89 + }, + { + "date": "2020-04-06", + "total_cases": 69.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.638, + "new_cases_per_million": 1.079, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 0.463, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 78.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12.026, + "new_cases_per_million": 1.388, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 0.617, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 12.026, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 0.617, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 103.0, + "new_cases": 25.0, + "new_cases_smoothed": 8.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.88, + "new_cases_per_million": 3.854, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 0.771, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 117.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 18.038, + "new_cases_per_million": 2.158, + "new_cases_smoothed_per_million": 1.564, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.088, + "total_tests": 5760.0, + "total_tests_per_thousand": 0.888, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 118.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.192, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 512.0, + "total_tests": 6272.0, + "total_tests_per_thousand": 0.967, + "new_tests_per_thousand": 0.079, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 118.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.192, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.233, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 457.0, + "total_tests": 6729.0, + "total_tests_per_thousand": 1.037, + "new_tests_per_thousand": 0.07, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 125.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 19.272, + "new_cases_per_million": 1.079, + "new_cases_smoothed_per_million": 1.233, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 501.0, + "total_tests": 7230.0, + "total_tests_per_thousand": 1.115, + "new_tests_per_thousand": 0.077, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 149.0, + "new_cases": 24.0, + "new_cases_smoothed": 10.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.972, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 1.564, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 555.0, + "total_tests": 7785.0, + "total_tests_per_thousand": 1.2, + "new_tests_per_thousand": 0.086, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 159.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.514, + "new_cases_per_million": 1.542, + "new_cases_smoothed_per_million": 1.784, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 548.0, + "total_tests": 8333.0, + "total_tests_per_thousand": 1.285, + "new_tests_per_thousand": 0.084, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.233, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 934.0, + "total_tests": 9267.0, + "total_tests_per_thousand": 1.429, + "new_tests_per_thousand": 0.144, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 164.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.284, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 1.035, + "total_deaths_per_million": 0.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 924.0, + "total_tests": 10191.0, + "total_tests_per_thousand": 1.571, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 633.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 94.277, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 177.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.289, + "new_cases_per_million": 2.004, + "new_cases_smoothed_per_million": 1.299, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 969.0, + "total_tests": 11160.0, + "total_tests_per_thousand": 1.721, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 698.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 82.814, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 190.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.293, + "new_cases_per_million": 2.004, + "new_cases_smoothed_per_million": 1.586, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1050.0, + "total_tests": 12210.0, + "total_tests_per_thousand": 1.882, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 783.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_per_case": 76.125, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 201.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.989, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 1.674, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1142.0, + "total_tests": 13352.0, + "total_tests_per_thousand": 2.059, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 875.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 80.592, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 218.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.61, + "new_cases_per_million": 2.621, + "new_cases_smoothed_per_million": 1.52, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1023.0, + "total_tests": 14375.0, + "total_tests_per_thousand": 2.216, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 941.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 95.464, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-22", + "total_cases": 225.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.689, + "new_cases_per_million": 1.079, + "new_cases_smoothed_per_million": 1.454, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1010.0, + "total_tests": 15385.0, + "total_tests_per_thousand": 2.372, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1007.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 106.803, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-23", + "total_cases": 237.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.539, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1033.0, + "total_tests": 16418.0, + "total_tests_per_thousand": 2.531, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 1022.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 91.71799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-24", + "total_cases": 250.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.543, + "new_cases_per_million": 2.004, + "new_cases_smoothed_per_million": 1.894, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1005.0, + "total_tests": 17423.0, + "total_tests_per_thousand": 2.686, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 84.081, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-25", + "total_cases": 261.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.239, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 1.85, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1263.0, + "total_tests": 18686.0, + "total_tests_per_thousand": 2.881, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 1075.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 89.583, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-26", + "total_cases": 298.0, + "new_cases": 37.0, + "new_cases_smoothed": 15.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.944, + "new_cases_per_million": 5.704, + "new_cases_smoothed_per_million": 2.379, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1423.0, + "total_tests": 20109.0, + "total_tests_per_thousand": 3.1, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 1128.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 73.111, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.944, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.136, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1255.0, + "total_tests": 21364.0, + "total_tests_per_thousand": 3.294, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 1145.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 82.62899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 323.0, + "new_cases": 25.0, + "new_cases_smoothed": 15.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.798, + "new_cases_per_million": 3.854, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 1.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1229.0, + "total_tests": 22593.0, + "total_tests_per_thousand": 3.483, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 1174.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 78.267, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 345.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 53.19, + "new_cases_per_million": 3.392, + "new_cases_smoothed_per_million": 2.643, + "total_deaths_per_million": 1.388, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1464.0, + "total_tests": 24057.0, + "total_tests_per_thousand": 3.709, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 72.275, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 377.0, + "new_cases": 32.0, + "new_cases_smoothed": 20.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.123, + "new_cases_per_million": 4.934, + "new_cases_smoothed_per_million": 3.083, + "total_deaths_per_million": 1.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1435.0, + "total_tests": 25492.0, + "total_tests_per_thousand": 3.93, + "new_tests_per_thousand": 0.221, + "new_tests_smoothed": 1296.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 64.8, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-01", + "total_cases": 424.0, + "new_cases": 47.0, + "new_cases_smoothed": 24.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 65.37, + "new_cases_per_million": 7.246, + "new_cases_smoothed_per_million": 3.832, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1469.0, + "total_tests": 26961.0, + "total_tests_per_thousand": 4.157, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 1363.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 54.833, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-02", + "total_cases": 446.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 68.761, + "new_cases_per_million": 3.392, + "new_cases_smoothed_per_million": 4.075, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1635.0, + "total_tests": 28596.0, + "total_tests_per_thousand": 4.409, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 53.578, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-03", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 68.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.26, + "total_deaths_per_million": 1.696, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 1791.0, + "total_tests": 30387.0, + "total_tests_per_thousand": 4.685, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 1468.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 69.432, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-04", + "total_cases": 555.0, + "new_cases": 109.0, + "new_cases_smoothed": 36.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 85.566, + "new_cases_per_million": 16.805, + "new_cases_smoothed_per_million": 5.66, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 1643.0, + "total_tests": 32030.0, + "total_tests_per_thousand": 4.938, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 1524.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 41.51, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-05", + "total_cases": 587.0, + "new_cases": 32.0, + "new_cases_smoothed": 37.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 90.5, + "new_cases_per_million": 4.934, + "new_cases_smoothed_per_million": 5.815, + "total_deaths_per_million": 2.004, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1598.0, + "total_tests": 33628.0, + "total_tests_per_thousand": 5.185, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 1576.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 41.788000000000004, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-06", + "total_cases": 587.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.571, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 90.5, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.33, + "total_deaths_per_million": 2.158, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1783.0, + "total_tests": 35411.0, + "total_tests_per_thousand": 5.459, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 1622.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 46.917, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-07", + "total_cases": 695.0, + "new_cases": 108.0, + "new_cases_smoothed": 45.429, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 107.151, + "new_cases_per_million": 16.651, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 2.313, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 1895.0, + "total_tests": 37306.0, + "total_tests_per_thousand": 5.752, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 1688.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 37.157, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-08", + "total_cases": 695.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 107.151, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.969, + "total_deaths_per_million": 2.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1773.0, + "total_tests": 39079.0, + "total_tests_per_thousand": 6.025, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 44.711999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-09", + "total_cases": 784.0, + "new_cases": 89.0, + "new_cases_smoothed": 48.286, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 120.872, + "new_cases_per_million": 13.721, + "new_cases_smoothed_per_million": 7.444, + "total_deaths_per_million": 2.467, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 2011.0, + "total_tests": 41090.0, + "total_tests_per_thousand": 6.335, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 1785.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 36.967, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-10", + "total_cases": 889.0, + "new_cases": 105.0, + "new_cases_smoothed": 63.286, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 137.06, + "new_cases_per_million": 16.188, + "new_cases_smoothed_per_million": 9.757, + "total_deaths_per_million": 2.621, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 1953.0, + "total_tests": 43043.0, + "total_tests_per_thousand": 6.636, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 1808.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 28.569000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-11", + "total_cases": 958.0, + "new_cases": 69.0, + "new_cases_smoothed": 57.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 147.698, + "new_cases_per_million": 10.638, + "new_cases_smoothed_per_million": 8.876, + "total_deaths_per_million": 2.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1883.0, + "total_tests": 44926.0, + "total_tests_per_thousand": 6.926, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 31.995, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 998.0, + "new_cases": 40.0, + "new_cases_smoothed": 58.714, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 153.865, + "new_cases_per_million": 6.167, + "new_cases_smoothed_per_million": 9.052, + "total_deaths_per_million": 2.775, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1905.0, + "total_tests": 46831.0, + "total_tests_per_thousand": 7.22, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 1886.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 32.122, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 1037.0, + "new_cases": 39.0, + "new_cases_smoothed": 64.286, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 159.878, + "new_cases_per_million": 6.013, + "new_cases_smoothed_per_million": 9.911, + "total_deaths_per_million": 3.083, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 2082.0, + "total_tests": 48913.0, + "total_tests_per_thousand": 7.541, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 1929.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 30.006999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 1112.0, + "new_cases": 75.0, + "new_cases_smoothed": 59.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 171.441, + "new_cases_per_million": 11.563, + "new_cases_smoothed_per_million": 9.184, + "total_deaths_per_million": 3.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 2229.0, + "total_tests": 51142.0, + "total_tests_per_thousand": 7.885, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 1977.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 33.187, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 1210.0, + "new_cases": 98.0, + "new_cases_smoothed": 73.571, + "total_deaths": 23.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 186.55, + "new_cases_per_million": 15.109, + "new_cases_smoothed_per_million": 11.343, + "total_deaths_per_million": 3.546, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.176, + "new_tests": 2270.0, + "total_tests": 53412.0, + "total_tests_per_thousand": 8.235, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 2048.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 27.837, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 1265.0, + "new_cases": 55.0, + "new_cases_smoothed": 68.714, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 195.029, + "new_cases_per_million": 8.48, + "new_cases_smoothed_per_million": 10.594, + "total_deaths_per_million": 3.854, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 2282.0, + "total_tests": 55694.0, + "total_tests_per_thousand": 8.587, + "new_tests_per_thousand": 0.352, + "new_tests_smoothed": 2086.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 30.358, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 1265.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.714, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 195.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.281, + "total_deaths_per_million": 4.009, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 2189.0, + "total_tests": 57883.0, + "total_tests_per_thousand": 8.924, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 2120.0, + "new_tests_smoothed_per_thousand": 0.327, + "tests_per_case": 39.468, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-18", + "total_cases": 1338.0, + "new_cases": 73.0, + "new_cases_smoothed": 54.286, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 206.284, + "new_cases_per_million": 11.255, + "new_cases_smoothed_per_million": 8.369, + "total_deaths_per_million": 4.625, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 2458.0, + "total_tests": 60341.0, + "total_tests_per_thousand": 9.303, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2202.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 40.563, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-19", + "total_cases": 1413.0, + "new_cases": 75.0, + "new_cases_smoothed": 59.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 217.847, + "new_cases_per_million": 11.563, + "new_cases_smoothed_per_million": 9.14, + "total_deaths_per_million": 4.625, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 2497.0, + "total_tests": 62838.0, + "total_tests_per_thousand": 9.688, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2287.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 38.576, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-20", + "total_cases": 1498.0, + "new_cases": 85.0, + "new_cases_smoothed": 65.857, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 230.952, + "new_cases_per_million": 13.105, + "new_cases_smoothed_per_million": 10.153, + "total_deaths_per_million": 4.779, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 2388.0, + "total_tests": 65226.0, + "total_tests_per_thousand": 10.056, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 2330.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 35.38, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-21", + "total_cases": 1571.0, + "new_cases": 73.0, + "new_cases_smoothed": 65.571, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 242.206, + "new_cases_per_million": 11.255, + "new_cases_smoothed_per_million": 10.109, + "total_deaths_per_million": 4.934, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 2437.0, + "total_tests": 67663.0, + "total_tests_per_thousand": 10.432, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2360.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 35.991, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-22", + "total_cases": 1640.0, + "new_cases": 69.0, + "new_cases_smoothed": 61.429, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 252.844, + "new_cases_per_million": 10.638, + "new_cases_smoothed_per_million": 9.471, + "total_deaths_per_million": 5.088, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2562.0, + "total_tests": 70225.0, + "total_tests_per_thousand": 10.827, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 39.102, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-23", + "total_cases": 1725.0, + "new_cases": 85.0, + "new_cases_smoothed": 65.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 265.949, + "new_cases_per_million": 13.105, + "new_cases_smoothed_per_million": 10.131, + "total_deaths_per_million": 5.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.176, + "new_tests": 2391.0, + "total_tests": 72616.0, + "total_tests_per_thousand": 11.195, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 2417.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 36.78, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-24", + "total_cases": 1819.0, + "new_cases": 94.0, + "new_cases_smoothed": 79.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 280.442, + "new_cases_per_million": 14.492, + "new_cases_smoothed_per_million": 12.202, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 2530.0, + "total_tests": 75146.0, + "total_tests_per_thousand": 11.586, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 2466.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 31.159000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-25", + "total_cases": 1915.0, + "new_cases": 96.0, + "new_cases_smoothed": 82.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 295.242, + "new_cases_per_million": 14.801, + "new_cases_smoothed_per_million": 12.708, + "total_deaths_per_million": 5.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 2336.0, + "total_tests": 77482.0, + "total_tests_per_thousand": 11.946, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 2449.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 29.711, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-26", + "total_cases": 1983.0, + "new_cases": 68.0, + "new_cases_smoothed": 81.429, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 305.726, + "new_cases_per_million": 10.484, + "new_cases_smoothed_per_million": 12.554, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 2229.0, + "total_tests": 79711.0, + "total_tests_per_thousand": 12.289, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 2410.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 29.596, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-27", + "total_cases": 2042.0, + "new_cases": 59.0, + "new_cases_smoothed": 77.714, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 314.822, + "new_cases_per_million": 9.096, + "new_cases_smoothed_per_million": 11.981, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 2532.0, + "total_tests": 82243.0, + "total_tests_per_thousand": 12.68, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 2431.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 31.281, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-28", + "total_cases": 2109.0, + "new_cases": 67.0, + "new_cases_smoothed": 76.857, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 325.152, + "new_cases_per_million": 10.33, + "new_cases_smoothed_per_million": 11.849, + "total_deaths_per_million": 6.013, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 2407.0, + "total_tests": 84650.0, + "total_tests_per_thousand": 13.051, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 2427.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 31.578000000000003, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-29", + "total_cases": 2194.0, + "new_cases": 85.0, + "new_cases_smoothed": 79.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 338.257, + "new_cases_per_million": 13.105, + "new_cases_smoothed_per_million": 12.202, + "total_deaths_per_million": 6.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 2322.0, + "total_tests": 86972.0, + "total_tests_per_thousand": 13.409, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 2392.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 30.224, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-30", + "total_cases": 2278.0, + "new_cases": 84.0, + "new_cases_smoothed": 79.0, + "total_deaths": 43.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 351.207, + "new_cases_per_million": 12.951, + "new_cases_smoothed_per_million": 12.18, + "total_deaths_per_million": 6.629, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2386.0, + "total_tests": 89358.0, + "total_tests_per_thousand": 13.777, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 2392.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 30.278000000000002, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-31", + "total_cases": 2517.0, + "new_cases": 239.0, + "new_cases_smoothed": 99.714, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 388.055, + "new_cases_per_million": 36.847, + "new_cases_smoothed_per_million": 15.373, + "total_deaths_per_million": 7.092, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 2479.0, + "total_tests": 91837.0, + "total_tests_per_thousand": 14.159, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2384.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 23.908, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-01", + "total_cases": 2517.0, + "new_cases": 0.0, + "new_cases_smoothed": 86.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 388.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.259, + "total_deaths_per_million": 7.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 2435.0, + "total_tests": 94272.0, + "total_tests_per_thousand": 14.534, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2399.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 27.895, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-06-02", + "total_cases": 2582.0, + "new_cases": 65.0, + "new_cases_smoothed": 85.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 398.076, + "new_cases_per_million": 10.021, + "new_cases_smoothed_per_million": 13.193, + "total_deaths_per_million": 7.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2375.0, + "total_tests": 96647.0, + "total_tests_per_thousand": 14.9, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 2419.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 28.269000000000002, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-03", + "total_cases": 2653.0, + "new_cases": 71.0, + "new_cases_smoothed": 87.286, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 409.022, + "new_cases_per_million": 10.946, + "new_cases_smoothed_per_million": 13.457, + "total_deaths_per_million": 7.554, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 2531.0, + "total_tests": 99178.0, + "total_tests_per_thousand": 15.291, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 2419.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 27.714000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-04", + "total_cases": 2705.0, + "new_cases": 52.0, + "new_cases_smoothed": 85.143, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 417.039, + "new_cases_per_million": 8.017, + "new_cases_smoothed_per_million": 13.127, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 2426.0, + "total_tests": 101604.0, + "total_tests_per_thousand": 15.665, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 2422.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 28.445999999999998, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-05", + "total_cases": 2781.0, + "new_cases": 76.0, + "new_cases_smoothed": 83.857, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 428.756, + "new_cases_per_million": 11.717, + "new_cases_smoothed_per_million": 12.929, + "total_deaths_per_million": 8.017, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 2456.0, + "total_tests": 104060.0, + "total_tests_per_thousand": 16.043, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2441.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 29.109, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-06", + "total_cases": 2849.0, + "new_cases": 68.0, + "new_cases_smoothed": 81.571, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 439.24, + "new_cases_per_million": 10.484, + "new_cases_smoothed_per_million": 12.576, + "total_deaths_per_million": 8.171, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2488.0, + "total_tests": 106548.0, + "total_tests_per_thousand": 16.427, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2456.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 30.109, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-07", + "total_cases": 2934.0, + "new_cases": 85.0, + "new_cases_smoothed": 59.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 452.345, + "new_cases_per_million": 13.105, + "new_cases_smoothed_per_million": 9.184, + "total_deaths_per_million": 8.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 2376.0, + "total_tests": 108924.0, + "total_tests_per_thousand": 16.793, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 2441.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 40.976000000000006, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-08", + "total_cases": 3015.0, + "new_cases": 81.0, + "new_cases_smoothed": 71.143, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 464.833, + "new_cases_per_million": 12.488, + "new_cases_smoothed_per_million": 10.968, + "total_deaths_per_million": 8.48, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 2350.0, + "total_tests": 111274.0, + "total_tests_per_thousand": 17.155, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 2429.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 34.143, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-09", + "total_cases": 3104.0, + "new_cases": 89.0, + "new_cases_smoothed": 74.571, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 478.554, + "new_cases_per_million": 13.721, + "new_cases_smoothed_per_million": 11.497, + "total_deaths_per_million": 8.942, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 2382.0, + "total_tests": 113656.0, + "total_tests_per_thousand": 17.523, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 2430.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 32.586, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-10", + "total_cases": 3191.0, + "new_cases": 87.0, + "new_cases_smoothed": 76.857, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 491.967, + "new_cases_per_million": 13.413, + "new_cases_smoothed_per_million": 11.849, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 2371.0, + "total_tests": 116027.0, + "total_tests_per_thousand": 17.888, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 2407.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 31.318, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-11", + "total_cases": 3274.0, + "new_cases": 83.0, + "new_cases_smoothed": 81.286, + "total_deaths": 64.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 504.764, + "new_cases_per_million": 12.796, + "new_cases_smoothed_per_million": 12.532, + "total_deaths_per_million": 9.867, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 2456.0, + "total_tests": 118483.0, + "total_tests_per_thousand": 18.267, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2411.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 29.660999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-12", + "total_cases": 3481.0, + "new_cases": 207.0, + "new_cases_smoothed": 100.0, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 536.678, + "new_cases_per_million": 31.914, + "new_cases_smoothed_per_million": 15.417, + "total_deaths_per_million": 10.484, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.352, + "new_tests": 2458.0, + "total_tests": 120941.0, + "total_tests_per_thousand": 18.646, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2412.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 24.12, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-13", + "total_cases": 3481.0, + "new_cases": 0.0, + "new_cases_smoothed": 90.286, + "total_deaths": 72.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 536.678, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.92, + "total_deaths_per_million": 11.1, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 2419.0, + "total_tests": 123360.0, + "total_tests_per_thousand": 19.019, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 26.604, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-14", + "total_cases": 3603.0, + "new_cases": 122.0, + "new_cases_smoothed": 95.571, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 555.487, + "new_cases_per_million": 18.809, + "new_cases_smoothed_per_million": 14.735, + "total_deaths_per_million": 11.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 2399.0, + "total_tests": 125759.0, + "total_tests_per_thousand": 19.389, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 2405.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 25.164, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-15", + "total_cases": 3720.0, + "new_cases": 117.0, + "new_cases_smoothed": 100.714, + "total_deaths": 74.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 573.525, + "new_cases_per_million": 18.038, + "new_cases_smoothed_per_million": 15.527, + "total_deaths_per_million": 11.409, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 2445.0, + "total_tests": 128204.0, + "total_tests_per_thousand": 19.766, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 2419.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 24.018, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-06-16", + "total_cases": 3826.0, + "new_cases": 106.0, + "new_cases_smoothed": 103.143, + "total_deaths": 76.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 589.868, + "new_cases_per_million": 16.342, + "new_cases_smoothed_per_million": 15.902, + "total_deaths_per_million": 11.717, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 2473.0, + "total_tests": 130677.0, + "total_tests_per_thousand": 20.147, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2432.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 23.579, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-17", + "total_cases": 3941.0, + "new_cases": 115.0, + "new_cases_smoothed": 107.143, + "total_deaths": 78.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 607.598, + "new_cases_per_million": 17.73, + "new_cases_smoothed_per_million": 16.519, + "total_deaths_per_million": 12.026, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 2474.0, + "total_tests": 133151.0, + "total_tests_per_thousand": 20.528, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 22.829, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-18", + "total_cases": 4066.0, + "new_cases": 125.0, + "new_cases_smoothed": 113.143, + "total_deaths": 82.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 626.869, + "new_cases_per_million": 19.272, + "new_cases_smoothed_per_million": 17.444, + "total_deaths_per_million": 12.642, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 2419.0, + "total_tests": 135570.0, + "total_tests_per_thousand": 20.901, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2441.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 21.574, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-19", + "total_cases": 4200.0, + "new_cases": 134.0, + "new_cases_smoothed": 102.714, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 647.528, + "new_cases_per_million": 20.659, + "new_cases_smoothed_per_million": 15.836, + "total_deaths_per_million": 13.259, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 2426.0, + "total_tests": 137996.0, + "total_tests_per_thousand": 21.275, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 2436.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 23.715999999999998, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-20", + "total_cases": 4329.0, + "new_cases": 129.0, + "new_cases_smoothed": 121.143, + "total_deaths": 93.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 667.417, + "new_cases_per_million": 19.888, + "new_cases_smoothed_per_million": 18.677, + "total_deaths_per_million": 14.338, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 2433.0, + "total_tests": 140429.0, + "total_tests_per_thousand": 21.65, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2438.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 20.125, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-21", + "total_cases": 4626.0, + "new_cases": 297.0, + "new_cases_smoothed": 146.143, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 713.206, + "new_cases_per_million": 45.79, + "new_cases_smoothed_per_million": 22.531, + "total_deaths_per_million": 15.109, + "new_deaths_per_million": 0.771, + "new_deaths_smoothed_per_million": 0.573, + "new_tests": 2457.0, + "total_tests": 142886.0, + "total_tests_per_thousand": 22.029, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2447.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 16.744, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-22", + "total_cases": 4626.0, + "new_cases": 0.0, + "new_cases_smoothed": 129.429, + "total_deaths": 107.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 713.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.954, + "total_deaths_per_million": 16.497, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 0.727, + "new_tests": 2455.0, + "total_tests": 145341.0, + "total_tests_per_thousand": 22.408, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2448.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 18.914, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-23", + "total_cases": 4808.0, + "new_cases": 182.0, + "new_cases_smoothed": 140.286, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 741.266, + "new_cases_per_million": 28.06, + "new_cases_smoothed_per_million": 21.628, + "total_deaths_per_million": 16.497, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 2430.0, + "total_tests": 147771.0, + "total_tests_per_thousand": 22.782, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2442.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 17.407, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-24", + "total_cases": 4973.0, + "new_cases": 165.0, + "new_cases_smoothed": 147.429, + "total_deaths": 113.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 766.705, + "new_cases_per_million": 25.439, + "new_cases_smoothed_per_million": 22.73, + "total_deaths_per_million": 17.422, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 0.771, + "new_tests": 2481.0, + "total_tests": 150252.0, + "total_tests_per_thousand": 23.165, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2443.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 16.570999999999998, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-25", + "total_cases": 5150.0, + "new_cases": 177.0, + "new_cases_smoothed": 154.857, + "total_deaths": 126.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 793.993, + "new_cases_per_million": 27.289, + "new_cases_smoothed_per_million": 23.875, + "total_deaths_per_million": 19.426, + "new_deaths_per_million": 2.004, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 2477.0, + "total_tests": 152729.0, + "total_tests_per_thousand": 23.547, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2451.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 15.827, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-26", + "total_cases": 5336.0, + "new_cases": 186.0, + "new_cases_smoothed": 162.286, + "total_deaths": 133.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 822.67, + "new_cases_per_million": 28.676, + "new_cases_smoothed_per_million": 25.02, + "total_deaths_per_million": 20.505, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.035, + "new_tests": 2572.0, + "total_tests": 155301.0, + "total_tests_per_thousand": 23.943, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 2472.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 15.232000000000001, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-27", + "total_cases": 5517.0, + "new_cases": 181.0, + "new_cases_smoothed": 169.714, + "total_deaths": 143.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 850.575, + "new_cases_per_million": 27.905, + "new_cases_smoothed_per_million": 26.165, + "total_deaths_per_million": 22.047, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 1.101, + "new_tests": 2498.0, + "total_tests": 157799.0, + "total_tests_per_thousand": 24.328, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2481.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 14.619000000000002, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-28", + "total_cases": 5934.0, + "new_cases": 417.0, + "new_cases_smoothed": 186.857, + "total_deaths": 152.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 914.865, + "new_cases_per_million": 64.29, + "new_cases_smoothed_per_million": 28.808, + "total_deaths_per_million": 23.434, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.189, + "new_tests": 2417.0, + "total_tests": 160216.0, + "total_tests_per_thousand": 24.701, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2476.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 13.251, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-29", + "total_cases": 5934.0, + "new_cases": 0.0, + "new_cases_smoothed": 186.857, + "total_deaths": 164.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 914.865, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.808, + "total_deaths_per_million": 25.284, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.255, + "new_tests": 2495.0, + "total_tests": 162711.0, + "total_tests_per_thousand": 25.086, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2481.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 13.277999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-06-30", + "total_cases": 6173.0, + "new_cases": 239.0, + "new_cases_smoothed": 195.0, + "total_deaths": 164.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 951.713, + "new_cases_per_million": 36.847, + "new_cases_smoothed_per_million": 30.064, + "total_deaths_per_million": 25.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.255, + "new_tests": 2450.0, + "total_tests": 165161.0, + "total_tests_per_thousand": 25.463, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2484.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 12.738, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-01", + "total_cases": 6438.0, + "new_cases": 265.0, + "new_cases_smoothed": 209.286, + "total_deaths": 174.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 992.569, + "new_cases_per_million": 40.856, + "new_cases_smoothed_per_million": 32.266, + "total_deaths_per_million": 26.826, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 1.344, + "new_tests": 2423.0, + "total_tests": 167584.0, + "total_tests_per_thousand": 25.837, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 2476.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 11.831, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-02", + "total_cases": 6736.0, + "new_cases": 298.0, + "new_cases_smoothed": 226.571, + "total_deaths": 182.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1038.512, + "new_cases_per_million": 45.944, + "new_cases_smoothed_per_million": 34.931, + "total_deaths_per_million": 28.06, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 2433.0, + "total_tests": 170017.0, + "total_tests_per_thousand": 26.212, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 10.902000000000001, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-03", + "total_cases": 7000.0, + "new_cases": 264.0, + "new_cases_smoothed": 237.714, + "total_deaths": 191.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1079.214, + "new_cases_per_million": 40.702, + "new_cases_smoothed_per_million": 36.649, + "total_deaths_per_million": 29.447, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 2438.0, + "total_tests": 172455.0, + "total_tests_per_thousand": 26.588, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2451.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 10.311, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-04", + "total_cases": 7267.0, + "new_cases": 267.0, + "new_cases_smoothed": 250.0, + "total_deaths": 210.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1120.378, + "new_cases_per_million": 41.164, + "new_cases_smoothed_per_million": 38.543, + "total_deaths_per_million": 32.376, + "new_deaths_per_million": 2.929, + "new_deaths_smoothed_per_million": 1.476, + "new_tests": 2475.0, + "total_tests": 174930.0, + "total_tests_per_thousand": 26.97, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2447.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 9.788, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-05", + "total_cases": 7507.0, + "new_cases": 240.0, + "new_cases_smoothed": 224.714, + "total_deaths": 210.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1157.38, + "new_cases_per_million": 37.002, + "new_cases_smoothed_per_million": 34.645, + "total_deaths_per_million": 32.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 2436.0, + "total_tests": 177366.0, + "total_tests_per_thousand": 27.345, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2450.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 10.902999999999999, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-06", + "total_cases": 7777.0, + "new_cases": 270.0, + "new_cases_smoothed": 263.286, + "total_deaths": 217.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1199.007, + "new_cases_per_million": 41.627, + "new_cases_smoothed_per_million": 40.592, + "total_deaths_per_million": 33.456, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.167, + "new_tests": 2496.0, + "total_tests": 179862.0, + "total_tests_per_thousand": 27.73, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2450.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 9.305, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-07", + "total_cases": 8027.0, + "new_cases": 250.0, + "new_cases_smoothed": 264.857, + "total_deaths": 223.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1237.55, + "new_cases_per_million": 38.543, + "new_cases_smoothed_per_million": 40.834, + "total_deaths_per_million": 34.381, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.299, + "new_tests": 2499.0, + "total_tests": 182361.0, + "total_tests_per_thousand": 28.115, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2457.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 9.277000000000001, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-08", + "total_cases": 8307.0, + "new_cases": 280.0, + "new_cases_smoothed": 267.0, + "total_deaths": 229.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1280.719, + "new_cases_per_million": 43.169, + "new_cases_smoothed_per_million": 41.164, + "total_deaths_per_million": 35.306, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.211, + "new_tests": 2470.0, + "total_tests": 184831.0, + "total_tests_per_thousand": 28.496, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2464.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 9.228, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-09", + "total_cases": 8566.0, + "new_cases": 259.0, + "new_cases_smoothed": 261.429, + "total_deaths": 235.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1320.65, + "new_cases_per_million": 39.931, + "new_cases_smoothed_per_million": 40.305, + "total_deaths_per_million": 36.231, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.167, + "new_tests": 2485.0, + "total_tests": 187316.0, + "total_tests_per_thousand": 28.879, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2471.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 9.452, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-10", + "total_cases": 8844.0, + "new_cases": 278.0, + "new_cases_smoothed": 263.429, + "total_deaths": 243.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1363.51, + "new_cases_per_million": 42.86, + "new_cases_smoothed_per_million": 40.614, + "total_deaths_per_million": 37.464, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.145, + "new_tests": 2430.0, + "total_tests": 189746.0, + "total_tests_per_thousand": 29.254, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 9.376, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-11", + "total_cases": 9142.0, + "new_cases": 298.0, + "new_cases_smoothed": 267.857, + "total_deaths": 249.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1409.454, + "new_cases_per_million": 45.944, + "new_cases_smoothed_per_million": 41.296, + "total_deaths_per_million": 38.389, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 0.859, + "new_tests": 2460.0, + "total_tests": 192206.0, + "total_tests_per_thousand": 29.633, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2468.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 9.214, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-12", + "total_cases": 9391.0, + "new_cases": 249.0, + "new_cases_smoothed": 269.143, + "total_deaths": 254.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1447.843, + "new_cases_per_million": 38.389, + "new_cases_smoothed_per_million": 41.495, + "total_deaths_per_million": 39.16, + "new_deaths_per_million": 0.771, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 2449.0, + "total_tests": 194655.0, + "total_tests_per_thousand": 30.011, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 9.177, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-13", + "total_cases": 9674.0, + "new_cases": 283.0, + "new_cases_smoothed": 271.0, + "total_deaths": 267.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1491.474, + "new_cases_per_million": 43.631, + "new_cases_smoothed_per_million": 41.781, + "total_deaths_per_million": 41.164, + "new_deaths_per_million": 2.004, + "new_deaths_smoothed_per_million": 1.101, + "new_tests": 2496.0, + "total_tests": 197151.0, + "total_tests_per_thousand": 30.395, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 9.113999999999999, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-14", + "total_cases": 9978.0, + "new_cases": 304.0, + "new_cases_smoothed": 278.714, + "total_deaths": 278.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1538.343, + "new_cases_per_million": 46.869, + "new_cases_smoothed_per_million": 42.97, + "total_deaths_per_million": 42.86, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.211, + "new_tests": 2486.0, + "total_tests": 199637.0, + "total_tests_per_thousand": 30.779, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2468.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 8.855, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-15", + "total_cases": 10303.0, + "new_cases": 325.0, + "new_cases_smoothed": 285.143, + "total_deaths": 278.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1588.449, + "new_cases_per_million": 50.106, + "new_cases_smoothed_per_million": 43.961, + "total_deaths_per_million": 42.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.079, + "new_tests": 2489.0, + "total_tests": 202126.0, + "total_tests_per_thousand": 31.162, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2471.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 8.666, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-16", + "total_cases": 10645.0, + "new_cases": 342.0, + "new_cases_smoothed": 297.0, + "total_deaths": 298.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1641.176, + "new_cases_per_million": 52.727, + "new_cases_smoothed_per_million": 45.79, + "total_deaths_per_million": 45.944, + "new_deaths_per_million": 3.083, + "new_deaths_smoothed_per_million": 1.388, + "new_tests": 2483.0, + "total_tests": 204609.0, + "total_tests_per_thousand": 31.545, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 8.316, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-17", + "total_cases": 10957.0, + "new_cases": 312.0, + "new_cases_smoothed": 301.857, + "total_deaths": 309.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1689.279, + "new_cases_per_million": 48.102, + "new_cases_smoothed_per_million": 46.538, + "total_deaths_per_million": 47.64, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.454, + "new_tests": 2415.0, + "total_tests": 207024.0, + "total_tests_per_thousand": 31.918, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 2468.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 8.176, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-18", + "total_cases": 11207.0, + "new_cases": 250.0, + "new_cases_smoothed": 295.0, + "total_deaths": 324.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1727.822, + "new_cases_per_million": 38.543, + "new_cases_smoothed_per_million": 45.481, + "total_deaths_per_million": 49.952, + "new_deaths_per_million": 2.313, + "new_deaths_smoothed_per_million": 1.652, + "new_tests": 2422.0, + "total_tests": 209446.0, + "total_tests_per_thousand": 32.291, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 8.349, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-19", + "total_cases": 11508.0, + "new_cases": 301.0, + "new_cases_smoothed": 302.429, + "total_deaths": 324.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1774.228, + "new_cases_per_million": 46.406, + "new_cases_smoothed_per_million": 46.626, + "total_deaths_per_million": 49.952, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.542, + "new_tests": 2450.0, + "total_tests": 211896.0, + "total_tests_per_thousand": 32.669, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 8.144, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-20", + "total_cases": 11846.0, + "new_cases": 338.0, + "new_cases_smoothed": 310.286, + "total_deaths": 344.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 1826.339, + "new_cases_per_million": 52.111, + "new_cases_smoothed_per_million": 47.838, + "total_deaths_per_million": 53.036, + "new_deaths_per_million": 3.083, + "new_deaths_smoothed_per_million": 1.696, + "new_tests": 2547.0, + "total_tests": 214443.0, + "total_tests_per_thousand": 33.061, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 7.96, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-21", + "total_cases": 12207.0, + "new_cases": 361.0, + "new_cases_smoothed": 318.429, + "total_deaths": 352.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 1881.995, + "new_cases_per_million": 55.657, + "new_cases_smoothed_per_million": 49.093, + "total_deaths_per_million": 54.269, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.63, + "new_tests": 2473.0, + "total_tests": 216916.0, + "total_tests_per_thousand": 33.443, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2468.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 7.751, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-22", + "total_cases": 12582.0, + "new_cases": 375.0, + "new_cases_smoothed": 325.571, + "total_deaths": 363.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 1939.81, + "new_cases_per_million": 57.815, + "new_cases_smoothed_per_million": 50.194, + "total_deaths_per_million": 55.965, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.872, + "new_tests": 2475.0, + "total_tests": 219391.0, + "total_tests_per_thousand": 33.824, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2466.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 7.574, + "positive_rate": 0.132, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-23", + "total_cases": 12975.0, + "new_cases": 393.0, + "new_cases_smoothed": 332.857, + "total_deaths": 363.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 2000.401, + "new_cases_per_million": 60.59, + "new_cases_smoothed_per_million": 51.318, + "total_deaths_per_million": 55.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.432, + "new_tests": 2429.0, + "total_tests": 221820.0, + "total_tests_per_thousand": 34.199, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 2459.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 7.388, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-24", + "total_cases": 13377.0, + "new_cases": 402.0, + "new_cases_smoothed": 345.714, + "total_deaths": 372.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 2062.378, + "new_cases_per_million": 61.978, + "new_cases_smoothed_per_million": 53.3, + "total_deaths_per_million": 57.353, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.388, + "new_tests": 2442.0, + "total_tests": 224262.0, + "total_tests_per_thousand": 34.575, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 7.124, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-25", + "total_cases": 13792.0, + "new_cases": 415.0, + "new_cases_smoothed": 369.286, + "total_deaths": 390.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2126.36, + "new_cases_per_million": 63.982, + "new_cases_smoothed_per_million": 56.934, + "total_deaths_per_million": 60.128, + "new_deaths_per_million": 2.775, + "new_deaths_smoothed_per_million": 1.454, + "new_tests": 2456.0, + "total_tests": 226718.0, + "total_tests_per_thousand": 34.954, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2467.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 6.68, + "positive_rate": 0.15, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-26", + "total_cases": 14221.0, + "new_cases": 429.0, + "new_cases_smoothed": 387.571, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2192.501, + "new_cases_per_million": 66.14, + "new_cases_smoothed_per_million": 59.753, + "total_deaths_per_million": 60.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.454, + "new_tests": 2468.0, + "total_tests": 229186.0, + "total_tests_per_thousand": 35.334, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 6.372999999999999, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-27", + "total_cases": 14630.0, + "new_cases": 409.0, + "new_cases_smoothed": 397.714, + "total_deaths": 408.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2255.558, + "new_cases_per_million": 63.057, + "new_cases_smoothed_per_million": 61.317, + "total_deaths_per_million": 62.903, + "new_deaths_per_million": 2.775, + "new_deaths_smoothed_per_million": 1.41, + "new_tests": 2498.0, + "total_tests": 231684.0, + "total_tests_per_thousand": 35.72, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 6.193, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-28", + "total_cases": 15035.0, + "new_cases": 405.0, + "new_cases_smoothed": 404.0, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 2317.998, + "new_cases_per_million": 62.44, + "new_cases_smoothed_per_million": 62.286, + "total_deaths_per_million": 62.903, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 2402.0, + "total_tests": 234086.0, + "total_tests_per_thousand": 36.09, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 2453.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 6.072, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-29", + "total_cases": 15446.0, + "new_cases": 411.0, + "new_cases_smoothed": 409.143, + "total_deaths": 417.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2381.363, + "new_cases_per_million": 63.365, + "new_cases_smoothed_per_million": 63.079, + "total_deaths_per_million": 64.29, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.189, + "new_tests": 2415.0, + "total_tests": 236501.0, + "total_tests_per_thousand": 36.462, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 2444.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 5.973, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-30", + "total_cases": 15841.0, + "new_cases": 395.0, + "new_cases_smoothed": 409.429, + "total_deaths": 430.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 2442.262, + "new_cases_per_million": 60.899, + "new_cases_smoothed_per_million": 63.123, + "total_deaths_per_million": 66.295, + "new_deaths_per_million": 2.004, + "new_deaths_smoothed_per_million": 1.476, + "new_tests": 2416.0, + "total_tests": 238917.0, + "total_tests_per_thousand": 36.835, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 2442.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 5.9639999999999995, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-07-31", + "total_cases": 16230.0, + "new_cases": 389.0, + "new_cases_smoothed": 407.571, + "total_deaths": 439.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 2502.235, + "new_cases_per_million": 59.973, + "new_cases_smoothed_per_million": 62.837, + "total_deaths_per_million": 67.682, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.476, + "new_tests": 2442.0, + "total_tests": 241359.0, + "total_tests_per_thousand": 37.211, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2442.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 5.992000000000001, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-01", + "total_cases": 16632.0, + "new_cases": 402.0, + "new_cases_smoothed": 405.714, + "total_deaths": 448.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2564.213, + "new_cases_per_million": 61.978, + "new_cases_smoothed_per_million": 62.55, + "total_deaths_per_million": 69.07, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 2483.0, + "total_tests": 243842.0, + "total_tests_per_thousand": 37.594, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 6.029, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-02", + "total_cases": 17050.0, + "new_cases": 418.0, + "new_cases_smoothed": 404.143, + "total_deaths": 467.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 2628.657, + "new_cases_per_million": 64.445, + "new_cases_smoothed_per_million": 62.308, + "total_deaths_per_million": 71.999, + "new_deaths_per_million": 2.929, + "new_deaths_smoothed_per_million": 1.696, + "new_tests": 2460.0, + "total_tests": 246302.0, + "total_tests_per_thousand": 37.973, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2445.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 6.05, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-03", + "total_cases": 17448.0, + "new_cases": 398.0, + "new_cases_smoothed": 402.571, + "total_deaths": 467.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 2690.018, + "new_cases_per_million": 61.361, + "new_cases_smoothed_per_million": 62.066, + "total_deaths_per_million": 71.999, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.299, + "new_tests": 2489.0, + "total_tests": 248791.0, + "total_tests_per_thousand": 38.357, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2444.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 6.071000000000001, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-04", + "total_cases": 17843.0, + "new_cases": 395.0, + "new_cases_smoothed": 401.143, + "total_deaths": 486.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 2750.917, + "new_cases_per_million": 60.899, + "new_cases_smoothed_per_million": 61.846, + "total_deaths_per_million": 74.928, + "new_deaths_per_million": 2.929, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 2480.0, + "total_tests": 251271.0, + "total_tests_per_thousand": 38.739, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 6.12, + "positive_rate": 0.163, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-05", + "total_cases": 18262.0, + "new_cases": 419.0, + "new_cases_smoothed": 402.286, + "total_deaths": 486.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 2815.516, + "new_cases_per_million": 64.599, + "new_cases_smoothed_per_million": 62.022, + "total_deaths_per_million": 74.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.52, + "new_tests": 2441.0, + "total_tests": 253712.0, + "total_tests_per_thousand": 39.116, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 2459.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 6.1129999999999995, + "positive_rate": 0.16399999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-06", + "total_cases": 18701.0, + "new_cases": 439.0, + "new_cases_smoothed": 408.571, + "total_deaths": 513.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 2883.198, + "new_cases_per_million": 67.682, + "new_cases_smoothed_per_million": 62.991, + "total_deaths_per_million": 79.091, + "new_deaths_per_million": 4.163, + "new_deaths_smoothed_per_million": 1.828, + "new_tests": 2464.0, + "total_tests": 256176.0, + "total_tests_per_thousand": 39.496, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 2466.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 6.0360000000000005, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-07", + "total_cases": 19126.0, + "new_cases": 425.0, + "new_cases_smoothed": 413.714, + "total_deaths": 520.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 2948.721, + "new_cases_per_million": 65.524, + "new_cases_smoothed_per_million": 63.784, + "total_deaths_per_million": 80.17, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.784, + "new_tests": 2471.0, + "total_tests": 258647.0, + "total_tests_per_thousand": 39.877, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 5.97, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-08", + "total_cases": 19544.0, + "new_cases": 418.0, + "new_cases_smoothed": 416.0, + "total_deaths": 536.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 3013.166, + "new_cases_per_million": 64.445, + "new_cases_smoothed_per_million": 64.136, + "total_deaths_per_million": 82.637, + "new_deaths_per_million": 2.467, + "new_deaths_smoothed_per_million": 1.938, + "new_tests": 2483.0, + "total_tests": 261130.0, + "total_tests_per_thousand": 40.259, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 5.938, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-09", + "total_cases": 19978.0, + "new_cases": 434.0, + "new_cases_smoothed": 418.286, + "total_deaths": 536.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 3080.077, + "new_cases_per_million": 66.911, + "new_cases_smoothed_per_million": 64.489, + "total_deaths_per_million": 82.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.52, + "new_tests": 2457.0, + "total_tests": 263587.0, + "total_tests_per_thousand": 40.638, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2469.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 5.903, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-10", + "total_cases": 20423.0, + "new_cases": 445.0, + "new_cases_smoothed": 425.0, + "total_deaths": 563.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 3148.684, + "new_cases_per_million": 68.607, + "new_cases_smoothed_per_million": 65.524, + "total_deaths_per_million": 86.8, + "new_deaths_per_million": 4.163, + "new_deaths_smoothed_per_million": 2.114, + "new_tests": 2492.0, + "total_tests": 266079.0, + "total_tests_per_thousand": 41.022, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 5.812, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-11", + "total_cases": 20872.0, + "new_cases": 449.0, + "new_cases_smoothed": 432.714, + "total_deaths": 570.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 3217.908, + "new_cases_per_million": 69.224, + "new_cases_smoothed_per_million": 66.713, + "total_deaths_per_million": 87.879, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.85, + "new_tests": 2460.0, + "total_tests": 268539.0, + "total_tests_per_thousand": 41.402, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2467.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 5.7010000000000005, + "positive_rate": 0.175, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-12", + "total_cases": 21269.0, + "new_cases": 397.0, + "new_cases_smoothed": 429.571, + "total_deaths": 577.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 3279.115, + "new_cases_per_million": 61.207, + "new_cases_smoothed_per_million": 66.229, + "total_deaths_per_million": 88.958, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 2.004, + "new_tests": 2518.0, + "total_tests": 271057.0, + "total_tests_per_thousand": 41.79, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 2478.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 5.769, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-13", + "total_cases": 21644.0, + "new_cases": 375.0, + "new_cases_smoothed": 420.429, + "total_deaths": 577.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 3336.93, + "new_cases_per_million": 57.815, + "new_cases_smoothed_per_million": 64.819, + "total_deaths_per_million": 88.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.41, + "new_tests": 2452.0, + "total_tests": 273509.0, + "total_tests_per_thousand": 42.168, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2476.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 5.888999999999999, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-14", + "total_cases": 21993.0, + "new_cases": 349.0, + "new_cases_smoothed": 409.571, + "total_deaths": 584.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 3390.737, + "new_cases_per_million": 53.807, + "new_cases_smoothed_per_million": 63.145, + "total_deaths_per_million": 90.037, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.41, + "new_tests": 2484.0, + "total_tests": 275993.0, + "total_tests_per_thousand": 42.551, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2478.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 6.05, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-15", + "total_cases": 22314.0, + "new_cases": 321.0, + "new_cases_smoothed": 395.714, + "total_deaths": 595.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3440.226, + "new_cases_per_million": 49.49, + "new_cases_smoothed_per_million": 61.009, + "total_deaths_per_million": 91.733, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.299, + "new_tests": 2452.0, + "total_tests": 278445.0, + "total_tests_per_thousand": 42.929, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2474.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 6.252000000000001, + "positive_rate": 0.16, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-16", + "total_cases": 22619.0, + "new_cases": 305.0, + "new_cases_smoothed": 377.286, + "total_deaths": 612.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 3487.249, + "new_cases_per_million": 47.023, + "new_cases_smoothed_per_million": 58.167, + "total_deaths_per_million": 94.354, + "new_deaths_per_million": 2.621, + "new_deaths_smoothed_per_million": 1.674, + "new_tests": 2498.0, + "total_tests": 280943.0, + "total_tests_per_thousand": 43.314, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2479.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 6.571000000000001, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-17", + "total_cases": 22912.0, + "new_cases": 293.0, + "new_cases_smoothed": 355.571, + "total_deaths": 618.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3532.422, + "new_cases_per_million": 45.173, + "new_cases_smoothed_per_million": 54.82, + "total_deaths_per_million": 95.279, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.211, + "new_tests": 2452.0, + "total_tests": 283395.0, + "total_tests_per_thousand": 43.692, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2474.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 6.957999999999999, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-18", + "total_cases": 23193.0, + "new_cases": 281.0, + "new_cases_smoothed": 331.571, + "total_deaths": 618.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3575.745, + "new_cases_per_million": 43.323, + "new_cases_smoothed_per_million": 51.12, + "total_deaths_per_million": 95.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 2498.0, + "total_tests": 285893.0, + "total_tests_per_thousand": 44.077, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2479.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 7.477, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-19", + "total_cases": 23462.0, + "new_cases": 269.0, + "new_cases_smoothed": 313.286, + "total_deaths": 633.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3617.218, + "new_cases_per_million": 41.473, + "new_cases_smoothed_per_million": 48.3, + "total_deaths_per_million": 97.592, + "new_deaths_per_million": 2.313, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 2414.0, + "total_tests": 288307.0, + "total_tests_per_thousand": 44.449, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 2464.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 7.865, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-20", + "total_cases": 23717.0, + "new_cases": 255.0, + "new_cases_smoothed": 296.143, + "total_deaths": 640.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 3656.532, + "new_cases_per_million": 39.314, + "new_cases_smoothed_per_million": 45.657, + "total_deaths_per_million": 98.671, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.388, + "new_tests": 2434.0, + "total_tests": 290741.0, + "total_tests_per_thousand": 44.825, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2462.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 8.314, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-21", + "total_cases": 23964.0, + "new_cases": 247.0, + "new_cases_smoothed": 281.571, + "total_deaths": 640.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3694.613, + "new_cases_per_million": 38.081, + "new_cases_smoothed_per_million": 43.411, + "total_deaths_per_million": 98.671, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 2477.0, + "total_tests": 293218.0, + "total_tests_per_thousand": 45.206, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 2461.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 8.74, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-22", + "total_cases": 24420.0, + "new_cases": 456.0, + "new_cases_smoothed": 300.857, + "total_deaths": 654.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3764.916, + "new_cases_per_million": 70.303, + "new_cases_smoothed_per_million": 46.384, + "total_deaths_per_million": 100.829, + "new_deaths_per_million": 2.158, + "new_deaths_smoothed_per_million": 1.299, + "new_tests": 2447.0, + "total_tests": 295665.0, + "total_tests_per_thousand": 45.584, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 2460.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 8.177, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-23", + "total_cases": 24420.0, + "new_cases": 0.0, + "new_cases_smoothed": 257.286, + "total_deaths": 654.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 3764.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 39.667, + "total_deaths_per_million": 100.829, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.925, + "new_tests": 2447.0, + "total_tests": 298112.0, + "total_tests_per_thousand": 45.961, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 2453.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 9.533999999999999, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-24", + "total_cases": 24622.0, + "new_cases": 202.0, + "new_cases_smoothed": 244.286, + "total_deaths": 669.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 3796.059, + "new_cases_per_million": 31.143, + "new_cases_smoothed_per_million": 37.662, + "total_deaths_per_million": 103.142, + "new_deaths_per_million": 2.313, + "new_deaths_smoothed_per_million": 1.123, + "new_tests": 2422.0, + "total_tests": 300534.0, + "total_tests_per_thousand": 46.334, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2448.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 10.021, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-25", + "total_cases": 24811.0, + "new_cases": 189.0, + "new_cases_smoothed": 231.143, + "total_deaths": 678.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3825.198, + "new_cases_per_million": 29.139, + "new_cases_smoothed_per_million": 35.636, + "total_deaths_per_million": 104.53, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.321, + "new_tests": 2497.0, + "total_tests": 303031.0, + "total_tests_per_thousand": 46.719, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2448.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 10.591, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-08-26", + "total_cases": 24986.0, + "new_cases": 175.0, + "new_cases_smoothed": 217.714, + "total_deaths": 687.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3852.178, + "new_cases_per_million": 26.98, + "new_cases_smoothed_per_million": 33.566, + "total_deaths_per_million": 105.917, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.189, + "new_tests": 2461.0, + "total_tests": 305492.0, + "total_tests_per_thousand": 47.099, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 11.276, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-08-27", + "total_cases": 25140.0, + "new_cases": 154.0, + "new_cases_smoothed": 203.286, + "total_deaths": 687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 3875.921, + "new_cases_per_million": 23.743, + "new_cases_smoothed_per_million": 31.341, + "total_deaths_per_million": 105.917, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.035, + "new_tests": 2485.0, + "total_tests": 307977.0, + "total_tests_per_thousand": 47.482, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2462.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 12.110999999999999, + "positive_rate": 0.083, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 25284.0, + "new_cases": 144.0, + "new_cases_smoothed": 188.571, + "total_deaths": 694.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3898.122, + "new_cases_per_million": 22.201, + "new_cases_smoothed_per_million": 29.073, + "total_deaths_per_million": 106.996, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.189, + "new_tests": 2467.0, + "total_tests": 310444.0, + "total_tests_per_thousand": 47.862, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 2461.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 13.050999999999998, + "positive_rate": 0.077, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 25415.0, + "new_cases": 131.0, + "new_cases_smoothed": 142.143, + "total_deaths": 702.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3918.318, + "new_cases_per_million": 20.197, + "new_cases_smoothed_per_million": 21.915, + "total_deaths_per_million": 108.23, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 2405.0, + "total_tests": 312849.0, + "total_tests_per_thousand": 48.233, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 17.271, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 25635.0, + "new_cases": 220.0, + "new_cases_smoothed": 173.571, + "total_deaths": 713.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3952.236, + "new_cases_per_million": 33.918, + "new_cases_smoothed_per_million": 26.76, + "total_deaths_per_million": 109.926, + "new_deaths_per_million": 1.696, + "new_deaths_smoothed_per_million": 1.299, + "new_tests": 2471.0, + "total_tests": 315320.0, + "total_tests_per_thousand": 48.614, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2458.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 14.161, + "positive_rate": 0.071, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 25729.0, + "new_cases": 94.0, + "new_cases_smoothed": 158.143, + "total_deaths": 717.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3966.729, + "new_cases_per_million": 14.492, + "new_cases_smoothed_per_million": 24.381, + "total_deaths_per_million": 110.542, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 2489.0, + "total_tests": 317809.0, + "total_tests_per_thousand": 48.998, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2468.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 15.606, + "positive_rate": 0.064, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 25820.0, + "new_cases": 91.0, + "new_cases_smoothed": 144.143, + "total_deaths": 724.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3980.759, + "new_cases_per_million": 14.03, + "new_cases_smoothed_per_million": 22.223, + "total_deaths_per_million": 111.622, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.013, + "new_tests": 2458.0, + "total_tests": 320267.0, + "total_tests_per_thousand": 49.377, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 2462.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 17.08, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 25904.0, + "new_cases": 84.0, + "new_cases_smoothed": 131.143, + "total_deaths": 731.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3993.709, + "new_cases_per_million": 12.951, + "new_cases_smoothed_per_million": 20.219, + "total_deaths_per_million": 112.701, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 0.969 + }, + { + "date": "2020-09-03", + "total_cases": 25904.0, + "new_cases": 0.0, + "new_cases_smoothed": 109.143, + "total_deaths": 739.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 3993.709, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.827, + "total_deaths_per_million": 113.934, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.145 + }, + { + "date": "2020-09-04", + "total_cases": 26000.0, + "new_cases": 96.0, + "new_cases_smoothed": 102.286, + "total_deaths": 744.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4008.51, + "new_cases_per_million": 14.801, + "new_cases_smoothed_per_million": 15.77, + "total_deaths_per_million": 114.705, + "new_deaths_per_million": 0.771, + "new_deaths_smoothed_per_million": 1.101 + }, + { + "date": "2020-09-05", + "total_cases": 26099.0, + "new_cases": 99.0, + "new_cases_smoothed": 97.714, + "total_deaths": 752.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4023.773, + "new_cases_per_million": 15.263, + "new_cases_smoothed_per_million": 15.065, + "total_deaths_per_million": 115.938, + "new_deaths_per_million": 1.233, + "new_deaths_smoothed_per_million": 1.101 + } + ] + }, + "GNQ": { + "continent": "Africa", + "location": "Equatorial Guinea", + "population": 1402985.0, + "population_density": 45.194, + "median_age": 22.4, + "aged_65_older": 2.846, + "aged_70_older": 1.752, + "gdp_per_capita": 22604.873, + "cardiovasc_death_rate": 202.812, + "diabetes_prevalence": 7.78, + "handwashing_facilities": 24.64, + "hospital_beds_per_thousand": 2.1, + "life_expectancy": 58.74, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.713, + "new_cases_per_million": 0.713, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.713, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.713, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.713, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.138, + "new_cases_per_million": 1.426, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.851, + "new_cases_per_million": 0.713, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.277, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.415, + "new_cases_per_million": 2.138, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.84, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.553, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.266, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 0.916, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.266, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.713, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.979, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.979, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.691, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 0.611, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.691, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.691, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.404, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.83, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 21.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.968, + "new_cases_per_million": 2.138, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.968, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 41.0, + "new_cases": 20.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.223, + "new_cases_per_million": 14.255, + "new_cases_smoothed_per_million": 2.546, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 51.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.351, + "new_cases_per_million": 7.128, + "new_cases_smoothed_per_million": 3.36, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.351, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.36, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 79.0, + "new_cases": 28.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.309, + "new_cases_per_million": 19.957, + "new_cases_smoothed_per_million": 6.211, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.211, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.906, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.906, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.869, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 83.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.16, + "new_cases_per_million": 2.851, + "new_cases_smoothed_per_million": 3.258, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 84.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.872, + "new_cases_per_million": 0.713, + "new_cases_smoothed_per_million": 3.36, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-25", + "total_cases": 212.0, + "new_cases": 128.0, + "new_cases_smoothed": 19.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 151.106, + "new_cases_per_million": 91.234, + "new_cases_smoothed_per_million": 13.543, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-26", + "total_cases": 214.0, + "new_cases": 2.0, + "new_cases_smoothed": 19.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 152.532, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 13.746, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-27", + "total_cases": 258.0, + "new_cases": 44.0, + "new_cases_smoothed": 25.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 183.894, + "new_cases_per_million": 31.362, + "new_cases_smoothed_per_million": 18.226, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-28", + "total_cases": 258.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 183.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.226, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-29", + "total_cases": 315.0, + "new_cases": 57.0, + "new_cases_smoothed": 33.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 224.521, + "new_cases_per_million": 40.628, + "new_cases_smoothed_per_million": 24.03, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-04-30", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.623, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-05-01", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.521, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.488, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.284, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.804, + "total_deaths_per_million": 0.713, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 224.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.804, + "total_deaths_per_million": 1.426, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-05-06", + "total_cases": 439.0, + "new_cases": 124.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 88.383, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 1.426, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-07", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-08", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-09", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-10", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-11", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-12", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.626, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204 + }, + { + "date": "2020-05-13", + "total_cases": 439.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 312.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 522.0, + "new_cases": 83.0, + "new_cases_smoothed": 11.857, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 372.064, + "new_cases_per_million": 59.16, + "new_cases_smoothed_per_million": 8.451, + "total_deaths_per_million": 4.277, + "new_deaths_per_million": 1.426, + "new_deaths_smoothed_per_million": 0.204 + }, + { + "date": "2020-05-15", + "total_cases": 594.0, + "new_cases": 72.0, + "new_cases_smoothed": 22.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 423.383, + "new_cases_per_million": 51.319, + "new_cases_smoothed_per_million": 15.783, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-16", + "total_cases": 594.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 423.383, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.783, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-17", + "total_cases": 594.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 423.383, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.783, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-18", + "total_cases": 594.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 423.383, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.783, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-19", + "total_cases": 719.0, + "new_cases": 125.0, + "new_cases_smoothed": 40.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 512.479, + "new_cases_per_million": 89.096, + "new_cases_smoothed_per_million": 28.511, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-20", + "total_cases": 890.0, + "new_cases": 171.0, + "new_cases_smoothed": 64.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 634.362, + "new_cases_per_million": 121.883, + "new_cases_smoothed_per_million": 45.922, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-21", + "total_cases": 890.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 634.362, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.471, + "total_deaths_per_million": 4.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102 + }, + { + "date": "2020-05-22", + "total_cases": 903.0, + "new_cases": 13.0, + "new_cases_smoothed": 44.143, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 643.628, + "new_cases_per_million": 9.266, + "new_cases_smoothed_per_million": 31.464, + "total_deaths_per_million": 7.128, + "new_deaths_per_million": 2.138, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-23", + "total_cases": 903.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 643.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.464, + "total_deaths_per_million": 7.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.305 + }, + { + "date": "2020-05-24", + "total_cases": 1043.0, + "new_cases": 140.0, + "new_cases_smoothed": 64.143, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 743.415, + "new_cases_per_million": 99.787, + "new_cases_smoothed_per_million": 45.719, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 1.426, + "new_deaths_smoothed_per_million": 0.509 + }, + { + "date": "2020-05-25", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 64.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 45.719, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.509 + }, + { + "date": "2020-05-26", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.991, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.509 + }, + { + "date": "2020-05-27", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.579, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.509 + }, + { + "date": "2020-05-28", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.579, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.509 + }, + { + "date": "2020-05-29", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.255, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204 + }, + { + "date": "2020-05-30", + "total_cases": 1043.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 743.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.255, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204 + }, + { + "date": "2020-05-31", + "total_cases": 1306.0, + "new_cases": 263.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 187.457, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.78, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 930.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 8.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 1664.0, + "new_cases": 358.0, + "new_cases_smoothed": 51.143, + "total_deaths": 32.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1186.043, + "new_cases_per_million": 255.17, + "new_cases_smoothed_per_million": 36.453, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 14.255, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-21", + "total_cases": 1664.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1186.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.453, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-22", + "total_cases": 1664.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1186.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.453, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-23", + "total_cases": 2001.0, + "new_cases": 337.0, + "new_cases_smoothed": 99.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 240.202, + "new_cases_smoothed_per_million": 70.767, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-24", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 99.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 70.767, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-25", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 99.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 70.767, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-26", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 99.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 70.767, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.036 + }, + { + "date": "2020-06-27", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.315, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.315, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.315, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 2001.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1426.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 22.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 3071.0, + "new_cases": 1070.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 762.66, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 13.543, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-04", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-05", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-06", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-07", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-08", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-09", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.857, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 108.951, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.935 + }, + { + "date": "2020-07-10", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 3071.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2188.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 36.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 4821.0, + "new_cases": 1750.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 1247.34, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 22.809, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-03", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-04", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-05", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-06", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-07", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-08", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 250.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 178.191, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.258 + }, + { + "date": "2020-08-09", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 4821.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3436.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 4892.0, + "new_cases": 71.0, + "new_cases_smoothed": 10.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3486.851, + "new_cases_per_million": 50.606, + "new_cases_smoothed_per_million": 7.229, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 4892.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3486.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.229, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 4892.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3486.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.229, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 4892.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3486.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.229, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 4926.0, + "new_cases": 34.0, + "new_cases_smoothed": 15.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3511.085, + "new_cases_per_million": 24.234, + "new_cases_smoothed_per_million": 10.691, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 4926.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3511.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.691, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 4926.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.0, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3511.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.691, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 4926.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3511.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.462, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 4926.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3511.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.462, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 4928.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3512.511, + "new_cases_per_million": 1.426, + "new_cases_smoothed_per_million": 3.666, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 4928.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3512.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.666, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 4941.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3521.777, + "new_cases_per_million": 9.266, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 4941.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3521.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 4941.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3521.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 4965.0, + "new_cases": 24.0, + "new_cases_smoothed": 5.571, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3538.883, + "new_cases_per_million": 17.106, + "new_cases_smoothed_per_million": 3.971, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 4965.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3538.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.971, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 4965.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3538.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.767, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 4972.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.286, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3543.873, + "new_cases_per_million": 4.989, + "new_cases_smoothed_per_million": 4.48, + "total_deaths_per_million": 59.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ERI": { + "continent": "Africa", + "location": "Eritrea", + "population": 3546427.0, + "population_density": 44.304, + "median_age": 19.3, + "aged_65_older": 3.607, + "aged_70_older": 2.171, + "gdp_per_capita": 1510.459, + "cardiovasc_death_rate": 311.11, + "diabetes_prevalence": 6.05, + "female_smokers": 0.2, + "male_smokers": 11.4, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 66.32, + "data": [ + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.282, + "new_cases_per_million": 0.282, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.282, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.282, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.282, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.128, + "new_cases_per_million": 0.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.692, + "new_cases_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 12.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.384, + "new_cases_per_million": 1.692, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.384, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-04-01", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.23, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.076, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 22.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.203, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 29.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.177, + "new_cases_per_million": 1.974, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.177, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.741, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.741, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.305, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.604, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.587, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.869, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 39.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-05", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-06", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-07", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-08", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-09", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-10", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-11", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-12", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-13", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-14", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-15", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-16", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-17", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-18", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-19", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-20", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-21", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-22", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-23", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-24", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-25", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-26", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-27", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-28", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-29", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-30", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-31", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-01", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-02", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-03", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-04", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.279, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-05", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-06", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-07", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-08", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-09", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-10", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-11", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-12", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-13", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-14", + "total_cases": 65.0, + "new_cases": 24.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.328, + "new_cases_per_million": 6.767, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-15", + "total_cases": 96.0, + "new_cases": 31.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.069, + "new_cases_per_million": 8.741, + "new_cases_smoothed_per_million": 2.216, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-16", + "total_cases": 109.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.735, + "new_cases_per_million": 3.666, + "new_cases_smoothed_per_million": 2.739, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-17", + "total_cases": 121.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.119, + "new_cases_per_million": 3.384, + "new_cases_smoothed_per_million": 3.223, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-18", + "total_cases": 131.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.939, + "new_cases_per_million": 2.82, + "new_cases_smoothed_per_million": 3.625, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-19", + "total_cases": 142.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.04, + "new_cases_per_million": 3.102, + "new_cases_smoothed_per_million": 4.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-20", + "total_cases": 142.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-21", + "total_cases": 143.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.322, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 3.142, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-22", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.893, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-23", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.37, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-24", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-25", + "total_cases": 143.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-26", + "total_cases": 144.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.604, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-27", + "total_cases": 167.0, + "new_cases": 23.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.09, + "new_cases_per_million": 6.485, + "new_cases_smoothed_per_million": 1.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-28", + "total_cases": 191.0, + "new_cases": 24.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.857, + "new_cases_per_million": 6.767, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-29", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-30", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-01", + "total_cases": 203.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.241, + "new_cases_per_million": 3.384, + "new_cases_smoothed_per_million": 2.417, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-02", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.417, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-03", + "total_cases": 215.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 3.384, + "new_cases_smoothed_per_million": 2.86, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-04", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-05", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-06", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-07", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-08", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-09", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.624, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-10", + "total_cases": 232.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 4.794, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-11", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-12", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-13", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-14", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-15", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-16", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-17", + "total_cases": 251.0, + "new_cases": 19.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 5.358, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-18", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-19", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-20", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-21", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-22", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-23", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-24", + "total_cases": 261.0, + "new_cases": 10.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.595, + "new_cases_per_million": 2.82, + "new_cases_smoothed_per_million": 0.403, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-25", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.595, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.403, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-26", + "total_cases": 263.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.159, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-27", + "total_cases": 263.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-28", + "total_cases": 265.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.723, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-29", + "total_cases": 265.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-30", + "total_cases": 265.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-07-31", + "total_cases": 279.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.671, + "new_cases_per_million": 3.948, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-01", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.671, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-02", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.671, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-03", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.671, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-04", + "total_cases": 282.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.517, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-05", + "total_cases": 282.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-06", + "total_cases": 282.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-07", + "total_cases": 282.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-08", + "total_cases": 285.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-09", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-10", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-11", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-12", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-13", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-14", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-15", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-16", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-17", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-18", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-19", + "total_cases": 304.0, + "new_cases": 19.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.72, + "new_cases_per_million": 5.358, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-20", + "total_cases": 304.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-21", + "total_cases": 304.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-22", + "total_cases": 306.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.284, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-23", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.284, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-24", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.284, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-25", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.284, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-26", + "total_cases": 315.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.822, + "new_cases_per_million": 2.538, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-08-27", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.822, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 317.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.386, + "new_cases_per_million": 0.564, + "new_cases_smoothed_per_million": 0.524, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 317.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 318.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.668, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.668, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.668, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 319.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.95, + "new_cases_per_million": 0.282, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.95, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 330.0, + "new_cases": 11.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.051, + "new_cases_per_million": 3.102, + "new_cases_smoothed_per_million": 0.524, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 330.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.524, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "EST": { + "continent": "Europe", + "location": "Estonia", + "population": 1326539.0, + "population_density": 31.033, + "median_age": 42.7, + "aged_65_older": 19.452, + "aged_70_older": 13.491, + "gdp_per_capita": 29481.252, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 255.569, + "diabetes_prevalence": 4.02, + "female_smokers": 24.5, + "male_smokers": 39.3, + "hospital_beds_per_thousand": 4.69, + "life_expectancy": 78.74, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 13.0, + "total_tests_per_thousand": 0.01, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 23.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.008, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.754, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 36.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.01, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.754, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 44.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.754, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 62.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.014, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.754, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 84.0, + "total_tests_per_thousand": 0.063, + "new_tests_per_thousand": 0.017, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 113.0, + "total_tests_per_thousand": 0.085, + "new_tests_per_thousand": 0.022, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.508, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 36.0, + "total_tests": 149.0, + "total_tests_per_thousand": 0.112, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 66.5, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 184.0, + "total_tests_per_thousand": 0.139, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 80.5, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.769, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 255.0, + "total_tests_per_thousand": 0.192, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 54.25, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 10.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.538, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 0.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 284.0, + "total_tests_per_thousand": 0.214, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 26.444000000000003, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 1.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.969, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 304.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 27.221999999999998, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 1.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.969, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 64.0, + "total_tests": 368.0, + "total_tests_per_thousand": 0.277, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 31.889, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 1.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.969, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 57.0, + "total_tests": 425.0, + "total_tests_per_thousand": 0.32, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 35.0, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.8, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 1.185, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 65.0, + "total_tests": 490.0, + "total_tests_per_thousand": 0.369, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 31.182, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.061, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 131.0, + "total_tests": 621.0, + "total_tests_per_thousand": 0.468, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 31.0, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 27.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.354, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 2.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 183.0, + "total_tests": 804.0, + "total_tests_per_thousand": 0.606, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 78.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 24.818, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 79.0, + "new_cases": 52.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.553, + "new_cases_per_million": 39.2, + "new_cases_smoothed_per_million": 7.431, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 163.0, + "total_tests": 967.0, + "total_tests_per_thousand": 0.729, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 98.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 9.942, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-15", + "total_cases": 115.0, + "new_cases": 36.0, + "new_cases_smoothed": 15.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.692, + "new_cases_per_million": 27.138, + "new_cases_smoothed_per_million": 11.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 1462.0, + "total_tests_per_thousand": 1.102, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 165.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 11.0, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-16", + "total_cases": 171.0, + "new_cases": 56.0, + "new_cases_smoothed": 23.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.907, + "new_cases_per_million": 42.215, + "new_cases_smoothed_per_million": 17.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 304.0, + "total_tests": 1766.0, + "total_tests_per_thousand": 1.331, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 200.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 8.696, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-17", + "total_cases": 205.0, + "new_cases": 34.0, + "new_cases_smoothed": 27.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 154.537, + "new_cases_per_million": 25.631, + "new_cases_smoothed_per_million": 21.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 191.0, + "total_tests": 1957.0, + "total_tests_per_thousand": 1.475, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 219.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 7.862, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-18", + "total_cases": 225.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.614, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 22.831, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 538.0, + "total_tests": 2495.0, + "total_tests_per_thousand": 1.881, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 286.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 9.443, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-19", + "total_cases": 258.0, + "new_cases": 33.0, + "new_cases_smoothed": 34.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.491, + "new_cases_per_million": 24.877, + "new_cases_smoothed_per_million": 26.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 351.0, + "total_tests": 2846.0, + "total_tests_per_thousand": 2.145, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 318.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 9.198, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 267.0, + "new_cases": 9.0, + "new_cases_smoothed": 34.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 201.276, + "new_cases_per_million": 6.785, + "new_cases_smoothed_per_million": 25.846, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 392.0, + "total_tests": 3238.0, + "total_tests_per_thousand": 2.441, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 348.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 10.15, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 283.0, + "new_cases": 16.0, + "new_cases_smoothed": 29.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.337, + "new_cases_per_million": 12.061, + "new_cases_smoothed_per_million": 21.969, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 637.0, + "total_tests": 3875.0, + "total_tests_per_thousand": 2.921, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 415.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 14.24, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 306.0, + "new_cases": 23.0, + "new_cases_smoothed": 27.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 230.675, + "new_cases_per_million": 17.338, + "new_cases_smoothed_per_million": 20.569, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 160.0, + "total_tests": 4035.0, + "total_tests_per_thousand": 3.042, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 13.487, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 326.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.752, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 16.692, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 4530.0, + "total_tests_per_thousand": 3.415, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 395.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 17.839000000000002, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-24", + "total_cases": 352.0, + "new_cases": 26.0, + "new_cases_smoothed": 21.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.352, + "new_cases_per_million": 19.6, + "new_cases_smoothed_per_million": 15.831, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1403.0, + "total_tests": 5933.0, + "total_tests_per_thousand": 4.473, + "new_tests_per_thousand": 1.058, + "new_tests_smoothed": 568.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 27.048000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-25", + "total_cases": 369.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.167, + "new_cases_per_million": 12.815, + "new_cases_smoothed_per_million": 15.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1047.0, + "total_tests": 6980.0, + "total_tests_per_thousand": 5.262, + "new_tests_per_thousand": 0.789, + "new_tests_smoothed": 641.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 31.16, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-26", + "total_cases": 404.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 304.552, + "new_cases_per_million": 26.384, + "new_cases_smoothed_per_million": 15.723, + "total_deaths_per_million": 0.754, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1139.0, + "total_tests": 8119.0, + "total_tests_per_thousand": 6.12, + "new_tests_per_thousand": 0.859, + "new_tests_smoothed": 753.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 36.103, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-27", + "total_cases": 538.0, + "new_cases": 134.0, + "new_cases_smoothed": 38.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 405.567, + "new_cases_per_million": 101.015, + "new_cases_smoothed_per_million": 29.184, + "total_deaths_per_million": 0.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1253.0, + "total_tests": 9372.0, + "total_tests_per_thousand": 7.065, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 22.627, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-28", + "total_cases": 575.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 433.459, + "new_cases_per_million": 27.892, + "new_cases_smoothed_per_million": 31.446, + "total_deaths_per_million": 0.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1035.0, + "total_tests": 10407.0, + "total_tests_per_thousand": 7.845, + "new_tests_per_thousand": 0.78, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 22.366, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-03-29", + "total_cases": 640.0, + "new_cases": 65.0, + "new_cases_smoothed": 47.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 482.458, + "new_cases_per_million": 49.0, + "new_cases_smoothed_per_million": 35.969, + "total_deaths_per_million": 0.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 851.0, + "total_tests": 11258.0, + "total_tests_per_thousand": 8.487, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 21.629, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-30", + "total_cases": 679.0, + "new_cases": 39.0, + "new_cases_smoothed": 50.429, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 511.858, + "new_cases_per_million": 29.4, + "new_cases_smoothed_per_million": 38.015, + "total_deaths_per_million": 2.262, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 0.323, + "new_tests": 1149.0, + "total_tests": 12407.0, + "total_tests_per_thousand": 9.353, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 1125.0, + "new_tests_smoothed_per_thousand": 0.848, + "tests_per_case": 22.309, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-31", + "total_cases": 715.0, + "new_cases": 36.0, + "new_cases_smoothed": 51.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 538.997, + "new_cases_per_million": 27.138, + "new_cases_smoothed_per_million": 39.092, + "total_deaths_per_million": 2.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.323, + "new_tests": 1976.0, + "total_tests": 14383.0, + "total_tests_per_thousand": 10.843, + "new_tests_per_thousand": 1.49, + "new_tests_smoothed": 1207.0, + "new_tests_smoothed_per_thousand": 0.91, + "tests_per_case": 23.275, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-01", + "total_cases": 745.0, + "new_cases": 30.0, + "new_cases_smoothed": 53.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 561.612, + "new_cases_per_million": 22.615, + "new_cases_smoothed_per_million": 40.492, + "total_deaths_per_million": 3.015, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 1375.0, + "total_tests": 15758.0, + "total_tests_per_thousand": 11.879, + "new_tests_per_thousand": 1.037, + "new_tests_smoothed": 1254.0, + "new_tests_smoothed_per_thousand": 0.945, + "tests_per_case": 23.346, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-02", + "total_cases": 779.0, + "new_cases": 34.0, + "new_cases_smoothed": 53.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 587.242, + "new_cases_per_million": 25.631, + "new_cases_smoothed_per_million": 40.384, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 2506.0, + "total_tests": 18264.0, + "total_tests_per_thousand": 13.768, + "new_tests_per_thousand": 1.889, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 27.048000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-03", + "total_cases": 858.0, + "new_cases": 79.0, + "new_cases_smoothed": 45.714, + "total_deaths": 11.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 646.796, + "new_cases_per_million": 59.553, + "new_cases_smoothed_per_million": 34.461, + "total_deaths_per_million": 8.292, + "new_deaths_per_million": 4.523, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 1533.0, + "total_tests": 19797.0, + "total_tests_per_thousand": 14.924, + "new_tests_per_thousand": 1.156, + "new_tests_smoothed": 1489.0, + "new_tests_smoothed_per_thousand": 1.122, + "tests_per_case": 32.571999999999996, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-04", + "total_cases": 961.0, + "new_cases": 103.0, + "new_cases_smoothed": 55.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 724.442, + "new_cases_per_million": 77.646, + "new_cases_smoothed_per_million": 41.569, + "total_deaths_per_million": 9.046, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 1.185, + "new_tests": 1186.0, + "total_tests": 20983.0, + "total_tests_per_thousand": 15.818, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 1511.0, + "new_tests_smoothed_per_thousand": 1.139, + "tests_per_case": 27.401999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-05", + "total_cases": 1018.0, + "new_cases": 57.0, + "new_cases_smoothed": 54.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 767.411, + "new_cases_per_million": 42.969, + "new_cases_smoothed_per_million": 40.707, + "total_deaths_per_million": 9.8, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 859.0, + "total_tests": 21842.0, + "total_tests_per_thousand": 16.465, + "new_tests_per_thousand": 0.648, + "new_tests_smoothed": 1512.0, + "new_tests_smoothed_per_thousand": 1.14, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-06", + "total_cases": 1097.0, + "new_cases": 79.0, + "new_cases_smoothed": 59.714, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 826.964, + "new_cases_per_million": 59.553, + "new_cases_smoothed_per_million": 45.015, + "total_deaths_per_million": 11.308, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 1679.0, + "total_tests": 23521.0, + "total_tests_per_thousand": 17.731, + "new_tests_per_thousand": 1.266, + "new_tests_smoothed": 1588.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 26.593000000000004, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-07", + "total_cases": 1108.0, + "new_cases": 11.0, + "new_cases_smoothed": 56.143, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 835.256, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 42.323, + "total_deaths_per_million": 14.323, + "new_deaths_per_million": 3.015, + "new_deaths_smoothed_per_million": 1.723, + "new_tests": 1272.0, + "total_tests": 24793.0, + "total_tests_per_thousand": 18.69, + "new_tests_per_thousand": 0.959, + "new_tests_smoothed": 1487.0, + "new_tests_smoothed_per_thousand": 1.121, + "tests_per_case": 26.486, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-08", + "total_cases": 1149.0, + "new_cases": 41.0, + "new_cases_smoothed": 57.714, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 866.164, + "new_cases_per_million": 30.907, + "new_cases_smoothed_per_million": 43.507, + "total_deaths_per_million": 15.831, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 1.831, + "new_tests": 1605.0, + "total_tests": 26398.0, + "total_tests_per_thousand": 19.9, + "new_tests_per_thousand": 1.21, + "new_tests_smoothed": 1520.0, + "new_tests_smoothed_per_thousand": 1.146, + "tests_per_case": 26.337, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 1185.0, + "new_cases": 36.0, + "new_cases_smoothed": 58.0, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 893.302, + "new_cases_per_million": 27.138, + "new_cases_smoothed_per_million": 43.723, + "total_deaths_per_million": 18.092, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 2.046, + "new_tests": 1466.0, + "total_tests": 27864.0, + "total_tests_per_thousand": 21.005, + "new_tests_per_thousand": 1.105, + "new_tests_smoothed": 1371.0, + "new_tests_smoothed_per_thousand": 1.034, + "tests_per_case": 23.638, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 1207.0, + "new_cases": 22.0, + "new_cases_smoothed": 49.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 909.887, + "new_cases_per_million": 16.585, + "new_cases_smoothed_per_million": 37.584, + "total_deaths_per_million": 18.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.4, + "new_tests": 1570.0, + "total_tests": 29434.0, + "total_tests_per_thousand": 22.189, + "new_tests_per_thousand": 1.184, + "new_tests_smoothed": 1377.0, + "new_tests_smoothed_per_thousand": 1.038, + "tests_per_case": 27.619, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-11", + "total_cases": 1258.0, + "new_cases": 51.0, + "new_cases_smoothed": 42.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 948.332, + "new_cases_per_million": 38.446, + "new_cases_smoothed_per_million": 31.984, + "total_deaths_per_million": 18.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 895.0, + "total_tests": 30329.0, + "total_tests_per_thousand": 22.863, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 1335.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 31.465, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 1304.0, + "new_cases": 46.0, + "new_cases_smoothed": 40.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 983.009, + "new_cases_per_million": 34.677, + "new_cases_smoothed_per_million": 30.8, + "total_deaths_per_million": 18.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.185, + "new_tests": 409.0, + "total_tests": 30738.0, + "total_tests_per_thousand": 23.172, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 1271.0, + "new_tests_smoothed_per_thousand": 0.958, + "tests_per_case": 31.108, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 1309.0, + "new_cases": 5.0, + "new_cases_smoothed": 30.286, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 986.778, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 22.831, + "total_deaths_per_million": 18.846, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 1508.0, + "total_tests": 32246.0, + "total_tests_per_thousand": 24.308, + "new_tests_per_thousand": 1.137, + "new_tests_smoothed": 1246.0, + "new_tests_smoothed_per_thousand": 0.939, + "tests_per_case": 41.141999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-14", + "total_cases": 1332.0, + "new_cases": 23.0, + "new_cases_smoothed": 32.0, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1004.117, + "new_cases_per_million": 17.338, + "new_cases_smoothed_per_million": 24.123, + "total_deaths_per_million": 21.108, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 1706.0, + "total_tests": 33952.0, + "total_tests_per_thousand": 25.594, + "new_tests_per_thousand": 1.286, + "new_tests_smoothed": 1308.0, + "new_tests_smoothed_per_thousand": 0.986, + "tests_per_case": 40.875, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-15", + "total_cases": 1373.0, + "new_cases": 41.0, + "new_cases_smoothed": 32.0, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1035.024, + "new_cases_per_million": 30.907, + "new_cases_smoothed_per_million": 24.123, + "total_deaths_per_million": 23.369, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 2049.0, + "total_tests": 36001.0, + "total_tests_per_thousand": 27.139, + "new_tests_per_thousand": 1.545, + "new_tests_smoothed": 1372.0, + "new_tests_smoothed_per_thousand": 1.034, + "tests_per_case": 42.875, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-16", + "total_cases": 1402.0, + "new_cases": 29.0, + "new_cases_smoothed": 31.0, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1056.886, + "new_cases_per_million": 21.861, + "new_cases_smoothed_per_million": 23.369, + "total_deaths_per_million": 26.384, + "new_deaths_per_million": 3.015, + "new_deaths_smoothed_per_million": 1.185, + "new_tests": 1572.0, + "total_tests": 37573.0, + "total_tests_per_thousand": 28.324, + "new_tests_per_thousand": 1.185, + "new_tests_smoothed": 1387.0, + "new_tests_smoothed_per_thousand": 1.046, + "tests_per_case": 44.742, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-17", + "total_cases": 1434.0, + "new_cases": 32.0, + "new_cases_smoothed": 32.429, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1081.009, + "new_cases_per_million": 24.123, + "new_cases_smoothed_per_million": 24.446, + "total_deaths_per_million": 27.138, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 2010.0, + "total_tests": 39583.0, + "total_tests_per_thousand": 29.839, + "new_tests_per_thousand": 1.515, + "new_tests_smoothed": 1450.0, + "new_tests_smoothed_per_thousand": 1.093, + "tests_per_case": 44.714, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-18", + "total_cases": 1459.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.714, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1099.855, + "new_cases_per_million": 18.846, + "new_cases_smoothed_per_million": 21.646, + "total_deaths_per_million": 28.646, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 1.508, + "new_tests": 722.0, + "total_tests": 40305.0, + "total_tests_per_thousand": 30.384, + "new_tests_per_thousand": 0.544, + "new_tests_smoothed": 1425.0, + "new_tests_smoothed_per_thousand": 1.074, + "tests_per_case": 49.626999999999995, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-19", + "total_cases": 1512.0, + "new_cases": 53.0, + "new_cases_smoothed": 29.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1139.808, + "new_cases_per_million": 39.954, + "new_cases_smoothed_per_million": 22.4, + "total_deaths_per_million": 28.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.508, + "new_tests": 599.0, + "total_tests": 40904.0, + "total_tests_per_thousand": 30.835, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 1452.0, + "new_tests_smoothed_per_thousand": 1.095, + "tests_per_case": 48.865, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-20", + "total_cases": 1528.0, + "new_cases": 16.0, + "new_cases_smoothed": 31.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1151.87, + "new_cases_per_million": 12.061, + "new_cases_smoothed_per_million": 23.584, + "total_deaths_per_million": 30.154, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 1.615, + "new_tests": 1289.0, + "total_tests": 42193.0, + "total_tests_per_thousand": 31.807, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 1421.0, + "new_tests_smoothed_per_thousand": 1.071, + "tests_per_case": 45.42, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-21", + "total_cases": 1535.0, + "new_cases": 7.0, + "new_cases_smoothed": 29.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1157.147, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 21.861, + "total_deaths_per_million": 30.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 1420.0, + "total_tests": 43613.0, + "total_tests_per_thousand": 32.877, + "new_tests_per_thousand": 1.07, + "new_tests_smoothed": 1380.0, + "new_tests_smoothed_per_thousand": 1.04, + "tests_per_case": 47.586000000000006, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-22", + "total_cases": 1552.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.571, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1169.962, + "new_cases_per_million": 12.815, + "new_cases_smoothed_per_million": 19.277, + "total_deaths_per_million": 32.415, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 1545.0, + "total_tests": 45158.0, + "total_tests_per_thousand": 34.042, + "new_tests_per_thousand": 1.165, + "new_tests_smoothed": 1308.0, + "new_tests_smoothed_per_thousand": 0.986, + "tests_per_case": 51.151, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 1559.0, + "new_cases": 7.0, + "new_cases_smoothed": 22.429, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1175.239, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 16.908, + "total_deaths_per_million": 33.169, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 1099.0, + "total_tests": 46257.0, + "total_tests_per_thousand": 34.87, + "new_tests_per_thousand": 0.828, + "new_tests_smoothed": 1241.0, + "new_tests_smoothed_per_thousand": 0.936, + "tests_per_case": 55.331, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 1592.0, + "new_cases": 33.0, + "new_cases_smoothed": 22.571, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1200.115, + "new_cases_per_million": 24.877, + "new_cases_smoothed_per_million": 17.015, + "total_deaths_per_million": 33.923, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 1050.0, + "total_tests": 47307.0, + "total_tests_per_thousand": 35.662, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 1103.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 48.867, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-25", + "total_cases": 1605.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.857, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1209.915, + "new_cases_per_million": 9.8, + "new_cases_smoothed_per_million": 15.723, + "total_deaths_per_million": 34.677, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.862, + "new_tests": 603.0, + "total_tests": 47910.0, + "total_tests_per_thousand": 36.117, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.819, + "tests_per_case": 52.068000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-26", + "total_cases": 1635.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1232.531, + "new_cases_per_million": 22.615, + "new_cases_smoothed_per_million": 13.246, + "total_deaths_per_million": 34.677, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.862, + "new_tests": 469.0, + "total_tests": 48379.0, + "total_tests_per_thousand": 36.47, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 1068.0, + "new_tests_smoothed_per_thousand": 0.805, + "tests_per_case": 60.78, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-27", + "total_cases": 1643.0, + "new_cases": 8.0, + "new_cases_smoothed": 16.429, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1238.561, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 12.385, + "total_deaths_per_million": 36.938, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 0.969, + "new_tests": 1108.0, + "total_tests": 49487.0, + "total_tests_per_thousand": 37.305, + "new_tests_per_thousand": 0.835, + "new_tests_smoothed": 1042.0, + "new_tests_smoothed_per_thousand": 0.786, + "tests_per_case": 63.426, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-28", + "total_cases": 1647.0, + "new_cases": 4.0, + "new_cases_smoothed": 16.0, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1241.577, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 12.061, + "total_deaths_per_million": 37.692, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 1670.0, + "total_tests": 51157.0, + "total_tests_per_thousand": 38.564, + "new_tests_per_thousand": 1.259, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 0.813, + "tests_per_case": 67.375, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-29", + "total_cases": 1660.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1251.377, + "new_cases_per_million": 9.8, + "new_cases_smoothed_per_million": 11.631, + "total_deaths_per_million": 37.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 1560.0, + "total_tests": 52717.0, + "total_tests_per_thousand": 39.74, + "new_tests_per_thousand": 1.176, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 0.814, + "tests_per_case": 70.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-30", + "total_cases": 1666.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1255.9, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 11.523, + "total_deaths_per_million": 37.692, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 1027.0, + "total_tests": 53744.0, + "total_tests_per_thousand": 40.514, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 1070.0, + "new_tests_smoothed_per_thousand": 0.807, + "tests_per_case": 70.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-01", + "total_cases": 1689.0, + "new_cases": 23.0, + "new_cases_smoothed": 13.857, + "total_deaths": 52.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1273.238, + "new_cases_per_million": 17.338, + "new_cases_smoothed_per_million": 10.446, + "total_deaths_per_million": 39.2, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 694.0, + "total_tests": 54438.0, + "total_tests_per_thousand": 41.038, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 1019.0, + "new_tests_smoothed_per_thousand": 0.768, + "tests_per_case": 73.536, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-02", + "total_cases": 1694.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1277.007, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 9.585, + "total_deaths_per_million": 39.2, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 734.0, + "total_tests": 55172.0, + "total_tests_per_thousand": 41.591, + "new_tests_per_thousand": 0.553, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 81.562, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-03", + "total_cases": 1699.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.143, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1280.777, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 6.892, + "total_deaths_per_million": 39.954, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 576.0, + "total_tests": 55748.0, + "total_tests_per_thousand": 42.025, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 1053.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 115.17200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-04", + "total_cases": 1700.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.143, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1281.53, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 6.138, + "total_deaths_per_million": 41.461, + "new_deaths_per_million": 1.508, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 1648.0, + "total_tests": 57396.0, + "total_tests_per_thousand": 43.267, + "new_tests_per_thousand": 1.242, + "new_tests_smoothed": 1130.0, + "new_tests_smoothed_per_thousand": 0.852, + "tests_per_case": 138.77200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-05", + "total_cases": 1703.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.0, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1283.792, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 6.031, + "total_deaths_per_million": 41.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 1538.0, + "total_tests": 58934.0, + "total_tests_per_thousand": 44.427, + "new_tests_per_thousand": 1.159, + "new_tests_smoothed": 1111.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 138.875, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-06", + "total_cases": 1711.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.286, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1289.823, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 5.492, + "total_deaths_per_million": 41.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 1538.0, + "total_tests": 60472.0, + "total_tests_per_thousand": 45.586, + "new_tests_per_thousand": 1.159, + "new_tests_smoothed": 1108.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 152.078, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-07", + "total_cases": 1713.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1291.33, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 5.062, + "total_deaths_per_million": 41.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 1276.0, + "total_tests": 61748.0, + "total_tests_per_thousand": 46.548, + "new_tests_per_thousand": 0.962, + "new_tests_smoothed": 1143.0, + "new_tests_smoothed_per_thousand": 0.862, + "tests_per_case": 170.234, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-08", + "total_cases": 1720.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1296.607, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 3.338, + "total_deaths_per_million": 42.215, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 950.0, + "total_tests": 62698.0, + "total_tests_per_thousand": 47.264, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 1180.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 266.452, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-05-09", + "total_cases": 1725.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1300.376, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 3.338, + "total_deaths_per_million": 42.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 649.0, + "total_tests": 63347.0, + "total_tests_per_thousand": 47.754, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.88, + "tests_per_case": 263.742, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-05-10", + "total_cases": 1733.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 60.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1306.407, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 3.662, + "total_deaths_per_million": 45.23, + "new_deaths_per_million": 3.015, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 590.0, + "total_tests": 63937.0, + "total_tests_per_thousand": 48.198, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 1170.0, + "new_tests_smoothed_per_thousand": 0.882, + "tests_per_case": 240.882, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-05-11", + "total_cases": 1739.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1310.93, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 4.2, + "total_deaths_per_million": 45.23, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.538, + "new_tests": 1012.0, + "total_tests": 64949.0, + "total_tests_per_thousand": 48.961, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 1079.0, + "new_tests_smoothed_per_thousand": 0.813, + "tests_per_case": 193.667, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-12", + "total_cases": 1741.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1312.438, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 45.984, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 1126.0, + "total_tests": 66075.0, + "total_tests_per_thousand": 49.81, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 1020.0, + "new_tests_smoothed_per_thousand": 0.769, + "tests_per_case": 187.895, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-13", + "total_cases": 1746.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1316.207, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 3.769, + "total_deaths_per_million": 45.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 1040.0, + "total_tests": 67115.0, + "total_tests_per_thousand": 50.594, + "new_tests_per_thousand": 0.784, + "new_tests_smoothed": 949.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 189.8, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-14", + "total_cases": 1751.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1319.976, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 45.984, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 965.0, + "total_tests": 68080.0, + "total_tests_per_thousand": 51.322, + "new_tests_per_thousand": 0.727, + "new_tests_smoothed": 905.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 166.71099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-15", + "total_cases": 1758.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.429, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1325.253, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 46.738, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 745.0, + "total_tests": 68825.0, + "total_tests_per_thousand": 51.883, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 875.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 161.184, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-16", + "total_cases": 1766.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.857, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1331.284, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 4.415, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 677.0, + "total_tests": 69502.0, + "total_tests_per_thousand": 52.393, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 0.663, + "tests_per_case": 150.07299999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-17", + "total_cases": 1770.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1334.299, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 3.985, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.323, + "new_tests": 667.0, + "total_tests": 70169.0, + "total_tests_per_thousand": 52.896, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 890.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 168.378, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-05-18", + "total_cases": 1774.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1337.315, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 3.769, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.323, + "new_tests": 1256.0, + "total_tests": 71425.0, + "total_tests_per_thousand": 53.843, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 925.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 185.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-19", + "total_cases": 1784.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1344.853, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 4.631, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 1019.0, + "total_tests": 72444.0, + "total_tests_per_thousand": 54.611, + "new_tests_per_thousand": 0.768, + "new_tests_smoothed": 910.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 148.14, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-20", + "total_cases": 1791.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1350.13, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 4.846, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 1272.0, + "total_tests": 73716.0, + "total_tests_per_thousand": 55.57, + "new_tests_per_thousand": 0.959, + "new_tests_smoothed": 943.0, + "new_tests_smoothed_per_thousand": 0.711, + "tests_per_case": 146.689, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-21", + "total_cases": 1794.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1352.391, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 4.631, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 876.0, + "total_tests": 74592.0, + "total_tests_per_thousand": 56.231, + "new_tests_per_thousand": 0.66, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 0.701, + "tests_per_case": 151.395, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-22", + "total_cases": 1800.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1356.914, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 4.523, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 649.0, + "total_tests": 75241.0, + "total_tests_per_thousand": 56.72, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 917.0, + "new_tests_smoothed_per_thousand": 0.691, + "tests_per_case": 152.833, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-23", + "total_cases": 1807.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1362.191, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 4.415, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 527.0, + "total_tests": 75768.0, + "total_tests_per_thousand": 57.117, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 152.805, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-24", + "total_cases": 1821.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1372.745, + "new_cases_per_million": 10.554, + "new_cases_smoothed_per_million": 5.492, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 808.0, + "total_tests": 76576.0, + "total_tests_per_thousand": 57.726, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 915.0, + "new_tests_smoothed_per_thousand": 0.69, + "tests_per_case": 125.588, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-25", + "total_cases": 1823.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1374.253, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 5.277, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1497.0, + "total_tests": 78073.0, + "total_tests_per_thousand": 58.855, + "new_tests_per_thousand": 1.129, + "new_tests_smoothed": 950.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 135.714, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-26", + "total_cases": 1824.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1375.007, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 4.308, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1522.0, + "total_tests": 79595.0, + "total_tests_per_thousand": 60.002, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 1022.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 178.85, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-27", + "total_cases": 1834.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.545, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 4.631, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1119.0, + "total_tests": 80714.0, + "total_tests_per_thousand": 60.846, + "new_tests_per_thousand": 0.844, + "new_tests_smoothed": 1000.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 162.791, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-28", + "total_cases": 1840.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1387.068, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 4.954, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 994.0, + "total_tests": 81708.0, + "total_tests_per_thousand": 61.595, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 1017.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 154.761, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-29", + "total_cases": 1851.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1395.36, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 5.492, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1033.0, + "total_tests": 82741.0, + "total_tests_per_thousand": 62.374, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 1071.0, + "new_tests_smoothed_per_thousand": 0.807, + "tests_per_case": 147.0, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-30", + "total_cases": 1859.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1401.391, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 5.6, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 691.0, + "total_tests": 83432.0, + "total_tests_per_thousand": 62.894, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 1095.0, + "new_tests_smoothed_per_thousand": 0.825, + "tests_per_case": 147.404, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-05-31", + "total_cases": 1865.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1405.914, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 4.738, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 711.0, + "total_tests": 84143.0, + "total_tests_per_thousand": 63.43, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 171.977, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-01", + "total_cases": 1869.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1408.93, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 4.954, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1023.0, + "total_tests": 85166.0, + "total_tests_per_thousand": 64.202, + "new_tests_per_thousand": 0.771, + "new_tests_smoothed": 1013.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 154.15200000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-02", + "total_cases": 1870.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1409.683, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 4.954, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1258.0, + "total_tests": 86424.0, + "total_tests_per_thousand": 65.15, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 976.0, + "new_tests_smoothed_per_thousand": 0.736, + "tests_per_case": 148.52200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-03", + "total_cases": 1870.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1409.683, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.877, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1022.0, + "total_tests": 87446.0, + "total_tests_per_thousand": 65.92, + "new_tests_per_thousand": 0.77, + "new_tests_smoothed": 962.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 187.05599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-04", + "total_cases": 1880.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1417.222, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 4.308, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1116.0, + "total_tests": 88562.0, + "total_tests_per_thousand": 66.762, + "new_tests_per_thousand": 0.841, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 171.325, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-05", + "total_cases": 1890.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1424.76, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 4.2, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 853.0, + "total_tests": 89415.0, + "total_tests_per_thousand": 67.405, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 953.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 171.051, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-06", + "total_cases": 1910.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1439.837, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 5.492, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 648.0, + "total_tests": 90063.0, + "total_tests_per_thousand": 67.893, + "new_tests_per_thousand": 0.488, + "new_tests_smoothed": 947.0, + "new_tests_smoothed_per_thousand": 0.714, + "tests_per_case": 129.98, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-07", + "total_cases": 1931.0, + "new_cases": 21.0, + "new_cases_smoothed": 9.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1455.668, + "new_cases_per_million": 15.831, + "new_cases_smoothed_per_million": 7.108, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 548.0, + "total_tests": 90611.0, + "total_tests_per_thousand": 68.306, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 924.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-08", + "total_cases": 1939.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1461.698, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 7.538, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1114.0, + "total_tests": 91725.0, + "total_tests_per_thousand": 69.146, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 937.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 93.7, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-09", + "total_cases": 1940.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1462.452, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 7.538, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1151.0, + "total_tests": 92876.0, + "total_tests_per_thousand": 70.014, + "new_tests_per_thousand": 0.868, + "new_tests_smoothed": 922.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 92.2, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-10", + "total_cases": 1947.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1467.729, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 8.292, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 951.0, + "total_tests": 93827.0, + "total_tests_per_thousand": 70.731, + "new_tests_per_thousand": 0.717, + "new_tests_smoothed": 912.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 82.90899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-11", + "total_cases": 1958.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1476.021, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 880.0, + "total_tests": 94707.0, + "total_tests_per_thousand": 71.394, + "new_tests_per_thousand": 0.663, + "new_tests_smoothed": 878.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 78.795, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-12", + "total_cases": 1965.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1481.298, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 661.0, + "total_tests": 95368.0, + "total_tests_per_thousand": 71.892, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 850.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 79.333, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-13", + "total_cases": 1970.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1485.068, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 6.461, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 615.0, + "total_tests": 95983.0, + "total_tests_per_thousand": 72.356, + "new_tests_per_thousand": 0.464, + "new_tests_smoothed": 846.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 98.7, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-14", + "total_cases": 1973.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1487.329, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 4.523, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 643.0, + "total_tests": 96626.0, + "total_tests_per_thousand": 72.841, + "new_tests_per_thousand": 0.485, + "new_tests_smoothed": 859.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 143.167, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-15", + "total_cases": 1973.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1487.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.662, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1067.0, + "total_tests": 97693.0, + "total_tests_per_thousand": 73.645, + "new_tests_per_thousand": 0.804, + "new_tests_smoothed": 853.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 175.618, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-16", + "total_cases": 1974.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1488.083, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 3.662, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1449.0, + "total_tests": 99142.0, + "total_tests_per_thousand": 74.737, + "new_tests_per_thousand": 1.092, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 184.265, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-17", + "total_cases": 1975.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1488.837, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 3.015, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1241.0, + "total_tests": 100383.0, + "total_tests_per_thousand": 75.673, + "new_tests_per_thousand": 0.936, + "new_tests_smoothed": 937.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 234.25, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-18", + "total_cases": 1977.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1490.344, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 2.046, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1355.0, + "total_tests": 101738.0, + "total_tests_per_thousand": 76.694, + "new_tests_per_thousand": 1.021, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 369.895, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-19", + "total_cases": 1977.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1490.344, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.292, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 744.0, + "total_tests": 102482.0, + "total_tests_per_thousand": 77.255, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 1016.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 592.6669999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-20", + "total_cases": 1979.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1491.852, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 0.969, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 440.0, + "total_tests": 102922.0, + "total_tests_per_thousand": 77.587, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 991.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 770.778, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-21", + "total_cases": 1981.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1493.36, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 0.862, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 285.0, + "total_tests": 103207.0, + "total_tests_per_thousand": 77.802, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 940.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 822.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-22", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1493.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.862, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 474.0, + "total_tests": 103681.0, + "total_tests_per_thousand": 78.159, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 855.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 748.125, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-23", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1493.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 266.0, + "total_tests": 103947.0, + "total_tests_per_thousand": 78.36, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 686.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-24", + "total_cases": 1982.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1494.114, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 348.0, + "total_tests": 104295.0, + "total_tests_per_thousand": 78.622, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 559.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 559.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-25", + "total_cases": 1983.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1494.867, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 562.0, + "total_tests": 104857.0, + "total_tests_per_thousand": 79.046, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 446.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 520.3330000000001, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-26", + "total_cases": 1984.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1495.621, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 446.0, + "total_tests": 105303.0, + "total_tests_per_thousand": 79.382, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 403.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 403.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-27", + "total_cases": 1986.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1497.129, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 363.0, + "total_tests": 105666.0, + "total_tests_per_thousand": 79.655, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 392.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 392.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-06-28", + "total_cases": 1986.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1497.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 350.0, + "total_tests": 106016.0, + "total_tests_per_thousand": 79.919, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 401.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 561.4, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-06-29", + "total_cases": 1987.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1497.883, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 763.0, + "total_tests": 106779.0, + "total_tests_per_thousand": 80.494, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 443.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 516.8330000000001, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-06-30", + "total_cases": 1987.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1497.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 656.0, + "total_tests": 107435.0, + "total_tests_per_thousand": 80.989, + "new_tests_per_thousand": 0.495, + "new_tests_smoothed": 498.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 581.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-07-01", + "total_cases": 1989.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1499.391, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 710.0, + "total_tests": 108145.0, + "total_tests_per_thousand": 81.524, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 550.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-02", + "total_cases": 1989.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1499.391, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 390.0, + "total_tests": 108535.0, + "total_tests_per_thousand": 81.818, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 612.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-03", + "total_cases": 1990.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1500.144, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 264.0, + "total_tests": 108799.0, + "total_tests_per_thousand": 82.017, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 499.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 582.1669999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-04", + "total_cases": 1991.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1500.898, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 287.0, + "total_tests": 109086.0, + "total_tests_per_thousand": 82.234, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 489.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 684.6, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-05", + "total_cases": 1993.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1502.406, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 291.0, + "total_tests": 109377.0, + "total_tests_per_thousand": 82.453, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 480.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 480.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-06", + "total_cases": 1993.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1502.406, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 592.0, + "total_tests": 109969.0, + "total_tests_per_thousand": 82.899, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 456.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 532.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-07", + "total_cases": 1994.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.16, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 574.0, + "total_tests": 110543.0, + "total_tests_per_thousand": 83.332, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 444.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 444.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-08", + "total_cases": 1995.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.914, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 476.0, + "total_tests": 111019.0, + "total_tests_per_thousand": 83.691, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 479.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-09", + "total_cases": 2003.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1509.944, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 444.0, + "total_tests": 111463.0, + "total_tests_per_thousand": 84.025, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 418.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 209.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-10", + "total_cases": 2011.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.975, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 338.0, + "total_tests": 111801.0, + "total_tests_per_thousand": 84.28, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 143.0, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-11", + "total_cases": 2013.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1517.483, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 2.369, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 151.0, + "total_tests": 111952.0, + "total_tests_per_thousand": 84.394, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 409.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 130.136, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-12", + "total_cases": 2014.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1518.237, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 215.0, + "total_tests": 112167.0, + "total_tests_per_thousand": 84.556, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 399.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-13", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1518.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 408.0, + "total_tests": 112575.0, + "total_tests_per_thousand": 84.864, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 372.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 124.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-14", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1518.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.154, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 538.0, + "total_tests": 113113.0, + "total_tests_per_thousand": 85.269, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 128.45, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-15", + "total_cases": 2015.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1518.99, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 2.154, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 437.0, + "total_tests": 113550.0, + "total_tests_per_thousand": 85.599, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 126.7, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-16", + "total_cases": 2016.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.744, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 1.4, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 425.0, + "total_tests": 113975.0, + "total_tests_per_thousand": 85.919, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 359.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 193.308, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-17", + "total_cases": 2016.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.744, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 287.0, + "total_tests": 114262.0, + "total_tests_per_thousand": 86.135, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 492.8, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-18", + "total_cases": 2020.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1522.76, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 157.0, + "total_tests": 114419.0, + "total_tests_per_thousand": 86.254, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 352.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-19", + "total_cases": 2021.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1523.513, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 90.0, + "total_tests": 114509.0, + "total_tests_per_thousand": 86.322, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 335.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-20", + "total_cases": 2021.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1523.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 374.0, + "total_tests": 114883.0, + "total_tests_per_thousand": 86.604, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 330.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 330.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-21", + "total_cases": 2021.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1523.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 514.0, + "total_tests": 115397.0, + "total_tests_per_thousand": 86.991, + "new_tests_per_thousand": 0.387, + "new_tests_smoothed": 326.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 326.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-22", + "total_cases": 2022.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.267, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 483.0, + "total_tests": 115880.0, + "total_tests_per_thousand": 87.355, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 333.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-23", + "total_cases": 2025.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1526.529, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 0.969, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 373.0, + "total_tests": 116253.0, + "total_tests_per_thousand": 87.636, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 325.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 252.778, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-24", + "total_cases": 2027.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1528.036, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 1.185, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 362.0, + "total_tests": 116615.0, + "total_tests_per_thousand": 87.909, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 336.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 213.81799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-25", + "total_cases": 2028.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1528.79, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 0.862, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 238.0, + "total_tests": 116853.0, + "total_tests_per_thousand": 88.089, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 348.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 304.5, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-26", + "total_cases": 2033.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1532.56, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 1.292, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 116971.0, + "total_tests_per_thousand": 88.178, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 205.333, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-27", + "total_cases": 2034.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1533.313, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 1.4, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 277.0, + "total_tests": 117248.0, + "total_tests_per_thousand": 88.386, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 182.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-28", + "total_cases": 2038.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1536.329, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 1.831, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 550.0, + "total_tests": 117798.0, + "total_tests_per_thousand": 88.801, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 141.235, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-07-29", + "total_cases": 2038.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1536.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.723, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 679.0, + "total_tests": 118477.0, + "total_tests_per_thousand": 89.313, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 371.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 162.312, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-07-30", + "total_cases": 2042.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1539.344, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 1.831, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 715.0, + "total_tests": 119192.0, + "total_tests_per_thousand": 89.852, + "new_tests_per_thousand": 0.539, + "new_tests_smoothed": 420.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 172.94099999999997, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-07-31", + "total_cases": 2051.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1546.129, + "new_cases_per_million": 6.785, + "new_cases_smoothed_per_million": 2.585, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 530.0, + "total_tests": 119722.0, + "total_tests_per_thousand": 90.251, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 444.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 129.5, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-01", + "total_cases": 2064.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1555.929, + "new_cases_per_million": 9.8, + "new_cases_smoothed_per_million": 3.877, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 344.0, + "total_tests": 120066.0, + "total_tests_per_thousand": 90.511, + "new_tests_per_thousand": 0.259, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 89.25, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-02", + "total_cases": 2072.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1561.959, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 4.2, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 251.0, + "total_tests": 120317.0, + "total_tests_per_thousand": 90.7, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 478.0, + "new_tests_smoothed_per_thousand": 0.36, + "tests_per_case": 85.795, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-03", + "total_cases": 2079.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1567.236, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 4.846, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 635.0, + "total_tests": 120952.0, + "total_tests_per_thousand": 91.179, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 529.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 82.289, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-04", + "total_cases": 2080.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1567.99, + "new_cases_per_million": 0.754, + "new_cases_smoothed_per_million": 4.523, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 957.0, + "total_tests": 121909.0, + "total_tests_per_thousand": 91.9, + "new_tests_per_thousand": 0.721, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 97.833, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-05", + "total_cases": 2091.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1576.282, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 5.708, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 950.0, + "total_tests": 122859.0, + "total_tests_per_thousand": 92.616, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 626.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 82.679, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-06", + "total_cases": 2113.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1592.867, + "new_cases_per_million": 16.585, + "new_cases_smoothed_per_million": 7.646, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 958.0, + "total_tests": 123817.0, + "total_tests_per_thousand": 93.338, + "new_tests_per_thousand": 0.722, + "new_tests_smoothed": 661.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 65.169, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-07", + "total_cases": 2124.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1601.159, + "new_cases_per_million": 8.292, + "new_cases_smoothed_per_million": 7.861, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1397.0, + "total_tests": 125214.0, + "total_tests_per_thousand": 94.391, + "new_tests_per_thousand": 1.053, + "new_tests_smoothed": 785.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 75.274, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-08", + "total_cases": 2133.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1607.944, + "new_cases_per_million": 6.785, + "new_cases_smoothed_per_million": 7.431, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 380.0, + "total_tests": 125594.0, + "total_tests_per_thousand": 94.678, + "new_tests_per_thousand": 0.286, + "new_tests_smoothed": 790.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 80.145, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-09", + "total_cases": 2147.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1618.497, + "new_cases_per_million": 10.554, + "new_cases_smoothed_per_million": 8.077, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1113.0, + "total_tests": 126707.0, + "total_tests_per_thousand": 95.517, + "new_tests_per_thousand": 0.839, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 85.213, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-10", + "total_cases": 2152.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1622.267, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 7.861, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1490.0, + "total_tests": 128197.0, + "total_tests_per_thousand": 96.64, + "new_tests_per_thousand": 1.123, + "new_tests_smoothed": 1035.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 99.24700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-11", + "total_cases": 2158.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1626.79, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1425.0, + "total_tests": 129622.0, + "total_tests_per_thousand": 97.714, + "new_tests_per_thousand": 1.074, + "new_tests_smoothed": 1102.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 98.897, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-12", + "total_cases": 2167.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1633.574, + "new_cases_per_million": 6.785, + "new_cases_smoothed_per_million": 8.185, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1191.0, + "total_tests": 130813.0, + "total_tests_per_thousand": 98.612, + "new_tests_per_thousand": 0.898, + "new_tests_smoothed": 1136.0, + "new_tests_smoothed_per_thousand": 0.856, + "tests_per_case": 104.632, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-13", + "total_cases": 2174.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1638.851, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 6.569, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1451.0, + "total_tests": 132264.0, + "total_tests_per_thousand": 99.706, + "new_tests_per_thousand": 1.094, + "new_tests_smoothed": 1207.0, + "new_tests_smoothed_per_thousand": 0.91, + "tests_per_case": 138.50799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-14", + "total_cases": 2174.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1638.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.385, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1236.0, + "total_tests": 133500.0, + "total_tests_per_thousand": 100.638, + "new_tests_per_thousand": 0.932, + "new_tests_smoothed": 1184.0, + "new_tests_smoothed_per_thousand": 0.893, + "tests_per_case": 165.76, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-15", + "total_cases": 2177.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1641.113, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 4.738, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1042.0, + "total_tests": 134542.0, + "total_tests_per_thousand": 101.423, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 1278.0, + "new_tests_smoothed_per_thousand": 0.963, + "tests_per_case": 203.31799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-16", + "total_cases": 2184.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1646.39, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 3.985, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 307.0, + "total_tests": 134849.0, + "total_tests_per_thousand": 101.655, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 0.877, + "tests_per_case": 220.02700000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-17", + "total_cases": 2190.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1650.913, + "new_cases_per_million": 4.523, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1270.0, + "total_tests": 136119.0, + "total_tests_per_thousand": 102.612, + "new_tests_per_thousand": 0.957, + "new_tests_smoothed": 1132.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 208.52599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-18", + "total_cases": 2192.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1652.42, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 3.662, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1157.0, + "total_tests": 137276.0, + "total_tests_per_thousand": 103.484, + "new_tests_per_thousand": 0.872, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 225.02900000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-19", + "total_cases": 2200.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1658.451, + "new_cases_per_million": 6.031, + "new_cases_smoothed_per_million": 3.554, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 881.0, + "total_tests": 138157.0, + "total_tests_per_thousand": 104.148, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 1049.0, + "new_tests_smoothed_per_thousand": 0.791, + "tests_per_case": 222.515, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-20", + "total_cases": 2207.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1663.728, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 3.554, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 892.0, + "total_tests": 139049.0, + "total_tests_per_thousand": 104.821, + "new_tests_per_thousand": 0.672, + "new_tests_smoothed": 969.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 205.545, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-21", + "total_cases": 2227.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1678.805, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 5.708, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1149.0, + "total_tests": 140198.0, + "total_tests_per_thousand": 105.687, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 957.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 126.396, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-22", + "total_cases": 2244.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1691.62, + "new_cases_per_million": 12.815, + "new_cases_smoothed_per_million": 7.215, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 456.0, + "total_tests": 140654.0, + "total_tests_per_thousand": 106.031, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 91.209, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-23", + "total_cases": 2265.0, + "new_cases": 21.0, + "new_cases_smoothed": 11.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.451, + "new_cases_per_million": 15.831, + "new_cases_smoothed_per_million": 8.723, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 314.0, + "total_tests": 140968.0, + "total_tests_per_thousand": 106.268, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 874.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 75.531, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-24", + "total_cases": 2272.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1712.728, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 8.831, + "total_deaths_per_million": 47.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1174.0, + "total_tests": 142142.0, + "total_tests_per_thousand": 107.153, + "new_tests_per_thousand": 0.885, + "new_tests_smoothed": 860.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 73.415, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-25", + "total_cases": 2275.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.857, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1714.989, + "new_cases_per_million": 2.262, + "new_cases_smoothed_per_million": 8.938, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1336.0, + "total_tests": 143478.0, + "total_tests_per_thousand": 108.16, + "new_tests_per_thousand": 1.007, + "new_tests_smoothed": 886.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 74.723, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-26", + "total_cases": 2294.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.429, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1729.312, + "new_cases_per_million": 14.323, + "new_cases_smoothed_per_million": 10.123, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1374.0, + "total_tests": 144852.0, + "total_tests_per_thousand": 109.195, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 956.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 71.191, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-27", + "total_cases": 2311.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.857, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1742.127, + "new_cases_per_million": 12.815, + "new_cases_smoothed_per_million": 11.2, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1264.0, + "total_tests": 146116.0, + "total_tests_per_thousand": 110.148, + "new_tests_per_thousand": 0.953, + "new_tests_smoothed": 1010.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 67.98100000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-08-28", + "total_cases": 2325.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.0, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1752.681, + "new_cases_per_million": 10.554, + "new_cases_smoothed_per_million": 10.554, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 1111.0, + "total_tests": 147227.0, + "total_tests_per_thousand": 110.986, + "new_tests_per_thousand": 0.838, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 71.714, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 2343.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.143, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1766.25, + "new_cases_per_million": 13.569, + "new_cases_smoothed_per_million": 10.661, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 664.0, + "total_tests": 147891.0, + "total_tests_per_thousand": 111.486, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 1034.0, + "new_tests_smoothed_per_thousand": 0.779, + "tests_per_case": 73.111, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 2363.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.0, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1781.327, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 10.554, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 220.0, + "total_tests": 148111.0, + "total_tests_per_thousand": 111.652, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 1020.0, + "new_tests_smoothed_per_thousand": 0.769, + "tests_per_case": 72.857, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 2373.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1788.866, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 10.877, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 2216.0, + "total_tests": 150327.0, + "total_tests_per_thousand": 113.323, + "new_tests_per_thousand": 1.671, + "new_tests_smoothed": 1169.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 81.02, + "positive_rate": 0.012, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 2375.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1790.373, + "new_cases_per_million": 1.508, + "new_cases_smoothed_per_million": 10.769, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1580.0, + "total_tests": 151907.0, + "total_tests_per_thousand": 114.514, + "new_tests_per_thousand": 1.191, + "new_tests_smoothed": 1204.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 84.28, + "positive_rate": 0.012, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 2395.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.429, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1805.45, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 10.877, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2263.0, + "total_tests": 154170.0, + "total_tests_per_thousand": 116.22, + "new_tests_per_thousand": 1.706, + "new_tests_smoothed": 1331.0, + "new_tests_smoothed_per_thousand": 1.003, + "tests_per_case": 92.24799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 2415.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.857, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1820.527, + "new_cases_per_million": 15.077, + "new_cases_smoothed_per_million": 11.2, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2106.0, + "total_tests": 156276.0, + "total_tests_per_thousand": 117.807, + "new_tests_per_thousand": 1.588, + "new_tests_smoothed": 1451.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 97.663, + "positive_rate": 0.01, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 2444.0, + "new_cases": 29.0, + "new_cases_smoothed": 17.0, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.388, + "new_cases_per_million": 21.861, + "new_cases_smoothed_per_million": 12.815, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2456.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.143, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1851.434, + "new_cases_per_million": 9.046, + "new_cases_smoothed_per_million": 12.169, + "total_deaths_per_million": 48.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ETH": { + "continent": "Africa", + "location": "Ethiopia", + "population": 114963583.0, + "population_density": 104.957, + "median_age": 19.8, + "aged_65_older": 3.526, + "aged_70_older": 2.063, + "gdp_per_capita": 1729.927, + "extreme_poverty": 26.7, + "cardiovasc_death_rate": 182.634, + "diabetes_prevalence": 7.47, + "female_smokers": 0.4, + "male_smokers": 8.5, + "handwashing_facilities": 7.96, + "hospital_beds_per_thousand": 0.3, + "life_expectancy": 66.6, + "data": [ + { + "date": "2020-03-14", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-03-16", + "total_cases": 4.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.035, + "new_cases_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 35.19 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 79.0, + "total_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-18", + "total_cases": 5.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-19", + "total_cases": 6.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.052, + "new_cases_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-20", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-21", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-22", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 392.0, + "total_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-03-23", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 72.333, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 576.0, + "total_tests_per_thousand": 0.005, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 72.333, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-03-26", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.104, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 73.5, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 718.0, + "total_tests_per_thousand": 0.006, + "new_tests_smoothed": 64.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 89.6, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-28", + "total_cases": 16.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.139, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 66.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 66.0, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 68.0, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 96.6, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-31", + "total_cases": 23.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.2, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1013.0, + "total_tests_per_thousand": 0.009, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 41.417, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-01", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.217, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 1083.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 36.0, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-02", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 29.647, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-03", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1222.0, + "total_tests_per_thousand": 0.011, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 29.647, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-04", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.304, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 106.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 39.053000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-05", + "total_cases": 38.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.331, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1843.0, + "total_tests_per_thousand": 0.016, + "new_tests_smoothed": 140.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 44.545, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-06", + "total_cases": 43.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.374, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 164.0, + "total_tests": 2007.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 153.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 39.667, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-07", + "total_cases": 44.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.383, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 264.0, + "total_tests": 2271.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 180.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 60.0, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-08", + "total_cases": 52.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.452, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 225.0, + "total_tests": 2496.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 52.37, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-09", + "total_cases": 55.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.478, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 294.0, + "total_tests": 2790.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 234.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 63.0, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-10", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 275.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 71.296, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-11", + "total_cases": 65.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.565, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 282.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 65.8, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-12", + "total_cases": 69.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.6, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.004, + "total_tests": 3863.0, + "total_tests_per_thousand": 0.034, + "new_tests_smoothed": 289.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 65.258, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-13", + "total_cases": 71.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.618, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 247.0, + "total_tests": 4110.0, + "total_tests_per_thousand": 0.036, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 300.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 75.0, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-14", + "total_cases": 74.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.644, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 447.0, + "total_tests": 4557.0, + "total_tests_per_thousand": 0.04, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 327.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 76.3, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-15", + "total_cases": 82.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.713, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 431.0, + "total_tests": 4988.0, + "total_tests_per_thousand": 0.043, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 83.06700000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-16", + "total_cases": 85.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.739, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 401.0, + "total_tests": 5389.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 371.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 86.56700000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-17", + "total_cases": 92.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.8, + "new_cases_per_million": 0.061, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 415.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 80.694, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-18", + "total_cases": 96.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.835, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 458.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 103.419, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-19", + "total_cases": 105.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.913, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 502.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 97.611, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-20", + "total_cases": 108.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.939, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 561.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 106.135, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-21", + "total_cases": 111.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.966, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 8698.0, + "total_tests_per_thousand": 0.076, + "new_tests_smoothed": 592.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-22", + "total_cases": 114.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.992, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 676.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 147.875, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-23", + "total_cases": 116.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.009, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 10736.0, + "total_tests_per_thousand": 0.093, + "new_tests_smoothed": 764.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 172.516, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-24", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 933.0, + "total_tests": 11669.0, + "total_tests_per_thousand": 0.102, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 803.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 234.208, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-25", + "total_cases": 117.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.018, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1019.0, + "total_tests": 12688.0, + "total_tests_per_thousand": 0.11, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 854.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 284.66700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-26", + "total_cases": 122.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.061, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 368.529, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-27", + "total_cases": 123.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.07, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 14588.0, + "total_tests_per_thousand": 0.127, + "new_tests_smoothed": 936.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 436.8, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-28", + "total_cases": 124.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.079, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1080.0, + "total_tests": 15668.0, + "total_tests_per_thousand": 0.136, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 996.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 536.308, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-29", + "total_cases": 126.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.096, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 766.0, + "total_tests": 16434.0, + "total_tests_per_thousand": 0.143, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 960.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 560.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-04-30", + "total_cases": 130.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.131, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1408.0, + "total_tests": 17842.0, + "total_tests_per_thousand": 0.155, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1015.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 507.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-01", + "total_cases": 131.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.139, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1105.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 515.6669999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-02", + "total_cases": 133.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.157, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1182.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 517.125, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-03", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1270.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 808.182, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-04", + "total_cases": 135.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.174, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 24088.0, + "total_tests_per_thousand": 0.21, + "new_tests_smoothed": 1357.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 791.5830000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-05", + "total_cases": 140.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.218, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1376.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 602.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-06", + "total_cases": 145.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.261, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.001, + "total_tests": 26517.0, + "total_tests_per_thousand": 0.231, + "new_tests_smoothed": 1440.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 530.526, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-07", + "total_cases": 162.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.409, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 1843.0, + "total_tests": 28360.0, + "total_tests_per_thousand": 0.247, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1503.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 328.781, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-08", + "total_cases": 191.0, + "new_cases": 29.0, + "new_cases_smoothed": 8.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.661, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 1946.0, + "total_tests": 30306.0, + "total_tests_per_thousand": 0.264, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1558.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 181.767, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-09", + "total_cases": 194.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.687, + "new_cases_per_million": 0.026, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 1635.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 187.623, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-10", + "total_cases": 210.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.827, + "new_cases_per_million": 0.139, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 1713.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 155.727, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-11", + "total_cases": 239.0, + "new_cases": 29.0, + "new_cases_smoothed": 14.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.079, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "total_tests": 36624.0, + "total_tests_per_thousand": 0.319, + "new_tests_smoothed": 1791.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 120.54799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-12", + "total_cases": 250.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.175, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 2424.0, + "total_tests": 39048.0, + "total_tests_per_thousand": 0.34, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1964.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 124.98200000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-13", + "total_cases": 261.0, + "new_cases": 11.0, + "new_cases_smoothed": 16.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.27, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 2641.0, + "total_tests": 41689.0, + "total_tests_per_thousand": 0.363, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 2167.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 130.767, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-14", + "total_cases": 263.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.126, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 3589.0, + "total_tests": 45278.0, + "total_tests_per_thousand": 0.394, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 2417.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 167.515, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-15", + "total_cases": 272.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.366, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 2630.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 227.28400000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-16", + "total_cases": 287.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.496, + "new_cases_per_million": 0.13, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 2820.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 212.25799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 306.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.662, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3010.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 219.479, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 317.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.757, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 59029.0, + "total_tests_per_thousand": 0.513, + "new_tests_smoothed": 3201.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 287.269, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 352.0, + "new_cases": 35.0, + "new_cases_smoothed": 14.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.062, + "new_cases_per_million": 0.304, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3271.0, + "total_tests": 62300.0, + "total_tests_per_thousand": 0.542, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 3322.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 227.98, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 365.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.175, + "new_cases_per_million": 0.113, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3460.0, + "total_tests": 65760.0, + "total_tests_per_thousand": 0.572, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 3439.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 231.47099999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 389.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.384, + "new_cases_per_million": 0.209, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3455.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 191.94400000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 399.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.471, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.158, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 73164.0, + "total_tests_per_thousand": 0.636, + "new_tests_smoothed": 3493.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 192.528, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 433.0, + "new_cases": 34.0, + "new_cases_smoothed": 20.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.766, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3798.0, + "total_tests": 76962.0, + "total_tests_per_thousand": 0.669, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 3544.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 169.918, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 494.0, + "new_cases": 61.0, + "new_cases_smoothed": 26.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.297, + "new_cases_per_million": 0.531, + "new_cases_smoothed_per_million": 0.234, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3545.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 131.995, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 582.0, + "new_cases": 88.0, + "new_cases_smoothed": 37.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.062, + "new_cases_per_million": 0.765, + "new_cases_smoothed_per_million": 0.329, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 83854.0, + "total_tests_per_thousand": 0.729, + "new_tests_smoothed": 3546.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 93.66799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 655.0, + "new_cases": 73.0, + "new_cases_smoothed": 43.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.697, + "new_cases_per_million": 0.635, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3410.0, + "total_tests": 87264.0, + "total_tests_per_thousand": 0.759, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 3566.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 82.383, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 701.0, + "new_cases": 46.0, + "new_cases_smoothed": 48.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.098, + "new_cases_per_million": 0.4, + "new_cases_smoothed_per_million": 0.418, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 4352.0, + "total_tests": 91616.0, + "total_tests_per_thousand": 0.797, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 3694.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 76.958, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 731.0, + "new_cases": 30.0, + "new_cases_smoothed": 48.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.359, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 4950.0, + "total_tests": 96566.0, + "total_tests_per_thousand": 0.84, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 3872.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 79.251, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 831.0, + "new_cases": 100.0, + "new_cases_smoothed": 61.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.228, + "new_cases_per_million": 0.87, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 5015.0, + "total_tests": 101581.0, + "total_tests_per_thousand": 0.884, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 4060.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 65.78699999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 968.0, + "new_cases": 137.0, + "new_cases_smoothed": 76.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.42, + "new_cases_per_million": 1.192, + "new_cases_smoothed_per_million": 0.665, + "total_deaths_per_million": 0.07, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5034.0, + "total_tests": 106615.0, + "total_tests_per_thousand": 0.927, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 4236.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 55.424, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 1063.0, + "new_cases": 95.0, + "new_cases_smoothed": 81.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9.246, + "new_cases_per_million": 0.826, + "new_cases_smoothed_per_million": 0.707, + "total_deaths_per_million": 0.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 2836.0, + "total_tests": 109451.0, + "total_tests_per_thousand": 0.952, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 4149.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 51.042, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 1172.0, + "new_cases": 109.0, + "new_cases_smoothed": 84.286, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.195, + "new_cases_per_million": 0.948, + "new_cases_smoothed_per_million": 0.733, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.007, + "new_tests": 2926.0, + "total_tests": 112377.0, + "total_tests_per_thousand": 0.978, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 4075.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 48.347, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 1257.0, + "new_cases": 85.0, + "new_cases_smoothed": 86.0, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.934, + "new_cases_per_million": 0.739, + "new_cases_smoothed_per_million": 0.748, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 3932.0, + "total_tests": 116309.0, + "total_tests_per_thousand": 1.012, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 4149.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 48.244, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 1344.0, + "new_cases": 87.0, + "new_cases_smoothed": 91.857, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 11.691, + "new_cases_per_million": 0.757, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 0.122, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 4120.0, + "total_tests": 120429.0, + "total_tests_per_thousand": 1.048, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 4116.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 44.809, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 1486.0, + "new_cases": 142.0, + "new_cases_smoothed": 107.857, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 12.926, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 0.148, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 4190.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 38.848, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 1636.0, + "new_cases": 150.0, + "new_cases_smoothed": 115.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 14.231, + "new_cases_per_million": 1.305, + "new_cases_smoothed_per_million": 1.0, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.014, + "total_tests": 131368.0, + "total_tests_per_thousand": 1.143, + "new_tests_smoothed": 4255.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 37.0, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 1805.0, + "new_cases": 169.0, + "new_cases_smoothed": 119.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 15.701, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 1.04, + "total_deaths_per_million": 0.165, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 4364.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 36.497, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 1934.0, + "new_cases": 129.0, + "new_cases_smoothed": 124.429, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 16.823, + "new_cases_per_million": 1.122, + "new_cases_smoothed_per_million": 1.082, + "total_deaths_per_million": 0.174, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.015, + "total_tests": 142960.0, + "total_tests_per_thousand": 1.244, + "new_tests_smoothed": 4787.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 38.472, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 2020.0, + "new_cases": 86.0, + "new_cases_smoothed": 121.143, + "total_deaths": 27.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 17.571, + "new_cases_per_million": 0.748, + "new_cases_smoothed_per_million": 1.054, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4775.0, + "total_tests": 147735.0, + "total_tests_per_thousand": 1.285, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5051.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 41.695, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 2156.0, + "new_cases": 136.0, + "new_cases_smoothed": 128.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 18.754, + "new_cases_per_million": 1.183, + "new_cases_smoothed_per_million": 1.117, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 4599.0, + "total_tests": 152334.0, + "total_tests_per_thousand": 1.325, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 5146.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 40.069, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 2336.0, + "new_cases": 180.0, + "new_cases_smoothed": 141.714, + "total_deaths": 32.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 20.319, + "new_cases_per_million": 1.566, + "new_cases_smoothed_per_million": 1.233, + "total_deaths_per_million": 0.278, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 6187.0, + "total_tests": 158521.0, + "total_tests_per_thousand": 1.379, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 5442.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 38.400999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 2506.0, + "new_cases": 170.0, + "new_cases_smoothed": 145.714, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 21.798, + "new_cases_per_million": 1.479, + "new_cases_smoothed_per_million": 1.267, + "total_deaths_per_million": 0.304, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 6630.0, + "total_tests": 165151.0, + "total_tests_per_thousand": 1.437, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 5608.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 38.486, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 2670.0, + "new_cases": 164.0, + "new_cases_smoothed": 147.714, + "total_deaths": 40.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 23.225, + "new_cases_per_million": 1.427, + "new_cases_smoothed_per_million": 1.285, + "total_deaths_per_million": 0.348, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 5637.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 38.162, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 2915.0, + "new_cases": 245.0, + "new_cases_smoothed": 158.571, + "total_deaths": 47.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 25.356, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.379, + "total_deaths_per_million": 0.409, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.035, + "total_tests": 176504.0, + "total_tests_per_thousand": 1.535, + "new_tests_smoothed": 5620.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 35.441, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 3166.0, + "new_cases": 251.0, + "new_cases_smoothed": 176.0, + "total_deaths": 55.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 27.539, + "new_cases_per_million": 2.183, + "new_cases_smoothed_per_million": 1.531, + "total_deaths_per_million": 0.478, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 4845.0, + "total_tests": 181349.0, + "total_tests_per_thousand": 1.577, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5484.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 31.159000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 3345.0, + "new_cases": 179.0, + "new_cases_smoothed": 189.286, + "total_deaths": 57.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 29.096, + "new_cases_per_million": 1.557, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 5636.0, + "total_tests": 186985.0, + "total_tests_per_thousand": 1.626, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 5607.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 29.622, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 3521.0, + "new_cases": 176.0, + "new_cases_smoothed": 195.0, + "total_deaths": 60.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 30.627, + "new_cases_per_million": 1.531, + "new_cases_smoothed_per_million": 1.696, + "total_deaths_per_million": 0.522, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 5102.0, + "total_tests": 192087.0, + "total_tests_per_thousand": 1.671, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 5679.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 29.123, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 3630.0, + "new_cases": 109.0, + "new_cases_smoothed": 184.857, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 31.575, + "new_cases_per_million": 0.948, + "new_cases_smoothed_per_million": 1.608, + "total_deaths_per_million": 0.531, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 5274.0, + "total_tests": 197361.0, + "total_tests_per_thousand": 1.717, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 5549.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 30.018, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 3759.0, + "new_cases": 129.0, + "new_cases_smoothed": 179.0, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 32.697, + "new_cases_per_million": 1.122, + "new_cases_smoothed_per_million": 1.557, + "total_deaths_per_million": 0.548, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 4853.0, + "total_tests": 202214.0, + "total_tests_per_thousand": 1.759, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5295.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 29.581, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 3954.0, + "new_cases": 195.0, + "new_cases_smoothed": 183.429, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 34.394, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 1.596, + "total_deaths_per_million": 0.565, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 4809.0, + "total_tests": 207023.0, + "total_tests_per_thousand": 1.801, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5171.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 28.191, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 4070.0, + "new_cases": 116.0, + "new_cases_smoothed": 165.0, + "total_deaths": 72.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 35.403, + "new_cases_per_million": 1.009, + "new_cases_smoothed_per_million": 1.435, + "total_deaths_per_million": 0.626, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 5024.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 30.448, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 4469.0, + "new_cases": 399.0, + "new_cases_smoothed": 186.143, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 38.873, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 1.619, + "total_deaths_per_million": 0.626, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "total_tests": 216328.0, + "total_tests_per_thousand": 1.882, + "new_tests_smoothed": 4997.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 26.845, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 4532.0, + "new_cases": 63.0, + "new_cases_smoothed": 169.571, + "total_deaths": 74.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 39.421, + "new_cases_per_million": 0.548, + "new_cases_smoothed_per_million": 1.475, + "total_deaths_per_million": 0.644, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 3238.0, + "total_tests": 219566.0, + "total_tests_per_thousand": 1.91, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 4654.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 27.445999999999998, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 4663.0, + "new_cases": 131.0, + "new_cases_smoothed": 163.143, + "total_deaths": 75.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 40.561, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 1.419, + "total_deaths_per_million": 0.652, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3775.0, + "total_tests": 223341.0, + "total_tests_per_thousand": 1.943, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 4465.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 27.369, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 4848.0, + "new_cases": 185.0, + "new_cases_smoothed": 174.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 42.17, + "new_cases_per_million": 1.609, + "new_cases_smoothed_per_million": 1.514, + "total_deaths_per_million": 0.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 4034.0, + "total_tests": 227375.0, + "total_tests_per_thousand": 1.978, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 4288.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 24.644000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 5034.0, + "new_cases": 186.0, + "new_cases_smoothed": 182.143, + "total_deaths": 78.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 43.788, + "new_cases_per_million": 1.618, + "new_cases_smoothed_per_million": 1.584, + "total_deaths_per_million": 0.678, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 4675.0, + "total_tests": 232050.0, + "total_tests_per_thousand": 2.018, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 4262.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 23.399, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 5175.0, + "new_cases": 141.0, + "new_cases_smoothed": 174.429, + "total_deaths": 81.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 45.014, + "new_cases_per_million": 1.226, + "new_cases_smoothed_per_million": 1.517, + "total_deaths_per_million": 0.705, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 5414.0, + "total_tests": 237464.0, + "total_tests_per_thousand": 2.066, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 4349.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 24.933000000000003, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 5425.0, + "new_cases": 250.0, + "new_cases_smoothed": 193.571, + "total_deaths": 89.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 47.189, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 1.684, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 5552.0, + "total_tests": 243016.0, + "total_tests_per_thousand": 2.114, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 4477.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 23.128, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 5570.0, + "new_cases": 145.0, + "new_cases_smoothed": 157.286, + "total_deaths": 94.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 48.45, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 0.818, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3895.0, + "total_tests": 246911.0, + "total_tests_per_thousand": 2.148, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 4369.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 27.776999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 5689.0, + "new_cases": 119.0, + "new_cases_smoothed": 165.286, + "total_deaths": 98.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 49.485, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 1.438, + "total_deaths_per_million": 0.852, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.03, + "new_tests_smoothed": 4253.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 25.730999999999998, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 5846.0, + "new_cases": 157.0, + "new_cases_smoothed": 169.0, + "total_deaths": 103.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 50.851, + "new_cases_per_million": 1.366, + "new_cases_smoothed_per_million": 1.47, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.035, + "new_tests_smoothed": 4060.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 24.024, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 142.571, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.24, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests_smoothed": 3831.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 26.871, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 116.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 3510.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 30.259, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 95.857, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.834, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 3083.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 32.162, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.143, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 2636.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 43.82899999999999, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.429, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 263897.0, + "total_tests_per_thousand": 2.295, + "new_tests_smoothed": 2427.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 61.553999999999995, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 5846.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.429, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 50.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.195, + "total_deaths_per_million": 0.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 2603.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 116.057, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 6386.0, + "new_cases": 540.0, + "new_cases_smoothed": 77.143, + "total_deaths": 116.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 55.548, + "new_cases_per_million": 4.697, + "new_cases_smoothed_per_million": 0.671, + "total_deaths_per_million": 1.009, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 2780.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 36.037, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 6666.0, + "new_cases": 280.0, + "new_cases_smoothed": 117.143, + "total_deaths": 119.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 57.984, + "new_cases_per_million": 2.436, + "new_cases_smoothed_per_million": 1.019, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.02, + "new_tests_smoothed": 2957.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 25.243000000000002, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 6774.0, + "new_cases": 108.0, + "new_cases_smoothed": 132.571, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 58.923, + "new_cases_per_million": 0.939, + "new_cases_smoothed_per_million": 1.153, + "total_deaths_per_million": 1.044, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 3134.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 23.64, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 6973.0, + "new_cases": 199.0, + "new_cases_smoothed": 161.0, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 60.654, + "new_cases_per_million": 1.731, + "new_cases_smoothed_per_million": 1.4, + "total_deaths_per_million": 1.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 3311.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 20.565, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 7120.0, + "new_cases": 147.0, + "new_cases_smoothed": 182.0, + "total_deaths": 124.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 61.933, + "new_cases_per_million": 1.279, + "new_cases_smoothed_per_million": 1.583, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 3488.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 19.165, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 7402.0, + "new_cases": 282.0, + "new_cases_smoothed": 222.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 64.386, + "new_cases_per_million": 2.453, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "total_tests": 289550.0, + "total_tests_per_thousand": 2.519, + "new_tests_smoothed": 3665.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 16.488, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 7560.0, + "new_cases": 158.0, + "new_cases_smoothed": 244.857, + "total_deaths": 127.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 65.76, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 1.105, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.03, + "new_tests_smoothed": 3993.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 16.307000000000002, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 7766.0, + "new_cases": 206.0, + "new_cases_smoothed": 197.143, + "total_deaths": 128.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 67.552, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 1.715, + "total_deaths_per_million": 1.113, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 4320.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 21.913, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 7969.0, + "new_cases": 203.0, + "new_cases_smoothed": 186.143, + "total_deaths": 139.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 69.318, + "new_cases_per_million": 1.766, + "new_cases_smoothed_per_million": 1.619, + "total_deaths_per_million": 1.209, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 4648.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 24.97, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 8181.0, + "new_cases": 212.0, + "new_cases_smoothed": 201.0, + "total_deaths": 146.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 71.162, + "new_cases_per_million": 1.844, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 1.27, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 4976.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 24.756, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 8475.0, + "new_cases": 294.0, + "new_cases_smoothed": 214.571, + "total_deaths": 148.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 73.719, + "new_cases_per_million": 2.557, + "new_cases_smoothed_per_million": 1.866, + "total_deaths_per_million": 1.287, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.035, + "new_tests_smoothed": 5304.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 24.719, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 8803.0, + "new_cases": 328.0, + "new_cases_smoothed": 240.429, + "total_deaths": 150.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 76.572, + "new_cases_per_million": 2.853, + "new_cases_smoothed_per_million": 2.091, + "total_deaths_per_million": 1.305, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 5632.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 23.425, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 9147.0, + "new_cases": 344.0, + "new_cases_smoothed": 249.286, + "total_deaths": 163.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 79.564, + "new_cases_per_million": 2.992, + "new_cases_smoothed_per_million": 2.168, + "total_deaths_per_million": 1.418, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.048, + "total_tests": 331266.0, + "total_tests_per_thousand": 2.881, + "new_tests_smoothed": 5959.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 23.904, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 9503.0, + "new_cases": 356.0, + "new_cases_smoothed": 277.571, + "total_deaths": 167.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 82.661, + "new_cases_per_million": 3.097, + "new_cases_smoothed_per_million": 2.414, + "total_deaths_per_million": 1.453, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.05, + "new_tests_smoothed": 6190.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 22.301, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 10207.0, + "new_cases": 704.0, + "new_cases_smoothed": 348.714, + "total_deaths": 170.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 88.785, + "new_cases_per_million": 6.124, + "new_cases_smoothed_per_million": 3.033, + "total_deaths_per_million": 1.479, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 6421.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 18.413, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 10511.0, + "new_cases": 304.0, + "new_cases_smoothed": 363.143, + "total_deaths": 173.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 91.429, + "new_cases_per_million": 2.644, + "new_cases_smoothed_per_million": 3.159, + "total_deaths_per_million": 1.505, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 6652.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 18.317999999999998, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 11072.0, + "new_cases": 561.0, + "new_cases_smoothed": 413.0, + "total_deaths": 180.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 96.309, + "new_cases_per_million": 4.88, + "new_cases_smoothed_per_million": 3.592, + "total_deaths_per_million": 1.566, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 6883.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 16.666, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 11524.0, + "new_cases": 452.0, + "new_cases_smoothed": 435.571, + "total_deaths": 188.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 100.24, + "new_cases_per_million": 3.932, + "new_cases_smoothed_per_million": 3.789, + "total_deaths_per_million": 1.635, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.05, + "new_tests_smoothed": 7114.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 16.333, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 11933.0, + "new_cases": 409.0, + "new_cases_smoothed": 447.143, + "total_deaths": 197.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 103.798, + "new_cases_per_million": 3.558, + "new_cases_smoothed_per_million": 3.889, + "total_deaths_per_million": 1.714, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 7344.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 16.424, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 12693.0, + "new_cases": 760.0, + "new_cases_smoothed": 506.571, + "total_deaths": 200.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 110.409, + "new_cases_per_million": 6.611, + "new_cases_smoothed_per_million": 4.406, + "total_deaths_per_million": 1.74, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.046, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 14.953, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 13968.0, + "new_cases": 1275.0, + "new_cases_smoothed": 637.857, + "total_deaths": 223.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 121.499, + "new_cases_per_million": 11.09, + "new_cases_smoothed_per_million": 5.548, + "total_deaths_per_million": 1.94, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 11.876, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 14547.0, + "new_cases": 579.0, + "new_cases_smoothed": 620.0, + "total_deaths": 228.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 126.536, + "new_cases_per_million": 5.036, + "new_cases_smoothed_per_million": 5.393, + "total_deaths_per_million": 1.983, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.072, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 12.218, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 15200.0, + "new_cases": 653.0, + "new_cases_smoothed": 669.857, + "total_deaths": 239.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 132.216, + "new_cases_per_million": 5.68, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 2.079, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 11.308, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 15810.0, + "new_cases": 610.0, + "new_cases_smoothed": 676.857, + "total_deaths": 253.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 137.522, + "new_cases_per_million": 5.306, + "new_cases_smoothed_per_million": 5.888, + "total_deaths_per_million": 2.201, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.091, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 11.190999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 16615.0, + "new_cases": 805.0, + "new_cases_smoothed": 727.286, + "total_deaths": 263.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 144.524, + "new_cases_per_million": 7.002, + "new_cases_smoothed_per_million": 6.326, + "total_deaths_per_million": 2.288, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.093, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 10.415, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 17530.0, + "new_cases": 915.0, + "new_cases_smoothed": 799.571, + "total_deaths": 274.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 152.483, + "new_cases_per_million": 7.959, + "new_cases_smoothed_per_million": 6.955, + "total_deaths_per_million": 2.383, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.096, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 9.474, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 17999.0, + "new_cases": 469.0, + "new_cases_smoothed": 758.0, + "total_deaths": 284.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 156.563, + "new_cases_per_million": 4.08, + "new_cases_smoothed_per_million": 6.593, + "total_deaths_per_million": 2.47, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.104, + "total_tests": 437319.0, + "total_tests_per_thousand": 3.804, + "new_tests_smoothed": 7575.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 9.993, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 17999.0, + "new_cases": 0.0, + "new_cases_smoothed": 575.857, + "total_deaths": 284.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 156.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.009, + "total_deaths_per_million": 2.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests_smoothed": 7731.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 13.425, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 19289.0, + "new_cases": 1290.0, + "new_cases_smoothed": 677.429, + "total_deaths": 336.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 167.784, + "new_cases_per_million": 11.221, + "new_cases_smoothed_per_million": 5.893, + "total_deaths_per_million": 2.923, + "new_deaths_per_million": 0.452, + "new_deaths_smoothed_per_million": 0.134, + "new_tests_smoothed": 7886.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 11.640999999999998, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 19877.0, + "new_cases": 588.0, + "new_cases_smoothed": 668.143, + "total_deaths": 343.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 172.898, + "new_cases_per_million": 5.115, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 2.984, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.129, + "new_tests_smoothed": 8042.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 12.036, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 20336.0, + "new_cases": 459.0, + "new_cases_smoothed": 646.571, + "total_deaths": 356.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 176.891, + "new_cases_per_million": 3.993, + "new_cases_smoothed_per_million": 5.624, + "total_deaths_per_million": 3.097, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.128, + "new_tests_smoothed": 8198.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 12.679, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-07", + "total_cases": 20900.0, + "new_cases": 564.0, + "new_cases_smoothed": 612.143, + "total_deaths": 365.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 181.797, + "new_cases_per_million": 4.906, + "new_cases_smoothed_per_million": 5.325, + "total_deaths_per_million": 3.175, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.127, + "new_tests_smoothed": 8353.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 13.645999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 21452.0, + "new_cases": 552.0, + "new_cases_smoothed": 560.286, + "total_deaths": 380.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 186.598, + "new_cases_per_million": 4.802, + "new_cases_smoothed_per_million": 4.874, + "total_deaths_per_million": 3.305, + "new_deaths_per_million": 0.13, + "new_deaths_smoothed_per_million": 0.132, + "new_tests_smoothed": 8509.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 15.187000000000001, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 22253.0, + "new_cases": 801.0, + "new_cases_smoothed": 607.714, + "total_deaths": 390.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 193.566, + "new_cases_per_million": 6.967, + "new_cases_smoothed_per_million": 5.286, + "total_deaths_per_million": 3.392, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.132, + "total_tests": 497971.0, + "total_tests_per_thousand": 4.332, + "new_tests_smoothed": 8665.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 14.258, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 22818.0, + "new_cases": 565.0, + "new_cases_smoothed": 688.429, + "total_deaths": 407.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 198.48, + "new_cases_per_million": 4.915, + "new_cases_smoothed_per_million": 5.988, + "total_deaths_per_million": 3.54, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 11039.0, + "total_tests": 509010.0, + "total_tests_per_thousand": 4.428, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 9004.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 13.079, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 23591.0, + "new_cases": 773.0, + "new_cases_smoothed": 614.571, + "total_deaths": 420.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 205.204, + "new_cases_per_million": 6.724, + "new_cases_smoothed_per_million": 5.346, + "total_deaths_per_million": 3.653, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 11881.0, + "total_tests": 520891.0, + "total_tests_per_thousand": 4.531, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 9463.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 15.398, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-12", + "total_cases": 24175.0, + "new_cases": 584.0, + "new_cases_smoothed": 614.0, + "total_deaths": 440.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 210.284, + "new_cases_per_million": 5.08, + "new_cases_smoothed_per_million": 5.341, + "total_deaths_per_million": 3.827, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 14540.0, + "total_tests": 535431.0, + "total_tests_per_thousand": 4.657, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 10303.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 16.78, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-13", + "total_cases": 25118.0, + "new_cases": 943.0, + "new_cases_smoothed": 683.143, + "total_deaths": 463.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 218.487, + "new_cases_per_million": 8.203, + "new_cases_smoothed_per_million": 5.942, + "total_deaths_per_million": 4.027, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 14688.0, + "total_tests": 550119.0, + "total_tests_per_thousand": 4.785, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 11163.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 16.340999999999998, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-14", + "total_cases": 26204.0, + "new_cases": 1086.0, + "new_cases_smoothed": 757.714, + "total_deaths": 479.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 227.933, + "new_cases_per_million": 9.446, + "new_cases_smoothed_per_million": 6.591, + "total_deaths_per_million": 4.167, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 17323.0, + "total_tests": 567442.0, + "total_tests_per_thousand": 4.936, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 12400.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 16.365, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-15", + "total_cases": 27242.0, + "new_cases": 1038.0, + "new_cases_smoothed": 827.143, + "total_deaths": 492.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 236.962, + "new_cases_per_million": 9.029, + "new_cases_smoothed_per_million": 7.195, + "total_deaths_per_million": 4.28, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 22252.0, + "total_tests": 589694.0, + "total_tests_per_thousand": 5.129, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 14341.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 17.338, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-16", + "total_cases": 28894.0, + "new_cases": 1652.0, + "new_cases_smoothed": 948.714, + "total_deaths": 509.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 251.332, + "new_cases_per_million": 14.37, + "new_cases_smoothed_per_million": 8.252, + "total_deaths_per_million": 4.427, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 19769.0, + "total_tests": 609463.0, + "total_tests_per_thousand": 5.301, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 15927.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 16.788, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-17", + "total_cases": 29876.0, + "new_cases": 982.0, + "new_cases_smoothed": 1008.286, + "total_deaths": 528.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 259.874, + "new_cases_per_million": 8.542, + "new_cases_smoothed_per_million": 8.77, + "total_deaths_per_million": 4.593, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.15, + "new_tests": 19747.0, + "total_tests": 629210.0, + "total_tests_per_thousand": 5.473, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 17171.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 17.03, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-18", + "total_cases": 31336.0, + "new_cases": 1460.0, + "new_cases_smoothed": 1106.429, + "total_deaths": 544.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 272.573, + "new_cases_per_million": 12.7, + "new_cases_smoothed_per_million": 9.624, + "total_deaths_per_million": 4.732, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 22101.0, + "total_tests": 651311.0, + "total_tests_per_thousand": 5.665, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 18631.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 16.839000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-19", + "total_cases": 32722.0, + "new_cases": 1386.0, + "new_cases_smoothed": 1221.0, + "total_deaths": 572.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 284.629, + "new_cases_per_million": 12.056, + "new_cases_smoothed_per_million": 10.621, + "total_deaths_per_million": 4.975, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 21326.0, + "total_tests": 672637.0, + "total_tests_per_thousand": 5.851, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 19601.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 16.053, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-20", + "total_cases": 34058.0, + "new_cases": 1336.0, + "new_cases_smoothed": 1277.143, + "total_deaths": 600.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 296.25, + "new_cases_per_million": 11.621, + "new_cases_smoothed_per_million": 11.109, + "total_deaths_per_million": 5.219, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 21456.0, + "total_tests": 694093.0, + "total_tests_per_thousand": 6.038, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 20568.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 16.105, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-21", + "total_cases": 35836.0, + "new_cases": 1778.0, + "new_cases_smoothed": 1376.0, + "total_deaths": 620.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 311.716, + "new_cases_per_million": 15.466, + "new_cases_smoothed_per_million": 11.969, + "total_deaths_per_million": 5.393, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 23035.0, + "total_tests": 717128.0, + "total_tests_per_thousand": 6.238, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 21384.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 15.540999999999999, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-22", + "total_cases": 37665.0, + "new_cases": 1829.0, + "new_cases_smoothed": 1489.0, + "total_deaths": 637.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 327.625, + "new_cases_per_million": 15.909, + "new_cases_smoothed_per_million": 12.952, + "total_deaths_per_million": 5.541, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 19776.0, + "total_tests": 736904.0, + "total_tests_per_thousand": 6.41, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 21030.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 14.124, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-23", + "total_cases": 39033.0, + "new_cases": 1368.0, + "new_cases_smoothed": 1448.429, + "total_deaths": 662.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 339.525, + "new_cases_per_million": 11.899, + "new_cases_smoothed_per_million": 12.599, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 20153.0, + "total_tests": 757057.0, + "total_tests_per_thousand": 6.585, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 21085.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 14.557, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-24", + "total_cases": 40671.0, + "new_cases": 1638.0, + "new_cases_smoothed": 1542.143, + "total_deaths": 678.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 353.773, + "new_cases_per_million": 14.248, + "new_cases_smoothed_per_million": 13.414, + "total_deaths_per_million": 5.898, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 18851.0, + "total_tests": 775908.0, + "total_tests_per_thousand": 6.749, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 20957.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 13.59, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-25", + "total_cases": 42143.0, + "new_cases": 1472.0, + "new_cases_smoothed": 1543.857, + "total_deaths": 692.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 366.577, + "new_cases_per_million": 12.804, + "new_cases_smoothed_per_million": 13.429, + "total_deaths_per_million": 6.019, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 18778.0, + "total_tests": 794686.0, + "total_tests_per_thousand": 6.913, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 20482.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 13.267000000000001, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-26", + "total_cases": 43688.0, + "new_cases": 1545.0, + "new_cases_smoothed": 1566.571, + "total_deaths": 709.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 380.016, + "new_cases_per_million": 13.439, + "new_cases_smoothed_per_million": 13.627, + "total_deaths_per_million": 6.167, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 18724.0, + "total_tests": 813410.0, + "total_tests_per_thousand": 7.075, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 20110.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 12.837, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-27", + "total_cases": 45221.0, + "new_cases": 1533.0, + "new_cases_smoothed": 1594.714, + "total_deaths": 725.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 393.351, + "new_cases_per_million": 13.335, + "new_cases_smoothed_per_million": 13.871, + "total_deaths_per_million": 6.306, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 18060.0, + "total_tests": 831470.0, + "total_tests_per_thousand": 7.232, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 19625.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 12.306, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-28", + "total_cases": 46407.0, + "new_cases": 1186.0, + "new_cases_smoothed": 1510.143, + "total_deaths": 745.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 403.667, + "new_cases_per_million": 10.316, + "new_cases_smoothed_per_million": 13.136, + "total_deaths_per_million": 6.48, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 18766.0, + "total_tests": 850236.0, + "total_tests_per_thousand": 7.396, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 19015.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 12.592, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-29", + "total_cases": 48140.0, + "new_cases": 1733.0, + "new_cases_smoothed": 1496.429, + "total_deaths": 758.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 418.741, + "new_cases_per_million": 15.074, + "new_cases_smoothed_per_million": 13.017, + "total_deaths_per_million": 6.593, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.15, + "new_tests": 19194.0, + "total_tests": 869430.0, + "total_tests_per_thousand": 7.563, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 18932.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 12.651, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-30", + "total_cases": 49654.0, + "new_cases": 1514.0, + "new_cases_smoothed": 1517.286, + "total_deaths": 770.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 431.911, + "new_cases_per_million": 13.169, + "new_cases_smoothed_per_million": 13.198, + "total_deaths_per_million": 6.698, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.134, + "new_tests": 21499.0, + "total_tests": 890929.0, + "total_tests_per_thousand": 7.75, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 19125.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 12.605, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-31", + "total_cases": 51122.0, + "new_cases": 1468.0, + "new_cases_smoothed": 1493.0, + "total_deaths": 793.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 444.68, + "new_cases_per_million": 12.769, + "new_cases_smoothed_per_million": 12.987, + "total_deaths_per_million": 6.898, + "new_deaths_per_million": 0.2, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 19364.0, + "total_tests": 910293.0, + "total_tests_per_thousand": 7.918, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 19198.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 12.859000000000002, + "positive_rate": 0.078, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 52131.0, + "new_cases": 1009.0, + "new_cases_smoothed": 1426.857, + "total_deaths": 809.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 453.457, + "new_cases_per_million": 8.777, + "new_cases_smoothed_per_million": 12.411, + "total_deaths_per_million": 7.037, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 18160.0, + "total_tests": 928453.0, + "total_tests_per_thousand": 8.076, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 19110.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 13.392999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 53304.0, + "new_cases": 1173.0, + "new_cases_smoothed": 1373.714, + "total_deaths": 828.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 463.66, + "new_cases_per_million": 10.203, + "new_cases_smoothed_per_million": 11.949, + "total_deaths_per_million": 7.202, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.148 + }, + { + "date": "2020-09-03", + "total_cases": 54409.0, + "new_cases": 1105.0, + "new_cases_smoothed": 1312.571, + "total_deaths": 846.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 473.272, + "new_cases_per_million": 9.612, + "new_cases_smoothed_per_million": 11.417, + "total_deaths_per_million": 7.359, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.15 + }, + { + "date": "2020-09-04", + "total_cases": 55213.0, + "new_cases": 804.0, + "new_cases_smoothed": 1258.0, + "total_deaths": 856.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 480.265, + "new_cases_per_million": 6.994, + "new_cases_smoothed_per_million": 10.943, + "total_deaths_per_million": 7.446, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.138 + }, + { + "date": "2020-09-05", + "total_cases": 56516.0, + "new_cases": 1303.0, + "new_cases_smoothed": 1196.571, + "total_deaths": 880.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 491.599, + "new_cases_per_million": 11.334, + "new_cases_smoothed_per_million": 10.408, + "total_deaths_per_million": 7.655, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.152 + } + ] + }, + "FRO": { + "continent": "Europe", + "location": "Faeroe Islands", + "population": 48865.0, + "population_density": 35.308, + "life_expectancy": 80.67, + "data": [ + { + "date": "2020-03-06", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 20.465, + "new_cases_per_million": 20.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 40.929, + "new_cases_per_million": 20.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-08", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 20.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-10", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 9.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 184.181, + "new_cases_per_million": 122.787, + "new_cases_smoothed_per_million": 17.541, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.11, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 23.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 18.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 368.362, + "new_cases_per_million": 143.252, + "new_cases_smoothed_per_million": 43.853, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 47.0, + "new_cases": 29.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 961.834, + "new_cases_per_million": 593.472, + "new_cases_smoothed_per_million": 128.634, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 72.0, + "new_cases": 25.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1473.447, + "new_cases_per_million": 511.614, + "new_cases_smoothed_per_million": 201.722, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 80.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1637.164, + "new_cases_per_million": 163.716, + "new_cases_smoothed_per_million": 225.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 92.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1882.738, + "new_cases_per_million": 245.575, + "new_cases_smoothed_per_million": 260.192, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 115.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2353.423, + "new_cases_per_million": 470.685, + "new_cases_smoothed_per_million": 309.892, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 118.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2414.816, + "new_cases_per_million": 61.394, + "new_cases_smoothed_per_million": 312.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 122.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2496.675, + "new_cases_per_million": 81.858, + "new_cases_smoothed_per_million": 304.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 132.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2701.32, + "new_cases_per_million": 204.645, + "new_cases_smoothed_per_million": 248.498, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 140.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2865.036, + "new_cases_per_million": 163.716, + "new_cases_smoothed_per_million": 198.798, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 144.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2946.895, + "new_cases_per_million": 81.858, + "new_cases_smoothed_per_million": 187.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 155.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3172.005, + "new_cases_per_million": 225.11, + "new_cases_smoothed_per_million": 184.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 159.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3253.863, + "new_cases_per_million": 81.858, + "new_cases_smoothed_per_million": 128.634, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 168.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3438.044, + "new_cases_per_million": 184.181, + "new_cases_smoothed_per_million": 146.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 169.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3458.508, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 137.405, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 173.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3540.366, + "new_cases_per_million": 81.858, + "new_cases_smoothed_per_million": 119.864, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 177.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3622.224, + "new_cases_per_million": 81.858, + "new_cases_smoothed_per_million": 108.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 179.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3663.154, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 102.323, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 181.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3704.083, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 76.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 181.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3704.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 64.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 183.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3745.012, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 43.853, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 184.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 43.853, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.618, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3765.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 185.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3785.941, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3785.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3785.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3785.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 187.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3826.87, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 188.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3847.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 191.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 61.394, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3908.728, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 214.0, + "new_cases": 23.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4379.413, + "new_cases_per_million": 470.685, + "new_cases_smoothed_per_million": 67.241, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 220.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4502.2, + "new_cases_per_million": 122.787, + "new_cases_smoothed_per_million": 84.782, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4502.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.782, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4502.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.782, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 225.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4604.523, + "new_cases_per_million": 102.323, + "new_cases_smoothed_per_million": 99.399, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 225.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4604.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.399, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 225.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4604.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.399, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 225.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4604.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 227.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4645.452, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 20.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 241.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4931.955, + "new_cases_per_million": 286.504, + "new_cases_smoothed_per_million": 61.394, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 241.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4931.955, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.394, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 291.0, + "new_cases": 50.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5955.183, + "new_cases_per_million": 1023.227, + "new_cases_smoothed_per_million": 192.951, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 291.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5955.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 192.951, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 291.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5955.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 192.951, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 313.0, + "new_cases": 22.0, + "new_cases_smoothed": 12.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6405.403, + "new_cases_per_million": 450.22, + "new_cases_smoothed_per_million": 257.269, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 324.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6630.513, + "new_cases_per_million": 225.11, + "new_cases_smoothed_per_million": 283.58, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 339.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6937.481, + "new_cases_per_million": 306.968, + "new_cases_smoothed_per_million": 286.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 362.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7408.165, + "new_cases_per_million": 470.685, + "new_cases_smoothed_per_million": 353.744, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 362.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7408.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 207.569, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 370.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7571.882, + "new_cases_per_million": 163.716, + "new_cases_smoothed_per_million": 230.957, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 372.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7612.811, + "new_cases_per_million": 40.929, + "new_cases_smoothed_per_million": 236.804, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 373.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7633.275, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 175.41, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7633.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 143.252, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 382.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7817.456, + "new_cases_per_million": 184.181, + "new_cases_smoothed_per_million": 125.711, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 383.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7837.921, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 61.394, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 384.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7858.385, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 64.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 384.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7858.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 40.929, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 384.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7858.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 410.0, + "new_cases": 26.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8390.464, + "new_cases_per_million": 532.078, + "new_cases_smoothed_per_million": 108.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 411.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 111.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.782, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 81.858, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.935, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.935, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.935, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 411.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8410.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 412.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8431.393, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 2.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 413.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8451.857, + "new_cases_per_million": 20.465, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "FLK": { + "continent": "South America", + "location": "Falkland Islands", + "population": 3483.0, + "life_expectancy": 81.44, + "data": [ + { + "date": "2020-04-04", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 287.109, + "new_cases_per_million": 287.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-05", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 287.109, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-06", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 574.218, + "new_cases_per_million": 287.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-07", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 574.218, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-08", + "total_cases": 5.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 861.326, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 5.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 205.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 164.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 164.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 1722.653, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3158.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 246.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3445.306, + "new_cases_per_million": 287.109, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3445.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3445.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3445.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-26", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 287.109, + "new_cases_smoothed_per_million": 82.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 82.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 82.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-06-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-07-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-08-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-09-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-09-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3732.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "FJI": { + "continent": "Oceania", + "location": "Fiji", + "population": 896444.0, + "population_density": 49.562, + "median_age": 28.6, + "aged_65_older": 6.224, + "aged_70_older": 3.284, + "gdp_per_capita": 8702.975, + "extreme_poverty": 1.4, + "cardiovasc_death_rate": 412.82, + "diabetes_prevalence": 14.49, + "female_smokers": 10.2, + "male_smokers": 34.8, + "hospital_beds_per_thousand": 2.3, + "life_expectancy": 67.44, + "data": [ + { + "date": "2020-01-30", + "total_tests": 3.0, + "total_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_tests": 5.0, + "total_tests_per_thousand": 0.006, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "new_tests": 1.0, + "total_tests": 6.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_tests": 8.0, + "total_tests_per_thousand": 0.009, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_tests": 10.0, + "total_tests_per_thousand": 0.011, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_tests": 11.0, + "total_tests_per_thousand": 0.012, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "new_tests": 5.0, + "total_tests": 16.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_tests": 27.0, + "total_tests_per_thousand": 0.03, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "new_tests": 10.0, + "total_tests": 37.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-14", + "new_tests": 9.0, + "total_tests": 46.0, + "total_tests_per_thousand": 0.051, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-15", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "total_tests": 54.0, + "total_tests_per_thousand": 0.06, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-17", + "new_tests": 5.0, + "total_tests": 59.0, + "total_tests_per_thousand": 0.066, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-18", + "new_tests": 12.0, + "total_tests": 71.0, + "total_tests_per_thousand": 0.079, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-19", + "new_tests": 8.0, + "total_tests": 79.0, + "total_tests_per_thousand": 0.088, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.116, + "new_cases_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 102.0, + "total_tests_per_thousand": 0.114, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 9.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.116, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 130.0, + "total_tests_per_thousand": 0.145, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.231, + "new_cases_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.347, + "new_cases_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 146.0, + "total_tests_per_thousand": 0.163, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 4.462, + "new_cases_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 179.0, + "total_tests_per_thousand": 0.2, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 207.0, + "total_tests_per_thousand": 0.231, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 246.0, + "total_tests_per_thousand": 0.274, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 61.0, + "total_tests": 307.0, + "total_tests_per_thousand": 0.342, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 50.75, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 330.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 50.75, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 346.0, + "total_tests_per_thousand": 0.386, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 70.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 356.0, + "total_tests_per_thousand": 0.397, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 105.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 367.0, + "total_tests_per_thousand": 0.409, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 189.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 384.0, + "total_tests_per_thousand": 0.428, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.028, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-02", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.809, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 408.0, + "total_tests_per_thousand": 0.455, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 80.5, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 59.5, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-04", + "total_cases": 12.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.386, + "new_cases_per_million": 5.578, + "new_cases_smoothed_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 445.0, + "total_tests_per_thousand": 0.496, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 16.0, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 489.0, + "total_tests_per_thousand": 0.545, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 20.0, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-06", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.617, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 1.434, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 512.0, + "total_tests_per_thousand": 0.571, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 17.111, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.617, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.434, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 537.0, + "total_tests_per_thousand": 0.599, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 18.667, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.733, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 1.594, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 566.0, + "total_tests_per_thousand": 0.631, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 18.2, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 591.0, + "total_tests_per_thousand": 0.659, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 22.75, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 612.0, + "total_tests_per_thousand": 0.683, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 22.75, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 621.0, + "total_tests_per_thousand": 0.693, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 43.75, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.637, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 622.0, + "total_tests_per_thousand": 0.694, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 33.25, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 649.0, + "total_tests_per_thousand": 0.724, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 70.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 661.0, + "total_tests_per_thousand": 0.737, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 63.0, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 105.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 684.0, + "total_tests_per_thousand": 0.763, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 91.0, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.964, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 705.0, + "total_tests_per_thousand": 0.786, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 45.5, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.964, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 745.0, + "total_tests_per_thousand": 0.831, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.964, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 38.0, + "total_tests": 783.0, + "total_tests_per_thousand": 0.873, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 161.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.964, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 807.0, + "total_tests_per_thousand": 0.9, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 161.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 829.0, + "total_tests_per_thousand": 0.925, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 84.0, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 897.0, + "total_tests_per_thousand": 1.001, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 54.0, + "total_tests": 951.0, + "total_tests_per_thousand": 1.061, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 953.0, + "total_tests_per_thousand": 1.063, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 245.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 60.0, + "total_tests": 1013.0, + "total_tests_per_thousand": 1.13, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1060.0, + "total_tests_per_thousand": 1.182, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 1090.0, + "total_tests_per_thousand": 1.216, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.041, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 1123.0, + "total_tests_per_thousand": 1.253, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.036, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 1160.0, + "total_tests_per_thousand": 1.294, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.033, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 1201.0, + "total_tests_per_thousand": 1.34, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.039, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47.0, + "total_tests": 1248.0, + "total_tests_per_thousand": 1.392, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.038, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 1326.0, + "total_tests_per_thousand": 1.479, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.046, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.046, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1365.0, + "total_tests_per_thousand": 1.523, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 1394.0, + "total_tests_per_thousand": 1.555, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 1437.0, + "total_tests_per_thousand": 1.603, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.045, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 52.0, + "total_tests": 1489.0, + "total_tests_per_thousand": 1.661, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.046, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 1532.0, + "total_tests_per_thousand": 1.709, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.046, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 1599.0, + "total_tests_per_thousand": 1.784, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1632.0, + "total_tests_per_thousand": 1.821, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.042, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 1699.0, + "total_tests_per_thousand": 1.895, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 44.0, + "new_tests_smoothed_per_thousand": 0.049, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 1775.0, + "total_tests_per_thousand": 1.98, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 48.0, + "new_tests_smoothed_per_thousand": 0.054, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 87.0, + "total_tests": 1862.0, + "total_tests_per_thousand": 2.077, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.059, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 74.0, + "total_tests": 1936.0, + "total_tests_per_thousand": 2.16, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.065, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1991.0, + "total_tests_per_thousand": 2.221, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.06, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 2069.0, + "total_tests_per_thousand": 2.308, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.069, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 2137.0, + "total_tests_per_thousand": 2.384, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.07, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 56.0, + "total_tests": 2193.0, + "total_tests_per_thousand": 2.446, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.067, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 2259.0, + "total_tests_per_thousand": 2.52, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.064, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 104.0, + "total_tests": 2363.0, + "total_tests_per_thousand": 2.636, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.068, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 2367.0, + "total_tests_per_thousand": 2.64, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.065, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 64.0, + "total_tests": 2431.0, + "total_tests_per_thousand": 2.712, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.07, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 53.0, + "total_tests": 2484.0, + "total_tests_per_thousand": 2.771, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 59.0, + "new_tests_smoothed_per_thousand": 0.066, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 111.0, + "total_tests": 2595.0, + "total_tests_per_thousand": 2.895, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.073, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 2673.0, + "total_tests_per_thousand": 2.982, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.077, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 150.0, + "total_tests": 2823.0, + "total_tests_per_thousand": 3.149, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 81.0, + "new_tests_smoothed_per_thousand": 0.09, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 77.0, + "total_tests": 2900.0, + "total_tests_per_thousand": 3.235, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 77.0, + "new_tests_smoothed_per_thousand": 0.086, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-31", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 61.0, + "total_tests": 2961.0, + "total_tests_per_thousand": 3.303, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 85.0, + "new_tests_smoothed_per_thousand": 0.095, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 81.0, + "new_tests_smoothed_per_thousand": 0.09, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3041.0, + "total_tests_per_thousand": 3.392, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.089, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 88.0, + "total_tests": 3129.0, + "total_tests_per_thousand": 3.49, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 76.0, + "new_tests_smoothed_per_thousand": 0.085, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 3195.0, + "total_tests_per_thousand": 3.564, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 75.0, + "new_tests_smoothed_per_thousand": 0.084, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 113.0, + "total_tests": 3308.0, + "total_tests_per_thousand": 3.69, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.077, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 92.0, + "total_tests": 3400.0, + "total_tests_per_thousand": 3.793, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.079, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 232.0, + "total_tests": 3632.0, + "total_tests_per_thousand": 4.052, + "new_tests_per_thousand": 0.259, + "new_tests_smoothed": 96.0, + "new_tests_smoothed_per_thousand": 0.107, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 97.0, + "total_tests": 3729.0, + "total_tests_per_thousand": 4.16, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 104.0, + "new_tests_smoothed_per_thousand": 0.116, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 81.0, + "total_tests": 3810.0, + "total_tests_per_thousand": 4.25, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 110.0, + "new_tests_smoothed_per_thousand": 0.123, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 129.0, + "total_tests": 3939.0, + "total_tests_per_thousand": 4.394, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 116.0, + "new_tests_smoothed_per_thousand": 0.129, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 111.0, + "new_tests_smoothed_per_thousand": 0.124, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4004.0, + "total_tests_per_thousand": 4.467, + "new_tests_smoothed": 99.0, + "new_tests_smoothed_per_thousand": 0.11, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 102.0, + "total_tests": 4106.0, + "total_tests_per_thousand": 4.58, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 101.0, + "new_tests_smoothed_per_thousand": 0.113, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 4126.0, + "total_tests_per_thousand": 4.603, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.079, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 4169.0, + "total_tests_per_thousand": 4.651, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.07, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 4208.0, + "total_tests_per_thousand": 4.694, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.064, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.05, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4305.0, + "total_tests_per_thousand": 4.802, + "new_tests_smoothed": 48.0, + "new_tests_smoothed_per_thousand": 0.054, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 120.0, + "total_tests": 4425.0, + "total_tests_per_thousand": 4.936, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.067, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 4451.0, + "total_tests_per_thousand": 4.965, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-06-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4529.0, + "total_tests_per_thousand": 5.052, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 55.0, + "total_tests": 4584.0, + "total_tests_per_thousand": 5.114, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.06, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 4634.0, + "total_tests_per_thousand": 5.169, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.06, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 151.0, + "total_tests": 4785.0, + "total_tests_per_thousand": 5.338, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.077, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 4816.0, + "total_tests_per_thousand": 5.372, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 56.0, + "new_tests_smoothed_per_thousand": 0.062, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 4827.0, + "total_tests_per_thousand": 5.385, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.06, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 4853.0, + "total_tests_per_thousand": 5.414, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 162.0, + "total_tests": 5015.0, + "total_tests_per_thousand": 5.594, + "new_tests_per_thousand": 0.181, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.077, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-06-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 5060.0, + "total_tests_per_thousand": 5.645, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.076, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 5105.0, + "total_tests_per_thousand": 5.695, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 67.0, + "new_tests_smoothed_per_thousand": 0.075, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 5156.0, + "total_tests_per_thousand": 5.752, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.059, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 86.0, + "total_tests": 5242.0, + "total_tests_per_thousand": 5.848, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.068, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 5268.0, + "total_tests_per_thousand": 5.877, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.07, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 5311.0, + "total_tests_per_thousand": 5.925, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.073, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-07-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 47.0, + "new_tests_smoothed_per_thousand": 0.052, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-07", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.195, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5371.0, + "total_tests_per_thousand": 5.991, + "new_tests_smoothed": 44.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 308.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.195, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 115.0, + "total_tests": 5486.0, + "total_tests_per_thousand": 6.12, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 378.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-09", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.426, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 5621.0, + "total_tests_per_thousand": 6.27, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 66.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-10", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": -357.0, + "total_tests": 5264.0, + "total_tests_per_thousand": 5.872, + "new_tests_per_thousand": -0.398, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-11", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 576.0, + "total_tests": 5840.0, + "total_tests_per_thousand": 6.515, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 82.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 191.333, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.426, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 97.0, + "total_tests": 5937.0, + "total_tests_per_thousand": 6.623, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 89.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 207.667, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-13", + "total_cases": 26.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 5.578, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 5957.0, + "total_tests_per_thousand": 6.645, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 88.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 77.0, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-14", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 151.0, + "total_tests": 6108.0, + "total_tests_per_thousand": 6.814, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 105.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 105.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-15", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 105.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 105.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-16", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6328.0, + "total_tests_per_thousand": 7.059, + "new_tests_smoothed": 101.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 141.4, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-17", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 38.0, + "total_tests": 6366.0, + "total_tests_per_thousand": 7.101, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 157.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 219.8, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-18", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 6388.0, + "total_tests_per_thousand": 7.126, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 78.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 109.2, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-19", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 6401.0, + "total_tests_per_thousand": 7.14, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 66.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 92.4, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-20", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 6414.0, + "total_tests_per_thousand": 7.155, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.073, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-21", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 6454.0, + "total_tests_per_thousand": 7.2, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-22", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 81.0, + "total_tests": 6535.0, + "total_tests_per_thousand": 7.29, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 315.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-23", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 49.0, + "total_tests": 6584.0, + "total_tests_per_thousand": 7.345, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 259.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-24", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 55.0, + "total_tests": 6639.0, + "total_tests_per_thousand": 7.406, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 273.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-25", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 6668.0, + "total_tests_per_thousand": 7.438, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 280.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-26", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 6693.0, + "total_tests_per_thousand": 7.466, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 294.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-27", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 6719.0, + "total_tests_per_thousand": 7.495, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 44.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 308.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 6756.0, + "total_tests_per_thousand": 7.536, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 301.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-29", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 129.0, + "total_tests": 6885.0, + "total_tests_per_thousand": 7.68, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.056, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-30", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 6924.0, + "total_tests_per_thousand": 7.724, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-31", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 6936.0, + "total_tests_per_thousand": 7.737, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.047, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-01", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 1.116, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 1.0, + "total_tests": 6937.0, + "total_tests_per_thousand": 7.738, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.042, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-02", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.045, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-03", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "total_tests": 7013.0, + "total_tests_per_thousand": 7.823, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.047, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-04", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 64.0, + "total_tests": 7077.0, + "total_tests_per_thousand": 7.895, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.051, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-05", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 169.0, + "total_tests": 7246.0, + "total_tests_per_thousand": 8.083, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-06", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 60.0, + "total_tests": 7306.0, + "total_tests_per_thousand": 8.15, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.061, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-07", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 12.0, + "total_tests": 7318.0, + "total_tests_per_thousand": 8.163, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.061, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-08", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 7334.0, + "total_tests_per_thousand": 8.181, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.064, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-09", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 7341.0, + "total_tests_per_thousand": 8.189, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-10", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 7345.0, + "total_tests_per_thousand": 8.193, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 47.0, + "new_tests_smoothed_per_thousand": 0.052, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-11", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 7385.0, + "total_tests_per_thousand": 8.238, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 44.0, + "new_tests_smoothed_per_thousand": 0.049, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-12", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 125.0, + "total_tests": 7510.0, + "total_tests_per_thousand": 8.378, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.042, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-13", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 7544.0, + "total_tests_per_thousand": 8.415, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.038, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-14", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 7594.0, + "total_tests_per_thousand": 8.471, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-15", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 7606.0, + "total_tests_per_thousand": 8.485, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.044, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-16", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.119, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 7623.0, + "total_tests_per_thousand": 8.504, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.045, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-17", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 7638.0, + "total_tests_per_thousand": 8.52, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 294.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-18", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 7663.0, + "total_tests_per_thousand": 8.548, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 280.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-19", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 178.0, + "total_tests": 7841.0, + "total_tests_per_thousand": 8.747, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 47.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 329.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-20", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 48.0, + "total_tests": 7889.0, + "total_tests_per_thousand": 8.8, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-21", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 53.0, + "total_tests": 7942.0, + "total_tests_per_thousand": 8.859, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 350.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-22", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 19.0, + "total_tests": 7961.0, + "total_tests_per_thousand": 8.881, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 357.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-23", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 7979.0, + "total_tests_per_thousand": 8.901, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 357.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-24", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 7986.0, + "total_tests_per_thousand": 8.909, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.056, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-25", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 8037.0, + "total_tests_per_thousand": 8.965, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.059, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-26", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 160.0, + "total_tests": 8197.0, + "total_tests_per_thousand": 9.144, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-27", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47.0, + "total_tests": 8244.0, + "total_tests_per_thousand": 9.196, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-28", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 38.0, + "total_tests": 8282.0, + "total_tests_per_thousand": 9.239, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-29", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 1.116, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 21.0, + "total_tests": 8303.0, + "total_tests_per_thousand": 9.262, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-30", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 62.0, + "total_tests": 8365.0, + "total_tests_per_thousand": 9.331, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.061, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-31", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 43.0, + "total_tests": 8408.0, + "total_tests_per_thousand": 9.379, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.067, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-09-01", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 19.0, + "total_tests": 8427.0, + "total_tests_per_thousand": 9.4, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 56.0, + "new_tests_smoothed_per_thousand": 0.062, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 32.35, + "new_cases_per_million": 1.116, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 123.0, + "total_tests": 8550.0, + "total_tests_per_thousand": 9.538, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 350.0, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 32.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 357.0, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.581, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.159, + "total_tests": 8646.0, + "total_tests_per_thousand": 9.645, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 121.333, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "FIN": { + "continent": "Europe", + "location": "Finland", + "population": 5540718.0, + "population_density": 18.136, + "median_age": 42.8, + "aged_65_older": 21.228, + "aged_70_older": 13.264, + "gdp_per_capita": 40585.721, + "cardiovasc_death_rate": 153.507, + "diabetes_prevalence": 5.76, + "female_smokers": 18.3, + "male_smokers": 22.6, + "hospital_beds_per_thousand": 3.28, + "life_expectancy": 81.91, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 73.0, + "total_tests": 73.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.013, + "tests_units": "samples tested", + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 77.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.361, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 86.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.361, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 358.0, + "total_tests": 444.0, + "total_tests_per_thousand": 0.08, + "new_tests_per_thousand": 0.065, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.541, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 459.0, + "total_tests_per_thousand": 0.083, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 475.0, + "total_tests_per_thousand": 0.086, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.083, + "new_cases_per_million": 0.541, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 501.0, + "total_tests_per_thousand": 0.09, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 552.0, + "total_tests_per_thousand": 0.1, + "new_tests_per_thousand": 0.009, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.263, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 85.0, + "total_tests": 637.0, + "total_tests_per_thousand": 0.115, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 93.333, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 80.0, + "total_tests": 717.0, + "total_tests_per_thousand": 0.129, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 90.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 12.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.166, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 0.258, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 105.0, + "total_tests": 822.0, + "total_tests_per_thousand": 0.148, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 37.8, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "total_cases": 19.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.429, + "new_cases_per_million": 1.263, + "new_cases_smoothed_per_million": 0.413, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 842.0, + "total_tests_per_thousand": 0.152, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 24.061999999999998, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 2.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.413, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 856.0, + "total_tests_per_thousand": 0.154, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 23.625, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "total_cases": 30.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.414, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 0.619, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 122.0, + "total_tests": 978.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 19.833, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 40.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.219, + "new_cases_per_million": 1.805, + "new_cases_smoothed_per_million": 0.877, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 128.0, + "total_tests": 1106.0, + "total_tests_per_thousand": 0.2, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 79.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 16.265, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 4.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.851, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 163.0, + "total_tests": 1269.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 90.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 19.090999999999998, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "total_cases": 59.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.648, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 349.0, + "total_tests": 1618.0, + "total_tests_per_thousand": 0.292, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 129.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 17.365, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-13", + "total_cases": 155.0, + "new_cases": 96.0, + "new_cases_smoothed": 20.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.975, + "new_cases_per_million": 17.326, + "new_cases_smoothed_per_million": 3.687, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 409.0, + "total_tests": 2027.0, + "total_tests_per_thousand": 0.366, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 172.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 8.42, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-14", + "total_cases": 183.0, + "new_cases": 28.0, + "new_cases_smoothed": 23.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.028, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 4.228, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 595.0, + "total_tests": 2622.0, + "total_tests_per_thousand": 0.473, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 254.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 10.841, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-15", + "total_cases": 210.0, + "new_cases": 27.0, + "new_cases_smoothed": 27.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.901, + "new_cases_per_million": 4.873, + "new_cases_smoothed_per_million": 4.925, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 644.0, + "total_tests": 3266.0, + "total_tests_per_thousand": 0.589, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 344.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.607000000000001, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 34.26 + }, + { + "date": "2020-03-16", + "total_cases": 267.0, + "new_cases": 57.0, + "new_cases_smoothed": 33.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.189, + "new_cases_per_million": 10.287, + "new_cases_smoothed_per_million": 6.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 812.0, + "total_tests": 4078.0, + "total_tests_per_thousand": 0.736, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 443.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 13.084000000000001, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-17", + "total_cases": 272.0, + "new_cases": 5.0, + "new_cases_smoothed": 33.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.091, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 5.982, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1117.0, + "total_tests": 5195.0, + "total_tests_per_thousand": 0.938, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 584.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 17.621, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-18", + "total_cases": 319.0, + "new_cases": 47.0, + "new_cases_smoothed": 39.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.574, + "new_cases_per_million": 8.483, + "new_cases_smoothed_per_million": 7.193, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1015.0, + "total_tests": 6210.0, + "total_tests_per_thousand": 1.121, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 706.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 17.713, + "positive_rate": 0.055999999999999994, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-19", + "total_cases": 369.0, + "new_cases": 50.0, + "new_cases_smoothed": 44.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.598, + "new_cases_per_million": 9.024, + "new_cases_smoothed_per_million": 7.993, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 776.0, + "total_tests": 6986.0, + "total_tests_per_thousand": 1.261, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 17.319000000000003, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-20", + "total_cases": 400.0, + "new_cases": 31.0, + "new_cases_smoothed": 35.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.193, + "new_cases_per_million": 5.595, + "new_cases_smoothed_per_million": 6.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1268.0, + "total_tests": 8254.0, + "total_tests_per_thousand": 1.49, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 890.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 25.429000000000002, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-21", + "total_cases": 450.0, + "new_cases": 50.0, + "new_cases_smoothed": 38.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.217, + "new_cases_per_million": 9.024, + "new_cases_smoothed_per_million": 6.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1595.0, + "total_tests": 9849.0, + "total_tests_per_thousand": 1.778, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 27.055999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 521.0, + "new_cases": 71.0, + "new_cases_smoothed": 44.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.031, + "new_cases_per_million": 12.814, + "new_cases_smoothed_per_million": 8.019, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1052.0, + "total_tests": 10901.0, + "total_tests_per_thousand": 1.967, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 1091.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 24.555999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 626.0, + "new_cases": 105.0, + "new_cases_smoothed": 51.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.982, + "new_cases_per_million": 18.951, + "new_cases_smoothed_per_million": 9.256, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1319.0, + "total_tests": 12220.0, + "total_tests_per_thousand": 2.205, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 22.677, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-24", + "total_cases": 700.0, + "new_cases": 74.0, + "new_cases_smoothed": 61.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 126.337, + "new_cases_per_million": 13.356, + "new_cases_smoothed_per_million": 11.035, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1579.0, + "total_tests": 13799.0, + "total_tests_per_thousand": 2.49, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 20.1, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-25", + "total_cases": 792.0, + "new_cases": 92.0, + "new_cases_smoothed": 67.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 142.942, + "new_cases_per_million": 16.604, + "new_cases_smoothed_per_million": 12.195, + "total_deaths_per_million": 0.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1849.0, + "total_tests": 15648.0, + "total_tests_per_thousand": 2.824, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 1348.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 19.949, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-26", + "total_cases": 880.0, + "new_cases": 88.0, + "new_cases_smoothed": 73.0, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 158.824, + "new_cases_per_million": 15.882, + "new_cases_smoothed_per_million": 13.175, + "total_deaths_per_million": 0.541, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1837.0, + "total_tests": 17485.0, + "total_tests_per_thousand": 3.156, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 1500.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 20.548000000000002, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 958.0, + "new_cases": 78.0, + "new_cases_smoothed": 79.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 172.902, + "new_cases_per_million": 14.078, + "new_cases_smoothed_per_million": 14.387, + "total_deaths_per_million": 0.722, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 2005.0, + "total_tests": 19490.0, + "total_tests_per_thousand": 3.518, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 1605.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 20.134, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-03-28", + "total_cases": 1025.0, + "new_cases": 67.0, + "new_cases_smoothed": 82.143, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 184.994, + "new_cases_per_million": 12.092, + "new_cases_smoothed_per_million": 14.825, + "total_deaths_per_million": 1.263, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 1207.0, + "total_tests": 20697.0, + "total_tests_per_thousand": 3.735, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 1550.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 18.87, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-29", + "total_cases": 1218.0, + "new_cases": 193.0, + "new_cases_smoothed": 99.571, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 219.827, + "new_cases_per_million": 34.833, + "new_cases_smoothed_per_million": 17.971, + "total_deaths_per_million": 1.624, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 583.0, + "total_tests": 21280.0, + "total_tests_per_thousand": 3.841, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 1483.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 14.894, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-30", + "total_cases": 1218.0, + "new_cases": 0.0, + "new_cases_smoothed": 84.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 219.827, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.264, + "total_deaths_per_million": 1.985, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 1081.0, + "total_tests": 22361.0, + "total_tests_per_thousand": 4.036, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 17.133, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-31", + "total_cases": 1313.0, + "new_cases": 95.0, + "new_cases_smoothed": 87.571, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 236.973, + "new_cases_per_million": 17.146, + "new_cases_smoothed_per_million": 15.805, + "total_deaths_per_million": 2.346, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.309, + "new_tests": 1085.0, + "total_tests": 23446.0, + "total_tests_per_thousand": 4.232, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 1378.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 15.735999999999999, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-01", + "total_cases": 1384.0, + "new_cases": 71.0, + "new_cases_smoothed": 84.571, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 249.787, + "new_cases_per_million": 12.814, + "new_cases_smoothed_per_million": 15.264, + "total_deaths_per_million": 3.068, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 1567.0, + "total_tests": 25013.0, + "total_tests_per_thousand": 4.514, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 1338.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 15.821, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-02", + "total_cases": 1446.0, + "new_cases": 62.0, + "new_cases_smoothed": 80.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 260.977, + "new_cases_per_million": 11.19, + "new_cases_smoothed_per_million": 14.593, + "total_deaths_per_million": 3.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.361, + "new_tests": 2253.0, + "total_tests": 27266.0, + "total_tests_per_thousand": 4.921, + "new_tests_per_thousand": 0.407, + "new_tests_smoothed": 1397.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 17.277, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-03", + "total_cases": 1518.0, + "new_cases": 72.0, + "new_cases_smoothed": 80.0, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 273.972, + "new_cases_per_million": 12.995, + "new_cases_smoothed_per_million": 14.439, + "total_deaths_per_million": 3.429, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.387, + "new_tests": 1689.0, + "total_tests": 28955.0, + "total_tests_per_thousand": 5.226, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 1352.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 16.9, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-04", + "total_cases": 1615.0, + "new_cases": 97.0, + "new_cases_smoothed": 84.286, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 291.478, + "new_cases_per_million": 17.507, + "new_cases_smoothed_per_million": 15.212, + "total_deaths_per_million": 3.61, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 3223.0, + "total_tests": 32178.0, + "total_tests_per_thousand": 5.808, + "new_tests_per_thousand": 0.582, + "new_tests_smoothed": 1640.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 19.458, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-05", + "total_cases": 1882.0, + "new_cases": 267.0, + "new_cases_smoothed": 94.857, + "total_deaths": 25.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 339.667, + "new_cases_per_million": 48.189, + "new_cases_smoothed_per_million": 17.12, + "total_deaths_per_million": 4.512, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 1647.0, + "total_tests": 33825.0, + "total_tests_per_thousand": 6.105, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 1792.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 18.892, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-06", + "total_cases": 1927.0, + "new_cases": 45.0, + "new_cases_smoothed": 101.286, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 347.789, + "new_cases_per_million": 8.122, + "new_cases_smoothed_per_million": 18.28, + "total_deaths_per_million": 4.873, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 1970.0, + "total_tests": 35795.0, + "total_tests_per_thousand": 6.46, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 1919.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 18.945999999999998, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-07", + "total_cases": 2176.0, + "new_cases": 249.0, + "new_cases_smoothed": 123.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 392.729, + "new_cases_per_million": 44.94, + "new_cases_smoothed_per_million": 22.251, + "total_deaths_per_million": 4.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.361, + "new_tests": 2120.0, + "total_tests": 37915.0, + "total_tests_per_thousand": 6.843, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2067.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 16.766, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-08", + "total_cases": 2308.0, + "new_cases": 132.0, + "new_cases_smoothed": 132.0, + "total_deaths": 34.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 416.553, + "new_cases_per_million": 23.824, + "new_cases_smoothed_per_million": 23.824, + "total_deaths_per_million": 6.136, + "new_deaths_per_million": 1.263, + "new_deaths_smoothed_per_million": 0.438, + "new_tests": 3301.0, + "total_tests": 41216.0, + "total_tests_per_thousand": 7.439, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 2315.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 17.538, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-09", + "total_cases": 2487.0, + "new_cases": 179.0, + "new_cases_smoothed": 148.714, + "total_deaths": 40.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 448.859, + "new_cases_per_million": 32.306, + "new_cases_smoothed_per_million": 26.84, + "total_deaths_per_million": 7.219, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 0.593, + "new_tests": 2434.0, + "total_tests": 43650.0, + "total_tests_per_thousand": 7.878, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 2341.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 15.742, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-10", + "total_cases": 2605.0, + "new_cases": 118.0, + "new_cases_smoothed": 155.286, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 470.156, + "new_cases_per_million": 21.297, + "new_cases_smoothed_per_million": 28.026, + "total_deaths_per_million": 7.58, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.593, + "new_tests": 3243.0, + "total_tests": 46893.0, + "total_tests_per_thousand": 8.463, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 2563.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 16.505, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-11", + "total_cases": 2769.0, + "new_cases": 164.0, + "new_cases_smoothed": 164.857, + "total_deaths": 48.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 499.755, + "new_cases_per_million": 29.599, + "new_cases_smoothed_per_million": 29.754, + "total_deaths_per_million": 8.663, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 0.722, + "new_tests": 1318.0, + "total_tests": 48211.0, + "total_tests_per_thousand": 8.701, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 2290.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 13.890999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-12", + "total_cases": 2905.0, + "new_cases": 136.0, + "new_cases_smoothed": 146.143, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 524.3, + "new_cases_per_million": 24.546, + "new_cases_smoothed_per_million": 26.376, + "total_deaths_per_million": 8.844, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.619, + "new_tests": 1588.0, + "total_tests": 49799.0, + "total_tests_per_thousand": 8.988, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 2282.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 15.615, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-13", + "total_cases": 2974.0, + "new_cases": 69.0, + "new_cases_smoothed": 149.571, + "total_deaths": 56.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 536.754, + "new_cases_per_million": 12.453, + "new_cases_smoothed_per_million": 26.995, + "total_deaths_per_million": 10.107, + "new_deaths_per_million": 1.263, + "new_deaths_smoothed_per_million": 0.748, + "new_tests": 920.0, + "total_tests": 50719.0, + "total_tests_per_thousand": 9.154, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 2132.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 14.254000000000001, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-14", + "total_cases": 3064.0, + "new_cases": 90.0, + "new_cases_smoothed": 126.857, + "total_deaths": 59.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 552.997, + "new_cases_per_million": 16.243, + "new_cases_smoothed_per_million": 22.895, + "total_deaths_per_million": 10.648, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 1191.0, + "total_tests": 51910.0, + "total_tests_per_thousand": 9.369, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 1999.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 15.758, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 60.19 + }, + { + "date": "2020-04-15", + "total_cases": 3161.0, + "new_cases": 97.0, + "new_cases_smoothed": 121.857, + "total_deaths": 64.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 570.504, + "new_cases_per_million": 17.507, + "new_cases_smoothed_per_million": 21.993, + "total_deaths_per_million": 11.551, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 0.773, + "new_tests": 2293.0, + "total_tests": 54203.0, + "total_tests_per_thousand": 9.783, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 1855.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 15.222999999999999, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-16", + "total_cases": 3237.0, + "new_cases": 76.0, + "new_cases_smoothed": 107.143, + "total_deaths": 72.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 584.22, + "new_cases_per_million": 13.717, + "new_cases_smoothed_per_million": 19.337, + "total_deaths_per_million": 12.995, + "new_deaths_per_million": 1.444, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 3462.0, + "total_tests": 57665.0, + "total_tests_per_thousand": 10.407, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 2002.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 18.685, + "positive_rate": 0.054000000000000006, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-17", + "total_cases": 3369.0, + "new_cases": 132.0, + "new_cases_smoothed": 109.143, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 608.044, + "new_cases_per_million": 23.824, + "new_cases_smoothed_per_million": 19.698, + "total_deaths_per_million": 13.536, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.851, + "new_tests": 2714.0, + "total_tests": 60379.0, + "total_tests_per_thousand": 10.897, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 1927.0, + "new_tests_smoothed_per_thousand": 0.348, + "tests_per_case": 17.656, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-18", + "total_cases": 3489.0, + "new_cases": 120.0, + "new_cases_smoothed": 102.857, + "total_deaths": 82.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 629.702, + "new_cases_per_million": 21.658, + "new_cases_smoothed_per_million": 18.564, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 1.263, + "new_deaths_smoothed_per_million": 0.877, + "new_tests": 3598.0, + "total_tests": 63977.0, + "total_tests_per_thousand": 11.547, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 2252.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 21.894000000000002, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-19", + "total_cases": 3681.0, + "new_cases": 192.0, + "new_cases_smoothed": 110.857, + "total_deaths": 90.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 664.354, + "new_cases_per_million": 34.653, + "new_cases_smoothed_per_million": 20.008, + "total_deaths_per_million": 16.243, + "new_deaths_per_million": 1.444, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 2359.0, + "total_tests": 66336.0, + "total_tests_per_thousand": 11.972, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 2362.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 21.307, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-20", + "total_cases": 3783.0, + "new_cases": 102.0, + "new_cases_smoothed": 115.571, + "total_deaths": 94.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 682.763, + "new_cases_per_million": 18.409, + "new_cases_smoothed_per_million": 20.859, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.98, + "new_tests": 1790.0, + "total_tests": 68126.0, + "total_tests_per_thousand": 12.296, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 2487.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 21.519000000000002, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-21", + "total_cases": 3868.0, + "new_cases": 85.0, + "new_cases_smoothed": 114.857, + "total_deaths": 98.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 698.104, + "new_cases_per_million": 15.341, + "new_cases_smoothed_per_million": 20.73, + "total_deaths_per_million": 17.687, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 1.006, + "new_tests": 3509.0, + "total_tests": 71635.0, + "total_tests_per_thousand": 12.929, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 2818.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 24.535, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-22", + "total_cases": 4014.0, + "new_cases": 146.0, + "new_cases_smoothed": 121.857, + "total_deaths": 141.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 724.455, + "new_cases_per_million": 26.35, + "new_cases_smoothed_per_million": 21.993, + "total_deaths_per_million": 25.448, + "new_deaths_per_million": 7.761, + "new_deaths_smoothed_per_million": 1.985, + "new_tests": 4125.0, + "total_tests": 75760.0, + "total_tests_per_thousand": 13.673, + "new_tests_per_thousand": 0.744, + "new_tests_smoothed": 3080.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 25.275, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-23", + "total_cases": 4129.0, + "new_cases": 115.0, + "new_cases_smoothed": 127.429, + "total_deaths": 149.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 745.21, + "new_cases_per_million": 20.755, + "new_cases_smoothed_per_million": 22.999, + "total_deaths_per_million": 26.892, + "new_deaths_per_million": 1.444, + "new_deaths_smoothed_per_million": 1.985, + "new_tests": 3582.0, + "total_tests": 79342.0, + "total_tests_per_thousand": 14.32, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 3097.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 24.304000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-24", + "total_cases": 4284.0, + "new_cases": 155.0, + "new_cases_smoothed": 130.714, + "total_deaths": 172.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 773.185, + "new_cases_per_million": 27.975, + "new_cases_smoothed_per_million": 23.592, + "total_deaths_per_million": 31.043, + "new_deaths_per_million": 4.151, + "new_deaths_smoothed_per_million": 2.501, + "new_tests": 3941.0, + "total_tests": 83283.0, + "total_tests_per_thousand": 15.031, + "new_tests_per_thousand": 0.711, + "new_tests_smoothed": 3272.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 25.031999999999996, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-25", + "total_cases": 4395.0, + "new_cases": 111.0, + "new_cases_smoothed": 129.429, + "total_deaths": 177.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 793.218, + "new_cases_per_million": 20.034, + "new_cases_smoothed_per_million": 23.36, + "total_deaths_per_million": 31.945, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 2.449, + "new_tests": 2997.0, + "total_tests": 86280.0, + "total_tests_per_thousand": 15.572, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 3186.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 24.616, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-26", + "total_cases": 4475.0, + "new_cases": 80.0, + "new_cases_smoothed": 113.429, + "total_deaths": 186.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 807.657, + "new_cases_per_million": 14.439, + "new_cases_smoothed_per_million": 20.472, + "total_deaths_per_million": 33.57, + "new_deaths_per_million": 1.624, + "new_deaths_smoothed_per_million": 2.475, + "new_tests": 2481.0, + "total_tests": 88761.0, + "total_tests_per_thousand": 16.02, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 3204.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 28.247, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-27", + "total_cases": 4576.0, + "new_cases": 101.0, + "new_cases_smoothed": 113.286, + "total_deaths": 190.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 825.886, + "new_cases_per_million": 18.229, + "new_cases_smoothed_per_million": 20.446, + "total_deaths_per_million": 34.292, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 2.475, + "new_tests": 2402.0, + "total_tests": 91163.0, + "total_tests_per_thousand": 16.453, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 3291.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 29.05, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-28", + "total_cases": 4695.0, + "new_cases": 119.0, + "new_cases_smoothed": 118.143, + "total_deaths": 193.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 847.363, + "new_cases_per_million": 21.477, + "new_cases_smoothed_per_million": 21.323, + "total_deaths_per_million": 34.833, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 2.449, + "new_tests": 3656.0, + "total_tests": 94819.0, + "total_tests_per_thousand": 17.113, + "new_tests_per_thousand": 0.66, + "new_tests_smoothed": 3312.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 28.034000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-29", + "total_cases": 4740.0, + "new_cases": 45.0, + "new_cases_smoothed": 103.714, + "total_deaths": 199.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 855.485, + "new_cases_per_million": 8.122, + "new_cases_smoothed_per_million": 18.719, + "total_deaths_per_million": 35.916, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 1.495, + "new_tests": 4314.0, + "total_tests": 99133.0, + "total_tests_per_thousand": 17.892, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 3339.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 32.194, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-04-30", + "total_cases": 4906.0, + "new_cases": 166.0, + "new_cases_smoothed": 111.0, + "total_deaths": 206.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 885.445, + "new_cases_per_million": 29.96, + "new_cases_smoothed_per_million": 20.034, + "total_deaths_per_million": 37.179, + "new_deaths_per_million": 1.263, + "new_deaths_smoothed_per_million": 1.47, + "new_tests": 4048.0, + "total_tests": 103181.0, + "total_tests_per_thousand": 18.622, + "new_tests_per_thousand": 0.731, + "new_tests_smoothed": 3406.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 30.685, + "positive_rate": 0.033, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-01", + "total_cases": 4995.0, + "new_cases": 89.0, + "new_cases_smoothed": 101.571, + "total_deaths": 211.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 901.508, + "new_cases_per_million": 16.063, + "new_cases_smoothed_per_million": 18.332, + "total_deaths_per_million": 38.082, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 1.006, + "new_tests": 3257.0, + "total_tests": 106438.0, + "total_tests_per_thousand": 19.21, + "new_tests_per_thousand": 0.588, + "new_tests_smoothed": 3308.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 32.568000000000005, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-02", + "total_cases": 5051.0, + "new_cases": 56.0, + "new_cases_smoothed": 93.714, + "total_deaths": 218.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 911.615, + "new_cases_per_million": 10.107, + "new_cases_smoothed_per_million": 16.914, + "total_deaths_per_million": 39.345, + "new_deaths_per_million": 1.263, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1464.0, + "total_tests": 107902.0, + "total_tests_per_thousand": 19.474, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 3089.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 32.961999999999996, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-03", + "total_cases": 5179.0, + "new_cases": 128.0, + "new_cases_smoothed": 100.571, + "total_deaths": 220.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 934.716, + "new_cases_per_million": 23.102, + "new_cases_smoothed_per_million": 18.151, + "total_deaths_per_million": 39.706, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.877, + "new_tests": 1616.0, + "total_tests": 109518.0, + "total_tests_per_thousand": 19.766, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 2965.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 29.482, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-04", + "total_cases": 5254.0, + "new_cases": 75.0, + "new_cases_smoothed": 96.857, + "total_deaths": 230.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 948.253, + "new_cases_per_million": 13.536, + "new_cases_smoothed_per_million": 17.481, + "total_deaths_per_million": 41.511, + "new_deaths_per_million": 1.805, + "new_deaths_smoothed_per_million": 1.031, + "new_tests": 1717.0, + "total_tests": 111235.0, + "total_tests_per_thousand": 20.076, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 2867.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 29.6, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-05", + "total_cases": 5327.0, + "new_cases": 73.0, + "new_cases_smoothed": 90.286, + "total_deaths": 240.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 961.428, + "new_cases_per_million": 13.175, + "new_cases_smoothed_per_million": 16.295, + "total_deaths_per_million": 43.316, + "new_deaths_per_million": 1.805, + "new_deaths_smoothed_per_million": 1.212, + "new_tests": 3681.0, + "total_tests": 114916.0, + "total_tests_per_thousand": 20.74, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 2871.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 31.799, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-06", + "total_cases": 5412.0, + "new_cases": 85.0, + "new_cases_smoothed": 96.0, + "total_deaths": 246.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 976.769, + "new_cases_per_million": 15.341, + "new_cases_smoothed_per_million": 17.326, + "total_deaths_per_million": 44.399, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 1.212, + "new_tests": 3696.0, + "total_tests": 118612.0, + "total_tests_per_thousand": 21.407, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 2783.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 28.99, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-07", + "total_cases": 5573.0, + "new_cases": 161.0, + "new_cases_smoothed": 95.286, + "total_deaths": 252.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1005.826, + "new_cases_per_million": 29.058, + "new_cases_smoothed_per_million": 17.197, + "total_deaths_per_million": 45.481, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 1.186, + "new_tests": 3712.0, + "total_tests": 122324.0, + "total_tests_per_thousand": 22.077, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 2735.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 28.703000000000003, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-08", + "total_cases": 5673.0, + "new_cases": 100.0, + "new_cases_smoothed": 96.857, + "total_deaths": 255.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1023.875, + "new_cases_per_million": 18.048, + "new_cases_smoothed_per_million": 17.481, + "total_deaths_per_million": 46.023, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 1.134, + "new_tests": 3179.0, + "total_tests": 125503.0, + "total_tests_per_thousand": 22.651, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 2724.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 28.124000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-09", + "total_cases": 5738.0, + "new_cases": 65.0, + "new_cases_smoothed": 98.143, + "total_deaths": 260.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1035.606, + "new_cases_per_million": 11.731, + "new_cases_smoothed_per_million": 17.713, + "total_deaths_per_million": 46.925, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 1.083, + "new_tests": 2680.0, + "total_tests": 128183.0, + "total_tests_per_thousand": 23.135, + "new_tests_per_thousand": 0.484, + "new_tests_smoothed": 2897.0, + "new_tests_smoothed_per_thousand": 0.523, + "tests_per_case": 29.518, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-10", + "total_cases": 5880.0, + "new_cases": 142.0, + "new_cases_smoothed": 100.143, + "total_deaths": 265.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1061.234, + "new_cases_per_million": 25.628, + "new_cases_smoothed_per_million": 18.074, + "total_deaths_per_million": 47.828, + "new_deaths_per_million": 0.902, + "new_deaths_smoothed_per_million": 1.16, + "new_tests": 1816.0, + "total_tests": 129999.0, + "total_tests_per_thousand": 23.462, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 2926.0, + "new_tests_smoothed_per_thousand": 0.528, + "tests_per_case": 29.218000000000004, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-11", + "total_cases": 5962.0, + "new_cases": 82.0, + "new_cases_smoothed": 101.143, + "total_deaths": 267.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1076.034, + "new_cases_per_million": 14.8, + "new_cases_smoothed_per_million": 18.254, + "total_deaths_per_million": 48.189, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.954, + "new_tests": 2158.0, + "total_tests": 132157.0, + "total_tests_per_thousand": 23.852, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 2989.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 29.552, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 5984.0, + "new_cases": 22.0, + "new_cases_smoothed": 93.857, + "total_deaths": 271.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1080.004, + "new_cases_per_million": 3.971, + "new_cases_smoothed_per_million": 16.94, + "total_deaths_per_million": 48.911, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 3916.0, + "total_tests": 136073.0, + "total_tests_per_thousand": 24.559, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 3022.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 32.198, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 6003.0, + "new_cases": 19.0, + "new_cases_smoothed": 84.429, + "total_deaths": 275.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1083.434, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 15.238, + "total_deaths_per_million": 49.633, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.748, + "new_tests": 3841.0, + "total_tests": 139914.0, + "total_tests_per_thousand": 25.252, + "new_tests_per_thousand": 0.693, + "new_tests_smoothed": 3043.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 36.042, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 6054.0, + "new_cases": 51.0, + "new_cases_smoothed": 68.714, + "total_deaths": 284.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1092.638, + "new_cases_per_million": 9.205, + "new_cases_smoothed_per_million": 12.402, + "total_deaths_per_million": 51.257, + "new_deaths_per_million": 1.624, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 3696.0, + "total_tests": 143610.0, + "total_tests_per_thousand": 25.919, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 3041.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 44.256, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-15", + "total_cases": 6145.0, + "new_cases": 91.0, + "new_cases_smoothed": 67.429, + "total_deaths": 287.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1109.062, + "new_cases_per_million": 16.424, + "new_cases_smoothed_per_million": 12.17, + "total_deaths_per_million": 51.798, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 4193.0, + "total_tests": 147803.0, + "total_tests_per_thousand": 26.676, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 3186.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 47.25, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-16", + "total_cases": 6228.0, + "new_cases": 83.0, + "new_cases_smoothed": 70.0, + "total_deaths": 293.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1124.042, + "new_cases_per_million": 14.98, + "new_cases_smoothed_per_million": 12.634, + "total_deaths_per_million": 52.881, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 0.851, + "new_tests": 3282.0, + "total_tests": 151085.0, + "total_tests_per_thousand": 27.268, + "new_tests_per_thousand": 0.592, + "new_tests_smoothed": 3272.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 46.743, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-17", + "total_cases": 6286.0, + "new_cases": 58.0, + "new_cases_smoothed": 58.0, + "total_deaths": 297.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1134.51, + "new_cases_per_million": 10.468, + "new_cases_smoothed_per_million": 10.468, + "total_deaths_per_million": 53.603, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 2283.0, + "total_tests": 153368.0, + "total_tests_per_thousand": 27.68, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 3338.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 57.552, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-18", + "total_cases": 6347.0, + "new_cases": 61.0, + "new_cases_smoothed": 55.0, + "total_deaths": 298.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1145.519, + "new_cases_per_million": 11.009, + "new_cases_smoothed_per_million": 9.927, + "total_deaths_per_million": 53.784, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 2314.0, + "total_tests": 155682.0, + "total_tests_per_thousand": 28.098, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 3361.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 61.108999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-19", + "total_cases": 6380.0, + "new_cases": 33.0, + "new_cases_smoothed": 56.571, + "total_deaths": 300.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1151.475, + "new_cases_per_million": 5.956, + "new_cases_smoothed_per_million": 10.21, + "total_deaths_per_million": 54.145, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.748, + "new_tests": 4715.0, + "total_tests": 160397.0, + "total_tests_per_thousand": 28.949, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 3475.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 61.427, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-20", + "total_cases": 6399.0, + "new_cases": 19.0, + "new_cases_smoothed": 56.571, + "total_deaths": 301.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1154.904, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 10.21, + "total_deaths_per_million": 54.325, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.67, + "new_tests": 3478.0, + "total_tests": 163875.0, + "total_tests_per_thousand": 29.576, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 3423.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 60.508, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-21", + "total_cases": 6443.0, + "new_cases": 44.0, + "new_cases_smoothed": 55.571, + "total_deaths": 304.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1162.846, + "new_cases_per_million": 7.941, + "new_cases_smoothed_per_million": 10.03, + "total_deaths_per_million": 54.867, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.516, + "new_tests": 2848.0, + "total_tests": 166723.0, + "total_tests_per_thousand": 30.091, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 3302.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 59.419, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-22", + "total_cases": 6493.0, + "new_cases": 50.0, + "new_cases_smoothed": 49.714, + "total_deaths": 306.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1171.87, + "new_cases_per_million": 9.024, + "new_cases_smoothed_per_million": 8.973, + "total_deaths_per_million": 55.227, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 2212.0, + "total_tests": 168935.0, + "total_tests_per_thousand": 30.49, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 3019.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 60.727, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-23", + "total_cases": 6537.0, + "new_cases": 44.0, + "new_cases_smoothed": 44.143, + "total_deaths": 306.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1179.811, + "new_cases_per_million": 7.941, + "new_cases_smoothed_per_million": 7.967, + "total_deaths_per_million": 55.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 2498.0, + "total_tests": 171433.0, + "total_tests_per_thousand": 30.941, + "new_tests_per_thousand": 0.451, + "new_tests_smoothed": 2907.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 65.854, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-24", + "total_cases": 6568.0, + "new_cases": 31.0, + "new_cases_smoothed": 40.286, + "total_deaths": 306.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1185.406, + "new_cases_per_million": 5.595, + "new_cases_smoothed_per_million": 7.271, + "total_deaths_per_million": 55.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 1561.0, + "total_tests": 172994.0, + "total_tests_per_thousand": 31.222, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 2804.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 69.60300000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-25", + "total_cases": 6579.0, + "new_cases": 11.0, + "new_cases_smoothed": 33.143, + "total_deaths": 307.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1187.391, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 5.982, + "total_deaths_per_million": 55.408, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 1703.0, + "total_tests": 174697.0, + "total_tests_per_thousand": 31.53, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 2716.0, + "new_tests_smoothed_per_thousand": 0.49, + "tests_per_case": 81.948, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-26", + "total_cases": 6599.0, + "new_cases": 20.0, + "new_cases_smoothed": 31.286, + "total_deaths": 308.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1191.001, + "new_cases_per_million": 3.61, + "new_cases_smoothed_per_million": 5.647, + "total_deaths_per_million": 55.588, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 3516.0, + "total_tests": 178213.0, + "total_tests_per_thousand": 32.164, + "new_tests_per_thousand": 0.635, + "new_tests_smoothed": 2545.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 81.347, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-27", + "total_cases": 6628.0, + "new_cases": 29.0, + "new_cases_smoothed": 32.714, + "total_deaths": 312.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1196.235, + "new_cases_per_million": 5.234, + "new_cases_smoothed_per_million": 5.904, + "total_deaths_per_million": 56.31, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.284, + "new_tests": 2869.0, + "total_tests": 181082.0, + "total_tests_per_thousand": 32.682, + "new_tests_per_thousand": 0.518, + "new_tests_smoothed": 2458.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 75.135, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-28", + "total_cases": 6692.0, + "new_cases": 64.0, + "new_cases_smoothed": 35.571, + "total_deaths": 313.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1207.786, + "new_cases_per_million": 11.551, + "new_cases_smoothed_per_million": 6.42, + "total_deaths_per_million": 56.491, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 2862.0, + "total_tests": 183944.0, + "total_tests_per_thousand": 33.199, + "new_tests_per_thousand": 0.517, + "new_tests_smoothed": 2460.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 69.157, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-05-29", + "total_cases": 6743.0, + "new_cases": 51.0, + "new_cases_smoothed": 35.714, + "total_deaths": 313.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1216.99, + "new_cases_per_million": 9.205, + "new_cases_smoothed_per_million": 6.446, + "total_deaths_per_million": 56.491, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 2695.0, + "total_tests": 186639.0, + "total_tests_per_thousand": 33.685, + "new_tests_per_thousand": 0.486, + "new_tests_smoothed": 2529.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 70.812, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 45.37 + }, + { + "date": "2020-05-30", + "total_cases": 6776.0, + "new_cases": 33.0, + "new_cases_smoothed": 34.143, + "total_deaths": 314.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1222.946, + "new_cases_per_million": 5.956, + "new_cases_smoothed_per_million": 6.162, + "total_deaths_per_million": 56.671, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1814.0, + "total_tests": 188453.0, + "total_tests_per_thousand": 34.012, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 2431.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 71.20100000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 45.37 + }, + { + "date": "2020-05-31", + "total_cases": 6826.0, + "new_cases": 50.0, + "new_cases_smoothed": 36.857, + "total_deaths": 316.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1231.97, + "new_cases_per_million": 9.024, + "new_cases_smoothed_per_million": 6.652, + "total_deaths_per_million": 57.032, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 1276.0, + "total_tests": 189729.0, + "total_tests_per_thousand": 34.243, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 2391.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 64.872, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 45.37 + }, + { + "date": "2020-06-01", + "total_cases": 6859.0, + "new_cases": 33.0, + "new_cases_smoothed": 40.0, + "total_deaths": 320.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1237.926, + "new_cases_per_million": 5.956, + "new_cases_smoothed_per_million": 7.219, + "total_deaths_per_million": 57.754, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 1737.0, + "total_tests": 191466.0, + "total_tests_per_thousand": 34.556, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 2396.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 59.9, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-02", + "total_cases": 6885.0, + "new_cases": 26.0, + "new_cases_smoothed": 40.857, + "total_deaths": 320.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1242.619, + "new_cases_per_million": 4.693, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 57.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.309, + "new_tests": 3777.0, + "total_tests": 195243.0, + "total_tests_per_thousand": 35.238, + "new_tests_per_thousand": 0.682, + "new_tests_smoothed": 2433.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 59.549, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-03", + "total_cases": 6887.0, + "new_cases": 2.0, + "new_cases_smoothed": 37.0, + "total_deaths": 320.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1242.98, + "new_cases_per_million": 0.361, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 57.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 2767.0, + "total_tests": 198010.0, + "total_tests_per_thousand": 35.737, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 2418.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 65.351, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-04", + "total_cases": 6911.0, + "new_cases": 24.0, + "new_cases_smoothed": 31.286, + "total_deaths": 321.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1247.311, + "new_cases_per_million": 4.332, + "new_cases_smoothed_per_million": 5.647, + "total_deaths_per_million": 57.935, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 2641.0, + "total_tests": 200651.0, + "total_tests_per_thousand": 36.214, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 2387.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 76.297, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-05", + "total_cases": 6911.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.0, + "total_deaths": 322.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1247.311, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.332, + "total_deaths_per_million": 58.115, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 2240.0, + "total_tests": 202891.0, + "total_tests_per_thousand": 36.618, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 2322.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 96.75, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-06", + "total_cases": 6941.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.571, + "total_deaths": 322.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1252.726, + "new_cases_per_million": 5.414, + "new_cases_smoothed_per_million": 4.254, + "total_deaths_per_million": 58.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1962.0, + "total_tests": 204853.0, + "total_tests_per_thousand": 36.972, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 2343.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 99.4, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-07", + "total_cases": 6964.0, + "new_cases": 23.0, + "new_cases_smoothed": 19.714, + "total_deaths": 322.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1256.877, + "new_cases_per_million": 4.151, + "new_cases_smoothed_per_million": 3.558, + "total_deaths_per_million": 58.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 960.0, + "total_tests": 205813.0, + "total_tests_per_thousand": 37.146, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 2298.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 116.565, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-08", + "total_cases": 6981.0, + "new_cases": 17.0, + "new_cases_smoothed": 17.429, + "total_deaths": 323.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1259.945, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 3.146, + "total_deaths_per_million": 58.296, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1840.0, + "total_tests": 207653.0, + "total_tests_per_thousand": 37.478, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 2312.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 132.656, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-09", + "total_cases": 7001.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.571, + "total_deaths": 323.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1263.555, + "new_cases_per_million": 3.61, + "new_cases_smoothed_per_million": 2.991, + "total_deaths_per_million": 58.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 2837.0, + "total_tests": 210490.0, + "total_tests_per_thousand": 37.99, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 2178.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 131.431, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-10", + "total_cases": 7025.0, + "new_cases": 24.0, + "new_cases_smoothed": 19.714, + "total_deaths": 324.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1267.886, + "new_cases_per_million": 4.332, + "new_cases_smoothed_per_million": 3.558, + "total_deaths_per_million": 58.476, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 2879.0, + "total_tests": 213369.0, + "total_tests_per_thousand": 38.509, + "new_tests_per_thousand": 0.52, + "new_tests_smoothed": 2194.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 111.29, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-11", + "total_cases": 7040.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.429, + "total_deaths": 324.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1270.593, + "new_cases_per_million": 2.707, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 58.476, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 2899.0, + "total_tests": 216268.0, + "total_tests_per_thousand": 39.032, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 2231.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 121.06200000000001, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-12", + "total_cases": 7064.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.857, + "total_deaths": 325.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1274.925, + "new_cases_per_million": 4.332, + "new_cases_smoothed_per_million": 3.945, + "total_deaths_per_million": 58.657, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 2433.0, + "total_tests": 218701.0, + "total_tests_per_thousand": 39.472, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 2259.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 103.353, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-13", + "total_cases": 7073.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.857, + "total_deaths": 325.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1276.549, + "new_cases_per_million": 1.624, + "new_cases_smoothed_per_million": 3.403, + "total_deaths_per_million": 58.657, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1443.0, + "total_tests": 220144.0, + "total_tests_per_thousand": 39.732, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 2184.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 115.818, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-14", + "total_cases": 7087.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.571, + "total_deaths": 325.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1279.076, + "new_cases_per_million": 2.527, + "new_cases_smoothed_per_million": 3.171, + "total_deaths_per_million": 58.657, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 827.0, + "total_tests": 220971.0, + "total_tests_per_thousand": 39.881, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 2165.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 123.211, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 41.67 + }, + { + "date": "2020-06-15", + "total_cases": 7104.0, + "new_cases": 17.0, + "new_cases_smoothed": 17.571, + "total_deaths": 326.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1282.144, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 3.171, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1883.0, + "total_tests": 222854.0, + "total_tests_per_thousand": 40.221, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 2172.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 123.61, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-16", + "total_cases": 7108.0, + "new_cases": 4.0, + "new_cases_smoothed": 15.286, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1282.866, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 2.759, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 2914.0, + "total_tests": 225768.0, + "total_tests_per_thousand": 40.747, + "new_tests_per_thousand": 0.526, + "new_tests_smoothed": 2183.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 142.813, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-17", + "total_cases": 7112.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.429, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1283.588, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 2.243, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2612.0, + "total_tests": 228380.0, + "total_tests_per_thousand": 41.218, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 2144.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 172.50599999999997, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-18", + "total_cases": 7117.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.0, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1284.491, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.985, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2120.0, + "total_tests": 230500.0, + "total_tests_per_thousand": 41.601, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2033.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 184.81799999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-19", + "total_cases": 7117.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1284.491, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.367, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1371.0, + "total_tests": 231871.0, + "total_tests_per_thousand": 41.849, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 1881.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 248.43400000000003, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-20", + "total_cases": 7133.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.571, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1287.378, + "new_cases_per_million": 2.888, + "new_cases_smoothed_per_million": 1.547, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 742.0, + "total_tests": 232613.0, + "total_tests_per_thousand": 41.982, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 1781.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 207.783, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-21", + "total_cases": 7142.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1289.003, + "new_cases_per_million": 1.624, + "new_cases_smoothed_per_million": 1.418, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 685.0, + "total_tests": 233298.0, + "total_tests_per_thousand": 42.106, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 1761.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 224.127, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-22", + "total_cases": 7143.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.571, + "total_deaths": 326.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1289.183, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 1.006, + "total_deaths_per_million": 58.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1604.0, + "total_tests": 234902.0, + "total_tests_per_thousand": 42.396, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 1721.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 308.897, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-23", + "total_cases": 7144.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 327.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1289.364, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.928, + "total_deaths_per_million": 59.018, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2530.0, + "total_tests": 237432.0, + "total_tests_per_thousand": 42.852, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 1666.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 323.944, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-24", + "total_cases": 7155.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.143, + "total_deaths": 327.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1291.349, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 1.109, + "total_deaths_per_million": 59.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2289.0, + "total_tests": 239721.0, + "total_tests_per_thousand": 43.265, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 1620.0, + "new_tests_smoothed_per_thousand": 0.292, + "tests_per_case": 263.721, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-25", + "total_cases": 7167.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.143, + "total_deaths": 327.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1293.515, + "new_cases_per_million": 2.166, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 59.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2537.0, + "total_tests": 242258.0, + "total_tests_per_thousand": 43.723, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 1680.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 235.2, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-26", + "total_cases": 7172.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.857, + "total_deaths": 327.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1294.417, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.418, + "total_deaths_per_million": 59.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2148.0, + "total_tests": 244406.0, + "total_tests_per_thousand": 44.111, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 1791.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 227.945, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-27", + "total_cases": 7191.0, + "new_cases": 19.0, + "new_cases_smoothed": 8.286, + "total_deaths": 328.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1297.846, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 1.495, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1512.0, + "total_tests": 245918.0, + "total_tests_per_thousand": 44.384, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 1901.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 229.43099999999998, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-28", + "total_cases": 7191.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1297.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.263, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 960.0, + "total_tests": 246878.0, + "total_tests_per_thousand": 44.557, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 1940.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 277.143, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-29", + "total_cases": 7191.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1297.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.238, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1672.0, + "total_tests": 248550.0, + "total_tests_per_thousand": 44.859, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 1950.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 284.375, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-06-30", + "total_cases": 7209.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.286, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1301.095, + "new_cases_per_million": 3.249, + "new_cases_smoothed_per_million": 1.676, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2770.0, + "total_tests": 251320.0, + "total_tests_per_thousand": 45.359, + "new_tests_per_thousand": 0.5, + "new_tests_smoothed": 1984.0, + "new_tests_smoothed_per_thousand": 0.358, + "tests_per_case": 213.662, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-01", + "total_cases": 7214.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.429, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1301.997, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.521, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2678.0, + "total_tests": 253998.0, + "total_tests_per_thousand": 45.842, + "new_tests_per_thousand": 0.483, + "new_tests_smoothed": 2040.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 242.03400000000002, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-02", + "total_cases": 7236.0, + "new_cases": 22.0, + "new_cases_smoothed": 9.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1305.968, + "new_cases_per_million": 3.971, + "new_cases_smoothed_per_million": 1.779, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3711.0, + "total_tests": 257709.0, + "total_tests_per_thousand": 46.512, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 2207.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 223.899, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-03", + "total_cases": 7241.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1306.87, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.779, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3155.0, + "total_tests": 260864.0, + "total_tests_per_thousand": 47.081, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 2351.0, + "new_tests_smoothed_per_thousand": 0.424, + "tests_per_case": 238.507, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-04", + "total_cases": 7269.0, + "new_cases": 28.0, + "new_cases_smoothed": 11.143, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1311.924, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 2.011, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2575.0, + "total_tests": 263439.0, + "total_tests_per_thousand": 47.546, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 2503.0, + "new_tests_smoothed_per_thousand": 0.452, + "tests_per_case": 224.628, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-05", + "total_cases": 7270.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.286, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1312.104, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 2.037, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1310.0, + "total_tests": 264749.0, + "total_tests_per_thousand": 47.782, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 2553.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 226.215, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-06", + "total_cases": 7272.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.571, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1312.465, + "new_cases_per_million": 0.361, + "new_cases_smoothed_per_million": 2.088, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2159.0, + "total_tests": 266908.0, + "total_tests_per_thousand": 48.172, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 2623.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 226.679, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-07", + "total_cases": 7275.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.429, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1313.007, + "new_cases_per_million": 0.541, + "new_cases_smoothed_per_million": 1.702, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4428.0, + "total_tests": 271336.0, + "total_tests_per_thousand": 48.971, + "new_tests_per_thousand": 0.799, + "new_tests_smoothed": 2859.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 303.22700000000003, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-08", + "total_cases": 7276.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1313.187, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 1.599, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4258.0, + "total_tests": 275594.0, + "total_tests_per_thousand": 49.74, + "new_tests_per_thousand": 0.768, + "new_tests_smoothed": 3085.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 348.306, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-07-09", + "total_cases": 7283.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1314.451, + "new_cases_per_million": 1.263, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4764.0, + "total_tests": 280358.0, + "total_tests_per_thousand": 50.6, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 3236.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 481.957, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-10", + "total_cases": 7287.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1315.173, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4285.0, + "total_tests": 284643.0, + "total_tests_per_thousand": 51.373, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 3397.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 516.935, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-11", + "total_cases": 7290.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1315.714, + "new_cases_per_million": 0.541, + "new_cases_smoothed_per_million": 0.541, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3199.0, + "total_tests": 287842.0, + "total_tests_per_thousand": 51.95, + "new_tests_per_thousand": 0.577, + "new_tests_smoothed": 3486.0, + "new_tests_smoothed_per_thousand": 0.629, + "tests_per_case": 1162.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-12", + "total_cases": 7290.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1315.714, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2326.0, + "total_tests": 290168.0, + "total_tests_per_thousand": 52.37, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 3631.0, + "new_tests_smoothed_per_thousand": 0.655, + "tests_per_case": 1270.85, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-13", + "total_cases": 7292.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1316.075, + "new_cases_per_million": 0.361, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3055.0, + "total_tests": 293223.0, + "total_tests_per_thousand": 52.921, + "new_tests_per_thousand": 0.551, + "new_tests_smoothed": 3759.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 1315.65, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-14", + "total_cases": 7293.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1316.255, + "new_cases_per_million": 0.18, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5252.0, + "total_tests": 298475.0, + "total_tests_per_thousand": 53.869, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 3877.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 1507.7220000000002, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-15", + "total_cases": 7293.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1316.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.438, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5182.0, + "total_tests": 303657.0, + "total_tests_per_thousand": 54.805, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 4009.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 1650.765, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-16", + "total_cases": 7293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1316.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.258, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4827.0, + "total_tests": 308484.0, + "total_tests_per_thousand": 55.676, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 4018.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 2812.6, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-17", + "total_cases": 7293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1316.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4884.0, + "total_tests": 313368.0, + "total_tests_per_thousand": 56.557, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 4104.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 4788.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-18", + "total_cases": 7301.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.571, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1317.699, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 0.284, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4069.0, + "total_tests": 317437.0, + "total_tests_per_thousand": 57.292, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 4228.0, + "new_tests_smoothed_per_thousand": 0.763, + "tests_per_case": 2690.545, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-19", + "total_cases": 7318.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.0, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1320.767, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 0.722, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2133.0, + "total_tests": 319570.0, + "total_tests_per_thousand": 57.677, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 4200.0, + "new_tests_smoothed_per_thousand": 0.758, + "tests_per_case": 1050.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-20", + "total_cases": 7338.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.571, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1324.377, + "new_cases_per_million": 3.61, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3289.0, + "total_tests": 322859.0, + "total_tests_per_thousand": 58.27, + "new_tests_per_thousand": 0.594, + "new_tests_smoothed": 4234.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 644.304, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-21", + "total_cases": 7340.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1324.738, + "new_cases_per_million": 0.361, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5290.0, + "total_tests": 328149.0, + "total_tests_per_thousand": 59.225, + "new_tests_per_thousand": 0.955, + "new_tests_smoothed": 4239.0, + "new_tests_smoothed_per_thousand": 0.765, + "tests_per_case": 631.34, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-22", + "total_cases": 7351.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1326.723, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 1.495, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4876.0, + "total_tests": 333025.0, + "total_tests_per_thousand": 60.105, + "new_tests_per_thousand": 0.88, + "new_tests_smoothed": 4195.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 506.293, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-23", + "total_cases": 7362.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.857, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1328.709, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 1.779, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5141.0, + "total_tests": 338166.0, + "total_tests_per_thousand": 61.033, + "new_tests_per_thousand": 0.928, + "new_tests_smoothed": 4240.0, + "new_tests_smoothed_per_thousand": 0.765, + "tests_per_case": 430.145, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-24", + "total_cases": 7372.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.286, + "total_deaths": 328.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1330.513, + "new_cases_per_million": 1.805, + "new_cases_smoothed_per_million": 2.037, + "total_deaths_per_million": 59.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4668.0, + "total_tests": 342834.0, + "total_tests_per_thousand": 61.875, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 4209.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 372.949, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-25", + "total_cases": 7380.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.286, + "total_deaths": 329.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1331.957, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 2.037, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3622.0, + "total_tests": 346456.0, + "total_tests_per_thousand": 62.529, + "new_tests_per_thousand": 0.654, + "new_tests_smoothed": 4146.0, + "new_tests_smoothed_per_thousand": 0.748, + "tests_per_case": 367.36699999999996, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-26", + "total_cases": 7388.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.0, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1333.401, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 1.805, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2291.0, + "total_tests": 348747.0, + "total_tests_per_thousand": 62.943, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 4168.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 416.8, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-27", + "total_cases": 7393.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.857, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1334.304, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.418, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3379.0, + "total_tests": 352126.0, + "total_tests_per_thousand": 63.552, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 4181.0, + "new_tests_smoothed_per_thousand": 0.755, + "tests_per_case": 532.127, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-28", + "total_cases": 7398.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.286, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1335.206, + "new_cases_per_million": 0.902, + "new_cases_smoothed_per_million": 1.495, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5403.0, + "total_tests": 357529.0, + "total_tests_per_thousand": 64.528, + "new_tests_per_thousand": 0.975, + "new_tests_smoothed": 4197.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 506.534, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-29", + "total_cases": 7404.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1336.289, + "new_cases_per_million": 1.083, + "new_cases_smoothed_per_million": 1.367, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5238.0, + "total_tests": 362767.0, + "total_tests_per_thousand": 65.473, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 4249.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 561.189, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-30", + "total_cases": 7414.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1338.094, + "new_cases_per_million": 1.805, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5482.0, + "total_tests": 368249.0, + "total_tests_per_thousand": 66.462, + "new_tests_per_thousand": 0.989, + "new_tests_smoothed": 4298.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 578.577, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-07-31", + "total_cases": 7423.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.286, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1339.718, + "new_cases_per_million": 1.624, + "new_cases_smoothed_per_million": 1.315, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5362.0, + "total_tests": 373611.0, + "total_tests_per_thousand": 67.43, + "new_tests_per_thousand": 0.968, + "new_tests_smoothed": 4397.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 603.51, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-01", + "total_cases": 7432.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1341.342, + "new_cases_per_million": 1.624, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4035.0, + "total_tests": 377646.0, + "total_tests_per_thousand": 68.158, + "new_tests_per_thousand": 0.728, + "new_tests_smoothed": 4456.0, + "new_tests_smoothed_per_thousand": 0.804, + "tests_per_case": 599.846, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-02", + "total_cases": 7443.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.857, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1343.328, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 1.418, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4568.0, + "total_tests": 382214.0, + "total_tests_per_thousand": 68.983, + "new_tests_per_thousand": 0.824, + "new_tests_smoothed": 4781.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 608.491, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-03", + "total_cases": 7453.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.571, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1345.133, + "new_cases_per_million": 1.805, + "new_cases_smoothed_per_million": 1.547, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5242.0, + "total_tests": 387456.0, + "total_tests_per_thousand": 69.929, + "new_tests_per_thousand": 0.946, + "new_tests_smoothed": 5047.0, + "new_tests_smoothed_per_thousand": 0.911, + "tests_per_case": 588.817, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-04", + "total_cases": 7466.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.714, + "total_deaths": 329.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1347.479, + "new_cases_per_million": 2.346, + "new_cases_smoothed_per_million": 1.753, + "total_deaths_per_million": 59.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6468.0, + "total_tests": 393924.0, + "total_tests_per_thousand": 71.096, + "new_tests_per_thousand": 1.167, + "new_tests_smoothed": 5199.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 535.191, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-05", + "total_cases": 7483.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.286, + "total_deaths": 331.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1350.547, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 2.037, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 8259.0, + "total_tests": 402183.0, + "total_tests_per_thousand": 72.587, + "new_tests_per_thousand": 1.491, + "new_tests_smoothed": 5631.0, + "new_tests_smoothed_per_thousand": 1.016, + "tests_per_case": 498.949, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-06", + "total_cases": 7512.0, + "new_cases": 29.0, + "new_cases_smoothed": 14.0, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1355.781, + "new_cases_per_million": 5.234, + "new_cases_smoothed_per_million": 2.527, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 6830.0, + "total_tests": 409013.0, + "total_tests_per_thousand": 73.819, + "new_tests_per_thousand": 1.233, + "new_tests_smoothed": 5823.0, + "new_tests_smoothed_per_thousand": 1.051, + "tests_per_case": 415.92900000000003, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-07", + "total_cases": 7532.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.571, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1359.391, + "new_cases_per_million": 3.61, + "new_cases_smoothed_per_million": 2.81, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 8584.0, + "total_tests": 417597.0, + "total_tests_per_thousand": 75.369, + "new_tests_per_thousand": 1.549, + "new_tests_smoothed": 6284.0, + "new_tests_smoothed_per_thousand": 1.134, + "tests_per_case": 403.56, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-08", + "total_cases": 7554.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.429, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1363.361, + "new_cases_per_million": 3.971, + "new_cases_smoothed_per_million": 3.146, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 6057.0, + "total_tests": 423654.0, + "total_tests_per_thousand": 76.462, + "new_tests_per_thousand": 1.093, + "new_tests_smoothed": 6573.0, + "new_tests_smoothed_per_thousand": 1.186, + "tests_per_case": 377.139, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-09", + "total_cases": 7568.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.857, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1365.888, + "new_cases_per_million": 2.527, + "new_cases_smoothed_per_million": 3.223, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5725.0, + "total_tests": 429379.0, + "total_tests_per_thousand": 77.495, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 6738.0, + "new_tests_smoothed_per_thousand": 1.216, + "tests_per_case": 377.32800000000003, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-10", + "total_cases": 7584.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.714, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1368.776, + "new_cases_per_million": 2.888, + "new_cases_smoothed_per_million": 3.378, + "total_deaths_per_million": 59.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 7098.0, + "total_tests": 436477.0, + "total_tests_per_thousand": 78.776, + "new_tests_per_thousand": 1.281, + "new_tests_smoothed": 7003.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 374.20599999999996, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-11", + "total_cases": 7601.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.286, + "total_deaths": 333.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1371.844, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 3.481, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 10090.0, + "total_tests": 446567.0, + "total_tests_per_thousand": 80.597, + "new_tests_per_thousand": 1.821, + "new_tests_smoothed": 7520.0, + "new_tests_smoothed_per_thousand": 1.357, + "tests_per_case": 389.926, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-12", + "total_cases": 7623.0, + "new_cases": 22.0, + "new_cases_smoothed": 20.0, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1375.814, + "new_cases_per_million": 3.971, + "new_cases_smoothed_per_million": 3.61, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 11349.0, + "total_tests": 457916.0, + "total_tests_per_thousand": 82.646, + "new_tests_per_thousand": 2.048, + "new_tests_smoothed": 7962.0, + "new_tests_smoothed_per_thousand": 1.437, + "tests_per_case": 398.1, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-13", + "total_cases": 7642.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.571, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1379.244, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 3.352, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 11710.0, + "total_tests": 469626.0, + "total_tests_per_thousand": 84.759, + "new_tests_per_thousand": 2.113, + "new_tests_smoothed": 8659.0, + "new_tests_smoothed_per_thousand": 1.563, + "tests_per_case": 466.254, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-14", + "total_cases": 7683.0, + "new_cases": 41.0, + "new_cases_smoothed": 21.571, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1386.643, + "new_cases_per_million": 7.4, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 9343.0, + "total_tests": 478969.0, + "total_tests_per_thousand": 86.445, + "new_tests_per_thousand": 1.686, + "new_tests_smoothed": 8767.0, + "new_tests_smoothed_per_thousand": 1.582, + "tests_per_case": 406.417, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-15", + "total_cases": 7700.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.857, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1389.712, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 3.764, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 10136.0, + "total_tests": 489105.0, + "total_tests_per_thousand": 88.275, + "new_tests_per_thousand": 1.829, + "new_tests_smoothed": 9350.0, + "new_tests_smoothed_per_thousand": 1.688, + "tests_per_case": 448.288, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-16", + "total_cases": 7720.0, + "new_cases": 20.0, + "new_cases_smoothed": 21.714, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1393.321, + "new_cases_per_million": 3.61, + "new_cases_smoothed_per_million": 3.919, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 10518.0, + "total_tests": 499623.0, + "total_tests_per_thousand": 90.173, + "new_tests_per_thousand": 1.898, + "new_tests_smoothed": 10035.0, + "new_tests_smoothed_per_thousand": 1.811, + "tests_per_case": 462.13800000000003, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-17", + "total_cases": 7731.0, + "new_cases": 11.0, + "new_cases_smoothed": 21.0, + "total_deaths": 333.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1395.307, + "new_cases_per_million": 1.985, + "new_cases_smoothed_per_million": 3.79, + "total_deaths_per_million": 60.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 10468.0, + "total_tests": 510091.0, + "total_tests_per_thousand": 92.062, + "new_tests_per_thousand": 1.889, + "new_tests_smoothed": 10516.0, + "new_tests_smoothed_per_thousand": 1.898, + "tests_per_case": 500.76199999999994, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-18", + "total_cases": 7752.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.571, + "total_deaths": 334.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1399.097, + "new_cases_per_million": 3.79, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 11732.0, + "total_tests": 521823.0, + "total_tests_per_thousand": 94.18, + "new_tests_per_thousand": 2.117, + "new_tests_smoothed": 10751.0, + "new_tests_smoothed_per_thousand": 1.94, + "tests_per_case": 498.39099999999996, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-19", + "total_cases": 7776.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.857, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1403.428, + "new_cases_per_million": 4.332, + "new_cases_smoothed_per_million": 3.945, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 13927.0, + "total_tests": 535750.0, + "total_tests_per_thousand": 96.693, + "new_tests_per_thousand": 2.514, + "new_tests_smoothed": 11119.0, + "new_tests_smoothed_per_thousand": 2.007, + "tests_per_case": 508.712, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-20", + "total_cases": 7776.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.143, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1403.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.455, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 13205.0, + "total_tests": 548955.0, + "total_tests_per_thousand": 99.077, + "new_tests_per_thousand": 2.383, + "new_tests_smoothed": 11333.0, + "new_tests_smoothed_per_thousand": 2.045, + "tests_per_case": 592.0219999999999, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-21", + "total_cases": 7842.0, + "new_cases": 66.0, + "new_cases_smoothed": 22.714, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1415.34, + "new_cases_per_million": 11.912, + "new_cases_smoothed_per_million": 4.1, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 14466.0, + "total_tests": 563421.0, + "total_tests_per_thousand": 101.687, + "new_tests_per_thousand": 2.611, + "new_tests_smoothed": 12065.0, + "new_tests_smoothed_per_thousand": 2.178, + "tests_per_case": 531.164, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-22", + "total_cases": 7871.0, + "new_cases": 29.0, + "new_cases_smoothed": 24.429, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1420.574, + "new_cases_per_million": 5.234, + "new_cases_smoothed_per_million": 4.409, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 10142.0, + "total_tests": 573563.0, + "total_tests_per_thousand": 103.518, + "new_tests_per_thousand": 1.83, + "new_tests_smoothed": 12065.0, + "new_tests_smoothed_per_thousand": 2.178, + "tests_per_case": 493.889, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-23", + "total_cases": 7871.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.571, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1420.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 10226.0, + "total_tests": 583789.0, + "total_tests_per_thousand": 105.363, + "new_tests_per_thousand": 1.846, + "new_tests_smoothed": 12024.0, + "new_tests_smoothed_per_thousand": 2.17, + "tests_per_case": 557.404, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-24", + "total_cases": 7871.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.0, + "total_deaths": 334.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1420.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.61, + "total_deaths_per_million": 60.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 13085.0, + "total_tests": 596874.0, + "total_tests_per_thousand": 107.725, + "new_tests_per_thousand": 2.362, + "new_tests_smoothed": 12398.0, + "new_tests_smoothed_per_thousand": 2.238, + "tests_per_case": 619.9, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-25", + "total_cases": 7938.0, + "new_cases": 67.0, + "new_cases_smoothed": 26.571, + "total_deaths": 335.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1432.666, + "new_cases_per_million": 12.092, + "new_cases_smoothed_per_million": 4.796, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.18, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 14598.0, + "total_tests": 611472.0, + "total_tests_per_thousand": 110.36, + "new_tests_per_thousand": 2.635, + "new_tests_smoothed": 12807.0, + "new_tests_smoothed_per_thousand": 2.311, + "tests_per_case": 481.98400000000004, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-26", + "total_cases": 7981.0, + "new_cases": 43.0, + "new_cases_smoothed": 29.286, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1440.427, + "new_cases_per_million": 7.761, + "new_cases_smoothed_per_million": 5.286, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 14263.0, + "total_tests": 625735.0, + "total_tests_per_thousand": 112.934, + "new_tests_per_thousand": 2.574, + "new_tests_smoothed": 12855.0, + "new_tests_smoothed_per_thousand": 2.32, + "tests_per_case": 438.95099999999996, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-27", + "total_cases": 8002.0, + "new_cases": 21.0, + "new_cases_smoothed": 32.286, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1444.217, + "new_cases_per_million": 3.79, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 14286.0, + "total_tests": 640021.0, + "total_tests_per_thousand": 115.512, + "new_tests_per_thousand": 2.578, + "new_tests_smoothed": 13009.0, + "new_tests_smoothed_per_thousand": 2.348, + "tests_per_case": 402.934, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-28", + "total_cases": 8019.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.286, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1447.285, + "new_cases_per_million": 3.068, + "new_cases_smoothed_per_million": 4.564, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 11790.0, + "total_tests": 651811.0, + "total_tests_per_thousand": 117.64, + "new_tests_per_thousand": 2.128, + "new_tests_smoothed": 12627.0, + "new_tests_smoothed_per_thousand": 2.279, + "tests_per_case": 499.37300000000005, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-29", + "total_cases": 8042.0, + "new_cases": 23.0, + "new_cases_smoothed": 24.429, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1451.436, + "new_cases_per_million": 4.151, + "new_cases_smoothed_per_million": 4.409, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 12434.0, + "total_tests": 664245.0, + "total_tests_per_thousand": 119.884, + "new_tests_per_thousand": 2.244, + "new_tests_smoothed": 12955.0, + "new_tests_smoothed_per_thousand": 2.338, + "tests_per_case": 530.322, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-30", + "total_cases": 8049.0, + "new_cases": 7.0, + "new_cases_smoothed": 25.429, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1452.7, + "new_cases_per_million": 1.263, + "new_cases_smoothed_per_million": 4.589, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 11655.0, + "total_tests": 675900.0, + "total_tests_per_thousand": 121.988, + "new_tests_per_thousand": 2.104, + "new_tests_smoothed": 13159.0, + "new_tests_smoothed_per_thousand": 2.375, + "tests_per_case": 517.489, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-08-31", + "total_cases": 8077.0, + "new_cases": 28.0, + "new_cases_smoothed": 29.429, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1457.753, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 5.311, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 12580.0, + "total_tests": 688480.0, + "total_tests_per_thousand": 124.258, + "new_tests_per_thousand": 2.27, + "new_tests_smoothed": 13087.0, + "new_tests_smoothed_per_thousand": 2.362, + "tests_per_case": 444.704, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 8086.0, + "new_cases": 9.0, + "new_cases_smoothed": 21.143, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1459.378, + "new_cases_per_million": 1.624, + "new_cases_smoothed_per_million": 3.816, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13253.0, + "total_tests": 701733.0, + "total_tests_per_thousand": 126.65, + "new_tests_per_thousand": 2.392, + "new_tests_smoothed": 12894.0, + "new_tests_smoothed_per_thousand": 2.327, + "tests_per_case": 609.851, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 8142.0, + "new_cases": 56.0, + "new_cases_smoothed": 23.0, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1469.485, + "new_cases_per_million": 10.107, + "new_cases_smoothed_per_million": 4.151, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13350.0, + "total_tests": 715083.0, + "total_tests_per_thousand": 129.06, + "new_tests_per_thousand": 2.409, + "new_tests_smoothed": 12764.0, + "new_tests_smoothed_per_thousand": 2.304, + "tests_per_case": 554.957, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 8161.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.714, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1472.914, + "new_cases_per_million": 3.429, + "new_cases_smoothed_per_million": 4.1, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 443.0, + "total_tests": 715526.0, + "total_tests_per_thousand": 129.14, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 10786.0, + "new_tests_smoothed_per_thousand": 1.947, + "tests_per_case": 474.855, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 8200.0, + "new_cases": 39.0, + "new_cases_smoothed": 25.857, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1479.953, + "new_cases_per_million": 7.039, + "new_cases_smoothed_per_million": 4.667, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 8225.0, + "new_cases": 25.0, + "new_cases_smoothed": 26.143, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1484.465, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 60.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "FRA": { + "continent": "Europe", + "location": "France", + "population": 65273512.0, + "population_density": 122.578, + "median_age": 42.0, + "aged_65_older": 19.718, + "aged_70_older": 13.079, + "gdp_per_capita": 38605.671, + "cardiovasc_death_rate": 86.06, + "diabetes_prevalence": 4.77, + "female_smokers": 30.1, + "male_smokers": 35.6, + "hospital_beds_per_thousand": 5.98, + "life_expectancy": 82.66, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-25", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.061, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.077, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-05", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-06", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-08", + "total_cases": 11.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-17", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 13.89 + }, + { + "date": "2020-02-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.214, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 17.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.26, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 38.0, + "new_cases": 21.0, + "new_cases_smoothed": 3.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.582, + "new_cases_per_million": 0.322, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 16.67 + }, + { + "date": "2020-02-29", + "total_cases": 57.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.873, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 37.5 + }, + { + "date": "2020-03-01", + "total_cases": 100.0, + "new_cases": 43.0, + "new_cases_smoothed": 12.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.532, + "new_cases_per_million": 0.659, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 37.5 + }, + { + "date": "2020-03-02", + "total_cases": 130.0, + "new_cases": 30.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.992, + "new_cases_per_million": 0.46, + "new_cases_smoothed_per_million": 0.258, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 46.76 + }, + { + "date": "2020-03-03", + "total_cases": 178.0, + "new_cases": 48.0, + "new_cases_smoothed": 23.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.727, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 46.76 + }, + { + "date": "2020-03-04", + "total_cases": 212.0, + "new_cases": 34.0, + "new_cases_smoothed": 28.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.248, + "new_cases_per_million": 0.521, + "new_cases_smoothed_per_million": 0.433, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 46.76 + }, + { + "date": "2020-03-05", + "total_cases": 285.0, + "new_cases": 73.0, + "new_cases_smoothed": 38.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.366, + "new_cases_per_million": 1.118, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 46.76 + }, + { + "date": "2020-03-06", + "total_cases": 423.0, + "new_cases": 138.0, + "new_cases_smoothed": 55.0, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6.48, + "new_cases_per_million": 2.114, + "new_cases_smoothed_per_million": 0.843, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 46.76 + }, + { + "date": "2020-03-07", + "total_cases": 613.0, + "new_cases": 190.0, + "new_cases_smoothed": 79.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9.391, + "new_cases_per_million": 2.911, + "new_cases_smoothed_per_million": 1.217, + "total_deaths_per_million": 0.138, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 46.76 + }, + { + "date": "2020-03-08", + "total_cases": 716.0, + "new_cases": 103.0, + "new_cases_smoothed": 88.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.969, + "new_cases_per_million": 1.578, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 46.76 + }, + { + "date": "2020-03-09", + "total_cases": 1126.0, + "new_cases": 410.0, + "new_cases_smoothed": 142.286, + "total_deaths": 19.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 17.25, + "new_cases_per_million": 6.281, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 46.76 + }, + { + "date": "2020-03-10", + "total_cases": 1412.0, + "new_cases": 286.0, + "new_cases_smoothed": 176.286, + "total_deaths": 30.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 21.632, + "new_cases_per_million": 4.382, + "new_cases_smoothed_per_million": 2.701, + "total_deaths_per_million": 0.46, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 46.76 + }, + { + "date": "2020-03-11", + "total_cases": 1784.0, + "new_cases": 372.0, + "new_cases_smoothed": 224.571, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 27.331, + "new_cases_per_million": 5.699, + "new_cases_smoothed_per_million": 3.44, + "total_deaths_per_million": 0.506, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 46.76 + }, + { + "date": "2020-03-12", + "total_cases": 2281.0, + "new_cases": 497.0, + "new_cases_smoothed": 285.143, + "total_deaths": 48.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 34.945, + "new_cases_per_million": 7.614, + "new_cases_smoothed_per_million": 4.368, + "total_deaths_per_million": 0.735, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 46.76 + }, + { + "date": "2020-03-13", + "total_cases": 2876.0, + "new_cases": 595.0, + "new_cases_smoothed": 350.429, + "total_deaths": 61.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 44.061, + "new_cases_per_million": 9.115, + "new_cases_smoothed_per_million": 5.369, + "total_deaths_per_million": 0.935, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 46.76 + }, + { + "date": "2020-03-14", + "total_cases": 3661.0, + "new_cases": 785.0, + "new_cases_smoothed": 435.429, + "total_deaths": 79.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 56.087, + "new_cases_per_million": 12.026, + "new_cases_smoothed_per_million": 6.671, + "total_deaths_per_million": 1.21, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 52.31 + }, + { + "date": "2020-03-15", + "total_cases": 4499.0, + "new_cases": 838.0, + "new_cases_smoothed": 540.429, + "total_deaths": 91.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 68.925, + "new_cases_per_million": 12.838, + "new_cases_smoothed_per_million": 8.279, + "total_deaths_per_million": 1.394, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 52.31 + }, + { + "date": "2020-03-16", + "total_cases": 5423.0, + "new_cases": 924.0, + "new_cases_smoothed": 613.857, + "total_deaths": 127.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 83.081, + "new_cases_per_million": 14.156, + "new_cases_smoothed_per_million": 9.404, + "total_deaths_per_million": 1.946, + "new_deaths_per_million": 0.552, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 59.72 + }, + { + "date": "2020-03-17", + "total_cases": 6633.0, + "new_cases": 1210.0, + "new_cases_smoothed": 745.857, + "total_deaths": 148.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 101.619, + "new_cases_per_million": 18.537, + "new_cases_smoothed_per_million": 11.427, + "total_deaths_per_million": 2.267, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.258, + "stringency_index": 87.96 + }, + { + "date": "2020-03-18", + "total_cases": 7730.0, + "new_cases": 1097.0, + "new_cases_smoothed": 849.429, + "total_deaths": 175.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 118.425, + "new_cases_per_million": 16.806, + "new_cases_smoothed_per_million": 13.013, + "total_deaths_per_million": 2.681, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 87.96 + }, + { + "date": "2020-03-19", + "total_cases": 9134.0, + "new_cases": 1404.0, + "new_cases_smoothed": 979.0, + "total_deaths": 244.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 139.934, + "new_cases_per_million": 21.509, + "new_cases_smoothed_per_million": 14.998, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 1.057, + "new_deaths_smoothed_per_million": 0.429, + "stringency_index": 87.96 + }, + { + "date": "2020-03-20", + "total_cases": 10995.0, + "new_cases": 1861.0, + "new_cases_smoothed": 1159.857, + "total_deaths": 372.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 44.429, + "total_cases_per_million": 168.445, + "new_cases_per_million": 28.511, + "new_cases_smoothed_per_million": 17.769, + "total_deaths_per_million": 5.699, + "new_deaths_per_million": 1.961, + "new_deaths_smoothed_per_million": 0.681, + "stringency_index": 87.96 + }, + { + "date": "2020-03-21", + "total_cases": 12612.0, + "new_cases": 1617.0, + "new_cases_smoothed": 1278.714, + "total_deaths": 450.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 53.0, + "total_cases_per_million": 193.218, + "new_cases_per_million": 24.773, + "new_cases_smoothed_per_million": 19.59, + "total_deaths_per_million": 6.894, + "new_deaths_per_million": 1.195, + "new_deaths_smoothed_per_million": 0.812, + "stringency_index": 87.96 + }, + { + "date": "2020-03-22", + "total_cases": 14459.0, + "new_cases": 1847.0, + "new_cases_smoothed": 1422.857, + "total_deaths": 562.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 67.286, + "total_cases_per_million": 221.514, + "new_cases_per_million": 28.296, + "new_cases_smoothed_per_million": 21.798, + "total_deaths_per_million": 8.61, + "new_deaths_per_million": 1.716, + "new_deaths_smoothed_per_million": 1.031, + "stringency_index": 87.96 + }, + { + "date": "2020-03-23", + "total_cases": 16018.0, + "new_cases": 1559.0, + "new_cases_smoothed": 1513.571, + "total_deaths": 674.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 78.143, + "total_cases_per_million": 245.398, + "new_cases_per_million": 23.884, + "new_cases_smoothed_per_million": 23.188, + "total_deaths_per_million": 10.326, + "new_deaths_per_million": 1.716, + "new_deaths_smoothed_per_million": 1.197, + "stringency_index": 87.96 + }, + { + "date": "2020-03-24", + "total_cases": 19856.0, + "new_cases": 3838.0, + "new_cases_smoothed": 1889.0, + "total_deaths": 860.0, + "new_deaths": 186.0, + "new_deaths_smoothed": 101.714, + "total_cases_per_million": 304.197, + "new_cases_per_million": 58.799, + "new_cases_smoothed_per_million": 28.94, + "total_deaths_per_million": 13.175, + "new_deaths_per_million": 2.85, + "new_deaths_smoothed_per_million": 1.558, + "stringency_index": 87.96 + }, + { + "date": "2020-03-25", + "total_cases": 22302.0, + "new_cases": 2446.0, + "new_cases_smoothed": 2081.714, + "total_deaths": 1100.0, + "new_deaths": 240.0, + "new_deaths_smoothed": 132.143, + "total_cases_per_million": 341.67, + "new_cases_per_million": 37.473, + "new_cases_smoothed_per_million": 31.892, + "total_deaths_per_million": 16.852, + "new_deaths_per_million": 3.677, + "new_deaths_smoothed_per_million": 2.024, + "stringency_index": 87.96 + }, + { + "date": "2020-03-26", + "total_cases": 25233.0, + "new_cases": 2931.0, + "new_cases_smoothed": 2299.857, + "total_deaths": 1331.0, + "new_deaths": 231.0, + "new_deaths_smoothed": 155.286, + "total_cases_per_million": 386.573, + "new_cases_per_million": 44.903, + "new_cases_smoothed_per_million": 35.234, + "total_deaths_per_million": 20.391, + "new_deaths_per_million": 3.539, + "new_deaths_smoothed_per_million": 2.379, + "stringency_index": 87.96 + }, + { + "date": "2020-03-27", + "total_cases": 29155.0, + "new_cases": 3922.0, + "new_cases_smoothed": 2594.286, + "total_deaths": 1696.0, + "new_deaths": 365.0, + "new_deaths_smoothed": 189.143, + "total_cases_per_million": 446.659, + "new_cases_per_million": 60.086, + "new_cases_smoothed_per_million": 39.745, + "total_deaths_per_million": 25.983, + "new_deaths_per_million": 5.592, + "new_deaths_smoothed_per_million": 2.898, + "stringency_index": 87.96 + }, + { + "date": "2020-03-28", + "total_cases": 32964.0, + "new_cases": 3809.0, + "new_cases_smoothed": 2907.429, + "total_deaths": 1995.0, + "new_deaths": 299.0, + "new_deaths_smoothed": 220.714, + "total_cases_per_million": 505.013, + "new_cases_per_million": 58.354, + "new_cases_smoothed_per_million": 44.542, + "total_deaths_per_million": 30.564, + "new_deaths_per_million": 4.581, + "new_deaths_smoothed_per_million": 3.381, + "stringency_index": 87.96 + }, + { + "date": "2020-03-29", + "total_cases": 37575.0, + "new_cases": 4611.0, + "new_cases_smoothed": 3302.286, + "total_deaths": 2314.0, + "new_deaths": 319.0, + "new_deaths_smoothed": 250.286, + "total_cases_per_million": 575.655, + "new_cases_per_million": 70.641, + "new_cases_smoothed_per_million": 50.592, + "total_deaths_per_million": 35.451, + "new_deaths_per_million": 4.887, + "new_deaths_smoothed_per_million": 3.834, + "stringency_index": 87.96 + }, + { + "date": "2020-03-30", + "total_cases": 40174.0, + "new_cases": 2599.0, + "new_cases_smoothed": 3450.857, + "total_deaths": 2606.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 276.0, + "total_cases_per_million": 615.472, + "new_cases_per_million": 39.817, + "new_cases_smoothed_per_million": 52.868, + "total_deaths_per_million": 39.924, + "new_deaths_per_million": 4.473, + "new_deaths_smoothed_per_million": 4.228, + "stringency_index": 87.96 + }, + { + "date": "2020-03-31", + "total_cases": 44550.0, + "new_cases": 4376.0, + "new_cases_smoothed": 3527.714, + "total_deaths": 3024.0, + "new_deaths": 418.0, + "new_deaths_smoothed": 309.143, + "total_cases_per_million": 682.513, + "new_cases_per_million": 67.041, + "new_cases_smoothed_per_million": 54.045, + "total_deaths_per_million": 46.328, + "new_deaths_per_million": 6.404, + "new_deaths_smoothed_per_million": 4.736, + "stringency_index": 87.96 + }, + { + "date": "2020-04-01", + "total_cases": 52128.0, + "new_cases": 7578.0, + "new_cases_smoothed": 4260.857, + "total_deaths": 3523.0, + "new_deaths": 499.0, + "new_deaths_smoothed": 346.143, + "total_cases_per_million": 798.609, + "new_cases_per_million": 116.096, + "new_cases_smoothed_per_million": 65.277, + "total_deaths_per_million": 53.973, + "new_deaths_per_million": 7.645, + "new_deaths_smoothed_per_million": 5.303, + "stringency_index": 87.96 + }, + { + "date": "2020-04-02", + "total_cases": 56989.0, + "new_cases": 4861.0, + "new_cases_smoothed": 4536.571, + "total_deaths": 4032.0, + "new_deaths": 509.0, + "new_deaths_smoothed": 385.857, + "total_cases_per_million": 873.08, + "new_cases_per_million": 74.471, + "new_cases_smoothed_per_million": 69.501, + "total_deaths_per_million": 61.771, + "new_deaths_per_million": 7.798, + "new_deaths_smoothed_per_million": 5.911, + "stringency_index": 87.96 + }, + { + "date": "2020-04-03", + "total_cases": 59105.0, + "new_cases": 2116.0, + "new_cases_smoothed": 4278.571, + "total_deaths": 4503.0, + "new_deaths": 471.0, + "new_deaths_smoothed": 401.0, + "total_cases_per_million": 905.497, + "new_cases_per_million": 32.417, + "new_cases_smoothed_per_million": 65.548, + "total_deaths_per_million": 68.987, + "new_deaths_per_million": 7.216, + "new_deaths_smoothed_per_million": 6.143, + "stringency_index": 87.96 + }, + { + "date": "2020-04-04", + "total_cases": 64338.0, + "new_cases": 5233.0, + "new_cases_smoothed": 4482.0, + "total_deaths": 6507.0, + "new_deaths": 2004.0, + "new_deaths_smoothed": 644.571, + "total_cases_per_million": 985.668, + "new_cases_per_million": 80.17, + "new_cases_smoothed_per_million": 68.665, + "total_deaths_per_million": 99.688, + "new_deaths_per_million": 30.702, + "new_deaths_smoothed_per_million": 9.875, + "stringency_index": 87.96 + }, + { + "date": "2020-04-05", + "total_cases": 68605.0, + "new_cases": 4267.0, + "new_cases_smoothed": 4432.857, + "total_deaths": 7560.0, + "new_deaths": 1053.0, + "new_deaths_smoothed": 749.429, + "total_cases_per_million": 1051.039, + "new_cases_per_million": 65.371, + "new_cases_smoothed_per_million": 67.912, + "total_deaths_per_million": 115.82, + "new_deaths_per_million": 16.132, + "new_deaths_smoothed_per_million": 11.481, + "stringency_index": 87.96 + }, + { + "date": "2020-04-06", + "total_cases": 70478.0, + "new_cases": 1873.0, + "new_cases_smoothed": 4329.143, + "total_deaths": 8078.0, + "new_deaths": 518.0, + "new_deaths_smoothed": 781.714, + "total_cases_per_million": 1079.734, + "new_cases_per_million": 28.695, + "new_cases_smoothed_per_million": 66.323, + "total_deaths_per_million": 123.756, + "new_deaths_per_million": 7.936, + "new_deaths_smoothed_per_million": 11.976, + "stringency_index": 87.96 + }, + { + "date": "2020-04-07", + "total_cases": 74390.0, + "new_cases": 3912.0, + "new_cases_smoothed": 4262.857, + "total_deaths": 8911.0, + "new_deaths": 833.0, + "new_deaths_smoothed": 841.0, + "total_cases_per_million": 1139.666, + "new_cases_per_million": 59.932, + "new_cases_smoothed_per_million": 65.308, + "total_deaths_per_million": 136.518, + "new_deaths_per_million": 12.762, + "new_deaths_smoothed_per_million": 12.884, + "stringency_index": 87.96 + }, + { + "date": "2020-04-08", + "total_cases": 78167.0, + "new_cases": 3777.0, + "new_cases_smoothed": 3719.857, + "total_deaths": 10328.0, + "new_deaths": 1417.0, + "new_deaths_smoothed": 972.143, + "total_cases_per_million": 1197.53, + "new_cases_per_million": 57.864, + "new_cases_smoothed_per_million": 56.989, + "total_deaths_per_million": 158.227, + "new_deaths_per_million": 21.709, + "new_deaths_smoothed_per_million": 14.893, + "stringency_index": 87.96 + }, + { + "date": "2020-04-09", + "total_cases": 82048.0, + "new_cases": 3881.0, + "new_cases_smoothed": 3579.857, + "total_deaths": 10869.0, + "new_deaths": 541.0, + "new_deaths_smoothed": 976.714, + "total_cases_per_million": 1256.988, + "new_cases_per_million": 59.458, + "new_cases_smoothed_per_million": 54.844, + "total_deaths_per_million": 166.515, + "new_deaths_per_million": 8.288, + "new_deaths_smoothed_per_million": 14.963, + "stringency_index": 87.96 + }, + { + "date": "2020-04-10", + "total_cases": 86334.0, + "new_cases": 4286.0, + "new_cases_smoothed": 3889.857, + "total_deaths": 12210.0, + "new_deaths": 1341.0, + "new_deaths_smoothed": 1101.0, + "total_cases_per_million": 1322.65, + "new_cases_per_million": 65.662, + "new_cases_smoothed_per_million": 59.593, + "total_deaths_per_million": 187.059, + "new_deaths_per_million": 20.544, + "new_deaths_smoothed_per_million": 16.867, + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 90676.0, + "new_cases": 4342.0, + "new_cases_smoothed": 3762.571, + "total_deaths": 13197.0, + "new_deaths": 987.0, + "new_deaths_smoothed": 955.714, + "total_cases_per_million": 1389.17, + "new_cases_per_million": 66.52, + "new_cases_smoothed_per_million": 57.643, + "total_deaths_per_million": 202.18, + "new_deaths_per_million": 15.121, + "new_deaths_smoothed_per_million": 14.642, + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 93790.0, + "new_cases": 3114.0, + "new_cases_smoothed": 3597.857, + "total_deaths": 13832.0, + "new_deaths": 635.0, + "new_deaths_smoothed": 896.0, + "total_cases_per_million": 1436.877, + "new_cases_per_million": 47.707, + "new_cases_smoothed_per_million": 55.12, + "total_deaths_per_million": 211.908, + "new_deaths_per_million": 9.728, + "new_deaths_smoothed_per_million": 13.727, + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 95403.0, + "new_cases": 1613.0, + "new_cases_smoothed": 3560.714, + "total_deaths": 14393.0, + "new_deaths": 561.0, + "new_deaths_smoothed": 902.143, + "total_cases_per_million": 1461.588, + "new_cases_per_million": 24.711, + "new_cases_smoothed_per_million": 54.551, + "total_deaths_per_million": 220.503, + "new_deaths_per_million": 8.595, + "new_deaths_smoothed_per_million": 13.821, + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 98076.0, + "new_cases": 2673.0, + "new_cases_smoothed": 3383.714, + "total_deaths": 14967.0, + "new_deaths": 574.0, + "new_deaths_smoothed": 865.143, + "total_cases_per_million": 1502.539, + "new_cases_per_million": 40.951, + "new_cases_smoothed_per_million": 51.839, + "total_deaths_per_million": 229.297, + "new_deaths_per_million": 8.794, + "new_deaths_smoothed_per_million": 13.254, + "stringency_index": 87.96 + }, + { + "date": "2020-04-15", + "total_cases": 103573.0, + "new_cases": 5497.0, + "new_cases_smoothed": 3629.429, + "total_deaths": 15729.0, + "new_deaths": 762.0, + "new_deaths_smoothed": 771.571, + "total_cases_per_million": 1586.754, + "new_cases_per_million": 84.215, + "new_cases_smoothed_per_million": 55.603, + "total_deaths_per_million": 240.971, + "new_deaths_per_million": 11.674, + "new_deaths_smoothed_per_million": 11.821, + "stringency_index": 87.96 + }, + { + "date": "2020-04-16", + "total_cases": 106206.0, + "new_cases": 2633.0, + "new_cases_smoothed": 3451.143, + "total_deaths": 17167.0, + "new_deaths": 1438.0, + "new_deaths_smoothed": 899.714, + "total_cases_per_million": 1627.092, + "new_cases_per_million": 40.338, + "new_cases_smoothed_per_million": 52.872, + "total_deaths_per_million": 263.001, + "new_deaths_per_million": 22.03, + "new_deaths_smoothed_per_million": 13.784, + "stringency_index": 87.96 + }, + { + "date": "2020-04-17", + "total_cases": 108847.0, + "new_cases": 2641.0, + "new_cases_smoothed": 3216.143, + "total_deaths": 17920.0, + "new_deaths": 753.0, + "new_deaths_smoothed": 815.714, + "total_cases_per_million": 1667.552, + "new_cases_per_million": 40.461, + "new_cases_smoothed_per_million": 49.272, + "total_deaths_per_million": 274.537, + "new_deaths_per_million": 11.536, + "new_deaths_smoothed_per_million": 12.497, + "stringency_index": 87.96 + }, + { + "date": "2020-04-18", + "total_cases": 109252.0, + "new_cases": 405.0, + "new_cases_smoothed": 2653.714, + "total_deaths": 18681.0, + "new_deaths": 761.0, + "new_deaths_smoothed": 783.429, + "total_cases_per_million": 1673.757, + "new_cases_per_million": 6.205, + "new_cases_smoothed_per_million": 40.655, + "total_deaths_per_million": 286.196, + "new_deaths_per_million": 11.659, + "new_deaths_smoothed_per_million": 12.002, + "stringency_index": 87.96 + }, + { + "date": "2020-04-19", + "total_cases": 111821.0, + "new_cases": 2569.0, + "new_cases_smoothed": 2575.857, + "total_deaths": 19323.0, + "new_deaths": 642.0, + "new_deaths_smoothed": 784.429, + "total_cases_per_million": 1713.115, + "new_cases_per_million": 39.357, + "new_cases_smoothed_per_million": 39.463, + "total_deaths_per_million": 296.031, + "new_deaths_per_million": 9.836, + "new_deaths_smoothed_per_million": 12.018, + "stringency_index": 87.96 + }, + { + "date": "2020-04-20", + "total_cases": 112606.0, + "new_cases": 785.0, + "new_cases_smoothed": 2457.571, + "total_deaths": 19718.0, + "new_deaths": 395.0, + "new_deaths_smoothed": 760.714, + "total_cases_per_million": 1725.141, + "new_cases_per_million": 12.026, + "new_cases_smoothed_per_million": 37.65, + "total_deaths_per_million": 302.083, + "new_deaths_per_million": 6.051, + "new_deaths_smoothed_per_million": 11.654, + "stringency_index": 87.96 + }, + { + "date": "2020-04-21", + "total_cases": 114657.0, + "new_cases": 2051.0, + "new_cases_smoothed": 2368.714, + "total_deaths": 20265.0, + "new_deaths": 547.0, + "new_deaths_smoothed": 756.857, + "total_cases_per_million": 1756.562, + "new_cases_per_million": 31.422, + "new_cases_smoothed_per_million": 36.289, + "total_deaths_per_million": 310.463, + "new_deaths_per_million": 8.38, + "new_deaths_smoothed_per_million": 11.595, + "stringency_index": 87.96 + }, + { + "date": "2020-04-22", + "total_cases": 117324.0, + "new_cases": 2667.0, + "new_cases_smoothed": 1964.429, + "total_deaths": 20796.0, + "new_deaths": 531.0, + "new_deaths_smoothed": 723.857, + "total_cases_per_million": 1797.421, + "new_cases_per_million": 40.859, + "new_cases_smoothed_per_million": 30.095, + "total_deaths_per_million": 318.598, + "new_deaths_per_million": 8.135, + "new_deaths_smoothed_per_million": 11.09, + "stringency_index": 87.96 + }, + { + "date": "2020-04-23", + "total_cases": 119151.0, + "new_cases": 1827.0, + "new_cases_smoothed": 1849.286, + "total_deaths": 21340.0, + "new_deaths": 544.0, + "new_deaths_smoothed": 596.143, + "total_cases_per_million": 1825.411, + "new_cases_per_million": 27.99, + "new_cases_smoothed_per_million": 28.331, + "total_deaths_per_million": 326.932, + "new_deaths_per_million": 8.334, + "new_deaths_smoothed_per_million": 9.133, + "stringency_index": 87.96 + }, + { + "date": "2020-04-24", + "total_cases": 120804.0, + "new_cases": 1653.0, + "new_cases_smoothed": 1708.143, + "total_deaths": 21856.0, + "new_deaths": 516.0, + "new_deaths_smoothed": 562.286, + "total_cases_per_million": 1850.735, + "new_cases_per_million": 25.324, + "new_cases_smoothed_per_million": 26.169, + "total_deaths_per_million": 334.837, + "new_deaths_per_million": 7.905, + "new_deaths_smoothed_per_million": 8.614, + "stringency_index": 87.96 + }, + { + "date": "2020-04-25", + "total_cases": 122577.0, + "new_cases": 1773.0, + "new_cases_smoothed": 1903.571, + "total_deaths": 22245.0, + "new_deaths": 389.0, + "new_deaths_smoothed": 509.143, + "total_cases_per_million": 1877.898, + "new_cases_per_million": 27.163, + "new_cases_smoothed_per_million": 29.163, + "total_deaths_per_million": 340.797, + "new_deaths_per_million": 5.96, + "new_deaths_smoothed_per_million": 7.8, + "stringency_index": 87.96 + }, + { + "date": "2020-04-26", + "total_cases": 124114.0, + "new_cases": 1537.0, + "new_cases_smoothed": 1756.143, + "total_deaths": 22614.0, + "new_deaths": 369.0, + "new_deaths_smoothed": 470.143, + "total_cases_per_million": 1901.445, + "new_cases_per_million": 23.547, + "new_cases_smoothed_per_million": 26.904, + "total_deaths_per_million": 346.45, + "new_deaths_per_million": 5.653, + "new_deaths_smoothed_per_million": 7.203, + "stringency_index": 87.96 + }, + { + "date": "2020-04-27", + "total_cases": 124575.0, + "new_cases": 461.0, + "new_cases_smoothed": 1709.857, + "total_deaths": 22856.0, + "new_deaths": 242.0, + "new_deaths_smoothed": 448.286, + "total_cases_per_million": 1908.508, + "new_cases_per_million": 7.063, + "new_cases_smoothed_per_million": 26.195, + "total_deaths_per_million": 350.157, + "new_deaths_per_million": 3.707, + "new_deaths_smoothed_per_million": 6.868, + "stringency_index": 87.96 + }, + { + "date": "2020-04-28", + "total_cases": 125770.0, + "new_cases": 1195.0, + "new_cases_smoothed": 1587.571, + "total_deaths": 23293.0, + "new_deaths": 437.0, + "new_deaths_smoothed": 432.571, + "total_cases_per_million": 1926.815, + "new_cases_per_million": 18.308, + "new_cases_smoothed_per_million": 24.322, + "total_deaths_per_million": 356.852, + "new_deaths_per_million": 6.695, + "new_deaths_smoothed_per_million": 6.627, + "stringency_index": 87.96 + }, + { + "date": "2020-04-29", + "total_cases": 126835.0, + "new_cases": 1065.0, + "new_cases_smoothed": 1358.714, + "total_deaths": 23660.0, + "new_deaths": 367.0, + "new_deaths_smoothed": 409.143, + "total_cases_per_million": 1943.131, + "new_cases_per_million": 16.316, + "new_cases_smoothed_per_million": 20.816, + "total_deaths_per_million": 362.475, + "new_deaths_per_million": 5.622, + "new_deaths_smoothed_per_million": 6.268, + "stringency_index": 87.96 + }, + { + "date": "2020-04-30", + "total_cases": 128442.0, + "new_cases": 1607.0, + "new_cases_smoothed": 1327.286, + "total_deaths": 24087.0, + "new_deaths": 427.0, + "new_deaths_smoothed": 392.429, + "total_cases_per_million": 1967.751, + "new_cases_per_million": 24.619, + "new_cases_smoothed_per_million": 20.334, + "total_deaths_per_million": 369.016, + "new_deaths_per_million": 6.542, + "new_deaths_smoothed_per_million": 6.012, + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 129581.0, + "new_cases": 1139.0, + "new_cases_smoothed": 1253.857, + "total_deaths": 24376.0, + "new_deaths": 289.0, + "new_deaths_smoothed": 360.0, + "total_cases_per_million": 1985.2, + "new_cases_per_million": 17.45, + "new_cases_smoothed_per_million": 19.209, + "total_deaths_per_million": 373.444, + "new_deaths_per_million": 4.428, + "new_deaths_smoothed_per_million": 5.515, + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 130185.0, + "new_cases": 604.0, + "new_cases_smoothed": 1086.857, + "total_deaths": 24594.0, + "new_deaths": 218.0, + "new_deaths_smoothed": 335.571, + "total_cases_per_million": 1994.454, + "new_cases_per_million": 9.253, + "new_cases_smoothed_per_million": 16.651, + "total_deaths_per_million": 376.784, + "new_deaths_per_million": 3.34, + "new_deaths_smoothed_per_million": 5.141, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 130979.0, + "new_cases": 794.0, + "new_cases_smoothed": 980.714, + "total_deaths": 24760.0, + "new_deaths": 166.0, + "new_deaths_smoothed": 306.571, + "total_cases_per_million": 2006.618, + "new_cases_per_million": 12.164, + "new_cases_smoothed_per_million": 15.025, + "total_deaths_per_million": 379.327, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 4.697, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 131287.0, + "new_cases": 308.0, + "new_cases_smoothed": 958.857, + "total_deaths": 24895.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 291.286, + "total_cases_per_million": 2011.337, + "new_cases_per_million": 4.719, + "new_cases_smoothed_per_million": 14.69, + "total_deaths_per_million": 381.395, + "new_deaths_per_million": 2.068, + "new_deaths_smoothed_per_million": 4.463, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 131863.0, + "new_cases": 576.0, + "new_cases_smoothed": 870.429, + "total_deaths": 25201.0, + "new_deaths": 306.0, + "new_deaths_smoothed": 272.571, + "total_cases_per_million": 2020.161, + "new_cases_per_million": 8.824, + "new_cases_smoothed_per_million": 13.335, + "total_deaths_per_million": 386.083, + "new_deaths_per_million": 4.688, + "new_deaths_smoothed_per_million": 4.176, + "stringency_index": 87.96 + }, + { + "date": "2020-05-06", + "total_cases": 132967.0, + "new_cases": 1104.0, + "new_cases_smoothed": 876.0, + "total_deaths": 25531.0, + "new_deaths": 330.0, + "new_deaths_smoothed": 267.286, + "total_cases_per_million": 2037.074, + "new_cases_per_million": 16.913, + "new_cases_smoothed_per_million": 13.42, + "total_deaths_per_million": 391.139, + "new_deaths_per_million": 5.056, + "new_deaths_smoothed_per_million": 4.095, + "stringency_index": 87.96 + }, + { + "date": "2020-05-07", + "total_cases": 137150.0, + "new_cases": 4183.0, + "new_cases_smoothed": 1244.0, + "total_deaths": 25809.0, + "new_deaths": 278.0, + "new_deaths_smoothed": 246.0, + "total_cases_per_million": 2101.159, + "new_cases_per_million": 64.084, + "new_cases_smoothed_per_million": 19.058, + "total_deaths_per_million": 395.398, + "new_deaths_per_million": 4.259, + "new_deaths_smoothed_per_million": 3.769, + "stringency_index": 87.96 + }, + { + "date": "2020-05-08", + "total_cases": 137779.0, + "new_cases": 629.0, + "new_cases_smoothed": 1171.143, + "total_deaths": 25987.0, + "new_deaths": 178.0, + "new_deaths_smoothed": 230.143, + "total_cases_per_million": 2110.795, + "new_cases_per_million": 9.636, + "new_cases_smoothed_per_million": 17.942, + "total_deaths_per_million": 398.125, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 3.526, + "stringency_index": 87.96 + }, + { + "date": "2020-05-09", + "total_cases": 138421.0, + "new_cases": 642.0, + "new_cases_smoothed": 1176.571, + "total_deaths": 26230.0, + "new_deaths": 243.0, + "new_deaths_smoothed": 233.714, + "total_cases_per_million": 2120.63, + "new_cases_per_million": 9.836, + "new_cases_smoothed_per_million": 18.025, + "total_deaths_per_million": 401.848, + "new_deaths_per_million": 3.723, + "new_deaths_smoothed_per_million": 3.581, + "stringency_index": 87.96 + }, + { + "date": "2020-05-10", + "total_cases": 138854.0, + "new_cases": 433.0, + "new_cases_smoothed": 1125.0, + "total_deaths": 26310.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 221.429, + "total_cases_per_million": 2127.264, + "new_cases_per_million": 6.634, + "new_cases_smoothed_per_million": 17.235, + "total_deaths_per_million": 403.073, + "new_deaths_per_million": 1.226, + "new_deaths_smoothed_per_million": 3.392, + "stringency_index": 87.96 + }, + { + "date": "2020-05-11", + "total_cases": 139063.0, + "new_cases": 209.0, + "new_cases_smoothed": 1110.857, + "total_deaths": 26380.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 212.143, + "total_cases_per_million": 2130.466, + "new_cases_per_million": 3.202, + "new_cases_smoothed_per_million": 17.018, + "total_deaths_per_million": 404.146, + "new_deaths_per_million": 1.072, + "new_deaths_smoothed_per_million": 3.25, + "stringency_index": 76.85 + }, + { + "date": "2020-05-12", + "total_cases": 139519.0, + "new_cases": 456.0, + "new_cases_smoothed": 1093.714, + "total_deaths": 26643.0, + "new_deaths": 263.0, + "new_deaths_smoothed": 206.0, + "total_cases_per_million": 2137.452, + "new_cases_per_million": 6.986, + "new_cases_smoothed_per_million": 16.756, + "total_deaths_per_million": 408.175, + "new_deaths_per_million": 4.029, + "new_deaths_smoothed_per_million": 3.156, + "stringency_index": 76.85 + }, + { + "date": "2020-05-13", + "total_cases": 140227.0, + "new_cases": 708.0, + "new_cases_smoothed": 1037.143, + "total_deaths": 26991.0, + "new_deaths": 348.0, + "new_deaths_smoothed": 208.571, + "total_cases_per_million": 2148.299, + "new_cases_per_million": 10.847, + "new_cases_smoothed_per_million": 15.889, + "total_deaths_per_million": 413.506, + "new_deaths_per_million": 5.331, + "new_deaths_smoothed_per_million": 3.195, + "new_tests": 39726.0, + "new_tests_per_thousand": 0.609, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-14", + "total_cases": 140734.0, + "new_cases": 507.0, + "new_cases_smoothed": 512.0, + "total_deaths": 27074.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 180.714, + "total_cases_per_million": 2156.066, + "new_cases_per_million": 7.767, + "new_cases_smoothed_per_million": 7.844, + "total_deaths_per_million": 414.778, + "new_deaths_per_million": 1.272, + "new_deaths_smoothed_per_million": 2.769, + "new_tests": 42885.0, + "new_tests_per_thousand": 0.657, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-15", + "total_cases": 141356.0, + "new_cases": 622.0, + "new_cases_smoothed": 511.0, + "total_deaths": 27425.0, + "new_deaths": 351.0, + "new_deaths_smoothed": 205.429, + "total_cases_per_million": 2165.595, + "new_cases_per_million": 9.529, + "new_cases_smoothed_per_million": 7.829, + "total_deaths_per_million": 420.155, + "new_deaths_per_million": 5.377, + "new_deaths_smoothed_per_million": 3.147, + "new_tests": 47925.0, + "new_tests_per_thousand": 0.734, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-16", + "total_cases": 141919.0, + "new_cases": 563.0, + "new_cases_smoothed": 499.714, + "total_deaths": 27555.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 189.286, + "total_cases_per_million": 2174.22, + "new_cases_per_million": 8.625, + "new_cases_smoothed_per_million": 7.656, + "total_deaths_per_million": 422.147, + "new_deaths_per_million": 1.992, + "new_deaths_smoothed_per_million": 2.9, + "new_tests": 16306.0, + "new_tests_per_thousand": 0.25, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-17", + "total_cases": 142291.0, + "new_cases": 372.0, + "new_cases_smoothed": 491.0, + "total_deaths": 27643.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 190.429, + "total_cases_per_million": 2179.919, + "new_cases_per_million": 5.699, + "new_cases_smoothed_per_million": 7.522, + "total_deaths_per_million": 423.495, + "new_deaths_per_million": 1.348, + "new_deaths_smoothed_per_million": 2.917, + "new_tests": 6312.0, + "new_tests_per_thousand": 0.097, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-18", + "total_cases": 142411.0, + "new_cases": 120.0, + "new_cases_smoothed": 478.286, + "total_deaths": 27711.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 190.143, + "total_cases_per_million": 2181.758, + "new_cases_per_million": 1.838, + "new_cases_smoothed_per_million": 7.327, + "total_deaths_per_million": 424.537, + "new_deaths_per_million": 1.042, + "new_deaths_smoothed_per_million": 2.913, + "new_tests": 50721.0, + "new_tests_per_thousand": 0.777, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-19", + "total_cases": 142903.0, + "new_cases": 492.0, + "new_cases_smoothed": 483.429, + "total_deaths": 27897.0, + "new_deaths": 186.0, + "new_deaths_smoothed": 179.143, + "total_cases_per_million": 2189.295, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 7.406, + "total_deaths_per_million": 427.386, + "new_deaths_per_million": 2.85, + "new_deaths_smoothed_per_million": 2.744, + "new_tests": 52386.0, + "new_tests_per_thousand": 0.803, + "new_tests_smoothed": 36609.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 75.72800000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-20", + "total_cases": 143427.0, + "new_cases": 524.0, + "new_cases_smoothed": 457.143, + "total_deaths": 28022.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 147.286, + "total_cases_per_million": 2197.323, + "new_cases_per_million": 8.028, + "new_cases_smoothed_per_million": 7.003, + "total_deaths_per_million": 429.301, + "new_deaths_per_million": 1.915, + "new_deaths_smoothed_per_million": 2.256, + "new_tests": 52187.0, + "new_tests_per_thousand": 0.8, + "new_tests_smoothed": 38389.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 83.976, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-21", + "total_cases": 143845.0, + "new_cases": 418.0, + "new_cases_smoothed": 444.429, + "total_deaths": 28132.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 151.143, + "total_cases_per_million": 2203.727, + "new_cases_per_million": 6.404, + "new_cases_smoothed_per_million": 6.809, + "total_deaths_per_million": 430.986, + "new_deaths_per_million": 1.685, + "new_deaths_smoothed_per_million": 2.316, + "new_tests": 9059.0, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 33557.0, + "new_tests_smoothed_per_thousand": 0.514, + "tests_per_case": 75.506, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-22", + "total_cases": 144163.0, + "new_cases": 318.0, + "new_cases_smoothed": 401.0, + "total_deaths": 28215.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 112.857, + "total_cases_per_million": 2208.599, + "new_cases_per_million": 4.872, + "new_cases_smoothed_per_million": 6.143, + "total_deaths_per_million": 432.258, + "new_deaths_per_million": 1.272, + "new_deaths_smoothed_per_million": 1.729, + "new_tests": 48843.0, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 33688.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 84.01, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-23", + "total_cases": 144566.0, + "new_cases": 403.0, + "new_cases_smoothed": 378.143, + "total_deaths": 28289.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 104.857, + "total_cases_per_million": 2214.773, + "new_cases_per_million": 6.174, + "new_cases_smoothed_per_million": 5.793, + "total_deaths_per_million": 433.392, + "new_deaths_per_million": 1.134, + "new_deaths_smoothed_per_million": 1.606, + "new_tests": 18167.0, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 33954.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 89.791, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-24", + "total_cases": 144806.0, + "new_cases": 240.0, + "new_cases_smoothed": 359.286, + "total_deaths": 28332.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 98.429, + "total_cases_per_million": 2218.45, + "new_cases_per_million": 3.677, + "new_cases_smoothed_per_million": 5.504, + "total_deaths_per_million": 434.05, + "new_deaths_per_million": 0.659, + "new_deaths_smoothed_per_million": 1.508, + "new_tests": 6476.0, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 33977.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 94.568, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-25", + "total_cases": 144921.0, + "new_cases": 115.0, + "new_cases_smoothed": 358.571, + "total_deaths": 28367.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 93.714, + "total_cases_per_million": 2220.211, + "new_cases_per_million": 1.762, + "new_cases_smoothed_per_million": 5.493, + "total_deaths_per_million": 434.587, + "new_deaths_per_million": 0.536, + "new_deaths_smoothed_per_million": 1.436, + "new_tests": 49223.0, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 33763.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 94.16, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-26", + "total_cases": 145279.0, + "new_cases": 358.0, + "new_cases_smoothed": 339.429, + "total_deaths": 28432.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 2225.696, + "new_cases_per_million": 5.485, + "new_cases_smoothed_per_million": 5.2, + "total_deaths_per_million": 435.583, + "new_deaths_per_million": 0.996, + "new_deaths_smoothed_per_million": 1.171, + "new_tests": 51538.0, + "new_tests_per_thousand": 0.79, + "new_tests_smoothed": 33642.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 99.11399999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 145555.0, + "new_cases": 276.0, + "new_cases_smoothed": 304.0, + "total_deaths": 28530.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 72.571, + "total_cases_per_million": 2229.924, + "new_cases_per_million": 4.228, + "new_cases_smoothed_per_million": 4.657, + "total_deaths_per_million": 437.084, + "new_deaths_per_million": 1.501, + "new_deaths_smoothed_per_million": 1.112, + "new_tests": 43918.0, + "new_tests_per_thousand": 0.673, + "new_tests_smoothed": 32461.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 106.78, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 145746.0, + "new_cases": 191.0, + "new_cases_smoothed": 271.571, + "total_deaths": 28596.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 2232.851, + "new_cases_per_million": 2.926, + "new_cases_smoothed_per_million": 4.161, + "total_deaths_per_million": 438.095, + "new_deaths_per_million": 1.011, + "new_deaths_smoothed_per_million": 1.016, + "new_tests": 42221.0, + "new_tests_per_thousand": 0.647, + "new_tests_smoothed": 37198.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 136.97299999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 149071.0, + "new_cases": 3325.0, + "new_cases_smoothed": 701.143, + "total_deaths": 28662.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 63.857, + "total_cases_per_million": 2283.79, + "new_cases_per_million": 50.939, + "new_cases_smoothed_per_million": 10.742, + "total_deaths_per_million": 439.106, + "new_deaths_per_million": 1.011, + "new_deaths_smoothed_per_million": 0.978, + "new_tests": 46909.0, + "new_tests_per_thousand": 0.719, + "new_tests_smoothed": 36922.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 52.66, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 149668.0, + "new_cases": 597.0, + "new_cases_smoothed": 728.857, + "total_deaths": 28714.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 60.714, + "total_cases_per_million": 2292.936, + "new_cases_per_million": 9.146, + "new_cases_smoothed_per_million": 11.166, + "total_deaths_per_million": 439.903, + "new_deaths_per_million": 0.797, + "new_deaths_smoothed_per_million": 0.93, + "new_tests": 19132.0, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 37060.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 50.847, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 151496.0, + "new_cases": 1828.0, + "new_cases_smoothed": 955.714, + "total_deaths": 28771.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 62.714, + "total_cases_per_million": 2320.941, + "new_cases_per_million": 28.005, + "new_cases_smoothed_per_million": 14.642, + "total_deaths_per_million": 440.776, + "new_deaths_per_million": 0.873, + "new_deaths_smoothed_per_million": 0.961, + "new_tests": 7853.0, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 37256.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 38.982, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 151753.0, + "new_cases": 257.0, + "new_cases_smoothed": 976.0, + "total_deaths": 28802.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 62.143, + "total_cases_per_million": 2324.879, + "new_cases_per_million": 3.937, + "new_cases_smoothed_per_million": 14.952, + "total_deaths_per_million": 441.251, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.952, + "new_tests": 9071.0, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 31520.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 32.295, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 152091.0, + "new_cases": 338.0, + "new_cases_smoothed": 973.143, + "total_deaths": 28833.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 57.286, + "total_cases_per_million": 2330.057, + "new_cases_per_million": 5.178, + "new_cases_smoothed_per_million": 14.909, + "total_deaths_per_million": 441.726, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.878, + "new_tests": 46172.0, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 30754.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 31.603, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 151325.0, + "new_cases": -766.0, + "new_cases_smoothed": 824.286, + "total_deaths": 28940.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 58.571, + "total_cases_per_million": 2318.322, + "new_cases_per_million": -11.735, + "new_cases_smoothed_per_million": 12.628, + "total_deaths_per_million": 443.365, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 0.897, + "new_tests": 42702.0, + "new_tests_per_thousand": 0.654, + "new_tests_smoothed": 30580.0, + "new_tests_smoothed_per_thousand": 0.468, + "tests_per_case": 37.099000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 151677.0, + "new_cases": 352.0, + "new_cases_smoothed": 847.286, + "total_deaths": 29021.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 60.714, + "total_cases_per_million": 2323.714, + "new_cases_per_million": 5.393, + "new_cases_smoothed_per_million": 12.981, + "total_deaths_per_million": 444.606, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 0.93, + "new_tests": 39524.0, + "new_tests_per_thousand": 0.606, + "new_tests_smoothed": 30195.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 35.637, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 152444.0, + "new_cases": 767.0, + "new_cases_smoothed": 481.857, + "total_deaths": 29065.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 57.571, + "total_cases_per_million": 2335.465, + "new_cases_per_million": 11.751, + "new_cases_smoothed_per_million": 7.382, + "total_deaths_per_million": 445.28, + "new_deaths_per_million": 0.674, + "new_deaths_smoothed_per_million": 0.882, + "new_tests": 44453.0, + "new_tests_per_thousand": 0.681, + "new_tests_smoothed": 29844.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 61.935, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 153055.0, + "new_cases": 611.0, + "new_cases_smoothed": 483.857, + "total_deaths": 29111.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 56.714, + "total_cases_per_million": 2344.826, + "new_cases_per_million": 9.361, + "new_cases_smoothed_per_million": 7.413, + "total_deaths_per_million": 445.985, + "new_deaths_per_million": 0.705, + "new_deaths_smoothed_per_million": 0.869, + "new_tests": 18590.0, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 29766.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 61.518, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 153634.0, + "new_cases": 579.0, + "new_cases_smoothed": 305.429, + "total_deaths": 29142.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 53.0, + "total_cases_per_million": 2353.696, + "new_cases_per_million": 8.87, + "new_cases_smoothed_per_million": 4.679, + "total_deaths_per_million": 446.46, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.812, + "new_tests": 6786.0, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 29614.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 96.959, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 153977.0, + "new_cases": 343.0, + "new_cases_smoothed": 317.714, + "total_deaths": 29155.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 50.429, + "total_cases_per_million": 2358.951, + "new_cases_per_million": 5.255, + "new_cases_smoothed_per_million": 4.867, + "total_deaths_per_million": 446.659, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.773, + "new_tests": 42232.0, + "new_tests_per_thousand": 0.647, + "new_tests_smoothed": 34351.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 108.119, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 154188.0, + "new_cases": 211.0, + "new_cases_smoothed": 299.571, + "total_deaths": 29209.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 53.714, + "total_cases_per_million": 2362.183, + "new_cases_per_million": 3.233, + "new_cases_smoothed_per_million": 4.589, + "total_deaths_per_million": 447.486, + "new_deaths_per_million": 0.827, + "new_deaths_smoothed_per_million": 0.823, + "new_tests": 40847.0, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 33591.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 112.13, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 154591.0, + "new_cases": 403.0, + "new_cases_smoothed": 466.571, + "total_deaths": 29296.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 50.857, + "total_cases_per_million": 2368.357, + "new_cases_per_million": 6.174, + "new_cases_smoothed_per_million": 7.148, + "total_deaths_per_million": 448.819, + "new_deaths_per_million": 1.333, + "new_deaths_smoothed_per_million": 0.779, + "new_tests": 38211.0, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 32949.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 70.619, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 155136.0, + "new_cases": 545.0, + "new_cases_smoothed": 494.143, + "total_deaths": 29319.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 2376.707, + "new_cases_per_million": 8.349, + "new_cases_smoothed_per_million": 7.57, + "total_deaths_per_million": 449.171, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.652, + "new_tests": 36229.0, + "new_tests_per_thousand": 0.555, + "new_tests_smoothed": 32478.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 65.726, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-12", + "total_cases": 155561.0, + "new_cases": 425.0, + "new_cases_smoothed": 445.286, + "total_deaths": 29346.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 2383.218, + "new_cases_per_million": 6.511, + "new_cases_smoothed_per_million": 6.822, + "total_deaths_per_million": 449.585, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.615, + "new_tests": 41450.0, + "new_tests_per_thousand": 0.635, + "new_tests_smoothed": 32049.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 71.97399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-13", + "total_cases": 156287.0, + "new_cases": 726.0, + "new_cases_smoothed": 461.714, + "total_deaths": 29374.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 2394.34, + "new_cases_per_million": 11.122, + "new_cases_smoothed_per_million": 7.074, + "total_deaths_per_million": 450.014, + "new_deaths_per_million": 0.429, + "new_deaths_smoothed_per_million": 0.576, + "new_tests": 17788.0, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 31935.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 69.166, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-14", + "total_cases": 156813.0, + "new_cases": 526.0, + "new_cases_smoothed": 454.143, + "total_deaths": 29398.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 2402.399, + "new_cases_per_million": 8.058, + "new_cases_smoothed_per_million": 6.958, + "total_deaths_per_million": 450.382, + "new_deaths_per_million": 0.368, + "new_deaths_smoothed_per_million": 0.56, + "new_tests": 5828.0, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 31798.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 70.018, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-15", + "total_cases": 157220.0, + "new_cases": 407.0, + "new_cases_smoothed": 463.286, + "total_deaths": 29407.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 2408.634, + "new_cases_per_million": 6.235, + "new_cases_smoothed_per_million": 7.098, + "total_deaths_per_million": 450.52, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.552, + "new_tests": 40487.0, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 31549.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 68.098, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 157372.0, + "new_cases": 152.0, + "new_cases_smoothed": 454.857, + "total_deaths": 29436.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 32.429, + "total_cases_per_million": 2410.963, + "new_cases_per_million": 2.329, + "new_cases_smoothed_per_million": 6.968, + "total_deaths_per_million": 450.964, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.497, + "new_tests": 39471.0, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 31352.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 68.92699999999999, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 157716.0, + "new_cases": 344.0, + "new_cases_smoothed": 446.429, + "total_deaths": 29547.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 2416.233, + "new_cases_per_million": 5.27, + "new_cases_smoothed_per_million": 6.839, + "total_deaths_per_million": 452.664, + "new_deaths_per_million": 1.701, + "new_deaths_smoothed_per_million": 0.549, + "new_tests": 37214.0, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 31210.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 69.91, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "total_cases": 158174.0, + "new_cases": 458.0, + "new_cases_smoothed": 434.0, + "total_deaths": 29575.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 2423.249, + "new_cases_per_million": 7.017, + "new_cases_smoothed_per_million": 6.649, + "total_deaths_per_million": 453.093, + "new_deaths_per_million": 0.429, + "new_deaths_smoothed_per_million": 0.56, + "new_tests": 35294.0, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 31076.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 71.604, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 158641.0, + "new_cases": 467.0, + "new_cases_smoothed": 440.0, + "total_deaths": 29603.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 36.714, + "total_cases_per_million": 2430.404, + "new_cases_per_million": 7.155, + "new_cases_smoothed_per_million": 6.741, + "total_deaths_per_million": 453.522, + "new_deaths_per_million": 0.429, + "new_deaths_smoothed_per_million": 0.562, + "new_tests": 42556.0, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 31234.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 70.986, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 159452.0, + "new_cases": 811.0, + "new_cases_smoothed": 452.143, + "total_deaths": 29617.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 2442.829, + "new_cases_per_million": 12.425, + "new_cases_smoothed_per_million": 6.927, + "total_deaths_per_million": 453.737, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 20085.0, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 31562.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 69.805, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 160093.0, + "new_cases": 641.0, + "new_cases_smoothed": 468.571, + "total_deaths": 29633.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 2452.649, + "new_cases_per_million": 9.82, + "new_cases_smoothed_per_million": 7.179, + "total_deaths_per_million": 453.982, + "new_deaths_per_million": 0.245, + "new_deaths_smoothed_per_million": 0.514, + "new_tests": 5662.0, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 31538.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 67.307, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 160377.0, + "new_cases": 284.0, + "new_cases_smoothed": 451.0, + "total_deaths": 29640.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 2457.0, + "new_cases_per_million": 4.351, + "new_cases_smoothed_per_million": 6.909, + "total_deaths_per_million": 454.089, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.51, + "new_tests": 44061.0, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 32049.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 71.062, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-23", + "total_cases": 160750.0, + "new_cases": 373.0, + "new_cases_smoothed": 482.571, + "total_deaths": 29663.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 32.429, + "total_cases_per_million": 2462.714, + "new_cases_per_million": 5.714, + "new_cases_smoothed_per_million": 7.393, + "total_deaths_per_million": 454.442, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.497, + "new_tests": 44732.0, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 32801.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 67.971, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-24", + "total_cases": 161267.0, + "new_cases": 517.0, + "new_cases_smoothed": 507.286, + "total_deaths": 29720.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 2470.635, + "new_cases_per_million": 7.921, + "new_cases_smoothed_per_million": 7.772, + "total_deaths_per_million": 455.315, + "new_deaths_per_million": 0.873, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 42341.0, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 33533.0, + "new_tests_smoothed_per_thousand": 0.514, + "tests_per_case": 66.10300000000001, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-25", + "total_cases": 161348.0, + "new_cases": 81.0, + "new_cases_smoothed": 453.429, + "total_deaths": 29731.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 2471.876, + "new_cases_per_million": 1.241, + "new_cases_smoothed_per_million": 6.947, + "total_deaths_per_million": 455.483, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.341, + "new_tests": 36579.0, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 33717.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 74.36, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-26", + "total_cases": 161348.0, + "new_cases": 0.0, + "new_cases_smoothed": 386.714, + "total_deaths": 29752.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 2471.876, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 455.805, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.326, + "new_tests": 47380.0, + "new_tests_per_thousand": 0.726, + "new_tests_smoothed": 34406.0, + "new_tests_smoothed_per_thousand": 0.527, + "tests_per_case": 88.97, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-27", + "total_cases": 162936.0, + "new_cases": 1588.0, + "new_cases_smoothed": 497.714, + "total_deaths": 29778.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 2496.204, + "new_cases_per_million": 24.328, + "new_cases_smoothed_per_million": 7.625, + "total_deaths_per_million": 456.203, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.352, + "new_tests": 22775.0, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 34790.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 69.9, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-28", + "total_cases": 162936.0, + "new_cases": 0.0, + "new_cases_smoothed": 406.143, + "total_deaths": 29778.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 2496.204, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.222, + "total_deaths_per_million": 456.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 7304.0, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 35025.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 86.238, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-29", + "total_cases": 162936.0, + "new_cases": 0.0, + "new_cases_smoothed": 365.571, + "total_deaths": 29778.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2496.204, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.601, + "total_deaths_per_million": 456.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 56383.0, + "new_tests_per_thousand": 0.864, + "new_tests_smoothed": 36785.0, + "new_tests_smoothed_per_thousand": 0.564, + "tests_per_case": 100.62299999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 164260.0, + "new_cases": 1324.0, + "new_cases_smoothed": 501.429, + "total_deaths": 29813.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 2516.488, + "new_cases_per_million": 20.284, + "new_cases_smoothed_per_million": 7.682, + "total_deaths_per_million": 456.74, + "new_deaths_per_million": 0.536, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 54712.0, + "new_tests_per_thousand": 0.838, + "new_tests_smoothed": 38211.0, + "new_tests_smoothed_per_thousand": 0.585, + "tests_per_case": 76.204, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 164801.0, + "new_cases": 541.0, + "new_cases_smoothed": 504.857, + "total_deaths": 29843.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 2524.776, + "new_cases_per_million": 8.288, + "new_cases_smoothed_per_million": 7.734, + "total_deaths_per_million": 457.199, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 52763.0, + "new_tests_per_thousand": 0.808, + "new_tests_smoothed": 39699.0, + "new_tests_smoothed_per_thousand": 0.608, + "tests_per_case": 78.634, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-02", + "total_cases": 165719.0, + "new_cases": 918.0, + "new_cases_smoothed": 624.429, + "total_deaths": 29861.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2538.84, + "new_cases_per_million": 14.064, + "new_cases_smoothed_per_million": 9.566, + "total_deaths_per_million": 457.475, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.285, + "new_tests": 50908.0, + "new_tests_per_thousand": 0.78, + "new_tests_smoothed": 41746.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 66.855, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-03", + "total_cases": 166378.0, + "new_cases": 659.0, + "new_cases_smoothed": 718.571, + "total_deaths": 29875.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 2548.936, + "new_cases_per_million": 10.096, + "new_cases_smoothed_per_million": 11.009, + "total_deaths_per_million": 457.689, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 59521.0, + "new_tests_per_thousand": 0.912, + "new_tests_smoothed": 43481.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 60.51, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-04", + "total_cases": 166960.0, + "new_cases": 582.0, + "new_cases_smoothed": 574.857, + "total_deaths": 29893.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2557.852, + "new_cases_per_million": 8.916, + "new_cases_smoothed_per_million": 8.807, + "total_deaths_per_million": 457.965, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 26799.0, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 44056.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 76.638, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-05", + "total_cases": 166960.0, + "new_cases": 0.0, + "new_cases_smoothed": 574.857, + "total_deaths": 29893.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2557.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.807, + "total_deaths_per_million": 457.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 7486.0, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 44082.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 76.683, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-06", + "total_cases": 166960.0, + "new_cases": 0.0, + "new_cases_smoothed": 574.857, + "total_deaths": 29893.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2557.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.807, + "total_deaths_per_million": 457.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 60801.0, + "new_tests_per_thousand": 0.931, + "new_tests_smoothed": 44713.0, + "new_tests_smoothed_per_thousand": 0.685, + "tests_per_case": 77.781, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-07", + "total_cases": 168335.0, + "new_cases": 1375.0, + "new_cases_smoothed": 582.143, + "total_deaths": 29920.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2578.917, + "new_cases_per_million": 21.065, + "new_cases_smoothed_per_million": 8.919, + "total_deaths_per_million": 458.379, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 60436.0, + "new_tests_per_thousand": 0.926, + "new_tests_smoothed": 45531.0, + "new_tests_smoothed_per_thousand": 0.698, + "tests_per_case": 78.21300000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-08", + "total_cases": 168810.0, + "new_cases": 475.0, + "new_cases_smoothed": 572.714, + "total_deaths": 29933.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 2586.195, + "new_cases_per_million": 7.277, + "new_cases_smoothed_per_million": 8.774, + "total_deaths_per_million": 458.578, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 59761.0, + "new_tests_per_thousand": 0.916, + "new_tests_smoothed": 46530.0, + "new_tests_smoothed_per_thousand": 0.713, + "tests_per_case": 81.245, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-09", + "total_cases": 169473.0, + "new_cases": 663.0, + "new_cases_smoothed": 536.286, + "total_deaths": 29965.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 2596.352, + "new_cases_per_million": 10.157, + "new_cases_smoothed_per_million": 8.216, + "total_deaths_per_million": 459.068, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 63292.0, + "new_tests_per_thousand": 0.97, + "new_tests_smoothed": 48299.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 90.06200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-10", + "total_cases": 170094.0, + "new_cases": 621.0, + "new_cases_smoothed": 530.857, + "total_deaths": 29979.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 2605.866, + "new_cases_per_million": 9.514, + "new_cases_smoothed_per_million": 8.133, + "total_deaths_per_million": 459.283, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 70707.0, + "new_tests_per_thousand": 1.083, + "new_tests_smoothed": 49897.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 93.993, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-11", + "total_cases": 170752.0, + "new_cases": 658.0, + "new_cases_smoothed": 541.714, + "total_deaths": 30004.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2615.946, + "new_cases_per_million": 10.081, + "new_cases_smoothed_per_million": 8.299, + "total_deaths_per_million": 459.666, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 29880.0, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 50338.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 92.92399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-12", + "total_cases": 170752.0, + "new_cases": 0.0, + "new_cases_smoothed": 541.714, + "total_deaths": 30004.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2615.946, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.299, + "total_deaths_per_million": 459.666, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 7530.0, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 50344.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 92.935, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-13", + "total_cases": 170752.0, + "new_cases": 0.0, + "new_cases_smoothed": 541.714, + "total_deaths": 30004.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2615.946, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.299, + "total_deaths_per_million": 459.666, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 72050.0, + "new_tests_per_thousand": 1.104, + "new_tests_smoothed": 51951.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 95.90100000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-14", + "total_cases": 172377.0, + "new_cases": 1625.0, + "new_cases_smoothed": 577.429, + "total_deaths": 30029.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 2640.842, + "new_cases_per_million": 24.895, + "new_cases_smoothed_per_million": 8.846, + "total_deaths_per_million": 460.049, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 10746.0, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 44852.0, + "new_tests_smoothed_per_thousand": 0.687, + "tests_per_case": 77.675, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-15", + "total_cases": 172377.0, + "new_cases": 0.0, + "new_cases_smoothed": 509.571, + "total_deaths": 30029.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 2640.842, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.807, + "total_deaths_per_million": 460.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 72433.0, + "new_tests_per_thousand": 1.11, + "new_tests_smoothed": 46663.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 91.573, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-16", + "total_cases": 173304.0, + "new_cases": 927.0, + "new_cases_smoothed": 547.286, + "total_deaths": 30120.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2655.043, + "new_cases_per_million": 14.202, + "new_cases_smoothed_per_million": 8.384, + "total_deaths_per_million": 461.443, + "new_deaths_per_million": 1.394, + "new_deaths_smoothed_per_million": 0.339, + "new_tests": 76599.0, + "new_tests_per_thousand": 1.174, + "new_tests_smoothed": 48564.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 88.736, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-17", + "total_cases": 173838.0, + "new_cases": 534.0, + "new_cases_smoothed": 534.857, + "total_deaths": 30138.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 2663.224, + "new_cases_per_million": 8.181, + "new_cases_smoothed_per_million": 8.194, + "total_deaths_per_million": 461.719, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 85669.0, + "new_tests_per_thousand": 1.312, + "new_tests_smoothed": 50701.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 94.794, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-18", + "total_cases": 174674.0, + "new_cases": 836.0, + "new_cases_smoothed": 560.286, + "total_deaths": 30152.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 2676.032, + "new_cases_per_million": 12.808, + "new_cases_smoothed_per_million": 8.584, + "total_deaths_per_million": 461.933, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 36906.0, + "new_tests_per_thousand": 0.565, + "new_tests_smoothed": 51705.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 92.28299999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-19", + "total_cases": 174674.0, + "new_cases": 0.0, + "new_cases_smoothed": 560.286, + "total_deaths": 30152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 2676.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.584, + "total_deaths_per_million": 461.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 10618.0, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 52146.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 93.07, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-20", + "total_cases": 174674.0, + "new_cases": 0.0, + "new_cases_smoothed": 560.286, + "total_deaths": 30152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 2676.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.584, + "total_deaths_per_million": 461.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 83653.0, + "new_tests_per_thousand": 1.282, + "new_tests_smoothed": 53803.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 96.02799999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-21", + "total_cases": 176754.0, + "new_cases": 2080.0, + "new_cases_smoothed": 625.286, + "total_deaths": 30165.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 2707.898, + "new_cases_per_million": 31.866, + "new_cases_smoothed_per_million": 9.579, + "total_deaths_per_million": 462.132, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 81046.0, + "new_tests_per_thousand": 1.242, + "new_tests_smoothed": 63846.0, + "new_tests_smoothed_per_thousand": 0.978, + "tests_per_case": 102.10700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-22", + "total_cases": 177338.0, + "new_cases": 584.0, + "new_cases_smoothed": 708.714, + "total_deaths": 30165.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 2716.845, + "new_cases_per_million": 8.947, + "new_cases_smoothed_per_million": 10.858, + "total_deaths_per_million": 462.132, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 80560.0, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 65007.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 91.725, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-23", + "total_cases": 178336.0, + "new_cases": 998.0, + "new_cases_smoothed": 718.857, + "total_deaths": 30172.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2732.134, + "new_cases_per_million": 15.29, + "new_cases_smoothed_per_million": 11.013, + "total_deaths_per_million": 462.24, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 79580.0, + "new_tests_per_thousand": 1.219, + "new_tests_smoothed": 65433.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 91.024, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-24", + "total_cases": 179398.0, + "new_cases": 1062.0, + "new_cases_smoothed": 794.286, + "total_deaths": 30182.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2748.404, + "new_cases_per_million": 16.27, + "new_cases_smoothed_per_million": 12.169, + "total_deaths_per_million": 462.393, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 86552.0, + "new_tests_per_thousand": 1.326, + "new_tests_smoothed": 65559.0, + "new_tests_smoothed_per_thousand": 1.004, + "tests_per_case": 82.538, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-25", + "total_cases": 180528.0, + "new_cases": 1130.0, + "new_cases_smoothed": 836.286, + "total_deaths": 30192.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2765.716, + "new_cases_per_million": 17.312, + "new_cases_smoothed_per_million": 12.812, + "total_deaths_per_million": 462.546, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 39073.0, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 65869.0, + "new_tests_smoothed_per_thousand": 1.009, + "tests_per_case": 78.764, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-26", + "total_cases": 180528.0, + "new_cases": 0.0, + "new_cases_smoothed": 836.286, + "total_deaths": 30192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2765.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.812, + "total_deaths_per_million": 462.546, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 13180.0, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 66235.0, + "new_tests_smoothed_per_thousand": 1.015, + "tests_per_case": 79.20100000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-27", + "total_cases": 180528.0, + "new_cases": 0.0, + "new_cases_smoothed": 836.286, + "total_deaths": 30192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2765.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.812, + "total_deaths_per_million": 462.546, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 92021.0, + "new_tests_per_thousand": 1.41, + "new_tests_smoothed": 67430.0, + "new_tests_smoothed_per_thousand": 1.033, + "tests_per_case": 80.63, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-28", + "total_cases": 183079.0, + "new_cases": 2551.0, + "new_cases_smoothed": 903.571, + "total_deaths": 30209.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2804.798, + "new_cases_per_million": 39.082, + "new_cases_smoothed_per_million": 13.843, + "total_deaths_per_million": 462.806, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 94206.0, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 69310.0, + "new_tests_smoothed_per_thousand": 1.062, + "tests_per_case": 76.707, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-29", + "total_cases": 183804.0, + "new_cases": 725.0, + "new_cases_smoothed": 923.714, + "total_deaths": 30223.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2815.905, + "new_cases_per_million": 11.107, + "new_cases_smoothed_per_million": 14.151, + "total_deaths_per_million": 463.021, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 97570.0, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 71740.0, + "new_tests_smoothed_per_thousand": 1.099, + "tests_per_case": 77.665, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-30", + "total_cases": 185196.0, + "new_cases": 1392.0, + "new_cases_smoothed": 980.0, + "total_deaths": 30238.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 2837.231, + "new_cases_per_million": 21.326, + "new_cases_smoothed_per_million": 15.014, + "total_deaths_per_million": 463.251, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 94212.0, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 73831.0, + "new_tests_smoothed_per_thousand": 1.131, + "tests_per_case": 75.33800000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-31", + "total_cases": 186573.0, + "new_cases": 1377.0, + "new_cases_smoothed": 1025.0, + "total_deaths": 30254.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 2858.326, + "new_cases_per_million": 21.096, + "new_cases_smoothed_per_million": 15.703, + "total_deaths_per_million": 463.496, + "new_deaths_per_million": 0.245, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 97956.0, + "new_tests_per_thousand": 1.501, + "new_tests_smoothed": 75460.0, + "new_tests_smoothed_per_thousand": 1.156, + "tests_per_case": 73.62, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-01", + "total_cases": 187919.0, + "new_cases": 1346.0, + "new_cases_smoothed": 1055.857, + "total_deaths": 30265.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 2878.947, + "new_cases_per_million": 20.621, + "new_cases_smoothed_per_million": 16.176, + "total_deaths_per_million": 463.664, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 42534.0, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 75954.0, + "new_tests_smoothed_per_thousand": 1.164, + "tests_per_case": 71.936, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-02", + "total_cases": 187919.0, + "new_cases": 0.0, + "new_cases_smoothed": 1055.857, + "total_deaths": 30265.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 2878.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.176, + "total_deaths_per_million": 463.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 14266.0, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 76109.0, + "new_tests_smoothed_per_thousand": 1.166, + "tests_per_case": 72.083, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-03", + "total_cases": 187919.0, + "new_cases": 0.0, + "new_cases_smoothed": 1055.857, + "total_deaths": 30265.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 2878.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.176, + "total_deaths_per_million": 463.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 99774.0, + "new_tests_per_thousand": 1.529, + "new_tests_smoothed": 77217.0, + "new_tests_smoothed_per_thousand": 1.183, + "tests_per_case": 73.132, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-04", + "total_cases": 191295.0, + "new_cases": 3376.0, + "new_cases_smoothed": 1173.714, + "total_deaths": 30294.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 2930.668, + "new_cases_per_million": 51.721, + "new_cases_smoothed_per_million": 17.981, + "total_deaths_per_million": 464.109, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 94848.0, + "new_tests_per_thousand": 1.453, + "new_tests_smoothed": 77309.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 65.867, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-05", + "total_cases": 192334.0, + "new_cases": 1039.0, + "new_cases_smoothed": 1218.571, + "total_deaths": 30296.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 2946.586, + "new_cases_per_million": 15.918, + "new_cases_smoothed_per_million": 18.669, + "total_deaths_per_million": 464.139, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 95008.0, + "new_tests_per_thousand": 1.456, + "new_tests_smoothed": 76943.0, + "new_tests_smoothed_per_thousand": 1.179, + "tests_per_case": 63.141999999999996, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-06", + "total_cases": 194029.0, + "new_cases": 1695.0, + "new_cases_smoothed": 1261.857, + "total_deaths": 30305.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 2972.553, + "new_cases_per_million": 25.968, + "new_cases_smoothed_per_million": 19.332, + "total_deaths_per_million": 464.277, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 97572.0, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 77423.0, + "new_tests_smoothed_per_thousand": 1.186, + "tests_per_case": 61.356, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-07", + "total_cases": 195633.0, + "new_cases": 1604.0, + "new_cases_smoothed": 1294.286, + "total_deaths": 30312.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2997.127, + "new_cases_per_million": 24.574, + "new_cases_smoothed_per_million": 19.829, + "total_deaths_per_million": 464.384, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 99219.0, + "new_tests_per_thousand": 1.52, + "new_tests_smoothed": 77603.0, + "new_tests_smoothed_per_thousand": 1.189, + "tests_per_case": 59.958, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-08", + "total_cases": 197921.0, + "new_cases": 2288.0, + "new_cases_smoothed": 1428.857, + "total_deaths": 30324.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3032.179, + "new_cases_per_million": 35.053, + "new_cases_smoothed_per_million": 21.89, + "total_deaths_per_million": 464.568, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 44044.0, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 77819.0, + "new_tests_smoothed_per_thousand": 1.192, + "tests_per_case": 54.461999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-09", + "total_cases": 197921.0, + "new_cases": 0.0, + "new_cases_smoothed": 1428.857, + "total_deaths": 30324.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3032.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.89, + "total_deaths_per_million": 464.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 14800.0, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 77895.0, + "new_tests_smoothed_per_thousand": 1.193, + "tests_per_case": 54.516000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-10", + "total_cases": 197921.0, + "new_cases": 0.0, + "new_cases_smoothed": 1428.857, + "total_deaths": 30324.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3032.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.89, + "total_deaths_per_million": 464.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 101363.0, + "new_tests_per_thousand": 1.553, + "new_tests_smoothed": 78122.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 54.674, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-11", + "total_cases": 202775.0, + "new_cases": 4854.0, + "new_cases_smoothed": 1640.0, + "total_deaths": 30340.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3106.543, + "new_cases_per_million": 74.364, + "new_cases_smoothed_per_million": 25.125, + "total_deaths_per_million": 464.813, + "new_deaths_per_million": 0.245, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 92615.0, + "new_tests_per_thousand": 1.419, + "new_tests_smoothed": 77803.0, + "new_tests_smoothed_per_thousand": 1.192, + "tests_per_case": 47.441, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-12", + "total_cases": 204172.0, + "new_cases": 1397.0, + "new_cases_smoothed": 1691.143, + "total_deaths": 30354.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 3127.946, + "new_cases_per_million": 21.402, + "new_cases_smoothed_per_million": 25.909, + "total_deaths_per_million": 465.028, + "new_deaths_per_million": 0.214, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 96613.0, + "new_tests_per_thousand": 1.48, + "new_tests_smoothed": 78032.0, + "new_tests_smoothed_per_thousand": 1.195, + "tests_per_case": 46.141999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-13", + "total_cases": 206696.0, + "new_cases": 2524.0, + "new_cases_smoothed": 1809.571, + "total_deaths": 30371.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3166.614, + "new_cases_per_million": 38.668, + "new_cases_smoothed_per_million": 27.723, + "total_deaths_per_million": 465.288, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 105659.0, + "new_tests_per_thousand": 1.619, + "new_tests_smoothed": 79188.0, + "new_tests_smoothed_per_thousand": 1.213, + "tests_per_case": 43.761, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-14", + "total_cases": 209365.0, + "new_cases": 2669.0, + "new_cases_smoothed": 1961.714, + "total_deaths": 30388.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 3207.503, + "new_cases_per_million": 40.889, + "new_cases_smoothed_per_million": 30.054, + "total_deaths_per_million": 465.549, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 116085.0, + "new_tests_per_thousand": 1.778, + "new_tests_smoothed": 81597.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 41.595, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-15", + "total_cases": 212211.0, + "new_cases": 2846.0, + "new_cases_smoothed": 2041.429, + "total_deaths": 30406.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 3251.104, + "new_cases_per_million": 43.601, + "new_cases_smoothed_per_million": 31.275, + "total_deaths_per_million": 465.824, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.179, + "new_tests": 23262.0, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 78628.0, + "new_tests_smoothed_per_thousand": 1.205, + "tests_per_case": 38.516, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-16", + "total_cases": 215521.0, + "new_cases": 3310.0, + "new_cases_smoothed": 2514.286, + "total_deaths": 30409.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 3301.814, + "new_cases_per_million": 50.71, + "new_cases_smoothed_per_million": 38.519, + "total_deaths_per_million": 465.87, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 19053.0, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 79236.0, + "new_tests_smoothed_per_thousand": 1.214, + "tests_per_case": 31.514, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-17", + "total_cases": 218536.0, + "new_cases": 3015.0, + "new_cases_smoothed": 2945.0, + "total_deaths": 30410.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 3348.004, + "new_cases_per_million": 46.19, + "new_cases_smoothed_per_million": 45.118, + "total_deaths_per_million": 465.886, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 132905.0, + "new_tests_per_thousand": 2.036, + "new_tests_smoothed": 83742.0, + "new_tests_smoothed_per_thousand": 1.283, + "tests_per_case": 28.435, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-18", + "total_cases": 219029.0, + "new_cases": 493.0, + "new_cases_smoothed": 2322.0, + "total_deaths": 30429.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 3355.557, + "new_cases_per_million": 7.553, + "new_cases_smoothed_per_million": 35.573, + "total_deaths_per_million": 466.177, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.195, + "new_tests": 126486.0, + "new_tests_per_thousand": 1.938, + "new_tests_smoothed": 88580.0, + "new_tests_smoothed_per_thousand": 1.357, + "tests_per_case": 38.148, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-19", + "total_cases": 221267.0, + "new_cases": 2238.0, + "new_cases_smoothed": 2442.143, + "total_deaths": 30451.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 3389.844, + "new_cases_per_million": 34.286, + "new_cases_smoothed_per_million": 37.414, + "total_deaths_per_million": 466.514, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 124828.0, + "new_tests_per_thousand": 1.912, + "new_tests_smoothed": 92611.0, + "new_tests_smoothed_per_thousand": 1.419, + "tests_per_case": 37.922, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-20", + "total_cases": 225043.0, + "new_cases": 3776.0, + "new_cases_smoothed": 2621.0, + "total_deaths": 30468.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 3447.693, + "new_cases_per_million": 57.849, + "new_cases_smoothed_per_million": 40.154, + "total_deaths_per_million": 466.774, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 132491.0, + "new_tests_per_thousand": 2.03, + "new_tests_smoothed": 96444.0, + "new_tests_smoothed_per_thousand": 1.478, + "tests_per_case": 36.797, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-21", + "total_cases": 229814.0, + "new_cases": 4771.0, + "new_cases_smoothed": 2921.286, + "total_deaths": 30480.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 3520.785, + "new_cases_per_million": 73.092, + "new_cases_smoothed_per_million": 44.755, + "total_deaths_per_million": 466.958, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.201, + "new_tests": 143007.0, + "new_tests_per_thousand": 2.191, + "new_tests_smoothed": 100290.0, + "new_tests_smoothed_per_thousand": 1.536, + "tests_per_case": 34.330999999999996, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-22", + "total_cases": 234400.0, + "new_cases": 4586.0, + "new_cases_smoothed": 3169.857, + "total_deaths": 30503.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 3591.043, + "new_cases_per_million": 70.258, + "new_cases_smoothed_per_million": 48.563, + "total_deaths_per_million": 467.311, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 60372.0, + "new_tests_per_thousand": 0.925, + "new_tests_smoothed": 105592.0, + "new_tests_smoothed_per_thousand": 1.618, + "tests_per_case": 33.311, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-23", + "total_cases": 238002.0, + "new_cases": 3602.0, + "new_cases_smoothed": 3211.571, + "total_deaths": 30512.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 3646.226, + "new_cases_per_million": 55.183, + "new_cases_smoothed_per_million": 49.202, + "total_deaths_per_million": 467.448, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.225, + "new_tests": 19514.0, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 105658.0, + "new_tests_smoothed_per_thousand": 1.619, + "tests_per_case": 32.899, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-24", + "total_cases": 242899.0, + "new_cases": 4897.0, + "new_cases_smoothed": 3480.429, + "total_deaths": 30513.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 3721.249, + "new_cases_per_million": 75.023, + "new_cases_smoothed_per_million": 53.321, + "total_deaths_per_million": 467.464, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.225, + "new_tests": 158847.0, + "new_tests_per_thousand": 2.434, + "new_tests_smoothed": 109364.0, + "new_tests_smoothed_per_thousand": 1.675, + "tests_per_case": 31.423000000000002, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-25", + "total_cases": 244854.0, + "new_cases": 1955.0, + "new_cases_smoothed": 3689.286, + "total_deaths": 30528.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 3751.2, + "new_cases_per_million": 29.951, + "new_cases_smoothed_per_million": 56.52, + "total_deaths_per_million": 467.694, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 151358.0, + "new_tests_per_thousand": 2.319, + "new_tests_smoothed": 112917.0, + "new_tests_smoothed_per_thousand": 1.73, + "tests_per_case": 30.607, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-26", + "total_cases": 248158.0, + "new_cases": 3304.0, + "new_cases_smoothed": 3841.571, + "total_deaths": 30544.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 3801.818, + "new_cases_per_million": 50.618, + "new_cases_smoothed_per_million": 58.853, + "total_deaths_per_million": 467.939, + "new_deaths_per_million": 0.245, + "new_deaths_smoothed_per_million": 0.204, + "new_tests": 148703.0, + "new_tests_per_thousand": 2.278, + "new_tests_smoothed": 116327.0, + "new_tests_smoothed_per_thousand": 1.782, + "tests_per_case": 30.281, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-27", + "total_cases": 253587.0, + "new_cases": 5429.0, + "new_cases_smoothed": 4077.714, + "total_deaths": 30544.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 3884.991, + "new_cases_per_million": 83.173, + "new_cases_smoothed_per_million": 62.471, + "total_deaths_per_million": 467.939, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 149148.0, + "new_tests_per_thousand": 2.285, + "new_tests_smoothed": 118707.0, + "new_tests_smoothed_per_thousand": 1.819, + "tests_per_case": 29.111, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-28", + "total_cases": 259698.0, + "new_cases": 6111.0, + "new_cases_smoothed": 4269.143, + "total_deaths": 30576.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 3978.612, + "new_cases_per_million": 93.621, + "new_cases_smoothed_per_million": 65.404, + "total_deaths_per_million": 468.429, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 145507.0, + "new_tests_per_thousand": 2.229, + "new_tests_smoothed": 119064.0, + "new_tests_smoothed_per_thousand": 1.824, + "tests_per_case": 27.889, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-29", + "total_cases": 267077.0, + "new_cases": 7379.0, + "new_cases_smoothed": 4668.143, + "total_deaths": 30596.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 4091.66, + "new_cases_per_million": 113.047, + "new_cases_smoothed_per_million": 71.517, + "total_deaths_per_million": 468.735, + "new_deaths_per_million": 0.306, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 43.52 + }, + { + "date": "2020-08-30", + "total_cases": 272530.0, + "new_cases": 5453.0, + "new_cases_smoothed": 4932.571, + "total_deaths": 30602.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 4175.201, + "new_cases_per_million": 83.541, + "new_cases_smoothed_per_million": 75.568, + "total_deaths_per_million": 468.827, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 43.52 + }, + { + "date": "2020-08-31", + "total_cases": 277943.0, + "new_cases": 5413.0, + "new_cases_smoothed": 5006.286, + "total_deaths": 30606.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 4258.128, + "new_cases_per_million": 82.928, + "new_cases_smoothed_per_million": 76.697, + "total_deaths_per_million": 468.889, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 43.52 + }, + { + "date": "2020-09-01", + "total_cases": 281025.0, + "new_cases": 3082.0, + "new_cases_smoothed": 5167.286, + "total_deaths": 30635.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 4305.345, + "new_cases_per_million": 47.217, + "new_cases_smoothed_per_million": 79.164, + "total_deaths_per_million": 469.333, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.234 + }, + { + "date": "2020-09-02", + "total_cases": 286007.0, + "new_cases": 4982.0, + "new_cases_smoothed": 5407.0, + "total_deaths": 30661.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 4381.67, + "new_cases_per_million": 76.325, + "new_cases_smoothed_per_million": 82.836, + "total_deaths_per_million": 469.731, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.256 + }, + { + "date": "2020-09-03", + "total_cases": 293024.0, + "new_cases": 7017.0, + "new_cases_smoothed": 5633.857, + "total_deaths": 30686.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 4489.172, + "new_cases_per_million": 107.501, + "new_cases_smoothed_per_million": 86.312, + "total_deaths_per_million": 470.114, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.311 + }, + { + "date": "2020-09-04", + "total_cases": 300181.0, + "new_cases": 7157.0, + "new_cases_smoothed": 5783.286, + "total_deaths": 30686.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 4598.818, + "new_cases_per_million": 109.646, + "new_cases_smoothed_per_million": 88.601, + "total_deaths_per_million": 470.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-09-05", + "total_cases": 309156.0, + "new_cases": 8975.0, + "new_cases_smoothed": 6011.286, + "total_deaths": 30686.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 4736.316, + "new_cases_per_million": 137.498, + "new_cases_smoothed_per_million": 92.094, + "total_deaths_per_million": 470.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.197 + } + ] + }, + "PYF": { + "continent": "Oceania", + "location": "French Polynesia", + "population": 280904.0, + "population_density": 77.324, + "median_age": 32.7, + "aged_65_older": 7.775, + "aged_70_older": 4.593, + "diabetes_prevalence": 22.63, + "life_expectancy": 77.66, + "data": [ + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.68, + "new_cases_per_million": 10.68, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.68, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 15.0, + "new_cases": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 53.399, + "new_cases_per_million": 42.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 17.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 60.519, + "new_cases_per_million": 7.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 18.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 64.079, + "new_cases_per_million": 3.56, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 23.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 81.879, + "new_cases_per_million": 17.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.998, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 12.714, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.998, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 30.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.798, + "new_cases_per_million": 17.8, + "new_cases_smoothed_per_million": 13.731, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.628, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 34.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.038, + "new_cases_per_million": 14.24, + "new_cases_smoothed_per_million": 8.646, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.598, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 8.646, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.158, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 6.611, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.718, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 6.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.718, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.56, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 39.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.837, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 4.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.397, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 3.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.957, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 3.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 47.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 167.317, + "new_cases_per_million": 21.36, + "new_cases_smoothed_per_million": 5.086, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 51.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.557, + "new_cases_per_million": 14.24, + "new_cases_smoothed_per_million": 7.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.594, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 53.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.677, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 6.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 55.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 7.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.068, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.356, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 57.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 58.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.509, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 60.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 62.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 7.12, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.716, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 133.0, + "new_cases": 71.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 473.471, + "new_cases_per_million": 252.755, + "new_cases_smoothed_per_million": 36.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 139.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 494.831, + "new_cases_per_million": 21.36, + "new_cases_smoothed_per_million": 39.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 150.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 533.99, + "new_cases_per_million": 39.159, + "new_cases_smoothed_per_million": 44.753, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 166.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 590.949, + "new_cases_per_million": 56.959, + "new_cases_smoothed_per_million": 52.89, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 590.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 52.89, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 192.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 683.508, + "new_cases_per_million": 92.558, + "new_cases_smoothed_per_million": 66.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 211.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 751.146, + "new_cases_per_million": 67.639, + "new_cases_smoothed_per_million": 75.776, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 211.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 751.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 39.668, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 232.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 825.905, + "new_cases_per_million": 74.759, + "new_cases_smoothed_per_million": 47.296, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 232.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 825.905, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.702, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 236.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 840.145, + "new_cases_per_million": 14.24, + "new_cases_smoothed_per_million": 35.599, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 236.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 840.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.599, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 236.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 840.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.377, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 310.0, + "new_cases": 74.0, + "new_cases_smoothed": 14.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1103.58, + "new_cases_per_million": 263.435, + "new_cases_smoothed_per_million": 50.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 310.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1103.58, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 50.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 353.0, + "new_cases": 43.0, + "new_cases_smoothed": 17.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1256.657, + "new_cases_per_million": 153.077, + "new_cases_smoothed_per_million": 61.536, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1256.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.536, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 420.0, + "new_cases": 67.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1495.173, + "new_cases_per_million": 238.516, + "new_cases_smoothed_per_million": 93.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 420.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1495.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 93.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 420.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1495.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 93.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 527.0, + "new_cases": 107.0, + "new_cases_smoothed": 31.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1876.086, + "new_cases_per_million": 380.913, + "new_cases_smoothed_per_million": 110.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 573.0, + "new_cases": 46.0, + "new_cases_smoothed": 37.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2039.843, + "new_cases_per_million": 163.757, + "new_cases_smoothed_per_million": 133.752, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 596.0, + "new_cases": 23.0, + "new_cases_smoothed": 34.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2121.721, + "new_cases_per_million": 81.879, + "new_cases_smoothed_per_million": 123.581, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 596.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2121.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.581, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 632.0, + "new_cases": 36.0, + "new_cases_smoothed": 30.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2249.879, + "new_cases_per_million": 128.158, + "new_cases_smoothed_per_million": 107.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GAB": { + "continent": "Africa", + "location": "Gabon", + "population": 2225728.0, + "population_density": 7.859, + "median_age": 23.1, + "aged_65_older": 4.45, + "aged_70_older": 2.976, + "gdp_per_capita": 16562.413, + "extreme_poverty": 3.4, + "cardiovasc_death_rate": 259.967, + "diabetes_prevalence": 7.2, + "hospital_beds_per_thousand": 6.3, + "life_expectancy": 66.47, + "data": [ + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.449, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.348, + "new_cases_per_million": 0.899, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-23", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.696, + "new_cases_per_million": 1.348, + "new_cases_smoothed_per_million": 0.321, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-24", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.321, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-25", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.321, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.696, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.145, + "new_cases_per_million": 0.449, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-03-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-01", + "total_cases": 16.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.189, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 0.642, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-02", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.087, + "new_cases_per_million": 0.899, + "new_cases_smoothed_per_million": 0.77, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.087, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-04", + "total_cases": 21.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.435, + "new_cases_per_million": 1.348, + "new_cases_smoothed_per_million": 0.899, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-05", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.899, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.899, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-07", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.435, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.899, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-08", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.479, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 0.899, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-09", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.827, + "new_cases_per_million": 1.348, + "new_cases_smoothed_per_million": 0.963, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-10", + "total_cases": 44.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.769, + "new_cases_per_million": 4.942, + "new_cases_smoothed_per_million": 1.669, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-11", + "total_cases": 46.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.667, + "new_cases_per_million": 0.899, + "new_cases_smoothed_per_million": 1.605, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-12", + "total_cases": 49.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.015, + "new_cases_per_million": 1.348, + "new_cases_smoothed_per_million": 1.797, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-13", + "total_cases": 57.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.61, + "new_cases_per_million": 3.594, + "new_cases_smoothed_per_million": 2.311, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-14", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.61, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.311, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-15", + "total_cases": 75.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.697, + "new_cases_per_million": 8.087, + "new_cases_smoothed_per_million": 2.888, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-16", + "total_cases": 87.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.088, + "new_cases_per_million": 5.391, + "new_cases_smoothed_per_million": 3.466, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-17", + "total_cases": 95.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.683, + "new_cases_per_million": 3.594, + "new_cases_smoothed_per_million": 3.273, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-18", + "total_cases": 108.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.523, + "new_cases_per_million": 5.841, + "new_cases_smoothed_per_million": 3.979, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-19", + "total_cases": 109.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.973, + "new_cases_per_million": 0.449, + "new_cases_smoothed_per_million": 3.851, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-20", + "total_cases": 109.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.338, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-21", + "total_cases": 120.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.915, + "new_cases_per_million": 4.942, + "new_cases_smoothed_per_million": 4.044, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-22", + "total_cases": 156.0, + "new_cases": 36.0, + "new_cases_smoothed": 11.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.089, + "new_cases_per_million": 16.174, + "new_cases_smoothed_per_million": 5.199, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-23", + "total_cases": 166.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.582, + "new_cases_per_million": 4.493, + "new_cases_smoothed_per_million": 5.071, + "total_deaths_per_million": 0.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-24", + "total_cases": 167.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 75.032, + "new_cases_per_million": 0.449, + "new_cases_smoothed_per_million": 4.621, + "total_deaths_per_million": 0.899, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 81.48 + }, + { + "date": "2020-04-25", + "total_cases": 172.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 77.278, + "new_cases_per_million": 2.246, + "new_cases_smoothed_per_million": 4.108, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 81.48 + }, + { + "date": "2020-04-26", + "total_cases": 176.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 79.075, + "new_cases_per_million": 1.797, + "new_cases_smoothed_per_million": 4.3, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 81.48 + }, + { + "date": "2020-04-27", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 79.075, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.3, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 211.0, + "new_cases": 35.0, + "new_cases_smoothed": 13.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 94.8, + "new_cases_per_million": 15.725, + "new_cases_smoothed_per_million": 5.841, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 238.0, + "new_cases": 27.0, + "new_cases_smoothed": 11.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 106.931, + "new_cases_per_million": 12.131, + "new_cases_smoothed_per_million": 5.263, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 276.0, + "new_cases": 38.0, + "new_cases_smoothed": 15.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 124.004, + "new_cases_per_million": 17.073, + "new_cases_smoothed_per_million": 7.06, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 276.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 124.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.996, + "total_deaths_per_million": 1.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 308.0, + "new_cases": 32.0, + "new_cases_smoothed": 19.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.382, + "new_cases_per_million": 14.377, + "new_cases_smoothed_per_million": 8.729, + "total_deaths_per_million": 1.797, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 335.0, + "new_cases": 27.0, + "new_cases_smoothed": 22.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 150.513, + "new_cases_per_million": 12.131, + "new_cases_smoothed_per_million": 10.205, + "total_deaths_per_million": 2.246, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 150.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.205, + "total_deaths_per_million": 2.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 79.63 + }, + { + "date": "2020-05-05", + "total_cases": 367.0, + "new_cases": 32.0, + "new_cases_smoothed": 22.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 164.89, + "new_cases_per_million": 14.377, + "new_cases_smoothed_per_million": 10.013, + "total_deaths_per_million": 2.696, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 397.0, + "new_cases": 30.0, + "new_cases_smoothed": 22.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 178.369, + "new_cases_per_million": 13.479, + "new_cases_smoothed_per_million": 10.205, + "total_deaths_per_million": 2.696, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 439.0, + "new_cases": 42.0, + "new_cases_smoothed": 23.286, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 197.239, + "new_cases_per_million": 18.87, + "new_cases_smoothed_per_million": 10.462, + "total_deaths_per_million": 3.594, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.321, + "stringency_index": 79.63 + }, + { + "date": "2020-05-08", + "total_cases": 504.0, + "new_cases": 65.0, + "new_cases_smoothed": 32.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 226.443, + "new_cases_per_million": 29.204, + "new_cases_smoothed_per_million": 14.634, + "total_deaths_per_million": 3.594, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.321, + "stringency_index": 79.63 + }, + { + "date": "2020-05-09", + "total_cases": 620.0, + "new_cases": 116.0, + "new_cases_smoothed": 44.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 278.561, + "new_cases_per_million": 52.118, + "new_cases_smoothed_per_million": 20.026, + "total_deaths_per_million": 3.594, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 79.63 + }, + { + "date": "2020-05-10", + "total_cases": 661.0, + "new_cases": 41.0, + "new_cases_smoothed": 46.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 296.981, + "new_cases_per_million": 18.421, + "new_cases_smoothed_per_million": 20.924, + "total_deaths_per_million": 3.594, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 661.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 296.981, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.924, + "total_deaths_per_million": 3.594, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 802.0, + "new_cases": 141.0, + "new_cases_smoothed": 62.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 360.332, + "new_cases_per_million": 63.35, + "new_cases_smoothed_per_million": 27.92, + "total_deaths_per_million": 4.044, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 863.0, + "new_cases": 61.0, + "new_cases_smoothed": 66.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 387.738, + "new_cases_per_million": 27.407, + "new_cases_smoothed_per_million": 29.91, + "total_deaths_per_million": 4.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 1004.0, + "new_cases": 141.0, + "new_cases_smoothed": 80.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 451.088, + "new_cases_per_million": 63.35, + "new_cases_smoothed_per_million": 36.264, + "total_deaths_per_million": 4.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 80.56 + }, + { + "date": "2020-05-15", + "total_cases": 1104.0, + "new_cases": 100.0, + "new_cases_smoothed": 85.714, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 496.017, + "new_cases_per_million": 44.929, + "new_cases_smoothed_per_million": 38.511, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-16", + "total_cases": 1209.0, + "new_cases": 105.0, + "new_cases_smoothed": 84.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 543.193, + "new_cases_per_million": 47.176, + "new_cases_smoothed_per_million": 37.805, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 1320.0, + "new_cases": 111.0, + "new_cases_smoothed": 94.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 593.064, + "new_cases_per_million": 49.871, + "new_cases_smoothed_per_million": 42.298, + "total_deaths_per_million": 4.942, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 1320.0, + "new_cases": 0.0, + "new_cases_smoothed": 94.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 593.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.298, + "total_deaths_per_million": 4.942, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 1432.0, + "new_cases": 112.0, + "new_cases_smoothed": 90.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 643.385, + "new_cases_per_million": 50.321, + "new_cases_smoothed_per_million": 40.436, + "total_deaths_per_million": 4.942, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 1502.0, + "new_cases": 70.0, + "new_cases_smoothed": 91.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 674.835, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 41.014, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 1567.0, + "new_cases": 65.0, + "new_cases_smoothed": 80.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 704.039, + "new_cases_per_million": 29.204, + "new_cases_smoothed_per_million": 36.136, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 1567.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 704.039, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.717, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 1728.0, + "new_cases": 161.0, + "new_cases_smoothed": 74.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 776.375, + "new_cases_per_million": 72.336, + "new_cases_smoothed_per_million": 33.312, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 1934.0, + "new_cases": 206.0, + "new_cases_smoothed": 87.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 868.929, + "new_cases_per_million": 92.554, + "new_cases_smoothed_per_million": 39.409, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 1934.0, + "new_cases": 0.0, + "new_cases_smoothed": 87.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 868.929, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 39.409, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 2135.0, + "new_cases": 201.0, + "new_cases_smoothed": 100.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 959.237, + "new_cases_per_million": 90.308, + "new_cases_smoothed_per_million": 45.122, + "total_deaths_per_million": 6.29, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 2238.0, + "new_cases": 103.0, + "new_cases_smoothed": 105.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1005.514, + "new_cases_per_million": 46.277, + "new_cases_smoothed_per_million": 47.24, + "total_deaths_per_million": 6.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 2319.0, + "new_cases": 81.0, + "new_cases_smoothed": 107.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1041.906, + "new_cases_per_million": 36.393, + "new_cases_smoothed_per_million": 48.267, + "total_deaths_per_million": 6.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 2431.0, + "new_cases": 112.0, + "new_cases_smoothed": 123.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1092.227, + "new_cases_per_million": 50.321, + "new_cases_smoothed_per_million": 55.455, + "total_deaths_per_million": 6.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 2613.0, + "new_cases": 182.0, + "new_cases_smoothed": 126.429, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1173.998, + "new_cases_per_million": 81.771, + "new_cases_smoothed_per_million": 56.803, + "total_deaths_per_million": 6.739, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 2655.0, + "new_cases": 42.0, + "new_cases_smoothed": 103.0, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1192.868, + "new_cases_per_million": 18.87, + "new_cases_smoothed_per_million": 46.277, + "total_deaths_per_million": 7.638, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.321, + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 2655.0, + "new_cases": 0.0, + "new_cases_smoothed": 103.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1192.868, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.277, + "total_deaths_per_million": 7.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.321, + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 2655.0, + "new_cases": 0.0, + "new_cases_smoothed": 74.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1192.868, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.376, + "total_deaths_per_million": 7.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 2803.0, + "new_cases": 148.0, + "new_cases_smoothed": 80.714, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1259.363, + "new_cases_per_million": 66.495, + "new_cases_smoothed_per_million": 36.264, + "total_deaths_per_million": 8.986, + "new_deaths_per_million": 1.348, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 2902.0, + "new_cases": 99.0, + "new_cases_smoothed": 83.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1303.843, + "new_cases_per_million": 44.48, + "new_cases_smoothed_per_million": 37.42, + "total_deaths_per_million": 8.986, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 2955.0, + "new_cases": 53.0, + "new_cases_smoothed": 74.857, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1327.655, + "new_cases_per_million": 23.812, + "new_cases_smoothed_per_million": 33.633, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 3101.0, + "new_cases": 146.0, + "new_cases_smoothed": 69.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1393.252, + "new_cases_per_million": 65.597, + "new_cases_smoothed_per_million": 31.322, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 3101.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1393.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.626, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 3101.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1393.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.626, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 3247.0, + "new_cases": 146.0, + "new_cases_smoothed": 84.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1458.849, + "new_cases_per_million": 65.597, + "new_cases_smoothed_per_million": 37.997, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 3294.0, + "new_cases": 47.0, + "new_cases_smoothed": 70.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1479.965, + "new_cases_per_million": 21.117, + "new_cases_smoothed_per_million": 31.515, + "total_deaths_per_million": 9.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 3375.0, + "new_cases": 81.0, + "new_cases_smoothed": 67.571, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1516.358, + "new_cases_per_million": 36.393, + "new_cases_smoothed_per_million": 30.359, + "total_deaths_per_million": 9.884, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 3463.0, + "new_cases": 88.0, + "new_cases_smoothed": 72.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1555.895, + "new_cases_per_million": 39.538, + "new_cases_smoothed_per_million": 32.606, + "total_deaths_per_million": 10.334, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 3463.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1555.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.235, + "total_deaths_per_million": 10.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 3463.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1555.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.235, + "total_deaths_per_million": 10.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 3463.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1555.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.235, + "total_deaths_per_million": 10.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 69.44 + }, + { + "date": "2020-06-16", + "total_cases": 4033.0, + "new_cases": 570.0, + "new_cases_smoothed": 112.286, + "total_deaths": 27.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1811.991, + "new_cases_per_million": 256.096, + "new_cases_smoothed_per_million": 50.449, + "total_deaths_per_million": 12.131, + "new_deaths_per_million": 1.797, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 69.44 + }, + { + "date": "2020-06-17", + "total_cases": 4114.0, + "new_cases": 81.0, + "new_cases_smoothed": 117.143, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1848.384, + "new_cases_per_million": 36.393, + "new_cases_smoothed_per_million": 52.631, + "total_deaths_per_million": 13.029, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.513, + "stringency_index": 69.44 + }, + { + "date": "2020-06-18", + "total_cases": 4229.0, + "new_cases": 115.0, + "new_cases_smoothed": 122.0, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1900.052, + "new_cases_per_million": 51.668, + "new_cases_smoothed_per_million": 54.814, + "total_deaths_per_million": 13.479, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.513, + "stringency_index": 69.44 + }, + { + "date": "2020-06-19", + "total_cases": 4340.0, + "new_cases": 111.0, + "new_cases_smoothed": 125.286, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1949.924, + "new_cases_per_million": 49.871, + "new_cases_smoothed_per_million": 56.29, + "total_deaths_per_million": 14.377, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 69.44 + }, + { + "date": "2020-06-20", + "total_cases": 4428.0, + "new_cases": 88.0, + "new_cases_smoothed": 137.857, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1989.461, + "new_cases_per_million": 39.538, + "new_cases_smoothed_per_million": 61.938, + "total_deaths_per_million": 15.276, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.706, + "stringency_index": 69.44 + }, + { + "date": "2020-06-21", + "total_cases": 4428.0, + "new_cases": 0.0, + "new_cases_smoothed": 137.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1989.461, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.938, + "total_deaths_per_million": 15.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.706, + "stringency_index": 69.44 + }, + { + "date": "2020-06-22", + "total_cases": 4428.0, + "new_cases": 0.0, + "new_cases_smoothed": 137.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1989.461, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 61.938, + "total_deaths_per_million": 15.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.706, + "stringency_index": 69.44 + }, + { + "date": "2020-06-23", + "total_cases": 4739.0, + "new_cases": 311.0, + "new_cases_smoothed": 100.857, + "total_deaths": 39.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2129.191, + "new_cases_per_million": 139.73, + "new_cases_smoothed_per_million": 45.314, + "total_deaths_per_million": 17.522, + "new_deaths_per_million": 2.246, + "new_deaths_smoothed_per_million": 0.77, + "stringency_index": 69.44 + }, + { + "date": "2020-06-24", + "total_cases": 4873.0, + "new_cases": 134.0, + "new_cases_smoothed": 108.429, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2189.396, + "new_cases_per_million": 60.205, + "new_cases_smoothed_per_million": 48.716, + "total_deaths_per_million": 17.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.642, + "stringency_index": 69.44 + }, + { + "date": "2020-06-25", + "total_cases": 4956.0, + "new_cases": 83.0, + "new_cases_smoothed": 103.857, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2226.687, + "new_cases_per_million": 37.291, + "new_cases_smoothed_per_million": 46.662, + "total_deaths_per_million": 17.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "stringency_index": 69.44 + }, + { + "date": "2020-06-26", + "total_cases": 5087.0, + "new_cases": 131.0, + "new_cases_smoothed": 106.714, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2285.544, + "new_cases_per_million": 58.857, + "new_cases_smoothed_per_million": 47.946, + "total_deaths_per_million": 17.972, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.513, + "stringency_index": 69.44 + }, + { + "date": "2020-06-27", + "total_cases": 5209.0, + "new_cases": 122.0, + "new_cases_smoothed": 111.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2340.358, + "new_cases_per_million": 54.814, + "new_cases_smoothed_per_million": 50.128, + "total_deaths_per_million": 17.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 69.44 + }, + { + "date": "2020-06-28", + "total_cases": 5209.0, + "new_cases": 0.0, + "new_cases_smoothed": 111.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2340.358, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 50.128, + "total_deaths_per_million": 17.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 69.44 + }, + { + "date": "2020-06-29", + "total_cases": 5209.0, + "new_cases": 0.0, + "new_cases_smoothed": 111.571, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2340.358, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 50.128, + "total_deaths_per_million": 17.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.385, + "stringency_index": 69.44 + }, + { + "date": "2020-06-30", + "total_cases": 5394.0, + "new_cases": 185.0, + "new_cases_smoothed": 93.571, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2423.477, + "new_cases_per_million": 83.119, + "new_cases_smoothed_per_million": 42.041, + "total_deaths_per_million": 18.87, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 69.44 + }, + { + "date": "2020-07-01", + "total_cases": 5394.0, + "new_cases": 0.0, + "new_cases_smoothed": 74.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2423.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.44, + "total_deaths_per_million": 18.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-02", + "total_cases": 5513.0, + "new_cases": 119.0, + "new_cases_smoothed": 79.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2476.942, + "new_cases_per_million": 53.466, + "new_cases_smoothed_per_million": 35.751, + "total_deaths_per_million": 18.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-03", + "total_cases": 5513.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2476.942, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.343, + "total_deaths_per_million": 18.87, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-07-04", + "total_cases": 5620.0, + "new_cases": 107.0, + "new_cases_smoothed": 58.714, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2525.017, + "new_cases_per_million": 48.074, + "new_cases_smoothed_per_million": 26.38, + "total_deaths_per_million": 19.769, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-05", + "total_cases": 5620.0, + "new_cases": 0.0, + "new_cases_smoothed": 58.714, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2525.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.38, + "total_deaths_per_million": 19.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-06", + "total_cases": 5620.0, + "new_cases": 0.0, + "new_cases_smoothed": 58.714, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2525.017, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.38, + "total_deaths_per_million": 19.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-07", + "total_cases": 5743.0, + "new_cases": 123.0, + "new_cases_smoothed": 49.857, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2580.279, + "new_cases_per_million": 55.263, + "new_cases_smoothed_per_million": 22.4, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-08", + "total_cases": 5743.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2580.279, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.4, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-09", + "total_cases": 5871.0, + "new_cases": 128.0, + "new_cases_smoothed": 51.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2637.789, + "new_cases_per_million": 57.509, + "new_cases_smoothed_per_million": 22.978, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-10", + "total_cases": 5871.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2637.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.978, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.257, + "stringency_index": 66.67 + }, + { + "date": "2020-07-11", + "total_cases": 5942.0, + "new_cases": 71.0, + "new_cases_smoothed": 46.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2669.688, + "new_cases_per_million": 31.9, + "new_cases_smoothed_per_million": 20.667, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-07-12", + "total_cases": 5942.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2669.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.667, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-07-13", + "total_cases": 5942.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2669.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.667, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-07-14", + "total_cases": 6026.0, + "new_cases": 84.0, + "new_cases_smoothed": 40.429, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2707.429, + "new_cases_per_million": 37.74, + "new_cases_smoothed_per_million": 18.164, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-15", + "total_cases": 6026.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.429, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2707.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.164, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-16", + "total_cases": 6121.0, + "new_cases": 95.0, + "new_cases_smoothed": 35.714, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2750.111, + "new_cases_per_million": 42.683, + "new_cases_smoothed_per_million": 16.046, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-17", + "total_cases": 6121.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.714, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2750.111, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.046, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-18", + "total_cases": 6315.0, + "new_cases": 194.0, + "new_cases_smoothed": 53.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2837.274, + "new_cases_per_million": 87.162, + "new_cases_smoothed_per_million": 23.941, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-19", + "total_cases": 6315.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2837.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.941, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-20", + "total_cases": 6315.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2837.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.941, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-21", + "total_cases": 6433.0, + "new_cases": 118.0, + "new_cases_smoothed": 58.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2890.29, + "new_cases_per_million": 53.016, + "new_cases_smoothed_per_million": 26.123, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-22", + "total_cases": 6433.0, + "new_cases": 0.0, + "new_cases_smoothed": 58.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2890.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.123, + "total_deaths_per_million": 20.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-07-23", + "total_cases": 6588.0, + "new_cases": 155.0, + "new_cases_smoothed": 66.714, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2959.93, + "new_cases_per_million": 69.64, + "new_cases_smoothed_per_million": 29.974, + "total_deaths_per_million": 21.117, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-07-24", + "total_cases": 6588.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2959.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.974, + "total_deaths_per_million": 21.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-07-25", + "total_cases": 6984.0, + "new_cases": 396.0, + "new_cases_smoothed": 95.571, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3137.85, + "new_cases_per_million": 177.919, + "new_cases_smoothed_per_million": 42.939, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-26", + "total_cases": 6984.0, + "new_cases": 0.0, + "new_cases_smoothed": 95.571, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3137.85, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.939, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-27", + "total_cases": 6984.0, + "new_cases": 0.0, + "new_cases_smoothed": 95.571, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3137.85, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.939, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-28", + "total_cases": 7189.0, + "new_cases": 205.0, + "new_cases_smoothed": 108.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3229.954, + "new_cases_per_million": 92.105, + "new_cases_smoothed_per_million": 48.523, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-29", + "total_cases": 7189.0, + "new_cases": 0.0, + "new_cases_smoothed": 108.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3229.954, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.523, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 66.67 + }, + { + "date": "2020-07-30", + "total_cases": 7352.0, + "new_cases": 163.0, + "new_cases_smoothed": 109.143, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3303.189, + "new_cases_per_million": 73.234, + "new_cases_smoothed_per_million": 49.037, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-07-31", + "total_cases": 7352.0, + "new_cases": 0.0, + "new_cases_smoothed": 109.143, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3303.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.037, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-01", + "total_cases": 7352.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.571, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3303.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.62, + "total_deaths_per_million": 22.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-02", + "total_cases": 7531.0, + "new_cases": 179.0, + "new_cases_smoothed": 78.143, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3383.612, + "new_cases_per_million": 80.423, + "new_cases_smoothed_per_million": 35.109, + "total_deaths_per_million": 22.465, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-08-03", + "total_cases": 7531.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3383.612, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.109, + "total_deaths_per_million": 22.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-08-04", + "total_cases": 7646.0, + "new_cases": 115.0, + "new_cases_smoothed": 65.286, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3435.281, + "new_cases_per_million": 51.668, + "new_cases_smoothed_per_million": 29.332, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-05", + "total_cases": 7646.0, + "new_cases": 0.0, + "new_cases_smoothed": 65.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3435.281, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.332, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-06", + "total_cases": 7787.0, + "new_cases": 141.0, + "new_cases_smoothed": 62.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3498.631, + "new_cases_per_million": 63.35, + "new_cases_smoothed_per_million": 27.92, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-07", + "total_cases": 7787.0, + "new_cases": 0.0, + "new_cases_smoothed": 62.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3498.631, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.92, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-08", + "total_cases": 7923.0, + "new_cases": 136.0, + "new_cases_smoothed": 81.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3559.734, + "new_cases_per_million": 61.104, + "new_cases_smoothed_per_million": 36.649, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-09", + "total_cases": 7923.0, + "new_cases": 0.0, + "new_cases_smoothed": 56.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3559.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.16, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-08-10", + "total_cases": 7923.0, + "new_cases": 0.0, + "new_cases_smoothed": 56.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3559.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.16, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 66.67 + }, + { + "date": "2020-08-11", + "total_cases": 8006.0, + "new_cases": 83.0, + "new_cases_smoothed": 51.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3597.025, + "new_cases_per_million": 37.291, + "new_cases_smoothed_per_million": 23.106, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-12", + "total_cases": 8006.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3597.025, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.106, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-13", + "total_cases": 8077.0, + "new_cases": 71.0, + "new_cases_smoothed": 41.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3628.925, + "new_cases_per_million": 31.9, + "new_cases_smoothed_per_million": 18.613, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-14", + "total_cases": 8077.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3628.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.613, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-15", + "total_cases": 8225.0, + "new_cases": 148.0, + "new_cases_smoothed": 43.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3695.42, + "new_cases_per_million": 66.495, + "new_cases_smoothed_per_million": 19.384, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-16", + "total_cases": 8225.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3695.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.384, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-17", + "total_cases": 8225.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3695.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.384, + "total_deaths_per_million": 22.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-18", + "total_cases": 8270.0, + "new_cases": 45.0, + "new_cases_smoothed": 37.714, + "total_deaths": 53.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3715.638, + "new_cases_per_million": 20.218, + "new_cases_smoothed_per_million": 16.945, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.899, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-19", + "total_cases": 8270.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3715.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.945, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-20", + "total_cases": 8319.0, + "new_cases": 49.0, + "new_cases_smoothed": 34.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3737.653, + "new_cases_per_million": 22.015, + "new_cases_smoothed_per_million": 15.533, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-21", + "total_cases": 8319.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3737.653, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.533, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-22", + "total_cases": 8388.0, + "new_cases": 69.0, + "new_cases_smoothed": 23.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3768.655, + "new_cases_per_million": 31.001, + "new_cases_smoothed_per_million": 10.462, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-23", + "total_cases": 8388.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3768.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.462, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-24", + "total_cases": 8388.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3768.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.462, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 66.67 + }, + { + "date": "2020-08-25", + "total_cases": 8409.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3778.09, + "new_cases_per_million": 9.435, + "new_cases_smoothed_per_million": 8.922, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-26", + "total_cases": 8409.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3778.09, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.922, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-27", + "total_cases": 8468.0, + "new_cases": 59.0, + "new_cases_smoothed": 21.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3804.598, + "new_cases_per_million": 26.508, + "new_cases_smoothed_per_million": 9.563, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-28", + "total_cases": 8468.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3804.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.563, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-29", + "total_cases": 8505.0, + "new_cases": 37.0, + "new_cases_smoothed": 16.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3821.222, + "new_cases_per_million": 16.624, + "new_cases_smoothed_per_million": 7.51, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-30", + "total_cases": 8505.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3821.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.51, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-08-31", + "total_cases": 8505.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3821.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.51, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-09-01", + "total_cases": 8533.0, + "new_cases": 28.0, + "new_cases_smoothed": 17.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3833.802, + "new_cases_per_million": 12.58, + "new_cases_smoothed_per_million": 7.959, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-09-02", + "total_cases": 8533.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3833.802, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.959, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-09-03", + "total_cases": 8538.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3836.048, + "new_cases_per_million": 2.246, + "new_cases_smoothed_per_million": 4.493, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-09-04", + "total_cases": 8538.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3836.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.493, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 8601.0, + "new_cases": 63.0, + "new_cases_smoothed": 13.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3864.354, + "new_cases_per_million": 28.305, + "new_cases_smoothed_per_million": 6.162, + "total_deaths_per_million": 23.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GMB": { + "continent": "Africa", + "location": "Gambia", + "population": 2416664.0, + "population_density": 207.566, + "median_age": 17.5, + "aged_65_older": 2.339, + "aged_70_older": 1.417, + "gdp_per_capita": 1561.767, + "extreme_poverty": 10.1, + "cardiovasc_death_rate": 331.43, + "diabetes_prevalence": 1.91, + "female_smokers": 0.7, + "male_smokers": 31.2, + "handwashing_facilities": 7.876, + "hospital_beds_per_thousand": 1.1, + "life_expectancy": 62.05, + "data": [ + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.414, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 56.48 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 56.48 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 56.48 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 78.7 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 78.7 + }, + { + "date": "2020-03-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 78.7 + }, + { + "date": "2020-03-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 78.7 + }, + { + "date": "2020-03-31", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-01", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-02", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-03", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-04", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-05", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-07", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-08", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-10", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-11", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-12", + "total_cases": 9.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 2.069, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-13", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-14", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-15", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-16", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-17", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-18", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-19", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-20", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-21", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-22", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-23", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-24", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-25", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-26", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-27", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-28", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-29", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-30", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.552, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-01", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.966, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.966, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-03", + "total_cases": 17.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.034, + "new_cases_per_million": 2.069, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-04", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-05", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-06", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-07", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-08", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.448, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-09", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.276, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-10", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.276, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-11", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.276, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-12", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.103, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-13", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-14", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.931, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.931, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.931, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.931, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-23", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-24", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-25", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-05", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-06", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-07", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-08", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-09", + "total_cases": 28.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-10", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-11", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-12", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-13", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-14", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-15", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-16", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.414, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-17", + "total_cases": 34.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.069, + "new_cases_per_million": 1.655, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-18", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-19", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.897, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-20", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.897, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-21", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.31, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-22", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-23", + "total_cases": 41.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.966, + "new_cases_per_million": 1.655, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-24", + "total_cases": 42.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.379, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-25", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.379, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-26", + "total_cases": 43.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.793, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-27", + "total_cases": 44.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.207, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 74.07 + }, + { + "date": "2020-06-28", + "total_cases": 45.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.621, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-29", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-06-30", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.448, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-01", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-02", + "total_cases": 49.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.276, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-03", + "total_cases": 55.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.759, + "new_cases_per_million": 2.483, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-04", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-05", + "total_cases": 57.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.586, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-06", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-07", + "total_cases": 61.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.241, + "new_cases_per_million": 1.655, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-08", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-09", + "total_cases": 63.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.069, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-10", + "total_cases": 64.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-11", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-12", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-13", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-14", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-15", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-16", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-17", + "total_cases": 78.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.276, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-18", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.276, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-07-19", + "total_cases": 93.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.483, + "new_cases_per_million": 6.207, + "new_cases_smoothed_per_million": 1.714, + "total_deaths_per_million": 1.655, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-20", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.714, + "total_deaths_per_million": 1.655, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-21", + "total_cases": 112.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.345, + "new_cases_per_million": 7.862, + "new_cases_smoothed_per_million": 2.837, + "total_deaths_per_million": 1.655, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 67.13 + }, + { + "date": "2020-07-22", + "total_cases": 112.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.837, + "total_deaths_per_million": 1.655, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 31.94 + }, + { + "date": "2020-07-23", + "total_cases": 146.0, + "new_cases": 34.0, + "new_cases_smoothed": 11.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 60.414, + "new_cases_per_million": 14.069, + "new_cases_smoothed_per_million": 4.847, + "total_deaths_per_million": 2.069, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 31.94 + }, + { + "date": "2020-07-24", + "total_cases": 170.0, + "new_cases": 24.0, + "new_cases_smoothed": 13.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 70.345, + "new_cases_per_million": 9.931, + "new_cases_smoothed_per_million": 5.438, + "total_deaths_per_million": 2.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 31.94 + }, + { + "date": "2020-07-25", + "total_cases": 216.0, + "new_cases": 46.0, + "new_cases_smoothed": 19.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 89.379, + "new_cases_per_million": 19.035, + "new_cases_smoothed_per_million": 8.158, + "total_deaths_per_million": 2.483, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-07-26", + "total_cases": 277.0, + "new_cases": 61.0, + "new_cases_smoothed": 26.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 114.621, + "new_cases_per_million": 25.241, + "new_cases_smoothed_per_million": 10.877, + "total_deaths_per_million": 2.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 31.94 + }, + { + "date": "2020-07-27", + "total_cases": 277.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 114.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.877, + "total_deaths_per_million": 2.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "stringency_index": 31.94 + }, + { + "date": "2020-07-28", + "total_cases": 326.0, + "new_cases": 49.0, + "new_cases_smoothed": 30.571, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 134.897, + "new_cases_per_million": 20.276, + "new_cases_smoothed_per_million": 12.65, + "total_deaths_per_million": 3.31, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 31.94 + }, + { + "date": "2020-07-29", + "total_cases": 326.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 134.897, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.65, + "total_deaths_per_million": 3.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 31.94 + }, + { + "date": "2020-07-30", + "total_cases": 326.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 134.897, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.64, + "total_deaths_per_million": 3.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-07-31", + "total_cases": 403.0, + "new_cases": 77.0, + "new_cases_smoothed": 33.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 166.759, + "new_cases_per_million": 31.862, + "new_cases_smoothed_per_million": 13.773, + "total_deaths_per_million": 3.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-08-01", + "total_cases": 498.0, + "new_cases": 95.0, + "new_cases_smoothed": 40.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 206.069, + "new_cases_per_million": 39.31, + "new_cases_smoothed_per_million": 16.67, + "total_deaths_per_million": 3.724, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-08-02", + "total_cases": 498.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 206.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.064, + "total_deaths_per_million": 3.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-08-03", + "total_cases": 498.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 206.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.064, + "total_deaths_per_million": 3.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 31.94 + }, + { + "date": "2020-08-04", + "total_cases": 498.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.167, + "total_deaths_per_million": 3.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 31.94 + }, + { + "date": "2020-08-05", + "total_cases": 671.0, + "new_cases": 173.0, + "new_cases_smoothed": 49.286, + "total_deaths": 14.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 277.655, + "new_cases_per_million": 71.586, + "new_cases_smoothed_per_million": 20.394, + "total_deaths_per_million": 5.793, + "new_deaths_per_million": 2.069, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 31.94 + }, + { + "date": "2020-08-06", + "total_cases": 799.0, + "new_cases": 128.0, + "new_cases_smoothed": 67.571, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 330.621, + "new_cases_per_million": 52.966, + "new_cases_smoothed_per_million": 27.961, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.473, + "stringency_index": 77.78 + }, + { + "date": "2020-08-07", + "total_cases": 935.0, + "new_cases": 136.0, + "new_cases_smoothed": 76.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 386.897, + "new_cases_per_million": 56.276, + "new_cases_smoothed_per_million": 31.448, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.473, + "stringency_index": 77.78 + }, + { + "date": "2020-08-08", + "total_cases": 1090.0, + "new_cases": 155.0, + "new_cases_smoothed": 84.571, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 451.035, + "new_cases_per_million": 64.138, + "new_cases_smoothed_per_million": 34.995, + "total_deaths_per_million": 7.862, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 77.78 + }, + { + "date": "2020-08-09", + "total_cases": 1090.0, + "new_cases": 0.0, + "new_cases_smoothed": 84.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 451.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.995, + "total_deaths_per_million": 7.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 77.78 + }, + { + "date": "2020-08-10", + "total_cases": 1235.0, + "new_cases": 145.0, + "new_cases_smoothed": 105.286, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 511.035, + "new_cases_per_million": 60.0, + "new_cases_smoothed_per_million": 43.567, + "total_deaths_per_million": 9.517, + "new_deaths_per_million": 1.655, + "new_deaths_smoothed_per_million": 0.828, + "stringency_index": 77.78 + }, + { + "date": "2020-08-11", + "total_cases": 1235.0, + "new_cases": 0.0, + "new_cases_smoothed": 105.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 511.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.567, + "total_deaths_per_million": 9.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.828, + "stringency_index": 77.78 + }, + { + "date": "2020-08-12", + "total_cases": 1346.0, + "new_cases": 111.0, + "new_cases_smoothed": 96.429, + "total_deaths": 32.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 556.966, + "new_cases_per_million": 45.931, + "new_cases_smoothed_per_million": 39.902, + "total_deaths_per_million": 13.241, + "new_deaths_per_million": 3.724, + "new_deaths_smoothed_per_million": 1.064, + "stringency_index": 77.78 + }, + { + "date": "2020-08-13", + "total_cases": 1477.0, + "new_cases": 131.0, + "new_cases_smoothed": 96.857, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 611.173, + "new_cases_per_million": 54.207, + "new_cases_smoothed_per_million": 40.079, + "total_deaths_per_million": 13.655, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 1.005, + "stringency_index": 77.78 + }, + { + "date": "2020-08-14", + "total_cases": 1556.0, + "new_cases": 79.0, + "new_cases_smoothed": 88.714, + "total_deaths": 43.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 643.863, + "new_cases_per_million": 32.69, + "new_cases_smoothed_per_million": 36.709, + "total_deaths_per_million": 17.793, + "new_deaths_per_million": 4.138, + "new_deaths_smoothed_per_million": 1.596, + "stringency_index": 77.78 + }, + { + "date": "2020-08-15", + "total_cases": 1623.0, + "new_cases": 67.0, + "new_cases_smoothed": 76.143, + "total_deaths": 50.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 671.587, + "new_cases_per_million": 27.724, + "new_cases_smoothed_per_million": 31.507, + "total_deaths_per_million": 20.69, + "new_deaths_per_million": 2.897, + "new_deaths_smoothed_per_million": 1.833, + "stringency_index": 77.78 + }, + { + "date": "2020-08-16", + "total_cases": 1689.0, + "new_cases": 66.0, + "new_cases_smoothed": 85.571, + "total_deaths": 54.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 698.897, + "new_cases_per_million": 27.31, + "new_cases_smoothed_per_million": 35.409, + "total_deaths_per_million": 22.345, + "new_deaths_per_million": 1.655, + "new_deaths_smoothed_per_million": 2.069, + "stringency_index": 77.78 + }, + { + "date": "2020-08-17", + "total_cases": 1872.0, + "new_cases": 183.0, + "new_cases_smoothed": 91.0, + "total_deaths": 63.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 774.622, + "new_cases_per_million": 75.724, + "new_cases_smoothed_per_million": 37.655, + "total_deaths_per_million": 26.069, + "new_deaths_per_million": 3.724, + "new_deaths_smoothed_per_million": 2.365, + "stringency_index": 77.78 + }, + { + "date": "2020-08-18", + "total_cases": 1872.0, + "new_cases": 0.0, + "new_cases_smoothed": 91.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 774.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.655, + "total_deaths_per_million": 26.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.365, + "stringency_index": 77.78 + }, + { + "date": "2020-08-19", + "total_cases": 1872.0, + "new_cases": 0.0, + "new_cases_smoothed": 75.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 774.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.094, + "total_deaths_per_million": 26.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.833, + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 2288.0, + "new_cases": 416.0, + "new_cases_smoothed": 115.857, + "total_deaths": 77.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 946.76, + "new_cases_per_million": 172.138, + "new_cases_smoothed_per_million": 47.941, + "total_deaths_per_million": 31.862, + "new_deaths_per_million": 5.793, + "new_deaths_smoothed_per_million": 2.601, + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 2401.0, + "new_cases": 113.0, + "new_cases_smoothed": 120.714, + "total_deaths": 81.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 993.518, + "new_cases_per_million": 46.759, + "new_cases_smoothed_per_million": 49.951, + "total_deaths_per_million": 33.517, + "new_deaths_per_million": 1.655, + "new_deaths_smoothed_per_million": 2.246, + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 2437.0, + "new_cases": 36.0, + "new_cases_smoothed": 116.286, + "total_deaths": 84.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1008.415, + "new_cases_per_million": 14.897, + "new_cases_smoothed_per_million": 48.118, + "total_deaths_per_million": 34.759, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 2.01, + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 2437.0, + "new_cases": 0.0, + "new_cases_smoothed": 106.857, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1008.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.217, + "total_deaths_per_million": 34.759, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.773, + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 2437.0, + "new_cases": 0.0, + "new_cases_smoothed": 80.714, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1008.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.399, + "total_deaths_per_million": 34.759, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.241, + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 2585.0, + "new_cases": 148.0, + "new_cases_smoothed": 101.857, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1069.656, + "new_cases_per_million": 61.241, + "new_cases_smoothed_per_million": 42.148, + "total_deaths_per_million": 36.0, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 1.419, + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 2686.0, + "new_cases": 101.0, + "new_cases_smoothed": 116.286, + "total_deaths": 90.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1111.45, + "new_cases_per_million": 41.793, + "new_cases_smoothed_per_million": 48.118, + "total_deaths_per_million": 37.241, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 1.596, + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 2708.0, + "new_cases": 22.0, + "new_cases_smoothed": 60.0, + "total_deaths": 93.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1120.553, + "new_cases_per_million": 9.103, + "new_cases_smoothed_per_million": 24.828, + "total_deaths_per_million": 38.483, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 0.946, + "stringency_index": 72.22 + }, + { + "date": "2020-08-28", + "total_cases": 2743.0, + "new_cases": 35.0, + "new_cases_smoothed": 48.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1135.036, + "new_cases_per_million": 14.483, + "new_cases_smoothed_per_million": 20.217, + "total_deaths_per_million": 38.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.709, + "stringency_index": 72.22 + }, + { + "date": "2020-08-29", + "total_cases": 2797.0, + "new_cases": 54.0, + "new_cases_smoothed": 51.429, + "total_deaths": 96.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1157.381, + "new_cases_per_million": 22.345, + "new_cases_smoothed_per_million": 21.281, + "total_deaths_per_million": 39.724, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 0.709, + "stringency_index": 72.22 + }, + { + "date": "2020-08-30", + "total_cases": 2895.0, + "new_cases": 98.0, + "new_cases_smoothed": 65.429, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1197.932, + "new_cases_per_million": 40.552, + "new_cases_smoothed_per_million": 27.074, + "total_deaths_per_million": 39.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.709, + "stringency_index": 72.22 + }, + { + "date": "2020-08-31", + "total_cases": 2963.0, + "new_cases": 68.0, + "new_cases_smoothed": 75.143, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1226.07, + "new_cases_per_million": 28.138, + "new_cases_smoothed_per_million": 31.094, + "total_deaths_per_million": 39.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.709, + "stringency_index": 72.22 + }, + { + "date": "2020-09-01", + "total_cases": 2963.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.0, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1226.07, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.345, + "total_deaths_per_million": 39.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.532, + "stringency_index": 72.22 + }, + { + "date": "2020-09-02", + "total_cases": 3029.0, + "new_cases": 66.0, + "new_cases_smoothed": 49.0, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1253.381, + "new_cases_per_million": 27.31, + "new_cases_smoothed_per_million": 20.276, + "total_deaths_per_million": 39.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.355, + "stringency_index": 72.22 + }, + { + "date": "2020-09-03", + "total_cases": 3067.0, + "new_cases": 38.0, + "new_cases_smoothed": 51.286, + "total_deaths": 97.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1269.105, + "new_cases_per_million": 15.724, + "new_cases_smoothed_per_million": 21.222, + "total_deaths_per_million": 40.138, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 72.22 + }, + { + "date": "2020-09-04", + "total_cases": 3101.0, + "new_cases": 34.0, + "new_cases_smoothed": 51.143, + "total_deaths": 99.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1283.174, + "new_cases_per_million": 14.069, + "new_cases_smoothed_per_million": 21.163, + "total_deaths_per_million": 40.966, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.355 + }, + { + "date": "2020-09-05", + "total_cases": 3120.0, + "new_cases": 19.0, + "new_cases_smoothed": 46.143, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1291.036, + "new_cases_per_million": 7.862, + "new_cases_smoothed_per_million": 19.094, + "total_deaths_per_million": 40.966, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177 + } + ] + }, + "GEO": { + "continent": "Asia", + "location": "Georgia", + "population": 3989175.0, + "population_density": 65.032, + "median_age": 38.7, + "aged_65_older": 14.864, + "aged_70_older": 10.244, + "gdp_per_capita": 9745.079, + "extreme_poverty": 4.2, + "cardiovasc_death_rate": 496.218, + "diabetes_prevalence": 7.11, + "female_smokers": 5.3, + "male_smokers": 55.5, + "hospital_beds_per_thousand": 2.6, + "life_expectancy": 73.77, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.251, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-06", + "total_cases": 9.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.256, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.286, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-08", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.008, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-09", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.259, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-10", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.76, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-11", + "total_cases": 23.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.766, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 0.716, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-12", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.016, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.752, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-13", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.267, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.573, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-14", + "total_cases": 30.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.52, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 0.752, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-15", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-16", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.609, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.272, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.523, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-20", + "total_cases": 40.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.027, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-21", + "total_cases": 43.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.779, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-03-22", + "total_cases": 49.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.283, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-03-23", + "total_cases": 54.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.537, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-24", + "total_cases": 61.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.291, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-25", + "total_cases": 70.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.547, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-26", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.3, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-27", + "total_cases": 79.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.804, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 1.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 81.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.305, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 85.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.308, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 90.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.561, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 98.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.566, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 110.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.575, + "new_cases_per_million": 3.008, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 115.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.828, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 121.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.332, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 148.0, + "new_cases": 27.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.1, + "new_cases_per_million": 6.768, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 157.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.357, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.578, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 174.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.618, + "new_cases_per_million": 4.262, + "new_cases_smoothed_per_million": 3.008, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 188.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 47.128, + "new_cases_per_million": 3.509, + "new_cases_smoothed_per_million": 3.223, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 196.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 49.133, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 3.08, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 211.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.893, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 3.438, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 218.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 54.648, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 3.474, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 234.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 58.659, + "new_cases_per_million": 4.011, + "new_cases_smoothed_per_million": 3.08, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 242.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 60.664, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 257.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 64.424, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 2.972, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 272.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 68.185, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 3.008, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 300.0, + "new_cases": 28.0, + "new_cases_smoothed": 14.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.204, + "new_cases_per_million": 7.019, + "new_cases_smoothed_per_million": 3.724, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 306.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.708, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 3.402, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 348.0, + "new_cases": 42.0, + "new_cases_smoothed": 18.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.236, + "new_cases_per_million": 10.528, + "new_cases_smoothed_per_million": 4.655, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 370.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.751, + "new_cases_per_million": 5.515, + "new_cases_smoothed_per_million": 4.87, + "total_deaths_per_million": 0.752, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 388.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 97.263, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 5.228, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 394.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.767, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 4.906, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 402.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.773, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 4.655, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 408.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 102.277, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 3.868, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 416.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 104.282, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 3.939, + "total_deaths_per_million": 1.253, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 425.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 106.538, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.757, + "total_deaths_per_million": 1.253, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 444.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 111.301, + "new_cases_per_million": 4.763, + "new_cases_smoothed_per_million": 2.65, + "total_deaths_per_million": 1.253, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 456.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.309, + "new_cases_per_million": 3.008, + "new_cases_smoothed_per_million": 2.435, + "total_deaths_per_million": 1.253, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 100.0 + }, + { + "date": "2020-04-27", + "total_cases": 486.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 121.83, + "new_cases_per_million": 7.52, + "new_cases_smoothed_per_million": 3.295, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 497.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 124.587, + "new_cases_per_million": 2.757, + "new_cases_smoothed_per_million": 3.402, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 511.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 128.097, + "new_cases_per_million": 3.509, + "new_cases_smoothed_per_million": 3.689, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 517.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.601, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 3.617, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 539.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 135.116, + "new_cases_per_million": 5.515, + "new_cases_smoothed_per_million": 4.082, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 582.0, + "new_cases": 43.0, + "new_cases_smoothed": 19.714, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 145.895, + "new_cases_per_million": 10.779, + "new_cases_smoothed_per_million": 4.942, + "total_deaths_per_million": 2.005, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 582.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 145.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.512, + "total_deaths_per_million": 2.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 589.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 147.65, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 3.689, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 593.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 148.652, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 3.438, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 604.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 151.41, + "new_cases_per_million": 2.757, + "new_cases_smoothed_per_million": 3.33, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 610.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 152.914, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 3.33, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 615.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 154.167, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 2.722, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 623.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 156.173, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 2.507, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 626.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 156.925, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.576, + "total_deaths_per_million": 2.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 635.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 159.181, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 1.647, + "total_deaths_per_million": 2.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-12", + "total_cases": 638.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.933, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 2.757, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-13", + "total_cases": 642.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 160.936, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 2.757, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-14", + "total_cases": 647.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 162.189, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 2.757, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-15", + "total_cases": 667.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.202, + "new_cases_per_million": 5.014, + "new_cases_smoothed_per_million": 1.862, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 96.3 + }, + { + "date": "2020-05-16", + "total_cases": 671.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 168.205, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.719, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-17", + "total_cases": 695.0, + "new_cases": 24.0, + "new_cases_smoothed": 9.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 174.221, + "new_cases_per_million": 6.016, + "new_cases_smoothed_per_million": 2.471, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-18", + "total_cases": 701.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 175.726, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-19", + "total_cases": 702.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 175.976, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 2.292, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-20", + "total_cases": 707.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 177.23, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 2.328, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-21", + "total_cases": 713.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 178.734, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 96.3 + }, + { + "date": "2020-05-22", + "total_cases": 721.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.739, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-23", + "total_cases": 723.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 181.24, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 1.862, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-24", + "total_cases": 728.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.494, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-25", + "total_cases": 730.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.995, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-26", + "total_cases": 731.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.246, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-27", + "total_cases": 732.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.497, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-28", + "total_cases": 735.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 184.249, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.788, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-29", + "total_cases": 738.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 185.001, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.609, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-30", + "total_cases": 746.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.006, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 0.824, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-31", + "total_cases": 757.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.764, + "new_cases_per_million": 2.757, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-01", + "total_cases": 783.0, + "new_cases": 26.0, + "new_cases_smoothed": 7.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.281, + "new_cases_per_million": 6.518, + "new_cases_smoothed_per_million": 1.898, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-02", + "total_cases": 796.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.54, + "new_cases_per_million": 3.259, + "new_cases_smoothed_per_million": 2.328, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-03", + "total_cases": 800.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.543, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 2.435, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-04", + "total_cases": 800.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.328, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-05", + "total_cases": 801.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.793, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 2.256, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-06", + "total_cases": 805.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 201.796, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 2.113, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-07", + "total_cases": 808.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.548, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.826, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-08", + "total_cases": 808.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.548, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-09", + "total_cases": 812.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 203.551, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.573, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-10", + "total_cases": 818.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.055, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-11", + "total_cases": 827.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.311, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-12", + "total_cases": 831.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.314, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.074, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-13", + "total_cases": 843.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.322, + "new_cases_per_million": 3.008, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-14", + "total_cases": 851.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.143, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 213.327, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.54, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 71.3 + }, + { + "date": "2020-06-15", + "total_cases": 879.0, + "new_cases": 28.0, + "new_cases_smoothed": 10.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.346, + "new_cases_per_million": 7.019, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-06-16", + "total_cases": 879.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-06-17", + "total_cases": 888.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 222.602, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.507, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-06-18", + "total_cases": 893.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 223.856, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-06-19", + "total_cases": 895.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 224.357, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 2.292, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 896.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 224.608, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 1.898, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 898.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.109, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 1.683, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-22", + "total_cases": 908.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 227.616, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-23", + "total_cases": 911.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.368, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.146, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-24", + "total_cases": 914.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.12, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-25", + "total_cases": 917.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.872, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 919.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 230.373, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-27", + "total_cases": 921.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 230.875, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 3.509, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-28", + "total_cases": 924.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 231.627, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 57.41 + }, + { + "date": "2020-06-29", + "total_cases": 926.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.128, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 57.41 + }, + { + "date": "2020-06-30", + "total_cases": 928.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.63, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.609, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-07-01", + "total_cases": 928.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.63, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-07-02", + "total_cases": 931.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 233.382, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-07-03", + "total_cases": 939.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.387, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 0.716, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-07-04", + "total_cases": 946.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.142, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-07-05", + "total_cases": 948.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.643, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-06", + "total_cases": 953.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.897, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-07", + "total_cases": 958.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.15, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.074, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-08", + "total_cases": 963.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.403, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.253, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 968.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.657, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 973.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.91, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.218, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-07-11", + "total_cases": 981.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.916, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.253, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-07-12", + "total_cases": 986.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.169, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-07-13", + "total_cases": 995.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.425, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-14", + "total_cases": 999.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.428, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 1003.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.43, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 1006.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.182, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 1006.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-18", + "total_cases": 1018.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.191, + "new_cases_per_million": 3.008, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-19", + "total_cases": 1028.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.697, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-20", + "total_cases": 1028.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.697, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-21", + "total_cases": 1039.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.455, + "new_cases_per_million": 2.757, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-22", + "total_cases": 1049.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 262.962, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 1.647, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-23", + "total_cases": 1073.0, + "new_cases": 24.0, + "new_cases_smoothed": 9.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 268.978, + "new_cases_per_million": 6.016, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-24", + "total_cases": 1104.0, + "new_cases": 31.0, + "new_cases_smoothed": 14.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 276.749, + "new_cases_per_million": 7.771, + "new_cases_smoothed_per_million": 3.509, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-25", + "total_cases": 1117.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 280.008, + "new_cases_per_million": 3.259, + "new_cases_smoothed_per_million": 3.545, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-26", + "total_cases": 1131.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 283.517, + "new_cases_per_million": 3.509, + "new_cases_smoothed_per_million": 3.689, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-27", + "total_cases": 1137.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 285.021, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 3.903, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-28", + "total_cases": 1145.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.027, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 3.796, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-29", + "total_cases": 1155.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 289.534, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 3.796, + "total_deaths_per_million": 4.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-30", + "total_cases": 1155.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 289.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.937, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-07-31", + "total_cases": 1160.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 290.787, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 2.005, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-01", + "total_cases": 1168.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 292.792, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 1.826, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-02", + "total_cases": 1171.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 293.544, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-03", + "total_cases": 1177.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 295.048, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-04", + "total_cases": 1182.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 296.302, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-05", + "total_cases": 1197.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 300.062, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 53.7 + }, + { + "date": "2020-08-06", + "total_cases": 1206.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 302.318, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 1.826, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-07", + "total_cases": 1206.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 302.318, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.647, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-08", + "total_cases": 1213.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 304.073, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-09", + "total_cases": 1225.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 307.081, + "new_cases_per_million": 3.008, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-10", + "total_cases": 1250.0, + "new_cases": 25.0, + "new_cases_smoothed": 10.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.348, + "new_cases_per_million": 6.267, + "new_cases_smoothed_per_million": 2.614, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-08-11", + "total_cases": 1264.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 316.857, + "new_cases_per_million": 3.509, + "new_cases_smoothed_per_million": 2.937, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-12", + "total_cases": 1278.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.367, + "new_cases_per_million": 3.509, + "new_cases_smoothed_per_million": 2.901, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-13", + "total_cases": 1283.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 321.62, + "new_cases_per_million": 1.253, + "new_cases_smoothed_per_million": 2.757, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-14", + "total_cases": 1306.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 327.386, + "new_cases_per_million": 5.766, + "new_cases_smoothed_per_million": 3.581, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-15", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 327.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.33, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-16", + "total_cases": 1321.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 331.146, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 3.438, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-17", + "total_cases": 1341.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 336.16, + "new_cases_per_million": 5.014, + "new_cases_smoothed_per_million": 3.259, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-18", + "total_cases": 1351.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 338.667, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 3.116, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-19", + "total_cases": 1361.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.173, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 2.972, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-20", + "total_cases": 1361.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.793, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-21", + "total_cases": 1370.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 343.429, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.292, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-22", + "total_cases": 1385.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 347.19, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 2.829, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-23", + "total_cases": 1394.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 349.446, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.614, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-24", + "total_cases": 1411.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 353.707, + "new_cases_per_million": 4.262, + "new_cases_smoothed_per_million": 2.507, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-08-25", + "total_cases": 1421.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 356.214, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 2.507, + "total_deaths_per_million": 4.512, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 59.26 + }, + { + "date": "2020-08-26", + "total_cases": 1436.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.714, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 359.974, + "new_cases_per_million": 3.76, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-08-27", + "total_cases": 1447.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 362.732, + "new_cases_per_million": 2.757, + "new_cases_smoothed_per_million": 3.08, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-08-28", + "total_cases": 1455.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 364.737, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-08-29", + "total_cases": 1462.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 366.492, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 2.757, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-08-30", + "total_cases": 1462.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 366.492, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.435, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-08-31", + "total_cases": 1487.0, + "new_cases": 25.0, + "new_cases_smoothed": 10.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 372.759, + "new_cases_per_million": 6.267, + "new_cases_smoothed_per_million": 2.722, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 59.26 + }, + { + "date": "2020-09-01", + "total_cases": 1487.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 372.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 59.26 + }, + { + "date": "2020-09-02", + "total_cases": 1510.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 378.524, + "new_cases_per_million": 5.766, + "new_cases_smoothed_per_million": 2.65, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-09-03", + "total_cases": 1548.0, + "new_cases": 38.0, + "new_cases_smoothed": 14.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 388.05, + "new_cases_per_million": 9.526, + "new_cases_smoothed_per_million": 3.617, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-09-04", + "total_cases": 1568.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 393.064, + "new_cases_per_million": 5.014, + "new_cases_smoothed_per_million": 4.047, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1596.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 400.083, + "new_cases_per_million": 7.019, + "new_cases_smoothed_per_million": 4.799, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "DEU": { + "continent": "Europe", + "location": "Germany", + "population": 83783945.0, + "population_density": 237.016, + "median_age": 46.6, + "aged_65_older": 21.453, + "aged_70_older": 15.957, + "gdp_per_capita": 45229.245, + "cardiovasc_death_rate": 156.139, + "diabetes_prevalence": 8.31, + "female_smokers": 28.2, + "male_smokers": 33.1, + "hospital_beds_per_thousand": 8.0, + "life_expectancy": 81.33, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.012, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.048, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-01", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.084, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.095, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.107, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.131, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.143, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.155, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.203, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 21.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.251, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 47.0, + "new_cases": 26.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.561, + "new_cases_per_million": 0.31, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 57.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-01", + "total_cases": 111.0, + "new_cases": 54.0, + "new_cases_smoothed": 13.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.325, + "new_cases_per_million": 0.645, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-02", + "total_cases": 129.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.54, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-03", + "total_cases": 157.0, + "new_cases": 28.0, + "new_cases_smoothed": 20.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.874, + "new_cases_per_million": 0.334, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-04", + "total_cases": 196.0, + "new_cases": 39.0, + "new_cases_smoothed": 25.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.339, + "new_cases_per_million": 0.465, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-05", + "total_cases": 262.0, + "new_cases": 66.0, + "new_cases_smoothed": 34.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.127, + "new_cases_per_million": 0.788, + "new_cases_smoothed_per_million": 0.411, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "total_cases": 400.0, + "new_cases": 138.0, + "new_cases_smoothed": 50.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.774, + "new_cases_per_million": 1.647, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-07", + "total_cases": 684.0, + "new_cases": 284.0, + "new_cases_smoothed": 89.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.164, + "new_cases_per_million": 3.39, + "new_cases_smoothed_per_million": 1.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-08", + "total_cases": 847.0, + "new_cases": 163.0, + "new_cases_smoothed": 105.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.109, + "new_cases_per_million": 1.945, + "new_cases_smoothed_per_million": 1.255, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 124716.0, + "total_tests_per_thousand": 1.489, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-09", + "total_cases": 902.0, + "new_cases": 55.0, + "new_cases_smoothed": 110.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.766, + "new_cases_per_million": 0.656, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-03-10", + "total_cases": 1139.0, + "new_cases": 237.0, + "new_cases_smoothed": 140.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.594, + "new_cases_per_million": 2.829, + "new_cases_smoothed_per_million": 1.674, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-11", + "total_cases": 1296.0, + "new_cases": 157.0, + "new_cases_smoothed": 157.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.468, + "new_cases_per_million": 1.874, + "new_cases_smoothed_per_million": 1.876, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-12", + "total_cases": 1567.0, + "new_cases": 271.0, + "new_cases_smoothed": 186.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.703, + "new_cases_per_million": 3.235, + "new_cases_smoothed_per_million": 2.225, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.005, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-13", + "total_cases": 2369.0, + "new_cases": 802.0, + "new_cases_smoothed": 281.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 28.275, + "new_cases_per_million": 9.572, + "new_cases_smoothed_per_million": 3.357, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.009, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-14", + "total_cases": 3062.0, + "new_cases": 693.0, + "new_cases_smoothed": 339.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 36.546, + "new_cases_per_million": 8.271, + "new_cases_smoothed_per_million": 4.055, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-15", + "total_cases": 3795.0, + "new_cases": 733.0, + "new_cases_smoothed": 421.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 45.295, + "new_cases_per_million": 8.749, + "new_cases_smoothed_per_million": 5.027, + "total_deaths_per_million": 0.095, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.014, + "total_tests": 252173.0, + "total_tests_per_thousand": 3.01, + "new_tests_smoothed": 18208.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 43.235, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 32.87 + }, + { + "date": "2020-03-16", + "total_cases": 4838.0, + "new_cases": 1043.0, + "new_cases_smoothed": 562.286, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 57.744, + "new_cases_per_million": 12.449, + "new_cases_smoothed_per_million": 6.711, + "total_deaths_per_million": 0.143, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.02, + "new_tests_smoothed": 22722.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 40.41, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-03-17", + "total_cases": 6012.0, + "new_cases": 1174.0, + "new_cases_smoothed": 696.143, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 71.756, + "new_cases_per_million": 14.012, + "new_cases_smoothed_per_million": 8.309, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 27235.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 39.123000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-03-18", + "total_cases": 7156.0, + "new_cases": 1144.0, + "new_cases_smoothed": 837.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 85.41, + "new_cases_per_million": 13.654, + "new_cases_smoothed_per_million": 9.992, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 31749.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 37.925, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-03-19", + "total_cases": 8198.0, + "new_cases": 1042.0, + "new_cases_smoothed": 947.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 97.847, + "new_cases_per_million": 12.437, + "new_cases_smoothed_per_million": 11.306, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 36262.0, + "new_tests_smoothed_per_thousand": 0.433, + "tests_per_case": 38.28, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-03-20", + "total_cases": 14138.0, + "new_cases": 5940.0, + "new_cases_smoothed": 1681.286, + "total_deaths": 43.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 168.744, + "new_cases_per_million": 70.897, + "new_cases_smoothed_per_million": 20.067, + "total_deaths_per_million": 0.513, + "new_deaths_per_million": 0.358, + "new_deaths_smoothed_per_million": 0.065, + "new_tests_smoothed": 40776.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 24.253, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-03-21", + "total_cases": 18187.0, + "new_cases": 4049.0, + "new_cases_smoothed": 2160.714, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 217.07, + "new_cases_per_million": 48.327, + "new_cases_smoothed_per_million": 25.789, + "total_deaths_per_million": 0.537, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.068, + "new_tests_smoothed": 45289.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 20.96, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-03-22", + "total_cases": 21463.0, + "new_cases": 3276.0, + "new_cases_smoothed": 2524.0, + "total_deaths": 67.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 256.171, + "new_cases_per_million": 39.101, + "new_cases_smoothed_per_million": 30.125, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.101, + "total_tests": 600792.0, + "total_tests_per_thousand": 7.171, + "new_tests_smoothed": 49803.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 19.732, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-23", + "total_cases": 24774.0, + "new_cases": 3311.0, + "new_cases_smoothed": 2848.0, + "total_deaths": 94.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 295.689, + "new_cases_per_million": 39.518, + "new_cases_smoothed_per_million": 33.992, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.14, + "new_tests_smoothed": 50066.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 17.579, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-24", + "total_cases": 29212.0, + "new_cases": 4438.0, + "new_cases_smoothed": 3314.286, + "total_deaths": 126.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 348.659, + "new_cases_per_million": 52.97, + "new_cases_smoothed_per_million": 39.558, + "total_deaths_per_million": 1.504, + "new_deaths_per_million": 0.382, + "new_deaths_smoothed_per_million": 0.193, + "new_tests_smoothed": 50329.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 15.185, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-25", + "total_cases": 31554.0, + "new_cases": 2342.0, + "new_cases_smoothed": 3485.429, + "total_deaths": 149.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 376.612, + "new_cases_per_million": 27.953, + "new_cases_smoothed_per_million": 41.6, + "total_deaths_per_million": 1.778, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.232, + "new_tests_smoothed": 50592.0, + "new_tests_smoothed_per_thousand": 0.604, + "tests_per_case": 14.515, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-26", + "total_cases": 36508.0, + "new_cases": 4954.0, + "new_cases_smoothed": 4044.286, + "total_deaths": 198.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 435.74, + "new_cases_per_million": 59.128, + "new_cases_smoothed_per_million": 48.27, + "total_deaths_per_million": 2.363, + "new_deaths_per_million": 0.585, + "new_deaths_smoothed_per_million": 0.315, + "new_tests_smoothed": 50855.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 12.575, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-27", + "total_cases": 42288.0, + "new_cases": 5780.0, + "new_cases_smoothed": 4021.429, + "total_deaths": 253.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 504.727, + "new_cases_per_million": 68.987, + "new_cases_smoothed_per_million": 47.998, + "total_deaths_per_million": 3.02, + "new_deaths_per_million": 0.656, + "new_deaths_smoothed_per_million": 0.358, + "new_tests_smoothed": 51119.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 12.712, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-28", + "total_cases": 48582.0, + "new_cases": 6294.0, + "new_cases_smoothed": 4342.143, + "total_deaths": 325.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 579.849, + "new_cases_per_million": 75.122, + "new_cases_smoothed_per_million": 51.825, + "total_deaths_per_million": 3.879, + "new_deaths_per_million": 0.859, + "new_deaths_smoothed_per_million": 0.477, + "new_tests_smoothed": 51382.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 11.833, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-29", + "total_cases": 52547.0, + "new_cases": 3965.0, + "new_cases_smoothed": 4440.571, + "total_deaths": 389.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 46.0, + "total_cases_per_million": 627.173, + "new_cases_per_million": 47.324, + "new_cases_smoothed_per_million": 53.0, + "total_deaths_per_million": 4.643, + "new_deaths_per_million": 0.764, + "new_deaths_smoothed_per_million": 0.549, + "total_tests": 962307.0, + "total_tests_per_thousand": 11.486, + "new_tests_smoothed": 51645.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 11.63, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-30", + "total_cases": 57298.0, + "new_cases": 4751.0, + "new_cases_smoothed": 4646.286, + "total_deaths": 455.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 683.878, + "new_cases_per_million": 56.705, + "new_cases_smoothed_per_million": 55.456, + "total_deaths_per_million": 5.431, + "new_deaths_per_million": 0.788, + "new_deaths_smoothed_per_million": 0.616, + "new_tests_smoothed": 52601.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 11.321, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-31", + "total_cases": 61913.0, + "new_cases": 4615.0, + "new_cases_smoothed": 4671.571, + "total_deaths": 583.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 65.286, + "total_cases_per_million": 738.96, + "new_cases_per_million": 55.082, + "new_cases_smoothed_per_million": 55.757, + "total_deaths_per_million": 6.958, + "new_deaths_per_million": 1.528, + "new_deaths_smoothed_per_million": 0.779, + "new_tests_smoothed": 53557.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 11.464, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-01", + "total_cases": 67366.0, + "new_cases": 5453.0, + "new_cases_smoothed": 5116.0, + "total_deaths": 732.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 83.286, + "total_cases_per_million": 804.044, + "new_cases_per_million": 65.084, + "new_cases_smoothed_per_million": 61.062, + "total_deaths_per_million": 8.737, + "new_deaths_per_million": 1.778, + "new_deaths_smoothed_per_million": 0.994, + "new_tests_smoothed": 54512.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 10.655, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-02", + "total_cases": 73522.0, + "new_cases": 6156.0, + "new_cases_smoothed": 5287.714, + "total_deaths": 872.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 96.286, + "total_cases_per_million": 877.519, + "new_cases_per_million": 73.475, + "new_cases_smoothed_per_million": 63.111, + "total_deaths_per_million": 10.408, + "new_deaths_per_million": 1.671, + "new_deaths_smoothed_per_million": 1.149, + "new_tests_smoothed": 55468.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 10.49, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-03", + "total_cases": 79696.0, + "new_cases": 6174.0, + "new_cases_smoothed": 5344.0, + "total_deaths": 1017.0, + "new_deaths": 145.0, + "new_deaths_smoothed": 109.143, + "total_cases_per_million": 951.208, + "new_cases_per_million": 73.69, + "new_cases_smoothed_per_million": 63.783, + "total_deaths_per_million": 12.138, + "new_deaths_per_million": 1.731, + "new_deaths_smoothed_per_million": 1.303, + "new_tests_smoothed": 56424.0, + "new_tests_smoothed_per_thousand": 0.673, + "tests_per_case": 10.558, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-04", + "total_cases": 85778.0, + "new_cases": 6082.0, + "new_cases_smoothed": 5313.714, + "total_deaths": 1158.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 119.0, + "total_cases_per_million": 1023.8, + "new_cases_per_million": 72.591, + "new_cases_smoothed_per_million": 63.422, + "total_deaths_per_million": 13.821, + "new_deaths_per_million": 1.683, + "new_deaths_smoothed_per_million": 1.42, + "new_tests_smoothed": 57380.0, + "new_tests_smoothed_per_thousand": 0.685, + "tests_per_case": 10.798, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-05", + "total_cases": 91714.0, + "new_cases": 5936.0, + "new_cases_smoothed": 5595.286, + "total_deaths": 1342.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 136.143, + "total_cases_per_million": 1094.649, + "new_cases_per_million": 70.849, + "new_cases_smoothed_per_million": 66.782, + "total_deaths_per_million": 16.017, + "new_deaths_per_million": 2.196, + "new_deaths_smoothed_per_million": 1.625, + "total_tests": 1370655.0, + "total_tests_per_thousand": 16.359, + "new_tests_smoothed": 58335.0, + "new_tests_smoothed_per_thousand": 0.696, + "tests_per_case": 10.425999999999998, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-06", + "total_cases": 95391.0, + "new_cases": 3677.0, + "new_cases_smoothed": 5441.857, + "total_deaths": 1434.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 139.857, + "total_cases_per_million": 1138.536, + "new_cases_per_million": 43.887, + "new_cases_smoothed_per_million": 64.951, + "total_deaths_per_million": 17.115, + "new_deaths_per_million": 1.098, + "new_deaths_smoothed_per_million": 1.669, + "new_tests_smoothed": 57761.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 10.614, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-07", + "total_cases": 99225.0, + "new_cases": 3834.0, + "new_cases_smoothed": 5330.286, + "total_deaths": 1607.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 146.286, + "total_cases_per_million": 1184.296, + "new_cases_per_million": 45.761, + "new_cases_smoothed_per_million": 63.619, + "total_deaths_per_million": 19.18, + "new_deaths_per_million": 2.065, + "new_deaths_smoothed_per_million": 1.746, + "new_tests_smoothed": 57186.0, + "new_tests_smoothed_per_thousand": 0.683, + "tests_per_case": 10.729000000000001, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-08", + "total_cases": 103228.0, + "new_cases": 4003.0, + "new_cases_smoothed": 5123.143, + "total_deaths": 1861.0, + "new_deaths": 254.0, + "new_deaths_smoothed": 161.286, + "total_cases_per_million": 1232.074, + "new_cases_per_million": 47.778, + "new_cases_smoothed_per_million": 61.147, + "total_deaths_per_million": 22.212, + "new_deaths_per_million": 3.032, + "new_deaths_smoothed_per_million": 1.925, + "new_tests_smoothed": 56612.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 11.05, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-09", + "total_cases": 108202.0, + "new_cases": 4974.0, + "new_cases_smoothed": 4954.286, + "total_deaths": 2107.0, + "new_deaths": 246.0, + "new_deaths_smoothed": 176.429, + "total_cases_per_million": 1291.441, + "new_cases_per_million": 59.367, + "new_cases_smoothed_per_million": 59.132, + "total_deaths_per_million": 25.148, + "new_deaths_per_million": 2.936, + "new_deaths_smoothed_per_million": 2.106, + "new_tests_smoothed": 56037.0, + "new_tests_smoothed_per_thousand": 0.669, + "tests_per_case": 11.311, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-10", + "total_cases": 113525.0, + "new_cases": 5323.0, + "new_cases_smoothed": 4832.714, + "total_deaths": 2373.0, + "new_deaths": 266.0, + "new_deaths_smoothed": 193.714, + "total_cases_per_million": 1354.973, + "new_cases_per_million": 63.532, + "new_cases_smoothed_per_million": 57.681, + "total_deaths_per_million": 28.323, + "new_deaths_per_million": 3.175, + "new_deaths_smoothed_per_million": 2.312, + "new_tests_smoothed": 55463.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 11.477, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-11", + "total_cases": 117658.0, + "new_cases": 4133.0, + "new_cases_smoothed": 4554.286, + "total_deaths": 2544.0, + "new_deaths": 171.0, + "new_deaths_smoothed": 198.0, + "total_cases_per_million": 1404.302, + "new_cases_per_million": 49.329, + "new_cases_smoothed_per_million": 54.357, + "total_deaths_per_million": 30.364, + "new_deaths_per_million": 2.041, + "new_deaths_smoothed_per_million": 2.363, + "new_tests_smoothed": 54888.0, + "new_tests_smoothed_per_thousand": 0.655, + "tests_per_case": 12.052, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-12", + "total_cases": 120479.0, + "new_cases": 2821.0, + "new_cases_smoothed": 4109.286, + "total_deaths": 2673.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 190.143, + "total_cases_per_million": 1437.972, + "new_cases_per_million": 33.67, + "new_cases_smoothed_per_million": 49.046, + "total_deaths_per_million": 31.903, + "new_deaths_per_million": 1.54, + "new_deaths_smoothed_per_million": 2.269, + "total_tests": 1750852.0, + "total_tests_per_thousand": 20.897, + "new_tests_smoothed": 54314.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 13.217, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-13", + "total_cases": 123016.0, + "new_cases": 2537.0, + "new_cases_smoothed": 3946.429, + "total_deaths": 2799.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 195.0, + "total_cases_per_million": 1468.253, + "new_cases_per_million": 30.28, + "new_cases_smoothed_per_million": 47.102, + "total_deaths_per_million": 33.407, + "new_deaths_per_million": 1.504, + "new_deaths_smoothed_per_million": 2.327, + "new_tests_smoothed": 53328.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 13.513, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-14", + "total_cases": 125098.0, + "new_cases": 2082.0, + "new_cases_smoothed": 3696.143, + "total_deaths": 2969.0, + "new_deaths": 170.0, + "new_deaths_smoothed": 194.571, + "total_cases_per_million": 1493.102, + "new_cases_per_million": 24.85, + "new_cases_smoothed_per_million": 44.115, + "total_deaths_per_million": 35.436, + "new_deaths_per_million": 2.029, + "new_deaths_smoothed_per_million": 2.322, + "new_tests_smoothed": 52343.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 14.162, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-15", + "total_cases": 127584.0, + "new_cases": 2486.0, + "new_cases_smoothed": 3479.429, + "total_deaths": 3254.0, + "new_deaths": 285.0, + "new_deaths_smoothed": 199.0, + "total_cases_per_million": 1522.774, + "new_cases_per_million": 29.672, + "new_cases_smoothed_per_million": 41.529, + "total_deaths_per_million": 38.838, + "new_deaths_per_million": 3.402, + "new_deaths_smoothed_per_million": 2.375, + "new_tests_smoothed": 51357.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 14.76, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-16", + "total_cases": 130450.0, + "new_cases": 2866.0, + "new_cases_smoothed": 3178.286, + "total_deaths": 3569.0, + "new_deaths": 315.0, + "new_deaths_smoothed": 208.857, + "total_cases_per_million": 1556.981, + "new_cases_per_million": 34.207, + "new_cases_smoothed_per_million": 37.934, + "total_deaths_per_million": 42.598, + "new_deaths_per_million": 3.76, + "new_deaths_smoothed_per_million": 2.493, + "new_tests_smoothed": 50371.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 15.847999999999999, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-17", + "total_cases": 133830.0, + "new_cases": 3380.0, + "new_cases_smoothed": 2900.714, + "total_deaths": 3868.0, + "new_deaths": 299.0, + "new_deaths_smoothed": 213.571, + "total_cases_per_million": 1597.323, + "new_cases_per_million": 40.342, + "new_cases_smoothed_per_million": 34.621, + "total_deaths_per_million": 46.166, + "new_deaths_per_million": 3.569, + "new_deaths_smoothed_per_million": 2.549, + "new_tests_smoothed": 49386.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 17.025, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-18", + "total_cases": 137439.0, + "new_cases": 3609.0, + "new_cases_smoothed": 2825.857, + "total_deaths": 4110.0, + "new_deaths": 242.0, + "new_deaths_smoothed": 223.714, + "total_cases_per_million": 1640.398, + "new_cases_per_million": 43.075, + "new_cases_smoothed_per_million": 33.728, + "total_deaths_per_million": 49.055, + "new_deaths_per_million": 2.888, + "new_deaths_smoothed_per_million": 2.67, + "new_tests_smoothed": 48400.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 17.128, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-19", + "total_cases": 139897.0, + "new_cases": 2458.0, + "new_cases_smoothed": 2774.0, + "total_deaths": 4294.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 231.571, + "total_cases_per_million": 1669.735, + "new_cases_per_million": 29.337, + "new_cases_smoothed_per_million": 33.109, + "total_deaths_per_million": 51.251, + "new_deaths_per_million": 2.196, + "new_deaths_smoothed_per_million": 2.764, + "total_tests": 2082754.0, + "total_tests_per_thousand": 24.859, + "new_tests_smoothed": 47415.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 17.093, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-20", + "total_cases": 141672.0, + "new_cases": 1775.0, + "new_cases_smoothed": 2665.143, + "total_deaths": 4404.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 229.286, + "total_cases_per_million": 1690.921, + "new_cases_per_million": 21.185, + "new_cases_smoothed_per_million": 31.81, + "total_deaths_per_million": 52.564, + "new_deaths_per_million": 1.313, + "new_deaths_smoothed_per_million": 2.737, + "new_tests_smoothed": 48067.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 18.035, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-21", + "total_cases": 143457.0, + "new_cases": 1785.0, + "new_cases_smoothed": 2622.714, + "total_deaths": 4598.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 232.714, + "total_cases_per_million": 1712.225, + "new_cases_per_million": 21.305, + "new_cases_smoothed_per_million": 31.303, + "total_deaths_per_million": 54.879, + "new_deaths_per_million": 2.315, + "new_deaths_smoothed_per_million": 2.778, + "new_tests_smoothed": 48720.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 18.576, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-22", + "total_cases": 145694.0, + "new_cases": 2237.0, + "new_cases_smoothed": 2587.143, + "total_deaths": 4879.0, + "new_deaths": 281.0, + "new_deaths_smoothed": 232.143, + "total_cases_per_million": 1738.925, + "new_cases_per_million": 26.7, + "new_cases_smoothed_per_million": 30.879, + "total_deaths_per_million": 58.233, + "new_deaths_per_million": 3.354, + "new_deaths_smoothed_per_million": 2.771, + "new_tests_smoothed": 49373.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 19.084, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-23", + "total_cases": 148046.0, + "new_cases": 2352.0, + "new_cases_smoothed": 2513.714, + "total_deaths": 5094.0, + "new_deaths": 215.0, + "new_deaths_smoothed": 217.857, + "total_cases_per_million": 1766.997, + "new_cases_per_million": 28.072, + "new_cases_smoothed_per_million": 30.002, + "total_deaths_per_million": 60.799, + "new_deaths_per_million": 2.566, + "new_deaths_smoothed_per_million": 2.6, + "new_tests_smoothed": 50026.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 19.901, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-24", + "total_cases": 150383.0, + "new_cases": 2337.0, + "new_cases_smoothed": 2364.714, + "total_deaths": 5321.0, + "new_deaths": 227.0, + "new_deaths_smoothed": 207.571, + "total_cases_per_million": 1794.89, + "new_cases_per_million": 27.893, + "new_cases_smoothed_per_million": 28.224, + "total_deaths_per_million": 63.509, + "new_deaths_per_million": 2.709, + "new_deaths_smoothed_per_million": 2.477, + "new_tests_smoothed": 50679.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 21.430999999999997, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-25", + "total_cases": 152438.0, + "new_cases": 2055.0, + "new_cases_smoothed": 2142.714, + "total_deaths": 5500.0, + "new_deaths": 179.0, + "new_deaths_smoothed": 198.571, + "total_cases_per_million": 1819.418, + "new_cases_per_million": 24.527, + "new_cases_smoothed_per_million": 25.574, + "total_deaths_per_million": 65.645, + "new_deaths_per_million": 2.136, + "new_deaths_smoothed_per_million": 2.37, + "new_tests_smoothed": 51331.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 23.956, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-26", + "total_cases": 154175.0, + "new_cases": 1737.0, + "new_cases_smoothed": 2039.714, + "total_deaths": 5640.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 192.286, + "total_cases_per_million": 1840.15, + "new_cases_per_million": 20.732, + "new_cases_smoothed_per_million": 24.345, + "total_deaths_per_million": 67.316, + "new_deaths_per_million": 1.671, + "new_deaths_smoothed_per_million": 2.295, + "total_tests": 2446644.0, + "total_tests_per_thousand": 29.202, + "new_tests_smoothed": 51984.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 25.486, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-27", + "total_cases": 155193.0, + "new_cases": 1018.0, + "new_cases_smoothed": 1931.571, + "total_deaths": 5750.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 192.286, + "total_cases_per_million": 1852.3, + "new_cases_per_million": 12.15, + "new_cases_smoothed_per_million": 23.054, + "total_deaths_per_million": 68.629, + "new_deaths_per_million": 1.313, + "new_deaths_smoothed_per_million": 2.295, + "new_tests_smoothed": 51227.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 26.521, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-28", + "total_cases": 156337.0, + "new_cases": 1144.0, + "new_cases_smoothed": 1840.0, + "total_deaths": 5913.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 187.857, + "total_cases_per_million": 1865.954, + "new_cases_per_million": 13.654, + "new_cases_smoothed_per_million": 21.961, + "total_deaths_per_million": 70.574, + "new_deaths_per_million": 1.945, + "new_deaths_smoothed_per_million": 2.242, + "new_tests_smoothed": 50470.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 27.429000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-29", + "total_cases": 157641.0, + "new_cases": 1304.0, + "new_cases_smoothed": 1706.714, + "total_deaths": 6115.0, + "new_deaths": 202.0, + "new_deaths_smoothed": 176.571, + "total_cases_per_million": 1881.518, + "new_cases_per_million": 15.564, + "new_cases_smoothed_per_million": 20.37, + "total_deaths_per_million": 72.985, + "new_deaths_per_million": 2.411, + "new_deaths_smoothed_per_million": 2.107, + "new_tests_smoothed": 49713.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 29.128, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-30", + "total_cases": 159119.0, + "new_cases": 1478.0, + "new_cases_smoothed": 1581.857, + "total_deaths": 6288.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 170.571, + "total_cases_per_million": 1899.159, + "new_cases_per_million": 17.641, + "new_cases_smoothed_per_million": 18.88, + "total_deaths_per_million": 75.05, + "new_deaths_per_million": 2.065, + "new_deaths_smoothed_per_million": 2.036, + "new_tests_smoothed": 48956.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 30.948, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-01", + "total_cases": 160758.0, + "new_cases": 1639.0, + "new_cases_smoothed": 1482.143, + "total_deaths": 6481.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 165.714, + "total_cases_per_million": 1918.721, + "new_cases_per_million": 19.562, + "new_cases_smoothed_per_million": 17.69, + "total_deaths_per_million": 77.354, + "new_deaths_per_million": 2.304, + "new_deaths_smoothed_per_million": 1.978, + "new_tests_smoothed": 48198.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 32.519, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-02", + "total_cases": 161703.0, + "new_cases": 945.0, + "new_cases_smoothed": 1323.571, + "total_deaths": 6575.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 153.571, + "total_cases_per_million": 1930.0, + "new_cases_per_million": 11.279, + "new_cases_smoothed_per_million": 15.797, + "total_deaths_per_million": 78.476, + "new_deaths_per_million": 1.122, + "new_deaths_smoothed_per_million": 1.833, + "new_tests_smoothed": 47441.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 35.843, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-03", + "total_cases": 162496.0, + "new_cases": 793.0, + "new_cases_smoothed": 1188.714, + "total_deaths": 6649.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 144.143, + "total_cases_per_million": 1939.465, + "new_cases_per_million": 9.465, + "new_cases_smoothed_per_million": 14.188, + "total_deaths_per_million": 79.359, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.72, + "total_tests": 2773432.0, + "total_tests_per_thousand": 33.102, + "new_tests_smoothed": 46684.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 39.273, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-05-04", + "total_cases": 163175.0, + "new_cases": 679.0, + "new_cases_smoothed": 1140.286, + "total_deaths": 6692.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 134.571, + "total_cases_per_million": 1947.569, + "new_cases_per_million": 8.104, + "new_cases_smoothed_per_million": 13.61, + "total_deaths_per_million": 79.872, + "new_deaths_per_million": 0.513, + "new_deaths_smoothed_per_million": 1.606, + "new_tests_smoothed": 48257.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 42.32, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-05-05", + "total_cases": 163860.0, + "new_cases": 685.0, + "new_cases_smoothed": 1074.714, + "total_deaths": 6831.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 131.143, + "total_cases_per_million": 1955.745, + "new_cases_per_million": 8.176, + "new_cases_smoothed_per_million": 12.827, + "total_deaths_per_million": 81.531, + "new_deaths_per_million": 1.659, + "new_deaths_smoothed_per_million": 1.565, + "new_tests_smoothed": 49830.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 46.36600000000001, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-05-06", + "total_cases": 164897.0, + "new_cases": 1037.0, + "new_cases_smoothed": 1036.571, + "total_deaths": 6996.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 125.857, + "total_cases_per_million": 1968.122, + "new_cases_per_million": 12.377, + "new_cases_smoothed_per_million": 12.372, + "total_deaths_per_million": 83.5, + "new_deaths_per_million": 1.969, + "new_deaths_smoothed_per_million": 1.502, + "new_tests_smoothed": 51404.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 49.59, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 66.2 + }, + { + "date": "2020-05-07", + "total_cases": 166091.0, + "new_cases": 1194.0, + "new_cases_smoothed": 996.0, + "total_deaths": 7119.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 118.714, + "total_cases_per_million": 1982.373, + "new_cases_per_million": 14.251, + "new_cases_smoothed_per_million": 11.888, + "total_deaths_per_million": 84.969, + "new_deaths_per_million": 1.468, + "new_deaths_smoothed_per_million": 1.417, + "new_tests_smoothed": 52977.0, + "new_tests_smoothed_per_thousand": 0.632, + "tests_per_case": 53.19, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-08", + "total_cases": 167300.0, + "new_cases": 1209.0, + "new_cases_smoothed": 934.571, + "total_deaths": 7266.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 112.143, + "total_cases_per_million": 1996.803, + "new_cases_per_million": 14.43, + "new_cases_smoothed_per_million": 11.155, + "total_deaths_per_million": 86.723, + "new_deaths_per_million": 1.755, + "new_deaths_smoothed_per_million": 1.338, + "new_tests_smoothed": 54550.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 58.369, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-09", + "total_cases": 168551.0, + "new_cases": 1251.0, + "new_cases_smoothed": 978.286, + "total_deaths": 7369.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 113.429, + "total_cases_per_million": 2011.734, + "new_cases_per_million": 14.931, + "new_cases_smoothed_per_million": 11.676, + "total_deaths_per_million": 87.952, + "new_deaths_per_million": 1.229, + "new_deaths_smoothed_per_million": 1.354, + "new_tests_smoothed": 56123.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 57.369, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-10", + "total_cases": 169218.0, + "new_cases": 667.0, + "new_cases_smoothed": 960.286, + "total_deaths": 7395.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 106.571, + "total_cases_per_million": 2019.695, + "new_cases_per_million": 7.961, + "new_cases_smoothed_per_million": 11.461, + "total_deaths_per_million": 88.263, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 1.272, + "total_tests": 3177307.0, + "total_tests_per_thousand": 37.923, + "new_tests_smoothed": 57696.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 60.082, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-11", + "total_cases": 169575.0, + "new_cases": 357.0, + "new_cases_smoothed": 914.286, + "total_deaths": 7417.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 103.571, + "total_cases_per_million": 2023.956, + "new_cases_per_million": 4.261, + "new_cases_smoothed_per_million": 10.912, + "total_deaths_per_million": 88.525, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 1.236, + "new_tests_smoothed": 58284.0, + "new_tests_smoothed_per_thousand": 0.696, + "tests_per_case": 63.748000000000005, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-12", + "total_cases": 170508.0, + "new_cases": 933.0, + "new_cases_smoothed": 949.714, + "total_deaths": 7533.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 100.286, + "total_cases_per_million": 2035.092, + "new_cases_per_million": 11.136, + "new_cases_smoothed_per_million": 11.335, + "total_deaths_per_million": 89.91, + "new_deaths_per_million": 1.385, + "new_deaths_smoothed_per_million": 1.197, + "new_tests_smoothed": 58872.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 61.989, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-13", + "total_cases": 171306.0, + "new_cases": 798.0, + "new_cases_smoothed": 915.571, + "total_deaths": 7634.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 91.143, + "total_cases_per_million": 2044.616, + "new_cases_per_million": 9.524, + "new_cases_smoothed_per_million": 10.928, + "total_deaths_per_million": 91.115, + "new_deaths_per_million": 1.205, + "new_deaths_smoothed_per_million": 1.088, + "new_tests_smoothed": 59459.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 64.942, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-14", + "total_cases": 172239.0, + "new_cases": 933.0, + "new_cases_smoothed": 878.286, + "total_deaths": 7723.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 86.286, + "total_cases_per_million": 2055.752, + "new_cases_per_million": 11.136, + "new_cases_smoothed_per_million": 10.483, + "total_deaths_per_million": 92.178, + "new_deaths_per_million": 1.062, + "new_deaths_smoothed_per_million": 1.03, + "new_tests_smoothed": 60047.0, + "new_tests_smoothed_per_thousand": 0.717, + "tests_per_case": 68.368, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-15", + "total_cases": 173152.0, + "new_cases": 913.0, + "new_cases_smoothed": 836.0, + "total_deaths": 7824.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 79.714, + "total_cases_per_million": 2066.649, + "new_cases_per_million": 10.897, + "new_cases_smoothed_per_million": 9.978, + "total_deaths_per_million": 93.383, + "new_deaths_per_million": 1.205, + "new_deaths_smoothed_per_million": 0.951, + "new_tests_smoothed": 60634.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 72.529, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-05-16", + "total_cases": 173772.0, + "new_cases": 620.0, + "new_cases_smoothed": 745.857, + "total_deaths": 7881.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 73.143, + "total_cases_per_million": 2074.049, + "new_cases_per_million": 7.4, + "new_cases_smoothed_per_million": 8.902, + "total_deaths_per_million": 94.063, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 0.873, + "new_tests_smoothed": 61222.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 82.083, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.57 + }, + { + "date": "2020-05-17", + "total_cases": 174355.0, + "new_cases": 583.0, + "new_cases_smoothed": 733.857, + "total_deaths": 7914.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 74.143, + "total_cases_per_million": 2081.007, + "new_cases_per_million": 6.958, + "new_cases_smoothed_per_million": 8.759, + "total_deaths_per_million": 94.457, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.885, + "total_tests": 3609973.0, + "total_tests_per_thousand": 43.087, + "new_tests_smoothed": 61809.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 84.225, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.57 + }, + { + "date": "2020-05-18", + "total_cases": 174697.0, + "new_cases": 342.0, + "new_cases_smoothed": 731.714, + "total_deaths": 7935.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 74.0, + "total_cases_per_million": 2085.089, + "new_cases_per_million": 4.082, + "new_cases_smoothed_per_million": 8.733, + "total_deaths_per_million": 94.708, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.883, + "new_tests_smoothed": 60193.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 82.26299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.57 + }, + { + "date": "2020-05-19", + "total_cases": 175210.0, + "new_cases": 513.0, + "new_cases_smoothed": 671.714, + "total_deaths": 8007.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 67.714, + "total_cases_per_million": 2091.212, + "new_cases_per_million": 6.123, + "new_cases_smoothed_per_million": 8.017, + "total_deaths_per_million": 95.567, + "new_deaths_per_million": 0.859, + "new_deaths_smoothed_per_million": 0.808, + "new_tests_smoothed": 58577.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 87.205, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-20", + "total_cases": 176007.0, + "new_cases": 797.0, + "new_cases_smoothed": 671.571, + "total_deaths": 8090.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 65.143, + "total_cases_per_million": 2100.725, + "new_cases_per_million": 9.513, + "new_cases_smoothed_per_million": 8.016, + "total_deaths_per_million": 96.558, + "new_deaths_per_million": 0.991, + "new_deaths_smoothed_per_million": 0.778, + "new_tests_smoothed": 56961.0, + "new_tests_smoothed_per_thousand": 0.68, + "tests_per_case": 84.81700000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-21", + "total_cases": 176752.0, + "new_cases": 745.0, + "new_cases_smoothed": 644.714, + "total_deaths": 8147.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 60.571, + "total_cases_per_million": 2109.617, + "new_cases_per_million": 8.892, + "new_cases_smoothed_per_million": 7.695, + "total_deaths_per_million": 97.238, + "new_deaths_per_million": 0.68, + "new_deaths_smoothed_per_million": 0.723, + "new_tests_smoothed": 55344.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 85.84299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-22", + "total_cases": 177212.0, + "new_cases": 460.0, + "new_cases_smoothed": 580.0, + "total_deaths": 8174.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 50.0, + "total_cases_per_million": 2115.107, + "new_cases_per_million": 5.49, + "new_cases_smoothed_per_million": 6.923, + "total_deaths_per_million": 97.56, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.597, + "new_tests_smoothed": 53728.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 92.634, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-23", + "total_cases": 177850.0, + "new_cases": 638.0, + "new_cases_smoothed": 582.571, + "total_deaths": 8216.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 47.857, + "total_cases_per_million": 2122.722, + "new_cases_per_million": 7.615, + "new_cases_smoothed_per_million": 6.953, + "total_deaths_per_million": 98.062, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.571, + "new_tests_smoothed": 52112.0, + "new_tests_smoothed_per_thousand": 0.622, + "tests_per_case": 89.45200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-24", + "total_cases": 178281.0, + "new_cases": 431.0, + "new_cases_smoothed": 560.857, + "total_deaths": 8247.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 47.571, + "total_cases_per_million": 2127.866, + "new_cases_per_million": 5.144, + "new_cases_smoothed_per_million": 6.694, + "total_deaths_per_million": 98.432, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.568, + "total_tests": 3963440.0, + "total_tests_per_thousand": 47.305, + "new_tests_smoothed": 50495.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 90.03200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-25", + "total_cases": 178570.0, + "new_cases": 289.0, + "new_cases_smoothed": 553.286, + "total_deaths": 8257.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 46.0, + "total_cases_per_million": 2131.315, + "new_cases_per_million": 3.449, + "new_cases_smoothed_per_million": 6.604, + "total_deaths_per_million": 98.551, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.549, + "new_tests_smoothed": 51552.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 93.17399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-26", + "total_cases": 179002.0, + "new_cases": 432.0, + "new_cases_smoothed": 541.714, + "total_deaths": 8302.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 2136.471, + "new_cases_per_million": 5.156, + "new_cases_smoothed_per_million": 6.466, + "total_deaths_per_million": 99.088, + "new_deaths_per_million": 0.537, + "new_deaths_smoothed_per_million": 0.503, + "new_tests_smoothed": 52610.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 97.118, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-27", + "total_cases": 179364.0, + "new_cases": 362.0, + "new_cases_smoothed": 479.571, + "total_deaths": 8349.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 37.0, + "total_cases_per_million": 2140.792, + "new_cases_per_million": 4.321, + "new_cases_smoothed_per_million": 5.724, + "total_deaths_per_million": 99.649, + "new_deaths_per_million": 0.561, + "new_deaths_smoothed_per_million": 0.442, + "new_tests_smoothed": 53667.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 111.906, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-28", + "total_cases": 179717.0, + "new_cases": 353.0, + "new_cases_smoothed": 423.571, + "total_deaths": 8411.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 2145.005, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 5.056, + "total_deaths_per_million": 100.389, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.45, + "new_tests_smoothed": 54724.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 129.197, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-29", + "total_cases": 180458.0, + "new_cases": 741.0, + "new_cases_smoothed": 463.714, + "total_deaths": 8450.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 2153.849, + "new_cases_per_million": 8.844, + "new_cases_smoothed_per_million": 5.535, + "total_deaths_per_million": 100.855, + "new_deaths_per_million": 0.465, + "new_deaths_smoothed_per_million": 0.471, + "new_tests_smoothed": 55781.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 120.292, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-30", + "total_cases": 181196.0, + "new_cases": 738.0, + "new_cases_smoothed": 478.0, + "total_deaths": 8489.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 2162.658, + "new_cases_per_million": 8.808, + "new_cases_smoothed_per_million": 5.705, + "total_deaths_per_million": 101.32, + "new_deaths_per_million": 0.465, + "new_deaths_smoothed_per_million": 0.465, + "new_tests_smoothed": 56838.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 118.90799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-05-31", + "total_cases": 181482.0, + "new_cases": 286.0, + "new_cases_smoothed": 457.286, + "total_deaths": 8500.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 2166.071, + "new_cases_per_million": 3.414, + "new_cases_smoothed_per_million": 5.458, + "total_deaths_per_million": 101.451, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.431, + "total_tests": 4368709.0, + "total_tests_per_thousand": 52.143, + "new_tests_smoothed": 57896.0, + "new_tests_smoothed_per_thousand": 0.691, + "tests_per_case": 126.60799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-01", + "total_cases": 181815.0, + "new_cases": 333.0, + "new_cases_smoothed": 463.571, + "total_deaths": 8511.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 2170.046, + "new_cases_per_million": 3.975, + "new_cases_smoothed_per_million": 5.533, + "total_deaths_per_million": 101.583, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.433, + "new_tests_smoothed": 56584.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 122.061, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-02", + "total_cases": 182028.0, + "new_cases": 213.0, + "new_cases_smoothed": 432.286, + "total_deaths": 8522.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 2172.588, + "new_cases_per_million": 2.542, + "new_cases_smoothed_per_million": 5.16, + "total_deaths_per_million": 101.714, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.375, + "new_tests_smoothed": 55272.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 127.86, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-03", + "total_cases": 182370.0, + "new_cases": 342.0, + "new_cases_smoothed": 429.429, + "total_deaths": 8551.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 2176.67, + "new_cases_per_million": 4.082, + "new_cases_smoothed_per_million": 5.125, + "total_deaths_per_million": 102.06, + "new_deaths_per_million": 0.346, + "new_deaths_smoothed_per_million": 0.344, + "new_tests_smoothed": 53960.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 125.655, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-04", + "total_cases": 182764.0, + "new_cases": 394.0, + "new_cases_smoothed": 435.286, + "total_deaths": 8581.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 2181.373, + "new_cases_per_million": 4.703, + "new_cases_smoothed_per_million": 5.195, + "total_deaths_per_million": 102.418, + "new_deaths_per_million": 0.358, + "new_deaths_smoothed_per_million": 0.29, + "new_tests_smoothed": 52648.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 120.95, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-05", + "total_cases": 183271.0, + "new_cases": 507.0, + "new_cases_smoothed": 401.857, + "total_deaths": 8613.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 2187.424, + "new_cases_per_million": 6.051, + "new_cases_smoothed_per_million": 4.796, + "total_deaths_per_million": 102.8, + "new_deaths_per_million": 0.382, + "new_deaths_smoothed_per_million": 0.278, + "new_tests_smoothed": 51336.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 127.74700000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-06", + "total_cases": 183678.0, + "new_cases": 407.0, + "new_cases_smoothed": 354.571, + "total_deaths": 8646.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 2192.282, + "new_cases_per_million": 4.858, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 103.194, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.268, + "new_tests_smoothed": 50024.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 141.083, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-07", + "total_cases": 183979.0, + "new_cases": 301.0, + "new_cases_smoothed": 356.714, + "total_deaths": 8668.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 2195.874, + "new_cases_per_million": 3.593, + "new_cases_smoothed_per_million": 4.258, + "total_deaths_per_million": 103.457, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.286, + "total_tests": 4709695.0, + "total_tests_per_thousand": 56.212, + "new_tests_smoothed": 48712.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 136.55700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-08", + "total_cases": 184193.0, + "new_cases": 214.0, + "new_cases_smoothed": 339.714, + "total_deaths": 8674.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 2198.428, + "new_cases_per_million": 2.554, + "new_cases_smoothed_per_million": 4.055, + "total_deaths_per_million": 103.528, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.278, + "new_tests_smoothed": 48431.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 142.564, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-09", + "total_cases": 184543.0, + "new_cases": 350.0, + "new_cases_smoothed": 359.286, + "total_deaths": 8711.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 2202.606, + "new_cases_per_million": 4.177, + "new_cases_smoothed_per_million": 4.288, + "total_deaths_per_million": 103.97, + "new_deaths_per_million": 0.442, + "new_deaths_smoothed_per_million": 0.322, + "new_tests_smoothed": 48149.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 134.013, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-10", + "total_cases": 184861.0, + "new_cases": 318.0, + "new_cases_smoothed": 355.857, + "total_deaths": 8729.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 2206.401, + "new_cases_per_million": 3.795, + "new_cases_smoothed_per_million": 4.247, + "total_deaths_per_million": 104.185, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.304, + "new_tests_smoothed": 47868.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 134.515, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-11", + "total_cases": 185416.0, + "new_cases": 555.0, + "new_cases_smoothed": 378.857, + "total_deaths": 8755.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 2213.025, + "new_cases_per_million": 6.624, + "new_cases_smoothed_per_million": 4.522, + "total_deaths_per_million": 104.495, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.297, + "new_tests_smoothed": 47587.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 125.60700000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-12", + "total_cases": 185674.0, + "new_cases": 258.0, + "new_cases_smoothed": 343.286, + "total_deaths": 8763.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 2216.105, + "new_cases_per_million": 3.079, + "new_cases_smoothed_per_million": 4.097, + "total_deaths_per_million": 104.59, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.256, + "new_tests_smoothed": 47305.0, + "new_tests_smoothed_per_thousand": 0.565, + "tests_per_case": 137.80100000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-13", + "total_cases": 186022.0, + "new_cases": 348.0, + "new_cases_smoothed": 334.857, + "total_deaths": 8781.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 2220.258, + "new_cases_per_million": 4.154, + "new_cases_smoothed_per_million": 3.997, + "total_deaths_per_million": 104.805, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.23, + "new_tests_smoothed": 47024.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 140.43, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-14", + "total_cases": 186269.0, + "new_cases": 247.0, + "new_cases_smoothed": 327.143, + "total_deaths": 8787.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 2223.206, + "new_cases_per_million": 2.948, + "new_cases_smoothed_per_million": 3.905, + "total_deaths_per_million": 104.877, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.203, + "total_tests": 5036891.0, + "total_tests_per_thousand": 60.118, + "new_tests_smoothed": 46742.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 142.879, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-15", + "total_cases": 186461.0, + "new_cases": 192.0, + "new_cases_smoothed": 324.0, + "total_deaths": 8791.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 2225.498, + "new_cases_per_million": 2.292, + "new_cases_smoothed_per_million": 3.867, + "total_deaths_per_million": 104.925, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.199, + "new_tests_smoothed": 47987.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 148.108, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-16", + "total_cases": 186839.0, + "new_cases": 378.0, + "new_cases_smoothed": 328.0, + "total_deaths": 8800.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 2230.01, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 3.915, + "total_deaths_per_million": 105.032, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.152, + "new_tests_smoothed": 49232.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 150.09799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-17", + "total_cases": 187184.0, + "new_cases": 345.0, + "new_cases_smoothed": 331.857, + "total_deaths": 8830.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 2234.127, + "new_cases_per_million": 4.118, + "new_cases_smoothed_per_million": 3.961, + "total_deaths_per_million": 105.39, + "new_deaths_per_million": 0.358, + "new_deaths_smoothed_per_million": 0.172, + "new_tests_smoothed": 50476.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 152.102, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-06-18", + "total_cases": 187764.0, + "new_cases": 580.0, + "new_cases_smoothed": 335.429, + "total_deaths": 8856.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 2241.05, + "new_cases_per_million": 6.923, + "new_cases_smoothed_per_million": 4.003, + "total_deaths_per_million": 105.7, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.172, + "new_tests_smoothed": 51721.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 154.194, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-19", + "total_cases": 188534.0, + "new_cases": 770.0, + "new_cases_smoothed": 408.571, + "total_deaths": 8872.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 2250.24, + "new_cases_per_million": 9.19, + "new_cases_smoothed_per_million": 4.876, + "total_deaths_per_million": 105.891, + "new_deaths_per_million": 0.191, + "new_deaths_smoothed_per_million": 0.186, + "new_tests_smoothed": 52966.0, + "new_tests_smoothed_per_thousand": 0.632, + "tests_per_case": 129.637, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-20", + "total_cases": 189135.0, + "new_cases": 601.0, + "new_cases_smoothed": 444.714, + "total_deaths": 8882.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 2257.413, + "new_cases_per_million": 7.173, + "new_cases_smoothed_per_million": 5.308, + "total_deaths_per_million": 106.011, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.172, + "new_tests_smoothed": 54211.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 121.90100000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-21", + "total_cases": 189822.0, + "new_cases": 687.0, + "new_cases_smoothed": 507.571, + "total_deaths": 8882.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 2265.613, + "new_cases_per_million": 8.2, + "new_cases_smoothed_per_million": 6.058, + "total_deaths_per_million": 106.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.162, + "total_tests": 5425078.0, + "total_tests_per_thousand": 64.751, + "new_tests_smoothed": 55455.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 109.256, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-22", + "total_cases": 190359.0, + "new_cases": 537.0, + "new_cases_smoothed": 556.857, + "total_deaths": 8885.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 2272.022, + "new_cases_per_million": 6.409, + "new_cases_smoothed_per_million": 6.646, + "total_deaths_per_million": 106.047, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.16, + "new_tests_smoothed": 57072.0, + "new_tests_smoothed_per_thousand": 0.681, + "tests_per_case": 102.48899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-23", + "total_cases": 190862.0, + "new_cases": 503.0, + "new_cases_smoothed": 574.714, + "total_deaths": 8895.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 2278.026, + "new_cases_per_million": 6.004, + "new_cases_smoothed_per_million": 6.859, + "total_deaths_per_million": 106.166, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.162, + "new_tests_smoothed": 58689.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 102.119, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-24", + "total_cases": 191449.0, + "new_cases": 587.0, + "new_cases_smoothed": 609.286, + "total_deaths": 8914.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 2285.032, + "new_cases_per_million": 7.006, + "new_cases_smoothed_per_million": 7.272, + "total_deaths_per_million": 106.393, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.143, + "new_tests_smoothed": 60306.0, + "new_tests_smoothed_per_thousand": 0.72, + "tests_per_case": 98.978, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-25", + "total_cases": 192079.0, + "new_cases": 630.0, + "new_cases_smoothed": 616.429, + "total_deaths": 8927.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 2292.551, + "new_cases_per_million": 7.519, + "new_cases_smoothed_per_million": 7.357, + "total_deaths_per_million": 106.548, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.121, + "new_tests_smoothed": 61923.0, + "new_tests_smoothed_per_thousand": 0.739, + "tests_per_case": 100.454, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-26", + "total_cases": 192556.0, + "new_cases": 477.0, + "new_cases_smoothed": 574.571, + "total_deaths": 8948.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2298.245, + "new_cases_per_million": 5.693, + "new_cases_smoothed_per_million": 6.858, + "total_deaths_per_million": 106.799, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.13, + "new_tests_smoothed": 63540.0, + "new_tests_smoothed_per_thousand": 0.758, + "tests_per_case": 110.587, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-27", + "total_cases": 193243.0, + "new_cases": 687.0, + "new_cases_smoothed": 586.857, + "total_deaths": 8954.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 2306.444, + "new_cases_per_million": 8.2, + "new_cases_smoothed_per_million": 7.004, + "total_deaths_per_million": 106.87, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.123, + "new_tests_smoothed": 65156.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 111.025, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-28", + "total_cases": 193499.0, + "new_cases": 256.0, + "new_cases_smoothed": 525.286, + "total_deaths": 8957.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 2309.5, + "new_cases_per_million": 3.055, + "new_cases_smoothed_per_million": 6.27, + "total_deaths_per_million": 106.906, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.128, + "total_tests": 5892491.0, + "total_tests_per_thousand": 70.33, + "new_tests_smoothed": 66773.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 127.117, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-29", + "total_cases": 193761.0, + "new_cases": 262.0, + "new_cases_smoothed": 486.0, + "total_deaths": 8961.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2312.627, + "new_cases_per_million": 3.127, + "new_cases_smoothed_per_million": 5.801, + "total_deaths_per_million": 106.954, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.13, + "new_tests_smoothed": 67571.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 139.035, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-06-30", + "total_cases": 194259.0, + "new_cases": 498.0, + "new_cases_smoothed": 485.286, + "total_deaths": 8973.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 2318.571, + "new_cases_per_million": 5.944, + "new_cases_smoothed_per_million": 5.792, + "total_deaths_per_million": 107.097, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.133, + "new_tests_smoothed": 68368.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 140.882, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-01", + "total_cases": 194725.0, + "new_cases": 466.0, + "new_cases_smoothed": 468.0, + "total_deaths": 8985.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 2324.133, + "new_cases_per_million": 5.562, + "new_cases_smoothed_per_million": 5.586, + "total_deaths_per_million": 107.24, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.121, + "new_tests_smoothed": 69166.0, + "new_tests_smoothed_per_thousand": 0.826, + "tests_per_case": 147.791, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-02", + "total_cases": 195228.0, + "new_cases": 503.0, + "new_cases_smoothed": 449.857, + "total_deaths": 8994.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 2330.136, + "new_cases_per_million": 6.004, + "new_cases_smoothed_per_million": 5.369, + "total_deaths_per_million": 107.348, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.114, + "new_tests_smoothed": 69963.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 155.523, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-03", + "total_cases": 195674.0, + "new_cases": 446.0, + "new_cases_smoothed": 445.429, + "total_deaths": 9003.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2335.459, + "new_cases_per_million": 5.323, + "new_cases_smoothed_per_million": 5.316, + "total_deaths_per_million": 107.455, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.094, + "new_tests_smoothed": 70761.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 158.86, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-04", + "total_cases": 196096.0, + "new_cases": 422.0, + "new_cases_smoothed": 407.571, + "total_deaths": 9010.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 2340.496, + "new_cases_per_million": 5.037, + "new_cases_smoothed_per_million": 4.865, + "total_deaths_per_million": 107.539, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.095, + "new_tests_smoothed": 71558.0, + "new_tests_smoothed_per_thousand": 0.854, + "tests_per_case": 175.572, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-05", + "total_cases": 196335.0, + "new_cases": 239.0, + "new_cases_smoothed": 405.143, + "total_deaths": 9012.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2343.349, + "new_cases_per_million": 2.853, + "new_cases_smoothed_per_million": 4.836, + "total_deaths_per_million": 107.562, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.094, + "total_tests": 6398981.0, + "total_tests_per_thousand": 76.375, + "new_tests_smoothed": 72356.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 178.59400000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-06", + "total_cases": 196554.0, + "new_cases": 219.0, + "new_cases_smoothed": 399.0, + "total_deaths": 9016.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2345.963, + "new_cases_per_million": 2.614, + "new_cases_smoothed_per_million": 4.762, + "total_deaths_per_million": 107.61, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.094, + "new_tests_smoothed": 72439.0, + "new_tests_smoothed_per_thousand": 0.865, + "tests_per_case": 181.551, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 63.43 + }, + { + "date": "2020-07-07", + "total_cases": 196944.0, + "new_cases": 390.0, + "new_cases_smoothed": 383.571, + "total_deaths": 9024.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2350.617, + "new_cases_per_million": 4.655, + "new_cases_smoothed_per_million": 4.578, + "total_deaths_per_million": 107.706, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.087, + "new_tests_smoothed": 72521.0, + "new_tests_smoothed_per_thousand": 0.866, + "tests_per_case": 189.06799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-08", + "total_cases": 197341.0, + "new_cases": 397.0, + "new_cases_smoothed": 373.714, + "total_deaths": 9036.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2355.356, + "new_cases_per_million": 4.738, + "new_cases_smoothed_per_million": 4.46, + "total_deaths_per_million": 107.849, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.087, + "new_tests_smoothed": 72604.0, + "new_tests_smoothed_per_thousand": 0.867, + "tests_per_case": 194.27700000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-09", + "total_cases": 197783.0, + "new_cases": 442.0, + "new_cases_smoothed": 365.0, + "total_deaths": 9048.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2360.631, + "new_cases_per_million": 5.275, + "new_cases_smoothed_per_million": 4.356, + "total_deaths_per_million": 107.992, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.092, + "new_tests_smoothed": 72687.0, + "new_tests_smoothed_per_thousand": 0.868, + "tests_per_case": 199.142, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-10", + "total_cases": 198178.0, + "new_cases": 395.0, + "new_cases_smoothed": 357.714, + "total_deaths": 9054.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2365.346, + "new_cases_per_million": 4.715, + "new_cases_smoothed_per_million": 4.269, + "total_deaths_per_million": 108.064, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.087, + "new_tests_smoothed": 72770.0, + "new_tests_smoothed_per_thousand": 0.869, + "tests_per_case": 203.43099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-11", + "total_cases": 198556.0, + "new_cases": 378.0, + "new_cases_smoothed": 351.429, + "total_deaths": 9060.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2369.857, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 4.194, + "total_deaths_per_million": 108.135, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.085, + "new_tests_smoothed": 72853.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 207.305, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-12", + "total_cases": 198804.0, + "new_cases": 248.0, + "new_cases_smoothed": 352.714, + "total_deaths": 9063.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2372.817, + "new_cases_per_million": 2.96, + "new_cases_smoothed_per_million": 4.21, + "total_deaths_per_million": 108.171, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.087, + "total_tests": 6909532.0, + "total_tests_per_thousand": 82.468, + "new_tests_smoothed": 72936.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 206.785, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-13", + "total_cases": 198963.0, + "new_cases": 159.0, + "new_cases_smoothed": 344.143, + "total_deaths": 9064.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2374.715, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 4.108, + "total_deaths_per_million": 108.183, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 73510.0, + "new_tests_smoothed_per_thousand": 0.877, + "tests_per_case": 213.60299999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-14", + "total_cases": 199375.0, + "new_cases": 412.0, + "new_cases_smoothed": 347.286, + "total_deaths": 9068.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2379.633, + "new_cases_per_million": 4.917, + "new_cases_smoothed_per_million": 4.145, + "total_deaths_per_million": 108.231, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.075, + "new_tests_smoothed": 74085.0, + "new_tests_smoothed_per_thousand": 0.884, + "tests_per_case": 213.326, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-15", + "total_cases": 199726.0, + "new_cases": 351.0, + "new_cases_smoothed": 340.714, + "total_deaths": 9071.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2383.822, + "new_cases_per_million": 4.189, + "new_cases_smoothed_per_million": 4.067, + "total_deaths_per_million": 108.267, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 74659.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 219.125, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-16", + "total_cases": 200260.0, + "new_cases": 534.0, + "new_cases_smoothed": 353.857, + "total_deaths": 9078.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2390.195, + "new_cases_per_million": 6.374, + "new_cases_smoothed_per_million": 4.223, + "total_deaths_per_million": 108.35, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.051, + "new_tests_smoothed": 75234.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 212.611, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-17", + "total_cases": 200843.0, + "new_cases": 583.0, + "new_cases_smoothed": 380.714, + "total_deaths": 9082.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2397.154, + "new_cases_per_million": 6.958, + "new_cases_smoothed_per_million": 4.544, + "total_deaths_per_million": 108.398, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.048, + "new_tests_smoothed": 75808.0, + "new_tests_smoothed_per_thousand": 0.905, + "tests_per_case": 199.12, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-18", + "total_cases": 201372.0, + "new_cases": 529.0, + "new_cases_smoothed": 402.286, + "total_deaths": 9083.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2403.468, + "new_cases_per_million": 6.314, + "new_cases_smoothed_per_million": 4.801, + "total_deaths_per_million": 108.41, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.039, + "new_tests_smoothed": 76383.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 189.873, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-19", + "total_cases": 201574.0, + "new_cases": 202.0, + "new_cases_smoothed": 395.714, + "total_deaths": 9084.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2405.879, + "new_cases_per_million": 2.411, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 108.422, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.036, + "total_tests": 7448233.0, + "total_tests_per_thousand": 88.898, + "new_tests_smoothed": 76957.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 194.476, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-20", + "total_cases": 201823.0, + "new_cases": 249.0, + "new_cases_smoothed": 408.571, + "total_deaths": 9086.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2408.851, + "new_cases_per_million": 2.972, + "new_cases_smoothed_per_million": 4.876, + "total_deaths_per_million": 108.446, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.038, + "new_tests_smoothed": 77657.0, + "new_tests_smoothed_per_thousand": 0.927, + "tests_per_case": 190.07, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-21", + "total_cases": 202345.0, + "new_cases": 522.0, + "new_cases_smoothed": 424.286, + "total_deaths": 9090.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2415.081, + "new_cases_per_million": 6.23, + "new_cases_smoothed_per_million": 5.064, + "total_deaths_per_million": 108.493, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.038, + "new_tests_smoothed": 78356.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 184.67700000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-22", + "total_cases": 202799.0, + "new_cases": 454.0, + "new_cases_smoothed": 439.0, + "total_deaths": 9095.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 2420.5, + "new_cases_per_million": 5.419, + "new_cases_smoothed_per_million": 5.24, + "total_deaths_per_million": 108.553, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 79055.0, + "new_tests_smoothed_per_thousand": 0.944, + "tests_per_case": 180.08, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-23", + "total_cases": 203368.0, + "new_cases": 569.0, + "new_cases_smoothed": 444.0, + "total_deaths": 9101.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2427.291, + "new_cases_per_million": 6.791, + "new_cases_smoothed_per_million": 5.299, + "total_deaths_per_million": 108.625, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.039, + "new_tests_smoothed": 79755.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 179.628, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-24", + "total_cases": 204183.0, + "new_cases": 815.0, + "new_cases_smoothed": 477.143, + "total_deaths": 9111.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2437.018, + "new_cases_per_million": 9.727, + "new_cases_smoothed_per_million": 5.695, + "total_deaths_per_million": 108.744, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 80454.0, + "new_tests_smoothed_per_thousand": 0.96, + "tests_per_case": 168.61599999999999, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-25", + "total_cases": 204964.0, + "new_cases": 781.0, + "new_cases_smoothed": 513.143, + "total_deaths": 9118.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2446.34, + "new_cases_per_million": 9.322, + "new_cases_smoothed_per_million": 6.125, + "total_deaths_per_million": 108.828, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 81153.0, + "new_tests_smoothed_per_thousand": 0.969, + "tests_per_case": 158.149, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-26", + "total_cases": 205269.0, + "new_cases": 305.0, + "new_cases_smoothed": 527.857, + "total_deaths": 9118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2449.98, + "new_cases_per_million": 3.64, + "new_cases_smoothed_per_million": 6.3, + "total_deaths_per_million": 108.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "total_tests": 8021200.0, + "total_tests_per_thousand": 95.737, + "new_tests_smoothed": 81852.0, + "new_tests_smoothed_per_thousand": 0.977, + "tests_per_case": 155.065, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-27", + "total_cases": 205609.0, + "new_cases": 340.0, + "new_cases_smoothed": 540.857, + "total_deaths": 9118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2454.038, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 6.455, + "total_deaths_per_million": 108.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 82017.0, + "new_tests_smoothed_per_thousand": 0.979, + "tests_per_case": 151.643, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-28", + "total_cases": 206242.0, + "new_cases": 633.0, + "new_cases_smoothed": 556.714, + "total_deaths": 9122.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2461.593, + "new_cases_per_million": 7.555, + "new_cases_smoothed_per_million": 6.645, + "total_deaths_per_million": 108.875, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 82182.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 147.62, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-29", + "total_cases": 206926.0, + "new_cases": 684.0, + "new_cases_smoothed": 589.571, + "total_deaths": 9128.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2469.757, + "new_cases_per_million": 8.164, + "new_cases_smoothed_per_million": 7.037, + "total_deaths_per_million": 108.947, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.056, + "new_tests_smoothed": 82347.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 139.673, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-30", + "total_cases": 207828.0, + "new_cases": 902.0, + "new_cases_smoothed": 637.143, + "total_deaths": 9134.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2480.523, + "new_cases_per_million": 10.766, + "new_cases_smoothed_per_million": 7.605, + "total_deaths_per_million": 109.018, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.056, + "new_tests_smoothed": 82511.0, + "new_tests_smoothed_per_thousand": 0.985, + "tests_per_case": 129.502, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-31", + "total_cases": 208698.0, + "new_cases": 870.0, + "new_cases_smoothed": 645.0, + "total_deaths": 9141.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2490.907, + "new_cases_per_million": 10.384, + "new_cases_smoothed_per_million": 7.698, + "total_deaths_per_million": 109.102, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.051, + "new_tests_smoothed": 82676.0, + "new_tests_smoothed_per_thousand": 0.987, + "tests_per_case": 128.18, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-01", + "total_cases": 209653.0, + "new_cases": 955.0, + "new_cases_smoothed": 669.857, + "total_deaths": 9141.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2502.305, + "new_cases_per_million": 11.398, + "new_cases_smoothed_per_million": 7.995, + "total_deaths_per_million": 109.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "new_tests_smoothed": 82841.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 123.67, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-02", + "total_cases": 209893.0, + "new_cases": 240.0, + "new_cases_smoothed": 660.571, + "total_deaths": 9141.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2505.17, + "new_cases_per_million": 2.865, + "new_cases_smoothed_per_million": 7.884, + "total_deaths_per_million": 109.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "total_tests": 8602237.0, + "total_tests_per_thousand": 102.672, + "new_tests_smoothed": 83005.0, + "new_tests_smoothed_per_thousand": 0.991, + "tests_per_case": 125.656, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-03", + "total_cases": 210402.0, + "new_cases": 509.0, + "new_cases_smoothed": 684.714, + "total_deaths": 9148.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2511.245, + "new_cases_per_million": 6.075, + "new_cases_smoothed_per_million": 8.172, + "total_deaths_per_million": 109.186, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.051, + "new_tests_smoothed": 86127.0, + "new_tests_smoothed_per_thousand": 1.028, + "tests_per_case": 125.785, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-04", + "total_cases": 211281.0, + "new_cases": 879.0, + "new_cases_smoothed": 719.857, + "total_deaths": 9156.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2521.736, + "new_cases_per_million": 10.491, + "new_cases_smoothed_per_million": 8.592, + "total_deaths_per_million": 109.281, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 89248.0, + "new_tests_smoothed_per_thousand": 1.065, + "tests_per_case": 123.98, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-05", + "total_cases": 212022.0, + "new_cases": 741.0, + "new_cases_smoothed": 728.0, + "total_deaths": 9168.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2530.58, + "new_cases_per_million": 8.844, + "new_cases_smoothed_per_million": 8.689, + "total_deaths_per_million": 109.424, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.068, + "new_tests_smoothed": 92370.0, + "new_tests_smoothed_per_thousand": 1.102, + "tests_per_case": 126.882, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-06", + "total_cases": 213762.0, + "new_cases": 1740.0, + "new_cases_smoothed": 847.714, + "total_deaths": 9175.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 2551.348, + "new_cases_per_million": 20.768, + "new_cases_smoothed_per_million": 10.118, + "total_deaths_per_million": 109.508, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 95491.0, + "new_tests_smoothed_per_thousand": 1.14, + "tests_per_case": 112.645, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-08-07", + "total_cases": 214926.0, + "new_cases": 1164.0, + "new_cases_smoothed": 889.714, + "total_deaths": 9183.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2565.241, + "new_cases_per_million": 13.893, + "new_cases_smoothed_per_million": 10.619, + "total_deaths_per_million": 109.603, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.072, + "new_tests_smoothed": 98613.0, + "new_tests_smoothed_per_thousand": 1.177, + "tests_per_case": 110.837, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-08", + "total_cases": 215921.0, + "new_cases": 995.0, + "new_cases_smoothed": 895.429, + "total_deaths": 9195.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2577.117, + "new_cases_per_million": 11.876, + "new_cases_smoothed_per_million": 10.687, + "total_deaths_per_million": 109.747, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.092, + "new_tests_smoothed": 101734.0, + "new_tests_smoothed_per_thousand": 1.214, + "tests_per_case": 113.615, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-09", + "total_cases": 216625.0, + "new_cases": 704.0, + "new_cases_smoothed": 961.714, + "total_deaths": 9196.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 2585.519, + "new_cases_per_million": 8.403, + "new_cases_smoothed_per_million": 11.479, + "total_deaths_per_million": 109.758, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.094, + "total_tests": 9336227.0, + "total_tests_per_thousand": 111.432, + "new_tests_smoothed": 104856.0, + "new_tests_smoothed_per_thousand": 1.252, + "tests_per_case": 109.03, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-10", + "total_cases": 216942.0, + "new_cases": 317.0, + "new_cases_smoothed": 934.286, + "total_deaths": 9197.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2589.303, + "new_cases_per_million": 3.784, + "new_cases_smoothed_per_million": 11.151, + "total_deaths_per_million": 109.77, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.084, + "new_tests_smoothed": 108080.0, + "new_tests_smoothed_per_thousand": 1.29, + "tests_per_case": 115.682, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-11", + "total_cases": 218021.0, + "new_cases": 1079.0, + "new_cases_smoothed": 962.857, + "total_deaths": 9201.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 2602.181, + "new_cases_per_million": 12.878, + "new_cases_smoothed_per_million": 11.492, + "total_deaths_per_million": 109.818, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.077, + "new_tests_smoothed": 111305.0, + "new_tests_smoothed_per_thousand": 1.328, + "tests_per_case": 115.59899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-12", + "total_cases": 219203.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1025.857, + "total_deaths": 9207.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2616.289, + "new_cases_per_million": 14.108, + "new_cases_smoothed_per_million": 12.244, + "total_deaths_per_million": 109.89, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.066, + "new_tests_smoothed": 114529.0, + "new_tests_smoothed_per_thousand": 1.367, + "tests_per_case": 111.64200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-13", + "total_cases": 220724.0, + "new_cases": 1521.0, + "new_cases_smoothed": 994.571, + "total_deaths": 9211.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2634.443, + "new_cases_per_million": 18.154, + "new_cases_smoothed_per_million": 11.871, + "total_deaths_per_million": 109.938, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.061, + "new_tests_smoothed": 117754.0, + "new_tests_smoothed_per_thousand": 1.405, + "tests_per_case": 118.397, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-14", + "total_cases": 222176.0, + "new_cases": 1452.0, + "new_cases_smoothed": 1035.714, + "total_deaths": 9225.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2651.773, + "new_cases_per_million": 17.33, + "new_cases_smoothed_per_million": 12.362, + "total_deaths_per_million": 110.105, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.072, + "new_tests_smoothed": 120978.0, + "new_tests_smoothed_per_thousand": 1.444, + "tests_per_case": 116.806, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-15", + "total_cases": 223515.0, + "new_cases": 1339.0, + "new_cases_smoothed": 1084.857, + "total_deaths": 9231.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2667.755, + "new_cases_per_million": 15.982, + "new_cases_smoothed_per_million": 12.948, + "total_deaths_per_million": 110.176, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.061, + "new_tests_smoothed": 124202.0, + "new_tests_smoothed_per_thousand": 1.482, + "tests_per_case": 114.48700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-16", + "total_cases": 224233.0, + "new_cases": 718.0, + "new_cases_smoothed": 1086.857, + "total_deaths": 9231.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2676.324, + "new_cases_per_million": 8.57, + "new_cases_smoothed_per_million": 12.972, + "total_deaths_per_million": 110.176, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "total_tests": 10228215.0, + "total_tests_per_thousand": 122.078, + "new_tests_smoothed": 127427.0, + "new_tests_smoothed_per_thousand": 1.521, + "tests_per_case": 117.244, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-17", + "total_cases": 224714.0, + "new_cases": 481.0, + "new_cases_smoothed": 1110.286, + "total_deaths": 9232.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2682.065, + "new_cases_per_million": 5.741, + "new_cases_smoothed_per_million": 13.252, + "total_deaths_per_million": 110.188, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 130723.0, + "new_tests_smoothed_per_thousand": 1.56, + "tests_per_case": 117.738, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-18", + "total_cases": 226145.0, + "new_cases": 1431.0, + "new_cases_smoothed": 1160.571, + "total_deaths": 9232.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2699.145, + "new_cases_per_million": 17.08, + "new_cases_smoothed_per_million": 13.852, + "total_deaths_per_million": 110.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests_smoothed": 134020.0, + "new_tests_smoothed_per_thousand": 1.6, + "tests_per_case": 115.478, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-19", + "total_cases": 226914.0, + "new_cases": 769.0, + "new_cases_smoothed": 1101.571, + "total_deaths": 9243.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2708.323, + "new_cases_per_million": 9.178, + "new_cases_smoothed_per_million": 13.148, + "total_deaths_per_million": 110.319, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.061, + "new_tests_smoothed": 137317.0, + "new_tests_smoothed_per_thousand": 1.639, + "tests_per_case": 124.656, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-20", + "total_cases": 228621.0, + "new_cases": 1707.0, + "new_cases_smoothed": 1128.143, + "total_deaths": 9253.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2728.697, + "new_cases_per_million": 20.374, + "new_cases_smoothed_per_million": 13.465, + "total_deaths_per_million": 110.439, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.072, + "new_tests_smoothed": 140613.0, + "new_tests_smoothed_per_thousand": 1.678, + "tests_per_case": 124.641, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-21", + "total_cases": 230948.0, + "new_cases": 2327.0, + "new_cases_smoothed": 1253.143, + "total_deaths": 9260.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2756.471, + "new_cases_per_million": 27.774, + "new_cases_smoothed_per_million": 14.957, + "total_deaths_per_million": 110.522, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.06, + "new_tests_smoothed": 143910.0, + "new_tests_smoothed_per_thousand": 1.718, + "tests_per_case": 114.839, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-22", + "total_cases": 232082.0, + "new_cases": 1134.0, + "new_cases_smoothed": 1223.857, + "total_deaths": 9267.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2770.006, + "new_cases_per_million": 13.535, + "new_cases_smoothed_per_million": 14.607, + "total_deaths_per_million": 110.606, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.061, + "new_tests_smoothed": 147206.0, + "new_tests_smoothed_per_thousand": 1.757, + "tests_per_case": 120.28, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-23", + "total_cases": 232864.0, + "new_cases": 782.0, + "new_cases_smoothed": 1233.0, + "total_deaths": 9269.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2779.339, + "new_cases_per_million": 9.334, + "new_cases_smoothed_per_million": 14.716, + "total_deaths_per_million": 110.63, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.065, + "total_tests": 11281736.0, + "total_tests_per_thousand": 134.653, + "new_tests_smoothed": 150503.0, + "new_tests_smoothed_per_thousand": 1.796, + "tests_per_case": 122.06200000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 56.94 + }, + { + "date": "2020-08-24", + "total_cases": 233575.0, + "new_cases": 711.0, + "new_cases_smoothed": 1265.857, + "total_deaths": 9272.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2787.825, + "new_cases_per_million": 8.486, + "new_cases_smoothed_per_million": 15.109, + "total_deaths_per_million": 110.666, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.068, + "new_tests_smoothed": 151478.0, + "new_tests_smoothed_per_thousand": 1.808, + "tests_per_case": 119.664, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-25", + "total_cases": 234853.0, + "new_cases": 1278.0, + "new_cases_smoothed": 1244.0, + "total_deaths": 9277.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 2803.079, + "new_cases_per_million": 15.254, + "new_cases_smoothed_per_million": 14.848, + "total_deaths_per_million": 110.725, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.077, + "new_tests_smoothed": 152453.0, + "new_tests_smoothed_per_thousand": 1.82, + "tests_per_case": 122.551, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-26", + "total_cases": 236429.0, + "new_cases": 1576.0, + "new_cases_smoothed": 1359.286, + "total_deaths": 9280.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 2821.889, + "new_cases_per_million": 18.81, + "new_cases_smoothed_per_million": 16.224, + "total_deaths_per_million": 110.761, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.063, + "new_tests_smoothed": 153428.0, + "new_tests_smoothed_per_thousand": 1.831, + "tests_per_case": 112.874, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-27", + "total_cases": 237936.0, + "new_cases": 1507.0, + "new_cases_smoothed": 1330.714, + "total_deaths": 9285.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2839.876, + "new_cases_per_million": 17.987, + "new_cases_smoothed_per_million": 15.883, + "total_deaths_per_million": 110.821, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 154403.0, + "new_tests_smoothed_per_thousand": 1.843, + "tests_per_case": 116.03, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-28", + "total_cases": 239507.0, + "new_cases": 1571.0, + "new_cases_smoothed": 1222.714, + "total_deaths": 9288.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2858.626, + "new_cases_per_million": 18.751, + "new_cases_smoothed_per_million": 14.594, + "total_deaths_per_million": 110.857, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.048, + "new_tests_smoothed": 155378.0, + "new_tests_smoothed_per_thousand": 1.855, + "tests_per_case": 127.07600000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-29", + "total_cases": 240986.0, + "new_cases": 1479.0, + "new_cases_smoothed": 1272.0, + "total_deaths": 9289.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2876.279, + "new_cases_per_million": 17.653, + "new_cases_smoothed_per_million": 15.182, + "total_deaths_per_million": 110.868, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.038, + "new_tests_smoothed": 156353.0, + "new_tests_smoothed_per_thousand": 1.866, + "tests_per_case": 122.919, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-30", + "total_cases": 241771.0, + "new_cases": 785.0, + "new_cases_smoothed": 1272.429, + "total_deaths": 9295.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2885.648, + "new_cases_per_million": 9.369, + "new_cases_smoothed_per_million": 15.187, + "total_deaths_per_million": 110.94, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.044, + "total_tests": 12383035.0, + "total_tests_per_thousand": 147.797, + "new_tests_smoothed": 157328.0, + "new_tests_smoothed_per_thousand": 1.878, + "tests_per_case": 123.64399999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-31", + "total_cases": 242381.0, + "new_cases": 610.0, + "new_cases_smoothed": 1258.0, + "total_deaths": 9298.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2892.929, + "new_cases_per_million": 7.281, + "new_cases_smoothed_per_million": 15.015, + "total_deaths_per_million": 110.976, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 59.72 + }, + { + "date": "2020-09-01", + "total_cases": 243599.0, + "new_cases": 1218.0, + "new_cases_smoothed": 1249.429, + "total_deaths": 9302.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2907.466, + "new_cases_per_million": 14.537, + "new_cases_smoothed_per_million": 14.913, + "total_deaths_per_million": 111.024, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 59.72 + }, + { + "date": "2020-09-02", + "total_cases": 244855.0, + "new_cases": 1256.0, + "new_cases_smoothed": 1203.714, + "total_deaths": 9313.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2922.457, + "new_cases_per_million": 14.991, + "new_cases_smoothed_per_million": 14.367, + "total_deaths_per_million": 111.155, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 59.72 + }, + { + "date": "2020-09-03", + "total_cases": 246116.0, + "new_cases": 1261.0, + "new_cases_smoothed": 1168.571, + "total_deaths": 9319.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2937.508, + "new_cases_per_million": 15.051, + "new_cases_smoothed_per_million": 13.947, + "total_deaths_per_million": 111.227, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.058 + }, + { + "date": "2020-09-04", + "total_cases": 246948.0, + "new_cases": 832.0, + "new_cases_smoothed": 1063.0, + "total_deaths": 9319.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2947.438, + "new_cases_per_million": 9.93, + "new_cases_smoothed_per_million": 12.687, + "total_deaths_per_million": 111.227, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053 + }, + { + "date": "2020-09-05", + "total_cases": 248997.0, + "new_cases": 2049.0, + "new_cases_smoothed": 1144.429, + "total_deaths": 9324.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2971.894, + "new_cases_per_million": 24.456, + "new_cases_smoothed_per_million": 13.659, + "total_deaths_per_million": 111.286, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.06 + } + ] + }, + "GHA": { + "continent": "Africa", + "location": "Ghana", + "population": 31072945.0, + "population_density": 126.719, + "median_age": 21.1, + "aged_65_older": 3.385, + "aged_70_older": 1.948, + "gdp_per_capita": 4227.63, + "extreme_poverty": 12.0, + "cardiovasc_death_rate": 298.245, + "diabetes_prevalence": 4.97, + "female_smokers": 0.3, + "male_smokers": 7.7, + "handwashing_facilities": 41.047, + "hospital_beds_per_thousand": 0.9, + "life_expectancy": 64.07, + "data": [ + { + "date": "2020-03-13", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.064, + "new_cases_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.064, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-16", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.064, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-17", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.193, + "new_cases_per_million": 0.129, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 143.0, + "total_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-18", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.193, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-19", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.225, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 11.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.354, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 16.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.515, + "new_cases_per_million": 0.161, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 21.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.676, + "new_cases_per_million": 0.161, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "total_tests": 315.0, + "total_tests_per_thousand": 0.01, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-23", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.772, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 206.0, + "total_tests": 521.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-24", + "total_cases": 27.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.869, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 111.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 37.0, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 53.0, + "new_cases": 26.0, + "new_cases_smoothed": 6.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.706, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 24.276999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 68.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.188, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.097, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 215.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 24.671999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 132.0, + "new_cases": 64.0, + "new_cases_smoothed": 17.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.248, + "new_cases_per_million": 2.06, + "new_cases_smoothed_per_million": 0.556, + "total_deaths_per_million": 0.097, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 268.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 15.504000000000001, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-28", + "total_cases": 137.0, + "new_cases": 5.0, + "new_cases_smoothed": 17.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.409, + "new_cases_per_million": 0.161, + "new_cases_smoothed_per_million": 0.556, + "total_deaths_per_million": 0.097, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "total_tests": 2519.0, + "total_tests_per_thousand": 0.081, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 18.512, + "positive_rate": 0.054000000000000006, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-29", + "total_cases": 141.0, + "new_cases": 4.0, + "new_cases_smoothed": 17.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.538, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.552, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 26.775, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-30", + "total_cases": 152.0, + "new_cases": 11.0, + "new_cases_smoothed": 18.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.892, + "new_cases_per_million": 0.354, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 573.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 31.336, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-03-31", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.575, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 660.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 36.96, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-01", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 52.818000000000005, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-02", + "total_cases": 195.0, + "new_cases": 43.0, + "new_cases_smoothed": 18.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.276, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 0.584, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 834.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 45.968999999999994, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-03", + "total_cases": 204.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.565, + "new_cases_per_million": 0.29, + "new_cases_smoothed_per_million": 0.331, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 921.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 89.542, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-04", + "total_cases": 205.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.597, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 103.765, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-05", + "total_cases": 214.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.887, + "new_cases_per_million": 0.29, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 96.65799999999999, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-06", + "total_cases": 214.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.285, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 113.806, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-07", + "total_cases": 287.0, + "new_cases": 73.0, + "new_cases_smoothed": 19.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.236, + "new_cases_per_million": 2.349, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 52.266999999999996, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-08", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 0.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 52.266999999999996, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-09", + "total_cases": 313.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.073, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 0.543, + "total_deaths_per_million": 0.193, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "total_tests": 14611.0, + "total_tests_per_thousand": 0.47, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 59.797, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-10", + "total_cases": 378.0, + "new_cases": 65.0, + "new_cases_smoothed": 24.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.165, + "new_cases_per_million": 2.092, + "new_cases_smoothed_per_million": 0.8, + "total_deaths_per_million": 0.193, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 12735.0, + "total_tests": 27346.0, + "total_tests_per_thousand": 0.88, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 2683.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 107.93700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-11", + "total_cases": 378.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.165, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 0.193, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 10608.0, + "total_tests": 37954.0, + "total_tests_per_thousand": 1.221, + "new_tests_per_thousand": 0.341, + "new_tests_smoothed": 4054.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 164.035, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-12", + "total_cases": 408.0, + "new_cases": 30.0, + "new_cases_smoothed": 27.714, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13.13, + "new_cases_per_million": 0.965, + "new_cases_smoothed_per_million": 0.892, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 4518.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 163.02100000000002, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-13", + "total_cases": 566.0, + "new_cases": 158.0, + "new_cases_smoothed": 50.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.215, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 4982.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 99.074, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-14", + "total_cases": 566.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.283, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "total_tests": 50719.0, + "total_tests_per_thousand": 1.632, + "new_tests_smoothed": 5446.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 136.638, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-15", + "total_cases": 636.0, + "new_cases": 70.0, + "new_cases_smoothed": 49.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 20.468, + "new_cases_per_million": 2.253, + "new_cases_smoothed_per_million": 1.605, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 6281.0, + "total_tests": 57000.0, + "total_tests_per_thousand": 1.834, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 6200.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 124.355, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-16", + "total_cases": 641.0, + "new_cases": 5.0, + "new_cases_smoothed": 46.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.629, + "new_cases_per_million": 0.161, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 6242.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 133.213, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-17", + "total_cases": 641.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.629, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.209, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 4609.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 122.67299999999999, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-18", + "total_cases": 641.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.629, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.209, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 60916.0, + "total_tests_per_thousand": 1.96, + "new_tests_smoothed": 3280.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 87.3, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 834.0, + "new_cases": 193.0, + "new_cases_smoothed": 60.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.84, + "new_cases_per_million": 6.211, + "new_cases_smoothed_per_million": 1.959, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 7675.0, + "total_tests": 68591.0, + "total_tests_per_thousand": 2.207, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 3769.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_per_case": 61.931999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-20", + "total_cases": 1042.0, + "new_cases": 208.0, + "new_cases_smoothed": 68.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.534, + "new_cases_per_million": 6.694, + "new_cases_smoothed_per_million": 2.188, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 4094.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 60.206, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-21", + "total_cases": 1042.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.188, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 4420.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 65.0, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-22", + "total_cases": 1042.0, + "new_cases": 0.0, + "new_cases_smoothed": 58.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.867, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "total_tests": 88188.0, + "total_tests_per_thousand": 2.838, + "new_tests_smoothed": 4455.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 76.81, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-23", + "total_cases": 1154.0, + "new_cases": 112.0, + "new_cases_smoothed": 73.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.138, + "new_cases_per_million": 3.604, + "new_cases_smoothed_per_million": 2.359, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 4861.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 66.329, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-24", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 73.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.359, + "total_deaths_per_million": 0.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 5267.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 71.869, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-25", + "total_cases": 1279.0, + "new_cases": 125.0, + "new_cases_smoothed": 91.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 41.161, + "new_cases_per_million": 4.023, + "new_cases_smoothed_per_million": 2.933, + "total_deaths_per_million": 0.322, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 100622.0, + "total_tests_per_thousand": 3.238, + "new_tests_smoothed": 5672.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 62.232, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-26", + "total_cases": 1279.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.161, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.046, + "total_deaths_per_million": 0.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 4966.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 78.117, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-27", + "total_cases": 1550.0, + "new_cases": 271.0, + "new_cases_smoothed": 72.571, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.883, + "new_cases_per_million": 8.721, + "new_cases_smoothed_per_million": 2.336, + "total_deaths_per_million": 0.354, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 106090.0, + "total_tests_per_thousand": 3.414, + "new_tests_smoothed": 4424.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 60.961000000000006, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-28", + "total_cases": 1550.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.336, + "total_deaths_per_million": 0.354, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 7407.0, + "total_tests": 113497.0, + "total_tests_per_thousand": 3.653, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 4549.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_per_case": 62.683, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-29", + "total_cases": 1671.0, + "new_cases": 121.0, + "new_cases_smoothed": 89.857, + "total_deaths": 16.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 53.777, + "new_cases_per_million": 3.894, + "new_cases_smoothed_per_million": 2.892, + "total_deaths_per_million": 0.515, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 3785.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 42.122, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-04-30", + "total_cases": 1671.0, + "new_cases": 0.0, + "new_cases_smoothed": 73.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 53.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.377, + "total_deaths_per_million": 0.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 3362.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 45.52, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-01", + "total_cases": 2074.0, + "new_cases": 403.0, + "new_cases_smoothed": 131.429, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 66.746, + "new_cases_per_million": 12.969, + "new_cases_smoothed_per_million": 4.23, + "total_deaths_per_million": 0.547, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.037, + "total_tests": 117049.0, + "total_tests_per_thousand": 3.767, + "new_tests_smoothed": 2939.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 22.362, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-02", + "total_cases": 2074.0, + "new_cases": 0.0, + "new_cases_smoothed": 113.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 66.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.655, + "total_deaths_per_million": 0.547, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 12412.0, + "total_tests": 129461.0, + "total_tests_per_thousand": 4.166, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 4120.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 36.277, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-03", + "total_cases": 2169.0, + "new_cases": 95.0, + "new_cases_smoothed": 127.143, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 69.803, + "new_cases_per_million": 3.057, + "new_cases_smoothed_per_million": 4.092, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 4189.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 32.946999999999996, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-04", + "total_cases": 2169.0, + "new_cases": 0.0, + "new_cases_smoothed": 88.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 69.803, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.846, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 135902.0, + "total_tests_per_thousand": 4.374, + "new_tests_smoothed": 4259.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 48.163000000000004, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-05", + "total_cases": 2719.0, + "new_cases": 550.0, + "new_cases_smoothed": 167.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 87.504, + "new_cases_per_million": 17.7, + "new_cases_smoothed_per_million": 5.374, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 3870.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 23.174, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-06", + "total_cases": 2719.0, + "new_cases": 0.0, + "new_cases_smoothed": 149.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.818, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 4369.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 29.182, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-07", + "total_cases": 3091.0, + "new_cases": 372.0, + "new_cases_smoothed": 202.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 99.476, + "new_cases_per_million": 11.972, + "new_cases_smoothed_per_million": 6.528, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 149948.0, + "total_tests_per_thousand": 4.826, + "new_tests_smoothed": 4869.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 24.002, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-08", + "total_cases": 3091.0, + "new_cases": 0.0, + "new_cases_smoothed": 145.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.676, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 5253.0, + "total_tests": 155201.0, + "total_tests_per_thousand": 4.995, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 5450.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 37.512, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-09", + "total_cases": 4012.0, + "new_cases": 921.0, + "new_cases_smoothed": 276.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.116, + "new_cases_per_million": 29.64, + "new_cases_smoothed_per_million": 8.91, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 4056.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 14.65, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-10", + "total_cases": 4263.0, + "new_cases": 251.0, + "new_cases_smoothed": 299.143, + "total_deaths": 22.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 137.193, + "new_cases_per_million": 8.078, + "new_cases_smoothed_per_million": 9.627, + "total_deaths_per_million": 0.708, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 160501.0, + "total_tests_per_thousand": 5.165, + "new_tests_smoothed": 3974.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 13.285, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-11", + "total_cases": 4263.0, + "new_cases": 0.0, + "new_cases_smoothed": 299.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 137.193, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.627, + "total_deaths_per_million": 0.708, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 1683.0, + "total_tests": 162184.0, + "total_tests_per_thousand": 5.219, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 3755.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_per_case": 12.552999999999999, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-12", + "total_cases": 4700.0, + "new_cases": 437.0, + "new_cases_smoothed": 283.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 151.257, + "new_cases_per_million": 14.064, + "new_cases_smoothed_per_million": 9.108, + "total_deaths_per_million": 0.708, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3249.0, + "total_tests": 165433.0, + "total_tests_per_thousand": 5.324, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3550.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 12.544, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-13", + "total_cases": 5127.0, + "new_cases": 427.0, + "new_cases_smoothed": 344.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 164.999, + "new_cases_per_million": 13.742, + "new_cases_smoothed_per_million": 11.071, + "total_deaths_per_million": 0.708, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3252.0, + "total_tests": 168685.0, + "total_tests_per_thousand": 5.429, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3346.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 9.727, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-14", + "total_cases": 5408.0, + "new_cases": 281.0, + "new_cases_smoothed": 331.0, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 174.042, + "new_cases_per_million": 9.043, + "new_cases_smoothed_per_million": 10.652, + "total_deaths_per_million": 0.772, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 3938.0, + "total_tests": 172623.0, + "total_tests_per_thousand": 5.555, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 3239.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 9.785, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-15", + "total_cases": 5530.0, + "new_cases": 122.0, + "new_cases_smoothed": 348.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 177.968, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 11.213, + "total_deaths_per_million": 0.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 1454.0, + "total_tests": 174077.0, + "total_tests_per_thousand": 5.602, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 2697.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 7.74, + "positive_rate": 0.129, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-16", + "total_cases": 5638.0, + "new_cases": 108.0, + "new_cases_smoothed": 232.286, + "total_deaths": 28.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 181.444, + "new_cases_per_million": 3.476, + "new_cases_smoothed_per_million": 7.475, + "total_deaths_per_million": 0.901, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.046, + "new_tests_smoothed": 2782.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 11.977, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-17", + "total_cases": 5735.0, + "new_cases": 97.0, + "new_cases_smoothed": 210.286, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 184.566, + "new_cases_per_million": 3.122, + "new_cases_smoothed_per_million": 6.767, + "total_deaths_per_million": 0.933, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 180567.0, + "total_tests_per_thousand": 5.811, + "new_tests_smoothed": 2867.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 13.634, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-18", + "total_cases": 5735.0, + "new_cases": 0.0, + "new_cases_smoothed": 210.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 184.566, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.767, + "total_deaths_per_million": 0.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 3776.0, + "total_tests": 184343.0, + "total_tests_per_thousand": 5.933, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 3166.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 15.056, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-19", + "total_cases": 5735.0, + "new_cases": 0.0, + "new_cases_smoothed": 147.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 184.566, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.758, + "total_deaths_per_million": 0.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 3586.0, + "total_tests": 187929.0, + "total_tests_per_thousand": 6.048, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 3214.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 21.737, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-20", + "total_cases": 6096.0, + "new_cases": 361.0, + "new_cases_smoothed": 138.429, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 196.184, + "new_cases_per_million": 11.618, + "new_cases_smoothed_per_million": 4.455, + "total_deaths_per_million": 0.998, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 4265.0, + "total_tests": 192194.0, + "total_tests_per_thousand": 6.185, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 3358.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 24.258000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-21", + "total_cases": 6269.0, + "new_cases": 173.0, + "new_cases_smoothed": 123.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 201.751, + "new_cases_per_million": 5.568, + "new_cases_smoothed_per_million": 3.958, + "total_deaths_per_million": 0.998, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1511.0, + "total_tests": 193705.0, + "total_tests_per_thousand": 6.234, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 3012.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 24.488000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-22", + "total_cases": 6486.0, + "new_cases": 217.0, + "new_cases_smoothed": 136.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 208.735, + "new_cases_per_million": 6.984, + "new_cases_smoothed_per_million": 4.395, + "total_deaths_per_million": 0.998, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1058.0, + "total_tests": 194763.0, + "total_tests_per_thousand": 6.268, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 2955.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 21.636999999999997, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-23", + "total_cases": 6617.0, + "new_cases": 131.0, + "new_cases_smoothed": 139.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 212.951, + "new_cases_per_million": 4.216, + "new_cases_smoothed_per_million": 4.501, + "total_deaths_per_million": 0.998, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3412.0, + "total_tests": 198175.0, + "total_tests_per_thousand": 6.378, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 2979.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 21.3, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-24", + "total_cases": 6617.0, + "new_cases": 0.0, + "new_cases_smoothed": 126.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 212.951, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.055, + "total_deaths_per_million": 0.998, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 3955.0, + "total_tests": 202130.0, + "total_tests_per_thousand": 6.505, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 3080.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 24.444000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-25", + "total_cases": 6683.0, + "new_cases": 66.0, + "new_cases_smoothed": 135.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 215.075, + "new_cases_per_million": 2.124, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 1.03, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 1253.0, + "total_tests": 203383.0, + "total_tests_per_thousand": 6.545, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 2720.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 20.084, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-26", + "total_cases": 6808.0, + "new_cases": 125.0, + "new_cases_smoothed": 153.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 219.097, + "new_cases_per_million": 4.023, + "new_cases_smoothed_per_million": 4.933, + "total_deaths_per_million": 1.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2507.0, + "total_tests": 205890.0, + "total_tests_per_thousand": 6.626, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 2566.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 16.74, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-27", + "total_cases": 7117.0, + "new_cases": 309.0, + "new_cases_smoothed": 145.857, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 229.042, + "new_cases_per_million": 9.944, + "new_cases_smoothed_per_million": 4.694, + "total_deaths_per_million": 1.094, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2438.0, + "total_tests": 208328.0, + "total_tests_per_thousand": 6.704, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2305.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 15.802999999999999, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-28", + "total_cases": 7303.0, + "new_cases": 186.0, + "new_cases_smoothed": 147.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 235.028, + "new_cases_per_million": 5.986, + "new_cases_smoothed_per_million": 4.754, + "total_deaths_per_million": 1.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3294.0, + "total_tests": 211622.0, + "total_tests_per_thousand": 6.81, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 2560.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 17.331, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-29", + "total_cases": 7303.0, + "new_cases": 0.0, + "new_cases_smoothed": 116.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 235.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.756, + "total_deaths_per_million": 1.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3334.0, + "total_tests": 214956.0, + "total_tests_per_thousand": 6.918, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 2885.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 24.718000000000004, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-30", + "total_cases": 7616.0, + "new_cases": 313.0, + "new_cases_smoothed": 142.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 245.101, + "new_cases_per_million": 10.073, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 1.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3469.0, + "total_tests": 218425.0, + "total_tests_per_thousand": 7.029, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 2893.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 20.271, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-31", + "total_cases": 7768.0, + "new_cases": 152.0, + "new_cases_smoothed": 164.429, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 249.992, + "new_cases_per_million": 4.892, + "new_cases_smoothed_per_million": 5.292, + "total_deaths_per_million": 1.126, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 1400.0, + "total_tests": 219825.0, + "total_tests_per_thousand": 7.074, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 2528.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 15.374, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-01", + "total_cases": 8070.0, + "new_cases": 302.0, + "new_cases_smoothed": 198.143, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 259.711, + "new_cases_per_million": 9.719, + "new_cases_smoothed_per_million": 6.377, + "total_deaths_per_million": 1.159, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 328.0, + "total_tests": 220153.0, + "total_tests_per_thousand": 7.085, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 2396.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 12.092, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-02", + "total_cases": 8070.0, + "new_cases": 0.0, + "new_cases_smoothed": 180.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 259.711, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.802, + "total_deaths_per_million": 1.159, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 2912.0, + "total_tests": 223065.0, + "total_tests_per_thousand": 7.179, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 2454.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 13.612, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-03", + "total_cases": 8297.0, + "new_cases": 227.0, + "new_cases_smoothed": 168.571, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 267.017, + "new_cases_per_million": 7.305, + "new_cases_smoothed_per_million": 5.425, + "total_deaths_per_million": 1.223, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3676.0, + "total_tests": 226741.0, + "total_tests_per_thousand": 7.297, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2630.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 15.602, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-04", + "total_cases": 8548.0, + "new_cases": 251.0, + "new_cases_smoothed": 177.857, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 275.095, + "new_cases_per_million": 8.078, + "new_cases_smoothed_per_million": 5.724, + "total_deaths_per_million": 1.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 2352.0, + "total_tests": 229093.0, + "total_tests_per_thousand": 7.373, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 2496.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 14.034, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-05", + "total_cases": 8885.0, + "new_cases": 337.0, + "new_cases_smoothed": 226.0, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 285.94, + "new_cases_per_million": 10.845, + "new_cases_smoothed_per_million": 7.273, + "total_deaths_per_million": 1.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 4641.0, + "total_tests": 233734.0, + "total_tests_per_thousand": 7.522, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 2683.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 11.872, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-06", + "total_cases": 9168.0, + "new_cases": 283.0, + "new_cases_smoothed": 221.714, + "total_deaths": 42.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 295.048, + "new_cases_per_million": 9.108, + "new_cases_smoothed_per_million": 7.135, + "total_deaths_per_million": 1.352, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 1709.0, + "total_tests": 235443.0, + "total_tests_per_thousand": 7.577, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 2431.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 10.965, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-07", + "total_cases": 9462.0, + "new_cases": 294.0, + "new_cases_smoothed": 242.0, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.509, + "new_cases_per_million": 9.462, + "new_cases_smoothed_per_million": 7.788, + "total_deaths_per_million": 1.416, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 3952.0, + "total_tests": 239395.0, + "total_tests_per_thousand": 7.704, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 2796.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 11.554, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-08", + "total_cases": 9638.0, + "new_cases": 176.0, + "new_cases_smoothed": 224.0, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 310.173, + "new_cases_per_million": 5.664, + "new_cases_smoothed_per_million": 7.209, + "total_deaths_per_million": 1.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 809.0, + "total_tests": 240204.0, + "total_tests_per_thousand": 7.73, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 2864.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 12.786, + "positive_rate": 0.078, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-09", + "total_cases": 9910.0, + "new_cases": 272.0, + "new_cases_smoothed": 262.857, + "total_deaths": 48.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 318.927, + "new_cases_per_million": 8.754, + "new_cases_smoothed_per_million": 8.459, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 2014.0, + "total_tests": 242218.0, + "total_tests_per_thousand": 7.795, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 2736.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 10.409, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-10", + "total_cases": 10201.0, + "new_cases": 291.0, + "new_cases_smoothed": 272.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 328.292, + "new_cases_per_million": 9.365, + "new_cases_smoothed_per_million": 8.754, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3230.0, + "total_tests": 245448.0, + "total_tests_per_thousand": 7.899, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 2672.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 9.824, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-11", + "total_cases": 10358.0, + "new_cases": 157.0, + "new_cases_smoothed": 258.571, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 333.345, + "new_cases_per_million": 5.053, + "new_cases_smoothed_per_million": 8.321, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2144.0, + "total_tests": 247592.0, + "total_tests_per_thousand": 7.968, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 2643.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 10.222000000000001, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-12", + "total_cases": 10358.0, + "new_cases": 0.0, + "new_cases_smoothed": 210.429, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 333.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.772, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3302.0, + "total_tests": 250894.0, + "total_tests_per_thousand": 8.074, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 2451.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 11.648, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-13", + "total_cases": 11118.0, + "new_cases": 760.0, + "new_cases_smoothed": 278.571, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 357.803, + "new_cases_per_million": 24.459, + "new_cases_smoothed_per_million": 8.965, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 3437.0, + "total_tests": 254331.0, + "total_tests_per_thousand": 8.185, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 2698.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 9.685, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-14", + "total_cases": 11422.0, + "new_cases": 304.0, + "new_cases_smoothed": 280.0, + "total_deaths": 51.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 367.587, + "new_cases_per_million": 9.783, + "new_cases_smoothed_per_million": 9.011, + "total_deaths_per_million": 1.641, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1640.0, + "total_tests": 255971.0, + "total_tests_per_thousand": 8.238, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2368.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 8.457, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-15", + "total_cases": 11964.0, + "new_cases": 542.0, + "new_cases_smoothed": 332.286, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 385.029, + "new_cases_per_million": 17.443, + "new_cases_smoothed_per_million": 10.694, + "total_deaths_per_million": 1.738, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2039.0, + "total_tests": 258010.0, + "total_tests_per_thousand": 8.303, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 2544.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 7.656000000000001, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-16", + "total_cases": 11964.0, + "new_cases": 0.0, + "new_cases_smoothed": 293.429, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 385.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.443, + "total_deaths_per_million": 1.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 3309.0, + "total_tests": 261319.0, + "total_tests_per_thousand": 8.41, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 2729.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 9.3, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-17", + "total_cases": 12193.0, + "new_cases": 229.0, + "new_cases_smoothed": 284.571, + "total_deaths": 58.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 392.399, + "new_cases_per_million": 7.37, + "new_cases_smoothed_per_million": 9.158, + "total_deaths_per_million": 1.867, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2406.0, + "total_tests": 263725.0, + "total_tests_per_thousand": 8.487, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 2611.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 9.175, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-18", + "total_cases": 12590.0, + "new_cases": 397.0, + "new_cases_smoothed": 318.857, + "total_deaths": 66.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 405.176, + "new_cases_per_million": 12.776, + "new_cases_smoothed_per_million": 10.262, + "total_deaths_per_million": 2.124, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 3561.0, + "total_tests": 267286.0, + "total_tests_per_thousand": 8.602, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 2813.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 8.822000000000001, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-19", + "total_cases": 12929.0, + "new_cases": 339.0, + "new_cases_smoothed": 367.286, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 416.085, + "new_cases_per_million": 10.91, + "new_cases_smoothed_per_million": 11.82, + "total_deaths_per_million": 2.124, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests_smoothed": 2557.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 6.962000000000001, + "positive_rate": 0.14400000000000002, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-20", + "total_cases": 13203.0, + "new_cases": 274.0, + "new_cases_smoothed": 297.857, + "total_deaths": 70.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 424.903, + "new_cases_per_million": 8.818, + "new_cases_smoothed_per_million": 9.586, + "total_deaths_per_million": 2.253, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.101, + "total_tests": 270300.0, + "total_tests_per_thousand": 8.699, + "new_tests_smoothed": 2281.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 7.6579999999999995, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-21", + "total_cases": 13711.0, + "new_cases": 508.0, + "new_cases_smoothed": 327.0, + "total_deaths": 85.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 441.252, + "new_cases_per_million": 16.349, + "new_cases_smoothed_per_million": 10.524, + "total_deaths_per_million": 2.735, + "new_deaths_per_million": 0.483, + "new_deaths_smoothed_per_million": 0.156, + "new_tests": 7250.0, + "total_tests": 277550.0, + "total_tests_per_thousand": 8.932, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 3083.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 9.427999999999999, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-22", + "total_cases": 14154.0, + "new_cases": 443.0, + "new_cases_smoothed": 312.857, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 455.509, + "new_cases_per_million": 14.257, + "new_cases_smoothed_per_million": 10.068, + "total_deaths_per_million": 2.735, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 2566.0, + "total_tests": 280116.0, + "total_tests_per_thousand": 9.015, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 3158.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 10.094, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-23", + "total_cases": 14154.0, + "new_cases": 0.0, + "new_cases_smoothed": 312.857, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 455.509, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.068, + "total_deaths_per_million": 2.735, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 3008.0, + "total_tests": 283124.0, + "total_tests_per_thousand": 9.112, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 3115.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 9.957, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-24", + "total_cases": 14568.0, + "new_cases": 414.0, + "new_cases_smoothed": 339.286, + "total_deaths": 95.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 468.832, + "new_cases_per_million": 13.323, + "new_cases_smoothed_per_million": 10.919, + "total_deaths_per_million": 3.057, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 3329.0, + "total_tests": 286453.0, + "total_tests_per_thousand": 9.219, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 3247.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 9.57, + "positive_rate": 0.10400000000000001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-25", + "total_cases": 15013.0, + "new_cases": 445.0, + "new_cases_smoothed": 346.143, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 483.153, + "new_cases_per_million": 14.321, + "new_cases_smoothed_per_million": 11.14, + "total_deaths_per_million": 3.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 2012.0, + "total_tests": 288465.0, + "total_tests_per_thousand": 9.283, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 3026.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 8.742, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-26", + "total_cases": 15473.0, + "new_cases": 460.0, + "new_cases_smoothed": 363.429, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 497.957, + "new_cases_per_million": 14.804, + "new_cases_smoothed_per_million": 11.696, + "total_deaths_per_million": 3.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1900.0, + "total_tests": 290365.0, + "total_tests_per_thousand": 9.345, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 3082.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 8.48, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-27", + "total_cases": 15834.0, + "new_cases": 361.0, + "new_cases_smoothed": 375.857, + "total_deaths": 103.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 509.575, + "new_cases_per_million": 11.618, + "new_cases_smoothed_per_million": 12.096, + "total_deaths_per_million": 3.315, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 4502.0, + "total_tests": 294867.0, + "total_tests_per_thousand": 9.49, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 3510.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 9.339, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-28", + "total_cases": 16431.0, + "new_cases": 597.0, + "new_cases_smoothed": 388.571, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 528.788, + "new_cases_per_million": 19.213, + "new_cases_smoothed_per_million": 12.505, + "total_deaths_per_million": 3.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 2724.0, + "total_tests": 297591.0, + "total_tests_per_thousand": 9.577, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 2863.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 7.367999999999999, + "positive_rate": 0.136, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-29", + "total_cases": 17351.0, + "new_cases": 920.0, + "new_cases_smoothed": 456.714, + "total_deaths": 112.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 558.396, + "new_cases_per_million": 29.608, + "new_cases_smoothed_per_million": 14.698, + "total_deaths_per_million": 3.604, + "new_deaths_per_million": 0.29, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 2929.0, + "total_tests": 300520.0, + "total_tests_per_thousand": 9.671, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 2915.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 6.382999999999999, + "positive_rate": 0.157, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-30", + "total_cases": 17351.0, + "new_cases": 0.0, + "new_cases_smoothed": 456.714, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 558.396, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.698, + "total_deaths_per_million": 3.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "new_tests_smoothed": 2958.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 6.477, + "positive_rate": 0.154, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-01", + "total_cases": 17741.0, + "new_cases": 390.0, + "new_cases_smoothed": 453.286, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 570.947, + "new_cases_per_million": 12.551, + "new_cases_smoothed_per_million": 14.588, + "total_deaths_per_million": 3.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "total_tests": 307133.0, + "total_tests_per_thousand": 9.884, + "new_tests_smoothed": 2954.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 6.517, + "positive_rate": 0.153, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-02", + "total_cases": 18134.0, + "new_cases": 393.0, + "new_cases_smoothed": 445.857, + "total_deaths": 117.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 583.595, + "new_cases_per_million": 12.648, + "new_cases_smoothed_per_million": 14.349, + "total_deaths_per_million": 3.765, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 3026.0, + "total_tests": 310159.0, + "total_tests_per_thousand": 9.982, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 3099.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 6.9510000000000005, + "positive_rate": 0.14400000000000002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-03", + "total_cases": 18134.0, + "new_cases": 0.0, + "new_cases_smoothed": 380.143, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 583.595, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.234, + "total_deaths_per_million": 3.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 3298.0, + "total_tests": 313457.0, + "total_tests_per_thousand": 10.088, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 3299.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 8.677999999999999, + "positive_rate": 0.115, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-04", + "total_cases": 19388.0, + "new_cases": 1254.0, + "new_cases_smoothed": 507.714, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 623.951, + "new_cases_per_million": 40.357, + "new_cases_smoothed_per_million": 16.339, + "total_deaths_per_million": 3.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 3341.0, + "total_tests": 316798.0, + "total_tests_per_thousand": 10.195, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 3133.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 6.171, + "positive_rate": 0.162, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-05", + "total_cases": 19388.0, + "new_cases": 0.0, + "new_cases_smoothed": 422.429, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 623.951, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.595, + "total_deaths_per_million": 3.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 3273.0, + "total_tests": 320071.0, + "total_tests_per_thousand": 10.301, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3211.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 7.601, + "positive_rate": 0.132, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-06", + "total_cases": 20085.0, + "new_cases": 697.0, + "new_cases_smoothed": 390.571, + "total_deaths": 122.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 646.382, + "new_cases_per_million": 22.431, + "new_cases_smoothed_per_million": 12.57, + "total_deaths_per_million": 3.926, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2839.0, + "total_tests": 322910.0, + "total_tests_per_thousand": 10.392, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 3199.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 8.191, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-07", + "total_cases": 21077.0, + "new_cases": 992.0, + "new_cases_smoothed": 532.286, + "total_deaths": 129.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 678.307, + "new_cases_per_million": 31.925, + "new_cases_smoothed_per_million": 17.13, + "total_deaths_per_million": 4.152, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 2540.0, + "total_tests": 325450.0, + "total_tests_per_thousand": 10.474, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 3089.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 5.803, + "positive_rate": 0.172, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-08", + "total_cases": 21968.0, + "new_cases": 891.0, + "new_cases_smoothed": 603.857, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 706.982, + "new_cases_per_million": 28.674, + "new_cases_smoothed_per_million": 19.434, + "total_deaths_per_million": 4.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 1559.0, + "total_tests": 327009.0, + "total_tests_per_thousand": 10.524, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2839.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 4.7010000000000005, + "positive_rate": 0.213, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-09", + "total_cases": 22822.0, + "new_cases": 854.0, + "new_cases_smoothed": 669.714, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 734.465, + "new_cases_per_million": 27.484, + "new_cases_smoothed_per_million": 21.553, + "total_deaths_per_million": 4.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 1374.0, + "total_tests": 328383.0, + "total_tests_per_thousand": 10.568, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 2603.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 3.887, + "positive_rate": 0.257, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-10", + "total_cases": 23463.0, + "new_cases": 641.0, + "new_cases_smoothed": 761.286, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 755.094, + "new_cases_per_million": 20.629, + "new_cases_smoothed_per_million": 24.5, + "total_deaths_per_million": 4.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 2983.0, + "total_tests": 331366.0, + "total_tests_per_thousand": 10.664, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 2558.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 3.36, + "positive_rate": 0.298, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-11", + "total_cases": 23834.0, + "new_cases": 371.0, + "new_cases_smoothed": 635.143, + "total_deaths": 135.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 767.034, + "new_cases_per_million": 11.94, + "new_cases_smoothed_per_million": 20.44, + "total_deaths_per_million": 4.345, + "new_deaths_per_million": 0.193, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 2735.0, + "total_tests": 334101.0, + "total_tests_per_thousand": 10.752, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 2472.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 3.892, + "positive_rate": 0.257, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-12", + "total_cases": 24248.0, + "new_cases": 414.0, + "new_cases_smoothed": 694.286, + "total_deaths": 135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 780.357, + "new_cases_per_million": 13.323, + "new_cases_smoothed_per_million": 22.344, + "total_deaths_per_million": 4.345, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 1992.0, + "total_tests": 336093.0, + "total_tests_per_thousand": 10.816, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 2289.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 3.2969999999999997, + "positive_rate": 0.303, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-13", + "total_cases": 24518.0, + "new_cases": 270.0, + "new_cases_smoothed": 633.286, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 789.047, + "new_cases_per_million": 8.689, + "new_cases_smoothed_per_million": 20.381, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 3398.0, + "total_tests": 339491.0, + "total_tests_per_thousand": 10.926, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 2369.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 3.741, + "positive_rate": 0.267, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-14", + "total_cases": 24988.0, + "new_cases": 470.0, + "new_cases_smoothed": 558.714, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 804.172, + "new_cases_per_million": 15.126, + "new_cases_smoothed_per_million": 17.981, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2428.0, + "total_tests": 341919.0, + "total_tests_per_thousand": 11.004, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2353.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 4.211, + "positive_rate": 0.237, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-15", + "total_cases": 24988.0, + "new_cases": 0.0, + "new_cases_smoothed": 431.429, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 804.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.884, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2218.0, + "total_tests": 344137.0, + "total_tests_per_thousand": 11.075, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 2447.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 5.672000000000001, + "positive_rate": 0.17600000000000002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-16", + "total_cases": 25430.0, + "new_cases": 442.0, + "new_cases_smoothed": 372.571, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 818.397, + "new_cases_per_million": 14.225, + "new_cases_smoothed_per_million": 11.99, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2853.0, + "total_tests": 346990.0, + "total_tests_per_thousand": 11.167, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 2658.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 7.1339999999999995, + "positive_rate": 0.14, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-17", + "total_cases": 26125.0, + "new_cases": 695.0, + "new_cases_smoothed": 380.286, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 840.764, + "new_cases_per_million": 22.367, + "new_cases_smoothed_per_million": 12.238, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2762.0, + "total_tests": 349752.0, + "total_tests_per_thousand": 11.256, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 2627.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 6.9079999999999995, + "positive_rate": 0.145, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-18", + "total_cases": 26572.0, + "new_cases": 447.0, + "new_cases_smoothed": 391.143, + "total_deaths": 144.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 855.149, + "new_cases_per_million": 14.386, + "new_cases_smoothed_per_million": 12.588, + "total_deaths_per_million": 4.634, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 4000.0, + "total_tests": 353752.0, + "total_tests_per_thousand": 11.385, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 2807.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 7.176, + "positive_rate": 0.139, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-19", + "total_cases": 27060.0, + "new_cases": 488.0, + "new_cases_smoothed": 401.714, + "total_deaths": 145.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 870.854, + "new_cases_per_million": 15.705, + "new_cases_smoothed_per_million": 12.928, + "total_deaths_per_million": 4.666, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3468.0, + "total_tests": 357220.0, + "total_tests_per_thousand": 11.496, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 3018.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 7.513, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-20", + "total_cases": 27667.0, + "new_cases": 607.0, + "new_cases_smoothed": 449.857, + "total_deaths": 148.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 890.389, + "new_cases_per_million": 19.535, + "new_cases_smoothed_per_million": 14.477, + "total_deaths_per_million": 4.763, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 4322.0, + "total_tests": 361542.0, + "total_tests_per_thousand": 11.635, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 3150.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 7.002000000000001, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-21", + "total_cases": 28430.0, + "new_cases": 763.0, + "new_cases_smoothed": 491.714, + "total_deaths": 153.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 914.944, + "new_cases_per_million": 24.555, + "new_cases_smoothed_per_million": 15.825, + "total_deaths_per_million": 4.924, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 3739.0, + "total_tests": 365281.0, + "total_tests_per_thousand": 11.756, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 3337.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 6.7860000000000005, + "positive_rate": 0.147, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-22", + "total_cases": 28989.0, + "new_cases": 559.0, + "new_cases_smoothed": 571.571, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 932.934, + "new_cases_per_million": 17.99, + "new_cases_smoothed_per_million": 18.395, + "total_deaths_per_million": 4.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 3899.0, + "total_tests": 369180.0, + "total_tests_per_thousand": 11.881, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 3578.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 6.26, + "positive_rate": 0.16, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-23", + "total_cases": 29672.0, + "new_cases": 683.0, + "new_cases_smoothed": 606.0, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 954.914, + "new_cases_per_million": 21.981, + "new_cases_smoothed_per_million": 19.502, + "total_deaths_per_million": 4.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 3393.0, + "total_tests": 372573.0, + "total_tests_per_thousand": 11.99, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 3655.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_per_case": 6.031000000000001, + "positive_rate": 0.166, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-24", + "total_cases": 30366.0, + "new_cases": 694.0, + "new_cases_smoothed": 605.857, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 977.249, + "new_cases_per_million": 22.335, + "new_cases_smoothed_per_million": 19.498, + "total_deaths_per_million": 4.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 2039.0, + "total_tests": 374612.0, + "total_tests_per_thousand": 12.056, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 3551.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 5.861000000000001, + "positive_rate": 0.171, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-25", + "total_cases": 31057.0, + "new_cases": 691.0, + "new_cases_smoothed": 640.714, + "total_deaths": 161.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 999.487, + "new_cases_per_million": 22.238, + "new_cases_smoothed_per_million": 20.62, + "total_deaths_per_million": 5.181, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 4123.0, + "total_tests": 378735.0, + "total_tests_per_thousand": 12.189, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 3569.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 5.57, + "positive_rate": 0.18, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-26", + "total_cases": 31851.0, + "new_cases": 794.0, + "new_cases_smoothed": 684.429, + "total_deaths": 161.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1025.04, + "new_cases_per_million": 25.553, + "new_cases_smoothed_per_million": 22.027, + "total_deaths_per_million": 5.181, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 4017.0, + "total_tests": 382752.0, + "total_tests_per_thousand": 12.318, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 3647.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 5.329, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-27", + "total_cases": 32969.0, + "new_cases": 1118.0, + "new_cases_smoothed": 757.429, + "total_deaths": 168.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1061.019, + "new_cases_per_million": 35.98, + "new_cases_smoothed_per_million": 24.376, + "total_deaths_per_million": 5.407, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 4584.0, + "total_tests": 387336.0, + "total_tests_per_thousand": 12.465, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 3685.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 4.865, + "positive_rate": 0.20600000000000002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-28", + "total_cases": 33624.0, + "new_cases": 655.0, + "new_cases_smoothed": 742.0, + "total_deaths": 168.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1082.099, + "new_cases_per_million": 21.079, + "new_cases_smoothed_per_million": 23.879, + "total_deaths_per_million": 5.407, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 4042.0, + "total_tests": 391378.0, + "total_tests_per_thousand": 12.595, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 3728.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 5.024, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-29", + "total_cases": 34406.0, + "new_cases": 782.0, + "new_cases_smoothed": 773.857, + "total_deaths": 168.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1107.266, + "new_cases_per_million": 25.167, + "new_cases_smoothed_per_million": 24.905, + "total_deaths_per_million": 5.407, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests_smoothed": 3554.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 4.593, + "positive_rate": 0.218, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-30", + "total_cases": 35142.0, + "new_cases": 736.0, + "new_cases_smoothed": 781.429, + "total_deaths": 175.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1130.952, + "new_cases_per_million": 23.686, + "new_cases_smoothed_per_million": 25.148, + "total_deaths_per_million": 5.632, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.101, + "total_tests": 396731.0, + "total_tests_per_thousand": 12.768, + "new_tests_smoothed": 3451.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 4.416, + "positive_rate": 0.226, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-07-31", + "total_cases": 35142.0, + "new_cases": 0.0, + "new_cases_smoothed": 682.286, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1130.952, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.958, + "total_deaths_per_million": 5.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 2715.0, + "total_tests": 399446.0, + "total_tests_per_thousand": 12.855, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 3548.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 5.2, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-01", + "total_cases": 35501.0, + "new_cases": 359.0, + "new_cases_smoothed": 634.857, + "total_deaths": 182.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1142.505, + "new_cases_per_million": 11.553, + "new_cases_smoothed_per_million": 20.431, + "total_deaths_per_million": 5.857, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 3118.0, + "total_tests": 402564.0, + "total_tests_per_thousand": 12.955, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 3404.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 5.362, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-02", + "total_cases": 37014.0, + "new_cases": 1513.0, + "new_cases_smoothed": 737.571, + "total_deaths": 182.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1191.197, + "new_cases_per_million": 48.692, + "new_cases_smoothed_per_million": 23.737, + "total_deaths_per_million": 5.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 3253.0, + "total_tests": 405817.0, + "total_tests_per_thousand": 13.06, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3295.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 4.467, + "positive_rate": 0.22399999999999998, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-03", + "total_cases": 37014.0, + "new_cases": 0.0, + "new_cases_smoothed": 577.857, + "total_deaths": 182.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1191.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.597, + "total_deaths_per_million": 5.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 1771.0, + "total_tests": 407588.0, + "total_tests_per_thousand": 13.117, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2893.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 5.006, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-04", + "total_cases": 37812.0, + "new_cases": 798.0, + "new_cases_smoothed": 598.286, + "total_deaths": 191.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1216.879, + "new_cases_per_million": 25.682, + "new_cases_smoothed_per_million": 19.254, + "total_deaths_per_million": 6.147, + "new_deaths_per_million": 0.29, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 1785.0, + "total_tests": 409373.0, + "total_tests_per_thousand": 13.175, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2571.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 4.297, + "positive_rate": 0.233, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-05", + "total_cases": 37812.0, + "new_cases": 0.0, + "new_cases_smoothed": 486.571, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1216.879, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.659, + "total_deaths_per_million": 6.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 2166.0, + "total_tests": 411539.0, + "total_tests_per_thousand": 13.244, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 2498.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 5.1339999999999995, + "positive_rate": 0.195, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-06", + "total_cases": 39075.0, + "new_cases": 1263.0, + "new_cases_smoothed": 561.857, + "total_deaths": 199.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1257.525, + "new_cases_per_million": 40.646, + "new_cases_smoothed_per_million": 18.082, + "total_deaths_per_million": 6.404, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 2296.0, + "total_tests": 413835.0, + "total_tests_per_thousand": 13.318, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 2443.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 4.348, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-07", + "total_cases": 40097.0, + "new_cases": 1022.0, + "new_cases_smoothed": 707.857, + "total_deaths": 206.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1290.415, + "new_cases_per_million": 32.89, + "new_cases_smoothed_per_million": 22.78, + "total_deaths_per_million": 6.63, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 1836.0, + "total_tests": 415671.0, + "total_tests_per_thousand": 13.377, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2318.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 3.275, + "positive_rate": 0.305, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-08", + "total_cases": 40097.0, + "new_cases": 0.0, + "new_cases_smoothed": 656.571, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1290.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.13, + "total_deaths_per_million": 6.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1317.0, + "total_tests": 416988.0, + "total_tests_per_thousand": 13.42, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 2061.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 3.139, + "positive_rate": 0.319, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-09", + "total_cases": 40533.0, + "new_cases": 436.0, + "new_cases_smoothed": 502.714, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1304.447, + "new_cases_per_million": 14.031, + "new_cases_smoothed_per_million": 16.179, + "total_deaths_per_million": 6.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1340.0, + "total_tests": 418328.0, + "total_tests_per_thousand": 13.463, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1787.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 3.555, + "positive_rate": 0.281, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-10", + "total_cases": 41003.0, + "new_cases": 470.0, + "new_cases_smoothed": 569.857, + "total_deaths": 215.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1319.572, + "new_cases_per_million": 15.126, + "new_cases_smoothed_per_million": 18.339, + "total_deaths_per_million": 6.919, + "new_deaths_per_million": 0.29, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 1262.0, + "total_tests": 419590.0, + "total_tests_per_thousand": 13.503, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 1715.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 3.01, + "positive_rate": 0.332, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-11", + "total_cases": 41212.0, + "new_cases": 209.0, + "new_cases_smoothed": 485.714, + "total_deaths": 215.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1326.298, + "new_cases_per_million": 6.726, + "new_cases_smoothed_per_million": 15.631, + "total_deaths_per_million": 6.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1998.0, + "total_tests": 421588.0, + "total_tests_per_thousand": 13.568, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1745.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 3.593, + "positive_rate": 0.278, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-12", + "total_cases": 41404.0, + "new_cases": 192.0, + "new_cases_smoothed": 513.143, + "total_deaths": 215.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1332.477, + "new_cases_per_million": 6.179, + "new_cases_smoothed_per_million": 16.514, + "total_deaths_per_million": 6.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1420.0, + "total_tests": 423008.0, + "total_tests_per_thousand": 13.613, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1638.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 3.1919999999999997, + "positive_rate": 0.313, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-13", + "total_cases": 41725.0, + "new_cases": 321.0, + "new_cases_smoothed": 378.571, + "total_deaths": 223.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1342.808, + "new_cases_per_million": 10.331, + "new_cases_smoothed_per_million": 12.183, + "total_deaths_per_million": 7.177, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1307.0, + "total_tests": 424315.0, + "total_tests_per_thousand": 13.655, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 1497.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 3.9539999999999997, + "positive_rate": 0.253, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-14", + "total_cases": 41847.0, + "new_cases": 122.0, + "new_cases_smoothed": 250.0, + "total_deaths": 223.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1346.734, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 8.046, + "total_deaths_per_million": 7.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 1654.0, + "total_tests": 425969.0, + "total_tests_per_thousand": 13.709, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 1471.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 5.8839999999999995, + "positive_rate": 0.17, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-15", + "total_cases": 42063.0, + "new_cases": 216.0, + "new_cases_smoothed": 280.857, + "total_deaths": 231.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1353.686, + "new_cases_per_million": 6.951, + "new_cases_smoothed_per_million": 9.039, + "total_deaths_per_million": 7.434, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.115, + "new_tests": 1152.0, + "total_tests": 427121.0, + "total_tests_per_thousand": 13.746, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1448.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 5.156000000000001, + "positive_rate": 0.19399999999999998, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-16", + "total_cases": 42210.0, + "new_cases": 147.0, + "new_cases_smoothed": 239.571, + "total_deaths": 231.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1358.416, + "new_cases_per_million": 4.731, + "new_cases_smoothed_per_million": 7.71, + "total_deaths_per_million": 7.434, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.115, + "new_tests": 1574.0, + "total_tests": 428695.0, + "total_tests_per_thousand": 13.796, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1481.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 6.182, + "positive_rate": 0.162, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-17", + "total_cases": 42532.0, + "new_cases": 322.0, + "new_cases_smoothed": 218.429, + "total_deaths": 231.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1368.779, + "new_cases_per_million": 10.363, + "new_cases_smoothed_per_million": 7.03, + "total_deaths_per_million": 7.434, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1078.0, + "total_tests": 429773.0, + "total_tests_per_thousand": 13.831, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1455.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.6610000000000005, + "positive_rate": 0.15, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-18", + "total_cases": 42653.0, + "new_cases": 121.0, + "new_cases_smoothed": 205.857, + "total_deaths": 239.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1372.673, + "new_cases_per_million": 3.894, + "new_cases_smoothed_per_million": 6.625, + "total_deaths_per_million": 7.692, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1499.0, + "total_tests": 431272.0, + "total_tests_per_thousand": 13.879, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1383.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 6.718, + "positive_rate": 0.149, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-19", + "total_cases": 42993.0, + "new_cases": 340.0, + "new_cases_smoothed": 227.0, + "total_deaths": 248.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1383.615, + "new_cases_per_million": 10.942, + "new_cases_smoothed_per_million": 7.305, + "total_deaths_per_million": 7.981, + "new_deaths_per_million": 0.29, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 1100.0, + "total_tests": 432372.0, + "total_tests_per_thousand": 13.915, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1338.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 5.894, + "positive_rate": 0.17, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-20", + "total_cases": 43094.0, + "new_cases": 101.0, + "new_cases_smoothed": 195.571, + "total_deaths": 256.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1386.866, + "new_cases_per_million": 3.25, + "new_cases_smoothed_per_million": 6.294, + "total_deaths_per_million": 8.239, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 1131.0, + "total_tests": 433503.0, + "total_tests_per_thousand": 13.951, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1313.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.7139999999999995, + "positive_rate": 0.149, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-21", + "total_cases": 43260.0, + "new_cases": 166.0, + "new_cases_smoothed": 201.857, + "total_deaths": 261.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1392.208, + "new_cases_per_million": 5.342, + "new_cases_smoothed_per_million": 6.496, + "total_deaths_per_million": 8.4, + "new_deaths_per_million": 0.161, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 1606.0, + "total_tests": 435109.0, + "total_tests_per_thousand": 14.003, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1306.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.47, + "positive_rate": 0.155, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-22", + "total_cases": 43325.0, + "new_cases": 65.0, + "new_cases_smoothed": 180.286, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1394.3, + "new_cases_per_million": 2.092, + "new_cases_smoothed_per_million": 5.802, + "total_deaths_per_million": 8.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.138, + "new_tests": 1144.0, + "total_tests": 436253.0, + "total_tests_per_thousand": 14.04, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1305.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 7.239, + "positive_rate": 0.138, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-23", + "total_cases": 43505.0, + "new_cases": 180.0, + "new_cases_smoothed": 185.0, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1400.093, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 5.954, + "total_deaths_per_million": 8.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.138, + "new_tests": 748.0, + "total_tests": 437001.0, + "total_tests_per_thousand": 14.064, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1187.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 6.416, + "positive_rate": 0.156, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-24", + "total_cases": 43505.0, + "new_cases": 0.0, + "new_cases_smoothed": 139.0, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1400.093, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.473, + "total_deaths_per_million": 8.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.138, + "new_tests": 749.0, + "total_tests": 437750.0, + "total_tests_per_thousand": 14.088, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1140.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 8.201, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-25", + "total_cases": 43622.0, + "new_cases": 117.0, + "new_cases_smoothed": 138.429, + "total_deaths": 263.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1403.858, + "new_cases_per_million": 3.765, + "new_cases_smoothed_per_million": 4.455, + "total_deaths_per_million": 8.464, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1496.0, + "total_tests": 439246.0, + "total_tests_per_thousand": 14.136, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1139.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 8.228, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-26", + "total_cases": 43717.0, + "new_cases": 95.0, + "new_cases_smoothed": 103.429, + "total_deaths": 270.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1406.915, + "new_cases_per_million": 3.057, + "new_cases_smoothed_per_million": 3.329, + "total_deaths_per_million": 8.689, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 1738.0, + "total_tests": 440984.0, + "total_tests_per_thousand": 14.192, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1230.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 11.892000000000001, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-27", + "total_cases": 43841.0, + "new_cases": 124.0, + "new_cases_smoothed": 106.714, + "total_deaths": 270.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1410.906, + "new_cases_per_million": 3.991, + "new_cases_smoothed_per_million": 3.434, + "total_deaths_per_million": 8.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 1201.0, + "total_tests": 442185.0, + "total_tests_per_thousand": 14.231, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1240.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 11.62, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-28", + "total_cases": 43841.0, + "new_cases": 0.0, + "new_cases_smoothed": 83.0, + "total_deaths": 270.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1410.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.671, + "total_deaths_per_million": 8.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 13.807, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-29", + "total_cases": 43949.0, + "new_cases": 108.0, + "new_cases_smoothed": 89.143, + "total_deaths": 270.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1414.382, + "new_cases_per_million": 3.476, + "new_cases_smoothed_per_million": 2.869, + "total_deaths_per_million": 8.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 444081.0, + "total_tests_per_thousand": 14.292, + "new_tests_smoothed": 1118.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 12.542, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-30", + "total_cases": 44118.0, + "new_cases": 169.0, + "new_cases_smoothed": 87.571, + "total_deaths": 270.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1419.82, + "new_cases_per_million": 5.439, + "new_cases_smoothed_per_million": 2.818, + "total_deaths_per_million": 8.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 716.0, + "total_tests": 444797.0, + "total_tests_per_thousand": 14.315, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1114.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 12.720999999999998, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-08-31", + "total_cases": 44205.0, + "new_cases": 87.0, + "new_cases_smoothed": 100.0, + "total_deaths": 276.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1422.62, + "new_cases_per_million": 2.8, + "new_cases_smoothed_per_million": 3.218, + "total_deaths_per_million": 8.882, + "new_deaths_per_million": 0.193, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 856.0, + "total_tests": 445653.0, + "total_tests_per_thousand": 14.342, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1129.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 11.29, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-09-01", + "total_cases": 44298.0, + "new_cases": 93.0, + "new_cases_smoothed": 96.571, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1425.613, + "new_cases_per_million": 2.993, + "new_cases_smoothed_per_million": 3.108, + "total_deaths_per_million": 8.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 555.0, + "total_tests": 446208.0, + "total_tests_per_thousand": 14.36, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 995.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 10.302999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "samples tested", + "stringency_index": 44.44 + }, + { + "date": "2020-09-02", + "total_cases": 44460.0, + "new_cases": 162.0, + "new_cases_smoothed": 106.143, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1430.827, + "new_cases_per_million": 5.214, + "new_cases_smoothed_per_million": 3.416, + "total_deaths_per_million": 8.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 44.44 + }, + { + "date": "2020-09-03", + "total_cases": 44658.0, + "new_cases": 198.0, + "new_cases_smoothed": 116.714, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1437.199, + "new_cases_per_million": 6.372, + "new_cases_smoothed_per_million": 3.756, + "total_deaths_per_million": 8.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 44.44 + }, + { + "date": "2020-09-04", + "total_cases": 44713.0, + "new_cases": 55.0, + "new_cases_smoothed": 124.571, + "total_deaths": 280.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1438.969, + "new_cases_per_million": 1.77, + "new_cases_smoothed_per_million": 4.009, + "total_deaths_per_million": 9.011, + "new_deaths_per_million": 0.129, + "new_deaths_smoothed_per_million": 0.046 + }, + { + "date": "2020-09-05", + "total_cases": 44777.0, + "new_cases": 64.0, + "new_cases_smoothed": 118.286, + "total_deaths": 283.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1441.029, + "new_cases_per_million": 2.06, + "new_cases_smoothed_per_million": 3.807, + "total_deaths_per_million": 9.108, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.06 + } + ] + }, + "GIB": { + "continent": "Europe", + "location": "Gibraltar", + "population": 33691.0, + "population_density": 3457.1, + "life_expectancy": 79.93, + "data": [ + { + "date": "2020-03-20", + "total_cases": 10.0, + "new_cases": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 296.815, + "new_cases_per_million": 296.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-21", + "total_cases": 10.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 296.815, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-22", + "total_cases": 10.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 296.815, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-23", + "total_cases": 15.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 445.223, + "new_cases_per_million": 148.408, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-03-24", + "total_cases": 15.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 445.223, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-25", + "total_cases": 15.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 445.223, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-26", + "total_cases": 26.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 771.719, + "new_cases_per_million": 326.497, + "new_cases_smoothed_per_million": 110.246, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 35.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1038.853, + "new_cases_per_million": 267.134, + "new_cases_smoothed_per_million": 106.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 55.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1632.483, + "new_cases_per_million": 593.63, + "new_cases_smoothed_per_million": 190.81, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1662.165, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 195.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 65.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1929.299, + "new_cases_per_million": 267.134, + "new_cases_smoothed_per_million": 212.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 69.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2048.025, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 228.972, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2048.025, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 228.972, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2048.025, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 182.329, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 88.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2611.974, + "new_cases_per_million": 563.949, + "new_cases_smoothed_per_million": 224.731, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 95.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2819.744, + "new_cases_per_million": 207.771, + "new_cases_smoothed_per_million": 169.609, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 98.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2908.789, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 178.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 103.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3057.196, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 161.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 109.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3235.285, + "new_cases_per_million": 178.089, + "new_cases_smoothed_per_million": 169.609, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 113.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3354.011, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 186.57, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 120.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3561.782, + "new_cases_per_million": 207.771, + "new_cases_smoothed_per_million": 216.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 123.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3650.827, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 148.408, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 127.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3769.553, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 135.687, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 129.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3828.916, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 131.447, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3828.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 110.246, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3828.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.804, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 129.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3828.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 131.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3888.279, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 46.642, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 133.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 42.402, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3947.642, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 136.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4036.686, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 141.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4185.094, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4185.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4185.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4185.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 144.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 46.642, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.642, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-03", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-04", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-05", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-06", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-07", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-08", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4274.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 146.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4333.502, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4333.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4333.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 147.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-15", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-19", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-20", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4363.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-21", + "total_cases": 149.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4422.546, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-22", + "total_cases": 151.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4481.909, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-23", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4481.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-24", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4481.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-25", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4481.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-26", + "total_cases": 155.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4600.635, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-27", + "total_cases": 155.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4600.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-28", + "total_cases": 157.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4659.998, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 33.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-29", + "total_cases": 157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4659.998, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-30", + "total_cases": 161.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4778.724, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 42.402, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-31", + "total_cases": 161.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4778.724, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.402, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-01", + "total_cases": 169.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5016.176, + "new_cases_per_million": 237.452, + "new_cases_smoothed_per_million": 76.324, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-02", + "total_cases": 170.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5045.858, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 63.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-03", + "total_cases": 172.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5105.221, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 72.084, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-04", + "total_cases": 173.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5134.902, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-05", + "total_cases": 173.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5134.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-06", + "total_cases": 174.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5164.584, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 55.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-07", + "total_cases": 174.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5164.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 55.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-08", + "total_cases": 175.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5194.266, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-09", + "total_cases": 176.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-10", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-11", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-12", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-13", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-14", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-15", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-16", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-17", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-18", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-19", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-20", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-21", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-22", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-23", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-24", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-25", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-26", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-27", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-28", + "total_cases": 176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5223.947, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-29", + "total_cases": 177.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5253.629, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-30", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5253.629, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-01", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5253.629, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-02", + "total_cases": 178.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.31, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-03", + "total_cases": 178.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-04", + "total_cases": 178.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-05", + "total_cases": 178.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-06", + "total_cases": 178.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-07", + "total_cases": 179.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5312.992, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-08", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5312.992, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-09", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5312.992, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-10", + "total_cases": 180.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-11", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-12", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-13", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-14", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-15", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-16", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-17", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-18", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-19", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-20", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-21", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-22", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5342.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-23", + "total_cases": 182.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5402.036, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-24", + "total_cases": 184.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5461.399, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-25", + "total_cases": 184.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5461.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-26", + "total_cases": 185.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5491.081, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 21.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-27", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5491.081, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-28", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5491.081, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-29", + "total_cases": 186.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5520.762, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-30", + "total_cases": 186.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5520.762, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-07-31", + "total_cases": 187.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5550.444, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-01", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5550.444, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-02", + "total_cases": 188.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5580.125, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-03", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5580.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-04", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5580.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-05", + "total_cases": 189.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5609.807, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-06", + "total_cases": 189.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5609.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-07", + "total_cases": 190.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5639.488, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-08", + "total_cases": 190.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5639.488, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-09", + "total_cases": 197.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5847.259, + "new_cases_per_million": 207.771, + "new_cases_smoothed_per_million": 38.162, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-10", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5847.259, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.162, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-11", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5847.259, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.162, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-12", + "total_cases": 201.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5965.985, + "new_cases_per_million": 118.726, + "new_cases_smoothed_per_million": 50.883, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-13", + "total_cases": 203.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6025.348, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 59.363, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-14", + "total_cases": 205.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6084.711, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 63.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-15", + "total_cases": 206.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6114.393, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-16", + "total_cases": 209.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6203.437, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 50.883, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-17", + "total_cases": 215.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6381.526, + "new_cases_per_million": 178.089, + "new_cases_smoothed_per_million": 76.324, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-18", + "total_cases": 217.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6440.889, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 84.804, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-19", + "total_cases": 222.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6589.297, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 89.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-20", + "total_cases": 223.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6618.978, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 84.804, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-21", + "total_cases": 229.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6797.067, + "new_cases_per_million": 178.089, + "new_cases_smoothed_per_million": 101.765, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-22", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6797.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 97.525, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-23", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6797.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.804, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-24", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6797.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.363, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-25", + "total_cases": 248.0, + "new_cases": 19.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7361.016, + "new_cases_per_million": 563.949, + "new_cases_smoothed_per_million": 131.447, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-26", + "total_cases": 256.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7598.468, + "new_cases_per_million": 237.452, + "new_cases_smoothed_per_million": 144.167, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-27", + "total_cases": 270.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8014.01, + "new_cases_per_million": 415.541, + "new_cases_smoothed_per_million": 199.29, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-28", + "total_cases": 272.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8073.373, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 182.329, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-29", + "total_cases": 274.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8132.736, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 190.81, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-30", + "total_cases": 275.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8162.417, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 195.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-31", + "total_cases": 285.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8459.232, + "new_cases_per_million": 296.815, + "new_cases_smoothed_per_million": 237.452, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-01", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8459.232, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 156.888, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-09-02", + "total_cases": 290.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8607.64, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 144.167, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 295.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8756.048, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 106.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 295.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8756.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 97.525, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 305.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9052.863, + "new_cases_per_million": 296.815, + "new_cases_smoothed_per_million": 131.447, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GRC": { + "continent": "Europe", + "location": "Greece", + "population": 10423056.0, + "population_density": 83.479, + "median_age": 45.3, + "aged_65_older": 20.396, + "aged_70_older": 14.524, + "gdp_per_capita": 24574.382, + "extreme_poverty": 1.5, + "cardiovasc_death_rate": 175.695, + "diabetes_prevalence": 4.55, + "female_smokers": 35.3, + "male_smokers": 52.0, + "hospital_beds_per_thousand": 4.21, + "life_expectancy": 82.24, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.096, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.288, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.384, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.672, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.672, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 570.0, + "total_tests_per_thousand": 0.055, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.959, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 28.7 + }, + { + "date": "2020-03-06", + "total_cases": 32.0, + "new_cases": 22.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.07, + "new_cases_per_million": 2.111, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 28.7 + }, + { + "date": "2020-03-07", + "total_cases": 45.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.317, + "new_cases_per_million": 1.247, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 28.7 + }, + { + "date": "2020-03-08", + "total_cases": 66.0, + "new_cases": 21.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.332, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 0.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 28.7 + }, + { + "date": "2020-03-09", + "total_cases": 73.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.004, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.905, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-10", + "total_cases": 84.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.059, + "new_cases_per_million": 1.055, + "new_cases_smoothed_per_million": 1.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 16.273, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-11", + "total_cases": 90.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.635, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.138, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 15.095999999999998, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-12", + "total_cases": 99.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.498, + "new_cases_per_million": 0.863, + "new_cases_smoothed_per_million": 1.22, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.014, + "total_tests": 2180.0, + "total_tests_per_thousand": 0.209, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 14.079, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-13", + "total_cases": 133.0, + "new_cases": 34.0, + "new_cases_smoothed": 14.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.76, + "new_cases_per_million": 3.262, + "new_cases_smoothed_per_million": 1.384, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 520.0, + "total_tests": 2700.0, + "total_tests_per_thousand": 0.259, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 228.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 15.802, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-14", + "total_cases": 190.0, + "new_cases": 57.0, + "new_cases_smoothed": 20.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.229, + "new_cases_per_million": 5.469, + "new_cases_smoothed_per_million": 1.987, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 700.0, + "total_tests": 3400.0, + "total_tests_per_thousand": 0.326, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 302.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 14.579, + "positive_rate": 0.069, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-15", + "total_cases": 228.0, + "new_cases": 38.0, + "new_cases_smoothed": 23.143, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 21.875, + "new_cases_per_million": 3.646, + "new_cases_smoothed_per_million": 2.22, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 600.0, + "total_tests": 4000.0, + "total_tests_per_thousand": 0.384, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 15.642000000000001, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-16", + "total_cases": 331.0, + "new_cases": 103.0, + "new_cases_smoothed": 36.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 31.757, + "new_cases_per_million": 9.882, + "new_cases_smoothed_per_million": 3.536, + "total_deaths_per_million": 0.384, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 320.0, + "total_tests": 4320.0, + "total_tests_per_thousand": 0.414, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 382.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 10.364, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-17", + "total_cases": 352.0, + "new_cases": 21.0, + "new_cases_smoothed": 38.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 33.771, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 3.673, + "total_deaths_per_million": 0.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 477.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 12.459000000000001, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-18", + "total_cases": 387.0, + "new_cases": 35.0, + "new_cases_smoothed": 42.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 37.129, + "new_cases_per_million": 3.358, + "new_cases_smoothed_per_million": 4.071, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.069, + "total_tests": 6000.0, + "total_tests_per_thousand": 0.576, + "new_tests_smoothed": 571.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 13.458, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-03-19", + "total_cases": 418.0, + "new_cases": 31.0, + "new_cases_smoothed": 45.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 40.103, + "new_cases_per_million": 2.974, + "new_cases_smoothed_per_million": 4.372, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 629.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 13.802999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-03-20", + "total_cases": 464.0, + "new_cases": 46.0, + "new_cases_smoothed": 47.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 44.517, + "new_cases_per_million": 4.413, + "new_cases_smoothed_per_million": 4.537, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "total_tests": 7172.0, + "total_tests_per_thousand": 0.688, + "new_tests_smoothed": 639.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 13.514000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-03-21", + "total_cases": 495.0, + "new_cases": 31.0, + "new_cases_smoothed": 43.571, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 47.491, + "new_cases_per_million": 2.974, + "new_cases_smoothed_per_million": 4.18, + "total_deaths_per_million": 0.768, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 658.0, + "total_tests": 7830.0, + "total_tests_per_thousand": 0.751, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 633.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 14.527999999999999, + "positive_rate": 0.069, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-22", + "total_cases": 530.0, + "new_cases": 35.0, + "new_cases_smoothed": 43.143, + "total_deaths": 13.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 50.849, + "new_cases_per_million": 3.358, + "new_cases_smoothed_per_million": 4.139, + "total_deaths_per_million": 1.247, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 176.0, + "total_tests": 8006.0, + "total_tests_per_thousand": 0.768, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 572.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 13.258, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-23", + "total_cases": 624.0, + "new_cases": 94.0, + "new_cases_smoothed": 41.857, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 59.867, + "new_cases_per_million": 9.018, + "new_cases_smoothed_per_million": 4.016, + "total_deaths_per_million": 1.439, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 638.0, + "total_tests": 8644.0, + "total_tests_per_thousand": 0.829, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 618.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 14.765, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-24", + "total_cases": 695.0, + "new_cases": 71.0, + "new_cases_smoothed": 49.0, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 66.679, + "new_cases_per_million": 6.812, + "new_cases_smoothed_per_million": 4.701, + "total_deaths_per_million": 1.631, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 427.0, + "total_tests": 9071.0, + "total_tests_per_thousand": 0.87, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 559.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 11.408, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-25", + "total_cases": 743.0, + "new_cases": 48.0, + "new_cases_smoothed": 50.857, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 71.284, + "new_cases_per_million": 4.605, + "new_cases_smoothed_per_million": 4.879, + "total_deaths_per_million": 1.919, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1424.0, + "total_tests": 10495.0, + "total_tests_per_thousand": 1.007, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 642.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.624, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-26", + "total_cases": 821.0, + "new_cases": 78.0, + "new_cases_smoothed": 57.571, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 78.768, + "new_cases_per_million": 7.483, + "new_cases_smoothed_per_million": 5.523, + "total_deaths_per_million": 2.111, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.233, + "new_tests_smoothed": 771.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 13.392000000000001, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-27", + "total_cases": 892.0, + "new_cases": 71.0, + "new_cases_smoothed": 61.143, + "total_deaths": 26.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 85.58, + "new_cases_per_million": 6.812, + "new_cases_smoothed_per_million": 5.866, + "total_deaths_per_million": 2.494, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.288, + "total_tests": 13477.0, + "total_tests_per_thousand": 1.293, + "new_tests_smoothed": 901.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 14.735999999999999, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 966.0, + "new_cases": 74.0, + "new_cases_smoothed": 67.286, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 92.679, + "new_cases_per_million": 7.1, + "new_cases_smoothed_per_million": 6.455, + "total_deaths_per_million": 2.686, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 886.0, + "total_tests": 14363.0, + "total_tests_per_thousand": 1.378, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 13.866, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 1061.0, + "new_cases": 95.0, + "new_cases_smoothed": 75.857, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 101.794, + "new_cases_per_million": 9.114, + "new_cases_smoothed_per_million": 7.278, + "total_deaths_per_million": 3.07, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 788.0, + "total_tests": 15151.0, + "total_tests_per_thousand": 1.454, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1021.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 13.46, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 1156.0, + "new_cases": 95.0, + "new_cases_smoothed": 76.0, + "total_deaths": 38.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 110.908, + "new_cases_per_million": 9.114, + "new_cases_smoothed_per_million": 7.292, + "total_deaths_per_million": 3.646, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 810.0, + "total_tests": 15961.0, + "total_tests_per_thousand": 1.531, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 13.75, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 1212.0, + "new_cases": 56.0, + "new_cases_smoothed": 73.857, + "total_deaths": 43.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 116.281, + "new_cases_per_million": 5.373, + "new_cases_smoothed_per_million": 7.086, + "total_deaths_per_million": 4.125, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 771.0, + "total_tests": 16732.0, + "total_tests_per_thousand": 1.605, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1094.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 14.812000000000001, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-01", + "total_cases": 1314.0, + "new_cases": 102.0, + "new_cases_smoothed": 81.571, + "total_deaths": 49.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 126.067, + "new_cases_per_million": 9.786, + "new_cases_smoothed_per_million": 7.826, + "total_deaths_per_million": 4.701, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 618.0, + "total_tests": 17350.0, + "total_tests_per_thousand": 1.665, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 12.002, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-02", + "total_cases": 1375.0, + "new_cases": 61.0, + "new_cases_smoothed": 79.143, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 131.919, + "new_cases_per_million": 5.852, + "new_cases_smoothed_per_million": 7.593, + "total_deaths_per_million": 4.797, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.384, + "new_tests": 1494.0, + "total_tests": 18844.0, + "total_tests_per_thousand": 1.808, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 980.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 12.383, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-03", + "total_cases": 1514.0, + "new_cases": 139.0, + "new_cases_smoothed": 88.857, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 145.255, + "new_cases_per_million": 13.336, + "new_cases_smoothed_per_million": 8.525, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 3593.0, + "total_tests": 22437.0, + "total_tests_per_thousand": 2.153, + "new_tests_per_thousand": 0.345, + "new_tests_smoothed": 1280.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 14.405, + "positive_rate": 0.069, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-04", + "total_cases": 1613.0, + "new_cases": 99.0, + "new_cases_smoothed": 92.429, + "total_deaths": 59.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 154.753, + "new_cases_per_million": 9.498, + "new_cases_smoothed_per_million": 8.868, + "total_deaths_per_million": 5.661, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.425, + "new_tests": 896.0, + "total_tests": 23333.0, + "total_tests_per_thousand": 2.239, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 1281.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 13.859000000000002, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-05", + "total_cases": 1673.0, + "new_cases": 60.0, + "new_cases_smoothed": 87.429, + "total_deaths": 68.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 160.51, + "new_cases_per_million": 5.756, + "new_cases_smoothed_per_million": 8.388, + "total_deaths_per_million": 6.524, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 2120.0, + "total_tests": 25453.0, + "total_tests_per_thousand": 2.442, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 1472.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 16.837, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-06", + "total_cases": 1735.0, + "new_cases": 62.0, + "new_cases_smoothed": 82.714, + "total_deaths": 73.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 166.458, + "new_cases_per_million": 5.948, + "new_cases_smoothed_per_million": 7.936, + "total_deaths_per_million": 7.004, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.48, + "new_tests": 740.0, + "total_tests": 26193.0, + "total_tests_per_thousand": 2.513, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 1462.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 17.675, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-07", + "total_cases": 1755.0, + "new_cases": 20.0, + "new_cases_smoothed": 77.571, + "total_deaths": 79.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 168.377, + "new_cases_per_million": 1.919, + "new_cases_smoothed_per_million": 7.442, + "total_deaths_per_million": 7.579, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.493, + "new_tests": 2391.0, + "total_tests": 28584.0, + "total_tests_per_thousand": 2.742, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 1693.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 21.825, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-08", + "total_cases": 1832.0, + "new_cases": 77.0, + "new_cases_smoothed": 74.0, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 175.764, + "new_cases_per_million": 7.387, + "new_cases_smoothed_per_million": 7.1, + "total_deaths_per_million": 7.771, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.439, + "new_tests": 3944.0, + "total_tests": 32528.0, + "total_tests_per_thousand": 3.121, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2168.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 29.296999999999997, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-09", + "total_cases": 1884.0, + "new_cases": 52.0, + "new_cases_smoothed": 72.714, + "total_deaths": 83.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 180.753, + "new_cases_per_million": 4.989, + "new_cases_smoothed_per_million": 6.976, + "total_deaths_per_million": 7.963, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1106.0, + "total_tests": 33634.0, + "total_tests_per_thousand": 3.227, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 2113.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 29.059, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-10", + "total_cases": 1955.0, + "new_cases": 71.0, + "new_cases_smoothed": 63.0, + "total_deaths": 86.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 187.565, + "new_cases_per_million": 6.812, + "new_cases_smoothed_per_million": 6.044, + "total_deaths_per_million": 8.251, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1798.0, + "total_tests": 35432.0, + "total_tests_per_thousand": 3.399, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 1856.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 29.46, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-11", + "total_cases": 2011.0, + "new_cases": 56.0, + "new_cases_smoothed": 56.857, + "total_deaths": 90.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 192.938, + "new_cases_per_million": 5.373, + "new_cases_smoothed_per_million": 5.455, + "total_deaths_per_million": 8.635, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.425, + "new_tests": 1912.0, + "total_tests": 37344.0, + "total_tests_per_thousand": 3.583, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 2002.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 35.211, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-12", + "total_cases": 2081.0, + "new_cases": 70.0, + "new_cases_smoothed": 58.286, + "total_deaths": 93.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 199.654, + "new_cases_per_million": 6.716, + "new_cases_smoothed_per_million": 5.592, + "total_deaths_per_million": 8.923, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 4917.0, + "total_tests": 42261.0, + "total_tests_per_thousand": 4.055, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 2401.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 41.193999999999996, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 2114.0, + "new_cases": 33.0, + "new_cases_smoothed": 54.143, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 202.82, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 5.195, + "total_deaths_per_million": 9.402, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 1170.0, + "total_tests": 43431.0, + "total_tests_per_thousand": 4.167, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 45.49100000000001, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 2145.0, + "new_cases": 31.0, + "new_cases_smoothed": 55.714, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 205.794, + "new_cases_per_million": 2.974, + "new_cases_smoothed_per_million": 5.345, + "total_deaths_per_million": 9.498, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.274, + "new_tests_smoothed": 2404.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 43.148999999999994, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 2170.0, + "new_cases": 25.0, + "new_cases_smoothed": 48.286, + "total_deaths": 101.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 208.192, + "new_cases_per_million": 2.399, + "new_cases_smoothed_per_million": 4.633, + "total_deaths_per_million": 9.69, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.274, + "total_tests": 47389.0, + "total_tests_per_thousand": 4.547, + "new_tests_smoothed": 2123.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 43.967, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 2192.0, + "new_cases": 22.0, + "new_cases_smoothed": 44.0, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 210.303, + "new_cases_per_million": 2.111, + "new_cases_smoothed_per_million": 4.221, + "total_deaths_per_million": 9.786, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 2001.0, + "total_tests": 49390.0, + "total_tests_per_thousand": 4.739, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 2251.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 51.159, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 2207.0, + "new_cases": 15.0, + "new_cases_smoothed": 36.0, + "total_deaths": 105.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 211.742, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.454, + "total_deaths_per_million": 10.074, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 2255.0, + "total_tests": 51645.0, + "total_tests_per_thousand": 4.955, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 2316.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 64.333, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 2207.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 211.742, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 10.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1645.0, + "total_tests": 53290.0, + "total_tests_per_thousand": 5.113, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 2278.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 81.357, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 2207.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 211.742, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.727, + "total_deaths_per_million": 10.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164, + "new_tests_smoothed": 1651.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 91.72200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 2235.0, + "new_cases": 28.0, + "new_cases_smoothed": 17.286, + "total_deaths": 110.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 214.428, + "new_cases_per_million": 2.686, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 10.554, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.164, + "total_tests": 54344.0, + "total_tests_per_thousand": 5.214, + "new_tests_smoothed": 1559.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 90.19, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 2245.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.286, + "total_deaths": 116.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 215.388, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.371, + "total_deaths_per_million": 11.129, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 1322.0, + "total_tests": 55666.0, + "total_tests_per_thousand": 5.341, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 1465.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 102.55, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 2401.0, + "new_cases": 156.0, + "new_cases_smoothed": 33.0, + "total_deaths": 121.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 230.355, + "new_cases_per_million": 14.967, + "new_cases_smoothed_per_million": 3.166, + "total_deaths_per_million": 11.609, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 1326.0, + "total_tests": 56992.0, + "total_tests_per_thousand": 5.468, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 1372.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 41.576, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 2408.0, + "new_cases": 7.0, + "new_cases_smoothed": 30.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 231.026, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 2.96, + "total_deaths_per_million": 11.609, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 2249.0, + "total_tests": 59241.0, + "total_tests_per_thousand": 5.684, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 1407.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 45.597, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 2463.0, + "new_cases": 55.0, + "new_cases_smoothed": 36.571, + "total_deaths": 125.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 236.303, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 3.509, + "total_deaths_per_million": 11.993, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 2166.0, + "total_tests": 61407.0, + "total_tests_per_thousand": 5.891, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 1395.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 38.145, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 2490.0, + "new_cases": 27.0, + "new_cases_smoothed": 40.429, + "total_deaths": 130.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 238.893, + "new_cases_per_million": 2.59, + "new_cases_smoothed_per_million": 3.879, + "total_deaths_per_million": 12.472, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 1680.0, + "total_tests": 63087.0, + "total_tests_per_thousand": 6.053, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 1400.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 34.629, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 2506.0, + "new_cases": 16.0, + "new_cases_smoothed": 42.714, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 240.429, + "new_cases_per_million": 1.535, + "new_cases_smoothed_per_million": 4.098, + "total_deaths_per_million": 12.472, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 1521.0, + "total_tests": 64608.0, + "total_tests_per_thousand": 6.199, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 1542.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 36.1, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 2506.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.714, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 240.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.714, + "total_deaths_per_million": 12.472, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 1486.0, + "total_tests": 66094.0, + "total_tests_per_thousand": 6.341, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 1679.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 43.369, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 2534.0, + "new_cases": 28.0, + "new_cases_smoothed": 41.286, + "total_deaths": 136.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 243.115, + "new_cases_per_million": 2.686, + "new_cases_smoothed_per_million": 3.961, + "total_deaths_per_million": 13.048, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 3739.0, + "total_tests": 69833.0, + "total_tests_per_thousand": 6.7, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 2024.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 49.023999999999994, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 2534.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.0, + "total_deaths": 136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 243.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 13.048, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 2297.0, + "total_tests": 72130.0, + "total_tests_per_thousand": 6.92, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 2163.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 113.84200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 2576.0, + "new_cases": 42.0, + "new_cases_smoothed": 24.0, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 247.144, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 2.303, + "total_deaths_per_million": 13.336, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 3040.0, + "total_tests": 75170.0, + "total_tests_per_thousand": 7.212, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 2276.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 94.833, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 2591.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.286, + "total_deaths": 140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 248.584, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.754, + "total_deaths_per_million": 13.432, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 2081.0, + "total_tests": 77251.0, + "total_tests_per_thousand": 7.412, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 2263.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 123.758, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 2591.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 248.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.384, + "total_deaths_per_million": 13.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 956.0, + "total_tests": 78207.0, + "total_tests_per_thousand": 7.503, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 2160.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 149.703, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 2620.0, + "new_cases": 29.0, + "new_cases_smoothed": 16.286, + "total_deaths": 143.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 251.366, + "new_cases_per_million": 2.782, + "new_cases_smoothed_per_million": 1.562, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 1125.0, + "total_tests": 79332.0, + "total_tests_per_thousand": 7.611, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 2103.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 129.132, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 2626.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.143, + "total_deaths": 144.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 251.941, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 13.816, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 1619.0, + "total_tests": 80951.0, + "total_tests_per_thousand": 7.767, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 2122.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 123.78299999999999, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-05", + "total_cases": 2632.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.0, + "total_deaths": 146.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 252.517, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.343, + "total_deaths_per_million": 14.007, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 2799.0, + "total_tests": 83750.0, + "total_tests_per_thousand": 8.035, + "new_tests_per_thousand": 0.269, + "new_tests_smoothed": 1988.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 142.0, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-06", + "total_cases": 2642.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.429, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 253.477, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.48, + "total_deaths_per_million": 14.007, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 3302.0, + "total_tests": 87052.0, + "total_tests_per_thousand": 8.352, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 2132.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 138.185, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-07", + "total_cases": 2663.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.429, + "total_deaths": 147.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 255.491, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 1.192, + "total_deaths_per_million": 14.103, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 2991.0, + "total_tests": 90043.0, + "total_tests_per_thousand": 8.639, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 2125.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 170.977, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-08", + "total_cases": 2678.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.429, + "total_deaths": 148.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 256.93, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.192, + "total_deaths_per_million": 14.199, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 4248.0, + "total_tests": 94291.0, + "total_tests_per_thousand": 9.046, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 2434.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 195.83900000000003, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-09", + "total_cases": 2691.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.286, + "total_deaths": 150.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 258.178, + "new_cases_per_million": 1.247, + "new_cases_smoothed_per_million": 1.371, + "total_deaths_per_million": 14.391, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 3093.0, + "total_tests": 97384.0, + "total_tests_per_thousand": 9.343, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 2740.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 191.8, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-10", + "total_cases": 2710.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.857, + "total_deaths": 151.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 260.001, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1493.0, + "total_tests": 98877.0, + "total_tests_per_thousand": 9.486, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 2792.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 217.15599999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-05-11", + "total_cases": 2716.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.857, + "total_deaths": 151.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 260.576, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 486.0, + "total_tests": 99363.0, + "total_tests_per_thousand": 9.533, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 2630.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 204.55599999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-12", + "total_cases": 2726.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 151.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 261.536, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 6691.0, + "total_tests": 106054.0, + "total_tests_per_thousand": 10.175, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 3186.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 237.255, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-13", + "total_cases": 2744.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.571, + "total_deaths": 152.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 263.263, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 1.398, + "total_deaths_per_million": 14.583, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 5988.0, + "total_tests": 112042.0, + "total_tests_per_thousand": 10.749, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 3570.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 245.0, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-14", + "total_cases": 2760.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.857, + "total_deaths": 155.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 264.798, + "new_cases_per_million": 1.535, + "new_cases_smoothed_per_million": 1.329, + "total_deaths_per_million": 14.871, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 4191.0, + "total_tests": 116233.0, + "total_tests_per_thousand": 11.152, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 3741.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 269.969, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-15", + "total_cases": 2770.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.143, + "total_deaths": 156.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 265.757, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.261, + "total_deaths_per_million": 14.967, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 3782.0, + "total_tests": 120015.0, + "total_tests_per_thousand": 11.514, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 3675.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 279.62, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-16", + "total_cases": 2810.0, + "new_cases": 40.0, + "new_cases_smoothed": 17.0, + "total_deaths": 160.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 269.595, + "new_cases_per_million": 3.838, + "new_cases_smoothed_per_million": 1.631, + "total_deaths_per_million": 15.351, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 6268.0, + "total_tests": 126283.0, + "total_tests_per_thousand": 12.116, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 4128.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 242.824, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-17", + "total_cases": 2819.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.571, + "total_deaths": 162.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 270.458, + "new_cases_per_million": 0.863, + "new_cases_smoothed_per_million": 1.494, + "total_deaths_per_million": 15.542, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 2242.0, + "total_tests": 128525.0, + "total_tests_per_thousand": 12.331, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 4235.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 271.972, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-18", + "total_cases": 2834.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.857, + "total_deaths": 163.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 271.897, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.617, + "total_deaths_per_million": 15.638, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 3159.0, + "total_tests": 131684.0, + "total_tests_per_thousand": 12.634, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 4617.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 273.89, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-19", + "total_cases": 2836.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.714, + "total_deaths": 165.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 272.089, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 15.83, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 4317.0, + "total_tests": 136001.0, + "total_tests_per_thousand": 13.048, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 4278.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 272.236, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-20", + "total_cases": 2840.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.714, + "total_deaths": 165.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 272.473, + "new_cases_per_million": 0.384, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 15.83, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 3444.0, + "total_tests": 139445.0, + "total_tests_per_thousand": 13.379, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 3915.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 285.469, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-21", + "total_cases": 2850.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.857, + "total_deaths": 166.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 273.432, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 15.926, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 4633.0, + "total_tests": 144078.0, + "total_tests_per_thousand": 13.823, + "new_tests_per_thousand": 0.444, + "new_tests_smoothed": 3978.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 309.4, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-22", + "total_cases": 2853.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.857, + "total_deaths": 168.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 273.72, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.138, + "total_deaths_per_million": 16.118, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 3880.0, + "total_tests": 147958.0, + "total_tests_per_thousand": 14.195, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 3992.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 336.675, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-23", + "total_cases": 2873.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.0, + "total_deaths": 169.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 275.639, + "new_cases_per_million": 1.919, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 16.214, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 5040.0, + "total_tests": 152998.0, + "total_tests_per_thousand": 14.679, + "new_tests_per_thousand": 0.484, + "new_tests_smoothed": 3816.0, + "new_tests_smoothed_per_thousand": 0.366, + "tests_per_case": 424.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-24", + "total_cases": 2876.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.143, + "total_deaths": 171.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 275.927, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 16.406, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 965.0, + "total_tests": 153963.0, + "total_tests_per_thousand": 14.771, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 3634.0, + "new_tests_smoothed_per_thousand": 0.349, + "tests_per_case": 446.281, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-25", + "total_cases": 2878.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 171.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 276.119, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.603, + "total_deaths_per_million": 16.406, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 1074.0, + "total_tests": 155037.0, + "total_tests_per_thousand": 14.874, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 3336.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 530.727, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-26", + "total_cases": 2882.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 172.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 276.502, + "new_cases_per_million": 0.384, + "new_cases_smoothed_per_million": 0.63, + "total_deaths_per_million": 16.502, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 5954.0, + "total_tests": 160991.0, + "total_tests_per_thousand": 15.446, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 3570.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 543.261, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-27", + "total_cases": 2892.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 173.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 277.462, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 0.713, + "total_deaths_per_million": 16.598, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 5254.0, + "total_tests": 166245.0, + "total_tests_per_thousand": 15.95, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 3829.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 515.442, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-28", + "total_cases": 2903.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.571, + "total_deaths": 173.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 278.517, + "new_cases_per_million": 1.055, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 16.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 4222.0, + "total_tests": 170467.0, + "total_tests_per_thousand": 16.355, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 3770.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 497.925, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-29", + "total_cases": 2906.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.571, + "total_deaths": 175.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 278.805, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 16.79, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 4377.0, + "total_tests": 174844.0, + "total_tests_per_thousand": 16.775, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 3841.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 507.30199999999996, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-30", + "total_cases": 2909.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 279.093, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 16.79, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 3472.0, + "total_tests": 178316.0, + "total_tests_per_thousand": 17.108, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 3617.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 703.306, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-05-31", + "total_cases": 2915.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 279.668, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 16.79, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 2202.0, + "total_tests": 180518.0, + "total_tests_per_thousand": 17.319, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 3794.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 680.9739999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 62.04 + }, + { + "date": "2020-06-01", + "total_cases": 2917.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 279.86, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 16.79, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 1905.0, + "total_tests": 182423.0, + "total_tests_per_thousand": 17.502, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 3912.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 702.154, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-02", + "total_cases": 2918.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 179.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 279.956, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 17.173, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 3167.0, + "total_tests": 185590.0, + "total_tests_per_thousand": 17.806, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 3514.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 683.278, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-03", + "total_cases": 2937.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.429, + "total_deaths": 179.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 281.779, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 17.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 3359.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 522.511, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-04", + "total_cases": 2937.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 179.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 281.779, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 17.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 193929.0, + "total_tests_per_thousand": 18.606, + "new_tests_smoothed": 3352.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 690.118, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-05", + "total_cases": 2952.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.571, + "total_deaths": 180.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 283.218, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 0.63, + "total_deaths_per_million": 17.269, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.069, + "new_tests_smoothed": 3998.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 608.391, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-06", + "total_cases": 2967.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.286, + "total_deaths": 180.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 284.657, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 17.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests_smoothed": 4773.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 576.052, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-07", + "total_cases": 2980.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.286, + "total_deaths": 180.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 285.905, + "new_cases_per_million": 1.247, + "new_cases_smoothed_per_million": 0.891, + "total_deaths_per_million": 17.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests_smoothed": 5729.0, + "new_tests_smoothed_per_thousand": 0.55, + "tests_per_case": 616.969, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-08", + "total_cases": 2997.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.429, + "total_deaths": 180.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 287.536, + "new_cases_per_million": 1.631, + "new_cases_smoothed_per_million": 1.096, + "total_deaths_per_million": 17.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "total_tests": 229519.0, + "total_tests_per_thousand": 22.02, + "new_tests_smoothed": 6728.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 588.7, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-09", + "total_cases": 3049.0, + "new_cases": 52.0, + "new_cases_smoothed": 18.714, + "total_deaths": 182.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 292.525, + "new_cases_per_million": 4.989, + "new_cases_smoothed_per_million": 1.795, + "total_deaths_per_million": 17.461, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2240.0, + "total_tests": 231759.0, + "total_tests_per_thousand": 22.235, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 6596.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 352.458, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-10", + "total_cases": 3058.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.286, + "total_deaths": 183.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 293.388, + "new_cases_per_million": 0.863, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 6394.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 369.901, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-11", + "total_cases": 3068.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.714, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 294.347, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.795, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "total_tests": 237276.0, + "total_tests_per_thousand": 22.765, + "new_tests_smoothed": 6192.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 330.87, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-12", + "total_cases": 3088.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.429, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 296.266, + "new_cases_per_million": 1.919, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 6591.0, + "total_tests": 243867.0, + "total_tests_per_thousand": 23.397, + "new_tests_per_thousand": 0.632, + "new_tests_smoothed": 5863.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 301.772, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-13", + "total_cases": 3108.0, + "new_cases": 20.0, + "new_cases_smoothed": 20.143, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 298.185, + "new_cases_per_million": 1.919, + "new_cases_smoothed_per_million": 1.933, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 3585.0, + "total_tests": 247452.0, + "total_tests_per_thousand": 23.741, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 5104.0, + "new_tests_smoothed_per_thousand": 0.49, + "tests_per_case": 253.39, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-14", + "total_cases": 3112.0, + "new_cases": 4.0, + "new_cases_smoothed": 18.857, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 298.569, + "new_cases_per_million": 0.384, + "new_cases_smoothed_per_million": 1.809, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 3471.0, + "total_tests": 250923.0, + "total_tests_per_thousand": 24.074, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 4329.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 229.56799999999998, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-15", + "total_cases": 3121.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.714, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 299.432, + "new_cases_per_million": 0.863, + "new_cases_smoothed_per_million": 1.7, + "total_deaths_per_million": 17.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 3931.0, + "total_tests": 254854.0, + "total_tests_per_thousand": 24.451, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 3619.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 204.298, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-16", + "total_cases": 3134.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.143, + "total_deaths": 184.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 300.68, + "new_cases_per_million": 1.247, + "new_cases_smoothed_per_million": 1.165, + "total_deaths_per_million": 17.653, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4882.0, + "total_tests": 259736.0, + "total_tests_per_thousand": 24.919, + "new_tests_per_thousand": 0.468, + "new_tests_smoothed": 3997.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 329.165, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-17", + "total_cases": 3148.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.857, + "total_deaths": 185.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 302.023, + "new_cases_per_million": 1.343, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 17.749, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 5194.0, + "total_tests": 264930.0, + "total_tests_per_thousand": 25.418, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 4345.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 337.944, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-18", + "total_cases": 3203.0, + "new_cases": 55.0, + "new_cases_smoothed": 19.286, + "total_deaths": 187.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 307.3, + "new_cases_per_million": 5.277, + "new_cases_smoothed_per_million": 1.85, + "total_deaths_per_million": 17.941, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 5408.0, + "total_tests": 270338.0, + "total_tests_per_thousand": 25.937, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 4723.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 244.896, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-19", + "total_cases": 3227.0, + "new_cases": 24.0, + "new_cases_smoothed": 19.857, + "total_deaths": 188.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 309.602, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.905, + "total_deaths_per_million": 18.037, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 4373.0, + "total_tests": 274711.0, + "total_tests_per_thousand": 26.356, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 4406.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 221.885, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-20", + "total_cases": 3237.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.429, + "total_deaths": 189.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 310.562, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.768, + "total_deaths_per_million": 18.133, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 4184.0, + "total_tests": 278895.0, + "total_tests_per_thousand": 26.758, + "new_tests_per_thousand": 0.401, + "new_tests_smoothed": 4492.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 243.752, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-21", + "total_cases": 3256.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.571, + "total_deaths": 190.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 312.384, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 18.229, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 4251.0, + "total_tests": 283146.0, + "total_tests_per_thousand": 27.165, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 4603.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 223.757, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-22", + "total_cases": 3266.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.714, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 313.344, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.987, + "total_deaths_per_million": 18.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 2843.0, + "total_tests": 285989.0, + "total_tests_per_thousand": 27.438, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 4448.0, + "new_tests_smoothed_per_thousand": 0.427, + "tests_per_case": 214.731, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-06-23", + "total_cases": 3287.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.857, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 315.359, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.097, + "total_deaths_per_million": 18.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 5198.0, + "total_tests": 291187.0, + "total_tests_per_thousand": 27.937, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 4493.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 205.562, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-06-24", + "total_cases": 3302.0, + "new_cases": 15.0, + "new_cases_smoothed": 22.0, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 316.798, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.111, + "total_deaths_per_million": 18.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests_smoothed": 3798.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 172.636, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-06-25", + "total_cases": 3310.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.286, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 317.565, + "new_cases_per_million": 0.768, + "new_cases_smoothed_per_million": 1.467, + "total_deaths_per_million": 18.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 291840.0, + "total_tests_per_thousand": 27.999, + "new_tests_smoothed": 3072.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 200.972, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-06-26", + "total_cases": 3321.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.429, + "total_deaths": 191.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 318.621, + "new_cases_per_million": 1.055, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 18.325, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 4011.0, + "total_tests": 295851.0, + "total_tests_per_thousand": 28.384, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 3020.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 224.894, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-06-27", + "total_cases": 3343.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.143, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 320.731, + "new_cases_per_million": 2.111, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 18.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 5293.0, + "total_tests": 301144.0, + "total_tests_per_thousand": 28.892, + "new_tests_per_thousand": 0.508, + "new_tests_smoothed": 3178.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 209.868, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-28", + "total_cases": 3366.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.714, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 322.938, + "new_cases_per_million": 2.207, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 18.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3993.0, + "total_tests": 305137.0, + "total_tests_per_thousand": 29.275, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 3142.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 199.945, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-29", + "total_cases": 3376.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.714, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 323.897, + "new_cases_per_million": 0.959, + "new_cases_smoothed_per_million": 1.508, + "total_deaths_per_million": 18.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3255.0, + "total_tests": 308392.0, + "total_tests_per_thousand": 29.587, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 3200.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 203.636, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-06-30", + "total_cases": 3390.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 325.241, + "new_cases_per_million": 1.343, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 18.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 4383.0, + "total_tests": 312775.0, + "total_tests_per_thousand": 30.008, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 3084.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 209.592, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-07-01", + "total_cases": 3409.0, + "new_cases": 19.0, + "new_cases_smoothed": 15.286, + "total_deaths": 192.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 327.063, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.467, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3207.0, + "total_tests": 315982.0, + "total_tests_per_thousand": 30.316, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 3496.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 228.71, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 40.74 + }, + { + "date": "2020-07-02", + "total_cases": 3432.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.429, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 329.27, + "new_cases_per_million": 2.207, + "new_cases_smoothed_per_million": 1.672, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4445.0, + "total_tests": 320427.0, + "total_tests_per_thousand": 30.742, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 4084.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 234.328, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-03", + "total_cases": 3458.0, + "new_cases": 26.0, + "new_cases_smoothed": 19.571, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 331.765, + "new_cases_per_million": 2.494, + "new_cases_smoothed_per_million": 1.878, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 5024.0, + "total_tests": 325451.0, + "total_tests_per_thousand": 31.224, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 4229.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 216.08, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-04", + "total_cases": 3486.0, + "new_cases": 28.0, + "new_cases_smoothed": 20.429, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 334.451, + "new_cases_per_million": 2.686, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 6252.0, + "total_tests": 331703.0, + "total_tests_per_thousand": 31.824, + "new_tests_per_thousand": 0.6, + "new_tests_smoothed": 4366.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 213.72, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-05", + "total_cases": 3511.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.714, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 336.849, + "new_cases_per_million": 2.399, + "new_cases_smoothed_per_million": 1.987, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 5451.0, + "total_tests": 337154.0, + "total_tests_per_thousand": 32.347, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 4574.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 220.81400000000002, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-06", + "total_cases": 3519.0, + "new_cases": 8.0, + "new_cases_smoothed": 20.429, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 337.617, + "new_cases_per_million": 0.768, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3174.0, + "total_tests": 340328.0, + "total_tests_per_thousand": 32.651, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 4562.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 223.315, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-07", + "total_cases": 3562.0, + "new_cases": 43.0, + "new_cases_smoothed": 24.571, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 341.742, + "new_cases_per_million": 4.125, + "new_cases_smoothed_per_million": 2.357, + "total_deaths_per_million": 18.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 8756.0, + "total_tests": 349084.0, + "total_tests_per_thousand": 33.492, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 5187.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 211.09900000000002, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-08", + "total_cases": 3589.0, + "new_cases": 27.0, + "new_cases_smoothed": 25.714, + "total_deaths": 193.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 344.333, + "new_cases_per_million": 2.59, + "new_cases_smoothed_per_million": 2.467, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 6106.0, + "total_tests": 355190.0, + "total_tests_per_thousand": 34.077, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 5601.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 217.817, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-09", + "total_cases": 3622.0, + "new_cases": 33.0, + "new_cases_smoothed": 27.143, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 347.499, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 2.604, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3535.0, + "total_tests": 358725.0, + "total_tests_per_thousand": 34.416, + "new_tests_per_thousand": 0.339, + "new_tests_smoothed": 5471.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 201.563, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-10", + "total_cases": 3672.0, + "new_cases": 50.0, + "new_cases_smoothed": 30.571, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 352.296, + "new_cases_per_million": 4.797, + "new_cases_smoothed_per_million": 2.933, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 4687.0, + "total_tests": 363412.0, + "total_tests_per_thousand": 34.866, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 5423.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 177.388, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-11", + "total_cases": 3732.0, + "new_cases": 60.0, + "new_cases_smoothed": 35.143, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 358.052, + "new_cases_per_million": 5.756, + "new_cases_smoothed_per_million": 3.372, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 7755.0, + "total_tests": 371167.0, + "total_tests_per_thousand": 35.61, + "new_tests_per_thousand": 0.744, + "new_tests_smoothed": 5638.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 160.431, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-12", + "total_cases": 3772.0, + "new_cases": 40.0, + "new_cases_smoothed": 37.286, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 361.89, + "new_cases_per_million": 3.838, + "new_cases_smoothed_per_million": 3.577, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2765.0, + "total_tests": 373932.0, + "total_tests_per_thousand": 35.875, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 5254.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 140.912, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-07-13", + "total_cases": 3803.0, + "new_cases": 31.0, + "new_cases_smoothed": 40.571, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 364.864, + "new_cases_per_million": 2.974, + "new_cases_smoothed_per_million": 3.892, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 8520.0, + "total_tests": 382452.0, + "total_tests_per_thousand": 36.693, + "new_tests_per_thousand": 0.817, + "new_tests_smoothed": 6018.0, + "new_tests_smoothed_per_thousand": 0.577, + "tests_per_case": 148.33100000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-14", + "total_cases": 3826.0, + "new_cases": 23.0, + "new_cases_smoothed": 37.714, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 367.071, + "new_cases_per_million": 2.207, + "new_cases_smoothed_per_million": 3.618, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3855.0, + "total_tests": 386307.0, + "total_tests_per_thousand": 37.063, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 5318.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 141.00799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-15", + "total_cases": 3883.0, + "new_cases": 57.0, + "new_cases_smoothed": 42.0, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 372.539, + "new_cases_per_million": 5.469, + "new_cases_smoothed_per_million": 4.03, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5466.0, + "total_tests": 391773.0, + "total_tests_per_thousand": 37.587, + "new_tests_per_thousand": 0.524, + "new_tests_smoothed": 5226.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 124.429, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-16", + "total_cases": 3910.0, + "new_cases": 27.0, + "new_cases_smoothed": 41.143, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 375.13, + "new_cases_per_million": 2.59, + "new_cases_smoothed_per_million": 3.947, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6574.0, + "total_tests": 398347.0, + "total_tests_per_thousand": 38.218, + "new_tests_per_thousand": 0.631, + "new_tests_smoothed": 5660.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 137.569, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-17", + "total_cases": 3939.0, + "new_cases": 29.0, + "new_cases_smoothed": 38.143, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 377.912, + "new_cases_per_million": 2.782, + "new_cases_smoothed_per_million": 3.659, + "total_deaths_per_million": 18.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4325.0, + "total_tests": 402672.0, + "total_tests_per_thousand": 38.633, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 5609.0, + "new_tests_smoothed_per_thousand": 0.538, + "tests_per_case": 147.05200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-18", + "total_cases": 3964.0, + "new_cases": 25.0, + "new_cases_smoothed": 33.143, + "total_deaths": 194.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 380.311, + "new_cases_per_million": 2.399, + "new_cases_smoothed_per_million": 3.18, + "total_deaths_per_million": 18.613, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3368.0, + "total_tests": 406040.0, + "total_tests_per_thousand": 38.956, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 4982.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 150.319, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-19", + "total_cases": 3983.0, + "new_cases": 19.0, + "new_cases_smoothed": 30.143, + "total_deaths": 194.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 382.134, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 2.892, + "total_deaths_per_million": 18.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 4726.0, + "total_tests": 410766.0, + "total_tests_per_thousand": 39.409, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 5262.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 174.56900000000002, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-20", + "total_cases": 4007.0, + "new_cases": 24.0, + "new_cases_smoothed": 29.143, + "total_deaths": 194.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 384.436, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 18.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2994.0, + "total_tests": 413760.0, + "total_tests_per_thousand": 39.697, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 4473.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 153.485, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-21", + "total_cases": 4012.0, + "new_cases": 5.0, + "new_cases_smoothed": 26.571, + "total_deaths": 195.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 384.916, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 2.549, + "total_deaths_per_million": 18.709, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 6146.0, + "total_tests": 419906.0, + "total_tests_per_thousand": 40.286, + "new_tests_per_thousand": 0.59, + "new_tests_smoothed": 4800.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 180.645, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-22", + "total_cases": 4048.0, + "new_cases": 36.0, + "new_cases_smoothed": 23.571, + "total_deaths": 197.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 388.37, + "new_cases_per_million": 3.454, + "new_cases_smoothed_per_million": 2.261, + "total_deaths_per_million": 18.9, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 4769.0, + "total_tests": 424675.0, + "total_tests_per_thousand": 40.744, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 4700.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 199.394, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-23", + "total_cases": 4077.0, + "new_cases": 29.0, + "new_cases_smoothed": 23.857, + "total_deaths": 200.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 391.152, + "new_cases_per_million": 2.782, + "new_cases_smoothed_per_million": 2.289, + "total_deaths_per_million": 19.188, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 6189.0, + "total_tests": 430864.0, + "total_tests_per_thousand": 41.338, + "new_tests_per_thousand": 0.594, + "new_tests_smoothed": 4645.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 194.701, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-24", + "total_cases": 4110.0, + "new_cases": 33.0, + "new_cases_smoothed": 24.429, + "total_deaths": 201.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 394.318, + "new_cases_per_million": 3.166, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 19.284, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 5646.0, + "total_tests": 436510.0, + "total_tests_per_thousand": 41.879, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 4834.0, + "new_tests_smoothed_per_thousand": 0.464, + "tests_per_case": 197.88299999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-25", + "total_cases": 4135.0, + "new_cases": 25.0, + "new_cases_smoothed": 24.429, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 396.717, + "new_cases_per_million": 2.399, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 19.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests_smoothed": 5151.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 210.86, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-26", + "total_cases": 4166.0, + "new_cases": 31.0, + "new_cases_smoothed": 26.143, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 399.691, + "new_cases_per_million": 2.974, + "new_cases_smoothed_per_million": 2.508, + "total_deaths_per_million": 19.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "total_tests": 447685.0, + "total_tests_per_thousand": 42.951, + "new_tests_smoothed": 5274.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 201.738, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-27", + "total_cases": 4193.0, + "new_cases": 27.0, + "new_cases_smoothed": 26.571, + "total_deaths": 202.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 402.281, + "new_cases_per_million": 2.59, + "new_cases_smoothed_per_million": 2.549, + "total_deaths_per_million": 19.38, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 3632.0, + "total_tests": 451317.0, + "total_tests_per_thousand": 43.3, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 5365.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 201.90900000000002, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-28", + "total_cases": 4227.0, + "new_cases": 34.0, + "new_cases_smoothed": 30.714, + "total_deaths": 202.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 405.543, + "new_cases_per_million": 3.262, + "new_cases_smoothed_per_million": 2.947, + "total_deaths_per_million": 19.38, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 6223.0, + "total_tests": 457540.0, + "total_tests_per_thousand": 43.897, + "new_tests_per_thousand": 0.597, + "new_tests_smoothed": 5376.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 175.033, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-29", + "total_cases": 4279.0, + "new_cases": 52.0, + "new_cases_smoothed": 33.0, + "total_deaths": 203.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 410.532, + "new_cases_per_million": 4.989, + "new_cases_smoothed_per_million": 3.166, + "total_deaths_per_million": 19.476, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 53889.0, + "total_tests": 511429.0, + "total_tests_per_thousand": 49.067, + "new_tests_per_thousand": 5.17, + "new_tests_smoothed": 12393.0, + "new_tests_smoothed_per_thousand": 1.189, + "tests_per_case": 375.545, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-30", + "total_cases": 4336.0, + "new_cases": 57.0, + "new_cases_smoothed": 37.0, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 416.001, + "new_cases_per_million": 5.469, + "new_cases_smoothed_per_million": 3.55, + "total_deaths_per_million": 19.476, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 8458.0, + "total_tests": 519887.0, + "total_tests_per_thousand": 49.879, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 12718.0, + "new_tests_smoothed_per_thousand": 1.22, + "tests_per_case": 343.73, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-07-31", + "total_cases": 4401.0, + "new_cases": 65.0, + "new_cases_smoothed": 41.571, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 422.237, + "new_cases_per_million": 6.236, + "new_cases_smoothed_per_million": 3.988, + "total_deaths_per_million": 19.476, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 13311.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 320.19599999999997, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-01", + "total_cases": 4477.0, + "new_cases": 76.0, + "new_cases_smoothed": 48.857, + "total_deaths": 206.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 429.529, + "new_cases_per_million": 7.292, + "new_cases_smoothed_per_million": 4.687, + "total_deaths_per_million": 19.764, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.069, + "total_tests": 539493.0, + "total_tests_per_thousand": 51.76, + "new_tests_smoothed": 13914.0, + "new_tests_smoothed_per_thousand": 1.335, + "tests_per_case": 284.789, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-02", + "total_cases": 4587.0, + "new_cases": 110.0, + "new_cases_smoothed": 60.143, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 440.082, + "new_cases_per_million": 10.554, + "new_cases_smoothed_per_million": 5.77, + "total_deaths_per_million": 19.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 5946.0, + "total_tests": 545439.0, + "total_tests_per_thousand": 52.33, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 13965.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 232.197, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-03", + "total_cases": 4662.0, + "new_cases": 75.0, + "new_cases_smoothed": 67.0, + "total_deaths": 208.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 447.278, + "new_cases_per_million": 7.196, + "new_cases_smoothed_per_million": 6.428, + "total_deaths_per_million": 19.956, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 19417.0, + "total_tests": 564856.0, + "total_tests_per_thousand": 54.193, + "new_tests_per_thousand": 1.863, + "new_tests_smoothed": 16220.0, + "new_tests_smoothed_per_thousand": 1.556, + "tests_per_case": 242.09, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-04", + "total_cases": 4737.0, + "new_cases": 75.0, + "new_cases_smoothed": 72.857, + "total_deaths": 209.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 454.473, + "new_cases_per_million": 7.196, + "new_cases_smoothed_per_million": 6.99, + "total_deaths_per_million": 20.052, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 34853.0, + "total_tests": 599709.0, + "total_tests_per_thousand": 57.537, + "new_tests_per_thousand": 3.344, + "new_tests_smoothed": 20310.0, + "new_tests_smoothed_per_thousand": 1.949, + "tests_per_case": 278.765, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-05", + "total_cases": 4855.0, + "new_cases": 118.0, + "new_cases_smoothed": 82.286, + "total_deaths": 209.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 465.794, + "new_cases_per_million": 11.321, + "new_cases_smoothed_per_million": 7.895, + "total_deaths_per_million": 20.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 9874.0, + "total_tests": 609583.0, + "total_tests_per_thousand": 58.484, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 14022.0, + "new_tests_smoothed_per_thousand": 1.345, + "tests_per_case": 170.40599999999998, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-06", + "total_cases": 4973.0, + "new_cases": 118.0, + "new_cases_smoothed": 91.0, + "total_deaths": 210.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 477.115, + "new_cases_per_million": 11.321, + "new_cases_smoothed_per_million": 8.731, + "total_deaths_per_million": 20.148, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 9810.0, + "total_tests": 619393.0, + "total_tests_per_thousand": 59.425, + "new_tests_per_thousand": 0.941, + "new_tests_smoothed": 14215.0, + "new_tests_smoothed_per_thousand": 1.364, + "tests_per_case": 156.209, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-07", + "total_cases": 5123.0, + "new_cases": 150.0, + "new_cases_smoothed": 103.143, + "total_deaths": 210.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 491.507, + "new_cases_per_million": 14.391, + "new_cases_smoothed_per_million": 9.896, + "total_deaths_per_million": 20.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 11590.0, + "total_tests": 630983.0, + "total_tests_per_thousand": 60.537, + "new_tests_per_thousand": 1.112, + "new_tests_smoothed": 14470.0, + "new_tests_smoothed_per_thousand": 1.388, + "tests_per_case": 140.291, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-08", + "total_cases": 5270.0, + "new_cases": 147.0, + "new_cases_smoothed": 113.286, + "total_deaths": 210.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 505.61, + "new_cases_per_million": 14.103, + "new_cases_smoothed_per_million": 10.869, + "total_deaths_per_million": 20.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 9314.0, + "total_tests": 640297.0, + "total_tests_per_thousand": 61.431, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 14401.0, + "new_tests_smoothed_per_thousand": 1.382, + "tests_per_case": 127.12100000000001, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-09", + "total_cases": 5421.0, + "new_cases": 151.0, + "new_cases_smoothed": 119.143, + "total_deaths": 211.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 520.097, + "new_cases_per_million": 14.487, + "new_cases_smoothed_per_million": 11.431, + "total_deaths_per_million": 20.244, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 10701.0, + "total_tests": 650998.0, + "total_tests_per_thousand": 62.457, + "new_tests_per_thousand": 1.027, + "new_tests_smoothed": 15080.0, + "new_tests_smoothed_per_thousand": 1.447, + "tests_per_case": 126.571, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-10", + "total_cases": 5623.0, + "new_cases": 202.0, + "new_cases_smoothed": 137.286, + "total_deaths": 212.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 539.477, + "new_cases_per_million": 19.38, + "new_cases_smoothed_per_million": 13.171, + "total_deaths_per_million": 20.34, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 7180.0, + "total_tests": 658178.0, + "total_tests_per_thousand": 63.146, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 13332.0, + "new_tests_smoothed_per_thousand": 1.279, + "tests_per_case": 97.111, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-11", + "total_cases": 5749.0, + "new_cases": 126.0, + "new_cases_smoothed": 144.571, + "total_deaths": 213.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 551.566, + "new_cases_per_million": 12.089, + "new_cases_smoothed_per_million": 13.87, + "total_deaths_per_million": 20.435, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 10561.0, + "total_tests": 668739.0, + "total_tests_per_thousand": 64.16, + "new_tests_per_thousand": 1.013, + "new_tests_smoothed": 9861.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 68.208, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-12", + "total_cases": 5942.0, + "new_cases": 193.0, + "new_cases_smoothed": 155.286, + "total_deaths": 214.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 570.082, + "new_cases_per_million": 18.517, + "new_cases_smoothed_per_million": 14.898, + "total_deaths_per_million": 20.531, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 11046.0, + "total_tests": 679785.0, + "total_tests_per_thousand": 65.219, + "new_tests_per_thousand": 1.06, + "new_tests_smoothed": 10029.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 64.584, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-13", + "total_cases": 6177.0, + "new_cases": 235.0, + "new_cases_smoothed": 172.0, + "total_deaths": 216.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 592.628, + "new_cases_per_million": 22.546, + "new_cases_smoothed_per_million": 16.502, + "total_deaths_per_million": 20.723, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 7553.0, + "total_tests": 687338.0, + "total_tests_per_thousand": 65.944, + "new_tests_per_thousand": 0.725, + "new_tests_smoothed": 9706.0, + "new_tests_smoothed_per_thousand": 0.931, + "tests_per_case": 56.43, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-14", + "total_cases": 6381.0, + "new_cases": 204.0, + "new_cases_smoothed": 179.714, + "total_deaths": 221.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 612.2, + "new_cases_per_million": 19.572, + "new_cases_smoothed_per_million": 17.242, + "total_deaths_per_million": 21.203, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 17583.0, + "total_tests": 704921.0, + "total_tests_per_thousand": 67.631, + "new_tests_per_thousand": 1.687, + "new_tests_smoothed": 10563.0, + "new_tests_smoothed_per_thousand": 1.013, + "tests_per_case": 58.777, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-15", + "total_cases": 6632.0, + "new_cases": 251.0, + "new_cases_smoothed": 194.571, + "total_deaths": 223.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 636.282, + "new_cases_per_million": 24.081, + "new_cases_smoothed_per_million": 18.667, + "total_deaths_per_million": 21.395, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 10582.0, + "total_tests": 715503.0, + "total_tests_per_thousand": 68.646, + "new_tests_per_thousand": 1.015, + "new_tests_smoothed": 10744.0, + "new_tests_smoothed_per_thousand": 1.031, + "tests_per_case": 55.218999999999994, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-16", + "total_cases": 6858.0, + "new_cases": 226.0, + "new_cases_smoothed": 205.286, + "total_deaths": 226.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 657.964, + "new_cases_per_million": 21.683, + "new_cases_smoothed_per_million": 19.695, + "total_deaths_per_million": 21.683, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 3808.0, + "total_tests": 719311.0, + "total_tests_per_thousand": 69.012, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 9759.0, + "new_tests_smoothed_per_thousand": 0.936, + "tests_per_case": 47.538999999999994, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-17", + "total_cases": 7075.0, + "new_cases": 217.0, + "new_cases_smoothed": 207.429, + "total_deaths": 228.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 678.784, + "new_cases_per_million": 20.819, + "new_cases_smoothed_per_million": 19.901, + "total_deaths_per_million": 21.875, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.219, + "new_tests": 7650.0, + "total_tests": 726961.0, + "total_tests_per_thousand": 69.745, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 9826.0, + "new_tests_smoothed_per_thousand": 0.943, + "tests_per_case": 47.371, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 56.02 + }, + { + "date": "2020-08-18", + "total_cases": 7222.0, + "new_cases": 147.0, + "new_cases_smoothed": 210.429, + "total_deaths": 230.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 692.887, + "new_cases_per_million": 14.103, + "new_cases_smoothed_per_million": 20.189, + "total_deaths_per_million": 22.066, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 13910.0, + "total_tests": 740871.0, + "total_tests_per_thousand": 71.08, + "new_tests_per_thousand": 1.335, + "new_tests_smoothed": 10305.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 48.971000000000004, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 56.02 + }, + { + "date": "2020-08-19", + "total_cases": 7472.0, + "new_cases": 250.0, + "new_cases_smoothed": 218.571, + "total_deaths": 232.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 716.872, + "new_cases_per_million": 23.985, + "new_cases_smoothed_per_million": 20.97, + "total_deaths_per_million": 22.258, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 63411.0, + "total_tests": 804282.0, + "total_tests_per_thousand": 77.164, + "new_tests_per_thousand": 6.084, + "new_tests_smoothed": 17785.0, + "new_tests_smoothed_per_thousand": 1.706, + "tests_per_case": 81.369, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 56.02 + }, + { + "date": "2020-08-20", + "total_cases": 7684.0, + "new_cases": 212.0, + "new_cases_smoothed": 215.286, + "total_deaths": 235.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 737.212, + "new_cases_per_million": 20.34, + "new_cases_smoothed_per_million": 20.655, + "total_deaths_per_million": 22.546, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 12168.0, + "total_tests": 816450.0, + "total_tests_per_thousand": 78.331, + "new_tests_per_thousand": 1.167, + "new_tests_smoothed": 18445.0, + "new_tests_smoothed_per_thousand": 1.77, + "tests_per_case": 85.677, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 56.02 + }, + { + "date": "2020-08-21", + "total_cases": 7934.0, + "new_cases": 250.0, + "new_cases_smoothed": 221.857, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 761.197, + "new_cases_per_million": 23.985, + "new_cases_smoothed_per_million": 21.285, + "total_deaths_per_million": 22.546, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.192, + "new_tests_smoothed": 17453.0, + "new_tests_smoothed_per_thousand": 1.674, + "tests_per_case": 78.668, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-08-22", + "total_cases": 8138.0, + "new_cases": 204.0, + "new_cases_smoothed": 215.143, + "total_deaths": 238.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 780.769, + "new_cases_per_million": 19.572, + "new_cases_smoothed_per_million": 20.641, + "total_deaths_per_million": 22.834, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests_smoothed": 17462.0, + "new_tests_smoothed_per_thousand": 1.675, + "tests_per_case": 81.165, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-08-23", + "total_cases": 8381.0, + "new_cases": 243.0, + "new_cases_smoothed": 217.571, + "total_deaths": 240.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 804.083, + "new_cases_per_million": 23.314, + "new_cases_smoothed_per_million": 20.874, + "total_deaths_per_million": 23.026, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.192, + "total_tests": 848380.0, + "total_tests_per_thousand": 81.395, + "new_tests_smoothed": 18438.0, + "new_tests_smoothed_per_thousand": 1.769, + "tests_per_case": 84.745, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-08-24", + "total_cases": 8664.0, + "new_cases": 283.0, + "new_cases_smoothed": 227.0, + "total_deaths": 242.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 831.234, + "new_cases_per_million": 27.151, + "new_cases_smoothed_per_million": 21.779, + "total_deaths_per_million": 23.218, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 9758.0, + "total_tests": 858138.0, + "total_tests_per_thousand": 82.331, + "new_tests_per_thousand": 0.936, + "new_tests_smoothed": 18740.0, + "new_tests_smoothed_per_thousand": 1.798, + "tests_per_case": 82.555, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-08-25", + "total_cases": 8819.0, + "new_cases": 155.0, + "new_cases_smoothed": 228.143, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 846.105, + "new_cases_per_million": 14.871, + "new_cases_smoothed_per_million": 21.888, + "total_deaths_per_million": 23.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 14412.0, + "total_tests": 872550.0, + "total_tests_per_thousand": 83.713, + "new_tests_per_thousand": 1.383, + "new_tests_smoothed": 18811.0, + "new_tests_smoothed_per_thousand": 1.805, + "tests_per_case": 82.45299999999999, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-08-26", + "total_cases": 8987.0, + "new_cases": 168.0, + "new_cases_smoothed": 216.429, + "total_deaths": 243.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 862.223, + "new_cases_per_million": 16.118, + "new_cases_smoothed_per_million": 20.764, + "total_deaths_per_million": 23.314, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.151, + "new_tests_smoothed": 11958.0, + "new_tests_smoothed_per_thousand": 1.147, + "tests_per_case": 55.251000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-08-27", + "total_cases": 9280.0, + "new_cases": 293.0, + "new_cases_smoothed": 228.0, + "total_deaths": 248.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 890.334, + "new_cases_per_million": 28.111, + "new_cases_smoothed_per_million": 21.875, + "total_deaths_per_million": 23.793, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.178, + "total_tests": 903432.0, + "total_tests_per_thousand": 86.676, + "new_tests_smoothed": 12426.0, + "new_tests_smoothed_per_thousand": 1.192, + "tests_per_case": 54.5, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-08-28", + "total_cases": 9531.0, + "new_cases": 251.0, + "new_cases_smoothed": 228.143, + "total_deaths": 254.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 914.415, + "new_cases_per_million": 24.081, + "new_cases_smoothed_per_million": 21.888, + "total_deaths_per_million": 24.369, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 13833.0, + "total_tests": 917265.0, + "total_tests_per_thousand": 88.003, + "new_tests_per_thousand": 1.327, + "new_tests_smoothed": 12882.0, + "new_tests_smoothed_per_thousand": 1.236, + "tests_per_case": 56.465, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 9800.0, + "new_cases": 269.0, + "new_cases_smoothed": 237.429, + "total_deaths": 259.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 940.223, + "new_cases_per_million": 25.808, + "new_cases_smoothed_per_million": 22.779, + "total_deaths_per_million": 24.849, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 13737.0, + "total_tests": 931002.0, + "total_tests_per_thousand": 89.321, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 13324.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 56.118, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 9977.0, + "new_cases": 177.0, + "new_cases_smoothed": 228.0, + "total_deaths": 260.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 957.205, + "new_cases_per_million": 16.982, + "new_cases_smoothed_per_million": 21.875, + "total_deaths_per_million": 24.945, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 9880.0, + "total_tests": 940882.0, + "total_tests_per_thousand": 90.269, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 13215.0, + "new_tests_smoothed_per_thousand": 1.268, + "tests_per_case": 57.961000000000006, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 10134.0, + "new_cases": 157.0, + "new_cases_smoothed": 210.0, + "total_deaths": 262.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 972.268, + "new_cases_per_million": 15.063, + "new_cases_smoothed_per_million": 20.148, + "total_deaths_per_million": 25.137, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 8485.0, + "total_tests": 949367.0, + "total_tests_per_thousand": 91.083, + "new_tests_per_thousand": 0.814, + "new_tests_smoothed": 13033.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 62.062, + "positive_rate": 0.016, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 10317.0, + "new_cases": 183.0, + "new_cases_smoothed": 214.0, + "total_deaths": 266.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 989.825, + "new_cases_per_million": 17.557, + "new_cases_smoothed_per_million": 20.531, + "total_deaths_per_million": 25.52, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.329, + "new_tests": 16979.0, + "total_tests": 966346.0, + "total_tests_per_thousand": 92.712, + "new_tests_per_thousand": 1.629, + "new_tests_smoothed": 13399.0, + "new_tests_smoothed_per_thousand": 1.286, + "tests_per_case": 62.611999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 10524.0, + "new_cases": 207.0, + "new_cases_smoothed": 219.571, + "total_deaths": 271.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1009.685, + "new_cases_per_million": 19.86, + "new_cases_smoothed_per_million": 21.066, + "total_deaths_per_million": 26.0, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.384, + "new_tests": 14154.0, + "total_tests": 980500.0, + "total_tests_per_thousand": 94.07, + "new_tests_per_thousand": 1.358, + "new_tests_smoothed": 13216.0, + "new_tests_smoothed_per_thousand": 1.268, + "tests_per_case": 60.19, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 10757.0, + "new_cases": 233.0, + "new_cases_smoothed": 211.0, + "total_deaths": 273.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1032.039, + "new_cases_per_million": 22.354, + "new_cases_smoothed_per_million": 20.244, + "total_deaths_per_million": 26.192, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 12066.0, + "total_tests": 992566.0, + "total_tests_per_thousand": 95.228, + "new_tests_per_thousand": 1.158, + "new_tests_smoothed": 12733.0, + "new_tests_smoothed_per_thousand": 1.222, + "tests_per_case": 60.346000000000004, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 10998.0, + "new_cases": 241.0, + "new_cases_smoothed": 209.571, + "total_deaths": 278.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1055.161, + "new_cases_per_million": 23.122, + "new_cases_smoothed_per_million": 20.107, + "total_deaths_per_million": 26.672, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.329 + }, + { + "date": "2020-09-05", + "total_cases": 11200.0, + "new_cases": 202.0, + "new_cases_smoothed": 200.0, + "total_deaths": 279.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1074.541, + "new_cases_per_million": 19.38, + "new_cases_smoothed_per_million": 19.188, + "total_deaths_per_million": 26.768, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.274 + } + ] + }, + "GRL": { + "continent": "North America", + "location": "Greenland", + "population": 56772.0, + "population_density": 0.137, + "cardiovasc_death_rate": 199.941, + "diabetes_prevalence": 2.16, + "life_expectancy": 71.7, + "data": [ + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 35.229, + "new_cases_per_million": 35.229, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 35.229, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 35.229, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 35.229, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 70.457, + "new_cases_per_million": 35.229, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 70.457, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.072, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 12.582, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.686, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 10.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-28", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.529, + "new_cases_per_million": 52.843, + "new_cases_smoothed_per_million": 17.614, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-29", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 20.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-30", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-31", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-01", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.582, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-06", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-04-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-04-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-04-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 193.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-26", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.372, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.372, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.372, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-29", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 5.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-05-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-29", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 17.614, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-30", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-31", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-01", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-02", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-03", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-04", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-06", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-07", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-08", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-09", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-11", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-12", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-14", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-15", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-16", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-17", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-18", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-19", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-20", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-21", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-22", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-23", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-24", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-25", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-26", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-27", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-28", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-29", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-30", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-31", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-09-01", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GRD": { + "continent": "North America", + "location": "Grenada", + "population": 112519.0, + "population_density": 317.132, + "median_age": 29.4, + "aged_65_older": 7.304, + "aged_70_older": 5.021, + "gdp_per_capita": 13593.877, + "cardiovasc_death_rate": 243.964, + "diabetes_prevalence": 10.71, + "hospital_beds_per_thousand": 3.7, + "life_expectancy": 72.4, + "data": [ + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.887, + "new_cases_per_million": 8.887, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.887, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.887, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.887, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 62.212, + "new_cases_per_million": 53.324, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 7.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 62.212, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.986, + "new_cases_per_million": 17.775, + "new_cases_smoothed_per_million": 11.427, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.874, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 11.427, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 17.775, + "new_cases_smoothed_per_million": 6.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 17.775, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.311, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.311, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.311, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.973, + "new_cases_per_million": 26.662, + "new_cases_smoothed_per_million": 5.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 177.748, + "new_cases_per_million": 17.775, + "new_cases_smoothed_per_million": 6.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 177.748, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 177.748, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 8.887, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 213.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GUM": { + "continent": "Oceania", + "location": "Guam", + "population": 168783.0, + "population_density": 304.128, + "median_age": 31.4, + "aged_65_older": 9.551, + "aged_70_older": 5.493, + "cardiovasc_death_rate": 310.496, + "diabetes_prevalence": 21.52, + "life_expectancy": 80.07, + "data": [ + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 17.774, + "new_cases_per_million": 17.774, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 12.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 71.097, + "new_cases_per_million": 53.323, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-21", + "total_cases": 14.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 82.947, + "new_cases_per_million": 11.85, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-22", + "total_cases": 15.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 88.872, + "new_cases_per_million": 5.925, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 5.925, + "stringency_index": 67.59 + }, + { + "date": "2020-03-23", + "total_cases": 27.0, + "new_cases": 12.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 159.969, + "new_cases_per_million": 71.097, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-24", + "total_cases": 29.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 171.818, + "new_cases_per_million": 11.85, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-25", + "total_cases": 32.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 189.593, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 27.085, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-03-26", + "total_cases": 37.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 219.216, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 28.777, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-03-27", + "total_cases": 49.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 290.314, + "new_cases_per_million": 71.097, + "new_cases_smoothed_per_million": 31.317, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-03-28", + "total_cases": 51.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 302.163, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 31.317, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-03-29", + "total_cases": 55.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 325.862, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 33.856, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-30", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 331.787, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 24.545, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-31", + "total_cases": 60.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 355.486, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 26.238, + "total_deaths_per_million": 5.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-04-01", + "total_cases": 69.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 408.809, + "new_cases_per_million": 53.323, + "new_cases_smoothed_per_million": 31.317, + "total_deaths_per_million": 17.774, + "new_deaths_per_million": 11.85, + "new_deaths_smoothed_per_million": 1.693, + "stringency_index": 67.59 + }, + { + "date": "2020-04-02", + "total_cases": 77.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 456.207, + "new_cases_per_million": 47.398, + "new_cases_smoothed_per_million": 33.856, + "total_deaths_per_million": 17.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.693, + "stringency_index": 67.59 + }, + { + "date": "2020-04-03", + "total_cases": 82.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 485.831, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 27.931, + "total_deaths_per_million": 17.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.693, + "stringency_index": 67.59 + }, + { + "date": "2020-04-04", + "total_cases": 87.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 515.455, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 30.47, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 2.539, + "stringency_index": 67.59 + }, + { + "date": "2020-04-05", + "total_cases": 93.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 551.003, + "new_cases_per_million": 35.549, + "new_cases_smoothed_per_million": 32.163, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539, + "stringency_index": 67.59 + }, + { + "date": "2020-04-06", + "total_cases": 110.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 651.724, + "new_cases_per_million": 100.721, + "new_cases_smoothed_per_million": 45.705, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539, + "stringency_index": 67.59 + }, + { + "date": "2020-04-07", + "total_cases": 112.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 663.574, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 44.013, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539, + "stringency_index": 67.59 + }, + { + "date": "2020-04-08", + "total_cases": 121.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 716.897, + "new_cases_per_million": 53.323, + "new_cases_smoothed_per_million": 44.013, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-04-09", + "total_cases": 125.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 740.596, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 40.627, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-04-10", + "total_cases": 128.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 758.37, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 38.934, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 67.59 + }, + { + "date": "2020-04-11", + "total_cases": 130.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 770.22, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 36.395, + "total_deaths_per_million": 23.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-12", + "total_cases": 133.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 787.994, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 33.856, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-13", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 787.994, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.467, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-14", + "total_cases": 134.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 793.919, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-15", + "total_cases": 135.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 799.844, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 11.85, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-16", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 799.844, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.464, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-17", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 799.844, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-18", + "total_cases": 136.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 805.768, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.846, + "stringency_index": 75.93 + }, + { + "date": "2020-04-19", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 805.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-20", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 805.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-21", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 805.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.693, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-22", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 805.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-23", + "total_cases": 137.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 811.693, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 1.693, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-24", + "total_cases": 140.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 829.467, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-25", + "total_cases": 141.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 835.392, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-26", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 835.392, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-27", + "total_cases": 142.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 841.317, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-04-28", + "total_cases": 144.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 853.166, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 6.771, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 145.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.091, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 7.618, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 145.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 859.091, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.771, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 146.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 865.016, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 865.016, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 148.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 876.866, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 149.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 882.79, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 149.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 882.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-06", + "total_cases": 149.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 882.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.386, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 151.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.64, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-09", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-10", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-11", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.693, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-12", + "total_cases": 152.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 900.565, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-13", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 900.565, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-14", + "total_cases": 152.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 900.565, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-15", + "total_cases": 154.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-16", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-17", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-18", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-19", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.693, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-20", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.414, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.693, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-21", + "total_cases": 165.0, + "new_cases": 11.0, + "new_cases_smoothed": 1.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 977.587, + "new_cases_per_million": 65.172, + "new_cases_smoothed_per_million": 11.003, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-22", + "total_cases": 165.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 977.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.31, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-23", + "total_cases": 165.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 977.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.31, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-24", + "total_cases": 166.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.511, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-25", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-26", + "total_cases": 166.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 983.511, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.157, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-27", + "total_cases": 169.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1001.286, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 12.696, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-28", + "total_cases": 171.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1013.135, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-29", + "total_cases": 172.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1019.06, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-30", + "total_cases": 172.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1019.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-31", + "total_cases": 173.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1024.985, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-01", + "total_cases": 175.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1036.834, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 7.618, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-02", + "total_cases": 175.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1036.834, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.618, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-03", + "total_cases": 177.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1048.684, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 6.771, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-04", + "total_cases": 179.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1060.533, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 6.771, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-05", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1060.533, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-06", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1060.533, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-07", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1060.533, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-08", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1060.533, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.386, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-09", + "total_cases": 180.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1066.458, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-10", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1066.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-11", + "total_cases": 182.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1078.308, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-12", + "total_cases": 182.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1078.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-13", + "total_cases": 185.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1096.082, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-14", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1096.082, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-15", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1096.082, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-16", + "total_cases": 186.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1102.007, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-17", + "total_cases": 188.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1113.856, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 6.771, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-18", + "total_cases": 192.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1137.555, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 8.464, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-19", + "total_cases": 200.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1184.953, + "new_cases_per_million": 47.398, + "new_cases_smoothed_per_million": 15.235, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-20", + "total_cases": 200.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1184.953, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.696, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-21", + "total_cases": 222.0, + "new_cases": 22.0, + "new_cases_smoothed": 5.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1315.298, + "new_cases_per_million": 130.345, + "new_cases_smoothed_per_million": 31.317, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-22", + "total_cases": 222.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1315.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.317, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-23", + "total_cases": 225.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1333.073, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 33.009, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-24", + "total_cases": 226.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1338.997, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 32.163, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-25", + "total_cases": 231.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1368.621, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 33.009, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-26", + "total_cases": 247.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1463.418, + "new_cases_per_million": 94.796, + "new_cases_smoothed_per_million": 39.781, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-27", + "total_cases": 248.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1469.342, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 40.627, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-28", + "total_cases": 248.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1469.342, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.006, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-29", + "total_cases": 253.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1498.966, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 26.238, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-06-30", + "total_cases": 257.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1522.665, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 27.085, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-01", + "total_cases": 267.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1581.913, + "new_cases_per_million": 59.248, + "new_cases_smoothed_per_million": 34.702, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-02", + "total_cases": 280.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1658.935, + "new_cases_per_million": 77.022, + "new_cases_smoothed_per_million": 41.473, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-03", + "total_cases": 286.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1694.483, + "new_cases_per_million": 35.549, + "new_cases_smoothed_per_million": 33.009, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-04", + "total_cases": 288.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1706.333, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 33.856, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-05", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1706.333, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.856, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-06", + "total_cases": 301.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.355, + "new_cases_per_million": 77.022, + "new_cases_smoothed_per_million": 40.627, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-07", + "total_cases": 303.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.204, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 38.934, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-08", + "total_cases": 303.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.204, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.47, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-09", + "total_cases": 309.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1830.753, + "new_cases_per_million": 35.549, + "new_cases_smoothed_per_million": 24.545, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-10", + "total_cases": 310.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1836.678, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 20.313, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-11", + "total_cases": 312.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1848.527, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 20.313, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-12", + "total_cases": 312.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1848.527, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.313, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-13", + "total_cases": 312.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1848.527, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.31, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-14", + "total_cases": 312.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1848.527, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.618, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-15", + "total_cases": 313.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1854.452, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 8.464, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-16", + "total_cases": 314.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1860.377, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 4.232, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-17", + "total_cases": 314.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1860.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.386, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-18", + "total_cases": 315.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1866.302, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-19", + "total_cases": 315.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1866.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.539, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-07-20", + "total_cases": 319.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1890.001, + "new_cases_per_million": 23.699, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 327.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1937.399, + "new_cases_per_million": 47.398, + "new_cases_smoothed_per_million": 12.696, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 330.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1955.173, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 14.389, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 332.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1967.023, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 15.235, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 337.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1996.647, + "new_cases_per_million": 29.624, + "new_cases_smoothed_per_million": 19.467, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1996.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1996.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 346.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2049.969, + "new_cases_per_million": 53.323, + "new_cases_smoothed_per_million": 22.853, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 349.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2067.744, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 351.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2079.593, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 17.774, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 354.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2097.368, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 356.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2109.217, + "new_cases_per_million": 11.85, + "new_cases_smoothed_per_million": 16.082, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 359.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2126.991, + "new_cases_per_million": 17.774, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-02", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2126.991, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-03", + "total_cases": 368.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2180.314, + "new_cases_per_million": 53.323, + "new_cases_smoothed_per_million": 18.621, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-04", + "total_cases": 375.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2221.788, + "new_cases_per_million": 41.473, + "new_cases_smoothed_per_million": 22.006, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-05", + "total_cases": 389.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2304.734, + "new_cases_per_million": 82.947, + "new_cases_smoothed_per_million": 32.163, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-06", + "total_cases": 397.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2352.133, + "new_cases_per_million": 47.398, + "new_cases_smoothed_per_million": 36.395, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-07", + "total_cases": 411.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2435.079, + "new_cases_per_million": 82.947, + "new_cases_smoothed_per_million": 46.552, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-08", + "total_cases": 412.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2441.004, + "new_cases_per_million": 5.925, + "new_cases_smoothed_per_million": 44.859, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-09", + "total_cases": 412.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2441.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.859, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-10", + "total_cases": 418.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2476.553, + "new_cases_per_million": 35.549, + "new_cases_smoothed_per_million": 42.32, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-11", + "total_cases": 434.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2571.349, + "new_cases_per_million": 94.796, + "new_cases_smoothed_per_million": 49.937, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-12", + "total_cases": 449.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2660.221, + "new_cases_per_million": 88.872, + "new_cases_smoothed_per_million": 50.784, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-13", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2660.221, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.013, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-14", + "total_cases": 477.0, + "new_cases": 28.0, + "new_cases_smoothed": 9.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2826.114, + "new_cases_per_million": 165.893, + "new_cases_smoothed_per_million": 55.862, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-08-15", + "total_cases": 502.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2974.233, + "new_cases_per_million": 148.119, + "new_cases_smoothed_per_million": 76.176, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-16", + "total_cases": 516.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3057.18, + "new_cases_per_million": 82.947, + "new_cases_smoothed_per_million": 88.025, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-17", + "total_cases": 558.0, + "new_cases": 42.0, + "new_cases_smoothed": 20.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3306.02, + "new_cases_per_million": 248.84, + "new_cases_smoothed_per_million": 118.495, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-18", + "total_cases": 577.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3418.591, + "new_cases_per_million": 112.571, + "new_cases_smoothed_per_million": 121.035, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-19", + "total_cases": 599.0, + "new_cases": 22.0, + "new_cases_smoothed": 21.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3548.936, + "new_cases_per_million": 130.345, + "new_cases_smoothed_per_million": 126.959, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-08-20", + "total_cases": 599.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3548.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 126.959, + "total_deaths_per_million": 29.624, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-21", + "total_cases": 704.0, + "new_cases": 105.0, + "new_cases_smoothed": 32.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4171.036, + "new_cases_per_million": 622.101, + "new_cases_smoothed_per_million": 192.132, + "total_deaths_per_million": 35.549, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 0.846 + }, + { + "date": "2020-08-22", + "total_cases": 767.0, + "new_cases": 63.0, + "new_cases_smoothed": 37.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4544.297, + "new_cases_per_million": 373.26, + "new_cases_smoothed_per_million": 224.295, + "total_deaths_per_million": 41.473, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 1.693 + }, + { + "date": "2020-08-23", + "total_cases": 820.0, + "new_cases": 53.0, + "new_cases_smoothed": 43.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4858.309, + "new_cases_per_million": 314.013, + "new_cases_smoothed_per_million": 257.304, + "total_deaths_per_million": 41.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.693 + }, + { + "date": "2020-08-24", + "total_cases": 820.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4858.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 221.756, + "total_deaths_per_million": 41.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.693 + }, + { + "date": "2020-08-25", + "total_cases": 907.0, + "new_cases": 87.0, + "new_cases_smoothed": 47.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5373.764, + "new_cases_per_million": 515.455, + "new_cases_smoothed_per_million": 279.31, + "total_deaths_per_million": 41.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.693 + }, + { + "date": "2020-08-26", + "total_cases": 984.0, + "new_cases": 77.0, + "new_cases_smoothed": 55.0, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5829.971, + "new_cases_per_million": 456.207, + "new_cases_smoothed_per_million": 325.862, + "total_deaths_per_million": 53.323, + "new_deaths_per_million": 11.85, + "new_deaths_smoothed_per_million": 3.386 + }, + { + "date": "2020-08-27", + "total_cases": 1120.0, + "new_cases": 136.0, + "new_cases_smoothed": 74.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6635.739, + "new_cases_per_million": 805.768, + "new_cases_smoothed_per_million": 440.972, + "total_deaths_per_million": 53.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.386 + }, + { + "date": "2020-08-28", + "total_cases": 1232.0, + "new_cases": 112.0, + "new_cases_smoothed": 75.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7299.313, + "new_cases_per_million": 663.574, + "new_cases_smoothed_per_million": 446.897, + "total_deaths_per_million": 59.248, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 3.386 + }, + { + "date": "2020-08-29", + "total_cases": 1287.0, + "new_cases": 55.0, + "new_cases_smoothed": 74.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7625.176, + "new_cases_per_million": 325.862, + "new_cases_smoothed_per_million": 440.126, + "total_deaths_per_million": 59.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539 + }, + { + "date": "2020-08-30", + "total_cases": 1347.0, + "new_cases": 60.0, + "new_cases_smoothed": 75.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7980.662, + "new_cases_per_million": 355.486, + "new_cases_smoothed_per_million": 446.05, + "total_deaths_per_million": 59.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539 + }, + { + "date": "2020-08-31", + "total_cases": 1347.0, + "new_cases": 0.0, + "new_cases_smoothed": 75.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7980.662, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 446.05, + "total_deaths_per_million": 59.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539 + }, + { + "date": "2020-09-01", + "total_cases": 1395.0, + "new_cases": 48.0, + "new_cases_smoothed": 69.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8265.05, + "new_cases_per_million": 284.389, + "new_cases_smoothed_per_million": 413.041, + "total_deaths_per_million": 59.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539 + }, + { + "date": "2020-09-02", + "total_cases": 1447.0, + "new_cases": 52.0, + "new_cases_smoothed": 66.143, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8573.138, + "new_cases_per_million": 308.088, + "new_cases_smoothed_per_million": 391.881, + "total_deaths_per_million": 77.022, + "new_deaths_per_million": 17.774, + "new_deaths_smoothed_per_million": 3.386 + }, + { + "date": "2020-09-03", + "total_cases": 1447.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8573.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 276.771, + "total_deaths_per_million": 77.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.386 + }, + { + "date": "2020-09-04", + "total_cases": 1560.0, + "new_cases": 113.0, + "new_cases_smoothed": 46.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9242.637, + "new_cases_per_million": 669.499, + "new_cases_smoothed_per_million": 277.618, + "total_deaths_per_million": 77.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.539 + }, + { + "date": "2020-09-05", + "total_cases": 1619.0, + "new_cases": 59.0, + "new_cases_smoothed": 47.429, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9592.198, + "new_cases_per_million": 349.561, + "new_cases_smoothed_per_million": 281.003, + "total_deaths_per_million": 82.947, + "new_deaths_per_million": 5.925, + "new_deaths_smoothed_per_million": 3.386 + } + ] + }, + "GTM": { + "continent": "North America", + "location": "Guatemala", + "population": 17915567.0, + "population_density": 157.834, + "median_age": 22.9, + "aged_65_older": 4.694, + "aged_70_older": 3.016, + "gdp_per_capita": 7423.808, + "extreme_poverty": 8.7, + "cardiovasc_death_rate": 155.898, + "diabetes_prevalence": 10.18, + "handwashing_facilities": 76.665, + "hospital_beds_per_thousand": 0.6, + "life_expectancy": 74.3, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.056, + "new_cases_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.056, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.056, + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 6.0, + "new_cases": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.335, + "new_cases_per_million": 0.279, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-18", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.335, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-19", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.447, + "new_cases_per_million": 0.112, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-20", + "total_cases": 9.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.502, + "new_cases_per_million": 0.056, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-03-21", + "total_cases": 13.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.726, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 83.33 + }, + { + "date": "2020-03-22", + "total_cases": 17.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.949, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 93.52 + }, + { + "date": "2020-03-23", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.061, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-24", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.116, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-25", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.172, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.34, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-27", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.395, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-28", + "total_cases": 32.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.786, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.152, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.898, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 38.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 46.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.568, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 47.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.623, + "new_cases_per_million": 0.056, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 50.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.791, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 61.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.405, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.112, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 70.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.907, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 74.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.13, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 80.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.465, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 87.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.856, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 126.0, + "new_cases": 39.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.033, + "new_cases_per_million": 2.177, + "new_cases_smoothed_per_million": 0.63, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 137.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.647, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.694, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 153.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.54, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 156.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.708, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 167.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.322, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.742, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 180.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.047, + "new_cases_per_million": 0.726, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 196.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.94, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 0.869, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 214.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11.945, + "new_cases_per_million": 1.005, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 235.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13.117, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 257.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14.345, + "new_cases_per_million": 1.228, + "new_cases_smoothed_per_million": 0.829, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 289.0, + "new_cases": 32.0, + "new_cases_smoothed": 19.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.131, + "new_cases_per_million": 1.786, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 294.0, + "new_cases": 5.0, + "new_cases_smoothed": 18.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.41, + "new_cases_per_million": 0.279, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 316.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.638, + "new_cases_per_million": 1.228, + "new_cases_smoothed_per_million": 1.084, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 342.0, + "new_cases": 26.0, + "new_cases_smoothed": 20.857, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 19.09, + "new_cases_per_million": 1.451, + "new_cases_smoothed_per_million": 1.164, + "total_deaths_per_million": 0.558, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 384.0, + "new_cases": 42.0, + "new_cases_smoothed": 24.286, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 21.434, + "new_cases_per_million": 2.344, + "new_cases_smoothed_per_million": 1.356, + "total_deaths_per_million": 0.614, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 430.0, + "new_cases": 46.0, + "new_cases_smoothed": 27.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 24.001, + "new_cases_per_million": 2.568, + "new_cases_smoothed_per_million": 1.555, + "total_deaths_per_million": 0.614, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 473.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.857, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 26.402, + "new_cases_per_million": 2.4, + "new_cases_smoothed_per_million": 1.722, + "total_deaths_per_million": 0.726, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 500.0, + "new_cases": 27.0, + "new_cases_smoothed": 30.143, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.909, + "new_cases_per_million": 1.507, + "new_cases_smoothed_per_million": 1.682, + "total_deaths_per_million": 0.837, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 530.0, + "new_cases": 30.0, + "new_cases_smoothed": 33.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 29.583, + "new_cases_per_million": 1.675, + "new_cases_smoothed_per_million": 1.882, + "total_deaths_per_million": 0.837, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 557.0, + "new_cases": 27.0, + "new_cases_smoothed": 34.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 31.09, + "new_cases_per_million": 1.507, + "new_cases_smoothed_per_million": 1.922, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 585.0, + "new_cases": 28.0, + "new_cases_smoothed": 34.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 32.653, + "new_cases_per_million": 1.563, + "new_cases_smoothed_per_million": 1.938, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 599.0, + "new_cases": 14.0, + "new_cases_smoothed": 30.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 33.435, + "new_cases_per_million": 0.781, + "new_cases_smoothed_per_million": 1.714, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 644.0, + "new_cases": 45.0, + "new_cases_smoothed": 30.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 35.946, + "new_cases_per_million": 2.512, + "new_cases_smoothed_per_million": 1.706, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 688.0, + "new_cases": 44.0, + "new_cases_smoothed": 30.714, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 38.402, + "new_cases_per_million": 2.456, + "new_cases_smoothed_per_million": 1.714, + "total_deaths_per_million": 0.949, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 703.0, + "new_cases": 15.0, + "new_cases_smoothed": 29.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.24, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 1.619, + "total_deaths_per_million": 0.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 730.0, + "new_cases": 27.0, + "new_cases_smoothed": 28.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 40.747, + "new_cases_per_million": 1.507, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 1.061, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 763.0, + "new_cases": 33.0, + "new_cases_smoothed": 29.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 42.589, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 1.643, + "total_deaths_per_million": 1.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 798.0, + "new_cases": 35.0, + "new_cases_smoothed": 30.429, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 44.542, + "new_cases_per_million": 1.954, + "new_cases_smoothed_per_million": 1.698, + "total_deaths_per_million": 1.172, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 832.0, + "new_cases": 34.0, + "new_cases_smoothed": 33.286, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 46.44, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 1.858, + "total_deaths_per_million": 1.284, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 900.0, + "new_cases": 68.0, + "new_cases_smoothed": 36.571, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 50.236, + "new_cases_per_million": 3.796, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 1.34, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 967.0, + "new_cases": 67.0, + "new_cases_smoothed": 39.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 53.975, + "new_cases_per_million": 3.74, + "new_cases_smoothed_per_million": 2.225, + "total_deaths_per_million": 1.34, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 1052.0, + "new_cases": 85.0, + "new_cases_smoothed": 49.857, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 58.72, + "new_cases_per_million": 4.744, + "new_cases_smoothed_per_million": 2.783, + "total_deaths_per_million": 1.451, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-12", + "total_cases": 1114.0, + "new_cases": 62.0, + "new_cases_smoothed": 54.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 62.181, + "new_cases_per_million": 3.461, + "new_cases_smoothed_per_million": 3.062, + "total_deaths_per_million": 1.451, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-13", + "total_cases": 1199.0, + "new_cases": 85.0, + "new_cases_smoothed": 62.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 66.925, + "new_cases_per_million": 4.744, + "new_cases_smoothed_per_million": 3.477, + "total_deaths_per_million": 1.507, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-05-14", + "total_cases": 1342.0, + "new_cases": 143.0, + "new_cases_smoothed": 77.714, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 74.907, + "new_cases_per_million": 7.982, + "new_cases_smoothed_per_million": 4.338, + "total_deaths_per_million": 1.619, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-05-15", + "total_cases": 1518.0, + "new_cases": 176.0, + "new_cases_smoothed": 98.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 84.731, + "new_cases_per_million": 9.824, + "new_cases_smoothed_per_million": 5.47, + "total_deaths_per_million": 1.619, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 96.3 + }, + { + "date": "2020-05-16", + "total_cases": 1643.0, + "new_cases": 125.0, + "new_cases_smoothed": 106.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 91.708, + "new_cases_per_million": 6.977, + "new_cases_smoothed_per_million": 5.925, + "total_deaths_per_million": 1.675, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 96.3 + }, + { + "date": "2020-05-17", + "total_cases": 1763.0, + "new_cases": 120.0, + "new_cases_smoothed": 113.714, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 98.406, + "new_cases_per_million": 6.698, + "new_cases_smoothed_per_million": 6.347, + "total_deaths_per_million": 1.842, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-18", + "total_cases": 1912.0, + "new_cases": 149.0, + "new_cases_smoothed": 122.857, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 106.723, + "new_cases_per_million": 8.317, + "new_cases_smoothed_per_million": 6.858, + "total_deaths_per_million": 1.954, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 96.3 + }, + { + "date": "2020-05-19", + "total_cases": 2001.0, + "new_cases": 89.0, + "new_cases_smoothed": 126.714, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 111.691, + "new_cases_per_million": 4.968, + "new_cases_smoothed_per_million": 7.073, + "total_deaths_per_million": 2.121, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 96.3 + }, + { + "date": "2020-05-20", + "total_cases": 2133.0, + "new_cases": 132.0, + "new_cases_smoothed": 133.429, + "total_deaths": 43.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 119.058, + "new_cases_per_million": 7.368, + "new_cases_smoothed_per_million": 7.448, + "total_deaths_per_million": 2.4, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 96.3 + }, + { + "date": "2020-05-21", + "total_cases": 2265.0, + "new_cases": 132.0, + "new_cases_smoothed": 131.857, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 126.426, + "new_cases_per_million": 7.368, + "new_cases_smoothed_per_million": 7.36, + "total_deaths_per_million": 2.512, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 96.3 + }, + { + "date": "2020-05-22", + "total_cases": 2512.0, + "new_cases": 247.0, + "new_cases_smoothed": 142.0, + "total_deaths": 48.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 140.213, + "new_cases_per_million": 13.787, + "new_cases_smoothed_per_million": 7.926, + "total_deaths_per_million": 2.679, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.152, + "stringency_index": 96.3 + }, + { + "date": "2020-05-23", + "total_cases": 2743.0, + "new_cases": 231.0, + "new_cases_smoothed": 157.143, + "total_deaths": 51.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 153.107, + "new_cases_per_million": 12.894, + "new_cases_smoothed_per_million": 8.771, + "total_deaths_per_million": 2.847, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 96.3 + }, + { + "date": "2020-05-24", + "total_cases": 3054.0, + "new_cases": 311.0, + "new_cases_smoothed": 184.429, + "total_deaths": 55.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 170.466, + "new_cases_per_million": 17.359, + "new_cases_smoothed_per_million": 10.294, + "total_deaths_per_million": 3.07, + "new_deaths_per_million": 0.223, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 96.3 + }, + { + "date": "2020-05-25", + "total_cases": 3424.0, + "new_cases": 370.0, + "new_cases_smoothed": 216.0, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 191.119, + "new_cases_per_million": 20.652, + "new_cases_smoothed_per_million": 12.057, + "total_deaths_per_million": 3.237, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 96.3 + }, + { + "date": "2020-05-26", + "total_cases": 3760.0, + "new_cases": 336.0, + "new_cases_smoothed": 251.286, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 209.873, + "new_cases_per_million": 18.755, + "new_cases_smoothed_per_million": 14.026, + "total_deaths_per_million": 3.293, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 96.3 + }, + { + "date": "2020-05-27", + "total_cases": 3954.0, + "new_cases": 194.0, + "new_cases_smoothed": 260.143, + "total_deaths": 63.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 220.702, + "new_cases_per_million": 10.829, + "new_cases_smoothed_per_million": 14.52, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.223, + "new_deaths_smoothed_per_million": 0.159, + "stringency_index": 96.3 + }, + { + "date": "2020-05-28", + "total_cases": 4145.0, + "new_cases": 191.0, + "new_cases_smoothed": 268.571, + "total_deaths": 68.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 231.363, + "new_cases_per_million": 10.661, + "new_cases_smoothed_per_million": 14.991, + "total_deaths_per_million": 3.796, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 96.3 + }, + { + "date": "2020-05-29", + "total_cases": 4348.0, + "new_cases": 203.0, + "new_cases_smoothed": 262.286, + "total_deaths": 80.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 242.694, + "new_cases_per_million": 11.331, + "new_cases_smoothed_per_million": 14.64, + "total_deaths_per_million": 4.465, + "new_deaths_per_million": 0.67, + "new_deaths_smoothed_per_million": 0.255, + "stringency_index": 96.3 + }, + { + "date": "2020-05-30", + "total_cases": 4607.0, + "new_cases": 259.0, + "new_cases_smoothed": 266.286, + "total_deaths": 90.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 257.151, + "new_cases_per_million": 14.457, + "new_cases_smoothed_per_million": 14.863, + "total_deaths_per_million": 5.024, + "new_deaths_per_million": 0.558, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 96.3 + }, + { + "date": "2020-05-31", + "total_cases": 4739.0, + "new_cases": 132.0, + "new_cases_smoothed": 240.714, + "total_deaths": 102.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 264.519, + "new_cases_per_million": 7.368, + "new_cases_smoothed_per_million": 13.436, + "total_deaths_per_million": 5.693, + "new_deaths_per_million": 0.67, + "new_deaths_smoothed_per_million": 0.375, + "stringency_index": 96.3 + }, + { + "date": "2020-06-01", + "total_cases": 5087.0, + "new_cases": 348.0, + "new_cases_smoothed": 237.571, + "total_deaths": 108.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 283.943, + "new_cases_per_million": 19.424, + "new_cases_smoothed_per_million": 13.261, + "total_deaths_per_million": 6.028, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 0.399, + "stringency_index": 96.3 + }, + { + "date": "2020-06-02", + "total_cases": 5336.0, + "new_cases": 249.0, + "new_cases_smoothed": 225.143, + "total_deaths": 116.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 297.842, + "new_cases_per_million": 13.899, + "new_cases_smoothed_per_million": 12.567, + "total_deaths_per_million": 6.475, + "new_deaths_per_million": 0.447, + "new_deaths_smoothed_per_million": 0.455, + "stringency_index": 96.3 + }, + { + "date": "2020-06-03", + "total_cases": 5586.0, + "new_cases": 250.0, + "new_cases_smoothed": 233.143, + "total_deaths": 123.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 311.796, + "new_cases_per_million": 13.954, + "new_cases_smoothed_per_million": 13.013, + "total_deaths_per_million": 6.866, + "new_deaths_per_million": 0.391, + "new_deaths_smoothed_per_million": 0.478, + "stringency_index": 96.3 + }, + { + "date": "2020-06-04", + "total_cases": 5760.0, + "new_cases": 174.0, + "new_cases_smoothed": 230.714, + "total_deaths": 143.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 321.508, + "new_cases_per_million": 9.712, + "new_cases_smoothed_per_million": 12.878, + "total_deaths_per_million": 7.982, + "new_deaths_per_million": 1.116, + "new_deaths_smoothed_per_million": 0.598, + "stringency_index": 96.3 + }, + { + "date": "2020-06-05", + "total_cases": 6154.0, + "new_cases": 394.0, + "new_cases_smoothed": 258.0, + "total_deaths": 158.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 343.5, + "new_cases_per_million": 21.992, + "new_cases_smoothed_per_million": 14.401, + "total_deaths_per_million": 8.819, + "new_deaths_per_million": 0.837, + "new_deaths_smoothed_per_million": 0.622, + "stringency_index": 96.3 + }, + { + "date": "2020-06-06", + "total_cases": 6485.0, + "new_cases": 331.0, + "new_cases_smoothed": 268.286, + "total_deaths": 216.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 361.976, + "new_cases_per_million": 18.476, + "new_cases_smoothed_per_million": 14.975, + "total_deaths_per_million": 12.057, + "new_deaths_per_million": 3.237, + "new_deaths_smoothed_per_million": 1.005, + "stringency_index": 96.3 + }, + { + "date": "2020-06-07", + "total_cases": 6792.0, + "new_cases": 307.0, + "new_cases_smoothed": 293.286, + "total_deaths": 230.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 379.112, + "new_cases_per_million": 17.136, + "new_cases_smoothed_per_million": 16.37, + "total_deaths_per_million": 12.838, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 1.021, + "stringency_index": 96.3 + }, + { + "date": "2020-06-08", + "total_cases": 7055.0, + "new_cases": 263.0, + "new_cases_smoothed": 281.143, + "total_deaths": 252.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 393.792, + "new_cases_per_million": 14.68, + "new_cases_smoothed_per_million": 15.693, + "total_deaths_per_million": 14.066, + "new_deaths_per_million": 1.228, + "new_deaths_smoothed_per_million": 1.148, + "stringency_index": 96.3 + }, + { + "date": "2020-06-09", + "total_cases": 7502.0, + "new_cases": 447.0, + "new_cases_smoothed": 309.429, + "total_deaths": 267.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 418.742, + "new_cases_per_million": 24.95, + "new_cases_smoothed_per_million": 17.271, + "total_deaths_per_million": 14.903, + "new_deaths_per_million": 0.837, + "new_deaths_smoothed_per_million": 1.204, + "stringency_index": 96.3 + }, + { + "date": "2020-06-10", + "total_cases": 7866.0, + "new_cases": 364.0, + "new_cases_smoothed": 325.714, + "total_deaths": 289.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.714, + "total_cases_per_million": 439.06, + "new_cases_per_million": 20.318, + "new_cases_smoothed_per_million": 18.181, + "total_deaths_per_million": 16.131, + "new_deaths_per_million": 1.228, + "new_deaths_smoothed_per_million": 1.324, + "stringency_index": 96.3 + }, + { + "date": "2020-06-11", + "total_cases": 8221.0, + "new_cases": 355.0, + "new_cases_smoothed": 351.571, + "total_deaths": 316.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 458.875, + "new_cases_per_million": 19.815, + "new_cases_smoothed_per_million": 19.624, + "total_deaths_per_million": 17.638, + "new_deaths_per_million": 1.507, + "new_deaths_smoothed_per_million": 1.379, + "stringency_index": 96.3 + }, + { + "date": "2020-06-12", + "total_cases": 8561.0, + "new_cases": 340.0, + "new_cases_smoothed": 343.857, + "total_deaths": 334.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 477.853, + "new_cases_per_million": 18.978, + "new_cases_smoothed_per_million": 19.193, + "total_deaths_per_million": 18.643, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 1.403, + "stringency_index": 96.3 + }, + { + "date": "2020-06-13", + "total_cases": 8982.0, + "new_cases": 421.0, + "new_cases_smoothed": 356.714, + "total_deaths": 351.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 501.352, + "new_cases_per_million": 23.499, + "new_cases_smoothed_per_million": 19.911, + "total_deaths_per_million": 19.592, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 1.076, + "stringency_index": 96.3 + }, + { + "date": "2020-06-14", + "total_cases": 9491.0, + "new_cases": 509.0, + "new_cases_smoothed": 385.571, + "total_deaths": 367.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 529.763, + "new_cases_per_million": 28.411, + "new_cases_smoothed_per_million": 21.522, + "total_deaths_per_million": 20.485, + "new_deaths_per_million": 0.893, + "new_deaths_smoothed_per_million": 1.092, + "stringency_index": 96.3 + }, + { + "date": "2020-06-15", + "total_cases": 9845.0, + "new_cases": 354.0, + "new_cases_smoothed": 398.571, + "total_deaths": 384.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 549.522, + "new_cases_per_million": 19.759, + "new_cases_smoothed_per_million": 22.247, + "total_deaths_per_million": 21.434, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 1.053, + "stringency_index": 96.3 + }, + { + "date": "2020-06-16", + "total_cases": 10272.0, + "new_cases": 427.0, + "new_cases_smoothed": 395.714, + "total_deaths": 399.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 573.356, + "new_cases_per_million": 23.834, + "new_cases_smoothed_per_million": 22.088, + "total_deaths_per_million": 22.271, + "new_deaths_per_million": 0.837, + "new_deaths_smoothed_per_million": 1.053, + "stringency_index": 96.3 + }, + { + "date": "2020-06-17", + "total_cases": 10706.0, + "new_cases": 434.0, + "new_cases_smoothed": 405.714, + "total_deaths": 418.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 597.581, + "new_cases_per_million": 24.225, + "new_cases_smoothed_per_million": 22.646, + "total_deaths_per_million": 23.332, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 1.029, + "stringency_index": 96.3 + }, + { + "date": "2020-06-18", + "total_cases": 11251.0, + "new_cases": 545.0, + "new_cases_smoothed": 432.857, + "total_deaths": 432.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 628.001, + "new_cases_per_million": 30.42, + "new_cases_smoothed_per_million": 24.161, + "total_deaths_per_million": 24.113, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.925, + "stringency_index": 96.3 + }, + { + "date": "2020-06-19", + "total_cases": 11868.0, + "new_cases": 617.0, + "new_cases_smoothed": 472.429, + "total_deaths": 449.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 662.441, + "new_cases_per_million": 34.439, + "new_cases_smoothed_per_million": 26.37, + "total_deaths_per_million": 25.062, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 0.917, + "stringency_index": 96.3 + }, + { + "date": "2020-06-20", + "total_cases": 12509.0, + "new_cases": 641.0, + "new_cases_smoothed": 503.857, + "total_deaths": 483.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 698.22, + "new_cases_per_million": 35.779, + "new_cases_smoothed_per_million": 28.124, + "total_deaths_per_million": 26.96, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 1.053, + "stringency_index": 96.3 + }, + { + "date": "2020-06-21", + "total_cases": 12755.0, + "new_cases": 246.0, + "new_cases_smoothed": 466.286, + "total_deaths": 514.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 711.951, + "new_cases_per_million": 13.731, + "new_cases_smoothed_per_million": 26.027, + "total_deaths_per_million": 28.69, + "new_deaths_per_million": 1.73, + "new_deaths_smoothed_per_million": 1.172, + "stringency_index": 96.3 + }, + { + "date": "2020-06-22", + "total_cases": 13145.0, + "new_cases": 390.0, + "new_cases_smoothed": 471.429, + "total_deaths": 531.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 733.719, + "new_cases_per_million": 21.769, + "new_cases_smoothed_per_million": 26.314, + "total_deaths_per_million": 29.639, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 1.172, + "stringency_index": 96.3 + }, + { + "date": "2020-06-23", + "total_cases": 13769.0, + "new_cases": 624.0, + "new_cases_smoothed": 499.571, + "total_deaths": 547.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 768.549, + "new_cases_per_million": 34.83, + "new_cases_smoothed_per_million": 27.885, + "total_deaths_per_million": 30.532, + "new_deaths_per_million": 0.893, + "new_deaths_smoothed_per_million": 1.18, + "stringency_index": 96.3 + }, + { + "date": "2020-06-24", + "total_cases": 14540.0, + "new_cases": 771.0, + "new_cases_smoothed": 547.714, + "total_deaths": 582.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 811.585, + "new_cases_per_million": 43.035, + "new_cases_smoothed_per_million": 30.572, + "total_deaths_per_million": 32.486, + "new_deaths_per_million": 1.954, + "new_deaths_smoothed_per_million": 1.308, + "stringency_index": 96.3 + }, + { + "date": "2020-06-25", + "total_cases": 14819.0, + "new_cases": 279.0, + "new_cases_smoothed": 509.714, + "total_deaths": 601.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 827.158, + "new_cases_per_million": 15.573, + "new_cases_smoothed_per_million": 28.451, + "total_deaths_per_million": 33.546, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 1.348, + "stringency_index": 96.3 + }, + { + "date": "2020-06-26", + "total_cases": 15619.0, + "new_cases": 800.0, + "new_cases_smoothed": 535.857, + "total_deaths": 623.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 871.812, + "new_cases_per_million": 44.654, + "new_cases_smoothed_per_million": 29.91, + "total_deaths_per_million": 34.774, + "new_deaths_per_million": 1.228, + "new_deaths_smoothed_per_million": 1.387, + "stringency_index": 96.3 + }, + { + "date": "2020-06-27", + "total_cases": 15828.0, + "new_cases": 209.0, + "new_cases_smoothed": 474.143, + "total_deaths": 672.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 883.477, + "new_cases_per_million": 11.666, + "new_cases_smoothed_per_million": 26.465, + "total_deaths_per_million": 37.509, + "new_deaths_per_million": 2.735, + "new_deaths_smoothed_per_million": 1.507, + "stringency_index": 96.3 + }, + { + "date": "2020-06-28", + "total_cases": 16397.0, + "new_cases": 569.0, + "new_cases_smoothed": 520.286, + "total_deaths": 706.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 27.429, + "total_cases_per_million": 915.238, + "new_cases_per_million": 31.76, + "new_cases_smoothed_per_million": 29.041, + "total_deaths_per_million": 39.407, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 1.531, + "stringency_index": 96.3 + }, + { + "date": "2020-06-29", + "total_cases": 16930.0, + "new_cases": 533.0, + "new_cases_smoothed": 540.714, + "total_deaths": 727.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 944.988, + "new_cases_per_million": 29.751, + "new_cases_smoothed_per_million": 30.181, + "total_deaths_per_million": 40.579, + "new_deaths_per_million": 1.172, + "new_deaths_smoothed_per_million": 1.563, + "stringency_index": 96.3 + }, + { + "date": "2020-06-30", + "total_cases": 17409.0, + "new_cases": 479.0, + "new_cases_smoothed": 520.0, + "total_deaths": 746.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 971.725, + "new_cases_per_million": 26.737, + "new_cases_smoothed_per_million": 29.025, + "total_deaths_per_million": 41.64, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 1.587, + "stringency_index": 96.3 + }, + { + "date": "2020-07-01", + "total_cases": 18096.0, + "new_cases": 687.0, + "new_cases_smoothed": 508.0, + "total_deaths": 773.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 1010.071, + "new_cases_per_million": 38.347, + "new_cases_smoothed_per_million": 28.355, + "total_deaths_per_million": 43.147, + "new_deaths_per_million": 1.507, + "new_deaths_smoothed_per_million": 1.523, + "stringency_index": 96.3 + }, + { + "date": "2020-07-02", + "total_cases": 19011.0, + "new_cases": 915.0, + "new_cases_smoothed": 598.857, + "total_deaths": 817.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 1061.144, + "new_cases_per_million": 51.073, + "new_cases_smoothed_per_million": 33.427, + "total_deaths_per_million": 45.603, + "new_deaths_per_million": 2.456, + "new_deaths_smoothed_per_million": 1.722, + "stringency_index": 96.3 + }, + { + "date": "2020-07-03", + "total_cases": 20072.0, + "new_cases": 1061.0, + "new_cases_smoothed": 636.143, + "total_deaths": 843.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 1120.366, + "new_cases_per_million": 59.222, + "new_cases_smoothed_per_million": 35.508, + "total_deaths_per_million": 47.054, + "new_deaths_per_million": 1.451, + "new_deaths_smoothed_per_million": 1.754, + "stringency_index": 96.3 + }, + { + "date": "2020-07-04", + "total_cases": 21293.0, + "new_cases": 1221.0, + "new_cases_smoothed": 780.714, + "total_deaths": 880.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 1188.519, + "new_cases_per_million": 68.153, + "new_cases_smoothed_per_million": 43.577, + "total_deaths_per_million": 49.119, + "new_deaths_per_million": 2.065, + "new_deaths_smoothed_per_million": 1.659, + "stringency_index": 96.3 + }, + { + "date": "2020-07-05", + "total_cases": 22501.0, + "new_cases": 1208.0, + "new_cases_smoothed": 872.0, + "total_deaths": 920.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 1255.947, + "new_cases_per_million": 67.427, + "new_cases_smoothed_per_million": 48.673, + "total_deaths_per_million": 51.352, + "new_deaths_per_million": 2.233, + "new_deaths_smoothed_per_million": 1.706, + "stringency_index": 96.3 + }, + { + "date": "2020-07-06", + "total_cases": 23248.0, + "new_cases": 747.0, + "new_cases_smoothed": 902.571, + "total_deaths": 947.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 1297.642, + "new_cases_per_million": 41.696, + "new_cases_smoothed_per_million": 50.379, + "total_deaths_per_million": 52.859, + "new_deaths_per_million": 1.507, + "new_deaths_smoothed_per_million": 1.754, + "stringency_index": 96.3 + }, + { + "date": "2020-07-07", + "total_cases": 23972.0, + "new_cases": 724.0, + "new_cases_smoothed": 937.571, + "total_deaths": 981.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 1338.054, + "new_cases_per_million": 40.412, + "new_cases_smoothed_per_million": 52.333, + "total_deaths_per_million": 54.757, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 1.874, + "stringency_index": 96.3 + }, + { + "date": "2020-07-08", + "total_cases": 24787.0, + "new_cases": 815.0, + "new_cases_smoothed": 955.857, + "total_deaths": 1004.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 1383.545, + "new_cases_per_million": 45.491, + "new_cases_smoothed_per_million": 53.353, + "total_deaths_per_million": 56.041, + "new_deaths_per_million": 1.284, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 96.3 + }, + { + "date": "2020-07-09", + "total_cases": 25411.0, + "new_cases": 624.0, + "new_cases_smoothed": 914.286, + "total_deaths": 1053.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 1418.375, + "new_cases_per_million": 34.83, + "new_cases_smoothed_per_million": 51.033, + "total_deaths_per_million": 58.776, + "new_deaths_per_million": 2.735, + "new_deaths_smoothed_per_million": 1.882, + "stringency_index": 96.3 + }, + { + "date": "2020-07-10", + "total_cases": 26658.0, + "new_cases": 1247.0, + "new_cases_smoothed": 940.857, + "total_deaths": 1092.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 1487.98, + "new_cases_per_million": 69.604, + "new_cases_smoothed_per_million": 52.516, + "total_deaths_per_million": 60.953, + "new_deaths_per_million": 2.177, + "new_deaths_smoothed_per_million": 1.986, + "stringency_index": 96.3 + }, + { + "date": "2020-07-11", + "total_cases": 27619.0, + "new_cases": 961.0, + "new_cases_smoothed": 903.714, + "total_deaths": 1139.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 37.0, + "total_cases_per_million": 1541.62, + "new_cases_per_million": 53.641, + "new_cases_smoothed_per_million": 50.443, + "total_deaths_per_million": 63.576, + "new_deaths_per_million": 2.623, + "new_deaths_smoothed_per_million": 2.065, + "stringency_index": 96.3 + }, + { + "date": "2020-07-12", + "total_cases": 28598.0, + "new_cases": 979.0, + "new_cases_smoothed": 871.0, + "total_deaths": 1172.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 1596.265, + "new_cases_per_million": 54.645, + "new_cases_smoothed_per_million": 48.617, + "total_deaths_per_million": 65.418, + "new_deaths_per_million": 1.842, + "new_deaths_smoothed_per_million": 2.009, + "stringency_index": 96.3 + }, + { + "date": "2020-07-13", + "total_cases": 29355.0, + "new_cases": 757.0, + "new_cases_smoothed": 872.429, + "total_deaths": 1219.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 1638.519, + "new_cases_per_million": 42.254, + "new_cases_smoothed_per_million": 48.697, + "total_deaths_per_million": 68.041, + "new_deaths_per_million": 2.623, + "new_deaths_smoothed_per_million": 2.169, + "stringency_index": 96.3 + }, + { + "date": "2020-07-14", + "total_cases": 29742.0, + "new_cases": 387.0, + "new_cases_smoothed": 824.286, + "total_deaths": 1244.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 1660.12, + "new_cases_per_million": 21.601, + "new_cases_smoothed_per_million": 46.009, + "total_deaths_per_million": 69.437, + "new_deaths_per_million": 1.395, + "new_deaths_smoothed_per_million": 2.097, + "stringency_index": 96.3 + }, + { + "date": "2020-07-15", + "total_cases": 30872.0, + "new_cases": 1130.0, + "new_cases_smoothed": 869.286, + "total_deaths": 1302.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 1723.194, + "new_cases_per_million": 63.074, + "new_cases_smoothed_per_million": 48.521, + "total_deaths_per_million": 72.674, + "new_deaths_per_million": 3.237, + "new_deaths_smoothed_per_million": 2.376, + "stringency_index": 96.3 + }, + { + "date": "2020-07-16", + "total_cases": 32074.0, + "new_cases": 1202.0, + "new_cases_smoothed": 951.857, + "total_deaths": 1350.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 1790.287, + "new_cases_per_million": 67.092, + "new_cases_smoothed_per_million": 53.13, + "total_deaths_per_million": 75.353, + "new_deaths_per_million": 2.679, + "new_deaths_smoothed_per_million": 2.368, + "stringency_index": 96.3 + }, + { + "date": "2020-07-17", + "total_cases": 32939.0, + "new_cases": 865.0, + "new_cases_smoothed": 897.286, + "total_deaths": 1404.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 44.571, + "total_cases_per_million": 1838.569, + "new_cases_per_million": 48.282, + "new_cases_smoothed_per_million": 50.084, + "total_deaths_per_million": 78.368, + "new_deaths_per_million": 3.014, + "new_deaths_smoothed_per_million": 2.488, + "stringency_index": 96.3 + }, + { + "date": "2020-07-18", + "total_cases": 33809.0, + "new_cases": 870.0, + "new_cases_smoothed": 884.286, + "total_deaths": 1443.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 43.429, + "total_cases_per_million": 1887.13, + "new_cases_per_million": 48.561, + "new_cases_smoothed_per_million": 49.359, + "total_deaths_per_million": 80.544, + "new_deaths_per_million": 2.177, + "new_deaths_smoothed_per_million": 2.424, + "stringency_index": 96.3 + }, + { + "date": "2020-07-19", + "total_cases": 38042.0, + "new_cases": 4233.0, + "new_cases_smoothed": 1349.143, + "total_deaths": 1449.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 39.571, + "total_cases_per_million": 2123.405, + "new_cases_per_million": 236.275, + "new_cases_smoothed_per_million": 75.306, + "total_deaths_per_million": 80.879, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 2.209, + "stringency_index": 96.3 + }, + { + "date": "2020-07-20", + "total_cases": 38677.0, + "new_cases": 635.0, + "new_cases_smoothed": 1331.714, + "total_deaths": 1485.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 2158.849, + "new_cases_per_million": 35.444, + "new_cases_smoothed_per_million": 74.333, + "total_deaths_per_million": 82.889, + "new_deaths_per_million": 2.009, + "new_deaths_smoothed_per_million": 2.121, + "stringency_index": 96.3 + }, + { + "date": "2020-07-21", + "total_cases": 39039.0, + "new_cases": 362.0, + "new_cases_smoothed": 1328.143, + "total_deaths": 1502.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 2179.055, + "new_cases_per_million": 20.206, + "new_cases_smoothed_per_million": 74.133, + "total_deaths_per_million": 83.838, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 2.057, + "stringency_index": 96.3 + }, + { + "date": "2020-07-22", + "total_cases": 40229.0, + "new_cases": 1190.0, + "new_cases_smoothed": 1336.714, + "total_deaths": 1531.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 2245.477, + "new_cases_per_million": 66.423, + "new_cases_smoothed_per_million": 74.612, + "total_deaths_per_million": 85.456, + "new_deaths_per_million": 1.619, + "new_deaths_smoothed_per_million": 1.826, + "stringency_index": 96.3 + }, + { + "date": "2020-07-23", + "total_cases": 41135.0, + "new_cases": 906.0, + "new_cases_smoothed": 1294.429, + "total_deaths": 1573.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 2296.048, + "new_cases_per_million": 50.571, + "new_cases_smoothed_per_million": 72.252, + "total_deaths_per_million": 87.801, + "new_deaths_per_million": 2.344, + "new_deaths_smoothed_per_million": 1.778, + "stringency_index": 96.3 + }, + { + "date": "2020-07-24", + "total_cases": 42192.0, + "new_cases": 1057.0, + "new_cases_smoothed": 1321.857, + "total_deaths": 1632.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 32.571, + "total_cases_per_million": 2355.047, + "new_cases_per_million": 58.999, + "new_cases_smoothed_per_million": 73.783, + "total_deaths_per_million": 91.094, + "new_deaths_per_million": 3.293, + "new_deaths_smoothed_per_million": 1.818, + "stringency_index": 96.3 + }, + { + "date": "2020-07-25", + "total_cases": 43283.0, + "new_cases": 1091.0, + "new_cases_smoothed": 1353.429, + "total_deaths": 1669.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 2415.944, + "new_cases_per_million": 60.897, + "new_cases_smoothed_per_million": 75.545, + "total_deaths_per_million": 93.159, + "new_deaths_per_million": 2.065, + "new_deaths_smoothed_per_million": 1.802, + "stringency_index": 96.3 + }, + { + "date": "2020-07-26", + "total_cases": 44492.0, + "new_cases": 1209.0, + "new_cases_smoothed": 921.429, + "total_deaths": 1669.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 2483.427, + "new_cases_per_million": 67.483, + "new_cases_smoothed_per_million": 51.432, + "total_deaths_per_million": 93.159, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.754, + "stringency_index": 96.3 + }, + { + "date": "2020-07-27", + "total_cases": 45053.0, + "new_cases": 561.0, + "new_cases_smoothed": 910.857, + "total_deaths": 1734.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 2514.74, + "new_cases_per_million": 31.314, + "new_cases_smoothed_per_million": 50.842, + "total_deaths_per_million": 96.787, + "new_deaths_per_million": 3.628, + "new_deaths_smoothed_per_million": 1.986, + "stringency_index": 87.04 + }, + { + "date": "2020-07-28", + "total_cases": 45053.0, + "new_cases": 0.0, + "new_cases_smoothed": 859.143, + "total_deaths": 1734.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 33.143, + "total_cases_per_million": 2514.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 47.955, + "total_deaths_per_million": 96.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.85, + "stringency_index": 87.04 + }, + { + "date": "2020-07-29", + "total_cases": 45059.0, + "new_cases": 6.0, + "new_cases_smoothed": 690.0, + "total_deaths": 1761.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 32.857, + "total_cases_per_million": 2515.075, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 38.514, + "total_deaths_per_million": 98.294, + "new_deaths_per_million": 1.507, + "new_deaths_smoothed_per_million": 1.834, + "stringency_index": 87.04 + }, + { + "date": "2020-07-30", + "total_cases": 47605.0, + "new_cases": 2546.0, + "new_cases_smoothed": 924.286, + "total_deaths": 1835.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 2657.186, + "new_cases_per_million": 142.111, + "new_cases_smoothed_per_million": 51.591, + "total_deaths_per_million": 102.425, + "new_deaths_per_million": 4.13, + "new_deaths_smoothed_per_million": 2.089, + "stringency_index": 87.04 + }, + { + "date": "2020-07-31", + "total_cases": 48826.0, + "new_cases": 1221.0, + "new_cases_smoothed": 947.714, + "total_deaths": 1867.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 2725.339, + "new_cases_per_million": 68.153, + "new_cases_smoothed_per_million": 52.899, + "total_deaths_per_million": 104.211, + "new_deaths_per_million": 1.786, + "new_deaths_smoothed_per_million": 1.874, + "stringency_index": 87.04 + }, + { + "date": "2020-08-01", + "total_cases": 49789.0, + "new_cases": 963.0, + "new_cases_smoothed": 929.429, + "total_deaths": 1924.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 36.429, + "total_cases_per_million": 2779.092, + "new_cases_per_million": 53.752, + "new_cases_smoothed_per_million": 51.878, + "total_deaths_per_million": 107.393, + "new_deaths_per_million": 3.182, + "new_deaths_smoothed_per_million": 2.033, + "stringency_index": 87.04 + }, + { + "date": "2020-08-02", + "total_cases": 50979.0, + "new_cases": 1190.0, + "new_cases_smoothed": 926.714, + "total_deaths": 1959.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 41.429, + "total_cases_per_million": 2845.514, + "new_cases_per_million": 66.423, + "new_cases_smoothed_per_million": 51.727, + "total_deaths_per_million": 109.346, + "new_deaths_per_million": 1.954, + "new_deaths_smoothed_per_million": 2.312, + "stringency_index": 87.04 + }, + { + "date": "2020-08-03", + "total_cases": 51306.0, + "new_cases": 327.0, + "new_cases_smoothed": 893.286, + "total_deaths": 1995.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 2863.766, + "new_cases_per_million": 18.252, + "new_cases_smoothed_per_million": 49.861, + "total_deaths_per_million": 111.356, + "new_deaths_per_million": 2.009, + "new_deaths_smoothed_per_million": 2.081, + "stringency_index": 87.04 + }, + { + "date": "2020-08-04", + "total_cases": 51542.0, + "new_cases": 236.0, + "new_cases_smoothed": 927.0, + "total_deaths": 2013.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 2876.939, + "new_cases_per_million": 13.173, + "new_cases_smoothed_per_million": 51.743, + "total_deaths_per_million": 112.36, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 2.225, + "stringency_index": 87.04 + }, + { + "date": "2020-08-05", + "total_cases": 52365.0, + "new_cases": 823.0, + "new_cases_smoothed": 1043.714, + "total_deaths": 2037.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 2922.877, + "new_cases_per_million": 45.938, + "new_cases_smoothed_per_million": 58.257, + "total_deaths_per_million": 113.7, + "new_deaths_per_million": 1.34, + "new_deaths_smoothed_per_million": 2.201, + "stringency_index": 87.04 + }, + { + "date": "2020-08-06", + "total_cases": 53509.0, + "new_cases": 1144.0, + "new_cases_smoothed": 843.429, + "total_deaths": 2072.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 2986.732, + "new_cases_per_million": 63.855, + "new_cases_smoothed_per_million": 47.078, + "total_deaths_per_million": 115.654, + "new_deaths_per_million": 1.954, + "new_deaths_smoothed_per_million": 1.89, + "stringency_index": 87.04 + }, + { + "date": "2020-08-07", + "total_cases": 54339.0, + "new_cases": 830.0, + "new_cases_smoothed": 787.571, + "total_deaths": 2119.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 3033.061, + "new_cases_per_million": 46.328, + "new_cases_smoothed_per_million": 43.96, + "total_deaths_per_million": 118.277, + "new_deaths_per_million": 2.623, + "new_deaths_smoothed_per_million": 2.009, + "stringency_index": 87.04 + }, + { + "date": "2020-08-08", + "total_cases": 55270.0, + "new_cases": 931.0, + "new_cases_smoothed": 783.0, + "total_deaths": 2168.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 34.857, + "total_cases_per_million": 3085.027, + "new_cases_per_million": 51.966, + "new_cases_smoothed_per_million": 43.705, + "total_deaths_per_million": 121.012, + "new_deaths_per_million": 2.735, + "new_deaths_smoothed_per_million": 1.946, + "stringency_index": 87.04 + }, + { + "date": "2020-08-09", + "total_cases": 56189.0, + "new_cases": 919.0, + "new_cases_smoothed": 744.286, + "total_deaths": 2197.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 3136.323, + "new_cases_per_million": 51.296, + "new_cases_smoothed_per_million": 41.544, + "total_deaths_per_million": 122.631, + "new_deaths_per_million": 1.619, + "new_deaths_smoothed_per_million": 1.898, + "stringency_index": 87.04 + }, + { + "date": "2020-08-10", + "total_cases": 56605.0, + "new_cases": 416.0, + "new_cases_smoothed": 757.0, + "total_deaths": 2211.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 3159.543, + "new_cases_per_million": 23.22, + "new_cases_smoothed_per_million": 42.254, + "total_deaths_per_million": 123.412, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 1.722, + "stringency_index": 87.04 + }, + { + "date": "2020-08-11", + "total_cases": 56987.0, + "new_cases": 382.0, + "new_cases_smoothed": 777.857, + "total_deaths": 2222.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 3180.865, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 43.418, + "total_deaths_per_million": 124.026, + "new_deaths_per_million": 0.614, + "new_deaths_smoothed_per_million": 1.667, + "stringency_index": 87.04 + }, + { + "date": "2020-08-12", + "total_cases": 57966.0, + "new_cases": 979.0, + "new_cases_smoothed": 800.143, + "total_deaths": 2233.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 3235.51, + "new_cases_per_million": 54.645, + "new_cases_smoothed_per_million": 44.662, + "total_deaths_per_million": 124.64, + "new_deaths_per_million": 0.614, + "new_deaths_smoothed_per_million": 1.563, + "stringency_index": 87.04 + }, + { + "date": "2020-08-13", + "total_cases": 59089.0, + "new_cases": 1123.0, + "new_cases_smoothed": 797.143, + "total_deaths": 2267.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 3298.193, + "new_cases_per_million": 62.683, + "new_cases_smoothed_per_million": 44.494, + "total_deaths_per_million": 126.538, + "new_deaths_per_million": 1.898, + "new_deaths_smoothed_per_million": 1.555, + "stringency_index": 87.04 + }, + { + "date": "2020-08-14", + "total_cases": 60284.0, + "new_cases": 1195.0, + "new_cases_smoothed": 849.286, + "total_deaths": 2296.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 3364.895, + "new_cases_per_million": 66.702, + "new_cases_smoothed_per_million": 47.405, + "total_deaths_per_million": 128.157, + "new_deaths_per_million": 1.619, + "new_deaths_smoothed_per_million": 1.411, + "stringency_index": 87.04 + }, + { + "date": "2020-08-15", + "total_cases": 61428.0, + "new_cases": 1144.0, + "new_cases_smoothed": 879.714, + "total_deaths": 2341.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 3428.75, + "new_cases_per_million": 63.855, + "new_cases_smoothed_per_million": 49.103, + "total_deaths_per_million": 130.668, + "new_deaths_per_million": 2.512, + "new_deaths_smoothed_per_million": 1.379, + "stringency_index": 87.04 + }, + { + "date": "2020-08-16", + "total_cases": 62313.0, + "new_cases": 885.0, + "new_cases_smoothed": 874.857, + "total_deaths": 2355.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 3478.148, + "new_cases_per_million": 49.398, + "new_cases_smoothed_per_million": 48.832, + "total_deaths_per_million": 131.45, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 1.26, + "stringency_index": 87.04 + }, + { + "date": "2020-08-17", + "total_cases": 62562.0, + "new_cases": 249.0, + "new_cases_smoothed": 851.0, + "total_deaths": 2379.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 3492.047, + "new_cases_per_million": 13.899, + "new_cases_smoothed_per_million": 47.501, + "total_deaths_per_million": 132.79, + "new_deaths_per_million": 1.34, + "new_deaths_smoothed_per_million": 1.34, + "stringency_index": 87.04 + }, + { + "date": "2020-08-18", + "total_cases": 62944.0, + "new_cases": 382.0, + "new_cases_smoothed": 851.0, + "total_deaths": 2389.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 3513.369, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 47.501, + "total_deaths_per_million": 133.348, + "new_deaths_per_million": 0.558, + "new_deaths_smoothed_per_million": 1.332, + "stringency_index": 87.04 + }, + { + "date": "2020-08-19", + "total_cases": 63847.0, + "new_cases": 903.0, + "new_cases_smoothed": 840.143, + "total_deaths": 2419.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 3563.772, + "new_cases_per_million": 50.403, + "new_cases_smoothed_per_million": 46.895, + "total_deaths_per_million": 135.022, + "new_deaths_per_million": 1.675, + "new_deaths_smoothed_per_million": 1.483, + "stringency_index": 87.04 + }, + { + "date": "2020-08-20", + "total_cases": 64881.0, + "new_cases": 1034.0, + "new_cases_smoothed": 827.429, + "total_deaths": 2467.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 3621.487, + "new_cases_per_million": 57.715, + "new_cases_smoothed_per_million": 46.185, + "total_deaths_per_million": 137.701, + "new_deaths_per_million": 2.679, + "new_deaths_smoothed_per_million": 1.595, + "stringency_index": 87.04 + }, + { + "date": "2020-08-21", + "total_cases": 65983.0, + "new_cases": 1102.0, + "new_cases_smoothed": 814.143, + "total_deaths": 2506.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 3682.998, + "new_cases_per_million": 61.511, + "new_cases_smoothed_per_million": 45.443, + "total_deaths_per_million": 139.878, + "new_deaths_per_million": 2.177, + "new_deaths_smoothed_per_million": 1.675, + "stringency_index": 87.04 + }, + { + "date": "2020-08-22", + "total_cases": 66941.0, + "new_cases": 958.0, + "new_cases_smoothed": 787.571, + "total_deaths": 2532.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 3736.471, + "new_cases_per_million": 53.473, + "new_cases_smoothed_per_million": 43.96, + "total_deaths_per_million": 141.33, + "new_deaths_per_million": 1.451, + "new_deaths_smoothed_per_million": 1.523, + "stringency_index": 87.04 + }, + { + "date": "2020-08-23", + "total_cases": 67856.0, + "new_cases": 915.0, + "new_cases_smoothed": 791.857, + "total_deaths": 2580.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 3787.544, + "new_cases_per_million": 51.073, + "new_cases_smoothed_per_million": 44.199, + "total_deaths_per_million": 144.009, + "new_deaths_per_million": 2.679, + "new_deaths_smoothed_per_million": 1.794, + "stringency_index": 87.04 + }, + { + "date": "2020-08-24", + "total_cases": 68188.0, + "new_cases": 332.0, + "new_cases_smoothed": 803.714, + "total_deaths": 2594.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 30.714, + "total_cases_per_million": 3806.075, + "new_cases_per_million": 18.531, + "new_cases_smoothed_per_million": 44.861, + "total_deaths_per_million": 144.79, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 1.714, + "stringency_index": 87.04 + }, + { + "date": "2020-08-25", + "total_cases": 68533.0, + "new_cases": 345.0, + "new_cases_smoothed": 798.429, + "total_deaths": 2611.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 3825.332, + "new_cases_per_million": 19.257, + "new_cases_smoothed_per_million": 44.566, + "total_deaths_per_million": 145.739, + "new_deaths_per_million": 0.949, + "new_deaths_smoothed_per_million": 1.77, + "stringency_index": 87.04 + }, + { + "date": "2020-08-26", + "total_cases": 69651.0, + "new_cases": 1118.0, + "new_cases_smoothed": 829.143, + "total_deaths": 2630.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 3887.736, + "new_cases_per_million": 62.404, + "new_cases_smoothed_per_million": 46.281, + "total_deaths_per_million": 146.8, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 1.682 + }, + { + "date": "2020-08-27", + "total_cases": 70714.0, + "new_cases": 1063.0, + "new_cases_smoothed": 833.286, + "total_deaths": 2662.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 3947.07, + "new_cases_per_million": 59.334, + "new_cases_smoothed_per_million": 46.512, + "total_deaths_per_million": 148.586, + "new_deaths_per_million": 1.786, + "new_deaths_smoothed_per_million": 1.555 + }, + { + "date": "2020-08-28", + "total_cases": 71856.0, + "new_cases": 1142.0, + "new_cases_smoothed": 839.0, + "total_deaths": 2685.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 25.571, + "total_cases_per_million": 4010.814, + "new_cases_per_million": 63.743, + "new_cases_smoothed_per_million": 46.831, + "total_deaths_per_million": 149.87, + "new_deaths_per_million": 1.284, + "new_deaths_smoothed_per_million": 1.427 + }, + { + "date": "2020-08-29", + "total_cases": 72921.0, + "new_cases": 1065.0, + "new_cases_smoothed": 854.286, + "total_deaths": 2709.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 4070.259, + "new_cases_per_million": 59.446, + "new_cases_smoothed_per_million": 47.684, + "total_deaths_per_million": 151.209, + "new_deaths_per_million": 1.34, + "new_deaths_smoothed_per_million": 1.411 + }, + { + "date": "2020-08-30", + "total_cases": 73679.0, + "new_cases": 758.0, + "new_cases_smoothed": 831.857, + "total_deaths": 2728.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 4112.569, + "new_cases_per_million": 42.31, + "new_cases_smoothed_per_million": 46.432, + "total_deaths_per_million": 152.27, + "new_deaths_per_million": 1.061, + "new_deaths_smoothed_per_million": 1.18 + }, + { + "date": "2020-08-31", + "total_cases": 73912.0, + "new_cases": 233.0, + "new_cases_smoothed": 817.714, + "total_deaths": 2740.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 4125.574, + "new_cases_per_million": 13.005, + "new_cases_smoothed_per_million": 45.643, + "total_deaths_per_million": 152.94, + "new_deaths_per_million": 0.67, + "new_deaths_smoothed_per_million": 1.164 + }, + { + "date": "2020-09-01", + "total_cases": 74074.0, + "new_cases": 162.0, + "new_cases_smoothed": 791.571, + "total_deaths": 2760.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 4134.617, + "new_cases_per_million": 9.042, + "new_cases_smoothed_per_million": 44.183, + "total_deaths_per_million": 154.056, + "new_deaths_per_million": 1.116, + "new_deaths_smoothed_per_million": 1.188 + }, + { + "date": "2020-09-02", + "total_cases": 74893.0, + "new_cases": 819.0, + "new_cases_smoothed": 748.857, + "total_deaths": 2778.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 4180.331, + "new_cases_per_million": 45.714, + "new_cases_smoothed_per_million": 41.799, + "total_deaths_per_million": 155.061, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 1.18 + }, + { + "date": "2020-09-03", + "total_cases": 75664.0, + "new_cases": 771.0, + "new_cases_smoothed": 707.143, + "total_deaths": 2790.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 4223.366, + "new_cases_per_million": 43.035, + "new_cases_smoothed_per_million": 39.471, + "total_deaths_per_million": 155.73, + "new_deaths_per_million": 0.67, + "new_deaths_smoothed_per_million": 1.021 + }, + { + "date": "2020-09-04", + "total_cases": 76358.0, + "new_cases": 694.0, + "new_cases_smoothed": 643.143, + "total_deaths": 2804.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 4262.103, + "new_cases_per_million": 38.737, + "new_cases_smoothed_per_million": 35.899, + "total_deaths_per_million": 156.512, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.949 + }, + { + "date": "2020-09-05", + "total_cases": 77040.0, + "new_cases": 682.0, + "new_cases_smoothed": 588.429, + "total_deaths": 2825.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 4300.171, + "new_cases_per_million": 38.067, + "new_cases_smoothed_per_million": 32.845, + "total_deaths_per_million": 157.684, + "new_deaths_per_million": 1.172, + "new_deaths_smoothed_per_million": 0.925 + } + ] + }, + "GGY": { + "continent": "Europe", + "location": "Guernsey", + "population": 67052.0, + "data": [ + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.914, + "new_cases_per_million": 14.914, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.914, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.914, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 17.0, + "new_cases": 16.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 253.535, + "new_cases_per_million": 238.621, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 20.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 298.276, + "new_cases_per_million": 44.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 23.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 343.017, + "new_cases_per_million": 44.741, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 30.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 447.414, + "new_cases_per_million": 104.397, + "new_cases_smoothed_per_million": 63.916, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 34.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 507.069, + "new_cases_per_million": 59.655, + "new_cases_smoothed_per_million": 70.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 536.897, + "new_cases_per_million": 29.828, + "new_cases_smoothed_per_million": 74.569, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 39.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 581.638, + "new_cases_per_million": 44.741, + "new_cases_smoothed_per_million": 80.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 45.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 671.121, + "new_cases_per_million": 89.483, + "new_cases_smoothed_per_million": 59.655, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 671.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 60.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.828, + "new_cases_per_million": 223.707, + "new_cases_smoothed_per_million": 78.83, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 78.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1163.276, + "new_cases_per_million": 268.448, + "new_cases_smoothed_per_million": 102.266, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 91.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1357.156, + "new_cases_per_million": 193.879, + "new_cases_smoothed_per_million": 121.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 114.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1700.173, + "new_cases_per_million": 343.017, + "new_cases_smoothed_per_million": 166.182, + "total_deaths_per_million": 29.828, + "new_deaths_per_million": 29.828, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-04-05", + "total_cases": 136.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2028.277, + "new_cases_per_million": 328.104, + "new_cases_smoothed_per_million": 206.663, + "total_deaths_per_million": 29.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-04-06", + "total_cases": 154.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2296.725, + "new_cases_per_million": 268.448, + "new_cases_smoothed_per_million": 232.229, + "total_deaths_per_million": 44.741, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-07", + "total_cases": 165.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.143, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2460.777, + "new_cases_per_million": 164.052, + "new_cases_smoothed_per_million": 255.665, + "total_deaths_per_million": 59.655, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-08", + "total_cases": 166.0, + "new_cases": 1.0, + "new_cases_smoothed": 15.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2475.691, + "new_cases_per_million": 14.914, + "new_cases_smoothed_per_million": 225.838, + "total_deaths_per_million": 59.655, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-09", + "total_cases": 181.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2699.397, + "new_cases_per_million": 223.707, + "new_cases_smoothed_per_million": 219.446, + "total_deaths_per_million": 74.569, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 10.653 + }, + { + "date": "2020-04-10", + "total_cases": 191.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2848.535, + "new_cases_per_million": 149.138, + "new_cases_smoothed_per_million": 213.054, + "total_deaths_per_million": 74.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 10.653 + }, + { + "date": "2020-04-11", + "total_cases": 200.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2982.76, + "new_cases_per_million": 134.224, + "new_cases_smoothed_per_million": 183.227, + "total_deaths_per_million": 89.483, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-12", + "total_cases": 209.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3116.984, + "new_cases_per_million": 134.224, + "new_cases_smoothed_per_million": 155.53, + "total_deaths_per_million": 89.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-13", + "total_cases": 218.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3251.208, + "new_cases_per_million": 134.224, + "new_cases_smoothed_per_million": 136.355, + "total_deaths_per_million": 89.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-14", + "total_cases": 219.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3266.122, + "new_cases_per_million": 14.914, + "new_cases_smoothed_per_million": 115.049, + "total_deaths_per_million": 89.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-04-15", + "total_cases": 223.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3325.777, + "new_cases_per_million": 59.655, + "new_cases_smoothed_per_million": 121.441, + "total_deaths_per_million": 104.397, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-16", + "total_cases": 223.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3325.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 89.483, + "total_deaths_per_million": 104.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-04-17", + "total_cases": 234.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.143, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3489.829, + "new_cases_per_million": 164.052, + "new_cases_smoothed_per_million": 91.613, + "total_deaths_per_million": 134.224, + "new_deaths_per_million": 29.828, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-18", + "total_cases": 234.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3489.829, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 72.438, + "total_deaths_per_million": 134.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-19", + "total_cases": 239.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3564.398, + "new_cases_per_million": 74.569, + "new_cases_smoothed_per_million": 63.916, + "total_deaths_per_million": 134.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-20", + "total_cases": 239.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3564.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.741, + "total_deaths_per_million": 134.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-21", + "total_cases": 239.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3564.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.611, + "total_deaths_per_million": 149.138, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-22", + "total_cases": 239.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3564.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.089, + "total_deaths_per_million": 149.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-23", + "total_cases": 243.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3624.053, + "new_cases_per_million": 59.655, + "new_cases_smoothed_per_million": 42.611, + "total_deaths_per_million": 149.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-24", + "total_cases": 245.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3653.881, + "new_cases_per_million": 29.828, + "new_cases_smoothed_per_million": 23.436, + "total_deaths_per_million": 149.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.131 + }, + { + "date": "2020-04-25", + "total_cases": 245.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3653.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.436, + "total_deaths_per_million": 164.052, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-04-26", + "total_cases": 245.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3653.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.783, + "total_deaths_per_million": 178.966, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-27", + "total_cases": 247.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3683.708, + "new_cases_per_million": 29.828, + "new_cases_smoothed_per_million": 17.044, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 14.914, + "new_deaths_smoothed_per_million": 8.522 + }, + { + "date": "2020-04-28", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3683.708, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.044, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-29", + "total_cases": 247.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3683.708, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.044, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-04-30", + "total_cases": 251.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3743.363, + "new_cases_per_million": 59.655, + "new_cases_smoothed_per_million": 17.044, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-05-01", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3743.363, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.783, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.392 + }, + { + "date": "2020-05-02", + "total_cases": 252.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 14.914, + "new_cases_smoothed_per_million": 14.914, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.261 + }, + { + "date": "2020-05-03", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.914, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.131 + }, + { + "date": "2020-05-04", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.653, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.653, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.653, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.131, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.131, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3758.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 193.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "GIN": { + "continent": "Africa", + "location": "Guinea", + "population": 13132792.0, + "population_density": 51.755, + "median_age": 19.0, + "aged_65_older": 3.135, + "aged_70_older": 1.733, + "gdp_per_capita": 1998.926, + "extreme_poverty": 35.3, + "cardiovasc_death_rate": 336.717, + "diabetes_prevalence": 2.42, + "handwashing_facilities": 17.45, + "hospital_beds_per_thousand": 0.3, + "life_expectancy": 61.6, + "data": [ + { + "date": "2020-03-14", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.076, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.076, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.076, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.152, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.305, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.381, + "new_cases_per_million": 0.076, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.381, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.609, + "new_cases_per_million": 0.228, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.609, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-03-31", + "total_cases": 16.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.218, + "new_cases_per_million": 0.609, + "new_cases_smoothed_per_million": 0.152, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.218, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-02", + "total_cases": 30.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.284, + "new_cases_per_million": 1.066, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-03", + "total_cases": 52.0, + "new_cases": 22.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.96, + "new_cases_per_million": 1.675, + "new_cases_smoothed_per_million": 0.511, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-04", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.96, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.511, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-05", + "total_cases": 111.0, + "new_cases": 59.0, + "new_cases_smoothed": 14.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.452, + "new_cases_per_million": 4.493, + "new_cases_smoothed_per_million": 1.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 121.0, + "new_cases": 10.0, + "new_cases_smoothed": 16.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.214, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 1.229, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-07", + "total_cases": 128.0, + "new_cases": 7.0, + "new_cases_smoothed": 16.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.747, + "new_cases_per_million": 0.533, + "new_cases_smoothed_per_million": 1.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-08", + "total_cases": 144.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.965, + "new_cases_per_million": 1.218, + "new_cases_smoothed_per_million": 1.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 164.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.488, + "new_cases_per_million": 1.523, + "new_cases_smoothed_per_million": 1.458, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-10", + "total_cases": 194.0, + "new_cases": 30.0, + "new_cases_smoothed": 20.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.772, + "new_cases_per_million": 2.284, + "new_cases_smoothed_per_million": 1.545, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-11", + "total_cases": 212.0, + "new_cases": 18.0, + "new_cases_smoothed": 22.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.143, + "new_cases_per_million": 1.371, + "new_cases_smoothed_per_million": 1.74, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-12", + "total_cases": 250.0, + "new_cases": 38.0, + "new_cases_smoothed": 19.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.036, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-13", + "total_cases": 250.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.403, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-14", + "total_cases": 319.0, + "new_cases": 69.0, + "new_cases_smoothed": 27.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.29, + "new_cases_per_million": 5.254, + "new_cases_smoothed_per_million": 2.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-15", + "total_cases": 363.0, + "new_cases": 44.0, + "new_cases_smoothed": 31.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.641, + "new_cases_per_million": 3.35, + "new_cases_smoothed_per_million": 2.382, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-16", + "total_cases": 404.0, + "new_cases": 41.0, + "new_cases_smoothed": 34.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.763, + "new_cases_per_million": 3.122, + "new_cases_smoothed_per_million": 2.611, + "total_deaths_per_million": 0.076, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-04-17", + "total_cases": 438.0, + "new_cases": 34.0, + "new_cases_smoothed": 34.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.352, + "new_cases_per_million": 2.589, + "new_cases_smoothed_per_million": 2.654, + "total_deaths_per_million": 0.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-04-18", + "total_cases": 477.0, + "new_cases": 39.0, + "new_cases_smoothed": 37.857, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.321, + "new_cases_per_million": 2.97, + "new_cases_smoothed_per_million": 2.883, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-04-19", + "total_cases": 477.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.321, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.469, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-04-20", + "total_cases": 579.0, + "new_cases": 102.0, + "new_cases_smoothed": 47.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 44.088, + "new_cases_per_million": 7.767, + "new_cases_smoothed_per_million": 3.579, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-04-21", + "total_cases": 622.0, + "new_cases": 43.0, + "new_cases_smoothed": 43.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 47.362, + "new_cases_per_million": 3.274, + "new_cases_smoothed_per_million": 3.296, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-04-22", + "total_cases": 688.0, + "new_cases": 66.0, + "new_cases_smoothed": 46.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 52.388, + "new_cases_per_million": 5.026, + "new_cases_smoothed_per_million": 3.535, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 78.7 + }, + { + "date": "2020-04-23", + "total_cases": 761.0, + "new_cases": 73.0, + "new_cases_smoothed": 51.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 57.947, + "new_cases_per_million": 5.559, + "new_cases_smoothed_per_million": 3.883, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-04-24", + "total_cases": 862.0, + "new_cases": 101.0, + "new_cases_smoothed": 60.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 65.637, + "new_cases_per_million": 7.691, + "new_cases_smoothed_per_million": 4.612, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-04-25", + "total_cases": 954.0, + "new_cases": 92.0, + "new_cases_smoothed": 68.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 72.643, + "new_cases_per_million": 7.005, + "new_cases_smoothed_per_million": 5.189, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-04-26", + "total_cases": 996.0, + "new_cases": 42.0, + "new_cases_smoothed": 74.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 75.841, + "new_cases_per_million": 3.198, + "new_cases_smoothed_per_million": 5.646, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-04-27", + "total_cases": 1094.0, + "new_cases": 98.0, + "new_cases_smoothed": 73.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 83.303, + "new_cases_per_million": 7.462, + "new_cases_smoothed_per_million": 5.602, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-04-28", + "total_cases": 1163.0, + "new_cases": 69.0, + "new_cases_smoothed": 77.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.557, + "new_cases_per_million": 5.254, + "new_cases_smoothed_per_million": 5.885, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-04-29", + "total_cases": 1240.0, + "new_cases": 77.0, + "new_cases_smoothed": 78.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.42, + "new_cases_per_million": 5.863, + "new_cases_smoothed_per_million": 6.005, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-04-30", + "total_cases": 1351.0, + "new_cases": 111.0, + "new_cases_smoothed": 84.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 102.872, + "new_cases_per_million": 8.452, + "new_cases_smoothed_per_million": 6.418, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-05-01", + "total_cases": 1495.0, + "new_cases": 144.0, + "new_cases_smoothed": 90.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 113.837, + "new_cases_per_million": 10.965, + "new_cases_smoothed_per_million": 6.886, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-05-02", + "total_cases": 1537.0, + "new_cases": 42.0, + "new_cases_smoothed": 83.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 117.035, + "new_cases_per_million": 3.198, + "new_cases_smoothed_per_million": 6.342, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-05-03", + "total_cases": 1586.0, + "new_cases": 49.0, + "new_cases_smoothed": 84.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.766, + "new_cases_per_million": 3.731, + "new_cases_smoothed_per_million": 6.418, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-04", + "total_cases": 1586.0, + "new_cases": 0.0, + "new_cases_smoothed": 70.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.352, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-05", + "total_cases": 1710.0, + "new_cases": 124.0, + "new_cases_smoothed": 78.143, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 130.208, + "new_cases_per_million": 9.442, + "new_cases_smoothed_per_million": 5.95, + "total_deaths_per_million": 0.685, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-05-06", + "total_cases": 1811.0, + "new_cases": 101.0, + "new_cases_smoothed": 81.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 137.899, + "new_cases_per_million": 7.691, + "new_cases_smoothed_per_million": 6.211, + "total_deaths_per_million": 0.761, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-07", + "total_cases": 1856.0, + "new_cases": 45.0, + "new_cases_smoothed": 72.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 141.326, + "new_cases_per_million": 3.427, + "new_cases_smoothed_per_million": 5.493, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-08", + "total_cases": 1927.0, + "new_cases": 71.0, + "new_cases_smoothed": 61.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 146.732, + "new_cases_per_million": 5.406, + "new_cases_smoothed_per_million": 4.699, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-09", + "total_cases": 2009.0, + "new_cases": 82.0, + "new_cases_smoothed": 67.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 152.976, + "new_cases_per_million": 6.244, + "new_cases_smoothed_per_million": 5.134, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-10", + "total_cases": 2042.0, + "new_cases": 33.0, + "new_cases_smoothed": 65.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 155.489, + "new_cases_per_million": 2.513, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-11", + "total_cases": 2146.0, + "new_cases": 104.0, + "new_cases_smoothed": 80.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 163.408, + "new_cases_per_million": 7.919, + "new_cases_smoothed_per_million": 6.092, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-12", + "total_cases": 2213.0, + "new_cases": 67.0, + "new_cases_smoothed": 71.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 168.509, + "new_cases_per_million": 5.102, + "new_cases_smoothed_per_million": 5.472, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-05-13", + "total_cases": 2213.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 168.509, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.373, + "total_deaths_per_million": 0.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-05-14", + "total_cases": 2374.0, + "new_cases": 161.0, + "new_cases_smoothed": 74.0, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 180.769, + "new_cases_per_million": 12.259, + "new_cases_smoothed_per_million": 5.635, + "total_deaths_per_million": 1.066, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-15", + "total_cases": 2473.0, + "new_cases": 99.0, + "new_cases_smoothed": 78.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 188.307, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 5.939, + "total_deaths_per_million": 1.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 2531.0, + "new_cases": 58.0, + "new_cases_smoothed": 74.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 192.724, + "new_cases_per_million": 4.416, + "new_cases_smoothed_per_million": 5.678, + "total_deaths_per_million": 1.142, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 2658.0, + "new_cases": 127.0, + "new_cases_smoothed": 88.0, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 202.394, + "new_cases_per_million": 9.67, + "new_cases_smoothed_per_million": 6.701, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 2658.0, + "new_cases": 0.0, + "new_cases_smoothed": 73.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 202.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.569, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-05-19", + "total_cases": 2796.0, + "new_cases": 138.0, + "new_cases_smoothed": 83.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 212.902, + "new_cases_per_million": 10.508, + "new_cases_smoothed_per_million": 6.342, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-05-20", + "total_cases": 2863.0, + "new_cases": 67.0, + "new_cases_smoothed": 92.857, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 218.004, + "new_cases_per_million": 5.102, + "new_cases_smoothed_per_million": 7.071, + "total_deaths_per_million": 1.371, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.076, + "stringency_index": 78.7 + }, + { + "date": "2020-05-21", + "total_cases": 2863.0, + "new_cases": 0.0, + "new_cases_smoothed": 69.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 218.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.319, + "total_deaths_per_million": 1.371, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-22", + "total_cases": 3067.0, + "new_cases": 204.0, + "new_cases_smoothed": 84.857, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 233.538, + "new_cases_per_million": 15.534, + "new_cases_smoothed_per_million": 6.461, + "total_deaths_per_million": 1.447, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 78.7 + }, + { + "date": "2020-05-23", + "total_cases": 3067.0, + "new_cases": 0.0, + "new_cases_smoothed": 76.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 233.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.831, + "total_deaths_per_million": 1.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-24", + "total_cases": 3176.0, + "new_cases": 109.0, + "new_cases_smoothed": 74.0, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 241.837, + "new_cases_per_million": 8.3, + "new_cases_smoothed_per_million": 5.635, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-25", + "total_cases": 3275.0, + "new_cases": 99.0, + "new_cases_smoothed": 88.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 249.376, + "new_cases_per_million": 7.538, + "new_cases_smoothed_per_million": 6.712, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-26", + "total_cases": 3275.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 249.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.211, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 78.7 + }, + { + "date": "2020-05-27", + "total_cases": 3358.0, + "new_cases": 83.0, + "new_cases_smoothed": 70.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 255.696, + "new_cases_per_million": 6.32, + "new_cases_smoothed_per_million": 5.385, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-05-28", + "total_cases": 3446.0, + "new_cases": 88.0, + "new_cases_smoothed": 83.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 262.397, + "new_cases_per_million": 6.701, + "new_cases_smoothed_per_million": 6.342, + "total_deaths_per_million": 1.599, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-29", + "total_cases": 3553.0, + "new_cases": 107.0, + "new_cases_smoothed": 69.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 270.544, + "new_cases_per_million": 8.148, + "new_cases_smoothed_per_million": 5.287, + "total_deaths_per_million": 1.675, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-30", + "total_cases": 3656.0, + "new_cases": 103.0, + "new_cases_smoothed": 84.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 278.387, + "new_cases_per_million": 7.843, + "new_cases_smoothed_per_million": 6.407, + "total_deaths_per_million": 1.675, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-05-31", + "total_cases": 3706.0, + "new_cases": 50.0, + "new_cases_smoothed": 75.714, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 282.194, + "new_cases_per_million": 3.807, + "new_cases_smoothed_per_million": 5.765, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-06-01", + "total_cases": 3771.0, + "new_cases": 65.0, + "new_cases_smoothed": 70.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 287.144, + "new_cases_per_million": 4.949, + "new_cases_smoothed_per_million": 5.395, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-06-02", + "total_cases": 3844.0, + "new_cases": 73.0, + "new_cases_smoothed": 81.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 292.702, + "new_cases_per_million": 5.559, + "new_cases_smoothed_per_million": 6.19, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-06-03", + "total_cases": 3844.0, + "new_cases": 0.0, + "new_cases_smoothed": 69.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 292.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.287, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 78.7 + }, + { + "date": "2020-06-04", + "total_cases": 3886.0, + "new_cases": 42.0, + "new_cases_smoothed": 62.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 295.901, + "new_cases_per_million": 3.198, + "new_cases_smoothed_per_million": 4.786, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-06-05", + "total_cases": 3991.0, + "new_cases": 105.0, + "new_cases_smoothed": 62.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 303.896, + "new_cases_per_million": 7.995, + "new_cases_smoothed_per_million": 4.765, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-06-06", + "total_cases": 4060.0, + "new_cases": 69.0, + "new_cases_smoothed": 57.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 309.15, + "new_cases_per_million": 5.254, + "new_cases_smoothed_per_million": 4.395, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-06-07", + "total_cases": 4117.0, + "new_cases": 57.0, + "new_cases_smoothed": 58.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 313.49, + "new_cases_per_million": 4.34, + "new_cases_smoothed_per_million": 4.471, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-08", + "total_cases": 4165.0, + "new_cases": 48.0, + "new_cases_smoothed": 56.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 317.145, + "new_cases_per_million": 3.655, + "new_cases_smoothed_per_million": 4.286, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-09", + "total_cases": 4216.0, + "new_cases": 51.0, + "new_cases_smoothed": 53.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 321.028, + "new_cases_per_million": 3.883, + "new_cases_smoothed_per_million": 4.047, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-10", + "total_cases": 4258.0, + "new_cases": 42.0, + "new_cases_smoothed": 59.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.227, + "new_cases_per_million": 3.198, + "new_cases_smoothed_per_million": 4.503, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-11", + "total_cases": 4258.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 324.227, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.047, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-12", + "total_cases": 4372.0, + "new_cases": 114.0, + "new_cases_smoothed": 54.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 332.907, + "new_cases_per_million": 8.681, + "new_cases_smoothed_per_million": 4.144, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-06-13", + "total_cases": 4426.0, + "new_cases": 54.0, + "new_cases_smoothed": 52.286, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 337.019, + "new_cases_per_million": 4.112, + "new_cases_smoothed_per_million": 3.981, + "total_deaths_per_million": 1.827, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 78.7 + }, + { + "date": "2020-06-14", + "total_cases": 4484.0, + "new_cases": 58.0, + "new_cases_smoothed": 52.429, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 341.435, + "new_cases_per_million": 4.416, + "new_cases_smoothed_per_million": 3.992, + "total_deaths_per_million": 1.904, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 78.7 + }, + { + "date": "2020-06-15", + "total_cases": 4532.0, + "new_cases": 48.0, + "new_cases_smoothed": 52.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 345.09, + "new_cases_per_million": 3.655, + "new_cases_smoothed_per_million": 3.992, + "total_deaths_per_million": 1.904, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 54.63 + }, + { + "date": "2020-06-16", + "total_cases": 4572.0, + "new_cases": 40.0, + "new_cases_smoothed": 50.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 348.136, + "new_cases_per_million": 3.046, + "new_cases_smoothed_per_million": 3.873, + "total_deaths_per_million": 1.98, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-17", + "total_cases": 4639.0, + "new_cases": 67.0, + "new_cases_smoothed": 54.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 353.238, + "new_cases_per_million": 5.102, + "new_cases_smoothed_per_million": 4.144, + "total_deaths_per_million": 1.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-18", + "total_cases": 4668.0, + "new_cases": 29.0, + "new_cases_smoothed": 58.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 355.446, + "new_cases_per_million": 2.208, + "new_cases_smoothed_per_million": 4.46, + "total_deaths_per_million": 1.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-19", + "total_cases": 4841.0, + "new_cases": 173.0, + "new_cases_smoothed": 67.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 368.619, + "new_cases_per_million": 13.173, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 1.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-20", + "total_cases": 4904.0, + "new_cases": 63.0, + "new_cases_smoothed": 68.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 373.416, + "new_cases_per_million": 4.797, + "new_cases_smoothed_per_million": 5.2, + "total_deaths_per_million": 2.056, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-21", + "total_cases": 4960.0, + "new_cases": 56.0, + "new_cases_smoothed": 68.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 377.681, + "new_cases_per_million": 4.264, + "new_cases_smoothed_per_million": 5.178, + "total_deaths_per_million": 2.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 54.63 + }, + { + "date": "2020-06-22", + "total_cases": 4988.0, + "new_cases": 28.0, + "new_cases_smoothed": 65.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 379.813, + "new_cases_per_million": 2.132, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 2.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 54.63 + }, + { + "date": "2020-06-23", + "total_cases": 4988.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 379.813, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.525, + "total_deaths_per_million": 2.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 54.63 + }, + { + "date": "2020-06-24", + "total_cases": 5104.0, + "new_cases": 116.0, + "new_cases_smoothed": 66.429, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 388.645, + "new_cases_per_million": 8.833, + "new_cases_smoothed_per_million": 5.058, + "total_deaths_per_million": 2.208, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-25", + "total_cases": 5174.0, + "new_cases": 70.0, + "new_cases_smoothed": 72.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 393.976, + "new_cases_per_million": 5.33, + "new_cases_smoothed_per_million": 5.504, + "total_deaths_per_million": 2.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-26", + "total_cases": 5211.0, + "new_cases": 37.0, + "new_cases_smoothed": 52.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 396.793, + "new_cases_per_million": 2.817, + "new_cases_smoothed_per_million": 4.025, + "total_deaths_per_million": 2.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-27", + "total_cases": 5260.0, + "new_cases": 49.0, + "new_cases_smoothed": 50.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 400.524, + "new_cases_per_million": 3.731, + "new_cases_smoothed_per_million": 3.873, + "total_deaths_per_million": 2.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 54.63 + }, + { + "date": "2020-06-28", + "total_cases": 5291.0, + "new_cases": 31.0, + "new_cases_smoothed": 47.286, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 402.885, + "new_cases_per_million": 2.361, + "new_cases_smoothed_per_million": 3.601, + "total_deaths_per_million": 2.284, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-06-29", + "total_cases": 5342.0, + "new_cases": 51.0, + "new_cases_smoothed": 50.571, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 406.768, + "new_cases_per_million": 3.883, + "new_cases_smoothed_per_million": 3.851, + "total_deaths_per_million": 2.361, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-06-30", + "total_cases": 5351.0, + "new_cases": 9.0, + "new_cases_smoothed": 51.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 407.453, + "new_cases_per_million": 0.685, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 2.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-01", + "total_cases": 5391.0, + "new_cases": 40.0, + "new_cases_smoothed": 41.0, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 410.499, + "new_cases_per_million": 3.046, + "new_cases_smoothed_per_million": 3.122, + "total_deaths_per_million": 2.513, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-02", + "total_cases": 5404.0, + "new_cases": 13.0, + "new_cases_smoothed": 32.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 411.489, + "new_cases_per_million": 0.99, + "new_cases_smoothed_per_million": 2.502, + "total_deaths_per_million": 2.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-03", + "total_cases": 5450.0, + "new_cases": 46.0, + "new_cases_smoothed": 34.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 414.992, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 2.6, + "total_deaths_per_million": 2.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-04", + "total_cases": 5521.0, + "new_cases": 71.0, + "new_cases_smoothed": 37.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 420.398, + "new_cases_per_million": 5.406, + "new_cases_smoothed_per_million": 2.839, + "total_deaths_per_million": 2.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-05", + "total_cases": 5570.0, + "new_cases": 49.0, + "new_cases_smoothed": 39.857, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 424.129, + "new_cases_per_million": 3.731, + "new_cases_smoothed_per_million": 3.035, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-06", + "total_cases": 5610.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 427.175, + "new_cases_per_million": 3.046, + "new_cases_smoothed_per_million": 2.915, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-07", + "total_cases": 5636.0, + "new_cases": 26.0, + "new_cases_smoothed": 40.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 429.155, + "new_cases_per_million": 1.98, + "new_cases_smoothed_per_million": 3.1, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-08", + "total_cases": 5697.0, + "new_cases": 61.0, + "new_cases_smoothed": 43.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 433.8, + "new_cases_per_million": 4.645, + "new_cases_smoothed_per_million": 3.329, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 54.63 + }, + { + "date": "2020-07-09", + "total_cases": 5697.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 433.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.187, + "total_deaths_per_million": 2.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 54.63 + }, + { + "date": "2020-07-10", + "total_cases": 5881.0, + "new_cases": 184.0, + "new_cases_smoothed": 61.571, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 447.81, + "new_cases_per_million": 14.011, + "new_cases_smoothed_per_million": 4.688, + "total_deaths_per_million": 2.741, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-11", + "total_cases": 5969.0, + "new_cases": 88.0, + "new_cases_smoothed": 64.0, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 454.511, + "new_cases_per_million": 6.701, + "new_cases_smoothed_per_million": 4.873, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 54.63 + }, + { + "date": "2020-07-12", + "total_cases": 6044.0, + "new_cases": 75.0, + "new_cases_smoothed": 67.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 460.222, + "new_cases_per_million": 5.711, + "new_cases_smoothed_per_million": 5.156, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-13", + "total_cases": 6141.0, + "new_cases": 97.0, + "new_cases_smoothed": 75.857, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 467.608, + "new_cases_per_million": 7.386, + "new_cases_smoothed_per_million": 5.776, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-14", + "total_cases": 6141.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 467.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.493, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 54.63 + }, + { + "date": "2020-07-15", + "total_cases": 6141.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.429, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 467.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.83, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 6276.0, + "new_cases": 135.0, + "new_cases_smoothed": 82.714, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 477.888, + "new_cases_per_million": 10.28, + "new_cases_smoothed_per_million": 6.298, + "total_deaths_per_million": 2.894, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 6276.0, + "new_cases": 0.0, + "new_cases_smoothed": 56.429, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.297, + "total_deaths_per_million": 2.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 6430.0, + "new_cases": 154.0, + "new_cases_smoothed": 65.857, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 489.614, + "new_cases_per_million": 11.726, + "new_cases_smoothed_per_million": 5.015, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 6491.0, + "new_cases": 61.0, + "new_cases_smoothed": 63.857, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 494.259, + "new_cases_per_million": 4.645, + "new_cases_smoothed_per_million": 4.862, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 6544.0, + "new_cases": 53.0, + "new_cases_smoothed": 57.571, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 498.295, + "new_cases_per_million": 4.036, + "new_cases_smoothed_per_million": 4.384, + "total_deaths_per_million": 2.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 72.22 + }, + { + "date": "2020-07-21", + "total_cases": 6590.0, + "new_cases": 46.0, + "new_cases_smoothed": 64.143, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 501.797, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 4.884, + "total_deaths_per_million": 3.046, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 72.22 + }, + { + "date": "2020-07-22", + "total_cases": 6652.0, + "new_cases": 62.0, + "new_cases_smoothed": 73.0, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 506.518, + "new_cases_per_million": 4.721, + "new_cases_smoothed_per_million": 5.559, + "total_deaths_per_million": 3.122, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-07-23", + "total_cases": 6747.0, + "new_cases": 95.0, + "new_cases_smoothed": 67.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 513.752, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 5.123, + "total_deaths_per_million": 3.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 72.22 + }, + { + "date": "2020-07-24", + "total_cases": 6806.0, + "new_cases": 59.0, + "new_cases_smoothed": 75.714, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 518.245, + "new_cases_per_million": 4.493, + "new_cases_smoothed_per_million": 5.765, + "total_deaths_per_million": 3.198, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-07-25", + "total_cases": 6867.0, + "new_cases": 61.0, + "new_cases_smoothed": 62.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 522.89, + "new_cases_per_million": 4.645, + "new_cases_smoothed_per_million": 4.754, + "total_deaths_per_million": 3.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 72.22 + }, + { + "date": "2020-07-26", + "total_cases": 6927.0, + "new_cases": 60.0, + "new_cases_smoothed": 62.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 527.458, + "new_cases_per_million": 4.569, + "new_cases_smoothed_per_million": 4.743, + "total_deaths_per_million": 3.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 72.22 + }, + { + "date": "2020-07-27", + "total_cases": 7008.0, + "new_cases": 81.0, + "new_cases_smoothed": 66.286, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 533.626, + "new_cases_per_million": 6.168, + "new_cases_smoothed_per_million": 5.047, + "total_deaths_per_million": 3.274, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-07-28", + "total_cases": 7055.0, + "new_cases": 47.0, + "new_cases_smoothed": 66.429, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 537.205, + "new_cases_per_million": 3.579, + "new_cases_smoothed_per_million": 5.058, + "total_deaths_per_million": 3.427, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 72.22 + }, + { + "date": "2020-07-29", + "total_cases": 7126.0, + "new_cases": 71.0, + "new_cases_smoothed": 67.714, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 542.611, + "new_cases_per_million": 5.406, + "new_cases_smoothed_per_million": 5.156, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 72.22 + }, + { + "date": "2020-07-30", + "total_cases": 7183.0, + "new_cases": 57.0, + "new_cases_smoothed": 62.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 546.951, + "new_cases_per_million": 4.34, + "new_cases_smoothed_per_million": 4.743, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 72.22 + }, + { + "date": "2020-07-31", + "total_cases": 7242.0, + "new_cases": 59.0, + "new_cases_smoothed": 62.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 551.444, + "new_cases_per_million": 4.493, + "new_cases_smoothed_per_million": 4.743, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-08-01", + "total_cases": 7308.0, + "new_cases": 66.0, + "new_cases_smoothed": 63.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 556.47, + "new_cases_per_million": 5.026, + "new_cases_smoothed_per_million": 4.797, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-08-02", + "total_cases": 7317.0, + "new_cases": 9.0, + "new_cases_smoothed": 55.714, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 557.155, + "new_cases_per_million": 0.685, + "new_cases_smoothed_per_million": 4.242, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 72.22 + }, + { + "date": "2020-08-03", + "total_cases": 7364.0, + "new_cases": 47.0, + "new_cases_smoothed": 50.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 560.734, + "new_cases_per_million": 3.579, + "new_cases_smoothed_per_million": 3.873, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-04", + "total_cases": 7364.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 560.734, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.361, + "total_deaths_per_million": 3.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.83 + }, + { + "date": "2020-08-05", + "total_cases": 7489.0, + "new_cases": 125.0, + "new_cases_smoothed": 51.857, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 570.252, + "new_cases_per_million": 9.518, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 3.655, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 70.83 + }, + { + "date": "2020-08-06", + "total_cases": 7575.0, + "new_cases": 86.0, + "new_cases_smoothed": 56.0, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 576.8, + "new_cases_per_million": 6.548, + "new_cases_smoothed_per_million": 4.264, + "total_deaths_per_million": 3.731, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-07", + "total_cases": 7664.0, + "new_cases": 89.0, + "new_cases_smoothed": 60.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 583.577, + "new_cases_per_million": 6.777, + "new_cases_smoothed_per_million": 4.59, + "total_deaths_per_million": 3.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-08", + "total_cases": 7777.0, + "new_cases": 113.0, + "new_cases_smoothed": 67.0, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 592.182, + "new_cases_per_million": 8.604, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 70.83 + }, + { + "date": "2020-08-09", + "total_cases": 7875.0, + "new_cases": 98.0, + "new_cases_smoothed": 79.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 599.644, + "new_cases_per_million": 7.462, + "new_cases_smoothed_per_million": 6.07, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 70.83 + }, + { + "date": "2020-08-10", + "total_cases": 7930.0, + "new_cases": 55.0, + "new_cases_smoothed": 80.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 603.832, + "new_cases_per_million": 4.188, + "new_cases_smoothed_per_million": 6.157, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 70.83 + }, + { + "date": "2020-08-11", + "total_cases": 7930.0, + "new_cases": 0.0, + "new_cases_smoothed": 80.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 603.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.157, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 70.83 + }, + { + "date": "2020-08-12", + "total_cases": 8018.0, + "new_cases": 88.0, + "new_cases_smoothed": 75.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 610.533, + "new_cases_per_million": 6.701, + "new_cases_smoothed_per_million": 5.754, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 70.83 + }, + { + "date": "2020-08-13", + "total_cases": 8116.0, + "new_cases": 98.0, + "new_cases_smoothed": 77.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 617.995, + "new_cases_per_million": 7.462, + "new_cases_smoothed_per_million": 5.885, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.83 + }, + { + "date": "2020-08-14", + "total_cases": 8198.0, + "new_cases": 82.0, + "new_cases_smoothed": 76.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 624.239, + "new_cases_per_million": 6.244, + "new_cases_smoothed_per_million": 5.809, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.83 + }, + { + "date": "2020-08-15", + "total_cases": 8260.0, + "new_cases": 62.0, + "new_cases_smoothed": 69.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 628.96, + "new_cases_per_million": 4.721, + "new_cases_smoothed_per_million": 5.254, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-16", + "total_cases": 8343.0, + "new_cases": 83.0, + "new_cases_smoothed": 66.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 635.28, + "new_cases_per_million": 6.32, + "new_cases_smoothed_per_million": 5.091, + "total_deaths_per_million": 3.807, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-08-17", + "total_cases": 8482.0, + "new_cases": 139.0, + "new_cases_smoothed": 78.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 645.864, + "new_cases_per_million": 10.584, + "new_cases_smoothed_per_million": 6.005, + "total_deaths_per_million": 3.883, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.83 + }, + { + "date": "2020-08-18", + "total_cases": 8620.0, + "new_cases": 138.0, + "new_cases_smoothed": 98.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 656.372, + "new_cases_per_million": 10.508, + "new_cases_smoothed_per_million": 7.506, + "total_deaths_per_million": 3.883, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.83 + }, + { + "date": "2020-08-19", + "total_cases": 8715.0, + "new_cases": 95.0, + "new_cases_smoothed": 99.571, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 663.606, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 7.582, + "total_deaths_per_million": 3.96, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 70.83 + }, + { + "date": "2020-08-20", + "total_cases": 8792.0, + "new_cases": 77.0, + "new_cases_smoothed": 96.571, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 669.469, + "new_cases_per_million": 5.863, + "new_cases_smoothed_per_million": 7.353, + "total_deaths_per_million": 4.036, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-21", + "total_cases": 8876.0, + "new_cases": 84.0, + "new_cases_smoothed": 96.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 675.865, + "new_cases_per_million": 6.396, + "new_cases_smoothed_per_million": 7.375, + "total_deaths_per_million": 4.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-22", + "total_cases": 8932.0, + "new_cases": 56.0, + "new_cases_smoothed": 96.0, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 680.13, + "new_cases_per_million": 4.264, + "new_cases_smoothed_per_million": 7.31, + "total_deaths_per_million": 4.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-23", + "total_cases": 8932.0, + "new_cases": 0.0, + "new_cases_smoothed": 84.143, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 680.13, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.407, + "total_deaths_per_million": 4.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 70.83 + }, + { + "date": "2020-08-24", + "total_cases": 8967.0, + "new_cases": 35.0, + "new_cases_smoothed": 69.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 682.795, + "new_cases_per_million": 2.665, + "new_cases_smoothed_per_million": 5.276, + "total_deaths_per_million": 4.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 70.83 + }, + { + "date": "2020-08-25", + "total_cases": 9013.0, + "new_cases": 46.0, + "new_cases_smoothed": 56.143, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 686.297, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 4.275, + "total_deaths_per_million": 4.112, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.033 + }, + { + "date": "2020-08-26", + "total_cases": 9128.0, + "new_cases": 115.0, + "new_cases_smoothed": 59.0, + "total_deaths": 57.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 695.054, + "new_cases_per_million": 8.757, + "new_cases_smoothed_per_million": 4.493, + "total_deaths_per_million": 4.34, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.054 + }, + { + "date": "2020-08-27", + "total_cases": 9167.0, + "new_cases": 39.0, + "new_cases_smoothed": 53.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 698.024, + "new_cases_per_million": 2.97, + "new_cases_smoothed_per_million": 4.079, + "total_deaths_per_million": 4.34, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044 + }, + { + "date": "2020-08-28", + "total_cases": 9213.0, + "new_cases": 46.0, + "new_cases_smoothed": 48.143, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 701.526, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 3.666, + "total_deaths_per_million": 4.416, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.054 + }, + { + "date": "2020-08-29", + "total_cases": 9251.0, + "new_cases": 38.0, + "new_cases_smoothed": 45.571, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 704.42, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.065 + }, + { + "date": "2020-08-30", + "total_cases": 9251.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 704.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065 + }, + { + "date": "2020-08-31", + "total_cases": 9371.0, + "new_cases": 120.0, + "new_cases_smoothed": 57.714, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 713.557, + "new_cases_per_million": 9.137, + "new_cases_smoothed_per_million": 4.395, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065 + }, + { + "date": "2020-09-01", + "total_cases": 9409.0, + "new_cases": 38.0, + "new_cases_smoothed": 56.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 716.451, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 4.308, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054 + }, + { + "date": "2020-09-02", + "total_cases": 9479.0, + "new_cases": 70.0, + "new_cases_smoothed": 50.143, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 721.781, + "new_cases_per_million": 5.33, + "new_cases_smoothed_per_million": 3.818, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-03", + "total_cases": 9479.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.571, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 721.781, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.394, + "total_deaths_per_million": 4.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-04", + "total_cases": 9526.0, + "new_cases": 47.0, + "new_cases_smoothed": 44.714, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 725.36, + "new_cases_per_million": 3.579, + "new_cases_smoothed_per_million": 3.405, + "total_deaths_per_million": 4.569, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-05", + "total_cases": 9579.0, + "new_cases": 53.0, + "new_cases_smoothed": 46.857, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 729.396, + "new_cases_per_million": 4.036, + "new_cases_smoothed_per_million": 3.568, + "total_deaths_per_million": 4.645, + "new_deaths_per_million": 0.076, + "new_deaths_smoothed_per_million": 0.022 + } + ] + }, + "GNB": { + "continent": "Africa", + "location": "Guinea-Bissau", + "population": 1967998.0, + "population_density": 66.191, + "median_age": 19.4, + "aged_65_older": 3.002, + "aged_70_older": 1.565, + "gdp_per_capita": 1548.675, + "extreme_poverty": 67.1, + "cardiovasc_death_rate": 382.474, + "diabetes_prevalence": 2.42, + "handwashing_facilities": 6.403, + "life_expectancy": 58.32, + "data": [ + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 1.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 8.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 4.065, + "new_cases_per_million": 3.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.573, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.653, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 15.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.622, + "new_cases_per_million": 3.049, + "new_cases_smoothed_per_million": 0.944, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.146, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 33.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.768, + "new_cases_per_million": 7.622, + "new_cases_smoothed_per_million": 2.25, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.742, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 35.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.785, + "new_cases_per_million": 1.016, + "new_cases_smoothed_per_million": 1.887, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 38.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.309, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.817, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 1.524, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.817, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.325, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 43.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.85, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 46.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.374, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 0.798, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 50.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 2.033, + "new_cases_smoothed_per_million": 1.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.798, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.798, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 52.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.423, + "new_cases_per_million": 1.016, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 53.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.931, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-04-28", + "total_cases": 73.0, + "new_cases": 20.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.094, + "new_cases_per_million": 10.163, + "new_cases_smoothed_per_million": 1.67, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-04-29", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.67, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-04-30", + "total_cases": 77.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.126, + "new_cases_per_million": 2.033, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-01", + "total_cases": 205.0, + "new_cases": 128.0, + "new_cases_smoothed": 21.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 104.167, + "new_cases_per_million": 65.041, + "new_cases_smoothed_per_million": 11.106, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-02", + "total_cases": 257.0, + "new_cases": 52.0, + "new_cases_smoothed": 29.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 130.59, + "new_cases_per_million": 26.423, + "new_cases_smoothed_per_million": 14.881, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-03", + "total_cases": 257.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 130.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.881, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-04", + "total_cases": 292.0, + "new_cases": 35.0, + "new_cases_smoothed": 34.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 148.374, + "new_cases_per_million": 17.785, + "new_cases_smoothed_per_million": 17.349, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-05", + "total_cases": 413.0, + "new_cases": 121.0, + "new_cases_smoothed": 48.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 209.858, + "new_cases_per_million": 61.484, + "new_cases_smoothed_per_million": 24.681, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-06", + "total_cases": 475.0, + "new_cases": 62.0, + "new_cases_smoothed": 57.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 241.362, + "new_cases_per_million": 31.504, + "new_cases_smoothed_per_million": 29.181, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-07", + "total_cases": 475.0, + "new_cases": 0.0, + "new_cases_smoothed": 56.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 241.362, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.891, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-08", + "total_cases": 564.0, + "new_cases": 89.0, + "new_cases_smoothed": 51.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 286.586, + "new_cases_per_million": 45.224, + "new_cases_smoothed_per_million": 26.06, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-09", + "total_cases": 594.0, + "new_cases": 30.0, + "new_cases_smoothed": 48.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 301.83, + "new_cases_per_million": 15.244, + "new_cases_smoothed_per_million": 24.463, + "total_deaths_per_million": 1.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-10", + "total_cases": 641.0, + "new_cases": 47.0, + "new_cases_smoothed": 54.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 325.712, + "new_cases_per_million": 23.882, + "new_cases_smoothed_per_million": 27.875, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-05-11", + "total_cases": 726.0, + "new_cases": 85.0, + "new_cases_smoothed": 62.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 368.903, + "new_cases_per_million": 43.191, + "new_cases_smoothed_per_million": 31.504, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-12", + "total_cases": 761.0, + "new_cases": 35.0, + "new_cases_smoothed": 49.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 386.687, + "new_cases_per_million": 17.785, + "new_cases_smoothed_per_million": 25.261, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-13", + "total_cases": 820.0, + "new_cases": 59.0, + "new_cases_smoothed": 49.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 416.667, + "new_cases_per_million": 29.98, + "new_cases_smoothed_per_million": 25.044, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-14", + "total_cases": 820.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 416.667, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.044, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-15", + "total_cases": 913.0, + "new_cases": 93.0, + "new_cases_smoothed": 49.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 463.923, + "new_cases_per_million": 47.256, + "new_cases_smoothed_per_million": 25.334, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-16", + "total_cases": 913.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 463.923, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.156, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-17", + "total_cases": 913.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 463.923, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.745, + "total_deaths_per_million": 1.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 990.0, + "new_cases": 77.0, + "new_cases_smoothed": 37.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 503.049, + "new_cases_per_million": 39.126, + "new_cases_smoothed_per_million": 19.164, + "total_deaths_per_million": 2.033, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-19", + "total_cases": 990.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 503.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.623, + "total_deaths_per_million": 2.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-20", + "total_cases": 1038.0, + "new_cases": 48.0, + "new_cases_smoothed": 31.143, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 527.44, + "new_cases_per_million": 24.39, + "new_cases_smoothed_per_million": 15.825, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 1.016, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-05-21", + "total_cases": 1038.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 527.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.825, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-05-22", + "total_cases": 1089.0, + "new_cases": 51.0, + "new_cases_smoothed": 25.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 553.354, + "new_cases_per_million": 25.915, + "new_cases_smoothed_per_million": 12.776, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-05-23", + "total_cases": 1089.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 553.354, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.776, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-05-24", + "total_cases": 1114.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 566.057, + "new_cases_per_million": 12.703, + "new_cases_smoothed_per_million": 14.591, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-05-25", + "total_cases": 1173.0, + "new_cases": 59.0, + "new_cases_smoothed": 26.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 596.037, + "new_cases_per_million": 29.98, + "new_cases_smoothed_per_million": 13.284, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-05-26", + "total_cases": 1173.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 596.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.284, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-05-27", + "total_cases": 1173.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 596.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.8, + "total_deaths_per_million": 3.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 1178.0, + "new_cases": 5.0, + "new_cases_smoothed": 20.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 598.578, + "new_cases_per_million": 2.541, + "new_cases_smoothed_per_million": 10.163, + "total_deaths_per_million": 3.557, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-29", + "total_cases": 1178.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 598.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.461, + "total_deaths_per_million": 3.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-05-30", + "total_cases": 1256.0, + "new_cases": 78.0, + "new_cases_smoothed": 23.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 638.212, + "new_cases_per_million": 39.634, + "new_cases_smoothed_per_million": 12.123, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-05-31", + "total_cases": 1256.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 638.212, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.308, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-01", + "total_cases": 1322.0, + "new_cases": 66.0, + "new_cases_smoothed": 21.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 671.749, + "new_cases_per_million": 33.537, + "new_cases_smoothed_per_million": 10.816, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-02", + "total_cases": 1339.0, + "new_cases": 17.0, + "new_cases_smoothed": 23.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 680.387, + "new_cases_per_million": 8.638, + "new_cases_smoothed_per_million": 12.05, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-03", + "total_cases": 1339.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 680.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.05, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-04", + "total_cases": 1339.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 680.387, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.687, + "total_deaths_per_million": 4.065, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-06-05", + "total_cases": 1346.0, + "new_cases": 7.0, + "new_cases_smoothed": 24.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 683.944, + "new_cases_per_million": 3.557, + "new_cases_smoothed_per_million": 12.195, + "total_deaths_per_million": 4.573, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-06", + "total_cases": 1368.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.0, + "total_deaths": 12.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 695.123, + "new_cases_per_million": 11.179, + "new_cases_smoothed_per_million": 8.13, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-07", + "total_cases": 1368.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 695.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.13, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-08", + "total_cases": 1368.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 695.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.339, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-09", + "total_cases": 1389.0, + "new_cases": 21.0, + "new_cases_smoothed": 7.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 705.793, + "new_cases_per_million": 10.671, + "new_cases_smoothed_per_million": 3.63, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-10", + "total_cases": 1389.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 705.793, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.63, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-11", + "total_cases": 1389.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 705.793, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.63, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-12", + "total_cases": 1389.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 705.793, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.121, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-13", + "total_cases": 1389.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 705.793, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.524, + "total_deaths_per_million": 6.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 1460.0, + "new_cases": 71.0, + "new_cases_smoothed": 13.143, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 741.871, + "new_cases_per_million": 36.077, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-15", + "total_cases": 1460.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 741.871, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-16", + "total_cases": 1460.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 741.871, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.154, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-17", + "total_cases": 1492.0, + "new_cases": 32.0, + "new_cases_smoothed": 14.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 758.131, + "new_cases_per_million": 16.26, + "new_cases_smoothed_per_million": 7.477, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-18", + "total_cases": 1492.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 758.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.477, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-19", + "total_cases": 1512.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 768.293, + "new_cases_per_million": 10.163, + "new_cases_smoothed_per_million": 8.929, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-20", + "total_cases": 1512.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 768.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.929, + "total_deaths_per_million": 7.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-06-21", + "total_cases": 1541.0, + "new_cases": 29.0, + "new_cases_smoothed": 11.571, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 783.029, + "new_cases_per_million": 14.736, + "new_cases_smoothed_per_million": 5.88, + "total_deaths_per_million": 8.638, + "new_deaths_per_million": 1.016, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-22", + "total_cases": 1541.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 783.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.88, + "total_deaths_per_million": 8.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-06-23", + "total_cases": 1556.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.714, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 790.651, + "new_cases_per_million": 7.622, + "new_cases_smoothed_per_million": 6.969, + "total_deaths_per_million": 9.654, + "new_deaths_per_million": 1.016, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-24", + "total_cases": 1556.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 790.651, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.646, + "total_deaths_per_million": 9.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-25", + "total_cases": 1556.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 790.651, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.646, + "total_deaths_per_million": 9.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-26", + "total_cases": 1556.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 790.651, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.194, + "total_deaths_per_million": 9.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-27", + "total_cases": 1556.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 790.651, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.194, + "total_deaths_per_million": 9.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-28", + "total_cases": 1614.0, + "new_cases": 58.0, + "new_cases_smoothed": 10.429, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 820.123, + "new_cases_per_million": 29.472, + "new_cases_smoothed_per_million": 5.299, + "total_deaths_per_million": 10.671, + "new_deaths_per_million": 1.016, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-29", + "total_cases": 1614.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 820.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.299, + "total_deaths_per_million": 10.671, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-06-30", + "total_cases": 1614.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 820.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.21, + "total_deaths_per_million": 10.671, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-07-01", + "total_cases": 1654.0, + "new_cases": 40.0, + "new_cases_smoothed": 14.0, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 840.448, + "new_cases_per_million": 20.325, + "new_cases_smoothed_per_million": 7.114, + "total_deaths_per_million": 12.195, + "new_deaths_per_million": 1.524, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-07-02", + "total_cases": 1654.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 840.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.114, + "total_deaths_per_million": 12.195, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-07-03", + "total_cases": 1654.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 840.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.114, + "total_deaths_per_million": 12.195, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-07-04", + "total_cases": 1710.0, + "new_cases": 56.0, + "new_cases_smoothed": 22.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 868.903, + "new_cases_per_million": 28.455, + "new_cases_smoothed_per_million": 11.179, + "total_deaths_per_million": 12.195, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-07-05", + "total_cases": 1765.0, + "new_cases": 55.0, + "new_cases_smoothed": 21.571, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 896.851, + "new_cases_per_million": 27.947, + "new_cases_smoothed_per_million": 10.961, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-07-06", + "total_cases": 1765.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 896.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.961, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-07-07", + "total_cases": 1765.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 896.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.961, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-07-08", + "total_cases": 1790.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 909.554, + "new_cases_per_million": 12.703, + "new_cases_smoothed_per_million": 9.872, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-09", + "total_cases": 1790.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 909.554, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.872, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-10", + "total_cases": 1790.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 909.554, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.872, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-11", + "total_cases": 1790.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 909.554, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.807, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-12", + "total_cases": 1842.0, + "new_cases": 52.0, + "new_cases_smoothed": 11.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 935.977, + "new_cases_per_million": 26.423, + "new_cases_smoothed_per_million": 5.589, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 1842.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 935.977, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.589, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 1842.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 935.977, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.589, + "total_deaths_per_million": 12.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 1902.0, + "new_cases": 60.0, + "new_cases_smoothed": 16.0, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 966.464, + "new_cases_per_million": 30.488, + "new_cases_smoothed_per_million": 8.13, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-16", + "total_cases": 1902.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 966.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.13, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-17", + "total_cases": 1927.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.168, + "new_cases_per_million": 12.703, + "new_cases_smoothed_per_million": 9.945, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-18", + "total_cases": 1927.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.168, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.945, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-19", + "total_cases": 1927.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.168, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.17, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-20", + "total_cases": 1927.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 979.168, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.17, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-21", + "total_cases": 1950.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 990.855, + "new_cases_per_million": 11.687, + "new_cases_smoothed_per_million": 7.84, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-07-22", + "total_cases": 1954.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 2.033, + "new_cases_smoothed_per_million": 3.775, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.775, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.29, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 1954.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 992.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 1981.0, + "new_cases": 27.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1006.607, + "new_cases_per_million": 13.72, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1006.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1006.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1006.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 1981.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1006.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.96, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-08-05", + "total_cases": 2032.0, + "new_cases": 51.0, + "new_cases_smoothed": 11.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1032.521, + "new_cases_per_million": 25.915, + "new_cases_smoothed_per_million": 5.662, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-08-06", + "total_cases": 2032.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1032.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.662, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-08-07", + "total_cases": 2032.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1032.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.702, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-08-08", + "total_cases": 2032.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1032.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.702, + "total_deaths_per_million": 13.72, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-08-09", + "total_cases": 2052.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.143, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1042.684, + "new_cases_per_million": 10.163, + "new_cases_smoothed_per_million": 5.154, + "total_deaths_per_million": 14.736, + "new_deaths_per_million": 1.016, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-08-10", + "total_cases": 2052.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1042.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.154, + "total_deaths_per_million": 14.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.218 + }, + { + "date": "2020-08-11", + "total_cases": 2052.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1042.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.154, + "total_deaths_per_million": 14.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-08-12", + "total_cases": 2052.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1042.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 14.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-08-13", + "total_cases": 2052.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1042.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 14.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-08-14", + "total_cases": 2117.0, + "new_cases": 65.0, + "new_cases_smoothed": 12.143, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 33.028, + "new_cases_smoothed_per_million": 6.17, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 2.033, + "new_deaths_smoothed_per_million": 0.436 + }, + { + "date": "2020-08-15", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.17, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.436 + }, + { + "date": "2020-08-16", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-08-17", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-08-18", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-08-19", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-08-20", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29 + }, + { + "date": "2020-08-21", + "total_cases": 2117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1075.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 2149.0, + "new_cases": 32.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 16.26, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 2149.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1091.973, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 2205.0, + "new_cases": 56.0, + "new_cases_smoothed": 8.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 28.455, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 16.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 2205.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 17.276, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-01", + "total_cases": 2205.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 17.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-02", + "total_cases": 2205.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 17.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-03", + "total_cases": 2205.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 17.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-04", + "total_cases": 2205.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1120.428, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 17.276, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-05", + "total_cases": 2245.0, + "new_cases": 40.0, + "new_cases_smoothed": 13.714, + "total_deaths": 38.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1140.753, + "new_cases_per_million": 20.325, + "new_cases_smoothed_per_million": 6.969, + "total_deaths_per_million": 19.309, + "new_deaths_per_million": 2.033, + "new_deaths_smoothed_per_million": 0.363 + } + ] + }, + "GUY": { + "continent": "South America", + "location": "Guyana", + "population": 786559.0, + "population_density": 3.952, + "median_age": 26.3, + "aged_65_older": 5.305, + "aged_70_older": 2.837, + "gdp_per_capita": 7435.047, + "cardiovasc_death_rate": 373.159, + "diabetes_prevalence": 11.62, + "handwashing_facilities": 77.159, + "hospital_beds_per_thousand": 1.6, + "life_expectancy": 69.91, + "data": [ + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 1.271, + "new_cases_per_million": 1.271, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 1.271, + "stringency_index": 25.0 + }, + { + "date": "2020-03-16", + "total_cases": 4.0, + "new_cases": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.085, + "new_cases_per_million": 3.814, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-17", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.085, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-18", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.085, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-19", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.357, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 41.67 + }, + { + "date": "2020-03-20", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-21", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-22", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-23", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-24", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-25", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.171, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-01", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.256, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 2.543, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 57.41 + }, + { + "date": "2020-04-02", + "total_cases": 19.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.156, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 57.41 + }, + { + "date": "2020-04-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 23.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 29.241, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 30.513, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 2.906, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 29.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.869, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 3.814, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 39.412, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 4.177, + "total_deaths_per_million": 6.357, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.726, + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41.955, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.814, + "total_deaths_per_million": 6.357, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 37.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 47.04, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-10", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 47.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 40.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.854, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 3.088, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 45.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 57.211, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 3.814, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 57.211, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.906, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.754, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 2.906, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-15", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.025, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-16", + "total_cases": 55.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.925, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-04-17", + "total_cases": 57.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.468, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-04-18", + "total_cases": 63.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.096, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 4.177, + "total_deaths_per_million": 7.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-04-19", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 80.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-20", + "total_cases": 65.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.638, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-21", + "total_cases": 66.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 83.91, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.451, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-22", + "total_cases": 67.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.181, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.451, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-23", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-24", + "total_cases": 70.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.995, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 8.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 92.809, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 1.816, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 74.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.081, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.081, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.635, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-28", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.081, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 75.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 95.352, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-04-30", + "total_cases": 78.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.166, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 10.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-01", + "total_cases": 82.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 104.252, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 11.442, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-05-02", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 104.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.635, + "total_deaths_per_million": 11.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-03", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 104.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 11.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-04", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 104.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 11.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 92.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 116.965, + "new_cases_per_million": 12.714, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 11.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 93.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 118.237, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 118.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 119.508, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 97.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 123.322, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 104.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.221, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 3.996, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 109.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.578, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 3.088, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 113.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.664, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.664, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-16", + "total_cases": 116.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 147.478, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 3.996, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-17", + "total_cases": 117.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 148.749, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-18", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 148.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-19", + "total_cases": 124.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 157.649, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-20", + "total_cases": 125.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.92, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-21", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.92, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 127.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.463, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.816, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 135.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.634, + "new_cases_per_million": 10.171, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 12.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 137.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 174.176, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 13.985, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 139.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.719, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 13.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 139.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 176.719, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 13.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 150.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 190.704, + "new_cases_per_million": 13.985, + "new_cases_smoothed_per_million": 4.177, + "total_deaths_per_million": 13.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-30", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 190.704, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.177, + "total_deaths_per_million": 13.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-05-31", + "total_cases": 152.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 193.247, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 4.541, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-06-01", + "total_cases": 153.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 194.518, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 87.04 + }, + { + "date": "2020-06-02", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.906, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-06-03", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-06-04", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-06-05", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-06-06", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 194.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 87.04 + }, + { + "date": "2020-06-07", + "total_cases": 154.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.79, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-08", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-10", + "total_cases": 156.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.332, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.332, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 158.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.875, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 159.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.146, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 1.09, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 159.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 171.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.403, + "new_cases_per_million": 15.256, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-18", + "total_cases": 171.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 217.403, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-19", + "total_cases": 183.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.659, + "new_cases_per_million": 15.256, + "new_cases_smoothed_per_million": 4.541, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-20", + "total_cases": 183.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.659, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-21", + "total_cases": 183.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.659, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-22", + "total_cases": 184.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.93, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 4.541, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-23", + "total_cases": 205.0, + "new_cases": 21.0, + "new_cases_smoothed": 6.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.629, + "new_cases_per_million": 26.699, + "new_cases_smoothed_per_million": 8.355, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-24", + "total_cases": 206.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.9, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 6.357, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-25", + "total_cases": 209.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.714, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 6.902, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-26", + "total_cases": 215.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 273.342, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 5.812, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-27", + "total_cases": 230.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.413, + "new_cases_per_million": 19.07, + "new_cases_smoothed_per_million": 8.536, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-28", + "total_cases": 230.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.536, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-29", + "total_cases": 230.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.355, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-06-30", + "total_cases": 235.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 298.77, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 5.449, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-07-01", + "total_cases": 245.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 311.483, + "new_cases_per_million": 12.714, + "new_cases_smoothed_per_million": 7.083, + "total_deaths_per_million": 15.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-07-02", + "total_cases": 248.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 315.297, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 7.083, + "total_deaths_per_million": 16.528, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 79.63 + }, + { + "date": "2020-07-03", + "total_cases": 250.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 317.84, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 6.357, + "total_deaths_per_million": 17.799, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-04", + "total_cases": 256.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 325.468, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 4.722, + "total_deaths_per_million": 17.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-05", + "total_cases": 272.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 345.81, + "new_cases_per_million": 20.342, + "new_cases_smoothed_per_million": 7.628, + "total_deaths_per_million": 17.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-06", + "total_cases": 273.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 347.081, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 7.81, + "total_deaths_per_million": 19.07, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 77.31 + }, + { + "date": "2020-07-07", + "total_cases": 278.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 353.438, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 7.81, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.726, + "stringency_index": 77.31 + }, + { + "date": "2020-07-08", + "total_cases": 285.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 362.338, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.726, + "stringency_index": 77.31 + }, + { + "date": "2020-07-09", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 362.338, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 77.31 + }, + { + "date": "2020-07-10", + "total_cases": 286.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 363.609, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 6.538, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-11", + "total_cases": 290.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 368.695, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 6.175, + "total_deaths_per_million": 20.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-12", + "total_cases": 291.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 369.966, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 3.451, + "total_deaths_per_million": 21.613, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 77.31 + }, + { + "date": "2020-07-13", + "total_cases": 297.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 377.594, + "new_cases_per_million": 7.628, + "new_cases_smoothed_per_million": 4.359, + "total_deaths_per_million": 21.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-14", + "total_cases": 300.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 381.408, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 3.996, + "total_deaths_per_million": 21.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-15", + "total_cases": 308.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 391.579, + "new_cases_per_million": 10.171, + "new_cases_smoothed_per_million": 4.177, + "total_deaths_per_million": 21.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-16", + "total_cases": 313.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 397.936, + "new_cases_per_million": 6.357, + "new_cases_smoothed_per_million": 5.085, + "total_deaths_per_million": 22.884, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-17", + "total_cases": 314.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 399.207, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 5.085, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 77.31 + }, + { + "date": "2020-07-18", + "total_cases": 315.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 400.479, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 4.541, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 77.31 + }, + { + "date": "2020-07-19", + "total_cases": 327.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 415.735, + "new_cases_per_million": 15.256, + "new_cases_smoothed_per_million": 6.538, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-20", + "total_cases": 336.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 427.177, + "new_cases_per_million": 11.442, + "new_cases_smoothed_per_million": 7.083, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-21", + "total_cases": 337.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 428.448, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-22", + "total_cases": 339.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 430.991, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 5.63, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 77.31 + }, + { + "date": "2020-07-23", + "total_cases": 350.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 444.976, + "new_cases_per_million": 13.985, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-24", + "total_cases": 351.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 446.248, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 24.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.31 + }, + { + "date": "2020-07-25", + "total_cases": 352.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 447.519, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-26", + "total_cases": 360.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 457.69, + "new_cases_per_million": 10.171, + "new_cases_smoothed_per_million": 5.994, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-27", + "total_cases": 370.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 470.403, + "new_cases_per_million": 12.714, + "new_cases_smoothed_per_million": 6.175, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-28", + "total_cases": 389.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 494.559, + "new_cases_per_million": 24.156, + "new_cases_smoothed_per_million": 9.444, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-29", + "total_cases": 396.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 503.459, + "new_cases_per_million": 8.9, + "new_cases_smoothed_per_million": 10.353, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-30", + "total_cases": 398.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 506.001, + "new_cases_per_million": 2.543, + "new_cases_smoothed_per_million": 8.718, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-07-31", + "total_cases": 401.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 509.816, + "new_cases_per_million": 3.814, + "new_cases_smoothed_per_million": 9.081, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 77.31 + }, + { + "date": "2020-08-01", + "total_cases": 413.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 525.072, + "new_cases_per_million": 15.256, + "new_cases_smoothed_per_million": 11.079, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-02", + "total_cases": 430.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 546.685, + "new_cases_per_million": 21.613, + "new_cases_smoothed_per_million": 12.714, + "total_deaths_per_million": 25.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-03", + "total_cases": 474.0, + "new_cases": 44.0, + "new_cases_smoothed": 14.857, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 602.625, + "new_cases_per_million": 55.94, + "new_cases_smoothed_per_million": 18.889, + "total_deaths_per_million": 26.699, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 75.93 + }, + { + "date": "2020-08-04", + "total_cases": 474.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 602.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.438, + "total_deaths_per_million": 26.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 75.93 + }, + { + "date": "2020-08-05", + "total_cases": 497.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 631.866, + "new_cases_per_million": 29.241, + "new_cases_smoothed_per_million": 18.344, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 75.93 + }, + { + "date": "2020-08-06", + "total_cases": 509.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 647.122, + "new_cases_per_million": 15.256, + "new_cases_smoothed_per_million": 20.16, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 75.93 + }, + { + "date": "2020-08-07", + "total_cases": 538.0, + "new_cases": 29.0, + "new_cases_smoothed": 19.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 683.992, + "new_cases_per_million": 36.869, + "new_cases_smoothed_per_million": 24.882, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 75.93 + }, + { + "date": "2020-08-08", + "total_cases": 538.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 683.992, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.703, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 75.93 + }, + { + "date": "2020-08-09", + "total_cases": 554.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 704.334, + "new_cases_per_million": 20.342, + "new_cases_smoothed_per_million": 22.521, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.363, + "stringency_index": 75.93 + }, + { + "date": "2020-08-10", + "total_cases": 568.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 722.133, + "new_cases_per_million": 17.799, + "new_cases_smoothed_per_million": 17.073, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 75.93 + }, + { + "date": "2020-08-11", + "total_cases": 568.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 722.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.073, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 75.93 + }, + { + "date": "2020-08-12", + "total_cases": 568.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 722.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.895, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-13", + "total_cases": 623.0, + "new_cases": 55.0, + "new_cases_smoothed": 16.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 792.058, + "new_cases_per_million": 69.925, + "new_cases_smoothed_per_million": 20.705, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-08-14", + "total_cases": 631.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 802.228, + "new_cases_per_million": 10.171, + "new_cases_smoothed_per_million": 16.891, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-15", + "total_cases": 649.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 825.113, + "new_cases_per_million": 22.884, + "new_cases_smoothed_per_million": 20.16, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-16", + "total_cases": 674.0, + "new_cases": 25.0, + "new_cases_smoothed": 17.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 856.897, + "new_cases_per_million": 31.784, + "new_cases_smoothed_per_million": 21.795, + "total_deaths_per_million": 27.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-08-17", + "total_cases": 709.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.143, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 901.395, + "new_cases_per_million": 44.498, + "new_cases_smoothed_per_million": 25.609, + "total_deaths_per_million": 29.241, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 73.15 + }, + { + "date": "2020-08-18", + "total_cases": 709.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 901.395, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.609, + "total_deaths_per_million": 29.241, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 73.15 + }, + { + "date": "2020-08-19", + "total_cases": 737.0, + "new_cases": 28.0, + "new_cases_smoothed": 24.143, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 936.993, + "new_cases_per_million": 35.598, + "new_cases_smoothed_per_million": 30.694, + "total_deaths_per_million": 31.784, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.545, + "stringency_index": 73.15 + }, + { + "date": "2020-08-20", + "total_cases": 776.0, + "new_cases": 39.0, + "new_cases_smoothed": 21.857, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 986.576, + "new_cases_per_million": 49.583, + "new_cases_smoothed_per_million": 27.788, + "total_deaths_per_million": 34.327, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 0.908, + "stringency_index": 73.15 + }, + { + "date": "2020-08-21", + "total_cases": 846.0, + "new_cases": 70.0, + "new_cases_smoothed": 30.714, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1075.571, + "new_cases_per_million": 88.995, + "new_cases_smoothed_per_million": 39.049, + "total_deaths_per_million": 36.869, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.271, + "stringency_index": 73.15 + }, + { + "date": "2020-08-22", + "total_cases": 881.0, + "new_cases": 35.0, + "new_cases_smoothed": 33.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1120.069, + "new_cases_per_million": 44.498, + "new_cases_smoothed_per_million": 42.137, + "total_deaths_per_million": 38.141, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 1.453, + "stringency_index": 73.15 + }, + { + "date": "2020-08-23", + "total_cases": 925.0, + "new_cases": 44.0, + "new_cases_smoothed": 35.857, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1176.008, + "new_cases_per_million": 55.94, + "new_cases_smoothed_per_million": 45.587, + "total_deaths_per_million": 39.412, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 1.635, + "stringency_index": 73.15 + }, + { + "date": "2020-08-24", + "total_cases": 955.0, + "new_cases": 30.0, + "new_cases_smoothed": 35.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1214.149, + "new_cases_per_million": 38.141, + "new_cases_smoothed_per_million": 44.679, + "total_deaths_per_million": 39.412, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.453, + "stringency_index": 73.15 + }, + { + "date": "2020-08-25", + "total_cases": 955.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1214.149, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.679, + "total_deaths_per_million": 39.412, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.453, + "stringency_index": 73.15 + }, + { + "date": "2020-08-26", + "total_cases": 1060.0, + "new_cases": 105.0, + "new_cases_smoothed": 46.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1347.642, + "new_cases_per_million": 133.493, + "new_cases_smoothed_per_million": 58.664, + "total_deaths_per_million": 39.412, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.09, + "stringency_index": 73.15 + }, + { + "date": "2020-08-27", + "total_cases": 1093.0, + "new_cases": 33.0, + "new_cases_smoothed": 45.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1389.597, + "new_cases_per_million": 41.955, + "new_cases_smoothed_per_million": 57.574, + "total_deaths_per_million": 39.412, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.726, + "stringency_index": 73.15 + }, + { + "date": "2020-08-28", + "total_cases": 1140.0, + "new_cases": 47.0, + "new_cases_smoothed": 42.0, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1449.351, + "new_cases_per_million": 59.754, + "new_cases_smoothed_per_million": 53.397, + "total_deaths_per_million": 40.684, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.545 + }, + { + "date": "2020-08-29", + "total_cases": 1180.0, + "new_cases": 40.0, + "new_cases_smoothed": 42.714, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1500.205, + "new_cases_per_million": 50.854, + "new_cases_smoothed_per_million": 54.305, + "total_deaths_per_million": 44.498, + "new_deaths_per_million": 3.814, + "new_deaths_smoothed_per_million": 0.908 + }, + { + "date": "2020-08-30", + "total_cases": 1184.0, + "new_cases": 4.0, + "new_cases_smoothed": 37.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1505.291, + "new_cases_per_million": 5.085, + "new_cases_smoothed_per_million": 47.04, + "total_deaths_per_million": 44.498, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.726 + }, + { + "date": "2020-08-31", + "total_cases": 1234.0, + "new_cases": 50.0, + "new_cases_smoothed": 39.857, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1568.859, + "new_cases_per_million": 63.568, + "new_cases_smoothed_per_million": 50.673, + "total_deaths_per_million": 47.04, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.09 + }, + { + "date": "2020-09-01", + "total_cases": 1306.0, + "new_cases": 72.0, + "new_cases_smoothed": 50.143, + "total_deaths": 39.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1660.397, + "new_cases_per_million": 91.538, + "new_cases_smoothed_per_million": 63.75, + "total_deaths_per_million": 49.583, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.453 + }, + { + "date": "2020-09-02", + "total_cases": 1373.0, + "new_cases": 67.0, + "new_cases_smoothed": 44.714, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1745.578, + "new_cases_per_million": 85.181, + "new_cases_smoothed_per_million": 56.848, + "total_deaths_per_million": 52.126, + "new_deaths_per_million": 2.543, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-09-03", + "total_cases": 1382.0, + "new_cases": 9.0, + "new_cases_smoothed": 41.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1757.02, + "new_cases_per_million": 11.442, + "new_cases_smoothed_per_million": 52.489, + "total_deaths_per_million": 52.126, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.816 + }, + { + "date": "2020-09-04", + "total_cases": 1401.0, + "new_cases": 19.0, + "new_cases_smoothed": 37.286, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1781.176, + "new_cases_per_million": 24.156, + "new_cases_smoothed_per_million": 47.404, + "total_deaths_per_million": 55.94, + "new_deaths_per_million": 3.814, + "new_deaths_smoothed_per_million": 2.179 + }, + { + "date": "2020-09-05", + "total_cases": 1416.0, + "new_cases": 15.0, + "new_cases_smoothed": 33.714, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1800.246, + "new_cases_per_million": 19.07, + "new_cases_smoothed_per_million": 42.863, + "total_deaths_per_million": 55.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.635 + } + ] + }, + "HTI": { + "continent": "North America", + "location": "Haiti", + "population": 11402533.0, + "population_density": 398.448, + "median_age": 24.3, + "aged_65_older": 4.8, + "aged_70_older": 2.954, + "gdp_per_capita": 1653.173, + "extreme_poverty": 23.5, + "cardiovasc_death_rate": 430.548, + "diabetes_prevalence": 6.65, + "female_smokers": 2.9, + "male_smokers": 23.1, + "handwashing_facilities": 22.863, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 64.0, + "data": [ + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.175, + "new_cases_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.175, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.175, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.175, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-24", + "total_cases": 5.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.438, + "new_cases_per_million": 0.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-25", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.614, + "new_cases_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-26", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.702, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.702, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-30", + "total_cases": 15.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.315, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.315, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.315, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.403, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-03", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.579, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.579, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-05", + "total_cases": 21.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.842, + "new_cases_per_million": 0.263, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.842, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.105, + "new_cases_per_million": 0.263, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.192, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 27.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.368, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.088, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 30.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.631, + "new_cases_per_million": 0.263, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.719, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.894, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 40.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.508, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.508, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.596, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 43.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.771, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 44.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.859, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.859, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 47.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.122, + "new_cases_per_million": 0.263, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-21", + "total_cases": 57.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.999, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 0.213, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-22", + "total_cases": 58.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.087, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.351, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 89.81 + }, + { + "date": "2020-04-23", + "total_cases": 62.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.437, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.263, + "total_deaths_per_million": 0.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 89.81 + }, + { + "date": "2020-04-24", + "total_cases": 72.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.314, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 0.438, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-04-25", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.351, + "total_deaths_per_million": 0.438, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-04-26", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.351, + "total_deaths_per_million": 0.526, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 89.81 + }, + { + "date": "2020-04-27", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 0.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 89.81 + }, + { + "date": "2020-04-28", + "total_cases": 76.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.665, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.238, + "total_deaths_per_million": 0.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 89.81 + }, + { + "date": "2020-04-29", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.665, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-04-30", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.665, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.526, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-05-01", + "total_cases": 81.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.104, + "new_cases_per_million": 0.438, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 85.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.454, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 100.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.429, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.77, + "new_cases_per_million": 1.315, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 0.965, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 101.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.858, + "new_cases_per_million": 0.088, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 1.052, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 108.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9.472, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 0.401, + "total_deaths_per_million": 1.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 129.0, + "new_cases": 21.0, + "new_cases_smoothed": 6.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11.313, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 1.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 146.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12.804, + "new_cases_per_million": 1.491, + "new_cases_smoothed_per_million": 0.764, + "total_deaths_per_million": 1.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 151.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13.243, + "new_cases_per_million": 0.438, + "new_cases_smoothed_per_million": 0.827, + "total_deaths_per_million": 1.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 182.0, + "new_cases": 31.0, + "new_cases_smoothed": 13.857, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 15.961, + "new_cases_per_million": 2.719, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 1.315, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 209.0, + "new_cases": 27.0, + "new_cases_smoothed": 15.571, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 18.329, + "new_cases_per_million": 2.368, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 1.403, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 219.0, + "new_cases": 10.0, + "new_cases_smoothed": 16.857, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 19.206, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 1.478, + "total_deaths_per_million": 1.579, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 234.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 20.522, + "new_cases_per_million": 1.315, + "new_cases_smoothed_per_million": 1.579, + "total_deaths_per_million": 1.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 273.0, + "new_cases": 39.0, + "new_cases_smoothed": 20.571, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 23.942, + "new_cases_per_million": 3.42, + "new_cases_smoothed_per_million": 1.804, + "total_deaths_per_million": 1.754, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 310.0, + "new_cases": 37.0, + "new_cases_smoothed": 23.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.187, + "new_cases_per_million": 3.245, + "new_cases_smoothed_per_million": 2.055, + "total_deaths_per_million": 1.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 358.0, + "new_cases": 48.0, + "new_cases_smoothed": 29.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 31.397, + "new_cases_per_million": 4.21, + "new_cases_smoothed_per_million": 2.593, + "total_deaths_per_million": 1.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 456.0, + "new_cases": 98.0, + "new_cases_smoothed": 39.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 39.991, + "new_cases_per_million": 8.595, + "new_cases_smoothed_per_million": 3.433, + "total_deaths_per_million": 1.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-19", + "total_cases": 533.0, + "new_cases": 77.0, + "new_cases_smoothed": 46.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 46.744, + "new_cases_per_million": 6.753, + "new_cases_smoothed_per_million": 4.059, + "total_deaths_per_million": 1.842, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-20", + "total_cases": 596.0, + "new_cases": 63.0, + "new_cases_smoothed": 53.857, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 52.269, + "new_cases_per_million": 5.525, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 1.929, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-21", + "total_cases": 596.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 52.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.535, + "total_deaths_per_million": 1.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 89.81 + }, + { + "date": "2020-05-22", + "total_cases": 734.0, + "new_cases": 138.0, + "new_cases_smoothed": 65.857, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 64.372, + "new_cases_per_million": 12.103, + "new_cases_smoothed_per_million": 5.776, + "total_deaths_per_million": 2.192, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-23", + "total_cases": 812.0, + "new_cases": 78.0, + "new_cases_smoothed": 71.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 71.212, + "new_cases_per_million": 6.841, + "new_cases_smoothed_per_million": 6.289, + "total_deaths_per_million": 2.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 89.81 + }, + { + "date": "2020-05-24", + "total_cases": 865.0, + "new_cases": 53.0, + "new_cases_smoothed": 72.429, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 75.86, + "new_cases_per_million": 4.648, + "new_cases_smoothed_per_million": 6.352, + "total_deaths_per_million": 2.28, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 89.81 + }, + { + "date": "2020-05-25", + "total_cases": 958.0, + "new_cases": 93.0, + "new_cases_smoothed": 71.714, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 84.016, + "new_cases_per_million": 8.156, + "new_cases_smoothed_per_million": 6.289, + "total_deaths_per_million": 2.368, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 89.81 + }, + { + "date": "2020-05-26", + "total_cases": 1063.0, + "new_cases": 105.0, + "new_cases_smoothed": 75.714, + "total_deaths": 31.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 93.225, + "new_cases_per_million": 9.208, + "new_cases_smoothed_per_million": 6.64, + "total_deaths_per_million": 2.719, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 89.81 + }, + { + "date": "2020-05-27", + "total_cases": 1174.0, + "new_cases": 111.0, + "new_cases_smoothed": 82.571, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 102.96, + "new_cases_per_million": 9.735, + "new_cases_smoothed_per_million": 7.241, + "total_deaths_per_million": 2.894, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 89.81 + }, + { + "date": "2020-05-28", + "total_cases": 1320.0, + "new_cases": 146.0, + "new_cases_smoothed": 103.429, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 115.764, + "new_cases_per_million": 12.804, + "new_cases_smoothed_per_million": 9.071, + "total_deaths_per_million": 2.982, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 89.81 + }, + { + "date": "2020-05-29", + "total_cases": 1443.0, + "new_cases": 123.0, + "new_cases_smoothed": 101.286, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 126.551, + "new_cases_per_million": 10.787, + "new_cases_smoothed_per_million": 8.883, + "total_deaths_per_million": 3.069, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 89.81 + }, + { + "date": "2020-05-30", + "total_cases": 1584.0, + "new_cases": 141.0, + "new_cases_smoothed": 110.286, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 138.917, + "new_cases_per_million": 12.366, + "new_cases_smoothed_per_million": 9.672, + "total_deaths_per_million": 3.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 89.81 + }, + { + "date": "2020-05-31", + "total_cases": 1865.0, + "new_cases": 281.0, + "new_cases_smoothed": 142.857, + "total_deaths": 41.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 163.56, + "new_cases_per_million": 24.644, + "new_cases_smoothed_per_million": 12.529, + "total_deaths_per_million": 3.596, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 89.81 + }, + { + "date": "2020-06-01", + "total_cases": 2124.0, + "new_cases": 259.0, + "new_cases_smoothed": 166.571, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 186.274, + "new_cases_per_million": 22.714, + "new_cases_smoothed_per_million": 14.608, + "total_deaths_per_million": 3.859, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.213, + "stringency_index": 89.81 + }, + { + "date": "2020-06-02", + "total_cases": 2226.0, + "new_cases": 102.0, + "new_cases_smoothed": 166.143, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 195.22, + "new_cases_per_million": 8.945, + "new_cases_smoothed_per_million": 14.571, + "total_deaths_per_million": 3.946, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 2507.0, + "new_cases": 281.0, + "new_cases_smoothed": 190.429, + "total_deaths": 48.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 219.863, + "new_cases_per_million": 24.644, + "new_cases_smoothed_per_million": 16.701, + "total_deaths_per_million": 4.21, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 2640.0, + "new_cases": 133.0, + "new_cases_smoothed": 188.571, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 231.528, + "new_cases_per_million": 11.664, + "new_cases_smoothed_per_million": 16.538, + "total_deaths_per_million": 4.385, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 2640.0, + "new_cases": 0.0, + "new_cases_smoothed": 171.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 231.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.997, + "total_deaths_per_million": 4.385, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 2924.0, + "new_cases": 284.0, + "new_cases_smoothed": 191.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 256.434, + "new_cases_per_million": 24.907, + "new_cases_smoothed_per_million": 16.788, + "total_deaths_per_million": 4.385, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 3072.0, + "new_cases": 148.0, + "new_cases_smoothed": 172.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 269.414, + "new_cases_per_million": 12.98, + "new_cases_smoothed_per_million": 15.122, + "total_deaths_per_million": 4.385, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 3334.0, + "new_cases": 262.0, + "new_cases_smoothed": 172.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 292.391, + "new_cases_per_million": 22.977, + "new_cases_smoothed_per_million": 15.16, + "total_deaths_per_million": 4.473, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 3538.0, + "new_cases": 204.0, + "new_cases_smoothed": 187.429, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 310.282, + "new_cases_per_million": 17.891, + "new_cases_smoothed_per_million": 16.437, + "total_deaths_per_million": 4.736, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 3662.0, + "new_cases": 124.0, + "new_cases_smoothed": 165.0, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 321.157, + "new_cases_per_million": 10.875, + "new_cases_smoothed_per_million": 14.47, + "total_deaths_per_million": 4.911, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 3796.0, + "new_cases": 134.0, + "new_cases_smoothed": 165.143, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 332.908, + "new_cases_per_million": 11.752, + "new_cases_smoothed_per_million": 14.483, + "total_deaths_per_million": 5.087, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 3941.0, + "new_cases": 145.0, + "new_cases_smoothed": 185.857, + "total_deaths": 64.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 345.625, + "new_cases_per_million": 12.716, + "new_cases_smoothed_per_million": 16.3, + "total_deaths_per_million": 5.613, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 3941.0, + "new_cases": 0.0, + "new_cases_smoothed": 145.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 345.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.742, + "total_deaths_per_million": 5.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 4165.0, + "new_cases": 224.0, + "new_cases_smoothed": 156.143, + "total_deaths": 70.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 365.27, + "new_cases_per_million": 19.645, + "new_cases_smoothed_per_million": 13.694, + "total_deaths_per_million": 6.139, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 4309.0, + "new_cases": 144.0, + "new_cases_smoothed": 139.286, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 377.898, + "new_cases_per_million": 12.629, + "new_cases_smoothed_per_million": 12.215, + "total_deaths_per_million": 6.402, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 4441.0, + "new_cases": 132.0, + "new_cases_smoothed": 129.0, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 389.475, + "new_cases_per_million": 11.576, + "new_cases_smoothed_per_million": 11.313, + "total_deaths_per_million": 6.665, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 4547.0, + "new_cases": 106.0, + "new_cases_smoothed": 126.429, + "total_deaths": 80.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 398.771, + "new_cases_per_million": 9.296, + "new_cases_smoothed_per_million": 11.088, + "total_deaths_per_million": 7.016, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.301, + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 4688.0, + "new_cases": 141.0, + "new_cases_smoothed": 127.429, + "total_deaths": 82.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 411.137, + "new_cases_per_million": 12.366, + "new_cases_smoothed_per_million": 11.175, + "total_deaths_per_million": 7.191, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.301, + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 4916.0, + "new_cases": 228.0, + "new_cases_smoothed": 139.286, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 431.132, + "new_cases_per_million": 19.996, + "new_cases_smoothed_per_million": 12.215, + "total_deaths_per_million": 7.367, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 4980.0, + "new_cases": 64.0, + "new_cases_smoothed": 148.429, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 436.745, + "new_cases_per_million": 5.613, + "new_cases_smoothed_per_million": 13.017, + "total_deaths_per_million": 7.63, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 5077.0, + "new_cases": 97.0, + "new_cases_smoothed": 130.286, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 445.252, + "new_cases_per_million": 8.507, + "new_cases_smoothed_per_million": 11.426, + "total_deaths_per_million": 7.718, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 5211.0, + "new_cases": 134.0, + "new_cases_smoothed": 128.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 457.004, + "new_cases_per_million": 11.752, + "new_cases_smoothed_per_million": 11.301, + "total_deaths_per_million": 7.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 5211.0, + "new_cases": 0.0, + "new_cases_smoothed": 110.0, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 457.004, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.647, + "total_deaths_per_million": 7.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 77.78 + }, + { + "date": "2020-06-24", + "total_cases": 5324.0, + "new_cases": 113.0, + "new_cases_smoothed": 111.0, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 466.914, + "new_cases_per_million": 9.91, + "new_cases_smoothed_per_million": 9.735, + "total_deaths_per_million": 7.805, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 77.78 + }, + { + "date": "2020-06-25", + "total_cases": 5429.0, + "new_cases": 105.0, + "new_cases_smoothed": 105.857, + "total_deaths": 92.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 476.122, + "new_cases_per_million": 9.208, + "new_cases_smoothed_per_million": 9.284, + "total_deaths_per_million": 8.068, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 77.78 + }, + { + "date": "2020-06-26", + "total_cases": 5543.0, + "new_cases": 114.0, + "new_cases_smoothed": 89.571, + "total_deaths": 96.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 486.12, + "new_cases_per_million": 9.998, + "new_cases_smoothed_per_million": 7.855, + "total_deaths_per_million": 8.419, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 77.78 + }, + { + "date": "2020-06-27", + "total_cases": 5722.0, + "new_cases": 179.0, + "new_cases_smoothed": 106.0, + "total_deaths": 98.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 501.818, + "new_cases_per_million": 15.698, + "new_cases_smoothed_per_million": 9.296, + "total_deaths_per_million": 8.595, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 77.78 + }, + { + "date": "2020-06-28", + "total_cases": 5777.0, + "new_cases": 55.0, + "new_cases_smoothed": 100.0, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 506.642, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 8.77, + "total_deaths_per_million": 8.77, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 77.78 + }, + { + "date": "2020-06-29", + "total_cases": 5847.0, + "new_cases": 70.0, + "new_cases_smoothed": 90.857, + "total_deaths": 104.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 512.781, + "new_cases_per_million": 6.139, + "new_cases_smoothed_per_million": 7.968, + "total_deaths_per_million": 9.121, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 77.78 + }, + { + "date": "2020-06-30", + "total_cases": 5933.0, + "new_cases": 86.0, + "new_cases_smoothed": 103.143, + "total_deaths": 105.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 520.323, + "new_cases_per_million": 7.542, + "new_cases_smoothed_per_million": 9.046, + "total_deaths_per_million": 9.208, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.213, + "stringency_index": 72.22 + }, + { + "date": "2020-07-01", + "total_cases": 5975.0, + "new_cases": 42.0, + "new_cases_smoothed": 93.0, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 524.006, + "new_cases_per_million": 3.683, + "new_cases_smoothed_per_million": 8.156, + "total_deaths_per_million": 9.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 72.22 + }, + { + "date": "2020-07-02", + "total_cases": 6040.0, + "new_cases": 65.0, + "new_cases_smoothed": 87.286, + "total_deaths": 107.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 529.707, + "new_cases_per_million": 5.7, + "new_cases_smoothed_per_million": 7.655, + "total_deaths_per_million": 9.384, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 72.22 + }, + { + "date": "2020-07-03", + "total_cases": 6101.0, + "new_cases": 61.0, + "new_cases_smoothed": 79.714, + "total_deaths": 110.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 535.057, + "new_cases_per_million": 5.35, + "new_cases_smoothed_per_million": 6.991, + "total_deaths_per_million": 9.647, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 72.22 + }, + { + "date": "2020-07-04", + "total_cases": 6230.0, + "new_cases": 129.0, + "new_cases_smoothed": 72.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 546.37, + "new_cases_per_million": 11.313, + "new_cases_smoothed_per_million": 6.365, + "total_deaths_per_million": 9.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 72.22 + }, + { + "date": "2020-07-05", + "total_cases": 6294.0, + "new_cases": 64.0, + "new_cases_smoothed": 73.857, + "total_deaths": 113.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 551.983, + "new_cases_per_million": 5.613, + "new_cases_smoothed_per_million": 6.477, + "total_deaths_per_million": 9.91, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 72.22 + }, + { + "date": "2020-07-06", + "total_cases": 6333.0, + "new_cases": 39.0, + "new_cases_smoothed": 69.429, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 555.403, + "new_cases_per_million": 3.42, + "new_cases_smoothed_per_million": 6.089, + "total_deaths_per_million": 9.91, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 72.22 + }, + { + "date": "2020-07-07", + "total_cases": 6371.0, + "new_cases": 38.0, + "new_cases_smoothed": 62.571, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 558.736, + "new_cases_per_million": 3.333, + "new_cases_smoothed_per_million": 5.488, + "total_deaths_per_million": 9.91, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 72.22 + }, + { + "date": "2020-07-08", + "total_cases": 6432.0, + "new_cases": 61.0, + "new_cases_smoothed": 65.286, + "total_deaths": 117.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 564.085, + "new_cases_per_million": 5.35, + "new_cases_smoothed_per_million": 5.726, + "total_deaths_per_million": 10.261, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 72.22 + }, + { + "date": "2020-07-09", + "total_cases": 6486.0, + "new_cases": 54.0, + "new_cases_smoothed": 63.714, + "total_deaths": 123.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 568.821, + "new_cases_per_million": 4.736, + "new_cases_smoothed_per_million": 5.588, + "total_deaths_per_million": 10.787, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 72.22 + }, + { + "date": "2020-07-10", + "total_cases": 6486.0, + "new_cases": 0.0, + "new_cases_smoothed": 55.0, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 568.821, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.823, + "total_deaths_per_million": 10.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 72.22 + }, + { + "date": "2020-07-11", + "total_cases": 6617.0, + "new_cases": 131.0, + "new_cases_smoothed": 55.286, + "total_deaths": 135.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 580.31, + "new_cases_per_million": 11.489, + "new_cases_smoothed_per_million": 4.849, + "total_deaths_per_million": 11.839, + "new_deaths_per_million": 1.052, + "new_deaths_smoothed_per_million": 0.313, + "stringency_index": 72.22 + }, + { + "date": "2020-07-12", + "total_cases": 6690.0, + "new_cases": 73.0, + "new_cases_smoothed": 56.571, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 586.712, + "new_cases_per_million": 6.402, + "new_cases_smoothed_per_million": 4.961, + "total_deaths_per_million": 12.19, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 72.22 + }, + { + "date": "2020-07-13", + "total_cases": 6727.0, + "new_cases": 37.0, + "new_cases_smoothed": 56.286, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 589.957, + "new_cases_per_million": 3.245, + "new_cases_smoothed_per_million": 4.936, + "total_deaths_per_million": 12.19, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 72.22 + }, + { + "date": "2020-07-14", + "total_cases": 6727.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.857, + "total_deaths": 141.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 589.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.46, + "total_deaths_per_million": 12.366, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.351, + "stringency_index": 72.22 + }, + { + "date": "2020-07-15", + "total_cases": 6831.0, + "new_cases": 104.0, + "new_cases_smoothed": 57.0, + "total_deaths": 143.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 599.077, + "new_cases_per_million": 9.121, + "new_cases_smoothed_per_million": 4.999, + "total_deaths_per_million": 12.541, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 69.44 + }, + { + "date": "2020-07-16", + "total_cases": 6902.0, + "new_cases": 71.0, + "new_cases_smoothed": 59.429, + "total_deaths": 145.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 605.304, + "new_cases_per_million": 6.227, + "new_cases_smoothed_per_million": 5.212, + "total_deaths_per_million": 12.716, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 69.44 + }, + { + "date": "2020-07-17", + "total_cases": 6948.0, + "new_cases": 46.0, + "new_cases_smoothed": 66.0, + "total_deaths": 145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 609.338, + "new_cases_per_million": 4.034, + "new_cases_smoothed_per_million": 5.788, + "total_deaths_per_million": 12.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 69.44 + }, + { + "date": "2020-07-18", + "total_cases": 6975.0, + "new_cases": 27.0, + "new_cases_smoothed": 51.143, + "total_deaths": 146.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 611.706, + "new_cases_per_million": 2.368, + "new_cases_smoothed_per_million": 4.485, + "total_deaths_per_million": 12.804, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 69.44 + }, + { + "date": "2020-07-19", + "total_cases": 7053.0, + "new_cases": 78.0, + "new_cases_smoothed": 51.857, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 618.547, + "new_cases_per_million": 6.841, + "new_cases_smoothed_per_million": 4.548, + "total_deaths_per_million": 12.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 69.44 + }, + { + "date": "2020-07-20", + "total_cases": 7053.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.571, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 618.547, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.084, + "total_deaths_per_million": 12.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 28.7 + }, + { + "date": "2020-07-21", + "total_cases": 7063.0, + "new_cases": 10.0, + "new_cases_smoothed": 48.0, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 619.424, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 4.21, + "total_deaths_per_million": 12.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 28.7 + }, + { + "date": "2020-07-22", + "total_cases": 7146.0, + "new_cases": 83.0, + "new_cases_smoothed": 45.0, + "total_deaths": 154.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 626.703, + "new_cases_per_million": 7.279, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 13.506, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 28.7 + }, + { + "date": "2020-07-23", + "total_cases": 7167.0, + "new_cases": 21.0, + "new_cases_smoothed": 37.857, + "total_deaths": 154.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 628.545, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 3.32, + "total_deaths_per_million": 13.506, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 28.7 + }, + { + "date": "2020-07-24", + "total_cases": 7197.0, + "new_cases": 30.0, + "new_cases_smoothed": 35.571, + "total_deaths": 154.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 631.176, + "new_cases_per_million": 2.631, + "new_cases_smoothed_per_million": 3.12, + "total_deaths_per_million": 13.506, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 28.7 + }, + { + "date": "2020-07-25", + "total_cases": 7260.0, + "new_cases": 63.0, + "new_cases_smoothed": 40.714, + "total_deaths": 156.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 636.701, + "new_cases_per_million": 5.525, + "new_cases_smoothed_per_million": 3.571, + "total_deaths_per_million": 13.681, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 28.7 + }, + { + "date": "2020-07-26", + "total_cases": 7297.0, + "new_cases": 37.0, + "new_cases_smoothed": 34.857, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 639.946, + "new_cases_per_million": 3.245, + "new_cases_smoothed_per_million": 3.057, + "total_deaths_per_million": 13.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 28.7 + }, + { + "date": "2020-07-27", + "total_cases": 7315.0, + "new_cases": 18.0, + "new_cases_smoothed": 37.429, + "total_deaths": 157.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 641.524, + "new_cases_per_million": 1.579, + "new_cases_smoothed_per_million": 3.282, + "total_deaths_per_million": 13.769, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 28.7 + }, + { + "date": "2020-07-28", + "total_cases": 7340.0, + "new_cases": 25.0, + "new_cases_smoothed": 39.571, + "total_deaths": 158.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 643.717, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 13.857, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 28.7 + }, + { + "date": "2020-07-29", + "total_cases": 7371.0, + "new_cases": 31.0, + "new_cases_smoothed": 32.143, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 646.435, + "new_cases_per_million": 2.719, + "new_cases_smoothed_per_million": 2.819, + "total_deaths_per_million": 13.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 28.7 + }, + { + "date": "2020-07-30", + "total_cases": 7378.0, + "new_cases": 7.0, + "new_cases_smoothed": 30.143, + "total_deaths": 159.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 647.049, + "new_cases_per_million": 0.614, + "new_cases_smoothed_per_million": 2.644, + "total_deaths_per_million": 13.944, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 28.7 + }, + { + "date": "2020-07-31", + "total_cases": 7412.0, + "new_cases": 34.0, + "new_cases_smoothed": 30.714, + "total_deaths": 161.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 650.031, + "new_cases_per_million": 2.982, + "new_cases_smoothed_per_million": 2.694, + "total_deaths_per_million": 14.12, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 28.7 + }, + { + "date": "2020-08-01", + "total_cases": 7424.0, + "new_cases": 12.0, + "new_cases_smoothed": 23.429, + "total_deaths": 161.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 651.083, + "new_cases_per_million": 1.052, + "new_cases_smoothed_per_million": 2.055, + "total_deaths_per_million": 14.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 28.7 + }, + { + "date": "2020-08-02", + "total_cases": 7468.0, + "new_cases": 44.0, + "new_cases_smoothed": 24.429, + "total_deaths": 165.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 654.942, + "new_cases_per_million": 3.859, + "new_cases_smoothed_per_million": 2.142, + "total_deaths_per_million": 14.47, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 28.7 + }, + { + "date": "2020-08-03", + "total_cases": 7476.0, + "new_cases": 8.0, + "new_cases_smoothed": 23.0, + "total_deaths": 165.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 655.644, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 2.017, + "total_deaths_per_million": 14.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 28.7 + }, + { + "date": "2020-08-04", + "total_cases": 7511.0, + "new_cases": 35.0, + "new_cases_smoothed": 24.429, + "total_deaths": 166.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 658.713, + "new_cases_per_million": 3.069, + "new_cases_smoothed_per_million": 2.142, + "total_deaths_per_million": 14.558, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 28.7 + }, + { + "date": "2020-08-05", + "total_cases": 7532.0, + "new_cases": 21.0, + "new_cases_smoothed": 23.0, + "total_deaths": 171.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 660.555, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 2.017, + "total_deaths_per_million": 14.997, + "new_deaths_per_million": 0.438, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 28.7 + }, + { + "date": "2020-08-06", + "total_cases": 7544.0, + "new_cases": 12.0, + "new_cases_smoothed": 23.714, + "total_deaths": 171.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 661.607, + "new_cases_per_million": 1.052, + "new_cases_smoothed_per_million": 2.08, + "total_deaths_per_million": 14.997, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 28.7 + }, + { + "date": "2020-08-07", + "total_cases": 7582.0, + "new_cases": 38.0, + "new_cases_smoothed": 24.286, + "total_deaths": 171.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 664.94, + "new_cases_per_million": 3.333, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 14.997, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 28.7 + }, + { + "date": "2020-08-08", + "total_cases": 7599.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.0, + "total_deaths": 177.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 666.431, + "new_cases_per_million": 1.491, + "new_cases_smoothed_per_million": 2.192, + "total_deaths_per_million": 15.523, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 28.7 + }, + { + "date": "2020-08-09", + "total_cases": 7611.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.429, + "total_deaths": 182.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 667.483, + "new_cases_per_million": 1.052, + "new_cases_smoothed_per_million": 1.792, + "total_deaths_per_million": 15.961, + "new_deaths_per_million": 0.438, + "new_deaths_smoothed_per_million": 0.213, + "stringency_index": 28.7 + }, + { + "date": "2020-08-10", + "total_cases": 7634.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.571, + "total_deaths": 183.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 669.5, + "new_cases_per_million": 2.017, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 16.049, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 25.0 + }, + { + "date": "2020-08-11", + "total_cases": 7649.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.714, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 670.816, + "new_cases_per_million": 1.315, + "new_cases_smoothed_per_million": 1.729, + "total_deaths_per_million": 16.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.213, + "stringency_index": 25.0 + }, + { + "date": "2020-08-12", + "total_cases": 7649.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.714, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 670.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.466, + "total_deaths_per_million": 16.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 25.0 + }, + { + "date": "2020-08-13", + "total_cases": 7743.0, + "new_cases": 94.0, + "new_cases_smoothed": 28.429, + "total_deaths": 187.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 679.06, + "new_cases_per_million": 8.244, + "new_cases_smoothed_per_million": 2.493, + "total_deaths_per_million": 16.4, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 25.0 + }, + { + "date": "2020-08-14", + "total_cases": 7810.0, + "new_cases": 67.0, + "new_cases_smoothed": 32.571, + "total_deaths": 192.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 684.936, + "new_cases_per_million": 5.876, + "new_cases_smoothed_per_million": 2.857, + "total_deaths_per_million": 16.838, + "new_deaths_per_million": 0.438, + "new_deaths_smoothed_per_million": 0.263, + "stringency_index": 25.0 + }, + { + "date": "2020-08-15", + "total_cases": 7831.0, + "new_cases": 21.0, + "new_cases_smoothed": 33.143, + "total_deaths": 196.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 686.777, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 2.907, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 25.0 + }, + { + "date": "2020-08-16", + "total_cases": 7831.0, + "new_cases": 0.0, + "new_cases_smoothed": 31.429, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 686.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.756, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 25.0 + }, + { + "date": "2020-08-17", + "total_cases": 7879.0, + "new_cases": 48.0, + "new_cases_smoothed": 35.0, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 690.987, + "new_cases_per_million": 4.21, + "new_cases_smoothed_per_million": 3.069, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 17.59 + }, + { + "date": "2020-08-18", + "total_cases": 7897.0, + "new_cases": 18.0, + "new_cases_smoothed": 35.429, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 692.565, + "new_cases_per_million": 1.579, + "new_cases_smoothed_per_million": 3.107, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 17.59 + }, + { + "date": "2020-08-19", + "total_cases": 7921.0, + "new_cases": 24.0, + "new_cases_smoothed": 38.857, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 694.67, + "new_cases_per_million": 2.105, + "new_cases_smoothed_per_million": 3.408, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 17.59 + }, + { + "date": "2020-08-20", + "total_cases": 7949.0, + "new_cases": 28.0, + "new_cases_smoothed": 29.429, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 697.126, + "new_cases_per_million": 2.456, + "new_cases_smoothed_per_million": 2.581, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 17.59 + }, + { + "date": "2020-08-21", + "total_cases": 7997.0, + "new_cases": 48.0, + "new_cases_smoothed": 26.714, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 701.335, + "new_cases_per_million": 4.21, + "new_cases_smoothed_per_million": 2.343, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 17.59 + }, + { + "date": "2020-08-22", + "total_cases": 8016.0, + "new_cases": 19.0, + "new_cases_smoothed": 26.429, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 703.002, + "new_cases_per_million": 1.666, + "new_cases_smoothed_per_million": 2.318, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 17.59 + }, + { + "date": "2020-08-23", + "total_cases": 8050.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.286, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 705.983, + "new_cases_per_million": 2.982, + "new_cases_smoothed_per_million": 2.744, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 17.59 + }, + { + "date": "2020-08-24", + "total_cases": 8082.0, + "new_cases": 32.0, + "new_cases_smoothed": 29.0, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 708.79, + "new_cases_per_million": 2.806, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 17.59 + }, + { + "date": "2020-08-25", + "total_cases": 8110.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.429, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 711.245, + "new_cases_per_million": 2.456, + "new_cases_smoothed_per_million": 2.669, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 17.59 + }, + { + "date": "2020-08-26", + "total_cases": 8112.0, + "new_cases": 2.0, + "new_cases_smoothed": 27.286, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 711.421, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 2.393, + "total_deaths_per_million": 17.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 17.59 + }, + { + "date": "2020-08-27", + "total_cases": 8151.0, + "new_cases": 39.0, + "new_cases_smoothed": 28.857, + "total_deaths": 200.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 714.841, + "new_cases_per_million": 3.42, + "new_cases_smoothed_per_million": 2.531, + "total_deaths_per_million": 17.54, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 17.59 + }, + { + "date": "2020-08-28", + "total_cases": 8151.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.0, + "total_deaths": 200.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 714.841, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.929, + "total_deaths_per_million": 17.54, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 17.59 + }, + { + "date": "2020-08-29", + "total_cases": 8161.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.714, + "total_deaths": 201.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 715.718, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 1.817, + "total_deaths_per_million": 17.628, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 17.59 + }, + { + "date": "2020-08-30", + "total_cases": 8209.0, + "new_cases": 48.0, + "new_cases_smoothed": 22.714, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 719.928, + "new_cases_per_million": 4.21, + "new_cases_smoothed_per_million": 1.992, + "total_deaths_per_million": 17.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 17.59 + }, + { + "date": "2020-08-31", + "total_cases": 8209.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.143, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 719.928, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 17.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 17.59 + }, + { + "date": "2020-09-01", + "total_cases": 8224.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.286, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 721.243, + "new_cases_per_million": 1.315, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 17.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063 + }, + { + "date": "2020-09-02", + "total_cases": 8258.0, + "new_cases": 34.0, + "new_cases_smoothed": 20.857, + "total_deaths": 206.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 724.225, + "new_cases_per_million": 2.982, + "new_cases_smoothed_per_million": 1.829, + "total_deaths_per_million": 18.066, + "new_deaths_per_million": 0.438, + "new_deaths_smoothed_per_million": 0.125 + }, + { + "date": "2020-09-03", + "total_cases": 8258.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 724.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 18.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075 + }, + { + "date": "2020-09-04", + "total_cases": 8301.0, + "new_cases": 43.0, + "new_cases_smoothed": 21.429, + "total_deaths": 210.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 727.996, + "new_cases_per_million": 3.771, + "new_cases_smoothed_per_million": 1.879, + "total_deaths_per_million": 18.417, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.125 + }, + { + "date": "2020-09-05", + "total_cases": 8326.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.571, + "total_deaths": 212.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 730.189, + "new_cases_per_million": 2.192, + "new_cases_smoothed_per_million": 2.067, + "total_deaths_per_million": 18.592, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.138 + } + ] + }, + "HND": { + "continent": "North America", + "location": "Honduras", + "population": 9904608.0, + "population_density": 82.805, + "median_age": 24.9, + "aged_65_older": 4.652, + "aged_70_older": 2.883, + "gdp_per_capita": 4541.795, + "extreme_poverty": 16.0, + "cardiovasc_death_rate": 240.208, + "diabetes_prevalence": 7.21, + "female_smokers": 2.0, + "handwashing_facilities": 84.169, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 75.27, + "data": [ + { + "date": "2020-03-12", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.202, + "new_cases_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-14", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.303, + "new_cases_per_million": 0.101, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-16", + "total_cases": 6.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.606, + "new_cases_per_million": 0.303, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-17", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.808, + "new_cases_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-18", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.909, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-19", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.212, + "new_cases_per_million": 0.303, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-20", + "total_cases": 24.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.423, + "new_cases_per_million": 1.212, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-03-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.423, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-22", + "total_cases": 26.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.625, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-23", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.726, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 30.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.029, + "new_cases_per_million": 0.303, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 36.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.635, + "new_cases_per_million": 0.606, + "new_cases_smoothed_per_million": 0.389, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 52.0, + "new_cases": 16.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.25, + "new_cases_per_million": 1.615, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 67.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.765, + "new_cases_per_million": 1.514, + "new_cases_smoothed_per_million": 0.62, + "total_deaths_per_million": 0.101, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 95.0, + "new_cases": 28.0, + "new_cases_smoothed": 10.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.591, + "new_cases_per_million": 2.827, + "new_cases_smoothed_per_million": 1.024, + "total_deaths_per_million": 0.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 110.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11.106, + "new_cases_per_million": 1.514, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 139.0, + "new_cases": 29.0, + "new_cases_smoothed": 16.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.034, + "new_cases_per_million": 2.928, + "new_cases_smoothed_per_million": 1.615, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 141.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.857, + "total_deaths": 7.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 14.236, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 1.601, + "total_deaths_per_million": 0.707, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 172.0, + "new_cases": 31.0, + "new_cases_smoothed": 19.429, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 17.366, + "new_cases_per_million": 3.13, + "new_cases_smoothed_per_million": 1.962, + "total_deaths_per_million": 1.01, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 219.0, + "new_cases": 47.0, + "new_cases_smoothed": 23.857, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 22.111, + "new_cases_per_million": 4.745, + "new_cases_smoothed_per_million": 2.409, + "total_deaths_per_million": 1.413, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 222.0, + "new_cases": 3.0, + "new_cases_smoothed": 22.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 22.414, + "new_cases_per_million": 0.303, + "new_cases_smoothed_per_million": 2.236, + "total_deaths_per_million": 1.514, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 264.0, + "new_cases": 42.0, + "new_cases_smoothed": 24.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 26.654, + "new_cases_per_million": 4.24, + "new_cases_smoothed_per_million": 2.438, + "total_deaths_per_million": 1.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 268.0, + "new_cases": 4.0, + "new_cases_smoothed": 22.571, + "total_deaths": 22.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 27.058, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 2.279, + "total_deaths_per_million": 2.221, + "new_deaths_per_million": 0.707, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 298.0, + "new_cases": 30.0, + "new_cases_smoothed": 22.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 30.087, + "new_cases_per_million": 3.029, + "new_cases_smoothed_per_million": 2.293, + "total_deaths_per_million": 2.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.274, + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 305.0, + "new_cases": 7.0, + "new_cases_smoothed": 23.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 30.794, + "new_cases_per_million": 0.707, + "new_cases_smoothed_per_million": 2.365, + "total_deaths_per_million": 2.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 312.0, + "new_cases": 7.0, + "new_cases_smoothed": 20.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 31.5, + "new_cases_per_million": 0.707, + "new_cases_smoothed_per_million": 2.019, + "total_deaths_per_million": 2.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 343.0, + "new_cases": 31.0, + "new_cases_smoothed": 17.714, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 34.63, + "new_cases_per_million": 3.13, + "new_cases_smoothed_per_million": 1.788, + "total_deaths_per_million": 2.322, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 382.0, + "new_cases": 39.0, + "new_cases_smoothed": 22.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 38.568, + "new_cases_per_million": 3.938, + "new_cases_smoothed_per_million": 2.308, + "total_deaths_per_million": 2.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 392.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.286, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 39.578, + "new_cases_per_million": 1.01, + "new_cases_smoothed_per_million": 1.846, + "total_deaths_per_million": 2.423, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 393.0, + "new_cases": 1.0, + "new_cases_smoothed": 17.857, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.679, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 1.803, + "total_deaths_per_million": 2.524, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 397.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40.082, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 2.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 407.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.092, + "new_cases_per_million": 1.01, + "new_cases_smoothed_per_million": 1.471, + "total_deaths_per_million": 2.625, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.058, + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 419.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.286, + "total_deaths": 31.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.304, + "new_cases_per_million": 1.212, + "new_cases_smoothed_per_million": 1.543, + "total_deaths_per_million": 3.13, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 426.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.857, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.707, + "new_cases_smoothed_per_million": 1.197, + "total_deaths_per_million": 3.534, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 442.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.571, + "total_deaths": 41.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 44.626, + "new_cases_per_million": 1.615, + "new_cases_smoothed_per_million": 0.865, + "total_deaths_per_million": 4.139, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.26, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 457.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.286, + "total_deaths": 46.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 46.14, + "new_cases_per_million": 1.514, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 4.644, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.317, + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 472.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 47.655, + "new_cases_per_million": 1.514, + "new_cases_smoothed_per_million": 1.139, + "total_deaths_per_million": 4.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 477.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.429, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 48.159, + "new_cases_per_million": 0.505, + "new_cases_smoothed_per_million": 1.154, + "total_deaths_per_million": 4.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 494.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.429, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 49.876, + "new_cases_per_million": 1.716, + "new_cases_smoothed_per_million": 1.255, + "total_deaths_per_million": 4.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 510.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 51.491, + "new_cases_per_million": 1.615, + "new_cases_smoothed_per_million": 1.313, + "total_deaths_per_million": 4.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 519.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.286, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 52.4, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 4.745, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 52.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 4.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 591.0, + "new_cases": 72.0, + "new_cases_smoothed": 19.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.669, + "new_cases_per_million": 7.269, + "new_cases_smoothed_per_million": 1.933, + "total_deaths_per_million": 4.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 627.0, + "new_cases": 36.0, + "new_cases_smoothed": 22.143, + "total_deaths": 59.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 63.304, + "new_cases_per_million": 3.635, + "new_cases_smoothed_per_million": 2.236, + "total_deaths_per_million": 5.957, + "new_deaths_per_million": 1.212, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 100.0 + }, + { + "date": "2020-04-27", + "total_cases": 661.0, + "new_cases": 34.0, + "new_cases_smoothed": 26.286, + "total_deaths": 61.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 66.737, + "new_cases_per_million": 3.433, + "new_cases_smoothed_per_million": 2.654, + "total_deaths_per_million": 6.159, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 100.0 + }, + { + "date": "2020-04-28", + "total_cases": 693.0, + "new_cases": 32.0, + "new_cases_smoothed": 28.429, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 69.967, + "new_cases_per_million": 3.231, + "new_cases_smoothed_per_million": 2.87, + "total_deaths_per_million": 6.159, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 100.0 + }, + { + "date": "2020-04-29", + "total_cases": 738.0, + "new_cases": 45.0, + "new_cases_smoothed": 32.571, + "total_deaths": 66.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 74.511, + "new_cases_per_million": 4.543, + "new_cases_smoothed_per_million": 3.289, + "total_deaths_per_million": 6.664, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.288, + "stringency_index": 100.0 + }, + { + "date": "2020-04-30", + "total_cases": 771.0, + "new_cases": 33.0, + "new_cases_smoothed": 36.0, + "total_deaths": 71.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 77.843, + "new_cases_per_million": 3.332, + "new_cases_smoothed_per_million": 3.635, + "total_deaths_per_million": 7.168, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.346, + "stringency_index": 100.0 + }, + { + "date": "2020-05-01", + "total_cases": 804.0, + "new_cases": 33.0, + "new_cases_smoothed": 40.714, + "total_deaths": 75.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 81.174, + "new_cases_per_million": 3.332, + "new_cases_smoothed_per_million": 4.111, + "total_deaths_per_million": 7.572, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-02", + "total_cases": 899.0, + "new_cases": 95.0, + "new_cases_smoothed": 44.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 90.766, + "new_cases_per_million": 9.591, + "new_cases_smoothed_per_million": 4.442, + "total_deaths_per_million": 7.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-03", + "total_cases": 1010.0, + "new_cases": 111.0, + "new_cases_smoothed": 54.714, + "total_deaths": 76.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 101.973, + "new_cases_per_million": 11.207, + "new_cases_smoothed_per_million": 5.524, + "total_deaths_per_million": 7.673, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.245, + "stringency_index": 100.0 + }, + { + "date": "2020-05-04", + "total_cases": 1055.0, + "new_cases": 45.0, + "new_cases_smoothed": 56.286, + "total_deaths": 82.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 106.516, + "new_cases_per_million": 4.543, + "new_cases_smoothed_per_million": 5.683, + "total_deaths_per_million": 8.279, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.303, + "stringency_index": 100.0 + }, + { + "date": "2020-05-05", + "total_cases": 1178.0, + "new_cases": 123.0, + "new_cases_smoothed": 69.286, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 118.935, + "new_cases_per_million": 12.418, + "new_cases_smoothed_per_million": 6.995, + "total_deaths_per_million": 8.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "stringency_index": 100.0 + }, + { + "date": "2020-05-06", + "total_cases": 1270.0, + "new_cases": 92.0, + "new_cases_smoothed": 76.0, + "total_deaths": 93.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 128.223, + "new_cases_per_million": 9.289, + "new_cases_smoothed_per_million": 7.673, + "total_deaths_per_million": 9.39, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 0.389, + "stringency_index": 100.0 + }, + { + "date": "2020-05-07", + "total_cases": 1461.0, + "new_cases": 191.0, + "new_cases_smoothed": 98.571, + "total_deaths": 99.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 147.507, + "new_cases_per_million": 19.284, + "new_cases_smoothed_per_million": 9.952, + "total_deaths_per_million": 9.995, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-08", + "total_cases": 1685.0, + "new_cases": 224.0, + "new_cases_smoothed": 125.857, + "total_deaths": 105.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 170.123, + "new_cases_per_million": 22.616, + "new_cases_smoothed_per_million": 12.707, + "total_deaths_per_million": 10.601, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.433, + "stringency_index": 100.0 + }, + { + "date": "2020-05-09", + "total_cases": 1771.0, + "new_cases": 86.0, + "new_cases_smoothed": 124.571, + "total_deaths": 107.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 178.806, + "new_cases_per_million": 8.683, + "new_cases_smoothed_per_million": 12.577, + "total_deaths_per_million": 10.803, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.462, + "stringency_index": 100.0 + }, + { + "date": "2020-05-10", + "total_cases": 1830.0, + "new_cases": 59.0, + "new_cases_smoothed": 117.143, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 184.762, + "new_cases_per_million": 5.957, + "new_cases_smoothed_per_million": 11.827, + "total_deaths_per_million": 10.904, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.462, + "stringency_index": 100.0 + }, + { + "date": "2020-05-11", + "total_cases": 1972.0, + "new_cases": 142.0, + "new_cases_smoothed": 131.0, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 199.099, + "new_cases_per_million": 14.337, + "new_cases_smoothed_per_million": 13.226, + "total_deaths_per_million": 10.904, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.375, + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 2006.0, + "new_cases": 34.0, + "new_cases_smoothed": 118.286, + "total_deaths": 116.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 202.532, + "new_cases_per_million": 3.433, + "new_cases_smoothed_per_million": 11.942, + "total_deaths_per_million": 11.712, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 0.49, + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 2080.0, + "new_cases": 74.0, + "new_cases_smoothed": 115.714, + "total_deaths": 121.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 210.003, + "new_cases_per_million": 7.471, + "new_cases_smoothed_per_million": 11.683, + "total_deaths_per_million": 12.217, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 2255.0, + "new_cases": 175.0, + "new_cases_smoothed": 113.429, + "total_deaths": 123.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 227.672, + "new_cases_per_million": 17.669, + "new_cases_smoothed_per_million": 11.452, + "total_deaths_per_million": 12.418, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.346, + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 2318.0, + "new_cases": 63.0, + "new_cases_smoothed": 90.429, + "total_deaths": 133.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 234.032, + "new_cases_per_million": 6.361, + "new_cases_smoothed_per_million": 9.13, + "total_deaths_per_million": 13.428, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 2460.0, + "new_cases": 142.0, + "new_cases_smoothed": 98.429, + "total_deaths": 134.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 248.369, + "new_cases_per_million": 14.337, + "new_cases_smoothed_per_million": 9.938, + "total_deaths_per_million": 13.529, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.389, + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 2565.0, + "new_cases": 105.0, + "new_cases_smoothed": 105.0, + "total_deaths": 138.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 258.97, + "new_cases_per_million": 10.601, + "new_cases_smoothed_per_million": 10.601, + "total_deaths_per_million": 13.933, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.433, + "stringency_index": 100.0 + }, + { + "date": "2020-05-18", + "total_cases": 2646.0, + "new_cases": 81.0, + "new_cases_smoothed": 96.286, + "total_deaths": 142.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 267.148, + "new_cases_per_million": 8.178, + "new_cases_smoothed_per_million": 9.721, + "total_deaths_per_million": 14.337, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.49, + "stringency_index": 100.0 + }, + { + "date": "2020-05-19", + "total_cases": 2798.0, + "new_cases": 152.0, + "new_cases_smoothed": 113.143, + "total_deaths": 146.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 282.495, + "new_cases_per_million": 15.346, + "new_cases_smoothed_per_million": 11.423, + "total_deaths_per_million": 14.741, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.433, + "stringency_index": 100.0 + }, + { + "date": "2020-05-20", + "total_cases": 2955.0, + "new_cases": 157.0, + "new_cases_smoothed": 125.0, + "total_deaths": 147.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 298.346, + "new_cases_per_million": 15.851, + "new_cases_smoothed_per_million": 12.62, + "total_deaths_per_million": 14.842, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.375, + "stringency_index": 100.0 + }, + { + "date": "2020-05-21", + "total_cases": 3100.0, + "new_cases": 145.0, + "new_cases_smoothed": 120.714, + "total_deaths": 151.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 312.986, + "new_cases_per_million": 14.64, + "new_cases_smoothed_per_million": 12.188, + "total_deaths_per_million": 15.245, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.404, + "stringency_index": 100.0 + }, + { + "date": "2020-05-22", + "total_cases": 3204.0, + "new_cases": 104.0, + "new_cases_smoothed": 126.571, + "total_deaths": 156.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 323.486, + "new_cases_per_million": 10.5, + "new_cases_smoothed_per_million": 12.779, + "total_deaths_per_million": 15.75, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.332, + "stringency_index": 100.0 + }, + { + "date": "2020-05-23", + "total_cases": 3477.0, + "new_cases": 273.0, + "new_cases_smoothed": 145.286, + "total_deaths": 167.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 351.049, + "new_cases_per_million": 27.563, + "new_cases_smoothed_per_million": 14.668, + "total_deaths_per_million": 16.861, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 0.476, + "stringency_index": 100.0 + }, + { + "date": "2020-05-24", + "total_cases": 3743.0, + "new_cases": 266.0, + "new_cases_smoothed": 168.286, + "total_deaths": 174.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 377.905, + "new_cases_per_million": 26.856, + "new_cases_smoothed_per_million": 16.991, + "total_deaths_per_million": 17.568, + "new_deaths_per_million": 0.707, + "new_deaths_smoothed_per_million": 0.519, + "stringency_index": 100.0 + }, + { + "date": "2020-05-25", + "total_cases": 3950.0, + "new_cases": 207.0, + "new_cases_smoothed": 186.286, + "total_deaths": 180.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 398.804, + "new_cases_per_million": 20.899, + "new_cases_smoothed_per_million": 18.808, + "total_deaths_per_million": 18.173, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.548, + "stringency_index": 100.0 + }, + { + "date": "2020-05-26", + "total_cases": 4189.0, + "new_cases": 239.0, + "new_cases_smoothed": 198.714, + "total_deaths": 182.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 422.934, + "new_cases_per_million": 24.13, + "new_cases_smoothed_per_million": 20.063, + "total_deaths_per_million": 18.375, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.519, + "stringency_index": 100.0 + }, + { + "date": "2020-05-27", + "total_cases": 4401.0, + "new_cases": 212.0, + "new_cases_smoothed": 206.571, + "total_deaths": 188.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 444.339, + "new_cases_per_million": 21.404, + "new_cases_smoothed_per_million": 20.856, + "total_deaths_per_million": 18.981, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 100.0 + }, + { + "date": "2020-05-28", + "total_cases": 4640.0, + "new_cases": 239.0, + "new_cases_smoothed": 220.0, + "total_deaths": 194.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 468.469, + "new_cases_per_million": 24.13, + "new_cases_smoothed_per_million": 22.212, + "total_deaths_per_million": 19.587, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.62, + "stringency_index": 100.0 + }, + { + "date": "2020-05-29", + "total_cases": 4752.0, + "new_cases": 112.0, + "new_cases_smoothed": 221.143, + "total_deaths": 196.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 479.777, + "new_cases_per_million": 11.308, + "new_cases_smoothed_per_million": 22.327, + "total_deaths_per_million": 19.789, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.577, + "stringency_index": 100.0 + }, + { + "date": "2020-05-30", + "total_cases": 4886.0, + "new_cases": 134.0, + "new_cases_smoothed": 201.286, + "total_deaths": 199.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 493.306, + "new_cases_per_million": 13.529, + "new_cases_smoothed_per_million": 20.322, + "total_deaths_per_million": 20.092, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.462, + "stringency_index": 100.0 + }, + { + "date": "2020-05-31", + "total_cases": 5094.0, + "new_cases": 208.0, + "new_cases_smoothed": 193.0, + "total_deaths": 201.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 514.306, + "new_cases_per_million": 21.0, + "new_cases_smoothed_per_million": 19.486, + "total_deaths_per_million": 20.294, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.389, + "stringency_index": 100.0 + }, + { + "date": "2020-06-01", + "total_cases": 5202.0, + "new_cases": 108.0, + "new_cases_smoothed": 178.857, + "total_deaths": 212.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 525.21, + "new_cases_per_million": 10.904, + "new_cases_smoothed_per_million": 18.058, + "total_deaths_per_million": 21.404, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 0.462, + "stringency_index": 100.0 + }, + { + "date": "2020-06-02", + "total_cases": 5362.0, + "new_cases": 160.0, + "new_cases_smoothed": 167.571, + "total_deaths": 217.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 541.364, + "new_cases_per_million": 16.154, + "new_cases_smoothed_per_million": 16.919, + "total_deaths_per_million": 21.909, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.505, + "stringency_index": 100.0 + }, + { + "date": "2020-06-03", + "total_cases": 5527.0, + "new_cases": 165.0, + "new_cases_smoothed": 160.857, + "total_deaths": 225.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 558.023, + "new_cases_per_million": 16.659, + "new_cases_smoothed_per_million": 16.241, + "total_deaths_per_million": 22.717, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 0.534, + "stringency_index": 100.0 + }, + { + "date": "2020-06-04", + "total_cases": 5690.0, + "new_cases": 163.0, + "new_cases_smoothed": 150.0, + "total_deaths": 234.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 574.48, + "new_cases_per_million": 16.457, + "new_cases_smoothed_per_million": 15.144, + "total_deaths_per_million": 23.625, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 0.577, + "stringency_index": 100.0 + }, + { + "date": "2020-06-05", + "total_cases": 5880.0, + "new_cases": 190.0, + "new_cases_smoothed": 161.143, + "total_deaths": 243.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 593.663, + "new_cases_per_million": 19.183, + "new_cases_smoothed_per_million": 16.269, + "total_deaths_per_million": 24.534, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 0.678, + "stringency_index": 100.0 + }, + { + "date": "2020-06-06", + "total_cases": 5971.0, + "new_cases": 91.0, + "new_cases_smoothed": 155.0, + "total_deaths": 248.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 602.851, + "new_cases_per_million": 9.188, + "new_cases_smoothed_per_million": 15.649, + "total_deaths_per_million": 25.039, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 100.0 + }, + { + "date": "2020-06-07", + "total_cases": 6155.0, + "new_cases": 184.0, + "new_cases_smoothed": 151.571, + "total_deaths": 250.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 621.428, + "new_cases_per_million": 18.577, + "new_cases_smoothed_per_million": 15.303, + "total_deaths_per_million": 25.241, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 100.0 + }, + { + "date": "2020-06-08", + "total_cases": 6327.0, + "new_cases": 172.0, + "new_cases_smoothed": 160.714, + "total_deaths": 258.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 638.794, + "new_cases_per_million": 17.366, + "new_cases_smoothed_per_million": 16.226, + "total_deaths_per_million": 26.048, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 0.663, + "stringency_index": 96.3 + }, + { + "date": "2020-06-09", + "total_cases": 6450.0, + "new_cases": 123.0, + "new_cases_smoothed": 155.429, + "total_deaths": 262.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 651.212, + "new_cases_per_million": 12.418, + "new_cases_smoothed_per_million": 15.693, + "total_deaths_per_million": 26.452, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 96.3 + }, + { + "date": "2020-06-10", + "total_cases": 6935.0, + "new_cases": 485.0, + "new_cases_smoothed": 201.143, + "total_deaths": 271.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 700.179, + "new_cases_per_million": 48.967, + "new_cases_smoothed_per_million": 20.308, + "total_deaths_per_million": 27.361, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 0.663, + "stringency_index": 96.3 + }, + { + "date": "2020-06-11", + "total_cases": 7360.0, + "new_cases": 425.0, + "new_cases_smoothed": 238.571, + "total_deaths": 290.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 743.088, + "new_cases_per_million": 42.909, + "new_cases_smoothed_per_million": 24.087, + "total_deaths_per_million": 29.279, + "new_deaths_per_million": 1.918, + "new_deaths_smoothed_per_million": 0.808, + "stringency_index": 96.3 + }, + { + "date": "2020-06-12", + "total_cases": 7669.0, + "new_cases": 309.0, + "new_cases_smoothed": 255.571, + "total_deaths": 294.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 774.286, + "new_cases_per_million": 31.198, + "new_cases_smoothed_per_million": 25.803, + "total_deaths_per_million": 29.683, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.736, + "stringency_index": 96.3 + }, + { + "date": "2020-06-13", + "total_cases": 8132.0, + "new_cases": 463.0, + "new_cases_smoothed": 308.714, + "total_deaths": 306.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 821.032, + "new_cases_per_million": 46.746, + "new_cases_smoothed_per_million": 31.169, + "total_deaths_per_million": 30.895, + "new_deaths_per_million": 1.212, + "new_deaths_smoothed_per_million": 0.837, + "stringency_index": 96.3 + }, + { + "date": "2020-06-14", + "total_cases": 8455.0, + "new_cases": 323.0, + "new_cases_smoothed": 328.571, + "total_deaths": 310.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 853.643, + "new_cases_per_million": 32.611, + "new_cases_smoothed_per_million": 33.174, + "total_deaths_per_million": 31.299, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.865, + "stringency_index": 96.3 + }, + { + "date": "2020-06-15", + "total_cases": 8858.0, + "new_cases": 403.0, + "new_cases_smoothed": 361.571, + "total_deaths": 312.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 894.331, + "new_cases_per_million": 40.688, + "new_cases_smoothed_per_million": 36.505, + "total_deaths_per_million": 31.5, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.779, + "stringency_index": 96.3 + }, + { + "date": "2020-06-16", + "total_cases": 9178.0, + "new_cases": 320.0, + "new_cases_smoothed": 389.714, + "total_deaths": 322.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 926.639, + "new_cases_per_million": 32.308, + "new_cases_smoothed_per_million": 39.347, + "total_deaths_per_million": 32.51, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 0.865, + "stringency_index": 96.3 + }, + { + "date": "2020-06-17", + "total_cases": 9656.0, + "new_cases": 478.0, + "new_cases_smoothed": 388.714, + "total_deaths": 330.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 974.9, + "new_cases_per_million": 48.26, + "new_cases_smoothed_per_million": 39.246, + "total_deaths_per_million": 33.318, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 0.851, + "stringency_index": 96.3 + }, + { + "date": "2020-06-18", + "total_cases": 10299.0, + "new_cases": 643.0, + "new_cases_smoothed": 419.857, + "total_deaths": 336.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1039.819, + "new_cases_per_million": 64.919, + "new_cases_smoothed_per_million": 42.39, + "total_deaths_per_million": 33.924, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.663, + "stringency_index": 96.3 + }, + { + "date": "2020-06-19", + "total_cases": 10739.0, + "new_cases": 440.0, + "new_cases_smoothed": 438.571, + "total_deaths": 343.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1084.243, + "new_cases_per_million": 44.424, + "new_cases_smoothed_per_million": 44.28, + "total_deaths_per_million": 34.63, + "new_deaths_per_million": 0.707, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 96.3 + }, + { + "date": "2020-06-20", + "total_cases": 11258.0, + "new_cases": 519.0, + "new_cases_smoothed": 446.571, + "total_deaths": 349.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1136.643, + "new_cases_per_million": 52.4, + "new_cases_smoothed_per_million": 45.087, + "total_deaths_per_million": 35.236, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.62, + "stringency_index": 96.3 + }, + { + "date": "2020-06-21", + "total_cases": 12250.0, + "new_cases": 992.0, + "new_cases_smoothed": 542.143, + "total_deaths": 358.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1236.798, + "new_cases_per_million": 100.155, + "new_cases_smoothed_per_million": 54.736, + "total_deaths_per_million": 36.145, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 0.692, + "stringency_index": 96.3 + }, + { + "date": "2020-06-22", + "total_cases": 12769.0, + "new_cases": 519.0, + "new_cases_smoothed": 558.714, + "total_deaths": 363.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1289.198, + "new_cases_per_million": 52.4, + "new_cases_smoothed_per_million": 56.41, + "total_deaths_per_million": 36.65, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 0.736, + "stringency_index": 96.3 + }, + { + "date": "2020-06-23", + "total_cases": 13356.0, + "new_cases": 587.0, + "new_cases_smoothed": 596.857, + "total_deaths": 395.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 1348.463, + "new_cases_per_million": 59.265, + "new_cases_smoothed_per_million": 60.261, + "total_deaths_per_million": 39.88, + "new_deaths_per_million": 3.231, + "new_deaths_smoothed_per_million": 1.053, + "stringency_index": 96.3 + }, + { + "date": "2020-06-24", + "total_cases": 13943.0, + "new_cases": 587.0, + "new_cases_smoothed": 612.429, + "total_deaths": 405.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1407.729, + "new_cases_per_million": 59.265, + "new_cases_smoothed_per_million": 61.833, + "total_deaths_per_million": 40.89, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 1.082, + "stringency_index": 96.3 + }, + { + "date": "2020-06-25", + "total_cases": 14571.0, + "new_cases": 628.0, + "new_cases_smoothed": 610.286, + "total_deaths": 417.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1471.133, + "new_cases_per_million": 63.405, + "new_cases_smoothed_per_million": 61.616, + "total_deaths_per_million": 42.102, + "new_deaths_per_million": 1.212, + "new_deaths_smoothed_per_million": 1.168, + "stringency_index": 96.3 + }, + { + "date": "2020-06-26", + "total_cases": 15366.0, + "new_cases": 795.0, + "new_cases_smoothed": 661.0, + "total_deaths": 426.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 1551.399, + "new_cases_per_million": 80.266, + "new_cases_smoothed_per_million": 66.737, + "total_deaths_per_million": 43.01, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 1.197, + "stringency_index": 96.3 + }, + { + "date": "2020-06-27", + "total_cases": 15994.0, + "new_cases": 628.0, + "new_cases_smoothed": 676.571, + "total_deaths": 471.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1614.804, + "new_cases_per_million": 63.405, + "new_cases_smoothed_per_million": 68.309, + "total_deaths_per_million": 47.554, + "new_deaths_per_million": 4.543, + "new_deaths_smoothed_per_million": 1.76, + "stringency_index": 96.3 + }, + { + "date": "2020-06-28", + "total_cases": 17007.0, + "new_cases": 1013.0, + "new_cases_smoothed": 679.571, + "total_deaths": 479.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 1717.08, + "new_cases_per_million": 102.276, + "new_cases_smoothed_per_million": 68.612, + "total_deaths_per_million": 48.361, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 1.745, + "stringency_index": 96.3 + }, + { + "date": "2020-06-29", + "total_cases": 18082.0, + "new_cases": 1075.0, + "new_cases_smoothed": 759.0, + "total_deaths": 479.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 1825.615, + "new_cases_per_million": 108.535, + "new_cases_smoothed_per_million": 76.631, + "total_deaths_per_million": 48.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.673, + "stringency_index": 96.3 + }, + { + "date": "2020-06-30", + "total_cases": 18818.0, + "new_cases": 736.0, + "new_cases_smoothed": 780.286, + "total_deaths": 485.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 1899.924, + "new_cases_per_million": 74.309, + "new_cases_smoothed_per_million": 78.78, + "total_deaths_per_million": 48.967, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 1.298, + "stringency_index": 96.3 + }, + { + "date": "2020-07-01", + "total_cases": 19558.0, + "new_cases": 740.0, + "new_cases_smoothed": 802.143, + "total_deaths": 497.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 1974.636, + "new_cases_per_million": 74.713, + "new_cases_smoothed_per_million": 80.987, + "total_deaths_per_million": 50.179, + "new_deaths_per_million": 1.212, + "new_deaths_smoothed_per_million": 1.327, + "stringency_index": 96.3 + }, + { + "date": "2020-07-02", + "total_cases": 20262.0, + "new_cases": 704.0, + "new_cases_smoothed": 813.0, + "total_deaths": 542.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 2045.714, + "new_cases_per_million": 71.078, + "new_cases_smoothed_per_million": 82.083, + "total_deaths_per_million": 54.722, + "new_deaths_per_million": 4.543, + "new_deaths_smoothed_per_million": 1.803, + "stringency_index": 96.3 + }, + { + "date": "2020-07-03", + "total_cases": 21120.0, + "new_cases": 858.0, + "new_cases_smoothed": 822.0, + "total_deaths": 591.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 2132.341, + "new_cases_per_million": 86.626, + "new_cases_smoothed_per_million": 82.992, + "total_deaths_per_million": 59.669, + "new_deaths_per_million": 4.947, + "new_deaths_smoothed_per_million": 2.38, + "stringency_index": 96.3 + }, + { + "date": "2020-07-04", + "total_cases": 22116.0, + "new_cases": 996.0, + "new_cases_smoothed": 874.571, + "total_deaths": 605.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 2232.9, + "new_cases_per_million": 100.559, + "new_cases_smoothed_per_million": 88.299, + "total_deaths_per_million": 61.083, + "new_deaths_per_million": 1.413, + "new_deaths_smoothed_per_million": 1.933, + "stringency_index": 96.3 + }, + { + "date": "2020-07-05", + "total_cases": 22921.0, + "new_cases": 805.0, + "new_cases_smoothed": 844.857, + "total_deaths": 629.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 2314.175, + "new_cases_per_million": 81.275, + "new_cases_smoothed_per_million": 85.299, + "total_deaths_per_million": 63.506, + "new_deaths_per_million": 2.423, + "new_deaths_smoothed_per_million": 2.163, + "stringency_index": 96.3 + }, + { + "date": "2020-07-06", + "total_cases": 23943.0, + "new_cases": 1022.0, + "new_cases_smoothed": 837.286, + "total_deaths": 639.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 22.857, + "total_cases_per_million": 2417.36, + "new_cases_per_million": 103.184, + "new_cases_smoothed_per_million": 84.535, + "total_deaths_per_million": 64.515, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 2.308, + "stringency_index": 96.3 + }, + { + "date": "2020-07-07", + "total_cases": 24665.0, + "new_cases": 722.0, + "new_cases_smoothed": 835.286, + "total_deaths": 656.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 2490.255, + "new_cases_per_million": 72.895, + "new_cases_smoothed_per_million": 84.333, + "total_deaths_per_million": 66.232, + "new_deaths_per_million": 1.716, + "new_deaths_smoothed_per_million": 2.466, + "stringency_index": 96.3 + }, + { + "date": "2020-07-08", + "total_cases": 25428.0, + "new_cases": 763.0, + "new_cases_smoothed": 838.571, + "total_deaths": 677.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 2567.29, + "new_cases_per_million": 77.035, + "new_cases_smoothed_per_million": 84.665, + "total_deaths_per_million": 68.352, + "new_deaths_per_million": 2.12, + "new_deaths_smoothed_per_million": 2.596, + "stringency_index": 96.3 + }, + { + "date": "2020-07-09", + "total_cases": 25978.0, + "new_cases": 550.0, + "new_cases_smoothed": 816.571, + "total_deaths": 694.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 2622.82, + "new_cases_per_million": 55.53, + "new_cases_smoothed_per_million": 82.444, + "total_deaths_per_million": 70.068, + "new_deaths_per_million": 1.716, + "new_deaths_smoothed_per_million": 2.192, + "stringency_index": 96.3 + }, + { + "date": "2020-07-10", + "total_cases": 26384.0, + "new_cases": 406.0, + "new_cases_smoothed": 752.0, + "total_deaths": 704.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 2663.811, + "new_cases_per_million": 40.991, + "new_cases_smoothed_per_million": 75.924, + "total_deaths_per_million": 71.078, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 1.63, + "stringency_index": 96.3 + }, + { + "date": "2020-07-11", + "total_cases": 27053.0, + "new_cases": 669.0, + "new_cases_smoothed": 705.286, + "total_deaths": 750.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 2731.355, + "new_cases_per_million": 67.544, + "new_cases_smoothed_per_million": 71.208, + "total_deaths_per_million": 75.722, + "new_deaths_per_million": 4.644, + "new_deaths_smoothed_per_million": 2.091, + "stringency_index": 96.3 + }, + { + "date": "2020-07-12", + "total_cases": 27583.0, + "new_cases": 530.0, + "new_cases_smoothed": 666.0, + "total_deaths": 771.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 2784.865, + "new_cases_per_million": 53.51, + "new_cases_smoothed_per_million": 67.241, + "total_deaths_per_million": 77.843, + "new_deaths_per_million": 2.12, + "new_deaths_smoothed_per_million": 2.048, + "stringency_index": 96.3 + }, + { + "date": "2020-07-13", + "total_cases": 28090.0, + "new_cases": 507.0, + "new_cases_smoothed": 592.429, + "total_deaths": 774.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 2836.054, + "new_cases_per_million": 51.188, + "new_cases_smoothed_per_million": 59.813, + "total_deaths_per_million": 78.145, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 1.947, + "stringency_index": 96.3 + }, + { + "date": "2020-07-14", + "total_cases": 28579.0, + "new_cases": 489.0, + "new_cases_smoothed": 559.143, + "total_deaths": 789.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 2885.425, + "new_cases_per_million": 49.371, + "new_cases_smoothed_per_million": 56.453, + "total_deaths_per_million": 79.66, + "new_deaths_per_million": 1.514, + "new_deaths_smoothed_per_million": 1.918, + "stringency_index": 96.3 + }, + { + "date": "2020-07-15", + "total_cases": 29106.0, + "new_cases": 527.0, + "new_cases_smoothed": 525.429, + "total_deaths": 807.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2938.632, + "new_cases_per_million": 53.208, + "new_cases_smoothed_per_million": 53.049, + "total_deaths_per_million": 81.477, + "new_deaths_per_million": 1.817, + "new_deaths_smoothed_per_million": 1.875, + "stringency_index": 96.3 + }, + { + "date": "2020-07-16", + "total_cases": 30036.0, + "new_cases": 930.0, + "new_cases_smoothed": 579.714, + "total_deaths": 825.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 3032.528, + "new_cases_per_million": 93.896, + "new_cases_smoothed_per_million": 58.53, + "total_deaths_per_million": 83.295, + "new_deaths_per_million": 1.817, + "new_deaths_smoothed_per_million": 1.889, + "stringency_index": 96.3 + }, + { + "date": "2020-07-17", + "total_cases": 30867.0, + "new_cases": 831.0, + "new_cases_smoothed": 640.429, + "total_deaths": 835.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 3116.428, + "new_cases_per_million": 83.9, + "new_cases_smoothed_per_million": 64.66, + "total_deaths_per_million": 84.304, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 1.889, + "stringency_index": 96.3 + }, + { + "date": "2020-07-18", + "total_cases": 31745.0, + "new_cases": 878.0, + "new_cases_smoothed": 670.286, + "total_deaths": 857.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 3205.074, + "new_cases_per_million": 88.646, + "new_cases_smoothed_per_million": 67.674, + "total_deaths_per_million": 86.525, + "new_deaths_per_million": 2.221, + "new_deaths_smoothed_per_million": 1.543, + "stringency_index": 96.3 + }, + { + "date": "2020-07-19", + "total_cases": 32793.0, + "new_cases": 1048.0, + "new_cases_smoothed": 744.286, + "total_deaths": 891.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 3310.883, + "new_cases_per_million": 105.809, + "new_cases_smoothed_per_million": 75.145, + "total_deaths_per_million": 89.958, + "new_deaths_per_million": 3.433, + "new_deaths_smoothed_per_million": 1.731, + "stringency_index": 96.3 + }, + { + "date": "2020-07-20", + "total_cases": 33835.0, + "new_cases": 1042.0, + "new_cases_smoothed": 820.714, + "total_deaths": 900.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 3416.087, + "new_cases_per_million": 105.204, + "new_cases_smoothed_per_million": 82.862, + "total_deaths_per_million": 90.867, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 1.817, + "stringency_index": 96.3 + }, + { + "date": "2020-07-21", + "total_cases": 34611.0, + "new_cases": 776.0, + "new_cases_smoothed": 861.714, + "total_deaths": 935.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 3494.434, + "new_cases_per_million": 78.347, + "new_cases_smoothed_per_million": 87.001, + "total_deaths_per_million": 94.401, + "new_deaths_per_million": 3.534, + "new_deaths_smoothed_per_million": 2.106, + "stringency_index": 96.3 + }, + { + "date": "2020-07-22", + "total_cases": 35345.0, + "new_cases": 734.0, + "new_cases_smoothed": 891.286, + "total_deaths": 988.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 25.857, + "total_cases_per_million": 3568.541, + "new_cases_per_million": 74.107, + "new_cases_smoothed_per_million": 89.987, + "total_deaths_per_million": 99.752, + "new_deaths_per_million": 5.351, + "new_deaths_smoothed_per_million": 2.611, + "stringency_index": 96.3 + }, + { + "date": "2020-07-23", + "total_cases": 36102.0, + "new_cases": 757.0, + "new_cases_smoothed": 866.571, + "total_deaths": 1006.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 25.857, + "total_cases_per_million": 3644.97, + "new_cases_per_million": 76.429, + "new_cases_smoothed_per_million": 87.492, + "total_deaths_per_million": 101.569, + "new_deaths_per_million": 1.817, + "new_deaths_smoothed_per_million": 2.611, + "stringency_index": 96.3 + }, + { + "date": "2020-07-24", + "total_cases": 36902.0, + "new_cases": 800.0, + "new_cases_smoothed": 862.143, + "total_deaths": 1011.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 3725.741, + "new_cases_per_million": 80.77, + "new_cases_smoothed_per_million": 87.045, + "total_deaths_per_million": 102.074, + "new_deaths_per_million": 0.505, + "new_deaths_smoothed_per_million": 2.539, + "stringency_index": 96.3 + }, + { + "date": "2020-07-25", + "total_cases": 37559.0, + "new_cases": 657.0, + "new_cases_smoothed": 830.571, + "total_deaths": 1061.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 3792.073, + "new_cases_per_million": 66.333, + "new_cases_smoothed_per_million": 83.857, + "total_deaths_per_million": 107.122, + "new_deaths_per_million": 5.048, + "new_deaths_smoothed_per_million": 2.942, + "stringency_index": 96.3 + }, + { + "date": "2020-07-26", + "total_cases": 38438.0, + "new_cases": 879.0, + "new_cases_smoothed": 806.429, + "total_deaths": 1098.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 3880.82, + "new_cases_per_million": 88.747, + "new_cases_smoothed_per_million": 81.42, + "total_deaths_per_million": 110.857, + "new_deaths_per_million": 3.736, + "new_deaths_smoothed_per_million": 2.986, + "stringency_index": 96.3 + }, + { + "date": "2020-07-27", + "total_cases": 39276.0, + "new_cases": 838.0, + "new_cases_smoothed": 777.286, + "total_deaths": 1116.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 3965.427, + "new_cases_per_million": 84.607, + "new_cases_smoothed_per_million": 78.477, + "total_deaths_per_million": 112.675, + "new_deaths_per_million": 1.817, + "new_deaths_smoothed_per_million": 3.115, + "stringency_index": 96.3 + }, + { + "date": "2020-07-28", + "total_cases": 39741.0, + "new_cases": 465.0, + "new_cases_smoothed": 732.857, + "total_deaths": 1166.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 4012.375, + "new_cases_per_million": 46.948, + "new_cases_smoothed_per_million": 73.992, + "total_deaths_per_million": 117.723, + "new_deaths_per_million": 5.048, + "new_deaths_smoothed_per_million": 3.332, + "stringency_index": 96.3 + }, + { + "date": "2020-07-29", + "total_cases": 40460.0, + "new_cases": 719.0, + "new_cases_smoothed": 730.714, + "total_deaths": 1214.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 4084.967, + "new_cases_per_million": 72.592, + "new_cases_smoothed_per_million": 73.775, + "total_deaths_per_million": 122.569, + "new_deaths_per_million": 4.846, + "new_deaths_smoothed_per_million": 3.26, + "stringency_index": 96.3 + }, + { + "date": "2020-07-30", + "total_cases": 40944.0, + "new_cases": 484.0, + "new_cases_smoothed": 691.714, + "total_deaths": 1259.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 4133.833, + "new_cases_per_million": 48.866, + "new_cases_smoothed_per_million": 69.838, + "total_deaths_per_million": 127.113, + "new_deaths_per_million": 4.543, + "new_deaths_smoothed_per_million": 3.649, + "stringency_index": 96.3 + }, + { + "date": "2020-07-31", + "total_cases": 41426.0, + "new_cases": 482.0, + "new_cases_smoothed": 646.286, + "total_deaths": 1312.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 43.0, + "total_cases_per_million": 4182.498, + "new_cases_per_million": 48.664, + "new_cases_smoothed_per_million": 65.251, + "total_deaths_per_million": 132.464, + "new_deaths_per_million": 5.351, + "new_deaths_smoothed_per_million": 4.341, + "stringency_index": 96.3 + }, + { + "date": "2020-08-01", + "total_cases": 42402.0, + "new_cases": 976.0, + "new_cases_smoothed": 691.857, + "total_deaths": 1337.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 4281.038, + "new_cases_per_million": 98.54, + "new_cases_smoothed_per_million": 69.852, + "total_deaths_per_million": 134.988, + "new_deaths_per_million": 2.524, + "new_deaths_smoothed_per_million": 3.981, + "stringency_index": 96.3 + }, + { + "date": "2020-08-02", + "total_cases": 42685.0, + "new_cases": 283.0, + "new_cases_smoothed": 606.714, + "total_deaths": 1368.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 4309.61, + "new_cases_per_million": 28.573, + "new_cases_smoothed_per_million": 61.256, + "total_deaths_per_million": 138.118, + "new_deaths_per_million": 3.13, + "new_deaths_smoothed_per_million": 3.894, + "stringency_index": 96.3 + }, + { + "date": "2020-08-03", + "total_cases": 43197.0, + "new_cases": 512.0, + "new_cases_smoothed": 560.143, + "total_deaths": 1377.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 4361.303, + "new_cases_per_million": 51.693, + "new_cases_smoothed_per_million": 56.554, + "total_deaths_per_million": 139.026, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 3.764, + "stringency_index": 96.3 + }, + { + "date": "2020-08-04", + "total_cases": 43794.0, + "new_cases": 597.0, + "new_cases_smoothed": 579.0, + "total_deaths": 1384.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 4421.578, + "new_cases_per_million": 60.275, + "new_cases_smoothed_per_million": 58.458, + "total_deaths_per_million": 139.733, + "new_deaths_per_million": 0.707, + "new_deaths_smoothed_per_million": 3.144, + "stringency_index": 96.3 + }, + { + "date": "2020-08-05", + "total_cases": 44299.0, + "new_cases": 505.0, + "new_cases_smoothed": 548.429, + "total_deaths": 1400.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 4472.565, + "new_cases_per_million": 50.986, + "new_cases_smoothed_per_million": 55.371, + "total_deaths_per_million": 141.348, + "new_deaths_per_million": 1.615, + "new_deaths_smoothed_per_million": 2.683, + "stringency_index": 96.3 + }, + { + "date": "2020-08-06", + "total_cases": 45098.0, + "new_cases": 799.0, + "new_cases_smoothed": 593.429, + "total_deaths": 1423.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 4553.234, + "new_cases_per_million": 80.67, + "new_cases_smoothed_per_million": 59.914, + "total_deaths_per_million": 143.671, + "new_deaths_per_million": 2.322, + "new_deaths_smoothed_per_million": 2.365, + "stringency_index": 96.3 + }, + { + "date": "2020-08-07", + "total_cases": 45755.0, + "new_cases": 657.0, + "new_cases_smoothed": 618.429, + "total_deaths": 1446.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 4619.567, + "new_cases_per_million": 66.333, + "new_cases_smoothed_per_million": 62.438, + "total_deaths_per_million": 145.993, + "new_deaths_per_million": 2.322, + "new_deaths_smoothed_per_million": 1.933, + "stringency_index": 96.3 + }, + { + "date": "2020-08-08", + "total_cases": 46365.0, + "new_cases": 610.0, + "new_cases_smoothed": 566.143, + "total_deaths": 1465.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 4681.154, + "new_cases_per_million": 61.587, + "new_cases_smoothed_per_million": 57.16, + "total_deaths_per_million": 147.911, + "new_deaths_per_million": 1.918, + "new_deaths_smoothed_per_million": 1.846, + "stringency_index": 96.3 + }, + { + "date": "2020-08-09", + "total_cases": 46976.0, + "new_cases": 611.0, + "new_cases_smoothed": 613.0, + "total_deaths": 1476.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 4742.843, + "new_cases_per_million": 61.688, + "new_cases_smoothed_per_million": 61.89, + "total_deaths_per_million": 149.022, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 1.558, + "stringency_index": 96.3 + }, + { + "date": "2020-08-10", + "total_cases": 47454.0, + "new_cases": 478.0, + "new_cases_smoothed": 608.143, + "total_deaths": 1495.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 4791.103, + "new_cases_per_million": 48.26, + "new_cases_smoothed_per_million": 61.4, + "total_deaths_per_million": 150.94, + "new_deaths_per_million": 1.918, + "new_deaths_smoothed_per_million": 1.702, + "stringency_index": 96.3 + }, + { + "date": "2020-08-11", + "total_cases": 47872.0, + "new_cases": 418.0, + "new_cases_smoothed": 582.571, + "total_deaths": 1506.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 4833.306, + "new_cases_per_million": 42.203, + "new_cases_smoothed_per_million": 58.818, + "total_deaths_per_million": 152.05, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 1.76, + "stringency_index": 96.3 + }, + { + "date": "2020-08-12", + "total_cases": 48403.0, + "new_cases": 531.0, + "new_cases_smoothed": 586.286, + "total_deaths": 1515.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 4886.917, + "new_cases_per_million": 53.611, + "new_cases_smoothed_per_million": 59.193, + "total_deaths_per_million": 152.959, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 1.659, + "stringency_index": 96.3 + }, + { + "date": "2020-08-13", + "total_cases": 48657.0, + "new_cases": 254.0, + "new_cases_smoothed": 508.429, + "total_deaths": 1533.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 4912.562, + "new_cases_per_million": 25.645, + "new_cases_smoothed_per_million": 51.333, + "total_deaths_per_million": 154.776, + "new_deaths_per_million": 1.817, + "new_deaths_smoothed_per_million": 1.587, + "stringency_index": 96.3 + }, + { + "date": "2020-08-14", + "total_cases": 49042.0, + "new_cases": 385.0, + "new_cases_smoothed": 469.571, + "total_deaths": 1542.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 4951.433, + "new_cases_per_million": 38.871, + "new_cases_smoothed_per_million": 47.409, + "total_deaths_per_million": 155.685, + "new_deaths_per_million": 0.909, + "new_deaths_smoothed_per_million": 1.385, + "stringency_index": 96.3 + }, + { + "date": "2020-08-15", + "total_cases": 49467.0, + "new_cases": 425.0, + "new_cases_smoothed": 443.143, + "total_deaths": 1548.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 4994.342, + "new_cases_per_million": 42.909, + "new_cases_smoothed_per_million": 44.741, + "total_deaths_per_million": 156.291, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 1.197, + "stringency_index": 96.3 + }, + { + "date": "2020-08-16", + "total_cases": 49979.0, + "new_cases": 512.0, + "new_cases_smoothed": 429.0, + "total_deaths": 1567.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 5046.035, + "new_cases_per_million": 51.693, + "new_cases_smoothed_per_million": 43.313, + "total_deaths_per_million": 158.209, + "new_deaths_per_million": 1.918, + "new_deaths_smoothed_per_million": 1.313, + "stringency_index": 96.3 + }, + { + "date": "2020-08-17", + "total_cases": 50502.0, + "new_cases": 523.0, + "new_cases_smoothed": 435.429, + "total_deaths": 1575.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 5098.839, + "new_cases_per_million": 52.804, + "new_cases_smoothed_per_million": 43.962, + "total_deaths_per_million": 159.017, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 1.154, + "stringency_index": 87.96 + }, + { + "date": "2020-08-18", + "total_cases": 50995.0, + "new_cases": 493.0, + "new_cases_smoothed": 446.143, + "total_deaths": 1583.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 5148.614, + "new_cases_per_million": 49.775, + "new_cases_smoothed_per_million": 45.044, + "total_deaths_per_million": 159.825, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 1.111, + "stringency_index": 87.96 + }, + { + "date": "2020-08-19", + "total_cases": 51670.0, + "new_cases": 675.0, + "new_cases_smoothed": 466.714, + "total_deaths": 1593.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 5216.764, + "new_cases_per_million": 68.15, + "new_cases_smoothed_per_million": 47.121, + "total_deaths_per_million": 160.834, + "new_deaths_per_million": 1.01, + "new_deaths_smoothed_per_million": 1.125, + "stringency_index": 87.96 + }, + { + "date": "2020-08-20", + "total_cases": 52296.0, + "new_cases": 626.0, + "new_cases_smoothed": 519.857, + "total_deaths": 1608.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 5279.967, + "new_cases_per_million": 63.203, + "new_cases_smoothed_per_million": 52.486, + "total_deaths_per_million": 162.349, + "new_deaths_per_million": 1.514, + "new_deaths_smoothed_per_million": 1.082, + "stringency_index": 87.96 + }, + { + "date": "2020-08-21", + "total_cases": 52819.0, + "new_cases": 523.0, + "new_cases_smoothed": 539.571, + "total_deaths": 1619.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 5332.77, + "new_cases_per_million": 52.804, + "new_cases_smoothed_per_million": 54.477, + "total_deaths_per_million": 163.459, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 1.111, + "stringency_index": 87.96 + }, + { + "date": "2020-08-22", + "total_cases": 53381.0, + "new_cases": 562.0, + "new_cases_smoothed": 559.143, + "total_deaths": 1632.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 5389.512, + "new_cases_per_million": 56.741, + "new_cases_smoothed_per_million": 56.453, + "total_deaths_per_million": 164.772, + "new_deaths_per_million": 1.313, + "new_deaths_smoothed_per_million": 1.212, + "stringency_index": 82.41 + }, + { + "date": "2020-08-23", + "total_cases": 53983.0, + "new_cases": 602.0, + "new_cases_smoothed": 572.0, + "total_deaths": 1643.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 5450.291, + "new_cases_per_million": 60.78, + "new_cases_smoothed_per_million": 57.751, + "total_deaths_per_million": 165.882, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 1.096, + "stringency_index": 82.41 + }, + { + "date": "2020-08-24", + "total_cases": 54511.0, + "new_cases": 528.0, + "new_cases_smoothed": 572.714, + "total_deaths": 1654.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 5503.6, + "new_cases_per_million": 53.309, + "new_cases_smoothed_per_million": 57.823, + "total_deaths_per_million": 166.993, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 1.139, + "stringency_index": 82.41 + }, + { + "date": "2020-08-25", + "total_cases": 55479.0, + "new_cases": 968.0, + "new_cases_smoothed": 640.571, + "total_deaths": 1683.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 5601.332, + "new_cases_per_million": 97.732, + "new_cases_smoothed_per_million": 64.674, + "total_deaths_per_million": 169.921, + "new_deaths_per_million": 2.928, + "new_deaths_smoothed_per_million": 1.442, + "stringency_index": 82.41 + }, + { + "date": "2020-08-26", + "total_cases": 55479.0, + "new_cases": 0.0, + "new_cases_smoothed": 544.143, + "total_deaths": 1683.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 5601.332, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 54.938, + "total_deaths_per_million": 169.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.298, + "stringency_index": 82.41 + }, + { + "date": "2020-08-27", + "total_cases": 56649.0, + "new_cases": 1170.0, + "new_cases_smoothed": 621.857, + "total_deaths": 1747.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 5719.459, + "new_cases_per_million": 118.127, + "new_cases_smoothed_per_million": 62.785, + "total_deaths_per_million": 176.383, + "new_deaths_per_million": 6.462, + "new_deaths_smoothed_per_million": 2.005, + "stringency_index": 82.41 + }, + { + "date": "2020-08-28", + "total_cases": 57669.0, + "new_cases": 1020.0, + "new_cases_smoothed": 692.857, + "total_deaths": 1803.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 5822.441, + "new_cases_per_million": 102.982, + "new_cases_smoothed_per_million": 69.953, + "total_deaths_per_million": 182.036, + "new_deaths_per_million": 5.654, + "new_deaths_smoothed_per_million": 2.654, + "stringency_index": 82.41 + }, + { + "date": "2020-08-29", + "total_cases": 58810.0, + "new_cases": 1141.0, + "new_cases_smoothed": 775.571, + "total_deaths": 1827.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 5937.64, + "new_cases_per_million": 115.199, + "new_cases_smoothed_per_million": 78.304, + "total_deaths_per_million": 184.46, + "new_deaths_per_million": 2.423, + "new_deaths_smoothed_per_million": 2.813, + "stringency_index": 82.41 + }, + { + "date": "2020-08-30", + "total_cases": 59645.0, + "new_cases": 835.0, + "new_cases_smoothed": 808.857, + "total_deaths": 1842.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 6021.945, + "new_cases_per_million": 84.304, + "new_cases_smoothed_per_million": 81.665, + "total_deaths_per_million": 185.974, + "new_deaths_per_million": 1.514, + "new_deaths_smoothed_per_million": 2.87, + "stringency_index": 82.41 + }, + { + "date": "2020-08-31", + "total_cases": 60174.0, + "new_cases": 529.0, + "new_cases_smoothed": 809.0, + "total_deaths": 1858.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 6075.354, + "new_cases_per_million": 53.409, + "new_cases_smoothed_per_million": 81.679, + "total_deaths_per_million": 187.589, + "new_deaths_per_million": 1.615, + "new_deaths_smoothed_per_million": 2.942, + "stringency_index": 82.41 + }, + { + "date": "2020-09-01", + "total_cases": 61014.0, + "new_cases": 840.0, + "new_cases_smoothed": 790.714, + "total_deaths": 1873.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 6160.163, + "new_cases_per_million": 84.809, + "new_cases_smoothed_per_million": 79.833, + "total_deaths_per_million": 189.104, + "new_deaths_per_million": 1.514, + "new_deaths_smoothed_per_million": 2.74 + }, + { + "date": "2020-09-02", + "total_cases": 61769.0, + "new_cases": 755.0, + "new_cases_smoothed": 898.571, + "total_deaths": 1888.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 29.286, + "total_cases_per_million": 6236.39, + "new_cases_per_million": 76.227, + "new_cases_smoothed_per_million": 90.723, + "total_deaths_per_million": 190.618, + "new_deaths_per_million": 1.514, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-09-03", + "total_cases": 62526.0, + "new_cases": 757.0, + "new_cases_smoothed": 839.571, + "total_deaths": 1924.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 6312.819, + "new_cases_per_million": 76.429, + "new_cases_smoothed_per_million": 84.766, + "total_deaths_per_million": 194.253, + "new_deaths_per_million": 3.635, + "new_deaths_smoothed_per_million": 2.553 + }, + { + "date": "2020-09-04", + "total_cases": 63158.0, + "new_cases": 632.0, + "new_cases_smoothed": 784.143, + "total_deaths": 1954.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 6376.628, + "new_cases_per_million": 63.809, + "new_cases_smoothed_per_million": 79.169, + "total_deaths_per_million": 197.282, + "new_deaths_per_million": 3.029, + "new_deaths_smoothed_per_million": 2.178 + }, + { + "date": "2020-09-05", + "total_cases": 63798.0, + "new_cases": 640.0, + "new_cases_smoothed": 712.571, + "total_deaths": 1984.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 6441.244, + "new_cases_per_million": 64.616, + "new_cases_smoothed_per_million": 71.943, + "total_deaths_per_million": 200.311, + "new_deaths_per_million": 3.029, + "new_deaths_smoothed_per_million": 2.264 + } + ] + }, + "HKG": { + "continent": "Asia", + "location": "Hong Kong", + "population": 7496988.0, + "population_density": 7039.714, + "median_age": 44.8, + "aged_65_older": 16.303, + "aged_70_older": 10.158, + "gdp_per_capita": 56054.92, + "diabetes_prevalence": 8.33, + "life_expectancy": 84.86, + "data": [ + { + "date": "2020-01-31", + "total_tests": 3610.0, + "total_tests_per_thousand": 0.482, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-02-29", + "total_tests": 30593.0, + "total_tests_per_thousand": 4.081, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-31", + "total_tests": 96598.0, + "total_tests_per_thousand": 12.885, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-04-30", + "total_tests": 162935.0, + "total_tests_per_thousand": 21.733, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-05-31", + "total_tests": 238046.0, + "total_tests_per_thousand": 31.752, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-30", + "total_tests": 347434.0, + "total_tests_per_thousand": 46.343, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-31", + "total_tests": 644872.0, + "total_tests_per_thousand": 86.017, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-01", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-02", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-03", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-04", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-05", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-06", + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-07", + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-08", + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-09", + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-10", + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-11", + "total_tests": 780410.0, + "total_tests_per_thousand": 104.096, + "new_tests_smoothed": 12322.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_units": "tests performed", + "stringency_index": 66.67 + } + ] + }, + "HUN": { + "continent": "Europe", + "location": "Hungary", + "population": 9660350.0, + "population_density": 108.043, + "median_age": 43.4, + "aged_65_older": 18.577, + "aged_70_older": 11.976, + "gdp_per_capita": 26777.561, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 278.296, + "diabetes_prevalence": 7.55, + "female_smokers": 26.8, + "male_smokers": 34.8, + "hospital_beds_per_thousand": 7.02, + "life_expectancy": 76.88, + "data": [ + { + "date": "2020-03-04", + "total_tests": 230.0, + "total_tests_per_thousand": 0.024, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_tests": 269.0, + "total_tests_per_thousand": 0.028, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.414, + "new_cases_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 319.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.005, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 7.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.725, + "new_cases_per_million": 0.311, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 362.0, + "total_tests_per_thousand": 0.037, + "new_tests_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 8.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.828, + "new_cases_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 9.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.932, + "new_cases_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 531.0, + "total_tests_per_thousand": 0.055, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.242, + "new_cases_per_million": 0.311, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 609.0, + "total_tests_per_thousand": 0.063, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-12", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.346, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 121.0, + "total_tests": 730.0, + "total_tests_per_thousand": 0.076, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 43.909, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-13", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.656, + "new_cases_per_million": 0.311, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 128.0, + "total_tests": 858.0, + "total_tests_per_thousand": 0.089, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 84.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-14", + "total_cases": 25.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.588, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 156.0, + "total_tests": 1014.0, + "total_tests_per_thousand": 0.105, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 99.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 33.0, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-15", + "total_cases": 31.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.209, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 222.0, + "total_tests": 1236.0, + "total_tests_per_thousand": 0.128, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 125.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 36.458, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-16", + "total_cases": 39.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.037, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.458, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 234.0, + "total_tests": 1470.0, + "total_tests_per_thousand": 0.152, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 32.968, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-17", + "total_cases": 50.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.176, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 117.0, + "total_tests": 1587.0, + "total_tests_per_thousand": 0.164, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 151.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 25.78, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-18", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.176, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 216.0, + "total_tests": 1803.0, + "total_tests_per_thousand": 0.187, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 171.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 31.5, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-19", + "total_cases": 73.0, + "new_cases": 23.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.557, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 0.887, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 519.0, + "total_tests": 2322.0, + "total_tests_per_thousand": 0.24, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 227.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 26.483, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-20", + "total_cases": 85.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.799, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 1.02, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 685.0, + "total_tests": 3007.0, + "total_tests_per_thousand": 0.311, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 307.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 31.145, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-21", + "total_cases": 103.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.143, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.662, + "new_cases_per_million": 1.863, + "new_cases_smoothed_per_million": 1.153, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 470.0, + "total_tests": 3477.0, + "total_tests_per_thousand": 0.36, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 31.59, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-22", + "total_cases": 131.0, + "new_cases": 28.0, + "new_cases_smoothed": 14.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13.561, + "new_cases_per_million": 2.898, + "new_cases_smoothed_per_million": 1.479, + "total_deaths_per_million": 0.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 966.0, + "total_tests": 4443.0, + "total_tests_per_thousand": 0.46, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 458.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 32.06, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-23", + "total_cases": 167.0, + "new_cases": 36.0, + "new_cases_smoothed": 18.286, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 17.287, + "new_cases_per_million": 3.727, + "new_cases_smoothed_per_million": 1.893, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1072.0, + "total_tests": 5515.0, + "total_tests_per_thousand": 0.571, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 578.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 31.609, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-24", + "total_cases": 187.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 19.357, + "new_cases_per_million": 2.07, + "new_cases_smoothed_per_million": 2.026, + "total_deaths_per_million": 0.828, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 598.0, + "total_tests": 6113.0, + "total_tests_per_thousand": 0.633, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 647.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 33.058, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-25", + "total_cases": 226.0, + "new_cases": 39.0, + "new_cases_smoothed": 25.143, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 23.395, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 2.603, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 704.0, + "total_tests": 6817.0, + "total_tests_per_thousand": 0.706, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 716.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 28.476999999999997, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-26", + "total_cases": 261.0, + "new_cases": 35.0, + "new_cases_smoothed": 26.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.018, + "new_cases_per_million": 3.623, + "new_cases_smoothed_per_million": 2.78, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1188.0, + "total_tests": 8005.0, + "total_tests_per_thousand": 0.829, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 812.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 30.234, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-27", + "total_cases": 300.0, + "new_cases": 39.0, + "new_cases_smoothed": 30.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 31.055, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 3.179, + "total_deaths_per_million": 1.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1270.0, + "total_tests": 9275.0, + "total_tests_per_thousand": 0.96, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 29.14, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-03-28", + "total_cases": 343.0, + "new_cases": 43.0, + "new_cases_smoothed": 34.286, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 35.506, + "new_cases_per_million": 4.451, + "new_cases_smoothed_per_million": 3.549, + "total_deaths_per_million": 1.139, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 1028.0, + "total_tests": 10303.0, + "total_tests_per_thousand": 1.067, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 975.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 28.438000000000002, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-29", + "total_cases": 408.0, + "new_cases": 65.0, + "new_cases_smoothed": 39.571, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.234, + "new_cases_per_million": 6.729, + "new_cases_smoothed_per_million": 4.096, + "total_deaths_per_million": 1.346, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1845.0, + "total_tests": 12148.0, + "total_tests_per_thousand": 1.258, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 27.823, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-30", + "total_cases": 447.0, + "new_cases": 39.0, + "new_cases_smoothed": 40.0, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 46.272, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 4.141, + "total_deaths_per_million": 1.553, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 1153.0, + "total_tests": 13301.0, + "total_tests_per_thousand": 1.377, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 27.8, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-03-31", + "total_cases": 492.0, + "new_cases": 45.0, + "new_cases_smoothed": 43.571, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 50.93, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 4.51, + "total_deaths_per_million": 1.656, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 845.0, + "total_tests": 14146.0, + "total_tests_per_thousand": 1.464, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 1148.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 26.348000000000003, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-01", + "total_cases": 525.0, + "new_cases": 33.0, + "new_cases_smoothed": 42.714, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 54.346, + "new_cases_per_million": 3.416, + "new_cases_smoothed_per_million": 4.422, + "total_deaths_per_million": 2.07, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 1062.0, + "total_tests": 15208.0, + "total_tests_per_thousand": 1.574, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 1199.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 28.07, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-02", + "total_cases": 585.0, + "new_cases": 60.0, + "new_cases_smoothed": 46.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 60.557, + "new_cases_per_million": 6.211, + "new_cases_smoothed_per_million": 4.791, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 1193.0, + "total_tests": 16401.0, + "total_tests_per_thousand": 1.698, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 1199.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 25.904, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-03", + "total_cases": 623.0, + "new_cases": 38.0, + "new_cases_smoothed": 46.143, + "total_deaths": 26.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 64.49, + "new_cases_per_million": 3.934, + "new_cases_smoothed_per_million": 4.777, + "total_deaths_per_million": 2.691, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 1368.0, + "total_tests": 17769.0, + "total_tests_per_thousand": 1.839, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 1213.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 26.288, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-04", + "total_cases": 678.0, + "new_cases": 55.0, + "new_cases_smoothed": 47.857, + "total_deaths": 32.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 70.184, + "new_cases_per_million": 5.693, + "new_cases_smoothed_per_million": 4.954, + "total_deaths_per_million": 3.313, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.311, + "new_tests": 1655.0, + "total_tests": 19424.0, + "total_tests_per_thousand": 2.011, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 1303.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 27.226999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-05", + "total_cases": 733.0, + "new_cases": 55.0, + "new_cases_smoothed": 46.429, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 75.877, + "new_cases_per_million": 5.693, + "new_cases_smoothed_per_million": 4.806, + "total_deaths_per_million": 3.52, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.311, + "new_tests": 1826.0, + "total_tests": 21250.0, + "total_tests_per_thousand": 2.2, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 1300.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-06", + "total_cases": 744.0, + "new_cases": 11.0, + "new_cases_smoothed": 42.429, + "total_deaths": 38.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 77.016, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 4.392, + "total_deaths_per_million": 3.934, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 1032.0, + "total_tests": 22282.0, + "total_tests_per_thousand": 2.307, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 1283.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 30.239, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-07", + "total_cases": 817.0, + "new_cases": 73.0, + "new_cases_smoothed": 46.429, + "total_deaths": 47.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 84.573, + "new_cases_per_million": 7.557, + "new_cases_smoothed_per_million": 4.806, + "total_deaths_per_million": 4.865, + "new_deaths_per_million": 0.932, + "new_deaths_smoothed_per_million": 0.458, + "new_tests": 1464.0, + "total_tests": 23746.0, + "total_tests_per_thousand": 2.458, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 1371.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 29.529, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-08", + "total_cases": 895.0, + "new_cases": 78.0, + "new_cases_smoothed": 52.857, + "total_deaths": 58.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 92.647, + "new_cases_per_million": 8.074, + "new_cases_smoothed_per_million": 5.472, + "total_deaths_per_million": 6.004, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 0.562, + "new_tests": 2002.0, + "total_tests": 25748.0, + "total_tests_per_thousand": 2.665, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 1506.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 28.491999999999997, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-09", + "total_cases": 980.0, + "new_cases": 85.0, + "new_cases_smoothed": 56.429, + "total_deaths": 66.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 101.446, + "new_cases_per_million": 8.799, + "new_cases_smoothed_per_million": 5.841, + "total_deaths_per_million": 6.832, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.665, + "new_tests": 2078.0, + "total_tests": 27826.0, + "total_tests_per_thousand": 2.88, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 1632.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 28.921999999999997, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-10", + "total_cases": 1190.0, + "new_cases": 210.0, + "new_cases_smoothed": 81.0, + "total_deaths": 77.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 123.184, + "new_cases_per_million": 21.738, + "new_cases_smoothed_per_million": 8.385, + "total_deaths_per_million": 7.971, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 0.754, + "new_tests": 2122.0, + "total_tests": 29948.0, + "total_tests_per_thousand": 3.1, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 1740.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 21.480999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-11", + "total_cases": 1310.0, + "new_cases": 120.0, + "new_cases_smoothed": 90.286, + "total_deaths": 85.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 135.606, + "new_cases_per_million": 12.422, + "new_cases_smoothed_per_million": 9.346, + "total_deaths_per_million": 8.799, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.784, + "new_tests": 2013.0, + "total_tests": 31961.0, + "total_tests_per_thousand": 3.308, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 1791.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 19.837, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-12", + "total_cases": 1410.0, + "new_cases": 100.0, + "new_cases_smoothed": 96.714, + "total_deaths": 99.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 145.957, + "new_cases_per_million": 10.352, + "new_cases_smoothed_per_million": 10.011, + "total_deaths_per_million": 10.248, + "new_deaths_per_million": 1.449, + "new_deaths_smoothed_per_million": 0.961, + "new_tests": 1571.0, + "total_tests": 33532.0, + "total_tests_per_thousand": 3.471, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 18.146, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-13", + "total_cases": 1458.0, + "new_cases": 48.0, + "new_cases_smoothed": 102.0, + "total_deaths": 109.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 150.926, + "new_cases_per_million": 4.969, + "new_cases_smoothed_per_million": 10.559, + "total_deaths_per_million": 11.283, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 1287.0, + "total_tests": 34819.0, + "total_tests_per_thousand": 3.604, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 1791.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 17.559, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-14", + "total_cases": 1512.0, + "new_cases": 54.0, + "new_cases_smoothed": 99.286, + "total_deaths": 122.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 156.516, + "new_cases_per_million": 5.59, + "new_cases_smoothed_per_million": 10.278, + "total_deaths_per_million": 12.629, + "new_deaths_per_million": 1.346, + "new_deaths_smoothed_per_million": 1.109, + "new_tests": 1006.0, + "total_tests": 35825.0, + "total_tests_per_thousand": 3.708, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1726.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 17.384, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-15", + "total_cases": 1579.0, + "new_cases": 67.0, + "new_cases_smoothed": 97.714, + "total_deaths": 134.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 163.452, + "new_cases_per_million": 6.936, + "new_cases_smoothed_per_million": 10.115, + "total_deaths_per_million": 13.871, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.124, + "new_tests": 1501.0, + "total_tests": 37326.0, + "total_tests_per_thousand": 3.864, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 1654.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 16.927, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-16", + "total_cases": 1652.0, + "new_cases": 73.0, + "new_cases_smoothed": 96.0, + "total_deaths": 142.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 171.008, + "new_cases_per_million": 7.557, + "new_cases_smoothed_per_million": 9.938, + "total_deaths_per_million": 14.699, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 1.124, + "new_tests": 1163.0, + "total_tests": 38489.0, + "total_tests_per_thousand": 3.984, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 1523.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 15.865, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-17", + "total_cases": 1763.0, + "new_cases": 111.0, + "new_cases_smoothed": 81.857, + "total_deaths": 156.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 182.499, + "new_cases_per_million": 11.49, + "new_cases_smoothed_per_million": 8.474, + "total_deaths_per_million": 16.148, + "new_deaths_per_million": 1.449, + "new_deaths_smoothed_per_million": 1.168, + "new_tests": 3101.0, + "total_tests": 41590.0, + "total_tests_per_thousand": 4.305, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 1663.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 20.316, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-18", + "total_cases": 1834.0, + "new_cases": 71.0, + "new_cases_smoothed": 74.857, + "total_deaths": 172.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 189.848, + "new_cases_per_million": 7.35, + "new_cases_smoothed_per_million": 7.749, + "total_deaths_per_million": 17.805, + "new_deaths_per_million": 1.656, + "new_deaths_smoothed_per_million": 1.287, + "new_tests": 2311.0, + "total_tests": 43901.0, + "total_tests_per_thousand": 4.544, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 1706.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 22.79, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-19", + "total_cases": 1916.0, + "new_cases": 82.0, + "new_cases_smoothed": 72.286, + "total_deaths": 189.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 198.336, + "new_cases_per_million": 8.488, + "new_cases_smoothed_per_million": 7.483, + "total_deaths_per_million": 19.565, + "new_deaths_per_million": 1.76, + "new_deaths_smoothed_per_million": 1.331, + "new_tests": 2452.0, + "total_tests": 46353.0, + "total_tests_per_thousand": 4.798, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 1832.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 25.344, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-20", + "total_cases": 1984.0, + "new_cases": 68.0, + "new_cases_smoothed": 75.143, + "total_deaths": 199.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 205.376, + "new_cases_per_million": 7.039, + "new_cases_smoothed_per_million": 7.778, + "total_deaths_per_million": 20.6, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.331, + "new_tests": 1704.0, + "total_tests": 48057.0, + "total_tests_per_thousand": 4.975, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 1891.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 25.165, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-21", + "total_cases": 2098.0, + "new_cases": 114.0, + "new_cases_smoothed": 83.714, + "total_deaths": 213.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 217.176, + "new_cases_per_million": 11.801, + "new_cases_smoothed_per_million": 8.666, + "total_deaths_per_million": 22.049, + "new_deaths_per_million": 1.449, + "new_deaths_smoothed_per_million": 1.346, + "new_tests": 1995.0, + "total_tests": 50052.0, + "total_tests_per_thousand": 5.181, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 2032.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 24.273000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-22", + "total_cases": 2168.0, + "new_cases": 70.0, + "new_cases_smoothed": 84.143, + "total_deaths": 225.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 224.423, + "new_cases_per_million": 7.246, + "new_cases_smoothed_per_million": 8.71, + "total_deaths_per_million": 23.291, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.346, + "new_tests": 2650.0, + "total_tests": 52702.0, + "total_tests_per_thousand": 5.455, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 2197.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 26.11, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-23", + "total_cases": 2284.0, + "new_cases": 116.0, + "new_cases_smoothed": 90.286, + "total_deaths": 225.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 236.43, + "new_cases_per_million": 12.008, + "new_cases_smoothed_per_million": 9.346, + "total_deaths_per_million": 23.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.227, + "new_tests": 2688.0, + "total_tests": 55390.0, + "total_tests_per_thousand": 5.734, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 2414.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 26.737, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-24", + "total_cases": 2383.0, + "new_cases": 99.0, + "new_cases_smoothed": 88.571, + "total_deaths": 250.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 246.678, + "new_cases_per_million": 10.248, + "new_cases_smoothed_per_million": 9.169, + "total_deaths_per_million": 25.879, + "new_deaths_per_million": 2.588, + "new_deaths_smoothed_per_million": 1.39, + "new_tests": 2861.0, + "total_tests": 58251.0, + "total_tests_per_thousand": 6.03, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 2380.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 26.871, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-25", + "total_cases": 2443.0, + "new_cases": 60.0, + "new_cases_smoothed": 87.0, + "total_deaths": 262.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 252.889, + "new_cases_per_million": 6.211, + "new_cases_smoothed_per_million": 9.006, + "total_deaths_per_million": 27.121, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.331, + "new_tests": 2550.0, + "total_tests": 60801.0, + "total_tests_per_thousand": 6.294, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 2414.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 27.747, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-26", + "total_cases": 2500.0, + "new_cases": 57.0, + "new_cases_smoothed": 83.429, + "total_deaths": 272.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 258.79, + "new_cases_per_million": 5.9, + "new_cases_smoothed_per_million": 8.636, + "total_deaths_per_million": 28.156, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.227, + "new_tests": 2704.0, + "total_tests": 63505.0, + "total_tests_per_thousand": 6.574, + "new_tests_per_thousand": 0.28, + "new_tests_smoothed": 2450.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 29.366, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-27", + "total_cases": 2583.0, + "new_cases": 83.0, + "new_cases_smoothed": 85.571, + "total_deaths": 280.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 267.382, + "new_cases_per_million": 8.592, + "new_cases_smoothed_per_million": 8.858, + "total_deaths_per_million": 28.984, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 1.198, + "new_tests": 2120.0, + "total_tests": 65625.0, + "total_tests_per_thousand": 6.793, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 2510.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 29.331999999999997, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-28", + "total_cases": 2649.0, + "new_cases": 66.0, + "new_cases_smoothed": 78.714, + "total_deaths": 291.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 274.214, + "new_cases_per_million": 6.832, + "new_cases_smoothed_per_million": 8.148, + "total_deaths_per_million": 30.123, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 1.153, + "new_tests": 1547.0, + "total_tests": 67172.0, + "total_tests_per_thousand": 6.953, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 31.074, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-29", + "total_cases": 2727.0, + "new_cases": 78.0, + "new_cases_smoothed": 79.857, + "total_deaths": 300.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 282.288, + "new_cases_per_million": 8.074, + "new_cases_smoothed_per_million": 8.266, + "total_deaths_per_million": 31.055, + "new_deaths_per_million": 0.932, + "new_deaths_smoothed_per_million": 1.109, + "new_tests": 3128.0, + "total_tests": 70300.0, + "total_tests_per_thousand": 7.277, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 2514.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 31.480999999999998, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-04-30", + "total_cases": 2775.0, + "new_cases": 48.0, + "new_cases_smoothed": 70.143, + "total_deaths": 312.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 287.257, + "new_cases_per_million": 4.969, + "new_cases_smoothed_per_million": 7.261, + "total_deaths_per_million": 32.297, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.287, + "new_tests": 2651.0, + "total_tests": 72951.0, + "total_tests_per_thousand": 7.552, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 2509.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 35.77, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-01", + "total_cases": 2863.0, + "new_cases": 88.0, + "new_cases_smoothed": 68.571, + "total_deaths": 323.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 296.366, + "new_cases_per_million": 9.109, + "new_cases_smoothed_per_million": 7.098, + "total_deaths_per_million": 33.436, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 3380.0, + "total_tests": 76331.0, + "total_tests_per_thousand": 7.901, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 2583.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 37.669000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-02", + "total_cases": 2942.0, + "new_cases": 79.0, + "new_cases_smoothed": 71.286, + "total_deaths": 335.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 304.544, + "new_cases_per_million": 8.178, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 34.678, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 3220.0, + "total_tests": 79551.0, + "total_tests_per_thousand": 8.235, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 2679.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 37.580999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-03", + "total_cases": 2998.0, + "new_cases": 56.0, + "new_cases_smoothed": 71.143, + "total_deaths": 340.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 310.341, + "new_cases_per_million": 5.797, + "new_cases_smoothed_per_million": 7.364, + "total_deaths_per_million": 35.195, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 1.006, + "new_tests": 2459.0, + "total_tests": 82010.0, + "total_tests_per_thousand": 8.489, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 2644.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 37.165, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-05-04", + "total_cases": 3035.0, + "new_cases": 37.0, + "new_cases_smoothed": 64.571, + "total_deaths": 351.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 314.171, + "new_cases_per_million": 3.83, + "new_cases_smoothed_per_million": 6.684, + "total_deaths_per_million": 36.334, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 1948.0, + "total_tests": 83958.0, + "total_tests_per_thousand": 8.691, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 2619.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 40.56, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-05", + "total_cases": 3065.0, + "new_cases": 30.0, + "new_cases_smoothed": 59.429, + "total_deaths": 363.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 317.276, + "new_cases_per_million": 3.105, + "new_cases_smoothed_per_million": 6.152, + "total_deaths_per_million": 37.576, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 1.065, + "new_tests": 1599.0, + "total_tests": 85557.0, + "total_tests_per_thousand": 8.857, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 2626.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 44.188, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-06", + "total_cases": 3111.0, + "new_cases": 46.0, + "new_cases_smoothed": 54.857, + "total_deaths": 373.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 322.038, + "new_cases_per_million": 4.762, + "new_cases_smoothed_per_million": 5.679, + "total_deaths_per_million": 38.611, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 3178.0, + "total_tests": 88735.0, + "total_tests_per_thousand": 9.185, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 2634.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 48.016000000000005, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-07", + "total_cases": 3150.0, + "new_cases": 39.0, + "new_cases_smoothed": 53.571, + "total_deaths": 383.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 326.075, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 5.545, + "total_deaths_per_million": 39.647, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 5301.0, + "total_tests": 94036.0, + "total_tests_per_thousand": 9.734, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 3012.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 56.224, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-08", + "total_cases": 3178.0, + "new_cases": 28.0, + "new_cases_smoothed": 45.0, + "total_deaths": 392.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 328.974, + "new_cases_per_million": 2.898, + "new_cases_smoothed_per_million": 4.658, + "total_deaths_per_million": 40.578, + "new_deaths_per_million": 0.932, + "new_deaths_smoothed_per_million": 1.02, + "new_tests": 5022.0, + "total_tests": 99058.0, + "total_tests_per_thousand": 10.254, + "new_tests_per_thousand": 0.52, + "new_tests_smoothed": 3247.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 72.156, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-09", + "total_cases": 3213.0, + "new_cases": 35.0, + "new_cases_smoothed": 38.714, + "total_deaths": 405.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 332.597, + "new_cases_per_million": 3.623, + "new_cases_smoothed_per_million": 4.008, + "total_deaths_per_million": 41.924, + "new_deaths_per_million": 1.346, + "new_deaths_smoothed_per_million": 1.035, + "new_tests": 4200.0, + "total_tests": 103258.0, + "total_tests_per_thousand": 10.689, + "new_tests_per_thousand": 0.435, + "new_tests_smoothed": 3387.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 87.48700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-10", + "total_cases": 3263.0, + "new_cases": 50.0, + "new_cases_smoothed": 37.857, + "total_deaths": 413.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 337.772, + "new_cases_per_million": 5.176, + "new_cases_smoothed_per_million": 3.919, + "total_deaths_per_million": 42.752, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 4999.0, + "total_tests": 108257.0, + "total_tests_per_thousand": 11.206, + "new_tests_per_thousand": 0.517, + "new_tests_smoothed": 3750.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 99.057, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-11", + "total_cases": 3284.0, + "new_cases": 21.0, + "new_cases_smoothed": 35.571, + "total_deaths": 421.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 339.946, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 3.682, + "total_deaths_per_million": 43.58, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 1.035, + "new_tests": 3908.0, + "total_tests": 112165.0, + "total_tests_per_thousand": 11.611, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 4030.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 113.29299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-12", + "total_cases": 3313.0, + "new_cases": 29.0, + "new_cases_smoothed": 35.429, + "total_deaths": 425.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 342.948, + "new_cases_per_million": 3.002, + "new_cases_smoothed_per_million": 3.667, + "total_deaths_per_million": 43.994, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.917, + "new_tests": 2554.0, + "total_tests": 114719.0, + "total_tests_per_thousand": 11.875, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 4166.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 117.589, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-13", + "total_cases": 3341.0, + "new_cases": 28.0, + "new_cases_smoothed": 32.857, + "total_deaths": 430.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 345.847, + "new_cases_per_million": 2.898, + "new_cases_smoothed_per_million": 3.401, + "total_deaths_per_million": 44.512, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 3781.0, + "total_tests": 118500.0, + "total_tests_per_thousand": 12.267, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 4252.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 129.409, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-14", + "total_cases": 3380.0, + "new_cases": 39.0, + "new_cases_smoothed": 32.857, + "total_deaths": 436.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 349.884, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 3.401, + "total_deaths_per_million": 45.133, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.784, + "new_tests": 4758.0, + "total_tests": 123258.0, + "total_tests_per_thousand": 12.759, + "new_tests_per_thousand": 0.493, + "new_tests_smoothed": 4175.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 127.065, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-15", + "total_cases": 3417.0, + "new_cases": 37.0, + "new_cases_smoothed": 34.143, + "total_deaths": 442.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 353.714, + "new_cases_per_million": 3.83, + "new_cases_smoothed_per_million": 3.534, + "total_deaths_per_million": 45.754, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.739, + "new_tests": 3979.0, + "total_tests": 127237.0, + "total_tests_per_thousand": 13.171, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 4026.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 117.916, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-16", + "total_cases": 3473.0, + "new_cases": 56.0, + "new_cases_smoothed": 37.143, + "total_deaths": 448.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 359.511, + "new_cases_per_million": 5.797, + "new_cases_smoothed_per_million": 3.845, + "total_deaths_per_million": 46.375, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 4192.0, + "total_tests": 131429.0, + "total_tests_per_thousand": 13.605, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 4024.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 108.338, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-17", + "total_cases": 3509.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.143, + "total_deaths": 451.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 363.237, + "new_cases_per_million": 3.727, + "new_cases_smoothed_per_million": 3.638, + "total_deaths_per_million": 46.686, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.562, + "new_tests": 3708.0, + "total_tests": 135137.0, + "total_tests_per_thousand": 13.989, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 3840.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 109.26799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-18", + "total_cases": 3535.0, + "new_cases": 26.0, + "new_cases_smoothed": 35.857, + "total_deaths": 462.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 365.929, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 3.712, + "total_deaths_per_million": 47.824, + "new_deaths_per_million": 1.139, + "new_deaths_smoothed_per_million": 0.606, + "new_tests": 2106.0, + "total_tests": 137243.0, + "total_tests_per_thousand": 14.207, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 3583.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 99.92399999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-19", + "total_cases": 3556.0, + "new_cases": 21.0, + "new_cases_smoothed": 34.714, + "total_deaths": 467.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 368.103, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 3.593, + "total_deaths_per_million": 48.342, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.621, + "new_tests": 1454.0, + "total_tests": 138697.0, + "total_tests_per_thousand": 14.357, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 3425.0, + "new_tests_smoothed_per_thousand": 0.355, + "tests_per_case": 98.663, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-20", + "total_cases": 3598.0, + "new_cases": 42.0, + "new_cases_smoothed": 36.714, + "total_deaths": 470.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 372.45, + "new_cases_per_million": 4.348, + "new_cases_smoothed_per_million": 3.801, + "total_deaths_per_million": 48.652, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 4032.0, + "total_tests": 142729.0, + "total_tests_per_thousand": 14.775, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 3461.0, + "new_tests_smoothed_per_thousand": 0.358, + "tests_per_case": 94.26799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-21", + "total_cases": 3641.0, + "new_cases": 43.0, + "new_cases_smoothed": 37.286, + "total_deaths": 473.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 376.901, + "new_cases_per_million": 4.451, + "new_cases_smoothed_per_million": 3.86, + "total_deaths_per_million": 48.963, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.547, + "new_tests": 4782.0, + "total_tests": 147511.0, + "total_tests_per_thousand": 15.27, + "new_tests_per_thousand": 0.495, + "new_tests_smoothed": 3465.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 92.931, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-22", + "total_cases": 3678.0, + "new_cases": 37.0, + "new_cases_smoothed": 37.286, + "total_deaths": 476.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 380.732, + "new_cases_per_million": 3.83, + "new_cases_smoothed_per_million": 3.86, + "total_deaths_per_million": 49.274, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.503, + "new_tests": 8290.0, + "total_tests": 155801.0, + "total_tests_per_thousand": 16.128, + "new_tests_per_thousand": 0.858, + "new_tests_smoothed": 4081.0, + "new_tests_smoothed_per_thousand": 0.422, + "tests_per_case": 109.45200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-23", + "total_cases": 3713.0, + "new_cases": 35.0, + "new_cases_smoothed": 34.286, + "total_deaths": 482.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 384.355, + "new_cases_per_million": 3.623, + "new_cases_smoothed_per_million": 3.549, + "total_deaths_per_million": 49.895, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.503, + "new_tests": 3459.0, + "total_tests": 159260.0, + "total_tests_per_thousand": 16.486, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 3976.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 115.96700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-24", + "total_cases": 3741.0, + "new_cases": 28.0, + "new_cases_smoothed": 33.143, + "total_deaths": 486.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 387.253, + "new_cases_per_million": 2.898, + "new_cases_smoothed_per_million": 3.431, + "total_deaths_per_million": 50.309, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 3665.0, + "total_tests": 162925.0, + "total_tests_per_thousand": 16.865, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 3970.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 119.78399999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-25", + "total_cases": 3756.0, + "new_cases": 15.0, + "new_cases_smoothed": 31.571, + "total_deaths": 491.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 388.806, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 3.268, + "total_deaths_per_million": 50.826, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.429, + "new_tests": 1694.0, + "total_tests": 164619.0, + "total_tests_per_thousand": 17.041, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 3911.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 123.87799999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-26", + "total_cases": 3771.0, + "new_cases": 15.0, + "new_cases_smoothed": 30.714, + "total_deaths": 499.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 390.359, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 3.179, + "total_deaths_per_million": 51.654, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.473, + "new_tests": 1644.0, + "total_tests": 166263.0, + "total_tests_per_thousand": 17.211, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 3938.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 128.214, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-27", + "total_cases": 3793.0, + "new_cases": 22.0, + "new_cases_smoothed": 27.857, + "total_deaths": 505.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 392.636, + "new_cases_per_million": 2.277, + "new_cases_smoothed_per_million": 2.884, + "total_deaths_per_million": 52.276, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 3697.0, + "total_tests": 169960.0, + "total_tests_per_thousand": 17.594, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 3890.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 139.641, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-28", + "total_cases": 3816.0, + "new_cases": 23.0, + "new_cases_smoothed": 25.0, + "total_deaths": 509.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 395.017, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 2.588, + "total_deaths_per_million": 52.69, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 4051.0, + "total_tests": 174011.0, + "total_tests_per_thousand": 18.013, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 3786.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 151.44, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-29", + "total_cases": 3841.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.286, + "total_deaths": 517.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 397.605, + "new_cases_per_million": 2.588, + "new_cases_smoothed_per_million": 2.41, + "total_deaths_per_million": 53.518, + "new_deaths_per_million": 0.828, + "new_deaths_smoothed_per_million": 0.606, + "new_tests": 6141.0, + "total_tests": 180152.0, + "total_tests_per_thousand": 18.649, + "new_tests_per_thousand": 0.636, + "new_tests_smoothed": 3479.0, + "new_tests_smoothed_per_thousand": 0.36, + "tests_per_case": 149.405, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-30", + "total_cases": 3841.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.286, + "total_deaths": 517.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 397.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.893, + "total_deaths_per_million": 53.518, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 3410.0, + "total_tests": 183562.0, + "total_tests_per_thousand": 19.002, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 3472.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 189.875, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-31", + "total_cases": 3867.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.0, + "total_deaths": 524.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 400.296, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 1.863, + "total_deaths_per_million": 54.242, + "new_deaths_per_million": 0.725, + "new_deaths_smoothed_per_million": 0.562, + "new_tests": 2418.0, + "total_tests": 185980.0, + "total_tests_per_thousand": 19.252, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 3294.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 183.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-01", + "total_cases": 3876.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.143, + "total_deaths": 526.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 401.228, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 1.775, + "total_deaths_per_million": 54.449, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.518, + "new_tests": 1985.0, + "total_tests": 187965.0, + "total_tests_per_thousand": 19.457, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 3335.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 194.542, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-02", + "total_cases": 3921.0, + "new_cases": 45.0, + "new_cases_smoothed": 21.429, + "total_deaths": 532.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 405.886, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 2.218, + "total_deaths_per_million": 55.07, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.488, + "new_tests": 2004.0, + "total_tests": 189969.0, + "total_tests_per_thousand": 19.665, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 3387.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 158.06, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 3931.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.714, + "total_deaths": 534.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 406.921, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 55.278, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.429, + "new_tests": 1603.0, + "total_tests": 191572.0, + "total_tests_per_thousand": 19.831, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 3087.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 156.58700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 3931.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.429, + "total_deaths": 534.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 406.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.701, + "total_deaths_per_million": 55.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 4322.0, + "total_tests": 195894.0, + "total_tests_per_thousand": 20.278, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 3126.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 190.278, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 3954.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.143, + "total_deaths": 539.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 409.302, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 1.671, + "total_deaths_per_million": 55.795, + "new_deaths_per_million": 0.518, + "new_deaths_smoothed_per_million": 0.325, + "new_tests": 6712.0, + "total_tests": 202606.0, + "total_tests_per_thousand": 20.973, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 3208.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 198.726, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 3970.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.429, + "total_deaths": 542.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 410.958, + "new_cases_per_million": 1.656, + "new_cases_smoothed_per_million": 1.908, + "total_deaths_per_million": 56.106, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 4247.0, + "total_tests": 206853.0, + "total_tests_per_thousand": 21.413, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 3327.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 180.535, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 3970.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 542.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 410.958, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.523, + "total_deaths_per_million": 56.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 3349.0, + "total_tests": 210202.0, + "total_tests_per_thousand": 21.759, + "new_tests_per_thousand": 0.347, + "new_tests_smoothed": 3460.0, + "new_tests_smoothed_per_thousand": 0.358, + "tests_per_case": 235.146, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 3970.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 542.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 410.958, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.39, + "total_deaths_per_million": 56.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 547.0, + "total_tests": 210749.0, + "total_tests_per_thousand": 21.816, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 3255.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 242.394, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 4014.0, + "new_cases": 44.0, + "new_cases_smoothed": 13.286, + "total_deaths": 548.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 415.513, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 56.727, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3719.0, + "total_tests": 214468.0, + "total_tests_per_thousand": 22.201, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 3500.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 263.441, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 4017.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.286, + "total_deaths": 550.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 415.823, + "new_cases_per_million": 0.311, + "new_cases_smoothed_per_million": 1.272, + "total_deaths_per_million": 56.934, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3221.0, + "total_tests": 217689.0, + "total_tests_per_thousand": 22.534, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 3731.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 303.686, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 4027.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.714, + "total_deaths": 551.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 416.859, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 1.42, + "total_deaths_per_million": 57.037, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 4558.0, + "total_tests": 222247.0, + "total_tests_per_thousand": 23.006, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 3765.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 274.531, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 4039.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.143, + "total_deaths": 553.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 418.101, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 57.244, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 4422.0, + "total_tests": 226669.0, + "total_tests_per_thousand": 23.464, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 3438.0, + "new_tests_smoothed_per_thousand": 0.356, + "tests_per_case": 283.129, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 4053.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.857, + "total_deaths": 555.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 419.55, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.227, + "total_deaths_per_million": 57.451, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 3500.0, + "total_tests": 230169.0, + "total_tests_per_thousand": 23.826, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 3331.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 280.928, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 4064.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.429, + "total_deaths": 559.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 420.689, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 1.39, + "total_deaths_per_million": 57.865, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 3573.0, + "total_tests": 233742.0, + "total_tests_per_thousand": 24.196, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 3363.0, + "new_tests_smoothed_per_thousand": 0.348, + "tests_per_case": 250.43599999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 4076.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.143, + "total_deaths": 563.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 421.931, + "new_cases_per_million": 1.242, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 58.279, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.311, + "new_tests": 1635.0, + "total_tests": 235377.0, + "total_tests_per_thousand": 24.365, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 3518.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 232.321, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-16", + "total_cases": 4077.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.0, + "total_deaths": 565.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 422.034, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 58.486, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 1451.0, + "total_tests": 236828.0, + "total_tests_per_thousand": 24.515, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 3194.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 354.889, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-17", + "total_cases": 4078.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.714, + "total_deaths": 567.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 422.138, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.902, + "total_deaths_per_million": 58.694, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 5311.0, + "total_tests": 242139.0, + "total_tests_per_thousand": 25.065, + "new_tests_per_thousand": 0.55, + "new_tests_smoothed": 3493.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 400.836, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-18", + "total_cases": 4079.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.429, + "total_deaths": 568.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 422.241, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.769, + "total_deaths_per_million": 58.797, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 3459.0, + "total_tests": 245598.0, + "total_tests_per_thousand": 25.423, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 3336.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 449.077, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-19", + "total_cases": 4081.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 568.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 422.448, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 58.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 3793.0, + "total_tests": 249391.0, + "total_tests_per_thousand": 25.816, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 3246.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 541.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-20", + "total_cases": 4086.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 570.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 422.966, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.488, + "total_deaths_per_million": 59.004, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 3709.0, + "total_tests": 253100.0, + "total_tests_per_thousand": 26.2, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 3276.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 694.909, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-21", + "total_cases": 4094.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 570.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 423.794, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 59.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 3226.0, + "total_tests": 256326.0, + "total_tests_per_thousand": 26.534, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 3226.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 752.7330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-22", + "total_cases": 4102.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.714, + "total_deaths": 572.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 424.622, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 0.384, + "total_deaths_per_million": 59.211, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1789.0, + "total_tests": 258115.0, + "total_tests_per_thousand": 26.719, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 3248.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 874.462, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-23", + "total_cases": 4107.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 573.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 425.14, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 59.315, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 746.0, + "total_tests": 258861.0, + "total_tests_per_thousand": 26.796, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3148.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 734.533, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-24", + "total_cases": 4107.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 573.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 425.14, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.429, + "total_deaths_per_million": 59.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 2559.0, + "total_tests": 261420.0, + "total_tests_per_thousand": 27.061, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 2754.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 664.7589999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-25", + "total_cases": 4114.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 576.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 425.864, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 59.625, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 3709.0, + "total_tests": 265129.0, + "total_tests_per_thousand": 27.445, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 2790.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 558.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-26", + "total_cases": 4123.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.0, + "total_deaths": 577.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 426.796, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 59.729, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1927.0, + "total_tests": 267056.0, + "total_tests_per_thousand": 27.645, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 2524.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 420.667, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-27", + "total_cases": 4127.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 578.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 427.21, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 59.832, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 3207.0, + "total_tests": 270263.0, + "total_tests_per_thousand": 27.977, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 2452.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 418.634, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-28", + "total_cases": 4138.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.286, + "total_deaths": 578.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 428.349, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 0.651, + "total_deaths_per_million": 59.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 931.0, + "total_tests": 271194.0, + "total_tests_per_thousand": 28.073, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 2124.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 337.909, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-29", + "total_cases": 4142.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 581.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 428.763, + "new_cases_per_million": 0.414, + "new_cases_smoothed_per_million": 0.592, + "total_deaths_per_million": 60.143, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 2685.0, + "total_tests": 273879.0, + "total_tests_per_thousand": 28.351, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 2252.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 394.1, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-30", + "total_cases": 4145.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 585.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 429.073, + "new_cases_per_million": 0.311, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 60.557, + "new_deaths_per_million": 0.414, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 1066.0, + "total_tests": 274945.0, + "total_tests_per_thousand": 28.461, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 2298.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 423.316, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-01", + "total_cases": 4155.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.857, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 430.109, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 0.71, + "total_deaths_per_million": 60.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 2805.0, + "total_tests": 277750.0, + "total_tests_per_thousand": 28.752, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 2333.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 340.22900000000004, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-02", + "total_cases": 4157.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 586.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 430.316, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.636, + "total_deaths_per_million": 60.66, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 1940.0, + "total_tests": 279690.0, + "total_tests_per_thousand": 28.952, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 2080.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 338.605, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-03", + "total_cases": 4166.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.143, + "total_deaths": 587.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 431.247, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 0.636, + "total_deaths_per_million": 60.764, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 1938.0, + "total_tests": 281628.0, + "total_tests_per_thousand": 29.153, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 2082.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 338.93, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-04", + "total_cases": 4172.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 588.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 431.868, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 0.665, + "total_deaths_per_million": 60.867, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 1880.0, + "total_tests": 283508.0, + "total_tests_per_thousand": 29.348, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 1892.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 294.311, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-05", + "total_cases": 4183.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.429, + "total_deaths": 589.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 433.007, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 0.665, + "total_deaths_per_million": 60.971, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 2082.0, + "total_tests": 285590.0, + "total_tests_per_thousand": 29.563, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 2057.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 319.978, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-06", + "total_cases": 4183.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 589.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 433.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 60.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 493.0, + "total_tests": 286083.0, + "total_tests_per_thousand": 29.614, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1743.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 297.585, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-07", + "total_cases": 4189.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 589.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 433.628, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 0.651, + "total_deaths_per_million": 60.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 900.0, + "total_tests": 286983.0, + "total_tests_per_thousand": 29.707, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1720.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 273.63599999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-08", + "total_cases": 4205.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.143, + "total_deaths": 589.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 435.284, + "new_cases_per_million": 1.656, + "new_cases_smoothed_per_million": 0.739, + "total_deaths_per_million": 60.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 1710.0, + "total_tests": 288693.0, + "total_tests_per_thousand": 29.884, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 1563.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 218.82, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-09", + "total_cases": 4210.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 589.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 435.802, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 60.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 909.0, + "total_tests": 289602.0, + "total_tests_per_thousand": 29.978, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 187.019, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-10", + "total_cases": 4220.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.714, + "total_deaths": 591.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 436.837, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 61.178, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2435.0, + "total_tests": 292037.0, + "total_tests_per_thousand": 30.23, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 1487.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 192.75900000000001, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-11", + "total_cases": 4223.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 593.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 437.148, + "new_cases_per_million": 0.311, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 61.385, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1183.0, + "total_tests": 293220.0, + "total_tests_per_thousand": 30.353, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1387.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 190.373, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-12", + "total_cases": 4229.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.571, + "total_deaths": 595.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 437.769, + "new_cases_per_million": 0.621, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1205.0, + "total_tests": 294425.0, + "total_tests_per_thousand": 30.478, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 1262.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 192.043, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-13", + "total_cases": 4234.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.286, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 438.286, + "new_cases_per_million": 0.518, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1136.0, + "total_tests": 295561.0, + "total_tests_per_thousand": 30.595, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 1354.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 185.843, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-14", + "total_cases": 4247.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.286, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 439.632, + "new_cases_per_million": 1.346, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 797.0, + "total_tests": 296358.0, + "total_tests_per_thousand": 30.678, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1339.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 161.60299999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-15", + "total_cases": 4263.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.286, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 441.288, + "new_cases_per_million": 1.656, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 2827.0, + "total_tests": 299185.0, + "total_tests_per_thousand": 30.97, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 1499.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 180.91400000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-16", + "total_cases": 4263.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 441.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1447.0, + "total_tests": 300632.0, + "total_tests_per_thousand": 31.12, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 1576.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 208.15099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-17", + "total_cases": 4279.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.429, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 442.945, + "new_cases_per_million": 1.656, + "new_cases_smoothed_per_million": 0.872, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2117.0, + "total_tests": 302749.0, + "total_tests_per_thousand": 31.339, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 1530.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 181.525, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-18", + "total_cases": 4293.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.0, + "total_deaths": 595.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 444.394, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.035, + "total_deaths_per_million": 61.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2384.0, + "total_tests": 305133.0, + "total_tests_per_thousand": 31.586, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 1702.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 170.2, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-19", + "total_cases": 4315.0, + "new_cases": 22.0, + "new_cases_smoothed": 12.286, + "total_deaths": 596.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 446.671, + "new_cases_per_million": 2.277, + "new_cases_smoothed_per_million": 1.272, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2713.0, + "total_tests": 307846.0, + "total_tests_per_thousand": 31.867, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 1917.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 156.035, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-20", + "total_cases": 4333.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.143, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 448.534, + "new_cases_per_million": 1.863, + "new_cases_smoothed_per_million": 1.464, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2224.0, + "total_tests": 310070.0, + "total_tests_per_thousand": 32.097, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 2073.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 146.576, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-21", + "total_cases": 4347.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.286, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 449.984, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.479, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 760.0, + "total_tests": 310830.0, + "total_tests_per_thousand": 32.176, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 2067.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 144.69, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-22", + "total_cases": 4366.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.714, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 451.95, + "new_cases_per_million": 1.967, + "new_cases_smoothed_per_million": 1.523, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2158.0, + "total_tests": 312988.0, + "total_tests_per_thousand": 32.399, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 1972.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 134.019, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-23", + "total_cases": 4380.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.714, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 453.4, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.73, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3132.0, + "total_tests": 316120.0, + "total_tests_per_thousand": 32.723, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 2213.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 132.40200000000002, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-24", + "total_cases": 4398.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.0, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 455.263, + "new_cases_per_million": 1.863, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3734.0, + "total_tests": 319854.0, + "total_tests_per_thousand": 33.11, + "new_tests_per_thousand": 0.387, + "new_tests_smoothed": 2444.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 143.765, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-25", + "total_cases": 4424.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.714, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 457.954, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 1.937, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3819.0, + "total_tests": 323673.0, + "total_tests_per_thousand": 33.505, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 2649.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 141.55, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-26", + "total_cases": 4435.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.143, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 459.093, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 1.775, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2881.0, + "total_tests": 326554.0, + "total_tests_per_thousand": 33.804, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 2673.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 155.925, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-27", + "total_cases": 4448.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.429, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 460.439, + "new_cases_per_million": 1.346, + "new_cases_smoothed_per_million": 1.701, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2029.0, + "total_tests": 328583.0, + "total_tests_per_thousand": 34.014, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 2645.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 161.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-28", + "total_cases": 4456.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.571, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 461.267, + "new_cases_per_million": 0.828, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1656.0, + "total_tests": 330239.0, + "total_tests_per_thousand": 34.185, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 2773.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 178.083, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-29", + "total_cases": 4465.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.143, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 462.199, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 1.464, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3207.0, + "total_tests": 333446.0, + "total_tests_per_thousand": 34.517, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 2923.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 206.67700000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-30", + "total_cases": 4484.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.857, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 464.165, + "new_cases_per_million": 1.967, + "new_cases_smoothed_per_million": 1.538, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3015.0, + "total_tests": 336461.0, + "total_tests_per_thousand": 34.829, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 2906.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 195.59599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-31", + "total_cases": 4505.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.286, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 466.339, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2702.0, + "total_tests": 339163.0, + "total_tests_per_thousand": 35.109, + "new_tests_per_thousand": 0.28, + "new_tests_smoothed": 2758.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 180.43, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-01", + "total_cases": 4505.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.571, + "total_deaths": 596.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 466.339, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.198, + "total_deaths_per_million": 61.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3724.0, + "total_tests": 342887.0, + "total_tests_per_thousand": 35.494, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2745.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 237.222, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-02", + "total_cases": 4526.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.0, + "total_deaths": 597.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 468.513, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 1.346, + "total_deaths_per_million": 61.799, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2110.0, + "total_tests": 344997.0, + "total_tests_per_thousand": 35.713, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 2635.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 202.692, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-03", + "total_cases": 4535.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.429, + "total_deaths": 597.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 469.445, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 1.287, + "total_deaths_per_million": 61.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 1965.0, + "total_tests": 346962.0, + "total_tests_per_thousand": 35.916, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 2626.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 211.287, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-04", + "total_cases": 4544.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.571, + "total_deaths": 597.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 470.376, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 61.799, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 1170.0, + "total_tests": 348132.0, + "total_tests_per_thousand": 36.037, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 2556.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 203.31799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-05", + "total_cases": 4553.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.571, + "total_deaths": 598.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 471.308, + "new_cases_per_million": 0.932, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 61.903, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1976.0, + "total_tests": 350108.0, + "total_tests_per_thousand": 36.242, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 2380.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 189.31799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-06", + "total_cases": 4564.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.429, + "total_deaths": 599.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 472.447, + "new_cases_per_million": 1.139, + "new_cases_smoothed_per_million": 1.183, + "total_deaths_per_million": 62.006, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 2438.0, + "total_tests": 352546.0, + "total_tests_per_thousand": 36.494, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 2298.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 201.075, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-07", + "total_cases": 4597.0, + "new_cases": 33.0, + "new_cases_smoothed": 13.143, + "total_deaths": 600.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 475.863, + "new_cases_per_million": 3.416, + "new_cases_smoothed_per_million": 1.36, + "total_deaths_per_million": 62.11, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2921.0, + "total_tests": 355467.0, + "total_tests_per_thousand": 36.796, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 2329.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 177.207, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-08", + "total_cases": 4621.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.571, + "total_deaths": 602.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 478.347, + "new_cases_per_million": 2.484, + "new_cases_smoothed_per_million": 1.715, + "total_deaths_per_million": 62.317, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 2970.0, + "total_tests": 358437.0, + "total_tests_per_thousand": 37.104, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 2221.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 134.026, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-09", + "total_cases": 4653.0, + "new_cases": 32.0, + "new_cases_smoothed": 18.143, + "total_deaths": 602.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 481.66, + "new_cases_per_million": 3.313, + "new_cases_smoothed_per_million": 1.878, + "total_deaths_per_million": 62.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 2335.0, + "total_tests": 360772.0, + "total_tests_per_thousand": 37.346, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 2254.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 124.236, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-10", + "total_cases": 4696.0, + "new_cases": 43.0, + "new_cases_smoothed": 23.0, + "total_deaths": 602.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 486.111, + "new_cases_per_million": 4.451, + "new_cases_smoothed_per_million": 2.381, + "total_deaths_per_million": 62.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1888.0, + "total_tests": 362660.0, + "total_tests_per_thousand": 37.541, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 2243.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 97.522, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-11", + "total_cases": 4731.0, + "new_cases": 35.0, + "new_cases_smoothed": 26.714, + "total_deaths": 605.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 489.734, + "new_cases_per_million": 3.623, + "new_cases_smoothed_per_million": 2.765, + "total_deaths_per_million": 62.627, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 799.0, + "total_tests": 363459.0, + "total_tests_per_thousand": 37.624, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 2190.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 81.979, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-12", + "total_cases": 4746.0, + "new_cases": 15.0, + "new_cases_smoothed": 27.571, + "total_deaths": 605.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 491.287, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 2.854, + "total_deaths_per_million": 62.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 2897.0, + "total_tests": 366356.0, + "total_tests_per_thousand": 37.924, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 2321.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 84.181, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-13", + "total_cases": 4768.0, + "new_cases": 22.0, + "new_cases_smoothed": 29.143, + "total_deaths": 605.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 493.564, + "new_cases_per_million": 2.277, + "new_cases_smoothed_per_million": 3.017, + "total_deaths_per_million": 62.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 3189.0, + "total_tests": 369545.0, + "total_tests_per_thousand": 38.254, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 2428.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 83.314, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-14", + "total_cases": 4813.0, + "new_cases": 45.0, + "new_cases_smoothed": 30.857, + "total_deaths": 607.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 498.222, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 3.194, + "total_deaths_per_million": 62.834, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 3142.0, + "total_tests": 372687.0, + "total_tests_per_thousand": 38.579, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 2460.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 79.722, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-15", + "total_cases": 4853.0, + "new_cases": 40.0, + "new_cases_smoothed": 33.143, + "total_deaths": 607.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 502.363, + "new_cases_per_million": 4.141, + "new_cases_smoothed_per_million": 3.431, + "total_deaths_per_million": 62.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 2998.0, + "total_tests": 375685.0, + "total_tests_per_thousand": 38.889, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 2464.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 74.345, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-16", + "total_cases": 4877.0, + "new_cases": 24.0, + "new_cases_smoothed": 32.0, + "total_deaths": 607.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 504.847, + "new_cases_per_million": 2.484, + "new_cases_smoothed_per_million": 3.313, + "total_deaths_per_million": 62.834, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 2923.0, + "total_tests": 378608.0, + "total_tests_per_thousand": 39.192, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 2548.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 79.625, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-17", + "total_cases": 4916.0, + "new_cases": 39.0, + "new_cases_smoothed": 31.429, + "total_deaths": 608.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 508.884, + "new_cases_per_million": 4.037, + "new_cases_smoothed_per_million": 3.253, + "total_deaths_per_million": 62.938, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 2324.0, + "total_tests": 380932.0, + "total_tests_per_thousand": 39.433, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 2610.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 83.045, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-18", + "total_cases": 4970.0, + "new_cases": 54.0, + "new_cases_smoothed": 34.143, + "total_deaths": 609.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 514.474, + "new_cases_per_million": 5.59, + "new_cases_smoothed_per_million": 3.534, + "total_deaths_per_million": 63.041, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2479.0, + "total_tests": 383411.0, + "total_tests_per_thousand": 39.689, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 2850.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 83.473, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-19", + "total_cases": 4970.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 514.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.313, + "total_deaths_per_million": 63.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 3700.0, + "total_tests": 387111.0, + "total_tests_per_thousand": 40.072, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 2965.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 92.656, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-20", + "total_cases": 5002.0, + "new_cases": 32.0, + "new_cases_smoothed": 33.429, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 517.787, + "new_cases_per_million": 3.313, + "new_cases_smoothed_per_million": 3.46, + "total_deaths_per_million": 63.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2968.0, + "total_tests": 390079.0, + "total_tests_per_thousand": 40.379, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 2933.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 87.73899999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-21", + "total_cases": 5046.0, + "new_cases": 44.0, + "new_cases_smoothed": 33.286, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 522.341, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 3.446, + "total_deaths_per_million": 63.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3352.0, + "total_tests": 393431.0, + "total_tests_per_thousand": 40.726, + "new_tests_per_thousand": 0.347, + "new_tests_smoothed": 2963.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 89.01700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-22", + "total_cases": 5098.0, + "new_cases": 52.0, + "new_cases_smoothed": 35.0, + "total_deaths": 611.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 527.724, + "new_cases_per_million": 5.383, + "new_cases_smoothed_per_million": 3.623, + "total_deaths_per_million": 63.248, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 1480.0, + "total_tests": 394911.0, + "total_tests_per_thousand": 40.88, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 2747.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 78.486, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-23", + "total_cases": 5133.0, + "new_cases": 35.0, + "new_cases_smoothed": 36.571, + "total_deaths": 611.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 531.347, + "new_cases_per_million": 3.623, + "new_cases_smoothed_per_million": 3.786, + "total_deaths_per_million": 63.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2181.0, + "total_tests": 397092.0, + "total_tests_per_thousand": 41.105, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 2641.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 72.215, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-24", + "total_cases": 5155.0, + "new_cases": 22.0, + "new_cases_smoothed": 34.143, + "total_deaths": 613.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 533.625, + "new_cases_per_million": 2.277, + "new_cases_smoothed_per_million": 3.534, + "total_deaths_per_million": 63.455, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1458.0, + "total_tests": 398550.0, + "total_tests_per_thousand": 41.256, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 2517.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 73.72, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-25", + "total_cases": 5191.0, + "new_cases": 36.0, + "new_cases_smoothed": 31.571, + "total_deaths": 613.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 537.351, + "new_cases_per_million": 3.727, + "new_cases_smoothed_per_million": 3.268, + "total_deaths_per_million": 63.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 1892.0, + "total_tests": 400442.0, + "total_tests_per_thousand": 41.452, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 2433.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 77.063, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-26", + "total_cases": 5215.0, + "new_cases": 24.0, + "new_cases_smoothed": 35.0, + "total_deaths": 614.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 539.836, + "new_cases_per_million": 2.484, + "new_cases_smoothed_per_million": 3.623, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 4625.0, + "total_tests": 405067.0, + "total_tests_per_thousand": 41.931, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 2565.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 73.286, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-27", + "total_cases": 5288.0, + "new_cases": 73.0, + "new_cases_smoothed": 40.857, + "total_deaths": 614.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 547.392, + "new_cases_per_million": 7.557, + "new_cases_smoothed_per_million": 4.229, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 3732.0, + "total_tests": 408799.0, + "total_tests_per_thousand": 42.317, + "new_tests_per_thousand": 0.386, + "new_tests_smoothed": 2674.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 65.44800000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-28", + "total_cases": 5379.0, + "new_cases": 91.0, + "new_cases_smoothed": 47.571, + "total_deaths": 614.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 556.812, + "new_cases_per_million": 9.42, + "new_cases_smoothed_per_million": 4.924, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 7846.0, + "total_tests": 416645.0, + "total_tests_per_thousand": 43.129, + "new_tests_per_thousand": 0.812, + "new_tests_smoothed": 3316.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 69.706, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-29", + "total_cases": 5511.0, + "new_cases": 132.0, + "new_cases_smoothed": 59.0, + "total_deaths": 614.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 570.476, + "new_cases_per_million": 13.664, + "new_cases_smoothed_per_million": 6.107, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1245.0, + "total_tests": 417890.0, + "total_tests_per_thousand": 43.258, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 3283.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 55.644, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-30", + "total_cases": 5669.0, + "new_cases": 158.0, + "new_cases_smoothed": 76.571, + "total_deaths": 614.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 586.832, + "new_cases_per_million": 16.356, + "new_cases_smoothed_per_million": 7.926, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 6380.0, + "total_tests": 424270.0, + "total_tests_per_thousand": 43.919, + "new_tests_per_thousand": 0.66, + "new_tests_smoothed": 3883.0, + "new_tests_smoothed_per_thousand": 0.402, + "tests_per_case": 50.711000000000006, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-08-31", + "total_cases": 5961.0, + "new_cases": 292.0, + "new_cases_smoothed": 115.143, + "total_deaths": 614.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 617.058, + "new_cases_per_million": 30.227, + "new_cases_smoothed_per_million": 11.919, + "total_deaths_per_million": 63.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3880.0, + "total_tests": 428150.0, + "total_tests_per_thousand": 44.32, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 4229.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 36.728, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 49.07 + }, + { + "date": "2020-09-01", + "total_cases": 6139.0, + "new_cases": 178.0, + "new_cases_smoothed": 135.429, + "total_deaths": 615.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 635.484, + "new_cases_per_million": 18.426, + "new_cases_smoothed_per_million": 14.019, + "total_deaths_per_million": 63.662, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1792.0, + "total_tests": 429942.0, + "total_tests_per_thousand": 44.506, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 4214.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 31.116, + "positive_rate": 0.032, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 6257.0, + "new_cases": 118.0, + "new_cases_smoothed": 148.857, + "total_deaths": 616.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 647.699, + "new_cases_per_million": 12.215, + "new_cases_smoothed_per_million": 15.409, + "total_deaths_per_million": 63.766, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 7589.0, + "total_tests": 437531.0, + "total_tests_per_thousand": 45.291, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 4638.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 31.156999999999996, + "positive_rate": 0.032, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 6622.0, + "new_cases": 365.0, + "new_cases_smoothed": 190.571, + "total_deaths": 619.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 685.482, + "new_cases_per_million": 37.783, + "new_cases_smoothed_per_million": 19.727, + "total_deaths_per_million": 64.076, + "new_deaths_per_million": 0.311, + "new_deaths_smoothed_per_million": 0.074 + }, + { + "date": "2020-09-04", + "total_cases": 6923.0, + "new_cases": 301.0, + "new_cases_smoothed": 220.571, + "total_deaths": 620.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 716.641, + "new_cases_per_million": 31.158, + "new_cases_smoothed_per_million": 22.833, + "total_deaths_per_million": 64.18, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.089 + }, + { + "date": "2020-09-05", + "total_cases": 7382.0, + "new_cases": 459.0, + "new_cases_smoothed": 267.286, + "total_deaths": 621.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 764.155, + "new_cases_per_million": 47.514, + "new_cases_smoothed_per_million": 27.668, + "total_deaths_per_million": 64.283, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.104 + } + ] + }, + "ISL": { + "continent": "Europe", + "location": "Iceland", + "population": 341250.0, + "population_density": 3.404, + "median_age": 37.3, + "aged_65_older": 14.431, + "aged_70_older": 9.207, + "gdp_per_capita": 46482.958, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 117.992, + "diabetes_prevalence": 5.31, + "female_smokers": 14.3, + "male_smokers": 15.2, + "hospital_beds_per_thousand": 2.91, + "life_expectancy": 82.99, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 23.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.067, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 36.0, + "total_tests_per_thousand": 0.105, + "new_tests_per_thousand": 0.038, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.93, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 68.0, + "total_tests_per_thousand": 0.199, + "new_tests_per_thousand": 0.094, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 90.0, + "total_tests_per_thousand": 0.264, + "new_tests_per_thousand": 0.064, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.791, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 48.0, + "total_tests": 138.0, + "total_tests_per_thousand": 0.404, + "new_tests_per_thousand": 0.141, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-03", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.582, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 2.512, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 183.0, + "total_tests_per_thousand": 0.536, + "new_tests_per_thousand": 0.132, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-04", + "total_cases": 16.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.886, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 6.698, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 81.0, + "total_tests": 264.0, + "total_tests_per_thousand": 0.774, + "new_tests_per_thousand": 0.237, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-05", + "total_cases": 26.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.19, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 10.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 62.0, + "total_tests": 326.0, + "total_tests_per_thousand": 0.955, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 11.577, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-06", + "total_cases": 35.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 102.564, + "new_cases_per_million": 26.374, + "new_cases_smoothed_per_million": 14.652, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 57.0, + "total_tests": 383.0, + "total_tests_per_thousand": 1.122, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 10.0, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-07", + "total_cases": 43.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.007, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 17.582, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 58.0, + "total_tests": 441.0, + "total_tests_per_thousand": 1.292, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 8.833, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-08", + "total_cases": 53.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 155.311, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 21.769, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 478.0, + "total_tests_per_thousand": 1.401, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 7.404, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-09", + "total_cases": 55.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.172, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 21.769, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 98.0, + "total_tests": 576.0, + "total_tests_per_thousand": 1.688, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 8.481, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-10", + "total_cases": 65.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.476, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 24.699, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 169.0, + "total_tests": 745.0, + "total_tests_per_thousand": 2.183, + "new_tests_per_thousand": 0.495, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 9.492, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-11", + "total_cases": 70.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.128, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 22.606, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 149.0, + "total_tests": 894.0, + "total_tests_per_thousand": 2.62, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 90.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 11.667, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-12", + "total_cases": 85.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.084, + "new_cases_per_million": 43.956, + "new_cases_smoothed_per_million": 24.699, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 253.0, + "total_tests": 1147.0, + "total_tests_per_thousand": 3.361, + "new_tests_per_thousand": 0.741, + "new_tests_smoothed": 117.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 13.880999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-13", + "total_cases": 117.0, + "new_cases": 32.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 342.857, + "new_cases_per_million": 93.773, + "new_cases_smoothed_per_million": 34.328, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 357.0, + "total_tests": 1504.0, + "total_tests_per_thousand": 4.407, + "new_tests_per_thousand": 1.046, + "new_tests_smoothed": 160.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 13.659, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-14", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 342.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.979, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 323.0, + "total_tests": 1827.0, + "total_tests_per_thousand": 5.354, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 18.73, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-15", + "total_cases": 138.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 404.396, + "new_cases_per_million": 61.538, + "new_cases_smoothed_per_million": 35.583, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1075.0, + "total_tests": 2902.0, + "total_tests_per_thousand": 8.504, + "new_tests_per_thousand": 3.15, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 1.014, + "tests_per_case": 28.494, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-16", + "total_cases": 178.0, + "new_cases": 40.0, + "new_cases_smoothed": 17.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.612, + "new_cases_per_million": 117.216, + "new_cases_smoothed_per_million": 51.491, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1707.0, + "total_tests": 4609.0, + "total_tests_per_thousand": 13.506, + "new_tests_per_thousand": 5.002, + "new_tests_smoothed": 576.0, + "new_tests_smoothed_per_thousand": 1.688, + "tests_per_case": 32.78, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 199.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 583.15, + "new_cases_per_million": 61.538, + "new_cases_smoothed_per_million": 56.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1400.0, + "total_tests": 6009.0, + "total_tests_per_thousand": 17.609, + "new_tests_per_thousand": 4.103, + "new_tests_smoothed": 752.0, + "new_tests_smoothed_per_thousand": 2.204, + "tests_per_case": 39.284, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-18", + "total_cases": 247.0, + "new_cases": 48.0, + "new_cases_smoothed": 25.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 723.81, + "new_cases_per_million": 140.659, + "new_cases_smoothed_per_million": 74.097, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1828.0, + "total_tests": 7837.0, + "total_tests_per_thousand": 22.966, + "new_tests_per_thousand": 5.357, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 2.907, + "tests_per_case": 39.232, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-19", + "total_cases": 250.0, + "new_cases": 3.0, + "new_cases_smoothed": 23.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 732.601, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 69.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1311.0, + "total_tests": 9148.0, + "total_tests_per_thousand": 26.807, + "new_tests_per_thousand": 3.842, + "new_tests_smoothed": 1143.0, + "new_tests_smoothed_per_thousand": 3.349, + "tests_per_case": 48.49100000000001, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-20", + "total_cases": 330.0, + "new_cases": 80.0, + "new_cases_smoothed": 30.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 967.033, + "new_cases_per_million": 234.432, + "new_cases_smoothed_per_million": 89.168, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 579.0, + "total_tests": 9727.0, + "total_tests_per_thousand": 28.504, + "new_tests_per_thousand": 1.697, + "new_tests_smoothed": 1175.0, + "new_tests_smoothed_per_thousand": 3.443, + "tests_per_case": 38.615, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-21", + "total_cases": 409.0, + "new_cases": 79.0, + "new_cases_smoothed": 41.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1198.535, + "new_cases_per_million": 231.502, + "new_cases_smoothed_per_million": 122.24, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 350.0, + "total_tests": 10077.0, + "total_tests_per_thousand": 29.53, + "new_tests_per_thousand": 1.026, + "new_tests_smoothed": 1179.0, + "new_tests_smoothed_per_thousand": 3.455, + "tests_per_case": 28.264, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-22", + "total_cases": 473.0, + "new_cases": 64.0, + "new_cases_smoothed": 47.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1386.081, + "new_cases_per_million": 187.546, + "new_cases_smoothed_per_million": 140.241, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 183.0, + "total_tests": 10260.0, + "total_tests_per_thousand": 30.066, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 1051.0, + "new_tests_smoothed_per_thousand": 3.08, + "tests_per_case": 21.961, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-23", + "total_cases": 568.0, + "new_cases": 95.0, + "new_cases_smoothed": 55.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1664.469, + "new_cases_per_million": 278.388, + "new_cases_smoothed_per_million": 163.265, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 459.0, + "total_tests": 10719.0, + "total_tests_per_thousand": 31.411, + "new_tests_per_thousand": 1.345, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 2.558, + "tests_per_case": 15.669, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-24", + "total_cases": 588.0, + "new_cases": 20.0, + "new_cases_smoothed": 55.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1723.077, + "new_cases_per_million": 58.608, + "new_cases_smoothed_per_million": 162.847, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 967.0, + "total_tests": 11686.0, + "total_tests_per_thousand": 34.245, + "new_tests_per_thousand": 2.834, + "new_tests_smoothed": 811.0, + "new_tests_smoothed_per_thousand": 2.377, + "tests_per_case": 14.594000000000001, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-25", + "total_cases": 648.0, + "new_cases": 60.0, + "new_cases_smoothed": 57.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1898.901, + "new_cases_per_million": 175.824, + "new_cases_smoothed_per_million": 167.87, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 888.0, + "total_tests": 12574.0, + "total_tests_per_thousand": 36.847, + "new_tests_per_thousand": 2.602, + "new_tests_smoothed": 677.0, + "new_tests_smoothed_per_thousand": 1.984, + "tests_per_case": 11.818, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-26", + "total_cases": 737.0, + "new_cases": 89.0, + "new_cases_smoothed": 69.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2159.707, + "new_cases_per_million": 260.806, + "new_cases_smoothed_per_million": 203.872, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 998.0, + "total_tests": 13572.0, + "total_tests_per_thousand": 39.771, + "new_tests_per_thousand": 2.925, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 1.852, + "tests_per_case": 9.084, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-27", + "total_cases": 802.0, + "new_cases": 65.0, + "new_cases_smoothed": 67.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2350.183, + "new_cases_per_million": 190.476, + "new_cases_smoothed_per_million": 197.593, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 1022.0, + "total_tests": 14594.0, + "total_tests_per_thousand": 42.766, + "new_tests_per_thousand": 2.995, + "new_tests_smoothed": 695.0, + "new_tests_smoothed_per_thousand": 2.037, + "tests_per_case": 10.307, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-28", + "total_cases": 890.0, + "new_cases": 88.0, + "new_cases_smoothed": 68.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2608.059, + "new_cases_per_million": 257.875, + "new_cases_smoothed_per_million": 201.361, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 849.0, + "total_tests": 15443.0, + "total_tests_per_thousand": 45.254, + "new_tests_per_thousand": 2.488, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 2.248, + "tests_per_case": 11.162, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-29", + "total_cases": 963.0, + "new_cases": 73.0, + "new_cases_smoothed": 70.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2821.978, + "new_cases_per_million": 213.919, + "new_cases_smoothed_per_million": 205.128, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 1000.0, + "total_tests": 16443.0, + "total_tests_per_thousand": 48.185, + "new_tests_per_thousand": 2.93, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 2.588, + "tests_per_case": 12.614, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-30", + "total_cases": 1020.0, + "new_cases": 57.0, + "new_cases_smoothed": 64.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2989.011, + "new_cases_per_million": 167.033, + "new_cases_smoothed_per_million": 189.22, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 1420.0, + "total_tests": 17863.0, + "total_tests_per_thousand": 52.346, + "new_tests_per_thousand": 4.161, + "new_tests_smoothed": 1021.0, + "new_tests_smoothed_per_thousand": 2.992, + "tests_per_case": 15.812000000000001, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-03-31", + "total_cases": 1086.0, + "new_cases": 66.0, + "new_cases_smoothed": 71.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3182.418, + "new_cases_per_million": 193.407, + "new_cases_smoothed_per_million": 208.477, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1612.0, + "total_tests": 19475.0, + "total_tests_per_thousand": 57.07, + "new_tests_per_thousand": 4.724, + "new_tests_smoothed": 1113.0, + "new_tests_smoothed_per_thousand": 3.262, + "tests_per_case": 15.645, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-01", + "total_cases": 1135.0, + "new_cases": 49.0, + "new_cases_smoothed": 69.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3326.007, + "new_cases_per_million": 143.59, + "new_cases_smoothed_per_million": 203.872, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1414.0, + "total_tests": 20889.0, + "total_tests_per_thousand": 61.213, + "new_tests_per_thousand": 4.144, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 3.481, + "tests_per_case": 17.076, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-02", + "total_cases": 1220.0, + "new_cases": 85.0, + "new_cases_smoothed": 69.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3575.092, + "new_cases_per_million": 249.084, + "new_cases_smoothed_per_million": 202.198, + "total_deaths_per_million": 5.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1265.0, + "total_tests": 22154.0, + "total_tests_per_thousand": 64.92, + "new_tests_per_thousand": 3.707, + "new_tests_smoothed": 1226.0, + "new_tests_smoothed_per_thousand": 3.593, + "tests_per_case": 17.768, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-03", + "total_cases": 1319.0, + "new_cases": 99.0, + "new_cases_smoothed": 73.857, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3865.201, + "new_cases_per_million": 290.11, + "new_cases_smoothed_per_million": 216.431, + "total_deaths_per_million": 11.722, + "new_deaths_per_million": 5.861, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1445.0, + "total_tests": 23599.0, + "total_tests_per_thousand": 69.155, + "new_tests_per_thousand": 4.234, + "new_tests_smoothed": 1286.0, + "new_tests_smoothed_per_thousand": 3.768, + "tests_per_case": 17.412, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-04", + "total_cases": 1364.0, + "new_cases": 45.0, + "new_cases_smoothed": 67.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3997.07, + "new_cases_per_million": 131.868, + "new_cases_smoothed_per_million": 198.43, + "total_deaths_per_million": 11.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1754.0, + "total_tests": 25353.0, + "total_tests_per_thousand": 74.295, + "new_tests_per_thousand": 5.14, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 4.149, + "tests_per_case": 20.910999999999998, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-05", + "total_cases": 1417.0, + "new_cases": 53.0, + "new_cases_smoothed": 64.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4152.381, + "new_cases_per_million": 155.311, + "new_cases_smoothed_per_million": 190.058, + "total_deaths_per_million": 11.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 2486.0, + "total_tests": 27839.0, + "total_tests_per_thousand": 81.579, + "new_tests_per_thousand": 7.285, + "new_tests_smoothed": 1628.0, + "new_tests_smoothed_per_thousand": 4.771, + "tests_per_case": 25.101, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-06", + "total_cases": 1486.0, + "new_cases": 69.0, + "new_cases_smoothed": 66.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4354.579, + "new_cases_per_million": 202.198, + "new_cases_smoothed_per_million": 195.081, + "total_deaths_per_million": 11.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1112.0, + "total_tests": 28951.0, + "total_tests_per_thousand": 84.838, + "new_tests_per_thousand": 3.259, + "new_tests_smoothed": 1584.0, + "new_tests_smoothed_per_thousand": 4.642, + "tests_per_case": 23.794, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-07", + "total_cases": 1562.0, + "new_cases": 76.0, + "new_cases_smoothed": 68.0, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4577.289, + "new_cases_per_million": 222.711, + "new_cases_smoothed_per_million": 199.267, + "total_deaths_per_million": 17.582, + "new_deaths_per_million": 5.861, + "new_deaths_smoothed_per_million": 1.675, + "new_tests": 1955.0, + "total_tests": 30906.0, + "total_tests_per_thousand": 90.567, + "new_tests_per_thousand": 5.729, + "new_tests_smoothed": 1633.0, + "new_tests_smoothed_per_thousand": 4.785, + "tests_per_case": 24.015, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-08", + "total_cases": 1586.0, + "new_cases": 24.0, + "new_cases_smoothed": 64.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4647.619, + "new_cases_per_million": 70.33, + "new_cases_smoothed_per_million": 188.802, + "total_deaths_per_million": 17.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.675, + "new_tests": 1676.0, + "total_tests": 32582.0, + "total_tests_per_thousand": 95.478, + "new_tests_per_thousand": 4.911, + "new_tests_smoothed": 1670.0, + "new_tests_smoothed_per_thousand": 4.894, + "tests_per_case": 25.92, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-09", + "total_cases": 1616.0, + "new_cases": 30.0, + "new_cases_smoothed": 56.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4735.531, + "new_cases_per_million": 87.912, + "new_cases_smoothed_per_million": 165.777, + "total_deaths_per_million": 17.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.675, + "new_tests": 1502.0, + "total_tests": 34084.0, + "total_tests_per_thousand": 99.88, + "new_tests_per_thousand": 4.401, + "new_tests_smoothed": 1704.0, + "new_tests_smoothed_per_thousand": 4.993, + "tests_per_case": 30.121, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-10", + "total_cases": 1648.0, + "new_cases": 32.0, + "new_cases_smoothed": 47.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4829.304, + "new_cases_per_million": 93.773, + "new_cases_smoothed_per_million": 137.729, + "total_deaths_per_million": 17.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 510.0, + "total_tests": 34594.0, + "total_tests_per_thousand": 101.374, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 1571.0, + "new_tests_smoothed_per_thousand": 4.604, + "tests_per_case": 33.426, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-11", + "total_cases": 1675.0, + "new_cases": 27.0, + "new_cases_smoothed": 44.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4908.425, + "new_cases_per_million": 79.121, + "new_cases_smoothed_per_million": 130.194, + "total_deaths_per_million": 20.513, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 1.256, + "new_tests": 618.0, + "total_tests": 35212.0, + "total_tests_per_thousand": 103.185, + "new_tests_per_thousand": 1.811, + "new_tests_smoothed": 1408.0, + "new_tests_smoothed_per_thousand": 4.126, + "tests_per_case": 31.691, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-12", + "total_cases": 1689.0, + "new_cases": 14.0, + "new_cases_smoothed": 38.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4949.451, + "new_cases_per_million": 41.026, + "new_cases_smoothed_per_million": 113.867, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 1.675, + "new_tests": 235.0, + "total_tests": 35447.0, + "total_tests_per_thousand": 103.874, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 1087.0, + "new_tests_smoothed_per_thousand": 3.185, + "tests_per_case": 27.974, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-13", + "total_cases": 1701.0, + "new_cases": 12.0, + "new_cases_smoothed": 30.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4984.615, + "new_cases_per_million": 35.165, + "new_cases_smoothed_per_million": 90.005, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.675, + "new_tests": 851.0, + "total_tests": 36298.0, + "total_tests_per_thousand": 106.368, + "new_tests_per_thousand": 2.494, + "new_tests_smoothed": 1050.0, + "new_tests_smoothed_per_thousand": 3.077, + "tests_per_case": 34.186, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-14", + "total_cases": 1711.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5013.919, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 62.376, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1047.0, + "total_tests": 37345.0, + "total_tests_per_thousand": 109.436, + "new_tests_per_thousand": 3.068, + "new_tests_smoothed": 920.0, + "new_tests_smoothed_per_thousand": 2.696, + "tests_per_case": 43.221000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-15", + "total_cases": 1720.0, + "new_cases": 9.0, + "new_cases_smoothed": 19.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5040.293, + "new_cases_per_million": 26.374, + "new_cases_smoothed_per_million": 56.096, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 818.0, + "total_tests": 38163.0, + "total_tests_per_thousand": 111.833, + "new_tests_per_thousand": 2.397, + "new_tests_smoothed": 797.0, + "new_tests_smoothed_per_thousand": 2.336, + "tests_per_case": 41.63399999999999, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-16", + "total_cases": 1727.0, + "new_cases": 7.0, + "new_cases_smoothed": 15.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5060.806, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 46.468, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1332.0, + "total_tests": 39495.0, + "total_tests_per_thousand": 115.736, + "new_tests_per_thousand": 3.903, + "new_tests_smoothed": 773.0, + "new_tests_smoothed_per_thousand": 2.265, + "tests_per_case": 48.748000000000005, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-17", + "total_cases": 1739.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5095.971, + "new_cases_per_million": 35.165, + "new_cases_smoothed_per_million": 38.095, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 1555.0, + "total_tests": 41050.0, + "total_tests_per_thousand": 120.293, + "new_tests_per_thousand": 4.557, + "new_tests_smoothed": 922.0, + "new_tests_smoothed_per_thousand": 2.702, + "tests_per_case": 70.923, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-18", + "total_cases": 1754.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5139.927, + "new_cases_per_million": 43.956, + "new_cases_smoothed_per_million": 33.072, + "total_deaths_per_million": 23.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 1671.0, + "total_tests": 42721.0, + "total_tests_per_thousand": 125.19, + "new_tests_per_thousand": 4.897, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 3.144, + "tests_per_case": 95.07600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-19", + "total_cases": 1760.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5157.509, + "new_cases_per_million": 17.582, + "new_cases_smoothed_per_million": 29.723, + "total_deaths_per_million": 26.374, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 381.0, + "total_tests": 43102.0, + "total_tests_per_thousand": 126.306, + "new_tests_per_thousand": 1.116, + "new_tests_smoothed": 1094.0, + "new_tests_smoothed_per_thousand": 3.206, + "tests_per_case": 107.859, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-20", + "total_cases": 1771.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5189.744, + "new_cases_per_million": 32.234, + "new_cases_smoothed_per_million": 29.304, + "total_deaths_per_million": 26.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 688.0, + "total_tests": 43790.0, + "total_tests_per_thousand": 128.322, + "new_tests_per_thousand": 2.016, + "new_tests_smoothed": 1070.0, + "new_tests_smoothed_per_thousand": 3.136, + "tests_per_case": 107.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-21", + "total_cases": 1773.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5195.604, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 25.955, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 2.93, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 637.0, + "total_tests": 44427.0, + "total_tests_per_thousand": 130.189, + "new_tests_per_thousand": 1.867, + "new_tests_smoothed": 1012.0, + "new_tests_smoothed_per_thousand": 2.966, + "tests_per_case": 114.258, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-22", + "total_cases": 1778.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5210.256, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 24.28, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 625.0, + "total_tests": 45052.0, + "total_tests_per_thousand": 132.021, + "new_tests_per_thousand": 1.832, + "new_tests_smoothed": 984.0, + "new_tests_smoothed_per_thousand": 2.884, + "tests_per_case": 118.759, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-23", + "total_cases": 1785.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5230.769, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 24.28, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 193.0, + "total_tests": 45245.0, + "total_tests_per_thousand": 132.586, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 821.0, + "new_tests_smoothed_per_thousand": 2.406, + "tests_per_case": 99.086, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-24", + "total_cases": 1789.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5242.491, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 20.931, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 685.0, + "total_tests": 45930.0, + "total_tests_per_thousand": 134.593, + "new_tests_per_thousand": 2.007, + "new_tests_smoothed": 697.0, + "new_tests_smoothed_per_thousand": 2.042, + "tests_per_case": 97.58, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-25", + "total_cases": 1789.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5242.491, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.652, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 381.0, + "total_tests": 46311.0, + "total_tests_per_thousand": 135.71, + "new_tests_per_thousand": 1.116, + "new_tests_smoothed": 513.0, + "new_tests_smoothed_per_thousand": 1.503, + "tests_per_case": 102.6, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-26", + "total_cases": 1790.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5245.421, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 12.559, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 25.0, + "total_tests": 46336.0, + "total_tests_per_thousand": 135.783, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 1.354, + "tests_per_case": 107.8, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-27", + "total_cases": 1792.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5251.282, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 8.791, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 688.0, + "total_tests": 47024.0, + "total_tests_per_thousand": 137.799, + "new_tests_per_thousand": 2.016, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 1.354, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-28", + "total_cases": 1792.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5251.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.954, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 508.0, + "total_tests": 47532.0, + "total_tests_per_thousand": 139.288, + "new_tests_per_thousand": 1.489, + "new_tests_smoothed": 444.0, + "new_tests_smoothed_per_thousand": 1.301, + "tests_per_case": 163.579, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-29", + "total_cases": 1795.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5260.073, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 7.117, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 840.0, + "total_tests": 48372.0, + "total_tests_per_thousand": 141.749, + "new_tests_per_thousand": 2.462, + "new_tests_smoothed": 474.0, + "new_tests_smoothed_per_thousand": 1.389, + "tests_per_case": 195.176, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-30", + "total_cases": 1797.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5265.934, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 5.024, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 722.0, + "total_tests": 49094.0, + "total_tests_per_thousand": 143.865, + "new_tests_per_thousand": 2.116, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 1.612, + "tests_per_case": 320.83299999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-01", + "total_cases": 1797.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5265.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 867.0, + "total_tests": 49961.0, + "total_tests_per_thousand": 146.406, + "new_tests_per_thousand": 2.541, + "new_tests_smoothed": 576.0, + "new_tests_smoothed_per_thousand": 1.688, + "tests_per_case": 504.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-02", + "total_cases": 1798.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5268.864, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 404.0, + "total_tests": 50365.0, + "total_tests_per_thousand": 147.59, + "new_tests_per_thousand": 1.184, + "new_tests_smoothed": 579.0, + "new_tests_smoothed_per_thousand": 1.697, + "tests_per_case": 450.333, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-03", + "total_cases": 1798.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5268.864, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 50436.0, + "total_tests_per_thousand": 147.798, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 586.0, + "new_tests_smoothed_per_thousand": 1.717, + "tests_per_case": 512.75, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-04", + "total_cases": 1799.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5271.795, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 868.0, + "total_tests": 51304.0, + "total_tests_per_thousand": 150.341, + "new_tests_per_thousand": 2.544, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 1.79, + "tests_per_case": 611.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-05", + "total_cases": 1799.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5271.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 318.0, + "total_tests": 51622.0, + "total_tests_per_thousand": 151.273, + "new_tests_per_thousand": 0.932, + "new_tests_smoothed": 584.0, + "new_tests_smoothed_per_thousand": 1.711, + "tests_per_case": 584.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-06", + "total_cases": 1799.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5271.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 620.0, + "total_tests": 52242.0, + "total_tests_per_thousand": 153.09, + "new_tests_per_thousand": 1.817, + "new_tests_smoothed": 553.0, + "new_tests_smoothed_per_thousand": 1.621, + "tests_per_case": 967.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-07", + "total_cases": 1799.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5271.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 462.0, + "total_tests": 52704.0, + "total_tests_per_thousand": 154.444, + "new_tests_per_thousand": 1.354, + "new_tests_smoothed": 516.0, + "new_tests_smoothed_per_thousand": 1.512, + "tests_per_case": 1806.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-08", + "total_cases": 1801.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 515.0, + "total_tests": 53219.0, + "total_tests_per_thousand": 155.953, + "new_tests_per_thousand": 1.509, + "new_tests_smoothed": 465.0, + "new_tests_smoothed_per_thousand": 1.363, + "tests_per_case": 813.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-09", + "total_cases": 1801.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 935.0, + "total_tests": 54154.0, + "total_tests_per_thousand": 158.693, + "new_tests_per_thousand": 2.74, + "new_tests_smoothed": 541.0, + "new_tests_smoothed_per_thousand": 1.585, + "tests_per_case": 1262.333, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-10", + "total_cases": 1801.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 54172.0, + "total_tests_per_thousand": 158.746, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 534.0, + "new_tests_smoothed_per_thousand": 1.565, + "tests_per_case": 1246.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-11", + "total_cases": 1801.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 578.0, + "total_tests": 54750.0, + "total_tests_per_thousand": 160.44, + "new_tests_per_thousand": 1.694, + "new_tests_smoothed": 492.0, + "new_tests_smoothed_per_thousand": 1.442, + "tests_per_case": 1722.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-12", + "total_cases": 1801.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 284.0, + "total_tests": 55034.0, + "total_tests_per_thousand": 161.272, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 487.0, + "new_tests_smoothed_per_thousand": 1.427, + "tests_per_case": 1704.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-13", + "total_cases": 1801.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5277.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 551.0, + "total_tests": 55585.0, + "total_tests_per_thousand": 162.886, + "new_tests_per_thousand": 1.615, + "new_tests_smoothed": 478.0, + "new_tests_smoothed_per_thousand": 1.401, + "tests_per_case": 1673.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-14", + "total_cases": 1802.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 593.0, + "total_tests": 56178.0, + "total_tests_per_thousand": 164.624, + "new_tests_per_thousand": 1.738, + "new_tests_smoothed": 496.0, + "new_tests_smoothed_per_thousand": 1.453, + "tests_per_case": 1157.333, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-15", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 523.0, + "total_tests": 56701.0, + "total_tests_per_thousand": 166.157, + "new_tests_per_thousand": 1.533, + "new_tests_smoothed": 497.0, + "new_tests_smoothed_per_thousand": 1.456, + "tests_per_case": 3479.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-16", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 133.0, + "total_tests": 56834.0, + "total_tests_per_thousand": 166.547, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 383.0, + "new_tests_smoothed_per_thousand": 1.122, + "tests_per_case": 2681.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-17", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 56841.0, + "total_tests_per_thousand": 166.567, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 381.0, + "new_tests_smoothed_per_thousand": 1.116, + "tests_per_case": 2667.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-18", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 305.0, + "total_tests": 57146.0, + "total_tests_per_thousand": 167.461, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 342.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 2394.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-19", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 441.0, + "total_tests": 57587.0, + "total_tests_per_thousand": 168.753, + "new_tests_per_thousand": 1.292, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 1.07, + "tests_per_case": 2555.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-20", + "total_cases": 1802.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5280.586, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 597.0, + "total_tests": 58184.0, + "total_tests_per_thousand": 170.503, + "new_tests_per_thousand": 1.749, + "new_tests_smoothed": 371.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 2597.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-21", + "total_cases": 1803.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.516, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 58254.0, + "total_tests_per_thousand": 170.708, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 297.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 2079.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-22", + "total_cases": 1803.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 491.0, + "total_tests": 58745.0, + "total_tests_per_thousand": 172.147, + "new_tests_per_thousand": 1.439, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.856, + "tests_per_case": 2044.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-23", + "total_cases": 1803.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5283.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 58.0, + "total_tests": 58803.0, + "total_tests_per_thousand": 172.316, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 281.0, + "new_tests_smoothed_per_thousand": 0.823, + "tests_per_case": 1967.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-24", + "total_cases": 1804.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5286.447, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 58815.0, + "total_tests_per_thousand": 172.352, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 282.0, + "new_tests_smoothed_per_thousand": 0.826, + "tests_per_case": 987.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-05-25", + "total_cases": 1804.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5286.447, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 231.0, + "total_tests": 59046.0, + "total_tests_per_thousand": 173.029, + "new_tests_per_thousand": 0.677, + "new_tests_smoothed": 271.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 948.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-26", + "total_cases": 1804.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5286.447, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 526.0, + "total_tests": 59572.0, + "total_tests_per_thousand": 174.57, + "new_tests_per_thousand": 1.541, + "new_tests_smoothed": 284.0, + "new_tests_smoothed_per_thousand": 0.832, + "tests_per_case": 994.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-27", + "total_cases": 1804.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5286.447, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 528.0, + "total_tests": 60100.0, + "total_tests_per_thousand": 176.117, + "new_tests_per_thousand": 1.547, + "new_tests_smoothed": 274.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 959.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-28", + "total_cases": 1805.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5289.377, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 350.0, + "total_tests": 60450.0, + "total_tests_per_thousand": 177.143, + "new_tests_per_thousand": 1.026, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 1099.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-29", + "total_cases": 1805.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5289.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 534.0, + "total_tests": 60984.0, + "total_tests_per_thousand": 178.708, + "new_tests_per_thousand": 1.565, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 1120.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-30", + "total_cases": 1805.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5289.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 97.0, + "total_tests": 61081.0, + "total_tests_per_thousand": 178.992, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 325.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 1137.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-31", + "total_cases": 1806.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 61097.0, + "total_tests_per_thousand": 179.039, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 326.0, + "new_tests_smoothed_per_thousand": 0.955, + "tests_per_case": 1141.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-01", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 61115.0, + "total_tests_per_thousand": 179.092, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 296.0, + "new_tests_smoothed_per_thousand": 0.867, + "tests_per_case": 1036.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-02", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 199.0, + "total_tests": 61314.0, + "total_tests_per_thousand": 179.675, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 871.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-03", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 325.0, + "total_tests": 61639.0, + "total_tests_per_thousand": 180.627, + "new_tests_per_thousand": 0.952, + "new_tests_smoothed": 220.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 770.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-04", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 550.0, + "total_tests": 62189.0, + "total_tests_per_thousand": 182.239, + "new_tests_per_thousand": 1.612, + "new_tests_smoothed": 248.0, + "new_tests_smoothed_per_thousand": 0.727, + "tests_per_case": 1736.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-05", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 538.0, + "total_tests": 62727.0, + "total_tests_per_thousand": 183.815, + "new_tests_per_thousand": 1.577, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 1743.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-06", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 62754.0, + "total_tests_per_thousand": 183.895, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 239.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 1673.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-07", + "total_cases": 1806.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5292.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 62761.0, + "total_tests_per_thousand": 183.915, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 238.0, + "new_tests_smoothed_per_thousand": 0.697, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-08", + "total_cases": 1807.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5295.238, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 62829.0, + "total_tests_per_thousand": 184.114, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 245.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 1715.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-09", + "total_cases": 1807.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5295.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 62870.0, + "total_tests_per_thousand": 184.234, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 222.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 1554.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-10", + "total_cases": 1807.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5295.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 65.0, + "total_tests": 62935.0, + "total_tests_per_thousand": 184.425, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 185.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 1295.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-11", + "total_cases": 1807.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5295.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 69.0, + "total_tests": 63004.0, + "total_tests_per_thousand": 184.627, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 116.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 812.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-12", + "total_cases": 1807.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5295.238, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 63083.0, + "total_tests_per_thousand": 184.859, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 357.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-13", + "total_cases": 1808.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5298.168, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 60.0, + "total_tests": 63143.0, + "total_tests_per_thousand": 185.034, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 56.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 196.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-14", + "total_cases": 1810.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5304.029, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 63157.0, + "total_tests_per_thousand": 185.075, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 99.75, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-06-15", + "total_cases": 1810.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5304.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 63184.0, + "total_tests_per_thousand": 185.155, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 119.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-16", + "total_cases": 1811.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5306.96, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 176.0, + "total_tests": 63360.0, + "total_tests_per_thousand": 185.67, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 70.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 122.5, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-17", + "total_cases": 1812.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5309.89, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 63428.0, + "total_tests_per_thousand": 185.87, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 70.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-18", + "total_cases": 1812.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5309.89, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 63467.0, + "total_tests_per_thousand": 185.984, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 66.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 92.4, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-19", + "total_cases": 1814.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5315.751, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 109.0, + "total_tests": 63576.0, + "total_tests_per_thousand": 186.303, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 70.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 70.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-20", + "total_cases": 1815.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5318.681, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 64.0, + "total_tests": 63640.0, + "total_tests_per_thousand": 186.491, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 71.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-21", + "total_cases": 1815.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5318.681, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 63657.0, + "total_tests_per_thousand": 186.541, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 99.4, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-22", + "total_cases": 1815.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5318.681, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 63701.0, + "total_tests_per_thousand": 186.67, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 74.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 103.6, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-23", + "total_cases": 1815.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5318.681, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 86.0, + "total_tests": 63787.0, + "total_tests_per_thousand": 186.922, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 106.75, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-24", + "total_cases": 1815.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5318.681, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47.0, + "total_tests": 63834.0, + "total_tests_per_thousand": 187.059, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 135.333, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 1817.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5324.542, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 136.0, + "total_tests": 63970.0, + "total_tests_per_thousand": 187.458, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 100.8, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 1818.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5327.473, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 251.0, + "total_tests": 64221.0, + "total_tests_per_thousand": 188.193, + "new_tests_per_thousand": 0.736, + "new_tests_smoothed": 92.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 161.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 1820.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5333.333, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 64392.0, + "total_tests_per_thousand": 188.695, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 107.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 149.8, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 1820.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5333.333, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 250.0, + "total_tests": 64642.0, + "total_tests_per_thousand": 189.427, + "new_tests_per_thousand": 0.733, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 197.4, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 1821.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5336.264, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.512, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 464.0, + "total_tests": 65106.0, + "total_tests_per_thousand": 190.787, + "new_tests_per_thousand": 1.36, + "new_tests_smoothed": 201.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 234.5, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 1822.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5339.194, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 728.0, + "total_tests": 65834.0, + "total_tests_per_thousand": 192.92, + "new_tests_per_thousand": 2.133, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.856, + "tests_per_case": 292.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 1824.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5345.055, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 270.0, + "total_tests": 66104.0, + "total_tests_per_thousand": 193.711, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 324.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-02", + "total_cases": 1825.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5347.985, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 161.0, + "total_tests": 66265.0, + "total_tests_per_thousand": 194.183, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.961, + "tests_per_case": 287.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-03", + "total_cases": 1830.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5362.637, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 5.024, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 397.0, + "total_tests": 66662.0, + "total_tests_per_thousand": 195.347, + "new_tests_per_thousand": 1.163, + "new_tests_smoothed": 349.0, + "new_tests_smoothed_per_thousand": 1.023, + "tests_per_case": 203.583, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-04", + "total_cases": 1830.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5362.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.186, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 66814.0, + "total_tests_per_thousand": 195.792, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 1.014, + "tests_per_case": 242.2, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-05", + "total_cases": 1830.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5362.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.186, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 66837.0, + "total_tests_per_thousand": 195.859, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 219.8, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-06", + "total_cases": 1830.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5362.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 185.0, + "total_tests": 67022.0, + "total_tests_per_thousand": 196.401, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 274.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 213.111, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-07", + "total_cases": 1832.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5368.498, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 4.186, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 224.0, + "total_tests": 67246.0, + "total_tests_per_thousand": 197.058, + "new_tests_per_thousand": 0.656, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 141.4, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-08", + "total_cases": 1833.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 131.0, + "total_tests": 67377.0, + "total_tests_per_thousand": 197.442, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 141.556, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-09", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 141.0, + "total_tests": 67518.0, + "total_tests_per_thousand": 197.855, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 156.625, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-10", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 211.0, + "total_tests": 67729.0, + "total_tests_per_thousand": 198.473, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 354.667, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-11", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 63.0, + "total_tests": 67792.0, + "total_tests_per_thousand": 198.658, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 140.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 326.66700000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-12", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 67823.0, + "total_tests_per_thousand": 198.749, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 329.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-13", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 67912.0, + "total_tests_per_thousand": 199.01, + "new_tests_per_thousand": 0.261, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 296.33299999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-14", + "total_cases": 1833.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5371.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 68064.0, + "total_tests_per_thousand": 199.455, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 117.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 819.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-15", + "total_cases": 1835.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5377.289, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 137.0, + "total_tests": 68201.0, + "total_tests_per_thousand": 199.856, + "new_tests_per_thousand": 0.401, + "new_tests_smoothed": 118.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 413.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-16", + "total_cases": 1835.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5377.289, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 121.0, + "total_tests": 68322.0, + "total_tests_per_thousand": 200.211, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 115.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 402.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-17", + "total_cases": 1836.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5380.22, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 189.0, + "total_tests": 68511.0, + "total_tests_per_thousand": 200.765, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 112.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 261.33299999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-18", + "total_cases": 1836.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5380.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 64.0, + "total_tests": 68575.0, + "total_tests_per_thousand": 200.952, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 112.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 261.33299999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-19", + "total_cases": 1838.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5386.081, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 68614.0, + "total_tests_per_thousand": 201.067, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 113.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 158.2, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-20", + "total_cases": 1839.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5389.011, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.512, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 68640.0, + "total_tests_per_thousand": 201.143, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 104.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 121.333, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-21", + "total_cases": 1839.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5389.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.512, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 68706.0, + "total_tests_per_thousand": 201.336, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 92.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 107.333, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-22", + "total_cases": 1839.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5389.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.675, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 49.0, + "total_tests": 68755.0, + "total_tests_per_thousand": 201.48, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 79.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 138.25, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-23", + "total_cases": 1840.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5391.941, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 68822.0, + "total_tests_per_thousand": 201.676, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 99.4, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-24", + "total_cases": 1841.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5394.872, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 69.0, + "total_tests": 68891.0, + "total_tests_per_thousand": 201.878, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 75.6, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-25", + "total_cases": 1843.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5400.733, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 46.0, + "total_tests": 68937.0, + "total_tests_per_thousand": 202.013, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 52.0, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-26", + "total_cases": 1843.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5400.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 68955.0, + "total_tests_per_thousand": 202.066, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 68.6, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-27", + "total_cases": 1847.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5412.454, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 68992.0, + "total_tests_per_thousand": 202.174, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 43.75, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-28", + "total_cases": 1854.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5432.967, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 6.279, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 124.0, + "total_tests": 69116.0, + "total_tests_per_thousand": 202.538, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 59.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 27.533, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-29", + "total_cases": 1857.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5441.758, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 7.535, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 352.0, + "total_tests": 69468.0, + "total_tests_per_thousand": 203.569, + "new_tests_per_thousand": 1.032, + "new_tests_smoothed": 102.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 39.667, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-30", + "total_cases": 1861.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5453.48, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 8.791, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1138.0, + "total_tests": 70606.0, + "total_tests_per_thousand": 206.904, + "new_tests_per_thousand": 3.335, + "new_tests_smoothed": 255.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 85.0, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-31", + "total_cases": 1872.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5485.714, + "new_cases_per_million": 32.234, + "new_cases_smoothed_per_million": 12.977, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1324.0, + "total_tests": 71930.0, + "total_tests_per_thousand": 210.784, + "new_tests_per_thousand": 3.88, + "new_tests_smoothed": 434.0, + "new_tests_smoothed_per_thousand": 1.272, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-01", + "total_cases": 1885.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5523.81, + "new_cases_per_million": 38.095, + "new_cases_smoothed_per_million": 17.582, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 826.0, + "total_tests": 72756.0, + "total_tests_per_thousand": 213.204, + "new_tests_per_thousand": 2.421, + "new_tests_smoothed": 546.0, + "new_tests_smoothed_per_thousand": 1.6, + "tests_per_case": 91.0, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-02", + "total_cases": 1893.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5547.253, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 20.931, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1205.0, + "total_tests": 73961.0, + "total_tests_per_thousand": 216.736, + "new_tests_per_thousand": 3.531, + "new_tests_smoothed": 715.0, + "new_tests_smoothed_per_thousand": 2.095, + "tests_per_case": 100.1, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-03", + "total_cases": 1907.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5588.278, + "new_cases_per_million": 41.026, + "new_cases_smoothed_per_million": 25.118, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 767.0, + "total_tests": 74728.0, + "total_tests_per_thousand": 218.983, + "new_tests_per_thousand": 2.248, + "new_tests_smoothed": 819.0, + "new_tests_smoothed_per_thousand": 2.4, + "tests_per_case": 95.55, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-04", + "total_cases": 1915.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5611.722, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 25.536, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 615.0, + "total_tests": 75343.0, + "total_tests_per_thousand": 220.785, + "new_tests_per_thousand": 1.802, + "new_tests_smoothed": 890.0, + "new_tests_smoothed_per_thousand": 2.608, + "tests_per_case": 102.131, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-05", + "total_cases": 1918.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5620.513, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 25.536, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 825.0, + "total_tests": 76168.0, + "total_tests_per_thousand": 223.203, + "new_tests_per_thousand": 2.418, + "new_tests_smoothed": 957.0, + "new_tests_smoothed_per_thousand": 2.804, + "tests_per_case": 109.82, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-06", + "total_cases": 1926.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5643.956, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 27.211, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1077.0, + "total_tests": 77245.0, + "total_tests_per_thousand": 226.359, + "new_tests_per_thousand": 3.156, + "new_tests_smoothed": 948.0, + "new_tests_smoothed_per_thousand": 2.778, + "tests_per_case": 102.09200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-07", + "total_cases": 1932.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5661.538, + "new_cases_per_million": 17.582, + "new_cases_smoothed_per_million": 25.118, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 594.0, + "total_tests": 77839.0, + "total_tests_per_thousand": 228.1, + "new_tests_per_thousand": 1.741, + "new_tests_smoothed": 844.0, + "new_tests_smoothed_per_thousand": 2.473, + "tests_per_case": 98.46700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-08", + "total_cases": 1952.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5720.147, + "new_cases_per_million": 58.608, + "new_cases_smoothed_per_million": 28.048, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 396.0, + "total_tests": 78235.0, + "total_tests_per_thousand": 229.26, + "new_tests_per_thousand": 1.16, + "new_tests_smoothed": 783.0, + "new_tests_smoothed_per_thousand": 2.295, + "tests_per_case": 81.806, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-09", + "total_cases": 1955.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5728.938, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 25.955, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 232.0, + "total_tests": 78467.0, + "total_tests_per_thousand": 229.94, + "new_tests_per_thousand": 0.68, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 1.887, + "tests_per_case": 72.71, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-10", + "total_cases": 1958.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5737.729, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 21.35, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 345.0, + "total_tests": 78812.0, + "total_tests_per_thousand": 230.951, + "new_tests_per_thousand": 1.011, + "new_tests_smoothed": 583.0, + "new_tests_smoothed_per_thousand": 1.708, + "tests_per_case": 80.02, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-11", + "total_cases": 1962.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5749.451, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 19.676, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1190.0, + "total_tests": 80002.0, + "total_tests_per_thousand": 234.438, + "new_tests_per_thousand": 3.487, + "new_tests_smoothed": 666.0, + "new_tests_smoothed_per_thousand": 1.952, + "tests_per_case": 99.191, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-12", + "total_cases": 1968.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5767.033, + "new_cases_per_million": 17.582, + "new_cases_smoothed_per_million": 20.931, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 722.0, + "total_tests": 80724.0, + "total_tests_per_thousand": 236.554, + "new_tests_per_thousand": 2.116, + "new_tests_smoothed": 651.0, + "new_tests_smoothed_per_thousand": 1.908, + "tests_per_case": 91.14, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-13", + "total_cases": 1972.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5778.755, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 19.257, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 328.0, + "total_tests": 81052.0, + "total_tests_per_thousand": 237.515, + "new_tests_per_thousand": 0.961, + "new_tests_smoothed": 544.0, + "new_tests_smoothed_per_thousand": 1.594, + "tests_per_case": 82.78299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-14", + "total_cases": 1976.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5790.476, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 18.42, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 537.0, + "total_tests": 81589.0, + "total_tests_per_thousand": 239.089, + "new_tests_per_thousand": 1.574, + "new_tests_smoothed": 536.0, + "new_tests_smoothed_per_thousand": 1.571, + "tests_per_case": 85.273, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-15", + "total_cases": 1983.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5810.989, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 12.977, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 347.0, + "total_tests": 81936.0, + "total_tests_per_thousand": 240.105, + "new_tests_per_thousand": 1.017, + "new_tests_smoothed": 529.0, + "new_tests_smoothed_per_thousand": 1.55, + "tests_per_case": 119.45200000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-16", + "total_cases": 1999.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5857.875, + "new_cases_per_million": 46.886, + "new_cases_smoothed_per_million": 18.42, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 158.0, + "total_tests": 82094.0, + "total_tests_per_thousand": 240.568, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 1.518, + "tests_per_case": 82.40899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-17", + "total_cases": 2011.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5893.04, + "new_cases_per_million": 35.165, + "new_cases_smoothed_per_million": 22.187, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 408.0, + "total_tests": 82502.0, + "total_tests_per_thousand": 241.764, + "new_tests_per_thousand": 1.196, + "new_tests_smoothed": 527.0, + "new_tests_smoothed_per_thousand": 1.544, + "tests_per_case": 69.604, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-18", + "total_cases": 2014.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5901.832, + "new_cases_per_million": 8.791, + "new_cases_smoothed_per_million": 21.769, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 504.0, + "total_tests": 83006.0, + "total_tests_per_thousand": 243.241, + "new_tests_per_thousand": 1.477, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 1.257, + "tests_per_case": 57.75, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-19", + "total_cases": 2027.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5939.927, + "new_cases_per_million": 38.095, + "new_cases_smoothed_per_million": 24.699, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 455.0, + "total_tests": 83461.0, + "total_tests_per_thousand": 244.574, + "new_tests_per_thousand": 1.333, + "new_tests_smoothed": 391.0, + "new_tests_smoothed_per_thousand": 1.146, + "tests_per_case": 46.39, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-20", + "total_cases": 2035.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5963.37, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 26.374, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 591.0, + "total_tests": 84052.0, + "total_tests_per_thousand": 246.306, + "new_tests_per_thousand": 1.732, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 1.257, + "tests_per_case": 47.667, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-21", + "total_cases": 2040.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5978.022, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 26.792, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 588.0, + "total_tests": 84640.0, + "total_tests_per_thousand": 248.029, + "new_tests_per_thousand": 1.723, + "new_tests_smoothed": 436.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 47.688, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-22", + "total_cases": 2050.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6007.326, + "new_cases_per_million": 29.304, + "new_cases_smoothed_per_million": 28.048, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 272.0, + "total_tests": 84912.0, + "total_tests_per_thousand": 248.826, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 1.245, + "tests_per_case": 44.403, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-23", + "total_cases": 2058.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6030.769, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 24.699, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 291.0, + "total_tests": 85203.0, + "total_tests_per_thousand": 249.679, + "new_tests_per_thousand": 0.853, + "new_tests_smoothed": 444.0, + "new_tests_smoothed_per_thousand": 1.301, + "tests_per_case": 52.678000000000004, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-24", + "total_cases": 2064.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6048.352, + "new_cases_per_million": 17.582, + "new_cases_smoothed_per_million": 22.187, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 602.0, + "total_tests": 85805.0, + "total_tests_per_thousand": 251.443, + "new_tests_per_thousand": 1.764, + "new_tests_smoothed": 472.0, + "new_tests_smoothed_per_thousand": 1.383, + "tests_per_case": 62.34, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-25", + "total_cases": 2073.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6074.725, + "new_cases_per_million": 26.374, + "new_cases_smoothed_per_million": 24.699, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 871.0, + "total_tests": 86676.0, + "total_tests_per_thousand": 253.996, + "new_tests_per_thousand": 2.552, + "new_tests_smoothed": 524.0, + "new_tests_smoothed_per_thousand": 1.536, + "tests_per_case": 62.169, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-26", + "total_cases": 2077.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6086.447, + "new_cases_per_million": 11.722, + "new_cases_smoothed_per_million": 20.931, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 767.0, + "total_tests": 87443.0, + "total_tests_per_thousand": 256.243, + "new_tests_per_thousand": 2.248, + "new_tests_smoothed": 569.0, + "new_tests_smoothed_per_thousand": 1.667, + "tests_per_case": 79.66, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-27", + "total_cases": 2082.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6101.099, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 19.676, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 723.0, + "total_tests": 88166.0, + "total_tests_per_thousand": 258.362, + "new_tests_per_thousand": 2.119, + "new_tests_smoothed": 588.0, + "new_tests_smoothed_per_thousand": 1.723, + "tests_per_case": 87.574, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-28", + "total_cases": 2087.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6115.751, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 19.676, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 663.0, + "total_tests": 88829.0, + "total_tests_per_thousand": 260.305, + "new_tests_per_thousand": 1.943, + "new_tests_smoothed": 598.0, + "new_tests_smoothed_per_thousand": 1.752, + "tests_per_case": 89.064, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-29", + "total_cases": 2092.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6130.403, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 17.582, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-08-30", + "total_cases": 2100.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6153.846, + "new_cases_per_million": 23.443, + "new_cases_smoothed_per_million": 17.582, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-08-31", + "total_cases": 2105.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6168.498, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 17.164, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-09-01", + "total_cases": 2107.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6174.359, + "new_cases_per_million": 5.861, + "new_cases_smoothed_per_million": 14.233, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-09-02", + "total_cases": 2116.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6200.733, + "new_cases_per_million": 26.374, + "new_cases_smoothed_per_million": 16.327, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-09-03", + "total_cases": 2121.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6215.385, + "new_cases_per_million": 14.652, + "new_cases_smoothed_per_million": 16.327, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-09-04", + "total_cases": 2128.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6235.897, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 17.164, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2135.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6256.41, + "new_cases_per_million": 20.513, + "new_cases_smoothed_per_million": 18.001, + "total_deaths_per_million": 29.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "IND": { + "continent": "Asia", + "location": "India", + "population": 1380004385.0, + "population_density": 450.419, + "median_age": 28.2, + "aged_65_older": 5.989, + "aged_70_older": 3.414, + "gdp_per_capita": 6426.674, + "extreme_poverty": 21.2, + "cardiovasc_death_rate": 282.28, + "diabetes_prevalence": 10.39, + "female_smokers": 1.9, + "male_smokers": 20.6, + "handwashing_facilities": 59.55, + "hospital_beds_per_thousand": 0.53, + "life_expectancy": 69.66, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.001, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-02", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.001, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-04", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-02-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.002, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-03-03", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.004, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 10.19 + }, + { + "date": "2020-03-04", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.004, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 15.74 + }, + { + "date": "2020-03-05", + "total_cases": 28.0, + "new_cases": 22.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-06", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-07", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-08", + "total_cases": 34.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.025, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 4.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-10", + "total_cases": 44.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.032, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-11", + "total_cases": 50.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.004, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-03-12", + "total_cases": 73.0, + "new_cases": 23.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.053, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6500.0, + "total_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 26.85 + }, + { + "date": "2020-03-13", + "total_cases": 75.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.054, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 33.33 + }, + { + "date": "2020-03-14", + "total_cases": 83.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.006, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 36.11 + }, + { + "date": "2020-03-15", + "total_cases": 90.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.065, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-03-16", + "total_cases": 93.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.067, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-03-17", + "total_cases": 125.0, + "new_cases": 32.0, + "new_cases_smoothed": 11.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.091, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 13125.0, + "total_tests_per_thousand": 0.01, + "tests_units": "samples tested", + "stringency_index": 48.15 + }, + { + "date": "2020-03-18", + "total_cases": 137.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 191.0, + "total_tests": 13316.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-19", + "total_cases": 165.0, + "new_cases": 28.0, + "new_cases_smoothed": 13.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.12, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1060.0, + "total_tests": 14376.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1125.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 85.598, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 59.72 + }, + { + "date": "2020-03-20", + "total_cases": 191.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.138, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.003, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1325.0, + "total_tests": 15701.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1125.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 67.888, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 70.83 + }, + { + "date": "2020-03-21", + "total_cases": 231.0, + "new_cases": 40.0, + "new_cases_smoothed": 21.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.167, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1298.0, + "total_tests": 16999.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1121.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 53.02, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-03-22", + "total_cases": 320.0, + "new_cases": 89.0, + "new_cases_smoothed": 32.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.232, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3708.0, + "total_tests": 20707.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 1462.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 44.496, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-23", + "total_cases": 439.0, + "new_cases": 119.0, + "new_cases_smoothed": 49.429, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.318, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 157.0, + "total_tests": 20864.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1295.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 26.199, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-03-24", + "total_cases": 492.0, + "new_cases": 53.0, + "new_cases_smoothed": 52.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.038, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.007, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 4280.0, + "total_tests": 25144.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 1717.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 32.749, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-03-25", + "total_cases": 562.0, + "new_cases": 70.0, + "new_cases_smoothed": 60.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 0.407, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.007, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 1871.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 30.816, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 649.0, + "new_cases": 87.0, + "new_cases_smoothed": 69.143, + "total_deaths": 13.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 0.47, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.001, + "total_tests": 27688.0, + "total_tests_per_thousand": 0.02, + "new_tests_smoothed": 1902.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 27.508000000000003, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 724.0, + "new_cases": 75.0, + "new_cases_smoothed": 76.143, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 0.525, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.012, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 2195.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 28.826999999999998, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 873.0, + "new_cases": 149.0, + "new_cases_smoothed": 91.714, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 0.633, + "new_cases_per_million": 0.108, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 2492.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 27.171, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 979.0, + "new_cases": 106.0, + "new_cases_smoothed": 94.143, + "total_deaths": 25.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 0.709, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 2445.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 25.971, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 1071.0, + "new_cases": 92.0, + "new_cases_smoothed": 90.286, + "total_deaths": 29.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 0.776, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.021, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 2905.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 32.176, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 1251.0, + "new_cases": 180.0, + "new_cases_smoothed": 108.429, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 0.907, + "new_cases_per_million": 0.13, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 2776.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 25.601999999999997, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 1397.0, + "new_cases": 146.0, + "new_cases_smoothed": 119.286, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1.012, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.025, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 47951.0, + "total_tests_per_thousand": 0.035, + "new_tests_smoothed": 3076.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 25.787, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 1965.0, + "new_cases": 568.0, + "new_cases_smoothed": 188.0, + "total_deaths": 50.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1.424, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 21294.0, + "total_tests": 69245.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 5937.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 31.58, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 2301.0, + "new_cases": 336.0, + "new_cases_smoothed": 225.286, + "total_deaths": 56.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1.667, + "new_cases_per_million": 0.243, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 10705.0, + "total_tests": 79950.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 6984.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 31.000999999999998, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 2902.0, + "new_cases": 601.0, + "new_cases_smoothed": 289.857, + "total_deaths": 68.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2.103, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 9584.0, + "total_tests": 89534.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 7870.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 27.151, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 3374.0, + "new_cases": 472.0, + "new_cases_smoothed": 342.143, + "total_deaths": 77.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2.445, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 11534.0, + "total_tests": 101068.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 9036.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 26.41, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 4067.0, + "new_cases": 693.0, + "new_cases_smoothed": 428.0, + "total_deaths": 109.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 2.947, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.31, + "total_deaths_per_million": 0.079, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 12947.0, + "total_tests": 114015.0, + "total_tests_per_thousand": 0.083, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 10403.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 24.305999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 4421.0, + "new_cases": 354.0, + "new_cases_smoothed": 452.857, + "total_deaths": 114.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 3.204, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 0.083, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 13904.0, + "total_tests": 127919.0, + "total_tests_per_thousand": 0.093, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 11906.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 26.291, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 5194.0, + "new_cases": 773.0, + "new_cases_smoothed": 542.429, + "total_deaths": 149.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 3.764, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.393, + "total_deaths_per_million": 0.108, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 16991.0, + "total_tests": 144910.0, + "total_tests_per_thousand": 0.105, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 13851.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 25.535, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 5734.0, + "new_cases": 540.0, + "new_cases_smoothed": 538.429, + "total_deaths": 166.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 4.155, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 16420.0, + "total_tests": 161330.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 13155.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 24.432, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 6412.0, + "new_cases": 678.0, + "new_cases_smoothed": 587.286, + "total_deaths": 199.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 4.646, + "new_cases_per_million": 0.491, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 0.144, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 18044.0, + "total_tests": 179374.0, + "total_tests_per_thousand": 0.13, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 14203.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 24.184, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 7447.0, + "new_cases": 1035.0, + "new_cases_smoothed": 649.286, + "total_deaths": 239.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 5.396, + "new_cases_per_million": 0.75, + "new_cases_smoothed_per_million": 0.47, + "total_deaths_per_million": 0.173, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 16374.0, + "total_tests": 195748.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 15173.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 23.369, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 8356.0, + "new_cases": 909.0, + "new_cases_smoothed": 711.714, + "total_deaths": 273.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 6.055, + "new_cases_per_million": 0.659, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 0.198, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 21806.0, + "total_tests": 217554.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 16641.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 23.381999999999998, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 9152.0, + "new_cases": 796.0, + "new_cases_smoothed": 726.429, + "total_deaths": 308.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 6.632, + "new_cases_per_million": 0.577, + "new_cases_smoothed_per_million": 0.526, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 27339.0, + "total_tests": 244893.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 18697.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 25.738000000000003, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 10363.0, + "new_cases": 1211.0, + "new_cases_smoothed": 848.857, + "total_deaths": 339.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 7.509, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 0.615, + "total_deaths_per_million": 0.246, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 29706.0, + "total_tests": 274599.0, + "total_tests_per_thousand": 0.199, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 20954.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 24.685, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 11438.0, + "new_cases": 1075.0, + "new_cases_smoothed": 892.0, + "total_deaths": 377.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 32.571, + "total_cases_per_million": 8.288, + "new_cases_per_million": 0.779, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 0.273, + "new_deaths_per_million": 0.028, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 28357.0, + "total_tests": 302956.0, + "total_tests_per_thousand": 0.22, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 22578.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 25.311999999999998, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 12380.0, + "new_cases": 942.0, + "new_cases_smoothed": 949.429, + "total_deaths": 414.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 8.971, + "new_cases_per_million": 0.683, + "new_cases_smoothed_per_million": 0.688, + "total_deaths_per_million": 0.3, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 32167.0, + "total_tests": 335123.0, + "total_tests_per_thousand": 0.243, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 24828.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 26.15, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 13387.0, + "new_cases": 1007.0, + "new_cases_smoothed": 996.429, + "total_deaths": 437.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 9.701, + "new_cases_per_million": 0.73, + "new_cases_smoothed_per_million": 0.722, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 37000.0, + "total_tests": 372123.0, + "total_tests_per_thousand": 0.27, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 27536.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 27.635, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 14378.0, + "new_cases": 991.0, + "new_cases_smoothed": 990.143, + "total_deaths": 480.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 10.419, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.717, + "total_deaths_per_million": 0.348, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 29463.0, + "total_tests": 401586.0, + "total_tests_per_thousand": 0.291, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 29405.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 29.698, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 15712.0, + "new_cases": 1334.0, + "new_cases_smoothed": 1050.857, + "total_deaths": 507.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 11.385, + "new_cases_per_million": 0.967, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 30650.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 29.166999999999998, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 17265.0, + "new_cases": 1553.0, + "new_cases_smoothed": 1159.0, + "total_deaths": 543.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 12.511, + "new_cases_per_million": 1.125, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.393, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 462621.0, + "total_tests_per_thousand": 0.335, + "new_tests_smoothed": 31104.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 26.837, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 18600.0, + "new_cases": 1335.0, + "new_cases_smoothed": 1176.714, + "total_deaths": 590.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 13.478, + "new_cases_per_million": 0.967, + "new_cases_smoothed_per_million": 0.853, + "total_deaths_per_million": 0.428, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 29569.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 25.128, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 19984.0, + "new_cases": 1384.0, + "new_cases_smoothed": 1220.857, + "total_deaths": 640.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 14.481, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.885, + "total_deaths_per_million": 0.464, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.027, + "total_tests": 500542.0, + "total_tests_per_thousand": 0.363, + "new_tests_smoothed": 28227.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 23.121, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 21393.0, + "new_cases": 1409.0, + "new_cases_smoothed": 1287.571, + "total_deaths": 681.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 15.502, + "new_cases_per_million": 1.021, + "new_cases_smoothed_per_million": 0.933, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 41247.0, + "total_tests": 541789.0, + "total_tests_per_thousand": 0.393, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 29524.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 22.93, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 23077.0, + "new_cases": 1684.0, + "new_cases_smoothed": 1384.286, + "total_deaths": 718.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 16.722, + "new_cases_per_million": 1.22, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 0.52, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 38168.0, + "total_tests": 579957.0, + "total_tests_per_thousand": 0.42, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 29691.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 21.449, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 24506.0, + "new_cases": 1429.0, + "new_cases_smoothed": 1446.857, + "total_deaths": 775.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 17.758, + "new_cases_per_million": 1.036, + "new_cases_smoothed_per_million": 1.048, + "total_deaths_per_million": 0.562, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 45352.0, + "total_tests": 625309.0, + "total_tests_per_thousand": 0.453, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 31960.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 22.089000000000002, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 26496.0, + "new_cases": 1990.0, + "new_cases_smoothed": 1540.571, + "total_deaths": 824.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 45.286, + "total_cases_per_million": 19.2, + "new_cases_per_million": 1.442, + "new_cases_smoothed_per_million": 1.116, + "total_deaths_per_million": 0.597, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 40510.0, + "total_tests": 665819.0, + "total_tests_per_thousand": 0.482, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 33388.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 21.671999999999997, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 27892.0, + "new_cases": 1396.0, + "new_cases_smoothed": 1518.143, + "total_deaths": 872.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 47.0, + "total_cases_per_million": 20.212, + "new_cases_per_million": 1.012, + "new_cases_smoothed_per_million": 1.1, + "total_deaths_per_million": 0.632, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 50914.0, + "total_tests": 716733.0, + "total_tests_per_thousand": 0.519, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 36302.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 23.912, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 29435.0, + "new_cases": 1543.0, + "new_cases_smoothed": 1547.857, + "total_deaths": 934.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 49.143, + "total_cases_per_million": 21.33, + "new_cases_per_million": 1.118, + "new_cases_smoothed_per_million": 1.122, + "total_deaths_per_million": 0.677, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 54031.0, + "total_tests": 770764.0, + "total_tests_per_thousand": 0.559, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 41312.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 26.69, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 31332.0, + "new_cases": 1897.0, + "new_cases_smoothed": 1621.143, + "total_deaths": 1007.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 52.429, + "total_cases_per_million": 22.704, + "new_cases_per_million": 1.375, + "new_cases_smoothed_per_million": 1.175, + "total_deaths_per_million": 0.73, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 59437.0, + "total_tests": 830201.0, + "total_tests_per_thousand": 0.602, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 47094.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 29.05, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 33050.0, + "new_cases": 1718.0, + "new_cases_smoothed": 1665.286, + "total_deaths": 1074.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 56.143, + "total_cases_per_million": 23.949, + "new_cases_per_million": 1.245, + "new_cases_smoothed_per_million": 1.207, + "total_deaths_per_million": 0.778, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 72453.0, + "total_tests": 902654.0, + "total_tests_per_thousand": 0.654, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 51552.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 30.956999999999997, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 35043.0, + "new_cases": 1993.0, + "new_cases_smoothed": 1709.429, + "total_deaths": 1147.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 25.393, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 1.239, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 73709.0, + "total_tests": 976363.0, + "total_tests_per_thousand": 0.708, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 56629.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 33.126999999999995, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 37336.0, + "new_cases": 2293.0, + "new_cases_smoothed": 1832.857, + "total_deaths": 1218.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 63.286, + "total_cases_per_million": 27.055, + "new_cases_per_million": 1.662, + "new_cases_smoothed_per_million": 1.328, + "total_deaths_per_million": 0.883, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 70087.0, + "total_tests": 1046450.0, + "total_tests_per_thousand": 0.758, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 60163.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 32.825, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 39980.0, + "new_cases": 2644.0, + "new_cases_smoothed": 1926.286, + "total_deaths": 1301.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 28.971, + "new_cases_per_million": 1.916, + "new_cases_smoothed_per_million": 1.396, + "total_deaths_per_million": 0.943, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 60783.0, + "total_tests": 1107233.0, + "total_tests_per_thousand": 0.802, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 63059.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 32.736, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 42533.0, + "new_cases": 2553.0, + "new_cases_smoothed": 2091.571, + "total_deaths": 1373.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 71.571, + "total_cases_per_million": 30.821, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.516, + "total_deaths_per_million": 0.995, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 84713.0, + "total_tests": 1191946.0, + "total_tests_per_thousand": 0.864, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 67888.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 32.458, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-05", + "total_cases": 46433.0, + "new_cases": 3900.0, + "new_cases_smoothed": 2428.286, + "total_deaths": 1568.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 90.571, + "total_cases_per_million": 33.647, + "new_cases_per_million": 2.826, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 1.136, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 84835.0, + "total_tests": 1276781.0, + "total_tests_per_thousand": 0.925, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 72288.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 29.769000000000002, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-06", + "total_cases": 49391.0, + "new_cases": 2958.0, + "new_cases_smoothed": 2579.857, + "total_deaths": 1694.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 98.143, + "total_cases_per_million": 35.79, + "new_cases_per_million": 2.143, + "new_cases_smoothed_per_million": 1.869, + "total_deaths_per_million": 1.228, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 80632.0, + "total_tests": 1357413.0, + "total_tests_per_thousand": 0.984, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 75316.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 29.194000000000003, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-07", + "total_cases": 52952.0, + "new_cases": 3561.0, + "new_cases_smoothed": 2843.143, + "total_deaths": 1783.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 101.286, + "total_cases_per_million": 38.371, + "new_cases_per_million": 2.58, + "new_cases_smoothed_per_million": 2.06, + "total_deaths_per_million": 1.292, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 80375.0, + "total_tests": 1437788.0, + "total_tests_per_thousand": 1.042, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 76448.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 26.889, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-08", + "total_cases": 56342.0, + "new_cases": 3390.0, + "new_cases_smoothed": 3042.714, + "total_deaths": 1886.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 105.571, + "total_cases_per_million": 40.827, + "new_cases_per_million": 2.457, + "new_cases_smoothed_per_million": 2.205, + "total_deaths_per_million": 1.367, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 85425.0, + "total_tests": 1523213.0, + "total_tests_per_thousand": 1.104, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 78121.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 25.675, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-09", + "total_cases": 59662.0, + "new_cases": 3320.0, + "new_cases_smoothed": 3189.429, + "total_deaths": 1981.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 43.233, + "new_cases_per_million": 2.406, + "new_cases_smoothed_per_million": 2.311, + "total_deaths_per_million": 1.436, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 85824.0, + "total_tests": 1609037.0, + "total_tests_per_thousand": 1.166, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 80370.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 25.199, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-10", + "total_cases": 62939.0, + "new_cases": 3277.0, + "new_cases_smoothed": 3279.857, + "total_deaths": 2109.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 115.429, + "total_cases_per_million": 45.608, + "new_cases_per_million": 2.375, + "new_cases_smoothed_per_million": 2.377, + "total_deaths_per_million": 1.528, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 64651.0, + "total_tests": 1673688.0, + "total_tests_per_thousand": 1.213, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 80922.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 24.671999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-11", + "total_cases": 67152.0, + "new_cases": 4213.0, + "new_cases_smoothed": 3517.0, + "total_deaths": 2206.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 119.0, + "total_cases_per_million": 48.661, + "new_cases_per_million": 3.053, + "new_cases_smoothed_per_million": 2.549, + "total_deaths_per_million": 1.599, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 85891.0, + "total_tests": 1759579.0, + "total_tests_per_thousand": 1.275, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 81090.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 23.057, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-12", + "total_cases": 70756.0, + "new_cases": 3604.0, + "new_cases_smoothed": 3474.714, + "total_deaths": 2293.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 103.571, + "total_cases_per_million": 51.272, + "new_cases_per_million": 2.612, + "new_cases_smoothed_per_million": 2.518, + "total_deaths_per_million": 1.662, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 94671.0, + "total_tests": 1854250.0, + "total_tests_per_thousand": 1.344, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 82496.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 23.741999999999997, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-13", + "total_cases": 74281.0, + "new_cases": 3525.0, + "new_cases_smoothed": 3555.714, + "total_deaths": 2415.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 103.0, + "total_cases_per_million": 53.827, + "new_cases_per_million": 2.554, + "new_cases_smoothed_per_million": 2.577, + "total_deaths_per_million": 1.75, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 92791.0, + "total_tests": 1947041.0, + "total_tests_per_thousand": 1.411, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 84233.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 23.689, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-14", + "total_cases": 78003.0, + "new_cases": 3722.0, + "new_cases_smoothed": 3578.714, + "total_deaths": 2549.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 109.429, + "total_cases_per_million": 56.524, + "new_cases_per_million": 2.697, + "new_cases_smoothed_per_million": 2.593, + "total_deaths_per_million": 1.847, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 92911.0, + "total_tests": 2039952.0, + "total_tests_per_thousand": 1.478, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 86023.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 24.037, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-15", + "total_cases": 81970.0, + "new_cases": 3967.0, + "new_cases_smoothed": 3661.143, + "total_deaths": 2649.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 59.398, + "new_cases_per_million": 2.875, + "new_cases_smoothed_per_million": 2.653, + "total_deaths_per_million": 1.92, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 94325.0, + "total_tests": 2134277.0, + "total_tests_per_thousand": 1.547, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 87295.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 23.844, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-16", + "total_cases": 85940.0, + "new_cases": 3970.0, + "new_cases_smoothed": 3754.0, + "total_deaths": 2752.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 110.143, + "total_cases_per_million": 62.275, + "new_cases_per_million": 2.877, + "new_cases_smoothed_per_million": 2.72, + "total_deaths_per_million": 1.994, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 93365.0, + "total_tests": 2227642.0, + "total_tests_per_thousand": 1.614, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 88372.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 23.541, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-17", + "total_cases": 90927.0, + "new_cases": 4987.0, + "new_cases_smoothed": 3998.286, + "total_deaths": 2872.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 65.889, + "new_cases_per_million": 3.614, + "new_cases_smoothed_per_million": 2.897, + "total_deaths_per_million": 2.081, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 75150.0, + "total_tests": 2302792.0, + "total_tests_per_thousand": 1.669, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 89872.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 22.478, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 81.94 + }, + { + "date": "2020-05-18", + "total_cases": 96169.0, + "new_cases": 5242.0, + "new_cases_smoothed": 4145.286, + "total_deaths": 3029.0, + "new_deaths": 157.0, + "new_deaths_smoothed": 117.571, + "total_cases_per_million": 69.687, + "new_cases_per_million": 3.799, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 2.195, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 101475.0, + "total_tests": 2404267.0, + "total_tests_per_thousand": 1.742, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 92098.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 22.218000000000004, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-19", + "total_cases": 101139.0, + "new_cases": 4970.0, + "new_cases_smoothed": 4340.429, + "total_deaths": 3163.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 124.286, + "total_cases_per_million": 73.289, + "new_cases_per_million": 3.601, + "new_cases_smoothed_per_million": 3.145, + "total_deaths_per_million": 2.292, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.09, + "new_tests": 108121.0, + "total_tests": 2512388.0, + "total_tests_per_thousand": 1.821, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 94020.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 21.660999999999998, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-20", + "total_cases": 106750.0, + "new_cases": 5611.0, + "new_cases_smoothed": 4638.429, + "total_deaths": 3303.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 126.857, + "total_cases_per_million": 77.355, + "new_cases_per_million": 4.066, + "new_cases_smoothed_per_million": 3.361, + "total_deaths_per_million": 2.393, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 103532.0, + "total_tests": 2615920.0, + "total_tests_per_thousand": 1.896, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 95554.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 20.601, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-21", + "total_cases": 112359.0, + "new_cases": 5609.0, + "new_cases_smoothed": 4908.0, + "total_deaths": 3435.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 126.571, + "total_cases_per_million": 81.419, + "new_cases_per_million": 4.064, + "new_cases_smoothed_per_million": 3.557, + "total_deaths_per_million": 2.489, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 103514.0, + "total_tests": 2719434.0, + "total_tests_per_thousand": 1.971, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 97069.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 19.778, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-22", + "total_cases": 118447.0, + "new_cases": 6088.0, + "new_cases_smoothed": 5211.0, + "total_deaths": 3583.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 133.429, + "total_cases_per_million": 85.831, + "new_cases_per_million": 4.412, + "new_cases_smoothed_per_million": 3.776, + "total_deaths_per_million": 2.596, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 115364.0, + "total_tests": 2834798.0, + "total_tests_per_thousand": 2.054, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 100074.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 19.204, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-23", + "total_cases": 125101.0, + "new_cases": 6654.0, + "new_cases_smoothed": 5594.429, + "total_deaths": 3720.0, + "new_deaths": 137.0, + "new_deaths_smoothed": 138.286, + "total_cases_per_million": 90.653, + "new_cases_per_million": 4.822, + "new_cases_smoothed_per_million": 4.054, + "total_deaths_per_million": 2.696, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 108623.0, + "total_tests": 2943421.0, + "total_tests_per_thousand": 2.133, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 102254.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 18.278, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-24", + "total_cases": 131868.0, + "new_cases": 6767.0, + "new_cases_smoothed": 5848.714, + "total_deaths": 3867.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 142.143, + "total_cases_per_million": 95.556, + "new_cases_per_million": 4.904, + "new_cases_smoothed_per_million": 4.238, + "total_deaths_per_million": 2.802, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 90170.0, + "total_tests": 3033591.0, + "total_tests_per_thousand": 2.198, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 104400.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 17.85, + "positive_rate": 0.055999999999999994, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-25", + "total_cases": 138845.0, + "new_cases": 6977.0, + "new_cases_smoothed": 6096.571, + "total_deaths": 4021.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 141.714, + "total_cases_per_million": 100.612, + "new_cases_per_million": 5.056, + "new_cases_smoothed_per_million": 4.418, + "total_deaths_per_million": 2.914, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 92528.0, + "total_tests": 3126119.0, + "total_tests_per_thousand": 2.265, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 103122.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 16.915, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-26", + "total_cases": 145380.0, + "new_cases": 6535.0, + "new_cases_smoothed": 6320.143, + "total_deaths": 4167.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 143.429, + "total_cases_per_million": 105.347, + "new_cases_per_million": 4.735, + "new_cases_smoothed_per_million": 4.58, + "total_deaths_per_million": 3.02, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 116041.0, + "total_tests": 3242160.0, + "total_tests_per_thousand": 2.349, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 104253.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 16.495, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-27", + "total_cases": 151767.0, + "new_cases": 6387.0, + "new_cases_smoothed": 6431.0, + "total_deaths": 4337.0, + "new_deaths": 170.0, + "new_deaths_smoothed": 147.714, + "total_cases_per_million": 109.976, + "new_cases_per_million": 4.628, + "new_cases_smoothed_per_million": 4.66, + "total_deaths_per_million": 3.143, + "new_deaths_per_million": 0.123, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 119976.0, + "total_tests": 3362136.0, + "total_tests_per_thousand": 2.436, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 106602.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 16.576, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-28", + "total_cases": 158333.0, + "new_cases": 6566.0, + "new_cases_smoothed": 6567.714, + "total_deaths": 4531.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 156.571, + "total_cases_per_million": 114.734, + "new_cases_per_million": 4.758, + "new_cases_smoothed_per_million": 4.759, + "total_deaths_per_million": 3.283, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 121702.0, + "total_tests": 3483838.0, + "total_tests_per_thousand": 2.525, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 109201.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 16.627, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-29", + "total_cases": 165799.0, + "new_cases": 7466.0, + "new_cases_smoothed": 6764.571, + "total_deaths": 4706.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 160.429, + "total_cases_per_million": 120.144, + "new_cases_per_million": 5.41, + "new_cases_smoothed_per_million": 4.902, + "total_deaths_per_million": 3.41, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 127761.0, + "total_tests": 3611599.0, + "total_tests_per_thousand": 2.617, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 110972.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 16.405, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-30", + "total_cases": 173763.0, + "new_cases": 7964.0, + "new_cases_smoothed": 6951.714, + "total_deaths": 4971.0, + "new_deaths": 265.0, + "new_deaths_smoothed": 178.714, + "total_cases_per_million": 125.915, + "new_cases_per_million": 5.771, + "new_cases_smoothed_per_million": 5.037, + "total_deaths_per_million": 3.602, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 125428.0, + "total_tests": 3737027.0, + "total_tests_per_thousand": 2.708, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 113372.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 16.308, + "positive_rate": 0.061, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-05-31", + "total_cases": 182143.0, + "new_cases": 8380.0, + "new_cases_smoothed": 7182.143, + "total_deaths": 5164.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 185.286, + "total_cases_per_million": 131.987, + "new_cases_per_million": 6.072, + "new_cases_smoothed_per_million": 5.204, + "total_deaths_per_million": 3.742, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.134, + "new_tests": 100180.0, + "total_tests": 3837207.0, + "total_tests_per_thousand": 2.781, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 114802.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 15.984000000000002, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 79.17 + }, + { + "date": "2020-06-01", + "total_cases": 190535.0, + "new_cases": 8392.0, + "new_cases_smoothed": 7384.286, + "total_deaths": 5394.0, + "new_deaths": 230.0, + "new_deaths_smoothed": 196.143, + "total_cases_per_million": 138.068, + "new_cases_per_million": 6.081, + "new_cases_smoothed_per_million": 5.351, + "total_deaths_per_million": 3.909, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 128868.0, + "total_tests": 3966075.0, + "total_tests_per_thousand": 2.874, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 119994.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 16.25, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-02", + "total_cases": 198706.0, + "new_cases": 8171.0, + "new_cases_smoothed": 7618.0, + "total_deaths": 5598.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 204.429, + "total_cases_per_million": 143.989, + "new_cases_per_million": 5.921, + "new_cases_smoothed_per_million": 5.52, + "total_deaths_per_million": 4.057, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 137158.0, + "total_tests": 4103233.0, + "total_tests_per_thousand": 2.973, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 123010.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 16.147000000000002, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-03", + "total_cases": 207615.0, + "new_cases": 8909.0, + "new_cases_smoothed": 7978.286, + "total_deaths": 5815.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 211.143, + "total_cases_per_million": 150.445, + "new_cases_per_million": 6.456, + "new_cases_smoothed_per_million": 5.781, + "total_deaths_per_million": 4.214, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 139485.0, + "total_tests": 4242718.0, + "total_tests_per_thousand": 3.074, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 125797.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 15.767000000000001, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-04", + "total_cases": 216919.0, + "new_cases": 9304.0, + "new_cases_smoothed": 8369.429, + "total_deaths": 6075.0, + "new_deaths": 260.0, + "new_deaths_smoothed": 220.571, + "total_cases_per_million": 157.187, + "new_cases_per_million": 6.742, + "new_cases_smoothed_per_million": 6.065, + "total_deaths_per_million": 4.402, + "new_deaths_per_million": 0.188, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 143661.0, + "total_tests": 4386379.0, + "total_tests_per_thousand": 3.179, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 128934.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 15.405, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-05", + "total_cases": 226770.0, + "new_cases": 9851.0, + "new_cases_smoothed": 8710.143, + "total_deaths": 6348.0, + "new_deaths": 273.0, + "new_deaths_smoothed": 234.571, + "total_cases_per_million": 164.326, + "new_cases_per_million": 7.138, + "new_cases_smoothed_per_million": 6.312, + "total_deaths_per_million": 4.6, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 137938.0, + "total_tests": 4524317.0, + "total_tests_per_thousand": 3.278, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 130388.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 14.97, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-06", + "total_cases": 236657.0, + "new_cases": 9887.0, + "new_cases_smoothed": 8984.857, + "total_deaths": 6642.0, + "new_deaths": 294.0, + "new_deaths_smoothed": 238.714, + "total_cases_per_million": 171.49, + "new_cases_per_million": 7.164, + "new_cases_smoothed_per_million": 6.511, + "total_deaths_per_million": 4.813, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 142069.0, + "total_tests": 4666386.0, + "total_tests_per_thousand": 3.381, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 132766.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 14.777000000000001, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-07", + "total_cases": 246628.0, + "new_cases": 9971.0, + "new_cases_smoothed": 9212.143, + "total_deaths": 6929.0, + "new_deaths": 287.0, + "new_deaths_smoothed": 252.143, + "total_cases_per_million": 178.715, + "new_cases_per_million": 7.225, + "new_cases_smoothed_per_million": 6.675, + "total_deaths_per_million": 5.021, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 108048.0, + "total_tests": 4774434.0, + "total_tests_per_thousand": 3.46, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 133890.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 14.534, + "positive_rate": 0.069, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-08", + "total_cases": 256611.0, + "new_cases": 9983.0, + "new_cases_smoothed": 9439.429, + "total_deaths": 7135.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 248.714, + "total_cases_per_million": 185.949, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 6.84, + "total_deaths_per_million": 5.17, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 141682.0, + "total_tests": 4916116.0, + "total_tests_per_thousand": 3.562, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 135720.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 14.378, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 75.46 + }, + { + "date": "2020-06-09", + "total_cases": 266598.0, + "new_cases": 9987.0, + "new_cases_smoothed": 9698.857, + "total_deaths": 7466.0, + "new_deaths": 331.0, + "new_deaths_smoothed": 266.857, + "total_cases_per_million": 193.186, + "new_cases_per_million": 7.237, + "new_cases_smoothed_per_million": 7.028, + "total_deaths_per_million": 5.41, + "new_deaths_per_million": 0.24, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 145216.0, + "total_tests": 5061332.0, + "total_tests_per_thousand": 3.668, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 136871.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 14.112, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-10", + "total_cases": 276583.0, + "new_cases": 9985.0, + "new_cases_smoothed": 9852.571, + "total_deaths": 7745.0, + "new_deaths": 279.0, + "new_deaths_smoothed": 275.714, + "total_cases_per_million": 200.422, + "new_cases_per_million": 7.235, + "new_cases_smoothed_per_million": 7.14, + "total_deaths_per_million": 5.612, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 151808.0, + "total_tests": 5213140.0, + "total_tests_per_thousand": 3.778, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 138632.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 14.071, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-11", + "total_cases": 286579.0, + "new_cases": 9996.0, + "new_cases_smoothed": 9951.429, + "total_deaths": 8102.0, + "new_deaths": 357.0, + "new_deaths_smoothed": 289.571, + "total_cases_per_million": 207.665, + "new_cases_per_million": 7.243, + "new_cases_smoothed_per_million": 7.211, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 150305.0, + "total_tests": 5363445.0, + "total_tests_per_thousand": 3.887, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 139581.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 14.026, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-12", + "total_cases": 297535.0, + "new_cases": 10956.0, + "new_cases_smoothed": 10109.286, + "total_deaths": 8498.0, + "new_deaths": 396.0, + "new_deaths_smoothed": 307.143, + "total_cases_per_million": 215.604, + "new_cases_per_million": 7.939, + "new_cases_smoothed_per_million": 7.326, + "total_deaths_per_million": 6.158, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.223, + "new_tests": 143737.0, + "total_tests": 5507182.0, + "total_tests_per_thousand": 3.991, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 140409.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 13.889000000000001, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-13", + "total_cases": 308993.0, + "new_cases": 11458.0, + "new_cases_smoothed": 10333.714, + "total_deaths": 8884.0, + "new_deaths": 386.0, + "new_deaths_smoothed": 320.286, + "total_cases_per_million": 223.907, + "new_cases_per_million": 8.303, + "new_cases_smoothed_per_million": 7.488, + "total_deaths_per_million": 6.438, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 151432.0, + "total_tests": 5658614.0, + "total_tests_per_thousand": 4.1, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 141747.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 13.717, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-14", + "total_cases": 320922.0, + "new_cases": 11929.0, + "new_cases_smoothed": 10613.429, + "total_deaths": 9195.0, + "new_deaths": 311.0, + "new_deaths_smoothed": 323.714, + "total_cases_per_million": 232.551, + "new_cases_per_million": 8.644, + "new_cases_smoothed_per_million": 7.691, + "total_deaths_per_million": 6.663, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.235, + "new_tests": 115519.0, + "total_tests": 5774133.0, + "total_tests_per_thousand": 4.184, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 142814.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 13.456, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-15", + "total_cases": 332424.0, + "new_cases": 11502.0, + "new_cases_smoothed": 10830.429, + "total_deaths": 9520.0, + "new_deaths": 325.0, + "new_deaths_smoothed": 340.714, + "total_cases_per_million": 240.886, + "new_cases_per_million": 8.335, + "new_cases_smoothed_per_million": 7.848, + "total_deaths_per_million": 6.899, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 146936.0, + "total_tests": 5921069.0, + "total_tests_per_thousand": 4.291, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 143565.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 13.255999999999998, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-16", + "total_cases": 343091.0, + "new_cases": 10667.0, + "new_cases_smoothed": 10927.571, + "total_deaths": 9900.0, + "new_deaths": 380.0, + "new_deaths_smoothed": 347.714, + "total_cases_per_million": 248.616, + "new_cases_per_million": 7.73, + "new_cases_smoothed_per_million": 7.919, + "total_deaths_per_million": 7.174, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 163187.0, + "total_tests": 6084256.0, + "total_tests_per_thousand": 4.409, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 146132.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 13.373, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-17", + "total_cases": 354065.0, + "new_cases": 10974.0, + "new_cases_smoothed": 11068.857, + "total_deaths": 11903.0, + "new_deaths": 2003.0, + "new_deaths_smoothed": 594.0, + "total_cases_per_million": 256.568, + "new_cases_per_million": 7.952, + "new_cases_smoothed_per_million": 8.021, + "total_deaths_per_million": 8.625, + "new_deaths_per_million": 1.451, + "new_deaths_smoothed_per_million": 0.43, + "new_tests": 165412.0, + "total_tests": 6249668.0, + "total_tests_per_thousand": 4.529, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 148075.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 13.378, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-18", + "total_cases": 366946.0, + "new_cases": 12881.0, + "new_cases_smoothed": 11481.0, + "total_deaths": 12237.0, + "new_deaths": 334.0, + "new_deaths_smoothed": 590.714, + "total_cases_per_million": 265.902, + "new_cases_per_million": 9.334, + "new_cases_smoothed_per_million": 8.32, + "total_deaths_per_million": 8.867, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.428, + "new_tests": 176959.0, + "total_tests": 6426627.0, + "total_tests_per_thousand": 4.657, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 151883.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 13.229000000000001, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-19", + "total_cases": 380532.0, + "new_cases": 13586.0, + "new_cases_smoothed": 11856.714, + "total_deaths": 12573.0, + "new_deaths": 336.0, + "new_deaths_smoothed": 582.143, + "total_cases_per_million": 275.747, + "new_cases_per_million": 9.845, + "new_cases_smoothed_per_million": 8.592, + "total_deaths_per_million": 9.111, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.422, + "new_tests": 189869.0, + "total_tests": 6616496.0, + "total_tests_per_thousand": 4.795, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 158473.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 13.366, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-20", + "total_cases": 395048.0, + "new_cases": 14516.0, + "new_cases_smoothed": 12293.571, + "total_deaths": 12948.0, + "new_deaths": 375.0, + "new_deaths_smoothed": 580.571, + "total_cases_per_million": 286.266, + "new_cases_per_million": 10.519, + "new_cases_smoothed_per_million": 8.908, + "total_deaths_per_million": 9.383, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.421, + "new_tests": 190730.0, + "total_tests": 6807226.0, + "total_tests_per_thousand": 4.933, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 164087.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 13.347000000000001, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-21", + "total_cases": 410461.0, + "new_cases": 15413.0, + "new_cases_smoothed": 12791.286, + "total_deaths": 13254.0, + "new_deaths": 306.0, + "new_deaths_smoothed": 579.857, + "total_cases_per_million": 297.435, + "new_cases_per_million": 11.169, + "new_cases_smoothed_per_million": 9.269, + "total_deaths_per_million": 9.604, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 143267.0, + "total_tests": 6950493.0, + "total_tests_per_thousand": 5.037, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 168051.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 13.138, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-22", + "total_cases": 425282.0, + "new_cases": 14821.0, + "new_cases_smoothed": 13265.429, + "total_deaths": 13699.0, + "new_deaths": 445.0, + "new_deaths_smoothed": 597.0, + "total_cases_per_million": 308.174, + "new_cases_per_million": 10.74, + "new_cases_smoothed_per_million": 9.613, + "total_deaths_per_million": 9.927, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.433, + "new_tests": 187223.0, + "total_tests": 7137716.0, + "total_tests_per_thousand": 5.172, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 173807.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 13.102, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-23", + "total_cases": 440215.0, + "new_cases": 14933.0, + "new_cases_smoothed": 13874.857, + "total_deaths": 14011.0, + "new_deaths": 312.0, + "new_deaths_smoothed": 587.286, + "total_cases_per_million": 318.995, + "new_cases_per_million": 10.821, + "new_cases_smoothed_per_million": 10.054, + "total_deaths_per_million": 10.153, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.426, + "new_tests": 215195.0, + "total_tests": 7352911.0, + "total_tests_per_thousand": 5.328, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 181236.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 13.062000000000001, + "positive_rate": 0.077, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-24", + "total_cases": 456183.0, + "new_cases": 15968.0, + "new_cases_smoothed": 14588.286, + "total_deaths": 14476.0, + "new_deaths": 465.0, + "new_deaths_smoothed": 367.571, + "total_cases_per_million": 330.566, + "new_cases_per_million": 11.571, + "new_cases_smoothed_per_million": 10.571, + "total_deaths_per_million": 10.49, + "new_deaths_per_million": 0.337, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 207871.0, + "total_tests": 7560782.0, + "total_tests_per_thousand": 5.479, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 187302.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 12.839, + "positive_rate": 0.078, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-25", + "total_cases": 473105.0, + "new_cases": 16922.0, + "new_cases_smoothed": 15165.571, + "total_deaths": 14894.0, + "new_deaths": 418.0, + "new_deaths_smoothed": 379.571, + "total_cases_per_million": 342.829, + "new_cases_per_million": 12.262, + "new_cases_smoothed_per_million": 10.99, + "total_deaths_per_million": 10.793, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 215446.0, + "total_tests": 7776228.0, + "total_tests_per_thousand": 5.635, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 192800.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 12.713, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-26", + "total_cases": 490401.0, + "new_cases": 17296.0, + "new_cases_smoothed": 15695.571, + "total_deaths": 15301.0, + "new_deaths": 407.0, + "new_deaths_smoothed": 389.714, + "total_cases_per_million": 355.362, + "new_cases_per_million": 12.533, + "new_cases_smoothed_per_million": 11.374, + "total_deaths_per_million": 11.088, + "new_deaths_per_million": 0.295, + "new_deaths_smoothed_per_million": 0.282, + "new_tests": 220479.0, + "total_tests": 7996707.0, + "total_tests_per_thousand": 5.795, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 197173.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 12.562000000000001, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-27", + "total_cases": 508953.0, + "new_cases": 18552.0, + "new_cases_smoothed": 16272.143, + "total_deaths": 15685.0, + "new_deaths": 384.0, + "new_deaths_smoothed": 391.0, + "total_cases_per_million": 368.805, + "new_cases_per_million": 13.443, + "new_cases_smoothed_per_million": 11.791, + "total_deaths_per_million": 11.366, + "new_deaths_per_million": 0.278, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 231095.0, + "total_tests": 8227802.0, + "total_tests_per_thousand": 5.962, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 202939.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 12.472000000000001, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-28", + "total_cases": 528859.0, + "new_cases": 19906.0, + "new_cases_smoothed": 16914.0, + "total_deaths": 16095.0, + "new_deaths": 410.0, + "new_deaths_smoothed": 405.857, + "total_cases_per_million": 383.23, + "new_cases_per_million": 14.425, + "new_cases_smoothed_per_million": 12.256, + "total_deaths_per_million": 11.663, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 170560.0, + "total_tests": 8398362.0, + "total_tests_per_thousand": 6.086, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 206838.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 12.229000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-29", + "total_cases": 548318.0, + "new_cases": 19459.0, + "new_cases_smoothed": 17576.571, + "total_deaths": 16475.0, + "new_deaths": 380.0, + "new_deaths_smoothed": 396.571, + "total_cases_per_million": 397.331, + "new_cases_per_million": 14.101, + "new_cases_smoothed_per_million": 12.737, + "total_deaths_per_million": 11.938, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 210292.0, + "total_tests": 8608654.0, + "total_tests_per_thousand": 6.238, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 210134.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 11.955, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-30", + "total_cases": 566840.0, + "new_cases": 18522.0, + "new_cases_smoothed": 18089.286, + "total_deaths": 16893.0, + "new_deaths": 418.0, + "new_deaths_smoothed": 411.714, + "total_cases_per_million": 410.752, + "new_cases_per_million": 13.422, + "new_cases_smoothed_per_million": 13.108, + "total_deaths_per_million": 12.241, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 217931.0, + "total_tests": 8826585.0, + "total_tests_per_thousand": 6.396, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 210525.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 11.638, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-07-01", + "total_cases": 585493.0, + "new_cases": 18653.0, + "new_cases_smoothed": 18472.857, + "total_deaths": 17400.0, + "new_deaths": 507.0, + "new_deaths_smoothed": 417.714, + "total_cases_per_million": 424.269, + "new_cases_per_million": 13.517, + "new_cases_smoothed_per_million": 13.386, + "total_deaths_per_million": 12.609, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 229588.0, + "total_tests": 9056173.0, + "total_tests_per_thousand": 6.562, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 213627.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 11.564, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-02", + "total_cases": 604641.0, + "new_cases": 19148.0, + "new_cases_smoothed": 18790.857, + "total_deaths": 17834.0, + "new_deaths": 434.0, + "new_deaths_smoothed": 420.0, + "total_cases_per_million": 438.144, + "new_cases_per_million": 13.875, + "new_cases_smoothed_per_million": 13.617, + "total_deaths_per_million": 12.923, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.304, + "new_tests": 241576.0, + "total_tests": 9297749.0, + "total_tests_per_thousand": 6.737, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 217360.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 11.567, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-03", + "total_cases": 625544.0, + "new_cases": 20903.0, + "new_cases_smoothed": 19306.143, + "total_deaths": 18213.0, + "new_deaths": 379.0, + "new_deaths_smoothed": 416.0, + "total_cases_per_million": 453.291, + "new_cases_per_million": 15.147, + "new_cases_smoothed_per_million": 13.99, + "total_deaths_per_million": 13.198, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.301, + "new_tests": 242383.0, + "total_tests": 9540132.0, + "total_tests_per_thousand": 6.913, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 220489.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 11.421, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-04", + "total_cases": 648315.0, + "new_cases": 22771.0, + "new_cases_smoothed": 19908.857, + "total_deaths": 18655.0, + "new_deaths": 442.0, + "new_deaths_smoothed": 424.286, + "total_cases_per_million": 469.792, + "new_cases_per_million": 16.501, + "new_cases_smoothed_per_million": 14.427, + "total_deaths_per_million": 13.518, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 248934.0, + "total_tests": 9789066.0, + "total_tests_per_thousand": 7.094, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 223038.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 11.203, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-05", + "total_cases": 673165.0, + "new_cases": 24850.0, + "new_cases_smoothed": 20615.143, + "total_deaths": 19268.0, + "new_deaths": 613.0, + "new_deaths_smoothed": 453.286, + "total_cases_per_million": 487.799, + "new_cases_per_million": 18.007, + "new_cases_smoothed_per_million": 14.938, + "total_deaths_per_million": 13.962, + "new_deaths_per_million": 0.444, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 180596.0, + "total_tests": 9969662.0, + "total_tests_per_thousand": 7.224, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 224471.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 10.889000000000001, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-06", + "total_cases": 697413.0, + "new_cases": 24248.0, + "new_cases_smoothed": 21299.286, + "total_deaths": 19693.0, + "new_deaths": 425.0, + "new_deaths_smoothed": 459.714, + "total_cases_per_million": 505.37, + "new_cases_per_million": 17.571, + "new_cases_smoothed_per_million": 15.434, + "total_deaths_per_million": 14.27, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 241430.0, + "total_tests": 10211092.0, + "total_tests_per_thousand": 7.399, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 228920.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 10.748, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-07", + "total_cases": 719665.0, + "new_cases": 22252.0, + "new_cases_smoothed": 21832.143, + "total_deaths": 20160.0, + "new_deaths": 467.0, + "new_deaths_smoothed": 466.714, + "total_cases_per_million": 521.495, + "new_cases_per_million": 16.125, + "new_cases_smoothed_per_million": 15.82, + "total_deaths_per_million": 14.609, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.338, + "new_tests": 262679.0, + "total_tests": 10473771.0, + "total_tests_per_thousand": 7.59, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 235312.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 10.777999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-08", + "total_cases": 742417.0, + "new_cases": 22752.0, + "new_cases_smoothed": 22417.714, + "total_deaths": 20642.0, + "new_deaths": 482.0, + "new_deaths_smoothed": 463.143, + "total_cases_per_million": 537.982, + "new_cases_per_million": 16.487, + "new_cases_smoothed_per_million": 16.245, + "total_deaths_per_million": 14.958, + "new_deaths_per_million": 0.349, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 267061.0, + "total_tests": 10740832.0, + "total_tests_per_thousand": 7.783, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 240666.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 10.735999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-09", + "total_cases": 767296.0, + "new_cases": 24879.0, + "new_cases_smoothed": 23236.429, + "total_deaths": 21129.0, + "new_deaths": 487.0, + "new_deaths_smoothed": 470.714, + "total_cases_per_million": 556.01, + "new_cases_per_million": 18.028, + "new_cases_smoothed_per_million": 16.838, + "total_deaths_per_million": 15.311, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.341, + "new_tests": 283659.0, + "total_tests": 11024491.0, + "total_tests_per_thousand": 7.989, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 246677.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 10.616, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-07-10", + "total_cases": 793802.0, + "new_cases": 26506.0, + "new_cases_smoothed": 24036.857, + "total_deaths": 21604.0, + "new_deaths": 475.0, + "new_deaths_smoothed": 484.429, + "total_cases_per_million": 575.217, + "new_cases_per_million": 19.207, + "new_cases_smoothed_per_million": 17.418, + "total_deaths_per_million": 15.655, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.351, + "new_tests": 282511.0, + "total_tests": 11307002.0, + "total_tests_per_thousand": 8.193, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 252410.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 10.501, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-11", + "total_cases": 820916.0, + "new_cases": 27114.0, + "new_cases_smoothed": 24657.286, + "total_deaths": 22123.0, + "new_deaths": 519.0, + "new_deaths_smoothed": 495.429, + "total_cases_per_million": 594.865, + "new_cases_per_million": 19.648, + "new_cases_smoothed_per_million": 17.868, + "total_deaths_per_million": 16.031, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.359, + "new_tests": 280151.0, + "total_tests": 11587153.0, + "total_tests_per_thousand": 8.396, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 256870.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 10.418, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-12", + "total_cases": 849553.0, + "new_cases": 28637.0, + "new_cases_smoothed": 25198.286, + "total_deaths": 22674.0, + "new_deaths": 551.0, + "new_deaths_smoothed": 486.571, + "total_cases_per_million": 615.616, + "new_cases_per_million": 20.751, + "new_cases_smoothed_per_million": 18.26, + "total_deaths_per_million": 16.43, + "new_deaths_per_million": 0.399, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 219103.0, + "total_tests": 11806256.0, + "total_tests_per_thousand": 8.555, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 262371.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 10.412, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-13", + "total_cases": 878254.0, + "new_cases": 28701.0, + "new_cases_smoothed": 25834.429, + "total_deaths": 23174.0, + "new_deaths": 500.0, + "new_deaths_smoothed": 497.286, + "total_cases_per_million": 636.414, + "new_cases_per_million": 20.798, + "new_cases_smoothed_per_million": 18.721, + "total_deaths_per_million": 16.793, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 286247.0, + "total_tests": 12092503.0, + "total_tests_per_thousand": 8.763, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 268773.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 10.404000000000002, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-14", + "total_cases": 906752.0, + "new_cases": 28498.0, + "new_cases_smoothed": 26726.714, + "total_deaths": 23727.0, + "new_deaths": 553.0, + "new_deaths_smoothed": 509.571, + "total_cases_per_million": 657.065, + "new_cases_per_million": 20.651, + "new_cases_smoothed_per_million": 19.367, + "total_deaths_per_million": 17.193, + "new_deaths_per_million": 0.401, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 320161.0, + "total_tests": 12412664.0, + "total_tests_per_thousand": 8.995, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 276985.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 10.364, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-15", + "total_cases": 936181.0, + "new_cases": 29429.0, + "new_cases_smoothed": 27680.571, + "total_deaths": 24309.0, + "new_deaths": 582.0, + "new_deaths_smoothed": 523.857, + "total_cases_per_million": 678.39, + "new_cases_per_million": 21.325, + "new_cases_smoothed_per_million": 20.058, + "total_deaths_per_million": 17.615, + "new_deaths_per_million": 0.422, + "new_deaths_smoothed_per_million": 0.38, + "new_tests": 326826.0, + "total_tests": 12739490.0, + "total_tests_per_thousand": 9.231, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 285523.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 10.315, + "positive_rate": 0.09699999999999999, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-16", + "total_cases": 968876.0, + "new_cases": 32695.0, + "new_cases_smoothed": 28797.143, + "total_deaths": 24915.0, + "new_deaths": 606.0, + "new_deaths_smoothed": 540.857, + "total_cases_per_million": 702.082, + "new_cases_per_million": 23.692, + "new_cases_smoothed_per_million": 20.867, + "total_deaths_per_million": 18.054, + "new_deaths_per_million": 0.439, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 333228.0, + "total_tests": 13072718.0, + "total_tests_per_thousand": 9.473, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 292604.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 10.161, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-17", + "total_cases": 1003832.0, + "new_cases": 34956.0, + "new_cases_smoothed": 30004.286, + "total_deaths": 25602.0, + "new_deaths": 687.0, + "new_deaths_smoothed": 571.143, + "total_cases_per_million": 727.412, + "new_cases_per_million": 25.33, + "new_cases_smoothed_per_million": 21.742, + "total_deaths_per_million": 18.552, + "new_deaths_per_million": 0.498, + "new_deaths_smoothed_per_million": 0.414, + "new_tests": 361024.0, + "total_tests": 13433742.0, + "total_tests_per_thousand": 9.735, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 303820.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 10.126, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-18", + "total_cases": 1038716.0, + "new_cases": 34884.0, + "new_cases_smoothed": 31114.286, + "total_deaths": 26273.0, + "new_deaths": 671.0, + "new_deaths_smoothed": 592.857, + "total_cases_per_million": 752.69, + "new_cases_per_million": 25.278, + "new_cases_smoothed_per_million": 22.547, + "total_deaths_per_million": 19.038, + "new_deaths_per_million": 0.486, + "new_deaths_smoothed_per_million": 0.43, + "new_tests": 358127.0, + "total_tests": 13791869.0, + "total_tests_per_thousand": 9.994, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 314959.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 10.123, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-19", + "total_cases": 1077618.0, + "new_cases": 38902.0, + "new_cases_smoothed": 32580.714, + "total_deaths": 26816.0, + "new_deaths": 543.0, + "new_deaths_smoothed": 591.714, + "total_cases_per_million": 780.88, + "new_cases_per_million": 28.19, + "new_cases_smoothed_per_million": 23.609, + "total_deaths_per_million": 19.432, + "new_deaths_per_million": 0.393, + "new_deaths_smoothed_per_million": 0.429, + "new_tests": 256039.0, + "total_tests": 14047908.0, + "total_tests_per_thousand": 10.18, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 320236.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 9.829, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-20", + "total_cases": 1118043.0, + "new_cases": 40425.0, + "new_cases_smoothed": 34255.571, + "total_deaths": 27497.0, + "new_deaths": 681.0, + "new_deaths_smoothed": 617.571, + "total_cases_per_million": 810.174, + "new_cases_per_million": 29.293, + "new_cases_smoothed_per_million": 24.823, + "total_deaths_per_million": 19.925, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 333395.0, + "total_tests": 14381303.0, + "total_tests_per_thousand": 10.421, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 326971.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 9.545, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-21", + "total_cases": 1155191.0, + "new_cases": 37148.0, + "new_cases_smoothed": 35491.286, + "total_deaths": 28084.0, + "new_deaths": 587.0, + "new_deaths_smoothed": 622.429, + "total_cases_per_million": 837.092, + "new_cases_per_million": 26.919, + "new_cases_smoothed_per_million": 25.718, + "total_deaths_per_million": 20.351, + "new_deaths_per_million": 0.425, + "new_deaths_smoothed_per_million": 0.451, + "new_tests": 343243.0, + "total_tests": 14724546.0, + "total_tests_per_thousand": 10.67, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 330269.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 9.306000000000001, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-22", + "total_cases": 1192915.0, + "new_cases": 37724.0, + "new_cases_smoothed": 36676.286, + "total_deaths": 28732.0, + "new_deaths": 648.0, + "new_deaths_smoothed": 631.857, + "total_cases_per_million": 864.428, + "new_cases_per_million": 27.336, + "new_cases_smoothed_per_million": 26.577, + "total_deaths_per_million": 20.82, + "new_deaths_per_million": 0.47, + "new_deaths_smoothed_per_million": 0.458, + "new_tests": 350823.0, + "total_tests": 15075369.0, + "total_tests_per_thousand": 10.924, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 333697.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 9.097999999999999, + "positive_rate": 0.11, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-23", + "total_cases": 1238635.0, + "new_cases": 45720.0, + "new_cases_smoothed": 38537.0, + "total_deaths": 29861.0, + "new_deaths": 1129.0, + "new_deaths_smoothed": 706.571, + "total_cases_per_million": 897.559, + "new_cases_per_million": 33.13, + "new_cases_smoothed_per_million": 27.925, + "total_deaths_per_million": 21.638, + "new_deaths_per_million": 0.818, + "new_deaths_smoothed_per_million": 0.512, + "new_tests": 352801.0, + "total_tests": 15428170.0, + "total_tests_per_thousand": 11.18, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 336493.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 8.732000000000001, + "positive_rate": 0.115, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-24", + "total_cases": 1287945.0, + "new_cases": 49310.0, + "new_cases_smoothed": 40587.571, + "total_deaths": 30601.0, + "new_deaths": 740.0, + "new_deaths_smoothed": 714.143, + "total_cases_per_million": 933.291, + "new_cases_per_million": 35.732, + "new_cases_smoothed_per_million": 29.411, + "total_deaths_per_million": 22.175, + "new_deaths_per_million": 0.536, + "new_deaths_smoothed_per_million": 0.517, + "new_tests": 420898.0, + "total_tests": 15849068.0, + "total_tests_per_thousand": 11.485, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 345047.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 8.501, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-25", + "total_cases": 1336861.0, + "new_cases": 48916.0, + "new_cases_smoothed": 42592.143, + "total_deaths": 31358.0, + "new_deaths": 757.0, + "new_deaths_smoothed": 726.429, + "total_cases_per_million": 968.737, + "new_cases_per_million": 35.446, + "new_cases_smoothed_per_million": 30.864, + "total_deaths_per_million": 22.723, + "new_deaths_per_million": 0.549, + "new_deaths_smoothed_per_million": 0.526, + "new_tests": 442263.0, + "total_tests": 16291331.0, + "total_tests_per_thousand": 11.805, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 357066.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 8.383, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-26", + "total_cases": 1385522.0, + "new_cases": 48661.0, + "new_cases_smoothed": 43986.286, + "total_deaths": 32063.0, + "new_deaths": 705.0, + "new_deaths_smoothed": 749.571, + "total_cases_per_million": 1003.998, + "new_cases_per_million": 35.261, + "new_cases_smoothed_per_million": 31.874, + "total_deaths_per_million": 23.234, + "new_deaths_per_million": 0.511, + "new_deaths_smoothed_per_million": 0.543, + "new_tests": 515472.0, + "total_tests": 16806803.0, + "total_tests_per_thousand": 12.179, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 394128.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 8.96, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-27", + "total_cases": 1435453.0, + "new_cases": 49931.0, + "new_cases_smoothed": 45344.286, + "total_deaths": 32771.0, + "new_deaths": 708.0, + "new_deaths_smoothed": 753.429, + "total_cases_per_million": 1040.18, + "new_cases_per_million": 36.182, + "new_cases_smoothed_per_million": 32.858, + "total_deaths_per_million": 23.747, + "new_deaths_per_million": 0.513, + "new_deaths_smoothed_per_million": 0.546, + "new_tests": 528082.0, + "total_tests": 17334885.0, + "total_tests_per_thousand": 12.561, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 421940.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 9.305, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-28", + "total_cases": 1483156.0, + "new_cases": 47703.0, + "new_cases_smoothed": 46852.143, + "total_deaths": 33425.0, + "new_deaths": 654.0, + "new_deaths_smoothed": 763.0, + "total_cases_per_million": 1074.747, + "new_cases_per_million": 34.567, + "new_cases_smoothed_per_million": 33.951, + "total_deaths_per_million": 24.221, + "new_deaths_per_million": 0.474, + "new_deaths_smoothed_per_million": 0.553, + "new_tests": 408855.0, + "total_tests": 17743740.0, + "total_tests_per_thousand": 12.858, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 431313.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 9.206, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-29", + "total_cases": 1531669.0, + "new_cases": 48513.0, + "new_cases_smoothed": 48393.429, + "total_deaths": 34193.0, + "new_deaths": 768.0, + "new_deaths_smoothed": 780.143, + "total_cases_per_million": 1109.902, + "new_cases_per_million": 35.154, + "new_cases_smoothed_per_million": 35.068, + "total_deaths_per_million": 24.777, + "new_deaths_per_million": 0.557, + "new_deaths_smoothed_per_million": 0.565, + "new_tests": 446642.0, + "total_tests": 18190382.0, + "total_tests_per_thousand": 13.181, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 445002.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 9.196, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-30", + "total_cases": 1583792.0, + "new_cases": 52123.0, + "new_cases_smoothed": 49308.143, + "total_deaths": 34968.0, + "new_deaths": 775.0, + "new_deaths_smoothed": 729.571, + "total_cases_per_million": 1147.672, + "new_cases_per_million": 37.77, + "new_cases_smoothed_per_million": 35.73, + "total_deaths_per_million": 25.339, + "new_deaths_per_million": 0.562, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 642588.0, + "total_tests": 18832970.0, + "total_tests_per_thousand": 13.647, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 486400.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 9.863999999999999, + "positive_rate": 0.10099999999999999, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-31", + "total_cases": 1638870.0, + "new_cases": 55078.0, + "new_cases_smoothed": 50132.143, + "total_deaths": 35747.0, + "new_deaths": 779.0, + "new_deaths_smoothed": 735.143, + "total_cases_per_million": 1187.583, + "new_cases_per_million": 39.911, + "new_cases_smoothed_per_million": 36.328, + "total_deaths_per_million": 25.904, + "new_deaths_per_million": 0.564, + "new_deaths_smoothed_per_million": 0.533, + "new_tests": 525689.0, + "total_tests": 19358659.0, + "total_tests_per_thousand": 14.028, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 501370.0, + "new_tests_smoothed_per_thousand": 0.363, + "tests_per_case": 10.001, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-01", + "total_cases": 1695988.0, + "new_cases": 57118.0, + "new_cases_smoothed": 51303.857, + "total_deaths": 36511.0, + "new_deaths": 764.0, + "new_deaths_smoothed": 736.143, + "total_cases_per_million": 1228.973, + "new_cases_per_million": 41.39, + "new_cases_smoothed_per_million": 37.177, + "total_deaths_per_million": 26.457, + "new_deaths_per_million": 0.554, + "new_deaths_smoothed_per_million": 0.533, + "new_tests": 463172.0, + "total_tests": 19821831.0, + "total_tests_per_thousand": 14.364, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 504357.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 9.831, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-02", + "total_cases": 1750723.0, + "new_cases": 54735.0, + "new_cases_smoothed": 52171.571, + "total_deaths": 37364.0, + "new_deaths": 853.0, + "new_deaths_smoothed": 757.286, + "total_cases_per_million": 1268.636, + "new_cases_per_million": 39.663, + "new_cases_smoothed_per_million": 37.805, + "total_deaths_per_million": 27.075, + "new_deaths_per_million": 0.618, + "new_deaths_smoothed_per_million": 0.549, + "new_tests": 381027.0, + "total_tests": 20202858.0, + "total_tests_per_thousand": 14.64, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 485151.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 9.299, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-03", + "total_cases": 1803695.0, + "new_cases": 52972.0, + "new_cases_smoothed": 52606.0, + "total_deaths": 38135.0, + "new_deaths": 771.0, + "new_deaths_smoothed": 766.286, + "total_cases_per_million": 1307.021, + "new_cases_per_million": 38.385, + "new_cases_smoothed_per_million": 38.12, + "total_deaths_per_million": 27.634, + "new_deaths_per_million": 0.559, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 661892.0, + "total_tests": 20864750.0, + "total_tests_per_thousand": 15.119, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 504266.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 9.586, + "positive_rate": 0.10400000000000001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-04", + "total_cases": 1855745.0, + "new_cases": 52050.0, + "new_cases_smoothed": 53227.0, + "total_deaths": 38938.0, + "new_deaths": 803.0, + "new_deaths_smoothed": 787.571, + "total_cases_per_million": 1344.738, + "new_cases_per_million": 37.717, + "new_cases_smoothed_per_million": 38.57, + "total_deaths_per_million": 28.216, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.571, + "new_tests": 619652.0, + "total_tests": 21484402.0, + "total_tests_per_thousand": 15.568, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 534380.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 10.04, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-05", + "total_cases": 1908254.0, + "new_cases": 52509.0, + "new_cases_smoothed": 53797.857, + "total_deaths": 39795.0, + "new_deaths": 857.0, + "new_deaths_smoothed": 800.286, + "total_cases_per_million": 1382.788, + "new_cases_per_million": 38.05, + "new_cases_smoothed_per_million": 38.984, + "total_deaths_per_million": 28.837, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.58, + "new_tests": 664949.0, + "total_tests": 22149351.0, + "total_tests_per_thousand": 16.05, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 565567.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 10.513, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-06", + "total_cases": 1964536.0, + "new_cases": 56282.0, + "new_cases_smoothed": 54392.0, + "total_deaths": 40699.0, + "new_deaths": 904.0, + "new_deaths_smoothed": 818.714, + "total_cases_per_million": 1423.572, + "new_cases_per_million": 40.784, + "new_cases_smoothed_per_million": 39.414, + "total_deaths_per_million": 29.492, + "new_deaths_per_million": 0.655, + "new_deaths_smoothed_per_million": 0.593, + "new_tests": 639042.0, + "total_tests": 22788393.0, + "total_tests_per_thousand": 16.513, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 565060.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 10.389000000000001, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-07", + "total_cases": 2027074.0, + "new_cases": 62538.0, + "new_cases_smoothed": 55457.714, + "total_deaths": 41585.0, + "new_deaths": 886.0, + "new_deaths_smoothed": 834.0, + "total_cases_per_million": 1468.89, + "new_cases_per_million": 45.317, + "new_cases_smoothed_per_million": 40.187, + "total_deaths_per_million": 30.134, + "new_deaths_per_million": 0.642, + "new_deaths_smoothed_per_million": 0.604, + "new_tests": 598778.0, + "total_tests": 23387171.0, + "total_tests_per_thousand": 16.947, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 575502.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 10.377, + "positive_rate": 0.096, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-08", + "total_cases": 2088611.0, + "new_cases": 61537.0, + "new_cases_smoothed": 56089.0, + "total_deaths": 42518.0, + "new_deaths": 933.0, + "new_deaths_smoothed": 858.143, + "total_cases_per_million": 1513.481, + "new_cases_per_million": 44.592, + "new_cases_smoothed_per_million": 40.644, + "total_deaths_per_million": 30.81, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 0.622, + "new_tests": 719364.0, + "total_tests": 24106535.0, + "total_tests_per_thousand": 17.468, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 612101.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 10.913, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-09", + "total_cases": 2153010.0, + "new_cases": 64399.0, + "new_cases_smoothed": 57469.571, + "total_deaths": 43379.0, + "new_deaths": 861.0, + "new_deaths_smoothed": 859.286, + "total_cases_per_million": 1560.147, + "new_cases_per_million": 46.666, + "new_cases_smoothed_per_million": 41.644, + "total_deaths_per_million": 31.434, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 0.623, + "new_tests": 477023.0, + "total_tests": 24583558.0, + "total_tests_per_thousand": 17.814, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 625814.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 10.889000000000001, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-10", + "total_cases": 2215074.0, + "new_cases": 62064.0, + "new_cases_smoothed": 58768.429, + "total_deaths": 44386.0, + "new_deaths": 1007.0, + "new_deaths_smoothed": 893.0, + "total_cases_per_million": 1605.121, + "new_cases_per_million": 44.974, + "new_cases_smoothed_per_million": 42.586, + "total_deaths_per_million": 32.164, + "new_deaths_per_million": 0.73, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 698290.0, + "total_tests": 25281848.0, + "total_tests_per_thousand": 18.32, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 631014.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 10.737, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-11", + "total_cases": 2268675.0, + "new_cases": 53601.0, + "new_cases_smoothed": 58990.0, + "total_deaths": 45257.0, + "new_deaths": 871.0, + "new_deaths_smoothed": 902.714, + "total_cases_per_million": 1643.962, + "new_cases_per_million": 38.841, + "new_cases_smoothed_per_million": 42.746, + "total_deaths_per_million": 32.795, + "new_deaths_per_million": 0.631, + "new_deaths_smoothed_per_million": 0.654, + "new_tests": 733449.0, + "total_tests": 26015297.0, + "total_tests_per_thousand": 18.852, + "new_tests_per_thousand": 0.531, + "new_tests_smoothed": 647271.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 10.972999999999999, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-12", + "total_cases": 2329638.0, + "new_cases": 60963.0, + "new_cases_smoothed": 60197.714, + "total_deaths": 46091.0, + "new_deaths": 834.0, + "new_deaths_smoothed": 899.429, + "total_cases_per_million": 1688.138, + "new_cases_per_million": 44.176, + "new_cases_smoothed_per_million": 43.621, + "total_deaths_per_million": 33.399, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.652, + "new_tests": 830391.0, + "total_tests": 26845688.0, + "total_tests_per_thousand": 19.453, + "new_tests_per_thousand": 0.602, + "new_tests_smoothed": 670905.0, + "new_tests_smoothed_per_thousand": 0.486, + "tests_per_case": 11.145, + "positive_rate": 0.09, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-13", + "total_cases": 2396637.0, + "new_cases": 66999.0, + "new_cases_smoothed": 61728.714, + "total_deaths": 47033.0, + "new_deaths": 942.0, + "new_deaths_smoothed": 904.857, + "total_cases_per_million": 1736.688, + "new_cases_per_million": 48.55, + "new_cases_smoothed_per_million": 44.731, + "total_deaths_per_million": 34.082, + "new_deaths_per_million": 0.683, + "new_deaths_smoothed_per_million": 0.656, + "new_tests": 848728.0, + "total_tests": 27694416.0, + "total_tests_per_thousand": 20.068, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 700860.0, + "new_tests_smoothed_per_thousand": 0.508, + "tests_per_case": 11.354000000000001, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-14", + "total_cases": 2461190.0, + "new_cases": 64553.0, + "new_cases_smoothed": 62016.571, + "total_deaths": 48040.0, + "new_deaths": 1007.0, + "new_deaths_smoothed": 922.143, + "total_cases_per_million": 1783.465, + "new_cases_per_million": 46.777, + "new_cases_smoothed_per_million": 44.939, + "total_deaths_per_million": 34.811, + "new_deaths_per_million": 0.73, + "new_deaths_smoothed_per_million": 0.668, + "new_tests": 868679.0, + "total_tests": 28563095.0, + "total_tests_per_thousand": 20.698, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 739418.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 11.923, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-15", + "total_cases": 2526192.0, + "new_cases": 65002.0, + "new_cases_smoothed": 62511.571, + "total_deaths": 49036.0, + "new_deaths": 996.0, + "new_deaths_smoothed": 931.143, + "total_cases_per_million": 1830.568, + "new_cases_per_million": 47.103, + "new_cases_smoothed_per_million": 45.298, + "total_deaths_per_million": 35.533, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.675, + "new_tests": 746608.0, + "total_tests": 29309703.0, + "total_tests_per_thousand": 21.239, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 743310.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 11.890999999999998, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-16", + "total_cases": 2589682.0, + "new_cases": 63490.0, + "new_cases_smoothed": 62381.714, + "total_deaths": 49980.0, + "new_deaths": 944.0, + "new_deaths_smoothed": 943.0, + "total_cases_per_million": 1876.575, + "new_cases_per_million": 46.007, + "new_cases_smoothed_per_million": 45.204, + "total_deaths_per_million": 36.217, + "new_deaths_per_million": 0.684, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 731697.0, + "total_tests": 30041400.0, + "total_tests_per_thousand": 21.769, + "new_tests_per_thousand": 0.53, + "new_tests_smoothed": 779692.0, + "new_tests_smoothed_per_thousand": 0.565, + "tests_per_case": 12.499, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-17", + "total_cases": 2647663.0, + "new_cases": 57981.0, + "new_cases_smoothed": 61798.429, + "total_deaths": 50921.0, + "new_deaths": 941.0, + "new_deaths_smoothed": 933.571, + "total_cases_per_million": 1918.59, + "new_cases_per_million": 42.015, + "new_cases_smoothed_per_million": 44.781, + "total_deaths_per_million": 36.899, + "new_deaths_per_million": 0.682, + "new_deaths_smoothed_per_million": 0.676, + "new_tests": 899864.0, + "total_tests": 30941264.0, + "total_tests_per_thousand": 22.421, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 808488.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 13.083, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-18", + "total_cases": 2702742.0, + "new_cases": 55079.0, + "new_cases_smoothed": 62009.571, + "total_deaths": 51797.0, + "new_deaths": 876.0, + "new_deaths_smoothed": 934.286, + "total_cases_per_million": 1958.502, + "new_cases_per_million": 39.912, + "new_cases_smoothed_per_million": 44.934, + "total_deaths_per_million": 37.534, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.677, + "new_tests": 801518.0, + "total_tests": 31742782.0, + "total_tests_per_thousand": 23.002, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 818212.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 13.195, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-19", + "total_cases": 2767273.0, + "new_cases": 64531.0, + "new_cases_smoothed": 62519.286, + "total_deaths": 52889.0, + "new_deaths": 1092.0, + "new_deaths_smoothed": 971.143, + "total_cases_per_million": 2005.264, + "new_cases_per_million": 46.761, + "new_cases_smoothed_per_million": 45.304, + "total_deaths_per_million": 38.325, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.704, + "new_tests": 918470.0, + "total_tests": 32661252.0, + "total_tests_per_thousand": 23.667, + "new_tests_per_thousand": 0.666, + "new_tests_smoothed": 830795.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 13.289000000000001, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-20", + "total_cases": 2836925.0, + "new_cases": 69652.0, + "new_cases_smoothed": 62898.286, + "total_deaths": 53866.0, + "new_deaths": 977.0, + "new_deaths_smoothed": 976.143, + "total_cases_per_million": 2055.736, + "new_cases_per_million": 50.472, + "new_cases_smoothed_per_million": 45.578, + "total_deaths_per_million": 39.033, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.707, + "new_tests": 805985.0, + "total_tests": 33467237.0, + "total_tests_per_thousand": 24.252, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 824689.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 13.110999999999999, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-21", + "total_cases": 2905823.0, + "new_cases": 68898.0, + "new_cases_smoothed": 63519.0, + "total_deaths": 54849.0, + "new_deaths": 983.0, + "new_deaths_smoothed": 972.714, + "total_cases_per_million": 2105.662, + "new_cases_per_million": 49.926, + "new_cases_smoothed_per_million": 46.028, + "total_deaths_per_million": 39.746, + "new_deaths_per_million": 0.712, + "new_deaths_smoothed_per_million": 0.705, + "new_tests": 1023836.0, + "total_tests": 34491073.0, + "total_tests_per_thousand": 24.993, + "new_tests_per_thousand": 0.742, + "new_tests_smoothed": 846854.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 13.332, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-22", + "total_cases": 2975701.0, + "new_cases": 69878.0, + "new_cases_smoothed": 64215.571, + "total_deaths": 55794.0, + "new_deaths": 945.0, + "new_deaths_smoothed": 965.429, + "total_cases_per_million": 2156.298, + "new_cases_per_million": 50.636, + "new_cases_smoothed_per_million": 46.533, + "total_deaths_per_million": 40.43, + "new_deaths_per_million": 0.685, + "new_deaths_smoothed_per_million": 0.7, + "new_tests": 801147.0, + "total_tests": 35292220.0, + "total_tests_per_thousand": 25.574, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 854645.0, + "new_tests_smoothed_per_thousand": 0.619, + "tests_per_case": 13.309000000000001, + "positive_rate": 0.075, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-23", + "total_cases": 3044940.0, + "new_cases": 69239.0, + "new_cases_smoothed": 65036.857, + "total_deaths": 56706.0, + "new_deaths": 912.0, + "new_deaths_smoothed": 960.857, + "total_cases_per_million": 2206.471, + "new_cases_per_million": 50.173, + "new_cases_smoothed_per_million": 47.128, + "total_deaths_per_million": 41.091, + "new_deaths_per_million": 0.661, + "new_deaths_smoothed_per_million": 0.696, + "new_tests": 609917.0, + "total_tests": 35902137.0, + "total_tests_per_thousand": 26.016, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 837248.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 12.873, + "positive_rate": 0.078, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-24", + "total_cases": 3106348.0, + "new_cases": 61408.0, + "new_cases_smoothed": 65526.429, + "total_deaths": 57542.0, + "new_deaths": 836.0, + "new_deaths_smoothed": 945.857, + "total_cases_per_million": 2250.97, + "new_cases_per_million": 44.498, + "new_cases_smoothed_per_million": 47.483, + "total_deaths_per_million": 41.697, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 925383.0, + "total_tests": 36827520.0, + "total_tests_per_thousand": 26.687, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 840894.0, + "new_tests_smoothed_per_thousand": 0.609, + "tests_per_case": 12.833, + "positive_rate": 0.078, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-25", + "total_cases": 3167323.0, + "new_cases": 60975.0, + "new_cases_smoothed": 66368.714, + "total_deaths": 58390.0, + "new_deaths": 848.0, + "new_deaths_smoothed": 941.857, + "total_cases_per_million": 2295.154, + "new_cases_per_million": 44.185, + "new_cases_smoothed_per_million": 48.093, + "total_deaths_per_million": 42.311, + "new_deaths_per_million": 0.614, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 823992.0, + "total_tests": 37651512.0, + "total_tests_per_thousand": 27.284, + "new_tests_per_thousand": 0.597, + "new_tests_smoothed": 844104.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 12.718, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-26", + "total_cases": 3234474.0, + "new_cases": 67151.0, + "new_cases_smoothed": 66743.0, + "total_deaths": 59449.0, + "new_deaths": 1059.0, + "new_deaths_smoothed": 937.143, + "total_cases_per_million": 2343.814, + "new_cases_per_million": 48.66, + "new_cases_smoothed_per_million": 48.364, + "total_deaths_per_million": 43.079, + "new_deaths_per_million": 0.767, + "new_deaths_smoothed_per_million": 0.679, + "new_tests": 924998.0, + "total_tests": 38576510.0, + "total_tests_per_thousand": 27.954, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 845037.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 12.661, + "positive_rate": 0.079, + "tests_units": "samples tested" + }, + { + "date": "2020-08-27", + "total_cases": 3310234.0, + "new_cases": 75760.0, + "new_cases_smoothed": 67615.571, + "total_deaths": 60472.0, + "new_deaths": 1023.0, + "new_deaths_smoothed": 943.714, + "total_cases_per_million": 2398.713, + "new_cases_per_million": 54.898, + "new_cases_smoothed_per_million": 48.997, + "total_deaths_per_million": 43.82, + "new_deaths_per_million": 0.741, + "new_deaths_smoothed_per_million": 0.684, + "new_tests": 901338.0, + "total_tests": 39477848.0, + "total_tests_per_thousand": 28.607, + "new_tests_per_thousand": 0.653, + "new_tests_smoothed": 858659.0, + "new_tests_smoothed_per_thousand": 0.622, + "tests_per_case": 12.699000000000002, + "positive_rate": 0.079, + "tests_units": "samples tested" + }, + { + "date": "2020-08-28", + "total_cases": 3387500.0, + "new_cases": 77266.0, + "new_cases_smoothed": 68811.0, + "total_deaths": 61529.0, + "new_deaths": 1057.0, + "new_deaths_smoothed": 954.286, + "total_cases_per_million": 2454.702, + "new_cases_per_million": 55.99, + "new_cases_smoothed_per_million": 49.863, + "total_deaths_per_million": 44.586, + "new_deaths_per_million": 0.766, + "new_deaths_smoothed_per_million": 0.692, + "new_tests": 928761.0, + "total_tests": 40406609.0, + "total_tests_per_thousand": 29.28, + "new_tests_per_thousand": 0.673, + "new_tests_smoothed": 845077.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 12.280999999999999, + "positive_rate": 0.081, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 3463972.0, + "new_cases": 76472.0, + "new_cases_smoothed": 69753.0, + "total_deaths": 62550.0, + "new_deaths": 1021.0, + "new_deaths_smoothed": 965.143, + "total_cases_per_million": 2510.117, + "new_cases_per_million": 55.414, + "new_cases_smoothed_per_million": 50.545, + "total_deaths_per_million": 45.326, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.699, + "new_tests": 1055027.0, + "total_tests": 41461636.0, + "total_tests_per_thousand": 30.045, + "new_tests_per_thousand": 0.765, + "new_tests_smoothed": 881345.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 12.635, + "positive_rate": 0.079, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 3542733.0, + "new_cases": 78761.0, + "new_cases_smoothed": 71113.286, + "total_deaths": 63498.0, + "new_deaths": 948.0, + "new_deaths_smoothed": 970.286, + "total_cases_per_million": 2567.19, + "new_cases_per_million": 57.073, + "new_cases_smoothed_per_million": 51.531, + "total_deaths_per_million": 46.013, + "new_deaths_per_million": 0.687, + "new_deaths_smoothed_per_million": 0.703, + "new_tests": 846278.0, + "total_tests": 42307914.0, + "total_tests_per_thousand": 30.658, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 915111.0, + "new_tests_smoothed_per_thousand": 0.663, + "tests_per_case": 12.868, + "positive_rate": 0.078, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 3621245.0, + "new_cases": 78512.0, + "new_cases_smoothed": 73556.714, + "total_deaths": 64469.0, + "new_deaths": 971.0, + "new_deaths_smoothed": 989.571, + "total_cases_per_million": 2624.082, + "new_cases_per_million": 56.893, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 46.717, + "new_deaths_per_million": 0.704, + "new_deaths_smoothed_per_million": 0.717, + "new_tests": 1016920.0, + "total_tests": 43324834.0, + "total_tests_per_thousand": 31.395, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 928188.0, + "new_tests_smoothed_per_thousand": 0.673, + "tests_per_case": 12.619000000000002, + "positive_rate": 0.079, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 3691166.0, + "new_cases": 69921.0, + "new_cases_smoothed": 74834.714, + "total_deaths": 65228.0, + "new_deaths": 759.0, + "new_deaths_smoothed": 976.857, + "total_cases_per_million": 2674.749, + "new_cases_per_million": 50.667, + "new_cases_smoothed_per_million": 54.228, + "total_deaths_per_million": 47.267, + "new_deaths_per_million": 0.55, + "new_deaths_smoothed_per_million": 0.708, + "new_tests": 1012367.0, + "total_tests": 44337201.0, + "total_tests_per_thousand": 32.128, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 955098.0, + "new_tests_smoothed_per_thousand": 0.692, + "tests_per_case": 12.763, + "positive_rate": 0.078, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 3769523.0, + "new_cases": 78357.0, + "new_cases_smoothed": 76435.571, + "total_deaths": 66333.0, + "new_deaths": 1105.0, + "new_deaths_smoothed": 983.429, + "total_cases_per_million": 2731.53, + "new_cases_per_million": 56.78, + "new_cases_smoothed_per_million": 55.388, + "total_deaths_per_million": 48.067, + "new_deaths_per_million": 0.801, + "new_deaths_smoothed_per_million": 0.713, + "new_tests": 1172179.0, + "total_tests": 45509380.0, + "total_tests_per_thousand": 32.978, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 990410.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 12.957, + "positive_rate": 0.077, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 3853406.0, + "new_cases": 83883.0, + "new_cases_smoothed": 77596.0, + "total_deaths": 67376.0, + "new_deaths": 1043.0, + "new_deaths_smoothed": 986.286, + "total_cases_per_million": 2792.314, + "new_cases_per_million": 60.785, + "new_cases_smoothed_per_million": 56.229, + "total_deaths_per_million": 48.823, + "new_deaths_per_million": 0.756, + "new_deaths_smoothed_per_million": 0.715 + }, + { + "date": "2020-09-04", + "total_cases": 3936747.0, + "new_cases": 83341.0, + "new_cases_smoothed": 78463.857, + "total_deaths": 68472.0, + "new_deaths": 1096.0, + "new_deaths_smoothed": 991.857, + "total_cases_per_million": 2852.706, + "new_cases_per_million": 60.392, + "new_cases_smoothed_per_million": 56.858, + "total_deaths_per_million": 49.617, + "new_deaths_per_million": 0.794, + "new_deaths_smoothed_per_million": 0.719 + }, + { + "date": "2020-09-05", + "total_cases": 4023179.0, + "new_cases": 86432.0, + "new_cases_smoothed": 79886.714, + "total_deaths": 69561.0, + "new_deaths": 1089.0, + "new_deaths_smoothed": 1001.571, + "total_cases_per_million": 2915.338, + "new_cases_per_million": 62.632, + "new_cases_smoothed_per_million": 57.889, + "total_deaths_per_million": 50.406, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.726 + } + ] + }, + "IDN": { + "continent": "Asia", + "location": "Indonesia", + "population": 273523621.0, + "population_density": 145.725, + "median_age": 29.3, + "aged_65_older": 5.319, + "aged_70_older": 3.053, + "gdp_per_capita": 11188.744, + "extreme_poverty": 5.7, + "cardiovasc_death_rate": 342.864, + "diabetes_prevalence": 6.32, + "female_smokers": 2.8, + "male_smokers": 76.1, + "handwashing_facilities": 64.204, + "hospital_beds_per_thousand": 1.04, + "life_expectancy": 71.72, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-02", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.007, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-07", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-09", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-11", + "total_cases": 19.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.048, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-12", + "total_cases": 34.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.004, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 37.04 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 4.571, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 37.04 + }, + { + "date": "2020-03-14", + "total_cases": 69.0, + "new_cases": 35.0, + "new_cases_smoothed": 9.286, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.252, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 37.04 + }, + { + "date": "2020-03-15", + "total_cases": 96.0, + "new_cases": 27.0, + "new_cases_smoothed": 13.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.351, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 40.74 + }, + { + "date": "2020-03-16", + "total_cases": 117.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.428, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 1230.0, + "total_tests_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-03-17", + "total_cases": 134.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.49, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 25.0, + "total_tests": 1255.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-18", + "total_cases": 172.0, + "new_cases": 38.0, + "new_cases_smoothed": 21.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.629, + "new_cases_per_million": 0.139, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "people tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-19", + "total_cases": 172.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.629, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "total_tests": 1651.0, + "total_tests_per_thousand": 0.006, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-03-20", + "total_cases": 227.0, + "new_cases": 55.0, + "new_cases_smoothed": 27.571, + "total_deaths": 19.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 0.83, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 247.0, + "total_tests": 1898.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-03-21", + "total_cases": 309.0, + "new_cases": 82.0, + "new_cases_smoothed": 34.286, + "total_deaths": 25.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1.13, + "new_cases_per_million": 0.3, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.011, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-03-22", + "total_cases": 450.0, + "new_cases": 141.0, + "new_cases_smoothed": 50.571, + "total_deaths": 38.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1.645, + "new_cases_per_million": 0.515, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 0.139, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 2409.0, + "total_tests_per_thousand": 0.009, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-03-23", + "total_cases": 514.0, + "new_cases": 64.0, + "new_cases_smoothed": 56.714, + "total_deaths": 48.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1.879, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 74.0, + "total_tests": 2483.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.156, + "positive_rate": 0.317, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-03-24", + "total_cases": 579.0, + "new_cases": 65.0, + "new_cases_smoothed": 63.571, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2.117, + "new_cases_per_million": 0.238, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 0.179, + "new_deaths_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 380.0, + "total_tests": 2863.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 230.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.6180000000000003, + "positive_rate": 0.276, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-03-25", + "total_cases": 686.0, + "new_cases": 107.0, + "new_cases_smoothed": 73.429, + "total_deaths": 55.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2.508, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 279.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.8, + "positive_rate": 0.263, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-03-26", + "total_cases": 790.0, + "new_cases": 104.0, + "new_cases_smoothed": 88.286, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 2.888, + "new_cases_per_million": 0.38, + "new_cases_smoothed_per_million": 0.323, + "total_deaths_per_million": 0.212, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.715, + "positive_rate": 0.26899999999999996, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-03-27", + "total_cases": 893.0, + "new_cases": 103.0, + "new_cases_smoothed": 95.143, + "total_deaths": 78.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3.265, + "new_cases_per_million": 0.377, + "new_cases_smoothed_per_million": 0.348, + "total_deaths_per_million": 0.285, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.031, + "total_tests": 4489.0, + "total_tests_per_thousand": 0.016, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.889, + "positive_rate": 0.257, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-03-28", + "total_cases": 1046.0, + "new_cases": 153.0, + "new_cases_smoothed": 105.286, + "total_deaths": 87.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 3.824, + "new_cases_per_million": 0.559, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 0.318, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1286.0, + "total_tests": 5775.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 517.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.91, + "positive_rate": 0.204, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-03-29", + "total_cases": 1155.0, + "new_cases": 109.0, + "new_cases_smoothed": 100.714, + "total_deaths": 102.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 4.223, + "new_cases_per_million": 0.399, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 0.373, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 491.0, + "total_tests": 6266.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 551.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 5.471, + "positive_rate": 0.183, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-30", + "total_cases": 1285.0, + "new_cases": 130.0, + "new_cases_smoothed": 110.143, + "total_deaths": 114.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 4.698, + "new_cases_per_million": 0.475, + "new_cases_smoothed_per_million": 0.403, + "total_deaths_per_million": 0.417, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 268.0, + "total_tests": 6534.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 579.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 5.257000000000001, + "positive_rate": 0.19, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-31", + "total_cases": 1414.0, + "new_cases": 129.0, + "new_cases_smoothed": 119.286, + "total_deaths": 122.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 5.17, + "new_cases_per_million": 0.472, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.446, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 129.0, + "total_tests": 6663.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 543.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.552, + "positive_rate": 0.22, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-01", + "total_cases": 1528.0, + "new_cases": 114.0, + "new_cases_smoothed": 120.286, + "total_deaths": 136.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 5.586, + "new_cases_per_million": 0.417, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.497, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 114.0, + "total_tests": 6777.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 482.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.007, + "positive_rate": 0.25, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-02", + "total_cases": 1677.0, + "new_cases": 149.0, + "new_cases_smoothed": 126.714, + "total_deaths": 157.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 6.131, + "new_cases_per_million": 0.545, + "new_cases_smoothed_per_million": 0.463, + "total_deaths_per_million": 0.574, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 416.0, + "total_tests": 7193.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 464.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 3.662, + "positive_rate": 0.273, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-03", + "total_cases": 1790.0, + "new_cases": 113.0, + "new_cases_smoothed": 128.143, + "total_deaths": 170.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 6.544, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.468, + "total_deaths_per_million": 0.622, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 428.0, + "total_tests": 7621.0, + "total_tests_per_thousand": 0.028, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 447.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 3.488, + "positive_rate": 0.287, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-04", + "total_cases": 1986.0, + "new_cases": 196.0, + "new_cases_smoothed": 134.286, + "total_deaths": 181.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 7.261, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.491, + "total_deaths_per_million": 0.662, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 365.0, + "total_tests": 7986.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 316.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 2.353, + "positive_rate": 0.425, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-05", + "total_cases": 2092.0, + "new_cases": 106.0, + "new_cases_smoothed": 133.857, + "total_deaths": 191.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 7.648, + "new_cases_per_million": 0.388, + "new_cases_smoothed_per_million": 0.489, + "total_deaths_per_million": 0.698, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.046, + "new_tests_smoothed": 494.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 3.6910000000000003, + "positive_rate": 0.271, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-06", + "total_cases": 2273.0, + "new_cases": 181.0, + "new_cases_smoothed": 141.143, + "total_deaths": 198.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 8.31, + "new_cases_per_million": 0.662, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 0.724, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.044, + "total_tests": 11460.0, + "total_tests_per_thousand": 0.042, + "new_tests_smoothed": 704.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 4.988, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-04-07", + "total_cases": 2491.0, + "new_cases": 218.0, + "new_cases_smoothed": 153.857, + "total_deaths": 209.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 9.107, + "new_cases_per_million": 0.797, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.764, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 1973.0, + "total_tests": 13433.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 967.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 6.285, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 60.65 + }, + { + "date": "2020-04-08", + "total_cases": 2738.0, + "new_cases": 247.0, + "new_cases_smoothed": 172.857, + "total_deaths": 221.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 10.01, + "new_cases_per_million": 0.903, + "new_cases_smoothed_per_million": 0.632, + "total_deaths_per_million": 0.808, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1138.0, + "total_tests": 14571.0, + "total_tests_per_thousand": 0.053, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 1113.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 6.439, + "positive_rate": 0.155, + "tests_units": "people tested", + "stringency_index": 60.65 + }, + { + "date": "2020-04-09", + "total_cases": 2956.0, + "new_cases": 218.0, + "new_cases_smoothed": 182.714, + "total_deaths": 240.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 10.807, + "new_cases_per_million": 0.797, + "new_cases_smoothed_per_million": 0.668, + "total_deaths_per_million": 0.877, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2277.0, + "total_tests": 16848.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1379.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 7.547000000000001, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 60.65 + }, + { + "date": "2020-04-10", + "total_cases": 3293.0, + "new_cases": 337.0, + "new_cases_smoothed": 214.714, + "total_deaths": 280.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 12.039, + "new_cases_per_million": 1.232, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 1.024, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 2604.0, + "total_tests": 19452.0, + "total_tests_per_thousand": 0.071, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 1690.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 7.871, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-11", + "total_cases": 3512.0, + "new_cases": 219.0, + "new_cases_smoothed": 218.0, + "total_deaths": 306.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 12.84, + "new_cases_per_million": 0.801, + "new_cases_smoothed_per_million": 0.797, + "total_deaths_per_million": 1.119, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 330.0, + "total_tests": 19782.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1685.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 7.729, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-12", + "total_cases": 3842.0, + "new_cases": 330.0, + "new_cases_smoothed": 250.0, + "total_deaths": 327.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 14.046, + "new_cases_per_million": 1.206, + "new_cases_smoothed_per_million": 0.914, + "total_deaths_per_million": 1.196, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 7293.0, + "total_tests": 27075.0, + "total_tests_per_thousand": 0.099, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 2479.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 9.916, + "positive_rate": 0.10099999999999999, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-13", + "total_cases": 4241.0, + "new_cases": 399.0, + "new_cases_smoothed": 281.143, + "total_deaths": 373.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 15.505, + "new_cases_per_million": 1.459, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 1.364, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 316.0, + "total_tests": 27391.0, + "total_tests_per_thousand": 0.1, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 2276.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 8.096, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-14", + "total_cases": 4557.0, + "new_cases": 316.0, + "new_cases_smoothed": 295.143, + "total_deaths": 399.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 16.66, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 1.079, + "total_deaths_per_million": 1.459, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4237.0, + "total_tests": 31628.0, + "total_tests_per_thousand": 0.116, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 2599.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 8.806000000000001, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-15", + "total_cases": 4839.0, + "new_cases": 282.0, + "new_cases_smoothed": 300.143, + "total_deaths": 459.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 17.691, + "new_cases_per_million": 1.031, + "new_cases_smoothed_per_million": 1.097, + "total_deaths_per_million": 1.678, + "new_deaths_per_million": 0.219, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 1373.0, + "total_tests": 33001.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 2633.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 8.772, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-16", + "total_cases": 5136.0, + "new_cases": 297.0, + "new_cases_smoothed": 311.429, + "total_deaths": 469.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 18.777, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 1.139, + "total_deaths_per_million": 1.715, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 1974.0, + "total_tests": 34975.0, + "total_tests_per_thousand": 0.128, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 2590.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 8.317, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-17", + "total_cases": 5516.0, + "new_cases": 380.0, + "new_cases_smoothed": 317.571, + "total_deaths": 496.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 20.166, + "new_cases_per_million": 1.389, + "new_cases_smoothed_per_million": 1.161, + "total_deaths_per_million": 1.813, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 2159.0, + "total_tests": 37134.0, + "total_tests_per_thousand": 0.136, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 2526.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 7.954, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-18", + "total_cases": 5923.0, + "new_cases": 407.0, + "new_cases_smoothed": 344.429, + "total_deaths": 520.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 21.654, + "new_cases_per_million": 1.488, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 1.901, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 2288.0, + "total_tests": 39422.0, + "total_tests_per_thousand": 0.144, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 2806.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 8.147, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-19", + "total_cases": 6248.0, + "new_cases": 325.0, + "new_cases_smoothed": 343.714, + "total_deaths": 535.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 22.843, + "new_cases_per_million": 1.188, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 1.956, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 2797.0, + "total_tests": 42219.0, + "total_tests_per_thousand": 0.154, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2163.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 6.292999999999999, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-20", + "total_cases": 6575.0, + "new_cases": 327.0, + "new_cases_smoothed": 333.429, + "total_deaths": 582.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 24.038, + "new_cases_per_million": 1.196, + "new_cases_smoothed_per_million": 1.219, + "total_deaths_per_million": 2.128, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 1530.0, + "total_tests": 43749.0, + "total_tests_per_thousand": 0.16, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 2337.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 7.0089999999999995, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-21", + "total_cases": 6760.0, + "new_cases": 185.0, + "new_cases_smoothed": 314.714, + "total_deaths": 590.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 24.715, + "new_cases_per_million": 0.676, + "new_cases_smoothed_per_million": 1.151, + "total_deaths_per_million": 2.157, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 2424.0, + "total_tests": 46173.0, + "total_tests_per_thousand": 0.169, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2078.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 6.603, + "positive_rate": 0.151, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-22", + "total_cases": 7135.0, + "new_cases": 375.0, + "new_cases_smoothed": 328.0, + "total_deaths": 616.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 26.085, + "new_cases_per_million": 1.371, + "new_cases_smoothed_per_million": 1.199, + "total_deaths_per_million": 2.252, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1188.0, + "total_tests": 47361.0, + "total_tests_per_thousand": 0.173, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 2051.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 6.252999999999999, + "positive_rate": 0.16, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-23", + "total_cases": 7418.0, + "new_cases": 283.0, + "new_cases_smoothed": 326.0, + "total_deaths": 635.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 23.714, + "total_cases_per_million": 27.12, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 1.192, + "total_deaths_per_million": 2.322, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 1286.0, + "total_tests": 48647.0, + "total_tests_per_thousand": 0.178, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1953.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.9910000000000005, + "positive_rate": 0.16699999999999998, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-04-24", + "total_cases": 7775.0, + "new_cases": 357.0, + "new_cases_smoothed": 322.714, + "total_deaths": 647.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 28.425, + "new_cases_per_million": 1.305, + "new_cases_smoothed_per_million": 1.18, + "total_deaths_per_million": 2.365, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 1916.0, + "total_tests": 50563.0, + "total_tests_per_thousand": 0.185, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1918.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.943, + "positive_rate": 0.168, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-25", + "total_cases": 8211.0, + "new_cases": 436.0, + "new_cases_smoothed": 326.857, + "total_deaths": 689.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 30.019, + "new_cases_per_million": 1.594, + "new_cases_smoothed_per_million": 1.195, + "total_deaths_per_million": 2.519, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 1978.0, + "total_tests": 52541.0, + "total_tests_per_thousand": 0.192, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1874.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.733, + "positive_rate": 0.174, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-26", + "total_cases": 8607.0, + "new_cases": 396.0, + "new_cases_smoothed": 337.0, + "total_deaths": 720.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 31.467, + "new_cases_per_million": 1.448, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 2.632, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 4433.0, + "total_tests": 56974.0, + "total_tests_per_thousand": 0.208, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 2108.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 6.255, + "positive_rate": 0.16, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-27", + "total_cases": 8882.0, + "new_cases": 275.0, + "new_cases_smoothed": 329.571, + "total_deaths": 743.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 32.473, + "new_cases_per_million": 1.005, + "new_cases_smoothed_per_million": 1.205, + "total_deaths_per_million": 2.716, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2435.0, + "total_tests": 59409.0, + "total_tests_per_thousand": 0.217, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2237.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 6.787999999999999, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-28", + "total_cases": 9096.0, + "new_cases": 214.0, + "new_cases_smoothed": 333.714, + "total_deaths": 765.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 33.255, + "new_cases_per_million": 0.782, + "new_cases_smoothed_per_million": 1.22, + "total_deaths_per_million": 2.797, + "new_deaths_per_million": 0.08, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 3135.0, + "total_tests": 62544.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 2339.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 7.0089999999999995, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-29", + "total_cases": 9511.0, + "new_cases": 415.0, + "new_cases_smoothed": 339.429, + "total_deaths": 773.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 34.772, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 1.241, + "total_deaths_per_million": 2.826, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 5240.0, + "total_tests": 67784.0, + "total_tests_per_thousand": 0.248, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 2918.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 8.597000000000001, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-04-30", + "total_cases": 9771.0, + "new_cases": 260.0, + "new_cases_smoothed": 336.143, + "total_deaths": 784.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 35.723, + "new_cases_per_million": 0.951, + "new_cases_smoothed_per_million": 1.229, + "total_deaths_per_million": 2.866, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 4567.0, + "total_tests": 72351.0, + "total_tests_per_thousand": 0.265, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 3386.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 10.073, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-05-01", + "total_cases": 10118.0, + "new_cases": 347.0, + "new_cases_smoothed": 334.714, + "total_deaths": 792.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 36.991, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 1.224, + "total_deaths_per_million": 2.896, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 4187.0, + "total_tests": 76538.0, + "total_tests_per_thousand": 0.28, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3711.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 11.087, + "positive_rate": 0.09, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-05-02", + "total_cases": 10551.0, + "new_cases": 433.0, + "new_cases_smoothed": 334.286, + "total_deaths": 800.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 38.574, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 1.222, + "total_deaths_per_million": 2.925, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3330.0, + "total_tests": 79868.0, + "total_tests_per_thousand": 0.292, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 11.679, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 80.09 + }, + { + "date": "2020-05-03", + "total_cases": 10843.0, + "new_cases": 292.0, + "new_cases_smoothed": 319.429, + "total_deaths": 831.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 39.642, + "new_cases_per_million": 1.068, + "new_cases_smoothed_per_million": 1.168, + "total_deaths_per_million": 3.038, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3144.0, + "total_tests": 83012.0, + "total_tests_per_thousand": 0.303, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 3720.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 11.645999999999999, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-04", + "total_cases": 11192.0, + "new_cases": 349.0, + "new_cases_smoothed": 330.0, + "total_deaths": 845.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 40.918, + "new_cases_per_million": 1.276, + "new_cases_smoothed_per_million": 1.206, + "total_deaths_per_million": 3.089, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3049.0, + "total_tests": 86061.0, + "total_tests_per_thousand": 0.315, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 3807.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 11.536, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-05", + "total_cases": 11587.0, + "new_cases": 395.0, + "new_cases_smoothed": 355.857, + "total_deaths": 864.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 42.362, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 3.159, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2863.0, + "total_tests": 88924.0, + "total_tests_per_thousand": 0.325, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 3769.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 10.591, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-06", + "total_cases": 12071.0, + "new_cases": 484.0, + "new_cases_smoothed": 365.714, + "total_deaths": 872.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 44.131, + "new_cases_per_million": 1.769, + "new_cases_smoothed_per_million": 1.337, + "total_deaths_per_million": 3.188, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4052.0, + "total_tests": 92976.0, + "total_tests_per_thousand": 0.34, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3599.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 9.841000000000001, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-07", + "total_cases": 12438.0, + "new_cases": 367.0, + "new_cases_smoothed": 381.0, + "total_deaths": 895.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 45.473, + "new_cases_per_million": 1.342, + "new_cases_smoothed_per_million": 1.393, + "total_deaths_per_million": 3.272, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3741.0, + "total_tests": 96717.0, + "total_tests_per_thousand": 0.354, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 3481.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 9.136000000000001, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-08", + "total_cases": 12776.0, + "new_cases": 338.0, + "new_cases_smoothed": 379.714, + "total_deaths": 930.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 46.709, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.388, + "total_deaths_per_million": 3.4, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 6644.0, + "total_tests": 103361.0, + "total_tests_per_thousand": 0.378, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 3832.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 10.092, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-09", + "total_cases": 13112.0, + "new_cases": 336.0, + "new_cases_smoothed": 365.857, + "total_deaths": 943.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 47.937, + "new_cases_per_million": 1.228, + "new_cases_smoothed_per_million": 1.338, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 5338.0, + "total_tests": 108699.0, + "total_tests_per_thousand": 0.397, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 4119.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 11.258, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-10", + "total_cases": 13645.0, + "new_cases": 533.0, + "new_cases_smoothed": 400.286, + "total_deaths": 959.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 49.886, + "new_cases_per_million": 1.949, + "new_cases_smoothed_per_million": 1.463, + "total_deaths_per_million": 3.506, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 4753.0, + "total_tests": 113452.0, + "total_tests_per_thousand": 0.415, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 4349.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.865, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-11", + "total_cases": 14032.0, + "new_cases": 387.0, + "new_cases_smoothed": 405.714, + "total_deaths": 973.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 51.301, + "new_cases_per_million": 1.415, + "new_cases_smoothed_per_million": 1.483, + "total_deaths_per_million": 3.557, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 2906.0, + "total_tests": 116358.0, + "total_tests_per_thousand": 0.425, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 4328.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.668, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-12", + "total_cases": 14265.0, + "new_cases": 233.0, + "new_cases_smoothed": 382.571, + "total_deaths": 991.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 52.153, + "new_cases_per_million": 0.852, + "new_cases_smoothed_per_million": 1.399, + "total_deaths_per_million": 3.623, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 3370.0, + "total_tests": 119728.0, + "total_tests_per_thousand": 0.438, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 4401.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 11.504000000000001, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-13", + "total_cases": 14749.0, + "new_cases": 484.0, + "new_cases_smoothed": 382.571, + "total_deaths": 1007.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 53.922, + "new_cases_per_million": 1.769, + "new_cases_smoothed_per_million": 1.399, + "total_deaths_per_million": 3.682, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 3844.0, + "total_tests": 123572.0, + "total_tests_per_thousand": 0.452, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 4371.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 11.425, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-14", + "total_cases": 15438.0, + "new_cases": 689.0, + "new_cases_smoothed": 428.571, + "total_deaths": 1028.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 56.441, + "new_cases_per_million": 2.519, + "new_cases_smoothed_per_million": 1.567, + "total_deaths_per_million": 3.758, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 4241.0, + "total_tests": 127813.0, + "total_tests_per_thousand": 0.467, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 4442.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.365, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-15", + "total_cases": 16006.0, + "new_cases": 568.0, + "new_cases_smoothed": 461.429, + "total_deaths": 1043.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 58.518, + "new_cases_per_million": 2.077, + "new_cases_smoothed_per_million": 1.687, + "total_deaths_per_million": 3.813, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 4247.0, + "total_tests": 132060.0, + "total_tests_per_thousand": 0.483, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 4100.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.885, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-16", + "total_cases": 16496.0, + "new_cases": 490.0, + "new_cases_smoothed": 483.429, + "total_deaths": 1076.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 60.309, + "new_cases_per_million": 1.791, + "new_cases_smoothed_per_million": 1.767, + "total_deaths_per_million": 3.934, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 3666.0, + "total_tests": 135726.0, + "total_tests_per_thousand": 0.496, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 3861.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.987, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-17", + "total_cases": 17025.0, + "new_cases": 529.0, + "new_cases_smoothed": 482.857, + "total_deaths": 1089.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 62.243, + "new_cases_per_million": 1.934, + "new_cases_smoothed_per_million": 1.765, + "total_deaths_per_million": 3.981, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 4753.0, + "total_tests": 140479.0, + "total_tests_per_thousand": 0.514, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 3861.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.996, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-18", + "total_cases": 17514.0, + "new_cases": 489.0, + "new_cases_smoothed": 497.429, + "total_deaths": 1148.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 64.031, + "new_cases_per_million": 1.788, + "new_cases_smoothed_per_million": 1.819, + "total_deaths_per_million": 4.197, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 2556.0, + "total_tests": 143035.0, + "total_tests_per_thousand": 0.523, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 3811.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.6610000000000005, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-19", + "total_cases": 18010.0, + "new_cases": 496.0, + "new_cases_smoothed": 535.0, + "total_deaths": 1191.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 65.844, + "new_cases_per_million": 1.813, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 4.354, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 4764.0, + "total_tests": 147799.0, + "total_tests_per_thousand": 0.54, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 4010.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 7.495, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-05-20", + "total_cases": 18496.0, + "new_cases": 486.0, + "new_cases_smoothed": 535.286, + "total_deaths": 1221.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 67.621, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 1.957, + "total_deaths_per_million": 4.464, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 6340.0, + "total_tests": 154139.0, + "total_tests_per_thousand": 0.564, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 4367.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 8.158, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-21", + "total_cases": 19189.0, + "new_cases": 693.0, + "new_cases_smoothed": 535.857, + "total_deaths": 1242.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 70.155, + "new_cases_per_million": 2.534, + "new_cases_smoothed_per_million": 1.959, + "total_deaths_per_million": 4.541, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.112, + "new_tests_smoothed": 4820.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 8.995, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-22", + "total_cases": 20162.0, + "new_cases": 973.0, + "new_cases_smoothed": 593.714, + "total_deaths": 1278.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 73.712, + "new_cases_per_million": 3.557, + "new_cases_smoothed_per_million": 2.171, + "total_deaths_per_million": 4.672, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.123, + "total_tests": 168969.0, + "total_tests_per_thousand": 0.618, + "new_tests_smoothed": 5273.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 8.881, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-23", + "total_cases": 20796.0, + "new_cases": 634.0, + "new_cases_smoothed": 614.286, + "total_deaths": 1326.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 76.03, + "new_cases_per_million": 2.318, + "new_cases_smoothed_per_million": 2.246, + "total_deaths_per_million": 4.848, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 7066.0, + "total_tests": 176035.0, + "total_tests_per_thousand": 0.644, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 5758.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 9.373, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-24", + "total_cases": 21745.0, + "new_cases": 949.0, + "new_cases_smoothed": 674.286, + "total_deaths": 1351.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 79.5, + "new_cases_per_million": 3.47, + "new_cases_smoothed_per_million": 2.465, + "total_deaths_per_million": 4.939, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 3829.0, + "total_tests": 179864.0, + "total_tests_per_thousand": 0.658, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 5626.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.344, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-25", + "total_cases": 22271.0, + "new_cases": 526.0, + "new_cases_smoothed": 679.571, + "total_deaths": 1372.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 81.423, + "new_cases_per_million": 1.923, + "new_cases_smoothed_per_million": 2.485, + "total_deaths_per_million": 5.016, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.117, + "new_tests": 3328.0, + "total_tests": 183192.0, + "total_tests_per_thousand": 0.67, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 5737.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.442, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-26", + "total_cases": 22750.0, + "new_cases": 479.0, + "new_cases_smoothed": 677.143, + "total_deaths": 1391.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 83.174, + "new_cases_per_million": 1.751, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 5.085, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 5110.0, + "total_tests": 188302.0, + "total_tests_per_thousand": 0.688, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 5786.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.545, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-27", + "total_cases": 23165.0, + "new_cases": 415.0, + "new_cases_smoothed": 667.0, + "total_deaths": 1418.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 84.691, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 2.439, + "total_deaths_per_million": 5.184, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 7216.0, + "total_tests": 195518.0, + "total_tests_per_thousand": 0.715, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 5911.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 8.862, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-28", + "total_cases": 23851.0, + "new_cases": 686.0, + "new_cases_smoothed": 666.0, + "total_deaths": 1473.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 87.199, + "new_cases_per_million": 2.508, + "new_cases_smoothed_per_million": 2.435, + "total_deaths_per_million": 5.385, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 5793.0, + "total_tests": 201311.0, + "total_tests_per_thousand": 0.736, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 5680.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.529, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-29", + "total_cases": 24538.0, + "new_cases": 687.0, + "new_cases_smoothed": 625.143, + "total_deaths": 1496.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 89.711, + "new_cases_per_million": 2.512, + "new_cases_smoothed_per_million": 2.286, + "total_deaths_per_million": 5.469, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 3939.0, + "total_tests": 205250.0, + "total_tests_per_thousand": 0.75, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 5183.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 8.291, + "positive_rate": 0.121, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-30", + "total_cases": 25216.0, + "new_cases": 678.0, + "new_cases_smoothed": 631.429, + "total_deaths": 1520.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 92.189, + "new_cases_per_million": 2.479, + "new_cases_smoothed_per_million": 2.308, + "total_deaths_per_million": 5.557, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 11519.0, + "total_tests": 216769.0, + "total_tests_per_thousand": 0.793, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5819.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 9.216000000000001, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-05-31", + "total_cases": 25773.0, + "new_cases": 557.0, + "new_cases_smoothed": 575.429, + "total_deaths": 1573.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 94.226, + "new_cases_per_million": 2.036, + "new_cases_smoothed_per_million": 2.104, + "total_deaths_per_million": 5.751, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 6855.0, + "total_tests": 223624.0, + "total_tests_per_thousand": 0.818, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 6251.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 10.863, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-01", + "total_cases": 26473.0, + "new_cases": 700.0, + "new_cases_smoothed": 600.286, + "total_deaths": 1613.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 96.785, + "new_cases_per_million": 2.559, + "new_cases_smoothed_per_million": 2.195, + "total_deaths_per_million": 5.897, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 8489.0, + "total_tests": 232113.0, + "total_tests_per_thousand": 0.849, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 6989.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 11.642999999999999, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-02", + "total_cases": 26940.0, + "new_cases": 467.0, + "new_cases_smoothed": 598.571, + "total_deaths": 1641.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 98.492, + "new_cases_per_million": 1.707, + "new_cases_smoothed_per_million": 2.188, + "total_deaths_per_million": 5.999, + "new_deaths_per_million": 0.102, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 5834.0, + "total_tests": 237947.0, + "total_tests_per_thousand": 0.87, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 7092.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 11.847999999999999, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-03", + "total_cases": 27549.0, + "new_cases": 609.0, + "new_cases_smoothed": 626.286, + "total_deaths": 1663.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 100.719, + "new_cases_per_million": 2.226, + "new_cases_smoothed_per_million": 2.29, + "total_deaths_per_million": 6.08, + "new_deaths_per_million": 0.08, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 8486.0, + "total_tests": 246433.0, + "total_tests_per_thousand": 0.901, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 7274.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 11.615, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-04", + "total_cases": 28233.0, + "new_cases": 684.0, + "new_cases_smoothed": 626.0, + "total_deaths": 1698.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 103.22, + "new_cases_per_million": 2.501, + "new_cases_smoothed_per_million": 2.289, + "total_deaths_per_million": 6.208, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 5303.0, + "total_tests": 251736.0, + "total_tests_per_thousand": 0.92, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 7204.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 11.508, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-05", + "total_cases": 28818.0, + "new_cases": 585.0, + "new_cases_smoothed": 611.429, + "total_deaths": 1721.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 105.358, + "new_cases_per_million": 2.139, + "new_cases_smoothed_per_million": 2.235, + "total_deaths_per_million": 6.292, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 5074.0, + "total_tests": 256810.0, + "total_tests_per_thousand": 0.939, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 7366.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 12.047, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-06", + "total_cases": 29521.0, + "new_cases": 703.0, + "new_cases_smoothed": 615.0, + "total_deaths": 1770.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 107.929, + "new_cases_per_million": 2.57, + "new_cases_smoothed_per_million": 2.248, + "total_deaths_per_million": 6.471, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 7930.0, + "total_tests": 264740.0, + "total_tests_per_thousand": 0.968, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 6853.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 11.142999999999999, + "positive_rate": 0.09, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-07", + "total_cases": 30514.0, + "new_cases": 993.0, + "new_cases_smoothed": 677.286, + "total_deaths": 1801.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 32.571, + "total_cases_per_million": 111.559, + "new_cases_per_million": 3.63, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 6.584, + "new_deaths_per_million": 0.113, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 4406.0, + "total_tests": 269146.0, + "total_tests_per_thousand": 0.984, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 6503.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 9.602, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 71.76 + }, + { + "date": "2020-06-08", + "total_cases": 31186.0, + "new_cases": 672.0, + "new_cases_smoothed": 673.286, + "total_deaths": 1851.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 114.016, + "new_cases_per_million": 2.457, + "new_cases_smoothed_per_million": 2.462, + "total_deaths_per_million": 6.767, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 5284.0, + "total_tests": 274430.0, + "total_tests_per_thousand": 1.003, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 6045.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 8.978, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-09", + "total_cases": 32033.0, + "new_cases": 847.0, + "new_cases_smoothed": 727.571, + "total_deaths": 1883.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 117.112, + "new_cases_per_million": 3.097, + "new_cases_smoothed_per_million": 2.66, + "total_deaths_per_million": 6.884, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 7223.0, + "total_tests": 281653.0, + "total_tests_per_thousand": 1.03, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 6244.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 8.582, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-10", + "total_cases": 33076.0, + "new_cases": 1043.0, + "new_cases_smoothed": 789.571, + "total_deaths": 1923.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 120.926, + "new_cases_per_million": 3.813, + "new_cases_smoothed_per_million": 2.887, + "total_deaths_per_million": 7.03, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 5825.0, + "total_tests": 287478.0, + "total_tests_per_thousand": 1.051, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 5864.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.4270000000000005, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-11", + "total_cases": 34316.0, + "new_cases": 1240.0, + "new_cases_smoothed": 869.0, + "total_deaths": 1959.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 125.459, + "new_cases_per_million": 4.533, + "new_cases_smoothed_per_million": 3.177, + "total_deaths_per_million": 7.162, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 7193.0, + "total_tests": 294671.0, + "total_tests_per_thousand": 1.077, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 6134.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 7.059, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-12", + "total_cases": 35295.0, + "new_cases": 979.0, + "new_cases_smoothed": 925.286, + "total_deaths": 2000.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 129.038, + "new_cases_per_million": 3.579, + "new_cases_smoothed_per_million": 3.383, + "total_deaths_per_million": 7.312, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 7476.0, + "total_tests": 302147.0, + "total_tests_per_thousand": 1.105, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 6477.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-13", + "total_cases": 36406.0, + "new_cases": 1111.0, + "new_cases_smoothed": 983.571, + "total_deaths": 2048.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 39.714, + "total_cases_per_million": 133.1, + "new_cases_per_million": 4.062, + "new_cases_smoothed_per_million": 3.596, + "total_deaths_per_million": 7.487, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 11128.0, + "total_tests": 313275.0, + "total_tests_per_thousand": 1.145, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 6934.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 7.05, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-14", + "total_cases": 37420.0, + "new_cases": 1014.0, + "new_cases_smoothed": 986.571, + "total_deaths": 2091.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 41.429, + "total_cases_per_million": 136.807, + "new_cases_per_million": 3.707, + "new_cases_smoothed_per_million": 3.607, + "total_deaths_per_million": 7.645, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.151, + "new_tests_smoothed": 7441.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 7.542000000000001, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-15", + "total_cases": 38277.0, + "new_cases": 857.0, + "new_cases_smoothed": 1013.0, + "total_deaths": 2134.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 139.94, + "new_cases_per_million": 3.133, + "new_cases_smoothed_per_million": 3.704, + "total_deaths_per_million": 7.802, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.148, + "total_tests": 329190.0, + "total_tests_per_thousand": 1.204, + "new_tests_smoothed": 7823.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 7.723, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-16", + "total_cases": 39294.0, + "new_cases": 1017.0, + "new_cases_smoothed": 1037.286, + "total_deaths": 2198.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 143.659, + "new_cases_per_million": 3.718, + "new_cases_smoothed_per_million": 3.792, + "total_deaths_per_million": 8.036, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 10119.0, + "total_tests": 339309.0, + "total_tests_per_thousand": 1.241, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 8237.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 7.941, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-17", + "total_cases": 40400.0, + "new_cases": 1106.0, + "new_cases_smoothed": 1046.286, + "total_deaths": 2231.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 44.0, + "total_cases_per_million": 147.702, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 3.825, + "total_deaths_per_million": 8.157, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.161, + "new_tests": 8969.0, + "total_tests": 348278.0, + "total_tests_per_thousand": 1.273, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 8686.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 8.302, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-18", + "total_cases": 41431.0, + "new_cases": 1031.0, + "new_cases_smoothed": 1016.429, + "total_deaths": 2276.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 45.286, + "total_cases_per_million": 151.471, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 3.716, + "total_deaths_per_million": 8.321, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 10381.0, + "total_tests": 358659.0, + "total_tests_per_thousand": 1.311, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 9141.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 8.993, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-19", + "total_cases": 42762.0, + "new_cases": 1331.0, + "new_cases_smoothed": 1066.714, + "total_deaths": 2339.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 48.429, + "total_cases_per_million": 156.338, + "new_cases_per_million": 4.866, + "new_cases_smoothed_per_million": 3.9, + "total_deaths_per_million": 8.551, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 7922.0, + "total_tests": 366581.0, + "total_tests_per_thousand": 1.34, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 9205.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 8.629, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-20", + "total_cases": 43803.0, + "new_cases": 1041.0, + "new_cases_smoothed": 1056.714, + "total_deaths": 2373.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 46.429, + "total_cases_per_million": 160.143, + "new_cases_per_million": 3.806, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 8.676, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 9937.0, + "total_tests": 376518.0, + "total_tests_per_thousand": 1.377, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 9035.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 8.55, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-21", + "total_cases": 45029.0, + "new_cases": 1226.0, + "new_cases_smoothed": 1087.0, + "total_deaths": 2429.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 48.286, + "total_cases_per_million": 164.626, + "new_cases_per_million": 4.482, + "new_cases_smoothed_per_million": 3.974, + "total_deaths_per_million": 8.88, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 6587.0, + "total_tests": 383105.0, + "total_tests_per_thousand": 1.401, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 8839.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 8.132, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-22", + "total_cases": 45891.0, + "new_cases": 862.0, + "new_cases_smoothed": 1087.714, + "total_deaths": 2465.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 47.286, + "total_cases_per_million": 167.777, + "new_cases_per_million": 3.151, + "new_cases_smoothed_per_million": 3.977, + "total_deaths_per_million": 9.012, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 10012.0, + "total_tests": 393117.0, + "total_tests_per_thousand": 1.437, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 9132.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 8.396, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-06-23", + "total_cases": 46845.0, + "new_cases": 954.0, + "new_cases_smoothed": 1078.714, + "total_deaths": 2500.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 171.265, + "new_cases_per_million": 3.488, + "new_cases_smoothed_per_million": 3.944, + "total_deaths_per_million": 9.14, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 8564.0, + "total_tests": 401681.0, + "total_tests_per_thousand": 1.469, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 8910.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 8.26, + "positive_rate": 0.121, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-24", + "total_cases": 47896.0, + "new_cases": 1051.0, + "new_cases_smoothed": 1070.857, + "total_deaths": 2535.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 43.429, + "total_cases_per_million": 175.107, + "new_cases_per_million": 3.842, + "new_cases_smoothed_per_million": 3.915, + "total_deaths_per_million": 9.268, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 12238.0, + "total_tests": 413919.0, + "total_tests_per_thousand": 1.513, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 9377.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 8.757, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-25", + "total_cases": 49009.0, + "new_cases": 1113.0, + "new_cases_smoothed": 1082.571, + "total_deaths": 2573.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 179.176, + "new_cases_per_million": 4.069, + "new_cases_smoothed_per_million": 3.958, + "total_deaths_per_million": 9.407, + "new_deaths_per_million": 0.139, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 13239.0, + "total_tests": 427158.0, + "total_tests_per_thousand": 1.562, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 9786.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 9.04, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-26", + "total_cases": 50187.0, + "new_cases": 1178.0, + "new_cases_smoothed": 1060.714, + "total_deaths": 2620.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 183.483, + "new_cases_per_million": 4.307, + "new_cases_smoothed_per_million": 3.878, + "total_deaths_per_million": 9.579, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.147, + "new_tests_smoothed": 10255.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 9.668, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-27", + "total_cases": 51427.0, + "new_cases": 1240.0, + "new_cases_smoothed": 1089.143, + "total_deaths": 2683.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 44.286, + "total_cases_per_million": 188.017, + "new_cases_per_million": 4.533, + "new_cases_smoothed_per_million": 3.982, + "total_deaths_per_million": 9.809, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.162, + "total_tests": 449569.0, + "total_tests_per_thousand": 1.644, + "new_tests_smoothed": 10436.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 9.582, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-28", + "total_cases": 52812.0, + "new_cases": 1385.0, + "new_cases_smoothed": 1111.857, + "total_deaths": 2720.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 193.08, + "new_cases_per_million": 5.064, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 9.944, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 7067.0, + "total_tests": 456636.0, + "total_tests_per_thousand": 1.669, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 10504.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 9.447000000000001, + "positive_rate": 0.106, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-29", + "total_cases": 54010.0, + "new_cases": 1198.0, + "new_cases_smoothed": 1159.857, + "total_deaths": 2754.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 197.46, + "new_cases_per_million": 4.38, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 10.069, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 9047.0, + "total_tests": 465683.0, + "total_tests_per_thousand": 1.703, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 10367.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 8.937999999999999, + "positive_rate": 0.11199999999999999, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-06-30", + "total_cases": 55092.0, + "new_cases": 1082.0, + "new_cases_smoothed": 1178.143, + "total_deaths": 2805.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 201.416, + "new_cases_per_million": 3.956, + "new_cases_smoothed_per_million": 4.307, + "total_deaths_per_million": 10.255, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 11635.0, + "total_tests": 477318.0, + "total_tests_per_thousand": 1.745, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 10805.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 9.171, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-01", + "total_cases": 56385.0, + "new_cases": 1293.0, + "new_cases_smoothed": 1212.714, + "total_deaths": 2876.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 48.714, + "total_cases_per_million": 206.143, + "new_cases_per_million": 4.727, + "new_cases_smoothed_per_million": 4.434, + "total_deaths_per_million": 10.515, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 15000.0, + "total_tests": 492318.0, + "total_tests_per_thousand": 1.8, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 11200.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 9.235, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-02", + "total_cases": 57770.0, + "new_cases": 1385.0, + "new_cases_smoothed": 1251.571, + "total_deaths": 2934.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 211.207, + "new_cases_per_million": 5.064, + "new_cases_smoothed_per_million": 4.576, + "total_deaths_per_million": 10.727, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.189, + "new_tests_smoothed": 11087.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 8.857999999999999, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-03", + "total_cases": 59394.0, + "new_cases": 1624.0, + "new_cases_smoothed": 1315.286, + "total_deaths": 2987.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 52.429, + "total_cases_per_million": 217.144, + "new_cases_per_million": 5.937, + "new_cases_smoothed_per_million": 4.809, + "total_deaths_per_million": 10.92, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.192, + "new_tests_smoothed": 11265.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 8.565, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-04", + "total_cases": 60695.0, + "new_cases": 1301.0, + "new_cases_smoothed": 1324.0, + "total_deaths": 3036.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 50.429, + "total_cases_per_million": 221.9, + "new_cases_per_million": 4.756, + "new_cases_smoothed_per_million": 4.841, + "total_deaths_per_million": 11.1, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.184, + "total_tests": 529669.0, + "total_tests_per_thousand": 1.936, + "new_tests_smoothed": 11443.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 8.642999999999999, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-05", + "total_cases": 62142.0, + "new_cases": 1447.0, + "new_cases_smoothed": 1332.857, + "total_deaths": 3089.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 52.714, + "total_cases_per_million": 227.191, + "new_cases_per_million": 5.29, + "new_cases_smoothed_per_million": 4.873, + "total_deaths_per_million": 11.293, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.193, + "new_tests_smoothed": 12034.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 9.029, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-06", + "total_cases": 63749.0, + "new_cases": 1607.0, + "new_cases_smoothed": 1391.286, + "total_deaths": 3171.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 59.571, + "total_cases_per_million": 233.066, + "new_cases_per_million": 5.875, + "new_cases_smoothed_per_million": 5.087, + "total_deaths_per_million": 11.593, + "new_deaths_per_million": 0.3, + "new_deaths_smoothed_per_million": 0.218, + "total_tests": 552084.0, + "total_tests_per_thousand": 2.018, + "new_tests_smoothed": 12343.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 8.872, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-07", + "total_cases": 64958.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1409.429, + "total_deaths": 3241.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 62.286, + "total_cases_per_million": 237.486, + "new_cases_per_million": 4.42, + "new_cases_smoothed_per_million": 5.153, + "total_deaths_per_million": 11.849, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 10675.0, + "total_tests": 562759.0, + "total_tests_per_thousand": 2.057, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 12206.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 8.66, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-08", + "total_cases": 66226.0, + "new_cases": 1268.0, + "new_cases_smoothed": 1405.857, + "total_deaths": 3309.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 61.857, + "total_cases_per_million": 242.122, + "new_cases_per_million": 4.636, + "new_cases_smoothed_per_million": 5.14, + "total_deaths_per_million": 12.098, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.226, + "new_tests_smoothed": 11872.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 8.445, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-09", + "total_cases": 68079.0, + "new_cases": 1853.0, + "new_cases_smoothed": 1472.714, + "total_deaths": 3359.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 60.714, + "total_cases_per_million": 248.896, + "new_cases_per_million": 6.775, + "new_cases_smoothed_per_million": 5.384, + "total_deaths_per_million": 12.28, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.222, + "total_tests": 588080.0, + "total_tests_per_thousand": 2.15, + "new_tests_smoothed": 11902.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 8.082, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-10", + "total_cases": 70736.0, + "new_cases": 2657.0, + "new_cases_smoothed": 1620.286, + "total_deaths": 3417.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 61.429, + "total_cases_per_million": 258.61, + "new_cases_per_million": 9.714, + "new_cases_smoothed_per_million": 5.924, + "total_deaths_per_million": 12.493, + "new_deaths_per_million": 0.212, + "new_deaths_smoothed_per_million": 0.225, + "new_tests": 9388.0, + "total_tests": 597468.0, + "total_tests_per_thousand": 2.184, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 11464.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 7.075, + "positive_rate": 0.141, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-11", + "total_cases": 72347.0, + "new_cases": 1611.0, + "new_cases_smoothed": 1664.571, + "total_deaths": 3469.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 61.857, + "total_cases_per_million": 264.5, + "new_cases_per_million": 5.89, + "new_cases_smoothed_per_million": 6.086, + "total_deaths_per_million": 12.683, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 12625.0, + "total_tests": 610093.0, + "total_tests_per_thousand": 2.23, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 11489.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.902, + "positive_rate": 0.145, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-12", + "total_cases": 74018.0, + "new_cases": 1671.0, + "new_cases_smoothed": 1696.571, + "total_deaths": 3535.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 63.714, + "total_cases_per_million": 270.609, + "new_cases_per_million": 6.109, + "new_cases_smoothed_per_million": 6.203, + "total_deaths_per_million": 12.924, + "new_deaths_per_million": 0.241, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 10994.0, + "total_tests": 621087.0, + "total_tests_per_thousand": 2.271, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 11459.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.754, + "positive_rate": 0.14800000000000002, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-13", + "total_cases": 75699.0, + "new_cases": 1681.0, + "new_cases_smoothed": 1707.143, + "total_deaths": 3606.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 62.143, + "total_cases_per_million": 276.755, + "new_cases_per_million": 6.146, + "new_cases_smoothed_per_million": 6.241, + "total_deaths_per_million": 13.184, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 9062.0, + "total_tests": 630149.0, + "total_tests_per_thousand": 2.304, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 11152.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 6.5329999999999995, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-14", + "total_cases": 76981.0, + "new_cases": 1282.0, + "new_cases_smoothed": 1717.571, + "total_deaths": 3656.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 59.286, + "total_cases_per_million": 281.442, + "new_cases_per_million": 4.687, + "new_cases_smoothed_per_million": 6.279, + "total_deaths_per_million": 13.366, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.217, + "new_tests_smoothed": 11592.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.749, + "positive_rate": 0.14800000000000002, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-15", + "total_cases": 78572.0, + "new_cases": 1591.0, + "new_cases_smoothed": 1763.714, + "total_deaths": 3710.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 57.286, + "total_cases_per_million": 287.259, + "new_cases_per_million": 5.817, + "new_cases_smoothed_per_million": 6.448, + "total_deaths_per_million": 13.564, + "new_deaths_per_million": 0.197, + "new_deaths_smoothed_per_million": 0.209, + "total_tests": 657655.0, + "total_tests_per_thousand": 2.404, + "new_tests_smoothed": 11748.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 6.6610000000000005, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-16", + "total_cases": 80094.0, + "new_cases": 1522.0, + "new_cases_smoothed": 1716.429, + "total_deaths": 3797.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 62.571, + "total_cases_per_million": 292.823, + "new_cases_per_million": 5.564, + "new_cases_smoothed_per_million": 6.275, + "total_deaths_per_million": 13.882, + "new_deaths_per_million": 0.318, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 12156.0, + "total_tests": 669811.0, + "total_tests_per_thousand": 2.449, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 11676.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 6.8020000000000005, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-17", + "total_cases": 81668.0, + "new_cases": 1574.0, + "new_cases_smoothed": 1561.714, + "total_deaths": 3873.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 65.143, + "total_cases_per_million": 298.578, + "new_cases_per_million": 5.755, + "new_cases_smoothed_per_million": 5.71, + "total_deaths_per_million": 14.16, + "new_deaths_per_million": 0.278, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 13994.0, + "total_tests": 683805.0, + "total_tests_per_thousand": 2.5, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 12334.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 7.898, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-18", + "total_cases": 83130.0, + "new_cases": 1462.0, + "new_cases_smoothed": 1540.429, + "total_deaths": 3957.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 69.714, + "total_cases_per_million": 303.923, + "new_cases_per_million": 5.345, + "new_cases_smoothed_per_million": 5.632, + "total_deaths_per_million": 14.467, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 13238.0, + "total_tests": 697043.0, + "total_tests_per_thousand": 2.548, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 12421.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 8.062999999999999, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-19", + "total_cases": 84882.0, + "new_cases": 1752.0, + "new_cases_smoothed": 1552.0, + "total_deaths": 4016.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 68.714, + "total_cases_per_million": 310.328, + "new_cases_per_million": 6.405, + "new_cases_smoothed_per_million": 5.674, + "total_deaths_per_million": 14.682, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 10195.0, + "total_tests": 707238.0, + "total_tests_per_thousand": 2.586, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 12307.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 7.93, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-20", + "total_cases": 86521.0, + "new_cases": 1639.0, + "new_cases_smoothed": 1546.0, + "total_deaths": 4143.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 76.714, + "total_cases_per_million": 316.32, + "new_cases_per_million": 5.992, + "new_cases_smoothed_per_million": 5.652, + "total_deaths_per_million": 15.147, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 13259.0, + "total_tests": 720497.0, + "total_tests_per_thousand": 2.634, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 12907.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 8.349, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-21", + "total_cases": 88214.0, + "new_cases": 1693.0, + "new_cases_smoothed": 1604.714, + "total_deaths": 4239.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 83.286, + "total_cases_per_million": 322.51, + "new_cases_per_million": 6.19, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 15.498, + "new_deaths_per_million": 0.351, + "new_deaths_smoothed_per_million": 0.304, + "new_tests": 17347.0, + "total_tests": 737844.0, + "total_tests_per_thousand": 2.698, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 13420.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 8.363, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-22", + "total_cases": 89869.0, + "new_cases": 1655.0, + "new_cases_smoothed": 1613.857, + "total_deaths": 4320.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 87.143, + "total_cases_per_million": 328.56, + "new_cases_per_million": 6.051, + "new_cases_smoothed_per_million": 5.9, + "total_deaths_per_million": 15.794, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.319, + "new_tests": 11782.0, + "total_tests": 749626.0, + "total_tests_per_thousand": 2.741, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 13139.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 8.141, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-23", + "total_cases": 91751.0, + "new_cases": 1882.0, + "new_cases_smoothed": 1665.286, + "total_deaths": 4459.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 94.571, + "total_cases_per_million": 335.441, + "new_cases_per_million": 6.881, + "new_cases_smoothed_per_million": 6.088, + "total_deaths_per_million": 16.302, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 13331.0, + "total_tests": 762957.0, + "total_tests_per_thousand": 2.789, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 13307.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 7.9910000000000005, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-24", + "total_cases": 93657.0, + "new_cases": 1906.0, + "new_cases_smoothed": 1712.714, + "total_deaths": 4576.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 100.429, + "total_cases_per_million": 342.409, + "new_cases_per_million": 6.968, + "new_cases_smoothed_per_million": 6.262, + "total_deaths_per_million": 16.73, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 14143.0, + "total_tests": 777100.0, + "total_tests_per_thousand": 2.841, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 13328.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 7.782, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-25", + "total_cases": 95418.0, + "new_cases": 1761.0, + "new_cases_smoothed": 1755.429, + "total_deaths": 4665.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 101.143, + "total_cases_per_million": 348.847, + "new_cases_per_million": 6.438, + "new_cases_smoothed_per_million": 6.418, + "total_deaths_per_million": 17.055, + "new_deaths_per_million": 0.325, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 12158.0, + "total_tests": 789258.0, + "total_tests_per_thousand": 2.886, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 13174.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 7.505, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-26", + "total_cases": 97286.0, + "new_cases": 1868.0, + "new_cases_smoothed": 1772.0, + "total_deaths": 4714.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 99.714, + "total_cases_per_million": 355.677, + "new_cases_per_million": 6.829, + "new_cases_smoothed_per_million": 6.478, + "total_deaths_per_million": 17.234, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.365, + "new_tests": 7692.0, + "total_tests": 796950.0, + "total_tests_per_thousand": 2.914, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 12816.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 7.233, + "positive_rate": 0.138, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-27", + "total_cases": 98778.0, + "new_cases": 1492.0, + "new_cases_smoothed": 1751.0, + "total_deaths": 4781.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 91.143, + "total_cases_per_million": 361.132, + "new_cases_per_million": 5.455, + "new_cases_smoothed_per_million": 6.402, + "total_deaths_per_million": 17.479, + "new_deaths_per_million": 0.245, + "new_deaths_smoothed_per_million": 0.333, + "new_tests_smoothed": 11707.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 6.686, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-28", + "total_cases": 100303.0, + "new_cases": 1525.0, + "new_cases_smoothed": 1727.0, + "total_deaths": 4838.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 85.571, + "total_cases_per_million": 366.707, + "new_cases_per_million": 5.575, + "new_cases_smoothed_per_million": 6.314, + "total_deaths_per_million": 17.688, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.313, + "total_tests": 807946.0, + "total_tests_per_thousand": 2.954, + "new_tests_smoothed": 10015.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 5.7989999999999995, + "positive_rate": 0.172, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-29", + "total_cases": 102051.0, + "new_cases": 1748.0, + "new_cases_smoothed": 1740.286, + "total_deaths": 4901.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 373.098, + "new_cases_per_million": 6.391, + "new_cases_smoothed_per_million": 6.362, + "total_deaths_per_million": 17.918, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 33081.0, + "total_tests": 841027.0, + "total_tests_per_thousand": 3.075, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 13057.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 7.502999999999999, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-30", + "total_cases": 104432.0, + "new_cases": 2381.0, + "new_cases_smoothed": 1811.571, + "total_deaths": 4975.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 73.714, + "total_cases_per_million": 381.802, + "new_cases_per_million": 8.705, + "new_cases_smoothed_per_million": 6.623, + "total_deaths_per_million": 18.189, + "new_deaths_per_million": 0.271, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 14976.0, + "total_tests": 856003.0, + "total_tests_per_thousand": 3.13, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 13292.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 7.337000000000001, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-07-31", + "total_cases": 106336.0, + "new_cases": 1904.0, + "new_cases_smoothed": 1811.286, + "total_deaths": 5058.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 388.763, + "new_cases_per_million": 6.961, + "new_cases_smoothed_per_million": 6.622, + "total_deaths_per_million": 18.492, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 10536.0, + "total_tests": 866539.0, + "total_tests_per_thousand": 3.168, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 12777.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 7.053999999999999, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-01", + "total_cases": 108376.0, + "new_cases": 2040.0, + "new_cases_smoothed": 1851.143, + "total_deaths": 5131.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 66.571, + "total_cases_per_million": 396.222, + "new_cases_per_million": 7.458, + "new_cases_smoothed_per_million": 6.768, + "total_deaths_per_million": 18.759, + "new_deaths_per_million": 0.267, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 9355.0, + "total_tests": 875894.0, + "total_tests_per_thousand": 3.202, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 12377.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 6.686, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-02", + "total_cases": 109936.0, + "new_cases": 1560.0, + "new_cases_smoothed": 1807.143, + "total_deaths": 5193.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 68.429, + "total_cases_per_million": 401.925, + "new_cases_per_million": 5.703, + "new_cases_smoothed_per_million": 6.607, + "total_deaths_per_million": 18.986, + "new_deaths_per_million": 0.227, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 6458.0, + "total_tests": 882352.0, + "total_tests_per_thousand": 3.226, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 12200.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 6.751, + "positive_rate": 0.14800000000000002, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-03", + "total_cases": 111455.0, + "new_cases": 1519.0, + "new_cases_smoothed": 1811.0, + "total_deaths": 5236.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 65.0, + "total_cases_per_million": 407.479, + "new_cases_per_million": 5.553, + "new_cases_smoothed_per_million": 6.621, + "total_deaths_per_million": 19.143, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 12179.0, + "total_tests": 894531.0, + "total_tests_per_thousand": 3.27, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 13155.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 7.263999999999999, + "positive_rate": 0.138, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-04", + "total_cases": 113134.0, + "new_cases": 1679.0, + "new_cases_smoothed": 1833.0, + "total_deaths": 5302.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 413.617, + "new_cases_per_million": 6.138, + "new_cases_smoothed_per_million": 6.701, + "total_deaths_per_million": 19.384, + "new_deaths_per_million": 0.241, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 13456.0, + "total_tests": 907987.0, + "total_tests_per_thousand": 3.32, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 14292.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 7.797000000000001, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-05", + "total_cases": 115056.0, + "new_cases": 1922.0, + "new_cases_smoothed": 1857.857, + "total_deaths": 5388.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 69.571, + "total_cases_per_million": 420.644, + "new_cases_per_million": 7.027, + "new_cases_smoothed_per_million": 6.792, + "total_deaths_per_million": 19.698, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 14722.0, + "total_tests": 922709.0, + "total_tests_per_thousand": 3.373, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 11669.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 6.281000000000001, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-06", + "total_cases": 116871.0, + "new_cases": 1815.0, + "new_cases_smoothed": 1777.0, + "total_deaths": 5452.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 427.279, + "new_cases_per_million": 6.636, + "new_cases_smoothed_per_million": 6.497, + "total_deaths_per_million": 19.932, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 13602.0, + "total_tests": 936311.0, + "total_tests_per_thousand": 3.423, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 11473.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 6.456, + "positive_rate": 0.155, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-07", + "total_cases": 118753.0, + "new_cases": 1882.0, + "new_cases_smoothed": 1773.857, + "total_deaths": 5521.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 66.143, + "total_cases_per_million": 434.16, + "new_cases_per_million": 6.881, + "new_cases_smoothed_per_million": 6.485, + "total_deaths_per_million": 20.185, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 15599.0, + "total_tests": 951910.0, + "total_tests_per_thousand": 3.48, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 12196.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 6.875, + "positive_rate": 0.145, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-08", + "total_cases": 121226.0, + "new_cases": 2473.0, + "new_cases_smoothed": 1835.714, + "total_deaths": 5593.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 66.0, + "total_cases_per_million": 443.201, + "new_cases_per_million": 9.041, + "new_cases_smoothed_per_million": 6.711, + "total_deaths_per_million": 20.448, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.241, + "new_tests": 11692.0, + "total_tests": 963602.0, + "total_tests_per_thousand": 3.523, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 12530.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 6.8260000000000005, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-09", + "total_cases": 123503.0, + "new_cases": 2277.0, + "new_cases_smoothed": 1938.143, + "total_deaths": 5658.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 66.429, + "total_cases_per_million": 451.526, + "new_cases_per_million": 8.325, + "new_cases_smoothed_per_million": 7.086, + "total_deaths_per_million": 20.686, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 8992.0, + "total_tests": 972594.0, + "total_tests_per_thousand": 3.556, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 12892.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.652, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-10", + "total_cases": 125396.0, + "new_cases": 1893.0, + "new_cases_smoothed": 1991.571, + "total_deaths": 5723.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 69.571, + "total_cases_per_million": 458.447, + "new_cases_per_million": 6.921, + "new_cases_smoothed_per_million": 7.281, + "total_deaths_per_million": 20.923, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 12299.0, + "total_tests": 984893.0, + "total_tests_per_thousand": 3.601, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 12909.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.482, + "positive_rate": 0.154, + "tests_units": "people tested", + "stringency_index": 62.5 + }, + { + "date": "2020-08-11", + "total_cases": 127083.0, + "new_cases": 1687.0, + "new_cases_smoothed": 1992.714, + "total_deaths": 5765.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 66.143, + "total_cases_per_million": 464.614, + "new_cases_per_million": 6.168, + "new_cases_smoothed_per_million": 7.285, + "total_deaths_per_million": 21.077, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 13513.0, + "total_tests": 998406.0, + "total_tests_per_thousand": 3.65, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 12917.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.482, + "positive_rate": 0.154, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-12", + "total_cases": 128776.0, + "new_cases": 1693.0, + "new_cases_smoothed": 1960.0, + "total_deaths": 5824.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 62.286, + "total_cases_per_million": 470.804, + "new_cases_per_million": 6.19, + "new_cases_smoothed_per_million": 7.166, + "total_deaths_per_million": 21.292, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 13698.0, + "total_tests": 1012104.0, + "total_tests_per_thousand": 3.7, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 12771.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.516, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-13", + "total_cases": 130718.0, + "new_cases": 1942.0, + "new_cases_smoothed": 1978.143, + "total_deaths": 5903.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 64.429, + "total_cases_per_million": 477.904, + "new_cases_per_million": 7.1, + "new_cases_smoothed_per_million": 7.232, + "total_deaths_per_million": 21.581, + "new_deaths_per_million": 0.289, + "new_deaths_smoothed_per_million": 0.236, + "new_tests": 14850.0, + "total_tests": 1026954.0, + "total_tests_per_thousand": 3.755, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 12949.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.546, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-14", + "total_cases": 132816.0, + "new_cases": 2098.0, + "new_cases_smoothed": 2009.0, + "total_deaths": 5968.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 63.857, + "total_cases_per_million": 485.574, + "new_cases_per_million": 7.67, + "new_cases_smoothed_per_million": 7.345, + "total_deaths_per_million": 21.819, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.233, + "new_tests": 12728.0, + "total_tests": 1039682.0, + "total_tests_per_thousand": 3.801, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 12539.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 6.2410000000000005, + "positive_rate": 0.16, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-15", + "total_cases": 135123.0, + "new_cases": 2307.0, + "new_cases_smoothed": 1985.286, + "total_deaths": 6021.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 61.143, + "total_cases_per_million": 494.009, + "new_cases_per_million": 8.434, + "new_cases_smoothed_per_million": 7.258, + "total_deaths_per_million": 22.013, + "new_deaths_per_million": 0.194, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 12821.0, + "total_tests": 1052503.0, + "total_tests_per_thousand": 3.848, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 12700.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 6.397, + "positive_rate": 0.156, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-16", + "total_cases": 137468.0, + "new_cases": 2345.0, + "new_cases_smoothed": 1995.0, + "total_deaths": 6071.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 59.0, + "total_cases_per_million": 502.582, + "new_cases_per_million": 8.573, + "new_cases_smoothed_per_million": 7.294, + "total_deaths_per_million": 22.196, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.216, + "new_tests": 9218.0, + "total_tests": 1061721.0, + "total_tests_per_thousand": 3.882, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 12732.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 6.382000000000001, + "positive_rate": 0.157, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-17", + "total_cases": 139549.0, + "new_cases": 2081.0, + "new_cases_smoothed": 2021.857, + "total_deaths": 6150.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 61.0, + "total_cases_per_million": 510.19, + "new_cases_per_million": 7.608, + "new_cases_smoothed_per_million": 7.392, + "total_deaths_per_million": 22.484, + "new_deaths_per_million": 0.289, + "new_deaths_smoothed_per_million": 0.223, + "new_tests": 7224.0, + "total_tests": 1068945.0, + "total_tests_per_thousand": 3.908, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 12007.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 5.939, + "positive_rate": 0.168, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-18", + "total_cases": 141370.0, + "new_cases": 1821.0, + "new_cases_smoothed": 2041.0, + "total_deaths": 6207.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 63.143, + "total_cases_per_million": 516.848, + "new_cases_per_million": 6.658, + "new_cases_smoothed_per_million": 7.462, + "total_deaths_per_million": 22.693, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 12409.0, + "total_tests": 1081354.0, + "total_tests_per_thousand": 3.953, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 11850.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 5.806, + "positive_rate": 0.172, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-19", + "total_cases": 143043.0, + "new_cases": 1673.0, + "new_cases_smoothed": 2038.143, + "total_deaths": 6277.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 64.714, + "total_cases_per_million": 522.964, + "new_cases_per_million": 6.116, + "new_cases_smoothed_per_million": 7.451, + "total_deaths_per_million": 22.949, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 14940.0, + "total_tests": 1096294.0, + "total_tests_per_thousand": 4.008, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 12027.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 5.901, + "positive_rate": 0.16899999999999998, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-20", + "total_cases": 144945.0, + "new_cases": 1902.0, + "new_cases_smoothed": 2032.429, + "total_deaths": 6346.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 63.286, + "total_cases_per_million": 529.918, + "new_cases_per_million": 6.954, + "new_cases_smoothed_per_million": 7.431, + "total_deaths_per_million": 23.201, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.231, + "new_tests_smoothed": 12183.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 5.994, + "positive_rate": 0.16699999999999998, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-21", + "total_cases": 147211.0, + "new_cases": 2266.0, + "new_cases_smoothed": 2056.429, + "total_deaths": 6418.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 64.286, + "total_cases_per_million": 538.202, + "new_cases_per_million": 8.284, + "new_cases_smoothed_per_million": 7.518, + "total_deaths_per_million": 23.464, + "new_deaths_per_million": 0.263, + "new_deaths_smoothed_per_million": 0.235, + "new_tests_smoothed": 12642.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 6.148, + "positive_rate": 0.163, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-22", + "total_cases": 149408.0, + "new_cases": 2197.0, + "new_cases_smoothed": 2040.714, + "total_deaths": 6500.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 68.429, + "total_cases_per_million": 546.234, + "new_cases_per_million": 8.032, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 23.764, + "new_deaths_per_million": 0.3, + "new_deaths_smoothed_per_million": 0.25, + "new_tests_smoothed": 13088.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 6.412999999999999, + "positive_rate": 0.156, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-23", + "total_cases": 151498.0, + "new_cases": 2090.0, + "new_cases_smoothed": 2004.286, + "total_deaths": 6594.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 74.714, + "total_cases_per_million": 553.875, + "new_cases_per_million": 7.641, + "new_cases_smoothed_per_million": 7.328, + "total_deaths_per_million": 24.108, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.273, + "new_tests_smoothed": 14049.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 7.0089999999999995, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-24", + "total_cases": 153535.0, + "new_cases": 2037.0, + "new_cases_smoothed": 1998.0, + "total_deaths": 6680.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 75.714, + "total_cases_per_million": 561.323, + "new_cases_per_million": 7.447, + "new_cases_smoothed_per_million": 7.305, + "total_deaths_per_million": 24.422, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.277, + "new_tests_smoothed": 15294.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 7.655, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-25", + "total_cases": 155412.0, + "new_cases": 1877.0, + "new_cases_smoothed": 2006.0, + "total_deaths": 6759.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 78.857, + "total_cases_per_million": 568.185, + "new_cases_per_million": 6.862, + "new_cases_smoothed_per_million": 7.334, + "total_deaths_per_million": 24.711, + "new_deaths_per_million": 0.289, + "new_deaths_smoothed_per_million": 0.288, + "total_tests": 1191948.0, + "total_tests_per_thousand": 4.358, + "new_tests_smoothed": 15799.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 7.876, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-26", + "total_cases": 157859.0, + "new_cases": 2447.0, + "new_cases_smoothed": 2116.571, + "total_deaths": 6858.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 577.131, + "new_cases_per_million": 8.946, + "new_cases_smoothed_per_million": 7.738, + "total_deaths_per_million": 25.073, + "new_deaths_per_million": 0.362, + "new_deaths_smoothed_per_million": 0.303, + "new_tests_smoothed": 15131.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 7.149, + "positive_rate": 0.14, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-27", + "total_cases": 160165.0, + "new_cases": 2306.0, + "new_cases_smoothed": 2174.286, + "total_deaths": 6944.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 85.429, + "total_cases_per_million": 585.562, + "new_cases_per_million": 8.431, + "new_cases_smoothed_per_million": 7.949, + "total_deaths_per_million": 25.387, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.312, + "total_tests": 1212468.0, + "total_tests_per_thousand": 4.433, + "new_tests_smoothed": 14319.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 6.586, + "positive_rate": 0.152, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-28", + "total_cases": 162884.0, + "new_cases": 2719.0, + "new_cases_smoothed": 2239.0, + "total_deaths": 7064.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 92.286, + "total_cases_per_million": 595.502, + "new_cases_per_million": 9.941, + "new_cases_smoothed_per_million": 8.186, + "total_deaths_per_million": 25.826, + "new_deaths_per_million": 0.439, + "new_deaths_smoothed_per_million": 0.337, + "new_tests": 21018.0, + "total_tests": 1233486.0, + "total_tests_per_thousand": 4.51, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 15044.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 6.718999999999999, + "positive_rate": 0.149, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-29", + "total_cases": 165887.0, + "new_cases": 3003.0, + "new_cases_smoothed": 2354.143, + "total_deaths": 7169.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 95.571, + "total_cases_per_million": 606.481, + "new_cases_per_million": 10.979, + "new_cases_smoothed_per_million": 8.607, + "total_deaths_per_million": 26.21, + "new_deaths_per_million": 0.384, + "new_deaths_smoothed_per_million": 0.349, + "new_tests": 16649.0, + "total_tests": 1250135.0, + "total_tests_per_thousand": 4.57, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 15145.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 6.433, + "positive_rate": 0.155, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-30", + "total_cases": 169195.0, + "new_cases": 3308.0, + "new_cases_smoothed": 2528.143, + "total_deaths": 7261.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 95.286, + "total_cases_per_million": 618.575, + "new_cases_per_million": 12.094, + "new_cases_smoothed_per_million": 9.243, + "total_deaths_per_million": 26.546, + "new_deaths_per_million": 0.336, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 21166.0, + "total_tests": 1271301.0, + "total_tests_per_thousand": 4.648, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 15891.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 6.2860000000000005, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-08-31", + "total_cases": 172053.0, + "new_cases": 2858.0, + "new_cases_smoothed": 2645.429, + "total_deaths": 7343.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 94.714, + "total_cases_per_million": 629.024, + "new_cases_per_million": 10.449, + "new_cases_smoothed_per_million": 9.672, + "total_deaths_per_million": 26.846, + "new_deaths_per_million": 0.3, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 11317.0, + "total_tests": 1282618.0, + "total_tests_per_thousand": 4.689, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 15230.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 5.757000000000001, + "positive_rate": 0.174, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-09-01", + "total_cases": 174796.0, + "new_cases": 2743.0, + "new_cases_smoothed": 2769.143, + "total_deaths": 7417.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 94.0, + "total_cases_per_million": 639.053, + "new_cases_per_million": 10.028, + "new_cases_smoothed_per_million": 10.124, + "total_deaths_per_million": 27.116, + "new_deaths_per_million": 0.271, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 14566.0, + "total_tests": 1297184.0, + "total_tests_per_thousand": 4.742, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 15034.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 5.428999999999999, + "positive_rate": 0.184, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-09-02", + "total_cases": 177571.0, + "new_cases": 2775.0, + "new_cases_smoothed": 2816.0, + "total_deaths": 7505.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 92.429, + "total_cases_per_million": 649.198, + "new_cases_per_million": 10.145, + "new_cases_smoothed_per_million": 10.295, + "total_deaths_per_million": 27.438, + "new_deaths_per_million": 0.322, + "new_deaths_smoothed_per_million": 0.338, + "new_tests": 15293.0, + "total_tests": 1312477.0, + "total_tests_per_thousand": 4.798, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 15753.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 5.593999999999999, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-09-03", + "total_cases": 180646.0, + "new_cases": 3075.0, + "new_cases_smoothed": 2925.857, + "total_deaths": 7616.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 96.0, + "total_cases_per_million": 660.44, + "new_cases_per_million": 11.242, + "new_cases_smoothed_per_million": 10.697, + "total_deaths_per_million": 27.844, + "new_deaths_per_million": 0.406, + "new_deaths_smoothed_per_million": 0.351, + "new_tests": 40814.0, + "total_tests": 1353291.0, + "total_tests_per_thousand": 4.948, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 20118.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 6.876, + "positive_rate": 0.145, + "tests_units": "people tested", + "stringency_index": 59.72 + }, + { + "date": "2020-09-04", + "total_cases": 184268.0, + "new_cases": 3622.0, + "new_cases_smoothed": 3054.857, + "total_deaths": 7750.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 98.0, + "total_cases_per_million": 673.682, + "new_cases_per_million": 13.242, + "new_cases_smoothed_per_million": 11.169, + "total_deaths_per_million": 28.334, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.358 + }, + { + "date": "2020-09-05", + "total_cases": 187537.0, + "new_cases": 3269.0, + "new_cases_smoothed": 3092.857, + "total_deaths": 7832.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 94.714, + "total_cases_per_million": 685.634, + "new_cases_per_million": 11.951, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 28.634, + "new_deaths_per_million": 0.3, + "new_deaths_smoothed_per_million": 0.346 + } + ] + }, + "IRN": { + "continent": "Asia", + "location": "Iran", + "population": 83992953.0, + "population_density": 49.831, + "median_age": 32.4, + "aged_65_older": 5.44, + "aged_70_older": 3.182, + "gdp_per_capita": 19082.62, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 270.308, + "diabetes_prevalence": 9.59, + "female_smokers": 0.8, + "male_smokers": 21.1, + "hospital_beds_per_thousand": 1.5, + "life_expectancy": 76.68, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.024, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 2.78 + }, + { + "date": "2020-02-22", + "total_cases": 18.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.214, + "new_cases_per_million": 0.155, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.048, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 28.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.333, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 43.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 0.512, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.095, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 61.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.714, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 0.726, + "new_cases_per_million": 0.214, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.143, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 95.0, + "new_cases": 34.0, + "new_cases_smoothed": 13.571, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1.131, + "new_cases_per_million": 0.405, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.179, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 20.37 + }, + { + "date": "2020-02-27", + "total_cases": 139.0, + "new_cases": 44.0, + "new_cases_smoothed": 19.571, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1.655, + "new_cases_per_million": 0.524, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 0.226, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 20.37 + }, + { + "date": "2020-02-28", + "total_cases": 245.0, + "new_cases": 106.0, + "new_cases_smoothed": 34.286, + "total_deaths": 26.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 2.917, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.31, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 20.37 + }, + { + "date": "2020-02-29", + "total_cases": 388.0, + "new_cases": 143.0, + "new_cases_smoothed": 52.857, + "total_deaths": 34.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 4.619, + "new_cases_per_million": 1.703, + "new_cases_smoothed_per_million": 0.629, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 20.37 + }, + { + "date": "2020-03-01", + "total_cases": 593.0, + "new_cases": 205.0, + "new_cases_smoothed": 80.714, + "total_deaths": 43.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 7.06, + "new_cases_per_million": 2.441, + "new_cases_smoothed_per_million": 0.961, + "total_deaths_per_million": 0.512, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 20.37 + }, + { + "date": "2020-03-02", + "total_cases": 978.0, + "new_cases": 385.0, + "new_cases_smoothed": 133.571, + "total_deaths": 54.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 11.644, + "new_cases_per_million": 4.584, + "new_cases_smoothed_per_million": 1.59, + "total_deaths_per_million": 0.643, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 20.37 + }, + { + "date": "2020-03-03", + "total_cases": 1501.0, + "new_cases": 523.0, + "new_cases_smoothed": 205.714, + "total_deaths": 66.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 17.871, + "new_cases_per_million": 6.227, + "new_cases_smoothed_per_million": 2.449, + "total_deaths_per_million": 0.786, + "new_deaths_per_million": 0.143, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 20.37 + }, + { + "date": "2020-03-04", + "total_cases": 2336.0, + "new_cases": 835.0, + "new_cases_smoothed": 320.143, + "total_deaths": 77.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 27.812, + "new_cases_per_million": 9.941, + "new_cases_smoothed_per_million": 3.812, + "total_deaths_per_million": 0.917, + "new_deaths_per_million": 0.131, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 20.37 + }, + { + "date": "2020-03-05", + "total_cases": 2922.0, + "new_cases": 586.0, + "new_cases_smoothed": 397.571, + "total_deaths": 92.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 34.789, + "new_cases_per_million": 6.977, + "new_cases_smoothed_per_million": 4.733, + "total_deaths_per_million": 1.095, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 42.59 + }, + { + "date": "2020-03-06", + "total_cases": 3513.0, + "new_cases": 591.0, + "new_cases_smoothed": 466.857, + "total_deaths": 107.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 41.825, + "new_cases_per_million": 7.036, + "new_cases_smoothed_per_million": 5.558, + "total_deaths_per_million": 1.274, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.138, + "stringency_index": 42.59 + }, + { + "date": "2020-03-07", + "total_cases": 4747.0, + "new_cases": 1234.0, + "new_cases_smoothed": 622.714, + "total_deaths": 124.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 56.517, + "new_cases_per_million": 14.692, + "new_cases_smoothed_per_million": 7.414, + "total_deaths_per_million": 1.476, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 42.59 + }, + { + "date": "2020-03-08", + "total_cases": 5823.0, + "new_cases": 1076.0, + "new_cases_smoothed": 747.143, + "total_deaths": 145.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 69.327, + "new_cases_per_million": 12.811, + "new_cases_smoothed_per_million": 8.895, + "total_deaths_per_million": 1.726, + "new_deaths_per_million": 0.25, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 42.59 + }, + { + "date": "2020-03-09", + "total_cases": 6566.0, + "new_cases": 743.0, + "new_cases_smoothed": 798.286, + "total_deaths": 194.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 78.173, + "new_cases_per_million": 8.846, + "new_cases_smoothed_per_million": 9.504, + "total_deaths_per_million": 2.31, + "new_deaths_per_million": 0.583, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 42.59 + }, + { + "date": "2020-03-10", + "total_cases": 7161.0, + "new_cases": 595.0, + "new_cases_smoothed": 808.571, + "total_deaths": 237.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 85.257, + "new_cases_per_million": 7.084, + "new_cases_smoothed_per_million": 9.627, + "total_deaths_per_million": 2.822, + "new_deaths_per_million": 0.512, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 42.59 + }, + { + "date": "2020-03-11", + "total_cases": 8042.0, + "new_cases": 881.0, + "new_cases_smoothed": 815.143, + "total_deaths": 291.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 95.746, + "new_cases_per_million": 10.489, + "new_cases_smoothed_per_million": 9.705, + "total_deaths_per_million": 3.465, + "new_deaths_per_million": 0.643, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 48.15 + }, + { + "date": "2020-03-12", + "total_cases": 9000.0, + "new_cases": 958.0, + "new_cases_smoothed": 868.286, + "total_deaths": 354.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 107.152, + "new_cases_per_million": 11.406, + "new_cases_smoothed_per_million": 10.338, + "total_deaths_per_million": 4.215, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.446, + "stringency_index": 48.15 + }, + { + "date": "2020-03-13", + "total_cases": 10075.0, + "new_cases": 1075.0, + "new_cases_smoothed": 937.429, + "total_deaths": 429.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 46.0, + "total_cases_per_million": 119.951, + "new_cases_per_million": 12.799, + "new_cases_smoothed_per_million": 11.161, + "total_deaths_per_million": 5.108, + "new_deaths_per_million": 0.893, + "new_deaths_smoothed_per_million": 0.548, + "stringency_index": 48.15 + }, + { + "date": "2020-03-14", + "total_cases": 11364.0, + "new_cases": 1289.0, + "new_cases_smoothed": 945.286, + "total_deaths": 514.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 55.714, + "total_cases_per_million": 135.297, + "new_cases_per_million": 15.347, + "new_cases_smoothed_per_million": 11.254, + "total_deaths_per_million": 6.12, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.663, + "stringency_index": 48.15 + }, + { + "date": "2020-03-15", + "total_cases": 12729.0, + "new_cases": 1365.0, + "new_cases_smoothed": 986.571, + "total_deaths": 611.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 66.571, + "total_cases_per_million": 151.548, + "new_cases_per_million": 16.251, + "new_cases_smoothed_per_million": 11.746, + "total_deaths_per_million": 7.274, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 0.793, + "stringency_index": 48.15 + }, + { + "date": "2020-03-16", + "total_cases": 13938.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1053.143, + "total_deaths": 724.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 75.714, + "total_cases_per_million": 165.942, + "new_cases_per_million": 14.394, + "new_cases_smoothed_per_million": 12.538, + "total_deaths_per_million": 8.62, + "new_deaths_per_million": 1.345, + "new_deaths_smoothed_per_million": 0.901, + "stringency_index": 48.15 + }, + { + "date": "2020-03-17", + "total_cases": 14991.0, + "new_cases": 1053.0, + "new_cases_smoothed": 1118.571, + "total_deaths": 853.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 88.0, + "total_cases_per_million": 178.479, + "new_cases_per_million": 12.537, + "new_cases_smoothed_per_million": 13.317, + "total_deaths_per_million": 10.156, + "new_deaths_per_million": 1.536, + "new_deaths_smoothed_per_million": 1.048, + "stringency_index": 48.15 + }, + { + "date": "2020-03-18", + "total_cases": 16169.0, + "new_cases": 1178.0, + "new_cases_smoothed": 1161.0, + "total_deaths": 988.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 99.571, + "total_cases_per_million": 192.504, + "new_cases_per_million": 14.025, + "new_cases_smoothed_per_million": 13.823, + "total_deaths_per_million": 11.763, + "new_deaths_per_million": 1.607, + "new_deaths_smoothed_per_million": 1.185, + "stringency_index": 48.15 + }, + { + "date": "2020-03-19", + "total_cases": 17361.0, + "new_cases": 1192.0, + "new_cases_smoothed": 1194.429, + "total_deaths": 1135.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 111.571, + "total_cases_per_million": 206.696, + "new_cases_per_million": 14.192, + "new_cases_smoothed_per_million": 14.221, + "total_deaths_per_million": 13.513, + "new_deaths_per_million": 1.75, + "new_deaths_smoothed_per_million": 1.328, + "stringency_index": 51.85 + }, + { + "date": "2020-03-20", + "total_cases": 18407.0, + "new_cases": 1046.0, + "new_cases_smoothed": 1190.286, + "total_deaths": 1284.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 122.143, + "total_cases_per_million": 219.149, + "new_cases_per_million": 12.453, + "new_cases_smoothed_per_million": 14.171, + "total_deaths_per_million": 15.287, + "new_deaths_per_million": 1.774, + "new_deaths_smoothed_per_million": 1.454, + "stringency_index": 51.85 + }, + { + "date": "2020-03-21", + "total_cases": 19644.0, + "new_cases": 1237.0, + "new_cases_smoothed": 1182.857, + "total_deaths": 1433.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 131.286, + "total_cases_per_million": 233.877, + "new_cases_per_million": 14.727, + "new_cases_smoothed_per_million": 14.083, + "total_deaths_per_million": 17.061, + "new_deaths_per_million": 1.774, + "new_deaths_smoothed_per_million": 1.563, + "stringency_index": 51.85 + }, + { + "date": "2020-03-22", + "total_cases": 20610.0, + "new_cases": 966.0, + "new_cases_smoothed": 1125.857, + "total_deaths": 1556.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 135.0, + "total_cases_per_million": 245.378, + "new_cases_per_million": 11.501, + "new_cases_smoothed_per_million": 13.404, + "total_deaths_per_million": 18.525, + "new_deaths_per_million": 1.464, + "new_deaths_smoothed_per_million": 1.607, + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 21638.0, + "new_cases": 1028.0, + "new_cases_smoothed": 1100.0, + "total_deaths": 1685.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 137.286, + "total_cases_per_million": 257.617, + "new_cases_per_million": 12.239, + "new_cases_smoothed_per_million": 13.096, + "total_deaths_per_million": 20.061, + "new_deaths_per_million": 1.536, + "new_deaths_smoothed_per_million": 1.634, + "stringency_index": 57.41 + }, + { + "date": "2020-03-24", + "total_cases": 23049.0, + "new_cases": 1411.0, + "new_cases_smoothed": 1151.143, + "total_deaths": 1812.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 137.0, + "total_cases_per_million": 274.416, + "new_cases_per_million": 16.799, + "new_cases_smoothed_per_million": 13.705, + "total_deaths_per_million": 21.573, + "new_deaths_per_million": 1.512, + "new_deaths_smoothed_per_million": 1.631, + "stringency_index": 57.41 + }, + { + "date": "2020-03-25", + "total_cases": 24811.0, + "new_cases": 1762.0, + "new_cases_smoothed": 1234.571, + "total_deaths": 1934.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 135.143, + "total_cases_per_million": 295.394, + "new_cases_per_million": 20.978, + "new_cases_smoothed_per_million": 14.699, + "total_deaths_per_million": 23.026, + "new_deaths_per_million": 1.453, + "new_deaths_smoothed_per_million": 1.609, + "stringency_index": 57.41 + }, + { + "date": "2020-03-26", + "total_cases": 27017.0, + "new_cases": 2206.0, + "new_cases_smoothed": 1379.429, + "total_deaths": 2077.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 134.571, + "total_cases_per_million": 321.658, + "new_cases_per_million": 26.264, + "new_cases_smoothed_per_million": 16.423, + "total_deaths_per_million": 24.728, + "new_deaths_per_million": 1.703, + "new_deaths_smoothed_per_million": 1.602, + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 29406.0, + "new_cases": 2389.0, + "new_cases_smoothed": 1571.286, + "total_deaths": 2234.0, + "new_deaths": 157.0, + "new_deaths_smoothed": 135.714, + "total_cases_per_million": 350.101, + "new_cases_per_million": 28.443, + "new_cases_smoothed_per_million": 18.707, + "total_deaths_per_million": 26.597, + "new_deaths_per_million": 1.869, + "new_deaths_smoothed_per_million": 1.616, + "stringency_index": 57.41 + }, + { + "date": "2020-03-28", + "total_cases": 32332.0, + "new_cases": 2926.0, + "new_cases_smoothed": 1812.571, + "total_deaths": 2378.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 135.0, + "total_cases_per_million": 384.937, + "new_cases_per_million": 34.836, + "new_cases_smoothed_per_million": 21.58, + "total_deaths_per_million": 28.312, + "new_deaths_per_million": 1.714, + "new_deaths_smoothed_per_million": 1.607, + "stringency_index": 57.41 + }, + { + "date": "2020-03-29", + "total_cases": 35408.0, + "new_cases": 3076.0, + "new_cases_smoothed": 2114.0, + "total_deaths": 2517.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 137.286, + "total_cases_per_million": 421.559, + "new_cases_per_million": 36.622, + "new_cases_smoothed_per_million": 25.169, + "total_deaths_per_million": 29.967, + "new_deaths_per_million": 1.655, + "new_deaths_smoothed_per_million": 1.634, + "stringency_index": 57.41 + }, + { + "date": "2020-03-30", + "total_cases": 38309.0, + "new_cases": 2901.0, + "new_cases_smoothed": 2381.571, + "total_deaths": 2640.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 136.429, + "total_cases_per_million": 456.098, + "new_cases_per_million": 34.539, + "new_cases_smoothed_per_million": 28.354, + "total_deaths_per_million": 31.431, + "new_deaths_per_million": 1.464, + "new_deaths_smoothed_per_million": 1.624, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 41495.0, + "new_cases": 3186.0, + "new_cases_smoothed": 2635.143, + "total_deaths": 2757.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 135.0, + "total_cases_per_million": 494.03, + "new_cases_per_million": 37.932, + "new_cases_smoothed_per_million": 31.373, + "total_deaths_per_million": 32.824, + "new_deaths_per_million": 1.393, + "new_deaths_smoothed_per_million": 1.607, + "stringency_index": 57.41 + }, + { + "date": "2020-04-01", + "total_cases": 44606.0, + "new_cases": 3111.0, + "new_cases_smoothed": 2827.857, + "total_deaths": 2898.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 137.714, + "total_cases_per_million": 531.068, + "new_cases_per_million": 37.039, + "new_cases_smoothed_per_million": 33.668, + "total_deaths_per_million": 34.503, + "new_deaths_per_million": 1.679, + "new_deaths_smoothed_per_million": 1.64, + "stringency_index": 57.41 + }, + { + "date": "2020-04-02", + "total_cases": 47593.0, + "new_cases": 2987.0, + "new_cases_smoothed": 2939.429, + "total_deaths": 3036.0, + "new_deaths": 138.0, + "new_deaths_smoothed": 137.0, + "total_cases_per_million": 566.631, + "new_cases_per_million": 35.563, + "new_cases_smoothed_per_million": 34.996, + "total_deaths_per_million": 36.146, + "new_deaths_per_million": 1.643, + "new_deaths_smoothed_per_million": 1.631, + "stringency_index": 57.41 + }, + { + "date": "2020-04-03", + "total_cases": 50468.0, + "new_cases": 2875.0, + "new_cases_smoothed": 3008.857, + "total_deaths": 3160.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 132.286, + "total_cases_per_million": 600.86, + "new_cases_per_million": 34.229, + "new_cases_smoothed_per_million": 35.823, + "total_deaths_per_million": 37.622, + "new_deaths_per_million": 1.476, + "new_deaths_smoothed_per_million": 1.575, + "stringency_index": 57.41 + }, + { + "date": "2020-04-04", + "total_cases": 50468.0, + "new_cases": 0.0, + "new_cases_smoothed": 2590.857, + "total_deaths": 3160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 111.714, + "total_cases_per_million": 600.86, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.846, + "total_deaths_per_million": 37.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.33, + "stringency_index": 57.41 + }, + { + "date": "2020-04-05", + "total_cases": 55743.0, + "new_cases": 5275.0, + "new_cases_smoothed": 2905.0, + "total_deaths": 3452.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 133.571, + "total_cases_per_million": 663.663, + "new_cases_per_million": 62.803, + "new_cases_smoothed_per_million": 34.586, + "total_deaths_per_million": 41.099, + "new_deaths_per_million": 3.476, + "new_deaths_smoothed_per_million": 1.59, + "total_tests": 189790.0, + "total_tests_per_thousand": 2.26, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-06", + "total_cases": 58226.0, + "new_cases": 2483.0, + "new_cases_smoothed": 2845.286, + "total_deaths": 3603.0, + "new_deaths": 151.0, + "new_deaths_smoothed": 137.571, + "total_cases_per_million": 693.225, + "new_cases_per_million": 29.562, + "new_cases_smoothed_per_million": 33.875, + "total_deaths_per_million": 42.896, + "new_deaths_per_million": 1.798, + "new_deaths_smoothed_per_million": 1.638, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-07", + "total_cases": 60500.0, + "new_cases": 2274.0, + "new_cases_smoothed": 2715.0, + "total_deaths": 3739.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 140.286, + "total_cases_per_million": 720.299, + "new_cases_per_million": 27.074, + "new_cases_smoothed_per_million": 32.324, + "total_deaths_per_million": 44.516, + "new_deaths_per_million": 1.619, + "new_deaths_smoothed_per_million": 1.67, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-08", + "total_cases": 62589.0, + "new_cases": 2089.0, + "new_cases_smoothed": 2569.0, + "total_deaths": 3872.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 139.143, + "total_cases_per_million": 745.17, + "new_cases_per_million": 24.871, + "new_cases_smoothed_per_million": 30.586, + "total_deaths_per_million": 46.099, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 1.657, + "total_tests": 220975.0, + "total_tests_per_thousand": 2.631, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-09", + "total_cases": 64586.0, + "new_cases": 1997.0, + "new_cases_smoothed": 2427.571, + "total_deaths": 3993.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 136.714, + "total_cases_per_million": 768.945, + "new_cases_per_million": 23.776, + "new_cases_smoothed_per_million": 28.902, + "total_deaths_per_million": 47.54, + "new_deaths_per_million": 1.441, + "new_deaths_smoothed_per_million": 1.628, + "new_tests": 10418.0, + "total_tests": 231393.0, + "total_tests_per_thousand": 2.755, + "new_tests_per_thousand": 0.124, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-10", + "total_cases": 66220.0, + "new_cases": 1634.0, + "new_cases_smoothed": 2250.286, + "total_deaths": 4110.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 135.714, + "total_cases_per_million": 788.399, + "new_cases_per_million": 19.454, + "new_cases_smoothed_per_million": 26.791, + "total_deaths_per_million": 48.933, + "new_deaths_per_million": 1.393, + "new_deaths_smoothed_per_million": 1.616, + "new_tests": 11175.0, + "total_tests": 242568.0, + "total_tests_per_thousand": 2.888, + "new_tests_per_thousand": 0.133, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-04-11", + "total_cases": 68192.0, + "new_cases": 1972.0, + "new_cases_smoothed": 2532.0, + "total_deaths": 4232.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 153.143, + "total_cases_per_million": 811.878, + "new_cases_per_million": 23.478, + "new_cases_smoothed_per_million": 30.145, + "total_deaths_per_million": 50.385, + "new_deaths_per_million": 1.453, + "new_deaths_smoothed_per_million": 1.823, + "new_tests": 9135.0, + "total_tests": 251703.0, + "total_tests_per_thousand": 2.997, + "new_tests_per_thousand": 0.109, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-12", + "total_cases": 70029.0, + "new_cases": 1837.0, + "new_cases_smoothed": 2040.857, + "total_deaths": 4357.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 129.286, + "total_cases_per_million": 833.749, + "new_cases_per_million": 21.871, + "new_cases_smoothed_per_million": 24.298, + "total_deaths_per_million": 51.873, + "new_deaths_per_million": 1.488, + "new_deaths_smoothed_per_million": 1.539, + "new_tests": 11685.0, + "total_tests": 263388.0, + "total_tests_per_thousand": 3.136, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 10514.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 5.152, + "positive_rate": 0.19399999999999998, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-13", + "total_cases": 71686.0, + "new_cases": 1657.0, + "new_cases_smoothed": 1922.857, + "total_deaths": 4474.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 124.429, + "total_cases_per_million": 853.476, + "new_cases_per_million": 19.728, + "new_cases_smoothed_per_million": 22.893, + "total_deaths_per_million": 53.266, + "new_deaths_per_million": 1.393, + "new_deaths_smoothed_per_million": 1.481, + "new_tests_smoothed": 10741.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 5.586, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-14", + "total_cases": 73303.0, + "new_cases": 1617.0, + "new_cases_smoothed": 1829.0, + "total_deaths": 4585.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 120.857, + "total_cases_per_million": 872.728, + "new_cases_per_million": 19.252, + "new_cases_smoothed_per_million": 21.776, + "total_deaths_per_million": 54.588, + "new_deaths_per_million": 1.322, + "new_deaths_smoothed_per_million": 1.439, + "total_tests": 287359.0, + "total_tests_per_thousand": 3.421, + "new_tests_smoothed": 10968.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 5.997000000000001, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-15", + "total_cases": 74877.0, + "new_cases": 1574.0, + "new_cases_smoothed": 1755.429, + "total_deaths": 4683.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 115.857, + "total_cases_per_million": 891.468, + "new_cases_per_million": 18.74, + "new_cases_smoothed_per_million": 20.9, + "total_deaths_per_million": 55.755, + "new_deaths_per_million": 1.167, + "new_deaths_smoothed_per_million": 1.379, + "new_tests": 11845.0, + "total_tests": 299204.0, + "total_tests_per_thousand": 3.562, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 11176.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 6.367000000000001, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-16", + "total_cases": 76389.0, + "new_cases": 1512.0, + "new_cases_smoothed": 1686.143, + "total_deaths": 4777.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 112.0, + "total_cases_per_million": 909.469, + "new_cases_per_million": 18.002, + "new_cases_smoothed_per_million": 20.075, + "total_deaths_per_million": 56.874, + "new_deaths_per_million": 1.119, + "new_deaths_smoothed_per_million": 1.333, + "new_tests": 11136.0, + "total_tests": 310340.0, + "total_tests_per_thousand": 3.695, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 11278.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 6.689, + "positive_rate": 0.15, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-17", + "total_cases": 77995.0, + "new_cases": 1606.0, + "new_cases_smoothed": 1682.143, + "total_deaths": 4869.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 108.429, + "total_cases_per_million": 928.59, + "new_cases_per_million": 19.121, + "new_cases_smoothed_per_million": 20.027, + "total_deaths_per_million": 57.969, + "new_deaths_per_million": 1.095, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 9539.0, + "total_tests": 319879.0, + "total_tests_per_thousand": 3.808, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 11044.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 6.565, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-18", + "total_cases": 79494.0, + "new_cases": 1499.0, + "new_cases_smoothed": 1614.571, + "total_deaths": 4958.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 103.714, + "total_cases_per_million": 946.437, + "new_cases_per_million": 17.847, + "new_cases_smoothed_per_million": 19.223, + "total_deaths_per_million": 59.029, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 1.235, + "new_tests": 10258.0, + "total_tests": 330137.0, + "total_tests_per_thousand": 3.931, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 11205.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 6.94, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-04-19", + "total_cases": 80868.0, + "new_cases": 1374.0, + "new_cases_smoothed": 1548.429, + "total_deaths": 5031.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 96.286, + "total_cases_per_million": 962.795, + "new_cases_per_million": 16.359, + "new_cases_smoothed_per_million": 18.435, + "total_deaths_per_million": 59.898, + "new_deaths_per_million": 0.869, + "new_deaths_smoothed_per_million": 1.146, + "new_tests": 11525.0, + "total_tests": 341662.0, + "total_tests_per_thousand": 4.068, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 11182.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 7.222, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-20", + "total_cases": 82211.0, + "new_cases": 1343.0, + "new_cases_smoothed": 1503.571, + "total_deaths": 5118.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 92.0, + "total_cases_per_million": 978.784, + "new_cases_per_million": 15.989, + "new_cases_smoothed_per_million": 17.901, + "total_deaths_per_million": 60.934, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 1.095, + "new_tests": 11350.0, + "total_tests": 353012.0, + "total_tests_per_thousand": 4.203, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 11091.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 7.376, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-21", + "total_cases": 83505.0, + "new_cases": 1294.0, + "new_cases_smoothed": 1457.429, + "total_deaths": 5209.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 89.143, + "total_cases_per_million": 994.191, + "new_cases_per_million": 15.406, + "new_cases_smoothed_per_million": 17.352, + "total_deaths_per_million": 62.017, + "new_deaths_per_million": 1.083, + "new_deaths_smoothed_per_million": 1.061, + "new_tests": 12711.0, + "total_tests": 365723.0, + "total_tests_per_thousand": 4.354, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 11195.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 7.681, + "positive_rate": 0.13, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-22", + "total_cases": 84802.0, + "new_cases": 1297.0, + "new_cases_smoothed": 1417.857, + "total_deaths": 5297.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 87.714, + "total_cases_per_million": 1009.632, + "new_cases_per_million": 15.442, + "new_cases_smoothed_per_million": 16.881, + "total_deaths_per_million": 63.065, + "new_deaths_per_million": 1.048, + "new_deaths_smoothed_per_million": 1.044, + "new_tests_smoothed": 11202.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 7.901, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-23", + "total_cases": 85996.0, + "new_cases": 1194.0, + "new_cases_smoothed": 1372.429, + "total_deaths": 5391.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 87.714, + "total_cases_per_million": 1023.848, + "new_cases_per_million": 14.215, + "new_cases_smoothed_per_million": 16.34, + "total_deaths_per_million": 64.184, + "new_deaths_per_million": 1.119, + "new_deaths_smoothed_per_million": 1.044, + "total_tests": 389507.0, + "total_tests_per_thousand": 4.637, + "new_tests_smoothed": 11310.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 8.241, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-24", + "total_cases": 87026.0, + "new_cases": 1030.0, + "new_cases_smoothed": 1290.143, + "total_deaths": 5481.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 87.429, + "total_cases_per_million": 1036.111, + "new_cases_per_million": 12.263, + "new_cases_smoothed_per_million": 15.36, + "total_deaths_per_million": 65.255, + "new_deaths_per_million": 1.072, + "new_deaths_smoothed_per_million": 1.041, + "new_tests": 10420.0, + "total_tests": 399927.0, + "total_tests_per_thousand": 4.761, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 11435.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 8.863, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-25", + "total_cases": 88194.0, + "new_cases": 1168.0, + "new_cases_smoothed": 1242.857, + "total_deaths": 5574.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 88.0, + "total_cases_per_million": 1050.017, + "new_cases_per_million": 13.906, + "new_cases_smoothed_per_million": 14.797, + "total_deaths_per_million": 66.363, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 1.048, + "new_tests": 10148.0, + "total_tests": 410075.0, + "total_tests_per_thousand": 4.882, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 11420.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 9.189, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-26", + "total_cases": 89328.0, + "new_cases": 1134.0, + "new_cases_smoothed": 1208.571, + "total_deaths": 5650.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 88.429, + "total_cases_per_million": 1063.518, + "new_cases_per_million": 13.501, + "new_cases_smoothed_per_million": 14.389, + "total_deaths_per_million": 67.268, + "new_deaths_per_million": 0.905, + "new_deaths_smoothed_per_million": 1.053, + "new_tests": 11238.0, + "total_tests": 421313.0, + "total_tests_per_thousand": 5.016, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 11379.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 9.415, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-27", + "total_cases": 90481.0, + "new_cases": 1153.0, + "new_cases_smoothed": 1181.429, + "total_deaths": 5710.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 84.571, + "total_cases_per_million": 1077.245, + "new_cases_per_million": 13.727, + "new_cases_smoothed_per_million": 14.066, + "total_deaths_per_million": 67.982, + "new_deaths_per_million": 0.714, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 11016.0, + "total_tests": 432329.0, + "total_tests_per_thousand": 5.147, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 11331.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 9.591000000000001, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-28", + "total_cases": 91472.0, + "new_cases": 991.0, + "new_cases_smoothed": 1138.143, + "total_deaths": 5806.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 85.286, + "total_cases_per_million": 1089.044, + "new_cases_per_million": 11.799, + "new_cases_smoothed_per_million": 13.55, + "total_deaths_per_million": 69.125, + "new_deaths_per_million": 1.143, + "new_deaths_smoothed_per_million": 1.015, + "new_tests_smoothed": 11019.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 9.682, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-29", + "total_cases": 92584.0, + "new_cases": 1112.0, + "new_cases_smoothed": 1111.714, + "total_deaths": 5877.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 82.857, + "total_cases_per_million": 1102.283, + "new_cases_per_million": 13.239, + "new_cases_smoothed_per_million": 13.236, + "total_deaths_per_million": 69.97, + "new_deaths_per_million": 0.845, + "new_deaths_smoothed_per_million": 0.986, + "total_tests": 453386.0, + "total_tests_per_thousand": 5.398, + "new_tests_smoothed": 10824.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 9.736, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-04-30", + "total_cases": 93657.0, + "new_cases": 1073.0, + "new_cases_smoothed": 1094.429, + "total_deaths": 5957.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 80.857, + "total_cases_per_million": 1115.058, + "new_cases_per_million": 12.775, + "new_cases_smoothed_per_million": 13.03, + "total_deaths_per_million": 70.923, + "new_deaths_per_million": 0.952, + "new_deaths_smoothed_per_million": 0.963, + "new_tests": 9909.0, + "total_tests": 463295.0, + "total_tests_per_thousand": 5.516, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 10541.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 9.632, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-01", + "total_cases": 94640.0, + "new_cases": 983.0, + "new_cases_smoothed": 1087.714, + "total_deaths": 6028.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 78.143, + "total_cases_per_million": 1126.761, + "new_cases_per_million": 11.703, + "new_cases_smoothed_per_million": 12.95, + "total_deaths_per_million": 71.768, + "new_deaths_per_million": 0.845, + "new_deaths_smoothed_per_million": 0.93, + "new_tests": 11728.0, + "total_tests": 475023.0, + "total_tests_per_thousand": 5.656, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 10728.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 9.863, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-02", + "total_cases": 95646.0, + "new_cases": 1006.0, + "new_cases_smoothed": 1064.571, + "total_deaths": 6091.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 73.857, + "total_cases_per_million": 1138.738, + "new_cases_per_million": 11.977, + "new_cases_smoothed_per_million": 12.675, + "total_deaths_per_million": 72.518, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.879, + "new_tests": 9518.0, + "total_tests": 484541.0, + "total_tests_per_thousand": 5.769, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 10638.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 9.993, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-03", + "total_cases": 96448.0, + "new_cases": 802.0, + "new_cases_smoothed": 1017.143, + "total_deaths": 6156.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 72.286, + "total_cases_per_million": 1148.287, + "new_cases_per_million": 9.548, + "new_cases_smoothed_per_million": 12.11, + "total_deaths_per_million": 73.292, + "new_deaths_per_million": 0.774, + "new_deaths_smoothed_per_million": 0.861, + "new_tests": 11732.0, + "total_tests": 496273.0, + "total_tests_per_thousand": 5.909, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 10709.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 10.529000000000002, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-04", + "total_cases": 97424.0, + "new_cases": 976.0, + "new_cases_smoothed": 991.857, + "total_deaths": 6203.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 70.429, + "total_cases_per_million": 1159.907, + "new_cases_per_million": 11.62, + "new_cases_smoothed_per_million": 11.809, + "total_deaths_per_million": 73.851, + "new_deaths_per_million": 0.56, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 12015.0, + "total_tests": 508288.0, + "total_tests_per_thousand": 6.052, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 10851.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 10.94, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-05", + "total_cases": 98647.0, + "new_cases": 1223.0, + "new_cases_smoothed": 1025.0, + "total_deaths": 6277.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 67.286, + "total_cases_per_million": 1174.468, + "new_cases_per_million": 14.561, + "new_cases_smoothed_per_million": 12.203, + "total_deaths_per_million": 74.732, + "new_deaths_per_million": 0.881, + "new_deaths_smoothed_per_million": 0.801, + "new_tests": 11255.0, + "total_tests": 519543.0, + "total_tests_per_thousand": 6.186, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 10955.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 10.687999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-06", + "total_cases": 99970.0, + "new_cases": 1323.0, + "new_cases_smoothed": 1055.143, + "total_deaths": 6340.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 66.143, + "total_cases_per_million": 1190.219, + "new_cases_per_million": 15.751, + "new_cases_smoothed_per_million": 12.562, + "total_deaths_per_million": 75.483, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.787, + "new_tests": 11732.0, + "total_tests": 531275.0, + "total_tests_per_thousand": 6.325, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 11127.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 10.545, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-07", + "total_cases": 101650.0, + "new_cases": 1680.0, + "new_cases_smoothed": 1141.857, + "total_deaths": 6418.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 65.857, + "total_cases_per_million": 1210.221, + "new_cases_per_million": 20.002, + "new_cases_smoothed_per_million": 13.595, + "total_deaths_per_million": 76.411, + "new_deaths_per_million": 0.929, + "new_deaths_smoothed_per_million": 0.784, + "new_tests": 13517.0, + "total_tests": 544792.0, + "total_tests_per_thousand": 6.486, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 11642.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 10.196, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-08", + "total_cases": 103135.0, + "new_cases": 1485.0, + "new_cases_smoothed": 1213.571, + "total_deaths": 6486.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 65.429, + "total_cases_per_million": 1227.901, + "new_cases_per_million": 17.68, + "new_cases_smoothed_per_million": 14.448, + "total_deaths_per_million": 77.221, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.779, + "new_tests": 14107.0, + "total_tests": 558899.0, + "total_tests_per_thousand": 6.654, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 11982.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 9.873, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-05-09", + "total_cases": 104691.0, + "new_cases": 1556.0, + "new_cases_smoothed": 1292.143, + "total_deaths": 6541.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 64.286, + "total_cases_per_million": 1246.426, + "new_cases_per_million": 18.525, + "new_cases_smoothed_per_million": 15.384, + "total_deaths_per_million": 77.876, + "new_deaths_per_million": 0.655, + "new_deaths_smoothed_per_million": 0.765, + "new_tests_smoothed": 12608.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 9.757, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-10", + "total_cases": 106220.0, + "new_cases": 1529.0, + "new_cases_smoothed": 1396.0, + "total_deaths": 6589.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 61.857, + "total_cases_per_million": 1264.63, + "new_cases_per_million": 18.204, + "new_cases_smoothed_per_million": 16.62, + "total_deaths_per_million": 78.447, + "new_deaths_per_million": 0.571, + "new_deaths_smoothed_per_million": 0.736, + "total_tests": 586699.0, + "total_tests_per_thousand": 6.985, + "new_tests_smoothed": 12918.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 9.254, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-11", + "total_cases": 107603.0, + "new_cases": 1383.0, + "new_cases_smoothed": 1454.143, + "total_deaths": 6640.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 62.429, + "total_cases_per_million": 1281.096, + "new_cases_per_million": 16.466, + "new_cases_smoothed_per_million": 17.313, + "total_deaths_per_million": 79.054, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.743, + "new_tests_smoothed": 13257.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 9.117, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-12", + "total_cases": 109286.0, + "new_cases": 1683.0, + "new_cases_smoothed": 1519.857, + "total_deaths": 6685.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 1301.133, + "new_cases_per_million": 20.037, + "new_cases_smoothed_per_million": 18.095, + "total_deaths_per_million": 79.59, + "new_deaths_per_million": 0.536, + "new_deaths_smoothed_per_million": 0.694, + "total_tests": 615477.0, + "total_tests_per_thousand": 7.328, + "new_tests_smoothed": 13705.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 9.017000000000001, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-13", + "total_cases": 110767.0, + "new_cases": 1481.0, + "new_cases_smoothed": 1542.429, + "total_deaths": 6733.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 56.143, + "total_cases_per_million": 1318.765, + "new_cases_per_million": 17.632, + "new_cases_smoothed_per_million": 18.364, + "total_deaths_per_million": 80.161, + "new_deaths_per_million": 0.571, + "new_deaths_smoothed_per_million": 0.668, + "new_tests": 14057.0, + "total_tests": 629534.0, + "total_tests_per_thousand": 7.495, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 14037.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 9.101, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-14", + "total_cases": 112725.0, + "new_cases": 1958.0, + "new_cases_smoothed": 1582.143, + "total_deaths": 6783.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 52.143, + "total_cases_per_million": 1342.077, + "new_cases_per_million": 23.311, + "new_cases_smoothed_per_million": 18.837, + "total_deaths_per_million": 80.757, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.621, + "new_tests": 14238.0, + "total_tests": 643772.0, + "total_tests_per_thousand": 7.665, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 14140.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 8.937000000000001, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-15", + "total_cases": 114533.0, + "new_cases": 1808.0, + "new_cases_smoothed": 1628.286, + "total_deaths": 6854.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 1363.602, + "new_cases_per_million": 21.526, + "new_cases_smoothed_per_million": 19.386, + "total_deaths_per_million": 81.602, + "new_deaths_per_million": 0.845, + "new_deaths_smoothed_per_million": 0.626, + "new_tests": 14832.0, + "total_tests": 658604.0, + "total_tests_per_thousand": 7.841, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 14244.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 8.748, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-05-16", + "total_cases": 116635.0, + "new_cases": 2102.0, + "new_cases_smoothed": 1706.286, + "total_deaths": 6902.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 1388.628, + "new_cases_per_million": 25.026, + "new_cases_smoothed_per_million": 20.315, + "total_deaths_per_million": 82.174, + "new_deaths_per_million": 0.571, + "new_deaths_smoothed_per_million": 0.614, + "new_tests": 14075.0, + "total_tests": 672679.0, + "total_tests_per_thousand": 8.009, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 14269.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 8.363, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-05-17", + "total_cases": 118392.0, + "new_cases": 1757.0, + "new_cases_smoothed": 1738.857, + "total_deaths": 6937.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 49.714, + "total_cases_per_million": 1409.547, + "new_cases_per_million": 20.918, + "new_cases_smoothed_per_million": 20.702, + "total_deaths_per_million": 82.59, + "new_deaths_per_million": 0.417, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 14256.0, + "total_tests": 686935.0, + "total_tests_per_thousand": 8.178, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 14319.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 8.235, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-18", + "total_cases": 120198.0, + "new_cases": 1806.0, + "new_cases_smoothed": 1799.286, + "total_deaths": 6988.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 49.714, + "total_cases_per_million": 1431.049, + "new_cases_per_million": 21.502, + "new_cases_smoothed_per_million": 21.422, + "total_deaths_per_million": 83.197, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 14705.0, + "total_tests": 701640.0, + "total_tests_per_thousand": 8.354, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 14365.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 7.984, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-19", + "total_cases": 122492.0, + "new_cases": 2294.0, + "new_cases_smoothed": 1886.571, + "total_deaths": 7057.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 53.143, + "total_cases_per_million": 1458.36, + "new_cases_per_million": 27.312, + "new_cases_smoothed_per_million": 22.461, + "total_deaths_per_million": 84.019, + "new_deaths_per_million": 0.821, + "new_deaths_smoothed_per_million": 0.633, + "new_tests": 14536.0, + "total_tests": 716176.0, + "total_tests_per_thousand": 8.527, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 14386.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 7.625, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-20", + "total_cases": 124603.0, + "new_cases": 2111.0, + "new_cases_smoothed": 1976.571, + "total_deaths": 7119.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 55.143, + "total_cases_per_million": 1483.494, + "new_cases_per_million": 25.133, + "new_cases_smoothed_per_million": 23.533, + "total_deaths_per_million": 84.757, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.657, + "new_tests": 15037.0, + "total_tests": 731213.0, + "total_tests_per_thousand": 8.706, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 14526.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 7.349, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-21", + "total_cases": 126949.0, + "new_cases": 2346.0, + "new_cases_smoothed": 2032.0, + "total_deaths": 7183.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 57.143, + "total_cases_per_million": 1511.424, + "new_cases_per_million": 27.931, + "new_cases_smoothed_per_million": 24.193, + "total_deaths_per_million": 85.519, + "new_deaths_per_million": 0.762, + "new_deaths_smoothed_per_million": 0.68, + "new_tests": 14832.0, + "total_tests": 746045.0, + "total_tests_per_thousand": 8.882, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 14610.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 7.19, + "positive_rate": 0.139, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-22", + "total_cases": 129341.0, + "new_cases": 2392.0, + "new_cases_smoothed": 2115.429, + "total_deaths": 7249.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 56.429, + "total_cases_per_million": 1539.903, + "new_cases_per_million": 28.479, + "new_cases_smoothed_per_million": 25.186, + "total_deaths_per_million": 86.305, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 17868.0, + "total_tests": 763913.0, + "total_tests_per_thousand": 9.095, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 15044.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 7.112, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-23", + "total_cases": 131652.0, + "new_cases": 2311.0, + "new_cases_smoothed": 2145.286, + "total_deaths": 7300.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 56.857, + "total_cases_per_million": 1567.417, + "new_cases_per_million": 27.514, + "new_cases_smoothed_per_million": 25.541, + "total_deaths_per_million": 86.912, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.677, + "new_tests": 17373.0, + "total_tests": 781286.0, + "total_tests_per_thousand": 9.302, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 15515.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 7.232, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-24", + "total_cases": 133521.0, + "new_cases": 1869.0, + "new_cases_smoothed": 2161.286, + "total_deaths": 7359.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 60.286, + "total_cases_per_million": 1589.669, + "new_cases_per_million": 22.252, + "new_cases_smoothed_per_million": 25.732, + "total_deaths_per_million": 87.614, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.718, + "new_tests": 19233.0, + "total_tests": 800519.0, + "total_tests_per_thousand": 9.531, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 16226.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 7.507999999999999, + "positive_rate": 0.133, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-25", + "total_cases": 135701.0, + "new_cases": 2180.0, + "new_cases_smoothed": 2214.714, + "total_deaths": 7417.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 1615.624, + "new_cases_per_million": 25.955, + "new_cases_smoothed_per_million": 26.368, + "total_deaths_per_million": 88.305, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.73, + "new_tests": 18398.0, + "total_tests": 818917.0, + "total_tests_per_thousand": 9.75, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 16754.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 7.565, + "positive_rate": 0.132, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-05-26", + "total_cases": 137724.0, + "new_cases": 2023.0, + "new_cases_smoothed": 2176.0, + "total_deaths": 7451.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 56.286, + "total_cases_per_million": 1639.709, + "new_cases_per_million": 24.085, + "new_cases_smoothed_per_million": 25.907, + "total_deaths_per_million": 88.71, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.67, + "new_tests": 18173.0, + "total_tests": 837090.0, + "total_tests_per_thousand": 9.966, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 17273.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 7.938, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-05-27", + "total_cases": 139511.0, + "new_cases": 1787.0, + "new_cases_smoothed": 2129.714, + "total_deaths": 7508.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 55.571, + "total_cases_per_million": 1660.985, + "new_cases_per_million": 21.276, + "new_cases_smoothed_per_million": 25.356, + "total_deaths_per_million": 89.388, + "new_deaths_per_million": 0.679, + "new_deaths_smoothed_per_million": 0.662, + "new_tests": 19456.0, + "total_tests": 856546.0, + "total_tests_per_thousand": 10.198, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 17905.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 8.407, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-05-28", + "total_cases": 141591.0, + "new_cases": 2080.0, + "new_cases_smoothed": 2091.714, + "total_deaths": 7564.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 54.429, + "total_cases_per_million": 1685.749, + "new_cases_per_million": 24.764, + "new_cases_smoothed_per_million": 24.903, + "total_deaths_per_million": 90.055, + "new_deaths_per_million": 0.667, + "new_deaths_smoothed_per_million": 0.648, + "new_tests_smoothed": 18645.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 8.914, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-05-29", + "total_cases": 143849.0, + "new_cases": 2258.0, + "new_cases_smoothed": 2072.571, + "total_deaths": 7627.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 54.0, + "total_cases_per_million": 1712.632, + "new_cases_per_million": 26.883, + "new_cases_smoothed_per_million": 24.676, + "total_deaths_per_million": 90.805, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.643, + "total_tests": 896571.0, + "total_tests_per_thousand": 10.674, + "new_tests_smoothed": 18951.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 9.144, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-05-30", + "total_cases": 146668.0, + "new_cases": 2819.0, + "new_cases_smoothed": 2145.143, + "total_deaths": 7677.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 53.857, + "total_cases_per_million": 1746.194, + "new_cases_per_million": 33.562, + "new_cases_smoothed_per_million": 25.54, + "total_deaths_per_million": 91.401, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.641, + "new_tests": 19427.0, + "total_tests": 915998.0, + "total_tests_per_thousand": 10.906, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 19245.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 8.971, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-05-31", + "total_cases": 148950.0, + "new_cases": 2282.0, + "new_cases_smoothed": 2204.143, + "total_deaths": 7734.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 53.571, + "total_cases_per_million": 1773.363, + "new_cases_per_million": 27.169, + "new_cases_smoothed_per_million": 26.242, + "total_deaths_per_million": 92.079, + "new_deaths_per_million": 0.679, + "new_deaths_smoothed_per_million": 0.638, + "new_tests": 19896.0, + "total_tests": 935894.0, + "total_tests_per_thousand": 11.143, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 19339.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 8.774, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-01", + "total_cases": 151466.0, + "new_cases": 2516.0, + "new_cases_smoothed": 2252.143, + "total_deaths": 7797.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 54.286, + "total_cases_per_million": 1803.318, + "new_cases_per_million": 29.955, + "new_cases_smoothed_per_million": 26.813, + "total_deaths_per_million": 92.829, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 19971.0, + "total_tests": 955865.0, + "total_tests_per_thousand": 11.38, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 19564.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 8.687000000000001, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-02", + "total_cases": 154445.0, + "new_cases": 2979.0, + "new_cases_smoothed": 2388.714, + "total_deaths": 7878.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 61.0, + "total_cases_per_million": 1838.785, + "new_cases_per_million": 35.467, + "new_cases_smoothed_per_million": 28.439, + "total_deaths_per_million": 93.794, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 0.726, + "new_tests": 20071.0, + "total_tests": 975936.0, + "total_tests_per_thousand": 11.619, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 19835.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 8.304, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-03", + "total_cases": 157562.0, + "new_cases": 3117.0, + "new_cases_smoothed": 2578.714, + "total_deaths": 7942.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 62.0, + "total_cases_per_million": 1875.895, + "new_cases_per_million": 37.11, + "new_cases_smoothed_per_million": 30.702, + "total_deaths_per_million": 94.556, + "new_deaths_per_million": 0.762, + "new_deaths_smoothed_per_million": 0.738, + "new_tests": 21073.0, + "total_tests": 997009.0, + "total_tests_per_thousand": 11.87, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 20066.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 7.781000000000001, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-04", + "total_cases": 160696.0, + "new_cases": 3134.0, + "new_cases_smoothed": 2729.286, + "total_deaths": 8012.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 64.0, + "total_cases_per_million": 1913.208, + "new_cases_per_million": 37.313, + "new_cases_smoothed_per_million": 32.494, + "total_deaths_per_million": 95.389, + "new_deaths_per_million": 0.833, + "new_deaths_smoothed_per_million": 0.762, + "new_tests": 22353.0, + "total_tests": 1019362.0, + "total_tests_per_thousand": 12.136, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 20400.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 7.474, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-05", + "total_cases": 164270.0, + "new_cases": 3574.0, + "new_cases_smoothed": 2917.286, + "total_deaths": 8071.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 63.429, + "total_cases_per_million": 1955.759, + "new_cases_per_million": 42.551, + "new_cases_smoothed_per_million": 34.733, + "total_deaths_per_million": 96.091, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 20927.0, + "total_tests": 1040289.0, + "total_tests_per_thousand": 12.385, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 20531.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 7.037999999999999, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-06", + "total_cases": 167156.0, + "new_cases": 2886.0, + "new_cases_smoothed": 2926.857, + "total_deaths": 8134.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 65.286, + "total_cases_per_million": 1990.119, + "new_cases_per_million": 34.36, + "new_cases_smoothed_per_million": 34.846, + "total_deaths_per_million": 96.841, + "new_deaths_per_million": 0.75, + "new_deaths_smoothed_per_million": 0.777, + "new_tests": 19837.0, + "total_tests": 1060126.0, + "total_tests_per_thousand": 12.622, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 20590.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 7.035, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-07", + "total_cases": 169425.0, + "new_cases": 2269.0, + "new_cases_smoothed": 2925.0, + "total_deaths": 8209.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 67.857, + "total_cases_per_million": 2017.134, + "new_cases_per_million": 27.014, + "new_cases_smoothed_per_million": 34.824, + "total_deaths_per_million": 97.734, + "new_deaths_per_million": 0.893, + "new_deaths_smoothed_per_million": 0.808, + "new_tests": 24731.0, + "total_tests": 1084857.0, + "total_tests_per_thousand": 12.916, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 21280.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 7.275, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-08", + "total_cases": 171789.0, + "new_cases": 2364.0, + "new_cases_smoothed": 2903.286, + "total_deaths": 8281.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 69.143, + "total_cases_per_million": 2045.279, + "new_cases_per_million": 28.145, + "new_cases_smoothed_per_million": 34.566, + "total_deaths_per_million": 98.592, + "new_deaths_per_million": 0.857, + "new_deaths_smoothed_per_million": 0.823, + "new_tests_smoothed": 21552.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_per_case": 7.422999999999999, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-09", + "total_cases": 173832.0, + "new_cases": 2043.0, + "new_cases_smoothed": 2769.571, + "total_deaths": 8351.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 67.571, + "total_cases_per_million": 2069.602, + "new_cases_per_million": 24.323, + "new_cases_smoothed_per_million": 32.974, + "total_deaths_per_million": 99.425, + "new_deaths_per_million": 0.833, + "new_deaths_smoothed_per_million": 0.804, + "total_tests": 1128601.0, + "total_tests_per_thousand": 13.437, + "new_tests_smoothed": 21809.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 7.875, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-10", + "total_cases": 175927.0, + "new_cases": 2095.0, + "new_cases_smoothed": 2623.571, + "total_deaths": 8425.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 69.0, + "total_cases_per_million": 2094.545, + "new_cases_per_million": 24.943, + "new_cases_smoothed_per_million": 31.236, + "total_deaths_per_million": 100.306, + "new_deaths_per_million": 0.881, + "new_deaths_smoothed_per_million": 0.821, + "new_tests": 22431.0, + "total_tests": 1151032.0, + "total_tests_per_thousand": 13.704, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 22003.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 8.387, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-11", + "total_cases": 177938.0, + "new_cases": 2011.0, + "new_cases_smoothed": 2463.143, + "total_deaths": 8506.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 70.571, + "total_cases_per_million": 2118.487, + "new_cases_per_million": 23.942, + "new_cases_smoothed_per_million": 29.326, + "total_deaths_per_million": 101.27, + "new_deaths_per_million": 0.964, + "new_deaths_smoothed_per_million": 0.84, + "new_tests_smoothed": 22090.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 8.968, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-12", + "total_cases": 180176.0, + "new_cases": 2238.0, + "new_cases_smoothed": 2272.286, + "total_deaths": 8584.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 2145.132, + "new_cases_per_million": 26.645, + "new_cases_smoothed_per_million": 27.053, + "total_deaths_per_million": 102.199, + "new_deaths_per_million": 0.929, + "new_deaths_smoothed_per_million": 0.873, + "total_tests": 1196947.0, + "total_tests_per_thousand": 14.251, + "new_tests_smoothed": 22380.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 9.849, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-13", + "total_cases": 182545.0, + "new_cases": 2369.0, + "new_cases_smoothed": 2198.429, + "total_deaths": 8659.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 75.0, + "total_cases_per_million": 2173.337, + "new_cases_per_million": 28.205, + "new_cases_smoothed_per_million": 26.174, + "total_deaths_per_million": 103.092, + "new_deaths_per_million": 0.893, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 22453.0, + "total_tests": 1219400.0, + "total_tests_per_thousand": 14.518, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 22753.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 10.35, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-14", + "total_cases": 184955.0, + "new_cases": 2410.0, + "new_cases_smoothed": 2218.571, + "total_deaths": 8730.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 74.429, + "total_cases_per_million": 2202.03, + "new_cases_per_million": 28.693, + "new_cases_smoothed_per_million": 26.414, + "total_deaths_per_million": 103.937, + "new_deaths_per_million": 0.845, + "new_deaths_smoothed_per_million": 0.886, + "new_tests": 24674.0, + "total_tests": 1244074.0, + "total_tests_per_thousand": 14.812, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 22745.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 10.252, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-15", + "total_cases": 187427.0, + "new_cases": 2472.0, + "new_cases_smoothed": 2234.0, + "total_deaths": 8837.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 79.429, + "total_cases_per_million": 2231.461, + "new_cases_per_million": 29.431, + "new_cases_smoothed_per_million": 26.597, + "total_deaths_per_million": 105.211, + "new_deaths_per_million": 1.274, + "new_deaths_smoothed_per_million": 0.946, + "new_tests": 25120.0, + "total_tests": 1269194.0, + "total_tests_per_thousand": 15.111, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 23209.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 10.389000000000001, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-16", + "total_cases": 189876.0, + "new_cases": 2449.0, + "new_cases_smoothed": 2292.0, + "total_deaths": 8950.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 85.571, + "total_cases_per_million": 2260.618, + "new_cases_per_million": 29.157, + "new_cases_smoothed_per_million": 27.288, + "total_deaths_per_million": 106.557, + "new_deaths_per_million": 1.345, + "new_deaths_smoothed_per_million": 1.019, + "new_tests": 24415.0, + "total_tests": 1293609.0, + "total_tests_per_thousand": 15.401, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 23573.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 10.285, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-17", + "total_cases": 192439.0, + "new_cases": 2563.0, + "new_cases_smoothed": 2358.857, + "total_deaths": 9065.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 91.429, + "total_cases_per_million": 2291.133, + "new_cases_per_million": 30.514, + "new_cases_smoothed_per_million": 28.084, + "total_deaths_per_million": 107.926, + "new_deaths_per_million": 1.369, + "new_deaths_smoothed_per_million": 1.089, + "new_tests": 26311.0, + "total_tests": 1319920.0, + "total_tests_per_thousand": 15.715, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 24127.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 10.228, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-18", + "total_cases": 195051.0, + "new_cases": 2612.0, + "new_cases_smoothed": 2444.714, + "total_deaths": 9185.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 97.0, + "total_cases_per_million": 2322.231, + "new_cases_per_million": 31.098, + "new_cases_smoothed_per_million": 29.106, + "total_deaths_per_million": 109.354, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 24679.0, + "total_tests": 1344599.0, + "total_tests_per_thousand": 16.008, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 24373.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 9.97, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-19", + "total_cases": 197647.0, + "new_cases": 2596.0, + "new_cases_smoothed": 2495.857, + "total_deaths": 9272.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 98.286, + "total_cases_per_million": 2353.138, + "new_cases_per_million": 30.907, + "new_cases_smoothed_per_million": 29.715, + "total_deaths_per_million": 110.39, + "new_deaths_per_million": 1.036, + "new_deaths_smoothed_per_million": 1.17, + "new_tests": 26119.0, + "total_tests": 1370718.0, + "total_tests_per_thousand": 16.319, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 24824.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 9.946, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-20", + "total_cases": 200262.0, + "new_cases": 2615.0, + "new_cases_smoothed": 2531.0, + "total_deaths": 9392.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 104.714, + "total_cases_per_million": 2384.271, + "new_cases_per_million": 31.134, + "new_cases_smoothed_per_million": 30.133, + "total_deaths_per_million": 111.819, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 1.247, + "new_tests": 24957.0, + "total_tests": 1395675.0, + "total_tests_per_thousand": 16.617, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 25182.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 9.949, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-21", + "total_cases": 202584.0, + "new_cases": 2322.0, + "new_cases_smoothed": 2518.429, + "total_deaths": 9507.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 111.0, + "total_cases_per_million": 2411.917, + "new_cases_per_million": 27.645, + "new_cases_smoothed_per_million": 29.984, + "total_deaths_per_million": 113.188, + "new_deaths_per_million": 1.369, + "new_deaths_smoothed_per_million": 1.322, + "new_tests": 26732.0, + "total_tests": 1422407.0, + "total_tests_per_thousand": 16.935, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 25476.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 10.116, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-22", + "total_cases": 204952.0, + "new_cases": 2368.0, + "new_cases_smoothed": 2503.571, + "total_deaths": 9623.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 112.286, + "total_cases_per_million": 2440.109, + "new_cases_per_million": 28.193, + "new_cases_smoothed_per_million": 29.807, + "total_deaths_per_million": 114.569, + "new_deaths_per_million": 1.381, + "new_deaths_smoothed_per_million": 1.337, + "new_tests": 27013.0, + "total_tests": 1449420.0, + "total_tests_per_thousand": 17.256, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 25747.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.284, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-23", + "total_cases": 207525.0, + "new_cases": 2573.0, + "new_cases_smoothed": 2521.286, + "total_deaths": 9742.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 113.143, + "total_cases_per_million": 2470.743, + "new_cases_per_million": 30.634, + "new_cases_smoothed_per_million": 30.018, + "total_deaths_per_million": 115.986, + "new_deaths_per_million": 1.417, + "new_deaths_smoothed_per_million": 1.347, + "new_tests": 25911.0, + "total_tests": 1475331.0, + "total_tests_per_thousand": 17.565, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 25960.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 10.296, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-24", + "total_cases": 209970.0, + "new_cases": 2445.0, + "new_cases_smoothed": 2504.429, + "total_deaths": 9863.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 114.0, + "total_cases_per_million": 2499.853, + "new_cases_per_million": 29.11, + "new_cases_smoothed_per_million": 29.817, + "total_deaths_per_million": 117.427, + "new_deaths_per_million": 1.441, + "new_deaths_smoothed_per_million": 1.357, + "new_tests": 27194.0, + "total_tests": 1502525.0, + "total_tests_per_thousand": 17.889, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 26086.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 10.415999999999999, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-25", + "total_cases": 212501.0, + "new_cases": 2531.0, + "new_cases_smoothed": 2492.857, + "total_deaths": 9996.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 115.857, + "total_cases_per_million": 2529.986, + "new_cases_per_million": 30.133, + "new_cases_smoothed_per_million": 29.679, + "total_deaths_per_million": 119.01, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 1.379, + "new_tests": 27912.0, + "total_tests": 1530437.0, + "total_tests_per_thousand": 18.221, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 26548.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 10.65, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-26", + "total_cases": 215096.0, + "new_cases": 2595.0, + "new_cases_smoothed": 2492.714, + "total_deaths": 10130.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 122.571, + "total_cases_per_million": 2560.882, + "new_cases_per_million": 30.895, + "new_cases_smoothed_per_million": 29.678, + "total_deaths_per_million": 120.605, + "new_deaths_per_million": 1.595, + "new_deaths_smoothed_per_million": 1.459, + "new_tests": 27435.0, + "total_tests": 1557872.0, + "total_tests_per_thousand": 18.548, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 26736.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 10.725999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-27", + "total_cases": 217724.0, + "new_cases": 2628.0, + "new_cases_smoothed": 2494.571, + "total_deaths": 10130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 105.429, + "total_cases_per_million": 2592.17, + "new_cases_per_million": 31.288, + "new_cases_smoothed_per_million": 29.7, + "total_deaths_per_million": 120.605, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.255, + "new_tests": 25670.0, + "total_tests": 1583542.0, + "total_tests_per_thousand": 18.853, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 26838.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 10.759, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-28", + "total_cases": 220180.0, + "new_cases": 2456.0, + "new_cases_smoothed": 2513.714, + "total_deaths": 10364.0, + "new_deaths": 234.0, + "new_deaths_smoothed": 122.429, + "total_cases_per_million": 2621.41, + "new_cases_per_million": 29.241, + "new_cases_smoothed_per_million": 29.928, + "total_deaths_per_million": 123.391, + "new_deaths_per_million": 2.786, + "new_deaths_smoothed_per_million": 1.458, + "new_tests": 27327.0, + "total_tests": 1610869.0, + "total_tests_per_thousand": 19.179, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 26923.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 10.71, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-29", + "total_cases": 222669.0, + "new_cases": 2489.0, + "new_cases_smoothed": 2531.0, + "total_deaths": 10508.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 126.429, + "total_cases_per_million": 2651.044, + "new_cases_per_million": 29.633, + "new_cases_smoothed_per_million": 30.133, + "total_deaths_per_million": 125.106, + "new_deaths_per_million": 1.714, + "new_deaths_smoothed_per_million": 1.505, + "new_tests": 28209.0, + "total_tests": 1639078.0, + "total_tests_per_thousand": 19.514, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 27094.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 10.705, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-06-30", + "total_cases": 225205.0, + "new_cases": 2536.0, + "new_cases_smoothed": 2525.714, + "total_deaths": 10670.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 132.571, + "total_cases_per_million": 2681.237, + "new_cases_per_million": 30.193, + "new_cases_smoothed_per_million": 30.071, + "total_deaths_per_million": 127.034, + "new_deaths_per_million": 1.929, + "new_deaths_smoothed_per_million": 1.578, + "new_tests_smoothed": 27261.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 10.793, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-01", + "total_cases": 227662.0, + "new_cases": 2457.0, + "new_cases_smoothed": 2527.429, + "total_deaths": 10817.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 136.286, + "total_cases_per_million": 2710.489, + "new_cases_per_million": 29.252, + "new_cases_smoothed_per_million": 30.091, + "total_deaths_per_million": 128.785, + "new_deaths_per_million": 1.75, + "new_deaths_smoothed_per_million": 1.623, + "total_tests": 1693242.0, + "total_tests_per_thousand": 20.159, + "new_tests_smoothed": 27245.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 10.78, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-02", + "total_cases": 230211.0, + "new_cases": 2549.0, + "new_cases_smoothed": 2530.0, + "total_deaths": 10958.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 137.429, + "total_cases_per_million": 2740.837, + "new_cases_per_million": 30.348, + "new_cases_smoothed_per_million": 30.122, + "total_deaths_per_million": 130.463, + "new_deaths_per_million": 1.679, + "new_deaths_smoothed_per_million": 1.636, + "new_tests_smoothed": 26952.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 10.652999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-03", + "total_cases": 232863.0, + "new_cases": 2652.0, + "new_cases_smoothed": 2538.143, + "total_deaths": 11106.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 139.429, + "total_cases_per_million": 2772.411, + "new_cases_per_million": 31.574, + "new_cases_smoothed_per_million": 30.219, + "total_deaths_per_million": 132.225, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.66, + "total_tests": 1744958.0, + "total_tests_per_thousand": 20.775, + "new_tests_smoothed": 26727.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 10.53, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-04", + "total_cases": 235429.0, + "new_cases": 2566.0, + "new_cases_smoothed": 2529.286, + "total_deaths": 11260.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 161.429, + "total_cases_per_million": 2802.961, + "new_cases_per_million": 30.55, + "new_cases_smoothed_per_million": 30.113, + "total_deaths_per_million": 134.059, + "new_deaths_per_million": 1.833, + "new_deaths_smoothed_per_million": 1.922, + "new_tests": 24562.0, + "total_tests": 1769520.0, + "total_tests_per_thousand": 21.067, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 26568.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 10.504000000000001, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-05", + "total_cases": 237878.0, + "new_cases": 2449.0, + "new_cases_smoothed": 2528.286, + "total_deaths": 11408.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 149.143, + "total_cases_per_million": 2832.119, + "new_cases_per_million": 29.157, + "new_cases_smoothed_per_million": 30.101, + "total_deaths_per_million": 135.821, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.776, + "new_tests": 25207.0, + "total_tests": 1794727.0, + "total_tests_per_thousand": 21.368, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 26265.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 10.388, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-06", + "total_cases": 240438.0, + "new_cases": 2560.0, + "new_cases_smoothed": 2538.429, + "total_deaths": 11571.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 151.857, + "total_cases_per_million": 2862.597, + "new_cases_per_million": 30.479, + "new_cases_smoothed_per_million": 30.222, + "total_deaths_per_million": 137.762, + "new_deaths_per_million": 1.941, + "new_deaths_smoothed_per_million": 1.808, + "new_tests": 25276.0, + "total_tests": 1820003.0, + "total_tests_per_thousand": 21.669, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 25846.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 10.182, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-07", + "total_cases": 243051.0, + "new_cases": 2613.0, + "new_cases_smoothed": 2549.429, + "total_deaths": 11731.0, + "new_deaths": 160.0, + "new_deaths_smoothed": 151.571, + "total_cases_per_million": 2893.707, + "new_cases_per_million": 31.11, + "new_cases_smoothed_per_million": 30.353, + "total_deaths_per_million": 139.666, + "new_deaths_per_million": 1.905, + "new_deaths_smoothed_per_million": 1.805, + "new_tests": 26790.0, + "total_tests": 1846793.0, + "total_tests_per_thousand": 21.987, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 25805.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.122, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-08", + "total_cases": 245688.0, + "new_cases": 2637.0, + "new_cases_smoothed": 2575.143, + "total_deaths": 11931.0, + "new_deaths": 200.0, + "new_deaths_smoothed": 159.143, + "total_cases_per_million": 2925.103, + "new_cases_per_million": 31.395, + "new_cases_smoothed_per_million": 30.659, + "total_deaths_per_million": 142.048, + "new_deaths_per_million": 2.381, + "new_deaths_smoothed_per_million": 1.895, + "new_tests": 25598.0, + "total_tests": 1872391.0, + "total_tests_per_thousand": 22.292, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 25593.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 9.937999999999999, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-09", + "total_cases": 248379.0, + "new_cases": 2691.0, + "new_cases_smoothed": 2595.429, + "total_deaths": 12084.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 160.857, + "total_cases_per_million": 2957.141, + "new_cases_per_million": 32.038, + "new_cases_smoothed_per_million": 30.901, + "total_deaths_per_million": 143.869, + "new_deaths_per_million": 1.822, + "new_deaths_smoothed_per_million": 1.915, + "new_tests": 25412.0, + "total_tests": 1897803.0, + "total_tests_per_thousand": 22.595, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 25529.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 9.836, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-10", + "total_cases": 250458.0, + "new_cases": 2079.0, + "new_cases_smoothed": 2513.571, + "total_deaths": 12305.0, + "new_deaths": 221.0, + "new_deaths_smoothed": 171.286, + "total_cases_per_million": 2981.893, + "new_cases_per_million": 24.752, + "new_cases_smoothed_per_million": 29.926, + "total_deaths_per_million": 146.5, + "new_deaths_per_million": 2.631, + "new_deaths_smoothed_per_million": 2.039, + "new_tests": 24698.0, + "total_tests": 1922501.0, + "total_tests_per_thousand": 22.889, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 25363.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 10.09, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-11", + "total_cases": 252720.0, + "new_cases": 2262.0, + "new_cases_smoothed": 2470.143, + "total_deaths": 12447.0, + "new_deaths": 142.0, + "new_deaths_smoothed": 169.571, + "total_cases_per_million": 3008.824, + "new_cases_per_million": 26.931, + "new_cases_smoothed_per_million": 29.409, + "total_deaths_per_million": 148.191, + "new_deaths_per_million": 1.691, + "new_deaths_smoothed_per_million": 2.019, + "new_tests": 24613.0, + "total_tests": 1947114.0, + "total_tests_per_thousand": 23.182, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 25371.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 10.270999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-07-12", + "total_cases": 255117.0, + "new_cases": 2397.0, + "new_cases_smoothed": 2462.714, + "total_deaths": 12635.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 175.286, + "total_cases_per_million": 3037.362, + "new_cases_per_million": 28.538, + "new_cases_smoothed_per_million": 29.32, + "total_deaths_per_million": 150.429, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.087, + "new_tests": 25093.0, + "total_tests": 1972207.0, + "total_tests_per_thousand": 23.481, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 25354.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 10.295, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 57.87 + }, + { + "date": "2020-07-13", + "total_cases": 257303.0, + "new_cases": 2186.0, + "new_cases_smoothed": 2409.286, + "total_deaths": 12829.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 179.714, + "total_cases_per_million": 3063.388, + "new_cases_per_million": 26.026, + "new_cases_smoothed_per_million": 28.684, + "total_deaths_per_million": 152.739, + "new_deaths_per_million": 2.31, + "new_deaths_smoothed_per_million": 2.14, + "new_tests": 25760.0, + "total_tests": 1997967.0, + "total_tests_per_thousand": 23.787, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 25423.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 10.552, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-14", + "total_cases": 259652.0, + "new_cases": 2349.0, + "new_cases_smoothed": 2371.571, + "total_deaths": 13032.0, + "new_deaths": 203.0, + "new_deaths_smoothed": 185.857, + "total_cases_per_million": 3091.355, + "new_cases_per_million": 27.967, + "new_cases_smoothed_per_million": 28.235, + "total_deaths_per_million": 155.156, + "new_deaths_per_million": 2.417, + "new_deaths_smoothed_per_million": 2.213, + "new_tests": 25112.0, + "total_tests": 2023079.0, + "total_tests_per_thousand": 24.086, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 25184.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.619000000000002, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-15", + "total_cases": 262173.0, + "new_cases": 2521.0, + "new_cases_smoothed": 2355.0, + "total_deaths": 13211.0, + "new_deaths": 179.0, + "new_deaths_smoothed": 182.857, + "total_cases_per_million": 3121.369, + "new_cases_per_million": 30.014, + "new_cases_smoothed_per_million": 28.038, + "total_deaths_per_million": 157.287, + "new_deaths_per_million": 2.131, + "new_deaths_smoothed_per_million": 2.177, + "new_tests": 24970.0, + "total_tests": 2048049.0, + "total_tests_per_thousand": 24.384, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 25094.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 10.655999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-16", + "total_cases": 264561.0, + "new_cases": 2388.0, + "new_cases_smoothed": 2311.714, + "total_deaths": 13410.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 189.429, + "total_cases_per_million": 3149.8, + "new_cases_per_million": 28.431, + "new_cases_smoothed_per_million": 27.523, + "total_deaths_per_million": 159.656, + "new_deaths_per_million": 2.369, + "new_deaths_smoothed_per_million": 2.255, + "new_tests": 25742.0, + "total_tests": 2073791.0, + "total_tests_per_thousand": 24.69, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 25141.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 10.875, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-17", + "total_cases": 267061.0, + "new_cases": 2500.0, + "new_cases_smoothed": 2371.857, + "total_deaths": 13608.0, + "new_deaths": 198.0, + "new_deaths_smoothed": 186.143, + "total_cases_per_million": 3179.564, + "new_cases_per_million": 29.764, + "new_cases_smoothed_per_million": 28.239, + "total_deaths_per_million": 162.014, + "new_deaths_per_million": 2.357, + "new_deaths_smoothed_per_million": 2.216, + "new_tests": 25194.0, + "total_tests": 2098985.0, + "total_tests_per_thousand": 24.99, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 25212.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.63, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-18", + "total_cases": 269440.0, + "new_cases": 2379.0, + "new_cases_smoothed": 2388.571, + "total_deaths": 13791.0, + "new_deaths": 183.0, + "new_deaths_smoothed": 192.0, + "total_cases_per_million": 3207.888, + "new_cases_per_million": 28.324, + "new_cases_smoothed_per_million": 28.438, + "total_deaths_per_million": 164.192, + "new_deaths_per_million": 2.179, + "new_deaths_smoothed_per_million": 2.286, + "new_tests": 24533.0, + "total_tests": 2123518.0, + "total_tests_per_thousand": 25.282, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 25201.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.550999999999998, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-19", + "total_cases": 271606.0, + "new_cases": 2166.0, + "new_cases_smoothed": 2355.571, + "total_deaths": 13979.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 192.0, + "total_cases_per_million": 3233.676, + "new_cases_per_million": 25.788, + "new_cases_smoothed_per_million": 28.045, + "total_deaths_per_million": 166.431, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.286, + "new_tests": 25481.0, + "total_tests": 2148999.0, + "total_tests_per_thousand": 25.585, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 25256.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 10.722000000000001, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-20", + "total_cases": 273788.0, + "new_cases": 2182.0, + "new_cases_smoothed": 2355.0, + "total_deaths": 14188.0, + "new_deaths": 209.0, + "new_deaths_smoothed": 194.143, + "total_cases_per_million": 3259.654, + "new_cases_per_million": 25.978, + "new_cases_smoothed_per_million": 28.038, + "total_deaths_per_million": 168.919, + "new_deaths_per_million": 2.488, + "new_deaths_smoothed_per_million": 2.311, + "new_tests": 26218.0, + "total_tests": 2175217.0, + "total_tests_per_thousand": 25.898, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 25321.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 10.752, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-21", + "total_cases": 276202.0, + "new_cases": 2414.0, + "new_cases_smoothed": 2364.286, + "total_deaths": 14405.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 196.143, + "total_cases_per_million": 3288.395, + "new_cases_per_million": 28.741, + "new_cases_smoothed_per_million": 28.149, + "total_deaths_per_million": 171.502, + "new_deaths_per_million": 2.584, + "new_deaths_smoothed_per_million": 2.335, + "new_tests": 26741.0, + "total_tests": 2201958.0, + "total_tests_per_thousand": 26.216, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 25554.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 10.808, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-22", + "total_cases": 278827.0, + "new_cases": 2625.0, + "new_cases_smoothed": 2379.143, + "total_deaths": 14634.0, + "new_deaths": 229.0, + "new_deaths_smoothed": 203.286, + "total_cases_per_million": 3319.648, + "new_cases_per_million": 31.253, + "new_cases_smoothed_per_million": 28.326, + "total_deaths_per_million": 174.229, + "new_deaths_per_million": 2.726, + "new_deaths_smoothed_per_million": 2.42, + "new_tests": 26319.0, + "total_tests": 2228277.0, + "total_tests_per_thousand": 26.529, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 25747.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.822000000000001, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-23", + "total_cases": 281413.0, + "new_cases": 2586.0, + "new_cases_smoothed": 2407.429, + "total_deaths": 14853.0, + "new_deaths": 219.0, + "new_deaths_smoothed": 206.143, + "total_cases_per_million": 3350.436, + "new_cases_per_million": 30.788, + "new_cases_smoothed_per_million": 28.662, + "total_deaths_per_million": 176.836, + "new_deaths_per_million": 2.607, + "new_deaths_smoothed_per_million": 2.454, + "new_tests": 25846.0, + "total_tests": 2254123.0, + "total_tests_per_thousand": 26.837, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 25762.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.700999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-24", + "total_cases": 284034.0, + "new_cases": 2621.0, + "new_cases_smoothed": 2424.714, + "total_deaths": 15074.0, + "new_deaths": 221.0, + "new_deaths_smoothed": 209.429, + "total_cases_per_million": 3381.641, + "new_cases_per_million": 31.205, + "new_cases_smoothed_per_million": 28.868, + "total_deaths_per_million": 179.467, + "new_deaths_per_million": 2.631, + "new_deaths_smoothed_per_million": 2.493, + "new_tests": 24261.0, + "total_tests": 2278384.0, + "total_tests_per_thousand": 27.126, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 25628.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 10.569, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-25", + "total_cases": 286523.0, + "new_cases": 2489.0, + "new_cases_smoothed": 2440.429, + "total_deaths": 15289.0, + "new_deaths": 215.0, + "new_deaths_smoothed": 214.0, + "total_cases_per_million": 3411.274, + "new_cases_per_million": 29.633, + "new_cases_smoothed_per_million": 29.055, + "total_deaths_per_million": 182.027, + "new_deaths_per_million": 2.56, + "new_deaths_smoothed_per_million": 2.548, + "new_tests_smoothed": 25757.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.554, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-26", + "total_cases": 288839.0, + "new_cases": 2316.0, + "new_cases_smoothed": 2461.857, + "total_deaths": 15484.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 215.0, + "total_cases_per_million": 3438.848, + "new_cases_per_million": 27.574, + "new_cases_smoothed_per_million": 29.31, + "total_deaths_per_million": 184.349, + "new_deaths_per_million": 2.322, + "new_deaths_smoothed_per_million": 2.56, + "new_tests_smoothed": 25751.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 10.46, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-27", + "total_cases": 291172.0, + "new_cases": 2333.0, + "new_cases_smoothed": 2483.429, + "total_deaths": 15700.0, + "new_deaths": 216.0, + "new_deaths_smoothed": 216.0, + "total_cases_per_million": 3466.624, + "new_cases_per_million": 27.776, + "new_cases_smoothed_per_million": 29.567, + "total_deaths_per_million": 186.92, + "new_deaths_per_million": 2.572, + "new_deaths_smoothed_per_million": 2.572, + "new_tests_smoothed": 25639.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 10.324000000000002, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-28", + "total_cases": 293606.0, + "new_cases": 2434.0, + "new_cases_smoothed": 2486.286, + "total_deaths": 15912.0, + "new_deaths": 212.0, + "new_deaths_smoothed": 215.286, + "total_cases_per_million": 3495.603, + "new_cases_per_million": 28.979, + "new_cases_smoothed_per_million": 29.601, + "total_deaths_per_million": 189.444, + "new_deaths_per_million": 2.524, + "new_deaths_smoothed_per_million": 2.563, + "total_tests": 2380122.0, + "total_tests_per_thousand": 28.337, + "new_tests_smoothed": 25452.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 10.237, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-29", + "total_cases": 296273.0, + "new_cases": 2667.0, + "new_cases_smoothed": 2492.286, + "total_deaths": 16147.0, + "new_deaths": 235.0, + "new_deaths_smoothed": 216.143, + "total_cases_per_million": 3527.355, + "new_cases_per_million": 31.753, + "new_cases_smoothed_per_million": 29.673, + "total_deaths_per_million": 192.242, + "new_deaths_per_million": 2.798, + "new_deaths_smoothed_per_million": 2.573, + "new_tests": 25740.0, + "total_tests": 2405862.0, + "total_tests_per_thousand": 28.644, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 25369.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 10.179, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-30", + "total_cases": 298909.0, + "new_cases": 2636.0, + "new_cases_smoothed": 2499.429, + "total_deaths": 16343.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 212.857, + "total_cases_per_million": 3558.739, + "new_cases_per_million": 31.384, + "new_cases_smoothed_per_million": 29.758, + "total_deaths_per_million": 194.576, + "new_deaths_per_million": 2.334, + "new_deaths_smoothed_per_million": 2.534, + "new_tests_smoothed": 25323.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 10.132, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-31", + "total_cases": 301530.0, + "new_cases": 2621.0, + "new_cases_smoothed": 2499.429, + "total_deaths": 16569.0, + "new_deaths": 226.0, + "new_deaths_smoothed": 213.571, + "total_cases_per_million": 3589.944, + "new_cases_per_million": 31.205, + "new_cases_smoothed_per_million": 29.758, + "total_deaths_per_million": 197.267, + "new_deaths_per_million": 2.691, + "new_deaths_smoothed_per_million": 2.543, + "total_tests": 2456909.0, + "total_tests_per_thousand": 29.251, + "new_tests_smoothed": 25504.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 10.204, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-01", + "total_cases": 304204.0, + "new_cases": 2674.0, + "new_cases_smoothed": 2525.857, + "total_deaths": 16766.0, + "new_deaths": 197.0, + "new_deaths_smoothed": 211.0, + "total_cases_per_million": 3621.78, + "new_cases_per_million": 31.836, + "new_cases_smoothed_per_million": 30.072, + "total_deaths_per_million": 199.612, + "new_deaths_per_million": 2.345, + "new_deaths_smoothed_per_million": 2.512, + "new_tests": 25644.0, + "total_tests": 2482553.0, + "total_tests_per_thousand": 29.557, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 25534.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 10.109, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-02", + "total_cases": 306752.0, + "new_cases": 2548.0, + "new_cases_smoothed": 2559.0, + "total_deaths": 16982.0, + "new_deaths": 216.0, + "new_deaths_smoothed": 214.0, + "total_cases_per_million": 3652.116, + "new_cases_per_million": 30.336, + "new_cases_smoothed_per_million": 30.467, + "total_deaths_per_million": 202.184, + "new_deaths_per_million": 2.572, + "new_deaths_smoothed_per_million": 2.548, + "new_tests": 25865.0, + "total_tests": 2508418.0, + "total_tests_per_thousand": 29.865, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 25595.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 10.002, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-03", + "total_cases": 309437.0, + "new_cases": 2685.0, + "new_cases_smoothed": 2609.286, + "total_deaths": 17190.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 212.857, + "total_cases_per_million": 3684.083, + "new_cases_per_million": 31.967, + "new_cases_smoothed_per_million": 31.066, + "total_deaths_per_million": 204.66, + "new_deaths_per_million": 2.476, + "new_deaths_smoothed_per_million": 2.534, + "new_tests": 26240.0, + "total_tests": 2534658.0, + "total_tests_per_thousand": 30.177, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 25710.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 9.853, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-04", + "total_cases": 312035.0, + "new_cases": 2598.0, + "new_cases_smoothed": 2632.714, + "total_deaths": 17405.0, + "new_deaths": 215.0, + "new_deaths_smoothed": 213.286, + "total_cases_per_million": 3715.014, + "new_cases_per_million": 30.931, + "new_cases_smoothed_per_million": 31.344, + "total_deaths_per_million": 207.22, + "new_deaths_per_million": 2.56, + "new_deaths_smoothed_per_million": 2.539, + "new_tests": 25716.0, + "total_tests": 2560374.0, + "total_tests_per_thousand": 30.483, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 25750.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 9.781, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-05", + "total_cases": 314786.0, + "new_cases": 2751.0, + "new_cases_smoothed": 2644.714, + "total_deaths": 17617.0, + "new_deaths": 212.0, + "new_deaths_smoothed": 210.0, + "total_cases_per_million": 3747.767, + "new_cases_per_million": 32.753, + "new_cases_smoothed_per_million": 31.487, + "total_deaths_per_million": 209.744, + "new_deaths_per_million": 2.524, + "new_deaths_smoothed_per_million": 2.5, + "new_tests": 26709.0, + "total_tests": 2587083.0, + "total_tests_per_thousand": 30.801, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 25889.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 9.789, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-06", + "total_cases": 317483.0, + "new_cases": 2697.0, + "new_cases_smoothed": 2653.429, + "total_deaths": 17802.0, + "new_deaths": 185.0, + "new_deaths_smoothed": 208.429, + "total_cases_per_million": 3779.877, + "new_cases_per_million": 32.11, + "new_cases_smoothed_per_million": 31.591, + "total_deaths_per_million": 211.946, + "new_deaths_per_million": 2.203, + "new_deaths_smoothed_per_million": 2.482, + "new_tests_smoothed": 25849.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 9.742, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-07", + "total_cases": 320117.0, + "new_cases": 2634.0, + "new_cases_smoothed": 2655.286, + "total_deaths": 17816.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 178.143, + "total_cases_per_million": 3811.236, + "new_cases_per_million": 31.36, + "new_cases_smoothed_per_million": 31.613, + "total_deaths_per_million": 212.113, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 2.121, + "total_tests": 2637575.0, + "total_tests_per_thousand": 31.402, + "new_tests_smoothed": 25809.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 9.72, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-08", + "total_cases": 322567.0, + "new_cases": 2450.0, + "new_cases_smoothed": 2623.286, + "total_deaths": 18132.0, + "new_deaths": 316.0, + "new_deaths_smoothed": 195.143, + "total_cases_per_million": 3840.406, + "new_cases_per_million": 29.169, + "new_cases_smoothed_per_million": 31.232, + "total_deaths_per_million": 215.875, + "new_deaths_per_million": 3.762, + "new_deaths_smoothed_per_million": 2.323, + "new_tests": 24390.0, + "total_tests": 2661965.0, + "total_tests_per_thousand": 31.693, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 25630.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 9.77, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-09", + "total_cases": 324692.0, + "new_cases": 2125.0, + "new_cases_smoothed": 2562.857, + "total_deaths": 18264.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 183.143, + "total_cases_per_million": 3865.705, + "new_cases_per_million": 25.3, + "new_cases_smoothed_per_million": 30.513, + "total_deaths_per_million": 217.447, + "new_deaths_per_million": 1.572, + "new_deaths_smoothed_per_million": 2.18, + "new_tests": 24533.0, + "total_tests": 2686498.0, + "total_tests_per_thousand": 31.985, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 25440.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 9.926, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-10", + "total_cases": 326712.0, + "new_cases": 2020.0, + "new_cases_smoothed": 2467.857, + "total_deaths": 18427.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 176.714, + "total_cases_per_million": 3889.755, + "new_cases_per_million": 24.05, + "new_cases_smoothed_per_million": 29.382, + "total_deaths_per_million": 219.387, + "new_deaths_per_million": 1.941, + "new_deaths_smoothed_per_million": 2.104, + "new_tests": 25319.0, + "total_tests": 2711817.0, + "total_tests_per_thousand": 32.286, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 25308.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 10.255, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-11", + "total_cases": 328844.0, + "new_cases": 2132.0, + "new_cases_smoothed": 2401.286, + "total_deaths": 18616.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 173.0, + "total_cases_per_million": 3915.138, + "new_cases_per_million": 25.383, + "new_cases_smoothed_per_million": 28.589, + "total_deaths_per_million": 221.638, + "new_deaths_per_million": 2.25, + "new_deaths_smoothed_per_million": 2.06, + "new_tests": 24697.0, + "total_tests": 2736514.0, + "total_tests_per_thousand": 32.58, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 25163.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.479000000000001, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-12", + "total_cases": 331189.0, + "new_cases": 2345.0, + "new_cases_smoothed": 2343.286, + "total_deaths": 18800.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 169.0, + "total_cases_per_million": 3943.057, + "new_cases_per_million": 27.919, + "new_cases_smoothed_per_million": 27.899, + "total_deaths_per_million": 223.828, + "new_deaths_per_million": 2.191, + "new_deaths_smoothed_per_million": 2.012, + "new_tests": 26711.0, + "total_tests": 2763225.0, + "total_tests_per_thousand": 32.898, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 25163.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.738, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-13", + "total_cases": 333699.0, + "new_cases": 2510.0, + "new_cases_smoothed": 2316.571, + "total_deaths": 18988.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 169.429, + "total_cases_per_million": 3972.94, + "new_cases_per_million": 29.883, + "new_cases_smoothed_per_million": 27.581, + "total_deaths_per_million": 226.067, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.017, + "new_tests_smoothed": 25075.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 10.824000000000002, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-14", + "total_cases": 336324.0, + "new_cases": 2625.0, + "new_cases_smoothed": 2315.286, + "total_deaths": 19162.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 192.286, + "total_cases_per_million": 4004.193, + "new_cases_per_million": 31.253, + "new_cases_smoothed_per_million": 27.565, + "total_deaths_per_million": 228.138, + "new_deaths_per_million": 2.072, + "new_deaths_smoothed_per_million": 2.289, + "total_tests": 2812488.0, + "total_tests_per_thousand": 33.485, + "new_tests_smoothed": 24988.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 10.793, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-15", + "total_cases": 338825.0, + "new_cases": 2501.0, + "new_cases_smoothed": 2322.571, + "total_deaths": 19331.0, + "new_deaths": 169.0, + "new_deaths_smoothed": 171.286, + "total_cases_per_million": 4033.969, + "new_cases_per_million": 29.776, + "new_cases_smoothed_per_million": 27.652, + "total_deaths_per_million": 230.15, + "new_deaths_per_million": 2.012, + "new_deaths_smoothed_per_million": 2.039, + "new_tests": 23764.0, + "total_tests": 2836252.0, + "total_tests_per_thousand": 33.768, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 24898.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 10.72, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-16", + "total_cases": 341070.0, + "new_cases": 2245.0, + "new_cases_smoothed": 2339.714, + "total_deaths": 19492.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 175.429, + "total_cases_per_million": 4060.698, + "new_cases_per_million": 26.728, + "new_cases_smoothed_per_million": 27.856, + "total_deaths_per_million": 232.067, + "new_deaths_per_million": 1.917, + "new_deaths_smoothed_per_million": 2.089, + "new_tests": 25573.0, + "total_tests": 2861825.0, + "total_tests_per_thousand": 34.072, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 25047.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 10.705, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-17", + "total_cases": 343203.0, + "new_cases": 2133.0, + "new_cases_smoothed": 2355.857, + "total_deaths": 19639.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 173.143, + "total_cases_per_million": 4086.093, + "new_cases_per_million": 25.395, + "new_cases_smoothed_per_million": 28.048, + "total_deaths_per_million": 233.817, + "new_deaths_per_million": 1.75, + "new_deaths_smoothed_per_million": 2.061, + "new_tests": 26113.0, + "total_tests": 2887938.0, + "total_tests_per_thousand": 34.383, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 25160.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.68, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-18", + "total_cases": 345450.0, + "new_cases": 2247.0, + "new_cases_smoothed": 2372.286, + "total_deaths": 19804.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 169.714, + "total_cases_per_million": 4112.845, + "new_cases_per_million": 26.752, + "new_cases_smoothed_per_million": 28.244, + "total_deaths_per_million": 235.782, + "new_deaths_per_million": 1.964, + "new_deaths_smoothed_per_million": 2.021, + "new_tests": 26111.0, + "total_tests": 2914049.0, + "total_tests_per_thousand": 34.694, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 25362.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 10.690999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-19", + "total_cases": 347835.0, + "new_cases": 2385.0, + "new_cases_smoothed": 2378.0, + "total_deaths": 19972.0, + "new_deaths": 168.0, + "new_deaths_smoothed": 167.429, + "total_cases_per_million": 4141.24, + "new_cases_per_million": 28.395, + "new_cases_smoothed_per_million": 28.312, + "total_deaths_per_million": 237.782, + "new_deaths_per_million": 2.0, + "new_deaths_smoothed_per_million": 1.993, + "new_tests": 25791.0, + "total_tests": 2939840.0, + "total_tests_per_thousand": 35.001, + "new_tests_per_thousand": 0.307, + "new_tests_smoothed": 25231.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 10.61, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-20", + "total_cases": 347835.0, + "new_cases": 0.0, + "new_cases_smoothed": 2019.429, + "total_deaths": 19972.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 140.571, + "total_cases_per_million": 4141.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.043, + "total_deaths_per_million": 237.782, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.674, + "new_tests": 23901.0, + "total_tests": 2963741.0, + "total_tests_per_thousand": 35.286, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 25126.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 12.442, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-21", + "total_cases": 352558.0, + "new_cases": 4723.0, + "new_cases_smoothed": 2319.143, + "total_deaths": 20264.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 157.429, + "total_cases_per_million": 4197.471, + "new_cases_per_million": 56.231, + "new_cases_smoothed_per_million": 27.611, + "total_deaths_per_million": 241.258, + "new_deaths_per_million": 3.476, + "new_deaths_smoothed_per_million": 1.874, + "new_tests_smoothed": 25005.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 10.782, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-22", + "total_cases": 354764.0, + "new_cases": 2206.0, + "new_cases_smoothed": 2277.0, + "total_deaths": 20376.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 149.286, + "total_cases_per_million": 4223.735, + "new_cases_per_million": 26.264, + "new_cases_smoothed_per_million": 27.109, + "total_deaths_per_million": 242.592, + "new_deaths_per_million": 1.333, + "new_deaths_smoothed_per_million": 1.777, + "total_tests": 3011310.0, + "total_tests_per_thousand": 35.852, + "new_tests_smoothed": 25008.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 10.982999999999999, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-23", + "total_cases": 356792.0, + "new_cases": 2028.0, + "new_cases_smoothed": 2246.0, + "total_deaths": 20502.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 144.286, + "total_cases_per_million": 4247.88, + "new_cases_per_million": 24.145, + "new_cases_smoothed_per_million": 26.74, + "total_deaths_per_million": 244.092, + "new_deaths_per_million": 1.5, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 25401.0, + "total_tests": 3036711.0, + "total_tests_per_thousand": 36.154, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 24984.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 11.124, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-24", + "total_cases": 358905.0, + "new_cases": 2113.0, + "new_cases_smoothed": 2243.143, + "total_deaths": 20643.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 143.429, + "total_cases_per_million": 4273.037, + "new_cases_per_million": 25.157, + "new_cases_smoothed_per_million": 26.706, + "total_deaths_per_million": 245.771, + "new_deaths_per_million": 1.679, + "new_deaths_smoothed_per_million": 1.708, + "new_tests": 25711.0, + "total_tests": 3062422.0, + "total_tests_per_thousand": 36.46, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 24926.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 11.112, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-25", + "total_cases": 358905.0, + "new_cases": 0.0, + "new_cases_smoothed": 1922.143, + "total_deaths": 20643.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 119.857, + "total_cases_per_million": 4273.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.885, + "total_deaths_per_million": 245.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 25891.0, + "total_tests": 3088313.0, + "total_tests_per_thousand": 36.769, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 24895.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 12.952, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-26", + "total_cases": 361150.0, + "new_cases": 2245.0, + "new_cases_smoothed": 1902.143, + "total_deaths": 20776.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 114.857, + "total_cases_per_million": 4299.765, + "new_cases_per_million": 26.728, + "new_cases_smoothed_per_million": 22.646, + "total_deaths_per_million": 247.354, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 1.367, + "new_tests": 25493.0, + "total_tests": 3113806.0, + "total_tests_per_thousand": 37.072, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 24852.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 13.065, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-27", + "total_cases": 363363.0, + "new_cases": 2213.0, + "new_cases_smoothed": 2218.286, + "total_deaths": 20901.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 132.714, + "total_cases_per_million": 4326.113, + "new_cases_per_million": 26.347, + "new_cases_smoothed_per_million": 26.41, + "total_deaths_per_million": 248.842, + "new_deaths_per_million": 1.488, + "new_deaths_smoothed_per_million": 1.58, + "new_tests": 24976.0, + "total_tests": 3138782.0, + "total_tests_per_thousand": 37.37, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 25006.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 11.273, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-28", + "total_cases": 367796.0, + "new_cases": 4433.0, + "new_cases_smoothed": 2176.857, + "total_deaths": 21137.0, + "new_deaths": 236.0, + "new_deaths_smoothed": 124.714, + "total_cases_per_million": 4378.891, + "new_cases_per_million": 52.778, + "new_cases_smoothed_per_million": 25.917, + "total_deaths_per_million": 251.652, + "new_deaths_per_million": 2.81, + "new_deaths_smoothed_per_million": 1.485, + "new_tests": 23112.0, + "total_tests": 3161894.0, + "total_tests_per_thousand": 37.645, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 24910.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 11.443, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-29", + "total_cases": 369911.0, + "new_cases": 2115.0, + "new_cases_smoothed": 2163.857, + "total_deaths": 21249.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 124.714, + "total_cases_per_million": 4404.072, + "new_cases_per_million": 25.181, + "new_cases_smoothed_per_million": 25.762, + "total_deaths_per_million": 252.986, + "new_deaths_per_million": 1.333, + "new_deaths_smoothed_per_million": 1.485, + "new_tests_smoothed": 24753.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 11.439, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-30", + "total_cases": 371816.0, + "new_cases": 1905.0, + "new_cases_smoothed": 2146.286, + "total_deaths": 21359.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 122.429, + "total_cases_per_million": 4426.752, + "new_cases_per_million": 22.68, + "new_cases_smoothed_per_million": 25.553, + "total_deaths_per_million": 254.295, + "new_deaths_per_million": 1.31, + "new_deaths_smoothed_per_million": 1.458, + "total_tests": 3207269.0, + "total_tests_per_thousand": 38.185, + "new_tests_smoothed": 24365.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 11.352, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-08-31", + "total_cases": 373570.0, + "new_cases": 1754.0, + "new_cases_smoothed": 2095.0, + "total_deaths": 21462.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 117.0, + "total_cases_per_million": 4447.635, + "new_cases_per_million": 20.883, + "new_cases_smoothed_per_million": 24.943, + "total_deaths_per_million": 255.521, + "new_deaths_per_million": 1.226, + "new_deaths_smoothed_per_million": 1.393, + "new_tests": 23841.0, + "total_tests": 3231110.0, + "total_tests_per_thousand": 38.469, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 24098.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 11.503, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-09-01", + "total_cases": 375212.0, + "new_cases": 1642.0, + "new_cases_smoothed": 2329.571, + "total_deaths": 21571.0, + "new_deaths": 109.0, + "new_deaths_smoothed": 132.571, + "total_cases_per_million": 4467.184, + "new_cases_per_million": 19.549, + "new_cases_smoothed_per_million": 27.735, + "total_deaths_per_million": 256.819, + "new_deaths_per_million": 1.298, + "new_deaths_smoothed_per_million": 1.578, + "new_tests": 25012.0, + "total_tests": 3256122.0, + "total_tests_per_thousand": 38.767, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 23973.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 10.290999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-09-02", + "total_cases": 376894.0, + "new_cases": 1682.0, + "new_cases_smoothed": 2249.143, + "total_deaths": 21672.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 128.0, + "total_cases_per_million": 4487.21, + "new_cases_per_million": 20.025, + "new_cases_smoothed_per_million": 26.778, + "total_deaths_per_million": 258.022, + "new_deaths_per_million": 1.202, + "new_deaths_smoothed_per_million": 1.524, + "new_tests": 25839.0, + "total_tests": 3281961.0, + "total_tests_per_thousand": 39.074, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 24022.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 10.681, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-09-03", + "total_cases": 378752.0, + "new_cases": 1858.0, + "new_cases_smoothed": 2198.429, + "total_deaths": 21797.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 128.0, + "total_cases_per_million": 4509.331, + "new_cases_per_million": 22.121, + "new_cases_smoothed_per_million": 26.174, + "total_deaths_per_million": 259.51, + "new_deaths_per_million": 1.488, + "new_deaths_smoothed_per_million": 1.524, + "new_tests": 25422.0, + "total_tests": 3307383.0, + "total_tests_per_thousand": 39.377, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 24086.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 10.956, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-09-04", + "total_cases": 380746.0, + "new_cases": 1994.0, + "new_cases_smoothed": 1850.0, + "total_deaths": 21926.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 112.714, + "total_cases_per_million": 4533.071, + "new_cases_per_million": 23.74, + "new_cases_smoothed_per_million": 22.026, + "total_deaths_per_million": 261.046, + "new_deaths_per_million": 1.536, + "new_deaths_smoothed_per_million": 1.342 + }, + { + "date": "2020-09-05", + "total_cases": 382772.0, + "new_cases": 2026.0, + "new_cases_smoothed": 1837.286, + "total_deaths": 22044.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 113.571, + "total_cases_per_million": 4557.192, + "new_cases_per_million": 24.121, + "new_cases_smoothed_per_million": 21.874, + "total_deaths_per_million": 262.451, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.352 + } + ] + }, + "IRQ": { + "continent": "Asia", + "location": "Iraq", + "population": 40222503.0, + "population_density": 88.125, + "median_age": 20.0, + "aged_65_older": 3.186, + "aged_70_older": 1.957, + "gdp_per_capita": 15663.986, + "extreme_poverty": 2.5, + "cardiovasc_death_rate": 218.612, + "diabetes_prevalence": 8.83, + "handwashing_facilities": 94.576, + "hospital_beds_per_thousand": 1.4, + "life_expectancy": 70.6, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.025, + "new_cases_per_million": 0.025, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-02-26", + "total_cases": 5.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-02-27", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-02-28", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.149, + "new_cases_per_million": 0.025, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-02-29", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.174, + "new_cases_per_million": 0.025, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-01", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.323, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-02", + "total_cases": 19.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.472, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-03", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.522, + "new_cases_per_million": 0.05, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-04", + "total_cases": 26.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.646, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-05", + "total_cases": 31.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.771, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-06", + "total_cases": 38.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.945, + "new_cases_per_million": 0.174, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 4.429, + "new_deaths_smoothed": 0.286, + "new_cases_smoothed_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-03-08", + "total_cases": 54.0, + "new_cases": 16.0, + "new_cases_smoothed": 5.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.343, + "new_cases_per_million": 0.398, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-03-09", + "total_cases": 61.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.0, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.174, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 5.714, + "new_deaths_smoothed": 0.857, + "new_cases_smoothed_per_million": 0.142, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-03-11", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 61.11 + }, + { + "date": "2020-03-12", + "total_cases": 70.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1.74, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.199, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 61.11 + }, + { + "date": "2020-03-13", + "total_cases": 74.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.84, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 75.0 + }, + { + "date": "2020-03-14", + "total_cases": 85.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.273, + "new_cases_smoothed_per_million": 0.167, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 75.0 + }, + { + "date": "2020-03-15", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.11, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 75.0 + }, + { + "date": "2020-03-16", + "total_cases": 124.0, + "new_cases": 39.0, + "new_cases_smoothed": 9.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.083, + "new_cases_per_million": 0.97, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 77.78 + }, + { + "date": "2020-03-17", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 89.81 + }, + { + "date": "2020-03-18", + "total_cases": 154.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.286, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.829, + "new_cases_per_million": 0.746, + "new_cases_smoothed_per_million": 0.33, + "total_deaths_per_million": 0.273, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 89.81 + }, + { + "date": "2020-03-19", + "total_cases": 164.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.077, + "new_cases_per_million": 0.249, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.298, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-03-20", + "total_cases": 177.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.401, + "new_cases_per_million": 0.323, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 0.298, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-03-21", + "total_cases": 193.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4.798, + "new_cases_per_million": 0.398, + "new_cases_smoothed_per_million": 0.384, + "total_deaths_per_million": 0.348, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 89.81 + }, + { + "date": "2020-03-22", + "total_cases": 214.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.429, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5.32, + "new_cases_per_million": 0.522, + "new_cases_smoothed_per_million": 0.458, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 94.44 + }, + { + "date": "2020-03-23", + "total_cases": 233.0, + "new_cases": 19.0, + "new_cases_smoothed": 15.571, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5.793, + "new_cases_per_million": 0.472, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.497, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 94.44 + }, + { + "date": "2020-03-24", + "total_cases": 266.0, + "new_cases": 33.0, + "new_cases_smoothed": 20.286, + "total_deaths": 23.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6.613, + "new_cases_per_million": 0.82, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.572, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 94.44 + }, + { + "date": "2020-03-25", + "total_cases": 316.0, + "new_cases": 50.0, + "new_cases_smoothed": 23.143, + "total_deaths": 27.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 7.856, + "new_cases_per_million": 1.243, + "new_cases_smoothed_per_million": 0.575, + "total_deaths_per_million": 0.671, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 94.44 + }, + { + "date": "2020-03-26", + "total_cases": 346.0, + "new_cases": 30.0, + "new_cases_smoothed": 26.0, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8.602, + "new_cases_per_million": 0.746, + "new_cases_smoothed_per_million": 0.646, + "total_deaths_per_million": 0.721, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 382.0, + "new_cases": 36.0, + "new_cases_smoothed": 29.286, + "total_deaths": 36.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 9.497, + "new_cases_per_million": 0.895, + "new_cases_smoothed_per_million": 0.728, + "total_deaths_per_million": 0.895, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 458.0, + "new_cases": 76.0, + "new_cases_smoothed": 37.857, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 11.387, + "new_cases_per_million": 1.889, + "new_cases_smoothed_per_million": 0.941, + "total_deaths_per_million": 0.994, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 506.0, + "new_cases": 48.0, + "new_cases_smoothed": 41.714, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 12.58, + "new_cases_per_million": 1.193, + "new_cases_smoothed_per_million": 1.037, + "total_deaths_per_million": 1.044, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 547.0, + "new_cases": 41.0, + "new_cases_smoothed": 44.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 13.599, + "new_cases_per_million": 1.019, + "new_cases_smoothed_per_million": 1.115, + "total_deaths_per_million": 1.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 630.0, + "new_cases": 83.0, + "new_cases_smoothed": 52.0, + "total_deaths": 46.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 15.663, + "new_cases_per_million": 2.064, + "new_cases_smoothed_per_million": 1.293, + "total_deaths_per_million": 1.144, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 694.0, + "new_cases": 64.0, + "new_cases_smoothed": 54.0, + "total_deaths": 50.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 17.254, + "new_cases_per_million": 1.591, + "new_cases_smoothed_per_million": 1.343, + "total_deaths_per_million": 1.243, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 694.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 17.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 1.243, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 772.0, + "new_cases": 78.0, + "new_cases_smoothed": 55.714, + "total_deaths": 54.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 19.193, + "new_cases_per_million": 1.939, + "new_cases_smoothed_per_million": 1.385, + "total_deaths_per_million": 1.343, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 772.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.857, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 19.193, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.115, + "total_deaths_per_million": 1.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 878.0, + "new_cases": 106.0, + "new_cases_smoothed": 53.143, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 21.829, + "new_cases_per_million": 2.635, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 1.392, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 961.0, + "new_cases": 83.0, + "new_cases_smoothed": 59.143, + "total_deaths": 61.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 23.892, + "new_cases_per_million": 2.064, + "new_cases_smoothed_per_million": 1.47, + "total_deaths_per_million": 1.517, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 1031.0, + "new_cases": 70.0, + "new_cases_smoothed": 57.286, + "total_deaths": 64.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 25.632, + "new_cases_per_million": 1.74, + "new_cases_smoothed_per_million": 1.424, + "total_deaths_per_million": 1.591, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.064, + "total_tests": 26331.0, + "total_tests_per_thousand": 0.655, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 1031.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.143, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 25.632, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.197, + "total_deaths_per_million": 1.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2083.0, + "total_tests": 28414.0, + "total_tests_per_thousand": 0.706, + "new_tests_per_thousand": 0.052, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 1202.0, + "new_cases": 171.0, + "new_cases_smoothed": 72.571, + "total_deaths": 69.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 29.884, + "new_cases_per_million": 4.251, + "new_cases_smoothed_per_million": 1.804, + "total_deaths_per_million": 1.715, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 2052.0, + "total_tests": 30466.0, + "total_tests_per_thousand": 0.757, + "new_tests_per_thousand": 0.051, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 1232.0, + "new_cases": 30.0, + "new_cases_smoothed": 65.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 30.63, + "new_cases_per_million": 0.746, + "new_cases_smoothed_per_million": 1.634, + "total_deaths_per_million": 1.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1692.0, + "total_tests": 32158.0, + "total_tests_per_thousand": 0.8, + "new_tests_per_thousand": 0.042, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 1279.0, + "new_cases": 47.0, + "new_cases_smoothed": 72.429, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 31.798, + "new_cases_per_million": 1.169, + "new_cases_smoothed_per_million": 1.801, + "total_deaths_per_million": 1.74, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 1731.0, + "total_tests": 33889.0, + "total_tests_per_thousand": 0.843, + "new_tests_per_thousand": 0.043, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 1318.0, + "new_cases": 39.0, + "new_cases_smoothed": 62.857, + "total_deaths": 72.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 32.768, + "new_cases_per_million": 0.97, + "new_cases_smoothed_per_million": 1.563, + "total_deaths_per_million": 1.79, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 1526.0, + "total_tests": 35415.0, + "total_tests_per_thousand": 0.88, + "new_tests_per_thousand": 0.038, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 1352.0, + "new_cases": 34.0, + "new_cases_smoothed": 55.857, + "total_deaths": 76.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 33.613, + "new_cases_per_million": 0.845, + "new_cases_smoothed_per_million": 1.389, + "total_deaths_per_million": 1.889, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2376.0, + "total_tests": 37791.0, + "total_tests_per_thousand": 0.94, + "new_tests_per_thousand": 0.059, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 1378.0, + "new_cases": 26.0, + "new_cases_smoothed": 49.571, + "total_deaths": 78.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 34.259, + "new_cases_per_million": 0.646, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 1.939, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 7646.0, + "total_tests": 45437.0, + "total_tests_per_thousand": 1.13, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 2729.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 55.052, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 1400.0, + "new_cases": 22.0, + "new_cases_smoothed": 52.714, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 34.806, + "new_cases_per_million": 0.547, + "new_cases_smoothed_per_million": 1.311, + "total_deaths_per_million": 1.939, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 698.0, + "total_tests": 46135.0, + "total_tests_per_thousand": 1.147, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 2532.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 48.033, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 1415.0, + "new_cases": 15.0, + "new_cases_smoothed": 30.429, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 35.179, + "new_cases_per_million": 0.373, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 1.964, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 3125.0, + "total_tests": 49260.0, + "total_tests_per_thousand": 1.225, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2685.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 88.23899999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 1434.0, + "new_cases": 19.0, + "new_cases_smoothed": 28.857, + "total_deaths": 80.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 35.652, + "new_cases_per_million": 0.472, + "new_cases_smoothed_per_million": 0.717, + "total_deaths_per_million": 1.989, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 2477.0, + "total_tests": 51737.0, + "total_tests_per_thousand": 1.286, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 2797.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 96.926, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 1482.0, + "new_cases": 48.0, + "new_cases_smoothed": 29.0, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 36.845, + "new_cases_per_million": 1.193, + "new_cases_smoothed_per_million": 0.721, + "total_deaths_per_million": 2.014, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 2218.0, + "total_tests": 53955.0, + "total_tests_per_thousand": 1.341, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 2867.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 98.86200000000001, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 1482.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.429, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 36.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.582, + "total_deaths_per_million": 2.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 2192.0, + "total_tests": 56147.0, + "total_tests_per_thousand": 1.396, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2962.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 126.427, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 1539.0, + "new_cases": 57.0, + "new_cases_smoothed": 26.714, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 38.262, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 0.664, + "total_deaths_per_million": 2.039, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 2908.0, + "total_tests": 59055.0, + "total_tests_per_thousand": 1.468, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 3038.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 113.72200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 1574.0, + "new_cases": 35.0, + "new_cases_smoothed": 28.0, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 39.132, + "new_cases_per_million": 0.87, + "new_cases_smoothed_per_million": 0.696, + "total_deaths_per_million": 2.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 1782.0, + "total_tests": 60837.0, + "total_tests_per_thousand": 1.513, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 2200.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 78.571, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 1602.0, + "new_cases": 28.0, + "new_cases_smoothed": 28.857, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 39.828, + "new_cases_per_million": 0.696, + "new_cases_smoothed_per_million": 0.717, + "total_deaths_per_million": 2.064, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 2043.0, + "total_tests": 62880.0, + "total_tests_per_thousand": 1.563, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 2392.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 82.891, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 1602.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.714, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 39.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.664, + "total_deaths_per_million": 2.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2002.0, + "total_tests": 64882.0, + "total_tests_per_thousand": 1.613, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2232.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 83.551, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 1677.0, + "new_cases": 75.0, + "new_cases_smoothed": 34.714, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41.693, + "new_cases_per_million": 1.865, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 2.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2411.0, + "total_tests": 67293.0, + "total_tests_per_thousand": 1.673, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 2222.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 64.008, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 1708.0, + "new_cases": 31.0, + "new_cases_smoothed": 32.286, + "total_deaths": 86.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 42.464, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.803, + "total_deaths_per_million": 2.138, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 931.0, + "total_tests": 68224.0, + "total_tests_per_thousand": 1.696, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 63.123999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 1763.0, + "new_cases": 55.0, + "new_cases_smoothed": 40.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 43.831, + "new_cases_per_million": 1.367, + "new_cases_smoothed_per_million": 0.998, + "total_deaths_per_million": 2.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3247.0, + "total_tests": 71471.0, + "total_tests_per_thousand": 1.777, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 2189.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 54.53, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 1820.0, + "new_cases": 57.0, + "new_cases_smoothed": 40.143, + "total_deaths": 87.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 45.248, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 0.998, + "total_deaths_per_million": 2.163, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 2311.0, + "total_tests": 73782.0, + "total_tests_per_thousand": 1.834, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2104.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 52.413000000000004, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-28", + "total_cases": 1847.0, + "new_cases": 27.0, + "new_cases_smoothed": 39.0, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 45.92, + "new_cases_per_million": 0.671, + "new_cases_smoothed_per_million": 0.97, + "total_deaths_per_million": 2.188, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 4648.0, + "total_tests": 78430.0, + "total_tests_per_thousand": 1.95, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 2513.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 64.436, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-29", + "total_cases": 1847.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.0, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 45.92, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 2.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 8278.0, + "total_tests": 86708.0, + "total_tests_per_thousand": 2.156, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 3404.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 97.257, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-30", + "total_cases": 2003.0, + "new_cases": 156.0, + "new_cases_smoothed": 57.286, + "total_deaths": 92.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 49.798, + "new_cases_per_million": 3.878, + "new_cases_smoothed_per_million": 1.424, + "total_deaths_per_million": 2.287, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 5353.0, + "total_tests": 92061.0, + "total_tests_per_thousand": 2.289, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 3883.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 67.783, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-01", + "total_cases": 2085.0, + "new_cases": 82.0, + "new_cases_smoothed": 58.286, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 51.837, + "new_cases_per_million": 2.039, + "new_cases_smoothed_per_million": 1.449, + "total_deaths_per_million": 2.312, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 3338.0, + "total_tests": 95399.0, + "total_tests_per_thousand": 2.372, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 4015.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 68.885, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-02", + "total_cases": 2153.0, + "new_cases": 68.0, + "new_cases_smoothed": 63.571, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 53.527, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 1.58, + "total_deaths_per_million": 2.337, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 2854.0, + "total_tests": 98253.0, + "total_tests_per_thousand": 2.443, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 4290.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 67.483, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-03", + "total_cases": 2219.0, + "new_cases": 66.0, + "new_cases_smoothed": 65.143, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 55.168, + "new_cases_per_million": 1.641, + "new_cases_smoothed_per_million": 1.62, + "total_deaths_per_million": 2.362, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 4493.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 68.971, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-04", + "total_cases": 2296.0, + "new_cases": 77.0, + "new_cases_smoothed": 68.0, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 57.082, + "new_cases_per_million": 1.914, + "new_cases_smoothed_per_million": 1.691, + "total_deaths_per_million": 2.412, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.036, + "total_tests": 107586.0, + "total_tests_per_thousand": 2.675, + "new_tests_smoothed": 4829.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 71.015, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-05", + "total_cases": 2346.0, + "new_cases": 50.0, + "new_cases_smoothed": 71.286, + "total_deaths": 98.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 58.326, + "new_cases_per_million": 1.243, + "new_cases_smoothed_per_million": 1.772, + "total_deaths_per_million": 2.436, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 5898.0, + "total_tests": 113484.0, + "total_tests_per_thousand": 2.821, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 5008.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 70.253, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-06", + "total_cases": 2431.0, + "new_cases": 85.0, + "new_cases_smoothed": 83.429, + "total_deaths": 102.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 60.439, + "new_cases_per_million": 2.113, + "new_cases_smoothed_per_million": 2.074, + "total_deaths_per_million": 2.536, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4242.0, + "total_tests": 117726.0, + "total_tests_per_thousand": 2.927, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 4431.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 53.111000000000004, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-07", + "total_cases": 2480.0, + "new_cases": 49.0, + "new_cases_smoothed": 68.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 61.657, + "new_cases_per_million": 1.218, + "new_cases_smoothed_per_million": 1.694, + "total_deaths_per_million": 2.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 2878.0, + "total_tests": 120604.0, + "total_tests_per_thousand": 2.998, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 4078.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 59.845, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-08", + "total_cases": 2543.0, + "new_cases": 63.0, + "new_cases_smoothed": 65.429, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 63.223, + "new_cases_per_million": 1.566, + "new_cases_smoothed_per_million": 1.627, + "total_deaths_per_million": 2.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 2337.0, + "total_tests": 122941.0, + "total_tests_per_thousand": 3.057, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 3935.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 60.141999999999996, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-09", + "total_cases": 2603.0, + "new_cases": 60.0, + "new_cases_smoothed": 64.286, + "total_deaths": 104.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 64.715, + "new_cases_per_million": 1.492, + "new_cases_smoothed_per_million": 1.598, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1979.0, + "total_tests": 124920.0, + "total_tests_per_thousand": 3.106, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 3810.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 59.266999999999996, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-10", + "total_cases": 2679.0, + "new_cases": 76.0, + "new_cases_smoothed": 65.714, + "total_deaths": 107.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 66.605, + "new_cases_per_million": 1.889, + "new_cases_smoothed_per_million": 1.634, + "total_deaths_per_million": 2.66, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2233.0, + "total_tests": 127153.0, + "total_tests_per_thousand": 3.161, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 3462.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 52.683, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-11", + "total_cases": 2767.0, + "new_cases": 88.0, + "new_cases_smoothed": 67.286, + "total_deaths": 109.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 68.792, + "new_cases_per_million": 2.188, + "new_cases_smoothed_per_million": 1.673, + "total_deaths_per_million": 2.71, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2548.0, + "total_tests": 129701.0, + "total_tests_per_thousand": 3.225, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 3159.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 46.949, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 2818.0, + "new_cases": 51.0, + "new_cases_smoothed": 67.429, + "total_deaths": 110.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 70.06, + "new_cases_per_million": 1.268, + "new_cases_smoothed_per_million": 1.676, + "total_deaths_per_million": 2.735, + "new_deaths_per_million": 0.025, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2756.0, + "total_tests": 132457.0, + "total_tests_per_thousand": 3.293, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 2710.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 40.191, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 2913.0, + "new_cases": 95.0, + "new_cases_smoothed": 68.857, + "total_deaths": 112.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 72.422, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 1.712, + "total_deaths_per_million": 2.785, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 4183.0, + "total_tests": 136640.0, + "total_tests_per_thousand": 3.397, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 2702.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 39.241, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 3032.0, + "new_cases": 119.0, + "new_cases_smoothed": 78.857, + "total_deaths": 115.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 75.381, + "new_cases_per_million": 2.959, + "new_cases_smoothed_per_million": 1.961, + "total_deaths_per_million": 2.859, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3933.0, + "total_tests": 140573.0, + "total_tests_per_thousand": 3.495, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 2853.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 36.179, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 3143.0, + "new_cases": 111.0, + "new_cases_smoothed": 85.714, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 78.14, + "new_cases_per_million": 2.76, + "new_cases_smoothed_per_million": 2.131, + "total_deaths_per_million": 2.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2921.0, + "total_tests": 143494.0, + "total_tests_per_thousand": 3.568, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 2936.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 34.253, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-16", + "total_cases": 3193.0, + "new_cases": 50.0, + "new_cases_smoothed": 84.286, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 79.383, + "new_cases_per_million": 1.243, + "new_cases_smoothed_per_million": 2.095, + "total_deaths_per_million": 2.909, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3100.0, + "total_tests": 146594.0, + "total_tests_per_thousand": 3.645, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 36.732, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-17", + "total_cases": 3260.0, + "new_cases": 67.0, + "new_cases_smoothed": 83.0, + "total_deaths": 121.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 81.049, + "new_cases_per_million": 1.666, + "new_cases_smoothed_per_million": 2.064, + "total_deaths_per_million": 3.008, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3107.0, + "total_tests": 149701.0, + "total_tests_per_thousand": 3.722, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3221.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 38.806999999999995, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-18", + "total_cases": 3404.0, + "new_cases": 144.0, + "new_cases_smoothed": 91.0, + "total_deaths": 123.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 84.629, + "new_cases_per_million": 3.58, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 3.058, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3520.0, + "total_tests": 153221.0, + "total_tests_per_thousand": 3.809, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 3360.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 36.923, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-19", + "total_cases": 3554.0, + "new_cases": 150.0, + "new_cases_smoothed": 105.143, + "total_deaths": 127.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 88.358, + "new_cases_per_million": 3.729, + "new_cases_smoothed_per_million": 2.614, + "total_deaths_per_million": 3.157, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 4441.0, + "total_tests": 157662.0, + "total_tests_per_thousand": 3.92, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 3601.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 34.249, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-20", + "total_cases": 3611.0, + "new_cases": 57.0, + "new_cases_smoothed": 99.714, + "total_deaths": 131.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 89.776, + "new_cases_per_million": 1.417, + "new_cases_smoothed_per_million": 2.479, + "total_deaths_per_million": 3.257, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 5947.0, + "total_tests": 163609.0, + "total_tests_per_thousand": 4.068, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 3853.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 38.64, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-21", + "total_cases": 3724.0, + "new_cases": 113.0, + "new_cases_smoothed": 98.857, + "total_deaths": 134.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 92.585, + "new_cases_per_million": 2.809, + "new_cases_smoothed_per_million": 2.458, + "total_deaths_per_million": 3.331, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 4124.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 41.717, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 3877.0, + "new_cases": 153.0, + "new_cases_smoothed": 104.857, + "total_deaths": 140.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 96.389, + "new_cases_per_million": 3.804, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 3.481, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.089, + "new_tests_smoothed": 4540.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 43.297, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-23", + "total_cases": 3964.0, + "new_cases": 87.0, + "new_cases_smoothed": 110.143, + "total_deaths": 147.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 98.552, + "new_cases_per_million": 2.163, + "new_cases_smoothed_per_million": 2.738, + "total_deaths_per_million": 3.655, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.107, + "new_tests_smoothed": 4930.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 44.76, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-24", + "total_cases": 4272.0, + "new_cases": 308.0, + "new_cases_smoothed": 144.571, + "total_deaths": 152.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 106.209, + "new_cases_per_million": 7.657, + "new_cases_smoothed_per_million": 3.594, + "total_deaths_per_million": 3.779, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.11, + "new_tests_smoothed": 5319.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 36.792, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-25", + "total_cases": 4469.0, + "new_cases": 197.0, + "new_cases_smoothed": 152.143, + "total_deaths": 160.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 111.107, + "new_cases_per_million": 4.898, + "new_cases_smoothed_per_million": 3.783, + "total_deaths_per_million": 3.978, + "new_deaths_per_million": 0.199, + "new_deaths_smoothed_per_million": 0.131, + "new_tests_smoothed": 5649.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 37.13, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-26", + "total_cases": 4632.0, + "new_cases": 163.0, + "new_cases_smoothed": 154.0, + "total_deaths": 163.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 115.159, + "new_cases_per_million": 4.052, + "new_cases_smoothed_per_million": 3.829, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.128, + "new_tests_smoothed": 5848.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 37.974000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-27", + "total_cases": 4848.0, + "new_cases": 216.0, + "new_cases_smoothed": 176.714, + "total_deaths": 169.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 120.53, + "new_cases_per_million": 5.37, + "new_cases_smoothed_per_million": 4.393, + "total_deaths_per_million": 4.202, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.135, + "new_tests_smoothed": 5832.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 33.001999999999995, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-28", + "total_cases": 5135.0, + "new_cases": 287.0, + "new_cases_smoothed": 201.571, + "total_deaths": 175.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 127.665, + "new_cases_per_million": 7.135, + "new_cases_smoothed_per_million": 5.011, + "total_deaths_per_million": 4.351, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.146, + "new_tests_smoothed": 5832.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 28.933000000000003, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-29", + "total_cases": 5457.0, + "new_cases": 322.0, + "new_cases_smoothed": 225.714, + "total_deaths": 179.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 135.67, + "new_cases_per_million": 8.005, + "new_cases_smoothed_per_million": 5.612, + "total_deaths_per_million": 4.45, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.139, + "new_tests_smoothed": 5832.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 25.838, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-30", + "total_cases": 5873.0, + "new_cases": 416.0, + "new_cases_smoothed": 272.714, + "total_deaths": 185.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 146.013, + "new_cases_per_million": 10.342, + "new_cases_smoothed_per_million": 6.78, + "total_deaths_per_million": 4.599, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.135, + "new_tests_smoothed": 5832.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 21.385, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-31", + "total_cases": 6179.0, + "new_cases": 306.0, + "new_cases_smoothed": 272.429, + "total_deaths": 195.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 153.62, + "new_cases_per_million": 7.608, + "new_cases_smoothed_per_million": 6.773, + "total_deaths_per_million": 4.848, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.153, + "total_tests": 227756.0, + "total_tests_per_thousand": 5.662, + "new_tests_smoothed": 5832.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 21.406999999999996, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-01", + "total_cases": 6439.0, + "new_cases": 260.0, + "new_cases_smoothed": 281.429, + "total_deaths": 205.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 160.085, + "new_cases_per_million": 6.464, + "new_cases_smoothed_per_million": 6.997, + "total_deaths_per_million": 5.097, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 10495.0, + "total_tests": 238251.0, + "total_tests_per_thousand": 5.923, + "new_tests_per_thousand": 0.261, + "new_tests_smoothed": 6498.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 23.089000000000002, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-02", + "total_cases": 6868.0, + "new_cases": 429.0, + "new_cases_smoothed": 319.429, + "total_deaths": 215.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 170.75, + "new_cases_per_million": 10.666, + "new_cases_smoothed_per_million": 7.942, + "total_deaths_per_million": 5.345, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 13463.0, + "total_tests": 251714.0, + "total_tests_per_thousand": 6.258, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 7588.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 23.755, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-03", + "total_cases": 7387.0, + "new_cases": 519.0, + "new_cases_smoothed": 362.714, + "total_deaths": 235.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 183.653, + "new_cases_per_million": 12.903, + "new_cases_smoothed_per_million": 9.018, + "total_deaths_per_million": 5.843, + "new_deaths_per_million": 0.497, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 8585.0, + "total_tests": 260299.0, + "total_tests_per_thousand": 6.471, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 7981.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 22.004, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-04", + "total_cases": 8168.0, + "new_cases": 781.0, + "new_cases_smoothed": 433.286, + "total_deaths": 256.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 203.07, + "new_cases_per_million": 19.417, + "new_cases_smoothed_per_million": 10.772, + "total_deaths_per_million": 6.365, + "new_deaths_per_million": 0.522, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 11960.0, + "total_tests": 272259.0, + "total_tests_per_thousand": 6.769, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 8857.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 20.441, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-05", + "total_cases": 8840.0, + "new_cases": 672.0, + "new_cases_smoothed": 483.286, + "total_deaths": 271.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 219.777, + "new_cases_per_million": 16.707, + "new_cases_smoothed_per_million": 12.015, + "total_deaths_per_million": 6.738, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.327, + "new_tests": 9642.0, + "total_tests": 281901.0, + "total_tests_per_thousand": 7.009, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 9401.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 19.452, + "positive_rate": 0.051, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-06", + "total_cases": 9846.0, + "new_cases": 1006.0, + "new_cases_smoothed": 567.571, + "total_deaths": 285.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 244.788, + "new_cases_per_million": 25.011, + "new_cases_smoothed_per_million": 14.111, + "total_deaths_per_million": 7.086, + "new_deaths_per_million": 0.348, + "new_deaths_smoothed_per_million": 0.355, + "new_tests": 12543.0, + "total_tests": 294444.0, + "total_tests_per_thousand": 7.32, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 10360.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 18.253, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-07", + "total_cases": 11098.0, + "new_cases": 1252.0, + "new_cases_smoothed": 702.714, + "total_deaths": 318.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 275.915, + "new_cases_per_million": 31.127, + "new_cases_smoothed_per_million": 17.471, + "total_deaths_per_million": 7.906, + "new_deaths_per_million": 0.82, + "new_deaths_smoothed_per_million": 0.437, + "new_tests": 8609.0, + "total_tests": 303053.0, + "total_tests_per_thousand": 7.534, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 10757.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 15.308, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-08", + "total_cases": 12366.0, + "new_cases": 1268.0, + "new_cases_smoothed": 846.714, + "total_deaths": 346.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 307.44, + "new_cases_per_million": 31.525, + "new_cases_smoothed_per_million": 21.051, + "total_deaths_per_million": 8.602, + "new_deaths_per_million": 0.696, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 8927.0, + "total_tests": 311980.0, + "total_tests_per_thousand": 7.756, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 10533.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 12.44, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-09", + "total_cases": 13481.0, + "new_cases": 1115.0, + "new_cases_smoothed": 944.714, + "total_deaths": 370.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 335.161, + "new_cases_per_million": 27.721, + "new_cases_smoothed_per_million": 23.487, + "total_deaths_per_million": 9.199, + "new_deaths_per_million": 0.597, + "new_deaths_smoothed_per_million": 0.551, + "new_tests": 10711.0, + "total_tests": 322691.0, + "total_tests_per_thousand": 8.023, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 10140.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 10.732999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-10", + "total_cases": 14268.0, + "new_cases": 787.0, + "new_cases_smoothed": 983.0, + "total_deaths": 392.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 354.727, + "new_cases_per_million": 19.566, + "new_cases_smoothed_per_million": 24.439, + "total_deaths_per_million": 9.746, + "new_deaths_per_million": 0.547, + "new_deaths_smoothed_per_million": 0.558, + "new_tests": 7835.0, + "total_tests": 330526.0, + "total_tests_per_thousand": 8.217, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 10032.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 10.205, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-11", + "total_cases": 15414.0, + "new_cases": 1146.0, + "new_cases_smoothed": 1035.143, + "total_deaths": 426.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 383.218, + "new_cases_per_million": 28.492, + "new_cases_smoothed_per_million": 25.735, + "total_deaths_per_million": 10.591, + "new_deaths_per_million": 0.845, + "new_deaths_smoothed_per_million": 0.604, + "new_tests": 9342.0, + "total_tests": 339868.0, + "total_tests_per_thousand": 8.45, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 9658.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 9.33, + "positive_rate": 0.107, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-12", + "total_cases": 16675.0, + "new_cases": 1261.0, + "new_cases_smoothed": 1119.286, + "total_deaths": 457.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 414.569, + "new_cases_per_million": 31.351, + "new_cases_smoothed_per_million": 27.827, + "total_deaths_per_million": 11.362, + "new_deaths_per_million": 0.771, + "new_deaths_smoothed_per_million": 0.661, + "new_tests": 9757.0, + "total_tests": 349625.0, + "total_tests_per_thousand": 8.692, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 9675.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 8.644, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-13", + "total_cases": 17770.0, + "new_cases": 1095.0, + "new_cases_smoothed": 1132.0, + "total_deaths": 496.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 441.792, + "new_cases_per_million": 27.224, + "new_cases_smoothed_per_million": 28.143, + "total_deaths_per_million": 12.331, + "new_deaths_per_million": 0.97, + "new_deaths_smoothed_per_million": 0.749, + "new_tests": 10325.0, + "total_tests": 359950.0, + "total_tests_per_thousand": 8.949, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 9358.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 8.267000000000001, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-14", + "total_cases": 18950.0, + "new_cases": 1180.0, + "new_cases_smoothed": 1121.714, + "total_deaths": 549.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 471.129, + "new_cases_per_million": 29.337, + "new_cases_smoothed_per_million": 27.888, + "total_deaths_per_million": 13.649, + "new_deaths_per_million": 1.318, + "new_deaths_smoothed_per_million": 0.82, + "new_tests": 9920.0, + "total_tests": 369870.0, + "total_tests_per_thousand": 9.196, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 9545.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 8.509, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-15", + "total_cases": 20209.0, + "new_cases": 1259.0, + "new_cases_smoothed": 1120.429, + "total_deaths": 607.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 37.286, + "total_cases_per_million": 502.43, + "new_cases_per_million": 31.301, + "new_cases_smoothed_per_million": 27.856, + "total_deaths_per_million": 15.091, + "new_deaths_per_million": 1.442, + "new_deaths_smoothed_per_million": 0.927, + "new_tests": 10135.0, + "total_tests": 380005.0, + "total_tests_per_thousand": 9.448, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 9718.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 8.673, + "positive_rate": 0.115, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-16", + "total_cases": 21315.0, + "new_cases": 1106.0, + "new_cases_smoothed": 1119.143, + "total_deaths": 652.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 40.286, + "total_cases_per_million": 529.927, + "new_cases_per_million": 27.497, + "new_cases_smoothed_per_million": 27.824, + "total_deaths_per_million": 16.21, + "new_deaths_per_million": 1.119, + "new_deaths_smoothed_per_million": 1.002, + "new_tests": 10330.0, + "total_tests": 390335.0, + "total_tests_per_thousand": 9.704, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 9663.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 8.634, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-17", + "total_cases": 22700.0, + "new_cases": 1385.0, + "new_cases_smoothed": 1204.571, + "total_deaths": 712.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 45.714, + "total_cases_per_million": 564.361, + "new_cases_per_million": 34.433, + "new_cases_smoothed_per_million": 29.948, + "total_deaths_per_million": 17.702, + "new_deaths_per_million": 1.492, + "new_deaths_smoothed_per_million": 1.137, + "new_tests": 13053.0, + "total_tests": 403388.0, + "total_tests_per_thousand": 10.029, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 10409.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 8.641, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-18", + "total_cases": 24254.0, + "new_cases": 1554.0, + "new_cases_smoothed": 1262.857, + "total_deaths": 773.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 49.571, + "total_cases_per_million": 602.996, + "new_cases_per_million": 38.635, + "new_cases_smoothed_per_million": 31.397, + "total_deaths_per_million": 19.218, + "new_deaths_per_million": 1.517, + "new_deaths_smoothed_per_million": 1.232, + "new_tests": 10578.0, + "total_tests": 413966.0, + "total_tests_per_thousand": 10.292, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 10585.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 8.382, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-19", + "total_cases": 25717.0, + "new_cases": 1463.0, + "new_cases_smoothed": 1291.714, + "total_deaths": 856.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 57.0, + "total_cases_per_million": 639.368, + "new_cases_per_million": 36.373, + "new_cases_smoothed_per_million": 32.114, + "total_deaths_per_million": 21.282, + "new_deaths_per_million": 2.064, + "new_deaths_smoothed_per_million": 1.417, + "new_tests": 11226.0, + "total_tests": 425192.0, + "total_tests_per_thousand": 10.571, + "new_tests_per_thousand": 0.279, + "new_tests_smoothed": 10795.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 8.357000000000001, + "positive_rate": 0.12, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-20", + "total_cases": 27352.0, + "new_cases": 1635.0, + "new_cases_smoothed": 1368.857, + "total_deaths": 925.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 680.017, + "new_cases_per_million": 40.649, + "new_cases_smoothed_per_million": 34.032, + "total_deaths_per_million": 22.997, + "new_deaths_per_million": 1.715, + "new_deaths_smoothed_per_million": 1.524, + "new_tests": 10022.0, + "total_tests": 435214.0, + "total_tests_per_thousand": 10.82, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 10752.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 7.855, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-21", + "total_cases": 29222.0, + "new_cases": 1870.0, + "new_cases_smoothed": 1467.429, + "total_deaths": 1013.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 726.509, + "new_cases_per_million": 46.491, + "new_cases_smoothed_per_million": 36.483, + "total_deaths_per_million": 25.185, + "new_deaths_per_million": 2.188, + "new_deaths_smoothed_per_million": 1.648, + "new_tests": 10027.0, + "total_tests": 445241.0, + "total_tests_per_thousand": 11.069, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 10767.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 7.337000000000001, + "positive_rate": 0.136, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-22", + "total_cases": 30868.0, + "new_cases": 1646.0, + "new_cases_smoothed": 1522.714, + "total_deaths": 1100.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 70.429, + "total_cases_per_million": 767.431, + "new_cases_per_million": 40.922, + "new_cases_smoothed_per_million": 37.857, + "total_deaths_per_million": 27.348, + "new_deaths_per_million": 2.163, + "new_deaths_smoothed_per_million": 1.751, + "new_tests": 10075.0, + "total_tests": 455316.0, + "total_tests_per_thousand": 11.32, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 10759.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 7.066, + "positive_rate": 0.142, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-23", + "total_cases": 32676.0, + "new_cases": 1808.0, + "new_cases_smoothed": 1623.0, + "total_deaths": 1167.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 73.571, + "total_cases_per_million": 812.381, + "new_cases_per_million": 44.95, + "new_cases_smoothed_per_million": 40.351, + "total_deaths_per_million": 29.014, + "new_deaths_per_million": 1.666, + "new_deaths_smoothed_per_million": 1.829, + "new_tests": 10672.0, + "total_tests": 465988.0, + "total_tests_per_thousand": 11.585, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 10808.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 6.659, + "positive_rate": 0.15, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-24", + "total_cases": 34502.0, + "new_cases": 1826.0, + "new_cases_smoothed": 1686.0, + "total_deaths": 1251.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 77.0, + "total_cases_per_million": 857.779, + "new_cases_per_million": 45.397, + "new_cases_smoothed_per_million": 41.917, + "total_deaths_per_million": 31.102, + "new_deaths_per_million": 2.088, + "new_deaths_smoothed_per_million": 1.914, + "new_tests": 11445.0, + "total_tests": 477433.0, + "total_tests_per_thousand": 11.87, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 10578.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 6.274, + "positive_rate": 0.159, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-25", + "total_cases": 36702.0, + "new_cases": 2200.0, + "new_cases_smoothed": 1778.286, + "total_deaths": 1330.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 79.571, + "total_cases_per_million": 912.474, + "new_cases_per_million": 54.696, + "new_cases_smoothed_per_million": 44.211, + "total_deaths_per_million": 33.066, + "new_deaths_per_million": 1.964, + "new_deaths_smoothed_per_million": 1.978, + "new_tests": 11370.0, + "total_tests": 488803.0, + "total_tests_per_thousand": 12.152, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 10691.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 6.0120000000000005, + "positive_rate": 0.166, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-26", + "total_cases": 39139.0, + "new_cases": 2437.0, + "new_cases_smoothed": 1917.429, + "total_deaths": 1437.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 973.062, + "new_cases_per_million": 60.588, + "new_cases_smoothed_per_million": 47.671, + "total_deaths_per_million": 35.726, + "new_deaths_per_million": 2.66, + "new_deaths_smoothed_per_million": 2.064, + "new_tests": 11920.0, + "total_tests": 500723.0, + "total_tests_per_thousand": 12.449, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 10790.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 5.627000000000001, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-27", + "total_cases": 41193.0, + "new_cases": 2054.0, + "new_cases_smoothed": 1977.286, + "total_deaths": 1559.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 90.571, + "total_cases_per_million": 1024.128, + "new_cases_per_million": 51.066, + "new_cases_smoothed_per_million": 49.159, + "total_deaths_per_million": 38.759, + "new_deaths_per_million": 3.033, + "new_deaths_smoothed_per_million": 2.252, + "new_tests": 9630.0, + "total_tests": 510353.0, + "total_tests_per_thousand": 12.688, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 10734.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 5.428999999999999, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-28", + "total_cases": 43262.0, + "new_cases": 2069.0, + "new_cases_smoothed": 2005.714, + "total_deaths": 1660.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 92.429, + "total_cases_per_million": 1075.567, + "new_cases_per_million": 51.439, + "new_cases_smoothed_per_million": 49.865, + "total_deaths_per_million": 41.27, + "new_deaths_per_million": 2.511, + "new_deaths_smoothed_per_million": 2.298, + "new_tests": 10595.0, + "total_tests": 520948.0, + "total_tests_per_thousand": 12.952, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 10815.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 5.392, + "positive_rate": 0.185, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-29", + "total_cases": 45402.0, + "new_cases": 2140.0, + "new_cases_smoothed": 2076.286, + "total_deaths": 1756.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 93.714, + "total_cases_per_million": 1128.771, + "new_cases_per_million": 53.204, + "new_cases_smoothed_per_million": 51.62, + "total_deaths_per_million": 43.657, + "new_deaths_per_million": 2.387, + "new_deaths_smoothed_per_million": 2.33, + "new_tests": 11172.0, + "total_tests": 532120.0, + "total_tests_per_thousand": 13.229, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 10972.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 5.284, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-06-30", + "total_cases": 47151.0, + "new_cases": 1749.0, + "new_cases_smoothed": 2067.857, + "total_deaths": 1839.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 96.0, + "total_cases_per_million": 1172.254, + "new_cases_per_million": 43.483, + "new_cases_smoothed_per_million": 51.41, + "total_deaths_per_million": 45.721, + "new_deaths_per_million": 2.064, + "new_deaths_smoothed_per_million": 2.387, + "new_tests": 12425.0, + "total_tests": 544545.0, + "total_tests_per_thousand": 13.538, + "new_tests_per_thousand": 0.309, + "new_tests_smoothed": 11222.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 5.4270000000000005, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-01", + "total_cases": 49109.0, + "new_cases": 1958.0, + "new_cases_smoothed": 2086.714, + "total_deaths": 1943.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 98.857, + "total_cases_per_million": 1220.933, + "new_cases_per_million": 48.679, + "new_cases_smoothed_per_million": 51.879, + "total_deaths_per_million": 48.306, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 2.458, + "new_tests": 11378.0, + "total_tests": 555923.0, + "total_tests_per_thousand": 13.821, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 11213.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 5.374, + "positive_rate": 0.18600000000000003, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-02", + "total_cases": 51524.0, + "new_cases": 2415.0, + "new_cases_smoothed": 2117.429, + "total_deaths": 2050.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 102.857, + "total_cases_per_million": 1280.974, + "new_cases_per_million": 60.041, + "new_cases_smoothed_per_million": 52.643, + "total_deaths_per_million": 50.966, + "new_deaths_per_million": 2.66, + "new_deaths_smoothed_per_million": 2.557, + "new_tests": 11762.0, + "total_tests": 567685.0, + "total_tests_per_thousand": 14.114, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 11269.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 5.322, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-03", + "total_cases": 53708.0, + "new_cases": 2184.0, + "new_cases_smoothed": 2081.286, + "total_deaths": 2160.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 103.286, + "total_cases_per_million": 1335.272, + "new_cases_per_million": 54.298, + "new_cases_smoothed_per_million": 51.744, + "total_deaths_per_million": 53.701, + "new_deaths_per_million": 2.735, + "new_deaths_smoothed_per_million": 2.568, + "new_tests": 12176.0, + "total_tests": 579861.0, + "total_tests_per_thousand": 14.416, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 11305.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 5.432, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-04", + "total_cases": 56020.0, + "new_cases": 2312.0, + "new_cases_smoothed": 2118.143, + "total_deaths": 2262.0, + "new_deaths": 102.0, + "new_deaths_smoothed": 100.429, + "total_cases_per_million": 1392.753, + "new_cases_per_million": 57.48, + "new_cases_smoothed_per_million": 52.661, + "total_deaths_per_million": 56.237, + "new_deaths_per_million": 2.536, + "new_deaths_smoothed_per_million": 2.497, + "new_tests": 9516.0, + "total_tests": 589377.0, + "total_tests_per_thousand": 14.653, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 11289.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 5.33, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-05", + "total_cases": 58354.0, + "new_cases": 2334.0, + "new_cases_smoothed": 2156.0, + "total_deaths": 2368.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 101.143, + "total_cases_per_million": 1450.78, + "new_cases_per_million": 58.027, + "new_cases_smoothed_per_million": 53.602, + "total_deaths_per_million": 58.873, + "new_deaths_per_million": 2.635, + "new_deaths_smoothed_per_million": 2.515, + "new_tests": 11711.0, + "total_tests": 601088.0, + "total_tests_per_thousand": 14.944, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 11449.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 5.31, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-06", + "total_cases": 60479.0, + "new_cases": 2125.0, + "new_cases_smoothed": 2153.857, + "total_deaths": 2473.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 102.429, + "total_cases_per_million": 1503.611, + "new_cases_per_million": 52.831, + "new_cases_smoothed_per_million": 53.549, + "total_deaths_per_million": 61.483, + "new_deaths_per_million": 2.61, + "new_deaths_smoothed_per_million": 2.547, + "new_tests": 11519.0, + "total_tests": 612607.0, + "total_tests_per_thousand": 15.23, + "new_tests_per_thousand": 0.286, + "new_tests_smoothed": 11498.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 5.337999999999999, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-07", + "total_cases": 62275.0, + "new_cases": 1796.0, + "new_cases_smoothed": 2160.571, + "total_deaths": 2567.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 104.0, + "total_cases_per_million": 1548.263, + "new_cases_per_million": 44.652, + "new_cases_smoothed_per_million": 53.715, + "total_deaths_per_million": 63.82, + "new_deaths_per_million": 2.337, + "new_deaths_smoothed_per_million": 2.586, + "new_tests": 11813.0, + "total_tests": 624420.0, + "total_tests_per_thousand": 15.524, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 11411.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 5.281000000000001, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-08", + "total_cases": 64701.0, + "new_cases": 2426.0, + "new_cases_smoothed": 2227.429, + "total_deaths": 2685.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 106.0, + "total_cases_per_million": 1608.577, + "new_cases_per_million": 60.314, + "new_cases_smoothed_per_million": 55.378, + "total_deaths_per_million": 66.754, + "new_deaths_per_million": 2.934, + "new_deaths_smoothed_per_million": 2.635, + "new_tests": 12807.0, + "total_tests": 637227.0, + "total_tests_per_thousand": 15.843, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 11615.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 5.215, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-09", + "total_cases": 67442.0, + "new_cases": 2741.0, + "new_cases_smoothed": 2274.0, + "total_deaths": 2779.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 104.143, + "total_cases_per_million": 1676.723, + "new_cases_per_million": 68.146, + "new_cases_smoothed_per_million": 56.536, + "total_deaths_per_million": 69.091, + "new_deaths_per_million": 2.337, + "new_deaths_smoothed_per_million": 2.589, + "new_tests": 11809.0, + "total_tests": 649036.0, + "total_tests_per_thousand": 16.136, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 11622.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 5.111000000000001, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-10", + "total_cases": 69612.0, + "new_cases": 2170.0, + "new_cases_smoothed": 2272.0, + "total_deaths": 2882.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 103.143, + "total_cases_per_million": 1730.673, + "new_cases_per_million": 53.95, + "new_cases_smoothed_per_million": 56.486, + "total_deaths_per_million": 71.651, + "new_deaths_per_million": 2.561, + "new_deaths_smoothed_per_million": 2.564, + "new_tests": 12054.0, + "total_tests": 661090.0, + "total_tests_per_thousand": 16.436, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 11604.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 5.107, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-11", + "total_cases": 72460.0, + "new_cases": 2848.0, + "new_cases_smoothed": 2348.571, + "total_deaths": 2960.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 99.714, + "total_cases_per_million": 1801.479, + "new_cases_per_million": 70.806, + "new_cases_smoothed_per_million": 58.389, + "total_deaths_per_million": 73.591, + "new_deaths_per_million": 1.939, + "new_deaths_smoothed_per_million": 2.479, + "new_tests": 10388.0, + "total_tests": 671478.0, + "total_tests_per_thousand": 16.694, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 11729.0, + "new_tests_smoothed_per_thousand": 0.292, + "tests_per_case": 4.994, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-12", + "total_cases": 75194.0, + "new_cases": 2734.0, + "new_cases_smoothed": 2405.714, + "total_deaths": 3055.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 98.143, + "total_cases_per_million": 1869.451, + "new_cases_per_million": 67.972, + "new_cases_smoothed_per_million": 59.81, + "total_deaths_per_million": 75.953, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.44, + "new_tests": 11154.0, + "total_tests": 682632.0, + "total_tests_per_thousand": 16.971, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 11649.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 4.842, + "positive_rate": 0.207, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-13", + "total_cases": 77506.0, + "new_cases": 2312.0, + "new_cases_smoothed": 2432.429, + "total_deaths": 3150.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 96.714, + "total_cases_per_million": 1926.931, + "new_cases_per_million": 57.48, + "new_cases_smoothed_per_million": 60.474, + "total_deaths_per_million": 78.314, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.404, + "new_tests": 15380.0, + "total_tests": 698012.0, + "total_tests_per_thousand": 17.354, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 12201.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 5.016, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-14", + "total_cases": 79735.0, + "new_cases": 2229.0, + "new_cases_smoothed": 2494.286, + "total_deaths": 3250.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 97.571, + "total_cases_per_million": 1982.348, + "new_cases_per_million": 55.417, + "new_cases_smoothed_per_million": 62.012, + "total_deaths_per_million": 80.801, + "new_deaths_per_million": 2.486, + "new_deaths_smoothed_per_million": 2.426, + "new_tests_smoothed": 12800.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 5.132000000000001, + "positive_rate": 0.195, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-15", + "total_cases": 81757.0, + "new_cases": 2022.0, + "new_cases_smoothed": 2436.571, + "total_deaths": 3345.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 94.286, + "total_cases_per_million": 2032.618, + "new_cases_per_million": 50.27, + "new_cases_smoothed_per_million": 60.577, + "total_deaths_per_million": 83.162, + "new_deaths_per_million": 2.362, + "new_deaths_smoothed_per_million": 2.344, + "new_tests_smoothed": 13258.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 5.441, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-16", + "total_cases": 83867.0, + "new_cases": 2110.0, + "new_cases_smoothed": 2346.429, + "total_deaths": 3432.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 93.286, + "total_cases_per_million": 2085.077, + "new_cases_per_million": 52.458, + "new_cases_smoothed_per_million": 58.336, + "total_deaths_per_million": 85.325, + "new_deaths_per_million": 2.163, + "new_deaths_smoothed_per_million": 2.319, + "new_tests_smoothed": 13859.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 5.906000000000001, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-17", + "total_cases": 86148.0, + "new_cases": 2281.0, + "new_cases_smoothed": 2362.286, + "total_deaths": 3522.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 91.429, + "total_cases_per_million": 2141.786, + "new_cases_per_million": 56.71, + "new_cases_smoothed_per_million": 58.73, + "total_deaths_per_million": 87.563, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.273, + "total_tests": 762058.0, + "total_tests_per_thousand": 18.946, + "new_tests_smoothed": 14424.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 6.106, + "positive_rate": 0.16399999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-18", + "total_cases": 88171.0, + "new_cases": 2023.0, + "new_cases_smoothed": 2244.429, + "total_deaths": 3616.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 93.714, + "total_cases_per_million": 2192.081, + "new_cases_per_million": 50.295, + "new_cases_smoothed_per_million": 55.8, + "total_deaths_per_million": 89.9, + "new_deaths_per_million": 2.337, + "new_deaths_smoothed_per_million": 2.33, + "new_tests": 15229.0, + "total_tests": 777287.0, + "total_tests_per_thousand": 19.325, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 15116.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 6.735, + "positive_rate": 0.14800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-19", + "total_cases": 90220.0, + "new_cases": 2049.0, + "new_cases_smoothed": 2146.571, + "total_deaths": 3691.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 90.857, + "total_cases_per_million": 2243.023, + "new_cases_per_million": 50.942, + "new_cases_smoothed_per_million": 53.367, + "total_deaths_per_million": 91.765, + "new_deaths_per_million": 1.865, + "new_deaths_smoothed_per_million": 2.259, + "new_tests": 15737.0, + "total_tests": 793024.0, + "total_tests_per_thousand": 19.716, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 15770.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 7.347, + "positive_rate": 0.136, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-20", + "total_cases": 92530.0, + "new_cases": 2310.0, + "new_cases_smoothed": 2146.286, + "total_deaths": 3781.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 90.143, + "total_cases_per_million": 2300.454, + "new_cases_per_million": 57.431, + "new_cases_smoothed_per_million": 53.36, + "total_deaths_per_million": 94.002, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.241, + "new_tests": 16498.0, + "total_tests": 809522.0, + "total_tests_per_thousand": 20.126, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 15930.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 7.422000000000001, + "positive_rate": 0.135, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-21", + "total_cases": 94693.0, + "new_cases": 2163.0, + "new_cases_smoothed": 2136.857, + "total_deaths": 3869.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 88.429, + "total_cases_per_million": 2354.229, + "new_cases_per_million": 53.776, + "new_cases_smoothed_per_million": 53.126, + "total_deaths_per_million": 96.19, + "new_deaths_per_million": 2.188, + "new_deaths_smoothed_per_million": 2.198, + "new_tests": 16280.0, + "total_tests": 825802.0, + "total_tests_per_thousand": 20.531, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 15968.0, + "new_tests_smoothed_per_thousand": 0.397, + "tests_per_case": 7.473, + "positive_rate": 0.134, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-22", + "total_cases": 97159.0, + "new_cases": 2466.0, + "new_cases_smoothed": 2200.286, + "total_deaths": 3950.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 86.429, + "total_cases_per_million": 2415.538, + "new_cases_per_million": 61.309, + "new_cases_smoothed_per_million": 54.703, + "total_deaths_per_million": 98.204, + "new_deaths_per_million": 2.014, + "new_deaths_smoothed_per_million": 2.149, + "new_tests": 18416.0, + "total_tests": 844218.0, + "total_tests_per_thousand": 20.989, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 16312.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 7.414, + "positive_rate": 0.135, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-23", + "total_cases": 99865.0, + "new_cases": 2706.0, + "new_cases_smoothed": 2285.429, + "total_deaths": 4042.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 87.143, + "total_cases_per_million": 2482.814, + "new_cases_per_million": 67.276, + "new_cases_smoothed_per_million": 56.82, + "total_deaths_per_million": 100.491, + "new_deaths_per_million": 2.287, + "new_deaths_smoothed_per_million": 2.167, + "new_tests": 16947.0, + "total_tests": 861165.0, + "total_tests_per_thousand": 21.41, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 16446.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 7.196000000000001, + "positive_rate": 0.139, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-24", + "total_cases": 102226.0, + "new_cases": 2361.0, + "new_cases_smoothed": 2296.857, + "total_deaths": 4122.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 85.714, + "total_cases_per_million": 2541.513, + "new_cases_per_million": 58.698, + "new_cases_smoothed_per_million": 57.104, + "total_deaths_per_million": 102.48, + "new_deaths_per_million": 1.989, + "new_deaths_smoothed_per_million": 2.131, + "new_tests_smoothed": 16612.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 7.232, + "positive_rate": 0.138, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-25", + "total_cases": 104711.0, + "new_cases": 2485.0, + "new_cases_smoothed": 2362.857, + "total_deaths": 4212.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 85.143, + "total_cases_per_million": 2603.294, + "new_cases_per_million": 61.781, + "new_cases_smoothed_per_million": 58.745, + "total_deaths_per_million": 104.718, + "new_deaths_per_million": 2.238, + "new_deaths_smoothed_per_million": 2.117, + "new_tests_smoothed": 16890.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 7.148, + "positive_rate": 0.14, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-26", + "total_cases": 107573.0, + "new_cases": 2862.0, + "new_cases_smoothed": 2479.0, + "total_deaths": 4284.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 84.714, + "total_cases_per_million": 2674.448, + "new_cases_per_million": 71.154, + "new_cases_smoothed_per_million": 61.632, + "total_deaths_per_million": 106.508, + "new_deaths_per_million": 1.79, + "new_deaths_smoothed_per_million": 2.106, + "total_tests": 912698.0, + "total_tests_per_thousand": 22.691, + "new_tests_smoothed": 17096.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 6.896, + "positive_rate": 0.145, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-27", + "total_cases": 110032.0, + "new_cases": 2459.0, + "new_cases_smoothed": 2500.286, + "total_deaths": 4362.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 2735.583, + "new_cases_per_million": 61.135, + "new_cases_smoothed_per_million": 62.161, + "total_deaths_per_million": 108.447, + "new_deaths_per_million": 1.939, + "new_deaths_smoothed_per_million": 2.064, + "new_tests": 17141.0, + "total_tests": 929839.0, + "total_tests_per_thousand": 23.117, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 17188.0, + "new_tests_smoothed_per_thousand": 0.427, + "tests_per_case": 6.874, + "positive_rate": 0.145, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-28", + "total_cases": 112585.0, + "new_cases": 2553.0, + "new_cases_smoothed": 2556.0, + "total_deaths": 4458.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 84.143, + "total_cases_per_million": 2799.055, + "new_cases_per_million": 63.472, + "new_cases_smoothed_per_million": 63.547, + "total_deaths_per_million": 110.833, + "new_deaths_per_million": 2.387, + "new_deaths_smoothed_per_million": 2.092, + "new_tests": 16922.0, + "total_tests": 946761.0, + "total_tests_per_thousand": 23.538, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 17280.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 6.761, + "positive_rate": 0.14800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-29", + "total_cases": 115332.0, + "new_cases": 2747.0, + "new_cases_smoothed": 2596.143, + "total_deaths": 4535.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 83.571, + "total_cases_per_million": 2867.35, + "new_cases_per_million": 68.295, + "new_cases_smoothed_per_million": 64.545, + "total_deaths_per_million": 112.748, + "new_deaths_per_million": 1.914, + "new_deaths_smoothed_per_million": 2.078, + "new_tests": 18556.0, + "total_tests": 965317.0, + "total_tests_per_thousand": 23.999, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 17300.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 6.664, + "positive_rate": 0.15, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-30", + "total_cases": 118300.0, + "new_cases": 2968.0, + "new_cases_smoothed": 2633.571, + "total_deaths": 4603.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 80.143, + "total_cases_per_million": 2941.14, + "new_cases_per_million": 73.79, + "new_cases_smoothed_per_million": 65.475, + "total_deaths_per_million": 114.438, + "new_deaths_per_million": 1.691, + "new_deaths_smoothed_per_million": 1.992, + "new_tests": 18018.0, + "total_tests": 983335.0, + "total_tests_per_thousand": 24.447, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 17453.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 6.627000000000001, + "positive_rate": 0.151, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-07-31", + "total_cases": 121263.0, + "new_cases": 2963.0, + "new_cases_smoothed": 2719.571, + "total_deaths": 4671.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 78.429, + "total_cases_per_million": 3014.805, + "new_cases_per_million": 73.665, + "new_cases_smoothed_per_million": 67.613, + "total_deaths_per_million": 116.129, + "new_deaths_per_million": 1.691, + "new_deaths_smoothed_per_million": 1.95, + "new_tests": 17634.0, + "total_tests": 1000969.0, + "total_tests_per_thousand": 24.886, + "new_tests_per_thousand": 0.438, + "new_tests_smoothed": 17518.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 6.441, + "positive_rate": 0.155, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-01", + "total_cases": 124609.0, + "new_cases": 3346.0, + "new_cases_smoothed": 2842.571, + "total_deaths": 4741.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 75.571, + "total_cases_per_million": 3097.992, + "new_cases_per_million": 83.187, + "new_cases_smoothed_per_million": 70.671, + "total_deaths_per_million": 117.869, + "new_deaths_per_million": 1.74, + "new_deaths_smoothed_per_million": 1.879, + "new_tests": 13791.0, + "total_tests": 1014760.0, + "total_tests_per_thousand": 25.229, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 17034.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 5.992000000000001, + "positive_rate": 0.16699999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-02", + "total_cases": 126704.0, + "new_cases": 2095.0, + "new_cases_smoothed": 2733.0, + "total_deaths": 4805.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 74.429, + "total_cases_per_million": 3150.077, + "new_cases_per_million": 52.085, + "new_cases_smoothed_per_million": 67.947, + "total_deaths_per_million": 119.46, + "new_deaths_per_million": 1.591, + "new_deaths_smoothed_per_million": 1.85, + "new_tests": 14399.0, + "total_tests": 1029159.0, + "total_tests_per_thousand": 25.587, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 16637.0, + "new_tests_smoothed_per_thousand": 0.414, + "tests_per_case": 6.087000000000001, + "positive_rate": 0.16399999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-03", + "total_cases": 129151.0, + "new_cases": 2447.0, + "new_cases_smoothed": 2731.286, + "total_deaths": 4868.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 72.286, + "total_cases_per_million": 3210.914, + "new_cases_per_million": 60.837, + "new_cases_smoothed_per_million": 67.904, + "total_deaths_per_million": 121.027, + "new_deaths_per_million": 1.566, + "new_deaths_smoothed_per_million": 1.797, + "new_tests": 13647.0, + "total_tests": 1042806.0, + "total_tests_per_thousand": 25.926, + "new_tests_per_thousand": 0.339, + "new_tests_smoothed": 16138.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 5.909, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-04", + "total_cases": 131886.0, + "new_cases": 2735.0, + "new_cases_smoothed": 2757.286, + "total_deaths": 4934.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 68.0, + "total_cases_per_million": 3278.911, + "new_cases_per_million": 67.997, + "new_cases_smoothed_per_million": 68.551, + "total_deaths_per_million": 122.668, + "new_deaths_per_million": 1.641, + "new_deaths_smoothed_per_million": 1.691, + "new_tests": 16813.0, + "total_tests": 1059619.0, + "total_tests_per_thousand": 26.344, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 16123.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 5.847, + "positive_rate": 0.171, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-05", + "total_cases": 134722.0, + "new_cases": 2836.0, + "new_cases_smoothed": 2770.0, + "total_deaths": 5017.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 3349.419, + "new_cases_per_million": 70.508, + "new_cases_smoothed_per_million": 68.867, + "total_deaths_per_million": 124.731, + "new_deaths_per_million": 2.064, + "new_deaths_smoothed_per_million": 1.712, + "new_tests": 16531.0, + "total_tests": 1076150.0, + "total_tests_per_thousand": 26.755, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 15833.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 5.716, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-06", + "total_cases": 137556.0, + "new_cases": 2834.0, + "new_cases_smoothed": 2750.857, + "total_deaths": 5094.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 70.143, + "total_cases_per_million": 3419.877, + "new_cases_per_million": 70.458, + "new_cases_smoothed_per_million": 68.391, + "total_deaths_per_million": 126.646, + "new_deaths_per_million": 1.914, + "new_deaths_smoothed_per_million": 1.744, + "new_tests": 16591.0, + "total_tests": 1092741.0, + "total_tests_per_thousand": 27.167, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 15629.0, + "new_tests_smoothed_per_thousand": 0.389, + "tests_per_case": 5.682, + "positive_rate": 0.17600000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-07", + "total_cases": 140603.0, + "new_cases": 3047.0, + "new_cases_smoothed": 2762.857, + "total_deaths": 5161.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 70.0, + "total_cases_per_million": 3495.63, + "new_cases_per_million": 75.754, + "new_cases_smoothed_per_million": 68.689, + "total_deaths_per_million": 128.311, + "new_deaths_per_million": 1.666, + "new_deaths_smoothed_per_million": 1.74, + "new_tests": 17517.0, + "total_tests": 1110258.0, + "total_tests_per_thousand": 27.603, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 15613.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 5.651, + "positive_rate": 0.177, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-08", + "total_cases": 144064.0, + "new_cases": 3461.0, + "new_cases_smoothed": 2779.286, + "total_deaths": 5236.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 70.714, + "total_cases_per_million": 3581.677, + "new_cases_per_million": 86.046, + "new_cases_smoothed_per_million": 69.098, + "total_deaths_per_million": 130.176, + "new_deaths_per_million": 1.865, + "new_deaths_smoothed_per_million": 1.758, + "new_tests": 17125.0, + "total_tests": 1127383.0, + "total_tests_per_thousand": 28.029, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 16089.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 5.789, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-09", + "total_cases": 147389.0, + "new_cases": 3325.0, + "new_cases_smoothed": 2955.0, + "total_deaths": 5310.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 3664.342, + "new_cases_per_million": 82.665, + "new_cases_smoothed_per_million": 73.466, + "total_deaths_per_million": 132.016, + "new_deaths_per_million": 1.84, + "new_deaths_smoothed_per_million": 1.794, + "new_tests": 18003.0, + "total_tests": 1145386.0, + "total_tests_per_thousand": 28.476, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 16604.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 5.619, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-10", + "total_cases": 150115.0, + "new_cases": 2726.0, + "new_cases_smoothed": 2994.857, + "total_deaths": 5392.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 74.857, + "total_cases_per_million": 3732.115, + "new_cases_per_million": 67.773, + "new_cases_smoothed_per_million": 74.457, + "total_deaths_per_million": 134.054, + "new_deaths_per_million": 2.039, + "new_deaths_smoothed_per_million": 1.861, + "new_tests": 19663.0, + "total_tests": 1165049.0, + "total_tests_per_thousand": 28.965, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 17463.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 5.831, + "positive_rate": 0.171, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-11", + "total_cases": 153599.0, + "new_cases": 3484.0, + "new_cases_smoothed": 3101.857, + "total_deaths": 5464.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 75.714, + "total_cases_per_million": 3818.733, + "new_cases_per_million": 86.618, + "new_cases_smoothed_per_million": 77.117, + "total_deaths_per_million": 135.844, + "new_deaths_per_million": 1.79, + "new_deaths_smoothed_per_million": 1.882, + "new_tests": 18901.0, + "total_tests": 1183950.0, + "total_tests_per_thousand": 29.435, + "new_tests_per_thousand": 0.47, + "new_tests_smoothed": 17762.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 5.726, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-12", + "total_cases": 156995.0, + "new_cases": 3396.0, + "new_cases_smoothed": 3181.857, + "total_deaths": 5531.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 73.429, + "total_cases_per_million": 3903.163, + "new_cases_per_million": 84.43, + "new_cases_smoothed_per_million": 79.106, + "total_deaths_per_million": 137.51, + "new_deaths_per_million": 1.666, + "new_deaths_smoothed_per_million": 1.826, + "new_tests": 19933.0, + "total_tests": 1203883.0, + "total_tests_per_thousand": 29.931, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 18248.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 5.735, + "positive_rate": 0.174, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-13", + "total_cases": 160436.0, + "new_cases": 3441.0, + "new_cases_smoothed": 3268.571, + "total_deaths": 5588.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 70.571, + "total_cases_per_million": 3988.712, + "new_cases_per_million": 85.549, + "new_cases_smoothed_per_million": 81.262, + "total_deaths_per_million": 138.927, + "new_deaths_per_million": 1.417, + "new_deaths_smoothed_per_million": 1.755, + "new_tests": 21026.0, + "total_tests": 1224909.0, + "total_tests_per_thousand": 30.453, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 18881.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 5.777, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-14", + "total_cases": 164277.0, + "new_cases": 3841.0, + "new_cases_smoothed": 3382.0, + "total_deaths": 5641.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 68.571, + "total_cases_per_million": 4084.206, + "new_cases_per_million": 95.494, + "new_cases_smoothed_per_million": 84.082, + "total_deaths_per_million": 140.245, + "new_deaths_per_million": 1.318, + "new_deaths_smoothed_per_million": 1.705, + "new_tests": 20446.0, + "total_tests": 1245355.0, + "total_tests_per_thousand": 30.962, + "new_tests_per_thousand": 0.508, + "new_tests_smoothed": 19300.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 5.707000000000001, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-15", + "total_cases": 168290.0, + "new_cases": 4013.0, + "new_cases_smoothed": 3460.857, + "total_deaths": 5709.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 67.571, + "total_cases_per_million": 4183.976, + "new_cases_per_million": 99.77, + "new_cases_smoothed_per_million": 86.043, + "total_deaths_per_million": 141.935, + "new_deaths_per_million": 1.691, + "new_deaths_smoothed_per_million": 1.68, + "new_tests": 18295.0, + "total_tests": 1263650.0, + "total_tests_per_thousand": 31.416, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 19467.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 5.625, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-16", + "total_cases": 172583.0, + "new_cases": 4293.0, + "new_cases_smoothed": 3599.143, + "total_deaths": 5785.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 67.857, + "total_cases_per_million": 4290.708, + "new_cases_per_million": 106.731, + "new_cases_smoothed_per_million": 89.481, + "total_deaths_per_million": 143.825, + "new_deaths_per_million": 1.889, + "new_deaths_smoothed_per_million": 1.687, + "new_tests": 19278.0, + "total_tests": 1282928.0, + "total_tests_per_thousand": 31.896, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 19649.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 5.459, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-17", + "total_cases": 176931.0, + "new_cases": 4348.0, + "new_cases_smoothed": 3830.857, + "total_deaths": 5860.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 66.857, + "total_cases_per_million": 4398.806, + "new_cases_per_million": 108.099, + "new_cases_smoothed_per_million": 95.242, + "total_deaths_per_million": 145.69, + "new_deaths_per_million": 1.865, + "new_deaths_smoothed_per_million": 1.662, + "new_tests": 21403.0, + "total_tests": 1304331.0, + "total_tests_per_thousand": 32.428, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 19897.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 5.194, + "positive_rate": 0.193, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-18", + "total_cases": 180133.0, + "new_cases": 3202.0, + "new_cases_smoothed": 3790.571, + "total_deaths": 5954.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 70.0, + "total_cases_per_million": 4478.413, + "new_cases_per_million": 79.607, + "new_cases_smoothed_per_million": 94.24, + "total_deaths_per_million": 148.027, + "new_deaths_per_million": 2.337, + "new_deaths_smoothed_per_million": 1.74, + "new_tests": 20772.0, + "total_tests": 1325103.0, + "total_tests_per_thousand": 32.944, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 20165.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 5.32, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-19", + "total_cases": 184709.0, + "new_cases": 4576.0, + "new_cases_smoothed": 3959.143, + "total_deaths": 6036.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 4592.181, + "new_cases_per_million": 113.767, + "new_cases_smoothed_per_million": 98.431, + "total_deaths_per_million": 150.065, + "new_deaths_per_million": 2.039, + "new_deaths_smoothed_per_million": 1.794, + "new_tests": 20356.0, + "total_tests": 1345459.0, + "total_tests_per_thousand": 33.45, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 20225.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 5.1080000000000005, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-20", + "total_cases": 188802.0, + "new_cases": 4093.0, + "new_cases_smoothed": 4052.286, + "total_deaths": 6121.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 76.143, + "total_cases_per_million": 4693.94, + "new_cases_per_million": 101.759, + "new_cases_smoothed_per_million": 100.747, + "total_deaths_per_million": 152.178, + "new_deaths_per_million": 2.113, + "new_deaths_smoothed_per_million": 1.893, + "new_tests_smoothed": 20483.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 5.055, + "positive_rate": 0.198, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-21", + "total_cases": 192797.0, + "new_cases": 3995.0, + "new_cases_smoothed": 4074.286, + "total_deaths": 6208.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 81.0, + "total_cases_per_million": 4793.262, + "new_cases_per_million": 99.323, + "new_cases_smoothed_per_million": 101.294, + "total_deaths_per_million": 154.341, + "new_deaths_per_million": 2.163, + "new_deaths_smoothed_per_million": 2.014, + "new_tests_smoothed": 20823.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 5.111000000000001, + "positive_rate": 0.196, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-22", + "total_cases": 197085.0, + "new_cases": 4288.0, + "new_cases_smoothed": 4113.571, + "total_deaths": 6283.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 82.0, + "total_cases_per_million": 4899.869, + "new_cases_per_million": 106.607, + "new_cases_smoothed_per_million": 102.27, + "total_deaths_per_million": 156.206, + "new_deaths_per_million": 1.865, + "new_deaths_smoothed_per_million": 2.039, + "total_tests": 1413947.0, + "total_tests_per_thousand": 35.153, + "new_tests_smoothed": 21471.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 5.22, + "positive_rate": 0.192, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-23", + "total_cases": 201050.0, + "new_cases": 3965.0, + "new_cases_smoothed": 4066.714, + "total_deaths": 6353.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 81.143, + "total_cases_per_million": 4998.446, + "new_cases_per_million": 98.577, + "new_cases_smoothed_per_million": 101.105, + "total_deaths_per_million": 157.946, + "new_deaths_per_million": 1.74, + "new_deaths_smoothed_per_million": 2.017, + "new_tests": 19679.0, + "total_tests": 1433626.0, + "total_tests_per_thousand": 35.642, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 21528.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 5.294, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-24", + "total_cases": 204341.0, + "new_cases": 3291.0, + "new_cases_smoothed": 3915.714, + "total_deaths": 6428.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 81.143, + "total_cases_per_million": 5080.266, + "new_cases_per_million": 81.82, + "new_cases_smoothed_per_million": 97.351, + "total_deaths_per_million": 159.811, + "new_deaths_per_million": 1.865, + "new_deaths_smoothed_per_million": 2.017, + "new_tests_smoothed": 21939.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 5.603, + "positive_rate": 0.17800000000000002, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-25", + "total_cases": 207985.0, + "new_cases": 3644.0, + "new_cases_smoothed": 3978.857, + "total_deaths": 6519.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 80.714, + "total_cases_per_million": 5170.862, + "new_cases_per_million": 90.596, + "new_cases_smoothed_per_million": 98.921, + "total_deaths_per_million": 162.073, + "new_deaths_per_million": 2.262, + "new_deaths_smoothed_per_million": 2.007, + "total_tests": 1482187.0, + "total_tests_per_thousand": 36.85, + "new_tests_smoothed": 22441.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 5.64, + "positive_rate": 0.177, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-26", + "total_cases": 211947.0, + "new_cases": 3962.0, + "new_cases_smoothed": 3891.143, + "total_deaths": 6596.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 80.0, + "total_cases_per_million": 5269.364, + "new_cases_per_million": 98.502, + "new_cases_smoothed_per_million": 96.74, + "total_deaths_per_million": 163.988, + "new_deaths_per_million": 1.914, + "new_deaths_smoothed_per_million": 1.989, + "new_tests": 20359.0, + "total_tests": 1502546.0, + "total_tests_per_thousand": 37.356, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 22441.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 5.767, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 92.59 + }, + { + "date": "2020-08-27", + "total_cases": 215784.0, + "new_cases": 3837.0, + "new_cases_smoothed": 3854.571, + "total_deaths": 6668.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 78.143, + "total_cases_per_million": 5364.758, + "new_cases_per_million": 95.394, + "new_cases_smoothed_per_million": 95.831, + "total_deaths_per_million": 165.778, + "new_deaths_per_million": 1.79, + "new_deaths_smoothed_per_million": 1.943, + "new_tests_smoothed": 22208.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 5.761, + "positive_rate": 0.174, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-08-28", + "total_cases": 219435.0, + "new_cases": 3651.0, + "new_cases_smoothed": 3805.429, + "total_deaths": 6740.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 76.0, + "total_cases_per_million": 5455.528, + "new_cases_per_million": 90.77, + "new_cases_smoothed_per_million": 94.609, + "total_deaths_per_million": 167.568, + "new_deaths_per_million": 1.79, + "new_deaths_smoothed_per_million": 1.889, + "new_tests_smoothed": 21974.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 5.774, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-08-29", + "total_cases": 223612.0, + "new_cases": 4177.0, + "new_cases_smoothed": 3789.571, + "total_deaths": 6814.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 75.857, + "total_cases_per_million": 5559.376, + "new_cases_per_million": 103.847, + "new_cases_smoothed_per_million": 94.215, + "total_deaths_per_million": 169.408, + "new_deaths_per_million": 1.84, + "new_deaths_smoothed_per_million": 1.886, + "new_tests_smoothed": 21741.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 5.737, + "positive_rate": 0.174, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-08-30", + "total_cases": 227446.0, + "new_cases": 3834.0, + "new_cases_smoothed": 3770.857, + "total_deaths": 6891.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 76.857, + "total_cases_per_million": 5654.695, + "new_cases_per_million": 95.32, + "new_cases_smoothed_per_million": 93.75, + "total_deaths_per_million": 171.322, + "new_deaths_per_million": 1.914, + "new_deaths_smoothed_per_million": 1.911, + "total_tests": 1587326.0, + "total_tests_per_thousand": 39.464, + "new_tests_smoothed": 21957.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 5.8229999999999995, + "positive_rate": 0.172, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-08-31", + "total_cases": 231177.0, + "new_cases": 3731.0, + "new_cases_smoothed": 3833.714, + "total_deaths": 6959.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 75.857, + "total_cases_per_million": 5747.454, + "new_cases_per_million": 92.759, + "new_cases_smoothed_per_million": 95.313, + "total_deaths_per_million": 173.013, + "new_deaths_per_million": 1.691, + "new_deaths_smoothed_per_million": 1.886, + "new_tests": 18578.0, + "total_tests": 1605904.0, + "total_tests_per_thousand": 39.926, + "new_tests_per_thousand": 0.462, + "new_tests_smoothed": 21142.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 5.515, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-09-01", + "total_cases": 234934.0, + "new_cases": 3757.0, + "new_cases_smoothed": 3849.857, + "total_deaths": 7042.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 74.714, + "total_cases_per_million": 5840.86, + "new_cases_per_million": 93.405, + "new_cases_smoothed_per_million": 95.714, + "total_deaths_per_million": 175.076, + "new_deaths_per_million": 2.064, + "new_deaths_smoothed_per_million": 1.858, + "new_tests": 18427.0, + "total_tests": 1624331.0, + "total_tests_per_thousand": 40.384, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 20306.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 5.274, + "positive_rate": 0.19, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 238338.0, + "new_cases": 3404.0, + "new_cases_smoothed": 3770.143, + "total_deaths": 7123.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 75.286, + "total_cases_per_million": 5925.489, + "new_cases_per_million": 84.629, + "new_cases_smoothed_per_million": 93.732, + "total_deaths_per_million": 177.09, + "new_deaths_per_million": 2.014, + "new_deaths_smoothed_per_million": 1.872, + "new_tests": 23123.0, + "total_tests": 1647454.0, + "total_tests_per_thousand": 40.959, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 20701.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 5.4910000000000005, + "positive_rate": 0.182, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 242284.0, + "new_cases": 3946.0, + "new_cases_smoothed": 3785.714, + "total_deaths": 7201.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 76.143, + "total_cases_per_million": 6023.593, + "new_cases_per_million": 98.104, + "new_cases_smoothed_per_million": 94.119, + "total_deaths_per_million": 179.029, + "new_deaths_per_million": 1.939, + "new_deaths_smoothed_per_million": 1.893, + "new_tests": 23029.0, + "total_tests": 1670483.0, + "total_tests_per_thousand": 41.531, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 20963.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 5.537000000000001, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 247039.0, + "new_cases": 4755.0, + "new_cases_smoothed": 3943.429, + "total_deaths": 7275.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 6141.811, + "new_cases_per_million": 118.217, + "new_cases_smoothed_per_million": 98.04, + "total_deaths_per_million": 180.869, + "new_deaths_per_million": 1.84, + "new_deaths_smoothed_per_million": 1.9 + }, + { + "date": "2020-09-05", + "total_cases": 252075.0, + "new_cases": 5036.0, + "new_cases_smoothed": 4066.143, + "total_deaths": 7359.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 77.857, + "total_cases_per_million": 6267.014, + "new_cases_per_million": 125.204, + "new_cases_smoothed_per_million": 101.091, + "total_deaths_per_million": 182.957, + "new_deaths_per_million": 2.088, + "new_deaths_smoothed_per_million": 1.936 + } + ] + }, + "IRL": { + "continent": "Europe", + "location": "Ireland", + "population": 4937796.0, + "population_density": 69.874, + "median_age": 38.7, + "aged_65_older": 13.928, + "aged_70_older": 8.678, + "gdp_per_capita": 67335.293, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 126.459, + "diabetes_prevalence": 3.28, + "female_smokers": 23.0, + "male_smokers": 25.7, + "hospital_beds_per_thousand": 2.96, + "life_expectancy": 82.3, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.203, + "new_cases_per_million": 0.203, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.405, + "new_cases_per_million": 0.203, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 6.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.215, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 13.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.633, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 0.376, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 18.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.645, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.848, + "new_cases_per_million": 0.203, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.253, + "new_cases_per_million": 0.405, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 2.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.579, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 35.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.088, + "new_cases_per_million": 2.835, + "new_cases_smoothed_per_million": 0.955, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 43.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.708, + "new_cases_per_million": 1.62, + "new_cases_smoothed_per_million": 1.07, + "total_deaths_per_million": 0.203, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 31.48 + }, + { + "date": "2020-03-13", + "total_cases": 70.0, + "new_cases": 27.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.176, + "new_cases_per_million": 5.468, + "new_cases_smoothed_per_million": 1.649, + "total_deaths_per_million": 0.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 42.59 + }, + { + "date": "2020-03-14", + "total_cases": 91.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.429, + "new_cases_per_million": 4.253, + "new_cases_smoothed_per_million": 2.112, + "total_deaths_per_million": 0.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 42.59 + }, + { + "date": "2020-03-15", + "total_cases": 129.0, + "new_cases": 38.0, + "new_cases_smoothed": 15.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 26.125, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 3.182, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.058, + "stringency_index": 48.15 + }, + { + "date": "2020-03-16", + "total_cases": 169.0, + "new_cases": 40.0, + "new_cases_smoothed": 21.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 34.226, + "new_cases_per_million": 8.101, + "new_cases_smoothed_per_million": 4.282, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "stringency_index": 48.15 + }, + { + "date": "2020-03-17", + "total_cases": 223.0, + "new_cases": 54.0, + "new_cases_smoothed": 28.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.162, + "new_cases_per_million": 10.936, + "new_cases_smoothed_per_million": 5.844, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "stringency_index": 48.15 + }, + { + "date": "2020-03-18", + "total_cases": 292.0, + "new_cases": 69.0, + "new_cases_smoothed": 36.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 59.136, + "new_cases_per_million": 13.974, + "new_cases_smoothed_per_million": 7.435, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "total_tests": 6457.0, + "total_tests_per_thousand": 1.308, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-19", + "total_cases": 366.0, + "new_cases": 74.0, + "new_cases_smoothed": 46.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 74.122, + "new_cases_per_million": 14.986, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 946.0, + "total_tests": 7403.0, + "total_tests_per_thousand": 1.499, + "new_tests_per_thousand": 0.192, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-20", + "total_cases": 557.0, + "new_cases": 191.0, + "new_cases_smoothed": 69.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 112.803, + "new_cases_per_million": 38.681, + "new_cases_smoothed_per_million": 14.09, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 1469.0, + "total_tests": 8872.0, + "total_tests_per_thousand": 1.797, + "new_tests_per_thousand": 0.298, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-21", + "total_cases": 683.0, + "new_cases": 126.0, + "new_cases_smoothed": 84.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 138.321, + "new_cases_per_million": 25.517, + "new_cases_smoothed_per_million": 17.127, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 1564.0, + "total_tests": 10436.0, + "total_tests_per_thousand": 2.113, + "new_tests_per_thousand": 0.317, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-22", + "total_cases": 785.0, + "new_cases": 102.0, + "new_cases_smoothed": 93.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 158.978, + "new_cases_per_million": 20.657, + "new_cases_smoothed_per_million": 18.979, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 978.0, + "total_tests": 11414.0, + "total_tests_per_thousand": 2.312, + "new_tests_per_thousand": 0.198, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-23", + "total_cases": 906.0, + "new_cases": 121.0, + "new_cases_smoothed": 105.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 183.483, + "new_cases_per_million": 24.505, + "new_cases_smoothed_per_million": 21.322, + "total_deaths_per_million": 0.81, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 2581.0, + "total_tests": 13995.0, + "total_tests_per_thousand": 2.834, + "new_tests_per_thousand": 0.523, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-24", + "total_cases": 1125.0, + "new_cases": 219.0, + "new_cases_smoothed": 128.857, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 227.834, + "new_cases_per_million": 44.352, + "new_cases_smoothed_per_million": 26.096, + "total_deaths_per_million": 1.215, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 1566.0, + "total_tests": 15561.0, + "total_tests_per_thousand": 3.151, + "new_tests_per_thousand": 0.317, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-25", + "total_cases": 1329.0, + "new_cases": 204.0, + "new_cases_smoothed": 148.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 269.148, + "new_cases_per_million": 41.314, + "new_cases_smoothed_per_million": 30.002, + "total_deaths_per_million": 1.418, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1775.0, + "total_tests": 17336.0, + "total_tests_per_thousand": 3.511, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 1554.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 10.49, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-26", + "total_cases": 1564.0, + "new_cases": 235.0, + "new_cases_smoothed": 171.143, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 316.741, + "new_cases_per_million": 47.592, + "new_cases_smoothed_per_million": 34.66, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 3376.0, + "total_tests": 20712.0, + "total_tests_per_thousand": 4.195, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 1901.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 11.107999999999999, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 1819.0, + "new_cases": 255.0, + "new_cases_smoothed": 180.286, + "total_deaths": 19.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 368.383, + "new_cases_per_million": 51.642, + "new_cases_smoothed_per_million": 36.511, + "total_deaths_per_million": 3.848, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 2941.0, + "total_tests": 23653.0, + "total_tests_per_thousand": 4.79, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 2112.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 11.715, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-28", + "total_cases": 2121.0, + "new_cases": 302.0, + "new_cases_smoothed": 205.429, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 429.544, + "new_cases_per_million": 61.161, + "new_cases_smoothed_per_million": 41.603, + "total_deaths_per_million": 4.455, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 2206.0, + "total_tests": 25859.0, + "total_tests_per_thousand": 5.237, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 2203.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 10.724, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-29", + "total_cases": 2415.0, + "new_cases": 294.0, + "new_cases_smoothed": 232.857, + "total_deaths": 36.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 489.085, + "new_cases_per_million": 59.541, + "new_cases_smoothed_per_million": 47.158, + "total_deaths_per_million": 7.291, + "new_deaths_per_million": 2.835, + "new_deaths_smoothed_per_million": 0.955, + "new_tests": 1616.0, + "total_tests": 27475.0, + "total_tests_per_thousand": 5.564, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 2294.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 9.852, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-30", + "total_cases": 2615.0, + "new_cases": 200.0, + "new_cases_smoothed": 244.143, + "total_deaths": 46.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 529.589, + "new_cases_per_million": 40.504, + "new_cases_smoothed_per_million": 49.444, + "total_deaths_per_million": 9.316, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 1.215, + "new_tests": 1397.0, + "total_tests": 28872.0, + "total_tests_per_thousand": 5.847, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 2125.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 8.704, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-31", + "total_cases": 2910.0, + "new_cases": 295.0, + "new_cases_smoothed": 255.0, + "total_deaths": 54.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 589.332, + "new_cases_per_million": 59.743, + "new_cases_smoothed_per_million": 51.642, + "total_deaths_per_million": 10.936, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 1.389, + "new_tests": 1928.0, + "total_tests": 30800.0, + "total_tests_per_thousand": 6.238, + "new_tests_per_thousand": 0.39, + "new_tests_smoothed": 2177.0, + "new_tests_smoothed_per_thousand": 0.441, + "tests_per_case": 8.537, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 3235.0, + "new_cases": 325.0, + "new_cases_smoothed": 272.286, + "total_deaths": 71.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 655.151, + "new_cases_per_million": 65.819, + "new_cases_smoothed_per_million": 55.143, + "total_deaths_per_million": 14.379, + "new_deaths_per_million": 3.443, + "new_deaths_smoothed_per_million": 1.852, + "new_tests": 2009.0, + "total_tests": 32809.0, + "total_tests_per_thousand": 6.644, + "new_tests_per_thousand": 0.407, + "new_tests_smoothed": 2210.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 8.116, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 3447.0, + "new_cases": 212.0, + "new_cases_smoothed": 269.0, + "total_deaths": 85.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 698.085, + "new_cases_per_million": 42.934, + "new_cases_smoothed_per_million": 54.478, + "total_deaths_per_million": 17.214, + "new_deaths_per_million": 2.835, + "new_deaths_smoothed_per_million": 2.199, + "new_tests": 1975.0, + "total_tests": 34784.0, + "total_tests_per_thousand": 7.044, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 2010.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 7.472, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 3849.0, + "new_cases": 402.0, + "new_cases_smoothed": 290.0, + "total_deaths": 98.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 779.498, + "new_cases_per_million": 81.413, + "new_cases_smoothed_per_million": 58.731, + "total_deaths_per_million": 19.847, + "new_deaths_per_million": 2.633, + "new_deaths_smoothed_per_million": 2.286, + "new_tests": 1857.0, + "total_tests": 36641.0, + "total_tests_per_thousand": 7.421, + "new_tests_per_thousand": 0.376, + "new_tests_smoothed": 1855.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 6.397, + "positive_rate": 0.156, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 4273.0, + "new_cases": 424.0, + "new_cases_smoothed": 307.429, + "total_deaths": 120.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 865.366, + "new_cases_per_million": 85.868, + "new_cases_smoothed_per_million": 62.26, + "total_deaths_per_million": 24.302, + "new_deaths_per_million": 4.455, + "new_deaths_smoothed_per_million": 2.835, + "new_tests": 1849.0, + "total_tests": 38490.0, + "total_tests_per_thousand": 7.795, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 1804.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 5.867999999999999, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 4604.0, + "new_cases": 331.0, + "new_cases_smoothed": 312.714, + "total_deaths": 137.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 932.4, + "new_cases_per_million": 67.034, + "new_cases_smoothed_per_million": 63.331, + "total_deaths_per_million": 27.745, + "new_deaths_per_million": 3.443, + "new_deaths_smoothed_per_million": 2.922, + "new_tests": 2831.0, + "total_tests": 41321.0, + "total_tests_per_thousand": 8.368, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 1978.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 6.325, + "positive_rate": 0.158, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 5111.0, + "new_cases": 507.0, + "new_cases_smoothed": 356.571, + "total_deaths": 158.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1035.077, + "new_cases_per_million": 102.677, + "new_cases_smoothed_per_million": 72.213, + "total_deaths_per_million": 31.998, + "new_deaths_per_million": 4.253, + "new_deaths_smoothed_per_million": 3.24, + "new_tests": 6117.0, + "total_tests": 47438.0, + "total_tests_per_thousand": 9.607, + "new_tests_per_thousand": 1.239, + "new_tests_smoothed": 2652.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 7.438, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 5364.0, + "new_cases": 253.0, + "new_cases_smoothed": 350.571, + "total_deaths": 174.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 1086.315, + "new_cases_per_million": 51.237, + "new_cases_smoothed_per_million": 70.998, + "total_deaths_per_million": 35.238, + "new_deaths_per_million": 3.24, + "new_deaths_smoothed_per_million": 3.472, + "new_tests": 1853.0, + "total_tests": 49291.0, + "total_tests_per_thousand": 9.982, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 2642.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 7.5360000000000005, + "positive_rate": 0.133, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 5709.0, + "new_cases": 345.0, + "new_cases_smoothed": 353.429, + "total_deaths": 210.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 1156.184, + "new_cases_per_million": 69.869, + "new_cases_smoothed_per_million": 71.576, + "total_deaths_per_million": 42.529, + "new_deaths_per_million": 7.291, + "new_deaths_smoothed_per_million": 4.021, + "new_tests": 3728.0, + "total_tests": 53019.0, + "total_tests_per_thousand": 10.737, + "new_tests_per_thousand": 0.755, + "new_tests_smoothed": 2887.0, + "new_tests_smoothed_per_thousand": 0.585, + "tests_per_case": 8.169, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 6224.0, + "new_cases": 515.0, + "new_cases_smoothed": 396.714, + "total_deaths": 235.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 1260.481, + "new_cases_per_million": 104.298, + "new_cases_smoothed_per_million": 80.342, + "total_deaths_per_million": 47.592, + "new_deaths_per_million": 5.063, + "new_deaths_smoothed_per_million": 4.34, + "new_tests": 5487.0, + "total_tests": 58506.0, + "total_tests_per_thousand": 11.849, + "new_tests_per_thousand": 1.111, + "new_tests_smoothed": 3389.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 8.543, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 7393.0, + "new_cases": 1169.0, + "new_cases_smoothed": 506.286, + "total_deaths": 263.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 1497.227, + "new_cases_per_million": 236.745, + "new_cases_smoothed_per_million": 102.533, + "total_deaths_per_million": 53.263, + "new_deaths_per_million": 5.671, + "new_deaths_smoothed_per_million": 4.774, + "new_tests": 6959.0, + "total_tests": 65465.0, + "total_tests_per_thousand": 13.258, + "new_tests_per_thousand": 1.409, + "new_tests_smoothed": 4118.0, + "new_tests_smoothed_per_thousand": 0.834, + "tests_per_case": 8.134, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 8089.0, + "new_cases": 696.0, + "new_cases_smoothed": 545.143, + "total_deaths": 287.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 1638.18, + "new_cases_per_million": 140.954, + "new_cases_smoothed_per_million": 110.402, + "total_deaths_per_million": 58.123, + "new_deaths_per_million": 4.86, + "new_deaths_smoothed_per_million": 4.832, + "new_tests": 6990.0, + "total_tests": 72455.0, + "total_tests_per_thousand": 14.674, + "new_tests_per_thousand": 1.416, + "new_tests_smoothed": 4852.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 8.9, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 8928.0, + "new_cases": 839.0, + "new_cases_smoothed": 617.714, + "total_deaths": 320.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 26.143, + "total_cases_per_million": 1808.094, + "new_cases_per_million": 169.914, + "new_cases_smoothed_per_million": 125.099, + "total_deaths_per_million": 64.806, + "new_deaths_per_million": 6.683, + "new_deaths_smoothed_per_million": 5.294, + "new_tests": 5722.0, + "total_tests": 78177.0, + "total_tests_per_thousand": 15.832, + "new_tests_per_thousand": 1.159, + "new_tests_smoothed": 5265.0, + "new_tests_smoothed_per_thousand": 1.066, + "tests_per_case": 8.523, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 9655.0, + "new_cases": 727.0, + "new_cases_smoothed": 649.143, + "total_deaths": 334.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 1955.326, + "new_cases_per_million": 147.232, + "new_cases_smoothed_per_million": 131.464, + "total_deaths_per_million": 67.642, + "new_deaths_per_million": 2.835, + "new_deaths_smoothed_per_million": 5.092, + "new_tests": 8427.0, + "total_tests": 86604.0, + "total_tests_per_thousand": 17.539, + "new_tests_per_thousand": 1.707, + "new_tests_smoothed": 5595.0, + "new_tests_smoothed_per_thousand": 1.133, + "tests_per_case": 8.619, + "positive_rate": 0.11599999999999999, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 10647.0, + "new_cases": 992.0, + "new_cases_smoothed": 754.714, + "total_deaths": 365.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 2156.225, + "new_cases_per_million": 200.899, + "new_cases_smoothed_per_million": 152.844, + "total_deaths_per_million": 73.92, + "new_deaths_per_million": 6.278, + "new_deaths_smoothed_per_million": 5.526, + "new_tests": 4275.0, + "total_tests": 90879.0, + "total_tests_per_thousand": 18.405, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 5941.0, + "new_tests_smoothed_per_thousand": 1.203, + "tests_per_case": 7.872000000000001, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 11479.0, + "new_cases": 832.0, + "new_cases_smoothed": 824.286, + "total_deaths": 406.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 2324.721, + "new_cases_per_million": 168.496, + "new_cases_smoothed_per_million": 166.934, + "total_deaths_per_million": 82.223, + "new_deaths_per_million": 8.303, + "new_deaths_smoothed_per_million": 5.671, + "new_tests": 3036.0, + "total_tests": 93915.0, + "total_tests_per_thousand": 19.02, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 5842.0, + "new_tests_smoothed_per_thousand": 1.183, + "tests_per_case": 7.087000000000001, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 12547.0, + "new_cases": 1068.0, + "new_cases_smoothed": 903.286, + "total_deaths": 444.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 2541.012, + "new_cases_per_million": 216.291, + "new_cases_smoothed_per_million": 182.933, + "total_deaths_per_million": 89.919, + "new_deaths_per_million": 7.696, + "new_deaths_smoothed_per_million": 6.047, + "new_tests": 3644.0, + "total_tests": 97559.0, + "total_tests_per_thousand": 19.758, + "new_tests_per_thousand": 0.738, + "new_tests_smoothed": 5579.0, + "new_tests_smoothed_per_thousand": 1.13, + "tests_per_case": 6.176, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 13271.0, + "new_cases": 724.0, + "new_cases_smoothed": 839.714, + "total_deaths": 486.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 2687.636, + "new_cases_per_million": 146.624, + "new_cases_smoothed_per_million": 170.059, + "total_deaths_per_million": 98.424, + "new_deaths_per_million": 8.506, + "new_deaths_smoothed_per_million": 6.452, + "new_tests": 4355.0, + "total_tests": 101914.0, + "total_tests_per_thousand": 20.64, + "new_tests_per_thousand": 0.882, + "new_tests_smoothed": 5207.0, + "new_tests_smoothed_per_thousand": 1.055, + "tests_per_case": 6.2010000000000005, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 13980.0, + "new_cases": 709.0, + "new_cases_smoothed": 841.571, + "total_deaths": 530.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 2831.223, + "new_cases_per_million": 143.586, + "new_cases_smoothed_per_million": 170.435, + "total_deaths_per_million": 107.335, + "new_deaths_per_million": 8.911, + "new_deaths_smoothed_per_million": 7.03, + "new_tests": 2209.0, + "total_tests": 104123.0, + "total_tests_per_thousand": 21.087, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 4524.0, + "new_tests_smoothed_per_thousand": 0.916, + "tests_per_case": 5.376, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 14758.0, + "new_cases": 778.0, + "new_cases_smoothed": 832.857, + "total_deaths": 571.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 2988.783, + "new_cases_per_million": 157.56, + "new_cases_smoothed_per_million": 168.67, + "total_deaths_per_million": 115.639, + "new_deaths_per_million": 8.303, + "new_deaths_smoothed_per_million": 7.262, + "new_tests": 2313.0, + "total_tests": 106436.0, + "total_tests_per_thousand": 21.555, + "new_tests_per_thousand": 0.468, + "new_tests_smoothed": 4037.0, + "new_tests_smoothed_per_thousand": 0.818, + "tests_per_case": 4.8469999999999995, + "positive_rate": 0.20600000000000002, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-20", + "total_cases": 15251.0, + "new_cases": 493.0, + "new_cases_smoothed": 799.429, + "total_deaths": 610.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 3088.625, + "new_cases_per_million": 99.842, + "new_cases_smoothed_per_million": 161.9, + "total_deaths_per_million": 123.537, + "new_deaths_per_million": 7.898, + "new_deaths_smoothed_per_million": 7.985, + "new_tests": 1626.0, + "total_tests": 108062.0, + "total_tests_per_thousand": 21.885, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 3065.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 3.8339999999999996, + "positive_rate": 0.261, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-21", + "total_cases": 15652.0, + "new_cases": 401.0, + "new_cases_smoothed": 715.0, + "total_deaths": 687.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 46.0, + "total_cases_per_million": 3169.835, + "new_cases_per_million": 81.21, + "new_cases_smoothed_per_million": 144.801, + "total_deaths_per_million": 139.131, + "new_deaths_per_million": 15.594, + "new_deaths_smoothed_per_million": 9.316, + "new_tests": 3757.0, + "total_tests": 111819.0, + "total_tests_per_thousand": 22.646, + "new_tests_per_thousand": 0.761, + "new_tests_smoothed": 2991.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 4.183, + "positive_rate": 0.239, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-22", + "total_cases": 16040.0, + "new_cases": 388.0, + "new_cases_smoothed": 651.571, + "total_deaths": 730.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 3248.413, + "new_cases_per_million": 78.578, + "new_cases_smoothed_per_million": 131.956, + "total_deaths_per_million": 147.839, + "new_deaths_per_million": 8.708, + "new_deaths_smoothed_per_million": 9.374, + "new_tests": 5363.0, + "total_tests": 117182.0, + "total_tests_per_thousand": 23.732, + "new_tests_per_thousand": 1.086, + "new_tests_smoothed": 3324.0, + "new_tests_smoothed_per_thousand": 0.673, + "tests_per_case": 5.102, + "positive_rate": 0.196, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-23", + "total_cases": 16671.0, + "new_cases": 631.0, + "new_cases_smoothed": 589.143, + "total_deaths": 769.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 46.429, + "total_cases_per_million": 3376.203, + "new_cases_per_million": 127.79, + "new_cases_smoothed_per_million": 119.313, + "total_deaths_per_million": 155.737, + "new_deaths_per_million": 7.898, + "new_deaths_smoothed_per_million": 9.403, + "new_tests": 4871.0, + "total_tests": 122053.0, + "total_tests_per_thousand": 24.718, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 3499.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 5.939, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-24", + "total_cases": 17607.0, + "new_cases": 936.0, + "new_cases_smoothed": 619.429, + "total_deaths": 794.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 44.0, + "total_cases_per_million": 3565.761, + "new_cases_per_million": 189.558, + "new_cases_smoothed_per_million": 125.446, + "total_deaths_per_million": 160.8, + "new_deaths_per_million": 5.063, + "new_deaths_smoothed_per_million": 8.911, + "new_tests": 5580.0, + "total_tests": 127633.0, + "total_tests_per_thousand": 25.848, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 3674.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 5.931, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-25", + "total_cases": 18184.0, + "new_cases": 577.0, + "new_cases_smoothed": 600.571, + "total_deaths": 829.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 42.714, + "total_cases_per_million": 3682.615, + "new_cases_per_million": 116.854, + "new_cases_smoothed_per_million": 121.627, + "total_deaths_per_million": 167.889, + "new_deaths_per_million": 7.088, + "new_deaths_smoothed_per_million": 8.65, + "new_tests": 5632.0, + "total_tests": 133265.0, + "total_tests_per_thousand": 26.989, + "new_tests_per_thousand": 1.141, + "new_tests_smoothed": 4163.0, + "new_tests_smoothed_per_thousand": 0.843, + "tests_per_case": 6.932, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-26", + "total_cases": 18561.0, + "new_cases": 377.0, + "new_cases_smoothed": 543.286, + "total_deaths": 1063.0, + "new_deaths": 234.0, + "new_deaths_smoothed": 70.286, + "total_cases_per_million": 3758.965, + "new_cases_per_million": 76.35, + "new_cases_smoothed_per_million": 110.026, + "total_deaths_per_million": 215.278, + "new_deaths_per_million": 47.39, + "new_deaths_smoothed_per_million": 14.234, + "new_tests": 8598.0, + "total_tests": 141863.0, + "total_tests_per_thousand": 28.73, + "new_tests_per_thousand": 1.741, + "new_tests_smoothed": 5061.0, + "new_tests_smoothed_per_thousand": 1.025, + "tests_per_case": 9.316, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-27", + "total_cases": 19262.0, + "new_cases": 701.0, + "new_cases_smoothed": 573.0, + "total_deaths": 1087.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 3900.931, + "new_cases_per_million": 141.966, + "new_cases_smoothed_per_million": 116.044, + "total_deaths_per_million": 220.139, + "new_deaths_per_million": 4.86, + "new_deaths_smoothed_per_million": 13.8, + "new_tests": 5100.0, + "total_tests": 146963.0, + "total_tests_per_thousand": 29.763, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 5557.0, + "new_tests_smoothed_per_thousand": 1.125, + "tests_per_case": 9.698, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 19648.0, + "new_cases": 386.0, + "new_cases_smoothed": 570.857, + "total_deaths": 1102.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 59.286, + "total_cases_per_million": 3979.103, + "new_cases_per_million": 78.173, + "new_cases_smoothed_per_million": 115.61, + "total_deaths_per_million": 223.176, + "new_deaths_per_million": 3.038, + "new_deaths_smoothed_per_million": 12.007, + "new_tests": 6306.0, + "total_tests": 153269.0, + "total_tests_per_thousand": 31.04, + "new_tests_per_thousand": 1.277, + "new_tests_smoothed": 5921.0, + "new_tests_smoothed_per_thousand": 1.199, + "tests_per_case": 10.372, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 19877.0, + "new_cases": 229.0, + "new_cases_smoothed": 548.143, + "total_deaths": 1159.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 61.286, + "total_cases_per_million": 4025.48, + "new_cases_per_million": 46.377, + "new_cases_smoothed_per_million": 111.01, + "total_deaths_per_million": 234.72, + "new_deaths_per_million": 11.544, + "new_deaths_smoothed_per_million": 12.412, + "new_tests": 8159.0, + "total_tests": 161428.0, + "total_tests_per_thousand": 32.692, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 6321.0, + "new_tests_smoothed_per_thousand": 1.28, + "tests_per_case": 11.532, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 20253.0, + "new_cases": 376.0, + "new_cases_smoothed": 511.714, + "total_deaths": 1190.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 60.143, + "total_cases_per_million": 4101.628, + "new_cases_per_million": 76.147, + "new_cases_smoothed_per_million": 103.632, + "total_deaths_per_million": 240.998, + "new_deaths_per_million": 6.278, + "new_deaths_smoothed_per_million": 12.18, + "new_tests": 8218.0, + "total_tests": 169646.0, + "total_tests_per_thousand": 34.357, + "new_tests_per_thousand": 1.664, + "new_tests_smoothed": 6799.0, + "new_tests_smoothed_per_thousand": 1.377, + "tests_per_case": 13.287, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 20612.0, + "new_cases": 359.0, + "new_cases_smoothed": 429.286, + "total_deaths": 1232.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 62.571, + "total_cases_per_million": 4174.332, + "new_cases_per_million": 72.705, + "new_cases_smoothed_per_million": 86.939, + "total_deaths_per_million": 249.504, + "new_deaths_per_million": 8.506, + "new_deaths_smoothed_per_million": 12.672, + "new_tests": 7451.0, + "total_tests": 177097.0, + "total_tests_per_thousand": 35.866, + "new_tests_per_thousand": 1.509, + "new_tests_smoothed": 7066.0, + "new_tests_smoothed_per_thousand": 1.431, + "tests_per_case": 16.46, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 20833.0, + "new_cases": 221.0, + "new_cases_smoothed": 378.429, + "total_deaths": 1265.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 62.286, + "total_cases_per_million": 4219.089, + "new_cases_per_million": 44.757, + "new_cases_smoothed_per_million": 76.639, + "total_deaths_per_million": 256.187, + "new_deaths_per_million": 6.683, + "new_deaths_smoothed_per_million": 12.614, + "new_tests": 12076.0, + "total_tests": 189173.0, + "total_tests_per_thousand": 38.311, + "new_tests_per_thousand": 2.446, + "new_tests_smoothed": 7987.0, + "new_tests_smoothed_per_thousand": 1.618, + "tests_per_case": 21.105999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 21176.0, + "new_cases": 343.0, + "new_cases_smoothed": 373.571, + "total_deaths": 1265.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 4288.553, + "new_cases_per_million": 69.464, + "new_cases_smoothed_per_million": 75.656, + "total_deaths_per_million": 256.187, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.844, + "new_tests": 9799.0, + "total_tests": 198972.0, + "total_tests_per_thousand": 40.296, + "new_tests_per_thousand": 1.984, + "new_tests_smoothed": 8158.0, + "new_tests_smoothed_per_thousand": 1.652, + "tests_per_case": 21.838, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 21506.0, + "new_cases": 330.0, + "new_cases_smoothed": 320.571, + "total_deaths": 1303.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 4355.384, + "new_cases_per_million": 66.831, + "new_cases_smoothed_per_million": 64.922, + "total_deaths_per_million": 263.883, + "new_deaths_per_million": 7.696, + "new_deaths_smoothed_per_million": 6.249, + "new_tests": 8617.0, + "total_tests": 207589.0, + "total_tests_per_thousand": 42.041, + "new_tests_per_thousand": 1.745, + "new_tests_smoothed": 8661.0, + "new_tests_smoothed_per_thousand": 1.754, + "tests_per_case": 27.017, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-05", + "total_cases": 21722.0, + "new_cases": 216.0, + "new_cases_smoothed": 296.286, + "total_deaths": 1319.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 31.0, + "total_cases_per_million": 4399.129, + "new_cases_per_million": 43.744, + "new_cases_smoothed_per_million": 60.004, + "total_deaths_per_million": 267.123, + "new_deaths_per_million": 3.24, + "new_deaths_smoothed_per_million": 6.278, + "new_tests": 7512.0, + "total_tests": 215101.0, + "total_tests_per_thousand": 43.562, + "new_tests_per_thousand": 1.521, + "new_tests_smoothed": 8833.0, + "new_tests_smoothed_per_thousand": 1.789, + "tests_per_case": 29.811999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-06", + "total_cases": 21983.0, + "new_cases": 261.0, + "new_cases_smoothed": 300.857, + "total_deaths": 1339.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 4451.986, + "new_cases_per_million": 52.858, + "new_cases_smoothed_per_million": 60.929, + "total_deaths_per_million": 271.174, + "new_deaths_per_million": 4.05, + "new_deaths_smoothed_per_million": 5.208, + "new_tests": 7815.0, + "total_tests": 222916.0, + "total_tests_per_thousand": 45.145, + "new_tests_per_thousand": 1.583, + "new_tests_smoothed": 8784.0, + "new_tests_smoothed_per_thousand": 1.779, + "tests_per_case": 29.197, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-07", + "total_cases": 22248.0, + "new_cases": 265.0, + "new_cases_smoothed": 285.0, + "total_deaths": 1375.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 4505.654, + "new_cases_per_million": 53.668, + "new_cases_smoothed_per_million": 57.718, + "total_deaths_per_million": 278.464, + "new_deaths_per_million": 7.291, + "new_deaths_smoothed_per_million": 5.352, + "new_tests": 5703.0, + "total_tests": 228619.0, + "total_tests_per_thousand": 46.3, + "new_tests_per_thousand": 1.155, + "new_tests_smoothed": 8425.0, + "new_tests_smoothed_per_thousand": 1.706, + "tests_per_case": 29.561, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-08", + "total_cases": 22385.0, + "new_cases": 137.0, + "new_cases_smoothed": 253.286, + "total_deaths": 1403.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 4533.399, + "new_cases_per_million": 27.745, + "new_cases_smoothed_per_million": 51.295, + "total_deaths_per_million": 284.135, + "new_deaths_per_million": 5.671, + "new_deaths_smoothed_per_million": 4.947, + "new_tests": 4973.0, + "total_tests": 233592.0, + "total_tests_per_thousand": 47.307, + "new_tests_per_thousand": 1.007, + "new_tests_smoothed": 8071.0, + "new_tests_smoothed_per_thousand": 1.635, + "tests_per_case": 31.865, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-09", + "total_cases": 22541.0, + "new_cases": 156.0, + "new_cases_smoothed": 244.0, + "total_deaths": 1429.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 4564.992, + "new_cases_per_million": 31.593, + "new_cases_smoothed_per_million": 49.415, + "total_deaths_per_million": 289.4, + "new_deaths_per_million": 5.266, + "new_deaths_smoothed_per_million": 4.745, + "new_tests": 7657.0, + "total_tests": 241249.0, + "total_tests_per_thousand": 48.858, + "new_tests_per_thousand": 1.551, + "new_tests_smoothed": 7439.0, + "new_tests_smoothed_per_thousand": 1.507, + "tests_per_case": 30.488000000000003, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-10", + "total_cases": 22760.0, + "new_cases": 219.0, + "new_cases_smoothed": 226.286, + "total_deaths": 1446.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 25.857, + "total_cases_per_million": 4609.344, + "new_cases_per_million": 44.352, + "new_cases_smoothed_per_million": 45.827, + "total_deaths_per_million": 292.843, + "new_deaths_per_million": 3.443, + "new_deaths_smoothed_per_million": 5.237, + "new_tests": 6507.0, + "total_tests": 247756.0, + "total_tests_per_thousand": 50.175, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 6969.0, + "new_tests_smoothed_per_thousand": 1.411, + "tests_per_case": 30.796999999999997, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-11", + "total_cases": 22996.0, + "new_cases": 236.0, + "new_cases_smoothed": 212.857, + "total_deaths": 1458.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 4657.139, + "new_cases_per_million": 47.795, + "new_cases_smoothed_per_million": 43.108, + "total_deaths_per_million": 295.273, + "new_deaths_per_million": 2.43, + "new_deaths_smoothed_per_million": 4.484, + "new_tests": 5374.0, + "total_tests": 253130.0, + "total_tests_per_thousand": 51.264, + "new_tests_per_thousand": 1.088, + "new_tests_smoothed": 6506.0, + "new_tests_smoothed_per_thousand": 1.318, + "tests_per_case": 30.565, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-12", + "total_cases": 23135.0, + "new_cases": 139.0, + "new_cases_smoothed": 201.857, + "total_deaths": 1467.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 4685.289, + "new_cases_per_million": 28.15, + "new_cases_smoothed_per_million": 40.88, + "total_deaths_per_million": 297.096, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 4.282, + "new_tests": 6138.0, + "total_tests": 259268.0, + "total_tests_per_thousand": 52.507, + "new_tests_per_thousand": 1.243, + "new_tests_smoothed": 6310.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 31.26, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-13", + "total_cases": 23242.0, + "new_cases": 107.0, + "new_cases_smoothed": 179.857, + "total_deaths": 1488.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 4706.958, + "new_cases_per_million": 21.67, + "new_cases_smoothed_per_million": 36.425, + "total_deaths_per_million": 301.349, + "new_deaths_per_million": 4.253, + "new_deaths_smoothed_per_million": 4.311, + "new_tests": 4674.0, + "total_tests": 263942.0, + "total_tests_per_thousand": 53.453, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 5861.0, + "new_tests_smoothed_per_thousand": 1.187, + "tests_per_case": 32.586999999999996, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-14", + "total_cases": 23401.0, + "new_cases": 159.0, + "new_cases_smoothed": 164.714, + "total_deaths": 1497.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 4739.159, + "new_cases_per_million": 32.201, + "new_cases_smoothed_per_million": 33.358, + "total_deaths_per_million": 303.172, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 3.53, + "new_tests": 6210.0, + "total_tests": 270152.0, + "total_tests_per_thousand": 54.711, + "new_tests_per_thousand": 1.258, + "new_tests_smoothed": 5933.0, + "new_tests_smoothed_per_thousand": 1.202, + "tests_per_case": 36.02, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-15", + "total_cases": 23827.0, + "new_cases": 426.0, + "new_cases_smoothed": 206.0, + "total_deaths": 1506.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 4825.432, + "new_cases_per_million": 86.273, + "new_cases_smoothed_per_million": 41.719, + "total_deaths_per_million": 304.994, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 2.98, + "new_tests": 5699.0, + "total_tests": 275851.0, + "total_tests_per_thousand": 55.865, + "new_tests_per_thousand": 1.154, + "new_tests_smoothed": 6037.0, + "new_tests_smoothed_per_thousand": 1.223, + "tests_per_case": 29.305999999999997, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-16", + "total_cases": 23956.0, + "new_cases": 129.0, + "new_cases_smoothed": 202.143, + "total_deaths": 1518.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4851.557, + "new_cases_per_million": 26.125, + "new_cases_smoothed_per_million": 40.938, + "total_deaths_per_million": 307.425, + "new_deaths_per_million": 2.43, + "new_deaths_smoothed_per_million": 2.575, + "new_tests": 6334.0, + "total_tests": 282185.0, + "total_tests_per_thousand": 57.148, + "new_tests_per_thousand": 1.283, + "new_tests_smoothed": 5848.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 28.93, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-17", + "total_cases": 24048.0, + "new_cases": 92.0, + "new_cases_smoothed": 184.0, + "total_deaths": 1533.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 4870.189, + "new_cases_per_million": 18.632, + "new_cases_smoothed_per_million": 37.264, + "total_deaths_per_million": 310.462, + "new_deaths_per_million": 3.038, + "new_deaths_smoothed_per_million": 2.517, + "new_tests": 6449.0, + "total_tests": 288634.0, + "total_tests_per_thousand": 58.454, + "new_tests_per_thousand": 1.306, + "new_tests_smoothed": 5840.0, + "new_tests_smoothed_per_thousand": 1.183, + "tests_per_case": 31.739, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-18", + "total_cases": 24112.0, + "new_cases": 64.0, + "new_cases_smoothed": 159.429, + "total_deaths": 1543.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 4883.15, + "new_cases_per_million": 12.961, + "new_cases_smoothed_per_million": 32.287, + "total_deaths_per_million": 312.488, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.459, + "new_tests": 3964.0, + "total_tests": 292598.0, + "total_tests_per_thousand": 59.257, + "new_tests_per_thousand": 0.803, + "new_tests_smoothed": 5638.0, + "new_tests_smoothed_per_thousand": 1.142, + "tests_per_case": 35.364000000000004, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 24200.0, + "new_cases": 88.0, + "new_cases_smoothed": 152.143, + "total_deaths": 1547.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 4900.972, + "new_cases_per_million": 17.822, + "new_cases_smoothed_per_million": 30.812, + "total_deaths_per_million": 313.298, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 2.315, + "new_tests": 3278.0, + "total_tests": 295876.0, + "total_tests_per_thousand": 59.921, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 5230.0, + "new_tests_smoothed_per_thousand": 1.059, + "tests_per_case": 34.376, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 24251.0, + "new_cases": 51.0, + "new_cases_smoothed": 144.143, + "total_deaths": 1561.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 4911.301, + "new_cases_per_million": 10.328, + "new_cases_smoothed_per_million": 29.192, + "total_deaths_per_million": 316.133, + "new_deaths_per_million": 2.835, + "new_deaths_smoothed_per_million": 2.112, + "new_tests": 4764.0, + "total_tests": 300640.0, + "total_tests_per_thousand": 60.885, + "new_tests_per_thousand": 0.965, + "new_tests_smoothed": 5243.0, + "new_tests_smoothed_per_thousand": 1.062, + "tests_per_case": 36.374, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 24315.0, + "new_cases": 64.0, + "new_cases_smoothed": 130.571, + "total_deaths": 1571.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 4924.262, + "new_cases_per_million": 12.961, + "new_cases_smoothed_per_million": 26.443, + "total_deaths_per_million": 318.158, + "new_deaths_per_million": 2.025, + "new_deaths_smoothed_per_million": 2.141, + "new_tests": 5274.0, + "total_tests": 305914.0, + "total_tests_per_thousand": 61.954, + "new_tests_per_thousand": 1.068, + "new_tests_smoothed": 5109.0, + "new_tests_smoothed_per_thousand": 1.035, + "tests_per_case": 39.128, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 24391.0, + "new_cases": 76.0, + "new_cases_smoothed": 80.571, + "total_deaths": 1583.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 4939.653, + "new_cases_per_million": 15.391, + "new_cases_smoothed_per_million": 16.317, + "total_deaths_per_million": 320.588, + "new_deaths_per_million": 2.43, + "new_deaths_smoothed_per_million": 2.228, + "new_tests": 5373.0, + "total_tests": 311287.0, + "total_tests_per_thousand": 63.042, + "new_tests_per_thousand": 1.088, + "new_tests_smoothed": 5062.0, + "new_tests_smoothed_per_thousand": 1.025, + "tests_per_case": 62.826, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 24506.0, + "new_cases": 115.0, + "new_cases_smoothed": 78.571, + "total_deaths": 1592.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 4962.943, + "new_cases_per_million": 23.29, + "new_cases_smoothed_per_million": 15.912, + "total_deaths_per_million": 322.411, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 2.141, + "new_tests": 4276.0, + "total_tests": 315563.0, + "total_tests_per_thousand": 63.908, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 4768.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 60.684, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 24582.0, + "new_cases": 76.0, + "new_cases_smoothed": 76.286, + "total_deaths": 1604.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 4978.334, + "new_cases_per_million": 15.391, + "new_cases_smoothed_per_million": 15.449, + "total_deaths_per_million": 324.841, + "new_deaths_per_million": 2.43, + "new_deaths_smoothed_per_million": 2.054, + "new_tests": 3509.0, + "total_tests": 319072.0, + "total_tests_per_thousand": 64.618, + "new_tests_per_thousand": 0.711, + "new_tests_smoothed": 4348.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 56.996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 24639.0, + "new_cases": 57.0, + "new_cases_smoothed": 75.286, + "total_deaths": 1606.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 4989.878, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 15.247, + "total_deaths_per_million": 325.246, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 1.823, + "new_tests": 3529.0, + "total_tests": 322601.0, + "total_tests_per_thousand": 65.333, + "new_tests_per_thousand": 0.715, + "new_tests_smoothed": 4286.0, + "new_tests_smoothed_per_thousand": 0.868, + "tests_per_case": 56.93, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-26", + "total_cases": 24698.0, + "new_cases": 59.0, + "new_cases_smoothed": 71.143, + "total_deaths": 1606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 5001.827, + "new_cases_per_million": 11.949, + "new_cases_smoothed_per_million": 14.408, + "total_deaths_per_million": 325.246, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.707, + "new_tests": 3515.0, + "total_tests": 326116.0, + "total_tests_per_thousand": 66.045, + "new_tests_per_thousand": 0.712, + "new_tests_smoothed": 4320.0, + "new_tests_smoothed_per_thousand": 0.875, + "tests_per_case": 60.723, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-27", + "total_cases": 24735.0, + "new_cases": 37.0, + "new_cases_smoothed": 69.143, + "total_deaths": 1615.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 5009.32, + "new_cases_per_million": 7.493, + "new_cases_smoothed_per_million": 14.003, + "total_deaths_per_million": 327.069, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 1.562, + "new_tests": 3437.0, + "total_tests": 329553.0, + "total_tests_per_thousand": 66.741, + "new_tests_per_thousand": 0.696, + "new_tests_smoothed": 4130.0, + "new_tests_smoothed_per_thousand": 0.836, + "tests_per_case": 59.731, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-28", + "total_cases": 24803.0, + "new_cases": 68.0, + "new_cases_smoothed": 69.714, + "total_deaths": 1631.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 5023.091, + "new_cases_per_million": 13.771, + "new_cases_smoothed_per_million": 14.119, + "total_deaths_per_million": 330.309, + "new_deaths_per_million": 3.24, + "new_deaths_smoothed_per_million": 1.736, + "new_tests": 3811.0, + "total_tests": 333364.0, + "total_tests_per_thousand": 67.513, + "new_tests_per_thousand": 0.772, + "new_tests_smoothed": 3921.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 56.244, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-29", + "total_cases": 24841.0, + "new_cases": 38.0, + "new_cases_smoothed": 64.286, + "total_deaths": 1639.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 5030.787, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 13.019, + "total_deaths_per_million": 331.929, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 1.62, + "new_tests": 4364.0, + "total_tests": 337728.0, + "total_tests_per_thousand": 68.397, + "new_tests_per_thousand": 0.884, + "new_tests_smoothed": 3777.0, + "new_tests_smoothed_per_thousand": 0.765, + "tests_per_case": 58.753, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-30", + "total_cases": 24876.0, + "new_cases": 35.0, + "new_cases_smoothed": 52.857, + "total_deaths": 1645.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 5037.875, + "new_cases_per_million": 7.088, + "new_cases_smoothed_per_million": 10.705, + "total_deaths_per_million": 333.145, + "new_deaths_per_million": 1.215, + "new_deaths_smoothed_per_million": 1.533, + "new_tests": 3423.0, + "total_tests": 341151.0, + "total_tests_per_thousand": 69.09, + "new_tests_per_thousand": 0.693, + "new_tests_smoothed": 3655.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 69.149, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-31", + "total_cases": 24929.0, + "new_cases": 53.0, + "new_cases_smoothed": 49.571, + "total_deaths": 1650.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 5048.609, + "new_cases_per_million": 10.734, + "new_cases_smoothed_per_million": 10.039, + "total_deaths_per_million": 334.157, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 1.331, + "new_tests": 3474.0, + "total_tests": 344625.0, + "total_tests_per_thousand": 69.793, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 3650.0, + "new_tests_smoothed_per_thousand": 0.739, + "tests_per_case": 73.631, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-01", + "total_cases": 24990.0, + "new_cases": 61.0, + "new_cases_smoothed": 50.143, + "total_deaths": 1650.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 5060.962, + "new_cases_per_million": 12.354, + "new_cases_smoothed_per_million": 10.155, + "total_deaths_per_million": 334.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.273, + "new_tests": 2285.0, + "total_tests": 346910.0, + "total_tests_per_thousand": 70.256, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 3473.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 69.262, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-02", + "total_cases": 25062.0, + "new_cases": 72.0, + "new_cases_smoothed": 52.0, + "total_deaths": 1650.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 5075.544, + "new_cases_per_million": 14.581, + "new_cases_smoothed_per_million": 10.531, + "total_deaths_per_million": 334.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.273, + "new_tests": 1827.0, + "total_tests": 348737.0, + "total_tests_per_thousand": 70.626, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 3232.0, + "new_tests_smoothed_per_thousand": 0.655, + "tests_per_case": 62.153999999999996, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-03", + "total_cases": 25066.0, + "new_cases": 4.0, + "new_cases_smoothed": 47.286, + "total_deaths": 1658.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 5076.354, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 335.777, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 1.244, + "new_tests": 2486.0, + "total_tests": 351223.0, + "total_tests_per_thousand": 71.13, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 65.47399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-04", + "total_cases": 25111.0, + "new_cases": 45.0, + "new_cases_smoothed": 44.0, + "total_deaths": 1659.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5085.467, + "new_cases_per_million": 9.113, + "new_cases_smoothed_per_million": 8.911, + "total_deaths_per_million": 335.98, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.81, + "new_tests": 3099.0, + "total_tests": 354322.0, + "total_tests_per_thousand": 71.757, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 2994.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 68.045, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-05", + "total_cases": 25142.0, + "new_cases": 31.0, + "new_cases_smoothed": 43.0, + "total_deaths": 1664.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5091.745, + "new_cases_per_million": 6.278, + "new_cases_smoothed_per_million": 8.708, + "total_deaths_per_million": 336.992, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 0.723, + "new_tests": 3234.0, + "total_tests": 357556.0, + "total_tests_per_thousand": 72.412, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 2833.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 65.884, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 25163.0, + "new_cases": 21.0, + "new_cases_smoothed": 41.0, + "total_deaths": 1670.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5095.998, + "new_cases_per_million": 4.253, + "new_cases_smoothed_per_million": 8.303, + "total_deaths_per_million": 338.208, + "new_deaths_per_million": 1.215, + "new_deaths_smoothed_per_million": 0.723, + "new_tests": 3106.0, + "total_tests": 360662.0, + "total_tests_per_thousand": 73.041, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 2787.0, + "new_tests_smoothed_per_thousand": 0.564, + "tests_per_case": 67.976, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 25183.0, + "new_cases": 20.0, + "new_cases_smoothed": 36.286, + "total_deaths": 1670.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5100.049, + "new_cases_per_million": 4.05, + "new_cases_smoothed_per_million": 7.349, + "total_deaths_per_million": 338.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 2828.0, + "total_tests": 363490.0, + "total_tests_per_thousand": 73.614, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 2695.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 74.27199999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 25201.0, + "new_cases": 18.0, + "new_cases_smoothed": 30.143, + "total_deaths": 1679.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5103.694, + "new_cases_per_million": 3.645, + "new_cases_smoothed_per_million": 6.105, + "total_deaths_per_million": 340.03, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 1960.0, + "total_tests": 365450.0, + "total_tests_per_thousand": 74.011, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 2649.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 87.882, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 25207.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.714, + "total_deaths": 1683.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5104.909, + "new_cases_per_million": 1.215, + "new_cases_smoothed_per_million": 4.195, + "total_deaths_per_million": 340.84, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.955, + "new_tests": 2355.0, + "total_tests": 367805.0, + "total_tests_per_thousand": 74.488, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 2724.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 131.503, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 25215.0, + "new_cases": 8.0, + "new_cases_smoothed": 21.286, + "total_deaths": 1691.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5106.529, + "new_cases_per_million": 1.62, + "new_cases_smoothed_per_million": 4.311, + "total_deaths_per_million": 342.46, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 0.955, + "new_tests": 2492.0, + "total_tests": 370297.0, + "total_tests_per_thousand": 74.992, + "new_tests_per_thousand": 0.505, + "new_tests_smoothed": 2725.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 128.02, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 25231.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.143, + "total_deaths": 1695.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5109.77, + "new_cases_per_million": 3.24, + "new_cases_smoothed_per_million": 3.472, + "total_deaths_per_million": 343.271, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 1.042, + "new_tests": 4240.0, + "total_tests": 374537.0, + "total_tests_per_thousand": 75.851, + "new_tests_per_thousand": 0.859, + "new_tests_smoothed": 2888.0, + "new_tests_smoothed_per_thousand": 0.585, + "tests_per_case": 168.467, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-12", + "total_cases": 25238.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.714, + "total_deaths": 1703.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 5111.187, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 344.891, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 1.128, + "new_tests": 3009.0, + "total_tests": 377546.0, + "total_tests_per_thousand": 76.46, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 2856.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 208.25, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-13", + "total_cases": 25250.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.429, + "total_deaths": 1705.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 5113.617, + "new_cases_per_million": 2.43, + "new_cases_smoothed_per_million": 2.517, + "total_deaths_per_million": 345.296, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 1.013, + "new_tests": 2712.0, + "total_tests": 380258.0, + "total_tests_per_thousand": 77.01, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 2799.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 225.207, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-14", + "total_cases": 25295.0, + "new_cases": 45.0, + "new_cases_smoothed": 16.0, + "total_deaths": 1705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 5122.731, + "new_cases_per_million": 9.113, + "new_cases_smoothed_per_million": 3.24, + "total_deaths_per_million": 345.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.013, + "new_tests": 2512.0, + "total_tests": 382770.0, + "total_tests_per_thousand": 77.518, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 2754.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 172.125, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-15", + "total_cases": 25303.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.571, + "total_deaths": 1706.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 5124.351, + "new_cases_per_million": 1.62, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 345.498, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.781, + "new_tests": 1714.0, + "total_tests": 384484.0, + "total_tests_per_thousand": 77.866, + "new_tests_per_thousand": 0.347, + "new_tests_smoothed": 2719.0, + "new_tests_smoothed_per_thousand": 0.551, + "tests_per_case": 186.59799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 25321.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.286, + "total_deaths": 1706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5127.996, + "new_cases_per_million": 3.645, + "new_cases_smoothed_per_million": 3.298, + "total_deaths_per_million": 345.498, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.665, + "new_tests": 2112.0, + "total_tests": 386596.0, + "total_tests_per_thousand": 78.293, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 2684.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 164.80700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 25334.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.0, + "total_deaths": 1709.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5130.629, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 3.443, + "total_deaths_per_million": 346.106, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.521, + "new_tests": 3420.0, + "total_tests": 390016.0, + "total_tests_per_thousand": 78.986, + "new_tests_per_thousand": 0.693, + "new_tests_smoothed": 2817.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 165.706, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "total_cases": 25341.0, + "new_cases": 7.0, + "new_cases_smoothed": 15.714, + "total_deaths": 1710.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5132.047, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 3.182, + "total_deaths_per_million": 346.308, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.434, + "new_tests": 3359.0, + "total_tests": 393375.0, + "total_tests_per_thousand": 79.666, + "new_tests_per_thousand": 0.68, + "new_tests_smoothed": 2691.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 171.245, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 25355.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.714, + "total_deaths": 1714.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5134.882, + "new_cases_per_million": 2.835, + "new_cases_smoothed_per_million": 3.385, + "total_deaths_per_million": 347.118, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 3161.0, + "total_tests": 396536.0, + "total_tests_per_thousand": 80.306, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 2713.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 162.316, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 25368.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.857, + "total_deaths": 1714.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5137.515, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 3.414, + "total_deaths_per_million": 347.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 2724.0, + "total_tests": 399260.0, + "total_tests_per_thousand": 80.858, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 2715.0, + "new_tests_smoothed_per_thousand": 0.55, + "tests_per_case": 161.059, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 25374.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1715.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5138.73, + "new_cases_per_million": 1.215, + "new_cases_smoothed_per_million": 2.286, + "total_deaths_per_million": 347.321, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 2159.0, + "total_tests": 401419.0, + "total_tests_per_thousand": 81.295, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 2664.0, + "new_tests_smoothed_per_thousand": 0.54, + "tests_per_case": 236.051, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 25379.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.857, + "total_deaths": 1715.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5139.743, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 2.199, + "total_deaths_per_million": 347.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 1498.0, + "total_tests": 402917.0, + "total_tests_per_thousand": 81.599, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 2633.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 242.513, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-23", + "total_cases": 25383.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1717.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5140.553, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 1.794, + "total_deaths_per_million": 347.726, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 2116.0, + "total_tests": 405033.0, + "total_tests_per_thousand": 82.027, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 2634.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 297.387, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-24", + "total_cases": 25391.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1720.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5142.173, + "new_cases_per_million": 1.62, + "new_cases_smoothed_per_million": 1.649, + "total_deaths_per_million": 348.334, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 3252.0, + "total_tests": 408285.0, + "total_tests_per_thousand": 82.686, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 2610.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 320.526, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-25", + "total_cases": 25396.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.857, + "total_deaths": 1726.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5143.185, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 349.549, + "new_deaths_per_million": 1.215, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 2983.0, + "total_tests": 411268.0, + "total_tests_per_thousand": 83.29, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 2556.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 325.309, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-26", + "total_cases": 25405.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.143, + "total_deaths": 1727.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5145.008, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.447, + "total_deaths_per_million": 349.751, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 3689.0, + "total_tests": 414957.0, + "total_tests_per_thousand": 84.037, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 2632.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 368.48, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-27", + "total_cases": 25414.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 1730.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5146.831, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.331, + "total_deaths_per_million": 350.359, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 4007.0, + "total_tests": 418964.0, + "total_tests_per_thousand": 84.848, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 2815.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 428.37, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-28", + "total_cases": 25437.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.0, + "total_deaths": 1734.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5151.489, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 351.169, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 2724.0, + "total_tests": 421688.0, + "total_tests_per_thousand": 85.4, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 2896.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 321.778, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-29", + "total_cases": 25439.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1735.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5151.894, + "new_cases_per_million": 0.405, + "new_cases_smoothed_per_million": 1.736, + "total_deaths_per_million": 351.371, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 3340.0, + "total_tests": 425028.0, + "total_tests_per_thousand": 86.076, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 3159.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 368.55, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-06-30", + "total_cases": 25462.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1735.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5156.552, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 2.286, + "total_deaths_per_million": 351.371, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.521, + "new_tests": 4591.0, + "total_tests": 429619.0, + "total_tests_per_thousand": 87.006, + "new_tests_per_thousand": 0.93, + "new_tests_smoothed": 3512.0, + "new_tests_smoothed_per_thousand": 0.711, + "tests_per_case": 311.19, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-01", + "total_cases": 25473.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.714, + "total_deaths": 1736.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5158.779, + "new_cases_per_million": 2.228, + "new_cases_smoothed_per_million": 2.372, + "total_deaths_per_million": 351.574, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 4551.0, + "total_tests": 434170.0, + "total_tests_per_thousand": 87.928, + "new_tests_per_thousand": 0.922, + "new_tests_smoothed": 3698.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 315.683, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-02", + "total_cases": 25477.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.571, + "total_deaths": 1738.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5159.589, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 2.343, + "total_deaths_per_million": 351.979, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 3792.0, + "total_tests": 437962.0, + "total_tests_per_thousand": 88.696, + "new_tests_per_thousand": 0.768, + "new_tests_smoothed": 3813.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 329.519, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-03", + "total_cases": 25489.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.0, + "total_deaths": 1738.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5162.02, + "new_cases_per_million": 2.43, + "new_cases_smoothed_per_million": 2.43, + "total_deaths_per_million": 351.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 8049.0, + "total_tests": 446011.0, + "total_tests_per_thousand": 90.326, + "new_tests_per_thousand": 1.63, + "new_tests_smoothed": 4436.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 369.667, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-04", + "total_cases": 25498.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.0, + "total_deaths": 1740.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5163.842, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 2.43, + "total_deaths_per_million": 352.384, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 8312.0, + "total_tests": 454323.0, + "total_tests_per_thousand": 92.009, + "new_tests_per_thousand": 1.683, + "new_tests_smoothed": 5051.0, + "new_tests_smoothed_per_thousand": 1.023, + "tests_per_case": 420.917, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-05", + "total_cases": 25509.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.286, + "total_deaths": 1741.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5166.07, + "new_cases_per_million": 2.228, + "new_cases_smoothed_per_million": 2.083, + "total_deaths_per_million": 352.586, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 7000.0, + "total_tests": 461323.0, + "total_tests_per_thousand": 93.427, + "new_tests_per_thousand": 1.418, + "new_tests_smoothed": 5662.0, + "new_tests_smoothed_per_thousand": 1.147, + "tests_per_case": 550.472, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-06", + "total_cases": 25527.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 1741.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5169.715, + "new_cases_per_million": 3.645, + "new_cases_smoothed_per_million": 2.546, + "total_deaths_per_million": 352.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 6529.0, + "total_tests": 467852.0, + "total_tests_per_thousand": 94.749, + "new_tests_per_thousand": 1.322, + "new_tests_smoothed": 6118.0, + "new_tests_smoothed_per_thousand": 1.239, + "tests_per_case": 486.659, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-07", + "total_cases": 25531.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.857, + "total_deaths": 1741.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5170.525, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 1.996, + "total_deaths_per_million": 352.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 6161.0, + "total_tests": 474013.0, + "total_tests_per_thousand": 95.997, + "new_tests_per_thousand": 1.248, + "new_tests_smoothed": 6342.0, + "new_tests_smoothed_per_thousand": 1.284, + "tests_per_case": 643.391, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-08", + "total_cases": 25538.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 1743.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5171.943, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 1.881, + "total_deaths_per_million": 352.991, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 4361.0, + "total_tests": 478374.0, + "total_tests_per_thousand": 96.88, + "new_tests_per_thousand": 0.883, + "new_tests_smoothed": 6315.0, + "new_tests_smoothed_per_thousand": 1.279, + "tests_per_case": 680.077, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-09", + "total_cases": 25542.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.286, + "total_deaths": 1743.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5172.753, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 1.881, + "total_deaths_per_million": 352.991, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 3945.0, + "total_tests": 482319.0, + "total_tests_per_thousand": 97.679, + "new_tests_per_thousand": 0.799, + "new_tests_smoothed": 6337.0, + "new_tests_smoothed_per_thousand": 1.283, + "tests_per_case": 682.446, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-10", + "total_cases": 25565.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.857, + "total_deaths": 1743.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5177.411, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 2.199, + "total_deaths_per_million": 352.991, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 9330.0, + "total_tests": 491649.0, + "total_tests_per_thousand": 99.569, + "new_tests_per_thousand": 1.89, + "new_tests_smoothed": 6520.0, + "new_tests_smoothed_per_thousand": 1.32, + "tests_per_case": 600.526, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-11", + "total_cases": 25589.0, + "new_cases": 24.0, + "new_cases_smoothed": 13.0, + "total_deaths": 1744.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5182.272, + "new_cases_per_million": 4.86, + "new_cases_smoothed_per_million": 2.633, + "total_deaths_per_million": 353.194, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 8929.0, + "total_tests": 500578.0, + "total_tests_per_thousand": 101.377, + "new_tests_per_thousand": 1.808, + "new_tests_smoothed": 6608.0, + "new_tests_smoothed_per_thousand": 1.338, + "tests_per_case": 508.30800000000005, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-12", + "total_cases": 25611.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.571, + "total_deaths": 1746.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5186.727, + "new_cases_per_million": 4.455, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 353.599, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 8717.0, + "total_tests": 509295.0, + "total_tests_per_thousand": 103.142, + "new_tests_per_thousand": 1.765, + "new_tests_smoothed": 6853.0, + "new_tests_smoothed_per_thousand": 1.388, + "tests_per_case": 470.30400000000003, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-13", + "total_cases": 25628.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.429, + "total_deaths": 1746.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5190.17, + "new_cases_per_million": 3.443, + "new_cases_smoothed_per_million": 2.922, + "total_deaths_per_million": 353.599, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 7664.0, + "total_tests": 516959.0, + "total_tests_per_thousand": 104.694, + "new_tests_per_thousand": 1.552, + "new_tests_smoothed": 7015.0, + "new_tests_smoothed_per_thousand": 1.421, + "tests_per_case": 486.18800000000005, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-14", + "total_cases": 25638.0, + "new_cases": 10.0, + "new_cases_smoothed": 15.286, + "total_deaths": 1746.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5192.195, + "new_cases_per_million": 2.025, + "new_cases_smoothed_per_million": 3.096, + "total_deaths_per_million": 353.599, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 6400.0, + "total_tests": 523359.0, + "total_tests_per_thousand": 105.99, + "new_tests_per_thousand": 1.296, + "new_tests_smoothed": 7049.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 461.15, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-15", + "total_cases": 25670.0, + "new_cases": 32.0, + "new_cases_smoothed": 18.857, + "total_deaths": 1746.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5198.676, + "new_cases_per_million": 6.481, + "new_cases_smoothed_per_million": 3.819, + "total_deaths_per_million": 353.599, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 4387.0, + "total_tests": 527746.0, + "total_tests_per_thousand": 106.879, + "new_tests_per_thousand": 0.888, + "new_tests_smoothed": 7053.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 374.023, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-16", + "total_cases": 25683.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.143, + "total_deaths": 1748.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5201.308, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 4.079, + "total_deaths_per_million": 354.004, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 4316.0, + "total_tests": 532062.0, + "total_tests_per_thousand": 107.753, + "new_tests_per_thousand": 0.874, + "new_tests_smoothed": 7106.0, + "new_tests_smoothed_per_thousand": 1.439, + "tests_per_case": 352.78, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-17", + "total_cases": 25698.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.0, + "total_deaths": 1749.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5204.346, + "new_cases_per_million": 3.038, + "new_cases_smoothed_per_million": 3.848, + "total_deaths_per_million": 354.207, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 9512.0, + "total_tests": 541574.0, + "total_tests_per_thousand": 109.679, + "new_tests_per_thousand": 1.926, + "new_tests_smoothed": 7132.0, + "new_tests_smoothed_per_thousand": 1.444, + "tests_per_case": 375.36800000000005, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-18", + "total_cases": 25730.0, + "new_cases": 32.0, + "new_cases_smoothed": 20.143, + "total_deaths": 1752.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5210.827, + "new_cases_per_million": 6.481, + "new_cases_smoothed_per_million": 4.079, + "total_deaths_per_million": 354.814, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 9243.0, + "total_tests": 550817.0, + "total_tests_per_thousand": 111.551, + "new_tests_per_thousand": 1.872, + "new_tests_smoothed": 7177.0, + "new_tests_smoothed_per_thousand": 1.453, + "tests_per_case": 356.305, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-19", + "total_cases": 25750.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.857, + "total_deaths": 1753.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5214.877, + "new_cases_per_million": 4.05, + "new_cases_smoothed_per_million": 4.021, + "total_deaths_per_million": 355.017, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 8630.0, + "total_tests": 559447.0, + "total_tests_per_thousand": 113.299, + "new_tests_per_thousand": 1.748, + "new_tests_smoothed": 7165.0, + "new_tests_smoothed_per_thousand": 1.451, + "tests_per_case": 360.827, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-20", + "total_cases": 25760.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.857, + "total_deaths": 1753.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5216.902, + "new_cases_per_million": 2.025, + "new_cases_smoothed_per_million": 3.819, + "total_deaths_per_million": 355.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 8415.0, + "total_tests": 567862.0, + "total_tests_per_thousand": 115.003, + "new_tests_per_thousand": 1.704, + "new_tests_smoothed": 7272.0, + "new_tests_smoothed_per_thousand": 1.473, + "tests_per_case": 385.63599999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-21", + "total_cases": 25766.0, + "new_cases": 6.0, + "new_cases_smoothed": 18.286, + "total_deaths": 1753.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5218.118, + "new_cases_per_million": 1.215, + "new_cases_smoothed_per_million": 3.703, + "total_deaths_per_million": 355.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 6674.0, + "total_tests": 574536.0, + "total_tests_per_thousand": 116.355, + "new_tests_per_thousand": 1.352, + "new_tests_smoothed": 7311.0, + "new_tests_smoothed_per_thousand": 1.481, + "tests_per_case": 399.82, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-22", + "total_cases": 25802.0, + "new_cases": 36.0, + "new_cases_smoothed": 18.857, + "total_deaths": 1753.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5225.408, + "new_cases_per_million": 7.291, + "new_cases_smoothed_per_million": 3.819, + "total_deaths_per_million": 355.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 4619.0, + "total_tests": 579155.0, + "total_tests_per_thousand": 117.29, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 7344.0, + "new_tests_smoothed_per_thousand": 1.487, + "tests_per_case": 389.455, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-23", + "total_cases": 25819.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.429, + "total_deaths": 1754.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5228.851, + "new_cases_per_million": 3.443, + "new_cases_smoothed_per_million": 3.935, + "total_deaths_per_million": 355.219, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 4067.0, + "total_tests": 583222.0, + "total_tests_per_thousand": 118.114, + "new_tests_per_thousand": 0.824, + "new_tests_smoothed": 7309.0, + "new_tests_smoothed_per_thousand": 1.48, + "tests_per_case": 376.199, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-24", + "total_cases": 25826.0, + "new_cases": 7.0, + "new_cases_smoothed": 18.286, + "total_deaths": 1763.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5230.269, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 3.703, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 0.405, + "new_tests": 8980.0, + "total_tests": 592202.0, + "total_tests_per_thousand": 119.932, + "new_tests_per_thousand": 1.819, + "new_tests_smoothed": 7233.0, + "new_tests_smoothed_per_thousand": 1.465, + "tests_per_case": 395.555, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-25", + "total_cases": 25845.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.429, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5234.117, + "new_cases_per_million": 3.848, + "new_cases_smoothed_per_million": 3.327, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 8888.0, + "total_tests": 601090.0, + "total_tests_per_thousand": 121.732, + "new_tests_per_thousand": 1.8, + "new_tests_smoothed": 7182.0, + "new_tests_smoothed_per_thousand": 1.454, + "tests_per_case": 437.165, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-26", + "total_cases": 25869.0, + "new_cases": 24.0, + "new_cases_smoothed": 17.0, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5238.977, + "new_cases_per_million": 4.86, + "new_cases_smoothed_per_million": 3.443, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 8016.0, + "total_tests": 609106.0, + "total_tests_per_thousand": 123.356, + "new_tests_per_thousand": 1.623, + "new_tests_smoothed": 7094.0, + "new_tests_smoothed_per_thousand": 1.437, + "tests_per_case": 417.29400000000004, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-27", + "total_cases": 25881.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.286, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5241.407, + "new_cases_per_million": 2.43, + "new_cases_smoothed_per_million": 3.501, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 5804.0, + "total_tests": 614910.0, + "total_tests_per_thousand": 124.531, + "new_tests_per_thousand": 1.175, + "new_tests_smoothed": 6721.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 388.81800000000004, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-28", + "total_cases": 25892.0, + "new_cases": 11.0, + "new_cases_smoothed": 18.0, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5243.635, + "new_cases_per_million": 2.228, + "new_cases_smoothed_per_million": 3.645, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 4965.0, + "total_tests": 619875.0, + "total_tests_per_thousand": 125.537, + "new_tests_per_thousand": 1.006, + "new_tests_smoothed": 6477.0, + "new_tests_smoothed_per_thousand": 1.312, + "tests_per_case": 359.833, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-29", + "total_cases": 25929.0, + "new_cases": 37.0, + "new_cases_smoothed": 18.143, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5251.128, + "new_cases_per_million": 7.493, + "new_cases_smoothed_per_million": 3.674, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 4740.0, + "total_tests": 624615.0, + "total_tests_per_thousand": 126.497, + "new_tests_per_thousand": 0.96, + "new_tests_smoothed": 6494.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 357.93699999999995, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-30", + "total_cases": 25942.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.571, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5253.761, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 3.559, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 4383.0, + "total_tests": 628998.0, + "total_tests_per_thousand": 127.384, + "new_tests_per_thousand": 0.888, + "new_tests_smoothed": 6539.0, + "new_tests_smoothed_per_thousand": 1.324, + "tests_per_case": 372.13800000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-07-31", + "total_cases": 26027.0, + "new_cases": 85.0, + "new_cases_smoothed": 28.714, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5270.975, + "new_cases_per_million": 17.214, + "new_cases_smoothed_per_million": 5.815, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3856.0, + "total_tests": 632854.0, + "total_tests_per_thousand": 128.165, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 5807.0, + "new_tests_smoothed_per_thousand": 1.176, + "tests_per_case": 202.234, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-01", + "total_cases": 26065.0, + "new_cases": 38.0, + "new_cases_smoothed": 31.429, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5278.671, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 6.365, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3306.0, + "total_tests": 636160.0, + "total_tests_per_thousand": 128.835, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 5010.0, + "new_tests_smoothed_per_thousand": 1.015, + "tests_per_case": 159.409, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-02", + "total_cases": 26109.0, + "new_cases": 44.0, + "new_cases_smoothed": 34.286, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5287.582, + "new_cases_per_million": 8.911, + "new_cases_smoothed_per_million": 6.944, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3131.0, + "total_tests": 639291.0, + "total_tests_per_thousand": 129.469, + "new_tests_per_thousand": 0.634, + "new_tests_smoothed": 4312.0, + "new_tests_smoothed_per_thousand": 0.873, + "tests_per_case": 125.76700000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-03", + "total_cases": 26162.0, + "new_cases": 53.0, + "new_cases_smoothed": 40.143, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5298.315, + "new_cases_per_million": 10.734, + "new_cases_smoothed_per_million": 8.13, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3041.0, + "total_tests": 642332.0, + "total_tests_per_thousand": 130.085, + "new_tests_per_thousand": 0.616, + "new_tests_smoothed": 3917.0, + "new_tests_smoothed_per_thousand": 0.793, + "tests_per_case": 97.57700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-04", + "total_cases": 26208.0, + "new_cases": 46.0, + "new_cases_smoothed": 45.143, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5307.631, + "new_cases_per_million": 9.316, + "new_cases_smoothed_per_million": 9.142, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1991.0, + "total_tests": 644323.0, + "total_tests_per_thousand": 130.488, + "new_tests_per_thousand": 0.403, + "new_tests_smoothed": 3493.0, + "new_tests_smoothed_per_thousand": 0.707, + "tests_per_case": 77.377, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-05", + "total_cases": 26253.0, + "new_cases": 45.0, + "new_cases_smoothed": 46.286, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5316.745, + "new_cases_per_million": 9.113, + "new_cases_smoothed_per_million": 9.374, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3761.0, + "total_tests": 648084.0, + "total_tests_per_thousand": 131.25, + "new_tests_per_thousand": 0.762, + "new_tests_smoothed": 3353.0, + "new_tests_smoothed_per_thousand": 0.679, + "tests_per_case": 72.441, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-06", + "total_cases": 26303.0, + "new_cases": 50.0, + "new_cases_smoothed": 51.571, + "total_deaths": 1763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5326.871, + "new_cases_per_million": 10.126, + "new_cases_smoothed_per_million": 10.444, + "total_deaths_per_million": 357.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4833.0, + "total_tests": 652917.0, + "total_tests_per_thousand": 132.228, + "new_tests_per_thousand": 0.979, + "new_tests_smoothed": 3417.0, + "new_tests_smoothed_per_thousand": 0.692, + "tests_per_case": 66.258, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-07", + "total_cases": 26372.0, + "new_cases": 69.0, + "new_cases_smoothed": 49.286, + "total_deaths": 1768.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5340.844, + "new_cases_per_million": 13.974, + "new_cases_smoothed_per_million": 9.981, + "total_deaths_per_million": 358.054, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 4980.0, + "total_tests": 657897.0, + "total_tests_per_thousand": 133.237, + "new_tests_per_thousand": 1.009, + "new_tests_smoothed": 3578.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 72.597, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-08-08", + "total_cases": 26470.0, + "new_cases": 98.0, + "new_cases_smoothed": 57.857, + "total_deaths": 1772.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5360.691, + "new_cases_per_million": 19.847, + "new_cases_smoothed_per_million": 11.717, + "total_deaths_per_million": 358.865, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 4880.0, + "total_tests": 662777.0, + "total_tests_per_thousand": 134.225, + "new_tests_per_thousand": 0.988, + "new_tests_smoothed": 3802.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 65.714, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-09", + "total_cases": 26644.0, + "new_cases": 174.0, + "new_cases_smoothed": 76.429, + "total_deaths": 1772.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5395.93, + "new_cases_per_million": 35.238, + "new_cases_smoothed_per_million": 15.478, + "total_deaths_per_million": 358.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 4107.0, + "total_tests": 666884.0, + "total_tests_per_thousand": 135.057, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 3942.0, + "new_tests_smoothed_per_thousand": 0.798, + "tests_per_case": 51.578, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-10", + "total_cases": 26712.0, + "new_cases": 68.0, + "new_cases_smoothed": 78.571, + "total_deaths": 1772.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5409.701, + "new_cases_per_million": 13.771, + "new_cases_smoothed_per_million": 15.912, + "total_deaths_per_million": 358.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 3874.0, + "total_tests": 670758.0, + "total_tests_per_thousand": 135.842, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 4061.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 51.685, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-11", + "total_cases": 26768.0, + "new_cases": 56.0, + "new_cases_smoothed": 80.0, + "total_deaths": 1772.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5421.042, + "new_cases_per_million": 11.341, + "new_cases_smoothed_per_million": 16.202, + "total_deaths_per_million": 358.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 4026.0, + "total_tests": 674784.0, + "total_tests_per_thousand": 136.657, + "new_tests_per_thousand": 0.815, + "new_tests_smoothed": 4352.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 54.4, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-12", + "total_cases": 26801.0, + "new_cases": 33.0, + "new_cases_smoothed": 78.286, + "total_deaths": 1773.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5427.725, + "new_cases_per_million": 6.683, + "new_cases_smoothed_per_million": 15.854, + "total_deaths_per_million": 359.067, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 5843.0, + "total_tests": 680627.0, + "total_tests_per_thousand": 137.84, + "new_tests_per_thousand": 1.183, + "new_tests_smoothed": 4649.0, + "new_tests_smoothed_per_thousand": 0.942, + "tests_per_case": 59.385, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-13", + "total_cases": 26838.0, + "new_cases": 37.0, + "new_cases_smoothed": 76.429, + "total_deaths": 1774.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5435.218, + "new_cases_per_million": 7.493, + "new_cases_smoothed_per_million": 15.478, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 7072.0, + "total_tests": 687699.0, + "total_tests_per_thousand": 139.272, + "new_tests_per_thousand": 1.432, + "new_tests_smoothed": 4969.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 65.015, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-14", + "total_cases": 26929.0, + "new_cases": 91.0, + "new_cases_smoothed": 79.571, + "total_deaths": 1774.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5453.648, + "new_cases_per_million": 18.429, + "new_cases_smoothed_per_million": 16.115, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 11337.0, + "total_tests": 699036.0, + "total_tests_per_thousand": 141.568, + "new_tests_per_thousand": 2.296, + "new_tests_smoothed": 5877.0, + "new_tests_smoothed_per_thousand": 1.19, + "tests_per_case": 73.858, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-15", + "total_cases": 26995.0, + "new_cases": 66.0, + "new_cases_smoothed": 75.0, + "total_deaths": 1774.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5467.014, + "new_cases_per_million": 13.366, + "new_cases_smoothed_per_million": 15.189, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 10653.0, + "total_tests": 709689.0, + "total_tests_per_thousand": 143.726, + "new_tests_per_thousand": 2.157, + "new_tests_smoothed": 6702.0, + "new_tests_smoothed_per_thousand": 1.357, + "tests_per_case": 89.36, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-16", + "total_cases": 27191.0, + "new_cases": 196.0, + "new_cases_smoothed": 78.143, + "total_deaths": 1774.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5506.708, + "new_cases_per_million": 39.694, + "new_cases_smoothed_per_million": 15.825, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 10352.0, + "total_tests": 720041.0, + "total_tests_per_thousand": 145.822, + "new_tests_per_thousand": 2.096, + "new_tests_smoothed": 7594.0, + "new_tests_smoothed_per_thousand": 1.538, + "tests_per_case": 97.181, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-17", + "total_cases": 27257.0, + "new_cases": 66.0, + "new_cases_smoothed": 77.857, + "total_deaths": 1774.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5520.074, + "new_cases_per_million": 13.366, + "new_cases_smoothed_per_million": 15.768, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 5533.0, + "total_tests": 725574.0, + "total_tests_per_thousand": 146.943, + "new_tests_per_thousand": 1.121, + "new_tests_smoothed": 7831.0, + "new_tests_smoothed_per_thousand": 1.586, + "tests_per_case": 100.58200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 59.72 + }, + { + "date": "2020-08-18", + "total_cases": 27313.0, + "new_cases": 56.0, + "new_cases_smoothed": 77.857, + "total_deaths": 1774.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5531.415, + "new_cases_per_million": 11.341, + "new_cases_smoothed_per_million": 15.768, + "total_deaths_per_million": 359.27, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 4339.0, + "total_tests": 729913.0, + "total_tests_per_thousand": 147.822, + "new_tests_per_thousand": 0.879, + "new_tests_smoothed": 7876.0, + "new_tests_smoothed_per_thousand": 1.595, + "tests_per_case": 101.16, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-19", + "total_cases": 27499.0, + "new_cases": 186.0, + "new_cases_smoothed": 99.714, + "total_deaths": 1775.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5569.084, + "new_cases_per_million": 37.669, + "new_cases_smoothed_per_million": 20.194, + "total_deaths_per_million": 359.472, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 5192.0, + "total_tests": 735105.0, + "total_tests_per_thousand": 148.873, + "new_tests_per_thousand": 1.051, + "new_tests_smoothed": 7783.0, + "new_tests_smoothed_per_thousand": 1.576, + "tests_per_case": 78.053, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-20", + "total_cases": 27547.0, + "new_cases": 48.0, + "new_cases_smoothed": 101.286, + "total_deaths": 1775.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5578.805, + "new_cases_per_million": 9.721, + "new_cases_smoothed_per_million": 20.512, + "total_deaths_per_million": 359.472, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 12416.0, + "total_tests": 747521.0, + "total_tests_per_thousand": 151.388, + "new_tests_per_thousand": 2.514, + "new_tests_smoothed": 8546.0, + "new_tests_smoothed_per_thousand": 1.731, + "tests_per_case": 84.375, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-21", + "total_cases": 27676.0, + "new_cases": 129.0, + "new_cases_smoothed": 106.714, + "total_deaths": 1776.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5604.93, + "new_cases_per_million": 26.125, + "new_cases_smoothed_per_million": 21.612, + "total_deaths_per_million": 359.675, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 13080.0, + "total_tests": 760601.0, + "total_tests_per_thousand": 154.037, + "new_tests_per_thousand": 2.649, + "new_tests_smoothed": 8795.0, + "new_tests_smoothed_per_thousand": 1.781, + "tests_per_case": 82.416, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-22", + "total_cases": 27755.0, + "new_cases": 79.0, + "new_cases_smoothed": 108.571, + "total_deaths": 1776.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5620.929, + "new_cases_per_million": 15.999, + "new_cases_smoothed_per_million": 21.988, + "total_deaths_per_million": 359.675, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 6758.0, + "total_tests": 767359.0, + "total_tests_per_thousand": 155.405, + "new_tests_per_thousand": 1.369, + "new_tests_smoothed": 8239.0, + "new_tests_smoothed_per_thousand": 1.669, + "tests_per_case": 75.88600000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-23", + "total_cases": 27908.0, + "new_cases": 153.0, + "new_cases_smoothed": 102.429, + "total_deaths": 1777.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5651.914, + "new_cases_per_million": 30.985, + "new_cases_smoothed_per_million": 20.744, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.203, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 5438.0, + "total_tests": 772797.0, + "total_tests_per_thousand": 156.506, + "new_tests_per_thousand": 1.101, + "new_tests_smoothed": 7537.0, + "new_tests_smoothed_per_thousand": 1.526, + "tests_per_case": 73.583, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-24", + "total_cases": 27969.0, + "new_cases": 61.0, + "new_cases_smoothed": 101.714, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5664.268, + "new_cases_per_million": 12.354, + "new_cases_smoothed_per_million": 20.599, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 4838.0, + "total_tests": 777635.0, + "total_tests_per_thousand": 157.486, + "new_tests_per_thousand": 0.98, + "new_tests_smoothed": 7437.0, + "new_tests_smoothed_per_thousand": 1.506, + "tests_per_case": 73.117, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-25", + "total_cases": 28116.0, + "new_cases": 147.0, + "new_cases_smoothed": 114.714, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5694.038, + "new_cases_per_million": 29.77, + "new_cases_smoothed_per_million": 23.232, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 5015.0, + "total_tests": 782650.0, + "total_tests_per_thousand": 158.502, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 7534.0, + "new_tests_smoothed_per_thousand": 1.526, + "tests_per_case": 65.676, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-26", + "total_cases": 28201.0, + "new_cases": 85.0, + "new_cases_smoothed": 100.286, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5711.253, + "new_cases_per_million": 17.214, + "new_cases_smoothed_per_million": 20.31, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 7648.0, + "total_tests": 790298.0, + "total_tests_per_thousand": 160.051, + "new_tests_per_thousand": 1.549, + "new_tests_smoothed": 7885.0, + "new_tests_smoothed_per_thousand": 1.597, + "tests_per_case": 78.625, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-27", + "total_cases": 28363.0, + "new_cases": 162.0, + "new_cases_smoothed": 116.571, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5744.061, + "new_cases_per_million": 32.808, + "new_cases_smoothed_per_million": 23.608, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 12274.0, + "total_tests": 802572.0, + "total_tests_per_thousand": 162.536, + "new_tests_per_thousand": 2.486, + "new_tests_smoothed": 7864.0, + "new_tests_smoothed_per_thousand": 1.593, + "tests_per_case": 67.461, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-08-28", + "total_cases": 28453.0, + "new_cases": 90.0, + "new_cases_smoothed": 111.0, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5762.287, + "new_cases_per_million": 18.227, + "new_cases_smoothed_per_million": 22.48, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 12303.0, + "total_tests": 814875.0, + "total_tests_per_thousand": 165.028, + "new_tests_per_thousand": 2.492, + "new_tests_smoothed": 7753.0, + "new_tests_smoothed_per_thousand": 1.57, + "tests_per_case": 69.847, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 28579.0, + "new_cases": 126.0, + "new_cases_smoothed": 117.714, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5787.805, + "new_cases_per_million": 25.517, + "new_cases_smoothed_per_million": 23.839, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 9940.0, + "total_tests": 824815.0, + "total_tests_per_thousand": 167.041, + "new_tests_per_thousand": 2.013, + "new_tests_smoothed": 8208.0, + "new_tests_smoothed_per_thousand": 1.662, + "tests_per_case": 69.72800000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 28720.0, + "new_cases": 141.0, + "new_cases_smoothed": 116.0, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5816.36, + "new_cases_per_million": 28.555, + "new_cases_smoothed_per_million": 23.492, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5659.0, + "total_tests": 830474.0, + "total_tests_per_thousand": 168.187, + "new_tests_per_thousand": 1.146, + "new_tests_smoothed": 8240.0, + "new_tests_smoothed_per_thousand": 1.669, + "tests_per_case": 71.03399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 28760.0, + "new_cases": 40.0, + "new_cases_smoothed": 113.0, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5824.461, + "new_cases_per_million": 8.101, + "new_cases_smoothed_per_million": 22.885, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9340.0, + "total_tests": 839814.0, + "total_tests_per_thousand": 170.079, + "new_tests_per_thousand": 1.892, + "new_tests_smoothed": 8883.0, + "new_tests_smoothed_per_thousand": 1.799, + "tests_per_case": 78.611, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 28811.0, + "new_cases": 51.0, + "new_cases_smoothed": 99.286, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5834.789, + "new_cases_per_million": 10.328, + "new_cases_smoothed_per_million": 20.107, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4892.0, + "total_tests": 844706.0, + "total_tests_per_thousand": 171.069, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 8865.0, + "new_tests_smoothed_per_thousand": 1.795, + "tests_per_case": 89.288, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 29025.0, + "new_cases": 214.0, + "new_cases_smoothed": 117.714, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5878.129, + "new_cases_per_million": 43.339, + "new_cases_smoothed_per_million": 23.839, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7301.0, + "total_tests": 852007.0, + "total_tests_per_thousand": 172.548, + "new_tests_per_thousand": 1.479, + "new_tests_smoothed": 8816.0, + "new_tests_smoothed_per_thousand": 1.785, + "tests_per_case": 74.893, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 29114.0, + "new_cases": 89.0, + "new_cases_smoothed": 107.286, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5896.153, + "new_cases_per_million": 18.024, + "new_cases_smoothed_per_million": 21.727, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12501.0, + "total_tests": 864508.0, + "total_tests_per_thousand": 175.08, + "new_tests_per_thousand": 2.532, + "new_tests_smoothed": 8848.0, + "new_tests_smoothed_per_thousand": 1.792, + "tests_per_case": 82.471, + "positive_rate": 0.012, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 29206.0, + "new_cases": 92.0, + "new_cases_smoothed": 107.571, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5914.785, + "new_cases_per_million": 18.632, + "new_cases_smoothed_per_million": 21.785, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 29303.0, + "new_cases": 97.0, + "new_cases_smoothed": 103.429, + "total_deaths": 1777.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5934.429, + "new_cases_per_million": 19.644, + "new_cases_smoothed_per_million": 20.946, + "total_deaths_per_million": 359.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "IMN": { + "continent": "Europe", + "location": "Isle of Man", + "population": 85032.0, + "population_density": 147.872, + "life_expectancy": 81.4, + "data": [ + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 11.76, + "new_cases_per_million": 11.76, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 23.521, + "new_cases_per_million": 11.76, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 23.521, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 13.0, + "new_cases": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 152.884, + "new_cases_per_million": 129.363, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 23.0, + "new_cases": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 270.486, + "new_cases_per_million": 117.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 23.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 270.486, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 305.767, + "new_cases_per_million": 35.281, + "new_cases_smoothed_per_million": 43.681, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 29.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.048, + "new_cases_per_million": 35.281, + "new_cases_smoothed_per_million": 47.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 32.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 376.329, + "new_cases_per_million": 35.281, + "new_cases_smoothed_per_million": 50.401, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 42.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 493.932, + "new_cases_per_million": 117.603, + "new_cases_smoothed_per_million": 67.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 493.932, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 52.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 611.534, + "new_cases_per_million": 117.603, + "new_cases_smoothed_per_million": 48.721, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 65.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 764.418, + "new_cases_per_million": 152.884, + "new_cases_smoothed_per_million": 70.562, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 71.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 834.98, + "new_cases_per_million": 70.562, + "new_cases_smoothed_per_million": 75.602, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-04", + "total_cases": 114.0, + "new_cases": 43.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1340.672, + "new_cases_per_million": 505.692, + "new_cases_smoothed_per_million": 142.803, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-05", + "total_cases": 126.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1481.795, + "new_cases_per_million": 141.123, + "new_cases_smoothed_per_million": 157.924, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-06", + "total_cases": 127.0, + "new_cases": 1.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1493.555, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 142.803, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-07", + "total_cases": 139.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1634.679, + "new_cases_per_million": 141.123, + "new_cases_smoothed_per_million": 162.964, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-08", + "total_cases": 150.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1764.042, + "new_cases_per_million": 129.363, + "new_cases_smoothed_per_million": 164.644, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-09", + "total_cases": 158.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1858.124, + "new_cases_per_million": 94.082, + "new_cases_smoothed_per_million": 156.244, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-10", + "total_cases": 190.0, + "new_cases": 32.0, + "new_cases_smoothed": 17.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2234.453, + "new_cases_per_million": 376.329, + "new_cases_smoothed_per_million": 199.925, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 201.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2363.816, + "new_cases_per_million": 129.363, + "new_cases_smoothed_per_million": 146.163, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 226.0, + "new_cases": 25.0, + "new_cases_smoothed": 14.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2657.823, + "new_cases_per_million": 294.007, + "new_cases_smoothed_per_million": 168.004, + "total_deaths_per_million": 11.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 228.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2681.343, + "new_cases_per_million": 23.521, + "new_cases_smoothed_per_million": 169.684, + "total_deaths_per_million": 23.521, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-14", + "total_cases": 242.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2845.987, + "new_cases_per_million": 164.644, + "new_cases_smoothed_per_million": 173.044, + "total_deaths_per_million": 23.521, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-15", + "total_cases": 242.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2845.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 154.564, + "total_deaths_per_million": 23.521, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-16", + "total_cases": 254.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2987.111, + "new_cases_per_million": 141.123, + "new_cases_smoothed_per_million": 161.284, + "total_deaths_per_million": 23.521, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-04-17", + "total_cases": 284.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.429, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3339.919, + "new_cases_per_million": 352.808, + "new_cases_smoothed_per_million": 157.924, + "total_deaths_per_million": 47.041, + "new_deaths_per_million": 23.521, + "new_deaths_smoothed_per_million": 5.04 + }, + { + "date": "2020-04-18", + "total_cases": 289.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3398.72, + "new_cases_per_million": 58.801, + "new_cases_smoothed_per_million": 147.844, + "total_deaths_per_million": 47.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.04 + }, + { + "date": "2020-04-19", + "total_cases": 297.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.143, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3492.803, + "new_cases_per_million": 94.082, + "new_cases_smoothed_per_million": 119.283, + "total_deaths_per_million": 70.562, + "new_deaths_per_million": 23.521, + "new_deaths_smoothed_per_million": 8.4 + }, + { + "date": "2020-04-20", + "total_cases": 298.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3504.563, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 117.603, + "total_deaths_per_million": 70.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.72 + }, + { + "date": "2020-04-21", + "total_cases": 300.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.286, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 3528.084, + "new_cases_per_million": 23.521, + "new_cases_smoothed_per_million": 97.442, + "total_deaths_per_million": 105.843, + "new_deaths_per_million": 35.281, + "new_deaths_smoothed_per_million": 11.76 + }, + { + "date": "2020-04-22", + "total_cases": 307.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3610.405, + "new_cases_per_million": 82.322, + "new_cases_smoothed_per_million": 109.203, + "total_deaths_per_million": 117.603, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 13.44 + }, + { + "date": "2020-04-23", + "total_cases": 307.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 15.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3610.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 89.042, + "total_deaths_per_million": 176.404, + "new_deaths_per_million": 58.801, + "new_deaths_smoothed_per_million": 21.841 + }, + { + "date": "2020-04-24", + "total_cases": 307.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3610.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.641, + "total_deaths_per_million": 188.164, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 20.16 + }, + { + "date": "2020-04-25", + "total_cases": 308.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3622.166, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 31.921, + "total_deaths_per_million": 211.685, + "new_deaths_per_million": 23.521, + "new_deaths_smoothed_per_million": 23.521 + }, + { + "date": "2020-04-26", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3622.166, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.48, + "total_deaths_per_million": 211.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 20.16 + }, + { + "date": "2020-04-27", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3622.166, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.8, + "total_deaths_per_million": 211.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 20.16 + }, + { + "date": "2020-04-28", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3622.166, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.44, + "total_deaths_per_million": 211.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 15.12 + }, + { + "date": "2020-04-29", + "total_cases": 309.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3633.926, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 3.36, + "total_deaths_per_million": 246.966, + "new_deaths_per_million": 35.281, + "new_deaths_smoothed_per_million": 18.48 + }, + { + "date": "2020-04-30", + "total_cases": 313.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3680.967, + "new_cases_per_million": 47.041, + "new_cases_smoothed_per_million": 10.08, + "total_deaths_per_million": 246.966, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 10.08 + }, + { + "date": "2020-05-01", + "total_cases": 315.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3704.488, + "new_cases_per_million": 23.521, + "new_cases_smoothed_per_million": 13.44, + "total_deaths_per_million": 246.966, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.4 + }, + { + "date": "2020-05-02", + "total_cases": 316.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3716.248, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 13.44, + "total_deaths_per_million": 258.726, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 6.72 + }, + { + "date": "2020-05-03", + "total_cases": 320.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3763.289, + "new_cases_per_million": 47.041, + "new_cases_smoothed_per_million": 20.16, + "total_deaths_per_million": 258.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.72 + }, + { + "date": "2020-05-04", + "total_cases": 321.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3775.049, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 258.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.72 + }, + { + "date": "2020-05-05", + "total_cases": 325.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3822.091, + "new_cases_per_million": 47.041, + "new_cases_smoothed_per_million": 28.561, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 8.4 + }, + { + "date": "2020-05-06", + "total_cases": 326.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3833.851, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 28.561, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-05-07", + "total_cases": 327.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3845.611, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 23.521, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-05-08", + "total_cases": 329.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3869.132, + "new_cases_per_million": 23.521, + "new_cases_smoothed_per_million": 23.521, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-05-09", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3869.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-10", + "total_cases": 330.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3880.892, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 16.8, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-11", + "total_cases": 330.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3880.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.12, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-12", + "total_cases": 330.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3880.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 331.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3892.652, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 332.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3904.412, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3904.412, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.04, + "total_deaths_per_million": 270.486, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 334.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3927.933, + "new_cases_per_million": 23.521, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 11.76, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-17", + "total_cases": 335.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3939.693, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-18", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3939.693, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-19", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3939.693, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.4, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-20", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3939.693, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-21", + "total_cases": 336.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 11.76, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-22", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.72, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.68 + }, + { + "date": "2020-05-23", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.36, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.68, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.68, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.68, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.68, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3951.454, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 282.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ISR": { + "continent": "Asia", + "location": "Israel", + "population": 8655541.0, + "population_density": 402.606, + "median_age": 30.6, + "aged_65_older": 11.733, + "aged_70_older": 7.359, + "gdp_per_capita": 33132.32, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 93.32, + "diabetes_prevalence": 6.74, + "female_smokers": 15.4, + "male_smokers": 35.4, + "hospital_beds_per_thousand": 2.99, + "life_expectancy": 82.97, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 107.0, + "total_tests_per_thousand": 0.012, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 108.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 111.0, + "total_tests_per_thousand": 0.013, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 115.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 122.0, + "total_tests_per_thousand": 0.014, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 129.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 135.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 175.0, + "total_tests_per_thousand": 0.02, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 203.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 11.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 253.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 288.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 21.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 323.0, + "total_tests_per_thousand": 0.037, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 353.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 356.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 379.0, + "total_tests_per_thousand": 0.044, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 420.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.004, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 46.0, + "total_tests": 466.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 500.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 529.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 566.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.116, + "new_cases_per_million": 0.116, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 579.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 224.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 56.0, + "total_tests": 635.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 259.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.231, + "new_cases_per_million": 0.116, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 711.0, + "total_tests_per_thousand": 0.082, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 147.0, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 108.0, + "total_tests": 819.0, + "total_tests_per_thousand": 0.095, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 175.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 108.0, + "total_tests": 927.0, + "total_tests_per_thousand": 0.107, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 213.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 1098.0, + "total_tests_per_thousand": 0.127, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 81.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 283.5, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.347, + "new_cases_per_million": 0.116, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 119.0, + "total_tests": 1217.0, + "total_tests_per_thousand": 0.141, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 93.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 217.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 7.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.462, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 159.0, + "total_tests": 1376.0, + "total_tests_per_thousand": 0.159, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 114.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 188.0, + "total_tests": 1564.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 133.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 155.167, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.155, + "new_cases_per_million": 0.347, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 1735.0, + "total_tests_per_thousand": 0.2, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 127.75, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 235.0, + "total_tests": 1970.0, + "total_tests_per_thousand": 0.228, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 164.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 143.5, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 129.0, + "total_tests": 2099.0, + "total_tests_per_thousand": 0.243, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 167.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 146.125, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-05", + "total_cases": 15.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.733, + "new_cases_per_million": 0.578, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 174.0, + "total_tests": 2273.0, + "total_tests_per_thousand": 0.263, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 168.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 90.462, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-06", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.964, + "new_cases_per_million": 0.231, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 275.0, + "total_tests": 2548.0, + "total_tests_per_thousand": 0.294, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 95.0, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-07", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.195, + "new_cases_per_million": 0.231, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 336.0, + "total_tests": 2884.0, + "total_tests_per_thousand": 0.333, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 215.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 125.417, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-08", + "total_cases": 25.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.888, + "new_cases_per_million": 0.693, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 421.0, + "total_tests": 3305.0, + "total_tests_per_thousand": 0.382, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 96.833, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-09", + "total_cases": 39.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.506, + "new_cases_per_million": 1.617, + "new_cases_smoothed_per_million": 0.479, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 518.0, + "total_tests": 3823.0, + "total_tests_per_thousand": 0.442, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 298.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 71.931, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 4.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.479, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 520.0, + "total_tests": 4343.0, + "total_tests_per_thousand": 0.502, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 339.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 81.828, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-11", + "total_cases": 70.0, + "new_cases": 31.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.087, + "new_cases_per_million": 3.582, + "new_cases_smoothed_per_million": 0.99, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 402.0, + "total_tests": 4745.0, + "total_tests_per_thousand": 0.548, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 378.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 44.1, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-12", + "total_cases": 82.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.474, + "new_cases_per_million": 1.386, + "new_cases_smoothed_per_million": 1.106, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 608.0, + "total_tests": 5353.0, + "total_tests_per_thousand": 0.618, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 440.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 45.97, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-03-13", + "total_cases": 96.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.091, + "new_cases_per_million": 1.617, + "new_cases_smoothed_per_million": 1.304, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 697.0, + "total_tests": 6050.0, + "total_tests_per_thousand": 0.699, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 500.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 44.303999999999995, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-14", + "total_cases": 116.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.402, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 1.601, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 614.0, + "total_tests": 6664.0, + "total_tests_per_thousand": 0.77, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 540.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 38.969, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-15", + "total_cases": 178.0, + "new_cases": 62.0, + "new_cases_smoothed": 21.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.565, + "new_cases_per_million": 7.163, + "new_cases_smoothed_per_million": 2.525, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1184.0, + "total_tests": 7848.0, + "total_tests_per_thousand": 0.907, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 649.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 29.693, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-03-16", + "total_cases": 250.0, + "new_cases": 72.0, + "new_cases_smoothed": 30.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.883, + "new_cases_per_million": 8.318, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1345.0, + "total_tests": 9193.0, + "total_tests_per_thousand": 1.062, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 25.445, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-03-17", + "total_cases": 260.0, + "new_cases": 10.0, + "new_cases_smoothed": 31.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.039, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 3.648, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1647.0, + "total_tests": 10840.0, + "total_tests_per_thousand": 1.252, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 928.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 29.394000000000002, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-18", + "total_cases": 427.0, + "new_cases": 167.0, + "new_cases_smoothed": 51.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.333, + "new_cases_per_million": 19.294, + "new_cases_smoothed_per_million": 5.892, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2108.0, + "total_tests": 12948.0, + "total_tests_per_thousand": 1.496, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 1172.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 22.98, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-19", + "total_cases": 433.0, + "new_cases": 6.0, + "new_cases_smoothed": 50.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.026, + "new_cases_per_million": 0.693, + "new_cases_smoothed_per_million": 5.793, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2074.0, + "total_tests": 15022.0, + "total_tests_per_thousand": 1.736, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 1381.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 27.541, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-20", + "total_cases": 677.0, + "new_cases": 244.0, + "new_cases_smoothed": 83.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.216, + "new_cases_per_million": 28.19, + "new_cases_smoothed_per_million": 9.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2321.0, + "total_tests": 17343.0, + "total_tests_per_thousand": 2.004, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 1613.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 19.434, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 712.0, + "new_cases": 35.0, + "new_cases_smoothed": 85.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.259, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 9.837, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 2108.0, + "total_tests": 19451.0, + "total_tests_per_thousand": 2.247, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 1827.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 21.458000000000002, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 883.0, + "new_cases": 171.0, + "new_cases_smoothed": 100.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 102.016, + "new_cases_per_million": 19.756, + "new_cases_smoothed_per_million": 11.636, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 3350.0, + "total_tests": 22801.0, + "total_tests_per_thousand": 2.634, + "new_tests_per_thousand": 0.387, + "new_tests_smoothed": 2136.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 21.209, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 1071.0, + "new_cases": 188.0, + "new_cases_smoothed": 117.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 123.736, + "new_cases_per_million": 21.72, + "new_cases_smoothed_per_million": 13.55, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 3625.0, + "total_tests": 26426.0, + "total_tests_per_thousand": 3.053, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 2462.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 20.991, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 1442.0, + "new_cases": 371.0, + "new_cases_smoothed": 168.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 166.598, + "new_cases_per_million": 42.863, + "new_cases_smoothed_per_million": 19.509, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 4789.0, + "total_tests": 31215.0, + "total_tests_per_thousand": 3.606, + "new_tests_per_thousand": 0.553, + "new_tests_smoothed": 2911.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 17.239, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 1930.0, + "new_cases": 488.0, + "new_cases_smoothed": 214.714, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 222.979, + "new_cases_per_million": 56.38, + "new_cases_smoothed_per_million": 24.807, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5936.0, + "total_tests": 37151.0, + "total_tests_per_thousand": 4.292, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 3458.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 16.105, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 2369.0, + "new_cases": 439.0, + "new_cases_smoothed": 276.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 273.698, + "new_cases_per_million": 50.719, + "new_cases_smoothed_per_million": 31.953, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 6504.0, + "total_tests": 43655.0, + "total_tests_per_thousand": 5.044, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 4090.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 14.788, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 2666.0, + "new_cases": 297.0, + "new_cases_smoothed": 284.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 308.011, + "new_cases_per_million": 34.313, + "new_cases_smoothed_per_million": 32.828, + "total_deaths_per_million": 0.924, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5752.0, + "total_tests": 49407.0, + "total_tests_per_thousand": 5.708, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 4581.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 16.122, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 3035.0, + "new_cases": 369.0, + "new_cases_smoothed": 331.857, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 350.642, + "new_cases_per_million": 42.632, + "new_cases_smoothed_per_million": 38.34, + "total_deaths_per_million": 1.155, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 5739.0, + "total_tests": 55146.0, + "total_tests_per_thousand": 6.371, + "new_tests_per_thousand": 0.663, + "new_tests_smoothed": 5099.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 15.365, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 3619.0, + "new_cases": 584.0, + "new_cases_smoothed": 390.857, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 418.114, + "new_cases_per_million": 67.471, + "new_cases_smoothed_per_million": 45.157, + "total_deaths_per_million": 1.386, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 7575.0, + "total_tests": 62721.0, + "total_tests_per_thousand": 7.246, + "new_tests_per_thousand": 0.875, + "new_tests_smoothed": 5703.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 14.591, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-30", + "total_cases": 4247.0, + "new_cases": 628.0, + "new_cases_smoothed": 453.714, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 490.668, + "new_cases_per_million": 72.555, + "new_cases_smoothed_per_million": 52.419, + "total_deaths_per_million": 1.733, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 7100.0, + "total_tests": 69821.0, + "total_tests_per_thousand": 8.067, + "new_tests_per_thousand": 0.82, + "new_tests_smoothed": 6199.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 13.663, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 4473.0, + "new_cases": 226.0, + "new_cases_smoothed": 433.0, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 516.779, + "new_cases_per_million": 26.11, + "new_cases_smoothed_per_million": 50.026, + "total_deaths_per_million": 1.964, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 7989.0, + "total_tests": 77810.0, + "total_tests_per_thousand": 8.99, + "new_tests_per_thousand": 0.923, + "new_tests_smoothed": 6656.0, + "new_tests_smoothed_per_thousand": 0.769, + "tests_per_case": 15.372, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-01", + "total_cases": 4916.0, + "new_cases": 443.0, + "new_cases_smoothed": 426.571, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 567.96, + "new_cases_per_million": 51.181, + "new_cases_smoothed_per_million": 49.283, + "total_deaths_per_million": 2.311, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.281, + "new_tests": 9010.0, + "total_tests": 86820.0, + "total_tests_per_thousand": 10.031, + "new_tests_per_thousand": 1.041, + "new_tests_smoothed": 7096.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 16.635, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 5591.0, + "new_cases": 675.0, + "new_cases_smoothed": 460.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 645.945, + "new_cases_per_million": 77.985, + "new_cases_smoothed_per_million": 53.178, + "total_deaths_per_million": 2.426, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 10225.0, + "total_tests": 97045.0, + "total_tests_per_thousand": 11.212, + "new_tests_per_thousand": 1.181, + "new_tests_smoothed": 7627.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 16.57, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 6252.0, + "new_cases": 661.0, + "new_cases_smoothed": 512.286, + "total_deaths": 34.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 722.312, + "new_cases_per_million": 76.367, + "new_cases_smoothed_per_million": 59.186, + "total_deaths_per_million": 3.928, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 0.429, + "new_tests": 10329.0, + "total_tests": 107374.0, + "total_tests_per_thousand": 12.405, + "new_tests_per_thousand": 1.193, + "new_tests_smoothed": 8281.0, + "new_tests_smoothed_per_thousand": 0.957, + "tests_per_case": 16.165, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-04", + "total_cases": 7428.0, + "new_cases": 1176.0, + "new_cases_smoothed": 627.571, + "total_deaths": 39.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 858.179, + "new_cases_per_million": 135.867, + "new_cases_smoothed_per_million": 72.505, + "total_deaths_per_million": 4.506, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.479, + "new_tests": 6355.0, + "total_tests": 113729.0, + "total_tests_per_thousand": 13.139, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 8369.0, + "new_tests_smoothed_per_thousand": 0.967, + "tests_per_case": 13.335999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-05", + "total_cases": 8018.0, + "new_cases": 590.0, + "new_cases_smoothed": 628.429, + "total_deaths": 46.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 926.343, + "new_cases_per_million": 68.164, + "new_cases_smoothed_per_million": 72.604, + "total_deaths_per_million": 5.315, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.561, + "new_tests": 9395.0, + "total_tests": 123124.0, + "total_tests_per_thousand": 14.225, + "new_tests_per_thousand": 1.085, + "new_tests_smoothed": 8629.0, + "new_tests_smoothed_per_thousand": 0.997, + "tests_per_case": 13.731, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-06", + "total_cases": 8430.0, + "new_cases": 412.0, + "new_cases_smoothed": 597.571, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 973.943, + "new_cases_per_million": 47.6, + "new_cases_smoothed_per_million": 69.039, + "total_deaths_per_million": 5.661, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.561, + "new_tests": 7500.0, + "total_tests": 130624.0, + "total_tests_per_thousand": 15.091, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 8686.0, + "new_tests_smoothed_per_thousand": 1.004, + "tests_per_case": 14.536, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-07", + "total_cases": 8904.0, + "new_cases": 474.0, + "new_cases_smoothed": 633.0, + "total_deaths": 57.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1028.705, + "new_cases_per_million": 54.763, + "new_cases_smoothed_per_million": 73.132, + "total_deaths_per_million": 6.585, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.66, + "new_tests": 6971.0, + "total_tests": 137595.0, + "total_tests_per_thousand": 15.897, + "new_tests_per_thousand": 0.805, + "new_tests_smoothed": 8541.0, + "new_tests_smoothed_per_thousand": 0.987, + "tests_per_case": 13.493, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 9248.0, + "new_cases": 344.0, + "new_cases_smoothed": 618.857, + "total_deaths": 65.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1068.449, + "new_cases_per_million": 39.743, + "new_cases_smoothed_per_million": 71.498, + "total_deaths_per_million": 7.51, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.743, + "new_tests": 5878.0, + "total_tests": 143473.0, + "total_tests_per_thousand": 16.576, + "new_tests_per_thousand": 0.679, + "new_tests_smoothed": 8093.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 13.077, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-09", + "total_cases": 9404.0, + "new_cases": 156.0, + "new_cases_smoothed": 544.714, + "total_deaths": 71.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1086.472, + "new_cases_per_million": 18.023, + "new_cases_smoothed_per_million": 62.932, + "total_deaths_per_million": 8.203, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 5746.0, + "total_tests": 149219.0, + "total_tests_per_thousand": 17.24, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 7453.0, + "new_tests_smoothed_per_thousand": 0.861, + "tests_per_case": 13.682, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-10", + "total_cases": 9968.0, + "new_cases": 564.0, + "new_cases_smoothed": 530.857, + "total_deaths": 86.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1151.632, + "new_cases_per_million": 65.161, + "new_cases_smoothed_per_million": 61.331, + "total_deaths_per_million": 9.936, + "new_deaths_per_million": 1.733, + "new_deaths_smoothed_per_million": 0.858, + "new_tests": 7346.0, + "total_tests": 156565.0, + "total_tests_per_thousand": 18.088, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 7027.0, + "new_tests_smoothed_per_thousand": 0.812, + "tests_per_case": 13.237, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-11", + "total_cases": 10408.0, + "new_cases": 440.0, + "new_cases_smoothed": 425.714, + "total_deaths": 95.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1202.467, + "new_cases_per_million": 50.834, + "new_cases_smoothed_per_million": 49.184, + "total_deaths_per_million": 10.976, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 6702.0, + "total_tests": 163267.0, + "total_tests_per_thousand": 18.863, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 7077.0, + "new_tests_smoothed_per_thousand": 0.818, + "tests_per_case": 16.624000000000002, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-04-12", + "total_cases": 10743.0, + "new_cases": 335.0, + "new_cases_smoothed": 389.286, + "total_deaths": 101.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1241.17, + "new_cases_per_million": 38.704, + "new_cases_smoothed_per_million": 44.975, + "total_deaths_per_million": 11.669, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.908, + "new_tests": 10600.0, + "total_tests": 173867.0, + "total_tests_per_thousand": 20.087, + "new_tests_per_thousand": 1.225, + "new_tests_smoothed": 7249.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 18.621, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-04-13", + "total_cases": 11145.0, + "new_cases": 402.0, + "new_cases_smoothed": 387.857, + "total_deaths": 103.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1287.614, + "new_cases_per_million": 46.444, + "new_cases_smoothed_per_million": 44.81, + "total_deaths_per_million": 11.9, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.891, + "new_tests": 10949.0, + "total_tests": 184816.0, + "total_tests_per_thousand": 21.352, + "new_tests_per_thousand": 1.265, + "new_tests_smoothed": 7742.0, + "new_tests_smoothed_per_thousand": 0.894, + "tests_per_case": 19.961, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-04-14", + "total_cases": 11586.0, + "new_cases": 441.0, + "new_cases_smoothed": 383.143, + "total_deaths": 116.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1338.565, + "new_cases_per_million": 50.95, + "new_cases_smoothed_per_million": 44.266, + "total_deaths_per_million": 13.402, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 0.974, + "new_tests": 12678.0, + "total_tests": 197494.0, + "total_tests_per_thousand": 22.817, + "new_tests_per_thousand": 1.465, + "new_tests_smoothed": 8557.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 22.334, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-15", + "total_cases": 12046.0, + "new_cases": 460.0, + "new_cases_smoothed": 399.714, + "total_deaths": 123.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1391.71, + "new_cases_per_million": 53.145, + "new_cases_smoothed_per_million": 46.18, + "total_deaths_per_million": 14.211, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.957, + "new_tests": 9451.0, + "total_tests": 206945.0, + "total_tests_per_thousand": 23.909, + "new_tests_per_thousand": 1.092, + "new_tests_smoothed": 9067.0, + "new_tests_smoothed_per_thousand": 1.048, + "tests_per_case": 22.684, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-16", + "total_cases": 12501.0, + "new_cases": 455.0, + "new_cases_smoothed": 442.429, + "total_deaths": 130.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1444.277, + "new_cases_per_million": 52.567, + "new_cases_smoothed_per_million": 51.115, + "total_deaths_per_million": 15.019, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.974, + "new_tests": 12789.0, + "total_tests": 219734.0, + "total_tests_per_thousand": 25.387, + "new_tests_per_thousand": 1.478, + "new_tests_smoothed": 10074.0, + "new_tests_smoothed_per_thousand": 1.164, + "tests_per_case": 22.77, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-17", + "total_cases": 12758.0, + "new_cases": 257.0, + "new_cases_smoothed": 398.571, + "total_deaths": 142.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1473.969, + "new_cases_per_million": 29.692, + "new_cases_smoothed_per_million": 46.048, + "total_deaths_per_million": 16.406, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 11596.0, + "total_tests": 231330.0, + "total_tests_per_thousand": 26.726, + "new_tests_per_thousand": 1.34, + "new_tests_smoothed": 10681.0, + "new_tests_smoothed_per_thousand": 1.234, + "tests_per_case": 26.798000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-04-18", + "total_cases": 12982.0, + "new_cases": 224.0, + "new_cases_smoothed": 367.714, + "total_deaths": 151.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1499.848, + "new_cases_per_million": 25.879, + "new_cases_smoothed_per_million": 42.483, + "total_deaths_per_million": 17.445, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 10607.0, + "total_tests": 241937.0, + "total_tests_per_thousand": 27.952, + "new_tests_per_thousand": 1.225, + "new_tests_smoothed": 11239.0, + "new_tests_smoothed_per_thousand": 1.298, + "tests_per_case": 30.564, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-04-19", + "total_cases": 13265.0, + "new_cases": 283.0, + "new_cases_smoothed": 360.286, + "total_deaths": 164.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1532.544, + "new_cases_per_million": 32.696, + "new_cases_smoothed_per_million": 41.625, + "total_deaths_per_million": 18.947, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.04, + "new_tests": 11480.0, + "total_tests": 253417.0, + "total_tests_per_thousand": 29.278, + "new_tests_per_thousand": 1.326, + "new_tests_smoothed": 11364.0, + "new_tests_smoothed_per_thousand": 1.313, + "tests_per_case": 31.541999999999998, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-20", + "total_cases": 13491.0, + "new_cases": 226.0, + "new_cases_smoothed": 335.143, + "total_deaths": 172.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 1558.655, + "new_cases_per_million": 26.11, + "new_cases_smoothed_per_million": 38.72, + "total_deaths_per_million": 19.872, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 1.139, + "new_tests": 15367.0, + "total_tests": 268784.0, + "total_tests_per_thousand": 31.053, + "new_tests_per_thousand": 1.775, + "new_tests_smoothed": 11995.0, + "new_tests_smoothed_per_thousand": 1.386, + "tests_per_case": 35.791, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-21", + "total_cases": 13713.0, + "new_cases": 222.0, + "new_cases_smoothed": 303.857, + "total_deaths": 177.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1584.303, + "new_cases_per_million": 25.648, + "new_cases_smoothed_per_million": 35.106, + "total_deaths_per_million": 20.449, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 13613.0, + "total_tests": 282397.0, + "total_tests_per_thousand": 32.626, + "new_tests_per_thousand": 1.573, + "new_tests_smoothed": 12129.0, + "new_tests_smoothed_per_thousand": 1.401, + "tests_per_case": 39.917, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-22", + "total_cases": 13942.0, + "new_cases": 229.0, + "new_cases_smoothed": 270.857, + "total_deaths": 184.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1610.76, + "new_cases_per_million": 26.457, + "new_cases_smoothed_per_million": 31.293, + "total_deaths_per_million": 21.258, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 13293.0, + "total_tests": 295690.0, + "total_tests_per_thousand": 34.162, + "new_tests_per_thousand": 1.536, + "new_tests_smoothed": 12678.0, + "new_tests_smoothed_per_thousand": 1.465, + "tests_per_case": 46.806999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-23", + "total_cases": 14592.0, + "new_cases": 650.0, + "new_cases_smoothed": 298.714, + "total_deaths": 191.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1685.856, + "new_cases_per_million": 75.096, + "new_cases_smoothed_per_million": 34.511, + "total_deaths_per_million": 22.067, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 14183.0, + "total_tests": 309873.0, + "total_tests_per_thousand": 35.801, + "new_tests_per_thousand": 1.639, + "new_tests_smoothed": 12877.0, + "new_tests_smoothed_per_thousand": 1.488, + "tests_per_case": 43.108000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-24", + "total_cases": 14882.0, + "new_cases": 290.0, + "new_cases_smoothed": 303.429, + "total_deaths": 193.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1719.361, + "new_cases_per_million": 33.505, + "new_cases_smoothed_per_million": 35.056, + "total_deaths_per_million": 22.298, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.842, + "new_tests": 12626.0, + "total_tests": 322499.0, + "total_tests_per_thousand": 37.259, + "new_tests_per_thousand": 1.459, + "new_tests_smoothed": 13024.0, + "new_tests_smoothed_per_thousand": 1.505, + "tests_per_case": 42.923, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-25", + "total_cases": 15058.0, + "new_cases": 176.0, + "new_cases_smoothed": 296.571, + "total_deaths": 194.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1739.695, + "new_cases_per_million": 20.334, + "new_cases_smoothed_per_million": 34.264, + "total_deaths_per_million": 22.413, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.71, + "new_tests": 9077.0, + "total_tests": 331576.0, + "total_tests_per_thousand": 38.308, + "new_tests_per_thousand": 1.049, + "new_tests_smoothed": 12806.0, + "new_tests_smoothed_per_thousand": 1.48, + "tests_per_case": 43.18, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-04-26", + "total_cases": 15298.0, + "new_cases": 240.0, + "new_cases_smoothed": 290.429, + "total_deaths": 199.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1767.423, + "new_cases_per_million": 27.728, + "new_cases_smoothed_per_million": 33.554, + "total_deaths_per_million": 22.991, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 8463.0, + "total_tests": 340039.0, + "total_tests_per_thousand": 39.286, + "new_tests_per_thousand": 0.978, + "new_tests_smoothed": 12375.0, + "new_tests_smoothed_per_thousand": 1.43, + "tests_per_case": 42.608999999999995, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 15398.0, + "new_cases": 100.0, + "new_cases_smoothed": 272.429, + "total_deaths": 199.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1778.976, + "new_cases_per_million": 11.553, + "new_cases_smoothed_per_million": 31.474, + "total_deaths_per_million": 22.991, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 11404.0, + "total_tests": 351443.0, + "total_tests_per_thousand": 40.603, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 11808.0, + "new_tests_smoothed_per_thousand": 1.364, + "tests_per_case": 43.343, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 15466.0, + "new_cases": 68.0, + "new_cases_smoothed": 250.429, + "total_deaths": 202.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1786.832, + "new_cases_per_million": 7.856, + "new_cases_smoothed_per_million": 28.933, + "total_deaths_per_million": 23.338, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 10641.0, + "total_tests": 362084.0, + "total_tests_per_thousand": 41.833, + "new_tests_per_thousand": 1.229, + "new_tests_smoothed": 11384.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 45.458, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 15589.0, + "new_cases": 123.0, + "new_cases_smoothed": 235.286, + "total_deaths": 208.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1801.043, + "new_cases_per_million": 14.211, + "new_cases_smoothed_per_million": 27.183, + "total_deaths_per_million": 24.031, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 8997.0, + "total_tests": 371081.0, + "total_tests_per_thousand": 42.872, + "new_tests_per_thousand": 1.039, + "new_tests_smoothed": 10770.0, + "new_tests_smoothed_per_thousand": 1.244, + "tests_per_case": 45.773999999999994, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-30", + "total_cases": 15834.0, + "new_cases": 245.0, + "new_cases_smoothed": 177.429, + "total_deaths": 215.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1829.348, + "new_cases_per_million": 28.306, + "new_cases_smoothed_per_million": 20.499, + "total_deaths_per_million": 24.84, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 9930.0, + "total_tests": 381011.0, + "total_tests_per_thousand": 44.019, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 10163.0, + "new_tests_smoothed_per_thousand": 1.174, + "tests_per_case": 57.278999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 15946.0, + "new_cases": 112.0, + "new_cases_smoothed": 152.0, + "total_deaths": 222.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1842.288, + "new_cases_per_million": 12.94, + "new_cases_smoothed_per_million": 17.561, + "total_deaths_per_million": 25.648, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.479, + "new_tests": 11052.0, + "total_tests": 392063.0, + "total_tests_per_thousand": 45.296, + "new_tests_per_thousand": 1.277, + "new_tests_smoothed": 9938.0, + "new_tests_smoothed_per_thousand": 1.148, + "tests_per_case": 65.382, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 16101.0, + "new_cases": 155.0, + "new_cases_smoothed": 149.0, + "total_deaths": 225.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1860.196, + "new_cases_per_million": 17.908, + "new_cases_smoothed_per_million": 17.214, + "total_deaths_per_million": 25.995, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.512, + "new_tests": 5568.0, + "total_tests": 397631.0, + "total_tests_per_thousand": 45.939, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 9436.0, + "new_tests_smoothed_per_thousand": 1.09, + "tests_per_case": 63.32899999999999, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 16185.0, + "new_cases": 84.0, + "new_cases_smoothed": 126.714, + "total_deaths": 229.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1869.9, + "new_cases_per_million": 9.705, + "new_cases_smoothed_per_million": 14.64, + "total_deaths_per_million": 26.457, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.495, + "new_tests": 8029.0, + "total_tests": 405660.0, + "total_tests_per_thousand": 46.867, + "new_tests_per_thousand": 0.928, + "new_tests_smoothed": 9374.0, + "new_tests_smoothed_per_thousand": 1.083, + "tests_per_case": 73.977, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-04", + "total_cases": 16208.0, + "new_cases": 23.0, + "new_cases_smoothed": 115.714, + "total_deaths": 232.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1872.558, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 13.369, + "total_deaths_per_million": 26.804, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 9257.0, + "total_tests": 414917.0, + "total_tests_per_thousand": 47.937, + "new_tests_per_thousand": 1.069, + "new_tests_smoothed": 9068.0, + "new_tests_smoothed_per_thousand": 1.048, + "tests_per_case": 78.365, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-05-05", + "total_cases": 16246.0, + "new_cases": 38.0, + "new_cases_smoothed": 111.429, + "total_deaths": 235.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1876.948, + "new_cases_per_million": 4.39, + "new_cases_smoothed_per_million": 12.874, + "total_deaths_per_million": 27.15, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 8957.0, + "total_tests": 423874.0, + "total_tests_per_thousand": 48.971, + "new_tests_per_thousand": 1.035, + "new_tests_smoothed": 8827.0, + "new_tests_smoothed_per_thousand": 1.02, + "tests_per_case": 79.217, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 16289.0, + "new_cases": 43.0, + "new_cases_smoothed": 100.0, + "total_deaths": 238.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1881.916, + "new_cases_per_million": 4.968, + "new_cases_smoothed_per_million": 11.553, + "total_deaths_per_million": 27.497, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.495, + "new_tests": 9467.0, + "total_tests": 433341.0, + "total_tests_per_thousand": 50.065, + "new_tests_per_thousand": 1.094, + "new_tests_smoothed": 8894.0, + "new_tests_smoothed_per_thousand": 1.028, + "tests_per_case": 88.94, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-07", + "total_cases": 16310.0, + "new_cases": 21.0, + "new_cases_smoothed": 68.0, + "total_deaths": 239.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1884.342, + "new_cases_per_million": 2.426, + "new_cases_smoothed_per_million": 7.856, + "total_deaths_per_million": 27.612, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 10119.0, + "total_tests": 443460.0, + "total_tests_per_thousand": 51.234, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 8921.0, + "new_tests_smoothed_per_thousand": 1.031, + "tests_per_case": 131.191, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-08", + "total_cases": 16381.0, + "new_cases": 71.0, + "new_cases_smoothed": 62.143, + "total_deaths": 240.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1892.545, + "new_cases_per_million": 8.203, + "new_cases_smoothed_per_million": 7.18, + "total_deaths_per_million": 27.728, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8156.0, + "total_tests": 451616.0, + "total_tests_per_thousand": 52.177, + "new_tests_per_thousand": 0.942, + "new_tests_smoothed": 8508.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 136.91, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-09", + "total_cases": 16436.0, + "new_cases": 55.0, + "new_cases_smoothed": 47.857, + "total_deaths": 245.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1898.899, + "new_cases_per_million": 6.354, + "new_cases_smoothed_per_million": 5.529, + "total_deaths_per_million": 28.306, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 3868.0, + "total_tests": 455484.0, + "total_tests_per_thousand": 52.623, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 8265.0, + "new_tests_smoothed_per_thousand": 0.955, + "tests_per_case": 172.701, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-10", + "total_cases": 16454.0, + "new_cases": 18.0, + "new_cases_smoothed": 38.429, + "total_deaths": 247.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1900.979, + "new_cases_per_million": 2.08, + "new_cases_smoothed_per_million": 4.44, + "total_deaths_per_million": 28.537, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 4944.0, + "total_tests": 460428.0, + "total_tests_per_thousand": 53.195, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 7824.0, + "new_tests_smoothed_per_thousand": 0.904, + "tests_per_case": 203.59900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-11", + "total_cases": 16477.0, + "new_cases": 23.0, + "new_cases_smoothed": 38.429, + "total_deaths": 252.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1903.636, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 4.44, + "total_deaths_per_million": 29.114, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 9217.0, + "total_tests": 469645.0, + "total_tests_per_thousand": 54.259, + "new_tests_per_thousand": 1.065, + "new_tests_smoothed": 7818.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 203.442, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-12", + "total_cases": 16506.0, + "new_cases": 29.0, + "new_cases_smoothed": 37.143, + "total_deaths": 258.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1906.987, + "new_cases_per_million": 3.35, + "new_cases_smoothed_per_million": 4.291, + "total_deaths_per_million": 29.807, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.38, + "new_tests": 7538.0, + "total_tests": 477183.0, + "total_tests_per_thousand": 55.13, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 7616.0, + "new_tests_smoothed_per_thousand": 0.88, + "tests_per_case": 205.046, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-13", + "total_cases": 16529.0, + "new_cases": 23.0, + "new_cases_smoothed": 34.286, + "total_deaths": 260.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1909.644, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 3.961, + "total_deaths_per_million": 30.039, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 8272.0, + "total_tests": 485455.0, + "total_tests_per_thousand": 56.086, + "new_tests_per_thousand": 0.956, + "new_tests_smoothed": 7445.0, + "new_tests_smoothed_per_thousand": 0.86, + "tests_per_case": 217.146, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-14", + "total_cases": 16548.0, + "new_cases": 19.0, + "new_cases_smoothed": 34.0, + "total_deaths": 264.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1911.839, + "new_cases_per_million": 2.195, + "new_cases_smoothed_per_million": 3.928, + "total_deaths_per_million": 30.501, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 8416.0, + "total_tests": 493871.0, + "total_tests_per_thousand": 57.058, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 7202.0, + "new_tests_smoothed_per_thousand": 0.832, + "tests_per_case": 211.824, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-15", + "total_cases": 16579.0, + "new_cases": 31.0, + "new_cases_smoothed": 28.286, + "total_deaths": 265.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1915.42, + "new_cases_per_million": 3.582, + "new_cases_smoothed_per_million": 3.268, + "total_deaths_per_million": 30.616, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 5696.0, + "total_tests": 499567.0, + "total_tests_per_thousand": 57.716, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 6850.0, + "new_tests_smoothed_per_thousand": 0.791, + "tests_per_case": 242.172, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-16", + "total_cases": 16589.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.857, + "total_deaths": 266.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1916.576, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 2.525, + "total_deaths_per_million": 30.732, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 1502.0, + "total_tests": 501069.0, + "total_tests_per_thousand": 57.89, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 6512.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 297.935, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-17", + "total_cases": 16608.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.0, + "total_deaths": 268.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1918.771, + "new_cases_per_million": 2.195, + "new_cases_smoothed_per_million": 2.542, + "total_deaths_per_million": 30.963, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 4633.0, + "total_tests": 505702.0, + "total_tests_per_thousand": 58.425, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 6468.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 294.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-18", + "total_cases": 16617.0, + "new_cases": 9.0, + "new_cases_smoothed": 20.0, + "total_deaths": 272.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1919.811, + "new_cases_per_million": 1.04, + "new_cases_smoothed_per_million": 2.311, + "total_deaths_per_million": 31.425, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 7692.0, + "total_tests": 513394.0, + "total_tests_per_thousand": 59.314, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 6250.0, + "new_tests_smoothed_per_thousand": 0.722, + "tests_per_case": 312.5, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 16621.0, + "new_cases": 4.0, + "new_cases_smoothed": 16.429, + "total_deaths": 272.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1920.273, + "new_cases_per_million": 0.462, + "new_cases_smoothed_per_million": 1.898, + "total_deaths_per_million": 31.425, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 7141.0, + "total_tests": 520535.0, + "total_tests_per_thousand": 60.139, + "new_tests_per_thousand": 0.825, + "new_tests_smoothed": 6193.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 376.965, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 16650.0, + "new_cases": 29.0, + "new_cases_smoothed": 17.286, + "total_deaths": 277.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1923.623, + "new_cases_per_million": 3.35, + "new_cases_smoothed_per_million": 1.997, + "total_deaths_per_million": 32.003, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.281, + "new_tests": 5967.0, + "total_tests": 526502.0, + "total_tests_per_thousand": 60.828, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 5864.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 339.24, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-21", + "total_cases": 16670.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.429, + "total_deaths": 279.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1925.934, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 2.014, + "total_deaths_per_million": 32.234, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 6164.0, + "total_tests": 532666.0, + "total_tests_per_thousand": 61.54, + "new_tests_per_thousand": 0.712, + "new_tests_smoothed": 5542.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 317.98400000000004, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-22", + "total_cases": 16690.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.857, + "total_deaths": 279.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1928.245, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 1.832, + "total_deaths_per_million": 32.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 4996.0, + "total_tests": 537662.0, + "total_tests_per_thousand": 62.118, + "new_tests_per_thousand": 0.577, + "new_tests_smoothed": 5442.0, + "new_tests_smoothed_per_thousand": 0.629, + "tests_per_case": 343.189, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-23", + "total_cases": 16690.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 279.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1928.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.667, + "total_deaths_per_million": 32.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 717.0, + "total_tests": 538379.0, + "total_tests_per_thousand": 62.201, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 5330.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 369.406, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 16690.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 279.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1928.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.353, + "total_deaths_per_million": 32.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 3807.0, + "total_tests": 542186.0, + "total_tests_per_thousand": 62.64, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 5212.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 444.92699999999996, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 16720.0, + "new_cases": 30.0, + "new_cases_smoothed": 14.714, + "total_deaths": 280.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1931.711, + "new_cases_per_million": 3.466, + "new_cases_smoothed_per_million": 1.7, + "total_deaths_per_million": 32.349, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5334.0, + "total_tests": 547520.0, + "total_tests_per_thousand": 63.257, + "new_tests_per_thousand": 0.616, + "new_tests_smoothed": 4875.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 331.311, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 16734.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.143, + "total_deaths": 281.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1933.328, + "new_cases_per_million": 1.617, + "new_cases_smoothed_per_million": 1.865, + "total_deaths_per_million": 32.465, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 6818.0, + "total_tests": 554338.0, + "total_tests_per_thousand": 64.044, + "new_tests_per_thousand": 0.788, + "new_tests_smoothed": 4829.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 299.142, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 16757.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.286, + "total_deaths": 281.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1935.985, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.766, + "total_deaths_per_million": 32.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6728.0, + "total_tests": 561066.0, + "total_tests_per_thousand": 64.822, + "new_tests_per_thousand": 0.777, + "new_tests_smoothed": 4938.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 323.047, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 16793.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.571, + "total_deaths": 281.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1940.144, + "new_cases_per_million": 4.159, + "new_cases_smoothed_per_million": 2.03, + "total_deaths_per_million": 32.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 5352.0, + "total_tests": 566418.0, + "total_tests_per_thousand": 65.44, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 4822.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 274.423, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 16872.0, + "new_cases": 79.0, + "new_cases_smoothed": 26.0, + "total_deaths": 284.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1949.272, + "new_cases_per_million": 9.127, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 32.811, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 1863.0, + "total_tests": 568281.0, + "total_tests_per_thousand": 65.655, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 4374.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 168.231, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 16987.0, + "new_cases": 115.0, + "new_cases_smoothed": 42.429, + "total_deaths": 284.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1962.558, + "new_cases_per_million": 13.286, + "new_cases_smoothed_per_million": 4.902, + "total_deaths_per_million": 32.811, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 1059.0, + "total_tests": 569340.0, + "total_tests_per_thousand": 65.778, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 4423.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 104.24600000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 17012.0, + "new_cases": 25.0, + "new_cases_smoothed": 46.0, + "total_deaths": 284.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1965.446, + "new_cases_per_million": 2.888, + "new_cases_smoothed_per_million": 5.315, + "total_deaths_per_million": 32.811, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 5640.0, + "total_tests": 574980.0, + "total_tests_per_thousand": 66.429, + "new_tests_per_thousand": 0.652, + "new_tests_smoothed": 4685.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 101.848, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 17071.0, + "new_cases": 59.0, + "new_cases_smoothed": 50.143, + "total_deaths": 285.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1972.263, + "new_cases_per_million": 6.816, + "new_cases_smoothed_per_million": 5.793, + "total_deaths_per_million": 32.927, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 8156.0, + "total_tests": 583136.0, + "total_tests_per_thousand": 67.371, + "new_tests_per_thousand": 0.942, + "new_tests_smoothed": 5088.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 101.47, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 17219.0, + "new_cases": 148.0, + "new_cases_smoothed": 69.286, + "total_deaths": 287.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1989.361, + "new_cases_per_million": 17.099, + "new_cases_smoothed_per_million": 8.005, + "total_deaths_per_million": 33.158, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 11757.0, + "total_tests": 594893.0, + "total_tests_per_thousand": 68.73, + "new_tests_per_thousand": 1.358, + "new_tests_smoothed": 5794.0, + "new_tests_smoothed_per_thousand": 0.669, + "tests_per_case": 83.625, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-03", + "total_cases": 17342.0, + "new_cases": 123.0, + "new_cases_smoothed": 83.571, + "total_deaths": 290.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2003.572, + "new_cases_per_million": 14.211, + "new_cases_smoothed_per_million": 9.655, + "total_deaths_per_million": 33.505, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 13210.0, + "total_tests": 608103.0, + "total_tests_per_thousand": 70.256, + "new_tests_per_thousand": 1.526, + "new_tests_smoothed": 6720.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 80.41, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-04", + "total_cases": 17429.0, + "new_cases": 87.0, + "new_cases_smoothed": 90.857, + "total_deaths": 291.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2013.623, + "new_cases_per_million": 10.051, + "new_cases_smoothed_per_million": 10.497, + "total_deaths_per_million": 33.62, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 14897.0, + "total_tests": 623000.0, + "total_tests_per_thousand": 71.977, + "new_tests_per_thousand": 1.721, + "new_tests_smoothed": 8083.0, + "new_tests_smoothed_per_thousand": 0.934, + "tests_per_case": 88.964, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-05", + "total_cases": 17562.0, + "new_cases": 133.0, + "new_cases_smoothed": 98.571, + "total_deaths": 291.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2028.989, + "new_cases_per_million": 15.366, + "new_cases_smoothed_per_million": 11.388, + "total_deaths_per_million": 33.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 16472.0, + "total_tests": 639472.0, + "total_tests_per_thousand": 73.88, + "new_tests_per_thousand": 1.903, + "new_tests_smoothed": 10170.0, + "new_tests_smoothed_per_thousand": 1.175, + "tests_per_case": 103.17399999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-06", + "total_cases": 17706.0, + "new_cases": 144.0, + "new_cases_smoothed": 102.714, + "total_deaths": 292.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2045.626, + "new_cases_per_million": 16.637, + "new_cases_smoothed_per_million": 11.867, + "total_deaths_per_million": 33.736, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 11537.0, + "total_tests": 651009.0, + "total_tests_per_thousand": 75.213, + "new_tests_per_thousand": 1.333, + "new_tests_smoothed": 11667.0, + "new_tests_smoothed_per_thousand": 1.348, + "tests_per_case": 113.587, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-07", + "total_cases": 17783.0, + "new_cases": 77.0, + "new_cases_smoothed": 110.143, + "total_deaths": 297.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2054.522, + "new_cases_per_million": 8.896, + "new_cases_smoothed_per_million": 12.725, + "total_deaths_per_million": 34.313, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 15098.0, + "total_tests": 666107.0, + "total_tests_per_thousand": 76.957, + "new_tests_per_thousand": 1.744, + "new_tests_smoothed": 13018.0, + "new_tests_smoothed_per_thousand": 1.504, + "tests_per_case": 118.19200000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-08", + "total_cases": 17915.0, + "new_cases": 132.0, + "new_cases_smoothed": 120.571, + "total_deaths": 298.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2069.772, + "new_cases_per_million": 15.25, + "new_cases_smoothed_per_million": 13.93, + "total_deaths_per_million": 34.429, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 14644.0, + "total_tests": 680751.0, + "total_tests_per_thousand": 78.649, + "new_tests_per_thousand": 1.692, + "new_tests_smoothed": 13945.0, + "new_tests_smoothed_per_thousand": 1.611, + "tests_per_case": 115.65799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-09", + "total_cases": 18089.0, + "new_cases": 174.0, + "new_cases_smoothed": 124.286, + "total_deaths": 298.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2089.875, + "new_cases_per_million": 20.103, + "new_cases_smoothed_per_million": 14.359, + "total_deaths_per_million": 34.429, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 15065.0, + "total_tests": 695816.0, + "total_tests_per_thousand": 80.39, + "new_tests_per_thousand": 1.741, + "new_tests_smoothed": 14418.0, + "new_tests_smoothed_per_thousand": 1.666, + "tests_per_case": 116.007, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-10", + "total_cases": 18268.0, + "new_cases": 179.0, + "new_cases_smoothed": 132.286, + "total_deaths": 299.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2110.556, + "new_cases_per_million": 20.68, + "new_cases_smoothed_per_million": 15.283, + "total_deaths_per_million": 34.544, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 18466.0, + "total_tests": 714282.0, + "total_tests_per_thousand": 82.523, + "new_tests_per_thousand": 2.133, + "new_tests_smoothed": 15168.0, + "new_tests_smoothed_per_thousand": 1.752, + "tests_per_case": 114.661, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-11", + "total_cases": 18355.0, + "new_cases": 87.0, + "new_cases_smoothed": 132.286, + "total_deaths": 299.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2120.607, + "new_cases_per_million": 10.051, + "new_cases_smoothed_per_million": 15.283, + "total_deaths_per_million": 34.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 15807.0, + "total_tests": 730089.0, + "total_tests_per_thousand": 84.349, + "new_tests_per_thousand": 1.826, + "new_tests_smoothed": 15298.0, + "new_tests_smoothed_per_thousand": 1.767, + "tests_per_case": 115.64399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-12", + "total_cases": 18701.0, + "new_cases": 346.0, + "new_cases_smoothed": 162.714, + "total_deaths": 300.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2160.581, + "new_cases_per_million": 39.974, + "new_cases_smoothed_per_million": 18.799, + "total_deaths_per_million": 34.66, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 13132.0, + "total_tests": 743221.0, + "total_tests_per_thousand": 85.866, + "new_tests_per_thousand": 1.517, + "new_tests_smoothed": 14821.0, + "new_tests_smoothed_per_thousand": 1.712, + "tests_per_case": 91.086, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-13", + "total_cases": 18876.0, + "new_cases": 175.0, + "new_cases_smoothed": 167.143, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2180.8, + "new_cases_per_million": 20.218, + "new_cases_smoothed_per_million": 19.311, + "total_deaths_per_million": 34.66, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 6987.0, + "total_tests": 750208.0, + "total_tests_per_thousand": 86.674, + "new_tests_per_thousand": 0.807, + "new_tests_smoothed": 14171.0, + "new_tests_smoothed_per_thousand": 1.637, + "tests_per_case": 84.78399999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-14", + "total_cases": 19008.0, + "new_cases": 132.0, + "new_cases_smoothed": 175.0, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2196.05, + "new_cases_per_million": 15.25, + "new_cases_smoothed_per_million": 20.218, + "total_deaths_per_million": 34.66, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 8838.0, + "total_tests": 759046.0, + "total_tests_per_thousand": 87.695, + "new_tests_per_thousand": 1.021, + "new_tests_smoothed": 13277.0, + "new_tests_smoothed_per_thousand": 1.534, + "tests_per_case": 75.869, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-15", + "total_cases": 19121.0, + "new_cases": 113.0, + "new_cases_smoothed": 172.286, + "total_deaths": 302.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2209.105, + "new_cases_per_million": 13.055, + "new_cases_smoothed_per_million": 19.905, + "total_deaths_per_million": 34.891, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 14372.0, + "total_tests": 773418.0, + "total_tests_per_thousand": 89.355, + "new_tests_per_thousand": 1.66, + "new_tests_smoothed": 13238.0, + "new_tests_smoothed_per_thousand": 1.529, + "tests_per_case": 76.837, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-16", + "total_cases": 19338.0, + "new_cases": 217.0, + "new_cases_smoothed": 178.429, + "total_deaths": 302.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2234.176, + "new_cases_per_million": 25.071, + "new_cases_smoothed_per_million": 20.614, + "total_deaths_per_million": 34.891, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 16239.0, + "total_tests": 789657.0, + "total_tests_per_thousand": 91.231, + "new_tests_per_thousand": 1.876, + "new_tests_smoothed": 13406.0, + "new_tests_smoothed_per_thousand": 1.549, + "tests_per_case": 75.134, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-17", + "total_cases": 19637.0, + "new_cases": 299.0, + "new_cases_smoothed": 195.571, + "total_deaths": 303.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2268.72, + "new_cases_per_million": 34.544, + "new_cases_smoothed_per_million": 22.595, + "total_deaths_per_million": 35.006, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 16022.0, + "total_tests": 805679.0, + "total_tests_per_thousand": 93.082, + "new_tests_per_thousand": 1.851, + "new_tests_smoothed": 13057.0, + "new_tests_smoothed_per_thousand": 1.509, + "tests_per_case": 66.763, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-18", + "total_cases": 19894.0, + "new_cases": 257.0, + "new_cases_smoothed": 219.857, + "total_deaths": 303.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2298.412, + "new_cases_per_million": 29.692, + "new_cases_smoothed_per_million": 25.401, + "total_deaths_per_million": 35.006, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 17390.0, + "total_tests": 823069.0, + "total_tests_per_thousand": 95.092, + "new_tests_per_thousand": 2.009, + "new_tests_smoothed": 13283.0, + "new_tests_smoothed_per_thousand": 1.535, + "tests_per_case": 60.417, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-19", + "total_cases": 20036.0, + "new_cases": 142.0, + "new_cases_smoothed": 190.714, + "total_deaths": 303.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2314.818, + "new_cases_per_million": 16.406, + "new_cases_smoothed_per_million": 22.034, + "total_deaths_per_million": 35.006, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 12784.0, + "total_tests": 835853.0, + "total_tests_per_thousand": 96.569, + "new_tests_per_thousand": 1.477, + "new_tests_smoothed": 13233.0, + "new_tests_smoothed_per_thousand": 1.529, + "tests_per_case": 69.387, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-20", + "total_cases": 20339.0, + "new_cases": 303.0, + "new_cases_smoothed": 209.0, + "total_deaths": 304.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2349.824, + "new_cases_per_million": 35.006, + "new_cases_smoothed_per_million": 24.146, + "total_deaths_per_million": 35.122, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6009.0, + "total_tests": 841862.0, + "total_tests_per_thousand": 97.263, + "new_tests_per_thousand": 0.694, + "new_tests_smoothed": 13093.0, + "new_tests_smoothed_per_thousand": 1.513, + "tests_per_case": 62.646, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-21", + "total_cases": 20633.0, + "new_cases": 294.0, + "new_cases_smoothed": 232.143, + "total_deaths": 305.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2383.791, + "new_cases_per_million": 33.967, + "new_cases_smoothed_per_million": 26.82, + "total_deaths_per_million": 35.238, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 9150.0, + "total_tests": 851012.0, + "total_tests_per_thousand": 98.32, + "new_tests_per_thousand": 1.057, + "new_tests_smoothed": 13138.0, + "new_tests_smoothed_per_thousand": 1.518, + "tests_per_case": 56.593999999999994, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-22", + "total_cases": 20778.0, + "new_cases": 145.0, + "new_cases_smoothed": 236.714, + "total_deaths": 306.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2400.543, + "new_cases_per_million": 16.752, + "new_cases_smoothed_per_million": 27.348, + "total_deaths_per_million": 35.353, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 14009.0, + "total_tests": 865021.0, + "total_tests_per_thousand": 99.938, + "new_tests_per_thousand": 1.619, + "new_tests_smoothed": 13086.0, + "new_tests_smoothed_per_thousand": 1.512, + "tests_per_case": 55.282, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-23", + "total_cases": 21082.0, + "new_cases": 304.0, + "new_cases_smoothed": 249.143, + "total_deaths": 307.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2435.665, + "new_cases_per_million": 35.122, + "new_cases_smoothed_per_million": 28.784, + "total_deaths_per_million": 35.469, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 19846.0, + "total_tests": 884867.0, + "total_tests_per_thousand": 102.231, + "new_tests_per_thousand": 2.293, + "new_tests_smoothed": 13601.0, + "new_tests_smoothed_per_thousand": 1.571, + "tests_per_case": 54.591, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-24", + "total_cases": 21512.0, + "new_cases": 430.0, + "new_cases_smoothed": 267.857, + "total_deaths": 308.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2485.344, + "new_cases_per_million": 49.679, + "new_cases_smoothed_per_million": 30.946, + "total_deaths_per_million": 35.584, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 18393.0, + "total_tests": 903260.0, + "total_tests_per_thousand": 104.356, + "new_tests_per_thousand": 2.125, + "new_tests_smoothed": 13940.0, + "new_tests_smoothed_per_thousand": 1.611, + "tests_per_case": 52.043, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-25", + "total_cases": 22044.0, + "new_cases": 532.0, + "new_cases_smoothed": 307.143, + "total_deaths": 308.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2546.808, + "new_cases_per_million": 61.464, + "new_cases_smoothed_per_million": 35.485, + "total_deaths_per_million": 35.584, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 18662.0, + "total_tests": 921922.0, + "total_tests_per_thousand": 106.512, + "new_tests_per_thousand": 2.156, + "new_tests_smoothed": 14122.0, + "new_tests_smoothed_per_thousand": 1.632, + "tests_per_case": 45.979, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-26", + "total_cases": 22400.0, + "new_cases": 356.0, + "new_cases_smoothed": 337.714, + "total_deaths": 309.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2587.938, + "new_cases_per_million": 41.13, + "new_cases_smoothed_per_million": 39.017, + "total_deaths_per_million": 35.7, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 16526.0, + "total_tests": 938448.0, + "total_tests_per_thousand": 108.422, + "new_tests_per_thousand": 1.909, + "new_tests_smoothed": 14656.0, + "new_tests_smoothed_per_thousand": 1.693, + "tests_per_case": 43.398, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-27", + "total_cases": 22800.0, + "new_cases": 400.0, + "new_cases_smoothed": 351.571, + "total_deaths": 314.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2634.151, + "new_cases_per_million": 46.213, + "new_cases_smoothed_per_million": 40.618, + "total_deaths_per_million": 36.277, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 10490.0, + "total_tests": 948938.0, + "total_tests_per_thousand": 109.634, + "new_tests_per_thousand": 1.212, + "new_tests_smoothed": 15297.0, + "new_tests_smoothed_per_thousand": 1.767, + "tests_per_case": 43.51, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-28", + "total_cases": 23421.0, + "new_cases": 621.0, + "new_cases_smoothed": 398.286, + "total_deaths": 317.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2705.897, + "new_cases_per_million": 71.746, + "new_cases_smoothed_per_million": 46.015, + "total_deaths_per_million": 36.624, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 10389.0, + "total_tests": 959327.0, + "total_tests_per_thousand": 110.834, + "new_tests_per_thousand": 1.2, + "new_tests_smoothed": 15474.0, + "new_tests_smoothed_per_thousand": 1.788, + "tests_per_case": 38.852, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-29", + "total_cases": 23755.0, + "new_cases": 334.0, + "new_cases_smoothed": 425.286, + "total_deaths": 318.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2744.485, + "new_cases_per_million": 38.588, + "new_cases_smoothed_per_million": 49.135, + "total_deaths_per_million": 36.739, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 21016.0, + "total_tests": 980343.0, + "total_tests_per_thousand": 113.262, + "new_tests_per_thousand": 2.428, + "new_tests_smoothed": 16475.0, + "new_tests_smoothed_per_thousand": 1.903, + "tests_per_case": 38.739000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-30", + "total_cases": 24441.0, + "new_cases": 686.0, + "new_cases_smoothed": 479.857, + "total_deaths": 319.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2823.74, + "new_cases_per_million": 79.256, + "new_cases_smoothed_per_million": 55.439, + "total_deaths_per_million": 36.855, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 20838.0, + "total_tests": 1001181.0, + "total_tests_per_thousand": 115.669, + "new_tests_per_thousand": 2.407, + "new_tests_smoothed": 16616.0, + "new_tests_smoothed_per_thousand": 1.92, + "tests_per_case": 34.626999999999995, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-01", + "total_cases": 25244.0, + "new_cases": 803.0, + "new_cases_smoothed": 533.143, + "total_deaths": 320.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2916.513, + "new_cases_per_million": 92.773, + "new_cases_smoothed_per_million": 61.596, + "total_deaths_per_million": 36.971, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 21460.0, + "total_tests": 1022641.0, + "total_tests_per_thousand": 118.149, + "new_tests_per_thousand": 2.479, + "new_tests_smoothed": 17054.0, + "new_tests_smoothed_per_thousand": 1.97, + "tests_per_case": 31.988000000000003, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-02", + "total_cases": 26257.0, + "new_cases": 1013.0, + "new_cases_smoothed": 601.857, + "total_deaths": 322.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3033.548, + "new_cases_per_million": 117.035, + "new_cases_smoothed_per_million": 69.534, + "total_deaths_per_million": 37.202, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 25039.0, + "total_tests": 1047680.0, + "total_tests_per_thousand": 121.042, + "new_tests_per_thousand": 2.893, + "new_tests_smoothed": 17965.0, + "new_tests_smoothed_per_thousand": 2.076, + "tests_per_case": 29.849, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-03", + "total_cases": 27542.0, + "new_cases": 1285.0, + "new_cases_smoothed": 734.571, + "total_deaths": 325.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3182.008, + "new_cases_per_million": 148.46, + "new_cases_smoothed_per_million": 84.867, + "total_deaths_per_million": 37.548, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 20953.0, + "total_tests": 1068633.0, + "total_tests_per_thousand": 123.462, + "new_tests_per_thousand": 2.421, + "new_tests_smoothed": 18598.0, + "new_tests_smoothed_per_thousand": 2.149, + "tests_per_case": 25.318, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-04", + "total_cases": 28055.0, + "new_cases": 513.0, + "new_cases_smoothed": 750.714, + "total_deaths": 326.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3241.276, + "new_cases_per_million": 59.268, + "new_cases_smoothed_per_million": 86.732, + "total_deaths_per_million": 37.664, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 17306.0, + "total_tests": 1085939.0, + "total_tests_per_thousand": 125.462, + "new_tests_per_thousand": 1.999, + "new_tests_smoothed": 19572.0, + "new_tests_smoothed_per_thousand": 2.261, + "tests_per_case": 26.070999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-05", + "total_cases": 29170.0, + "new_cases": 1115.0, + "new_cases_smoothed": 821.286, + "total_deaths": 330.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3370.096, + "new_cases_per_million": 128.819, + "new_cases_smoothed_per_million": 94.886, + "total_deaths_per_million": 38.126, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 21109.0, + "total_tests": 1107048.0, + "total_tests_per_thousand": 127.9, + "new_tests_per_thousand": 2.439, + "new_tests_smoothed": 21103.0, + "new_tests_smoothed_per_thousand": 2.438, + "tests_per_case": 25.695, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-07-06", + "total_cases": 29958.0, + "new_cases": 788.0, + "new_cases_smoothed": 886.143, + "total_deaths": 331.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3461.135, + "new_cases_per_million": 91.04, + "new_cases_smoothed_per_million": 102.379, + "total_deaths_per_million": 38.241, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 25599.0, + "total_tests": 1132647.0, + "total_tests_per_thousand": 130.858, + "new_tests_per_thousand": 2.958, + "new_tests_smoothed": 21758.0, + "new_tests_smoothed_per_thousand": 2.514, + "tests_per_case": 24.554000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-07", + "total_cases": 31186.0, + "new_cases": 1228.0, + "new_cases_smoothed": 963.571, + "total_deaths": 338.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3603.01, + "new_cases_per_million": 141.874, + "new_cases_smoothed_per_million": 111.324, + "total_deaths_per_million": 39.05, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.314, + "new_tests": 28593.0, + "total_tests": 1161240.0, + "total_tests_per_thousand": 134.161, + "new_tests_per_thousand": 3.303, + "new_tests_smoothed": 22866.0, + "new_tests_smoothed_per_thousand": 2.642, + "tests_per_case": 23.73, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-08", + "total_cases": 32222.0, + "new_cases": 1036.0, + "new_cases_smoothed": 996.857, + "total_deaths": 342.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3722.702, + "new_cases_per_million": 119.692, + "new_cases_smoothed_per_million": 115.17, + "total_deaths_per_million": 39.512, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 29386.0, + "total_tests": 1190626.0, + "total_tests_per_thousand": 137.557, + "new_tests_per_thousand": 3.395, + "new_tests_smoothed": 23998.0, + "new_tests_smoothed_per_thousand": 2.773, + "tests_per_case": 24.074, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-09", + "total_cases": 33557.0, + "new_cases": 1335.0, + "new_cases_smoothed": 1042.857, + "total_deaths": 344.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3876.938, + "new_cases_per_million": 154.236, + "new_cases_smoothed_per_million": 120.484, + "total_deaths_per_million": 39.743, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 30045.0, + "total_tests": 1220671.0, + "total_tests_per_thousand": 141.028, + "new_tests_per_thousand": 3.471, + "new_tests_smoothed": 24713.0, + "new_tests_smoothed_per_thousand": 2.855, + "tests_per_case": 23.697, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-10", + "total_cases": 34825.0, + "new_cases": 1268.0, + "new_cases_smoothed": 1040.429, + "total_deaths": 348.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 4023.434, + "new_cases_per_million": 146.496, + "new_cases_smoothed_per_million": 120.204, + "total_deaths_per_million": 40.205, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.38, + "new_tests": 25863.0, + "total_tests": 1246534.0, + "total_tests_per_thousand": 144.016, + "new_tests_per_thousand": 2.988, + "new_tests_smoothed": 25414.0, + "new_tests_smoothed_per_thousand": 2.936, + "tests_per_case": 24.426, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-11", + "total_cases": 36266.0, + "new_cases": 1441.0, + "new_cases_smoothed": 1173.0, + "total_deaths": 351.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 4189.917, + "new_cases_per_million": 166.483, + "new_cases_smoothed_per_million": 135.52, + "total_deaths_per_million": 40.552, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 20469.0, + "total_tests": 1267003.0, + "total_tests_per_thousand": 146.381, + "new_tests_per_thousand": 2.365, + "new_tests_smoothed": 25866.0, + "new_tests_smoothed_per_thousand": 2.988, + "tests_per_case": 22.051, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-12", + "total_cases": 37463.0, + "new_cases": 1197.0, + "new_cases_smoothed": 1184.714, + "total_deaths": 354.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4328.21, + "new_cases_per_million": 138.293, + "new_cases_smoothed_per_million": 136.874, + "total_deaths_per_million": 40.899, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 21760.0, + "total_tests": 1288763.0, + "total_tests_per_thousand": 148.895, + "new_tests_per_thousand": 2.514, + "new_tests_smoothed": 25959.0, + "new_tests_smoothed_per_thousand": 2.999, + "tests_per_case": 21.912, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-13", + "total_cases": 38670.0, + "new_cases": 1207.0, + "new_cases_smoothed": 1244.571, + "total_deaths": 362.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 4467.658, + "new_cases_per_million": 139.448, + "new_cases_smoothed_per_million": 143.789, + "total_deaths_per_million": 41.823, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.512, + "new_tests": 29285.0, + "total_tests": 1318048.0, + "total_tests_per_thousand": 152.278, + "new_tests_per_thousand": 3.383, + "new_tests_smoothed": 26486.0, + "new_tests_smoothed_per_thousand": 3.06, + "tests_per_case": 21.281, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-07-14", + "total_cases": 40632.0, + "new_cases": 1962.0, + "new_cases_smoothed": 1349.429, + "total_deaths": 365.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4694.334, + "new_cases_per_million": 226.676, + "new_cases_smoothed_per_million": 155.903, + "total_deaths_per_million": 42.17, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 31749.0, + "total_tests": 1349797.0, + "total_tests_per_thousand": 155.946, + "new_tests_per_thousand": 3.668, + "new_tests_smoothed": 26937.0, + "new_tests_smoothed_per_thousand": 3.112, + "tests_per_case": 19.962, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-07-15", + "total_cases": 42360.0, + "new_cases": 1728.0, + "new_cases_smoothed": 1448.286, + "total_deaths": 371.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4893.975, + "new_cases_per_million": 199.641, + "new_cases_smoothed_per_million": 167.325, + "total_deaths_per_million": 42.863, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.479, + "new_tests": 30690.0, + "total_tests": 1380487.0, + "total_tests_per_thousand": 159.492, + "new_tests_per_thousand": 3.546, + "new_tests_smoothed": 27123.0, + "new_tests_smoothed_per_thousand": 3.134, + "tests_per_case": 18.727999999999998, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-07-16", + "total_cases": 44714.0, + "new_cases": 2354.0, + "new_cases_smoothed": 1593.857, + "total_deaths": 380.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5165.939, + "new_cases_per_million": 271.965, + "new_cases_smoothed_per_million": 184.143, + "total_deaths_per_million": 43.903, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 31073.0, + "total_tests": 1411560.0, + "total_tests_per_thousand": 163.082, + "new_tests_per_thousand": 3.59, + "new_tests_smoothed": 27270.0, + "new_tests_smoothed_per_thousand": 3.151, + "tests_per_case": 17.109, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-07-17", + "total_cases": 46059.0, + "new_cases": 1345.0, + "new_cases_smoothed": 1604.857, + "total_deaths": 384.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5321.331, + "new_cases_per_million": 155.392, + "new_cases_smoothed_per_million": 185.414, + "total_deaths_per_million": 44.365, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 25716.0, + "total_tests": 1437276.0, + "total_tests_per_thousand": 166.053, + "new_tests_per_thousand": 2.971, + "new_tests_smoothed": 27249.0, + "new_tests_smoothed_per_thousand": 3.148, + "tests_per_case": 16.979, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-07-18", + "total_cases": 47459.0, + "new_cases": 1400.0, + "new_cases_smoothed": 1599.0, + "total_deaths": 392.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 5483.077, + "new_cases_per_million": 161.746, + "new_cases_smoothed_per_million": 184.737, + "total_deaths_per_million": 45.289, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.677, + "new_tests": 20468.0, + "total_tests": 1457744.0, + "total_tests_per_thousand": 168.417, + "new_tests_per_thousand": 2.365, + "new_tests_smoothed": 27249.0, + "new_tests_smoothed_per_thousand": 3.148, + "tests_per_case": 17.041, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-19", + "total_cases": 49365.0, + "new_cases": 1906.0, + "new_cases_smoothed": 1700.286, + "total_deaths": 401.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5703.283, + "new_cases_per_million": 220.206, + "new_cases_smoothed_per_million": 196.439, + "total_deaths_per_million": 46.329, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.776, + "new_tests": 19851.0, + "total_tests": 1477595.0, + "total_tests_per_thousand": 170.711, + "new_tests_per_thousand": 2.293, + "new_tests_smoothed": 26976.0, + "new_tests_smoothed_per_thousand": 3.117, + "tests_per_case": 15.866, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-20", + "total_cases": 50289.0, + "new_cases": 924.0, + "new_cases_smoothed": 1659.857, + "total_deaths": 409.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5810.035, + "new_cases_per_million": 106.752, + "new_cases_smoothed_per_million": 191.768, + "total_deaths_per_million": 47.253, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.776, + "new_tests": 27601.0, + "total_tests": 1505196.0, + "total_tests_per_thousand": 173.9, + "new_tests_per_thousand": 3.189, + "new_tests_smoothed": 26735.0, + "new_tests_smoothed_per_thousand": 3.089, + "tests_per_case": 16.107, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-21", + "total_cases": 51676.0, + "new_cases": 1387.0, + "new_cases_smoothed": 1577.714, + "total_deaths": 415.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 5970.28, + "new_cases_per_million": 160.244, + "new_cases_smoothed_per_million": 182.278, + "total_deaths_per_million": 47.946, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 30169.0, + "total_tests": 1535365.0, + "total_tests_per_thousand": 177.385, + "new_tests_per_thousand": 3.486, + "new_tests_smoothed": 26510.0, + "new_tests_smoothed_per_thousand": 3.063, + "tests_per_case": 16.803, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-22", + "total_cases": 54042.0, + "new_cases": 2366.0, + "new_cases_smoothed": 1668.857, + "total_deaths": 425.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6243.631, + "new_cases_per_million": 273.351, + "new_cases_smoothed_per_million": 192.808, + "total_deaths_per_million": 49.101, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 0.891, + "new_tests": 28815.0, + "total_tests": 1564180.0, + "total_tests_per_thousand": 180.714, + "new_tests_per_thousand": 3.329, + "new_tests_smoothed": 26242.0, + "new_tests_smoothed_per_thousand": 3.032, + "tests_per_case": 15.725, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-23", + "total_cases": 56085.0, + "new_cases": 2043.0, + "new_cases_smoothed": 1624.429, + "total_deaths": 430.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 6479.664, + "new_cases_per_million": 236.034, + "new_cases_smoothed_per_million": 187.675, + "total_deaths_per_million": 49.679, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 32537.0, + "total_tests": 1596717.0, + "total_tests_per_thousand": 184.473, + "new_tests_per_thousand": 3.759, + "new_tests_smoothed": 26451.0, + "new_tests_smoothed_per_thousand": 3.056, + "tests_per_case": 16.283, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-24", + "total_cases": 57982.0, + "new_cases": 1897.0, + "new_cases_smoothed": 1703.286, + "total_deaths": 442.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6698.83, + "new_cases_per_million": 219.166, + "new_cases_smoothed_per_million": 196.786, + "total_deaths_per_million": 51.066, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 0.957, + "new_tests": 24404.0, + "total_tests": 1621121.0, + "total_tests_per_thousand": 187.293, + "new_tests_per_thousand": 2.819, + "new_tests_smoothed": 26264.0, + "new_tests_smoothed_per_thousand": 3.034, + "tests_per_case": 15.42, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-25", + "total_cases": 59475.0, + "new_cases": 1493.0, + "new_cases_smoothed": 1716.571, + "total_deaths": 448.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 6871.321, + "new_cases_per_million": 172.491, + "new_cases_smoothed_per_million": 198.321, + "total_deaths_per_million": 51.759, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 15466.0, + "total_tests": 1636587.0, + "total_tests_per_thousand": 189.08, + "new_tests_per_thousand": 1.787, + "new_tests_smoothed": 25549.0, + "new_tests_smoothed_per_thousand": 2.952, + "tests_per_case": 14.884, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-26", + "total_cases": 60678.0, + "new_cases": 1203.0, + "new_cases_smoothed": 1616.143, + "total_deaths": 457.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 7010.307, + "new_cases_per_million": 138.986, + "new_cases_smoothed_per_million": 186.718, + "total_deaths_per_million": 52.799, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 12190.0, + "total_tests": 1648777.0, + "total_tests_per_thousand": 190.488, + "new_tests_per_thousand": 1.408, + "new_tests_smoothed": 24455.0, + "new_tests_smoothed_per_thousand": 2.825, + "tests_per_case": 15.132, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-07-27", + "total_cases": 61956.0, + "new_cases": 1278.0, + "new_cases_smoothed": 1666.714, + "total_deaths": 470.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 7157.958, + "new_cases_per_million": 147.651, + "new_cases_smoothed_per_million": 192.56, + "total_deaths_per_million": 54.3, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 28212.0, + "total_tests": 1676989.0, + "total_tests_per_thousand": 193.747, + "new_tests_per_thousand": 3.259, + "new_tests_smoothed": 24542.0, + "new_tests_smoothed_per_thousand": 2.835, + "tests_per_case": 14.725, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-28", + "total_cases": 64458.0, + "new_cases": 2502.0, + "new_cases_smoothed": 1826.0, + "total_deaths": 474.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 7447.022, + "new_cases_per_million": 289.063, + "new_cases_smoothed_per_million": 210.963, + "total_deaths_per_million": 54.763, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.974, + "new_tests": 26661.0, + "total_tests": 1703650.0, + "total_tests_per_thousand": 196.828, + "new_tests_per_thousand": 3.08, + "new_tests_smoothed": 24041.0, + "new_tests_smoothed_per_thousand": 2.778, + "tests_per_case": 13.165999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-29", + "total_cases": 66555.0, + "new_cases": 2097.0, + "new_cases_smoothed": 1787.571, + "total_deaths": 486.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 7689.294, + "new_cases_per_million": 242.273, + "new_cases_smoothed_per_million": 206.523, + "total_deaths_per_million": 56.149, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 26225.0, + "total_tests": 1729875.0, + "total_tests_per_thousand": 199.858, + "new_tests_per_thousand": 3.03, + "new_tests_smoothed": 23671.0, + "new_tests_smoothed_per_thousand": 2.735, + "tests_per_case": 13.242, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-30", + "total_cases": 68556.0, + "new_cases": 2001.0, + "new_cases_smoothed": 1781.571, + "total_deaths": 491.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 7920.475, + "new_cases_per_million": 231.181, + "new_cases_smoothed_per_million": 205.83, + "total_deaths_per_million": 56.727, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 21964.0, + "total_tests": 1751839.0, + "total_tests_per_thousand": 202.395, + "new_tests_per_thousand": 2.538, + "new_tests_smoothed": 22160.0, + "new_tests_smoothed_per_thousand": 2.56, + "tests_per_case": 12.437999999999999, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-31", + "total_cases": 70379.0, + "new_cases": 1823.0, + "new_cases_smoothed": 1771.0, + "total_deaths": 503.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 8131.092, + "new_cases_per_million": 210.617, + "new_cases_smoothed_per_million": 204.609, + "total_deaths_per_million": 58.113, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 22897.0, + "total_tests": 1774736.0, + "total_tests_per_thousand": 205.04, + "new_tests_per_thousand": 2.645, + "new_tests_smoothed": 21945.0, + "new_tests_smoothed_per_thousand": 2.535, + "tests_per_case": 12.390999999999998, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-01", + "total_cases": 70970.0, + "new_cases": 591.0, + "new_cases_smoothed": 1642.143, + "total_deaths": 512.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 8199.372, + "new_cases_per_million": 68.28, + "new_cases_smoothed_per_million": 189.722, + "total_deaths_per_million": 59.153, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.056, + "new_tests": 7781.0, + "total_tests": 1782517.0, + "total_tests_per_thousand": 205.939, + "new_tests_per_thousand": 0.899, + "new_tests_smoothed": 20847.0, + "new_tests_smoothed_per_thousand": 2.409, + "tests_per_case": 12.695, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-02", + "total_cases": 72283.0, + "new_cases": 1313.0, + "new_cases_smoothed": 1657.857, + "total_deaths": 527.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 8351.067, + "new_cases_per_million": 151.695, + "new_cases_smoothed_per_million": 191.537, + "total_deaths_per_million": 60.886, + "new_deaths_per_million": 1.733, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 9997.0, + "total_tests": 1792514.0, + "total_tests_per_thousand": 207.094, + "new_tests_per_thousand": 1.155, + "new_tests_smoothed": 20534.0, + "new_tests_smoothed_per_thousand": 2.372, + "tests_per_case": 12.386, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-03", + "total_cases": 73025.0, + "new_cases": 742.0, + "new_cases_smoothed": 1581.286, + "total_deaths": 536.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 8436.792, + "new_cases_per_million": 85.725, + "new_cases_smoothed_per_million": 182.691, + "total_deaths_per_million": 61.926, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.089, + "new_tests": 23584.0, + "total_tests": 1816098.0, + "total_tests_per_thousand": 209.819, + "new_tests_per_thousand": 2.725, + "new_tests_smoothed": 19873.0, + "new_tests_smoothed_per_thousand": 2.296, + "tests_per_case": 12.568, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-04", + "total_cases": 74903.0, + "new_cases": 1878.0, + "new_cases_smoothed": 1492.143, + "total_deaths": 546.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 8653.763, + "new_cases_per_million": 216.971, + "new_cases_smoothed_per_million": 172.392, + "total_deaths_per_million": 63.081, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 1.188, + "new_tests": 26093.0, + "total_tests": 1842191.0, + "total_tests_per_thousand": 212.834, + "new_tests_per_thousand": 3.015, + "new_tests_smoothed": 19792.0, + "new_tests_smoothed_per_thousand": 2.287, + "tests_per_case": 13.264000000000001, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-05", + "total_cases": 76642.0, + "new_cases": 1739.0, + "new_cases_smoothed": 1441.0, + "total_deaths": 561.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 8854.675, + "new_cases_per_million": 200.912, + "new_cases_smoothed_per_million": 166.483, + "total_deaths_per_million": 64.814, + "new_deaths_per_million": 1.733, + "new_deaths_smoothed_per_million": 1.238, + "new_tests": 25797.0, + "total_tests": 1867988.0, + "total_tests_per_thousand": 215.814, + "new_tests_per_thousand": 2.98, + "new_tests_smoothed": 19730.0, + "new_tests_smoothed_per_thousand": 2.279, + "tests_per_case": 13.692, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-06", + "total_cases": 78324.0, + "new_cases": 1682.0, + "new_cases_smoothed": 1395.429, + "total_deaths": 565.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 9049.001, + "new_cases_per_million": 194.326, + "new_cases_smoothed_per_million": 161.218, + "total_deaths_per_million": 65.276, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 1.221, + "new_tests": 28802.0, + "total_tests": 1896790.0, + "total_tests_per_thousand": 219.142, + "new_tests_per_thousand": 3.328, + "new_tests_smoothed": 20707.0, + "new_tests_smoothed_per_thousand": 2.392, + "tests_per_case": 14.839, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-08-07", + "total_cases": 80054.0, + "new_cases": 1730.0, + "new_cases_smoothed": 1382.143, + "total_deaths": 576.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 9248.873, + "new_cases_per_million": 199.872, + "new_cases_smoothed_per_million": 159.683, + "total_deaths_per_million": 66.547, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 1.205, + "new_tests": 25293.0, + "total_tests": 1922083.0, + "total_tests_per_thousand": 222.064, + "new_tests_per_thousand": 2.922, + "new_tests_smoothed": 21050.0, + "new_tests_smoothed_per_thousand": 2.432, + "tests_per_case": 15.23, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-08", + "total_cases": 80991.0, + "new_cases": 937.0, + "new_cases_smoothed": 1431.571, + "total_deaths": 581.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 9357.127, + "new_cases_per_million": 108.254, + "new_cases_smoothed_per_million": 165.394, + "total_deaths_per_million": 67.125, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 1.139, + "new_tests": 8598.0, + "total_tests": 1930681.0, + "total_tests_per_thousand": 223.057, + "new_tests_per_thousand": 0.993, + "new_tests_smoothed": 21166.0, + "new_tests_smoothed_per_thousand": 2.445, + "tests_per_case": 14.785, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-09", + "total_cases": 82465.0, + "new_cases": 1474.0, + "new_cases_smoothed": 1454.571, + "total_deaths": 594.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 9527.423, + "new_cases_per_million": 170.296, + "new_cases_smoothed_per_million": 168.051, + "total_deaths_per_million": 68.627, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.106, + "new_tests": 12151.0, + "total_tests": 1942832.0, + "total_tests_per_thousand": 224.461, + "new_tests_per_thousand": 1.404, + "new_tests_smoothed": 21474.0, + "new_tests_smoothed_per_thousand": 2.481, + "tests_per_case": 14.763, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-10", + "total_cases": 83002.0, + "new_cases": 537.0, + "new_cases_smoothed": 1425.286, + "total_deaths": 600.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 9589.464, + "new_cases_per_million": 62.041, + "new_cases_smoothed_per_million": 164.667, + "total_deaths_per_million": 69.32, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 1.056, + "new_tests": 24367.0, + "total_tests": 1967199.0, + "total_tests_per_thousand": 227.276, + "new_tests_per_thousand": 2.815, + "new_tests_smoothed": 21586.0, + "new_tests_smoothed_per_thousand": 2.494, + "tests_per_case": 15.145, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-11", + "total_cases": 85222.0, + "new_cases": 2220.0, + "new_cases_smoothed": 1474.143, + "total_deaths": 613.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 9845.947, + "new_cases_per_million": 256.483, + "new_cases_smoothed_per_million": 170.312, + "total_deaths_per_million": 70.822, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.106, + "new_tests": 27650.0, + "total_tests": 1994849.0, + "total_tests_per_thousand": 230.471, + "new_tests_per_thousand": 3.194, + "new_tests_smoothed": 21808.0, + "new_tests_smoothed_per_thousand": 2.52, + "tests_per_case": 14.794, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-12", + "total_cases": 86959.0, + "new_cases": 1737.0, + "new_cases_smoothed": 1473.857, + "total_deaths": 622.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 10046.628, + "new_cases_per_million": 200.681, + "new_cases_smoothed_per_million": 170.279, + "total_deaths_per_million": 71.861, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 26260.0, + "total_tests": 2021109.0, + "total_tests_per_thousand": 233.505, + "new_tests_per_thousand": 3.034, + "new_tests_smoothed": 21874.0, + "new_tests_smoothed_per_thousand": 2.527, + "tests_per_case": 14.841, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-13", + "total_cases": 88554.0, + "new_cases": 1595.0, + "new_cases_smoothed": 1461.429, + "total_deaths": 639.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 10230.903, + "new_cases_per_million": 184.275, + "new_cases_smoothed_per_million": 168.843, + "total_deaths_per_million": 73.826, + "new_deaths_per_million": 1.964, + "new_deaths_smoothed_per_million": 1.221, + "new_tests": 28905.0, + "total_tests": 2050014.0, + "total_tests_per_thousand": 236.844, + "new_tests_per_thousand": 3.339, + "new_tests_smoothed": 21889.0, + "new_tests_smoothed_per_thousand": 2.529, + "tests_per_case": 14.978, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-14", + "total_cases": 89822.0, + "new_cases": 1268.0, + "new_cases_smoothed": 1395.429, + "total_deaths": 651.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 10377.399, + "new_cases_per_million": 146.496, + "new_cases_smoothed_per_million": 161.218, + "total_deaths_per_million": 75.212, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.238, + "new_tests": 20908.0, + "total_tests": 2070922.0, + "total_tests_per_thousand": 239.26, + "new_tests_per_thousand": 2.416, + "new_tests_smoothed": 21263.0, + "new_tests_smoothed_per_thousand": 2.457, + "tests_per_case": 15.238, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-15", + "total_cases": 91080.0, + "new_cases": 1258.0, + "new_cases_smoothed": 1441.286, + "total_deaths": 665.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 10522.739, + "new_cases_per_million": 145.34, + "new_cases_smoothed_per_million": 166.516, + "total_deaths_per_million": 76.829, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.386, + "new_tests": 9410.0, + "total_tests": 2080332.0, + "total_tests_per_thousand": 240.347, + "new_tests_per_thousand": 1.087, + "new_tests_smoothed": 21379.0, + "new_tests_smoothed_per_thousand": 2.47, + "tests_per_case": 14.833, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-08-16", + "total_cases": 92343.0, + "new_cases": 1263.0, + "new_cases_smoothed": 1411.143, + "total_deaths": 674.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 10668.657, + "new_cases_per_million": 145.918, + "new_cases_smoothed_per_million": 163.033, + "total_deaths_per_million": 77.869, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.32, + "new_tests": 12368.0, + "total_tests": 2092700.0, + "total_tests_per_thousand": 241.776, + "new_tests_per_thousand": 1.429, + "new_tests_smoothed": 21410.0, + "new_tests_smoothed_per_thousand": 2.474, + "tests_per_case": 15.172, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-17", + "total_cases": 92680.0, + "new_cases": 337.0, + "new_cases_smoothed": 1382.571, + "total_deaths": 685.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 10707.592, + "new_cases_per_million": 38.935, + "new_cases_smoothed_per_million": 159.733, + "total_deaths_per_million": 79.14, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 1.403, + "new_tests": 26042.0, + "total_tests": 2118742.0, + "total_tests_per_thousand": 244.784, + "new_tests_per_thousand": 3.009, + "new_tests_smoothed": 21649.0, + "new_tests_smoothed_per_thousand": 2.501, + "tests_per_case": 15.659, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-18", + "total_cases": 95129.0, + "new_cases": 2449.0, + "new_cases_smoothed": 1415.286, + "total_deaths": 692.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 10990.532, + "new_cases_per_million": 282.94, + "new_cases_smoothed_per_million": 163.512, + "total_deaths_per_million": 79.949, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.304, + "new_tests": 27919.0, + "total_tests": 2146661.0, + "total_tests_per_thousand": 248.01, + "new_tests_per_thousand": 3.226, + "new_tests_smoothed": 21687.0, + "new_tests_smoothed_per_thousand": 2.506, + "tests_per_case": 15.323, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-19", + "total_cases": 96409.0, + "new_cases": 1280.0, + "new_cases_smoothed": 1350.0, + "total_deaths": 708.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 11138.414, + "new_cases_per_million": 147.882, + "new_cases_smoothed_per_million": 155.969, + "total_deaths_per_million": 81.797, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 1.419, + "new_tests": 28401.0, + "total_tests": 2175062.0, + "total_tests_per_thousand": 251.291, + "new_tests_per_thousand": 3.281, + "new_tests_smoothed": 21993.0, + "new_tests_smoothed_per_thousand": 2.541, + "tests_per_case": 16.291, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-20", + "total_cases": 97969.0, + "new_cases": 1560.0, + "new_cases_smoothed": 1345.0, + "total_deaths": 779.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 11318.645, + "new_cases_per_million": 180.231, + "new_cases_smoothed_per_million": 155.392, + "total_deaths_per_million": 90.0, + "new_deaths_per_million": 8.203, + "new_deaths_smoothed_per_million": 2.311, + "new_tests": 28877.0, + "total_tests": 2203939.0, + "total_tests_per_thousand": 254.628, + "new_tests_per_thousand": 3.336, + "new_tests_smoothed": 21989.0, + "new_tests_smoothed_per_thousand": 2.54, + "tests_per_case": 16.349, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-21", + "total_cases": 99599.0, + "new_cases": 1630.0, + "new_cases_smoothed": 1396.714, + "total_deaths": 795.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 11506.964, + "new_cases_per_million": 188.319, + "new_cases_smoothed_per_million": 161.366, + "total_deaths_per_million": 91.849, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 2.377, + "new_tests": 27211.0, + "total_tests": 2231150.0, + "total_tests_per_thousand": 257.771, + "new_tests_per_thousand": 3.144, + "new_tests_smoothed": 22890.0, + "new_tests_smoothed_per_thousand": 2.645, + "tests_per_case": 16.387999999999998, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-22", + "total_cases": 100716.0, + "new_cases": 1117.0, + "new_cases_smoothed": 1376.571, + "total_deaths": 809.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 11636.014, + "new_cases_per_million": 129.05, + "new_cases_smoothed_per_million": 159.039, + "total_deaths_per_million": 93.466, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 2.377, + "new_tests": 11054.0, + "total_tests": 2242204.0, + "total_tests_per_thousand": 259.048, + "new_tests_per_thousand": 1.277, + "new_tests_smoothed": 23125.0, + "new_tests_smoothed_per_thousand": 2.672, + "tests_per_case": 16.799, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-23", + "total_cases": 102080.0, + "new_cases": 1364.0, + "new_cases_smoothed": 1391.0, + "total_deaths": 819.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 11793.601, + "new_cases_per_million": 157.587, + "new_cases_smoothed_per_million": 160.706, + "total_deaths_per_million": 94.621, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 2.393, + "new_tests": 13326.0, + "total_tests": 2255530.0, + "total_tests_per_thousand": 260.588, + "new_tests_per_thousand": 1.54, + "new_tests_smoothed": 23261.0, + "new_tests_smoothed_per_thousand": 2.687, + "tests_per_case": 16.723, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-24", + "total_cases": 103151.0, + "new_cases": 1071.0, + "new_cases_smoothed": 1495.857, + "total_deaths": 834.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 11917.337, + "new_cases_per_million": 123.736, + "new_cases_smoothed_per_million": 172.821, + "total_deaths_per_million": 96.354, + "new_deaths_per_million": 1.733, + "new_deaths_smoothed_per_million": 2.459, + "new_tests": 30119.0, + "total_tests": 2285649.0, + "total_tests_per_thousand": 264.068, + "new_tests_per_thousand": 3.48, + "new_tests_smoothed": 23844.0, + "new_tests_smoothed_per_thousand": 2.755, + "tests_per_case": 15.94, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-25", + "total_cases": 105063.0, + "new_cases": 1912.0, + "new_cases_smoothed": 1419.143, + "total_deaths": 847.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 12138.236, + "new_cases_per_million": 220.899, + "new_cases_smoothed_per_million": 163.958, + "total_deaths_per_million": 97.856, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 2.558, + "new_tests": 34049.0, + "total_tests": 2319698.0, + "total_tests_per_thousand": 268.002, + "new_tests_per_thousand": 3.934, + "new_tests_smoothed": 24720.0, + "new_tests_smoothed_per_thousand": 2.856, + "tests_per_case": 17.419, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-26", + "total_cases": 107078.0, + "new_cases": 2015.0, + "new_cases_smoothed": 1524.143, + "total_deaths": 859.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 12371.035, + "new_cases_per_million": 232.799, + "new_cases_smoothed_per_million": 176.089, + "total_deaths_per_million": 99.243, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 2.492, + "new_tests": 34286.0, + "total_tests": 2353984.0, + "total_tests_per_thousand": 271.963, + "new_tests_per_thousand": 3.961, + "new_tests_smoothed": 25560.0, + "new_tests_smoothed_per_thousand": 2.953, + "tests_per_case": 16.77, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-08-27", + "total_cases": 108964.0, + "new_cases": 1886.0, + "new_cases_smoothed": 1570.714, + "total_deaths": 875.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 12588.93, + "new_cases_per_million": 217.895, + "new_cases_smoothed_per_million": 181.469, + "total_deaths_per_million": 101.091, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 1.584, + "stringency_index": 34.26 + }, + { + "date": "2020-08-28", + "total_cases": 110403.0, + "new_cases": 1439.0, + "new_cases_smoothed": 1543.429, + "total_deaths": 884.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 12755.182, + "new_cases_per_million": 166.252, + "new_cases_smoothed_per_million": 178.317, + "total_deaths_per_million": 102.131, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.469, + "stringency_index": 34.26 + }, + { + "date": "2020-08-29", + "total_cases": 112000.0, + "new_cases": 1597.0, + "new_cases_smoothed": 1612.0, + "total_deaths": 894.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 12939.688, + "new_cases_per_million": 184.506, + "new_cases_smoothed_per_million": 186.239, + "total_deaths_per_million": 103.286, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 1.403, + "stringency_index": 34.26 + }, + { + "date": "2020-08-30", + "total_cases": 113623.0, + "new_cases": 1623.0, + "new_cases_smoothed": 1649.0, + "total_deaths": 906.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 13127.198, + "new_cases_per_million": 187.51, + "new_cases_smoothed_per_million": 190.514, + "total_deaths_per_million": 104.673, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.436, + "stringency_index": 34.26 + }, + { + "date": "2020-08-31", + "total_cases": 114020.0, + "new_cases": 397.0, + "new_cases_smoothed": 1552.714, + "total_deaths": 919.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 13173.065, + "new_cases_per_million": 45.867, + "new_cases_smoothed_per_million": 179.39, + "total_deaths_per_million": 106.175, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.403 + }, + { + "date": "2020-09-01", + "total_cases": 117030.0, + "new_cases": 3010.0, + "new_cases_smoothed": 1709.571, + "total_deaths": 939.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 13520.819, + "new_cases_per_million": 347.754, + "new_cases_smoothed_per_million": 197.512, + "total_deaths_per_million": 108.485, + "new_deaths_per_million": 2.311, + "new_deaths_smoothed_per_million": 1.518 + }, + { + "date": "2020-09-02", + "total_cases": 119265.0, + "new_cases": 2235.0, + "new_cases_smoothed": 1741.0, + "total_deaths": 957.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 13779.035, + "new_cases_per_million": 258.216, + "new_cases_smoothed_per_million": 201.143, + "total_deaths_per_million": 110.565, + "new_deaths_per_million": 2.08, + "new_deaths_smoothed_per_million": 1.617 + }, + { + "date": "2020-09-03", + "total_cases": 122539.0, + "new_cases": 3274.0, + "new_cases_smoothed": 1939.286, + "total_deaths": 969.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 14157.29, + "new_cases_per_million": 378.255, + "new_cases_smoothed_per_million": 224.051, + "total_deaths_per_million": 111.951, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.551 + }, + { + "date": "2020-09-04", + "total_cases": 125260.0, + "new_cases": 2721.0, + "new_cases_smoothed": 2122.429, + "total_deaths": 985.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 14471.655, + "new_cases_per_million": 314.365, + "new_cases_smoothed_per_million": 245.21, + "total_deaths_per_million": 113.8, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 1.667 + }, + { + "date": "2020-09-05", + "total_cases": 126419.0, + "new_cases": 1159.0, + "new_cases_smoothed": 2059.857, + "total_deaths": 993.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 14605.557, + "new_cases_per_million": 133.903, + "new_cases_smoothed_per_million": 237.981, + "total_deaths_per_million": 114.724, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 1.634 + } + ] + }, + "ITA": { + "continent": "Europe", + "location": "Italy", + "population": 60461828.0, + "population_density": 205.859, + "median_age": 47.9, + "aged_65_older": 23.021, + "aged_70_older": 16.24, + "gdp_per_capita": 35220.084, + "extreme_poverty": 2.0, + "cardiovasc_death_rate": 113.151, + "diabetes_prevalence": 4.78, + "female_smokers": 19.8, + "male_smokers": 27.8, + "hospital_beds_per_thousand": 3.18, + "life_expectancy": 83.51, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-31", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.05, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-02-22", + "total_cases": 17.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.281, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-23", + "total_cases": 79.0, + "new_cases": 62.0, + "new_cases_smoothed": 10.857, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.307, + "new_cases_per_million": 1.025, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 69.91 + }, + { + "date": "2020-02-24", + "total_cases": 132.0, + "new_cases": 53.0, + "new_cases_smoothed": 18.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.183, + "new_cases_per_million": 0.877, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 69.91 + }, + { + "date": "2020-02-25", + "total_cases": 229.0, + "new_cases": 97.0, + "new_cases_smoothed": 32.286, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3.788, + "new_cases_per_million": 1.604, + "new_cases_smoothed_per_million": 0.534, + "total_deaths_per_million": 0.099, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 69.91 + }, + { + "date": "2020-02-26", + "total_cases": 322.0, + "new_cases": 93.0, + "new_cases_smoothed": 45.571, + "total_deaths": 11.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5.326, + "new_cases_per_million": 1.538, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 0.182, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 69.91 + }, + { + "date": "2020-02-27", + "total_cases": 400.0, + "new_cases": 78.0, + "new_cases_smoothed": 56.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6.616, + "new_cases_per_million": 1.29, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 0.198, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 69.91 + }, + { + "date": "2020-02-28", + "total_cases": 650.0, + "new_cases": 250.0, + "new_cases_smoothed": 92.429, + "total_deaths": 17.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 10.751, + "new_cases_per_million": 4.135, + "new_cases_smoothed_per_million": 1.529, + "total_deaths_per_million": 0.281, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 69.91 + }, + { + "date": "2020-02-29", + "total_cases": 888.0, + "new_cases": 238.0, + "new_cases_smoothed": 124.429, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 14.687, + "new_cases_per_million": 3.936, + "new_cases_smoothed_per_million": 2.058, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 69.91 + }, + { + "date": "2020-03-01", + "total_cases": 1128.0, + "new_cases": 240.0, + "new_cases_smoothed": 149.857, + "total_deaths": 29.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 18.656, + "new_cases_per_million": 3.969, + "new_cases_smoothed_per_million": 2.479, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 69.91 + }, + { + "date": "2020-03-02", + "total_cases": 1689.0, + "new_cases": 561.0, + "new_cases_smoothed": 222.429, + "total_deaths": 35.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 27.935, + "new_cases_per_million": 9.279, + "new_cases_smoothed_per_million": 3.679, + "total_deaths_per_million": 0.579, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 69.91 + }, + { + "date": "2020-03-03", + "total_cases": 2036.0, + "new_cases": 347.0, + "new_cases_smoothed": 258.143, + "total_deaths": 52.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 33.674, + "new_cases_per_million": 5.739, + "new_cases_smoothed_per_million": 4.27, + "total_deaths_per_million": 0.86, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 69.91 + }, + { + "date": "2020-03-04", + "total_cases": 2502.0, + "new_cases": 466.0, + "new_cases_smoothed": 311.429, + "total_deaths": 80.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 41.381, + "new_cases_per_million": 7.707, + "new_cases_smoothed_per_million": 5.151, + "total_deaths_per_million": 1.323, + "new_deaths_per_million": 0.463, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 74.54 + }, + { + "date": "2020-03-05", + "total_cases": 3089.0, + "new_cases": 587.0, + "new_cases_smoothed": 384.143, + "total_deaths": 107.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 51.09, + "new_cases_per_million": 9.709, + "new_cases_smoothed_per_million": 6.353, + "total_deaths_per_million": 1.77, + "new_deaths_per_million": 0.447, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 74.54 + }, + { + "date": "2020-03-06", + "total_cases": 3858.0, + "new_cases": 769.0, + "new_cases_smoothed": 458.286, + "total_deaths": 148.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 63.809, + "new_cases_per_million": 12.719, + "new_cases_smoothed_per_million": 7.58, + "total_deaths_per_million": 2.448, + "new_deaths_per_million": 0.678, + "new_deaths_smoothed_per_million": 0.31, + "stringency_index": 74.54 + }, + { + "date": "2020-03-07", + "total_cases": 4636.0, + "new_cases": 778.0, + "new_cases_smoothed": 535.429, + "total_deaths": 197.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 76.676, + "new_cases_per_million": 12.868, + "new_cases_smoothed_per_million": 8.856, + "total_deaths_per_million": 3.258, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.416, + "stringency_index": 74.54 + }, + { + "date": "2020-03-08", + "total_cases": 5883.0, + "new_cases": 1247.0, + "new_cases_smoothed": 679.286, + "total_deaths": 233.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 97.301, + "new_cases_per_million": 20.625, + "new_cases_smoothed_per_million": 11.235, + "total_deaths_per_million": 3.854, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.482, + "stringency_index": 74.54 + }, + { + "date": "2020-03-09", + "total_cases": 7375.0, + "new_cases": 1492.0, + "new_cases_smoothed": 812.286, + "total_deaths": 366.0, + "new_deaths": 133.0, + "new_deaths_smoothed": 47.286, + "total_cases_per_million": 121.978, + "new_cases_per_million": 24.677, + "new_cases_smoothed_per_million": 13.435, + "total_deaths_per_million": 6.053, + "new_deaths_per_million": 2.2, + "new_deaths_smoothed_per_million": 0.782, + "stringency_index": 74.54 + }, + { + "date": "2020-03-10", + "total_cases": 9172.0, + "new_cases": 1797.0, + "new_cases_smoothed": 1019.429, + "total_deaths": 464.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 58.857, + "total_cases_per_million": 151.699, + "new_cases_per_million": 29.721, + "new_cases_smoothed_per_million": 16.861, + "total_deaths_per_million": 7.674, + "new_deaths_per_million": 1.621, + "new_deaths_smoothed_per_million": 0.973, + "stringency_index": 82.41 + }, + { + "date": "2020-03-11", + "total_cases": 10149.0, + "new_cases": 977.0, + "new_cases_smoothed": 1092.429, + "total_deaths": 631.0, + "new_deaths": 167.0, + "new_deaths_smoothed": 78.714, + "total_cases_per_million": 167.858, + "new_cases_per_million": 16.159, + "new_cases_smoothed_per_million": 18.068, + "total_deaths_per_million": 10.436, + "new_deaths_per_million": 2.762, + "new_deaths_smoothed_per_million": 1.302, + "stringency_index": 85.19 + }, + { + "date": "2020-03-12", + "total_cases": 12462.0, + "new_cases": 2313.0, + "new_cases_smoothed": 1339.0, + "total_deaths": 827.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 102.857, + "total_cases_per_million": 206.114, + "new_cases_per_million": 38.256, + "new_cases_smoothed_per_million": 22.146, + "total_deaths_per_million": 13.678, + "new_deaths_per_million": 3.242, + "new_deaths_smoothed_per_million": 1.701, + "stringency_index": 85.19 + }, + { + "date": "2020-03-13", + "total_cases": 15113.0, + "new_cases": 2651.0, + "new_cases_smoothed": 1607.857, + "total_deaths": 1016.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 124.0, + "total_cases_per_million": 249.959, + "new_cases_per_million": 43.846, + "new_cases_smoothed_per_million": 26.593, + "total_deaths_per_million": 16.804, + "new_deaths_per_million": 3.126, + "new_deaths_smoothed_per_million": 2.051, + "stringency_index": 85.19 + }, + { + "date": "2020-03-14", + "total_cases": 17660.0, + "new_cases": 2547.0, + "new_cases_smoothed": 1860.571, + "total_deaths": 1268.0, + "new_deaths": 252.0, + "new_deaths_smoothed": 153.0, + "total_cases_per_million": 292.085, + "new_cases_per_million": 42.126, + "new_cases_smoothed_per_million": 30.773, + "total_deaths_per_million": 20.972, + "new_deaths_per_million": 4.168, + "new_deaths_smoothed_per_million": 2.531, + "stringency_index": 85.19 + }, + { + "date": "2020-03-15", + "total_cases": 21157.0, + "new_cases": 3497.0, + "new_cases_smoothed": 2182.0, + "total_deaths": 1441.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 172.571, + "total_cases_per_million": 349.923, + "new_cases_per_million": 57.838, + "new_cases_smoothed_per_million": 36.089, + "total_deaths_per_million": 23.833, + "new_deaths_per_million": 2.861, + "new_deaths_smoothed_per_million": 2.854, + "stringency_index": 85.19 + }, + { + "date": "2020-03-16", + "total_cases": 23980.0, + "new_cases": 2823.0, + "new_cases_smoothed": 2372.143, + "total_deaths": 1811.0, + "new_deaths": 370.0, + "new_deaths_smoothed": 206.429, + "total_cases_per_million": 396.614, + "new_cases_per_million": 46.691, + "new_cases_smoothed_per_million": 39.234, + "total_deaths_per_million": 29.953, + "new_deaths_per_million": 6.12, + "new_deaths_smoothed_per_million": 3.414, + "stringency_index": 85.19 + }, + { + "date": "2020-03-17", + "total_cases": 27980.0, + "new_cases": 4000.0, + "new_cases_smoothed": 2686.857, + "total_deaths": 2158.0, + "new_deaths": 347.0, + "new_deaths_smoothed": 242.0, + "total_cases_per_million": 462.771, + "new_cases_per_million": 66.157, + "new_cases_smoothed_per_million": 44.439, + "total_deaths_per_million": 35.692, + "new_deaths_per_million": 5.739, + "new_deaths_smoothed_per_million": 4.003, + "stringency_index": 85.19 + }, + { + "date": "2020-03-18", + "total_cases": 31506.0, + "new_cases": 3526.0, + "new_cases_smoothed": 3051.0, + "total_deaths": 2505.0, + "new_deaths": 347.0, + "new_deaths_smoothed": 267.714, + "total_cases_per_million": 521.089, + "new_cases_per_million": 58.318, + "new_cases_smoothed_per_million": 50.462, + "total_deaths_per_million": 41.431, + "new_deaths_per_million": 5.739, + "new_deaths_smoothed_per_million": 4.428, + "stringency_index": 85.19 + }, + { + "date": "2020-03-19", + "total_cases": 35713.0, + "new_cases": 4207.0, + "new_cases_smoothed": 3321.571, + "total_deaths": 2978.0, + "new_deaths": 473.0, + "new_deaths_smoothed": 307.286, + "total_cases_per_million": 590.67, + "new_cases_per_million": 69.581, + "new_cases_smoothed_per_million": 54.937, + "total_deaths_per_million": 49.254, + "new_deaths_per_million": 7.823, + "new_deaths_smoothed_per_million": 5.082, + "stringency_index": 85.19 + }, + { + "date": "2020-03-20", + "total_cases": 41035.0, + "new_cases": 5322.0, + "new_cases_smoothed": 3703.143, + "total_deaths": 3407.0, + "new_deaths": 429.0, + "new_deaths_smoothed": 341.571, + "total_cases_per_million": 678.693, + "new_cases_per_million": 88.022, + "new_cases_smoothed_per_million": 61.248, + "total_deaths_per_million": 56.35, + "new_deaths_per_million": 7.095, + "new_deaths_smoothed_per_million": 5.649, + "stringency_index": 91.67 + }, + { + "date": "2020-03-21", + "total_cases": 47021.0, + "new_cases": 5986.0, + "new_cases_smoothed": 4194.429, + "total_deaths": 4032.0, + "new_deaths": 625.0, + "new_deaths_smoothed": 394.857, + "total_cases_per_million": 777.697, + "new_cases_per_million": 99.005, + "new_cases_smoothed_per_million": 69.373, + "total_deaths_per_million": 66.687, + "new_deaths_per_million": 10.337, + "new_deaths_smoothed_per_million": 6.531, + "stringency_index": 91.67 + }, + { + "date": "2020-03-22", + "total_cases": 53578.0, + "new_cases": 6557.0, + "new_cases_smoothed": 4631.571, + "total_deaths": 4827.0, + "new_deaths": 795.0, + "new_deaths_smoothed": 483.714, + "total_cases_per_million": 886.146, + "new_cases_per_million": 108.449, + "new_cases_smoothed_per_million": 76.603, + "total_deaths_per_million": 79.835, + "new_deaths_per_million": 13.149, + "new_deaths_smoothed_per_million": 8.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-23", + "total_cases": 59138.0, + "new_cases": 5560.0, + "new_cases_smoothed": 5022.571, + "total_deaths": 5476.0, + "new_deaths": 649.0, + "new_deaths_smoothed": 523.571, + "total_cases_per_million": 978.105, + "new_cases_per_million": 91.959, + "new_cases_smoothed_per_million": 83.07, + "total_deaths_per_million": 90.57, + "new_deaths_per_million": 10.734, + "new_deaths_smoothed_per_million": 8.66, + "stringency_index": 91.67 + }, + { + "date": "2020-03-24", + "total_cases": 63927.0, + "new_cases": 4789.0, + "new_cases_smoothed": 5135.286, + "total_deaths": 6077.0, + "new_deaths": 601.0, + "new_deaths_smoothed": 559.857, + "total_cases_per_million": 1057.312, + "new_cases_per_million": 79.207, + "new_cases_smoothed_per_million": 84.934, + "total_deaths_per_million": 100.51, + "new_deaths_per_million": 9.94, + "new_deaths_smoothed_per_million": 9.26, + "stringency_index": 91.67 + }, + { + "date": "2020-03-25", + "total_cases": 69176.0, + "new_cases": 5249.0, + "new_cases_smoothed": 5381.429, + "total_deaths": 6820.0, + "new_deaths": 743.0, + "new_deaths_smoothed": 616.429, + "total_cases_per_million": 1144.127, + "new_cases_per_million": 86.815, + "new_cases_smoothed_per_million": 89.005, + "total_deaths_per_million": 112.798, + "new_deaths_per_million": 12.289, + "new_deaths_smoothed_per_million": 10.195, + "stringency_index": 91.67 + }, + { + "date": "2020-03-26", + "total_cases": 74386.0, + "new_cases": 5210.0, + "new_cases_smoothed": 5524.714, + "total_deaths": 7505.0, + "new_deaths": 685.0, + "new_deaths_smoothed": 646.714, + "total_cases_per_million": 1230.297, + "new_cases_per_million": 86.17, + "new_cases_smoothed_per_million": 91.375, + "total_deaths_per_million": 124.128, + "new_deaths_per_million": 11.329, + "new_deaths_smoothed_per_million": 10.696, + "stringency_index": 91.67 + }, + { + "date": "2020-03-27", + "total_cases": 80539.0, + "new_cases": 6153.0, + "new_cases_smoothed": 5643.429, + "total_deaths": 8165.0, + "new_deaths": 660.0, + "new_deaths_smoothed": 679.714, + "total_cases_per_million": 1332.064, + "new_cases_per_million": 101.767, + "new_cases_smoothed_per_million": 93.339, + "total_deaths_per_million": 135.044, + "new_deaths_per_million": 10.916, + "new_deaths_smoothed_per_million": 11.242, + "stringency_index": 91.67 + }, + { + "date": "2020-03-28", + "total_cases": 86498.0, + "new_cases": 5959.0, + "new_cases_smoothed": 5639.571, + "total_deaths": 9136.0, + "new_deaths": 971.0, + "new_deaths_smoothed": 729.143, + "total_cases_per_million": 1430.622, + "new_cases_per_million": 98.558, + "new_cases_smoothed_per_million": 93.275, + "total_deaths_per_million": 151.104, + "new_deaths_per_million": 16.06, + "new_deaths_smoothed_per_million": 12.06, + "stringency_index": 91.67 + }, + { + "date": "2020-03-29", + "total_cases": 92472.0, + "new_cases": 5974.0, + "new_cases_smoothed": 5556.286, + "total_deaths": 10023.0, + "new_deaths": 887.0, + "new_deaths_smoothed": 742.286, + "total_cases_per_million": 1529.428, + "new_cases_per_million": 98.806, + "new_cases_smoothed_per_million": 91.897, + "total_deaths_per_million": 165.774, + "new_deaths_per_million": 14.67, + "new_deaths_smoothed_per_million": 12.277, + "stringency_index": 91.67 + }, + { + "date": "2020-03-30", + "total_cases": 97689.0, + "new_cases": 5217.0, + "new_cases_smoothed": 5507.286, + "total_deaths": 10781.0, + "new_deaths": 758.0, + "new_deaths_smoothed": 757.857, + "total_cases_per_million": 1615.714, + "new_cases_per_million": 86.286, + "new_cases_smoothed_per_million": 91.087, + "total_deaths_per_million": 178.311, + "new_deaths_per_million": 12.537, + "new_deaths_smoothed_per_million": 12.534, + "stringency_index": 91.67 + }, + { + "date": "2020-03-31", + "total_cases": 101739.0, + "new_cases": 4050.0, + "new_cases_smoothed": 5401.714, + "total_deaths": 11591.0, + "new_deaths": 810.0, + "new_deaths_smoothed": 787.714, + "total_cases_per_million": 1682.698, + "new_cases_per_million": 66.984, + "new_cases_smoothed_per_million": 89.341, + "total_deaths_per_million": 191.708, + "new_deaths_per_million": 13.397, + "new_deaths_smoothed_per_million": 13.028, + "stringency_index": 91.67 + }, + { + "date": "2020-04-01", + "total_cases": 105792.0, + "new_cases": 4053.0, + "new_cases_smoothed": 5230.857, + "total_deaths": 12430.0, + "new_deaths": 839.0, + "new_deaths_smoothed": 801.429, + "total_cases_per_million": 1749.732, + "new_cases_per_million": 67.034, + "new_cases_smoothed_per_million": 86.515, + "total_deaths_per_million": 205.584, + "new_deaths_per_million": 13.877, + "new_deaths_smoothed_per_million": 13.255, + "stringency_index": 91.67 + }, + { + "date": "2020-04-02", + "total_cases": 110574.0, + "new_cases": 4782.0, + "new_cases_smoothed": 5169.714, + "total_deaths": 13157.0, + "new_deaths": 727.0, + "new_deaths_smoothed": 807.429, + "total_cases_per_million": 1828.823, + "new_cases_per_million": 79.091, + "new_cases_smoothed_per_million": 85.504, + "total_deaths_per_million": 217.608, + "new_deaths_per_million": 12.024, + "new_deaths_smoothed_per_million": 13.354, + "stringency_index": 91.67 + }, + { + "date": "2020-04-03", + "total_cases": 115242.0, + "new_cases": 4668.0, + "new_cases_smoothed": 4957.571, + "total_deaths": 13917.0, + "new_deaths": 760.0, + "new_deaths_smoothed": 821.714, + "total_cases_per_million": 1906.029, + "new_cases_per_million": 77.206, + "new_cases_smoothed_per_million": 81.995, + "total_deaths_per_million": 230.178, + "new_deaths_per_million": 12.57, + "new_deaths_smoothed_per_million": 13.591, + "stringency_index": 91.67 + }, + { + "date": "2020-04-04", + "total_cases": 119827.0, + "new_cases": 4585.0, + "new_cases_smoothed": 4761.286, + "total_deaths": 14681.0, + "new_deaths": 764.0, + "new_deaths_smoothed": 792.143, + "total_cases_per_million": 1981.862, + "new_cases_per_million": 75.833, + "new_cases_smoothed_per_million": 78.749, + "total_deaths_per_million": 242.814, + "new_deaths_per_million": 12.636, + "new_deaths_smoothed_per_million": 13.102, + "stringency_index": 91.67 + }, + { + "date": "2020-04-05", + "total_cases": 124632.0, + "new_cases": 4805.0, + "new_cases_smoothed": 4594.286, + "total_deaths": 15362.0, + "new_deaths": 681.0, + "new_deaths_smoothed": 762.714, + "total_cases_per_million": 2061.334, + "new_cases_per_million": 79.472, + "new_cases_smoothed_per_million": 75.987, + "total_deaths_per_million": 254.078, + "new_deaths_per_million": 11.263, + "new_deaths_smoothed_per_million": 12.615, + "stringency_index": 91.67 + }, + { + "date": "2020-04-06", + "total_cases": 128948.0, + "new_cases": 4316.0, + "new_cases_smoothed": 4465.571, + "total_deaths": 15889.0, + "new_deaths": 527.0, + "new_deaths_smoothed": 729.714, + "total_cases_per_million": 2132.718, + "new_cases_per_million": 71.384, + "new_cases_smoothed_per_million": 73.858, + "total_deaths_per_million": 262.794, + "new_deaths_per_million": 8.716, + "new_deaths_smoothed_per_million": 12.069, + "stringency_index": 91.67 + }, + { + "date": "2020-04-07", + "total_cases": 132547.0, + "new_cases": 3599.0, + "new_cases_smoothed": 4401.143, + "total_deaths": 16525.0, + "new_deaths": 636.0, + "new_deaths_smoothed": 704.857, + "total_cases_per_million": 2192.243, + "new_cases_per_million": 59.525, + "new_cases_smoothed_per_million": 72.792, + "total_deaths_per_million": 273.313, + "new_deaths_per_million": 10.519, + "new_deaths_smoothed_per_million": 11.658, + "stringency_index": 91.67 + }, + { + "date": "2020-04-08", + "total_cases": 135586.0, + "new_cases": 3039.0, + "new_cases_smoothed": 4256.286, + "total_deaths": 17129.0, + "new_deaths": 604.0, + "new_deaths_smoothed": 671.286, + "total_cases_per_million": 2242.506, + "new_cases_per_million": 50.263, + "new_cases_smoothed_per_million": 70.396, + "total_deaths_per_million": 283.303, + "new_deaths_per_million": 9.99, + "new_deaths_smoothed_per_million": 11.103, + "stringency_index": 91.67 + }, + { + "date": "2020-04-09", + "total_cases": 139422.0, + "new_cases": 3836.0, + "new_cases_smoothed": 4121.143, + "total_deaths": 17669.0, + "new_deaths": 540.0, + "new_deaths_smoothed": 644.571, + "total_cases_per_million": 2305.951, + "new_cases_per_million": 63.445, + "new_cases_smoothed_per_million": 68.161, + "total_deaths_per_million": 292.234, + "new_deaths_per_million": 8.931, + "new_deaths_smoothed_per_million": 10.661, + "stringency_index": 91.67 + }, + { + "date": "2020-04-10", + "total_cases": 143626.0, + "new_cases": 4204.0, + "new_cases_smoothed": 4054.857, + "total_deaths": 18281.0, + "new_deaths": 612.0, + "new_deaths_smoothed": 623.429, + "total_cases_per_million": 2375.482, + "new_cases_per_million": 69.531, + "new_cases_smoothed_per_million": 67.065, + "total_deaths_per_million": 302.356, + "new_deaths_per_million": 10.122, + "new_deaths_smoothed_per_million": 10.311, + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 147577.0, + "new_cases": 3951.0, + "new_cases_smoothed": 3964.286, + "total_deaths": 18851.0, + "new_deaths": 570.0, + "new_deaths_smoothed": 595.714, + "total_cases_per_million": 2440.829, + "new_cases_per_million": 65.347, + "new_cases_smoothed_per_million": 65.567, + "total_deaths_per_million": 311.783, + "new_deaths_per_million": 9.427, + "new_deaths_smoothed_per_million": 9.853, + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 152271.0, + "new_cases": 4694.0, + "new_cases_smoothed": 3948.429, + "total_deaths": 19470.0, + "new_deaths": 619.0, + "new_deaths_smoothed": 586.857, + "total_cases_per_million": 2518.465, + "new_cases_per_million": 77.636, + "new_cases_smoothed_per_million": 65.304, + "total_deaths_per_million": 322.021, + "new_deaths_per_million": 10.238, + "new_deaths_smoothed_per_million": 9.706, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 156363.0, + "new_cases": 4092.0, + "new_cases_smoothed": 3916.429, + "total_deaths": 19901.0, + "new_deaths": 431.0, + "new_deaths_smoothed": 573.143, + "total_cases_per_million": 2586.144, + "new_cases_per_million": 67.679, + "new_cases_smoothed_per_million": 64.775, + "total_deaths_per_million": 329.15, + "new_deaths_per_million": 7.128, + "new_deaths_smoothed_per_million": 9.479, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 159516.0, + "new_cases": 3153.0, + "new_cases_smoothed": 3852.714, + "total_deaths": 20465.0, + "new_deaths": 564.0, + "new_deaths_smoothed": 562.857, + "total_cases_per_million": 2638.293, + "new_cases_per_million": 52.149, + "new_cases_smoothed_per_million": 63.721, + "total_deaths_per_million": 338.478, + "new_deaths_per_million": 9.328, + "new_deaths_smoothed_per_million": 9.309, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 162488.0, + "new_cases": 2972.0, + "new_cases_smoothed": 3843.143, + "total_deaths": 21069.0, + "new_deaths": 604.0, + "new_deaths_smoothed": 562.857, + "total_cases_per_million": 2687.448, + "new_cases_per_million": 49.155, + "new_cases_smoothed_per_million": 63.563, + "total_deaths_per_million": 348.468, + "new_deaths_per_million": 9.99, + "new_deaths_smoothed_per_million": 9.309, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 165155.0, + "new_cases": 2667.0, + "new_cases_smoothed": 3676.143, + "total_deaths": 21647.0, + "new_deaths": 578.0, + "new_deaths_smoothed": 568.286, + "total_cases_per_million": 2731.558, + "new_cases_per_million": 44.11, + "new_cases_smoothed_per_million": 60.801, + "total_deaths_per_million": 358.028, + "new_deaths_per_million": 9.56, + "new_deaths_smoothed_per_million": 9.399, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 168941.0, + "new_cases": 3786.0, + "new_cases_smoothed": 3616.429, + "total_deaths": 22172.0, + "new_deaths": 525.0, + "new_deaths_smoothed": 555.857, + "total_cases_per_million": 2794.176, + "new_cases_per_million": 62.618, + "new_cases_smoothed_per_million": 59.813, + "total_deaths_per_million": 366.711, + "new_deaths_per_million": 8.683, + "new_deaths_smoothed_per_million": 9.194, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 172434.0, + "new_cases": 3493.0, + "new_cases_smoothed": 3551.0, + "total_deaths": 22747.0, + "new_deaths": 575.0, + "new_deaths_smoothed": 556.571, + "total_cases_per_million": 2851.948, + "new_cases_per_million": 57.772, + "new_cases_smoothed_per_million": 58.731, + "total_deaths_per_million": 376.221, + "new_deaths_per_million": 9.51, + "new_deaths_smoothed_per_million": 9.205, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 175925.0, + "new_cases": 3491.0, + "new_cases_smoothed": 3379.143, + "total_deaths": 23227.0, + "new_deaths": 480.0, + "new_deaths_smoothed": 536.714, + "total_cases_per_million": 2909.687, + "new_cases_per_million": 57.739, + "new_cases_smoothed_per_million": 55.889, + "total_deaths_per_million": 384.16, + "new_deaths_per_million": 7.939, + "new_deaths_smoothed_per_million": 8.877, + "total_tests": 935310.0, + "total_tests_per_thousand": 15.469, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 178972.0, + "new_cases": 3047.0, + "new_cases_smoothed": 3229.857, + "total_deaths": 23660.0, + "new_deaths": 433.0, + "new_deaths_smoothed": 537.0, + "total_cases_per_million": 2960.083, + "new_cases_per_million": 50.395, + "new_cases_smoothed_per_million": 53.42, + "total_deaths_per_million": 391.321, + "new_deaths_per_million": 7.162, + "new_deaths_smoothed_per_million": 8.882, + "new_tests": 7841.0, + "total_tests": 943151.0, + "total_tests_per_thousand": 15.599, + "new_tests_per_thousand": 0.13, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 181228.0, + "new_cases": 2256.0, + "new_cases_smoothed": 3101.714, + "total_deaths": 24114.0, + "new_deaths": 454.0, + "new_deaths_smoothed": 521.286, + "total_cases_per_million": 2997.395, + "new_cases_per_million": 37.313, + "new_cases_smoothed_per_million": 51.3, + "total_deaths_per_million": 398.83, + "new_deaths_per_million": 7.509, + "new_deaths_smoothed_per_million": 8.622, + "new_tests": 28095.0, + "total_tests": 971246.0, + "total_tests_per_thousand": 16.064, + "new_tests_per_thousand": 0.465, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 183957.0, + "new_cases": 2729.0, + "new_cases_smoothed": 3067.0, + "total_deaths": 24648.0, + "new_deaths": 534.0, + "new_deaths_smoothed": 511.286, + "total_cases_per_million": 3042.531, + "new_cases_per_million": 45.136, + "new_cases_smoothed_per_million": 50.726, + "total_deaths_per_million": 407.662, + "new_deaths_per_million": 8.832, + "new_deaths_smoothed_per_million": 8.456, + "new_tests": 44248.0, + "total_tests": 1015494.0, + "total_tests_per_thousand": 16.796, + "new_tests_per_thousand": 0.732, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 187327.0, + "new_cases": 3370.0, + "new_cases_smoothed": 3167.429, + "total_deaths": 25085.0, + "new_deaths": 437.0, + "new_deaths_smoothed": 491.143, + "total_cases_per_million": 3098.269, + "new_cases_per_million": 55.738, + "new_cases_smoothed_per_million": 52.387, + "total_deaths_per_million": 414.89, + "new_deaths_per_million": 7.228, + "new_deaths_smoothed_per_million": 8.123, + "new_tests": 37083.0, + "total_tests": 1052577.0, + "total_tests_per_thousand": 17.409, + "new_tests_per_thousand": 0.613, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 189973.0, + "new_cases": 2646.0, + "new_cases_smoothed": 3004.571, + "total_deaths": 25549.0, + "new_deaths": 464.0, + "new_deaths_smoothed": 482.429, + "total_cases_per_million": 3142.032, + "new_cases_per_million": 43.763, + "new_cases_smoothed_per_million": 49.694, + "total_deaths_per_million": 422.564, + "new_deaths_per_million": 7.674, + "new_deaths_smoothed_per_million": 7.979, + "new_tests": 95273.0, + "total_tests": 1147850.0, + "total_tests_per_thousand": 18.985, + "new_tests_per_thousand": 1.576, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 192994.0, + "new_cases": 3021.0, + "new_cases_smoothed": 2937.143, + "total_deaths": 25969.0, + "new_deaths": 420.0, + "new_deaths_smoothed": 460.286, + "total_cases_per_million": 3191.997, + "new_cases_per_million": 49.965, + "new_cases_smoothed_per_million": 48.578, + "total_deaths_per_million": 429.511, + "new_deaths_per_million": 6.947, + "new_deaths_smoothed_per_million": 7.613, + "new_tests": 38676.0, + "total_tests": 1186526.0, + "total_tests_per_thousand": 19.624, + "new_tests_per_thousand": 0.64, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 195351.0, + "new_cases": 2357.0, + "new_cases_smoothed": 2775.143, + "total_deaths": 26384.0, + "new_deaths": 415.0, + "new_deaths_smoothed": 451.0, + "total_cases_per_million": 3230.981, + "new_cases_per_million": 38.983, + "new_cases_smoothed_per_million": 45.899, + "total_deaths_per_million": 436.375, + "new_deaths_per_million": 6.864, + "new_deaths_smoothed_per_million": 7.459, + "new_tests": 24113.0, + "total_tests": 1210639.0, + "total_tests_per_thousand": 20.023, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 39333.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 14.173, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 197675.0, + "new_cases": 2324.0, + "new_cases_smoothed": 2671.857, + "total_deaths": 26644.0, + "new_deaths": 260.0, + "new_deaths_smoothed": 426.286, + "total_cases_per_million": 3269.418, + "new_cases_per_million": 38.437, + "new_cases_smoothed_per_million": 44.191, + "total_deaths_per_million": 440.675, + "new_deaths_per_million": 4.3, + "new_deaths_smoothed_per_million": 7.05, + "new_tests": 26678.0, + "total_tests": 1237317.0, + "total_tests_per_thousand": 20.464, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 42024.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 15.728, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 199414.0, + "new_cases": 1739.0, + "new_cases_smoothed": 2598.0, + "total_deaths": 26977.0, + "new_deaths": 333.0, + "new_deaths_smoothed": 409.0, + "total_cases_per_million": 3298.18, + "new_cases_per_million": 28.762, + "new_cases_smoothed_per_million": 42.969, + "total_deaths_per_million": 446.182, + "new_deaths_per_million": 5.508, + "new_deaths_smoothed_per_million": 6.765, + "new_tests": 37554.0, + "total_tests": 1274871.0, + "total_tests_per_thousand": 21.086, + "new_tests_per_thousand": 0.621, + "new_tests_smoothed": 43375.0, + "new_tests_smoothed_per_thousand": 0.717, + "tests_per_case": 16.695999999999998, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 201505.0, + "new_cases": 2091.0, + "new_cases_smoothed": 2506.857, + "total_deaths": 27359.0, + "new_deaths": 382.0, + "new_deaths_smoothed": 387.286, + "total_cases_per_million": 3332.764, + "new_cases_per_million": 34.584, + "new_cases_smoothed_per_million": 41.462, + "total_deaths_per_million": 452.5, + "new_deaths_per_million": 6.318, + "new_deaths_smoothed_per_million": 6.405, + "new_tests": 38589.0, + "total_tests": 1313460.0, + "total_tests_per_thousand": 21.724, + "new_tests_per_thousand": 0.638, + "new_tests_smoothed": 42567.0, + "new_tests_smoothed_per_thousand": 0.704, + "tests_per_case": 16.98, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 203591.0, + "new_cases": 2086.0, + "new_cases_smoothed": 2323.429, + "total_deaths": 27682.0, + "new_deaths": 323.0, + "new_deaths_smoothed": 371.0, + "total_cases_per_million": 3367.265, + "new_cases_per_million": 34.501, + "new_cases_smoothed_per_million": 38.428, + "total_deaths_per_million": 457.843, + "new_deaths_per_million": 5.342, + "new_deaths_smoothed_per_million": 6.136, + "new_tests": 41441.0, + "total_tests": 1354901.0, + "total_tests_per_thousand": 22.409, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 43189.0, + "new_tests_smoothed_per_thousand": 0.714, + "tests_per_case": 18.588, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 205463.0, + "new_cases": 1872.0, + "new_cases_smoothed": 2212.857, + "total_deaths": 27967.0, + "new_deaths": 285.0, + "new_deaths_smoothed": 345.429, + "total_cases_per_million": 3398.227, + "new_cases_per_million": 30.962, + "new_cases_smoothed_per_million": 36.599, + "total_deaths_per_million": 462.556, + "new_deaths_per_million": 4.714, + "new_deaths_smoothed_per_million": 5.713, + "new_tests": 43732.0, + "total_tests": 1398633.0, + "total_tests_per_thousand": 23.132, + "new_tests_per_thousand": 0.723, + "new_tests_smoothed": 35826.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 16.19, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 207428.0, + "new_cases": 1965.0, + "new_cases_smoothed": 2062.0, + "total_deaths": 28236.0, + "new_deaths": 269.0, + "new_deaths_smoothed": 323.857, + "total_cases_per_million": 3430.727, + "new_cases_per_million": 32.5, + "new_cases_smoothed_per_million": 34.104, + "total_deaths_per_million": 467.005, + "new_deaths_per_million": 4.449, + "new_deaths_smoothed_per_million": 5.356, + "new_tests": 31231.0, + "total_tests": 1429864.0, + "total_tests_per_thousand": 23.649, + "new_tests_per_thousand": 0.517, + "new_tests_smoothed": 34763.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 16.859, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 209328.0, + "new_cases": 1900.0, + "new_cases_smoothed": 1996.714, + "total_deaths": 28710.0, + "new_deaths": 474.0, + "new_deaths_smoothed": 332.286, + "total_cases_per_million": 3462.151, + "new_cases_per_million": 31.425, + "new_cases_smoothed_per_million": 33.024, + "total_deaths_per_million": 474.845, + "new_deaths_per_million": 7.84, + "new_deaths_smoothed_per_million": 5.496, + "new_tests": 27047.0, + "total_tests": 1456911.0, + "total_tests_per_thousand": 24.096, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 35182.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 17.62, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 210717.0, + "new_cases": 1389.0, + "new_cases_smoothed": 1863.143, + "total_deaths": 28884.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 320.0, + "total_cases_per_million": 3485.125, + "new_cases_per_million": 22.973, + "new_cases_smoothed_per_million": 30.815, + "total_deaths_per_million": 477.723, + "new_deaths_per_million": 2.878, + "new_deaths_smoothed_per_million": 5.293, + "new_tests": 22999.0, + "total_tests": 1479910.0, + "total_tests_per_thousand": 24.477, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 34656.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 18.601, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-05", + "total_cases": 211938.0, + "new_cases": 1221.0, + "new_cases_smoothed": 1789.143, + "total_deaths": 29079.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 300.286, + "total_cases_per_million": 3505.319, + "new_cases_per_million": 20.195, + "new_cases_smoothed_per_million": 29.591, + "total_deaths_per_million": 480.948, + "new_deaths_per_million": 3.225, + "new_deaths_smoothed_per_million": 4.967, + "new_tests": 32211.0, + "total_tests": 1512121.0, + "total_tests_per_thousand": 25.01, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 33893.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 18.944000000000003, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-06", + "total_cases": 213013.0, + "new_cases": 1075.0, + "new_cases_smoothed": 1644.0, + "total_deaths": 29315.0, + "new_deaths": 236.0, + "new_deaths_smoothed": 279.429, + "total_cases_per_million": 3523.099, + "new_cases_per_million": 17.78, + "new_cases_smoothed_per_million": 27.191, + "total_deaths_per_million": 484.851, + "new_deaths_per_million": 3.903, + "new_deaths_smoothed_per_million": 4.622, + "new_tests": 37771.0, + "total_tests": 1549892.0, + "total_tests_per_thousand": 25.634, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 33776.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 20.545, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-07", + "total_cases": 214457.0, + "new_cases": 1444.0, + "new_cases_smoothed": 1552.286, + "total_deaths": 29684.0, + "new_deaths": 369.0, + "new_deaths_smoothed": 286.0, + "total_cases_per_million": 3546.982, + "new_cases_per_million": 23.883, + "new_cases_smoothed_per_million": 25.674, + "total_deaths_per_million": 490.954, + "new_deaths_per_million": 6.103, + "new_deaths_smoothed_per_million": 4.73, + "new_tests": 13665.0, + "total_tests": 1563557.0, + "total_tests_per_thousand": 25.86, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 29808.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 19.203, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-08", + "total_cases": 215858.0, + "new_cases": 1401.0, + "new_cases_smoothed": 1485.0, + "total_deaths": 29958.0, + "new_deaths": 274.0, + "new_deaths_smoothed": 284.429, + "total_cases_per_million": 3570.153, + "new_cases_per_million": 23.172, + "new_cases_smoothed_per_million": 24.561, + "total_deaths_per_million": 495.486, + "new_deaths_per_million": 4.532, + "new_deaths_smoothed_per_million": 4.704, + "new_tests": 45428.0, + "total_tests": 1608985.0, + "total_tests_per_thousand": 26.612, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 30050.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 20.236, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-09", + "total_cases": 217185.0, + "new_cases": 1327.0, + "new_cases_smoothed": 1393.857, + "total_deaths": 30201.0, + "new_deaths": 243.0, + "new_deaths_smoothed": 280.714, + "total_cases_per_million": 3592.101, + "new_cases_per_million": 21.948, + "new_cases_smoothed_per_million": 23.054, + "total_deaths_per_million": 499.505, + "new_deaths_per_million": 4.019, + "new_deaths_smoothed_per_million": 4.643, + "new_tests": 36091.0, + "total_tests": 1645076.0, + "total_tests_per_thousand": 27.209, + "new_tests_per_thousand": 0.597, + "new_tests_smoothed": 30745.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 22.057, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-10", + "total_cases": 218268.0, + "new_cases": 1083.0, + "new_cases_smoothed": 1277.143, + "total_deaths": 30395.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 240.714, + "total_cases_per_million": 3610.013, + "new_cases_per_million": 17.912, + "new_cases_smoothed_per_million": 21.123, + "total_deaths_per_million": 502.714, + "new_deaths_per_million": 3.209, + "new_deaths_smoothed_per_million": 3.981, + "new_tests": 31384.0, + "total_tests": 1676460.0, + "total_tests_per_thousand": 27.728, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 31364.0, + "new_tests_smoothed_per_thousand": 0.519, + "tests_per_case": 24.558000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-11", + "total_cases": 219070.0, + "new_cases": 802.0, + "new_cases_smoothed": 1193.286, + "total_deaths": 30560.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 239.429, + "total_cases_per_million": 3623.278, + "new_cases_per_million": 13.265, + "new_cases_smoothed_per_million": 19.736, + "total_deaths_per_million": 505.443, + "new_deaths_per_million": 2.729, + "new_deaths_smoothed_per_million": 3.96, + "new_tests": 25823.0, + "total_tests": 1702283.0, + "total_tests_per_thousand": 28.155, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 31768.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 26.622, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-12", + "total_cases": 219814.0, + "new_cases": 744.0, + "new_cases_smoothed": 1125.143, + "total_deaths": 30739.0, + "new_deaths": 179.0, + "new_deaths_smoothed": 237.143, + "total_cases_per_million": 3635.583, + "new_cases_per_million": 12.305, + "new_cases_smoothed_per_million": 18.609, + "total_deaths_per_million": 508.403, + "new_deaths_per_million": 2.961, + "new_deaths_smoothed_per_million": 3.922, + "new_tests": 39620.0, + "total_tests": 1741903.0, + "total_tests_per_thousand": 28.81, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 32826.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 29.175, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-13", + "total_cases": 221216.0, + "new_cases": 1402.0, + "new_cases_smoothed": 1171.857, + "total_deaths": 30911.0, + "new_deaths": 172.0, + "new_deaths_smoothed": 228.0, + "total_cases_per_million": 3658.771, + "new_cases_per_million": 23.188, + "new_cases_smoothed_per_million": 19.382, + "total_deaths_per_million": 511.248, + "new_deaths_per_million": 2.845, + "new_deaths_smoothed_per_million": 3.771, + "new_tests": 37049.0, + "total_tests": 1778952.0, + "total_tests_per_thousand": 29.423, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 32723.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 27.924, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-14", + "total_cases": 222104.0, + "new_cases": 888.0, + "new_cases_smoothed": 1092.429, + "total_deaths": 31106.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 203.143, + "total_cases_per_million": 3673.458, + "new_cases_per_million": 14.687, + "new_cases_smoothed_per_million": 18.068, + "total_deaths_per_million": 514.473, + "new_deaths_per_million": 3.225, + "new_deaths_smoothed_per_million": 3.36, + "new_tests": 41131.0, + "total_tests": 1820083.0, + "total_tests_per_thousand": 30.103, + "new_tests_per_thousand": 0.68, + "new_tests_smoothed": 36647.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 33.546, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-15", + "total_cases": 223096.0, + "new_cases": 992.0, + "new_cases_smoothed": 1034.0, + "total_deaths": 31368.0, + "new_deaths": 262.0, + "new_deaths_smoothed": 201.429, + "total_cases_per_million": 3689.865, + "new_cases_per_million": 16.407, + "new_cases_smoothed_per_million": 17.102, + "total_deaths_per_million": 518.807, + "new_deaths_per_million": 4.333, + "new_deaths_smoothed_per_million": 3.331, + "new_tests": 39027.0, + "total_tests": 1859110.0, + "total_tests_per_thousand": 30.748, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 35732.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 34.556999999999995, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-05-16", + "total_cases": 223885.0, + "new_cases": 789.0, + "new_cases_smoothed": 957.143, + "total_deaths": 31610.0, + "new_deaths": 242.0, + "new_deaths_smoothed": 201.286, + "total_cases_per_million": 3702.915, + "new_cases_per_million": 13.05, + "new_cases_smoothed_per_million": 15.831, + "total_deaths_per_million": 522.809, + "new_deaths_per_million": 4.003, + "new_deaths_smoothed_per_million": 3.329, + "new_tests": 40657.0, + "total_tests": 1899767.0, + "total_tests_per_thousand": 31.421, + "new_tests_per_thousand": 0.672, + "new_tests_smoothed": 36384.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 38.013000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 66.67 + }, + { + "date": "2020-05-17", + "total_cases": 224760.0, + "new_cases": 875.0, + "new_cases_smoothed": 927.429, + "total_deaths": 31763.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 195.429, + "total_cases_per_million": 3717.387, + "new_cases_per_million": 14.472, + "new_cases_smoothed_per_million": 15.339, + "total_deaths_per_million": 525.34, + "new_deaths_per_million": 2.531, + "new_deaths_smoothed_per_million": 3.232, + "new_tests": 33505.0, + "total_tests": 1933272.0, + "total_tests_per_thousand": 31.975, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 36687.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 39.558, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 66.67 + }, + { + "date": "2020-05-18", + "total_cases": 225435.0, + "new_cases": 675.0, + "new_cases_smoothed": 909.286, + "total_deaths": 31908.0, + "new_deaths": 145.0, + "new_deaths_smoothed": 192.571, + "total_cases_per_million": 3728.551, + "new_cases_per_million": 11.164, + "new_cases_smoothed_per_million": 15.039, + "total_deaths_per_million": 527.738, + "new_deaths_per_million": 2.398, + "new_deaths_smoothed_per_million": 3.185, + "new_tests": 26101.0, + "total_tests": 1959373.0, + "total_tests_per_thousand": 32.407, + "new_tests_per_thousand": 0.432, + "new_tests_smoothed": 36727.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 40.391, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-19", + "total_cases": 225886.0, + "new_cases": 451.0, + "new_cases_smoothed": 867.429, + "total_deaths": 32007.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 181.143, + "total_cases_per_million": 3736.01, + "new_cases_per_million": 7.459, + "new_cases_smoothed_per_million": 14.347, + "total_deaths_per_million": 529.375, + "new_deaths_per_million": 1.637, + "new_deaths_smoothed_per_million": 2.996, + "new_tests": 40226.0, + "total_tests": 1999599.0, + "total_tests_per_thousand": 33.072, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 36814.0, + "new_tests_smoothed_per_thousand": 0.609, + "tests_per_case": 42.44, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-20", + "total_cases": 226699.0, + "new_cases": 813.0, + "new_cases_smoothed": 783.286, + "total_deaths": 32169.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 179.714, + "total_cases_per_million": 3749.457, + "new_cases_per_million": 13.447, + "new_cases_smoothed_per_million": 12.955, + "total_deaths_per_million": 532.055, + "new_deaths_per_million": 2.679, + "new_deaths_smoothed_per_million": 2.972, + "new_tests": 38617.0, + "total_tests": 2038216.0, + "total_tests_per_thousand": 33.711, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 37038.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 47.285, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-21", + "total_cases": 227364.0, + "new_cases": 665.0, + "new_cases_smoothed": 751.429, + "total_deaths": 32330.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 174.857, + "total_cases_per_million": 3760.455, + "new_cases_per_million": 10.999, + "new_cases_smoothed_per_million": 12.428, + "total_deaths_per_million": 534.718, + "new_deaths_per_million": 2.663, + "new_deaths_smoothed_per_million": 2.892, + "new_tests": 40644.0, + "total_tests": 2078860.0, + "total_tests_per_thousand": 34.383, + "new_tests_per_thousand": 0.672, + "new_tests_smoothed": 36968.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 49.196999999999996, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-22", + "total_cases": 228006.0, + "new_cases": 642.0, + "new_cases_smoothed": 701.429, + "total_deaths": 32486.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 159.714, + "total_cases_per_million": 3771.074, + "new_cases_per_million": 10.618, + "new_cases_smoothed_per_million": 11.601, + "total_deaths_per_million": 537.298, + "new_deaths_per_million": 2.58, + "new_deaths_smoothed_per_million": 2.642, + "new_tests": 42987.0, + "total_tests": 2121847.0, + "total_tests_per_thousand": 35.094, + "new_tests_per_thousand": 0.711, + "new_tests_smoothed": 37534.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 53.511, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-23", + "total_cases": 228658.0, + "new_cases": 652.0, + "new_cases_smoothed": 681.857, + "total_deaths": 32616.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 143.714, + "total_cases_per_million": 3781.857, + "new_cases_per_million": 10.784, + "new_cases_smoothed_per_million": 11.277, + "total_deaths_per_million": 539.448, + "new_deaths_per_million": 2.15, + "new_deaths_smoothed_per_million": 2.377, + "new_tests": 42579.0, + "total_tests": 2164426.0, + "total_tests_per_thousand": 35.798, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 37808.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 55.449, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-24", + "total_cases": 229327.0, + "new_cases": 669.0, + "new_cases_smoothed": 652.429, + "total_deaths": 32735.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 138.857, + "total_cases_per_million": 3792.922, + "new_cases_per_million": 11.065, + "new_cases_smoothed_per_million": 10.791, + "total_deaths_per_million": 541.416, + "new_deaths_per_million": 1.968, + "new_deaths_smoothed_per_million": 2.297, + "new_tests": 34206.0, + "total_tests": 2198632.0, + "total_tests_per_thousand": 36.364, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 37909.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 58.104, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-25", + "total_cases": 229858.0, + "new_cases": 531.0, + "new_cases_smoothed": 631.857, + "total_deaths": 32785.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 125.286, + "total_cases_per_million": 3801.704, + "new_cases_per_million": 8.782, + "new_cases_smoothed_per_million": 10.451, + "total_deaths_per_million": 542.243, + "new_deaths_per_million": 0.827, + "new_deaths_smoothed_per_million": 2.072, + "new_tests": 20676.0, + "total_tests": 2219308.0, + "total_tests_per_thousand": 36.706, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 37134.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 58.77, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-26", + "total_cases": 230158.0, + "new_cases": 300.0, + "new_cases_smoothed": 610.286, + "total_deaths": 32877.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 124.286, + "total_cases_per_million": 3806.666, + "new_cases_per_million": 4.962, + "new_cases_smoothed_per_million": 10.094, + "total_deaths_per_million": 543.765, + "new_deaths_per_million": 1.522, + "new_deaths_smoothed_per_million": 2.056, + "new_tests": 33944.0, + "total_tests": 2253252.0, + "total_tests_per_thousand": 37.267, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 36236.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 59.375, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-27", + "total_cases": 230555.0, + "new_cases": 397.0, + "new_cases_smoothed": 550.857, + "total_deaths": 32955.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 112.286, + "total_cases_per_million": 3813.232, + "new_cases_per_million": 6.566, + "new_cases_smoothed_per_million": 9.111, + "total_deaths_per_million": 545.055, + "new_deaths_per_million": 1.29, + "new_deaths_smoothed_per_million": 1.857, + "new_tests": 37299.0, + "total_tests": 2290551.0, + "total_tests_per_thousand": 37.884, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 36048.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 65.44, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-28", + "total_cases": 231139.0, + "new_cases": 584.0, + "new_cases_smoothed": 539.286, + "total_deaths": 33072.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 106.0, + "total_cases_per_million": 3822.891, + "new_cases_per_million": 9.659, + "new_cases_smoothed_per_million": 8.919, + "total_deaths_per_million": 546.99, + "new_deaths_per_million": 1.935, + "new_deaths_smoothed_per_million": 1.753, + "new_tests": 39838.0, + "total_tests": 2330389.0, + "total_tests_per_thousand": 38.543, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 35933.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 66.631, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-29", + "total_cases": 231732.0, + "new_cases": 593.0, + "new_cases_smoothed": 532.286, + "total_deaths": 33142.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 93.714, + "total_cases_per_million": 3832.699, + "new_cases_per_million": 9.808, + "new_cases_smoothed_per_million": 8.804, + "total_deaths_per_million": 548.148, + "new_deaths_per_million": 1.158, + "new_deaths_smoothed_per_million": 1.55, + "new_tests": 38233.0, + "total_tests": 2368622.0, + "total_tests_per_thousand": 39.175, + "new_tests_per_thousand": 0.632, + "new_tests_smoothed": 35254.0, + "new_tests_smoothed_per_thousand": 0.583, + "tests_per_case": 66.23100000000001, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-30", + "total_cases": 232248.0, + "new_cases": 516.0, + "new_cases_smoothed": 512.857, + "total_deaths": 33229.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 87.571, + "total_cases_per_million": 3841.234, + "new_cases_per_million": 8.534, + "new_cases_smoothed_per_million": 8.482, + "total_deaths_per_million": 549.586, + "new_deaths_per_million": 1.439, + "new_deaths_smoothed_per_million": 1.448, + "new_tests": 36051.0, + "total_tests": 2404673.0, + "total_tests_per_thousand": 39.772, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 34321.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 66.921, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-31", + "total_cases": 232664.0, + "new_cases": 416.0, + "new_cases_smoothed": 476.714, + "total_deaths": 33340.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 86.429, + "total_cases_per_million": 3848.114, + "new_cases_per_million": 6.88, + "new_cases_smoothed_per_million": 7.885, + "total_deaths_per_million": 551.422, + "new_deaths_per_million": 1.836, + "new_deaths_smoothed_per_million": 1.429, + "new_tests": 28948.0, + "total_tests": 2433621.0, + "total_tests_per_thousand": 40.251, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 33570.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 70.42, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-06-01", + "total_cases": 233019.0, + "new_cases": 355.0, + "new_cases_smoothed": 451.571, + "total_deaths": 33415.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 90.0, + "total_cases_per_million": 3853.985, + "new_cases_per_million": 5.871, + "new_cases_smoothed_per_million": 7.469, + "total_deaths_per_million": 552.663, + "new_deaths_per_million": 1.24, + "new_deaths_smoothed_per_million": 1.489, + "new_tests": 18053.0, + "total_tests": 2451674.0, + "total_tests_per_thousand": 40.549, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 33195.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 73.51, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-06-02", + "total_cases": 233197.0, + "new_cases": 178.0, + "new_cases_smoothed": 434.143, + "total_deaths": 33475.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 85.429, + "total_cases_per_million": 3856.929, + "new_cases_per_million": 2.944, + "new_cases_smoothed_per_million": 7.18, + "total_deaths_per_million": 553.655, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.413, + "new_tests": 25628.0, + "total_tests": 2477302.0, + "total_tests_per_thousand": 40.973, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 32007.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 73.725, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-03", + "total_cases": 233515.0, + "new_cases": 318.0, + "new_cases_smoothed": 422.857, + "total_deaths": 33530.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 82.143, + "total_cases_per_million": 3862.189, + "new_cases_per_million": 5.26, + "new_cases_smoothed_per_million": 6.994, + "total_deaths_per_million": 554.565, + "new_deaths_per_million": 0.91, + "new_deaths_smoothed_per_million": 1.359, + "new_tests": 20035.0, + "total_tests": 2497337.0, + "total_tests_per_thousand": 41.304, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 29541.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 69.86, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-04", + "total_cases": 233836.0, + "new_cases": 321.0, + "new_cases_smoothed": 385.286, + "total_deaths": 33601.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 75.571, + "total_cases_per_million": 3867.498, + "new_cases_per_million": 5.309, + "new_cases_smoothed_per_million": 6.372, + "total_deaths_per_million": 555.739, + "new_deaths_per_million": 1.174, + "new_deaths_smoothed_per_million": 1.25, + "new_tests": 27451.0, + "total_tests": 2524788.0, + "total_tests_per_thousand": 41.758, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 27771.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 72.079, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-05", + "total_cases": 234013.0, + "new_cases": 177.0, + "new_cases_smoothed": 325.857, + "total_deaths": 33689.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 78.143, + "total_cases_per_million": 3870.425, + "new_cases_per_million": 2.927, + "new_cases_smoothed_per_million": 5.389, + "total_deaths_per_million": 557.195, + "new_deaths_per_million": 1.455, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 40470.0, + "total_tests": 2565258.0, + "total_tests_per_thousand": 42.428, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 28091.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 86.206, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-06", + "total_cases": 234531.0, + "new_cases": 518.0, + "new_cases_smoothed": 326.143, + "total_deaths": 33774.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 77.857, + "total_cases_per_million": 3878.993, + "new_cases_per_million": 8.567, + "new_cases_smoothed_per_million": 5.394, + "total_deaths_per_million": 558.6, + "new_deaths_per_million": 1.406, + "new_deaths_smoothed_per_million": 1.288, + "new_tests": 34036.0, + "total_tests": 2599294.0, + "total_tests_per_thousand": 42.991, + "new_tests_per_thousand": 0.563, + "new_tests_smoothed": 27803.0, + "new_tests_smoothed_per_thousand": 0.46, + "tests_per_case": 85.24799999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-07", + "total_cases": 234801.0, + "new_cases": 270.0, + "new_cases_smoothed": 305.286, + "total_deaths": 33846.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 72.286, + "total_cases_per_million": 3883.459, + "new_cases_per_million": 4.466, + "new_cases_smoothed_per_million": 5.049, + "total_deaths_per_million": 559.791, + "new_deaths_per_million": 1.191, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 27894.0, + "total_tests": 2627188.0, + "total_tests_per_thousand": 43.452, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 27652.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 90.57700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-08", + "total_cases": 234998.0, + "new_cases": 197.0, + "new_cases_smoothed": 282.714, + "total_deaths": 33899.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 69.143, + "total_cases_per_million": 3886.717, + "new_cases_per_million": 3.258, + "new_cases_smoothed_per_million": 4.676, + "total_deaths_per_million": 560.668, + "new_deaths_per_million": 0.877, + "new_deaths_smoothed_per_million": 1.144, + "new_tests": 16301.0, + "total_tests": 2643489.0, + "total_tests_per_thousand": 43.722, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 27402.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 96.925, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-09", + "total_cases": 235278.0, + "new_cases": 280.0, + "new_cases_smoothed": 297.286, + "total_deaths": 33964.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 69.857, + "total_cases_per_million": 3891.348, + "new_cases_per_million": 4.631, + "new_cases_smoothed_per_million": 4.917, + "total_deaths_per_million": 561.743, + "new_deaths_per_million": 1.075, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 32200.0, + "total_tests": 2675689.0, + "total_tests_per_thousand": 44.254, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 28341.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 95.333, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-10", + "total_cases": 235561.0, + "new_cases": 283.0, + "new_cases_smoothed": 292.286, + "total_deaths": 34043.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 3896.028, + "new_cases_per_million": 4.681, + "new_cases_smoothed_per_million": 4.834, + "total_deaths_per_million": 563.049, + "new_deaths_per_million": 1.307, + "new_deaths_smoothed_per_million": 1.212, + "new_tests": 37865.0, + "total_tests": 2713554.0, + "total_tests_per_thousand": 44.88, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 30888.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 105.677, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-06-11", + "total_cases": 235763.0, + "new_cases": 202.0, + "new_cases_smoothed": 275.286, + "total_deaths": 34114.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 3899.369, + "new_cases_per_million": 3.341, + "new_cases_smoothed_per_million": 4.553, + "total_deaths_per_million": 564.224, + "new_deaths_per_million": 1.174, + "new_deaths_smoothed_per_million": 1.212, + "new_tests": 32991.0, + "total_tests": 2746545.0, + "total_tests_per_thousand": 45.426, + "new_tests_per_thousand": 0.546, + "new_tests_smoothed": 31680.0, + "new_tests_smoothed_per_thousand": 0.524, + "tests_per_case": 115.08, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-06-12", + "total_cases": 236142.0, + "new_cases": 379.0, + "new_cases_smoothed": 304.143, + "total_deaths": 34167.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 68.286, + "total_cases_per_million": 3905.638, + "new_cases_per_million": 6.268, + "new_cases_smoothed_per_million": 5.03, + "total_deaths_per_million": 565.1, + "new_deaths_per_million": 0.877, + "new_deaths_smoothed_per_million": 1.129, + "new_tests": 37651.0, + "total_tests": 2784196.0, + "total_tests_per_thousand": 46.049, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 31277.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 102.837, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-06-13", + "total_cases": 236305.0, + "new_cases": 163.0, + "new_cases_smoothed": 253.429, + "total_deaths": 34223.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 64.143, + "total_cases_per_million": 3908.334, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 4.192, + "total_deaths_per_million": 566.027, + "new_deaths_per_million": 0.926, + "new_deaths_smoothed_per_million": 1.061, + "new_tests": 32880.0, + "total_tests": 2817076.0, + "total_tests_per_thousand": 46.593, + "new_tests_per_thousand": 0.544, + "new_tests_smoothed": 31112.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 122.764, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-06-14", + "total_cases": 236651.0, + "new_cases": 346.0, + "new_cases_smoothed": 264.286, + "total_deaths": 34301.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 65.0, + "total_cases_per_million": 3914.056, + "new_cases_per_million": 5.723, + "new_cases_smoothed_per_million": 4.371, + "total_deaths_per_million": 567.317, + "new_deaths_per_million": 1.29, + "new_deaths_smoothed_per_million": 1.075, + "new_tests": 29545.0, + "total_tests": 2846621.0, + "total_tests_per_thousand": 47.081, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 31348.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 118.61399999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-06-15", + "total_cases": 236989.0, + "new_cases": 338.0, + "new_cases_smoothed": 284.429, + "total_deaths": 34345.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 63.714, + "total_cases_per_million": 3919.647, + "new_cases_per_million": 5.59, + "new_cases_smoothed_per_million": 4.704, + "total_deaths_per_million": 568.044, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 1.054, + "new_tests": 17463.0, + "total_tests": 2864084.0, + "total_tests_per_thousand": 47.37, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 31514.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 110.79799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-16", + "total_cases": 237290.0, + "new_cases": 301.0, + "new_cases_smoothed": 287.429, + "total_deaths": 34371.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 58.143, + "total_cases_per_million": 3924.625, + "new_cases_per_million": 4.978, + "new_cases_smoothed_per_million": 4.754, + "total_deaths_per_million": 568.474, + "new_deaths_per_million": 0.43, + "new_deaths_smoothed_per_million": 0.962, + "new_tests": 27762.0, + "total_tests": 2891846.0, + "total_tests_per_thousand": 47.829, + "new_tests_per_thousand": 0.459, + "new_tests_smoothed": 30880.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 107.435, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-17", + "total_cases": 237500.0, + "new_cases": 210.0, + "new_cases_smoothed": 277.0, + "total_deaths": 34405.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 51.714, + "total_cases_per_million": 3928.098, + "new_cases_per_million": 3.473, + "new_cases_smoothed_per_million": 4.581, + "total_deaths_per_million": 569.037, + "new_deaths_per_million": 0.562, + "new_deaths_smoothed_per_million": 0.855, + "new_tests": 33957.0, + "total_tests": 2925803.0, + "total_tests_per_thousand": 48.391, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 30321.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 109.462, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-18", + "total_cases": 237828.0, + "new_cases": 328.0, + "new_cases_smoothed": 295.0, + "total_deaths": 34448.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 47.714, + "total_cases_per_million": 3933.523, + "new_cases_per_million": 5.425, + "new_cases_smoothed_per_million": 4.879, + "total_deaths_per_million": 569.748, + "new_deaths_per_million": 0.711, + "new_deaths_smoothed_per_million": 0.789, + "new_tests": 32921.0, + "total_tests": 2958724.0, + "total_tests_per_thousand": 48.935, + "new_tests_per_thousand": 0.544, + "new_tests_smoothed": 30311.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 102.749, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-19", + "total_cases": 238159.0, + "new_cases": 331.0, + "new_cases_smoothed": 288.143, + "total_deaths": 34514.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 49.571, + "total_cases_per_million": 3938.998, + "new_cases_per_million": 5.475, + "new_cases_smoothed_per_million": 4.766, + "total_deaths_per_million": 570.84, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 0.82, + "new_tests": 28570.0, + "total_tests": 2987294.0, + "total_tests_per_thousand": 49.408, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 29014.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 100.693, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-20", + "total_cases": 238011.0, + "new_cases": -148.0, + "new_cases_smoothed": 243.714, + "total_deaths": 34561.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 48.286, + "total_cases_per_million": 3936.55, + "new_cases_per_million": -2.448, + "new_cases_smoothed_per_million": 4.031, + "total_deaths_per_million": 571.617, + "new_deaths_per_million": 0.777, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 29875.0, + "total_tests": 3017169.0, + "total_tests_per_thousand": 49.902, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 28585.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 117.289, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-21", + "total_cases": 238275.0, + "new_cases": 264.0, + "new_cases_smoothed": 232.0, + "total_deaths": 34610.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 44.143, + "total_cases_per_million": 3940.916, + "new_cases_per_million": 4.366, + "new_cases_smoothed_per_million": 3.837, + "total_deaths_per_million": 572.427, + "new_deaths_per_million": 0.81, + "new_deaths_smoothed_per_million": 0.73, + "new_tests": 24581.0, + "total_tests": 3041750.0, + "total_tests_per_thousand": 50.309, + "new_tests_per_thousand": 0.407, + "new_tests_smoothed": 27876.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 120.155, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-22", + "total_cases": 238499.0, + "new_cases": 224.0, + "new_cases_smoothed": 215.714, + "total_deaths": 34634.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 3944.621, + "new_cases_per_million": 3.705, + "new_cases_smoothed_per_million": 3.568, + "total_deaths_per_million": 572.824, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 16152.0, + "total_tests": 3057902.0, + "total_tests_per_thousand": 50.576, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 27688.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 128.355, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-23", + "total_cases": 238720.0, + "new_cases": 221.0, + "new_cases_smoothed": 204.286, + "total_deaths": 34657.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 3948.276, + "new_cases_per_million": 3.655, + "new_cases_smoothed_per_million": 3.379, + "total_deaths_per_million": 573.205, + "new_deaths_per_million": 0.38, + "new_deaths_smoothed_per_million": 0.676, + "new_tests": 23225.0, + "total_tests": 3081127.0, + "total_tests_per_thousand": 50.96, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 27040.0, + "new_tests_smoothed_per_thousand": 0.447, + "tests_per_case": 132.364, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-24", + "total_cases": 238833.0, + "new_cases": 113.0, + "new_cases_smoothed": 190.429, + "total_deaths": 34675.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 3950.145, + "new_cases_per_million": 1.869, + "new_cases_smoothed_per_million": 3.15, + "total_deaths_per_million": 573.502, + "new_deaths_per_million": 0.298, + "new_deaths_smoothed_per_million": 0.638, + "new_tests": 30237.0, + "total_tests": 3111364.0, + "total_tests_per_thousand": 51.46, + "new_tests_per_thousand": 0.5, + "new_tests_smoothed": 26509.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 139.207, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-25", + "total_cases": 239410.0, + "new_cases": 577.0, + "new_cases_smoothed": 226.0, + "total_deaths": 34644.0, + "new_deaths": -31.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 3959.688, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 3.738, + "total_deaths_per_million": 572.99, + "new_deaths_per_million": -0.513, + "new_deaths_smoothed_per_million": 0.463, + "new_tests": 29421.0, + "total_tests": 3140785.0, + "total_tests_per_thousand": 51.947, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 26009.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 115.084, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-26", + "total_cases": 239706.0, + "new_cases": 296.0, + "new_cases_smoothed": 221.0, + "total_deaths": 34678.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 3964.584, + "new_cases_per_million": 4.896, + "new_cases_smoothed_per_million": 3.655, + "total_deaths_per_million": 573.552, + "new_deaths_per_million": 0.562, + "new_deaths_smoothed_per_million": 0.387, + "new_tests": 28331.0, + "total_tests": 3169116.0, + "total_tests_per_thousand": 52.415, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 25975.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 117.53399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-27", + "total_cases": 239961.0, + "new_cases": 255.0, + "new_cases_smoothed": 278.571, + "total_deaths": 34708.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 3968.802, + "new_cases_per_million": 4.218, + "new_cases_smoothed_per_million": 4.607, + "total_deaths_per_million": 574.048, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 29721.0, + "total_tests": 3198837.0, + "total_tests_per_thousand": 52.907, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 25953.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 93.165, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-28", + "total_cases": 240136.0, + "new_cases": 175.0, + "new_cases_smoothed": 265.857, + "total_deaths": 34716.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 3971.696, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 4.397, + "total_deaths_per_million": 574.18, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 21183.0, + "total_tests": 3220020.0, + "total_tests_per_thousand": 53.257, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 25467.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 95.792, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-29", + "total_cases": 240310.0, + "new_cases": 174.0, + "new_cases_smoothed": 258.714, + "total_deaths": 34738.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 3974.574, + "new_cases_per_million": 2.878, + "new_cases_smoothed_per_million": 4.279, + "total_deaths_per_million": 574.544, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 15484.0, + "total_tests": 3235504.0, + "total_tests_per_thousand": 53.513, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 25372.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 98.07, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-06-30", + "total_cases": 240436.0, + "new_cases": 126.0, + "new_cases_smoothed": 245.143, + "total_deaths": 34744.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 3976.658, + "new_cases_per_million": 2.084, + "new_cases_smoothed_per_million": 4.055, + "total_deaths_per_million": 574.644, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 28471.0, + "total_tests": 3263975.0, + "total_tests_per_thousand": 53.984, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 26121.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 106.554, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-01", + "total_cases": 240578.0, + "new_cases": 142.0, + "new_cases_smoothed": 249.286, + "total_deaths": 34767.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 3979.006, + "new_cases_per_million": 2.349, + "new_cases_smoothed_per_million": 4.123, + "total_deaths_per_million": 575.024, + "new_deaths_per_million": 0.38, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 29325.0, + "total_tests": 3293300.0, + "total_tests_per_thousand": 54.469, + "new_tests_per_thousand": 0.485, + "new_tests_smoothed": 25991.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 104.262, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-02", + "total_cases": 240760.0, + "new_cases": 182.0, + "new_cases_smoothed": 192.857, + "total_deaths": 34788.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 3982.017, + "new_cases_per_million": 3.01, + "new_cases_smoothed_per_million": 3.19, + "total_deaths_per_million": 575.371, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 29147.0, + "total_tests": 3322447.0, + "total_tests_per_thousand": 54.951, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 25952.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 134.566, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-03", + "total_cases": 240961.0, + "new_cases": 201.0, + "new_cases_smoothed": 179.286, + "total_deaths": 34818.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 3985.341, + "new_cases_per_million": 3.324, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 575.867, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.331, + "new_tests": 25680.0, + "total_tests": 3348127.0, + "total_tests_per_thousand": 55.376, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 25573.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 142.638, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-04", + "total_cases": 241184.0, + "new_cases": 223.0, + "new_cases_smoothed": 174.714, + "total_deaths": 34833.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 3989.029, + "new_cases_per_million": 3.688, + "new_cases_smoothed_per_million": 2.89, + "total_deaths_per_million": 576.116, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 28946.0, + "total_tests": 3377073.0, + "total_tests_per_thousand": 55.855, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 25462.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 145.735, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-05", + "total_cases": 241419.0, + "new_cases": 235.0, + "new_cases_smoothed": 183.286, + "total_deaths": 34854.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 3992.916, + "new_cases_per_million": 3.887, + "new_cases_smoothed_per_million": 3.031, + "total_deaths_per_million": 576.463, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.326, + "new_tests": 21166.0, + "total_tests": 3398239.0, + "total_tests_per_thousand": 56.205, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 25460.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 138.909, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-06", + "total_cases": 241611.0, + "new_cases": 192.0, + "new_cases_smoothed": 185.857, + "total_deaths": 34861.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 3996.092, + "new_cases_per_million": 3.176, + "new_cases_smoothed_per_million": 3.074, + "total_deaths_per_million": 576.579, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 13771.0, + "total_tests": 3412010.0, + "total_tests_per_thousand": 56.432, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 25215.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 135.66899999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-07", + "total_cases": 241819.0, + "new_cases": 208.0, + "new_cases_smoothed": 197.571, + "total_deaths": 34869.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 3999.532, + "new_cases_per_million": 3.44, + "new_cases_smoothed_per_million": 3.268, + "total_deaths_per_million": 576.711, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 22490.0, + "total_tests": 3434500.0, + "total_tests_per_thousand": 56.804, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 24361.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 123.302, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-08", + "total_cases": 241956.0, + "new_cases": 137.0, + "new_cases_smoothed": 196.857, + "total_deaths": 34899.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 4001.798, + "new_cases_per_million": 2.266, + "new_cases_smoothed_per_million": 3.256, + "total_deaths_per_million": 577.207, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.312, + "new_tests": 28679.0, + "total_tests": 3463179.0, + "total_tests_per_thousand": 57.279, + "new_tests_per_thousand": 0.474, + "new_tests_smoothed": 24268.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 123.277, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-09", + "total_cases": 242149.0, + "new_cases": 193.0, + "new_cases_smoothed": 198.429, + "total_deaths": 34914.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 4004.99, + "new_cases_per_million": 3.192, + "new_cases_smoothed_per_million": 3.282, + "total_deaths_per_million": 577.455, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 29947.0, + "total_tests": 3493126.0, + "total_tests_per_thousand": 57.774, + "new_tests_per_thousand": 0.495, + "new_tests_smoothed": 24383.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 122.88, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-10", + "total_cases": 242363.0, + "new_cases": 214.0, + "new_cases_smoothed": 200.286, + "total_deaths": 34926.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 4008.529, + "new_cases_per_million": 3.539, + "new_cases_smoothed_per_million": 3.313, + "total_deaths_per_million": 577.654, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 27251.0, + "total_tests": 3520377.0, + "total_tests_per_thousand": 58.225, + "new_tests_per_thousand": 0.451, + "new_tests_smoothed": 24607.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 122.859, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-11", + "total_cases": 242639.0, + "new_cases": 276.0, + "new_cases_smoothed": 207.857, + "total_deaths": 34938.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 4013.094, + "new_cases_per_million": 4.565, + "new_cases_smoothed_per_million": 3.438, + "total_deaths_per_million": 577.852, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 25449.0, + "total_tests": 3545826.0, + "total_tests_per_thousand": 58.646, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 24108.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 115.984, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-12", + "total_cases": 242827.0, + "new_cases": 188.0, + "new_cases_smoothed": 201.143, + "total_deaths": 34945.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4016.203, + "new_cases_per_million": 3.109, + "new_cases_smoothed_per_million": 3.327, + "total_deaths_per_million": 577.968, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 23061.0, + "total_tests": 3568887.0, + "total_tests_per_thousand": 59.027, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 24378.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 121.197, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-13", + "total_cases": 243061.0, + "new_cases": 234.0, + "new_cases_smoothed": 207.143, + "total_deaths": 34954.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 4020.074, + "new_cases_per_million": 3.87, + "new_cases_smoothed_per_million": 3.426, + "total_deaths_per_million": 578.117, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 14006.0, + "total_tests": 3582893.0, + "total_tests_per_thousand": 59.259, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 24412.0, + "new_tests_smoothed_per_thousand": 0.404, + "tests_per_case": 117.851, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-14", + "total_cases": 243230.0, + "new_cases": 169.0, + "new_cases_smoothed": 201.571, + "total_deaths": 34967.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 4022.869, + "new_cases_per_million": 2.795, + "new_cases_smoothed_per_million": 3.334, + "total_deaths_per_million": 578.332, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 24222.0, + "total_tests": 3607115.0, + "total_tests_per_thousand": 59.659, + "new_tests_per_thousand": 0.401, + "new_tests_smoothed": 24659.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 122.334, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-15", + "total_cases": 243344.0, + "new_cases": 114.0, + "new_cases_smoothed": 198.286, + "total_deaths": 34984.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 4024.754, + "new_cases_per_million": 1.885, + "new_cases_smoothed_per_million": 3.28, + "total_deaths_per_million": 578.613, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.201, + "new_tests": 28392.0, + "total_tests": 3635507.0, + "total_tests_per_thousand": 60.129, + "new_tests_per_thousand": 0.47, + "new_tests_smoothed": 24618.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 124.154, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-16", + "total_cases": 243506.0, + "new_cases": 162.0, + "new_cases_smoothed": 193.857, + "total_deaths": 34997.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 4027.434, + "new_cases_per_million": 2.679, + "new_cases_smoothed_per_million": 3.206, + "total_deaths_per_million": 578.828, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 28089.0, + "total_tests": 3663596.0, + "total_tests_per_thousand": 60.594, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 24353.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 125.62299999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-17", + "total_cases": 243736.0, + "new_cases": 230.0, + "new_cases_smoothed": 196.143, + "total_deaths": 35017.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4031.238, + "new_cases_per_million": 3.804, + "new_cases_smoothed_per_million": 3.244, + "total_deaths_per_million": 579.159, + "new_deaths_per_million": 0.331, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 28661.0, + "total_tests": 3692257.0, + "total_tests_per_thousand": 61.068, + "new_tests_per_thousand": 0.474, + "new_tests_smoothed": 24554.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 125.184, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-18", + "total_cases": 243967.0, + "new_cases": 231.0, + "new_cases_smoothed": 189.714, + "total_deaths": 35028.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 4035.058, + "new_cases_per_million": 3.821, + "new_cases_smoothed_per_million": 3.138, + "total_deaths_per_million": 579.341, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 27569.0, + "total_tests": 3719826.0, + "total_tests_per_thousand": 61.524, + "new_tests_per_thousand": 0.456, + "new_tests_smoothed": 24857.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 131.023, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-19", + "total_cases": 244216.0, + "new_cases": 249.0, + "new_cases_smoothed": 198.429, + "total_deaths": 35042.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 4039.177, + "new_cases_per_million": 4.118, + "new_cases_smoothed_per_million": 3.282, + "total_deaths_per_million": 579.572, + "new_deaths_per_million": 0.232, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 20621.0, + "total_tests": 3740447.0, + "total_tests_per_thousand": 61.865, + "new_tests_per_thousand": 0.341, + "new_tests_smoothed": 24509.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 123.515, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-20", + "total_cases": 244434.0, + "new_cases": 218.0, + "new_cases_smoothed": 196.143, + "total_deaths": 35045.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4042.782, + "new_cases_per_million": 3.606, + "new_cases_smoothed_per_million": 3.244, + "total_deaths_per_million": 579.622, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 14121.0, + "total_tests": 3754568.0, + "total_tests_per_thousand": 62.098, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 24525.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 125.036, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-21", + "total_cases": 244624.0, + "new_cases": 190.0, + "new_cases_smoothed": 199.143, + "total_deaths": 35058.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4045.925, + "new_cases_per_million": 3.142, + "new_cases_smoothed_per_million": 3.294, + "total_deaths_per_million": 579.837, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 23915.0, + "total_tests": 3778483.0, + "total_tests_per_thousand": 62.494, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 24481.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 122.932, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-22", + "total_cases": 244752.0, + "new_cases": 128.0, + "new_cases_smoothed": 201.143, + "total_deaths": 35073.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4048.042, + "new_cases_per_million": 2.117, + "new_cases_smoothed_per_million": 3.327, + "total_deaths_per_million": 580.085, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 29288.0, + "total_tests": 3807771.0, + "total_tests_per_thousand": 62.978, + "new_tests_per_thousand": 0.484, + "new_tests_smoothed": 24609.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 122.346, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-23", + "total_cases": 245032.0, + "new_cases": 280.0, + "new_cases_smoothed": 218.0, + "total_deaths": 35082.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 4052.673, + "new_cases_per_million": 4.631, + "new_cases_smoothed_per_million": 3.606, + "total_deaths_per_million": 580.234, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.201, + "new_tests": 33018.0, + "total_tests": 3840789.0, + "total_tests_per_thousand": 63.524, + "new_tests_per_thousand": 0.546, + "new_tests_smoothed": 25313.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 116.115, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-24", + "total_cases": 245338.0, + "new_cases": 306.0, + "new_cases_smoothed": 228.857, + "total_deaths": 35092.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 4057.734, + "new_cases_per_million": 5.061, + "new_cases_smoothed_per_million": 3.785, + "total_deaths_per_million": 580.399, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.177, + "new_tests": 28970.0, + "total_tests": 3869759.0, + "total_tests_per_thousand": 64.003, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 25357.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 110.79799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-25", + "total_cases": 245590.0, + "new_cases": 252.0, + "new_cases_smoothed": 231.857, + "total_deaths": 35097.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 4061.902, + "new_cases_per_million": 4.168, + "new_cases_smoothed_per_million": 3.835, + "total_deaths_per_million": 580.482, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.163, + "new_tests": 28059.0, + "total_tests": 3897818.0, + "total_tests_per_thousand": 64.467, + "new_tests_per_thousand": 0.464, + "new_tests_smoothed": 25427.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 109.667, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-26", + "total_cases": 245864.0, + "new_cases": 274.0, + "new_cases_smoothed": 235.429, + "total_deaths": 35102.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 4066.433, + "new_cases_per_million": 4.532, + "new_cases_smoothed_per_million": 3.894, + "total_deaths_per_million": 580.565, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 25177.0, + "total_tests": 3922995.0, + "total_tests_per_thousand": 64.884, + "new_tests_per_thousand": 0.416, + "new_tests_smoothed": 26078.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 110.76799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-07-27", + "total_cases": 246118.0, + "new_cases": 254.0, + "new_cases_smoothed": 240.571, + "total_deaths": 35107.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 4070.634, + "new_cases_per_million": 4.201, + "new_cases_smoothed_per_million": 3.979, + "total_deaths_per_million": 580.647, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 19374.0, + "total_tests": 3942369.0, + "total_tests_per_thousand": 65.204, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 26829.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 111.522, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 246286.0, + "new_cases": 168.0, + "new_cases_smoothed": 237.429, + "total_deaths": 35112.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 4073.413, + "new_cases_per_million": 2.779, + "new_cases_smoothed_per_million": 3.927, + "total_deaths_per_million": 580.73, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 25341.0, + "total_tests": 3967710.0, + "total_tests_per_thousand": 65.623, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 27032.0, + "new_tests_smoothed_per_thousand": 0.447, + "tests_per_case": 113.853, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-07-29", + "total_cases": 246488.0, + "new_cases": 202.0, + "new_cases_smoothed": 248.0, + "total_deaths": 35123.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4076.754, + "new_cases_per_million": 3.341, + "new_cases_smoothed_per_million": 4.102, + "total_deaths_per_million": 580.912, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 30875.0, + "total_tests": 3998585.0, + "total_tests_per_thousand": 66.134, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 27259.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 109.915, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-07-30", + "total_cases": 246776.0, + "new_cases": 288.0, + "new_cases_smoothed": 249.143, + "total_deaths": 35129.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 4081.517, + "new_cases_per_million": 4.763, + "new_cases_smoothed_per_million": 4.121, + "total_deaths_per_million": 581.011, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 33396.0, + "total_tests": 4031981.0, + "total_tests_per_thousand": 66.686, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 27313.0, + "new_tests_smoothed_per_thousand": 0.452, + "tests_per_case": 109.62799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-07-31", + "total_cases": 247158.0, + "new_cases": 382.0, + "new_cases_smoothed": 260.0, + "total_deaths": 35132.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4087.835, + "new_cases_per_million": 6.318, + "new_cases_smoothed_per_million": 4.3, + "total_deaths_per_million": 581.061, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 29686.0, + "total_tests": 4061667.0, + "total_tests_per_thousand": 67.177, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 27415.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 105.44200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-01", + "total_cases": 247537.0, + "new_cases": 379.0, + "new_cases_smoothed": 278.143, + "total_deaths": 35141.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4094.104, + "new_cases_per_million": 6.268, + "new_cases_smoothed_per_million": 4.6, + "total_deaths_per_million": 581.21, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 31905.0, + "total_tests": 4093572.0, + "total_tests_per_thousand": 67.705, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 27965.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 100.542, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-02", + "total_cases": 247832.0, + "new_cases": 295.0, + "new_cases_smoothed": 281.143, + "total_deaths": 35146.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4098.983, + "new_cases_per_million": 4.879, + "new_cases_smoothed_per_million": 4.65, + "total_deaths_per_million": 581.292, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 24496.0, + "total_tests": 4118068.0, + "total_tests_per_thousand": 68.11, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 27868.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 99.124, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-03", + "total_cases": 248070.0, + "new_cases": 238.0, + "new_cases_smoothed": 278.857, + "total_deaths": 35154.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 4102.919, + "new_cases_per_million": 3.936, + "new_cases_smoothed_per_million": 4.612, + "total_deaths_per_million": 581.425, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 13467.0, + "total_tests": 4131535.0, + "total_tests_per_thousand": 68.333, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 27024.0, + "new_tests_smoothed_per_thousand": 0.447, + "tests_per_case": 96.91, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-04", + "total_cases": 248229.0, + "new_cases": 159.0, + "new_cases_smoothed": 277.571, + "total_deaths": 35166.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 4105.549, + "new_cases_per_million": 2.63, + "new_cases_smoothed_per_million": 4.591, + "total_deaths_per_million": 581.623, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 23491.0, + "total_tests": 4155026.0, + "total_tests_per_thousand": 68.721, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 26759.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 96.404, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-05", + "total_cases": 248419.0, + "new_cases": 190.0, + "new_cases_smoothed": 275.857, + "total_deaths": 35171.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 4108.692, + "new_cases_per_million": 3.142, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 581.706, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 29739.0, + "total_tests": 4184765.0, + "total_tests_per_thousand": 69.213, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 26597.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 96.416, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-06", + "total_cases": 248803.0, + "new_cases": 384.0, + "new_cases_smoothed": 289.571, + "total_deaths": 35181.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 4115.043, + "new_cases_per_million": 6.351, + "new_cases_smoothed_per_million": 4.789, + "total_deaths_per_million": 581.871, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 32169.0, + "total_tests": 4216934.0, + "total_tests_per_thousand": 69.745, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 26422.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 91.245, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-07", + "total_cases": 249204.0, + "new_cases": 401.0, + "new_cases_smoothed": 292.286, + "total_deaths": 35187.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4121.675, + "new_cases_per_million": 6.632, + "new_cases_smoothed_per_million": 4.834, + "total_deaths_per_million": 581.97, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 30392.0, + "total_tests": 4247326.0, + "total_tests_per_thousand": 70.248, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 26523.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 90.743, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 48.15 + }, + { + "date": "2020-08-08", + "total_cases": 249756.0, + "new_cases": 552.0, + "new_cases_smoothed": 317.0, + "total_deaths": 35190.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 4130.805, + "new_cases_per_million": 9.13, + "new_cases_smoothed_per_million": 5.243, + "total_deaths_per_million": 582.02, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 26631.0, + "total_tests": 4273957.0, + "total_tests_per_thousand": 70.689, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 25769.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 81.29, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-09", + "total_cases": 250103.0, + "new_cases": 347.0, + "new_cases_smoothed": 324.429, + "total_deaths": 35203.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4136.544, + "new_cases_per_million": 5.739, + "new_cases_smoothed_per_million": 5.366, + "total_deaths_per_million": 582.235, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 22773.0, + "total_tests": 4296730.0, + "total_tests_per_thousand": 71.065, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 25523.0, + "new_tests_smoothed_per_thousand": 0.422, + "tests_per_case": 78.671, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-10", + "total_cases": 250566.0, + "new_cases": 463.0, + "new_cases_smoothed": 356.571, + "total_deaths": 35205.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 4144.202, + "new_cases_per_million": 7.658, + "new_cases_smoothed_per_million": 5.897, + "total_deaths_per_million": 582.268, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 10904.0, + "total_tests": 4307634.0, + "total_tests_per_thousand": 71.246, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 25157.0, + "new_tests_smoothed_per_thousand": 0.416, + "tests_per_case": 70.55199999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-11", + "total_cases": 250825.0, + "new_cases": 259.0, + "new_cases_smoothed": 370.857, + "total_deaths": 35209.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4148.485, + "new_cases_per_million": 4.284, + "new_cases_smoothed_per_million": 6.134, + "total_deaths_per_million": 582.334, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 22063.0, + "total_tests": 4329697.0, + "total_tests_per_thousand": 71.61, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 24953.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 67.285, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-12", + "total_cases": 251237.0, + "new_cases": 412.0, + "new_cases_smoothed": 402.571, + "total_deaths": 35215.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4155.299, + "new_cases_per_million": 6.814, + "new_cases_smoothed_per_million": 6.658, + "total_deaths_per_million": 582.434, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 27330.0, + "total_tests": 4357027.0, + "total_tests_per_thousand": 72.062, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 24609.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 61.13, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-13", + "total_cases": 251713.0, + "new_cases": 476.0, + "new_cases_smoothed": 415.714, + "total_deaths": 35225.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4163.172, + "new_cases_per_million": 7.873, + "new_cases_smoothed_per_million": 6.876, + "total_deaths_per_million": 582.599, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 25629.0, + "total_tests": 4382656.0, + "total_tests_per_thousand": 72.486, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 23675.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 56.95, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-14", + "total_cases": 252235.0, + "new_cases": 522.0, + "new_cases_smoothed": 433.0, + "total_deaths": 35231.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4171.806, + "new_cases_per_million": 8.634, + "new_cases_smoothed_per_million": 7.162, + "total_deaths_per_million": 582.698, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 24868.0, + "total_tests": 4407524.0, + "total_tests_per_thousand": 72.898, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 22885.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 52.852, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-15", + "total_cases": 252809.0, + "new_cases": 574.0, + "new_cases_smoothed": 436.143, + "total_deaths": 35234.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4181.299, + "new_cases_per_million": 9.494, + "new_cases_smoothed_per_million": 7.214, + "total_deaths_per_million": 582.748, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 25937.0, + "total_tests": 4433461.0, + "total_tests_per_thousand": 73.327, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 22786.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 52.244, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-16", + "total_cases": 253438.0, + "new_cases": 629.0, + "new_cases_smoothed": 476.429, + "total_deaths": 35392.0, + "new_deaths": 158.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 4191.703, + "new_cases_per_million": 10.403, + "new_cases_smoothed_per_million": 7.88, + "total_deaths_per_million": 585.361, + "new_deaths_per_million": 2.613, + "new_deaths_smoothed_per_million": 0.447, + "new_tests": 22470.0, + "total_tests": 4455931.0, + "total_tests_per_thousand": 73.698, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 22743.0, + "new_tests_smoothed_per_thousand": 0.376, + "tests_per_case": 47.736000000000004, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-08-17", + "total_cases": 253915.0, + "new_cases": 477.0, + "new_cases_smoothed": 478.429, + "total_deaths": 35396.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 4199.592, + "new_cases_per_million": 7.889, + "new_cases_smoothed_per_million": 7.913, + "total_deaths_per_million": 585.427, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.451, + "new_tests": 21379.0, + "total_tests": 4477310.0, + "total_tests_per_thousand": 74.052, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 24239.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 50.663999999999994, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-18", + "total_cases": 254235.0, + "new_cases": 320.0, + "new_cases_smoothed": 487.143, + "total_deaths": 35400.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 4204.884, + "new_cases_per_million": 5.293, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 585.493, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.451, + "new_tests": 32687.0, + "total_tests": 4509997.0, + "total_tests_per_thousand": 74.592, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 25757.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 52.873999999999995, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-19", + "total_cases": 254636.0, + "new_cases": 401.0, + "new_cases_smoothed": 485.571, + "total_deaths": 35405.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 4211.517, + "new_cases_per_million": 6.632, + "new_cases_smoothed_per_million": 8.031, + "total_deaths_per_million": 585.576, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.449, + "new_tests": 41290.0, + "total_tests": 4551287.0, + "total_tests_per_thousand": 75.275, + "new_tests_per_thousand": 0.683, + "new_tests_smoothed": 27751.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 57.151, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-20", + "total_cases": 255278.0, + "new_cases": 642.0, + "new_cases_smoothed": 509.286, + "total_deaths": 35412.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 4222.135, + "new_cases_per_million": 10.618, + "new_cases_smoothed_per_million": 8.423, + "total_deaths_per_million": 585.692, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.442, + "new_tests": 49662.0, + "total_tests": 4600949.0, + "total_tests_per_thousand": 76.097, + "new_tests_per_thousand": 0.821, + "new_tests_smoothed": 31185.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 61.233000000000004, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-21", + "total_cases": 256118.0, + "new_cases": 840.0, + "new_cases_smoothed": 554.714, + "total_deaths": 35418.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 4236.028, + "new_cases_per_million": 13.893, + "new_cases_smoothed_per_million": 9.175, + "total_deaths_per_million": 585.791, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.442, + "new_tests": 44943.0, + "total_tests": 4645892.0, + "total_tests_per_thousand": 76.84, + "new_tests_per_thousand": 0.743, + "new_tests_smoothed": 34053.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 61.388000000000005, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-22", + "total_cases": 257065.0, + "new_cases": 947.0, + "new_cases_smoothed": 608.0, + "total_deaths": 35427.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 27.571, + "total_cases_per_million": 4251.691, + "new_cases_per_million": 15.663, + "new_cases_smoothed_per_million": 10.056, + "total_deaths_per_million": 585.94, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 46613.0, + "total_tests": 4692505.0, + "total_tests_per_thousand": 77.611, + "new_tests_per_thousand": 0.771, + "new_tests_smoothed": 37006.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 60.865, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-23", + "total_cases": 258136.0, + "new_cases": 1071.0, + "new_cases_smoothed": 671.143, + "total_deaths": 35430.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 4269.404, + "new_cases_per_million": 17.714, + "new_cases_smoothed_per_million": 11.1, + "total_deaths_per_million": 585.99, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.09, + "new_tests": 47463.0, + "total_tests": 4739968.0, + "total_tests_per_thousand": 78.396, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 40577.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 60.46, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-24", + "total_cases": 259345.0, + "new_cases": 1209.0, + "new_cases_smoothed": 775.714, + "total_deaths": 35437.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 4289.401, + "new_cases_per_million": 19.996, + "new_cases_smoothed_per_million": 12.83, + "total_deaths_per_million": 586.105, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 33358.0, + "total_tests": 4773326.0, + "total_tests_per_thousand": 78.948, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 42288.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 54.515, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-25", + "total_cases": 260298.0, + "new_cases": 953.0, + "new_cases_smoothed": 866.143, + "total_deaths": 35441.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 4305.163, + "new_cases_per_million": 15.762, + "new_cases_smoothed_per_million": 14.325, + "total_deaths_per_million": 586.171, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 45798.0, + "total_tests": 4819124.0, + "total_tests_per_thousand": 79.705, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 44161.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 50.986000000000004, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-26", + "total_cases": 261174.0, + "new_cases": 876.0, + "new_cases_smoothed": 934.0, + "total_deaths": 35445.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4319.651, + "new_cases_per_million": 14.488, + "new_cases_smoothed_per_million": 15.448, + "total_deaths_per_million": 586.238, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 58054.0, + "total_tests": 4877178.0, + "total_tests_per_thousand": 80.665, + "new_tests_per_thousand": 0.96, + "new_tests_smoothed": 46556.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 49.846000000000004, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-27", + "total_cases": 262540.0, + "new_cases": 1366.0, + "new_cases_smoothed": 1037.429, + "total_deaths": 35458.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4342.244, + "new_cases_per_million": 22.593, + "new_cases_smoothed_per_million": 17.158, + "total_deaths_per_million": 586.453, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 57640.0, + "total_tests": 4934818.0, + "total_tests_per_thousand": 81.619, + "new_tests_per_thousand": 0.953, + "new_tests_smoothed": 47696.0, + "new_tests_smoothed_per_thousand": 0.789, + "tests_per_case": 45.975, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-28", + "total_cases": 263949.0, + "new_cases": 1409.0, + "new_cases_smoothed": 1118.714, + "total_deaths": 35463.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 4365.548, + "new_cases_per_million": 23.304, + "new_cases_smoothed_per_million": 18.503, + "total_deaths_per_million": 586.535, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 65135.0, + "total_tests": 4999953.0, + "total_tests_per_thousand": 82.696, + "new_tests_per_thousand": 1.077, + "new_tests_smoothed": 50580.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 45.213, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-29", + "total_cases": 265409.0, + "new_cases": 1460.0, + "new_cases_smoothed": 1192.0, + "total_deaths": 35472.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 4389.695, + "new_cases_per_million": 24.147, + "new_cases_smoothed_per_million": 19.715, + "total_deaths_per_million": 586.684, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 64294.0, + "total_tests": 5064247.0, + "total_tests_per_thousand": 83.759, + "new_tests_per_thousand": 1.063, + "new_tests_smoothed": 53106.0, + "new_tests_smoothed_per_thousand": 0.878, + "tests_per_case": 44.552, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-30", + "total_cases": 266853.0, + "new_cases": 1444.0, + "new_cases_smoothed": 1245.286, + "total_deaths": 35473.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4413.578, + "new_cases_per_million": 23.883, + "new_cases_smoothed_per_million": 20.596, + "total_deaths_per_million": 586.701, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 53541.0, + "total_tests": 5117788.0, + "total_tests_per_thousand": 84.645, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 53974.0, + "new_tests_smoothed_per_thousand": 0.893, + "tests_per_case": 43.343, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-08-31", + "total_cases": 268218.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1267.571, + "total_deaths": 35477.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4436.154, + "new_cases_per_million": 22.576, + "new_cases_smoothed_per_million": 20.965, + "total_deaths_per_million": 586.767, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 42583.0, + "total_tests": 5160371.0, + "total_tests_per_thousand": 85.349, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 55292.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 43.62, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-09-01", + "total_cases": 269214.0, + "new_cases": 996.0, + "new_cases_smoothed": 1273.714, + "total_deaths": 35483.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 4452.628, + "new_cases_per_million": 16.473, + "new_cases_smoothed_per_million": 21.066, + "total_deaths_per_million": 586.866, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 54395.0, + "total_tests": 5214766.0, + "total_tests_per_thousand": 86.249, + "new_tests_per_thousand": 0.9, + "new_tests_smoothed": 56520.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 44.373999999999995, + "positive_rate": 0.023, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 270189.0, + "new_cases": 975.0, + "new_cases_smoothed": 1287.857, + "total_deaths": 35491.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4468.753, + "new_cases_per_million": 16.126, + "new_cases_smoothed_per_million": 21.3, + "total_deaths_per_million": 586.998, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 66182.0, + "total_tests": 5280948.0, + "total_tests_per_thousand": 87.344, + "new_tests_per_thousand": 1.095, + "new_tests_smoothed": 57681.0, + "new_tests_smoothed_per_thousand": 0.954, + "tests_per_case": 44.788000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 271515.0, + "new_cases": 1326.0, + "new_cases_smoothed": 1282.143, + "total_deaths": 35497.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4490.685, + "new_cases_per_million": 21.931, + "new_cases_smoothed_per_million": 21.206, + "total_deaths_per_million": 587.098, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 61202.0, + "total_tests": 5342150.0, + "total_tests_per_thousand": 88.356, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 58190.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 45.385, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 272912.0, + "new_cases": 1397.0, + "new_cases_smoothed": 1280.429, + "total_deaths": 35507.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4513.79, + "new_cases_per_million": 23.105, + "new_cases_smoothed_per_million": 21.177, + "total_deaths_per_million": 587.263, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.104 + }, + { + "date": "2020-09-05", + "total_cases": 274644.0, + "new_cases": 1732.0, + "new_cases_smoothed": 1319.286, + "total_deaths": 35518.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4542.436, + "new_cases_per_million": 28.646, + "new_cases_smoothed_per_million": 21.82, + "total_deaths_per_million": 587.445, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.109 + } + ] + }, + "JAM": { + "continent": "North America", + "location": "Jamaica", + "population": 2961161.0, + "population_density": 266.879, + "median_age": 31.4, + "aged_65_older": 9.684, + "aged_70_older": 6.39, + "gdp_per_capita": 8193.571, + "cardiovasc_death_rate": 206.537, + "diabetes_prevalence": 11.28, + "female_smokers": 5.3, + "male_smokers": 28.6, + "handwashing_facilities": 66.425, + "hospital_beds_per_thousand": 1.7, + "life_expectancy": 74.47, + "data": [ + { + "date": "2020-03-12", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.675, + "new_cases_per_million": 0.675, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.026, + "new_cases_per_million": 1.351, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-14", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.702, + "new_cases_per_million": 0.675, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-16", + "total_cases": 10.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.377, + "new_cases_per_million": 0.675, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-17", + "total_cases": 10.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.377, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 59.26 + }, + { + "date": "2020-03-18", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.39, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-19", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.066, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-20", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.403, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-21", + "total_cases": 19.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.416, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-25", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.092, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.386, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-26", + "total_cases": 25.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.443, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-27", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.78, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-28", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-29", + "total_cases": 32.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.807, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-30", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.482, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-03-31", + "total_cases": 38.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.833, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 75.0 + }, + { + "date": "2020-04-01", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.82, + "total_deaths_per_million": 0.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-02", + "total_cases": 44.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.859, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-03", + "total_cases": 47.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.872, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-04", + "total_cases": 53.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.898, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.303, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-05", + "total_cases": 55.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.574, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 58.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.587, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 1.158, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-07", + "total_cases": 59.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.925, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-08", + "total_cases": 63.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.275, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.206, + "total_deaths_per_million": 1.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-10", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.772, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-11", + "total_cases": 65.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.951, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-12", + "total_cases": 69.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.302, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-13", + "total_cases": 72.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.315, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-14", + "total_cases": 73.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.652, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 1.351, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 78.7 + }, + { + "date": "2020-04-15", + "total_cases": 105.0, + "new_cases": 32.0, + "new_cases_smoothed": 6.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 35.459, + "new_cases_per_million": 10.807, + "new_cases_smoothed_per_million": 2.026, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 80.56 + }, + { + "date": "2020-04-16", + "total_cases": 125.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.213, + "new_cases_per_million": 6.754, + "new_cases_smoothed_per_million": 2.991, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 80.56 + }, + { + "date": "2020-04-17", + "total_cases": 143.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 48.292, + "new_cases_per_million": 6.079, + "new_cases_smoothed_per_million": 3.859, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 80.56 + }, + { + "date": "2020-04-18", + "total_cases": 163.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.046, + "new_cases_per_million": 6.754, + "new_cases_smoothed_per_million": 4.728, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 80.56 + }, + { + "date": "2020-04-19", + "total_cases": 173.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.423, + "new_cases_per_million": 3.377, + "new_cases_smoothed_per_million": 5.017, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 80.56 + }, + { + "date": "2020-04-20", + "total_cases": 196.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 66.19, + "new_cases_per_million": 7.767, + "new_cases_smoothed_per_million": 5.982, + "total_deaths_per_million": 1.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 80.56 + }, + { + "date": "2020-04-21", + "total_cases": 223.0, + "new_cases": 27.0, + "new_cases_smoothed": 21.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 75.308, + "new_cases_per_million": 9.118, + "new_cases_smoothed_per_million": 7.237, + "total_deaths_per_million": 2.026, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 80.56 + }, + { + "date": "2020-04-22", + "total_cases": 233.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 78.685, + "new_cases_per_million": 3.377, + "new_cases_smoothed_per_million": 6.175, + "total_deaths_per_million": 2.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-04-23", + "total_cases": 252.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.102, + "new_cases_per_million": 6.416, + "new_cases_smoothed_per_million": 6.127, + "total_deaths_per_million": 2.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-04-24", + "total_cases": 252.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.259, + "total_deaths_per_million": 2.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 288.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 97.259, + "new_cases_per_million": 12.157, + "new_cases_smoothed_per_million": 6.03, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 305.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 103.0, + "new_cases_per_million": 5.741, + "new_cases_smoothed_per_million": 6.368, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 350.0, + "new_cases": 45.0, + "new_cases_smoothed": 22.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 118.197, + "new_cases_per_million": 15.197, + "new_cases_smoothed_per_million": 7.43, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-04-28", + "total_cases": 364.0, + "new_cases": 14.0, + "new_cases_smoothed": 20.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 122.925, + "new_cases_per_million": 4.728, + "new_cases_smoothed_per_million": 6.802, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 381.0, + "new_cases": 17.0, + "new_cases_smoothed": 21.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.666, + "new_cases_per_million": 5.741, + "new_cases_smoothed_per_million": 7.14, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-04-30", + "total_cases": 396.0, + "new_cases": 15.0, + "new_cases_smoothed": 20.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 133.731, + "new_cases_per_million": 5.066, + "new_cases_smoothed_per_million": 6.947, + "total_deaths_per_million": 2.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-01", + "total_cases": 422.0, + "new_cases": 26.0, + "new_cases_smoothed": 24.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 142.512, + "new_cases_per_million": 8.78, + "new_cases_smoothed_per_million": 8.201, + "total_deaths_per_million": 2.702, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-05-02", + "total_cases": 432.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 145.889, + "new_cases_per_million": 3.377, + "new_cases_smoothed_per_million": 6.947, + "total_deaths_per_million": 2.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-03", + "total_cases": 463.0, + "new_cases": 31.0, + "new_cases_smoothed": 22.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 156.358, + "new_cases_per_million": 10.469, + "new_cases_smoothed_per_million": 7.622, + "total_deaths_per_million": 2.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-04", + "total_cases": 469.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 158.384, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 5.741, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 471.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.059, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 5.162, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 473.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.735, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 4.438, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 478.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 161.423, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 3.956, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 488.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 164.8, + "new_cases_per_million": 3.377, + "new_cases_smoothed_per_million": 3.184, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 490.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 165.476, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 2.798, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 498.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 168.177, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 1.689, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 502.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.528, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 505.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.541, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 507.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.217, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 509.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.892, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-16", + "total_cases": 511.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 172.567, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-17", + "total_cases": 517.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.594, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-18", + "total_cases": 520.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 175.607, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-19", + "total_cases": 520.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 175.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-20", + "total_cases": 520.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 175.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-21", + "total_cases": 529.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 178.646, + "new_cases_per_million": 3.039, + "new_cases_smoothed_per_million": 0.965, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 534.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.335, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.206, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 544.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.712, + "new_cases_per_million": 3.377, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 550.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 185.738, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 552.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.413, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 556.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.764, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.737, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 564.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.466, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 569.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 192.154, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.93, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 569.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 192.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.689, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-30", + "total_cases": 575.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.181, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-31", + "total_cases": 581.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.207, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 586.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 197.895, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 588.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.571, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-03", + "total_cases": 590.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.246, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.254, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-04", + "total_cases": 590.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.246, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 3.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-06-05", + "total_cases": 591.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.584, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.85 + }, + { + "date": "2020-06-06", + "total_cases": 595.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.935, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 0.965, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.85 + }, + { + "date": "2020-06-07", + "total_cases": 596.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 201.272, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 76.85 + }, + { + "date": "2020-06-08", + "total_cases": 598.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 201.948, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 73.15 + }, + { + "date": "2020-06-09", + "total_cases": 599.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.286, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 73.15 + }, + { + "date": "2020-06-10", + "total_cases": 605.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.312, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 73.15 + }, + { + "date": "2020-06-11", + "total_cases": 605.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.312, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 73.15 + }, + { + "date": "2020-06-12", + "total_cases": 611.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.338, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.965, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-13", + "total_cases": 614.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.351, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-14", + "total_cases": 615.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.689, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-15", + "total_cases": 617.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.364, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-16", + "total_cases": 621.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 209.715, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-17", + "total_cases": 621.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 209.715, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.772, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-18", + "total_cases": 626.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.404, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.013, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-19", + "total_cases": 626.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-20", + "total_cases": 652.0, + "new_cases": 26.0, + "new_cases_smoothed": 5.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.184, + "new_cases_per_million": 8.78, + "new_cases_smoothed_per_million": 1.833, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-21", + "total_cases": 657.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.872, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 2.026, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-22", + "total_cases": 659.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.548, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 2.026, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-23", + "total_cases": 665.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.574, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-24", + "total_cases": 670.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 226.263, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-25", + "total_cases": 678.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 228.964, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-26", + "total_cases": 684.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 230.99, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 2.798, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-27", + "total_cases": 686.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 231.666, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.64, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-28", + "total_cases": 690.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.017, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-29", + "total_cases": 696.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 235.043, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.785, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-30", + "total_cases": 698.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 235.718, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-01", + "total_cases": 702.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.069, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-02", + "total_cases": 707.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.758, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.399, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-03", + "total_cases": 715.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.459, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-04", + "total_cases": 721.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.486, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 1.689, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-05", + "total_cases": 728.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.85, + "new_cases_per_million": 2.364, + "new_cases_smoothed_per_million": 1.833, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-06", + "total_cases": 732.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.2, + "new_cases_per_million": 1.351, + "new_cases_smoothed_per_million": 1.737, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-07", + "total_cases": 737.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.889, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.882, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-08", + "total_cases": 745.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.591, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 2.074, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-09", + "total_cases": 751.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 253.617, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-10", + "total_cases": 753.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 1.833, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-11", + "total_cases": 753.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-12", + "total_cases": 758.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.981, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 1.447, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-13", + "total_cases": 758.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.981, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.254, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-14", + "total_cases": 759.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.318, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-15", + "total_cases": 762.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.331, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.82, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-16", + "total_cases": 763.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.669, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-17", + "total_cases": 765.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.345, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 0.579, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-18", + "total_cases": 768.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.358, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-19", + "total_cases": 774.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.384, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 0.772, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-20", + "total_cases": 790.0, + "new_cases": 16.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.787, + "new_cases_per_million": 5.403, + "new_cases_smoothed_per_million": 1.544, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-21", + "total_cases": 809.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 273.204, + "new_cases_per_million": 6.416, + "new_cases_smoothed_per_million": 2.412, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-22", + "total_cases": 809.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 273.204, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.267, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-23", + "total_cases": 816.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 275.568, + "new_cases_per_million": 2.364, + "new_cases_smoothed_per_million": 2.557, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-24", + "total_cases": 816.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 275.568, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.46, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-25", + "total_cases": 821.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.256, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 2.557, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-26", + "total_cases": 837.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.659, + "new_cases_per_million": 5.403, + "new_cases_smoothed_per_million": 3.039, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-27", + "total_cases": 842.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.348, + "new_cases_per_million": 1.689, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-28", + "total_cases": 853.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.063, + "new_cases_per_million": 3.715, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-29", + "total_cases": 855.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.738, + "new_cases_per_million": 0.675, + "new_cases_smoothed_per_million": 2.219, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-30", + "total_cases": 856.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 289.076, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.93, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-31", + "total_cases": 864.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.777, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 2.316, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-08-01", + "total_cases": 864.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.777, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.074, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-08-02", + "total_cases": 883.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 298.194, + "new_cases_per_million": 6.416, + "new_cases_smoothed_per_million": 2.219, + "total_deaths_per_million": 3.377, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-08-03", + "total_cases": 894.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.429, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 301.909, + "new_cases_per_million": 3.715, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-04", + "total_cases": 905.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 305.623, + "new_cases_per_million": 3.715, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-05", + "total_cases": 920.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 310.689, + "new_cases_per_million": 5.066, + "new_cases_smoothed_per_million": 3.136, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-06", + "total_cases": 928.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 313.391, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 3.474, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-07", + "total_cases": 958.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 323.522, + "new_cases_per_million": 10.131, + "new_cases_smoothed_per_million": 4.535, + "total_deaths_per_million": 4.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-08", + "total_cases": 987.0, + "new_cases": 29.0, + "new_cases_smoothed": 17.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 333.315, + "new_cases_per_million": 9.793, + "new_cases_smoothed_per_million": 5.934, + "total_deaths_per_million": 4.39, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 68.52 + }, + { + "date": "2020-08-09", + "total_cases": 1003.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 338.718, + "new_cases_per_million": 5.403, + "new_cases_smoothed_per_million": 5.789, + "total_deaths_per_million": 4.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 68.52 + }, + { + "date": "2020-08-10", + "total_cases": 1023.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.429, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 345.473, + "new_cases_per_million": 6.754, + "new_cases_smoothed_per_million": 6.223, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-11", + "total_cases": 1031.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 348.174, + "new_cases_per_million": 2.702, + "new_cases_smoothed_per_million": 6.079, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-12", + "total_cases": 1047.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 353.578, + "new_cases_per_million": 5.403, + "new_cases_smoothed_per_million": 6.127, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 68.52 + }, + { + "date": "2020-08-13", + "total_cases": 1065.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 359.656, + "new_cases_per_million": 6.079, + "new_cases_smoothed_per_million": 6.609, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 70.37 + }, + { + "date": "2020-08-14", + "total_cases": 1071.0, + "new_cases": 6.0, + "new_cases_smoothed": 16.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 361.682, + "new_cases_per_million": 2.026, + "new_cases_smoothed_per_million": 5.452, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 70.37 + }, + { + "date": "2020-08-15", + "total_cases": 1082.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 365.397, + "new_cases_per_million": 3.715, + "new_cases_smoothed_per_million": 4.583, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 70.37 + }, + { + "date": "2020-08-16", + "total_cases": 1082.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 365.397, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.811, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 70.37 + }, + { + "date": "2020-08-17", + "total_cases": 1113.0, + "new_cases": 31.0, + "new_cases_smoothed": 12.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 375.866, + "new_cases_per_million": 10.469, + "new_cases_smoothed_per_million": 4.342, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-08-18", + "total_cases": 1129.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 381.269, + "new_cases_per_million": 5.403, + "new_cases_smoothed_per_million": 4.728, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-08-19", + "total_cases": 1146.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.01, + "new_cases_per_million": 5.741, + "new_cases_smoothed_per_million": 4.776, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-08-20", + "total_cases": 1192.0, + "new_cases": 46.0, + "new_cases_smoothed": 18.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 402.545, + "new_cases_per_million": 15.534, + "new_cases_smoothed_per_million": 6.127, + "total_deaths_per_million": 4.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-08-21", + "total_cases": 1290.0, + "new_cases": 98.0, + "new_cases_smoothed": 31.286, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 435.64, + "new_cases_per_million": 33.095, + "new_cases_smoothed_per_million": 10.565, + "total_deaths_per_million": 5.066, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.048, + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 1346.0, + "new_cases": 56.0, + "new_cases_smoothed": 37.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 454.551, + "new_cases_per_million": 18.912, + "new_cases_smoothed_per_million": 12.736, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 1413.0, + "new_cases": 67.0, + "new_cases_smoothed": 47.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.178, + "new_cases_per_million": 22.626, + "new_cases_smoothed_per_million": 15.969, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 70.37 + }, + { + "date": "2020-08-24", + "total_cases": 1529.0, + "new_cases": 116.0, + "new_cases_smoothed": 59.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 516.352, + "new_cases_per_million": 39.174, + "new_cases_smoothed_per_million": 20.069, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 1612.0, + "new_cases": 83.0, + "new_cases_smoothed": 69.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 544.381, + "new_cases_per_million": 28.03, + "new_cases_smoothed_per_million": 23.302, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096 + }, + { + "date": "2020-08-26", + "total_cases": 1732.0, + "new_cases": 120.0, + "new_cases_smoothed": 83.714, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 584.906, + "new_cases_per_million": 40.525, + "new_cases_smoothed_per_million": 28.271, + "total_deaths_per_million": 6.416, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-08-27", + "total_cases": 1804.0, + "new_cases": 72.0, + "new_cases_smoothed": 87.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 609.221, + "new_cases_per_million": 24.315, + "new_cases_smoothed_per_million": 29.525, + "total_deaths_per_million": 6.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-08-28", + "total_cases": 1870.0, + "new_cases": 66.0, + "new_cases_smoothed": 82.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 631.509, + "new_cases_per_million": 22.289, + "new_cases_smoothed_per_million": 27.981, + "total_deaths_per_million": 6.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.193 + }, + { + "date": "2020-08-29", + "total_cases": 2011.0, + "new_cases": 141.0, + "new_cases_smoothed": 95.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 679.126, + "new_cases_per_million": 47.616, + "new_cases_smoothed_per_million": 32.082, + "total_deaths_per_million": 6.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-08-30", + "total_cases": 2113.0, + "new_cases": 102.0, + "new_cases_smoothed": 100.0, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 713.571, + "new_cases_per_million": 34.446, + "new_cases_smoothed_per_million": 33.771, + "total_deaths_per_million": 6.754, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.193 + }, + { + "date": "2020-08-31", + "total_cases": 2357.0, + "new_cases": 244.0, + "new_cases_smoothed": 118.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 795.972, + "new_cases_per_million": 82.4, + "new_cases_smoothed_per_million": 39.946, + "total_deaths_per_million": 7.092, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-09-01", + "total_cases": 2357.0, + "new_cases": 0.0, + "new_cases_smoothed": 106.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 795.972, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.942, + "total_deaths_per_million": 7.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-09-02", + "total_cases": 2683.0, + "new_cases": 326.0, + "new_cases_smoothed": 135.857, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 906.064, + "new_cases_per_million": 110.092, + "new_cases_smoothed_per_million": 45.88, + "total_deaths_per_million": 8.105, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 0.241 + }, + { + "date": "2020-09-03", + "total_cases": 2822.0, + "new_cases": 139.0, + "new_cases_smoothed": 145.429, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 953.005, + "new_cases_per_million": 46.941, + "new_cases_smoothed_per_million": 49.112, + "total_deaths_per_million": 9.118, + "new_deaths_per_million": 1.013, + "new_deaths_smoothed_per_million": 0.386 + }, + { + "date": "2020-09-04", + "total_cases": 2896.0, + "new_cases": 74.0, + "new_cases_smoothed": 146.571, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 977.995, + "new_cases_per_million": 24.99, + "new_cases_smoothed_per_million": 49.498, + "total_deaths_per_million": 9.793, + "new_deaths_per_million": 0.675, + "new_deaths_smoothed_per_million": 0.482 + }, + { + "date": "2020-09-05", + "total_cases": 2964.0, + "new_cases": 68.0, + "new_cases_smoothed": 136.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1000.959, + "new_cases_per_million": 22.964, + "new_cases_smoothed_per_million": 45.976, + "total_deaths_per_million": 10.131, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.531 + } + ] + }, + "JPN": { + "continent": "Asia", + "location": "Japan", + "population": 126476458.0, + "population_density": 347.778, + "median_age": 48.2, + "aged_65_older": 27.049, + "aged_70_older": 18.493, + "gdp_per_capita": 39002.223, + "cardiovasc_death_rate": 79.37, + "diabetes_prevalence": 5.72, + "female_smokers": 11.2, + "male_smokers": 33.7, + "hospital_beds_per_thousand": 13.05, + "life_expectancy": 84.63, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-15", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.016, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.016, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.024, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.032, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.055, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 11.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.087, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 14.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.111, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.119, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.15, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-03", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.158, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 25.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.04, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.229, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 30.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.237, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 38.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.3, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 52.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.411, + "new_cases_per_million": 0.111, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 59.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.466, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 66.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.522, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 84.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.664, + "new_cases_per_million": 0.142, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-21", + "total_cases": 93.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.735, + "new_cases_per_million": 0.071, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-22", + "total_cases": 105.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.83, + "new_cases_per_million": 0.095, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5266.0, + "total_tests_per_thousand": 0.042, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-02-23", + "total_cases": 132.0, + "new_cases": 27.0, + "new_cases_smoothed": 11.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.044, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-02-24", + "total_cases": 144.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.139, + "new_cases_per_million": 0.095, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-02-25", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-02-26", + "total_cases": 164.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.297, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 0.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-02-27", + "total_cases": 186.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.471, + "new_cases_per_million": 0.174, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.002, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-02-28", + "total_cases": 210.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.66, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-02-29", + "total_cases": 230.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.819, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "total_tests": 12924.0, + "total_tests_per_thousand": 0.102, + "new_tests_smoothed": 1094.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 61.263999999999996, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-01", + "total_cases": 239.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.89, + "new_cases_per_million": 0.071, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.04, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 75.495, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-02", + "total_cases": 254.0, + "new_cases": 15.0, + "new_cases_smoothed": 15.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.008, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 1215.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 77.318, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-03", + "total_cases": 254.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 1275.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 81.13600000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-04", + "total_cases": 268.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.119, + "new_cases_per_million": 0.111, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 1335.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 89.85600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-05", + "total_cases": 317.0, + "new_cases": 49.0, + "new_cases_smoothed": 18.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.506, + "new_cases_per_million": 0.387, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 1395.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 74.542, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-06", + "total_cases": 349.0, + "new_cases": 32.0, + "new_cases_smoothed": 19.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.759, + "new_cases_per_million": 0.253, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 1456.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 73.324, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-07", + "total_cases": 408.0, + "new_cases": 59.0, + "new_cases_smoothed": 25.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.226, + "new_cases_per_million": 0.466, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 23535.0, + "total_tests_per_thousand": 0.186, + "new_tests_smoothed": 1516.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 59.618, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-08", + "total_cases": 455.0, + "new_cases": 47.0, + "new_cases_smoothed": 30.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.598, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 1517.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 49.162, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-03-09", + "total_cases": 488.0, + "new_cases": 33.0, + "new_cases_smoothed": 33.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.858, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.001, + "new_tests_smoothed": 1519.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 45.44, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-10", + "total_cases": 514.0, + "new_cases": 26.0, + "new_cases_smoothed": 37.143, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.064, + "new_cases_per_million": 0.206, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.071, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 1521.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 40.95, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-11", + "total_cases": 568.0, + "new_cases": 54.0, + "new_cases_smoothed": 42.857, + "total_deaths": 12.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4.491, + "new_cases_per_million": 0.427, + "new_cases_smoothed_per_million": 0.339, + "total_deaths_per_million": 0.095, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 1522.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 35.513000000000005, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-12", + "total_cases": 619.0, + "new_cases": 51.0, + "new_cases_smoothed": 43.143, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4.894, + "new_cases_per_million": 0.403, + "new_cases_smoothed_per_million": 0.341, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.01, + "new_tests_smoothed": 1524.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 35.325, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-13", + "total_cases": 675.0, + "new_cases": 56.0, + "new_cases_smoothed": 46.571, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5.337, + "new_cases_per_million": 0.443, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 0.15, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 1525.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 32.745, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-14", + "total_cases": 737.0, + "new_cases": 62.0, + "new_cases_smoothed": 47.0, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5.827, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.166, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.017, + "total_tests": 34224.0, + "total_tests_per_thousand": 0.271, + "new_tests_smoothed": 1527.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 32.489000000000004, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-15", + "total_cases": 780.0, + "new_cases": 43.0, + "new_cases_smoothed": 46.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6.167, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.174, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 1500.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 32.308, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-16", + "total_cases": 814.0, + "new_cases": 34.0, + "new_cases_smoothed": 46.571, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6.436, + "new_cases_per_million": 0.269, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 0.19, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 1473.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 31.629, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-17", + "total_cases": 824.0, + "new_cases": 10.0, + "new_cases_smoothed": 44.286, + "total_deaths": 28.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 6.515, + "new_cases_per_million": 0.079, + "new_cases_smoothed_per_million": 0.35, + "total_deaths_per_million": 0.221, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 1446.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 32.652, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-18", + "total_cases": 829.0, + "new_cases": 5.0, + "new_cases_smoothed": 37.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6.555, + "new_cases_per_million": 0.04, + "new_cases_smoothed_per_million": 0.295, + "total_deaths_per_million": 0.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 1419.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 38.056999999999995, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-19", + "total_cases": 873.0, + "new_cases": 44.0, + "new_cases_smoothed": 36.286, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6.902, + "new_cases_per_million": 0.348, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 1393.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 38.39, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-20", + "total_cases": 950.0, + "new_cases": 77.0, + "new_cases_smoothed": 39.286, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 7.511, + "new_cases_per_million": 0.609, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.261, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 1366.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 34.771, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-21", + "total_cases": 1007.0, + "new_cases": 57.0, + "new_cases_smoothed": 38.571, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 7.962, + "new_cases_per_million": 0.451, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.016, + "total_tests": 43596.0, + "total_tests_per_thousand": 0.345, + "new_tests_smoothed": 1339.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 34.715, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-22", + "total_cases": 1046.0, + "new_cases": 39.0, + "new_cases_smoothed": 38.0, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 8.27, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.285, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 1422.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 37.421, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-23", + "total_cases": 1089.0, + "new_cases": 43.0, + "new_cases_smoothed": 39.286, + "total_deaths": 41.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8.61, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.324, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 1504.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 38.284, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-24", + "total_cases": 1128.0, + "new_cases": 39.0, + "new_cases_smoothed": 43.429, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 8.919, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.332, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 1587.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 36.543, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-25", + "total_cases": 1193.0, + "new_cases": 65.0, + "new_cases_smoothed": 52.0, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 9.433, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.411, + "total_deaths_per_million": 0.34, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 1670.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 32.115, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-26", + "total_cases": 1268.0, + "new_cases": 75.0, + "new_cases_smoothed": 56.429, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 10.026, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.446, + "total_deaths_per_million": 0.356, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 1752.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 31.048000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-27", + "total_cases": 1364.0, + "new_cases": 96.0, + "new_cases_smoothed": 59.143, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 10.785, + "new_cases_per_million": 0.759, + "new_cases_smoothed_per_million": 0.468, + "total_deaths_per_million": 0.364, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 1835.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 31.026999999999997, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-28", + "total_cases": 1499.0, + "new_cases": 135.0, + "new_cases_smoothed": 70.286, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 11.852, + "new_cases_per_million": 1.067, + "new_cases_smoothed_per_million": 0.556, + "total_deaths_per_million": 0.387, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.016, + "total_tests": 57021.0, + "total_tests_per_thousand": 0.451, + "new_tests_smoothed": 1918.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 27.289, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-29", + "total_cases": 1693.0, + "new_cases": 194.0, + "new_cases_smoothed": 92.429, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 13.386, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 0.411, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 2260.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 24.451, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-30", + "total_cases": 1866.0, + "new_cases": 173.0, + "new_cases_smoothed": 111.0, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 14.754, + "new_cases_per_million": 1.368, + "new_cases_smoothed_per_million": 0.878, + "total_deaths_per_million": 0.427, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 2603.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 23.45, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-03-31", + "total_cases": 1953.0, + "new_cases": 87.0, + "new_cases_smoothed": 117.857, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 15.442, + "new_cases_per_million": 0.688, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 0.443, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 2945.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 24.988000000000003, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-04-01", + "total_cases": 1953.0, + "new_cases": 0.0, + "new_cases_smoothed": 108.571, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 15.442, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 0.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 3288.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 30.284000000000002, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-04-02", + "total_cases": 2178.0, + "new_cases": 225.0, + "new_cases_smoothed": 130.0, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 17.221, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 0.451, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 3631.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 27.930999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-04-03", + "total_cases": 2617.0, + "new_cases": 439.0, + "new_cases_smoothed": 179.0, + "total_deaths": 63.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 20.692, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 1.415, + "total_deaths_per_million": 0.498, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 3973.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 22.195999999999998, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-04-04", + "total_cases": 2935.0, + "new_cases": 318.0, + "new_cases_smoothed": 205.143, + "total_deaths": 69.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 23.206, + "new_cases_per_million": 2.514, + "new_cases_smoothed_per_million": 1.622, + "total_deaths_per_million": 0.546, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.023, + "total_tests": 87230.0, + "total_tests_per_thousand": 0.69, + "new_tests_smoothed": 4316.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 21.039, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-04-05", + "total_cases": 3271.0, + "new_cases": 336.0, + "new_cases_smoothed": 225.429, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 25.863, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.782, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.02, + "new_tests_smoothed": 4696.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 20.831, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-04-06", + "total_cases": 3654.0, + "new_cases": 383.0, + "new_cases_smoothed": 255.429, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 28.891, + "new_cases_per_million": 3.028, + "new_cases_smoothed_per_million": 2.02, + "total_deaths_per_million": 0.577, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 5076.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 19.872, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-04-07", + "total_cases": 3906.0, + "new_cases": 252.0, + "new_cases_smoothed": 279.0, + "total_deaths": 80.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 30.883, + "new_cases_per_million": 1.992, + "new_cases_smoothed_per_million": 2.206, + "total_deaths_per_million": 0.633, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 5457.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 19.559, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-08", + "total_cases": 4257.0, + "new_cases": 351.0, + "new_cases_smoothed": 329.143, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 33.658, + "new_cases_per_million": 2.775, + "new_cases_smoothed_per_million": 2.602, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 5837.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 17.734, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-09", + "total_cases": 4768.0, + "new_cases": 511.0, + "new_cases_smoothed": 370.0, + "total_deaths": 85.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 37.699, + "new_cases_per_million": 4.04, + "new_cases_smoothed_per_million": 2.925, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 6218.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 16.805, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-10", + "total_cases": 5347.0, + "new_cases": 579.0, + "new_cases_smoothed": 390.0, + "total_deaths": 88.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 42.277, + "new_cases_per_million": 4.578, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 0.696, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 6598.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 16.918, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-11", + "total_cases": 6005.0, + "new_cases": 658.0, + "new_cases_smoothed": 438.571, + "total_deaths": 94.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 47.479, + "new_cases_per_million": 5.203, + "new_cases_smoothed_per_million": 3.468, + "total_deaths_per_million": 0.743, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.028, + "total_tests": 136080.0, + "total_tests_per_thousand": 1.076, + "new_tests_smoothed": 6979.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 15.913, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-12", + "total_cases": 6748.0, + "new_cases": 743.0, + "new_cases_smoothed": 496.714, + "total_deaths": 98.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 53.354, + "new_cases_per_million": 5.875, + "new_cases_smoothed_per_million": 3.927, + "total_deaths_per_million": 0.775, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 7147.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 14.389000000000001, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-13", + "total_cases": 7255.0, + "new_cases": 507.0, + "new_cases_smoothed": 514.429, + "total_deaths": 102.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 57.362, + "new_cases_per_million": 4.009, + "new_cases_smoothed_per_million": 4.067, + "total_deaths_per_million": 0.806, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.033, + "new_tests_smoothed": 7316.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 14.222000000000001, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-14", + "total_cases": 7645.0, + "new_cases": 390.0, + "new_cases_smoothed": 534.143, + "total_deaths": 109.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 60.446, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 4.223, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.033, + "new_tests_smoothed": 7485.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 14.013, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-15", + "total_cases": 8100.0, + "new_cases": 455.0, + "new_cases_smoothed": 549.0, + "total_deaths": 119.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 64.044, + "new_cases_per_million": 3.598, + "new_cases_smoothed_per_million": 4.341, + "total_deaths_per_million": 0.941, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.043, + "new_tests_smoothed": 7654.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 13.942, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-04-16", + "total_cases": 8582.0, + "new_cases": 482.0, + "new_cases_smoothed": 544.857, + "total_deaths": 136.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 67.855, + "new_cases_per_million": 3.811, + "new_cases_smoothed_per_million": 4.308, + "total_deaths_per_million": 1.075, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 7823.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 14.357999999999999, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-17", + "total_cases": 9167.0, + "new_cases": 585.0, + "new_cases_smoothed": 545.714, + "total_deaths": 148.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 72.48, + "new_cases_per_million": 4.625, + "new_cases_smoothed_per_million": 4.315, + "total_deaths_per_million": 1.17, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.068, + "new_tests_smoothed": 7991.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 14.642999999999999, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-18", + "total_cases": 9795.0, + "new_cases": 628.0, + "new_cases_smoothed": 541.429, + "total_deaths": 154.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 77.445, + "new_cases_per_million": 4.965, + "new_cases_smoothed_per_million": 4.281, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.068, + "total_tests": 193202.0, + "total_tests_per_thousand": 1.528, + "new_tests_smoothed": 8160.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 15.071, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-19", + "total_cases": 10361.0, + "new_cases": 566.0, + "new_cases_smoothed": 516.143, + "total_deaths": 161.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 81.92, + "new_cases_per_million": 4.475, + "new_cases_smoothed_per_million": 4.081, + "total_deaths_per_million": 1.273, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.071, + "new_tests_smoothed": 8184.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 15.856, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-20", + "total_cases": 10751.0, + "new_cases": 390.0, + "new_cases_smoothed": 499.429, + "total_deaths": 171.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 85.004, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 1.352, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.078, + "new_tests_smoothed": 8207.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 16.433, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-21", + "total_cases": 11118.0, + "new_cases": 367.0, + "new_cases_smoothed": 496.143, + "total_deaths": 186.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 87.906, + "new_cases_per_million": 2.902, + "new_cases_smoothed_per_million": 3.923, + "total_deaths_per_million": 1.471, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.087, + "new_tests_smoothed": 8231.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 16.59, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-22", + "total_cases": 11496.0, + "new_cases": 378.0, + "new_cases_smoothed": 485.143, + "total_deaths": 186.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 90.894, + "new_cases_per_million": 2.989, + "new_cases_smoothed_per_million": 3.836, + "total_deaths_per_million": 1.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests_smoothed": 8254.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 17.014, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-23", + "total_cases": 11772.0, + "new_cases": 276.0, + "new_cases_smoothed": 455.714, + "total_deaths": 287.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 93.077, + "new_cases_per_million": 2.182, + "new_cases_smoothed_per_million": 3.603, + "total_deaths_per_million": 2.269, + "new_deaths_per_million": 0.799, + "new_deaths_smoothed_per_million": 0.171, + "new_tests_smoothed": 8278.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 18.165, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-24", + "total_cases": 12240.0, + "new_cases": 468.0, + "new_cases_smoothed": 439.0, + "total_deaths": 317.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 96.777, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 3.471, + "total_deaths_per_million": 2.506, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.191, + "new_tests_smoothed": 8301.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 18.909000000000002, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-25", + "total_cases": 12892.0, + "new_cases": 652.0, + "new_cases_smoothed": 442.429, + "total_deaths": 334.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 101.932, + "new_cases_per_million": 5.155, + "new_cases_smoothed_per_million": 3.498, + "total_deaths_per_million": 2.641, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.203, + "total_tests": 251473.0, + "total_tests_per_thousand": 1.988, + "new_tests_smoothed": 8324.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 18.814, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-26", + "total_cases": 13182.0, + "new_cases": 290.0, + "new_cases_smoothed": 403.0, + "total_deaths": 348.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 104.225, + "new_cases_per_million": 2.293, + "new_cases_smoothed_per_million": 3.186, + "total_deaths_per_million": 2.752, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.211, + "new_tests_smoothed": 8281.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 20.548000000000002, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-27", + "total_cases": 13385.0, + "new_cases": 203.0, + "new_cases_smoothed": 376.286, + "total_deaths": 351.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 105.83, + "new_cases_per_million": 1.605, + "new_cases_smoothed_per_million": 2.975, + "total_deaths_per_million": 2.775, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.203, + "new_tests_smoothed": 8237.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 21.89, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-28", + "total_cases": 13576.0, + "new_cases": 191.0, + "new_cases_smoothed": 351.143, + "total_deaths": 376.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 107.34, + "new_cases_per_million": 1.51, + "new_cases_smoothed_per_million": 2.776, + "total_deaths_per_million": 2.973, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.215, + "new_tests_smoothed": 8193.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 23.331999999999997, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-29", + "total_cases": 13852.0, + "new_cases": 276.0, + "new_cases_smoothed": 336.571, + "total_deaths": 389.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 29.0, + "total_cases_per_million": 109.522, + "new_cases_per_million": 2.182, + "new_cases_smoothed_per_million": 2.661, + "total_deaths_per_million": 3.076, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.229, + "new_tests_smoothed": 8149.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 24.212, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-04-30", + "total_cases": 14088.0, + "new_cases": 236.0, + "new_cases_smoothed": 330.857, + "total_deaths": 415.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 111.388, + "new_cases_per_million": 1.866, + "new_cases_smoothed_per_million": 2.616, + "total_deaths_per_million": 3.281, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.145, + "new_tests_smoothed": 8106.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 24.5, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-01", + "total_cases": 14281.0, + "new_cases": 193.0, + "new_cases_smoothed": 291.571, + "total_deaths": 432.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 112.914, + "new_cases_per_million": 1.526, + "new_cases_smoothed_per_million": 2.305, + "total_deaths_per_million": 3.416, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.13, + "new_tests_smoothed": 8062.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 27.65, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-02", + "total_cases": 14544.0, + "new_cases": 263.0, + "new_cases_smoothed": 236.0, + "total_deaths": 458.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 114.994, + "new_cases_per_million": 2.079, + "new_cases_smoothed_per_million": 1.866, + "total_deaths_per_million": 3.621, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.14, + "total_tests": 307601.0, + "total_tests_per_thousand": 2.432, + "new_tests_smoothed": 8018.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 33.975, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-03", + "total_cases": 14839.0, + "new_cases": 295.0, + "new_cases_smoothed": 236.714, + "total_deaths": 492.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 117.326, + "new_cases_per_million": 2.332, + "new_cases_smoothed_per_million": 1.872, + "total_deaths_per_million": 3.89, + "new_deaths_per_million": 0.269, + "new_deaths_smoothed_per_million": 0.163, + "new_tests_smoothed": 7825.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 33.056999999999995, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-04", + "total_cases": 15057.0, + "new_cases": 218.0, + "new_cases_smoothed": 238.857, + "total_deaths": 510.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 119.05, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 1.889, + "total_deaths_per_million": 4.032, + "new_deaths_per_million": 0.142, + "new_deaths_smoothed_per_million": 0.18, + "new_tests_smoothed": 7631.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 31.948, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-05", + "total_cases": 15231.0, + "new_cases": 174.0, + "new_cases_smoothed": 236.429, + "total_deaths": 521.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 120.426, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 1.869, + "total_deaths_per_million": 4.119, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.164, + "new_tests_smoothed": 7437.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 31.456, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-06", + "total_cases": 15354.0, + "new_cases": 123.0, + "new_cases_smoothed": 214.571, + "total_deaths": 543.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 121.398, + "new_cases_per_million": 0.973, + "new_cases_smoothed_per_million": 1.697, + "total_deaths_per_million": 4.293, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.174, + "new_tests_smoothed": 7243.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 33.756, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-07", + "total_cases": 15463.0, + "new_cases": 109.0, + "new_cases_smoothed": 196.429, + "total_deaths": 551.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 122.26, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 1.553, + "total_deaths_per_million": 4.357, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.154, + "new_tests_smoothed": 7050.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 35.891, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-08", + "total_cases": 15547.0, + "new_cases": 84.0, + "new_cases_smoothed": 180.857, + "total_deaths": 557.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 122.924, + "new_cases_per_million": 0.664, + "new_cases_smoothed_per_million": 1.43, + "total_deaths_per_million": 4.404, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.141, + "new_tests_smoothed": 6856.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 37.908, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-09", + "total_cases": 15628.0, + "new_cases": 81.0, + "new_cases_smoothed": 154.857, + "total_deaths": 601.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 123.564, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 1.224, + "total_deaths_per_million": 4.752, + "new_deaths_per_million": 0.348, + "new_deaths_smoothed_per_million": 0.162, + "total_tests": 354236.0, + "total_tests_per_thousand": 2.801, + "new_tests_smoothed": 6662.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 43.02, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-10", + "total_cases": 15747.0, + "new_cases": 119.0, + "new_cases_smoothed": 129.714, + "total_deaths": 613.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 124.505, + "new_cases_per_million": 0.941, + "new_cases_smoothed_per_million": 1.026, + "total_deaths_per_million": 4.847, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.137, + "new_tests_smoothed": 6782.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 52.284, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-11", + "total_cases": 15798.0, + "new_cases": 51.0, + "new_cases_smoothed": 105.857, + "total_deaths": 621.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 124.909, + "new_cases_per_million": 0.403, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 4.91, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.125, + "new_tests_smoothed": 6902.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 65.20100000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-12", + "total_cases": 15874.0, + "new_cases": 76.0, + "new_cases_smoothed": 91.857, + "total_deaths": 643.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 125.51, + "new_cases_per_million": 0.601, + "new_cases_smoothed_per_million": 0.726, + "total_deaths_per_million": 5.084, + "new_deaths_per_million": 0.174, + "new_deaths_smoothed_per_million": 0.138, + "new_tests_smoothed": 7022.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 76.445, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-13", + "total_cases": 16024.0, + "new_cases": 150.0, + "new_cases_smoothed": 95.714, + "total_deaths": 668.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 126.696, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 5.282, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.141, + "new_tests_smoothed": 7142.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 74.618, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-05-14", + "total_cases": 16079.0, + "new_cases": 55.0, + "new_cases_smoothed": 88.0, + "total_deaths": 687.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 127.13, + "new_cases_per_million": 0.435, + "new_cases_smoothed_per_million": 0.696, + "total_deaths_per_million": 5.432, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.154, + "new_tests_smoothed": 7262.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 82.523, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-15", + "total_cases": 16193.0, + "new_cases": 114.0, + "new_cases_smoothed": 92.286, + "total_deaths": 710.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 128.032, + "new_cases_per_million": 0.901, + "new_cases_smoothed_per_million": 0.73, + "total_deaths_per_million": 5.614, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.173, + "new_tests_smoothed": 7382.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 79.991, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-16", + "total_cases": 16237.0, + "new_cases": 44.0, + "new_cases_smoothed": 87.0, + "total_deaths": 725.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 128.38, + "new_cases_per_million": 0.348, + "new_cases_smoothed_per_million": 0.688, + "total_deaths_per_million": 5.732, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.14, + "total_tests": 406752.0, + "total_tests_per_thousand": 3.216, + "new_tests_smoothed": 7502.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 86.23, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-17", + "total_cases": 16285.0, + "new_cases": 48.0, + "new_cases_smoothed": 76.857, + "total_deaths": 744.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 128.759, + "new_cases_per_million": 0.38, + "new_cases_smoothed_per_million": 0.608, + "total_deaths_per_million": 5.883, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.148, + "new_tests_smoothed": 7262.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 94.48700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-18", + "total_cases": 16305.0, + "new_cases": 20.0, + "new_cases_smoothed": 72.429, + "total_deaths": 749.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 128.917, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.573, + "total_deaths_per_million": 5.922, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.145, + "new_tests_smoothed": 7021.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 96.93700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-19", + "total_cases": 16365.0, + "new_cases": 60.0, + "new_cases_smoothed": 70.143, + "total_deaths": 763.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 129.392, + "new_cases_per_million": 0.474, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 6.033, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.136, + "new_tests_smoothed": 6781.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 96.67399999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-20", + "total_cases": 16385.0, + "new_cases": 20.0, + "new_cases_smoothed": 51.571, + "total_deaths": 771.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 129.55, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 6.096, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.116, + "new_tests_smoothed": 6540.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 126.814, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-21", + "total_cases": 16424.0, + "new_cases": 39.0, + "new_cases_smoothed": 49.286, + "total_deaths": 777.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 129.858, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 6.143, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.102, + "new_tests_smoothed": 6300.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 127.82600000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-22", + "total_cases": 16513.0, + "new_cases": 89.0, + "new_cases_smoothed": 45.714, + "total_deaths": 796.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 130.562, + "new_cases_per_million": 0.704, + "new_cases_smoothed_per_million": 0.361, + "total_deaths_per_million": 6.294, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.097, + "new_tests_smoothed": 6059.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 132.541, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-23", + "total_cases": 16536.0, + "new_cases": 23.0, + "new_cases_smoothed": 42.714, + "total_deaths": 808.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 130.744, + "new_cases_per_million": 0.182, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 6.389, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.094, + "total_tests": 447484.0, + "total_tests_per_thousand": 3.538, + "new_tests_smoothed": 5819.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 136.231, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-24", + "total_cases": 16550.0, + "new_cases": 14.0, + "new_cases_smoothed": 37.857, + "total_deaths": 820.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 130.854, + "new_cases_per_million": 0.111, + "new_cases_smoothed_per_million": 0.299, + "total_deaths_per_million": 6.483, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.086, + "new_tests_smoothed": 5753.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 151.966, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-05-25", + "total_cases": 16581.0, + "new_cases": 31.0, + "new_cases_smoothed": 39.429, + "total_deaths": 830.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 131.099, + "new_cases_per_million": 0.245, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 6.562, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.091, + "new_tests_smoothed": 5686.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 144.21, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 31.48 + }, + { + "date": "2020-05-26", + "total_cases": 16623.0, + "new_cases": 42.0, + "new_cases_smoothed": 36.857, + "total_deaths": 846.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 131.432, + "new_cases_per_million": 0.332, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 6.689, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.094, + "new_tests_smoothed": 5620.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 152.481, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-05-27", + "total_cases": 16651.0, + "new_cases": 28.0, + "new_cases_smoothed": 38.0, + "total_deaths": 858.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 131.653, + "new_cases_per_million": 0.221, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 6.784, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 5554.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 146.158, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-05-28", + "total_cases": 16651.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.429, + "total_deaths": 858.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 131.653, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 6.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.091, + "new_tests_smoothed": 5488.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 169.233, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-05-29", + "total_cases": 16719.0, + "new_cases": 68.0, + "new_cases_smoothed": 29.429, + "total_deaths": 874.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 132.191, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 6.91, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.088, + "new_tests_smoothed": 5422.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 184.243, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-05-30", + "total_cases": 16804.0, + "new_cases": 85.0, + "new_cases_smoothed": 38.286, + "total_deaths": 886.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 132.863, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 7.005, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.088, + "total_tests": 484972.0, + "total_tests_per_thousand": 3.834, + "new_tests_smoothed": 5355.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 139.869, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-05-31", + "total_cases": 16851.0, + "new_cases": 47.0, + "new_cases_smoothed": 43.0, + "total_deaths": 891.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 133.234, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 7.045, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.08, + "new_tests_smoothed": 5499.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 127.884, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-06-01", + "total_cases": 16884.0, + "new_cases": 33.0, + "new_cases_smoothed": 43.286, + "total_deaths": 892.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 133.495, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 7.053, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 5642.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 130.343, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-02", + "total_cases": 16930.0, + "new_cases": 46.0, + "new_cases_smoothed": 43.857, + "total_deaths": 894.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 133.859, + "new_cases_per_million": 0.364, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 7.069, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.054, + "new_tests_smoothed": 5785.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 131.906, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-03", + "total_cases": 16986.0, + "new_cases": 56.0, + "new_cases_smoothed": 47.857, + "total_deaths": 900.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 134.302, + "new_cases_per_million": 0.443, + "new_cases_smoothed_per_million": 0.378, + "total_deaths_per_million": 7.116, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.047, + "new_tests_smoothed": 5929.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 123.89, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-04", + "total_cases": 17018.0, + "new_cases": 32.0, + "new_cases_smoothed": 52.429, + "total_deaths": 903.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 134.555, + "new_cases_per_million": 0.253, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 7.14, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.051, + "new_tests_smoothed": 6072.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 115.815, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-05", + "total_cases": 17064.0, + "new_cases": 46.0, + "new_cases_smoothed": 49.286, + "total_deaths": 907.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 134.918, + "new_cases_per_million": 0.364, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 7.171, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 6215.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 126.101, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-06", + "total_cases": 17103.0, + "new_cases": 39.0, + "new_cases_smoothed": 42.714, + "total_deaths": 914.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 135.227, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 7.227, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 529482.0, + "total_tests_per_thousand": 4.186, + "new_tests_smoothed": 6359.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 148.873, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-07", + "total_cases": 17141.0, + "new_cases": 38.0, + "new_cases_smoothed": 41.429, + "total_deaths": 916.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 135.527, + "new_cases_per_million": 0.3, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 7.242, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 6417.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 154.893, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-08", + "total_cases": 17174.0, + "new_cases": 33.0, + "new_cases_smoothed": 41.429, + "total_deaths": 916.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 135.788, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 7.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 6475.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 156.293, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-09", + "total_cases": 17210.0, + "new_cases": 36.0, + "new_cases_smoothed": 40.0, + "total_deaths": 916.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 136.073, + "new_cases_per_million": 0.285, + "new_cases_smoothed_per_million": 0.316, + "total_deaths_per_million": 7.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 6533.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 163.325, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-10", + "total_cases": 17251.0, + "new_cases": 41.0, + "new_cases_smoothed": 37.857, + "total_deaths": 919.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 136.397, + "new_cases_per_million": 0.324, + "new_cases_smoothed_per_million": 0.299, + "total_deaths_per_million": 7.266, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 6591.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 174.102, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-11", + "total_cases": 17292.0, + "new_cases": 41.0, + "new_cases_smoothed": 39.143, + "total_deaths": 920.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 136.721, + "new_cases_per_million": 0.324, + "new_cases_smoothed_per_million": 0.309, + "total_deaths_per_million": 7.274, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 6649.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 169.865, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-12", + "total_cases": 17332.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.286, + "total_deaths": 922.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 137.037, + "new_cases_per_million": 0.316, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 7.29, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 6707.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 175.183, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-13", + "total_cases": 17382.0, + "new_cases": 50.0, + "new_cases_smoothed": 39.857, + "total_deaths": 924.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 137.433, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 7.306, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 576841.0, + "total_tests_per_thousand": 4.561, + "new_tests_smoothed": 6766.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 169.75599999999997, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-14", + "total_cases": 17429.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.143, + "total_deaths": 925.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 137.804, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 7.314, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.01, + "new_tests_smoothed": 6740.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 163.819, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-15", + "total_cases": 17502.0, + "new_cases": 73.0, + "new_cases_smoothed": 46.857, + "total_deaths": 925.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 138.381, + "new_cases_per_million": 0.577, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 7.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests_smoothed": 6715.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 143.308, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-16", + "total_cases": 17587.0, + "new_cases": 85.0, + "new_cases_smoothed": 53.857, + "total_deaths": 927.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 139.054, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 7.329, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 6689.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 124.199, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-17", + "total_cases": 17628.0, + "new_cases": 41.0, + "new_cases_smoothed": 53.857, + "total_deaths": 931.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 139.378, + "new_cases_per_million": 0.324, + "new_cases_smoothed_per_million": 0.426, + "total_deaths_per_million": 7.361, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 6664.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 123.735, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-18", + "total_cases": 17668.0, + "new_cases": 40.0, + "new_cases_smoothed": 53.714, + "total_deaths": 935.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 139.694, + "new_cases_per_million": 0.316, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 7.393, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 6639.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 123.598, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-19", + "total_cases": 17740.0, + "new_cases": 72.0, + "new_cases_smoothed": 58.286, + "total_deaths": 935.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 140.263, + "new_cases_per_million": 0.569, + "new_cases_smoothed_per_million": 0.461, + "total_deaths_per_million": 7.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 6613.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 113.458, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-20", + "total_cases": 17799.0, + "new_cases": 59.0, + "new_cases_smoothed": 59.571, + "total_deaths": 952.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 140.73, + "new_cases_per_million": 0.466, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 7.527, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 622956.0, + "total_tests_per_thousand": 4.925, + "new_tests_smoothed": 6588.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 110.59, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-21", + "total_cases": 17799.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.857, + "total_deaths": 952.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 140.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.418, + "total_deaths_per_million": 7.527, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests_smoothed": 6661.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 126.01899999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-22", + "total_cases": 17916.0, + "new_cases": 117.0, + "new_cases_smoothed": 59.143, + "total_deaths": 953.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 141.655, + "new_cases_per_million": 0.925, + "new_cases_smoothed_per_million": 0.468, + "total_deaths_per_million": 7.535, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 6734.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 113.86, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-23", + "total_cases": 17968.0, + "new_cases": 52.0, + "new_cases_smoothed": 54.429, + "total_deaths": 955.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 142.066, + "new_cases_per_million": 0.411, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 7.551, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 6806.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 125.045, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-24", + "total_cases": 18027.0, + "new_cases": 59.0, + "new_cases_smoothed": 57.0, + "total_deaths": 963.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 142.532, + "new_cases_per_million": 0.466, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 7.614, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.036, + "new_tests_smoothed": 6879.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 120.684, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-25", + "total_cases": 18110.0, + "new_cases": 83.0, + "new_cases_smoothed": 63.143, + "total_deaths": 968.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 143.189, + "new_cases_per_million": 0.656, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 7.654, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 6952.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 110.1, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-26", + "total_cases": 18197.0, + "new_cases": 87.0, + "new_cases_smoothed": 65.286, + "total_deaths": 969.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 143.877, + "new_cases_per_million": 0.688, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 7.662, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.038, + "new_tests_smoothed": 7025.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 107.604, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-27", + "total_cases": 18297.0, + "new_cases": 100.0, + "new_cases_smoothed": 71.143, + "total_deaths": 971.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 144.667, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 7.677, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.021, + "total_tests": 672641.0, + "total_tests_per_thousand": 5.318, + "new_tests_smoothed": 7098.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 99.771, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-28", + "total_cases": 18390.0, + "new_cases": 93.0, + "new_cases_smoothed": 84.429, + "total_deaths": 971.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 145.403, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 0.668, + "total_deaths_per_million": 7.677, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 7280.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 86.227, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-29", + "total_cases": 18476.0, + "new_cases": 86.0, + "new_cases_smoothed": 80.0, + "total_deaths": 972.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 146.083, + "new_cases_per_million": 0.68, + "new_cases_smoothed_per_million": 0.633, + "total_deaths_per_million": 7.685, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.021, + "new_tests_smoothed": 7461.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 93.262, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-06-30", + "total_cases": 18593.0, + "new_cases": 117.0, + "new_cases_smoothed": 89.286, + "total_deaths": 972.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 147.008, + "new_cases_per_million": 0.925, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 7.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 7643.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 85.602, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-01", + "total_cases": 18723.0, + "new_cases": 130.0, + "new_cases_smoothed": 99.429, + "total_deaths": 974.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 148.035, + "new_cases_per_million": 1.028, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 7.701, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 7825.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 78.7, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-02", + "total_cases": 18874.0, + "new_cases": 151.0, + "new_cases_smoothed": 109.143, + "total_deaths": 975.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 149.229, + "new_cases_per_million": 1.194, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 7.709, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 8006.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 73.35300000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-03", + "total_cases": 19068.0, + "new_cases": 194.0, + "new_cases_smoothed": 124.429, + "total_deaths": 976.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 150.763, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 7.717, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 8188.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 65.805, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-04", + "total_cases": 19282.0, + "new_cases": 214.0, + "new_cases_smoothed": 140.714, + "total_deaths": 977.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 152.455, + "new_cases_per_million": 1.692, + "new_cases_smoothed_per_million": 1.113, + "total_deaths_per_million": 7.725, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.007, + "total_tests": 731228.0, + "total_tests_per_thousand": 5.782, + "new_tests_smoothed": 8370.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 59.482, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-05", + "total_cases": 19522.0, + "new_cases": 240.0, + "new_cases_smoothed": 161.714, + "total_deaths": 977.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 154.353, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 1.279, + "total_deaths_per_million": 7.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 8797.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 54.398, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-06", + "total_cases": 19775.0, + "new_cases": 253.0, + "new_cases_smoothed": 185.571, + "total_deaths": 977.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 156.353, + "new_cases_per_million": 2.0, + "new_cases_smoothed_per_million": 1.467, + "total_deaths_per_million": 7.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 9224.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 49.706, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-07", + "total_cases": 19981.0, + "new_cases": 206.0, + "new_cases_smoothed": 198.286, + "total_deaths": 978.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 157.982, + "new_cases_per_million": 1.629, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 7.733, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 9651.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 48.672, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-08", + "total_cases": 20174.0, + "new_cases": 193.0, + "new_cases_smoothed": 207.286, + "total_deaths": 980.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 159.508, + "new_cases_per_million": 1.526, + "new_cases_smoothed_per_million": 1.639, + "total_deaths_per_million": 7.748, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 10079.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 48.623999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-09", + "total_cases": 20371.0, + "new_cases": 197.0, + "new_cases_smoothed": 213.857, + "total_deaths": 981.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 161.066, + "new_cases_per_million": 1.558, + "new_cases_smoothed_per_million": 1.691, + "total_deaths_per_million": 7.756, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 10506.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 49.126000000000005, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-10", + "total_cases": 20719.0, + "new_cases": 348.0, + "new_cases_smoothed": 235.857, + "total_deaths": 982.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 163.817, + "new_cases_per_million": 2.752, + "new_cases_smoothed_per_million": 1.865, + "total_deaths_per_million": 7.764, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 10933.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 46.354, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-11", + "total_cases": 21129.0, + "new_cases": 410.0, + "new_cases_smoothed": 263.857, + "total_deaths": 982.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 167.059, + "new_cases_per_million": 3.242, + "new_cases_smoothed_per_million": 2.086, + "total_deaths_per_million": 7.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "total_tests": 810752.0, + "total_tests_per_thousand": 6.41, + "new_tests_smoothed": 11361.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 43.056999999999995, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-12", + "total_cases": 21502.0, + "new_cases": 373.0, + "new_cases_smoothed": 282.857, + "total_deaths": 982.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 170.008, + "new_cases_per_million": 2.949, + "new_cases_smoothed_per_million": 2.236, + "total_deaths_per_million": 7.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 11827.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 41.813, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-13", + "total_cases": 21868.0, + "new_cases": 366.0, + "new_cases_smoothed": 299.0, + "total_deaths": 982.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 172.902, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 2.364, + "total_deaths_per_million": 7.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 12292.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 41.11, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-14", + "total_cases": 22220.0, + "new_cases": 352.0, + "new_cases_smoothed": 319.857, + "total_deaths": 982.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 175.685, + "new_cases_per_million": 2.783, + "new_cases_smoothed_per_million": 2.529, + "total_deaths_per_million": 7.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 12758.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 39.887, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-15", + "total_cases": 22508.0, + "new_cases": 288.0, + "new_cases_smoothed": 333.429, + "total_deaths": 984.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 177.962, + "new_cases_per_million": 2.277, + "new_cases_smoothed_per_million": 2.636, + "total_deaths_per_million": 7.78, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 13224.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 39.661, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-16", + "total_cases": 22890.0, + "new_cases": 382.0, + "new_cases_smoothed": 359.857, + "total_deaths": 985.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 180.982, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 2.845, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 13690.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 38.043, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-17", + "total_cases": 23473.0, + "new_cases": 583.0, + "new_cases_smoothed": 393.429, + "total_deaths": 985.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 185.592, + "new_cases_per_million": 4.61, + "new_cases_smoothed_per_million": 3.111, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 14156.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 35.981, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-18", + "total_cases": 24132.0, + "new_cases": 659.0, + "new_cases_smoothed": 429.0, + "total_deaths": 985.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 190.802, + "new_cases_per_million": 5.21, + "new_cases_smoothed_per_million": 3.392, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 913108.0, + "total_tests_per_thousand": 7.22, + "new_tests_smoothed": 14622.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 34.084, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-19", + "total_cases": 24642.0, + "new_cases": 510.0, + "new_cases_smoothed": 448.571, + "total_deaths": 985.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 194.835, + "new_cases_per_million": 4.032, + "new_cases_smoothed_per_million": 3.547, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 14662.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 32.686, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-20", + "total_cases": 25096.0, + "new_cases": 454.0, + "new_cases_smoothed": 461.143, + "total_deaths": 985.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 198.424, + "new_cases_per_million": 3.59, + "new_cases_smoothed_per_million": 3.646, + "total_deaths_per_million": 7.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 14701.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 31.879, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-21", + "total_cases": 25736.0, + "new_cases": 640.0, + "new_cases_smoothed": 502.286, + "total_deaths": 988.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 203.485, + "new_cases_per_million": 5.06, + "new_cases_smoothed_per_million": 3.971, + "total_deaths_per_million": 7.812, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 14740.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 29.346, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-22", + "total_cases": 26303.0, + "new_cases": 567.0, + "new_cases_smoothed": 542.143, + "total_deaths": 989.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 207.968, + "new_cases_per_million": 4.483, + "new_cases_smoothed_per_million": 4.287, + "total_deaths_per_million": 7.82, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 14780.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 27.261999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-07-23", + "total_cases": 27029.0, + "new_cases": 726.0, + "new_cases_smoothed": 591.286, + "total_deaths": 990.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 213.708, + "new_cases_per_million": 5.74, + "new_cases_smoothed_per_million": 4.675, + "total_deaths_per_million": 7.828, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 14819.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 25.061999999999998, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-07-24", + "total_cases": 27956.0, + "new_cases": 927.0, + "new_cases_smoothed": 640.429, + "total_deaths": 992.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 221.037, + "new_cases_per_million": 7.329, + "new_cases_smoothed_per_million": 5.064, + "total_deaths_per_million": 7.843, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 14858.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 23.2, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-07-25", + "total_cases": 28786.0, + "new_cases": 830.0, + "new_cases_smoothed": 664.857, + "total_deaths": 993.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 227.6, + "new_cases_per_million": 6.562, + "new_cases_smoothed_per_million": 5.257, + "total_deaths_per_million": 7.851, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 1017392.0, + "total_tests_per_thousand": 8.044, + "new_tests_smoothed": 14898.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_per_case": 22.408, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-07-26", + "total_cases": 29382.0, + "new_cases": 596.0, + "new_cases_smoothed": 677.143, + "total_deaths": 996.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 232.312, + "new_cases_per_million": 4.712, + "new_cases_smoothed_per_million": 5.354, + "total_deaths_per_million": 7.875, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 15949.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 23.553, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-27", + "total_cases": 29989.0, + "new_cases": 607.0, + "new_cases_smoothed": 699.0, + "total_deaths": 996.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 237.111, + "new_cases_per_million": 4.799, + "new_cases_smoothed_per_million": 5.527, + "total_deaths_per_million": 7.875, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 17000.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 24.32, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-28", + "total_cases": 29989.0, + "new_cases": 0.0, + "new_cases_smoothed": 607.571, + "total_deaths": 996.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 237.111, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.804, + "total_deaths_per_million": 7.875, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 18051.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 29.71, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-29", + "total_cases": 31333.0, + "new_cases": 1344.0, + "new_cases_smoothed": 718.571, + "total_deaths": 1000.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 247.738, + "new_cases_per_million": 10.626, + "new_cases_smoothed_per_million": 5.681, + "total_deaths_per_million": 7.907, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 19103.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 26.585, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-30", + "total_cases": 32459.0, + "new_cases": 1126.0, + "new_cases_smoothed": 775.714, + "total_deaths": 1003.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 256.641, + "new_cases_per_million": 8.903, + "new_cases_smoothed_per_million": 6.133, + "total_deaths_per_million": 7.93, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 20154.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 25.980999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-31", + "total_cases": 33774.0, + "new_cases": 1315.0, + "new_cases_smoothed": 831.143, + "total_deaths": 1005.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 267.038, + "new_cases_per_million": 10.397, + "new_cases_smoothed_per_million": 6.572, + "total_deaths_per_million": 7.946, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.015, + "new_tests_smoothed": 21205.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 25.513, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-01", + "total_cases": 34372.0, + "new_cases": 598.0, + "new_cases_smoothed": 798.0, + "total_deaths": 1006.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 271.766, + "new_cases_per_million": 4.728, + "new_cases_smoothed_per_million": 6.309, + "total_deaths_per_million": 7.954, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.015, + "total_tests": 1173187.0, + "total_tests_per_thousand": 9.276, + "new_tests_smoothed": 22256.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 27.89, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-02", + "total_cases": 36081.0, + "new_cases": 1709.0, + "new_cases_smoothed": 957.0, + "total_deaths": 1010.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 285.278, + "new_cases_per_million": 13.512, + "new_cases_smoothed_per_million": 7.567, + "total_deaths_per_million": 7.986, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 22728.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 23.749000000000002, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-03", + "total_cases": 38072.0, + "new_cases": 1991.0, + "new_cases_smoothed": 1154.714, + "total_deaths": 1011.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 301.02, + "new_cases_per_million": 15.742, + "new_cases_smoothed_per_million": 9.13, + "total_deaths_per_million": 7.994, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 23199.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 20.090999999999998, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-04", + "total_cases": 39858.0, + "new_cases": 1786.0, + "new_cases_smoothed": 1409.857, + "total_deaths": 1016.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 315.142, + "new_cases_per_million": 14.121, + "new_cases_smoothed_per_million": 11.147, + "total_deaths_per_million": 8.033, + "new_deaths_per_million": 0.04, + "new_deaths_smoothed_per_million": 0.023, + "new_tests_smoothed": 23670.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 16.789, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-05", + "total_cases": 41129.0, + "new_cases": 1271.0, + "new_cases_smoothed": 1399.429, + "total_deaths": 1022.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 325.191, + "new_cases_per_million": 10.049, + "new_cases_smoothed_per_million": 11.065, + "total_deaths_per_million": 8.081, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 24141.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 17.250999999999998, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-06", + "total_cases": 42263.0, + "new_cases": 1134.0, + "new_cases_smoothed": 1400.571, + "total_deaths": 1026.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 334.157, + "new_cases_per_million": 8.966, + "new_cases_smoothed_per_million": 11.074, + "total_deaths_per_million": 8.112, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 24613.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 17.574, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-07", + "total_cases": 43815.0, + "new_cases": 1552.0, + "new_cases_smoothed": 1434.429, + "total_deaths": 1033.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 346.428, + "new_cases_per_million": 12.271, + "new_cases_smoothed_per_million": 11.341, + "total_deaths_per_million": 8.168, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 25084.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 17.487000000000002, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-08", + "total_cases": 45439.0, + "new_cases": 1624.0, + "new_cases_smoothed": 1581.0, + "total_deaths": 1039.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 359.268, + "new_cases_per_million": 12.84, + "new_cases_smoothed_per_million": 12.5, + "total_deaths_per_million": 8.215, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.037, + "total_tests": 1352073.0, + "total_tests_per_thousand": 10.69, + "new_tests_smoothed": 25555.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 16.164, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-09", + "total_cases": 46783.0, + "new_cases": 1344.0, + "new_cases_smoothed": 1528.857, + "total_deaths": 1040.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 369.895, + "new_cases_per_million": 10.626, + "new_cases_smoothed_per_million": 12.088, + "total_deaths_per_million": 8.223, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.034, + "new_tests_smoothed": 24929.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 16.305999999999997, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-10", + "total_cases": 47990.0, + "new_cases": 1207.0, + "new_cases_smoothed": 1416.857, + "total_deaths": 1047.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 379.438, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 11.203, + "total_deaths_per_million": 8.278, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 24303.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 17.153, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-11", + "total_cases": 48238.0, + "new_cases": 248.0, + "new_cases_smoothed": 1197.143, + "total_deaths": 1051.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 381.399, + "new_cases_per_million": 1.961, + "new_cases_smoothed_per_million": 9.465, + "total_deaths_per_million": 8.31, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 23678.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 19.779, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-12", + "total_cases": 49512.0, + "new_cases": 1274.0, + "new_cases_smoothed": 1197.571, + "total_deaths": 1058.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 391.472, + "new_cases_per_million": 10.073, + "new_cases_smoothed_per_million": 9.469, + "total_deaths_per_million": 8.365, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 23052.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 19.249000000000002, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-13", + "total_cases": 50444.0, + "new_cases": 932.0, + "new_cases_smoothed": 1168.714, + "total_deaths": 1062.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 398.841, + "new_cases_per_million": 7.369, + "new_cases_smoothed_per_million": 9.241, + "total_deaths_per_million": 8.397, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 22426.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 19.189, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-14", + "total_cases": 51513.0, + "new_cases": 1069.0, + "new_cases_smoothed": 1099.714, + "total_deaths": 1072.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 407.293, + "new_cases_per_million": 8.452, + "new_cases_smoothed_per_million": 8.695, + "total_deaths_per_million": 8.476, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.044, + "new_tests_smoothed": 21800.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 19.823, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-15", + "total_cases": 53577.0, + "new_cases": 2064.0, + "new_cases_smoothed": 1162.571, + "total_deaths": 1085.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 423.612, + "new_cases_per_million": 16.319, + "new_cases_smoothed_per_million": 9.192, + "total_deaths_per_million": 8.579, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 1500291.0, + "total_tests_per_thousand": 11.862, + "new_tests_smoothed": 21174.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 18.213, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-16", + "total_cases": 54714.0, + "new_cases": 1137.0, + "new_cases_smoothed": 1133.0, + "total_deaths": 1088.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 432.602, + "new_cases_per_million": 8.99, + "new_cases_smoothed_per_million": 8.958, + "total_deaths_per_million": 8.602, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 9658.0, + "total_tests": 1509949.0, + "total_tests_per_thousand": 11.939, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 19529.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 17.237000000000002, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-17", + "total_cases": 54952.0, + "new_cases": 238.0, + "new_cases_smoothed": 994.571, + "total_deaths": 1098.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 434.484, + "new_cases_per_million": 1.882, + "new_cases_smoothed_per_million": 7.864, + "total_deaths_per_million": 8.681, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 19173.0, + "total_tests": 1529122.0, + "total_tests_per_thousand": 12.09, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 19243.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 19.348, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-18", + "total_cases": 55958.0, + "new_cases": 1006.0, + "new_cases_smoothed": 1102.857, + "total_deaths": 1114.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 442.438, + "new_cases_per_million": 7.954, + "new_cases_smoothed_per_million": 8.72, + "total_deaths_per_million": 8.808, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 28278.0, + "total_tests": 1557400.0, + "total_tests_per_thousand": 12.314, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 20258.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 18.369, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-19", + "total_cases": 57550.0, + "new_cases": 1592.0, + "new_cases_smoothed": 1148.286, + "total_deaths": 1128.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 455.025, + "new_cases_per_million": 12.587, + "new_cases_smoothed_per_million": 9.079, + "total_deaths_per_million": 8.919, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 29279.0, + "total_tests": 1586679.0, + "total_tests_per_thousand": 12.545, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 21416.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 18.65, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-20", + "total_cases": 58501.0, + "new_cases": 951.0, + "new_cases_smoothed": 1151.0, + "total_deaths": 1144.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 462.545, + "new_cases_per_million": 7.519, + "new_cases_smoothed_per_million": 9.101, + "total_deaths_per_million": 9.045, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 29858.0, + "total_tests": 1616537.0, + "total_tests_per_thousand": 12.781, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 22656.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 19.684, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-21", + "total_cases": 59721.0, + "new_cases": 1220.0, + "new_cases_smoothed": 1172.571, + "total_deaths": 1155.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 472.191, + "new_cases_per_million": 9.646, + "new_cases_smoothed_per_million": 9.271, + "total_deaths_per_million": 9.132, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 27111.0, + "total_tests": 1643648.0, + "total_tests_per_thousand": 12.996, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 23504.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 20.045, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-22", + "total_cases": 60733.0, + "new_cases": 1012.0, + "new_cases_smoothed": 1022.286, + "total_deaths": 1169.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 480.192, + "new_cases_per_million": 8.001, + "new_cases_smoothed_per_million": 8.083, + "total_deaths_per_million": 9.243, + "new_deaths_per_million": 0.111, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 23449.0, + "total_tests": 1667097.0, + "total_tests_per_thousand": 13.181, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 23829.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 23.31, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-23", + "total_cases": 61747.0, + "new_cases": 1014.0, + "new_cases_smoothed": 1004.714, + "total_deaths": 1176.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 488.209, + "new_cases_per_million": 8.017, + "new_cases_smoothed_per_million": 7.944, + "total_deaths_per_million": 9.298, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 9311.0, + "total_tests": 1676408.0, + "total_tests_per_thousand": 13.255, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 23780.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 23.668000000000003, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-24", + "total_cases": 61754.0, + "new_cases": 7.0, + "new_cases_smoothed": 971.714, + "total_deaths": 1180.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 488.265, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 7.683, + "total_deaths_per_million": 9.33, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 14149.0, + "total_tests": 1690557.0, + "total_tests_per_thousand": 13.367, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 23062.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 23.733, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-25", + "total_cases": 63121.0, + "new_cases": 1367.0, + "new_cases_smoothed": 1023.286, + "total_deaths": 1196.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 499.073, + "new_cases_per_million": 10.808, + "new_cases_smoothed_per_million": 8.091, + "total_deaths_per_million": 9.456, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 25339.0, + "total_tests": 1715896.0, + "total_tests_per_thousand": 13.567, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 22642.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 22.127, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-26", + "total_cases": 63822.0, + "new_cases": 701.0, + "new_cases_smoothed": 896.0, + "total_deaths": 1209.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 504.616, + "new_cases_per_million": 5.543, + "new_cases_smoothed_per_million": 7.084, + "total_deaths_per_million": 9.559, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 28189.0, + "total_tests": 1744085.0, + "total_tests_per_thousand": 13.79, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 22487.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 25.096999999999998, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-27", + "total_cases": 64668.0, + "new_cases": 846.0, + "new_cases_smoothed": 881.0, + "total_deaths": 1226.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 511.305, + "new_cases_per_million": 6.689, + "new_cases_smoothed_per_million": 6.966, + "total_deaths_per_million": 9.694, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 28233.0, + "total_tests": 1772318.0, + "total_tests_per_thousand": 14.013, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 22254.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 25.26, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-28", + "total_cases": 65573.0, + "new_cases": 905.0, + "new_cases_smoothed": 836.0, + "total_deaths": 1238.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 518.46, + "new_cases_per_million": 7.155, + "new_cases_smoothed_per_million": 6.61, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 26743.0, + "total_tests": 1799061.0, + "total_tests_per_thousand": 14.224, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 22202.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 26.557, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-29", + "total_cases": 66423.0, + "new_cases": 850.0, + "new_cases_smoothed": 812.857, + "total_deaths": 1255.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 525.181, + "new_cases_per_million": 6.721, + "new_cases_smoothed_per_million": 6.427, + "total_deaths_per_million": 9.923, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 22004.0, + "total_tests": 1821065.0, + "total_tests_per_thousand": 14.398, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 21995.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 27.059, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-30", + "total_cases": 67264.0, + "new_cases": 841.0, + "new_cases_smoothed": 788.143, + "total_deaths": 1264.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 531.83, + "new_cases_per_million": 6.649, + "new_cases_smoothed_per_million": 6.232, + "total_deaths_per_million": 9.994, + "new_deaths_per_million": 0.071, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 8672.0, + "total_tests": 1829737.0, + "total_tests_per_thousand": 14.467, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 21904.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 27.791999999999998, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-08-31", + "total_cases": 67865.0, + "new_cases": 601.0, + "new_cases_smoothed": 873.0, + "total_deaths": 1279.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 536.582, + "new_cases_per_million": 4.752, + "new_cases_smoothed_per_million": 6.902, + "total_deaths_per_million": 10.113, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 18570.0, + "total_tests": 1848307.0, + "total_tests_per_thousand": 14.614, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 22536.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 25.814, + "positive_rate": 0.039, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 68392.0, + "new_cases": 527.0, + "new_cases_smoothed": 753.0, + "total_deaths": 1296.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 540.749, + "new_cases_per_million": 4.167, + "new_cases_smoothed_per_million": 5.954, + "total_deaths_per_million": 10.247, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 14548.0, + "total_tests": 1862855.0, + "total_tests_per_thousand": 14.729, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 20994.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 27.88, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 69001.0, + "new_cases": 609.0, + "new_cases_smoothed": 739.857, + "total_deaths": 1307.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 545.564, + "new_cases_per_million": 4.815, + "new_cases_smoothed_per_million": 5.85, + "total_deaths_per_million": 10.334, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.111 + }, + { + "date": "2020-09-03", + "total_cases": 69599.0, + "new_cases": 598.0, + "new_cases_smoothed": 704.429, + "total_deaths": 1319.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 550.292, + "new_cases_per_million": 4.728, + "new_cases_smoothed_per_million": 5.57, + "total_deaths_per_million": 10.429, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.105 + }, + { + "date": "2020-09-04", + "total_cases": 70268.0, + "new_cases": 669.0, + "new_cases_smoothed": 670.714, + "total_deaths": 1330.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 555.582, + "new_cases_per_million": 5.29, + "new_cases_smoothed_per_million": 5.303, + "total_deaths_per_million": 10.516, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.104 + }, + { + "date": "2020-09-05", + "total_cases": 70876.0, + "new_cases": 608.0, + "new_cases_smoothed": 636.143, + "total_deaths": 1349.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 560.389, + "new_cases_per_million": 4.807, + "new_cases_smoothed_per_million": 5.03, + "total_deaths_per_million": 10.666, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.106 + } + ] + }, + "JEY": { + "continent": "Europe", + "location": "Jersey", + "population": 101073.0, + "data": [ + { + "date": "2020-03-20", + "total_cases": 5.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 49.469, + "new_cases_per_million": 49.469, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 12.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 118.726, + "new_cases_per_million": 69.257, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 12.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 118.726, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 15.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 148.408, + "new_cases_per_million": 29.682, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 18.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 178.089, + "new_cases_per_million": 29.682, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 18.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 178.089, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 178.089, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.441, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 32.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 316.603, + "new_cases_per_million": 138.514, + "new_cases_smoothed_per_million": 38.162, + "total_deaths_per_million": 9.894, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-03-28", + "total_cases": 52.0, + "new_cases": 20.0, + "new_cases_smoothed": 5.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 514.48, + "new_cases_per_million": 197.877, + "new_cases_smoothed_per_million": 56.536, + "total_deaths_per_million": 9.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-03-29", + "total_cases": 61.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 603.524, + "new_cases_per_million": 89.045, + "new_cases_smoothed_per_million": 69.257, + "total_deaths_per_million": 9.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-03-30", + "total_cases": 63.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 623.312, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-03-31", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 623.312, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 63.603, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-04-01", + "total_cases": 81.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 801.401, + "new_cases_per_million": 178.089, + "new_cases_smoothed_per_million": 89.045, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-04-02", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 801.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 89.045, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-04-03", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 801.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 69.257, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-04", + "total_cases": 118.0, + "new_cases": 37.0, + "new_cases_smoothed": 9.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1167.473, + "new_cases_per_million": 366.072, + "new_cases_smoothed_per_million": 93.285, + "total_deaths_per_million": 19.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-05", + "total_cases": 123.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1216.942, + "new_cases_per_million": 49.469, + "new_cases_smoothed_per_million": 87.631, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-04-06", + "total_cases": 155.0, + "new_cases": 32.0, + "new_cases_smoothed": 13.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1533.545, + "new_cases_per_million": 316.603, + "new_cases_smoothed_per_million": 130.033, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-07", + "total_cases": 169.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1672.059, + "new_cases_per_million": 138.514, + "new_cases_smoothed_per_million": 149.821, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-08", + "total_cases": 170.0, + "new_cases": 1.0, + "new_cases_smoothed": 12.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1681.953, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 125.793, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-09", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1681.953, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 125.793, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-10", + "total_cases": 183.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1810.573, + "new_cases_per_million": 128.62, + "new_cases_smoothed_per_million": 144.167, + "total_deaths_per_million": 29.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-11", + "total_cases": 198.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1958.98, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 113.072, + "total_deaths_per_million": 39.575, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-04-12", + "total_cases": 198.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1958.98, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 106.005, + "total_deaths_per_million": 39.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-13", + "total_cases": 213.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2107.388, + "new_cases_per_million": 148.408, + "new_cases_smoothed_per_million": 81.978, + "total_deaths_per_million": 39.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-14", + "total_cases": 217.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2146.963, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 39.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-15", + "total_cases": 217.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2146.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.43, + "total_deaths_per_million": 39.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-04-16", + "total_cases": 217.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2146.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.43, + "total_deaths_per_million": 59.363, + "new_deaths_per_million": 19.788, + "new_deaths_smoothed_per_million": 4.24 + }, + { + "date": "2020-04-17", + "total_cases": 223.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.714, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2206.326, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 56.536, + "total_deaths_per_million": 98.938, + "new_deaths_per_million": 39.575, + "new_deaths_smoothed_per_million": 9.894 + }, + { + "date": "2020-04-18", + "total_cases": 224.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2216.22, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 36.749, + "total_deaths_per_million": 108.832, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 9.894 + }, + { + "date": "2020-04-19", + "total_cases": 245.0, + "new_cases": 21.0, + "new_cases_smoothed": 6.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2423.991, + "new_cases_per_million": 207.771, + "new_cases_smoothed_per_million": 66.43, + "total_deaths_per_million": 118.726, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 11.307 + }, + { + "date": "2020-04-20", + "total_cases": 249.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2463.566, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 50.883, + "total_deaths_per_million": 118.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 11.307 + }, + { + "date": "2020-04-21", + "total_cases": 249.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2463.566, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 45.229, + "total_deaths_per_million": 138.514, + "new_deaths_per_million": 19.788, + "new_deaths_smoothed_per_million": 14.134 + }, + { + "date": "2020-04-22", + "total_cases": 255.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2522.929, + "new_cases_per_million": 59.363, + "new_cases_smoothed_per_million": 53.709, + "total_deaths_per_million": 138.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 14.134 + }, + { + "date": "2020-04-23", + "total_cases": 255.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 18.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2522.929, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.709, + "total_deaths_per_million": 178.089, + "new_deaths_per_million": 39.575, + "new_deaths_smoothed_per_million": 16.961 + }, + { + "date": "2020-04-24", + "total_cases": 276.0, + "new_cases": 21.0, + "new_cases_smoothed": 7.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2730.7, + "new_cases_per_million": 207.771, + "new_cases_smoothed_per_million": 74.91, + "total_deaths_per_million": 187.983, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 12.721 + }, + { + "date": "2020-04-25", + "total_cases": 278.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2750.487, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 76.324, + "total_deaths_per_million": 187.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 11.307 + }, + { + "date": "2020-04-26", + "total_cases": 280.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2770.275, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 49.469, + "total_deaths_per_million": 187.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.894 + }, + { + "date": "2020-04-27", + "total_cases": 281.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2780.169, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 45.229, + "total_deaths_per_million": 187.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.894 + }, + { + "date": "2020-04-28", + "total_cases": 283.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2799.956, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 48.056, + "total_deaths_per_million": 187.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.067 + }, + { + "date": "2020-04-29", + "total_cases": 284.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2809.85, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 40.989, + "total_deaths_per_million": 197.877, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 8.48 + }, + { + "date": "2020-04-30", + "total_cases": 286.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2829.638, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 43.816, + "total_deaths_per_million": 207.771, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 4.24 + }, + { + "date": "2020-05-01", + "total_cases": 286.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2829.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 227.558, + "new_deaths_per_million": 19.788, + "new_deaths_smoothed_per_million": 5.654 + }, + { + "date": "2020-05-02", + "total_cases": 286.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2829.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 237.452, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 7.067 + }, + { + "date": "2020-05-03", + "total_cases": 291.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2879.107, + "new_cases_per_million": 49.469, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 237.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.067 + }, + { + "date": "2020-05-04", + "total_cases": 292.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2889.001, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 237.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.067 + }, + { + "date": "2020-05-05", + "total_cases": 293.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 237.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.067 + }, + { + "date": "2020-05-06", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 237.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.654 + }, + { + "date": "2020-05-07", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 5.654 + }, + { + "date": "2020-05-08", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-09", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-05-10", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2898.895, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-05-11", + "total_cases": 294.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2908.789, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-05-12", + "total_cases": 294.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2908.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 247.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-05-13", + "total_cases": 295.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2918.683, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 257.24, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-14", + "total_cases": 296.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2928.576, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-15", + "total_cases": 297.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2938.47, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-16", + "total_cases": 297.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2938.47, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-17", + "total_cases": 302.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2987.939, + "new_cases_per_million": 49.469, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-18", + "total_cases": 302.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2987.939, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-19", + "total_cases": 303.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2997.833, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 267.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-20", + "total_cases": 303.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2997.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 277.027, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-21", + "total_cases": 306.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3027.515, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-22", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3027.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-23", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3027.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-24", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3027.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-25", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3027.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-26", + "total_cases": 307.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3037.409, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.827 + }, + { + "date": "2020-05-27", + "total_cases": 307.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3037.409, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-05-28", + "total_cases": 308.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 286.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 308.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3047.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-04", + "total_cases": 309.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3057.196, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-05", + "total_cases": 309.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3057.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-06", + "total_cases": 309.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3057.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-07", + "total_cases": 311.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3076.984, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-08", + "total_cases": 311.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3076.984, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-09", + "total_cases": 312.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3086.878, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-10", + "total_cases": 313.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3096.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 316.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3126.453, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 316.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3126.453, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 318.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 296.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-21", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-22", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-23", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-24", + "total_cases": 318.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3146.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-25", + "total_cases": 319.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-26", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-06-27", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3156.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 320.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3166.029, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 320.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3166.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 320.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3166.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 320.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3166.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 325.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 49.469, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 325.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3215.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 329.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3255.073, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3255.073, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3255.073, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 331.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.48, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3274.861, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 332.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3284.755, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3284.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3284.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 334.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3304.542, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 335.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3314.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 339.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3354.011, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 7.067, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 343.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3393.587, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 344.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3403.481, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 345.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3413.374, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 345.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3413.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 345.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3413.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 345.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3413.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 347.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3433.162, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 347.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3433.162, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.654, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 351.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3472.738, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 352.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3482.631, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 355.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3512.313, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3512.313, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3512.313, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 306.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 357.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3532.101, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 9.894, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-19", + "total_cases": 357.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3532.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-20", + "total_cases": 361.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3571.676, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-21", + "total_cases": 362.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3581.57, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-22", + "total_cases": 363.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3591.464, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-23", + "total_cases": 363.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3591.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-24", + "total_cases": 363.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3591.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.307, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.413 + }, + { + "date": "2020-08-25", + "total_cases": 364.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3601.357, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 368.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3640.933, + "new_cases_per_million": 39.575, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 371.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3670.614, + "new_cases_per_million": 29.682, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 372.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3680.508, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 373.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3690.402, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 374.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3700.296, + "new_cases_per_million": 9.894, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 374.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3700.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 374.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3700.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 379.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3749.765, + "new_cases_per_million": 49.469, + "new_cases_smoothed_per_million": 15.547, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 381.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3769.553, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 381.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3769.553, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 383.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3789.34, + "new_cases_per_million": 19.788, + "new_cases_smoothed_per_million": 14.134, + "total_deaths_per_million": 316.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "JOR": { + "continent": "Asia", + "location": "Jordan", + "population": 10203140.0, + "population_density": 109.285, + "median_age": 23.2, + "aged_65_older": 3.81, + "aged_70_older": 2.361, + "gdp_per_capita": 8337.49, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 208.257, + "diabetes_prevalence": 11.75, + "hospital_beds_per_thousand": 1.4, + "life_expectancy": 74.53, + "data": [ + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.098, + "new_cases_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.098, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.098, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-16", + "total_cases": 15.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.47, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-17", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.568, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-18", + "total_cases": 35.0, + "new_cases": 19.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.43, + "new_cases_per_million": 1.862, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-19", + "total_cases": 52.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.096, + "new_cases_per_million": 1.666, + "new_cases_smoothed_per_million": 0.714, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-20", + "total_cases": 56.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.489, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.77, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-21", + "total_cases": 69.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.763, + "new_cases_per_million": 1.274, + "new_cases_smoothed_per_million": 0.952, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-22", + "total_cases": 84.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.233, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 1.162, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-23", + "total_cases": 99.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.703, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 112.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.977, + "new_cases_per_million": 1.274, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 127.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.447, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 153.0, + "new_cases": 26.0, + "new_cases_smoothed": 14.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.995, + "new_cases_per_million": 2.548, + "new_cases_smoothed_per_million": 1.414, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 172.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.858, + "new_cases_per_million": 1.862, + "new_cases_smoothed_per_million": 1.624, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 212.0, + "new_cases": 40.0, + "new_cases_smoothed": 20.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.778, + "new_cases_per_million": 3.92, + "new_cases_smoothed_per_million": 2.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 235.0, + "new_cases": 23.0, + "new_cases_smoothed": 21.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.032, + "new_cases_per_million": 2.254, + "new_cases_smoothed_per_million": 2.114, + "total_deaths_per_million": 0.098, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 259.0, + "new_cases": 24.0, + "new_cases_smoothed": 22.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.384, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 2.24, + "total_deaths_per_million": 0.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 268.0, + "new_cases": 9.0, + "new_cases_smoothed": 22.286, + "total_deaths": 5.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 26.266, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 2.184, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 274.0, + "new_cases": 6.0, + "new_cases_smoothed": 21.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 26.854, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 2.058, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 278.0, + "new_cases": 4.0, + "new_cases_smoothed": 17.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 27.247, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.75, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 299.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 29.305, + "new_cases_per_million": 2.058, + "new_cases_smoothed_per_million": 1.778, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 299.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 29.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.218, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 323.0, + "new_cases": 24.0, + "new_cases_smoothed": 12.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 31.657, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 345.0, + "new_cases": 22.0, + "new_cases_smoothed": 12.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 33.813, + "new_cases_per_million": 2.156, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 0.49, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 349.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.205, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.134, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 349.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.205, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 358.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 35.087, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 1.12, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 372.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.459, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.022, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 372.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.022, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 381.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.341, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 389.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.126, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 391.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.322, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 397.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.91, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 401.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.302, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 402.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.4, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 407.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.89, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 413.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.478, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 417.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.87, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 425.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.654, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 425.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.654, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 428.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.948, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.378, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 437.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.83, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 441.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.222, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 444.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.516, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 447.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.81, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-28", + "total_cases": 449.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.006, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-29", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-04-30", + "total_cases": 451.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.202, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-05-01", + "total_cases": 453.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.398, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 459.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.986, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 460.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.084, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 461.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.182, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 465.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.574, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 471.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.162, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 473.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.358, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 494.0, + "new_cases": 21.0, + "new_cases_smoothed": 5.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 48.416, + "new_cases_per_million": 2.058, + "new_cases_smoothed_per_million": 0.574, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 508.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.789, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 522.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.161, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 540.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.925, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.106, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 562.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.081, + "new_cases_per_million": 2.156, + "new_cases_smoothed_per_million": 1.358, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-13", + "total_cases": 576.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.453, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.47, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-14", + "total_cases": 582.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.041, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 1.526, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-15", + "total_cases": 586.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.433, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-16", + "total_cases": 596.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.413, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-17", + "total_cases": 607.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.491, + "new_cases_per_million": 1.078, + "new_cases_smoothed_per_million": 1.19, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-18", + "total_cases": 613.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.08, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 1.022, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 629.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.648, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 649.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.608, + "new_cases_per_million": 1.96, + "new_cases_smoothed_per_million": 1.022, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-21", + "total_cases": 672.0, + "new_cases": 23.0, + "new_cases_smoothed": 12.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.862, + "new_cases_per_million": 2.254, + "new_cases_smoothed_per_million": 1.26, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-22", + "total_cases": 684.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.038, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 1.372, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-23", + "total_cases": 700.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.606, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 1.456, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-24", + "total_cases": 704.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.998, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.358, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-25", + "total_cases": 708.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.39, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-26", + "total_cases": 711.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.684, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 1.148, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 718.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.37, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 720.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.567, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 728.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.351, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 730.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.547, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 734.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.939, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 739.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.429, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 746.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.115, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 755.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.997, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 757.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.193, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 765.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.977, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 784.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.839, + "new_cases_per_million": 1.862, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-07", + "total_cases": 795.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.917, + "new_cases_per_million": 1.078, + "new_cases_smoothed_per_million": 0.854, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-08", + "total_cases": 808.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.191, + "new_cases_per_million": 1.274, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-09", + "total_cases": 831.0, + "new_cases": 23.0, + "new_cases_smoothed": 12.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.446, + "new_cases_per_million": 2.254, + "new_cases_smoothed_per_million": 1.19, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-10", + "total_cases": 845.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.818, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.26, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-11", + "total_cases": 863.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 84.582, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.484, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-12", + "total_cases": 890.0, + "new_cases": 27.0, + "new_cases_smoothed": 17.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.228, + "new_cases_per_million": 2.646, + "new_cases_smoothed_per_million": 1.75, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-13", + "total_cases": 915.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.678, + "new_cases_per_million": 2.45, + "new_cases_smoothed_per_million": 1.834, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-14", + "total_cases": 953.0, + "new_cases": 38.0, + "new_cases_smoothed": 22.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.403, + "new_cases_per_million": 3.724, + "new_cases_smoothed_per_million": 2.212, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-15", + "total_cases": 961.0, + "new_cases": 8.0, + "new_cases_smoothed": 21.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 94.187, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 2.142, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-16", + "total_cases": 979.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.951, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 2.072, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-17", + "total_cases": 981.0, + "new_cases": 2.0, + "new_cases_smoothed": 19.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.147, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 1.904, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-18", + "total_cases": 987.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.735, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 1.736, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-19", + "total_cases": 1001.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.107, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.554, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-20", + "total_cases": 1008.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.793, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 1.302, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-21", + "total_cases": 1015.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.479, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-22", + "total_cases": 1033.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.243, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.008, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-23", + "total_cases": 1042.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 102.125, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.882, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-24", + "total_cases": 1047.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 102.615, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.924, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-25", + "total_cases": 1071.0, + "new_cases": 24.0, + "new_cases_smoothed": 12.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.968, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-26", + "total_cases": 1086.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.438, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 1.19, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-27", + "total_cases": 1104.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.202, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-28", + "total_cases": 1111.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.888, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-29", + "total_cases": 1121.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.868, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-06-30", + "total_cases": 1128.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 110.554, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-01", + "total_cases": 1132.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 110.946, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.19, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-02", + "total_cases": 1133.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.044, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-03", + "total_cases": 1136.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.338, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-04", + "total_cases": 1147.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.416, + "new_cases_per_million": 1.078, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-05", + "total_cases": 1150.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.71, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-06", + "total_cases": 1164.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.083, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-07", + "total_cases": 1167.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.377, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-08", + "total_cases": 1169.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.573, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-09", + "total_cases": 1169.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-10", + "total_cases": 1169.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.462, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-11", + "total_cases": 1173.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.965, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-12", + "total_cases": 1176.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.259, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-13", + "total_cases": 1179.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.553, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-14", + "total_cases": 1183.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.945, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-15", + "total_cases": 1198.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.415, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 0.406, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-16", + "total_cases": 1201.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.709, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-17", + "total_cases": 1206.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.199, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-18", + "total_cases": 1209.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.493, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-19", + "total_cases": 1214.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.429, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.983, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-20", + "total_cases": 1218.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 119.375, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-21", + "total_cases": 1223.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 119.865, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-22", + "total_cases": 1113.0, + "new_cases": -110.0, + "new_cases_smoothed": -12.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.084, + "new_cases_per_million": -10.781, + "new_cases_smoothed_per_million": -1.19, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-23", + "total_cases": 1120.0, + "new_cases": 7.0, + "new_cases_smoothed": -11.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.77, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": -1.134, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-24", + "total_cases": 1131.0, + "new_cases": 11.0, + "new_cases_smoothed": -10.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 110.848, + "new_cases_per_million": 1.078, + "new_cases_smoothed_per_million": -1.05, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-25", + "total_cases": 1146.0, + "new_cases": 15.0, + "new_cases_smoothed": -9.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.318, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": -0.882, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 48.15 + }, + { + "date": "2020-07-26", + "total_cases": 1154.0, + "new_cases": 8.0, + "new_cases_smoothed": -8.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 113.102, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": -0.84, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-27", + "total_cases": 1168.0, + "new_cases": 14.0, + "new_cases_smoothed": -7.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.475, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": -0.7, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 1176.0, + "new_cases": 8.0, + "new_cases_smoothed": -6.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.259, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": -0.658, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-29", + "total_cases": 1182.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.847, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-30", + "total_cases": 1187.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.337, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-07-31", + "total_cases": 1191.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.729, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-01", + "total_cases": 1193.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.925, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.658, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-02", + "total_cases": 1194.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.023, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-03", + "total_cases": 1213.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.885, + "new_cases_per_million": 1.862, + "new_cases_smoothed_per_million": 0.63, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-04", + "total_cases": 1218.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.375, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-05", + "total_cases": 1224.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.963, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-06", + "total_cases": 1231.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.649, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-07", + "total_cases": 1232.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.747, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.574, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-08", + "total_cases": 1237.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.237, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-09", + "total_cases": 1246.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.119, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.728, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-10", + "total_cases": 1252.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.707, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-11", + "total_cases": 1268.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.275, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-12", + "total_cases": 1283.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.746, + "new_cases_per_million": 1.47, + "new_cases_smoothed_per_million": 0.826, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-13", + "total_cases": 1303.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.706, + "new_cases_per_million": 1.96, + "new_cases_smoothed_per_million": 1.008, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-14", + "total_cases": 1320.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.372, + "new_cases_per_million": 1.666, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-15", + "total_cases": 1329.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.254, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-16", + "total_cases": 1339.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.234, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 1.302, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-17", + "total_cases": 1378.0, + "new_cases": 39.0, + "new_cases_smoothed": 18.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.056, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 1.764, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-18", + "total_cases": 1398.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 137.017, + "new_cases_per_million": 1.96, + "new_cases_smoothed_per_million": 1.82, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-19", + "total_cases": 1438.0, + "new_cases": 40.0, + "new_cases_smoothed": 22.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.937, + "new_cases_per_million": 3.92, + "new_cases_smoothed_per_million": 2.17, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-20", + "total_cases": 1482.0, + "new_cases": 44.0, + "new_cases_smoothed": 25.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.249, + "new_cases_per_million": 4.312, + "new_cases_smoothed_per_million": 2.506, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-21", + "total_cases": 1498.0, + "new_cases": 16.0, + "new_cases_smoothed": 25.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 146.818, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 2.492, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-22", + "total_cases": 1532.0, + "new_cases": 34.0, + "new_cases_smoothed": 29.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.15, + "new_cases_per_million": 3.332, + "new_cases_smoothed_per_million": 2.842, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-23", + "total_cases": 1576.0, + "new_cases": 44.0, + "new_cases_smoothed": 33.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 154.462, + "new_cases_per_million": 4.312, + "new_cases_smoothed_per_million": 3.318, + "total_deaths_per_million": 1.078, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-08-24", + "total_cases": 1609.0, + "new_cases": 33.0, + "new_cases_smoothed": 33.0, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 157.697, + "new_cases_per_million": 3.234, + "new_cases_smoothed_per_million": 3.234, + "total_deaths_per_million": 1.176, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 56.48 + }, + { + "date": "2020-08-25", + "total_cases": 1639.0, + "new_cases": 30.0, + "new_cases_smoothed": 34.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 160.637, + "new_cases_per_million": 2.94, + "new_cases_smoothed_per_million": 3.374, + "total_deaths_per_million": 1.372, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 56.48 + }, + { + "date": "2020-08-26", + "total_cases": 1716.0, + "new_cases": 77.0, + "new_cases_smoothed": 39.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 168.184, + "new_cases_per_million": 7.547, + "new_cases_smoothed_per_million": 3.892, + "total_deaths_per_million": 1.372, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 56.48 + }, + { + "date": "2020-08-27", + "total_cases": 1756.0, + "new_cases": 40.0, + "new_cases_smoothed": 39.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 172.104, + "new_cases_per_million": 3.92, + "new_cases_smoothed_per_million": 3.836, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 50.93 + }, + { + "date": "2020-08-28", + "total_cases": 1801.0, + "new_cases": 45.0, + "new_cases_smoothed": 43.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 176.514, + "new_cases_per_million": 4.41, + "new_cases_smoothed_per_million": 4.242, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 50.93 + }, + { + "date": "2020-08-29", + "total_cases": 1869.0, + "new_cases": 68.0, + "new_cases_smoothed": 48.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 183.179, + "new_cases_per_million": 6.665, + "new_cases_smoothed_per_million": 4.718, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 50.93 + }, + { + "date": "2020-08-30", + "total_cases": 1893.0, + "new_cases": 24.0, + "new_cases_smoothed": 45.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 185.531, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 4.438, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 50.93 + }, + { + "date": "2020-08-31", + "total_cases": 1966.0, + "new_cases": 73.0, + "new_cases_smoothed": 51.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 192.686, + "new_cases_per_million": 7.155, + "new_cases_smoothed_per_million": 4.998, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 50.93 + }, + { + "date": "2020-09-01", + "total_cases": 2034.0, + "new_cases": 68.0, + "new_cases_smoothed": 56.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.35, + "new_cases_per_million": 6.665, + "new_cases_smoothed_per_million": 5.531, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-09-02", + "total_cases": 2097.0, + "new_cases": 63.0, + "new_cases_smoothed": 54.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 205.525, + "new_cases_per_million": 6.175, + "new_cases_smoothed_per_million": 5.334, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-09-03", + "total_cases": 2161.0, + "new_cases": 64.0, + "new_cases_smoothed": 57.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.798, + "new_cases_per_million": 6.273, + "new_cases_smoothed_per_million": 5.671, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 2233.0, + "new_cases": 72.0, + "new_cases_smoothed": 61.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 218.854, + "new_cases_per_million": 7.057, + "new_cases_smoothed_per_million": 6.049, + "total_deaths_per_million": 1.568, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-09-05", + "total_cases": 2301.0, + "new_cases": 68.0, + "new_cases_smoothed": 61.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 225.519, + "new_cases_per_million": 6.665, + "new_cases_smoothed_per_million": 6.049, + "total_deaths_per_million": 1.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014 + } + ] + }, + "KAZ": { + "continent": "Asia", + "location": "Kazakhstan", + "population": 18776707.0, + "population_density": 6.681, + "median_age": 30.6, + "aged_65_older": 6.991, + "aged_70_older": 4.625, + "gdp_per_capita": 24055.588, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 466.792, + "diabetes_prevalence": 7.11, + "female_smokers": 7.0, + "male_smokers": 43.1, + "handwashing_facilities": 98.999, + "hospital_beds_per_thousand": 6.7, + "life_expectancy": 73.6, + "data": [ + { + "date": "2020-03-13", + "total_tests": 126.0, + "total_tests_per_thousand": 0.007, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-14", + "new_tests": 319.0, + "total_tests": 445.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.017, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-15", + "total_cases": 6.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 207.0, + "total_tests": 652.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.011, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "total_cases": 9.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.479, + "new_cases_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 386.0, + "total_tests": 1038.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.021, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-17", + "total_cases": 11.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.586, + "new_cases_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 932.0, + "total_tests": 1970.0, + "total_tests_per_thousand": 0.105, + "new_tests_per_thousand": 0.05, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-18", + "total_cases": 33.0, + "new_cases": 22.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.757, + "new_cases_per_million": 1.172, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 264.0, + "total_tests": 2234.0, + "total_tests_per_thousand": 0.119, + "new_tests_per_thousand": 0.014, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 37.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.971, + "new_cases_per_million": 0.213, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 1050.0, + "total_tests": 3284.0, + "total_tests_per_thousand": 0.175, + "new_tests_per_thousand": 0.056, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-20", + "total_cases": 49.0, + "new_cases": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.61, + "new_cases_per_million": 0.639, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 816.0, + "total_tests": 4100.0, + "total_tests_per_thousand": 0.218, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 568.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-21", + "total_cases": 53.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.823, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.403, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1175.0, + "total_tests": 5275.0, + "total_tests_per_thousand": 0.281, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 690.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-22", + "total_cases": 56.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.982, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1233.0, + "total_tests": 6508.0, + "total_tests_per_thousand": 0.347, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 837.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 117.18, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-23", + "total_cases": 60.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.195, + "new_cases_per_million": 0.213, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1754.0, + "total_tests": 8262.0, + "total_tests_per_thousand": 0.44, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 141.64700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-24", + "total_cases": 62.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.302, + "new_cases_per_million": 0.107, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1622.0, + "total_tests": 9884.0, + "total_tests_per_thousand": 0.526, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 1131.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 155.235, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-25", + "total_cases": 79.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.207, + "new_cases_per_million": 0.905, + "new_cases_smoothed_per_million": 0.35, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1465.0, + "total_tests": 11349.0, + "total_tests_per_thousand": 0.604, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 1302.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 198.13, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-26", + "total_cases": 88.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.687, + "new_cases_per_million": 0.479, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2111.0, + "total_tests": 13460.0, + "total_tests_per_thousand": 0.717, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1454.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 199.56900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-27", + "total_cases": 120.0, + "new_cases": 32.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.391, + "new_cases_per_million": 1.704, + "new_cases_smoothed_per_million": 0.54, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1687.0, + "total_tests": 15147.0, + "total_tests_per_thousand": 0.807, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1578.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 155.577, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-28", + "total_cases": 193.0, + "new_cases": 73.0, + "new_cases_smoothed": 20.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.279, + "new_cases_per_million": 3.888, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1475.0, + "total_tests": 16622.0, + "total_tests_per_thousand": 0.885, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1621.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 81.05, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-29", + "total_cases": 229.0, + "new_cases": 36.0, + "new_cases_smoothed": 24.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.196, + "new_cases_per_million": 1.917, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2696.0, + "total_tests": 19318.0, + "total_tests_per_thousand": 1.029, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 1830.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 74.046, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-03-30", + "total_cases": 284.0, + "new_cases": 55.0, + "new_cases_smoothed": 32.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.125, + "new_cases_per_million": 2.929, + "new_cases_smoothed_per_million": 1.704, + "total_deaths_per_million": 0.053, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1695.0, + "total_tests": 21013.0, + "total_tests_per_thousand": 1.119, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1822.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 56.938, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-03-31", + "total_cases": 325.0, + "new_cases": 41.0, + "new_cases_smoothed": 37.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.309, + "new_cases_per_million": 2.184, + "new_cases_smoothed_per_million": 2.001, + "total_deaths_per_million": 0.053, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 9892.0, + "total_tests": 30905.0, + "total_tests_per_thousand": 1.646, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 3003.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 79.928, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-01", + "total_cases": 340.0, + "new_cases": 15.0, + "new_cases_smoothed": 37.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.108, + "new_cases_per_million": 0.799, + "new_cases_smoothed_per_million": 1.986, + "total_deaths_per_million": 0.053, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1914.0, + "total_tests": 32819.0, + "total_tests_per_thousand": 1.748, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 3067.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 82.257, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-02", + "total_cases": 348.0, + "new_cases": 8.0, + "new_cases_smoothed": 37.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.534, + "new_cases_per_million": 0.426, + "new_cases_smoothed_per_million": 1.978, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2372.0, + "total_tests": 35191.0, + "total_tests_per_thousand": 1.874, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 3104.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 83.569, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-03", + "total_cases": 386.0, + "new_cases": 38.0, + "new_cases_smoothed": 38.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 20.557, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 2.024, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 7958.0, + "total_tests": 43149.0, + "total_tests_per_thousand": 2.298, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 4000.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 105.26299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-04", + "total_cases": 460.0, + "new_cases": 74.0, + "new_cases_smoothed": 38.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.498, + "new_cases_per_million": 3.941, + "new_cases_smoothed_per_million": 2.031, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 2403.0, + "total_tests": 45552.0, + "total_tests_per_thousand": 2.426, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 4133.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 108.35600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-05", + "total_cases": 460.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.757, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 4970.0, + "total_tests": 50522.0, + "total_tests_per_thousand": 2.691, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 4458.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 135.091, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-06", + "total_cases": 531.0, + "new_cases": 71.0, + "new_cases_smoothed": 35.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 28.28, + "new_cases_per_million": 3.781, + "new_cases_smoothed_per_million": 1.879, + "total_deaths_per_million": 0.266, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2359.0, + "total_tests": 52881.0, + "total_tests_per_thousand": 2.816, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 4553.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 129.032, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-07", + "total_cases": 670.0, + "new_cases": 139.0, + "new_cases_smoothed": 49.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 35.683, + "new_cases_per_million": 7.403, + "new_cases_smoothed_per_million": 2.625, + "total_deaths_per_million": 0.32, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 1886.0, + "total_tests": 54767.0, + "total_tests_per_thousand": 2.917, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 3409.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 69.168, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-08", + "total_cases": 704.0, + "new_cases": 34.0, + "new_cases_smoothed": 52.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 37.493, + "new_cases_per_million": 1.811, + "new_cases_smoothed_per_million": 2.769, + "total_deaths_per_million": 0.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 2008.0, + "total_tests": 56775.0, + "total_tests_per_thousand": 3.024, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 3422.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 65.808, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-09", + "total_cases": 759.0, + "new_cases": 55.0, + "new_cases_smoothed": 58.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 40.422, + "new_cases_per_million": 2.929, + "new_cases_smoothed_per_million": 3.127, + "total_deaths_per_million": 0.373, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 2596.0, + "total_tests": 59371.0, + "total_tests_per_thousand": 3.162, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 3454.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 58.827, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-10", + "total_cases": 802.0, + "new_cases": 43.0, + "new_cases_smoothed": 59.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.712, + "new_cases_per_million": 2.29, + "new_cases_smoothed_per_million": 3.165, + "total_deaths_per_million": 0.479, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2584.0, + "total_tests": 61955.0, + "total_tests_per_thousand": 3.3, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 2687.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 45.214, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-11", + "total_cases": 840.0, + "new_cases": 38.0, + "new_cases_smoothed": 54.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 44.736, + "new_cases_per_million": 2.024, + "new_cases_smoothed_per_million": 2.891, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3901.0, + "total_tests": 65856.0, + "total_tests_per_thousand": 3.507, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 2901.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 53.43899999999999, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-12", + "total_cases": 880.0, + "new_cases": 40.0, + "new_cases_smoothed": 60.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 46.867, + "new_cases_per_million": 2.13, + "new_cases_smoothed_per_million": 3.195, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3448.0, + "total_tests": 69304.0, + "total_tests_per_thousand": 3.691, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 2683.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 44.717, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-13", + "total_cases": 961.0, + "new_cases": 81.0, + "new_cases_smoothed": 61.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 51.18, + "new_cases_per_million": 4.314, + "new_cases_smoothed_per_million": 3.272, + "total_deaths_per_million": 0.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 3802.0, + "total_tests": 73106.0, + "total_tests_per_thousand": 3.893, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 2889.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 47.03, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-14", + "total_cases": 1179.0, + "new_cases": 218.0, + "new_cases_smoothed": 72.714, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 62.791, + "new_cases_per_million": 11.61, + "new_cases_smoothed_per_million": 3.873, + "total_deaths_per_million": 0.746, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 3798.0, + "total_tests": 76904.0, + "total_tests_per_thousand": 4.096, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 3162.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 43.485, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-15", + "total_cases": 1267.0, + "new_cases": 88.0, + "new_cases_smoothed": 80.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 67.477, + "new_cases_per_million": 4.687, + "new_cases_smoothed_per_million": 4.283, + "total_deaths_per_million": 0.746, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 4455.0, + "total_tests": 81359.0, + "total_tests_per_thousand": 4.333, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 3512.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 43.666000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-16", + "total_cases": 1331.0, + "new_cases": 64.0, + "new_cases_smoothed": 81.714, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 70.886, + "new_cases_per_million": 3.408, + "new_cases_smoothed_per_million": 4.352, + "total_deaths_per_million": 0.852, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 4376.0, + "total_tests": 85735.0, + "total_tests_per_thousand": 4.566, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 3766.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 46.086999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-17", + "total_cases": 1470.0, + "new_cases": 139.0, + "new_cases_smoothed": 95.429, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 78.288, + "new_cases_per_million": 7.403, + "new_cases_smoothed_per_million": 5.082, + "total_deaths_per_million": 0.905, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 6564.0, + "total_tests": 92299.0, + "total_tests_per_thousand": 4.916, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 4335.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 45.427, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-18", + "total_cases": 1591.0, + "new_cases": 121.0, + "new_cases_smoothed": 107.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 84.733, + "new_cases_per_million": 6.444, + "new_cases_smoothed_per_million": 5.714, + "total_deaths_per_million": 0.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 8579.0, + "total_tests": 100878.0, + "total_tests_per_thousand": 5.373, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 5003.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 46.632, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-19", + "total_cases": 1654.0, + "new_cases": 63.0, + "new_cases_smoothed": 110.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 88.088, + "new_cases_per_million": 3.355, + "new_cases_smoothed_per_million": 5.889, + "total_deaths_per_million": 0.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 7954.0, + "total_tests": 108832.0, + "total_tests_per_thousand": 5.796, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 5647.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 51.071000000000005, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-20", + "total_cases": 1735.0, + "new_cases": 81.0, + "new_cases_smoothed": 110.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 92.402, + "new_cases_per_million": 4.314, + "new_cases_smoothed_per_million": 5.889, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 9117.0, + "total_tests": 117949.0, + "total_tests_per_thousand": 6.282, + "new_tests_per_thousand": 0.486, + "new_tests_smoothed": 6406.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 57.935, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-21", + "total_cases": 1949.0, + "new_cases": 214.0, + "new_cases_smoothed": 110.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 103.799, + "new_cases_per_million": 11.397, + "new_cases_smoothed_per_million": 5.858, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 8778.0, + "total_tests": 126727.0, + "total_tests_per_thousand": 6.749, + "new_tests_per_thousand": 0.467, + "new_tests_smoothed": 7118.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 64.709, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-22", + "total_cases": 2025.0, + "new_cases": 76.0, + "new_cases_smoothed": 108.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 107.846, + "new_cases_per_million": 4.048, + "new_cases_smoothed_per_million": 5.767, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 12480.0, + "total_tests": 139207.0, + "total_tests_per_thousand": 7.414, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 8264.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 76.317, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-23", + "total_cases": 2191.0, + "new_cases": 166.0, + "new_cases_smoothed": 122.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 116.687, + "new_cases_per_million": 8.841, + "new_cases_smoothed_per_million": 6.543, + "total_deaths_per_million": 1.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 14285.0, + "total_tests": 153492.0, + "total_tests_per_thousand": 8.175, + "new_tests_per_thousand": 0.761, + "new_tests_smoothed": 9680.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 78.791, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-24", + "total_cases": 2334.0, + "new_cases": 143.0, + "new_cases_smoothed": 123.429, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 124.303, + "new_cases_per_million": 7.616, + "new_cases_smoothed_per_million": 6.573, + "total_deaths_per_million": 1.172, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 11013.0, + "total_tests": 164505.0, + "total_tests_per_thousand": 8.761, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 10315.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 83.571, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-25", + "total_cases": 2482.0, + "new_cases": 148.0, + "new_cases_smoothed": 127.286, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 132.185, + "new_cases_per_million": 7.882, + "new_cases_smoothed_per_million": 6.779, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 15997.0, + "total_tests": 180502.0, + "total_tests_per_thousand": 9.613, + "new_tests_per_thousand": 0.852, + "new_tests_smoothed": 11375.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 89.366, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-26", + "total_cases": 2652.0, + "new_cases": 170.0, + "new_cases_smoothed": 142.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 141.239, + "new_cases_per_million": 9.054, + "new_cases_smoothed_per_million": 7.593, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 15796.0, + "total_tests": 196298.0, + "total_tests_per_thousand": 10.454, + "new_tests_per_thousand": 0.841, + "new_tests_smoothed": 12495.0, + "new_tests_smoothed_per_thousand": 0.665, + "tests_per_case": 87.64, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-27", + "total_cases": 2717.0, + "new_cases": 65.0, + "new_cases_smoothed": 140.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 144.701, + "new_cases_per_million": 3.462, + "new_cases_smoothed_per_million": 7.471, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 9262.0, + "total_tests": 205560.0, + "total_tests_per_thousand": 10.948, + "new_tests_per_thousand": 0.493, + "new_tests_smoothed": 12516.0, + "new_tests_smoothed_per_thousand": 0.667, + "tests_per_case": 89.21799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-28", + "total_cases": 2860.0, + "new_cases": 143.0, + "new_cases_smoothed": 130.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 152.316, + "new_cases_per_million": 7.616, + "new_cases_smoothed_per_million": 6.931, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 10716.0, + "total_tests": 216276.0, + "total_tests_per_thousand": 11.518, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 12793.0, + "new_tests_smoothed_per_thousand": 0.681, + "tests_per_case": 98.3, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-29", + "total_cases": 3063.0, + "new_cases": 203.0, + "new_cases_smoothed": 148.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 163.128, + "new_cases_per_million": 10.811, + "new_cases_smoothed_per_million": 7.897, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 16139.0, + "total_tests": 232415.0, + "total_tests_per_thousand": 12.378, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 13315.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 89.79299999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-04-30", + "total_cases": 3205.0, + "new_cases": 142.0, + "new_cases_smoothed": 144.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 170.69, + "new_cases_per_million": 7.563, + "new_cases_smoothed_per_million": 7.715, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 17112.0, + "total_tests": 249527.0, + "total_tests_per_thousand": 13.289, + "new_tests_per_thousand": 0.911, + "new_tests_smoothed": 13719.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 94.70700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-01", + "total_cases": 3504.0, + "new_cases": 299.0, + "new_cases_smoothed": 167.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 186.614, + "new_cases_per_million": 15.924, + "new_cases_smoothed_per_million": 8.902, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 19007.0, + "total_tests": 268534.0, + "total_tests_per_thousand": 14.301, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 14861.0, + "new_tests_smoothed_per_thousand": 0.791, + "tests_per_case": 88.912, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-02", + "total_cases": 3671.0, + "new_cases": 167.0, + "new_cases_smoothed": 169.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.508, + "new_cases_per_million": 8.894, + "new_cases_smoothed_per_million": 9.046, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14328.0, + "total_tests": 282862.0, + "total_tests_per_thousand": 15.065, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 14623.0, + "new_tests_smoothed_per_thousand": 0.779, + "tests_per_case": 86.09, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-03", + "total_cases": 3877.0, + "new_cases": 206.0, + "new_cases_smoothed": 175.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.479, + "new_cases_per_million": 10.971, + "new_cases_smoothed_per_million": 9.32, + "total_deaths_per_million": 1.331, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13274.0, + "total_tests": 296136.0, + "total_tests_per_thousand": 15.771, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 14263.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 81.503, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-04", + "total_cases": 3964.0, + "new_cases": 87.0, + "new_cases_smoothed": 178.143, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 211.113, + "new_cases_per_million": 4.633, + "new_cases_smoothed_per_million": 9.487, + "total_deaths_per_million": 1.438, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 10725.0, + "total_tests": 306861.0, + "total_tests_per_thousand": 16.343, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 14472.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 81.238, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-05", + "total_cases": 4121.0, + "new_cases": 157.0, + "new_cases_smoothed": 180.143, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 219.474, + "new_cases_per_million": 8.361, + "new_cases_smoothed_per_million": 9.594, + "total_deaths_per_million": 1.544, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 13550.0, + "total_tests": 320411.0, + "total_tests_per_thousand": 17.064, + "new_tests_per_thousand": 0.722, + "new_tests_smoothed": 14876.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 82.579, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-06", + "total_cases": 4277.0, + "new_cases": 156.0, + "new_cases_smoothed": 173.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 227.782, + "new_cases_per_million": 8.308, + "new_cases_smoothed_per_million": 9.236, + "total_deaths_per_million": 1.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 16069.0, + "total_tests": 336480.0, + "total_tests_per_thousand": 17.92, + "new_tests_per_thousand": 0.856, + "new_tests_smoothed": 14866.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 85.71799999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-07", + "total_cases": 4502.0, + "new_cases": 225.0, + "new_cases_smoothed": 185.286, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 239.765, + "new_cases_per_million": 11.983, + "new_cases_smoothed_per_million": 9.868, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 17363.0, + "total_tests": 353843.0, + "total_tests_per_thousand": 18.845, + "new_tests_per_thousand": 0.925, + "new_tests_smoothed": 14902.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 80.42699999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-08", + "total_cases": 4690.0, + "new_cases": 188.0, + "new_cases_smoothed": 169.429, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 249.778, + "new_cases_per_million": 10.012, + "new_cases_smoothed_per_million": 9.023, + "total_deaths_per_million": 1.651, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 17283.0, + "total_tests": 371126.0, + "total_tests_per_thousand": 19.765, + "new_tests_per_thousand": 0.92, + "new_tests_smoothed": 14656.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 86.50299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-09", + "total_cases": 4834.0, + "new_cases": 144.0, + "new_cases_smoothed": 166.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 257.447, + "new_cases_per_million": 7.669, + "new_cases_smoothed_per_million": 8.848, + "total_deaths_per_million": 1.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 13978.0, + "total_tests": 385104.0, + "total_tests_per_thousand": 20.51, + "new_tests_per_thousand": 0.744, + "new_tests_smoothed": 14606.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 87.912, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-10", + "total_cases": 5036.0, + "new_cases": 202.0, + "new_cases_smoothed": 165.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 268.205, + "new_cases_per_million": 10.758, + "new_cases_smoothed_per_million": 8.818, + "total_deaths_per_million": 1.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 13307.0, + "total_tests": 398411.0, + "total_tests_per_thousand": 21.218, + "new_tests_per_thousand": 0.709, + "new_tests_smoothed": 14611.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 88.24600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.35 + }, + { + "date": "2020-05-11", + "total_cases": 5126.0, + "new_cases": 90.0, + "new_cases_smoothed": 166.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 272.998, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 8.841, + "total_deaths_per_million": 1.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 10302.0, + "total_tests": 408713.0, + "total_tests_per_thousand": 21.767, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 14550.0, + "new_tests_smoothed_per_thousand": 0.775, + "tests_per_case": 87.65100000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-12", + "total_cases": 5240.0, + "new_cases": 114.0, + "new_cases_smoothed": 159.857, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.069, + "new_cases_per_million": 6.071, + "new_cases_smoothed_per_million": 8.514, + "total_deaths_per_million": 1.704, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 13298.0, + "total_tests": 422011.0, + "total_tests_per_thousand": 22.475, + "new_tests_per_thousand": 0.708, + "new_tests_smoothed": 14514.0, + "new_tests_smoothed_per_thousand": 0.773, + "tests_per_case": 90.794, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-13", + "total_cases": 5417.0, + "new_cases": 177.0, + "new_cases_smoothed": 162.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 288.496, + "new_cases_per_million": 9.427, + "new_cases_smoothed_per_million": 8.673, + "total_deaths_per_million": 1.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 17484.0, + "total_tests": 439495.0, + "total_tests_per_thousand": 23.406, + "new_tests_per_thousand": 0.931, + "new_tests_smoothed": 14716.0, + "new_tests_smoothed_per_thousand": 0.784, + "tests_per_case": 90.361, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-14", + "total_cases": 5571.0, + "new_cases": 154.0, + "new_cases_smoothed": 152.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 296.697, + "new_cases_per_million": 8.202, + "new_cases_smoothed_per_million": 8.133, + "total_deaths_per_million": 1.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 20241.0, + "total_tests": 459736.0, + "total_tests_per_thousand": 24.484, + "new_tests_per_thousand": 1.078, + "new_tests_smoothed": 15128.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 99.061, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-15", + "total_cases": 5571.0, + "new_cases": 0.0, + "new_cases_smoothed": 125.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 296.697, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.703, + "total_deaths_per_million": 1.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 23500.0, + "total_tests": 483236.0, + "total_tests_per_thousand": 25.736, + "new_tests_per_thousand": 1.252, + "new_tests_smoothed": 16016.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 127.255, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-16", + "total_cases": 5850.0, + "new_cases": 279.0, + "new_cases_smoothed": 145.143, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 311.556, + "new_cases_per_million": 14.859, + "new_cases_smoothed_per_million": 7.73, + "total_deaths_per_million": 1.811, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 21980.0, + "total_tests": 505216.0, + "total_tests_per_thousand": 26.907, + "new_tests_per_thousand": 1.171, + "new_tests_smoothed": 17159.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 118.221, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-17", + "total_cases": 6157.0, + "new_cases": 307.0, + "new_cases_smoothed": 160.143, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 327.906, + "new_cases_per_million": 16.35, + "new_cases_smoothed_per_million": 8.529, + "total_deaths_per_million": 1.811, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 22224.0, + "total_tests": 527440.0, + "total_tests_per_thousand": 28.09, + "new_tests_per_thousand": 1.184, + "new_tests_smoothed": 18433.0, + "new_tests_smoothed_per_thousand": 0.982, + "tests_per_case": 115.103, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-18", + "total_cases": 6440.0, + "new_cases": 283.0, + "new_cases_smoothed": 187.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 342.978, + "new_cases_per_million": 15.072, + "new_cases_smoothed_per_million": 9.997, + "total_deaths_per_million": 1.811, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 13268.0, + "total_tests": 540708.0, + "total_tests_per_thousand": 28.797, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 18856.0, + "new_tests_smoothed_per_thousand": 1.004, + "tests_per_case": 100.45100000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-19", + "total_cases": 6751.0, + "new_cases": 311.0, + "new_cases_smoothed": 215.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 359.541, + "new_cases_per_million": 16.563, + "new_cases_smoothed_per_million": 11.496, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 12354.0, + "total_tests": 553062.0, + "total_tests_per_thousand": 29.455, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 18722.0, + "new_tests_smoothed_per_thousand": 0.997, + "tests_per_case": 86.73299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-20", + "total_cases": 6969.0, + "new_cases": 218.0, + "new_cases_smoothed": 221.714, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 371.151, + "new_cases_per_million": 11.61, + "new_cases_smoothed_per_million": 11.808, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 18485.0, + "total_tests": 571547.0, + "total_tests_per_thousand": 30.439, + "new_tests_per_thousand": 0.984, + "new_tests_smoothed": 18865.0, + "new_tests_smoothed_per_thousand": 1.005, + "tests_per_case": 85.087, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-21", + "total_cases": 7234.0, + "new_cases": 265.0, + "new_cases_smoothed": 237.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 385.265, + "new_cases_per_million": 14.113, + "new_cases_smoothed_per_million": 12.652, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 19955.0, + "total_tests": 591502.0, + "total_tests_per_thousand": 31.502, + "new_tests_per_thousand": 1.063, + "new_tests_smoothed": 18824.0, + "new_tests_smoothed_per_thousand": 1.003, + "tests_per_case": 79.235, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-22", + "total_cases": 7597.0, + "new_cases": 363.0, + "new_cases_smoothed": 289.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 404.597, + "new_cases_per_million": 19.332, + "new_cases_smoothed_per_million": 15.414, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 21495.0, + "total_tests": 612997.0, + "total_tests_per_thousand": 32.647, + "new_tests_per_thousand": 1.145, + "new_tests_smoothed": 18537.0, + "new_tests_smoothed_per_thousand": 0.987, + "tests_per_case": 64.047, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-23", + "total_cases": 7919.0, + "new_cases": 322.0, + "new_cases_smoothed": 295.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 421.746, + "new_cases_per_million": 17.149, + "new_cases_smoothed_per_million": 15.741, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 22715.0, + "total_tests": 635712.0, + "total_tests_per_thousand": 33.856, + "new_tests_per_thousand": 1.21, + "new_tests_smoothed": 18642.0, + "new_tests_smoothed_per_thousand": 0.993, + "tests_per_case": 63.071000000000005, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-24", + "total_cases": 8322.0, + "new_cases": 403.0, + "new_cases_smoothed": 309.286, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 443.209, + "new_cases_per_million": 21.463, + "new_cases_smoothed_per_million": 16.472, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 21502.0, + "total_tests": 657214.0, + "total_tests_per_thousand": 35.002, + "new_tests_per_thousand": 1.145, + "new_tests_smoothed": 18539.0, + "new_tests_smoothed_per_thousand": 0.987, + "tests_per_case": 59.941, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-25", + "total_cases": 8531.0, + "new_cases": 209.0, + "new_cases_smoothed": 298.714, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 454.34, + "new_cases_per_million": 11.131, + "new_cases_smoothed_per_million": 15.909, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 14560.0, + "total_tests": 671774.0, + "total_tests_per_thousand": 35.777, + "new_tests_per_thousand": 0.775, + "new_tests_smoothed": 18724.0, + "new_tests_smoothed_per_thousand": 0.997, + "tests_per_case": 62.681999999999995, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-26", + "total_cases": 8969.0, + "new_cases": 438.0, + "new_cases_smoothed": 316.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 477.666, + "new_cases_per_million": 23.327, + "new_cases_smoothed_per_million": 16.875, + "total_deaths_per_million": 1.864, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15493.0, + "total_tests": 687267.0, + "total_tests_per_thousand": 36.602, + "new_tests_per_thousand": 0.825, + "new_tests_smoothed": 19172.0, + "new_tests_smoothed_per_thousand": 1.021, + "tests_per_case": 60.507, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-27", + "total_cases": 9304.0, + "new_cases": 335.0, + "new_cases_smoothed": 333.571, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 495.508, + "new_cases_per_million": 17.841, + "new_cases_smoothed_per_million": 17.765, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 23085.0, + "total_tests": 710352.0, + "total_tests_per_thousand": 37.832, + "new_tests_per_thousand": 1.229, + "new_tests_smoothed": 19829.0, + "new_tests_smoothed_per_thousand": 1.056, + "tests_per_case": 59.445, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-28", + "total_cases": 9576.0, + "new_cases": 272.0, + "new_cases_smoothed": 334.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 509.994, + "new_cases_per_million": 14.486, + "new_cases_smoothed_per_million": 17.818, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 24921.0, + "total_tests": 735273.0, + "total_tests_per_thousand": 39.159, + "new_tests_per_thousand": 1.327, + "new_tests_smoothed": 20539.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 61.388999999999996, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-29", + "total_cases": 9932.0, + "new_cases": 356.0, + "new_cases_smoothed": 333.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 528.953, + "new_cases_per_million": 18.96, + "new_cases_smoothed_per_million": 17.765, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 26454.0, + "total_tests": 761727.0, + "total_tests_per_thousand": 40.568, + "new_tests_per_thousand": 1.409, + "new_tests_smoothed": 21247.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 63.696000000000005, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-30", + "total_cases": 10382.0, + "new_cases": 450.0, + "new_cases_smoothed": 351.857, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 552.919, + "new_cases_per_million": 23.966, + "new_cases_smoothed_per_million": 18.739, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 26562.0, + "total_tests": 788289.0, + "total_tests_per_thousand": 41.982, + "new_tests_per_thousand": 1.415, + "new_tests_smoothed": 21797.0, + "new_tests_smoothed_per_thousand": 1.161, + "tests_per_case": 61.948, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-05-31", + "total_cases": 10858.0, + "new_cases": 476.0, + "new_cases_smoothed": 362.286, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 578.27, + "new_cases_per_million": 25.351, + "new_cases_smoothed_per_million": 19.294, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 24592.0, + "total_tests": 812881.0, + "total_tests_per_thousand": 43.292, + "new_tests_per_thousand": 1.31, + "new_tests_smoothed": 22238.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 61.382, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.8 + }, + { + "date": "2020-06-01", + "total_cases": 11308.0, + "new_cases": 450.0, + "new_cases_smoothed": 396.714, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 602.236, + "new_cases_per_million": 23.966, + "new_cases_smoothed_per_million": 21.128, + "total_deaths_per_million": 2.184, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 15496.0, + "total_tests": 828377.0, + "total_tests_per_thousand": 44.117, + "new_tests_per_thousand": 0.825, + "new_tests_smoothed": 22372.0, + "new_tests_smoothed_per_thousand": 1.191, + "tests_per_case": 56.393, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-02", + "total_cases": 11571.0, + "new_cases": 263.0, + "new_cases_smoothed": 371.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 616.242, + "new_cases_per_million": 14.007, + "new_cases_smoothed_per_million": 19.797, + "total_deaths_per_million": 2.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 15249.0, + "total_tests": 843626.0, + "total_tests_per_thousand": 44.929, + "new_tests_per_thousand": 0.812, + "new_tests_smoothed": 22337.0, + "new_tests_smoothed_per_thousand": 1.19, + "tests_per_case": 60.092, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-03", + "total_cases": 11796.0, + "new_cases": 225.0, + "new_cases_smoothed": 356.0, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 628.225, + "new_cases_per_million": 11.983, + "new_cases_smoothed_per_million": 18.96, + "total_deaths_per_million": 2.343, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 23660.0, + "total_tests": 867286.0, + "total_tests_per_thousand": 46.189, + "new_tests_per_thousand": 1.26, + "new_tests_smoothed": 22419.0, + "new_tests_smoothed_per_thousand": 1.194, + "tests_per_case": 62.975, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-04", + "total_cases": 12067.0, + "new_cases": 271.0, + "new_cases_smoothed": 355.857, + "total_deaths": 48.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 642.658, + "new_cases_per_million": 14.433, + "new_cases_smoothed_per_million": 18.952, + "total_deaths_per_million": 2.556, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 24815.0, + "total_tests": 892101.0, + "total_tests_per_thousand": 47.511, + "new_tests_per_thousand": 1.322, + "new_tests_smoothed": 22404.0, + "new_tests_smoothed_per_thousand": 1.193, + "tests_per_case": 62.958, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-05", + "total_cases": 12312.0, + "new_cases": 245.0, + "new_cases_smoothed": 340.0, + "total_deaths": 52.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 655.706, + "new_cases_per_million": 13.048, + "new_cases_smoothed_per_million": 18.108, + "total_deaths_per_million": 2.769, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 23803.0, + "total_tests": 915904.0, + "total_tests_per_thousand": 48.779, + "new_tests_per_thousand": 1.268, + "new_tests_smoothed": 22025.0, + "new_tests_smoothed_per_thousand": 1.173, + "tests_per_case": 64.779, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-06", + "total_cases": 12511.0, + "new_cases": 199.0, + "new_cases_smoothed": 304.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 666.304, + "new_cases_per_million": 10.598, + "new_cases_smoothed_per_million": 16.198, + "total_deaths_per_million": 2.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 26672.0, + "total_tests": 942576.0, + "total_tests_per_thousand": 50.199, + "new_tests_per_thousand": 1.42, + "new_tests_smoothed": 22041.0, + "new_tests_smoothed_per_thousand": 1.174, + "tests_per_case": 72.469, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-07", + "total_cases": 12694.0, + "new_cases": 183.0, + "new_cases_smoothed": 262.286, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 676.05, + "new_cases_per_million": 9.746, + "new_cases_smoothed_per_million": 13.969, + "total_deaths_per_million": 2.823, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 22513.0, + "total_tests": 965089.0, + "total_tests_per_thousand": 51.398, + "new_tests_per_thousand": 1.199, + "new_tests_smoothed": 21744.0, + "new_tests_smoothed_per_thousand": 1.158, + "tests_per_case": 82.902, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-08", + "total_cases": 12859.0, + "new_cases": 165.0, + "new_cases_smoothed": 221.571, + "total_deaths": 56.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 684.838, + "new_cases_per_million": 8.787, + "new_cases_smoothed_per_million": 11.8, + "total_deaths_per_million": 2.982, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 16284.0, + "total_tests": 981373.0, + "total_tests_per_thousand": 52.265, + "new_tests_per_thousand": 0.867, + "new_tests_smoothed": 21857.0, + "new_tests_smoothed_per_thousand": 1.164, + "tests_per_case": 98.645, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-09", + "total_cases": 13074.0, + "new_cases": 215.0, + "new_cases_smoothed": 214.714, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 696.288, + "new_cases_per_million": 11.45, + "new_cases_smoothed_per_million": 11.435, + "total_deaths_per_million": 3.089, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 17183.0, + "total_tests": 998556.0, + "total_tests_per_thousand": 53.181, + "new_tests_per_thousand": 0.915, + "new_tests_smoothed": 22133.0, + "new_tests_smoothed_per_thousand": 1.179, + "tests_per_case": 103.081, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-10", + "total_cases": 13319.0, + "new_cases": 245.0, + "new_cases_smoothed": 217.571, + "total_deaths": 61.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 709.336, + "new_cases_per_million": 13.048, + "new_cases_smoothed_per_million": 11.587, + "total_deaths_per_million": 3.249, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 24861.0, + "total_tests": 1023417.0, + "total_tests_per_thousand": 54.505, + "new_tests_per_thousand": 1.324, + "new_tests_smoothed": 22304.0, + "new_tests_smoothed_per_thousand": 1.188, + "tests_per_case": 102.51299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 77.31 + }, + { + "date": "2020-06-11", + "total_cases": 13558.0, + "new_cases": 239.0, + "new_cases_smoothed": 213.0, + "total_deaths": 67.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 722.065, + "new_cases_per_million": 12.729, + "new_cases_smoothed_per_million": 11.344, + "total_deaths_per_million": 3.568, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 26681.0, + "total_tests": 1050098.0, + "total_tests_per_thousand": 55.926, + "new_tests_per_thousand": 1.421, + "new_tests_smoothed": 22571.0, + "new_tests_smoothed_per_thousand": 1.202, + "tests_per_case": 105.96700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-12", + "total_cases": 13872.0, + "new_cases": 314.0, + "new_cases_smoothed": 222.857, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 738.788, + "new_cases_per_million": 16.723, + "new_cases_smoothed_per_million": 11.869, + "total_deaths_per_million": 3.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 28441.0, + "total_tests": 1078539.0, + "total_tests_per_thousand": 57.44, + "new_tests_per_thousand": 1.515, + "new_tests_smoothed": 23234.0, + "new_tests_smoothed_per_thousand": 1.237, + "tests_per_case": 104.255, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-13", + "total_cases": 14238.0, + "new_cases": 366.0, + "new_cases_smoothed": 246.714, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 758.28, + "new_cases_per_million": 19.492, + "new_cases_smoothed_per_million": 13.139, + "total_deaths_per_million": 3.728, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 30380.0, + "total_tests": 1108919.0, + "total_tests_per_thousand": 59.058, + "new_tests_per_thousand": 1.618, + "new_tests_smoothed": 23763.0, + "new_tests_smoothed_per_thousand": 1.266, + "tests_per_case": 96.318, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-14", + "total_cases": 14496.0, + "new_cases": 258.0, + "new_cases_smoothed": 257.429, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 772.02, + "new_cases_per_million": 13.74, + "new_cases_smoothed_per_million": 13.71, + "total_deaths_per_million": 3.888, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 27275.0, + "total_tests": 1136194.0, + "total_tests_per_thousand": 60.511, + "new_tests_per_thousand": 1.453, + "new_tests_smoothed": 24444.0, + "new_tests_smoothed_per_thousand": 1.302, + "tests_per_case": 94.954, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-15", + "total_cases": 14809.0, + "new_cases": 313.0, + "new_cases_smoothed": 278.571, + "total_deaths": 77.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 788.69, + "new_cases_per_million": 16.67, + "new_cases_smoothed_per_million": 14.836, + "total_deaths_per_million": 4.101, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 24582.0, + "total_tests": 1160776.0, + "total_tests_per_thousand": 61.82, + "new_tests_per_thousand": 1.309, + "new_tests_smoothed": 25629.0, + "new_tests_smoothed_per_thousand": 1.365, + "tests_per_case": 92.00200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-16", + "total_cases": 15192.0, + "new_cases": 383.0, + "new_cases_smoothed": 302.571, + "total_deaths": 81.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 809.088, + "new_cases_per_million": 20.398, + "new_cases_smoothed_per_million": 16.114, + "total_deaths_per_million": 4.314, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 23640.0, + "total_tests": 1184416.0, + "total_tests_per_thousand": 63.079, + "new_tests_per_thousand": 1.259, + "new_tests_smoothed": 26551.0, + "new_tests_smoothed_per_thousand": 1.414, + "tests_per_case": 87.751, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-17", + "total_cases": 15542.0, + "new_cases": 350.0, + "new_cases_smoothed": 317.571, + "total_deaths": 88.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 827.728, + "new_cases_per_million": 18.64, + "new_cases_smoothed_per_million": 16.913, + "total_deaths_per_million": 4.687, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 27161.0, + "total_tests": 1211577.0, + "total_tests_per_thousand": 64.526, + "new_tests_per_thousand": 1.447, + "new_tests_smoothed": 26880.0, + "new_tests_smoothed_per_thousand": 1.432, + "tests_per_case": 84.64200000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-18", + "total_cases": 15877.0, + "new_cases": 335.0, + "new_cases_smoothed": 331.286, + "total_deaths": 100.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 845.569, + "new_cases_per_million": 17.841, + "new_cases_smoothed_per_million": 17.643, + "total_deaths_per_million": 5.326, + "new_deaths_per_million": 0.639, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 27561.0, + "total_tests": 1239138.0, + "total_tests_per_thousand": 65.993, + "new_tests_per_thousand": 1.468, + "new_tests_smoothed": 27006.0, + "new_tests_smoothed_per_thousand": 1.438, + "tests_per_case": 81.51899999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-19", + "total_cases": 16351.0, + "new_cases": 474.0, + "new_cases_smoothed": 354.143, + "total_deaths": 105.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 870.813, + "new_cases_per_million": 25.244, + "new_cases_smoothed_per_million": 18.861, + "total_deaths_per_million": 5.592, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 30450.0, + "total_tests": 1269588.0, + "total_tests_per_thousand": 67.615, + "new_tests_per_thousand": 1.622, + "new_tests_smoothed": 27293.0, + "new_tests_smoothed_per_thousand": 1.454, + "tests_per_case": 77.068, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-20", + "total_cases": 16779.0, + "new_cases": 428.0, + "new_cases_smoothed": 363.0, + "total_deaths": 113.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 893.607, + "new_cases_per_million": 22.794, + "new_cases_smoothed_per_million": 19.332, + "total_deaths_per_million": 6.018, + "new_deaths_per_million": 0.426, + "new_deaths_smoothed_per_million": 0.327, + "new_tests": 32506.0, + "total_tests": 1302094.0, + "total_tests_per_thousand": 69.346, + "new_tests_per_thousand": 1.731, + "new_tests_smoothed": 27596.0, + "new_tests_smoothed_per_thousand": 1.47, + "tests_per_case": 76.02199999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-21", + "total_cases": 17225.0, + "new_cases": 446.0, + "new_cases_smoothed": 389.857, + "total_deaths": 118.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 917.36, + "new_cases_per_million": 23.753, + "new_cases_smoothed_per_million": 20.763, + "total_deaths_per_million": 6.284, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.342, + "new_tests": 28483.0, + "total_tests": 1330577.0, + "total_tests_per_thousand": 70.863, + "new_tests_per_thousand": 1.517, + "new_tests_smoothed": 27769.0, + "new_tests_smoothed_per_thousand": 1.479, + "tests_per_case": 71.229, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-22", + "total_cases": 17732.0, + "new_cases": 507.0, + "new_cases_smoothed": 417.571, + "total_deaths": 120.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 944.362, + "new_cases_per_million": 27.002, + "new_cases_smoothed_per_million": 22.239, + "total_deaths_per_million": 6.391, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.327, + "new_tests": 23879.0, + "total_tests": 1354456.0, + "total_tests_per_thousand": 72.135, + "new_tests_per_thousand": 1.272, + "new_tests_smoothed": 27669.0, + "new_tests_smoothed_per_thousand": 1.474, + "tests_per_case": 66.262, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-23", + "total_cases": 18231.0, + "new_cases": 499.0, + "new_cases_smoothed": 434.143, + "total_deaths": 127.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 970.937, + "new_cases_per_million": 26.575, + "new_cases_smoothed_per_million": 23.121, + "total_deaths_per_million": 6.764, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 22406.0, + "total_tests": 1376862.0, + "total_tests_per_thousand": 73.328, + "new_tests_per_thousand": 1.193, + "new_tests_smoothed": 27492.0, + "new_tests_smoothed_per_thousand": 1.464, + "tests_per_case": 63.325, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-24", + "total_cases": 18765.0, + "new_cases": 534.0, + "new_cases_smoothed": 460.429, + "total_deaths": 134.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 999.377, + "new_cases_per_million": 28.439, + "new_cases_smoothed_per_million": 24.521, + "total_deaths_per_million": 7.137, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 24830.0, + "total_tests": 1401692.0, + "total_tests_per_thousand": 74.651, + "new_tests_per_thousand": 1.322, + "new_tests_smoothed": 27159.0, + "new_tests_smoothed_per_thousand": 1.446, + "tests_per_case": 58.986000000000004, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-25", + "total_cases": 19285.0, + "new_cases": 520.0, + "new_cases_smoothed": 486.857, + "total_deaths": 136.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1027.07, + "new_cases_per_million": 27.694, + "new_cases_smoothed_per_million": 25.929, + "total_deaths_per_million": 7.243, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 22955.0, + "total_tests": 1424647.0, + "total_tests_per_thousand": 75.873, + "new_tests_per_thousand": 1.223, + "new_tests_smoothed": 26501.0, + "new_tests_smoothed_per_thousand": 1.411, + "tests_per_case": 54.433, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-26", + "total_cases": 19750.0, + "new_cases": 465.0, + "new_cases_smoothed": 485.571, + "total_deaths": 147.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1051.835, + "new_cases_per_million": 24.765, + "new_cases_smoothed_per_million": 25.86, + "total_deaths_per_million": 7.829, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.32, + "new_tests": 22519.0, + "total_tests": 1447166.0, + "total_tests_per_thousand": 77.072, + "new_tests_per_thousand": 1.199, + "new_tests_smoothed": 25368.0, + "new_tests_smoothed_per_thousand": 1.351, + "tests_per_case": 52.244, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-27", + "total_cases": 20319.0, + "new_cases": 569.0, + "new_cases_smoothed": 505.714, + "total_deaths": 150.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1082.139, + "new_cases_per_million": 30.304, + "new_cases_smoothed_per_million": 26.933, + "total_deaths_per_million": 7.989, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.282, + "new_tests": 20390.0, + "total_tests": 1467556.0, + "total_tests_per_thousand": 78.158, + "new_tests_per_thousand": 1.086, + "new_tests_smoothed": 23637.0, + "new_tests_smoothed_per_thousand": 1.259, + "tests_per_case": 46.74, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-28", + "total_cases": 20780.0, + "new_cases": 461.0, + "new_cases_smoothed": 507.857, + "total_deaths": 173.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1106.69, + "new_cases_per_million": 24.552, + "new_cases_smoothed_per_million": 27.047, + "total_deaths_per_million": 9.214, + "new_deaths_per_million": 1.225, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 17632.0, + "total_tests": 1485188.0, + "total_tests_per_thousand": 79.097, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 22087.0, + "new_tests_smoothed_per_thousand": 1.176, + "tests_per_case": 43.49100000000001, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-29", + "total_cases": 21327.0, + "new_cases": 547.0, + "new_cases_smoothed": 513.571, + "total_deaths": 183.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1135.822, + "new_cases_per_million": 29.132, + "new_cases_smoothed_per_million": 27.352, + "total_deaths_per_million": 9.746, + "new_deaths_per_million": 0.533, + "new_deaths_smoothed_per_million": 0.479, + "new_tests": 16606.0, + "total_tests": 1501794.0, + "total_tests_per_thousand": 79.982, + "new_tests_per_thousand": 0.884, + "new_tests_smoothed": 21048.0, + "new_tests_smoothed_per_thousand": 1.121, + "tests_per_case": 40.983999999999995, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-06-30", + "total_cases": 21819.0, + "new_cases": 492.0, + "new_cases_smoothed": 512.571, + "total_deaths": 188.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1162.025, + "new_cases_per_million": 26.203, + "new_cases_smoothed_per_million": 27.298, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 0.464, + "new_tests": 15304.0, + "total_tests": 1517098.0, + "total_tests_per_thousand": 80.797, + "new_tests_per_thousand": 0.815, + "new_tests_smoothed": 20034.0, + "new_tests_smoothed_per_thousand": 1.067, + "tests_per_case": 39.085, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-07-01", + "total_cases": 41065.0, + "new_cases": 19246.0, + "new_cases_smoothed": 3185.714, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2187.018, + "new_cases_per_million": 1024.993, + "new_cases_smoothed_per_million": 169.663, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 19509.0, + "total_tests": 1536607.0, + "total_tests_per_thousand": 81.836, + "new_tests_per_thousand": 1.039, + "new_tests_smoothed": 19274.0, + "new_tests_smoothed_per_thousand": 1.026, + "tests_per_case": 6.05, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-07-02", + "total_cases": 42574.0, + "new_cases": 1509.0, + "new_cases_smoothed": 3327.0, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 2267.384, + "new_cases_per_million": 80.366, + "new_cases_smoothed_per_million": 177.188, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 19251.0, + "total_tests": 1555858.0, + "total_tests_per_thousand": 82.861, + "new_tests_per_thousand": 1.025, + "new_tests_smoothed": 18744.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 5.6339999999999995, + "positive_rate": 0.177, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-07-03", + "total_cases": 44075.0, + "new_cases": 1501.0, + "new_cases_smoothed": 3475.0, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 2347.323, + "new_cases_per_million": 79.939, + "new_cases_smoothed_per_million": 185.07, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.312, + "new_tests": 34286.0, + "total_tests": 1590144.0, + "total_tests_per_thousand": 84.687, + "new_tests_per_thousand": 1.826, + "new_tests_smoothed": 20425.0, + "new_tests_smoothed_per_thousand": 1.088, + "tests_per_case": 5.877999999999999, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-07-04", + "total_cases": 45719.0, + "new_cases": 1644.0, + "new_cases_smoothed": 3628.571, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2434.878, + "new_cases_per_million": 87.555, + "new_cases_smoothed_per_million": 193.249, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 16278.0, + "total_tests": 1606422.0, + "total_tests_per_thousand": 85.554, + "new_tests_per_thousand": 0.867, + "new_tests_smoothed": 19838.0, + "new_tests_smoothed_per_thousand": 1.057, + "tests_per_case": 5.4670000000000005, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 80.09 + }, + { + "date": "2020-07-05", + "total_cases": 47171.0, + "new_cases": 1452.0, + "new_cases_smoothed": 3770.143, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2512.208, + "new_cases_per_million": 77.33, + "new_cases_smoothed_per_million": 200.788, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 13830.0, + "total_tests": 1620252.0, + "total_tests_per_thousand": 86.291, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 19295.0, + "new_tests_smoothed_per_thousand": 1.028, + "tests_per_case": 5.118, + "positive_rate": 0.195, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-06", + "total_cases": 48574.0, + "new_cases": 1403.0, + "new_cases_smoothed": 3892.429, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2586.929, + "new_cases_per_million": 74.72, + "new_cases_smoothed_per_million": 207.301, + "total_deaths_per_million": 10.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 10417.0, + "total_tests": 1630669.0, + "total_tests_per_thousand": 86.845, + "new_tests_per_thousand": 0.555, + "new_tests_smoothed": 18411.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 4.73, + "positive_rate": 0.21100000000000002, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-07", + "total_cases": 49683.0, + "new_cases": 1109.0, + "new_cases_smoothed": 3980.571, + "total_deaths": 264.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2645.991, + "new_cases_per_million": 59.063, + "new_cases_smoothed_per_million": 211.995, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 4.048, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 12447.0, + "total_tests": 1643116.0, + "total_tests_per_thousand": 87.508, + "new_tests_per_thousand": 0.663, + "new_tests_smoothed": 18003.0, + "new_tests_smoothed_per_thousand": 0.959, + "tests_per_case": 4.523, + "positive_rate": 0.221, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-08", + "total_cases": 51059.0, + "new_cases": 1376.0, + "new_cases_smoothed": 1427.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2719.273, + "new_cases_per_million": 73.282, + "new_cases_smoothed_per_million": 76.036, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 16427.0, + "total_tests": 1659543.0, + "total_tests_per_thousand": 88.383, + "new_tests_per_thousand": 0.875, + "new_tests_smoothed": 17562.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 12.300999999999998, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-09", + "total_cases": 53021.0, + "new_cases": 1962.0, + "new_cases_smoothed": 1492.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2823.765, + "new_cases_per_million": 104.491, + "new_cases_smoothed_per_million": 79.483, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 16774.0, + "total_tests": 1676317.0, + "total_tests_per_thousand": 89.276, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 17208.0, + "new_tests_smoothed_per_thousand": 0.916, + "tests_per_case": 11.53, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-10", + "total_cases": 54747.0, + "new_cases": 1726.0, + "new_cases_smoothed": 1524.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2915.687, + "new_cases_per_million": 91.922, + "new_cases_smoothed_per_million": 81.195, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 18269.0, + "total_tests": 1694586.0, + "total_tests_per_thousand": 90.249, + "new_tests_per_thousand": 0.973, + "new_tests_smoothed": 14920.0, + "new_tests_smoothed_per_thousand": 0.795, + "tests_per_case": 9.786, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-11", + "total_cases": 56455.0, + "new_cases": 1708.0, + "new_cases_smoothed": 1533.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 3006.651, + "new_cases_per_million": 90.964, + "new_cases_smoothed_per_million": 81.682, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "new_tests_smoothed": 13506.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 8.806000000000001, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-12", + "total_cases": 58253.0, + "new_cases": 1798.0, + "new_cases_smoothed": 1583.143, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 3102.408, + "new_cases_per_million": 95.757, + "new_cases_smoothed_per_million": 84.314, + "total_deaths_per_million": 14.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.578, + "total_tests": 1707337.0, + "total_tests_per_thousand": 90.928, + "new_tests_smoothed": 12441.0, + "new_tests_smoothed_per_thousand": 0.663, + "tests_per_case": 7.858, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-13", + "total_cases": 59889.0, + "new_cases": 1636.0, + "new_cases_smoothed": 1616.429, + "total_deaths": 375.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 3189.537, + "new_cases_per_million": 87.129, + "new_cases_smoothed_per_million": 86.087, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 5.912, + "new_deaths_smoothed_per_million": 1.423, + "new_tests": 11958.0, + "total_tests": 1719295.0, + "total_tests_per_thousand": 91.565, + "new_tests_per_thousand": 0.637, + "new_tests_smoothed": 12661.0, + "new_tests_smoothed_per_thousand": 0.674, + "tests_per_case": 7.832999999999999, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-14", + "total_cases": 61755.0, + "new_cases": 1866.0, + "new_cases_smoothed": 1724.571, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3288.915, + "new_cases_per_million": 99.378, + "new_cases_smoothed_per_million": 91.846, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "new_tests": 18251.0, + "total_tests": 1737546.0, + "total_tests_per_thousand": 92.537, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 13490.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 7.822, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-15", + "total_cases": 63514.0, + "new_cases": 1759.0, + "new_cases_smoothed": 1779.286, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3382.595, + "new_cases_per_million": 93.68, + "new_cases_smoothed_per_million": 94.76, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "new_tests": 19388.0, + "total_tests": 1756934.0, + "total_tests_per_thousand": 93.57, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 13913.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 7.819, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-16", + "total_cases": 65188.0, + "new_cases": 1674.0, + "new_cases_smoothed": 1738.143, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3471.748, + "new_cases_per_million": 89.153, + "new_cases_smoothed_per_million": 92.569, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "new_tests": 20346.0, + "total_tests": 1777280.0, + "total_tests_per_thousand": 94.653, + "new_tests_per_thousand": 1.084, + "new_tests_smoothed": 14423.0, + "new_tests_smoothed_per_thousand": 0.768, + "tests_per_case": 8.298, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-17", + "total_cases": 66895.0, + "new_cases": 1707.0, + "new_cases_smoothed": 1735.429, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3562.659, + "new_cases_per_million": 90.911, + "new_cases_smoothed_per_million": 92.425, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "new_tests_smoothed": 12481.0, + "new_tests_smoothed_per_thousand": 0.665, + "tests_per_case": 7.192, + "positive_rate": 0.139, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-18", + "total_cases": 68703.0, + "new_cases": 1808.0, + "new_cases_smoothed": 1749.714, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3658.948, + "new_cases_per_million": 96.29, + "new_cases_smoothed_per_million": 93.185, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "new_tests_smoothed": 12237.0, + "new_tests_smoothed_per_thousand": 0.652, + "tests_per_case": 6.994, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-19", + "total_cases": 70339.0, + "new_cases": 1636.0, + "new_cases_smoothed": 1726.571, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 3746.078, + "new_cases_per_million": 87.129, + "new_cases_smoothed_per_million": 91.953, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.845, + "total_tests": 1791293.0, + "total_tests_per_thousand": 95.4, + "new_tests_smoothed": 11994.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 6.947, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-20", + "total_cases": 71838.0, + "new_cases": 1499.0, + "new_cases_smoothed": 1707.0, + "total_deaths": 375.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3825.91, + "new_cases_per_million": 79.833, + "new_cases_smoothed_per_million": 90.911, + "total_deaths_per_million": 19.972, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14680.0, + "total_tests": 1805973.0, + "total_tests_per_thousand": 96.182, + "new_tests_per_thousand": 0.782, + "new_tests_smoothed": 12383.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 7.254, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-21", + "total_cases": 73468.0, + "new_cases": 1630.0, + "new_cases_smoothed": 1673.286, + "total_deaths": 585.0, + "new_deaths": 210.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 3912.72, + "new_cases_per_million": 86.81, + "new_cases_smoothed_per_million": 89.115, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 11.184, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 17359.0, + "total_tests": 1823332.0, + "total_tests_per_thousand": 97.106, + "new_tests_per_thousand": 0.924, + "new_tests_smoothed": 12255.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 7.324, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-22", + "total_cases": 75153.0, + "new_cases": 1685.0, + "new_cases_smoothed": 1662.714, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4002.459, + "new_cases_per_million": 89.739, + "new_cases_smoothed_per_million": 88.552, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 21125.0, + "total_tests": 1844457.0, + "total_tests_per_thousand": 98.231, + "new_tests_per_thousand": 1.125, + "new_tests_smoothed": 12503.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 7.52, + "positive_rate": 0.133, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-23", + "total_cases": 76799.0, + "new_cases": 1646.0, + "new_cases_smoothed": 1658.714, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4090.121, + "new_cases_per_million": 87.662, + "new_cases_smoothed_per_million": 88.339, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 23450.0, + "total_tests": 1867907.0, + "total_tests_per_thousand": 99.48, + "new_tests_per_thousand": 1.249, + "new_tests_smoothed": 12947.0, + "new_tests_smoothed_per_thousand": 0.69, + "tests_per_case": 7.805, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-24", + "total_cases": 78486.0, + "new_cases": 1687.0, + "new_cases_smoothed": 1655.857, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4179.966, + "new_cases_per_million": 89.845, + "new_cases_smoothed_per_million": 88.187, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 26908.0, + "total_tests": 1894815.0, + "total_tests_per_thousand": 100.913, + "new_tests_per_thousand": 1.433, + "new_tests_smoothed": 16123.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 9.737, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-25", + "total_cases": 80226.0, + "new_cases": 1740.0, + "new_cases_smoothed": 1646.143, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4272.634, + "new_cases_per_million": 92.668, + "new_cases_smoothed_per_million": 87.669, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 68801.0, + "total_tests": 1963616.0, + "total_tests_per_thousand": 104.577, + "new_tests_per_thousand": 3.664, + "new_tests_smoothed": 25285.0, + "new_tests_smoothed_per_thousand": 1.347, + "tests_per_case": 15.36, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-26", + "total_cases": 81720.0, + "new_cases": 1494.0, + "new_cases_smoothed": 1625.857, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4352.201, + "new_cases_per_million": 79.567, + "new_cases_smoothed_per_million": 86.589, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 17183.0, + "total_tests": 1980799.0, + "total_tests_per_thousand": 105.492, + "new_tests_per_thousand": 0.915, + "new_tests_smoothed": 27072.0, + "new_tests_smoothed_per_thousand": 1.442, + "tests_per_case": 16.651, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-27", + "total_cases": 83122.0, + "new_cases": 1402.0, + "new_cases_smoothed": 1612.0, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 4426.868, + "new_cases_per_million": 74.667, + "new_cases_smoothed_per_million": 85.851, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 10850.0, + "total_tests": 1991649.0, + "total_tests_per_thousand": 106.07, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 26525.0, + "new_tests_smoothed_per_thousand": 1.413, + "tests_per_case": 16.455, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-28", + "total_cases": 84648.0, + "new_cases": 1526.0, + "new_cases_smoothed": 1597.143, + "total_deaths": 585.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4508.139, + "new_cases_per_million": 81.271, + "new_cases_smoothed_per_million": 85.06, + "total_deaths_per_million": 31.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14780.0, + "total_tests": 2006429.0, + "total_tests_per_thousand": 106.857, + "new_tests_per_thousand": 0.787, + "new_tests_smoothed": 26157.0, + "new_tests_smoothed_per_thousand": 1.393, + "tests_per_case": 16.377, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-29", + "total_cases": 86192.0, + "new_cases": 1544.0, + "new_cases_smoothed": 1577.0, + "total_deaths": 793.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 4590.368, + "new_cases_per_million": 82.23, + "new_cases_smoothed_per_million": 83.987, + "total_deaths_per_million": 42.233, + "new_deaths_per_million": 11.078, + "new_deaths_smoothed_per_million": 1.583, + "new_tests": 19210.0, + "total_tests": 2025639.0, + "total_tests_per_thousand": 107.88, + "new_tests_per_thousand": 1.023, + "new_tests_smoothed": 25883.0, + "new_tests_smoothed_per_thousand": 1.378, + "tests_per_case": 16.413, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-30", + "total_cases": 87664.0, + "new_cases": 1472.0, + "new_cases_smoothed": 1552.143, + "total_deaths": 793.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 4668.763, + "new_cases_per_million": 78.395, + "new_cases_smoothed_per_million": 82.663, + "total_deaths_per_million": 42.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.583, + "new_tests": 22316.0, + "total_tests": 2047955.0, + "total_tests_per_thousand": 109.069, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 25721.0, + "new_tests_smoothed_per_thousand": 1.37, + "tests_per_case": 16.570999999999998, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-07-31", + "total_cases": 89078.0, + "new_cases": 1414.0, + "new_cases_smoothed": 1513.143, + "total_deaths": 793.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 4744.069, + "new_cases_per_million": 75.306, + "new_cases_smoothed_per_million": 80.586, + "total_deaths_per_million": 42.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.583, + "new_tests": 25171.0, + "total_tests": 2073126.0, + "total_tests_per_thousand": 110.409, + "new_tests_per_thousand": 1.341, + "new_tests_smoothed": 25473.0, + "new_tests_smoothed_per_thousand": 1.357, + "tests_per_case": 16.834, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-01", + "total_cases": 90367.0, + "new_cases": 1289.0, + "new_cases_smoothed": 1448.714, + "total_deaths": 793.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 4812.718, + "new_cases_per_million": 68.649, + "new_cases_smoothed_per_million": 77.155, + "total_deaths_per_million": 42.233, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.583, + "new_tests": 19496.0, + "total_tests": 2092622.0, + "total_tests_per_thousand": 111.448, + "new_tests_per_thousand": 1.038, + "new_tests_smoothed": 18429.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 12.720999999999998, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-02", + "total_cases": 96774.0, + "new_cases": 6407.0, + "new_cases_smoothed": 2150.571, + "total_deaths": 823.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 5153.939, + "new_cases_per_million": 341.221, + "new_cases_smoothed_per_million": 114.534, + "total_deaths_per_million": 43.831, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.811, + "new_tests": 12658.0, + "total_tests": 2105280.0, + "total_tests_per_thousand": 112.122, + "new_tests_per_thousand": 0.674, + "new_tests_smoothed": 17783.0, + "new_tests_smoothed_per_thousand": 0.947, + "tests_per_case": 8.269, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-03", + "total_cases": 98641.0, + "new_cases": 1867.0, + "new_cases_smoothed": 2217.0, + "total_deaths": 1109.0, + "new_deaths": 286.0, + "new_deaths_smoothed": 74.857, + "total_cases_per_million": 5253.371, + "new_cases_per_million": 99.432, + "new_cases_smoothed_per_million": 118.072, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 15.232, + "new_deaths_smoothed_per_million": 3.987, + "new_tests": 8515.0, + "total_tests": 2113795.0, + "total_tests_per_thousand": 112.575, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 17449.0, + "new_tests_smoothed_per_thousand": 0.929, + "tests_per_case": 7.871, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-04", + "total_cases": 100075.0, + "new_cases": 1434.0, + "new_cases_smoothed": 2203.857, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 74.857, + "total_cases_per_million": 5329.742, + "new_cases_per_million": 76.371, + "new_cases_smoothed_per_million": 117.372, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.987, + "new_tests": 12564.0, + "total_tests": 2126359.0, + "total_tests_per_thousand": 113.245, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 17133.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 7.774, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-05", + "total_cases": 102936.0, + "new_cases": 2861.0, + "new_cases_smoothed": 2392.0, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 45.143, + "total_cases_per_million": 5482.111, + "new_cases_per_million": 152.37, + "new_cases_smoothed_per_million": 127.392, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.404, + "new_tests": 18400.0, + "total_tests": 2144759.0, + "total_tests_per_thousand": 114.224, + "new_tests_per_thousand": 0.98, + "new_tests_smoothed": 17017.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 7.114, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-06", + "total_cases": 105526.0, + "new_cases": 2590.0, + "new_cases_smoothed": 2551.714, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 45.143, + "total_cases_per_million": 5620.048, + "new_cases_per_million": 137.937, + "new_cases_smoothed_per_million": 135.898, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.404, + "new_tests": 18954.0, + "total_tests": 2163713.0, + "total_tests_per_thousand": 115.234, + "new_tests_per_thousand": 1.009, + "new_tests_smoothed": 16537.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 6.481, + "positive_rate": 0.154, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-07", + "total_cases": 107930.0, + "new_cases": 2404.0, + "new_cases_smoothed": 2693.143, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 45.143, + "total_cases_per_million": 5748.079, + "new_cases_per_million": 128.031, + "new_cases_smoothed_per_million": 143.43, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.404, + "new_tests": 19595.0, + "total_tests": 2183308.0, + "total_tests_per_thousand": 116.277, + "new_tests_per_thousand": 1.044, + "new_tests_smoothed": 15740.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 5.843999999999999, + "positive_rate": 0.171, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-08", + "total_cases": 109939.0, + "new_cases": 2009.0, + "new_cases_smoothed": 2796.0, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 45.143, + "total_cases_per_million": 5855.074, + "new_cases_per_million": 106.994, + "new_cases_smoothed_per_million": 148.908, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.404, + "new_tests": 19128.0, + "total_tests": 2202436.0, + "total_tests_per_thousand": 117.296, + "new_tests_per_thousand": 1.019, + "new_tests_smoothed": 15688.0, + "new_tests_smoothed_per_thousand": 0.836, + "tests_per_case": 5.611000000000001, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-09", + "total_cases": 111822.0, + "new_cases": 1883.0, + "new_cases_smoothed": 2149.714, + "total_deaths": 1109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 5955.357, + "new_cases_per_million": 100.284, + "new_cases_smoothed_per_million": 114.488, + "total_deaths_per_million": 59.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.176, + "new_tests": 15207.0, + "total_tests": 2217643.0, + "total_tests_per_thousand": 118.106, + "new_tests_per_thousand": 0.81, + "new_tests_smoothed": 16052.0, + "new_tests_smoothed_per_thousand": 0.855, + "tests_per_case": 7.4670000000000005, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-10", + "total_cases": 112722.0, + "new_cases": 900.0, + "new_cases_smoothed": 2011.571, + "total_deaths": 1433.0, + "new_deaths": 324.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 6003.289, + "new_cases_per_million": 47.932, + "new_cases_smoothed_per_million": 107.131, + "total_deaths_per_million": 76.318, + "new_deaths_per_million": 17.255, + "new_deaths_smoothed_per_million": 2.465, + "new_tests": 9226.0, + "total_tests": 2226869.0, + "total_tests_per_thousand": 118.597, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 16153.0, + "new_tests_smoothed_per_thousand": 0.86, + "tests_per_case": 8.03, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-11", + "total_cases": 113501.0, + "new_cases": 779.0, + "new_cases_smoothed": 1918.0, + "total_deaths": 1433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 6044.777, + "new_cases_per_million": 41.488, + "new_cases_smoothed_per_million": 102.148, + "total_deaths_per_million": 76.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.465, + "new_tests": 10055.0, + "total_tests": 2236924.0, + "total_tests_per_thousand": 119.133, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 15795.0, + "new_tests_smoothed_per_thousand": 0.841, + "tests_per_case": 8.235, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-12", + "total_cases": 115615.0, + "new_cases": 2114.0, + "new_cases_smoothed": 1811.286, + "total_deaths": 1433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 6157.363, + "new_cases_per_million": 112.586, + "new_cases_smoothed_per_million": 96.465, + "total_deaths_per_million": 76.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.465, + "new_tests": 15229.0, + "total_tests": 2252153.0, + "total_tests_per_thousand": 119.944, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 15342.0, + "new_tests_smoothed_per_thousand": 0.817, + "tests_per_case": 8.47, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-13", + "total_cases": 117104.0, + "new_cases": 1489.0, + "new_cases_smoothed": 1654.0, + "total_deaths": 1433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 6236.663, + "new_cases_per_million": 79.3, + "new_cases_smoothed_per_million": 88.088, + "total_deaths_per_million": 76.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.465, + "new_tests": 19601.0, + "total_tests": 2271754.0, + "total_tests_per_thousand": 120.988, + "new_tests_per_thousand": 1.044, + "new_tests_smoothed": 15434.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 9.331, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-14", + "total_cases": 118514.0, + "new_cases": 1410.0, + "new_cases_smoothed": 1512.0, + "total_deaths": 1433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 6311.756, + "new_cases_per_million": 75.093, + "new_cases_smoothed_per_million": 80.525, + "total_deaths_per_million": 76.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.465, + "new_tests": 19573.0, + "total_tests": 2291327.0, + "total_tests_per_thousand": 122.03, + "new_tests_per_thousand": 1.042, + "new_tests_smoothed": 15431.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 10.206, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-15", + "total_cases": 119781.0, + "new_cases": 1267.0, + "new_cases_smoothed": 1406.0, + "total_deaths": 1480.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 53.0, + "total_cases_per_million": 6379.234, + "new_cases_per_million": 67.477, + "new_cases_smoothed_per_million": 74.88, + "total_deaths_per_million": 78.821, + "new_deaths_per_million": 2.503, + "new_deaths_smoothed_per_million": 2.823, + "new_tests": 19179.0, + "total_tests": 2310506.0, + "total_tests_per_thousand": 123.052, + "new_tests_per_thousand": 1.021, + "new_tests_smoothed": 15439.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 10.981, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-16", + "total_cases": 121161.0, + "new_cases": 1380.0, + "new_cases_smoothed": 1334.143, + "total_deaths": 1485.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 53.714, + "total_cases_per_million": 6452.729, + "new_cases_per_million": 73.495, + "new_cases_smoothed_per_million": 71.053, + "total_deaths_per_million": 79.087, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 2.861, + "new_tests": 13883.0, + "total_tests": 2324389.0, + "total_tests_per_thousand": 123.791, + "new_tests_per_thousand": 0.739, + "new_tests_smoothed": 15249.0, + "new_tests_smoothed_per_thousand": 0.812, + "tests_per_case": 11.43, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-08-17", + "total_cases": 121639.0, + "new_cases": 478.0, + "new_cases_smoothed": 1273.857, + "total_deaths": 1487.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6478.186, + "new_cases_per_million": 25.457, + "new_cases_smoothed_per_million": 67.842, + "total_deaths_per_million": 79.194, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 9718.0, + "total_tests": 2334107.0, + "total_tests_per_thousand": 124.309, + "new_tests_per_thousand": 0.518, + "new_tests_smoothed": 15320.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 12.026, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-18", + "total_cases": 121973.0, + "new_cases": 334.0, + "new_cases_smoothed": 1210.286, + "total_deaths": 1635.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 6495.974, + "new_cases_per_million": 17.788, + "new_cases_smoothed_per_million": 64.457, + "total_deaths_per_million": 87.076, + "new_deaths_per_million": 7.882, + "new_deaths_smoothed_per_million": 1.537, + "new_tests": 7942.0, + "total_tests": 2342049.0, + "total_tests_per_thousand": 124.732, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 15018.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 12.409, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-19", + "total_cases": 123325.0, + "new_cases": 1352.0, + "new_cases_smoothed": 1101.429, + "total_deaths": 1646.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 6567.978, + "new_cases_per_million": 72.004, + "new_cases_smoothed_per_million": 58.659, + "total_deaths_per_million": 87.662, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 1.621, + "new_tests": 14953.0, + "total_tests": 2357002.0, + "total_tests_per_thousand": 125.528, + "new_tests_per_thousand": 0.796, + "new_tests_smoothed": 14978.0, + "new_tests_smoothed_per_thousand": 0.798, + "tests_per_case": 13.599, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-20", + "total_cases": 124356.0, + "new_cases": 1031.0, + "new_cases_smoothed": 1036.0, + "total_deaths": 1652.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 6622.887, + "new_cases_per_million": 54.908, + "new_cases_smoothed_per_million": 55.175, + "total_deaths_per_million": 87.981, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 1.666, + "new_tests": 17224.0, + "total_tests": 2374226.0, + "total_tests_per_thousand": 126.445, + "new_tests_per_thousand": 0.917, + "new_tests_smoothed": 14639.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 14.13, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-21", + "total_cases": 125335.0, + "new_cases": 979.0, + "new_cases_smoothed": 974.429, + "total_deaths": 1658.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 6675.026, + "new_cases_per_million": 52.139, + "new_cases_smoothed_per_million": 51.896, + "total_deaths_per_million": 88.301, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 1.712, + "new_tests": 15331.0, + "total_tests": 2389557.0, + "total_tests_per_thousand": 127.262, + "new_tests_per_thousand": 0.816, + "new_tests_smoothed": 14033.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 14.401, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-22", + "total_cases": 126243.0, + "new_cases": 908.0, + "new_cases_smoothed": 923.143, + "total_deaths": 1663.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 26.143, + "total_cases_per_million": 6723.383, + "new_cases_per_million": 48.358, + "new_cases_smoothed_per_million": 49.164, + "total_deaths_per_million": 88.567, + "new_deaths_per_million": 0.266, + "new_deaths_smoothed_per_million": 1.392, + "new_tests": 16046.0, + "total_tests": 2405603.0, + "total_tests_per_thousand": 128.116, + "new_tests_per_thousand": 0.855, + "new_tests_smoothed": 13585.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 14.716, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-23", + "total_cases": 127203.0, + "new_cases": 960.0, + "new_cases_smoothed": 863.143, + "total_deaths": 1671.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 6774.511, + "new_cases_per_million": 51.127, + "new_cases_smoothed_per_million": 45.969, + "total_deaths_per_million": 88.993, + "new_deaths_per_million": 0.426, + "new_deaths_smoothed_per_million": 1.415, + "new_tests": 12152.0, + "total_tests": 2417755.0, + "total_tests_per_thousand": 128.764, + "new_tests_per_thousand": 0.647, + "new_tests_smoothed": 13338.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 15.453, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-24", + "total_cases": 127462.0, + "new_cases": 259.0, + "new_cases_smoothed": 831.857, + "total_deaths": 1673.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 6788.304, + "new_cases_per_million": 13.794, + "new_cases_smoothed_per_million": 44.303, + "total_deaths_per_million": 89.1, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 1.415, + "new_tests": 9432.0, + "total_tests": 2427187.0, + "total_tests_per_thousand": 129.266, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 13297.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 15.985, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-25", + "total_cases": 127462.0, + "new_cases": 0.0, + "new_cases_smoothed": 784.143, + "total_deaths": 1781.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 6788.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.761, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 5.752, + "new_deaths_smoothed_per_million": 1.111, + "new_tests": 7257.0, + "total_tests": 2434444.0, + "total_tests_per_thousand": 129.652, + "new_tests_per_thousand": 0.386, + "new_tests_smoothed": 13199.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 16.832, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-08-26", + "total_cases": 127462.0, + "new_cases": 0.0, + "new_cases_smoothed": 591.0, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 6788.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.475, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 75.93 + }, + { + "date": "2020-08-27", + "total_cases": 127664.0, + "new_cases": 202.0, + "new_cases_smoothed": 472.571, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 6799.062, + "new_cases_per_million": 10.758, + "new_cases_smoothed_per_million": 25.168, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.981, + "stringency_index": 75.93 + }, + { + "date": "2020-08-28", + "total_cases": 128618.0, + "new_cases": 954.0, + "new_cases_smoothed": 469.0, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 6849.87, + "new_cases_per_million": 50.808, + "new_cases_smoothed_per_million": 24.978, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.936 + }, + { + "date": "2020-08-29", + "total_cases": 130040.0, + "new_cases": 1422.0, + "new_cases_smoothed": 542.429, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 6925.602, + "new_cases_per_million": 75.732, + "new_cases_smoothed_per_million": 28.888, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.898 + }, + { + "date": "2020-08-30", + "total_cases": 130673.0, + "new_cases": 633.0, + "new_cases_smoothed": 495.714, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 6959.314, + "new_cases_per_million": 33.712, + "new_cases_smoothed_per_million": 26.4, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.837 + }, + { + "date": "2020-08-31", + "total_cases": 130673.0, + "new_cases": 0.0, + "new_cases_smoothed": 458.714, + "total_deaths": 1781.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 6959.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.43, + "total_deaths_per_million": 94.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.822 + }, + { + "date": "2020-09-01", + "total_cases": 131596.0, + "new_cases": 923.0, + "new_cases_smoothed": 590.571, + "total_deaths": 1815.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 7008.471, + "new_cases_per_million": 49.157, + "new_cases_smoothed_per_million": 31.452, + "total_deaths_per_million": 96.662, + "new_deaths_per_million": 1.811, + "new_deaths_smoothed_per_million": 0.259 + }, + { + "date": "2020-09-02", + "total_cases": 131695.0, + "new_cases": 99.0, + "new_cases_smoothed": 604.714, + "total_deaths": 1883.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 7013.743, + "new_cases_per_million": 5.272, + "new_cases_smoothed_per_million": 32.206, + "total_deaths_per_million": 100.284, + "new_deaths_per_million": 3.622, + "new_deaths_smoothed_per_million": 0.776 + }, + { + "date": "2020-09-03", + "total_cases": 132354.0, + "new_cases": 659.0, + "new_cases_smoothed": 670.0, + "total_deaths": 1889.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 7048.84, + "new_cases_per_million": 35.097, + "new_cases_smoothed_per_million": 35.683, + "total_deaths_per_million": 100.603, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.822 + }, + { + "date": "2020-09-04", + "total_cases": 132924.0, + "new_cases": 570.0, + "new_cases_smoothed": 615.143, + "total_deaths": 1893.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 7079.197, + "new_cases_per_million": 30.357, + "new_cases_smoothed_per_million": 32.761, + "total_deaths_per_million": 100.816, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.852 + }, + { + "date": "2020-09-05", + "total_cases": 133028.0, + "new_cases": 104.0, + "new_cases_smoothed": 426.857, + "total_deaths": 1893.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 7084.735, + "new_cases_per_million": 5.539, + "new_cases_smoothed_per_million": 22.733, + "total_deaths_per_million": 100.816, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.852 + } + ] + }, + "KEN": { + "continent": "Africa", + "location": "Kenya", + "population": 53771300.0, + "population_density": 87.324, + "median_age": 20.0, + "aged_65_older": 2.686, + "aged_70_older": 1.528, + "gdp_per_capita": 2993.028, + "extreme_poverty": 36.8, + "cardiovasc_death_rate": 218.637, + "diabetes_prevalence": 2.92, + "female_smokers": 1.2, + "male_smokers": 20.4, + "handwashing_facilities": 24.651, + "hospital_beds_per_thousand": 1.4, + "life_expectancy": 66.7, + "data": [ + { + "date": "2020-03-06", + "total_tests": 31.0, + "total_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-11", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-12", + "tests_units": "samples tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-13", + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 36.11 + }, + { + "date": "2020-03-14", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.019, + "new_cases_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 36.11 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.019, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-16", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.056, + "new_cases_per_million": 0.037, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.056, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 111.0, + "total_tests_per_thousand": 0.002, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-03-18", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.074, + "new_cases_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 132.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 9.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-03-19", + "total_cases": 7.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.13, + "new_cases_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 173.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-03-20", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.13, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-03-21", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.13, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 33.833, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-03-22", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.13, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 43.167, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-03-23", + "total_cases": 15.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.279, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 26.25, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 64.81 + }, + { + "date": "2020-03-24", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.298, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-03-25", + "total_cases": 25.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.465, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 19.333, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-03-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.465, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 600.0, + "total_tests_per_thousand": 0.011, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 23.721999999999998, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 68.52 + }, + { + "date": "2020-03-27", + "total_cases": 31.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.577, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 69.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 20.125, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-03-28", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 833.0, + "total_tests_per_thousand": 0.015, + "new_tests_smoothed": 77.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 22.458000000000002, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-03-29", + "total_cases": 38.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.707, + "new_cases_per_million": 0.13, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 69.0, + "total_tests": 902.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 78.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 17.613, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-03-30", + "total_cases": 42.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.781, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 172.0, + "total_tests": 1074.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 94.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 24.37, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-03-31", + "total_cases": 50.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.93, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 234.0, + "total_tests": 1308.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 24.5, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-01", + "total_cases": 59.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.097, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 380.0, + "total_tests": 1688.0, + "total_tests_per_thousand": 0.031, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 164.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 33.765, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-02", + "total_cases": 81.0, + "new_cases": 22.0, + "new_cases_smoothed": 8.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.506, + "new_cases_per_million": 0.409, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 662.0, + "total_tests": 2350.0, + "total_tests_per_thousand": 0.044, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 250.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 31.25, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-03", + "total_cases": 110.0, + "new_cases": 29.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.046, + "new_cases_per_million": 0.539, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.056, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 362.0, + "total_tests": 2712.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 285.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 25.253, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-04", + "total_cases": 122.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.269, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 372.0, + "total_tests": 3084.0, + "total_tests_per_thousand": 0.057, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 322.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 24.769000000000002, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-05", + "total_cases": 126.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.343, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.234, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 530.0, + "total_tests": 3614.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 30.784000000000002, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-06", + "total_cases": 142.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.641, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.266, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 663.0, + "total_tests": 4277.0, + "total_tests_per_thousand": 0.08, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 458.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 32.06, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 158.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.938, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 696.0, + "total_tests": 4973.0, + "total_tests_per_thousand": 0.092, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 524.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 33.963, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 172.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.143, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.199, + "new_cases_per_million": 0.26, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.112, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 305.0, + "total_tests": 5278.0, + "total_tests_per_thousand": 0.098, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 513.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 31.779, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 179.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.13, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 0.112, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 308.0, + "total_tests": 5586.0, + "total_tests_per_thousand": 0.104, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 33.0, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 184.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3.422, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.197, + "total_deaths_per_million": 0.13, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 606.0, + "total_tests": 6192.0, + "total_tests_per_thousand": 0.115, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 497.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 47.013999999999996, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 189.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.515, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 0.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 491.0, + "total_tests": 6683.0, + "total_tests_per_thousand": 0.124, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 514.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 53.701, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 191.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.552, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 0.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 766.0, + "total_tests": 7449.0, + "total_tests_per_thousand": 0.139, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 548.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 59.015, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 197.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3.664, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 674.0, + "total_tests": 8123.0, + "total_tests_per_thousand": 0.151, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 549.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 69.873, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 208.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.868, + "new_cases_per_million": 0.205, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 694.0, + "total_tests": 8817.0, + "total_tests_per_thousand": 0.164, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 549.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 76.86, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 216.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.017, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 803.0, + "total_tests": 9620.0, + "total_tests_per_thousand": 0.179, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 620.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 98.63600000000001, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 225.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.184, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.186, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 704.0, + "total_tests": 10324.0, + "total_tests_per_thousand": 0.192, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 677.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 103.022, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 234.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.352, + "new_cases_per_million": 0.167, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.205, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 450.0, + "total_tests": 10774.0, + "total_tests_per_thousand": 0.2, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 655.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 91.7, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 246.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.575, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 0.205, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1115.0, + "total_tests": 11889.0, + "total_tests_per_thousand": 0.221, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 744.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 91.368, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 262.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4.872, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.189, + "total_deaths_per_million": 0.223, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 1350.0, + "total_tests": 13239.0, + "total_tests_per_thousand": 0.246, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 827.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 81.535, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 270.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5.021, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 633.0, + "total_tests": 13872.0, + "total_tests_per_thousand": 0.258, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 821.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 78.726, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 281.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.226, + "new_cases_per_million": 0.205, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 832.0, + "total_tests": 14704.0, + "total_tests_per_thousand": 0.273, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 841.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 80.64399999999999, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 281.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 707.0, + "total_tests": 15411.0, + "total_tests_per_thousand": 0.287, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 827.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 89.06200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 303.0, + "new_cases": 22.0, + "new_cases_smoothed": 11.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.635, + "new_cases_per_million": 0.409, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 668.0, + "total_tests": 16079.0, + "total_tests_per_thousand": 0.299, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 822.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 73.76899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 320.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.951, + "new_cases_per_million": 0.316, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 659.0, + "total_tests": 16738.0, + "total_tests_per_thousand": 0.311, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 852.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 69.34899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 336.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.249, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 777.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 60.433, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 343.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.379, + "new_cases_per_million": 0.13, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 57.728, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 355.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.602, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 662.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 54.518, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 363.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.751, + "new_cases_per_million": 0.149, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 627.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 53.523999999999994, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 374.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.955, + "new_cases_per_million": 0.205, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.26, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 610.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 45.913999999999994, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 384.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.141, + "new_cases_per_million": 0.186, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.279, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 20268.0, + "total_tests_per_thousand": 0.377, + "new_tests_smoothed": 598.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 51.678999999999995, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 396.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.857, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.365, + "new_cases_per_million": 0.223, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.316, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1434.0, + "total_tests": 21702.0, + "total_tests_per_thousand": 0.404, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 709.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 65.303, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 411.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.714, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7.643, + "new_cases_per_million": 0.279, + "new_cases_smoothed_per_million": 0.199, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 1195.0, + "total_tests": 22897.0, + "total_tests_per_thousand": 0.426, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 796.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 74.293, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 435.0, + "new_cases": 24.0, + "new_cases_smoothed": 13.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8.09, + "new_cases_per_million": 0.446, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.409, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 883.0, + "total_tests": 23780.0, + "total_tests_per_thousand": 0.442, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 838.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 63.761, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 465.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.714, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 8.648, + "new_cases_per_million": 0.558, + "new_cases_smoothed_per_million": 0.292, + "total_deaths_per_million": 0.446, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1012.0, + "total_tests": 24792.0, + "total_tests_per_thousand": 0.461, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 898.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 57.145, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 490.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 9.113, + "new_cases_per_million": 0.465, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.446, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1077.0, + "total_tests": 25869.0, + "total_tests_per_thousand": 0.481, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 968.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 53.354, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 535.0, + "new_cases": 45.0, + "new_cases_smoothed": 23.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 9.95, + "new_cases_per_million": 0.837, + "new_cases_smoothed_per_million": 0.428, + "total_deaths_per_million": 0.446, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 1054.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 45.826, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 582.0, + "new_cases": 47.0, + "new_cases_smoothed": 28.286, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 10.824, + "new_cases_per_million": 0.874, + "new_cases_smoothed_per_million": 0.526, + "total_deaths_per_million": 0.484, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.029, + "new_tests_smoothed": 1139.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 40.268, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 607.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.143, + "total_deaths": 29.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 11.289, + "new_cases_per_million": 0.465, + "new_cases_smoothed_per_million": 0.561, + "total_deaths_per_million": 0.539, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 29430.0, + "total_tests_per_thousand": 0.547, + "new_tests_smoothed": 1104.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 36.626, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 621.0, + "new_cases": 14.0, + "new_cases_smoothed": 30.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 11.549, + "new_cases_per_million": 0.26, + "new_cases_smoothed_per_million": 0.558, + "total_deaths_per_million": 0.539, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 1611.0, + "total_tests": 31041.0, + "total_tests_per_thousand": 0.577, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 38.766999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 649.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.571, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 12.07, + "new_cases_per_million": 0.521, + "new_cases_smoothed_per_million": 0.569, + "total_deaths_per_million": 0.558, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 1056.0, + "total_tests": 32097.0, + "total_tests_per_thousand": 0.597, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 38.86, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 672.0, + "new_cases": 23.0, + "new_cases_smoothed": 29.571, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 12.497, + "new_cases_per_million": 0.428, + "new_cases_smoothed_per_million": 0.55, + "total_deaths_per_million": 0.595, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 841.0, + "total_tests": 32938.0, + "total_tests_per_thousand": 0.613, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1164.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 39.361999999999995, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-12", + "total_cases": 700.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.0, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 13.018, + "new_cases_per_million": 0.521, + "new_cases_smoothed_per_million": 0.558, + "total_deaths_per_million": 0.614, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 978.0, + "total_tests": 33916.0, + "total_tests_per_thousand": 0.631, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1150.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 38.333, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-13", + "total_cases": 715.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.714, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 13.297, + "new_cases_per_million": 0.279, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 0.67, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 1516.0, + "total_tests": 35432.0, + "total_tests_per_thousand": 0.659, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1197.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 46.55, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-14", + "total_cases": 737.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.143, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 13.706, + "new_cases_per_million": 0.409, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 0.744, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 1486.0, + "total_tests": 36918.0, + "total_tests_per_thousand": 0.687, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 55.955, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-15", + "total_cases": 758.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.571, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 14.097, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.401, + "total_deaths_per_million": 0.781, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 2100.0, + "total_tests": 39018.0, + "total_tests_per_thousand": 0.726, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1370.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 63.51, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-16", + "total_cases": 781.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.857, + "total_deaths": 45.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 14.524, + "new_cases_per_million": 0.428, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.837, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.043, + "new_tests_smoothed": 1475.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 64.531, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-17", + "total_cases": 830.0, + "new_cases": 49.0, + "new_cases_smoothed": 25.857, + "total_deaths": 50.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 15.436, + "new_cases_per_million": 0.911, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.053, + "total_tests": 43712.0, + "total_tests_per_thousand": 0.813, + "new_tests_smoothed": 1659.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 64.16, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-18", + "total_cases": 887.0, + "new_cases": 57.0, + "new_cases_smoothed": 30.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 16.496, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1139.0, + "total_tests": 44851.0, + "total_tests_per_thousand": 0.834, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1702.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 55.413999999999994, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-19", + "total_cases": 912.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 16.961, + "new_cases_per_million": 0.465, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 1933.0, + "total_tests": 46784.0, + "total_tests_per_thousand": 0.87, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1838.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 60.68899999999999, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-20", + "total_cases": 963.0, + "new_cases": 51.0, + "new_cases_smoothed": 35.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 17.909, + "new_cases_per_million": 0.948, + "new_cases_smoothed_per_million": 0.659, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 2621.0, + "total_tests": 49405.0, + "total_tests_per_thousand": 0.919, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1996.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 56.339, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-21", + "total_cases": 1029.0, + "new_cases": 66.0, + "new_cases_smoothed": 41.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 19.137, + "new_cases_per_million": 1.227, + "new_cases_smoothed_per_million": 0.776, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3102.0, + "total_tests": 52507.0, + "total_tests_per_thousand": 0.976, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 2227.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 53.387, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-22", + "total_cases": 1109.0, + "new_cases": 80.0, + "new_cases_smoothed": 50.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 20.624, + "new_cases_per_million": 1.488, + "new_cases_smoothed_per_million": 0.933, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 2567.0, + "total_tests": 55074.0, + "total_tests_per_thousand": 1.024, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 2294.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 45.748999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-23", + "total_cases": 1161.0, + "new_cases": 52.0, + "new_cases_smoothed": 54.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21.591, + "new_cases_per_million": 0.967, + "new_cases_smoothed_per_million": 1.01, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 41.576, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-24", + "total_cases": 1192.0, + "new_cases": 31.0, + "new_cases_smoothed": 51.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.168, + "new_cases_per_million": 0.577, + "new_cases_smoothed_per_million": 0.962, + "total_deaths_per_million": 0.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 59260.0, + "total_tests_per_thousand": 1.102, + "new_tests_smoothed": 2221.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 42.948, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-25", + "total_cases": 1214.0, + "new_cases": 22.0, + "new_cases_smoothed": 46.714, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.577, + "new_cases_per_million": 0.409, + "new_cases_smoothed_per_million": 0.869, + "total_deaths_per_million": 0.948, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 2711.0, + "total_tests": 61971.0, + "total_tests_per_thousand": 1.152, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 52.361000000000004, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-26", + "total_cases": 1286.0, + "new_cases": 72.0, + "new_cases_smoothed": 53.429, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.916, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 0.967, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 2293.0, + "total_tests": 64264.0, + "total_tests_per_thousand": 1.195, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 2497.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 46.735, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-27", + "total_cases": 1348.0, + "new_cases": 62.0, + "new_cases_smoothed": 55.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.069, + "new_cases_per_million": 1.153, + "new_cases_smoothed_per_million": 1.023, + "total_deaths_per_million": 0.967, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 3077.0, + "total_tests": 67341.0, + "total_tests_per_thousand": 1.252, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2562.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 46.582, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-28", + "total_cases": 1471.0, + "new_cases": 123.0, + "new_cases_smoothed": 63.143, + "total_deaths": 55.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 27.357, + "new_cases_per_million": 2.287, + "new_cases_smoothed_per_million": 1.174, + "total_deaths_per_million": 1.023, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 2831.0, + "total_tests": 70172.0, + "total_tests_per_thousand": 1.305, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2524.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 39.973, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-29", + "total_cases": 1618.0, + "new_cases": 147.0, + "new_cases_smoothed": 72.714, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 30.09, + "new_cases_per_million": 2.734, + "new_cases_smoothed_per_million": 1.352, + "total_deaths_per_million": 1.079, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 3831.0, + "total_tests": 74003.0, + "total_tests_per_thousand": 1.376, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 2704.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 37.187, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-30", + "total_cases": 1745.0, + "new_cases": 127.0, + "new_cases_smoothed": 83.429, + "total_deaths": 62.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 32.452, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 1.552, + "total_deaths_per_million": 1.153, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.032, + "new_tests_smoothed": 2729.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 32.711, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-05-31", + "total_cases": 1888.0, + "new_cases": 143.0, + "new_cases_smoothed": 99.429, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 35.112, + "new_cases_per_million": 2.659, + "new_cases_smoothed_per_million": 1.849, + "total_deaths_per_million": 1.172, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.035, + "total_tests": 78536.0, + "total_tests_per_thousand": 1.461, + "new_tests_smoothed": 2754.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 27.698, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-01", + "total_cases": 1962.0, + "new_cases": 74.0, + "new_cases_smoothed": 106.857, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 36.488, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 1.987, + "total_deaths_per_million": 1.19, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 1518.0, + "total_tests": 80054.0, + "total_tests_per_thousand": 1.489, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 2583.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 24.171999999999997, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-02", + "total_cases": 2021.0, + "new_cases": 59.0, + "new_cases_smoothed": 105.0, + "total_deaths": 69.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 37.585, + "new_cases_per_million": 1.097, + "new_cases_smoothed_per_million": 1.953, + "total_deaths_per_million": 1.283, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 2892.0, + "total_tests": 82946.0, + "total_tests_per_thousand": 1.543, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2669.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 25.419, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-03", + "total_cases": 2093.0, + "new_cases": 72.0, + "new_cases_smoothed": 106.429, + "total_deaths": 71.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 38.924, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 1.979, + "total_deaths_per_million": 1.32, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2112.0, + "total_tests": 85058.0, + "total_tests_per_thousand": 1.582, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 2531.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 23.781, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-04", + "total_cases": 2216.0, + "new_cases": 123.0, + "new_cases_smoothed": 106.429, + "total_deaths": 74.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 41.212, + "new_cases_per_million": 2.287, + "new_cases_smoothed_per_million": 1.979, + "total_deaths_per_million": 1.376, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2640.0, + "total_tests": 87698.0, + "total_tests_per_thousand": 1.631, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 2504.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 23.528000000000002, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-05", + "total_cases": 2340.0, + "new_cases": 124.0, + "new_cases_smoothed": 103.143, + "total_deaths": 78.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 43.518, + "new_cases_per_million": 2.306, + "new_cases_smoothed_per_million": 1.918, + "total_deaths_per_million": 1.451, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3177.0, + "total_tests": 90875.0, + "total_tests_per_thousand": 1.69, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2410.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 23.366, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-06", + "total_cases": 2474.0, + "new_cases": 134.0, + "new_cases_smoothed": 104.143, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 46.01, + "new_cases_per_million": 2.492, + "new_cases_smoothed_per_million": 1.937, + "total_deaths_per_million": 1.469, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 3632.0, + "total_tests": 94507.0, + "total_tests_per_thousand": 1.758, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 2605.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 25.014, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-07", + "total_cases": 2600.0, + "new_cases": 126.0, + "new_cases_smoothed": 101.714, + "total_deaths": 83.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 48.353, + "new_cases_per_million": 2.343, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 1.544, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2833.0, + "total_tests": 97340.0, + "total_tests_per_thousand": 1.81, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2686.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 26.406999999999996, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-08", + "total_cases": 2767.0, + "new_cases": 167.0, + "new_cases_smoothed": 115.0, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 51.459, + "new_cases_per_million": 3.106, + "new_cases_smoothed_per_million": 2.139, + "total_deaths_per_million": 1.562, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1099.0, + "total_tests": 98439.0, + "total_tests_per_thousand": 1.831, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 2626.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 22.835, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-09", + "total_cases": 2862.0, + "new_cases": 95.0, + "new_cases_smoothed": 120.143, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 53.225, + "new_cases_per_million": 1.767, + "new_cases_smoothed_per_million": 2.234, + "total_deaths_per_million": 1.581, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 2244.0, + "total_tests": 100683.0, + "total_tests_per_thousand": 1.872, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 2534.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 21.092, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-10", + "total_cases": 2989.0, + "new_cases": 127.0, + "new_cases_smoothed": 128.0, + "total_deaths": 88.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 55.587, + "new_cases_per_million": 2.362, + "new_cases_smoothed_per_million": 2.38, + "total_deaths_per_million": 1.637, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 2273.0, + "total_tests": 102956.0, + "total_tests_per_thousand": 1.915, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 2557.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 19.977, + "positive_rate": 0.05, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-11", + "total_cases": 3094.0, + "new_cases": 105.0, + "new_cases_smoothed": 125.429, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 57.54, + "new_cases_per_million": 1.953, + "new_cases_smoothed_per_million": 2.333, + "total_deaths_per_million": 1.655, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 3291.0, + "total_tests": 106247.0, + "total_tests_per_thousand": 1.976, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 2650.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 21.128, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-12", + "total_cases": 3215.0, + "new_cases": 121.0, + "new_cases_smoothed": 125.0, + "total_deaths": 92.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 59.79, + "new_cases_per_million": 2.25, + "new_cases_smoothed_per_million": 2.325, + "total_deaths_per_million": 1.711, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 2419.0, + "total_tests": 108666.0, + "total_tests_per_thousand": 2.021, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 2542.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 20.336, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-13", + "total_cases": 3305.0, + "new_cases": 90.0, + "new_cases_smoothed": 118.714, + "total_deaths": 96.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 61.464, + "new_cases_per_million": 1.674, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 1.785, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 3505.0, + "total_tests": 112171.0, + "total_tests_per_thousand": 2.086, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 2523.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 21.253, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-14", + "total_cases": 3457.0, + "new_cases": 152.0, + "new_cases_smoothed": 122.429, + "total_deaths": 100.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 64.291, + "new_cases_per_million": 2.827, + "new_cases_smoothed_per_million": 2.277, + "total_deaths_per_million": 1.86, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 3165.0, + "total_tests": 115336.0, + "total_tests_per_thousand": 2.145, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2571.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 21.0, + "positive_rate": 0.048, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-15", + "total_cases": 3594.0, + "new_cases": 137.0, + "new_cases_smoothed": 118.143, + "total_deaths": 103.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 66.839, + "new_cases_per_million": 2.548, + "new_cases_smoothed_per_million": 2.197, + "total_deaths_per_million": 1.916, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3365.0, + "total_tests": 118701.0, + "total_tests_per_thousand": 2.208, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 2895.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 24.504, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-16", + "total_cases": 3727.0, + "new_cases": 133.0, + "new_cases_smoothed": 123.571, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 69.312, + "new_cases_per_million": 2.473, + "new_cases_smoothed_per_million": 2.298, + "total_deaths_per_million": 1.934, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3255.0, + "total_tests": 121956.0, + "total_tests_per_thousand": 2.268, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 3039.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 24.593000000000004, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-17", + "total_cases": 3860.0, + "new_cases": 133.0, + "new_cases_smoothed": 124.429, + "total_deaths": 105.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 71.786, + "new_cases_per_million": 2.473, + "new_cases_smoothed_per_million": 2.314, + "total_deaths_per_million": 1.953, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.045, + "new_tests_smoothed": 3324.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 26.714000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-18", + "total_cases": 4044.0, + "new_cases": 184.0, + "new_cases_smoothed": 135.714, + "total_deaths": 107.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 75.207, + "new_cases_per_million": 3.422, + "new_cases_smoothed_per_million": 2.524, + "total_deaths_per_million": 1.99, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.048, + "total_tests": 130498.0, + "total_tests_per_thousand": 2.427, + "new_tests_smoothed": 3464.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 25.524, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-19", + "total_cases": 4257.0, + "new_cases": 213.0, + "new_cases_smoothed": 148.857, + "total_deaths": 117.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 79.169, + "new_cases_per_million": 3.961, + "new_cases_smoothed_per_million": 2.768, + "total_deaths_per_million": 2.176, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 3043.0, + "total_tests": 133541.0, + "total_tests_per_thousand": 2.483, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 3554.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 23.875, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-20", + "total_cases": 4374.0, + "new_cases": 117.0, + "new_cases_smoothed": 152.714, + "total_deaths": 119.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 81.345, + "new_cases_per_million": 2.176, + "new_cases_smoothed_per_million": 2.84, + "total_deaths_per_million": 2.213, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 2820.0, + "total_tests": 136361.0, + "total_tests_per_thousand": 2.536, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 3456.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 22.63, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-21", + "total_cases": 4478.0, + "new_cases": 104.0, + "new_cases_smoothed": 145.857, + "total_deaths": 121.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 83.279, + "new_cases_per_million": 1.934, + "new_cases_smoothed_per_million": 2.713, + "total_deaths_per_million": 2.25, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 3651.0, + "total_tests": 140012.0, + "total_tests_per_thousand": 2.604, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 3525.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 24.166999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-22", + "total_cases": 4738.0, + "new_cases": 260.0, + "new_cases_smoothed": 163.429, + "total_deaths": 123.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 88.114, + "new_cases_per_million": 4.835, + "new_cases_smoothed_per_million": 3.039, + "total_deaths_per_million": 2.287, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2354.0, + "total_tests": 142366.0, + "total_tests_per_thousand": 2.648, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 3381.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 20.688000000000002, + "positive_rate": 0.048, + "tests_units": "samples tested", + "stringency_index": 88.89 + }, + { + "date": "2020-06-23", + "total_cases": 4797.0, + "new_cases": 59.0, + "new_cases_smoothed": 152.857, + "total_deaths": 125.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 89.211, + "new_cases_per_million": 1.097, + "new_cases_smoothed_per_million": 2.843, + "total_deaths_per_million": 2.325, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 4171.0, + "total_tests": 146537.0, + "total_tests_per_thousand": 2.725, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 3512.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 22.976, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-24", + "total_cases": 4952.0, + "new_cases": 155.0, + "new_cases_smoothed": 156.0, + "total_deaths": 128.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 92.094, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 2.901, + "total_deaths_per_million": 2.38, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 4859.0, + "total_tests": 151396.0, + "total_tests_per_thousand": 2.816, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 3596.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 23.051, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-25", + "total_cases": 5206.0, + "new_cases": 254.0, + "new_cases_smoothed": 166.0, + "total_deaths": 130.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 96.817, + "new_cases_per_million": 4.724, + "new_cases_smoothed_per_million": 3.087, + "total_deaths_per_million": 2.418, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 3918.0, + "total_tests": 155314.0, + "total_tests_per_thousand": 2.888, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 3545.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 21.355, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-26", + "total_cases": 5384.0, + "new_cases": 178.0, + "new_cases_smoothed": 161.0, + "total_deaths": 132.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 100.128, + "new_cases_per_million": 3.31, + "new_cases_smoothed_per_million": 2.994, + "total_deaths_per_million": 2.455, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 3090.0, + "total_tests": 158404.0, + "total_tests_per_thousand": 2.946, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 3552.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 22.061999999999998, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-27", + "total_cases": 5533.0, + "new_cases": 149.0, + "new_cases_smoothed": 165.571, + "total_deaths": 137.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 102.899, + "new_cases_per_million": 2.771, + "new_cases_smoothed_per_million": 3.079, + "total_deaths_per_million": 2.548, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 4074.0, + "total_tests": 162478.0, + "total_tests_per_thousand": 3.022, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 3731.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 22.534000000000002, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-28", + "total_cases": 5811.0, + "new_cases": 278.0, + "new_cases_smoothed": 190.429, + "total_deaths": 141.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 108.069, + "new_cases_per_million": 5.17, + "new_cases_smoothed_per_million": 3.541, + "total_deaths_per_million": 2.622, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2718.0, + "total_tests": 165196.0, + "total_tests_per_thousand": 3.072, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 3598.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 18.894000000000002, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-29", + "total_cases": 6070.0, + "new_cases": 259.0, + "new_cases_smoothed": 190.286, + "total_deaths": 143.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 112.885, + "new_cases_per_million": 4.817, + "new_cases_smoothed_per_million": 3.539, + "total_deaths_per_million": 2.659, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2221.0, + "total_tests": 167417.0, + "total_tests_per_thousand": 3.114, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 3579.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 18.809, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-30", + "total_cases": 6190.0, + "new_cases": 120.0, + "new_cases_smoothed": 199.0, + "total_deaths": 144.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 115.117, + "new_cases_per_million": 2.232, + "new_cases_smoothed_per_million": 3.701, + "total_deaths_per_million": 2.678, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2419.0, + "total_tests": 169836.0, + "total_tests_per_thousand": 3.158, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 3328.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 16.724, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-01", + "total_cases": 6366.0, + "new_cases": 176.0, + "new_cases_smoothed": 202.0, + "total_deaths": 148.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 118.39, + "new_cases_per_million": 3.273, + "new_cases_smoothed_per_million": 3.757, + "total_deaths_per_million": 2.752, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3519.0, + "total_tests": 173355.0, + "total_tests_per_thousand": 3.224, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 3137.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 15.53, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-02", + "total_cases": 6673.0, + "new_cases": 307.0, + "new_cases_smoothed": 209.571, + "total_deaths": 149.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 124.1, + "new_cases_per_million": 5.709, + "new_cases_smoothed_per_million": 3.897, + "total_deaths_per_million": 2.771, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2704.0, + "total_tests": 176059.0, + "total_tests_per_thousand": 3.274, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2964.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 14.142999999999999, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-03", + "total_cases": 6941.0, + "new_cases": 268.0, + "new_cases_smoothed": 222.429, + "total_deaths": 152.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 129.084, + "new_cases_per_million": 4.984, + "new_cases_smoothed_per_million": 4.137, + "total_deaths_per_million": 2.827, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4147.0, + "total_tests": 180206.0, + "total_tests_per_thousand": 3.351, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3115.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 14.004000000000001, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-04", + "total_cases": 7188.0, + "new_cases": 247.0, + "new_cases_smoothed": 236.429, + "total_deaths": 154.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 133.677, + "new_cases_per_million": 4.594, + "new_cases_smoothed_per_million": 4.397, + "total_deaths_per_million": 2.864, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 4829.0, + "total_tests": 185035.0, + "total_tests_per_thousand": 3.441, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 3222.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 13.628, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-05", + "total_cases": 7577.0, + "new_cases": 389.0, + "new_cases_smoothed": 252.286, + "total_deaths": 159.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 140.912, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 4.692, + "total_deaths_per_million": 2.957, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 4228.0, + "total_tests": 189263.0, + "total_tests_per_thousand": 3.52, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 3438.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 13.627, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-06", + "total_cases": 7886.0, + "new_cases": 309.0, + "new_cases_smoothed": 259.429, + "total_deaths": 160.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 146.658, + "new_cases_per_million": 5.747, + "new_cases_smoothed_per_million": 4.825, + "total_deaths_per_million": 2.976, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 2131.0, + "total_tests": 191394.0, + "total_tests_per_thousand": 3.559, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 3425.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 13.202, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-07-07", + "total_cases": 8067.0, + "new_cases": 181.0, + "new_cases_smoothed": 268.143, + "total_deaths": 164.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 150.024, + "new_cases_per_million": 3.366, + "new_cases_smoothed_per_million": 4.987, + "total_deaths_per_million": 3.05, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2061.0, + "total_tests": 193455.0, + "total_tests_per_thousand": 3.598, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 3374.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 12.583, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-08", + "total_cases": 8250.0, + "new_cases": 183.0, + "new_cases_smoothed": 269.143, + "total_deaths": 167.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 153.428, + "new_cases_per_million": 3.403, + "new_cases_smoothed_per_million": 5.005, + "total_deaths_per_million": 3.106, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3053.0, + "total_tests": 196508.0, + "total_tests_per_thousand": 3.655, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 3308.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.290999999999999, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-09", + "total_cases": 8528.0, + "new_cases": 278.0, + "new_cases_smoothed": 265.0, + "total_deaths": 169.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 158.598, + "new_cases_per_million": 5.17, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 3.143, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3803.0, + "total_tests": 200311.0, + "total_tests_per_thousand": 3.725, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 3465.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 13.075, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-10", + "total_cases": 8975.0, + "new_cases": 447.0, + "new_cases_smoothed": 290.571, + "total_deaths": 173.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 166.911, + "new_cases_per_million": 8.313, + "new_cases_smoothed_per_million": 5.404, + "total_deaths_per_million": 3.217, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 6273.0, + "total_tests": 206584.0, + "total_tests_per_thousand": 3.842, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 3768.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 12.968, + "positive_rate": 0.077, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-11", + "total_cases": 9448.0, + "new_cases": 473.0, + "new_cases_smoothed": 322.857, + "total_deaths": 181.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 175.707, + "new_cases_per_million": 8.797, + "new_cases_smoothed_per_million": 6.004, + "total_deaths_per_million": 3.366, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 1403.0, + "total_tests": 207987.0, + "total_tests_per_thousand": 3.868, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 3279.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 10.156, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-12", + "total_cases": 9726.0, + "new_cases": 278.0, + "new_cases_smoothed": 307.0, + "total_deaths": 184.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 180.877, + "new_cases_per_million": 5.17, + "new_cases_smoothed_per_million": 5.709, + "total_deaths_per_million": 3.422, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 7050.0, + "total_tests": 215037.0, + "total_tests_per_thousand": 3.999, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 3682.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 11.993, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-13", + "total_cases": 10105.0, + "new_cases": 379.0, + "new_cases_smoothed": 317.0, + "total_deaths": 185.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 187.926, + "new_cases_per_million": 7.048, + "new_cases_smoothed_per_million": 5.895, + "total_deaths_per_million": 3.44, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 1205.0, + "total_tests": 216242.0, + "total_tests_per_thousand": 4.022, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 3550.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 11.199000000000002, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-14", + "total_cases": 10294.0, + "new_cases": 189.0, + "new_cases_smoothed": 318.143, + "total_deaths": 197.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 191.44, + "new_cases_per_million": 3.515, + "new_cases_smoothed_per_million": 5.917, + "total_deaths_per_million": 3.664, + "new_deaths_per_million": 0.223, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 4992.0, + "total_tests": 221234.0, + "total_tests_per_thousand": 4.114, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 3968.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 12.472000000000001, + "positive_rate": 0.08, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-15", + "total_cases": 10791.0, + "new_cases": 497.0, + "new_cases_smoothed": 363.0, + "total_deaths": 202.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 200.683, + "new_cases_per_million": 9.243, + "new_cases_smoothed_per_million": 6.751, + "total_deaths_per_million": 3.757, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 4261.0, + "total_tests": 225495.0, + "total_tests_per_thousand": 4.194, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 4141.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 11.408, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-16", + "total_cases": 11252.0, + "new_cases": 461.0, + "new_cases_smoothed": 389.143, + "total_deaths": 209.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 209.257, + "new_cases_per_million": 8.573, + "new_cases_smoothed_per_million": 7.237, + "total_deaths_per_million": 3.887, + "new_deaths_per_million": 0.13, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 3895.0, + "total_tests": 229390.0, + "total_tests_per_thousand": 4.266, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 4154.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 10.675, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-17", + "total_cases": 11673.0, + "new_cases": 421.0, + "new_cases_smoothed": 385.429, + "total_deaths": 213.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 217.086, + "new_cases_per_million": 7.829, + "new_cases_smoothed_per_million": 7.168, + "total_deaths_per_million": 3.961, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 3545.0, + "total_tests": 232935.0, + "total_tests_per_thousand": 4.332, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 3764.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 9.766, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-18", + "total_cases": 12062.0, + "new_cases": 389.0, + "new_cases_smoothed": 373.429, + "total_deaths": 222.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 224.32, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 6.945, + "total_deaths_per_million": 4.129, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 5228.0, + "total_tests": 238163.0, + "total_tests_per_thousand": 4.429, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 4311.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 11.544, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-19", + "total_cases": 12750.0, + "new_cases": 688.0, + "new_cases_smoothed": 432.0, + "total_deaths": 225.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 237.115, + "new_cases_per_million": 12.795, + "new_cases_smoothed_per_million": 8.034, + "total_deaths_per_million": 4.184, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 5724.0, + "total_tests": 243887.0, + "total_tests_per_thousand": 4.536, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 4121.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 9.539, + "positive_rate": 0.105, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-20", + "total_cases": 13353.0, + "new_cases": 603.0, + "new_cases_smoothed": 464.0, + "total_deaths": 234.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 248.329, + "new_cases_per_million": 11.214, + "new_cases_smoothed_per_million": 8.629, + "total_deaths_per_million": 4.352, + "new_deaths_per_million": 0.167, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 2474.0, + "total_tests": 246361.0, + "total_tests_per_thousand": 4.582, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 4303.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 9.274, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-21", + "total_cases": 13771.0, + "new_cases": 418.0, + "new_cases_smoothed": 496.714, + "total_deaths": 238.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 256.103, + "new_cases_per_million": 7.774, + "new_cases_smoothed_per_million": 9.238, + "total_deaths_per_million": 4.426, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 3637.0, + "total_tests": 249998.0, + "total_tests_per_thousand": 4.649, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 4109.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 8.272, + "positive_rate": 0.121, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-22", + "total_cases": 14168.0, + "new_cases": 397.0, + "new_cases_smoothed": 482.429, + "total_deaths": 250.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 263.486, + "new_cases_per_million": 7.383, + "new_cases_smoothed_per_million": 8.972, + "total_deaths_per_million": 4.649, + "new_deaths_per_million": 0.223, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 4275.0, + "total_tests": 254273.0, + "total_tests_per_thousand": 4.729, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 4111.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 8.521, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-23", + "total_cases": 14805.0, + "new_cases": 637.0, + "new_cases_smoothed": 507.571, + "total_deaths": 260.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 275.333, + "new_cases_per_million": 11.846, + "new_cases_smoothed_per_million": 9.439, + "total_deaths_per_million": 4.835, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 6754.0, + "total_tests": 261027.0, + "total_tests_per_thousand": 4.854, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 4520.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 8.905, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-24", + "total_cases": 15601.0, + "new_cases": 796.0, + "new_cases_smoothed": 561.143, + "total_deaths": 263.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 290.136, + "new_cases_per_million": 14.803, + "new_cases_smoothed_per_million": 10.436, + "total_deaths_per_million": 4.891, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 5075.0, + "total_tests": 266102.0, + "total_tests_per_thousand": 4.949, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 4738.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 8.443, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-25", + "total_cases": 16268.0, + "new_cases": 667.0, + "new_cases_smoothed": 600.857, + "total_deaths": 274.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 302.541, + "new_cases_per_million": 12.404, + "new_cases_smoothed_per_million": 11.174, + "total_deaths_per_million": 5.096, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.138, + "new_tests_smoothed": 4635.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 7.7139999999999995, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-26", + "total_cases": 16643.0, + "new_cases": 375.0, + "new_cases_smoothed": 556.143, + "total_deaths": 278.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 309.515, + "new_cases_per_million": 6.974, + "new_cases_smoothed_per_million": 10.343, + "total_deaths_per_million": 5.17, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.141, + "new_tests_smoothed": 4460.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 8.02, + "positive_rate": 0.125, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-27", + "total_cases": 17603.0, + "new_cases": 960.0, + "new_cases_smoothed": 607.143, + "total_deaths": 280.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 327.368, + "new_cases_per_million": 17.853, + "new_cases_smoothed_per_million": 11.291, + "total_deaths_per_million": 5.207, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.122, + "total_tests": 279612.0, + "total_tests_per_thousand": 5.2, + "new_tests_smoothed": 4750.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 7.824, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-28", + "total_cases": 17975.0, + "new_cases": 372.0, + "new_cases_smoothed": 600.571, + "total_deaths": 285.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 334.286, + "new_cases_per_million": 6.918, + "new_cases_smoothed_per_million": 11.169, + "total_deaths_per_million": 5.3, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.125, + "new_tests": 4888.0, + "total_tests": 284500.0, + "total_tests_per_thousand": 5.291, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 4929.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 8.207, + "positive_rate": 0.122, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-29", + "total_cases": 18581.0, + "new_cases": 606.0, + "new_cases_smoothed": 630.429, + "total_deaths": 299.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 345.556, + "new_cases_per_million": 11.27, + "new_cases_smoothed_per_million": 11.724, + "total_deaths_per_million": 5.561, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 5259.0, + "total_tests": 289759.0, + "total_tests_per_thousand": 5.389, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 5069.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 8.041, + "positive_rate": 0.124, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-30", + "total_cases": 19125.0, + "new_cases": 544.0, + "new_cases_smoothed": 617.143, + "total_deaths": 311.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 355.673, + "new_cases_per_million": 10.117, + "new_cases_smoothed_per_million": 11.477, + "total_deaths_per_million": 5.784, + "new_deaths_per_million": 0.223, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 5521.0, + "total_tests": 295280.0, + "total_tests_per_thousand": 5.491, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 4893.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 7.928, + "positive_rate": 0.126, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-31", + "total_cases": 19913.0, + "new_cases": 788.0, + "new_cases_smoothed": 616.0, + "total_deaths": 325.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 370.328, + "new_cases_per_million": 14.655, + "new_cases_smoothed_per_million": 11.456, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 8679.0, + "total_tests": 303959.0, + "total_tests_per_thousand": 5.653, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 5408.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 8.779, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 78.7 + }, + { + "date": "2020-08-01", + "total_cases": 20636.0, + "new_cases": 723.0, + "new_cases_smoothed": 624.0, + "total_deaths": 341.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 383.773, + "new_cases_per_million": 13.446, + "new_cases_smoothed_per_million": 11.605, + "total_deaths_per_million": 6.342, + "new_deaths_per_million": 0.298, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 6371.0, + "total_tests": 310330.0, + "total_tests_per_thousand": 5.771, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 5675.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 9.095, + "positive_rate": 0.11, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-02", + "total_cases": 21363.0, + "new_cases": 727.0, + "new_cases_smoothed": 674.286, + "total_deaths": 364.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 397.294, + "new_cases_per_million": 13.52, + "new_cases_smoothed_per_million": 12.54, + "total_deaths_per_million": 6.769, + "new_deaths_per_million": 0.428, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 5393.0, + "total_tests": 315723.0, + "total_tests_per_thousand": 5.872, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 5802.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 8.605, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-03", + "total_cases": 22053.0, + "new_cases": 690.0, + "new_cases_smoothed": 635.714, + "total_deaths": 369.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 410.126, + "new_cases_per_million": 12.832, + "new_cases_smoothed_per_million": 11.823, + "total_deaths_per_million": 6.862, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.236, + "new_tests": 2653.0, + "total_tests": 318376.0, + "total_tests_per_thousand": 5.921, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 5538.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 8.711, + "positive_rate": 0.115, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-04", + "total_cases": 22597.0, + "new_cases": 544.0, + "new_cases_smoothed": 660.286, + "total_deaths": 382.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 420.243, + "new_cases_per_million": 10.117, + "new_cases_smoothed_per_million": 12.28, + "total_deaths_per_million": 7.104, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 4547.0, + "total_tests": 322923.0, + "total_tests_per_thousand": 6.005, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 5489.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 8.312999999999999, + "positive_rate": 0.12, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-05", + "total_cases": 23202.0, + "new_cases": 605.0, + "new_cases_smoothed": 660.143, + "total_deaths": 388.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 431.494, + "new_cases_per_million": 11.251, + "new_cases_smoothed_per_million": 12.277, + "total_deaths_per_million": 7.216, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.236, + "new_tests": 6200.0, + "total_tests": 329123.0, + "total_tests_per_thousand": 6.121, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 5623.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 8.517999999999999, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-06", + "total_cases": 23873.0, + "new_cases": 671.0, + "new_cases_smoothed": 678.286, + "total_deaths": 391.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 443.973, + "new_cases_per_million": 12.479, + "new_cases_smoothed_per_million": 12.614, + "total_deaths_per_million": 7.272, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 6195.0, + "total_tests": 335318.0, + "total_tests_per_thousand": 6.236, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 5720.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 8.433, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-07", + "total_cases": 24411.0, + "new_cases": 538.0, + "new_cases_smoothed": 642.571, + "total_deaths": 399.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 453.978, + "new_cases_per_million": 10.005, + "new_cases_smoothed_per_million": 11.95, + "total_deaths_per_million": 7.42, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 6814.0, + "total_tests": 342132.0, + "total_tests_per_thousand": 6.363, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 5453.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 8.486, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-08", + "total_cases": 25138.0, + "new_cases": 727.0, + "new_cases_smoothed": 643.143, + "total_deaths": 413.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 467.498, + "new_cases_per_million": 13.52, + "new_cases_smoothed_per_million": 11.961, + "total_deaths_per_million": 7.681, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.191, + "new_tests": 7175.0, + "total_tests": 349307.0, + "total_tests_per_thousand": 6.496, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 5568.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 8.657, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-09", + "total_cases": 25837.0, + "new_cases": 699.0, + "new_cases_smoothed": 639.143, + "total_deaths": 418.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 480.498, + "new_cases_per_million": 12.999, + "new_cases_smoothed_per_million": 11.886, + "total_deaths_per_million": 7.774, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 4420.0, + "total_tests": 353727.0, + "total_tests_per_thousand": 6.578, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 5429.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 8.494, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-10", + "total_cases": 26436.0, + "new_cases": 599.0, + "new_cases_smoothed": 626.143, + "total_deaths": 420.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 491.638, + "new_cases_per_million": 11.14, + "new_cases_smoothed_per_million": 11.645, + "total_deaths_per_million": 7.811, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 4603.0, + "total_tests": 358330.0, + "total_tests_per_thousand": 6.664, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 5708.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 9.116, + "positive_rate": 0.11, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-11", + "total_cases": 26928.0, + "new_cases": 492.0, + "new_cases_smoothed": 618.714, + "total_deaths": 423.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 500.788, + "new_cases_per_million": 9.15, + "new_cases_smoothed_per_million": 11.506, + "total_deaths_per_million": 7.867, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 4171.0, + "total_tests": 362501.0, + "total_tests_per_thousand": 6.742, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 5654.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 9.138, + "positive_rate": 0.109, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-12", + "total_cases": 27425.0, + "new_cases": 497.0, + "new_cases_smoothed": 603.286, + "total_deaths": 438.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 510.03, + "new_cases_per_million": 9.243, + "new_cases_smoothed_per_million": 11.219, + "total_deaths_per_million": 8.146, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 6590.0, + "total_tests": 369091.0, + "total_tests_per_thousand": 6.864, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 5710.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 9.465, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 73.15 + }, + { + "date": "2020-08-13", + "total_cases": 28104.0, + "new_cases": 679.0, + "new_cases_smoothed": 604.429, + "total_deaths": 456.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 522.658, + "new_cases_per_million": 12.628, + "new_cases_smoothed_per_million": 11.241, + "total_deaths_per_million": 8.48, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 6768.0, + "total_tests": 375859.0, + "total_tests_per_thousand": 6.99, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 5792.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 9.583, + "positive_rate": 0.10400000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-14", + "total_cases": 28754.0, + "new_cases": 650.0, + "new_cases_smoothed": 620.429, + "total_deaths": 460.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 534.746, + "new_cases_per_million": 12.088, + "new_cases_smoothed_per_million": 11.538, + "total_deaths_per_million": 8.555, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 5458.0, + "total_tests": 381317.0, + "total_tests_per_thousand": 7.091, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 5598.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 9.023, + "positive_rate": 0.111, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-15", + "total_cases": 29334.0, + "new_cases": 580.0, + "new_cases_smoothed": 599.429, + "total_deaths": 465.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 545.533, + "new_cases_per_million": 10.786, + "new_cases_smoothed_per_million": 11.148, + "total_deaths_per_million": 8.648, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.138, + "new_tests_smoothed": 5294.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 8.832, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-16", + "total_cases": 29849.0, + "new_cases": 515.0, + "new_cases_smoothed": 573.143, + "total_deaths": 472.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 555.11, + "new_cases_per_million": 9.578, + "new_cases_smoothed_per_million": 10.659, + "total_deaths_per_million": 8.778, + "new_deaths_per_million": 0.13, + "new_deaths_smoothed_per_million": 0.143, + "total_tests": 391416.0, + "total_tests_per_thousand": 7.279, + "new_tests_smoothed": 5384.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 9.394, + "positive_rate": 0.106, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-17", + "total_cases": 30120.0, + "new_cases": 271.0, + "new_cases_smoothed": 526.286, + "total_deaths": 474.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 560.15, + "new_cases_per_million": 5.04, + "new_cases_smoothed_per_million": 9.787, + "total_deaths_per_million": 8.815, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 3150.0, + "total_tests": 394566.0, + "total_tests_per_thousand": 7.338, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 5177.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 9.837, + "positive_rate": 0.102, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-18", + "total_cases": 30365.0, + "new_cases": 245.0, + "new_cases_smoothed": 491.0, + "total_deaths": 482.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 564.706, + "new_cases_per_million": 4.556, + "new_cases_smoothed_per_million": 9.131, + "total_deaths_per_million": 8.964, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 4019.0, + "total_tests": 398585.0, + "total_tests_per_thousand": 7.413, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 5155.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 10.499, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-19", + "total_cases": 30636.0, + "new_cases": 271.0, + "new_cases_smoothed": 458.714, + "total_deaths": 487.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 569.746, + "new_cases_per_million": 5.04, + "new_cases_smoothed_per_million": 8.531, + "total_deaths_per_million": 9.057, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.13, + "new_tests_smoothed": 4856.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 10.585999999999999, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-20", + "total_cases": 31015.0, + "new_cases": 379.0, + "new_cases_smoothed": 415.857, + "total_deaths": 506.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 576.795, + "new_cases_per_million": 7.048, + "new_cases_smoothed_per_million": 7.734, + "total_deaths_per_million": 9.41, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.133, + "new_tests_smoothed": 4532.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 10.898, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-21", + "total_cases": 31441.0, + "new_cases": 426.0, + "new_cases_smoothed": 383.857, + "total_deaths": 516.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 584.717, + "new_cases_per_million": 7.922, + "new_cases_smoothed_per_million": 7.139, + "total_deaths_per_million": 9.596, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.149, + "total_tests": 412080.0, + "total_tests_per_thousand": 7.664, + "new_tests_smoothed": 4395.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 11.45, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 31763.0, + "new_cases": 322.0, + "new_cases_smoothed": 347.0, + "total_deaths": 532.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 590.705, + "new_cases_per_million": 5.988, + "new_cases_smoothed_per_million": 6.453, + "total_deaths_per_million": 9.894, + "new_deaths_per_million": 0.298, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 5724.0, + "total_tests": 417804.0, + "total_tests_per_thousand": 7.77, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 4491.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 12.942, + "positive_rate": 0.077, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 32118.0, + "new_cases": 355.0, + "new_cases_smoothed": 324.143, + "total_deaths": 542.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 597.307, + "new_cases_per_million": 6.602, + "new_cases_smoothed_per_million": 6.028, + "total_deaths_per_million": 10.08, + "new_deaths_per_million": 0.186, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 4179.0, + "total_tests": 421983.0, + "total_tests_per_thousand": 7.848, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 4367.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 13.472000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-24", + "total_cases": 32364.0, + "new_cases": 246.0, + "new_cases_smoothed": 320.571, + "total_deaths": 548.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 601.882, + "new_cases_per_million": 4.575, + "new_cases_smoothed_per_million": 5.962, + "total_deaths_per_million": 10.191, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.197, + "new_tests": 3381.0, + "total_tests": 425364.0, + "total_tests_per_thousand": 7.911, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 4400.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 13.725, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 32557.0, + "new_cases": 193.0, + "new_cases_smoothed": 313.143, + "total_deaths": 554.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 605.472, + "new_cases_per_million": 3.589, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 10.303, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.191, + "new_tests": 4149.0, + "total_tests": 429513.0, + "total_tests_per_thousand": 7.988, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 4418.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 14.109000000000002, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-26", + "total_cases": 32803.0, + "new_cases": 246.0, + "new_cases_smoothed": 309.571, + "total_deaths": 559.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 610.047, + "new_cases_per_million": 4.575, + "new_cases_smoothed_per_million": 5.757, + "total_deaths_per_million": 10.396, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.191, + "new_tests_smoothed": 4396.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 14.2, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-27", + "total_cases": 33016.0, + "new_cases": 213.0, + "new_cases_smoothed": 285.857, + "total_deaths": 564.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 614.008, + "new_cases_per_million": 3.961, + "new_cases_smoothed_per_million": 5.316, + "total_deaths_per_million": 10.489, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.154, + "total_tests": 438193.0, + "total_tests_per_thousand": 8.149, + "new_tests_smoothed": 4373.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 15.298, + "positive_rate": 0.065, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-28", + "total_cases": 33389.0, + "new_cases": 373.0, + "new_cases_smoothed": 278.286, + "total_deaths": 567.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 620.945, + "new_cases_per_million": 6.937, + "new_cases_smoothed_per_million": 5.175, + "total_deaths_per_million": 10.545, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 4520.0, + "total_tests": 442713.0, + "total_tests_per_thousand": 8.233, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 4376.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 15.725, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-29", + "total_cases": 33630.0, + "new_cases": 241.0, + "new_cases_smoothed": 266.714, + "total_deaths": 567.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 625.427, + "new_cases_per_million": 4.482, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 10.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 3009.0, + "total_tests": 445722.0, + "total_tests_per_thousand": 8.289, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 3988.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 14.952, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-30", + "total_cases": 33794.0, + "new_cases": 164.0, + "new_cases_smoothed": 239.429, + "total_deaths": 572.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 628.477, + "new_cases_per_million": 3.05, + "new_cases_smoothed_per_million": 4.453, + "total_deaths_per_million": 10.638, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 4424.0, + "total_tests": 450146.0, + "total_tests_per_thousand": 8.371, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 4023.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 16.803, + "positive_rate": 0.06, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-31", + "total_cases": 34057.0, + "new_cases": 263.0, + "new_cases_smoothed": 241.857, + "total_deaths": 574.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 633.368, + "new_cases_per_million": 4.891, + "new_cases_smoothed_per_million": 4.498, + "total_deaths_per_million": 10.675, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 4260.0, + "total_tests": 454406.0, + "total_tests_per_thousand": 8.451, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 4149.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 17.155, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-09-01", + "total_cases": 34201.0, + "new_cases": 144.0, + "new_cases_smoothed": 234.857, + "total_deaths": 577.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 636.046, + "new_cases_per_million": 2.678, + "new_cases_smoothed_per_million": 4.368, + "total_deaths_per_million": 10.731, + "new_deaths_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 1682.0, + "total_tests": 456088.0, + "total_tests_per_thousand": 8.482, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 3796.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 16.163, + "positive_rate": 0.062, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 34315.0, + "new_cases": 114.0, + "new_cases_smoothed": 216.0, + "total_deaths": 577.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 638.166, + "new_cases_per_million": 2.12, + "new_cases_smoothed_per_million": 4.017, + "total_deaths_per_million": 10.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 3474.0, + "total_tests": 459562.0, + "total_tests_per_thousand": 8.547, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 3673.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 17.005, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 34493.0, + "new_cases": 178.0, + "new_cases_smoothed": 211.0, + "total_deaths": 577.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 641.476, + "new_cases_per_million": 3.31, + "new_cases_smoothed_per_million": 3.924, + "total_deaths_per_million": 10.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035 + }, + { + "date": "2020-09-04", + "total_cases": 34705.0, + "new_cases": 212.0, + "new_cases_smoothed": 188.0, + "total_deaths": 585.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 645.419, + "new_cases_per_million": 3.943, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 10.879, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.048 + }, + { + "date": "2020-09-05", + "total_cases": 34884.0, + "new_cases": 179.0, + "new_cases_smoothed": 179.143, + "total_deaths": 589.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 648.748, + "new_cases_per_million": 3.329, + "new_cases_smoothed_per_million": 3.332, + "total_deaths_per_million": 10.954, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.058 + } + ] + }, + "OWID_KOS": { + "continent": "Europe", + "location": "Kosovo", + "population": 1932774.0, + "population_density": 168.155, + "gdp_per_capita": 9795.834, + "extreme_poverty": 0.6, + "data": [ + { + "date": "2020-03-14", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.035, + "new_cases_per_million": 1.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-15", + "total_cases": 5.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.587, + "new_cases_per_million": 1.552, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-16", + "total_cases": 13.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.726, + "new_cases_per_million": 4.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-17", + "total_cases": 16.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.278, + "new_cases_per_million": 1.552, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-18", + "total_cases": 19.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 9.83, + "new_cases_per_million": 1.552, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-19", + "total_cases": 20.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.348, + "new_cases_per_million": 0.517, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-20", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.865, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 1.552, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-21", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.417, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 1.626, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-22", + "total_cases": 31.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.039, + "new_cases_per_million": 3.622, + "new_cases_smoothed_per_million": 1.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-23", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.074, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 1.478, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.96 + }, + { + "date": "2020-03-24", + "total_cases": 61.0, + "new_cases": 28.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.561, + "new_cases_per_million": 14.487, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-25", + "total_cases": 63.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 32.596, + "new_cases_per_million": 1.035, + "new_cases_smoothed_per_million": 3.252, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-26", + "total_cases": 71.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 36.735, + "new_cases_per_million": 4.139, + "new_cases_smoothed_per_million": 3.77, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-27", + "total_cases": 86.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.496, + "new_cases_per_million": 7.761, + "new_cases_smoothed_per_million": 4.804, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-28", + "total_cases": 92.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 47.6, + "new_cases_per_million": 3.104, + "new_cases_smoothed_per_million": 5.026, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-29", + "total_cases": 95.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.152, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 4.73, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-03-30", + "total_cases": 98.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.704, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 4.804, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-03-31", + "total_cases": 110.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.913, + "new_cases_per_million": 6.209, + "new_cases_smoothed_per_million": 3.622, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-01", + "total_cases": 117.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.535, + "new_cases_per_million": 3.622, + "new_cases_smoothed_per_million": 3.991, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-02", + "total_cases": 130.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.261, + "new_cases_per_million": 6.726, + "new_cases_smoothed_per_million": 4.361, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-03", + "total_cases": 138.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.4, + "new_cases_per_million": 4.139, + "new_cases_smoothed_per_million": 3.843, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-04", + "total_cases": 147.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.056, + "new_cases_per_million": 4.657, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-05", + "total_cases": 155.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.196, + "new_cases_per_million": 4.139, + "new_cases_smoothed_per_million": 4.435, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-06", + "total_cases": 165.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 85.37, + "new_cases_per_million": 5.174, + "new_cases_smoothed_per_million": 4.952, + "total_deaths_per_million": 0.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.59 + }, + { + "date": "2020-04-07", + "total_cases": 191.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 98.822, + "new_cases_per_million": 13.452, + "new_cases_smoothed_per_million": 5.987, + "total_deaths_per_million": 1.552, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 92.59 + }, + { + "date": "2020-04-08", + "total_cases": 210.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 108.652, + "new_cases_per_million": 9.83, + "new_cases_smoothed_per_million": 6.874, + "total_deaths_per_million": 2.587, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 92.59 + }, + { + "date": "2020-04-09", + "total_cases": 224.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 115.896, + "new_cases_per_million": 7.243, + "new_cases_smoothed_per_million": 6.948, + "total_deaths_per_million": 3.104, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-04-10", + "total_cases": 227.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 117.448, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 6.578, + "total_deaths_per_million": 3.622, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-11", + "total_cases": 250.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 129.348, + "new_cases_per_million": 11.9, + "new_cases_smoothed_per_million": 7.613, + "total_deaths_per_million": 3.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-12", + "total_cases": 283.0, + "new_cases": 33.0, + "new_cases_smoothed": 18.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 146.422, + "new_cases_per_million": 17.074, + "new_cases_smoothed_per_million": 9.461, + "total_deaths_per_million": 3.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-13", + "total_cases": 362.0, + "new_cases": 79.0, + "new_cases_smoothed": 28.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 187.296, + "new_cases_per_million": 40.874, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 3.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-14", + "total_cases": 380.0, + "new_cases": 18.0, + "new_cases_smoothed": 27.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 196.609, + "new_cases_per_million": 9.313, + "new_cases_smoothed_per_million": 13.97, + "total_deaths_per_million": 4.139, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-04-15", + "total_cases": 395.0, + "new_cases": 15.0, + "new_cases_smoothed": 26.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 204.369, + "new_cases_per_million": 7.761, + "new_cases_smoothed_per_million": 13.674, + "total_deaths_per_million": 4.139, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-04-16", + "total_cases": 436.0, + "new_cases": 41.0, + "new_cases_smoothed": 30.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 225.583, + "new_cases_per_million": 21.213, + "new_cases_smoothed_per_million": 15.67, + "total_deaths_per_million": 4.657, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-04-17", + "total_cases": 466.0, + "new_cases": 30.0, + "new_cases_smoothed": 34.143, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 241.104, + "new_cases_per_million": 15.522, + "new_cases_smoothed_per_million": 17.665, + "total_deaths_per_million": 5.691, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 92.59 + }, + { + "date": "2020-04-18", + "total_cases": 502.0, + "new_cases": 36.0, + "new_cases_smoothed": 36.0, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 259.73, + "new_cases_per_million": 18.626, + "new_cases_smoothed_per_million": 18.626, + "total_deaths_per_million": 6.209, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-04-19", + "total_cases": 533.0, + "new_cases": 31.0, + "new_cases_smoothed": 35.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 275.769, + "new_cases_per_million": 16.039, + "new_cases_smoothed_per_million": 18.478, + "total_deaths_per_million": 6.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-04-20", + "total_cases": 561.0, + "new_cases": 28.0, + "new_cases_smoothed": 28.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 290.256, + "new_cases_per_million": 14.487, + "new_cases_smoothed_per_million": 14.709, + "total_deaths_per_million": 7.243, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.517, + "stringency_index": 92.59 + }, + { + "date": "2020-04-21", + "total_cases": 598.0, + "new_cases": 37.0, + "new_cases_smoothed": 31.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 309.4, + "new_cases_per_million": 19.143, + "new_cases_smoothed_per_million": 16.113, + "total_deaths_per_million": 7.243, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-22", + "total_cases": 604.0, + "new_cases": 6.0, + "new_cases_smoothed": 29.857, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 312.504, + "new_cases_per_million": 3.104, + "new_cases_smoothed_per_million": 15.448, + "total_deaths_per_million": 8.796, + "new_deaths_per_million": 1.552, + "new_deaths_smoothed_per_million": 0.665, + "stringency_index": 92.59 + }, + { + "date": "2020-04-23", + "total_cases": 630.0, + "new_cases": 26.0, + "new_cases_smoothed": 27.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 325.956, + "new_cases_per_million": 13.452, + "new_cases_smoothed_per_million": 14.339, + "total_deaths_per_million": 8.796, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 92.59 + }, + { + "date": "2020-04-24", + "total_cases": 669.0, + "new_cases": 39.0, + "new_cases_smoothed": 29.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 346.135, + "new_cases_per_million": 20.178, + "new_cases_smoothed_per_million": 15.004, + "total_deaths_per_million": 9.313, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.517, + "stringency_index": 92.59 + }, + { + "date": "2020-04-25", + "total_cases": 703.0, + "new_cases": 34.0, + "new_cases_smoothed": 28.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 363.726, + "new_cases_per_million": 17.591, + "new_cases_smoothed_per_million": 14.857, + "total_deaths_per_million": 9.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-26", + "total_cases": 731.0, + "new_cases": 28.0, + "new_cases_smoothed": 28.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 378.213, + "new_cases_per_million": 14.487, + "new_cases_smoothed_per_million": 14.635, + "total_deaths_per_million": 9.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-27", + "total_cases": 764.0, + "new_cases": 33.0, + "new_cases_smoothed": 29.0, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 395.287, + "new_cases_per_million": 17.074, + "new_cases_smoothed_per_million": 15.004, + "total_deaths_per_million": 10.348, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-04-28", + "total_cases": 786.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.857, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 406.669, + "new_cases_per_million": 11.383, + "new_cases_smoothed_per_million": 13.896, + "total_deaths_per_million": 10.865, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.517, + "stringency_index": 92.59 + }, + { + "date": "2020-04-29", + "total_cases": 798.0, + "new_cases": 12.0, + "new_cases_smoothed": 27.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 412.878, + "new_cases_per_million": 6.209, + "new_cases_smoothed_per_million": 14.339, + "total_deaths_per_million": 10.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 92.59 + }, + { + "date": "2020-04-30", + "total_cases": 808.0, + "new_cases": 10.0, + "new_cases_smoothed": 25.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 418.052, + "new_cases_per_million": 5.174, + "new_cases_smoothed_per_million": 13.157, + "total_deaths_per_million": 10.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 92.59 + }, + { + "date": "2020-05-01", + "total_cases": 820.0, + "new_cases": 12.0, + "new_cases_smoothed": 21.571, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 424.261, + "new_cases_per_million": 6.209, + "new_cases_smoothed_per_million": 11.161, + "total_deaths_per_million": 12.417, + "new_deaths_per_million": 1.552, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-05-02", + "total_cases": 829.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 428.917, + "new_cases_per_million": 4.657, + "new_cases_smoothed_per_million": 9.313, + "total_deaths_per_million": 12.417, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 92.59 + }, + { + "date": "2020-05-03", + "total_cases": 840.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.571, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 434.608, + "new_cases_per_million": 5.691, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 12.935, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.517, + "stringency_index": 92.59 + }, + { + "date": "2020-05-04", + "total_cases": 851.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 440.3, + "new_cases_per_million": 5.691, + "new_cases_smoothed_per_million": 6.43, + "total_deaths_per_million": 12.935, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-05-05", + "total_cases": 855.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 442.369, + "new_cases_per_million": 2.07, + "new_cases_smoothed_per_million": 5.1, + "total_deaths_per_million": 13.452, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-05-06", + "total_cases": 856.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 442.887, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 4.287, + "total_deaths_per_million": 13.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-05-07", + "total_cases": 860.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 444.956, + "new_cases_per_million": 2.07, + "new_cases_smoothed_per_million": 3.843, + "total_deaths_per_million": 13.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.37, + "stringency_index": 92.59 + }, + { + "date": "2020-05-08", + "total_cases": 861.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 445.474, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 13.97, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-05-09", + "total_cases": 862.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 445.991, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 2.439, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 92.59 + }, + { + "date": "2020-05-10", + "total_cases": 870.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 450.13, + "new_cases_per_million": 4.139, + "new_cases_smoothed_per_million": 2.217, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-05-11", + "total_cases": 884.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 457.374, + "new_cases_per_million": 7.243, + "new_cases_smoothed_per_million": 2.439, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-05-12", + "total_cases": 895.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 463.065, + "new_cases_per_million": 5.691, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 14.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 92.59 + }, + { + "date": "2020-05-13", + "total_cases": 919.0, + "new_cases": 24.0, + "new_cases_smoothed": 9.0, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 475.482, + "new_cases_per_million": 12.417, + "new_cases_smoothed_per_million": 4.657, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-05-14", + "total_cases": 927.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 479.622, + "new_cases_per_million": 4.139, + "new_cases_smoothed_per_million": 4.952, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 92.59 + }, + { + "date": "2020-05-15", + "total_cases": 945.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 488.935, + "new_cases_per_million": 9.313, + "new_cases_smoothed_per_million": 6.209, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 92.59 + }, + { + "date": "2020-05-16", + "total_cases": 955.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 494.108, + "new_cases_per_million": 5.174, + "new_cases_smoothed_per_million": 6.874, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-05-17", + "total_cases": 978.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 506.008, + "new_cases_per_million": 11.9, + "new_cases_smoothed_per_million": 7.983, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 92.59 + }, + { + "date": "2020-05-18", + "total_cases": 985.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 509.63, + "new_cases_per_million": 3.622, + "new_cases_smoothed_per_million": 7.465, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-19", + "total_cases": 988.0, + "new_cases": 3.0, + "new_cases_smoothed": 13.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 511.182, + "new_cases_per_million": 1.552, + "new_cases_smoothed_per_million": 6.874, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-20", + "total_cases": 989.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 511.7, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 5.174, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-21", + "total_cases": 1003.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 518.943, + "new_cases_per_million": 7.243, + "new_cases_smoothed_per_million": 5.617, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 1004.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 519.461, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 4.361, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 1025.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 530.326, + "new_cases_per_million": 10.865, + "new_cases_smoothed_per_million": 5.174, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 1032.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 533.948, + "new_cases_per_million": 3.622, + "new_cases_smoothed_per_million": 3.991, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 533.948, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.474, + "total_deaths_per_million": 15.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 1038.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 537.052, + "new_cases_per_million": 3.104, + "new_cases_smoothed_per_million": 3.696, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 1047.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 541.708, + "new_cases_per_million": 4.657, + "new_cases_smoothed_per_million": 4.287, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 1048.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 542.226, + "new_cases_per_million": 0.517, + "new_cases_smoothed_per_million": 3.326, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 1052.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 544.295, + "new_cases_per_million": 2.07, + "new_cases_smoothed_per_million": 3.548, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-30", + "total_cases": 1064.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 550.504, + "new_cases_per_million": 6.209, + "new_cases_smoothed_per_million": 2.883, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-05-31", + "total_cases": 1070.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 553.608, + "new_cases_per_million": 3.104, + "new_cases_smoothed_per_million": 2.809, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 87.04 + }, + { + "date": "2020-06-01", + "total_cases": 1083.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 560.335, + "new_cases_per_million": 6.726, + "new_cases_smoothed_per_million": 3.77, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 73.15 + }, + { + "date": "2020-06-02", + "total_cases": 1110.0, + "new_cases": 27.0, + "new_cases_smoothed": 10.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 574.304, + "new_cases_per_million": 13.97, + "new_cases_smoothed_per_million": 5.322, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-03", + "total_cases": 1123.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 581.03, + "new_cases_per_million": 6.726, + "new_cases_smoothed_per_million": 5.617, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-04", + "total_cases": 1142.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 590.861, + "new_cases_per_million": 9.83, + "new_cases_smoothed_per_million": 6.948, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-05", + "total_cases": 1147.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 593.448, + "new_cases_per_million": 2.587, + "new_cases_smoothed_per_million": 7.022, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 1158.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 599.139, + "new_cases_per_million": 5.691, + "new_cases_smoothed_per_million": 6.948, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 1194.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 617.765, + "new_cases_per_million": 18.626, + "new_cases_smoothed_per_million": 9.165, + "total_deaths_per_million": 15.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 1234.0, + "new_cases": 40.0, + "new_cases_smoothed": 21.571, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 638.461, + "new_cases_per_million": 20.696, + "new_cases_smoothed_per_million": 11.161, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-09", + "total_cases": 1263.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 653.465, + "new_cases_per_million": 15.004, + "new_cases_smoothed_per_million": 11.309, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-10", + "total_cases": 1269.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 656.569, + "new_cases_per_million": 3.104, + "new_cases_smoothed_per_million": 10.791, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-11", + "total_cases": 1298.0, + "new_cases": 29.0, + "new_cases_smoothed": 22.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 671.574, + "new_cases_per_million": 15.004, + "new_cases_smoothed_per_million": 11.53, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-12", + "total_cases": 1326.0, + "new_cases": 28.0, + "new_cases_smoothed": 25.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 686.061, + "new_cases_per_million": 14.487, + "new_cases_smoothed_per_million": 13.23, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-13", + "total_cases": 1384.0, + "new_cases": 58.0, + "new_cases_smoothed": 32.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 716.069, + "new_cases_per_million": 30.009, + "new_cases_smoothed_per_million": 16.704, + "total_deaths_per_million": 16.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 59.26 + }, + { + "date": "2020-06-14", + "total_cases": 1437.0, + "new_cases": 53.0, + "new_cases_smoothed": 34.714, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 743.491, + "new_cases_per_million": 27.422, + "new_cases_smoothed_per_million": 17.961, + "total_deaths_per_million": 16.557, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 59.26 + }, + { + "date": "2020-06-15", + "total_cases": 1486.0, + "new_cases": 49.0, + "new_cases_smoothed": 36.0, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 768.843, + "new_cases_per_million": 25.352, + "new_cases_smoothed_per_million": 18.626, + "total_deaths_per_million": 17.074, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 59.26 + }, + { + "date": "2020-06-16", + "total_cases": 1615.0, + "new_cases": 129.0, + "new_cases_smoothed": 50.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 835.587, + "new_cases_per_million": 66.743, + "new_cases_smoothed_per_million": 26.017, + "total_deaths_per_million": 17.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 59.26 + }, + { + "date": "2020-06-17", + "total_cases": 1756.0, + "new_cases": 141.0, + "new_cases_smoothed": 69.571, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 908.539, + "new_cases_per_million": 72.952, + "new_cases_smoothed_per_million": 35.996, + "total_deaths_per_million": 17.591, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-18", + "total_cases": 1833.0, + "new_cases": 77.0, + "new_cases_smoothed": 76.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 948.378, + "new_cases_per_million": 39.839, + "new_cases_smoothed_per_million": 39.543, + "total_deaths_per_million": 17.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-19", + "total_cases": 1916.0, + "new_cases": 83.0, + "new_cases_smoothed": 84.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 991.321, + "new_cases_per_million": 42.943, + "new_cases_smoothed_per_million": 43.609, + "total_deaths_per_million": 17.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-20", + "total_cases": 1998.0, + "new_cases": 82.0, + "new_cases_smoothed": 87.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1033.747, + "new_cases_per_million": 42.426, + "new_cases_smoothed_per_million": 45.383, + "total_deaths_per_million": 17.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-21", + "total_cases": 2073.0, + "new_cases": 75.0, + "new_cases_smoothed": 90.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1072.552, + "new_cases_per_million": 38.804, + "new_cases_smoothed_per_million": 47.009, + "total_deaths_per_million": 18.109, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-22", + "total_cases": 2169.0, + "new_cases": 96.0, + "new_cases_smoothed": 97.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1122.221, + "new_cases_per_million": 49.67, + "new_cases_smoothed_per_million": 50.483, + "total_deaths_per_million": 18.626, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.222, + "stringency_index": 59.26 + }, + { + "date": "2020-06-23", + "total_cases": 2216.0, + "new_cases": 47.0, + "new_cases_smoothed": 85.857, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1146.539, + "new_cases_per_million": 24.317, + "new_cases_smoothed_per_million": 44.422, + "total_deaths_per_million": 19.143, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 59.26 + }, + { + "date": "2020-06-24", + "total_cases": 2268.0, + "new_cases": 52.0, + "new_cases_smoothed": 73.143, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1173.443, + "new_cases_per_million": 26.904, + "new_cases_smoothed_per_million": 37.843, + "total_deaths_per_million": 19.661, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 59.26 + }, + { + "date": "2020-06-25", + "total_cases": 2363.0, + "new_cases": 95.0, + "new_cases_smoothed": 75.714, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1222.595, + "new_cases_per_million": 49.152, + "new_cases_smoothed_per_million": 39.174, + "total_deaths_per_million": 20.696, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 59.26 + }, + { + "date": "2020-06-26", + "total_cases": 2432.0, + "new_cases": 69.0, + "new_cases_smoothed": 73.714, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1258.295, + "new_cases_per_million": 35.7, + "new_cases_smoothed_per_million": 38.139, + "total_deaths_per_million": 21.73, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 59.26 + }, + { + "date": "2020-06-27", + "total_cases": 2494.0, + "new_cases": 62.0, + "new_cases_smoothed": 70.857, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1290.373, + "new_cases_per_million": 32.078, + "new_cases_smoothed_per_million": 36.661, + "total_deaths_per_million": 22.765, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.739, + "stringency_index": 59.26 + }, + { + "date": "2020-06-28", + "total_cases": 2590.0, + "new_cases": 96.0, + "new_cases_smoothed": 73.857, + "total_deaths": 48.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1340.043, + "new_cases_per_million": 49.67, + "new_cases_smoothed_per_million": 38.213, + "total_deaths_per_million": 24.835, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 0.961, + "stringency_index": 59.26 + }, + { + "date": "2020-06-29", + "total_cases": 2677.0, + "new_cases": 87.0, + "new_cases_smoothed": 72.571, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1385.056, + "new_cases_per_million": 45.013, + "new_cases_smoothed_per_million": 37.548, + "total_deaths_per_million": 25.352, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.961, + "stringency_index": 59.26 + }, + { + "date": "2020-06-30", + "total_cases": 2799.0, + "new_cases": 122.0, + "new_cases_smoothed": 83.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1448.178, + "new_cases_per_million": 63.122, + "new_cases_smoothed_per_million": 43.091, + "total_deaths_per_million": 25.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.887, + "stringency_index": 59.26 + }, + { + "date": "2020-07-01", + "total_cases": 2878.0, + "new_cases": 79.0, + "new_cases_smoothed": 87.143, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1489.051, + "new_cases_per_million": 40.874, + "new_cases_smoothed_per_million": 45.087, + "total_deaths_per_million": 26.387, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 0.961, + "stringency_index": 59.26 + }, + { + "date": "2020-07-02", + "total_cases": 2991.0, + "new_cases": 113.0, + "new_cases_smoothed": 89.714, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1547.517, + "new_cases_per_million": 58.465, + "new_cases_smoothed_per_million": 46.417, + "total_deaths_per_million": 27.939, + "new_deaths_per_million": 1.552, + "new_deaths_smoothed_per_million": 1.035, + "stringency_index": 59.26 + }, + { + "date": "2020-07-03", + "total_cases": 3064.0, + "new_cases": 73.0, + "new_cases_smoothed": 90.286, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1585.286, + "new_cases_per_million": 37.77, + "new_cases_smoothed_per_million": 46.713, + "total_deaths_per_million": 28.457, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 0.961, + "stringency_index": 59.26 + }, + { + "date": "2020-07-04", + "total_cases": 3064.0, + "new_cases": 0.0, + "new_cases_smoothed": 81.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1585.286, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 42.13, + "total_deaths_per_million": 28.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.813, + "stringency_index": 59.26 + }, + { + "date": "2020-07-05", + "total_cases": 3064.0, + "new_cases": 0.0, + "new_cases_smoothed": 67.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1585.286, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.035, + "total_deaths_per_million": 28.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.517, + "stringency_index": 59.26 + }, + { + "date": "2020-07-06", + "total_cases": 3356.0, + "new_cases": 292.0, + "new_cases_smoothed": 97.0, + "total_deaths": 66.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1736.364, + "new_cases_per_million": 151.078, + "new_cases_smoothed_per_million": 50.187, + "total_deaths_per_million": 34.148, + "new_deaths_per_million": 5.691, + "new_deaths_smoothed_per_million": 1.257, + "stringency_index": 54.63 + }, + { + "date": "2020-07-07", + "total_cases": 3508.0, + "new_cases": 152.0, + "new_cases_smoothed": 101.286, + "total_deaths": 75.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1815.008, + "new_cases_per_million": 78.643, + "new_cases_smoothed_per_million": 52.404, + "total_deaths_per_million": 38.804, + "new_deaths_per_million": 4.657, + "new_deaths_smoothed_per_million": 1.922, + "stringency_index": 54.63 + }, + { + "date": "2020-07-08", + "total_cases": 3703.0, + "new_cases": 195.0, + "new_cases_smoothed": 117.857, + "total_deaths": 79.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1915.899, + "new_cases_per_million": 100.891, + "new_cases_smoothed_per_million": 60.978, + "total_deaths_per_million": 40.874, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 2.07, + "stringency_index": 54.63 + }, + { + "date": "2020-07-09", + "total_cases": 3886.0, + "new_cases": 183.0, + "new_cases_smoothed": 127.857, + "total_deaths": 82.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2010.582, + "new_cases_per_million": 94.683, + "new_cases_smoothed_per_million": 66.152, + "total_deaths_per_million": 42.426, + "new_deaths_per_million": 1.552, + "new_deaths_smoothed_per_million": 2.07, + "stringency_index": 54.63 + }, + { + "date": "2020-07-10", + "total_cases": 4100.0, + "new_cases": 214.0, + "new_cases_smoothed": 148.0, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2121.303, + "new_cases_per_million": 110.722, + "new_cases_smoothed_per_million": 76.574, + "total_deaths_per_million": 44.496, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 2.291, + "stringency_index": 54.63 + }, + { + "date": "2020-07-11", + "total_cases": 4307.0, + "new_cases": 207.0, + "new_cases_smoothed": 177.571, + "total_deaths": 94.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2228.403, + "new_cases_per_million": 107.1, + "new_cases_smoothed_per_million": 91.874, + "total_deaths_per_million": 48.635, + "new_deaths_per_million": 4.139, + "new_deaths_smoothed_per_million": 2.883, + "stringency_index": 54.63 + }, + { + "date": "2020-07-12", + "total_cases": 4715.0, + "new_cases": 408.0, + "new_cases_smoothed": 235.857, + "total_deaths": 101.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2439.499, + "new_cases_per_million": 211.096, + "new_cases_smoothed_per_million": 122.03, + "total_deaths_per_million": 52.256, + "new_deaths_per_million": 3.622, + "new_deaths_smoothed_per_million": 3.4, + "stringency_index": 54.63 + }, + { + "date": "2020-07-13", + "total_cases": 4931.0, + "new_cases": 216.0, + "new_cases_smoothed": 225.0, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2551.255, + "new_cases_per_million": 111.756, + "new_cases_smoothed_per_million": 116.413, + "total_deaths_per_million": 52.774, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 2.661, + "stringency_index": 54.63 + }, + { + "date": "2020-07-14", + "total_cases": 5118.0, + "new_cases": 187.0, + "new_cases_smoothed": 230.0, + "total_deaths": 108.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2648.007, + "new_cases_per_million": 96.752, + "new_cases_smoothed_per_million": 119.0, + "total_deaths_per_million": 55.878, + "new_deaths_per_million": 3.104, + "new_deaths_smoothed_per_million": 2.439, + "stringency_index": 54.63 + }, + { + "date": "2020-07-15", + "total_cases": 5118.0, + "new_cases": 0.0, + "new_cases_smoothed": 202.143, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2648.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 104.587, + "total_deaths_per_million": 55.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.143, + "stringency_index": 54.63 + }, + { + "date": "2020-07-16", + "total_cases": 5237.0, + "new_cases": 119.0, + "new_cases_smoothed": 193.0, + "total_deaths": 112.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2709.577, + "new_cases_per_million": 61.57, + "new_cases_smoothed_per_million": 99.856, + "total_deaths_per_million": 57.948, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 2.217, + "stringency_index": 54.63 + }, + { + "date": "2020-07-17", + "total_cases": 5237.0, + "new_cases": 0.0, + "new_cases_smoothed": 162.429, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 2709.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.039, + "total_deaths_per_million": 57.948, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.922, + "stringency_index": 54.63 + }, + { + "date": "2020-07-18", + "total_cases": 5472.0, + "new_cases": 235.0, + "new_cases_smoothed": 166.429, + "total_deaths": 124.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2831.164, + "new_cases_per_million": 121.587, + "new_cases_smoothed_per_million": 86.109, + "total_deaths_per_million": 64.156, + "new_deaths_per_million": 6.209, + "new_deaths_smoothed_per_million": 2.217, + "stringency_index": 54.63 + }, + { + "date": "2020-07-19", + "total_cases": 5617.0, + "new_cases": 145.0, + "new_cases_smoothed": 128.857, + "total_deaths": 130.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2906.186, + "new_cases_per_million": 75.022, + "new_cases_smoothed_per_million": 66.67, + "total_deaths_per_million": 67.261, + "new_deaths_per_million": 3.104, + "new_deaths_smoothed_per_million": 2.143, + "stringency_index": 54.63 + }, + { + "date": "2020-07-20", + "total_cases": 5735.0, + "new_cases": 118.0, + "new_cases_smoothed": 114.857, + "total_deaths": 135.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2967.238, + "new_cases_per_million": 61.052, + "new_cases_smoothed_per_million": 59.426, + "total_deaths_per_million": 69.848, + "new_deaths_per_million": 2.587, + "new_deaths_smoothed_per_million": 2.439, + "stringency_index": 54.63 + }, + { + "date": "2020-07-21", + "total_cases": 5877.0, + "new_cases": 142.0, + "new_cases_smoothed": 108.429, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3040.707, + "new_cases_per_million": 73.47, + "new_cases_smoothed_per_million": 56.1, + "total_deaths_per_million": 71.917, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 2.291, + "stringency_index": 54.63 + }, + { + "date": "2020-07-22", + "total_cases": 5877.0, + "new_cases": 0.0, + "new_cases_smoothed": 108.429, + "total_deaths": 139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3040.707, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.1, + "total_deaths_per_million": 71.917, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.291, + "stringency_index": 54.63 + }, + { + "date": "2020-07-23", + "total_cases": 6286.0, + "new_cases": 409.0, + "new_cases_smoothed": 149.857, + "total_deaths": 150.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3252.32, + "new_cases_per_million": 211.613, + "new_cases_smoothed_per_million": 77.535, + "total_deaths_per_million": 77.609, + "new_deaths_per_million": 5.691, + "new_deaths_smoothed_per_million": 2.809, + "stringency_index": 54.63 + }, + { + "date": "2020-07-24", + "total_cases": 6467.0, + "new_cases": 181.0, + "new_cases_smoothed": 175.714, + "total_deaths": 158.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3345.968, + "new_cases_per_million": 93.648, + "new_cases_smoothed_per_million": 90.913, + "total_deaths_per_million": 81.748, + "new_deaths_per_million": 4.139, + "new_deaths_smoothed_per_million": 3.4, + "stringency_index": 54.63 + }, + { + "date": "2020-07-25", + "total_cases": 6680.0, + "new_cases": 213.0, + "new_cases_smoothed": 172.571, + "total_deaths": 164.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 3456.172, + "new_cases_per_million": 110.204, + "new_cases_smoothed_per_million": 89.287, + "total_deaths_per_million": 84.852, + "new_deaths_per_million": 3.104, + "new_deaths_smoothed_per_million": 2.957, + "stringency_index": 54.63 + }, + { + "date": "2020-07-26", + "total_cases": 6917.0, + "new_cases": 237.0, + "new_cases_smoothed": 185.714, + "total_deaths": 169.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3578.794, + "new_cases_per_million": 122.622, + "new_cases_smoothed_per_million": 96.087, + "total_deaths_per_million": 87.439, + "new_deaths_per_million": 2.587, + "new_deaths_smoothed_per_million": 2.883, + "stringency_index": 54.63 + }, + { + "date": "2020-07-27", + "total_cases": 6917.0, + "new_cases": 0.0, + "new_cases_smoothed": 168.857, + "total_deaths": 169.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3578.794, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 87.365, + "total_deaths_per_million": 87.439, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.513, + "stringency_index": 54.63 + }, + { + "date": "2020-07-28", + "total_cases": 7413.0, + "new_cases": 496.0, + "new_cases_smoothed": 219.429, + "total_deaths": 185.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3835.42, + "new_cases_per_million": 256.626, + "new_cases_smoothed_per_million": 113.53, + "total_deaths_per_million": 95.717, + "new_deaths_per_million": 8.278, + "new_deaths_smoothed_per_million": 3.4, + "stringency_index": 64.81 + }, + { + "date": "2020-07-29", + "total_cases": 7652.0, + "new_cases": 239.0, + "new_cases_smoothed": 253.571, + "total_deaths": 192.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3959.076, + "new_cases_per_million": 123.656, + "new_cases_smoothed_per_million": 131.196, + "total_deaths_per_million": 99.339, + "new_deaths_per_million": 3.622, + "new_deaths_smoothed_per_million": 3.917, + "stringency_index": 59.26 + }, + { + "date": "2020-07-30", + "total_cases": 7846.0, + "new_cases": 194.0, + "new_cases_smoothed": 222.857, + "total_deaths": 196.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4059.45, + "new_cases_per_million": 100.374, + "new_cases_smoothed_per_million": 115.304, + "total_deaths_per_million": 101.409, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 3.4, + "stringency_index": 62.04 + }, + { + "date": "2020-07-31", + "total_cases": 8104.0, + "new_cases": 258.0, + "new_cases_smoothed": 233.857, + "total_deaths": 212.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 4192.937, + "new_cases_per_million": 133.487, + "new_cases_smoothed_per_million": 120.996, + "total_deaths_per_million": 109.687, + "new_deaths_per_million": 8.278, + "new_deaths_smoothed_per_million": 3.991, + "stringency_index": 69.44 + }, + { + "date": "2020-08-01", + "total_cases": 8104.0, + "new_cases": 0.0, + "new_cases_smoothed": 203.429, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 4192.937, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.252, + "total_deaths_per_million": 109.687, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.548, + "stringency_index": 69.44 + }, + { + "date": "2020-08-02", + "total_cases": 8104.0, + "new_cases": 0.0, + "new_cases_smoothed": 169.571, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4192.937, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 87.735, + "total_deaths_per_million": 109.687, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.178, + "stringency_index": 69.44 + }, + { + "date": "2020-08-03", + "total_cases": 8799.0, + "new_cases": 695.0, + "new_cases_smoothed": 268.857, + "total_deaths": 249.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 4552.524, + "new_cases_per_million": 359.587, + "new_cases_smoothed_per_million": 139.104, + "total_deaths_per_million": 128.83, + "new_deaths_per_million": 19.143, + "new_deaths_smoothed_per_million": 5.913, + "stringency_index": 69.44 + }, + { + "date": "2020-08-04", + "total_cases": 9049.0, + "new_cases": 250.0, + "new_cases_smoothed": 233.714, + "total_deaths": 256.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 4681.872, + "new_cases_per_million": 129.348, + "new_cases_smoothed_per_million": 120.922, + "total_deaths_per_million": 132.452, + "new_deaths_per_million": 3.622, + "new_deaths_smoothed_per_million": 5.248, + "stringency_index": 69.44 + }, + { + "date": "2020-08-05", + "total_cases": 9274.0, + "new_cases": 225.0, + "new_cases_smoothed": 231.714, + "total_deaths": 296.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 4798.285, + "new_cases_per_million": 116.413, + "new_cases_smoothed_per_million": 119.887, + "total_deaths_per_million": 153.148, + "new_deaths_per_million": 20.696, + "new_deaths_smoothed_per_million": 7.687, + "stringency_index": 69.44 + }, + { + "date": "2020-08-06", + "total_cases": 9274.0, + "new_cases": 0.0, + "new_cases_smoothed": 204.0, + "total_deaths": 296.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 4798.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.548, + "total_deaths_per_million": 153.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.391, + "stringency_index": 69.44 + }, + { + "date": "2020-08-07", + "total_cases": 9688.0, + "new_cases": 414.0, + "new_cases_smoothed": 226.286, + "total_deaths": 300.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 5012.485, + "new_cases_per_million": 214.2, + "new_cases_smoothed_per_million": 117.078, + "total_deaths_per_million": 155.217, + "new_deaths_per_million": 2.07, + "new_deaths_smoothed_per_million": 6.504, + "stringency_index": 69.44 + }, + { + "date": "2020-08-08", + "total_cases": 9869.0, + "new_cases": 181.0, + "new_cases_smoothed": 252.143, + "total_deaths": 303.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 5106.132, + "new_cases_per_million": 93.648, + "new_cases_smoothed_per_million": 130.456, + "total_deaths_per_million": 156.769, + "new_deaths_per_million": 1.552, + "new_deaths_smoothed_per_million": 6.726, + "stringency_index": 69.44 + }, + { + "date": "2020-08-09", + "total_cases": 9869.0, + "new_cases": 0.0, + "new_cases_smoothed": 252.143, + "total_deaths": 303.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 5106.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 130.456, + "total_deaths_per_million": 156.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.726, + "stringency_index": 69.44 + }, + { + "date": "2020-08-10", + "total_cases": 10016.0, + "new_cases": 147.0, + "new_cases_smoothed": 173.857, + "total_deaths": 305.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 5182.189, + "new_cases_per_million": 76.056, + "new_cases_smoothed_per_million": 89.952, + "total_deaths_per_million": 157.804, + "new_deaths_per_million": 1.035, + "new_deaths_smoothed_per_million": 4.139, + "stringency_index": 69.44 + }, + { + "date": "2020-08-11", + "total_cases": 10419.0, + "new_cases": 403.0, + "new_cases_smoothed": 195.714, + "total_deaths": 341.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 5390.698, + "new_cases_per_million": 208.509, + "new_cases_smoothed_per_million": 101.261, + "total_deaths_per_million": 176.43, + "new_deaths_per_million": 18.626, + "new_deaths_smoothed_per_million": 6.283, + "stringency_index": 69.44 + }, + { + "date": "2020-08-12", + "total_cases": 10419.0, + "new_cases": 0.0, + "new_cases_smoothed": 163.571, + "total_deaths": 341.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 5390.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.63, + "total_deaths_per_million": 176.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.326, + "stringency_index": 69.44 + }, + { + "date": "2020-08-13", + "total_cases": 10419.0, + "new_cases": 0.0, + "new_cases_smoothed": 163.571, + "total_deaths": 341.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 5390.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.63, + "total_deaths_per_million": 176.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.326, + "stringency_index": 69.44 + }, + { + "date": "2020-08-14", + "total_cases": 10795.0, + "new_cases": 376.0, + "new_cases_smoothed": 158.143, + "total_deaths": 365.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 5585.237, + "new_cases_per_million": 194.539, + "new_cases_smoothed_per_million": 81.822, + "total_deaths_per_million": 188.848, + "new_deaths_per_million": 12.417, + "new_deaths_smoothed_per_million": 4.804, + "stringency_index": 69.44 + }, + { + "date": "2020-08-15", + "total_cases": 11130.0, + "new_cases": 335.0, + "new_cases_smoothed": 180.143, + "total_deaths": 381.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 5758.563, + "new_cases_per_million": 173.326, + "new_cases_smoothed_per_million": 93.204, + "total_deaths_per_million": 197.126, + "new_deaths_per_million": 8.278, + "new_deaths_smoothed_per_million": 5.765, + "stringency_index": 69.44 + }, + { + "date": "2020-08-16", + "total_cases": 11275.0, + "new_cases": 145.0, + "new_cases_smoothed": 200.857, + "total_deaths": 390.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 5833.584, + "new_cases_per_million": 75.022, + "new_cases_smoothed_per_million": 103.922, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 4.657, + "new_deaths_smoothed_per_million": 6.43, + "stringency_index": 69.44 + }, + { + "date": "2020-08-17", + "total_cases": 11275.0, + "new_cases": 0.0, + "new_cases_smoothed": 179.857, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 5833.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 93.056, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.283, + "stringency_index": 69.44 + }, + { + "date": "2020-08-18", + "total_cases": 11373.0, + "new_cases": 98.0, + "new_cases_smoothed": 136.286, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 5884.289, + "new_cases_per_million": 50.704, + "new_cases_smoothed_per_million": 70.513, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.622, + "stringency_index": 69.44 + }, + { + "date": "2020-08-19", + "total_cases": 11545.0, + "new_cases": 172.0, + "new_cases_smoothed": 160.857, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 5973.28, + "new_cases_per_million": 88.991, + "new_cases_smoothed_per_million": 83.226, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.622, + "stringency_index": 69.44 + }, + { + "date": "2020-08-20", + "total_cases": 11545.0, + "new_cases": 0.0, + "new_cases_smoothed": 160.857, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 5973.28, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 83.226, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.622, + "stringency_index": 69.44 + }, + { + "date": "2020-08-21", + "total_cases": 11545.0, + "new_cases": 0.0, + "new_cases_smoothed": 107.143, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5973.28, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 55.435, + "total_deaths_per_million": 201.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.848, + "stringency_index": 69.44 + }, + { + "date": "2020-08-22", + "total_cases": 12168.0, + "new_cases": 623.0, + "new_cases_smoothed": 148.286, + "total_deaths": 448.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 6295.614, + "new_cases_per_million": 322.335, + "new_cases_smoothed_per_million": 76.722, + "total_deaths_per_million": 231.791, + "new_deaths_per_million": 30.009, + "new_deaths_smoothed_per_million": 4.952, + "stringency_index": 69.44 + }, + { + "date": "2020-08-23", + "total_cases": 12168.0, + "new_cases": 0.0, + "new_cases_smoothed": 127.571, + "total_deaths": 448.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6295.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.004, + "total_deaths_per_million": 231.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.287, + "stringency_index": 69.44 + }, + { + "date": "2020-08-24", + "total_cases": 12448.0, + "new_cases": 280.0, + "new_cases_smoothed": 167.571, + "total_deaths": 467.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 6440.484, + "new_cases_per_million": 144.869, + "new_cases_smoothed_per_million": 86.7, + "total_deaths_per_million": 241.622, + "new_deaths_per_million": 9.83, + "new_deaths_smoothed_per_million": 5.691, + "stringency_index": 69.44 + }, + { + "date": "2020-08-25", + "total_cases": 12448.0, + "new_cases": 0.0, + "new_cases_smoothed": 153.571, + "total_deaths": 467.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 6440.484, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 79.456, + "total_deaths_per_million": 241.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.691, + "stringency_index": 69.44 + }, + { + "date": "2020-08-26", + "total_cases": 12683.0, + "new_cases": 235.0, + "new_cases_smoothed": 162.571, + "total_deaths": 488.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 6562.071, + "new_cases_per_million": 121.587, + "new_cases_smoothed_per_million": 84.113, + "total_deaths_per_million": 252.487, + "new_deaths_per_million": 10.865, + "new_deaths_smoothed_per_million": 7.243, + "stringency_index": 69.44 + }, + { + "date": "2020-08-27", + "total_cases": 12683.0, + "new_cases": 0.0, + "new_cases_smoothed": 162.571, + "total_deaths": 488.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 6562.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.113, + "total_deaths_per_million": 252.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.243, + "stringency_index": 69.44 + }, + { + "date": "2020-08-28", + "total_cases": 12683.0, + "new_cases": 0.0, + "new_cases_smoothed": 162.571, + "total_deaths": 488.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 6562.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.113, + "total_deaths_per_million": 252.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.243 + }, + { + "date": "2020-08-29", + "total_cases": 12938.0, + "new_cases": 255.0, + "new_cases_smoothed": 110.0, + "total_deaths": 488.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 6694.006, + "new_cases_per_million": 131.935, + "new_cases_smoothed_per_million": 56.913, + "total_deaths_per_million": 252.487, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-08-30", + "total_cases": 13057.0, + "new_cases": 119.0, + "new_cases_smoothed": 127.0, + "total_deaths": 489.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 6755.575, + "new_cases_per_million": 61.57, + "new_cases_smoothed_per_million": 65.709, + "total_deaths_per_million": 253.004, + "new_deaths_per_million": 0.517, + "new_deaths_smoothed_per_million": 3.03 + }, + { + "date": "2020-08-31", + "total_cases": 13172.0, + "new_cases": 115.0, + "new_cases_smoothed": 103.429, + "total_deaths": 498.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 6815.075, + "new_cases_per_million": 59.5, + "new_cases_smoothed_per_million": 53.513, + "total_deaths_per_million": 257.661, + "new_deaths_per_million": 4.657, + "new_deaths_smoothed_per_million": 2.291 + }, + { + "date": "2020-09-01", + "total_cases": 13291.0, + "new_cases": 119.0, + "new_cases_smoothed": 120.429, + "total_deaths": 506.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 6876.645, + "new_cases_per_million": 61.57, + "new_cases_smoothed_per_million": 62.309, + "total_deaths_per_million": 261.8, + "new_deaths_per_million": 4.139, + "new_deaths_smoothed_per_million": 2.883 + }, + { + "date": "2020-09-02", + "total_cases": 13411.0, + "new_cases": 120.0, + "new_cases_smoothed": 104.0, + "total_deaths": 515.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 6938.732, + "new_cases_per_million": 62.087, + "new_cases_smoothed_per_million": 53.809, + "total_deaths_per_million": 266.456, + "new_deaths_per_million": 4.657, + "new_deaths_smoothed_per_million": 1.996 + }, + { + "date": "2020-09-03", + "total_cases": 13558.0, + "new_cases": 147.0, + "new_cases_smoothed": 125.0, + "total_deaths": 523.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 7014.788, + "new_cases_per_million": 76.056, + "new_cases_smoothed_per_million": 64.674, + "total_deaths_per_million": 270.596, + "new_deaths_per_million": 4.139, + "new_deaths_smoothed_per_million": 2.587 + }, + { + "date": "2020-09-04", + "total_cases": 13670.0, + "new_cases": 112.0, + "new_cases_smoothed": 141.0, + "total_deaths": 529.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 7072.736, + "new_cases_per_million": 57.948, + "new_cases_smoothed_per_million": 72.952, + "total_deaths_per_million": 273.7, + "new_deaths_per_million": 3.104, + "new_deaths_smoothed_per_million": 3.03 + }, + { + "date": "2020-09-05", + "total_cases": 13748.0, + "new_cases": 78.0, + "new_cases_smoothed": 115.714, + "total_deaths": 538.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 7113.092, + "new_cases_per_million": 40.357, + "new_cases_smoothed_per_million": 59.87, + "total_deaths_per_million": 278.356, + "new_deaths_per_million": 4.657, + "new_deaths_smoothed_per_million": 3.696 + } + ] + }, + "KWT": { + "continent": "Asia", + "location": "Kuwait", + "population": 4270563.0, + "population_density": 232.128, + "median_age": 33.7, + "aged_65_older": 2.345, + "aged_70_older": 1.114, + "gdp_per_capita": 65530.537, + "cardiovasc_death_rate": 132.235, + "diabetes_prevalence": 15.84, + "female_smokers": 2.7, + "male_smokers": 37.0, + "hospital_beds_per_thousand": 2.0, + "life_expectancy": 75.49, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-24", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.702, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-25", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.171, + "new_cases_per_million": 0.468, + "new_cases_smoothed_per_million": 0.167, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-26", + "total_cases": 11.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.576, + "new_cases_per_million": 1.405, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-27", + "total_cases": 26.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.088, + "new_cases_per_million": 3.512, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "total_cases": 43.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.069, + "new_cases_per_million": 3.981, + "new_cases_smoothed_per_million": 1.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "total_cases": 45.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.537, + "new_cases_per_million": 0.468, + "new_cases_smoothed_per_million": 1.505, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-01", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.537, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.505, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-02", + "total_cases": 46.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.771, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 1.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-03", + "total_cases": 56.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.113, + "new_cases_per_million": 2.342, + "new_cases_smoothed_per_million": 1.706, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 6.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.505, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 4.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.004, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-06", + "total_cases": 58.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.581, + "new_cases_per_million": 0.468, + "new_cases_smoothed_per_million": 0.502, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 1.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.435, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-08", + "total_cases": 61.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.284, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-09", + "total_cases": 64.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.986, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-10", + "total_cases": 65.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.22, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-11", + "total_cases": 69.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.157, + "new_cases_per_million": 0.937, + "new_cases_smoothed_per_million": 0.435, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-12", + "total_cases": 72.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.86, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-13", + "total_cases": 80.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.733, + "new_cases_per_million": 1.873, + "new_cases_smoothed_per_million": 0.736, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-14", + "total_cases": 100.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.416, + "new_cases_per_million": 4.683, + "new_cases_smoothed_per_million": 1.405, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-15", + "total_cases": 104.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.353, + "new_cases_per_million": 0.937, + "new_cases_smoothed_per_million": 1.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-16", + "total_cases": 112.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.226, + "new_cases_per_million": 1.873, + "new_cases_smoothed_per_million": 1.606, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-17", + "total_cases": 123.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.802, + "new_cases_per_million": 2.576, + "new_cases_smoothed_per_million": 1.94, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-18", + "total_cases": 130.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.441, + "new_cases_per_million": 1.639, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-19", + "total_cases": 142.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.251, + "new_cases_per_million": 2.81, + "new_cases_smoothed_per_million": 2.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-20", + "total_cases": 148.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.656, + "new_cases_per_million": 1.405, + "new_cases_smoothed_per_million": 2.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-21", + "total_cases": 159.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.232, + "new_cases_per_million": 2.576, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-22", + "total_cases": 176.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.212, + "new_cases_per_million": 3.981, + "new_cases_smoothed_per_million": 2.409, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 188.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.022, + "new_cases_per_million": 2.81, + "new_cases_smoothed_per_million": 2.542, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 189.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.256, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 191.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.725, + "new_cases_per_million": 0.468, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 195.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.661, + "new_cases_per_million": 0.937, + "new_cases_smoothed_per_million": 1.773, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 208.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.706, + "new_cases_per_million": 3.044, + "new_cases_smoothed_per_million": 2.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 225.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.686, + "new_cases_per_million": 3.981, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 235.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.028, + "new_cases_per_million": 2.342, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-30", + "total_cases": 255.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.711, + "new_cases_per_million": 4.683, + "new_cases_smoothed_per_million": 2.241, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 266.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.287, + "new_cases_per_million": 2.576, + "new_cases_smoothed_per_million": 2.576, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-01", + "total_cases": 289.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.673, + "new_cases_per_million": 5.386, + "new_cases_smoothed_per_million": 3.278, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-02", + "total_cases": 317.0, + "new_cases": 28.0, + "new_cases_smoothed": 17.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.229, + "new_cases_per_million": 6.557, + "new_cases_smoothed_per_million": 4.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-03", + "total_cases": 342.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.083, + "new_cases_per_million": 5.854, + "new_cases_smoothed_per_million": 4.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-04", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.914, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-05", + "total_cases": 479.0, + "new_cases": 137.0, + "new_cases_smoothed": 34.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.163, + "new_cases_per_million": 32.08, + "new_cases_smoothed_per_million": 8.162, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 81.48 + }, + { + "date": "2020-04-06", + "total_cases": 556.0, + "new_cases": 77.0, + "new_cases_smoothed": 43.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 130.194, + "new_cases_per_million": 18.03, + "new_cases_smoothed_per_million": 10.069, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 665.0, + "new_cases": 109.0, + "new_cases_smoothed": 57.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 155.717, + "new_cases_per_million": 25.524, + "new_cases_smoothed_per_million": 13.347, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 743.0, + "new_cases": 78.0, + "new_cases_smoothed": 64.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 173.982, + "new_cases_per_million": 18.265, + "new_cases_smoothed_per_million": 15.187, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 855.0, + "new_cases": 112.0, + "new_cases_smoothed": 76.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 200.208, + "new_cases_per_million": 26.226, + "new_cases_smoothed_per_million": 17.997, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 910.0, + "new_cases": 55.0, + "new_cases_smoothed": 81.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 213.087, + "new_cases_per_million": 12.879, + "new_cases_smoothed_per_million": 19.001, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 993.0, + "new_cases": 83.0, + "new_cases_smoothed": 93.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.522, + "new_cases_per_million": 19.435, + "new_cases_smoothed_per_million": 21.777, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 1154.0, + "new_cases": 161.0, + "new_cases_smoothed": 96.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.222, + "new_cases_per_million": 37.7, + "new_cases_smoothed_per_million": 22.58, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 1234.0, + "new_cases": 80.0, + "new_cases_smoothed": 96.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.955, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 22.68, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 1300.0, + "new_cases": 66.0, + "new_cases_smoothed": 90.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 304.41, + "new_cases_per_million": 15.455, + "new_cases_smoothed_per_million": 21.242, + "total_deaths_per_million": 0.468, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 1355.0, + "new_cases": 55.0, + "new_cases_smoothed": 87.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 317.288, + "new_cases_per_million": 12.879, + "new_cases_smoothed_per_million": 20.472, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 1405.0, + "new_cases": 50.0, + "new_cases_smoothed": 78.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 328.996, + "new_cases_per_million": 11.708, + "new_cases_smoothed_per_million": 18.398, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 1524.0, + "new_cases": 119.0, + "new_cases_smoothed": 87.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 356.862, + "new_cases_per_million": 27.865, + "new_cases_smoothed_per_million": 20.539, + "total_deaths_per_million": 0.702, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 1658.0, + "new_cases": 134.0, + "new_cases_smoothed": 95.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 388.239, + "new_cases_per_million": 31.378, + "new_cases_smoothed_per_million": 22.245, + "total_deaths_per_million": 1.171, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 1752.0, + "new_cases": 94.0, + "new_cases_smoothed": 85.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 410.25, + "new_cases_per_million": 22.011, + "new_cases_smoothed_per_million": 20.004, + "total_deaths_per_million": 1.405, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 1915.0, + "new_cases": 163.0, + "new_cases_smoothed": 97.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 448.419, + "new_cases_per_million": 38.168, + "new_cases_smoothed_per_million": 22.781, + "total_deaths_per_million": 1.639, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 1995.0, + "new_cases": 80.0, + "new_cases_smoothed": 99.286, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 467.152, + "new_cases_per_million": 18.733, + "new_cases_smoothed_per_million": 23.249, + "total_deaths_per_million": 2.107, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.234, + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 2080.0, + "new_cases": 85.0, + "new_cases_smoothed": 103.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 487.055, + "new_cases_per_million": 19.904, + "new_cases_smoothed_per_million": 24.252, + "total_deaths_per_million": 2.576, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.268, + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 2248.0, + "new_cases": 168.0, + "new_cases_smoothed": 120.429, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 526.394, + "new_cases_per_million": 39.339, + "new_cases_smoothed_per_million": 28.2, + "total_deaths_per_million": 3.044, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.335, + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 2399.0, + "new_cases": 151.0, + "new_cases_smoothed": 125.0, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 561.753, + "new_cases_per_million": 35.358, + "new_cases_smoothed_per_million": 29.27, + "total_deaths_per_million": 3.278, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.368, + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 2614.0, + "new_cases": 215.0, + "new_cases_smoothed": 136.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 612.097, + "new_cases_per_million": 50.345, + "new_cases_smoothed_per_million": 31.98, + "total_deaths_per_million": 3.512, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.335, + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 2892.0, + "new_cases": 278.0, + "new_cases_smoothed": 162.857, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 677.194, + "new_cases_per_million": 65.097, + "new_cases_smoothed_per_million": 38.135, + "total_deaths_per_million": 4.449, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 3075.0, + "new_cases": 183.0, + "new_cases_smoothed": 165.714, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 720.046, + "new_cases_per_million": 42.851, + "new_cases_smoothed_per_million": 38.804, + "total_deaths_per_million": 4.683, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 3288.0, + "new_cases": 213.0, + "new_cases_smoothed": 184.714, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 769.922, + "new_cases_per_million": 49.876, + "new_cases_smoothed_per_million": 43.253, + "total_deaths_per_million": 5.152, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 3440.0, + "new_cases": 152.0, + "new_cases_smoothed": 194.286, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 805.514, + "new_cases_per_million": 35.592, + "new_cases_smoothed_per_million": 45.494, + "total_deaths_per_million": 5.386, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.401, + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 3740.0, + "new_cases": 300.0, + "new_cases_smoothed": 213.143, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 875.763, + "new_cases_per_million": 70.248, + "new_cases_smoothed_per_million": 49.91, + "total_deaths_per_million": 5.62, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.368, + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 4024.0, + "new_cases": 284.0, + "new_cases_smoothed": 232.143, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 942.265, + "new_cases_per_million": 66.502, + "new_cases_smoothed_per_million": 54.359, + "total_deaths_per_million": 6.088, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.401, + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 4377.0, + "new_cases": 353.0, + "new_cases_smoothed": 251.857, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1024.923, + "new_cases_per_million": 82.659, + "new_cases_smoothed_per_million": 58.975, + "total_deaths_per_million": 7.025, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.502, + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 4619.0, + "new_cases": 242.0, + "new_cases_smoothed": 246.714, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1081.59, + "new_cases_per_million": 56.667, + "new_cases_smoothed_per_million": 57.771, + "total_deaths_per_million": 7.727, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.468, + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 4983.0, + "new_cases": 364.0, + "new_cases_smoothed": 272.571, + "total_deaths": 38.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1166.825, + "new_cases_per_million": 85.235, + "new_cases_smoothed_per_million": 63.826, + "total_deaths_per_million": 8.898, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 5278.0, + "new_cases": 295.0, + "new_cases_smoothed": 284.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1235.903, + "new_cases_per_million": 69.078, + "new_cases_smoothed_per_million": 66.569, + "total_deaths_per_million": 9.366, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 5804.0, + "new_cases": 526.0, + "new_cases_smoothed": 337.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1359.071, + "new_cases_per_million": 123.169, + "new_cases_smoothed_per_million": 79.08, + "total_deaths_per_million": 9.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.569, + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 6289.0, + "new_cases": 485.0, + "new_cases_smoothed": 364.143, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1472.64, + "new_cases_per_million": 113.568, + "new_cases_smoothed_per_million": 85.268, + "total_deaths_per_million": 9.835, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 6567.0, + "new_cases": 278.0, + "new_cases_smoothed": 363.286, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1537.736, + "new_cases_per_million": 65.097, + "new_cases_smoothed_per_million": 85.067, + "total_deaths_per_million": 10.303, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 7208.0, + "new_cases": 641.0, + "new_cases_smoothed": 404.429, + "total_deaths": 47.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1687.834, + "new_cases_per_million": 150.097, + "new_cases_smoothed_per_million": 94.701, + "total_deaths_per_million": 11.006, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.569, + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 7623.0, + "new_cases": 415.0, + "new_cases_smoothed": 429.143, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1785.011, + "new_cases_per_million": 97.177, + "new_cases_smoothed_per_million": 100.489, + "total_deaths_per_million": 11.474, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.535, + "stringency_index": 100.0 + }, + { + "date": "2020-05-11", + "total_cases": 8688.0, + "new_cases": 1065.0, + "new_cases_smoothed": 529.286, + "total_deaths": 58.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2034.392, + "new_cases_per_million": 249.382, + "new_cases_smoothed_per_million": 123.938, + "total_deaths_per_million": 13.581, + "new_deaths_per_million": 2.107, + "new_deaths_smoothed_per_million": 0.669, + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 9286.0, + "new_cases": 598.0, + "new_cases_smoothed": 572.571, + "total_deaths": 65.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2174.421, + "new_cases_per_million": 140.028, + "new_cases_smoothed_per_million": 134.074, + "total_deaths_per_million": 15.22, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 0.836, + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 10277.0, + "new_cases": 991.0, + "new_cases_smoothed": 639.0, + "total_deaths": 75.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2406.474, + "new_cases_per_million": 232.054, + "new_cases_smoothed_per_million": 149.629, + "total_deaths_per_million": 17.562, + "new_deaths_per_million": 2.342, + "new_deaths_smoothed_per_million": 1.171, + "total_tests": 227000.0, + "total_tests_per_thousand": 53.155, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 11028.0, + "new_cases": 751.0, + "new_cases_smoothed": 677.0, + "total_deaths": 82.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2582.329, + "new_cases_per_million": 175.855, + "new_cases_smoothed_per_million": 158.527, + "total_deaths_per_million": 19.201, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 1.338, + "new_tests": 4930.0, + "total_tests": 231930.0, + "total_tests_per_thousand": 54.309, + "new_tests_per_thousand": 1.154, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 11975.0, + "new_cases": 947.0, + "new_cases_smoothed": 772.571, + "total_deaths": 88.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2804.08, + "new_cases_per_million": 221.751, + "new_cases_smoothed_per_million": 180.906, + "total_deaths_per_million": 20.606, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.472, + "new_tests": 4074.0, + "total_tests": 236004.0, + "total_tests_per_thousand": 55.263, + "new_tests_per_thousand": 0.954, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 12860.0, + "new_cases": 885.0, + "new_cases_smoothed": 807.429, + "total_deaths": 96.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3011.313, + "new_cases_per_million": 207.233, + "new_cases_smoothed_per_million": 189.068, + "total_deaths_per_million": 22.479, + "new_deaths_per_million": 1.873, + "new_deaths_smoothed_per_million": 1.639, + "new_tests": 4712.0, + "total_tests": 240716.0, + "total_tests_per_thousand": 56.366, + "new_tests_per_thousand": 1.103, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 13802.0, + "new_cases": 942.0, + "new_cases_smoothed": 882.714, + "total_deaths": 107.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 3231.892, + "new_cases_per_million": 220.58, + "new_cases_smoothed_per_million": 206.697, + "total_deaths_per_million": 25.055, + "new_deaths_per_million": 2.576, + "new_deaths_smoothed_per_million": 1.94, + "new_tests": 3760.0, + "total_tests": 244476.0, + "total_tests_per_thousand": 57.247, + "new_tests_per_thousand": 0.88, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-18", + "total_cases": 14850.0, + "new_cases": 1048.0, + "new_cases_smoothed": 880.286, + "total_deaths": 112.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3477.293, + "new_cases_per_million": 245.401, + "new_cases_smoothed_per_million": 206.129, + "total_deaths_per_million": 26.226, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 1.806, + "new_tests": 3838.0, + "total_tests": 248314.0, + "total_tests_per_thousand": 58.145, + "new_tests_per_thousand": 0.899, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-19", + "total_cases": 15691.0, + "new_cases": 841.0, + "new_cases_smoothed": 915.0, + "total_deaths": 118.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3674.223, + "new_cases_per_million": 196.93, + "new_cases_smoothed_per_million": 214.257, + "total_deaths_per_million": 27.631, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.773, + "new_tests": 4382.0, + "total_tests": 252696.0, + "total_tests_per_thousand": 59.172, + "new_tests_per_thousand": 1.026, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-20", + "total_cases": 16764.0, + "new_cases": 1073.0, + "new_cases_smoothed": 926.714, + "total_deaths": 121.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3925.478, + "new_cases_per_million": 251.255, + "new_cases_smoothed_per_million": 217.0, + "total_deaths_per_million": 28.334, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 1.539, + "new_tests": 3618.0, + "total_tests": 256314.0, + "total_tests_per_thousand": 60.019, + "new_tests_per_thousand": 0.847, + "new_tests_smoothed": 4188.0, + "new_tests_smoothed_per_thousand": 0.981, + "tests_per_case": 4.519, + "positive_rate": 0.221, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-21", + "total_cases": 17568.0, + "new_cases": 804.0, + "new_cases_smoothed": 934.286, + "total_deaths": 124.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 4113.743, + "new_cases_per_million": 188.266, + "new_cases_smoothed_per_million": 218.773, + "total_deaths_per_million": 29.036, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 1.405, + "new_tests": 4757.0, + "total_tests": 261071.0, + "total_tests_per_thousand": 61.133, + "new_tests_per_thousand": 1.114, + "new_tests_smoothed": 4163.0, + "new_tests_smoothed_per_thousand": 0.975, + "tests_per_case": 4.456, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-22", + "total_cases": 18609.0, + "new_cases": 1041.0, + "new_cases_smoothed": 947.714, + "total_deaths": 129.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 4357.505, + "new_cases_per_million": 243.762, + "new_cases_smoothed_per_million": 221.918, + "total_deaths_per_million": 30.207, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 1.372, + "new_tests": 3888.0, + "total_tests": 264959.0, + "total_tests_per_thousand": 62.043, + "new_tests_per_thousand": 0.91, + "new_tests_smoothed": 4136.0, + "new_tests_smoothed_per_thousand": 0.968, + "tests_per_case": 4.364, + "positive_rate": 0.22899999999999998, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-23", + "total_cases": 19564.0, + "new_cases": 955.0, + "new_cases_smoothed": 957.714, + "total_deaths": 138.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 4581.129, + "new_cases_per_million": 223.624, + "new_cases_smoothed_per_million": 224.259, + "total_deaths_per_million": 32.314, + "new_deaths_per_million": 2.107, + "new_deaths_smoothed_per_million": 1.405, + "new_tests": 3195.0, + "total_tests": 268154.0, + "total_tests_per_thousand": 62.791, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 3920.0, + "new_tests_smoothed_per_thousand": 0.918, + "tests_per_case": 4.093, + "positive_rate": 0.244, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-24", + "total_cases": 20464.0, + "new_cases": 900.0, + "new_cases_smoothed": 951.714, + "total_deaths": 148.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 4791.874, + "new_cases_per_million": 210.745, + "new_cases_smoothed_per_million": 222.855, + "total_deaths_per_million": 34.656, + "new_deaths_per_million": 2.342, + "new_deaths_smoothed_per_million": 1.372, + "new_tests": 2935.0, + "total_tests": 271089.0, + "total_tests_per_thousand": 63.479, + "new_tests_per_thousand": 0.687, + "new_tests_smoothed": 3802.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 3.995, + "positive_rate": 0.25, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-25", + "total_cases": 21302.0, + "new_cases": 838.0, + "new_cases_smoothed": 921.714, + "total_deaths": 156.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4988.101, + "new_cases_per_million": 196.227, + "new_cases_smoothed_per_million": 215.83, + "total_deaths_per_million": 36.529, + "new_deaths_per_million": 1.873, + "new_deaths_smoothed_per_million": 1.472, + "new_tests": 2723.0, + "total_tests": 273812.0, + "total_tests_per_thousand": 64.116, + "new_tests_per_thousand": 0.638, + "new_tests_smoothed": 3643.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 3.952, + "positive_rate": 0.253, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-26", + "total_cases": 21967.0, + "new_cases": 665.0, + "new_cases_smoothed": 896.571, + "total_deaths": 165.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5143.818, + "new_cases_per_million": 155.717, + "new_cases_smoothed_per_million": 209.942, + "total_deaths_per_million": 38.637, + "new_deaths_per_million": 2.107, + "new_deaths_smoothed_per_million": 1.572, + "new_tests": 2395.0, + "total_tests": 276207.0, + "total_tests_per_thousand": 64.677, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 3359.0, + "new_tests_smoothed_per_thousand": 0.787, + "tests_per_case": 3.7460000000000004, + "positive_rate": 0.267, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-27", + "total_cases": 22575.0, + "new_cases": 608.0, + "new_cases_smoothed": 830.143, + "total_deaths": 172.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5286.188, + "new_cases_per_million": 142.37, + "new_cases_smoothed_per_million": 194.387, + "total_deaths_per_million": 40.276, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 1.706, + "new_tests": 2738.0, + "total_tests": 278945.0, + "total_tests_per_thousand": 65.318, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 3233.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 3.895, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-28", + "total_cases": 23267.0, + "new_cases": 692.0, + "new_cases_smoothed": 814.143, + "total_deaths": 175.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5448.228, + "new_cases_per_million": 162.04, + "new_cases_smoothed_per_million": 190.641, + "total_deaths_per_million": 40.978, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 1.706, + "new_tests": 3396.0, + "total_tests": 282341.0, + "total_tests_per_thousand": 66.113, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 3039.0, + "new_tests_smoothed_per_thousand": 0.712, + "tests_per_case": 3.733, + "positive_rate": 0.268, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-29", + "total_cases": 24112.0, + "new_cases": 845.0, + "new_cases_smoothed": 786.143, + "total_deaths": 185.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 5646.094, + "new_cases_per_million": 197.866, + "new_cases_smoothed_per_million": 184.084, + "total_deaths_per_million": 43.32, + "new_deaths_per_million": 2.342, + "new_deaths_smoothed_per_million": 1.873, + "new_tests": 4011.0, + "total_tests": 286352.0, + "total_tests_per_thousand": 67.053, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 3056.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 3.887, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-30", + "total_cases": 25184.0, + "new_cases": 1072.0, + "new_cases_smoothed": 802.857, + "total_deaths": 194.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 5897.115, + "new_cases_per_million": 251.021, + "new_cases_smoothed_per_million": 187.998, + "total_deaths_per_million": 45.427, + "new_deaths_per_million": 2.107, + "new_deaths_smoothed_per_million": 1.873, + "new_tests": 3661.0, + "total_tests": 290013.0, + "total_tests_per_thousand": 67.91, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 3123.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 3.89, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 100.0 + }, + { + "date": "2020-05-31", + "total_cases": 26192.0, + "new_cases": 1008.0, + "new_cases_smoothed": 818.286, + "total_deaths": 205.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6133.149, + "new_cases_per_million": 236.034, + "new_cases_smoothed_per_million": 191.611, + "total_deaths_per_million": 48.003, + "new_deaths_per_million": 2.576, + "new_deaths_smoothed_per_million": 1.907, + "new_tests": 3349.0, + "total_tests": 293362.0, + "total_tests_per_thousand": 68.694, + "new_tests_per_thousand": 0.784, + "new_tests_smoothed": 3182.0, + "new_tests_smoothed_per_thousand": 0.745, + "tests_per_case": 3.889, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 27043.0, + "new_cases": 851.0, + "new_cases_smoothed": 820.143, + "total_deaths": 212.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 6332.42, + "new_cases_per_million": 199.271, + "new_cases_smoothed_per_million": 192.046, + "total_deaths_per_million": 49.642, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 1.873, + "new_tests": 3664.0, + "total_tests": 297026.0, + "total_tests_per_thousand": 69.552, + "new_tests_per_thousand": 0.858, + "new_tests_smoothed": 3316.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 4.043, + "positive_rate": 0.247, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-02", + "total_cases": 27762.0, + "new_cases": 719.0, + "new_cases_smoothed": 827.857, + "total_deaths": 220.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 6500.782, + "new_cases_per_million": 168.362, + "new_cases_smoothed_per_million": 193.852, + "total_deaths_per_million": 51.515, + "new_deaths_per_million": 1.873, + "new_deaths_smoothed_per_million": 1.84, + "new_tests": 3325.0, + "total_tests": 300351.0, + "total_tests_per_thousand": 70.331, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 3449.0, + "new_tests_smoothed_per_thousand": 0.808, + "tests_per_case": 4.166, + "positive_rate": 0.24, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-03", + "total_cases": 28649.0, + "new_cases": 887.0, + "new_cases_smoothed": 867.714, + "total_deaths": 226.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6708.483, + "new_cases_per_million": 207.701, + "new_cases_smoothed_per_million": 203.185, + "total_deaths_per_million": 52.92, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.806, + "new_tests": 2934.0, + "total_tests": 303285.0, + "total_tests_per_thousand": 71.018, + "new_tests_per_thousand": 0.687, + "new_tests_smoothed": 3477.0, + "new_tests_smoothed_per_thousand": 0.814, + "tests_per_case": 4.007, + "positive_rate": 0.25, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-04", + "total_cases": 29359.0, + "new_cases": 710.0, + "new_cases_smoothed": 870.286, + "total_deaths": 230.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 6874.738, + "new_cases_per_million": 166.254, + "new_cases_smoothed_per_million": 203.787, + "total_deaths_per_million": 53.857, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.84, + "new_tests": 2721.0, + "total_tests": 306006.0, + "total_tests_per_thousand": 71.655, + "new_tests_per_thousand": 0.637, + "new_tests_smoothed": 3381.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 3.885, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-05", + "total_cases": 29921.0, + "new_cases": 562.0, + "new_cases_smoothed": 829.857, + "total_deaths": 236.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 7006.336, + "new_cases_per_million": 131.599, + "new_cases_smoothed_per_million": 194.32, + "total_deaths_per_million": 55.262, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.706, + "new_tests": 2894.0, + "total_tests": 308900.0, + "total_tests_per_thousand": 72.332, + "new_tests_per_thousand": 0.678, + "new_tests_smoothed": 3221.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 3.8810000000000002, + "positive_rate": 0.258, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-06", + "total_cases": 30644.0, + "new_cases": 723.0, + "new_cases_smoothed": 780.0, + "total_deaths": 244.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 7175.635, + "new_cases_per_million": 169.299, + "new_cases_smoothed_per_million": 182.646, + "total_deaths_per_million": 57.135, + "new_deaths_per_million": 1.873, + "new_deaths_smoothed_per_million": 1.673, + "new_tests": 2724.0, + "total_tests": 311624.0, + "total_tests_per_thousand": 72.97, + "new_tests_per_thousand": 0.638, + "new_tests_smoothed": 3087.0, + "new_tests_smoothed_per_thousand": 0.723, + "tests_per_case": 3.958, + "positive_rate": 0.253, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-07", + "total_cases": 31131.0, + "new_cases": 487.0, + "new_cases_smoothed": 705.571, + "total_deaths": 254.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7289.671, + "new_cases_per_million": 114.036, + "new_cases_smoothed_per_million": 165.217, + "total_deaths_per_million": 59.477, + "new_deaths_per_million": 2.342, + "new_deaths_smoothed_per_million": 1.639, + "new_tests": 3661.0, + "total_tests": 315285.0, + "total_tests_per_thousand": 73.828, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 3132.0, + "new_tests_smoothed_per_thousand": 0.733, + "tests_per_case": 4.439, + "positive_rate": 0.225, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-08", + "total_cases": 31848.0, + "new_cases": 717.0, + "new_cases_smoothed": 686.429, + "total_deaths": 264.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 7457.565, + "new_cases_per_million": 167.894, + "new_cases_smoothed_per_million": 160.735, + "total_deaths_per_million": 61.819, + "new_deaths_per_million": 2.342, + "new_deaths_smoothed_per_million": 1.739, + "new_tests": 2999.0, + "total_tests": 318284.0, + "total_tests_per_thousand": 74.53, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 3037.0, + "new_tests_smoothed_per_thousand": 0.711, + "tests_per_case": 4.4239999999999995, + "positive_rate": 0.226, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-06-09", + "total_cases": 32510.0, + "new_cases": 662.0, + "new_cases_smoothed": 678.286, + "total_deaths": 269.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7612.579, + "new_cases_per_million": 155.015, + "new_cases_smoothed_per_million": 158.828, + "total_deaths_per_million": 62.989, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 1.639, + "new_tests": 3218.0, + "total_tests": 321502.0, + "total_tests_per_thousand": 75.283, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 3022.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 4.455, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-10", + "total_cases": 33140.0, + "new_cases": 630.0, + "new_cases_smoothed": 641.571, + "total_deaths": 273.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 7760.101, + "new_cases_per_million": 147.522, + "new_cases_smoothed_per_million": 150.231, + "total_deaths_per_million": 63.926, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.572, + "new_tests": 2871.0, + "total_tests": 324373.0, + "total_tests_per_thousand": 75.956, + "new_tests_per_thousand": 0.672, + "new_tests_smoothed": 3013.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 4.696000000000001, + "positive_rate": 0.213, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-11", + "total_cases": 33823.0, + "new_cases": 683.0, + "new_cases_smoothed": 637.714, + "total_deaths": 275.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 7920.033, + "new_cases_per_million": 159.932, + "new_cases_smoothed_per_million": 149.328, + "total_deaths_per_million": 64.394, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 1.505, + "new_tests": 2771.0, + "total_tests": 327144.0, + "total_tests_per_thousand": 76.604, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 3020.0, + "new_tests_smoothed_per_thousand": 0.707, + "tests_per_case": 4.736000000000001, + "positive_rate": 0.21100000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-12", + "total_cases": 34432.0, + "new_cases": 609.0, + "new_cases_smoothed": 644.429, + "total_deaths": 279.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 8062.637, + "new_cases_per_million": 142.604, + "new_cases_smoothed_per_million": 150.9, + "total_deaths_per_million": 65.331, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.438, + "new_tests": 2985.0, + "total_tests": 330129.0, + "total_tests_per_thousand": 77.303, + "new_tests_per_thousand": 0.699, + "new_tests_smoothed": 3033.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 4.706, + "positive_rate": 0.212, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-13", + "total_cases": 34952.0, + "new_cases": 520.0, + "new_cases_smoothed": 615.429, + "total_deaths": 285.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 8184.401, + "new_cases_per_million": 121.764, + "new_cases_smoothed_per_million": 144.109, + "total_deaths_per_million": 66.736, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.372, + "new_tests": 2159.0, + "total_tests": 332288.0, + "total_tests_per_thousand": 77.809, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 2952.0, + "new_tests_smoothed_per_thousand": 0.691, + "tests_per_case": 4.797, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-14", + "total_cases": 35466.0, + "new_cases": 514.0, + "new_cases_smoothed": 619.286, + "total_deaths": 289.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 8304.76, + "new_cases_per_million": 120.359, + "new_cases_smoothed_per_million": 145.013, + "total_deaths_per_million": 67.673, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.171, + "new_tests": 2324.0, + "total_tests": 334612.0, + "total_tests_per_thousand": 78.353, + "new_tests_per_thousand": 0.544, + "new_tests_smoothed": 2761.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 4.458, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-15", + "total_cases": 35920.0, + "new_cases": 454.0, + "new_cases_smoothed": 581.714, + "total_deaths": 296.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 8411.069, + "new_cases_per_million": 106.309, + "new_cases_smoothed_per_million": 136.215, + "total_deaths_per_million": 69.312, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 1.07, + "new_tests": 2775.0, + "total_tests": 337387.0, + "total_tests_per_thousand": 79.003, + "new_tests_per_thousand": 0.65, + "new_tests_smoothed": 2729.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 4.691, + "positive_rate": 0.213, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-16", + "total_cases": 36431.0, + "new_cases": 511.0, + "new_cases_smoothed": 560.143, + "total_deaths": 298.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 8530.725, + "new_cases_per_million": 119.656, + "new_cases_smoothed_per_million": 131.164, + "total_deaths_per_million": 69.78, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.97, + "new_tests": 2755.0, + "total_tests": 340142.0, + "total_tests_per_thousand": 79.648, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 2663.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 4.754, + "positive_rate": 0.21, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-17", + "total_cases": 36958.0, + "new_cases": 527.0, + "new_cases_smoothed": 545.429, + "total_deaths": 303.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 8654.128, + "new_cases_per_million": 123.403, + "new_cases_smoothed_per_million": 127.718, + "total_deaths_per_million": 70.951, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 2885.0, + "total_tests": 343027.0, + "total_tests_per_thousand": 80.324, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 2665.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 4.886, + "positive_rate": 0.205, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-18", + "total_cases": 37533.0, + "new_cases": 575.0, + "new_cases_smoothed": 530.0, + "total_deaths": 306.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 8788.771, + "new_cases_per_million": 134.643, + "new_cases_smoothed_per_million": 124.105, + "total_deaths_per_million": 71.653, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 1.037, + "new_tests": 3298.0, + "total_tests": 346325.0, + "total_tests_per_thousand": 81.096, + "new_tests_per_thousand": 0.772, + "new_tests_smoothed": 2740.0, + "new_tests_smoothed_per_thousand": 0.642, + "tests_per_case": 5.17, + "positive_rate": 0.193, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-19", + "total_cases": 38074.0, + "new_cases": 541.0, + "new_cases_smoothed": 520.286, + "total_deaths": 308.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 8915.452, + "new_cases_per_million": 126.681, + "new_cases_smoothed_per_million": 121.831, + "total_deaths_per_million": 72.122, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.97, + "new_tests": 3087.0, + "total_tests": 349412.0, + "total_tests_per_thousand": 81.819, + "new_tests_per_thousand": 0.723, + "new_tests_smoothed": 2755.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 5.295, + "positive_rate": 0.18899999999999997, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-20", + "total_cases": 38678.0, + "new_cases": 604.0, + "new_cases_smoothed": 532.286, + "total_deaths": 313.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 9056.885, + "new_cases_per_million": 141.433, + "new_cases_smoothed_per_million": 124.641, + "total_deaths_per_million": 73.292, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.937, + "new_tests": 2224.0, + "total_tests": 351636.0, + "total_tests_per_thousand": 82.339, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 2764.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 5.193, + "positive_rate": 0.193, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-21", + "total_cases": 39145.0, + "new_cases": 467.0, + "new_cases_smoothed": 525.571, + "total_deaths": 319.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 9166.239, + "new_cases_per_million": 109.353, + "new_cases_smoothed_per_million": 123.068, + "total_deaths_per_million": 74.697, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 2742.0, + "total_tests": 354378.0, + "total_tests_per_thousand": 82.982, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 2824.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 5.372999999999999, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-22", + "total_cases": 39650.0, + "new_cases": 505.0, + "new_cases_smoothed": 532.857, + "total_deaths": 326.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 9284.49, + "new_cases_per_million": 118.251, + "new_cases_smoothed_per_million": 124.774, + "total_deaths_per_million": 76.337, + "new_deaths_per_million": 1.639, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 3216.0, + "total_tests": 357594.0, + "total_tests_per_thousand": 83.735, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 2887.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 5.417999999999999, + "positive_rate": 0.185, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-23", + "total_cases": 40291.0, + "new_cases": 641.0, + "new_cases_smoothed": 551.429, + "total_deaths": 330.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 9434.587, + "new_cases_per_million": 150.097, + "new_cases_smoothed_per_million": 129.123, + "total_deaths_per_million": 77.273, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.07, + "new_tests": 3645.0, + "total_tests": 361239.0, + "total_tests_per_thousand": 84.588, + "new_tests_per_thousand": 0.854, + "new_tests_smoothed": 3014.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 5.466, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-24", + "total_cases": 41033.0, + "new_cases": 742.0, + "new_cases_smoothed": 582.143, + "total_deaths": 334.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 9608.335, + "new_cases_per_million": 173.748, + "new_cases_smoothed_per_million": 136.315, + "total_deaths_per_million": 78.21, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.037, + "new_tests": 3985.0, + "total_tests": 365224.0, + "total_tests_per_thousand": 85.521, + "new_tests_per_thousand": 0.933, + "new_tests_smoothed": 3171.0, + "new_tests_smoothed_per_thousand": 0.743, + "tests_per_case": 5.447, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-25", + "total_cases": 41879.0, + "new_cases": 846.0, + "new_cases_smoothed": 620.857, + "total_deaths": 337.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 9806.435, + "new_cases_per_million": 198.1, + "new_cases_smoothed_per_million": 145.381, + "total_deaths_per_million": 78.912, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 1.037, + "new_tests": 3286.0, + "total_tests": 368510.0, + "total_tests_per_thousand": 86.291, + "new_tests_per_thousand": 0.769, + "new_tests_smoothed": 3169.0, + "new_tests_smoothed_per_thousand": 0.742, + "tests_per_case": 5.104, + "positive_rate": 0.196, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-26", + "total_cases": 42788.0, + "new_cases": 909.0, + "new_cases_smoothed": 673.429, + "total_deaths": 339.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 10019.288, + "new_cases_per_million": 212.852, + "new_cases_smoothed_per_million": 157.691, + "total_deaths_per_million": 79.381, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 1.037, + "new_tests": 3774.0, + "total_tests": 372284.0, + "total_tests_per_thousand": 87.174, + "new_tests_per_thousand": 0.884, + "new_tests_smoothed": 3267.0, + "new_tests_smoothed_per_thousand": 0.765, + "tests_per_case": 4.851, + "positive_rate": 0.20600000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-27", + "total_cases": 43703.0, + "new_cases": 915.0, + "new_cases_smoothed": 717.857, + "total_deaths": 341.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 10233.545, + "new_cases_per_million": 214.257, + "new_cases_smoothed_per_million": 168.094, + "total_deaths_per_million": 79.849, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.937, + "new_tests": 3240.0, + "total_tests": 375524.0, + "total_tests_per_thousand": 87.933, + "new_tests_per_thousand": 0.759, + "new_tests_smoothed": 3413.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 4.754, + "positive_rate": 0.21, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-28", + "total_cases": 44391.0, + "new_cases": 688.0, + "new_cases_smoothed": 749.429, + "total_deaths": 344.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 10394.648, + "new_cases_per_million": 161.103, + "new_cases_smoothed_per_million": 175.487, + "total_deaths_per_million": 80.551, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.836, + "new_tests": 3814.0, + "total_tests": 379338.0, + "total_tests_per_thousand": 88.826, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 3566.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 4.758, + "positive_rate": 0.21, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-29", + "total_cases": 44942.0, + "new_cases": 551.0, + "new_cases_smoothed": 756.0, + "total_deaths": 348.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 10523.671, + "new_cases_per_million": 129.023, + "new_cases_smoothed_per_million": 177.026, + "total_deaths_per_million": 81.488, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.736, + "new_tests": 3504.0, + "total_tests": 382842.0, + "total_tests_per_thousand": 89.647, + "new_tests_per_thousand": 0.821, + "new_tests_smoothed": 3607.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 4.771, + "positive_rate": 0.21, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-06-30", + "total_cases": 45524.0, + "new_cases": 582.0, + "new_cases_smoothed": 747.571, + "total_deaths": 350.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 10659.953, + "new_cases_per_million": 136.282, + "new_cases_smoothed_per_million": 175.052, + "total_deaths_per_million": 81.956, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 4045.0, + "total_tests": 386887.0, + "total_tests_per_thousand": 90.594, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 3664.0, + "new_tests_smoothed_per_thousand": 0.858, + "tests_per_case": 4.901, + "positive_rate": 0.204, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-07-01", + "total_cases": 46195.0, + "new_cases": 671.0, + "new_cases_smoothed": 737.429, + "total_deaths": 354.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 10817.075, + "new_cases_per_million": 157.122, + "new_cases_smoothed_per_million": 172.677, + "total_deaths_per_million": 82.893, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 4150.0, + "total_tests": 391037.0, + "total_tests_per_thousand": 91.566, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 3688.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 5.001, + "positive_rate": 0.2, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-02", + "total_cases": 46940.0, + "new_cases": 745.0, + "new_cases_smoothed": 723.0, + "total_deaths": 358.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 10991.525, + "new_cases_per_million": 174.45, + "new_cases_smoothed_per_million": 169.299, + "total_deaths_per_million": 83.83, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 4312.0, + "total_tests": 395349.0, + "total_tests_per_thousand": 92.575, + "new_tests_per_thousand": 1.01, + "new_tests_smoothed": 3834.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 5.303, + "positive_rate": 0.18899999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-03", + "total_cases": 47859.0, + "new_cases": 919.0, + "new_cases_smoothed": 724.429, + "total_deaths": 359.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 11206.719, + "new_cases_per_million": 215.194, + "new_cases_smoothed_per_million": 169.633, + "total_deaths_per_million": 84.064, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 4149.0, + "total_tests": 399498.0, + "total_tests_per_thousand": 93.547, + "new_tests_per_thousand": 0.972, + "new_tests_smoothed": 3888.0, + "new_tests_smoothed_per_thousand": 0.91, + "tests_per_case": 5.367000000000001, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-04", + "total_cases": 48672.0, + "new_cases": 813.0, + "new_cases_smoothed": 709.857, + "total_deaths": 360.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 11397.092, + "new_cases_per_million": 190.373, + "new_cases_smoothed_per_million": 166.221, + "total_deaths_per_million": 84.298, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 3443.0, + "total_tests": 402941.0, + "total_tests_per_thousand": 94.353, + "new_tests_per_thousand": 0.806, + "new_tests_smoothed": 3917.0, + "new_tests_smoothed_per_thousand": 0.917, + "tests_per_case": 5.518, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-05", + "total_cases": 49303.0, + "new_cases": 631.0, + "new_cases_smoothed": 701.714, + "total_deaths": 365.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 11544.848, + "new_cases_per_million": 147.756, + "new_cases_smoothed_per_million": 164.314, + "total_deaths_per_million": 85.469, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3043.0, + "total_tests": 405984.0, + "total_tests_per_thousand": 95.066, + "new_tests_per_thousand": 0.713, + "new_tests_smoothed": 3807.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 5.425, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-06", + "total_cases": 49941.0, + "new_cases": 638.0, + "new_cases_smoothed": 714.143, + "total_deaths": 368.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 11694.243, + "new_cases_per_million": 149.395, + "new_cases_smoothed_per_million": 167.225, + "total_deaths_per_million": 86.171, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 3351.0, + "total_tests": 409335.0, + "total_tests_per_thousand": 95.85, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 3785.0, + "new_tests_smoothed_per_thousand": 0.886, + "tests_per_case": 5.3, + "positive_rate": 0.18899999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-07", + "total_cases": 50644.0, + "new_cases": 703.0, + "new_cases_smoothed": 731.429, + "total_deaths": 373.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 11858.858, + "new_cases_per_million": 164.615, + "new_cases_smoothed_per_million": 171.272, + "total_deaths_per_million": 87.342, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 4195.0, + "total_tests": 413530.0, + "total_tests_per_thousand": 96.833, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 3806.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 5.204, + "positive_rate": 0.192, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-08", + "total_cases": 51245.0, + "new_cases": 601.0, + "new_cases_smoothed": 721.429, + "total_deaths": 377.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 11999.589, + "new_cases_per_million": 140.731, + "new_cases_smoothed_per_million": 168.931, + "total_deaths_per_million": 88.279, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 4344.0, + "total_tests": 417874.0, + "total_tests_per_thousand": 97.85, + "new_tests_per_thousand": 1.017, + "new_tests_smoothed": 3834.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 5.314, + "positive_rate": 0.188, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-09", + "total_cases": 52007.0, + "new_cases": 762.0, + "new_cases_smoothed": 723.857, + "total_deaths": 379.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 12178.02, + "new_cases_per_million": 178.431, + "new_cases_smoothed_per_million": 169.499, + "total_deaths_per_million": 88.747, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 5011.0, + "total_tests": 422885.0, + "total_tests_per_thousand": 99.023, + "new_tests_per_thousand": 1.173, + "new_tests_smoothed": 3934.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 5.435, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-10", + "total_cases": 52840.0, + "new_cases": 833.0, + "new_cases_smoothed": 711.571, + "total_deaths": 382.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 12373.076, + "new_cases_per_million": 195.056, + "new_cases_smoothed_per_million": 166.622, + "total_deaths_per_million": 89.45, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 4121.0, + "total_tests": 427006.0, + "total_tests_per_thousand": 99.988, + "new_tests_per_thousand": 0.965, + "new_tests_smoothed": 3930.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 5.523, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-11", + "total_cases": 53580.0, + "new_cases": 740.0, + "new_cases_smoothed": 701.143, + "total_deaths": 383.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 12546.355, + "new_cases_per_million": 173.279, + "new_cases_smoothed_per_million": 164.18, + "total_deaths_per_million": 89.684, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 2495.0, + "total_tests": 429501.0, + "total_tests_per_thousand": 100.572, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 3794.0, + "new_tests_smoothed_per_thousand": 0.888, + "tests_per_case": 5.4110000000000005, + "positive_rate": 0.185, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-12", + "total_cases": 54058.0, + "new_cases": 478.0, + "new_cases_smoothed": 679.286, + "total_deaths": 386.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 12658.284, + "new_cases_per_million": 111.929, + "new_cases_smoothed_per_million": 159.062, + "total_deaths_per_million": 90.386, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3835.0, + "total_tests": 433336.0, + "total_tests_per_thousand": 101.47, + "new_tests_per_thousand": 0.898, + "new_tests_smoothed": 3907.0, + "new_tests_smoothed_per_thousand": 0.915, + "tests_per_case": 5.752000000000001, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-13", + "total_cases": 54894.0, + "new_cases": 836.0, + "new_cases_smoothed": 707.571, + "total_deaths": 390.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 12854.043, + "new_cases_per_million": 195.759, + "new_cases_smoothed_per_million": 165.686, + "total_deaths_per_million": 91.323, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.736, + "new_tests": 4086.0, + "total_tests": 437422.0, + "total_tests_per_thousand": 102.427, + "new_tests_per_thousand": 0.957, + "new_tests_smoothed": 4012.0, + "new_tests_smoothed_per_thousand": 0.939, + "tests_per_case": 5.67, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-14", + "total_cases": 55508.0, + "new_cases": 614.0, + "new_cases_smoothed": 694.857, + "total_deaths": 393.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 12997.818, + "new_cases_per_million": 143.775, + "new_cases_smoothed_per_million": 162.709, + "total_deaths_per_million": 92.025, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 3721.0, + "total_tests": 441143.0, + "total_tests_per_thousand": 103.299, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 3945.0, + "new_tests_smoothed_per_thousand": 0.924, + "tests_per_case": 5.6770000000000005, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-15", + "total_cases": 56174.0, + "new_cases": 666.0, + "new_cases_smoothed": 704.143, + "total_deaths": 396.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 13153.769, + "new_cases_per_million": 155.951, + "new_cases_smoothed_per_million": 164.883, + "total_deaths_per_million": 92.728, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 4041.0, + "total_tests": 445184.0, + "total_tests_per_thousand": 104.245, + "new_tests_per_thousand": 0.946, + "new_tests_smoothed": 3901.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 5.54, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-16", + "total_cases": 56877.0, + "new_cases": 703.0, + "new_cases_smoothed": 695.714, + "total_deaths": 399.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 13318.384, + "new_cases_per_million": 164.615, + "new_cases_smoothed_per_million": 162.909, + "total_deaths_per_million": 93.43, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 4341.0, + "total_tests": 449525.0, + "total_tests_per_thousand": 105.261, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 3806.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 5.471, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-17", + "total_cases": 57668.0, + "new_cases": 791.0, + "new_cases_smoothed": 689.714, + "total_deaths": 402.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 13503.606, + "new_cases_per_million": 185.221, + "new_cases_smoothed_per_million": 161.504, + "total_deaths_per_million": 94.133, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 3445.0, + "total_tests": 452970.0, + "total_tests_per_thousand": 106.068, + "new_tests_per_thousand": 0.807, + "new_tests_smoothed": 3709.0, + "new_tests_smoothed_per_thousand": 0.869, + "tests_per_case": 5.377999999999999, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-18", + "total_cases": 58221.0, + "new_cases": 553.0, + "new_cases_smoothed": 663.0, + "total_deaths": 404.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 13633.097, + "new_cases_per_million": 129.491, + "new_cases_smoothed_per_million": 155.249, + "total_deaths_per_million": 94.601, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 4370.0, + "total_tests": 457340.0, + "total_tests_per_thousand": 107.091, + "new_tests_per_thousand": 1.023, + "new_tests_smoothed": 3977.0, + "new_tests_smoothed_per_thousand": 0.931, + "tests_per_case": 5.997999999999999, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-19", + "total_cases": 58904.0, + "new_cases": 683.0, + "new_cases_smoothed": 692.286, + "total_deaths": 407.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 13793.029, + "new_cases_per_million": 159.932, + "new_cases_smoothed_per_million": 162.106, + "total_deaths_per_million": 95.304, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 2009.0, + "total_tests": 459349.0, + "total_tests_per_thousand": 107.562, + "new_tests_per_thousand": 0.47, + "new_tests_smoothed": 3716.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 5.367999999999999, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-20", + "total_cases": 59204.0, + "new_cases": 300.0, + "new_cases_smoothed": 615.714, + "total_deaths": 408.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 13863.278, + "new_cases_per_million": 70.248, + "new_cases_smoothed_per_million": 144.176, + "total_deaths_per_million": 95.538, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.602, + "new_tests": 3355.0, + "total_tests": 462704.0, + "total_tests_per_thousand": 108.347, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 3612.0, + "new_tests_smoothed_per_thousand": 0.846, + "tests_per_case": 5.8660000000000005, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-21", + "total_cases": 59763.0, + "new_cases": 559.0, + "new_cases_smoothed": 607.857, + "total_deaths": 408.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 13994.174, + "new_cases_per_million": 130.896, + "new_cases_smoothed_per_million": 142.337, + "total_deaths_per_million": 95.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 4157.0, + "total_tests": 466861.0, + "total_tests_per_thousand": 109.321, + "new_tests_per_thousand": 0.973, + "new_tests_smoothed": 3674.0, + "new_tests_smoothed_per_thousand": 0.86, + "tests_per_case": 6.044, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-22", + "total_cases": 60434.0, + "new_cases": 671.0, + "new_cases_smoothed": 608.571, + "total_deaths": 412.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 14151.296, + "new_cases_per_million": 157.122, + "new_cases_smoothed_per_million": 142.504, + "total_deaths_per_million": 96.474, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.535, + "new_tests": 4139.0, + "total_tests": 471000.0, + "total_tests_per_thousand": 110.29, + "new_tests_per_thousand": 0.969, + "new_tests_smoothed": 3688.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 6.06, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-23", + "total_cases": 61185.0, + "new_cases": 751.0, + "new_cases_smoothed": 615.429, + "total_deaths": 417.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 14327.151, + "new_cases_per_million": 175.855, + "new_cases_smoothed_per_million": 144.109, + "total_deaths_per_million": 97.645, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.602, + "new_tests": 3808.0, + "total_tests": 474808.0, + "total_tests_per_thousand": 111.182, + "new_tests_per_thousand": 0.892, + "new_tests_smoothed": 3612.0, + "new_tests_smoothed_per_thousand": 0.846, + "tests_per_case": 5.869, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-24", + "total_cases": 61872.0, + "new_cases": 687.0, + "new_cases_smoothed": 600.571, + "total_deaths": 421.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 14488.019, + "new_cases_per_million": 160.869, + "new_cases_smoothed_per_million": 140.631, + "total_deaths_per_million": 98.582, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 4603.0, + "total_tests": 479411.0, + "total_tests_per_thousand": 112.259, + "new_tests_per_thousand": 1.078, + "new_tests_smoothed": 3777.0, + "new_tests_smoothed_per_thousand": 0.884, + "tests_per_case": 6.289, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-25", + "total_cases": 62625.0, + "new_cases": 753.0, + "new_cases_smoothed": 629.143, + "total_deaths": 425.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 14664.343, + "new_cases_per_million": 176.323, + "new_cases_smoothed_per_million": 147.321, + "total_deaths_per_million": 99.518, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3909.0, + "total_tests": 483320.0, + "total_tests_per_thousand": 113.175, + "new_tests_per_thousand": 0.915, + "new_tests_smoothed": 3711.0, + "new_tests_smoothed_per_thousand": 0.869, + "tests_per_case": 5.899, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-26", + "total_cases": 63309.0, + "new_cases": 684.0, + "new_cases_smoothed": 629.286, + "total_deaths": 429.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 14824.509, + "new_cases_per_million": 160.166, + "new_cases_smoothed_per_million": 147.354, + "total_deaths_per_million": 100.455, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.736, + "new_tests": 2418.0, + "total_tests": 485738.0, + "total_tests_per_thousand": 113.741, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 3770.0, + "new_tests_smoothed_per_thousand": 0.883, + "tests_per_case": 5.9910000000000005, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-27", + "total_cases": 63773.0, + "new_cases": 464.0, + "new_cases_smoothed": 652.714, + "total_deaths": 433.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 14933.16, + "new_cases_per_million": 108.651, + "new_cases_smoothed_per_million": 152.84, + "total_deaths_per_million": 101.392, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.836, + "new_tests": 3828.0, + "total_tests": 489566.0, + "total_tests_per_thousand": 114.637, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 3837.0, + "new_tests_smoothed_per_thousand": 0.898, + "tests_per_case": 5.879, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-28", + "total_cases": 64379.0, + "new_cases": 606.0, + "new_cases_smoothed": 659.429, + "total_deaths": 438.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 15075.062, + "new_cases_per_million": 141.902, + "new_cases_smoothed_per_million": 154.413, + "total_deaths_per_million": 102.563, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 4732.0, + "total_tests": 494298.0, + "total_tests_per_thousand": 115.745, + "new_tests_per_thousand": 1.108, + "new_tests_smoothed": 3920.0, + "new_tests_smoothed_per_thousand": 0.918, + "tests_per_case": 5.945, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-29", + "total_cases": 65149.0, + "new_cases": 770.0, + "new_cases_smoothed": 673.571, + "total_deaths": 442.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 15255.366, + "new_cases_per_million": 180.304, + "new_cases_smoothed_per_million": 157.724, + "total_deaths_per_million": 103.499, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 1.004, + "new_tests": 4059.0, + "total_tests": 498357.0, + "total_tests_per_thousand": 116.696, + "new_tests_per_thousand": 0.95, + "new_tests_smoothed": 3908.0, + "new_tests_smoothed_per_thousand": 0.915, + "tests_per_case": 5.8020000000000005, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-30", + "total_cases": 65903.0, + "new_cases": 754.0, + "new_cases_smoothed": 674.0, + "total_deaths": 444.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 15431.923, + "new_cases_per_million": 176.558, + "new_cases_smoothed_per_million": 157.825, + "total_deaths_per_million": 103.968, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.903, + "new_tests": 3811.0, + "total_tests": 502168.0, + "total_tests_per_thousand": 117.588, + "new_tests_per_thousand": 0.892, + "new_tests_smoothed": 3909.0, + "new_tests_smoothed_per_thousand": 0.915, + "tests_per_case": 5.8, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-31", + "total_cases": 66529.0, + "new_cases": 626.0, + "new_cases_smoothed": 665.286, + "total_deaths": 445.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 15578.508, + "new_cases_per_million": 146.585, + "new_cases_smoothed_per_million": 155.784, + "total_deaths_per_million": 104.202, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 2920.0, + "total_tests": 505088.0, + "total_tests_per_thousand": 118.272, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 3668.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 5.513, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-01", + "total_cases": 66957.0, + "new_cases": 428.0, + "new_cases_smoothed": 618.857, + "total_deaths": 447.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 15678.729, + "new_cases_per_million": 100.221, + "new_cases_smoothed_per_million": 144.912, + "total_deaths_per_million": 104.67, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.736, + "new_tests": 2432.0, + "total_tests": 507520.0, + "total_tests_per_thousand": 118.841, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 3457.0, + "new_tests_smoothed_per_thousand": 0.809, + "tests_per_case": 5.586, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-02", + "total_cases": 67448.0, + "new_cases": 491.0, + "new_cases_smoothed": 591.286, + "total_deaths": 453.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 15793.702, + "new_cases_per_million": 114.973, + "new_cases_smoothed_per_million": 138.456, + "total_deaths_per_million": 106.075, + "new_deaths_per_million": 1.405, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 2041.0, + "total_tests": 509561.0, + "total_tests_per_thousand": 119.319, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 3403.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 5.755, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-03", + "total_cases": 67911.0, + "new_cases": 463.0, + "new_cases_smoothed": 591.143, + "total_deaths": 457.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 15902.119, + "new_cases_per_million": 108.417, + "new_cases_smoothed_per_million": 138.423, + "total_deaths_per_million": 107.012, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 2038.0, + "total_tests": 511599.0, + "total_tests_per_thousand": 119.797, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 3148.0, + "new_tests_smoothed_per_thousand": 0.737, + "tests_per_case": 5.325, + "positive_rate": 0.188, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-04", + "total_cases": 68299.0, + "new_cases": 388.0, + "new_cases_smoothed": 560.0, + "total_deaths": 461.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 15992.973, + "new_cases_per_million": 90.855, + "new_cases_smoothed_per_million": 131.13, + "total_deaths_per_million": 107.948, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 2452.0, + "total_tests": 514051.0, + "total_tests_per_thousand": 120.371, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 2822.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 5.039, + "positive_rate": 0.198, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-05", + "total_cases": 68774.0, + "new_cases": 475.0, + "new_cases_smoothed": 517.857, + "total_deaths": 465.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 16104.2, + "new_cases_per_million": 111.227, + "new_cases_smoothed_per_million": 121.262, + "total_deaths_per_million": 108.885, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 4550.0, + "total_tests": 518601.0, + "total_tests_per_thousand": 121.436, + "new_tests_per_thousand": 1.065, + "new_tests_smoothed": 2892.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 5.585, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-06", + "total_cases": 69425.0, + "new_cases": 651.0, + "new_cases_smoothed": 503.143, + "total_deaths": 468.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 16256.639, + "new_cases_per_million": 152.439, + "new_cases_smoothed_per_million": 117.817, + "total_deaths_per_million": 109.587, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 3599.0, + "total_tests": 522200.0, + "total_tests_per_thousand": 122.279, + "new_tests_per_thousand": 0.843, + "new_tests_smoothed": 2862.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 5.688, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-07", + "total_cases": 70045.0, + "new_cases": 620.0, + "new_cases_smoothed": 502.286, + "total_deaths": 469.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 16401.819, + "new_cases_per_million": 145.18, + "new_cases_smoothed_per_million": 117.616, + "total_deaths_per_million": 109.822, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 4086.0, + "total_tests": 526286.0, + "total_tests_per_thousand": 123.236, + "new_tests_per_thousand": 0.957, + "new_tests_smoothed": 3028.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 6.028, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-08", + "total_cases": 70727.0, + "new_cases": 682.0, + "new_cases_smoothed": 538.571, + "total_deaths": 471.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 16561.517, + "new_cases_per_million": 159.698, + "new_cases_smoothed_per_million": 126.113, + "total_deaths_per_million": 110.29, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 2844.0, + "total_tests": 529130.0, + "total_tests_per_thousand": 123.902, + "new_tests_per_thousand": 0.666, + "new_tests_smoothed": 3087.0, + "new_tests_smoothed_per_thousand": 0.723, + "tests_per_case": 5.732, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-09", + "total_cases": 71199.0, + "new_cases": 472.0, + "new_cases_smoothed": 535.857, + "total_deaths": 474.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 16672.041, + "new_cases_per_million": 110.524, + "new_cases_smoothed_per_million": 125.477, + "total_deaths_per_million": 110.992, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3223.0, + "total_tests": 532353.0, + "total_tests_per_thousand": 124.656, + "new_tests_per_thousand": 0.755, + "new_tests_smoothed": 3256.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 6.0760000000000005, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-10", + "total_cases": 71713.0, + "new_cases": 514.0, + "new_cases_smoothed": 543.143, + "total_deaths": 478.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 16792.4, + "new_cases_per_million": 120.359, + "new_cases_smoothed_per_million": 127.183, + "total_deaths_per_million": 111.929, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3450.0, + "total_tests": 535803.0, + "total_tests_per_thousand": 125.464, + "new_tests_per_thousand": 0.808, + "new_tests_smoothed": 3458.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 6.367000000000001, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-11", + "total_cases": 72400.0, + "new_cases": 687.0, + "new_cases_smoothed": 585.857, + "total_deaths": 482.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 16953.268, + "new_cases_per_million": 160.869, + "new_cases_smoothed_per_million": 137.185, + "total_deaths_per_million": 112.866, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 3658.0, + "total_tests": 539461.0, + "total_tests_per_thousand": 126.321, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 3630.0, + "new_tests_smoothed_per_thousand": 0.85, + "tests_per_case": 6.196000000000001, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-12", + "total_cases": 73068.0, + "new_cases": 668.0, + "new_cases_smoothed": 613.429, + "total_deaths": 486.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 17109.688, + "new_cases_per_million": 156.42, + "new_cases_smoothed_per_million": 143.641, + "total_deaths_per_million": 113.802, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 4397.0, + "total_tests": 543858.0, + "total_tests_per_thousand": 127.35, + "new_tests_per_thousand": 1.03, + "new_tests_smoothed": 3608.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 5.882000000000001, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-13", + "total_cases": 73785.0, + "new_cases": 717.0, + "new_cases_smoothed": 622.857, + "total_deaths": 489.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 17277.581, + "new_cases_per_million": 167.894, + "new_cases_smoothed_per_million": 145.849, + "total_deaths_per_million": 114.505, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.702, + "new_tests": 4147.0, + "total_tests": 548005.0, + "total_tests_per_thousand": 128.321, + "new_tests_per_thousand": 0.971, + "new_tests_smoothed": 3686.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 5.917999999999999, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-14", + "total_cases": 74486.0, + "new_cases": 701.0, + "new_cases_smoothed": 634.429, + "total_deaths": 489.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 17441.728, + "new_cases_per_million": 164.147, + "new_cases_smoothed_per_million": 148.559, + "total_deaths_per_million": 114.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 4576.0, + "total_tests": 552581.0, + "total_tests_per_thousand": 129.393, + "new_tests_per_thousand": 1.072, + "new_tests_smoothed": 3756.0, + "new_tests_smoothed_per_thousand": 0.88, + "tests_per_case": 5.92, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-15", + "total_cases": 75185.0, + "new_cases": 699.0, + "new_cases_smoothed": 636.857, + "total_deaths": 494.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 17605.407, + "new_cases_per_million": 163.679, + "new_cases_smoothed_per_million": 149.127, + "total_deaths_per_million": 115.676, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 3356.0, + "total_tests": 555937.0, + "total_tests_per_thousand": 130.179, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 3830.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 6.013999999999999, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-16", + "total_cases": 75697.0, + "new_cases": 512.0, + "new_cases_smoothed": 642.571, + "total_deaths": 498.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 17725.298, + "new_cases_per_million": 119.891, + "new_cases_smoothed_per_million": 150.465, + "total_deaths_per_million": 116.612, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.803, + "new_tests": 2863.0, + "total_tests": 558800.0, + "total_tests_per_thousand": 130.849, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 3778.0, + "new_tests_smoothed_per_thousand": 0.885, + "tests_per_case": 5.88, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-17", + "total_cases": 76205.0, + "new_cases": 508.0, + "new_cases_smoothed": 641.714, + "total_deaths": 501.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 17844.251, + "new_cases_per_million": 118.954, + "new_cases_smoothed_per_million": 150.265, + "total_deaths_per_million": 117.315, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.769, + "new_tests": 4334.0, + "total_tests": 563134.0, + "total_tests_per_thousand": 131.864, + "new_tests_per_thousand": 1.015, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 6.084, + "positive_rate": 0.16399999999999998, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-18", + "total_cases": 76827.0, + "new_cases": 622.0, + "new_cases_smoothed": 632.429, + "total_deaths": 502.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 17989.9, + "new_cases_per_million": 145.648, + "new_cases_smoothed_per_million": 148.09, + "total_deaths_per_million": 117.549, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 5306.0, + "total_tests": 568440.0, + "total_tests_per_thousand": 133.107, + "new_tests_per_thousand": 1.242, + "new_tests_smoothed": 4140.0, + "new_tests_smoothed_per_thousand": 0.969, + "tests_per_case": 6.546, + "positive_rate": 0.153, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-19", + "total_cases": 77470.0, + "new_cases": 643.0, + "new_cases_smoothed": 628.857, + "total_deaths": 505.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 18140.465, + "new_cases_per_million": 150.566, + "new_cases_smoothed_per_million": 147.254, + "total_deaths_per_million": 118.251, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 4811.0, + "total_tests": 573251.0, + "total_tests_per_thousand": 134.233, + "new_tests_per_thousand": 1.127, + "new_tests_smoothed": 4199.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 6.6770000000000005, + "positive_rate": 0.15, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-20", + "total_cases": 78145.0, + "new_cases": 675.0, + "new_cases_smoothed": 622.857, + "total_deaths": 507.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 18298.524, + "new_cases_per_million": 158.059, + "new_cases_smoothed_per_million": 145.849, + "total_deaths_per_million": 118.72, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.602, + "new_tests": 4337.0, + "total_tests": 577588.0, + "total_tests_per_thousand": 135.249, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 4226.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 6.785, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-21", + "total_cases": 78767.0, + "new_cases": 622.0, + "new_cases_smoothed": 611.571, + "total_deaths": 509.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 18444.172, + "new_cases_per_million": 145.648, + "new_cases_smoothed_per_million": 143.206, + "total_deaths_per_million": 119.188, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.669, + "new_tests": 3530.0, + "total_tests": 581118.0, + "total_tests_per_thousand": 136.075, + "new_tests_per_thousand": 0.827, + "new_tests_smoothed": 4077.0, + "new_tests_smoothed_per_thousand": 0.955, + "tests_per_case": 6.666, + "positive_rate": 0.15, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-22", + "total_cases": 79269.0, + "new_cases": 502.0, + "new_cases_smoothed": 583.429, + "total_deaths": 511.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 18561.721, + "new_cases_per_million": 117.549, + "new_cases_smoothed_per_million": 136.616, + "total_deaths_per_million": 119.656, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.569, + "new_tests": 4006.0, + "total_tests": 585124.0, + "total_tests_per_thousand": 137.013, + "new_tests_per_thousand": 0.938, + "new_tests_smoothed": 4170.0, + "new_tests_smoothed_per_thousand": 0.976, + "tests_per_case": 7.147, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-23", + "total_cases": 79957.0, + "new_cases": 688.0, + "new_cases_smoothed": 608.571, + "total_deaths": 513.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 18722.824, + "new_cases_per_million": 161.103, + "new_cases_smoothed_per_million": 142.504, + "total_deaths_per_million": 120.125, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 2443.0, + "total_tests": 587567.0, + "total_tests_per_thousand": 137.585, + "new_tests_per_thousand": 0.572, + "new_tests_smoothed": 4110.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 6.754, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-24", + "total_cases": 80528.0, + "new_cases": 571.0, + "new_cases_smoothed": 617.571, + "total_deaths": 515.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 18856.53, + "new_cases_per_million": 133.706, + "new_cases_smoothed_per_million": 144.611, + "total_deaths_per_million": 120.593, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 3056.0, + "total_tests": 590623.0, + "total_tests_per_thousand": 138.301, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 3927.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 6.359, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-25", + "total_cases": 80960.0, + "new_cases": 432.0, + "new_cases_smoothed": 590.429, + "total_deaths": 518.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 18957.688, + "new_cases_per_million": 101.158, + "new_cases_smoothed_per_million": 138.255, + "total_deaths_per_million": 121.295, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.535, + "new_tests": 4426.0, + "total_tests": 595049.0, + "total_tests_per_thousand": 139.337, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 3801.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 6.438, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-26", + "total_cases": 81573.0, + "new_cases": 613.0, + "new_cases_smoothed": 586.143, + "total_deaths": 519.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 19101.229, + "new_cases_per_million": 143.541, + "new_cases_smoothed_per_million": 137.252, + "total_deaths_per_million": 121.53, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 4364.0, + "total_tests": 599413.0, + "total_tests_per_thousand": 140.359, + "new_tests_per_thousand": 1.022, + "new_tests_smoothed": 3737.0, + "new_tests_smoothed_per_thousand": 0.875, + "tests_per_case": 6.376, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-08-27", + "total_cases": 82271.0, + "new_cases": 698.0, + "new_cases_smoothed": 589.429, + "total_deaths": 521.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 19264.673, + "new_cases_per_million": 163.444, + "new_cases_smoothed_per_million": 138.021, + "total_deaths_per_million": 121.998, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 4191.0, + "total_tests": 603604.0, + "total_tests_per_thousand": 141.341, + "new_tests_per_thousand": 0.981, + "new_tests_smoothed": 3717.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 6.306, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-28", + "total_cases": 82945.0, + "new_cases": 674.0, + "new_cases_smoothed": 596.857, + "total_deaths": 522.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 19422.498, + "new_cases_per_million": 157.825, + "new_cases_smoothed_per_million": 139.761, + "total_deaths_per_million": 122.232, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.435, + "new_tests": 4317.0, + "total_tests": 607921.0, + "total_tests_per_thousand": 142.351, + "new_tests_per_thousand": 1.011, + "new_tests_smoothed": 3829.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 6.415, + "positive_rate": 0.156, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-29", + "total_cases": 83578.0, + "new_cases": 633.0, + "new_cases_smoothed": 615.571, + "total_deaths": 525.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 19570.722, + "new_cases_per_million": 148.224, + "new_cases_smoothed_per_million": 144.143, + "total_deaths_per_million": 122.935, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 3718.0, + "total_tests": 611639.0, + "total_tests_per_thousand": 143.222, + "new_tests_per_thousand": 0.871, + "new_tests_smoothed": 3788.0, + "new_tests_smoothed_per_thousand": 0.887, + "tests_per_case": 6.154, + "positive_rate": 0.163, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-30", + "total_cases": 84224.0, + "new_cases": 646.0, + "new_cases_smoothed": 609.571, + "total_deaths": 528.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 19721.99, + "new_cases_per_million": 151.268, + "new_cases_smoothed_per_million": 142.738, + "total_deaths_per_million": 123.637, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 2490.0, + "total_tests": 614129.0, + "total_tests_per_thousand": 143.805, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 3795.0, + "new_tests_smoothed_per_thousand": 0.889, + "tests_per_case": 6.226, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-31", + "total_cases": 84636.0, + "new_cases": 412.0, + "new_cases_smoothed": 586.857, + "total_deaths": 530.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 19818.464, + "new_cases_per_million": 96.474, + "new_cases_smoothed_per_million": 137.419, + "total_deaths_per_million": 124.105, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 3490.0, + "total_tests": 617619.0, + "total_tests_per_thousand": 144.622, + "new_tests_per_thousand": 0.817, + "new_tests_smoothed": 3857.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 6.572, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-09-01", + "total_cases": 85109.0, + "new_cases": 473.0, + "new_cases_smoothed": 592.714, + "total_deaths": 531.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 19929.222, + "new_cases_per_million": 110.758, + "new_cases_smoothed_per_million": 138.791, + "total_deaths_per_million": 124.34, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.435, + "new_tests": 3997.0, + "total_tests": 621616.0, + "total_tests_per_thousand": 145.558, + "new_tests_per_thousand": 0.936, + "new_tests_smoothed": 3795.0, + "new_tests_smoothed_per_thousand": 0.889, + "tests_per_case": 6.403, + "positive_rate": 0.156, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 85811.0, + "new_cases": 702.0, + "new_cases_smoothed": 605.429, + "total_deaths": 534.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 20093.604, + "new_cases_per_million": 164.381, + "new_cases_smoothed_per_million": 141.768, + "total_deaths_per_million": 125.042, + "new_deaths_per_million": 0.702, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 4425.0, + "total_tests": 626041.0, + "total_tests_per_thousand": 146.594, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 3804.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 6.2829999999999995, + "positive_rate": 0.159, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 86478.0, + "new_cases": 667.0, + "new_cases_smoothed": 601.0, + "total_deaths": 535.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 20249.789, + "new_cases_per_million": 156.185, + "new_cases_smoothed_per_million": 140.731, + "total_deaths_per_million": 125.276, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 5441.0, + "total_tests": 631482.0, + "total_tests_per_thousand": 147.869, + "new_tests_per_thousand": 1.274, + "new_tests_smoothed": 3983.0, + "new_tests_smoothed_per_thousand": 0.933, + "tests_per_case": 6.627000000000001, + "positive_rate": 0.151, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 87378.0, + "new_cases": 900.0, + "new_cases_smoothed": 633.286, + "total_deaths": 536.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 20460.534, + "new_cases_per_million": 210.745, + "new_cases_smoothed_per_million": 148.291, + "total_deaths_per_million": 125.51, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.468 + }, + { + "date": "2020-09-05", + "total_cases": 88243.0, + "new_cases": 865.0, + "new_cases_smoothed": 666.429, + "total_deaths": 537.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 20663.084, + "new_cases_per_million": 202.549, + "new_cases_smoothed_per_million": 156.052, + "total_deaths_per_million": 125.745, + "new_deaths_per_million": 0.234, + "new_deaths_smoothed_per_million": 0.401 + } + ] + }, + "KGZ": { + "continent": "Asia", + "location": "Kyrgyzstan", + "population": 6524191.0, + "population_density": 32.333, + "median_age": 26.3, + "aged_65_older": 4.489, + "aged_70_older": 2.882, + "gdp_per_capita": 3393.474, + "extreme_poverty": 1.4, + "cardiovasc_death_rate": 436.362, + "diabetes_prevalence": 7.11, + "female_smokers": 3.6, + "male_smokers": 50.5, + "handwashing_facilities": 89.22, + "hospital_beds_per_thousand": 4.5, + "life_expectancy": 71.45, + "data": [ + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.46, + "new_cases_per_million": 0.46, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-20", + "total_cases": 6.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.92, + "new_cases_per_million": 0.46, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-21", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.92, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-22", + "total_cases": 14.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.146, + "new_cases_per_million": 1.226, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-23", + "total_cases": 14.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.146, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-24", + "total_cases": 16.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.452, + "new_cases_per_million": 0.307, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-25", + "total_cases": 42.0, + "new_cases": 26.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.438, + "new_cases_per_million": 3.985, + "new_cases_smoothed_per_million": 0.92, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-26", + "total_cases": 44.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.744, + "new_cases_per_million": 0.307, + "new_cases_smoothed_per_million": 0.898, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-27", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.744, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.832, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-28", + "total_cases": 58.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.89, + "new_cases_per_million": 2.146, + "new_cases_smoothed_per_million": 1.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-29", + "total_cases": 84.0, + "new_cases": 26.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.875, + "new_cases_per_million": 3.985, + "new_cases_smoothed_per_million": 1.533, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-30", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.875, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.533, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-03-31", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.875, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.489, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-04-01", + "total_cases": 107.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.401, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 1.423, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-04-02", + "total_cases": 112.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.167, + "new_cases_per_million": 0.766, + "new_cases_smoothed_per_million": 1.489, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-03", + "total_cases": 125.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.159, + "new_cases_per_million": 1.993, + "new_cases_smoothed_per_million": 1.774, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-04", + "total_cases": 144.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.072, + "new_cases_per_million": 2.912, + "new_cases_smoothed_per_million": 1.883, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-05", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-06", + "total_cases": 216.0, + "new_cases": 72.0, + "new_cases_smoothed": 18.857, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 33.108, + "new_cases_per_million": 11.036, + "new_cases_smoothed_per_million": 2.89, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-07", + "total_cases": 228.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 34.947, + "new_cases_per_million": 1.839, + "new_cases_smoothed_per_million": 3.153, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-08", + "total_cases": 270.0, + "new_cases": 42.0, + "new_cases_smoothed": 23.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.384, + "new_cases_per_million": 6.438, + "new_cases_smoothed_per_million": 3.569, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-09", + "total_cases": 280.0, + "new_cases": 10.0, + "new_cases_smoothed": 24.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 42.917, + "new_cases_per_million": 1.533, + "new_cases_smoothed_per_million": 3.679, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 92.13 + }, + { + "date": "2020-04-10", + "total_cases": 298.0, + "new_cases": 18.0, + "new_cases_smoothed": 24.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 45.676, + "new_cases_per_million": 2.759, + "new_cases_smoothed_per_million": 3.788, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-11", + "total_cases": 339.0, + "new_cases": 41.0, + "new_cases_smoothed": 27.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 51.96, + "new_cases_per_million": 6.284, + "new_cases_smoothed_per_million": 4.27, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-12", + "total_cases": 377.0, + "new_cases": 38.0, + "new_cases_smoothed": 33.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 57.785, + "new_cases_per_million": 5.824, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 92.13 + }, + { + "date": "2020-04-13", + "total_cases": 419.0, + "new_cases": 42.0, + "new_cases_smoothed": 29.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 64.223, + "new_cases_per_million": 6.438, + "new_cases_smoothed_per_million": 4.445, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-14", + "total_cases": 430.0, + "new_cases": 11.0, + "new_cases_smoothed": 28.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 65.909, + "new_cases_per_million": 1.686, + "new_cases_smoothed_per_million": 4.423, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-15", + "total_cases": 449.0, + "new_cases": 19.0, + "new_cases_smoothed": 25.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 68.821, + "new_cases_per_million": 2.912, + "new_cases_smoothed_per_million": 3.919, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-16", + "total_cases": 466.0, + "new_cases": 17.0, + "new_cases_smoothed": 26.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 71.426, + "new_cases_per_million": 2.606, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-17", + "total_cases": 489.0, + "new_cases": 23.0, + "new_cases_smoothed": 27.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.952, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 4.182, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-04-18", + "total_cases": 506.0, + "new_cases": 17.0, + "new_cases_smoothed": 23.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.558, + "new_cases_per_million": 2.606, + "new_cases_smoothed_per_million": 3.657, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-04-19", + "total_cases": 554.0, + "new_cases": 48.0, + "new_cases_smoothed": 25.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 84.915, + "new_cases_per_million": 7.357, + "new_cases_smoothed_per_million": 3.876, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 92.13 + }, + { + "date": "2020-04-20", + "total_cases": 568.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.286, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.061, + "new_cases_per_million": 2.146, + "new_cases_smoothed_per_million": 3.263, + "total_deaths_per_million": 1.073, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 92.13 + }, + { + "date": "2020-04-21", + "total_cases": 590.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 90.433, + "new_cases_per_million": 3.372, + "new_cases_smoothed_per_million": 3.503, + "total_deaths_per_million": 1.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 92.13 + }, + { + "date": "2020-04-22", + "total_cases": 612.0, + "new_cases": 22.0, + "new_cases_smoothed": 23.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 93.805, + "new_cases_per_million": 3.372, + "new_cases_smoothed_per_million": 3.569, + "total_deaths_per_million": 1.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 92.13 + }, + { + "date": "2020-04-23", + "total_cases": 631.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 96.717, + "new_cases_per_million": 2.912, + "new_cases_smoothed_per_million": 3.613, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 92.13 + }, + { + "date": "2020-04-24", + "total_cases": 656.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 100.549, + "new_cases_per_million": 3.832, + "new_cases_smoothed_per_million": 3.657, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 92.13 + }, + { + "date": "2020-04-25", + "total_cases": 665.0, + "new_cases": 9.0, + "new_cases_smoothed": 22.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 101.928, + "new_cases_per_million": 1.379, + "new_cases_smoothed_per_million": 3.482, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 92.13 + }, + { + "date": "2020-04-26", + "total_cases": 682.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.534, + "new_cases_per_million": 2.606, + "new_cases_smoothed_per_million": 2.803, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 92.13 + }, + { + "date": "2020-04-27", + "total_cases": 695.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.527, + "new_cases_per_million": 1.993, + "new_cases_smoothed_per_million": 2.781, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-28", + "total_cases": 708.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 108.519, + "new_cases_per_million": 1.993, + "new_cases_smoothed_per_million": 2.584, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-29", + "total_cases": 729.0, + "new_cases": 21.0, + "new_cases_smoothed": 16.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 111.738, + "new_cases_per_million": 3.219, + "new_cases_smoothed_per_million": 2.562, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 92.13 + }, + { + "date": "2020-04-30", + "total_cases": 746.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.344, + "new_cases_per_million": 2.606, + "new_cases_smoothed_per_million": 2.518, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.43 + }, + { + "date": "2020-05-01", + "total_cases": 746.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.344, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.971, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.43 + }, + { + "date": "2020-05-02", + "total_cases": 769.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.869, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 2.277, + "total_deaths_per_million": 1.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.43 + }, + { + "date": "2020-05-03", + "total_cases": 795.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.143, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 121.854, + "new_cases_per_million": 3.985, + "new_cases_smoothed_per_million": 2.474, + "total_deaths_per_million": 1.533, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 88.43 + }, + { + "date": "2020-05-04", + "total_cases": 830.0, + "new_cases": 35.0, + "new_cases_smoothed": 19.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 127.219, + "new_cases_per_million": 5.365, + "new_cases_smoothed_per_million": 2.956, + "total_deaths_per_million": 1.533, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 85.65 + }, + { + "date": "2020-05-05", + "total_cases": 843.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.286, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 129.211, + "new_cases_per_million": 1.993, + "new_cases_smoothed_per_million": 2.956, + "total_deaths_per_million": 1.686, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 85.65 + }, + { + "date": "2020-05-06", + "total_cases": 871.0, + "new_cases": 28.0, + "new_cases_smoothed": 20.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 133.503, + "new_cases_per_million": 4.292, + "new_cases_smoothed_per_million": 3.109, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 85.65 + }, + { + "date": "2020-05-07", + "total_cases": 895.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 137.182, + "new_cases_per_million": 3.679, + "new_cases_smoothed_per_million": 3.263, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 85.65 + }, + { + "date": "2020-05-08", + "total_cases": 906.0, + "new_cases": 11.0, + "new_cases_smoothed": 22.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 138.868, + "new_cases_per_million": 1.686, + "new_cases_smoothed_per_million": 3.503, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 85.65 + }, + { + "date": "2020-05-09", + "total_cases": 931.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 142.7, + "new_cases_per_million": 3.832, + "new_cases_smoothed_per_million": 3.547, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 85.65 + }, + { + "date": "2020-05-10", + "total_cases": 1002.0, + "new_cases": 71.0, + "new_cases_smoothed": 29.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 153.582, + "new_cases_per_million": 10.883, + "new_cases_smoothed_per_million": 4.533, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 85.65 + }, + { + "date": "2020-05-11", + "total_cases": 1016.0, + "new_cases": 14.0, + "new_cases_smoothed": 26.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 155.728, + "new_cases_per_million": 2.146, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 81.94 + }, + { + "date": "2020-05-12", + "total_cases": 1037.0, + "new_cases": 21.0, + "new_cases_smoothed": 27.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 158.947, + "new_cases_per_million": 3.219, + "new_cases_smoothed_per_million": 4.248, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 81.94 + }, + { + "date": "2020-05-13", + "total_cases": 1044.0, + "new_cases": 7.0, + "new_cases_smoothed": 24.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.02, + "new_cases_per_million": 1.073, + "new_cases_smoothed_per_million": 3.788, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-14", + "total_cases": 1082.0, + "new_cases": 38.0, + "new_cases_smoothed": 26.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.844, + "new_cases_per_million": 5.824, + "new_cases_smoothed_per_million": 4.095, + "total_deaths_per_million": 1.839, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.94 + }, + { + "date": "2020-05-15", + "total_cases": 1111.0, + "new_cases": 29.0, + "new_cases_smoothed": 29.286, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 170.289, + "new_cases_per_million": 4.445, + "new_cases_smoothed_per_million": 4.489, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 81.94 + }, + { + "date": "2020-05-16", + "total_cases": 1117.0, + "new_cases": 6.0, + "new_cases_smoothed": 26.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 171.209, + "new_cases_per_million": 0.92, + "new_cases_smoothed_per_million": 4.073, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-17", + "total_cases": 1138.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 174.428, + "new_cases_per_million": 3.219, + "new_cases_smoothed_per_million": 2.978, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-18", + "total_cases": 1216.0, + "new_cases": 78.0, + "new_cases_smoothed": 28.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 186.383, + "new_cases_per_million": 11.956, + "new_cases_smoothed_per_million": 4.379, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-19", + "total_cases": 1243.0, + "new_cases": 27.0, + "new_cases_smoothed": 29.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 190.522, + "new_cases_per_million": 4.138, + "new_cases_smoothed_per_million": 4.511, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-20", + "total_cases": 1270.0, + "new_cases": 27.0, + "new_cases_smoothed": 32.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 194.66, + "new_cases_per_million": 4.138, + "new_cases_smoothed_per_million": 4.949, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-21", + "total_cases": 1313.0, + "new_cases": 43.0, + "new_cases_smoothed": 33.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 201.251, + "new_cases_per_million": 6.591, + "new_cases_smoothed_per_million": 5.058, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 84.72 + }, + { + "date": "2020-05-22", + "total_cases": 1350.0, + "new_cases": 37.0, + "new_cases_smoothed": 34.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.922, + "new_cases_per_million": 5.671, + "new_cases_smoothed_per_million": 5.233, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.72 + }, + { + "date": "2020-05-23", + "total_cases": 1364.0, + "new_cases": 14.0, + "new_cases_smoothed": 35.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 209.068, + "new_cases_per_million": 2.146, + "new_cases_smoothed_per_million": 5.408, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.72 + }, + { + "date": "2020-05-24", + "total_cases": 1403.0, + "new_cases": 39.0, + "new_cases_smoothed": 37.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 215.046, + "new_cases_per_million": 5.978, + "new_cases_smoothed_per_million": 5.803, + "total_deaths_per_million": 2.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-05-25", + "total_cases": 1433.0, + "new_cases": 30.0, + "new_cases_smoothed": 31.0, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 219.644, + "new_cases_per_million": 4.598, + "new_cases_smoothed_per_million": 4.752, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-26", + "total_cases": 1468.0, + "new_cases": 35.0, + "new_cases_smoothed": 32.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 225.009, + "new_cases_per_million": 5.365, + "new_cases_smoothed_per_million": 4.927, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-27", + "total_cases": 1520.0, + "new_cases": 52.0, + "new_cases_smoothed": 35.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 232.979, + "new_cases_per_million": 7.97, + "new_cases_smoothed_per_million": 5.474, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-28", + "total_cases": 1594.0, + "new_cases": 74.0, + "new_cases_smoothed": 40.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 244.321, + "new_cases_per_million": 11.342, + "new_cases_smoothed_per_million": 6.153, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-29", + "total_cases": 1662.0, + "new_cases": 68.0, + "new_cases_smoothed": 44.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.744, + "new_cases_per_million": 10.423, + "new_cases_smoothed_per_million": 6.832, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-30", + "total_cases": 1722.0, + "new_cases": 60.0, + "new_cases_smoothed": 51.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 263.941, + "new_cases_per_million": 9.197, + "new_cases_smoothed_per_million": 7.839, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-05-31", + "total_cases": 1748.0, + "new_cases": 26.0, + "new_cases_smoothed": 49.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 267.926, + "new_cases_per_million": 3.985, + "new_cases_smoothed_per_million": 7.554, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "stringency_index": 79.17 + }, + { + "date": "2020-06-01", + "total_cases": 1817.0, + "new_cases": 69.0, + "new_cases_smoothed": 54.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.502, + "new_cases_per_million": 10.576, + "new_cases_smoothed_per_million": 8.408, + "total_deaths_per_million": 2.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.17 + }, + { + "date": "2020-06-02", + "total_cases": 1845.0, + "new_cases": 28.0, + "new_cases_smoothed": 53.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 282.794, + "new_cases_per_million": 4.292, + "new_cases_smoothed_per_million": 8.255, + "total_deaths_per_million": 2.606, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 79.17 + }, + { + "date": "2020-06-03", + "total_cases": 1871.0, + "new_cases": 26.0, + "new_cases_smoothed": 50.143, + "total_deaths": 20.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 286.779, + "new_cases_per_million": 3.985, + "new_cases_smoothed_per_million": 7.686, + "total_deaths_per_million": 3.066, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-04", + "total_cases": 1899.0, + "new_cases": 28.0, + "new_cases_smoothed": 43.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 291.071, + "new_cases_per_million": 4.292, + "new_cases_smoothed_per_million": 6.678, + "total_deaths_per_million": 3.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-05", + "total_cases": 1936.0, + "new_cases": 37.0, + "new_cases_smoothed": 39.143, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 296.742, + "new_cases_per_million": 5.671, + "new_cases_smoothed_per_million": 6.0, + "total_deaths_per_million": 3.372, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-06", + "total_cases": 1974.0, + "new_cases": 38.0, + "new_cases_smoothed": 36.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 302.566, + "new_cases_per_million": 5.824, + "new_cases_smoothed_per_million": 5.518, + "total_deaths_per_million": 3.372, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-07", + "total_cases": 2007.0, + "new_cases": 33.0, + "new_cases_smoothed": 37.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 307.624, + "new_cases_per_million": 5.058, + "new_cases_smoothed_per_million": 5.671, + "total_deaths_per_million": 3.372, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-08", + "total_cases": 2032.0, + "new_cases": 25.0, + "new_cases_smoothed": 30.714, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 311.456, + "new_cases_per_million": 3.832, + "new_cases_smoothed_per_million": 4.708, + "total_deaths_per_million": 3.525, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 76.39 + }, + { + "date": "2020-06-09", + "total_cases": 2055.0, + "new_cases": 23.0, + "new_cases_smoothed": 30.0, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 314.982, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 4.598, + "total_deaths_per_million": 3.679, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 76.39 + }, + { + "date": "2020-06-10", + "total_cases": 2093.0, + "new_cases": 38.0, + "new_cases_smoothed": 31.714, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 320.806, + "new_cases_per_million": 5.824, + "new_cases_smoothed_per_million": 4.861, + "total_deaths_per_million": 3.985, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-11", + "total_cases": 2129.0, + "new_cases": 36.0, + "new_cases_smoothed": 32.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 326.324, + "new_cases_per_million": 5.518, + "new_cases_smoothed_per_million": 5.036, + "total_deaths_per_million": 3.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-12", + "total_cases": 2166.0, + "new_cases": 37.0, + "new_cases_smoothed": 32.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 331.995, + "new_cases_per_million": 5.671, + "new_cases_smoothed_per_million": 5.036, + "total_deaths_per_million": 3.985, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-13", + "total_cases": 2207.0, + "new_cases": 41.0, + "new_cases_smoothed": 33.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 338.279, + "new_cases_per_million": 6.284, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 4.138, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 76.39 + }, + { + "date": "2020-06-14", + "total_cases": 2285.0, + "new_cases": 78.0, + "new_cases_smoothed": 39.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 350.235, + "new_cases_per_million": 11.956, + "new_cases_smoothed_per_million": 6.087, + "total_deaths_per_million": 4.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 76.39 + }, + { + "date": "2020-06-15", + "total_cases": 2372.0, + "new_cases": 87.0, + "new_cases_smoothed": 48.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 363.57, + "new_cases_per_million": 13.335, + "new_cases_smoothed_per_million": 7.445, + "total_deaths_per_million": 4.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-16", + "total_cases": 2472.0, + "new_cases": 100.0, + "new_cases_smoothed": 59.571, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 378.898, + "new_cases_per_million": 15.328, + "new_cases_smoothed_per_million": 9.131, + "total_deaths_per_million": 4.292, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-17", + "total_cases": 2562.0, + "new_cases": 90.0, + "new_cases_smoothed": 67.0, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 392.692, + "new_cases_per_million": 13.795, + "new_cases_smoothed_per_million": 10.269, + "total_deaths_per_million": 4.598, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 76.39 + }, + { + "date": "2020-06-18", + "total_cases": 2657.0, + "new_cases": 95.0, + "new_cases_smoothed": 75.429, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 407.254, + "new_cases_per_million": 14.561, + "new_cases_smoothed_per_million": 11.561, + "total_deaths_per_million": 4.752, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 76.39 + }, + { + "date": "2020-06-19", + "total_cases": 2789.0, + "new_cases": 132.0, + "new_cases_smoothed": 89.0, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 427.486, + "new_cases_per_million": 20.232, + "new_cases_smoothed_per_million": 13.642, + "total_deaths_per_million": 4.905, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 76.39 + }, + { + "date": "2020-06-20", + "total_cases": 2981.0, + "new_cases": 192.0, + "new_cases_smoothed": 110.571, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 456.915, + "new_cases_per_million": 29.429, + "new_cases_smoothed_per_million": 16.948, + "total_deaths_per_million": 5.365, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 73.61 + }, + { + "date": "2020-06-21", + "total_cases": 3151.0, + "new_cases": 170.0, + "new_cases_smoothed": 123.714, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 482.972, + "new_cases_per_million": 26.057, + "new_cases_smoothed_per_million": 18.962, + "total_deaths_per_million": 5.671, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.219, + "stringency_index": 73.61 + }, + { + "date": "2020-06-22", + "total_cases": 3356.0, + "new_cases": 205.0, + "new_cases_smoothed": 140.571, + "total_deaths": 40.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 514.393, + "new_cases_per_million": 31.422, + "new_cases_smoothed_per_million": 21.546, + "total_deaths_per_million": 6.131, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.285, + "stringency_index": 73.61 + }, + { + "date": "2020-06-23", + "total_cases": 3519.0, + "new_cases": 163.0, + "new_cases_smoothed": 149.571, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 539.377, + "new_cases_per_million": 24.984, + "new_cases_smoothed_per_million": 22.926, + "total_deaths_per_million": 6.284, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.285, + "stringency_index": 73.61 + }, + { + "date": "2020-06-24", + "total_cases": 3726.0, + "new_cases": 207.0, + "new_cases_smoothed": 166.286, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 571.105, + "new_cases_per_million": 31.728, + "new_cases_smoothed_per_million": 25.488, + "total_deaths_per_million": 6.438, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.263, + "stringency_index": 73.61 + }, + { + "date": "2020-06-25", + "total_cases": 3954.0, + "new_cases": 228.0, + "new_cases_smoothed": 185.286, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 606.052, + "new_cases_per_million": 34.947, + "new_cases_smoothed_per_million": 28.4, + "total_deaths_per_million": 6.591, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.263, + "stringency_index": 73.61 + }, + { + "date": "2020-06-26", + "total_cases": 4204.0, + "new_cases": 250.0, + "new_cases_smoothed": 202.143, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 644.371, + "new_cases_per_million": 38.319, + "new_cases_smoothed_per_million": 30.984, + "total_deaths_per_million": 6.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 73.61 + }, + { + "date": "2020-06-27", + "total_cases": 4513.0, + "new_cases": 309.0, + "new_cases_smoothed": 218.857, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 691.733, + "new_cases_per_million": 47.362, + "new_cases_smoothed_per_million": 33.545, + "total_deaths_per_million": 7.051, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 76.39 + }, + { + "date": "2020-06-28", + "total_cases": 4748.0, + "new_cases": 235.0, + "new_cases_smoothed": 228.143, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 727.753, + "new_cases_per_million": 36.02, + "new_cases_smoothed_per_million": 34.969, + "total_deaths_per_million": 7.204, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.219, + "stringency_index": 76.39 + }, + { + "date": "2020-06-29", + "total_cases": 5017.0, + "new_cases": 269.0, + "new_cases_smoothed": 237.286, + "total_deaths": 50.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 768.984, + "new_cases_per_million": 41.231, + "new_cases_smoothed_per_million": 36.37, + "total_deaths_per_million": 7.664, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.219, + "stringency_index": 76.39 + }, + { + "date": "2020-06-30", + "total_cases": 5296.0, + "new_cases": 279.0, + "new_cases_smoothed": 253.857, + "total_deaths": 57.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 811.748, + "new_cases_per_million": 42.764, + "new_cases_smoothed_per_million": 38.91, + "total_deaths_per_million": 8.737, + "new_deaths_per_million": 1.073, + "new_deaths_smoothed_per_million": 0.35, + "stringency_index": 76.39 + }, + { + "date": "2020-07-01", + "total_cases": 5735.0, + "new_cases": 439.0, + "new_cases_smoothed": 287.0, + "total_deaths": 62.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 879.036, + "new_cases_per_million": 67.288, + "new_cases_smoothed_per_million": 43.99, + "total_deaths_per_million": 9.503, + "new_deaths_per_million": 0.766, + "new_deaths_smoothed_per_million": 0.438, + "stringency_index": 76.39 + }, + { + "date": "2020-07-02", + "total_cases": 5735.0, + "new_cases": 0.0, + "new_cases_smoothed": 254.429, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 879.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.998, + "total_deaths_per_million": 9.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.416, + "stringency_index": 76.39 + }, + { + "date": "2020-07-03", + "total_cases": 6767.0, + "new_cases": 1032.0, + "new_cases_smoothed": 366.143, + "total_deaths": 76.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1037.217, + "new_cases_per_million": 158.181, + "new_cases_smoothed_per_million": 56.121, + "total_deaths_per_million": 11.649, + "new_deaths_per_million": 2.146, + "new_deaths_smoothed_per_million": 0.723, + "stringency_index": 76.39 + }, + { + "date": "2020-07-04", + "total_cases": 7094.0, + "new_cases": 327.0, + "new_cases_smoothed": 368.714, + "total_deaths": 78.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1087.338, + "new_cases_per_million": 50.121, + "new_cases_smoothed_per_million": 56.515, + "total_deaths_per_million": 11.956, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.701, + "stringency_index": 76.39 + }, + { + "date": "2020-07-05", + "total_cases": 7377.0, + "new_cases": 283.0, + "new_cases_smoothed": 375.571, + "total_deaths": 88.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1130.715, + "new_cases_per_million": 43.377, + "new_cases_smoothed_per_million": 57.566, + "total_deaths_per_million": 13.488, + "new_deaths_per_million": 1.533, + "new_deaths_smoothed_per_million": 0.898, + "stringency_index": 76.39 + }, + { + "date": "2020-07-06", + "total_cases": 7691.0, + "new_cases": 314.0, + "new_cases_smoothed": 382.0, + "total_deaths": 92.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1178.843, + "new_cases_per_million": 48.129, + "new_cases_smoothed_per_million": 58.551, + "total_deaths_per_million": 14.101, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 0.92, + "stringency_index": 76.39 + }, + { + "date": "2020-07-07", + "total_cases": 8141.0, + "new_cases": 450.0, + "new_cases_smoothed": 406.429, + "total_deaths": 99.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1247.818, + "new_cases_per_million": 68.974, + "new_cases_smoothed_per_million": 62.296, + "total_deaths_per_million": 15.174, + "new_deaths_per_million": 1.073, + "new_deaths_smoothed_per_million": 0.92, + "stringency_index": 76.39 + }, + { + "date": "2020-07-08", + "total_cases": 8486.0, + "new_cases": 345.0, + "new_cases_smoothed": 393.0, + "total_deaths": 112.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1300.698, + "new_cases_per_million": 52.88, + "new_cases_smoothed_per_million": 60.237, + "total_deaths_per_million": 17.167, + "new_deaths_per_million": 1.993, + "new_deaths_smoothed_per_million": 1.095, + "stringency_index": 76.39 + }, + { + "date": "2020-07-09", + "total_cases": 8847.0, + "new_cases": 361.0, + "new_cases_smoothed": 444.571, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1356.03, + "new_cases_per_million": 55.333, + "new_cases_smoothed_per_million": 68.142, + "total_deaths_per_million": 17.78, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 1.182, + "stringency_index": 76.39 + }, + { + "date": "2020-07-10", + "total_cases": 9358.0, + "new_cases": 511.0, + "new_cases_smoothed": 370.143, + "total_deaths": 122.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1434.354, + "new_cases_per_million": 78.324, + "new_cases_smoothed_per_million": 56.734, + "total_deaths_per_million": 18.7, + "new_deaths_per_million": 0.92, + "new_deaths_smoothed_per_million": 1.007, + "stringency_index": 76.39 + }, + { + "date": "2020-07-11", + "total_cases": 9910.0, + "new_cases": 552.0, + "new_cases_smoothed": 402.286, + "total_deaths": 125.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1518.962, + "new_cases_per_million": 84.608, + "new_cases_smoothed_per_million": 61.661, + "total_deaths_per_million": 19.159, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 1.029, + "stringency_index": 76.39 + }, + { + "date": "2020-07-12", + "total_cases": 10629.0, + "new_cases": 719.0, + "new_cases_smoothed": 464.571, + "total_deaths": 132.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1629.168, + "new_cases_per_million": 110.205, + "new_cases_smoothed_per_million": 71.208, + "total_deaths_per_million": 20.232, + "new_deaths_per_million": 1.073, + "new_deaths_smoothed_per_million": 0.963, + "stringency_index": 76.39 + }, + { + "date": "2020-07-13", + "total_cases": 11117.0, + "new_cases": 488.0, + "new_cases_smoothed": 489.429, + "total_deaths": 147.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1703.966, + "new_cases_per_million": 74.799, + "new_cases_smoothed_per_million": 75.018, + "total_deaths_per_million": 22.532, + "new_deaths_per_million": 2.299, + "new_deaths_smoothed_per_million": 1.204, + "stringency_index": 76.39 + }, + { + "date": "2020-07-14", + "total_cases": 11538.0, + "new_cases": 421.0, + "new_cases_smoothed": 485.286, + "total_deaths": 149.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1768.495, + "new_cases_per_million": 64.529, + "new_cases_smoothed_per_million": 74.383, + "total_deaths_per_million": 22.838, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 1.095, + "stringency_index": 76.39 + }, + { + "date": "2020-07-15", + "total_cases": 11977.0, + "new_cases": 439.0, + "new_cases_smoothed": 498.714, + "total_deaths": 160.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1835.783, + "new_cases_per_million": 67.288, + "new_cases_smoothed_per_million": 76.441, + "total_deaths_per_million": 24.524, + "new_deaths_per_million": 1.686, + "new_deaths_smoothed_per_million": 1.051, + "stringency_index": 76.39 + }, + { + "date": "2020-07-16", + "total_cases": 12498.0, + "new_cases": 521.0, + "new_cases_smoothed": 521.571, + "total_deaths": 167.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1915.64, + "new_cases_per_million": 79.857, + "new_cases_smoothed_per_million": 79.944, + "total_deaths_per_million": 25.597, + "new_deaths_per_million": 1.073, + "new_deaths_smoothed_per_million": 1.117, + "stringency_index": 76.39 + }, + { + "date": "2020-07-17", + "total_cases": 13101.0, + "new_cases": 603.0, + "new_cases_smoothed": 534.714, + "total_deaths": 172.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2008.065, + "new_cases_per_million": 92.425, + "new_cases_smoothed_per_million": 81.959, + "total_deaths_per_million": 26.363, + "new_deaths_per_million": 0.766, + "new_deaths_smoothed_per_million": 1.095, + "stringency_index": 76.39 + }, + { + "date": "2020-07-18", + "total_cases": 24606.0, + "new_cases": 11505.0, + "new_cases_smoothed": 2099.429, + "total_deaths": 900.0, + "new_deaths": 728.0, + "new_deaths_smoothed": 110.714, + "total_cases_per_million": 3771.502, + "new_cases_per_million": 1763.437, + "new_cases_smoothed_per_million": 321.791, + "total_deaths_per_million": 137.948, + "new_deaths_per_million": 111.585, + "new_deaths_smoothed_per_million": 16.97, + "stringency_index": 76.39 + }, + { + "date": "2020-07-19", + "total_cases": 26532.0, + "new_cases": 1926.0, + "new_cases_smoothed": 2271.857, + "total_deaths": 1003.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 124.429, + "total_cases_per_million": 4066.711, + "new_cases_per_million": 295.209, + "new_cases_smoothed_per_million": 348.221, + "total_deaths_per_million": 153.736, + "new_deaths_per_million": 15.787, + "new_deaths_smoothed_per_million": 19.072, + "stringency_index": 76.39 + }, + { + "date": "2020-07-20", + "total_cases": 27143.0, + "new_cases": 611.0, + "new_cases_smoothed": 2289.429, + "total_deaths": 1037.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 127.143, + "total_cases_per_million": 4160.363, + "new_cases_per_million": 93.651, + "new_cases_smoothed_per_million": 350.914, + "total_deaths_per_million": 158.947, + "new_deaths_per_million": 5.211, + "new_deaths_smoothed_per_million": 19.488, + "stringency_index": 76.39 + }, + { + "date": "2020-07-21", + "total_cases": 28251.0, + "new_cases": 1108.0, + "new_cases_smoothed": 2387.571, + "total_deaths": 1079.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 132.857, + "total_cases_per_million": 4330.192, + "new_cases_per_million": 169.829, + "new_cases_smoothed_per_million": 365.957, + "total_deaths_per_million": 165.384, + "new_deaths_per_million": 6.438, + "new_deaths_smoothed_per_million": 20.364, + "stringency_index": 76.39 + }, + { + "date": "2020-07-22", + "total_cases": 29359.0, + "new_cases": 1108.0, + "new_cases_smoothed": 2483.143, + "total_deaths": 1123.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 137.571, + "total_cases_per_million": 4500.022, + "new_cases_per_million": 169.829, + "new_cases_smoothed_per_million": 380.605, + "total_deaths_per_million": 172.129, + "new_deaths_per_million": 6.744, + "new_deaths_smoothed_per_million": 21.086, + "stringency_index": 76.39 + }, + { + "date": "2020-07-23", + "total_cases": 30326.0, + "new_cases": 967.0, + "new_cases_smoothed": 2546.857, + "total_deaths": 1169.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 143.143, + "total_cases_per_million": 4648.239, + "new_cases_per_million": 148.218, + "new_cases_smoothed_per_million": 390.371, + "total_deaths_per_million": 179.179, + "new_deaths_per_million": 7.051, + "new_deaths_smoothed_per_million": 21.94, + "stringency_index": 76.39 + }, + { + "date": "2020-07-24", + "total_cases": 31247.0, + "new_cases": 921.0, + "new_cases_smoothed": 2592.286, + "total_deaths": 1211.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 148.429, + "total_cases_per_million": 4789.406, + "new_cases_per_million": 141.167, + "new_cases_smoothed_per_million": 397.334, + "total_deaths_per_million": 185.617, + "new_deaths_per_million": 6.438, + "new_deaths_smoothed_per_million": 22.75, + "stringency_index": 76.39 + }, + { + "date": "2020-07-25", + "total_cases": 31564.0, + "new_cases": 317.0, + "new_cases_smoothed": 994.0, + "total_deaths": 1249.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 49.857, + "total_cases_per_million": 4837.994, + "new_cases_per_million": 48.588, + "new_cases_smoothed_per_million": 152.356, + "total_deaths_per_million": 191.441, + "new_deaths_per_million": 5.824, + "new_deaths_smoothed_per_million": 7.642, + "stringency_index": 76.39 + }, + { + "date": "2020-07-26", + "total_cases": 32813.0, + "new_cases": 1249.0, + "new_cases_smoothed": 897.286, + "total_deaths": 1277.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 5029.436, + "new_cases_per_million": 191.441, + "new_cases_smoothed_per_million": 137.532, + "total_deaths_per_million": 195.733, + "new_deaths_per_million": 4.292, + "new_deaths_smoothed_per_million": 6.0, + "stringency_index": 76.39 + }, + { + "date": "2020-07-27", + "total_cases": 33296.0, + "new_cases": 483.0, + "new_cases_smoothed": 879.0, + "total_deaths": 1301.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 5103.468, + "new_cases_per_million": 74.032, + "new_cases_smoothed_per_million": 134.729, + "total_deaths_per_million": 199.412, + "new_deaths_per_million": 3.679, + "new_deaths_smoothed_per_million": 5.781, + "stringency_index": 76.39 + }, + { + "date": "2020-07-28", + "total_cases": 33844.0, + "new_cases": 548.0, + "new_cases_smoothed": 799.0, + "total_deaths": 1329.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 5187.463, + "new_cases_per_million": 83.995, + "new_cases_smoothed_per_million": 122.467, + "total_deaths_per_million": 203.703, + "new_deaths_per_million": 4.292, + "new_deaths_smoothed_per_million": 5.474, + "stringency_index": 76.39 + }, + { + "date": "2020-07-29", + "total_cases": 34592.0, + "new_cases": 748.0, + "new_cases_smoothed": 747.571, + "total_deaths": 1347.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 5302.113, + "new_cases_per_million": 114.65, + "new_cases_smoothed_per_million": 114.585, + "total_deaths_per_million": 206.462, + "new_deaths_per_million": 2.759, + "new_deaths_smoothed_per_million": 4.905, + "stringency_index": 76.39 + }, + { + "date": "2020-07-30", + "total_cases": 35223.0, + "new_cases": 631.0, + "new_cases_smoothed": 699.571, + "total_deaths": 1364.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 5398.83, + "new_cases_per_million": 96.717, + "new_cases_smoothed_per_million": 107.227, + "total_deaths_per_million": 209.068, + "new_deaths_per_million": 2.606, + "new_deaths_smoothed_per_million": 4.27, + "stringency_index": 76.39 + }, + { + "date": "2020-07-31", + "total_cases": 35805.0, + "new_cases": 582.0, + "new_cases_smoothed": 651.143, + "total_deaths": 1378.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 5488.037, + "new_cases_per_million": 89.206, + "new_cases_smoothed_per_million": 99.804, + "total_deaths_per_million": 211.214, + "new_deaths_per_million": 2.146, + "new_deaths_smoothed_per_million": 3.657, + "stringency_index": 79.17 + }, + { + "date": "2020-08-01", + "total_cases": 36299.0, + "new_cases": 494.0, + "new_cases_smoothed": 676.429, + "total_deaths": 1397.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 5563.755, + "new_cases_per_million": 75.718, + "new_cases_smoothed_per_million": 103.68, + "total_deaths_per_million": 214.126, + "new_deaths_per_million": 2.912, + "new_deaths_smoothed_per_million": 3.241, + "stringency_index": 79.17 + }, + { + "date": "2020-08-02", + "total_cases": 36719.0, + "new_cases": 420.0, + "new_cases_smoothed": 558.0, + "total_deaths": 1409.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 5628.131, + "new_cases_per_million": 64.376, + "new_cases_smoothed_per_million": 85.528, + "total_deaths_per_million": 215.965, + "new_deaths_per_million": 1.839, + "new_deaths_smoothed_per_million": 2.89, + "stringency_index": 79.17 + }, + { + "date": "2020-08-03", + "total_cases": 37129.0, + "new_cases": 410.0, + "new_cases_smoothed": 547.571, + "total_deaths": 1420.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 5690.974, + "new_cases_per_million": 62.843, + "new_cases_smoothed_per_million": 83.929, + "total_deaths_per_million": 217.652, + "new_deaths_per_million": 1.686, + "new_deaths_smoothed_per_million": 2.606, + "stringency_index": 79.17 + }, + { + "date": "2020-08-04", + "total_cases": 37541.0, + "new_cases": 412.0, + "new_cases_smoothed": 528.143, + "total_deaths": 1427.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 5754.123, + "new_cases_per_million": 63.15, + "new_cases_smoothed_per_million": 80.951, + "total_deaths_per_million": 218.724, + "new_deaths_per_million": 1.073, + "new_deaths_smoothed_per_million": 2.146, + "stringency_index": 79.17 + }, + { + "date": "2020-08-05", + "total_cases": 38110.0, + "new_cases": 569.0, + "new_cases_smoothed": 502.571, + "total_deaths": 1438.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 5841.337, + "new_cases_per_million": 87.214, + "new_cases_smoothed_per_million": 77.032, + "total_deaths_per_million": 220.41, + "new_deaths_per_million": 1.686, + "new_deaths_smoothed_per_million": 1.993, + "stringency_index": 79.17 + }, + { + "date": "2020-08-06", + "total_cases": 38659.0, + "new_cases": 549.0, + "new_cases_smoothed": 490.857, + "total_deaths": 1447.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 5925.486, + "new_cases_per_million": 84.148, + "new_cases_smoothed_per_million": 75.236, + "total_deaths_per_million": 221.79, + "new_deaths_per_million": 1.379, + "new_deaths_smoothed_per_million": 1.817, + "stringency_index": 79.17 + }, + { + "date": "2020-08-07", + "total_cases": 39162.0, + "new_cases": 503.0, + "new_cases_smoothed": 479.571, + "total_deaths": 1451.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 6002.583, + "new_cases_per_million": 77.098, + "new_cases_smoothed_per_million": 73.507, + "total_deaths_per_million": 222.403, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 1.598, + "stringency_index": 79.17 + }, + { + "date": "2020-08-08", + "total_cases": 39587.0, + "new_cases": 425.0, + "new_cases_smoothed": 469.714, + "total_deaths": 1460.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 6067.725, + "new_cases_per_million": 65.142, + "new_cases_smoothed_per_million": 71.996, + "total_deaths_per_million": 223.783, + "new_deaths_per_million": 1.379, + "new_deaths_smoothed_per_million": 1.379, + "stringency_index": 79.17 + }, + { + "date": "2020-08-09", + "total_cases": 39919.0, + "new_cases": 332.0, + "new_cases_smoothed": 457.143, + "total_deaths": 1468.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 6118.613, + "new_cases_per_million": 50.888, + "new_cases_smoothed_per_million": 70.069, + "total_deaths_per_million": 225.009, + "new_deaths_per_million": 1.226, + "new_deaths_smoothed_per_million": 1.292, + "stringency_index": 79.17 + }, + { + "date": "2020-08-10", + "total_cases": 40177.0, + "new_cases": 258.0, + "new_cases_smoothed": 435.429, + "total_deaths": 1474.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6158.158, + "new_cases_per_million": 39.545, + "new_cases_smoothed_per_million": 66.741, + "total_deaths_per_million": 225.928, + "new_deaths_per_million": 0.92, + "new_deaths_smoothed_per_million": 1.182, + "stringency_index": 79.17 + }, + { + "date": "2020-08-11", + "total_cases": 40455.0, + "new_cases": 278.0, + "new_cases_smoothed": 416.286, + "total_deaths": 1478.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 6200.769, + "new_cases_per_million": 42.611, + "new_cases_smoothed_per_million": 63.806, + "total_deaths_per_million": 226.541, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 1.117, + "stringency_index": 79.17 + }, + { + "date": "2020-08-12", + "total_cases": 40759.0, + "new_cases": 304.0, + "new_cases_smoothed": 378.429, + "total_deaths": 1484.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 6247.365, + "new_cases_per_million": 46.596, + "new_cases_smoothed_per_million": 58.004, + "total_deaths_per_million": 227.461, + "new_deaths_per_million": 0.92, + "new_deaths_smoothed_per_million": 1.007, + "stringency_index": 79.17 + }, + { + "date": "2020-08-13", + "total_cases": 40759.0, + "new_cases": 0.0, + "new_cases_smoothed": 300.0, + "total_deaths": 1484.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 6247.365, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 45.983, + "total_deaths_per_million": 227.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.81, + "stringency_index": 79.17 + }, + { + "date": "2020-08-14", + "total_cases": 41069.0, + "new_cases": 310.0, + "new_cases_smoothed": 272.429, + "total_deaths": 1487.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6294.88, + "new_cases_per_million": 47.515, + "new_cases_smoothed_per_million": 41.757, + "total_deaths_per_million": 227.921, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.788, + "stringency_index": 75.46 + }, + { + "date": "2020-08-15", + "total_cases": 41373.0, + "new_cases": 304.0, + "new_cases_smoothed": 255.143, + "total_deaths": 1491.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 6341.476, + "new_cases_per_million": 46.596, + "new_cases_smoothed_per_million": 39.107, + "total_deaths_per_million": 228.534, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 0.679, + "stringency_index": 75.46 + }, + { + "date": "2020-08-16", + "total_cases": 41856.0, + "new_cases": 483.0, + "new_cases_smoothed": 276.714, + "total_deaths": 1495.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 6415.508, + "new_cases_per_million": 74.032, + "new_cases_smoothed_per_million": 42.414, + "total_deaths_per_million": 229.147, + "new_deaths_per_million": 0.613, + "new_deaths_smoothed_per_million": 0.591, + "stringency_index": 75.46 + }, + { + "date": "2020-08-17", + "total_cases": 41991.0, + "new_cases": 135.0, + "new_cases_smoothed": 259.143, + "total_deaths": 1496.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 6436.2, + "new_cases_per_million": 20.692, + "new_cases_smoothed_per_million": 39.72, + "total_deaths_per_million": 229.3, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.482, + "stringency_index": 75.46 + }, + { + "date": "2020-08-18", + "total_cases": 42146.0, + "new_cases": 155.0, + "new_cases_smoothed": 241.571, + "total_deaths": 1498.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6459.958, + "new_cases_per_million": 23.758, + "new_cases_smoothed_per_million": 37.027, + "total_deaths_per_million": 229.607, + "new_deaths_per_million": 0.307, + "new_deaths_smoothed_per_million": 0.438, + "stringency_index": 75.46 + }, + { + "date": "2020-08-19", + "total_cases": 42146.0, + "new_cases": 0.0, + "new_cases_smoothed": 198.143, + "total_deaths": 1498.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6459.958, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.37, + "total_deaths_per_million": 229.607, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 75.46 + }, + { + "date": "2020-08-20", + "total_cases": 42325.0, + "new_cases": 179.0, + "new_cases_smoothed": 223.714, + "total_deaths": 1498.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6487.394, + "new_cases_per_million": 27.436, + "new_cases_smoothed_per_million": 34.29, + "total_deaths_per_million": 229.607, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 75.46 + }, + { + "date": "2020-08-21", + "total_cases": 42703.0, + "new_cases": 378.0, + "new_cases_smoothed": 233.429, + "total_deaths": 1499.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6545.333, + "new_cases_per_million": 57.938, + "new_cases_smoothed_per_million": 35.779, + "total_deaths_per_million": 229.76, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.263, + "stringency_index": 75.46 + }, + { + "date": "2020-08-22", + "total_cases": 42703.0, + "new_cases": 0.0, + "new_cases_smoothed": 190.0, + "total_deaths": 1499.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6545.333, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 229.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 75.46 + }, + { + "date": "2020-08-23", + "total_cases": 42889.0, + "new_cases": 186.0, + "new_cases_smoothed": 147.571, + "total_deaths": 1500.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6573.842, + "new_cases_per_million": 28.509, + "new_cases_smoothed_per_million": 22.619, + "total_deaths_per_million": 229.914, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 75.46 + }, + { + "date": "2020-08-24", + "total_cases": 43126.0, + "new_cases": 237.0, + "new_cases_smoothed": 162.143, + "total_deaths": 1057.0, + "new_deaths": -443.0, + "new_deaths_smoothed": -62.714, + "total_cases_per_million": 6610.168, + "new_cases_per_million": 36.326, + "new_cases_smoothed_per_million": 24.853, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": -67.901, + "new_deaths_smoothed_per_million": -9.613, + "stringency_index": 72.69 + }, + { + "date": "2020-08-25", + "total_cases": 43245.0, + "new_cases": 119.0, + "new_cases_smoothed": 157.0, + "total_deaths": 1057.0, + "new_deaths": 0.0, + "new_deaths_smoothed": -63.0, + "total_cases_per_million": 6628.408, + "new_cases_per_million": 18.24, + "new_cases_smoothed_per_million": 24.064, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": -9.656 + }, + { + "date": "2020-08-26", + "total_cases": 43358.0, + "new_cases": 113.0, + "new_cases_smoothed": 173.143, + "total_deaths": 1057.0, + "new_deaths": 0.0, + "new_deaths_smoothed": -63.0, + "total_cases_per_million": 6645.728, + "new_cases_per_million": 17.32, + "new_cases_smoothed_per_million": 26.539, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": -9.656 + }, + { + "date": "2020-08-27", + "total_cases": 43459.0, + "new_cases": 101.0, + "new_cases_smoothed": 162.0, + "total_deaths": 1057.0, + "new_deaths": 0.0, + "new_deaths_smoothed": -63.0, + "total_cases_per_million": 6661.209, + "new_cases_per_million": 15.481, + "new_cases_smoothed_per_million": 24.831, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": -9.656 + }, + { + "date": "2020-08-28", + "total_cases": 43587.0, + "new_cases": 128.0, + "new_cases_smoothed": 126.286, + "total_deaths": 1057.0, + "new_deaths": 0.0, + "new_deaths_smoothed": -63.143, + "total_cases_per_million": 6680.828, + "new_cases_per_million": 19.619, + "new_cases_smoothed_per_million": 19.357, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": -9.678 + }, + { + "date": "2020-08-29", + "total_cases": 43712.0, + "new_cases": 125.0, + "new_cases_smoothed": 144.143, + "total_deaths": 1057.0, + "new_deaths": 0.0, + "new_deaths_smoothed": -63.143, + "total_cases_per_million": 6699.988, + "new_cases_per_million": 19.159, + "new_cases_smoothed_per_million": 22.094, + "total_deaths_per_million": 162.012, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": -9.678 + }, + { + "date": "2020-08-30", + "total_cases": 43820.0, + "new_cases": 108.0, + "new_cases_smoothed": 133.0, + "total_deaths": 1058.0, + "new_deaths": 1.0, + "new_deaths_smoothed": -63.143, + "total_cases_per_million": 6716.542, + "new_cases_per_million": 16.554, + "new_cases_smoothed_per_million": 20.386, + "total_deaths_per_million": 162.166, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": -9.678 + }, + { + "date": "2020-08-31", + "total_cases": 43898.0, + "new_cases": 78.0, + "new_cases_smoothed": 110.286, + "total_deaths": 1058.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6728.497, + "new_cases_per_million": 11.956, + "new_cases_smoothed_per_million": 16.904, + "total_deaths_per_million": 162.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + }, + { + "date": "2020-09-01", + "total_cases": 43958.0, + "new_cases": 60.0, + "new_cases_smoothed": 101.857, + "total_deaths": 1059.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6737.694, + "new_cases_per_million": 9.197, + "new_cases_smoothed_per_million": 15.612, + "total_deaths_per_million": 162.319, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.044 + }, + { + "date": "2020-09-02", + "total_cases": 44036.0, + "new_cases": 78.0, + "new_cases_smoothed": 96.857, + "total_deaths": 1059.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6749.649, + "new_cases_per_million": 11.956, + "new_cases_smoothed_per_million": 14.846, + "total_deaths_per_million": 162.319, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044 + }, + { + "date": "2020-09-03", + "total_cases": 44135.0, + "new_cases": 99.0, + "new_cases_smoothed": 96.571, + "total_deaths": 1059.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6764.823, + "new_cases_per_million": 15.174, + "new_cases_smoothed_per_million": 14.802, + "total_deaths_per_million": 162.319, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044 + }, + { + "date": "2020-09-04", + "total_cases": 44227.0, + "new_cases": 92.0, + "new_cases_smoothed": 91.429, + "total_deaths": 1060.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6778.925, + "new_cases_per_million": 14.101, + "new_cases_smoothed_per_million": 14.014, + "total_deaths_per_million": 162.472, + "new_deaths_per_million": 0.153, + "new_deaths_smoothed_per_million": 0.066 + }, + { + "date": "2020-09-05", + "total_cases": 44316.0, + "new_cases": 89.0, + "new_cases_smoothed": 86.286, + "total_deaths": 1060.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6792.566, + "new_cases_per_million": 13.642, + "new_cases_smoothed_per_million": 13.226, + "total_deaths_per_million": 162.472, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066 + } + ] + }, + "LAO": { + "continent": "Asia", + "location": "Laos", + "population": 7275556.0, + "population_density": 29.715, + "median_age": 24.4, + "aged_65_older": 4.029, + "aged_70_older": 2.322, + "gdp_per_capita": 6397.36, + "extreme_poverty": 22.7, + "cardiovasc_death_rate": 368.111, + "diabetes_prevalence": 4.0, + "female_smokers": 7.3, + "male_smokers": 51.2, + "handwashing_facilities": 49.839, + "hospital_beds_per_thousand": 1.5, + "life_expectancy": 67.92, + "data": [ + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.275, + "new_cases_per_million": 0.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.275, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.825, + "new_cases_per_million": 0.55, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-28", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.825, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-29", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.825, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-30", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.825, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.237, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.374, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.512, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.649, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.062, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.199, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.199, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.474, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-20", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-21", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-25", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-26", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-27", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-28", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-29", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-05-31", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-06-02", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-05", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-20", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-21", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-25", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-26", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-27", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-06-28", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-02", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-05", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-20", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-21", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-25", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-26", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-07-27", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-07-28", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-07-29", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-07-30", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-07-31", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-08-01", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-02", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-03", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-05", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-06", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-07", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-08", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-09", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-10", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-11", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-12", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-13", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-14", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-15", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-16", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-17", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-18", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-19", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-20", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-21", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-22", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LVA": { + "continent": "Europe", + "location": "Latvia", + "population": 1886202.0, + "population_density": 31.212, + "median_age": 43.9, + "aged_65_older": 19.754, + "aged_70_older": 14.136, + "gdp_per_capita": 25063.846, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 350.06, + "diabetes_prevalence": 4.91, + "female_smokers": 25.6, + "male_smokers": 51.0, + "hospital_beds_per_thousand": 5.57, + "life_expectancy": 75.29, + "data": [ + { + "date": "2020-02-29", + "new_tests": 116.0, + "total_tests": 116.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.061, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-01", + "new_tests": 10.0, + "total_tests": 126.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.005, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-02", + "new_tests": 37.0, + "total_tests": 163.0, + "total_tests_per_thousand": 0.086, + "new_tests_per_thousand": 0.02, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.53, + "new_cases_per_million": 0.53, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 204.0, + "total_tests_per_thousand": 0.108, + "new_tests_per_thousand": 0.022, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-04", + "new_tests": 36.0, + "total_tests": 240.0, + "total_tests_per_thousand": 0.127, + "new_tests_per_thousand": 0.019, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-05", + "new_tests": 35.0, + "total_tests": 275.0, + "total_tests_per_thousand": 0.146, + "new_tests_per_thousand": 0.019, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-06", + "new_tests": 32.0, + "total_tests": 307.0, + "total_tests_per_thousand": 0.163, + "new_tests_per_thousand": 0.017, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-07", + "new_tests": 14.0, + "total_tests": 321.0, + "total_tests_per_thousand": 0.17, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-08", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.06, + "new_cases_per_million": 0.53, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 343.0, + "total_tests_per_thousand": 0.182, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-09", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.59, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 48.0, + "total_tests": 391.0, + "total_tests_per_thousand": 0.207, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-10", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.181, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.379, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 59.0, + "total_tests": 450.0, + "total_tests_per_thousand": 0.239, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 49.0, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-11", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.241, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47.0, + "total_tests": 497.0, + "total_tests_per_thousand": 0.263, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 37.0, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.302, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 576.0, + "total_tests_per_thousand": 0.305, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 33.444, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "total_cases": 16.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.483, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 1.136, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 127.0, + "total_tests": 703.0, + "total_tests_per_thousand": 0.373, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 26.6, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-14", + "total_cases": 19.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.073, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 316.0, + "total_tests": 1019.0, + "total_tests_per_thousand": 0.54, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 100.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 38.889, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-15", + "total_cases": 26.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.784, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 1.818, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 334.0, + "total_tests": 1353.0, + "total_tests_per_thousand": 0.717, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 144.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-16", + "total_cases": 31.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.435, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 351.0, + "total_tests": 1704.0, + "total_tests_per_thousand": 0.903, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 47.0, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 36.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.086, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 2.272, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 2199.0, + "total_tests_per_thousand": 1.166, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 250.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 58.333, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-18", + "total_cases": 61.0, + "new_cases": 25.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.34, + "new_cases_per_million": 13.254, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 755.0, + "total_tests": 2954.0, + "total_tests_per_thousand": 1.566, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 351.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 46.358000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-19", + "total_cases": 71.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.642, + "new_cases_per_million": 5.302, + "new_cases_smoothed_per_million": 4.62, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 720.0, + "total_tests": 3674.0, + "total_tests_per_thousand": 1.948, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 443.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 50.836000000000006, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-20", + "total_cases": 86.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.594, + "new_cases_per_million": 7.952, + "new_cases_smoothed_per_million": 5.302, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 699.0, + "total_tests": 4373.0, + "total_tests_per_thousand": 2.318, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 524.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 52.4, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-21", + "total_cases": 111.0, + "new_cases": 25.0, + "new_cases_smoothed": 13.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.848, + "new_cases_per_million": 13.254, + "new_cases_smoothed_per_million": 6.968, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1389.0, + "total_tests": 5762.0, + "total_tests_per_thousand": 3.055, + "new_tests_per_thousand": 0.736, + "new_tests_smoothed": 678.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 51.586999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-22", + "total_cases": 124.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.741, + "new_cases_per_million": 6.892, + "new_cases_smoothed_per_million": 7.422, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 811.0, + "total_tests": 6573.0, + "total_tests_per_thousand": 3.485, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 746.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 53.286, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-23", + "total_cases": 139.0, + "new_cases": 15.0, + "new_cases_smoothed": 15.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.693, + "new_cases_per_million": 7.952, + "new_cases_smoothed_per_million": 8.18, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1185.0, + "total_tests": 7758.0, + "total_tests_per_thousand": 4.113, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 865.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 56.065, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 56.48 + }, + { + "date": "2020-03-24", + "total_cases": 180.0, + "new_cases": 41.0, + "new_cases_smoothed": 20.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.43, + "new_cases_per_million": 21.737, + "new_cases_smoothed_per_million": 10.906, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 887.0, + "total_tests": 8645.0, + "total_tests_per_thousand": 4.583, + "new_tests_per_thousand": 0.47, + "new_tests_smoothed": 921.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 44.771, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-25", + "total_cases": 197.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.443, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 10.3, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1151.0, + "total_tests": 9796.0, + "total_tests_per_thousand": 5.194, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 977.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 50.287, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-26", + "total_cases": 221.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.167, + "new_cases_per_million": 12.724, + "new_cases_smoothed_per_million": 11.361, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 817.0, + "total_tests": 10613.0, + "total_tests_per_thousand": 5.627, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 991.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 46.247, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-03-27", + "total_cases": 244.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.36, + "new_cases_per_million": 12.194, + "new_cases_smoothed_per_million": 11.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1089.0, + "total_tests": 11702.0, + "total_tests_per_thousand": 6.204, + "new_tests_per_thousand": 0.577, + "new_tests_smoothed": 1047.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 46.386, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-28", + "total_cases": 280.0, + "new_cases": 36.0, + "new_cases_smoothed": 24.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 148.446, + "new_cases_per_million": 19.086, + "new_cases_smoothed_per_million": 12.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1046.0, + "total_tests": 12748.0, + "total_tests_per_thousand": 6.759, + "new_tests_per_thousand": 0.555, + "new_tests_smoothed": 998.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 41.336999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-29", + "total_cases": 305.0, + "new_cases": 25.0, + "new_cases_smoothed": 25.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.701, + "new_cases_per_million": 13.254, + "new_cases_smoothed_per_million": 13.709, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1057.0, + "total_tests": 13805.0, + "total_tests_per_thousand": 7.319, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 39.95, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-30", + "total_cases": 376.0, + "new_cases": 71.0, + "new_cases_smoothed": 33.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.342, + "new_cases_per_million": 37.642, + "new_cases_smoothed_per_million": 17.95, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 502.0, + "total_tests": 14307.0, + "total_tests_per_thousand": 7.585, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 936.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 27.646, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-03-31", + "total_cases": 376.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.342, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.845, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 500.0, + "total_tests": 14807.0, + "total_tests_per_thousand": 7.85, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 880.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 31.429000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-01", + "total_cases": 398.0, + "new_cases": 22.0, + "new_cases_smoothed": 28.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 211.006, + "new_cases_per_million": 11.664, + "new_cases_smoothed_per_million": 15.223, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1003.0, + "total_tests": 15810.0, + "total_tests_per_thousand": 8.382, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 859.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 29.915, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-02", + "total_cases": 446.0, + "new_cases": 48.0, + "new_cases_smoothed": 32.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.454, + "new_cases_per_million": 25.448, + "new_cases_smoothed_per_million": 17.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1024.0, + "total_tests": 16834.0, + "total_tests_per_thousand": 8.925, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 889.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 27.658, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-03", + "total_cases": 458.0, + "new_cases": 12.0, + "new_cases_smoothed": 30.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.816, + "new_cases_per_million": 6.362, + "new_cases_smoothed_per_million": 16.208, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1364.0, + "total_tests": 18198.0, + "total_tests_per_thousand": 9.648, + "new_tests_per_thousand": 0.723, + "new_tests_smoothed": 928.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 30.355, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-04", + "total_cases": 493.0, + "new_cases": 35.0, + "new_cases_smoothed": 30.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.372, + "new_cases_per_million": 18.556, + "new_cases_smoothed_per_million": 16.132, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1182.0, + "total_tests": 19380.0, + "total_tests_per_thousand": 10.275, + "new_tests_per_thousand": 0.627, + "new_tests_smoothed": 947.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 31.122, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-05", + "total_cases": 509.0, + "new_cases": 16.0, + "new_cases_smoothed": 29.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.854, + "new_cases_per_million": 8.483, + "new_cases_smoothed_per_million": 15.451, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1300.0, + "total_tests": 20680.0, + "total_tests_per_thousand": 10.964, + "new_tests_per_thousand": 0.689, + "new_tests_smoothed": 982.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 33.696, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-06", + "total_cases": 533.0, + "new_cases": 24.0, + "new_cases_smoothed": 22.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 282.578, + "new_cases_per_million": 12.724, + "new_cases_smoothed_per_million": 11.891, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 773.0, + "total_tests": 21453.0, + "total_tests_per_thousand": 11.374, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 1021.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 45.522, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-07", + "total_cases": 542.0, + "new_cases": 9.0, + "new_cases_smoothed": 23.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 287.35, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 12.573, + "total_deaths_per_million": 0.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1122.0, + "total_tests": 22575.0, + "total_tests_per_thousand": 11.968, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 1110.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 46.806999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-08", + "total_cases": 548.0, + "new_cases": 6.0, + "new_cases_smoothed": 21.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 290.531, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 11.361, + "total_deaths_per_million": 1.06, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1461.0, + "total_tests": 24036.0, + "total_tests_per_thousand": 12.743, + "new_tests_per_thousand": 0.775, + "new_tests_smoothed": 1175.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 54.833, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-09", + "total_cases": 577.0, + "new_cases": 29.0, + "new_cases_smoothed": 18.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 305.906, + "new_cases_per_million": 15.375, + "new_cases_smoothed_per_million": 9.922, + "total_deaths_per_million": 1.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1422.0, + "total_tests": 25458.0, + "total_tests_per_thousand": 13.497, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 1232.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 65.832, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-10", + "total_cases": 589.0, + "new_cases": 12.0, + "new_cases_smoothed": 18.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 312.268, + "new_cases_per_million": 6.362, + "new_cases_smoothed_per_million": 9.922, + "total_deaths_per_million": 1.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1198.0, + "total_tests": 26656.0, + "total_tests_per_thousand": 14.132, + "new_tests_per_thousand": 0.635, + "new_tests_smoothed": 1208.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 64.55, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-11", + "total_cases": 612.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 324.462, + "new_cases_per_million": 12.194, + "new_cases_smoothed_per_million": 9.013, + "total_deaths_per_million": 1.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1140.0, + "total_tests": 27796.0, + "total_tests_per_thousand": 14.736, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 1202.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 70.706, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-12", + "total_cases": 630.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 334.005, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 9.164, + "total_deaths_per_million": 1.59, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 418.0, + "total_tests": 28214.0, + "total_tests_per_thousand": 14.958, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 1076.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 62.248000000000005, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-13", + "total_cases": 651.0, + "new_cases": 21.0, + "new_cases_smoothed": 16.857, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 345.138, + "new_cases_per_million": 11.133, + "new_cases_smoothed_per_million": 8.937, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 562.0, + "total_tests": 28776.0, + "total_tests_per_thousand": 15.256, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 1046.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 62.051, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-14", + "total_cases": 655.0, + "new_cases": 4.0, + "new_cases_smoothed": 16.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 347.259, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 8.558, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 242.0, + "total_tests": 29018.0, + "total_tests_per_thousand": 15.384, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 920.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 56.99100000000001, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-15", + "total_cases": 657.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 348.319, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 8.255, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 878.0, + "total_tests": 29896.0, + "total_tests_per_thousand": 15.85, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 837.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 53.751999999999995, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-16", + "total_cases": 666.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 353.09, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 6.741, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1406.0, + "total_tests": 31302.0, + "total_tests_per_thousand": 16.595, + "new_tests_per_thousand": 0.745, + "new_tests_smoothed": 835.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 65.67399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-17", + "total_cases": 675.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 357.862, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 6.513, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1535.0, + "total_tests": 32837.0, + "total_tests_per_thousand": 17.409, + "new_tests_per_thousand": 0.814, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 0.468, + "tests_per_case": 71.872, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-18", + "total_cases": 682.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 361.573, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 5.302, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1860.0, + "total_tests": 34697.0, + "total_tests_per_thousand": 18.395, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 986.0, + "new_tests_smoothed_per_thousand": 0.523, + "tests_per_case": 98.6, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-19", + "total_cases": 712.0, + "new_cases": 30.0, + "new_cases_smoothed": 11.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 377.478, + "new_cases_per_million": 15.905, + "new_cases_smoothed_per_million": 6.211, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1184.0, + "total_tests": 35881.0, + "total_tests_per_thousand": 19.023, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 1095.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 93.476, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-20", + "total_cases": 727.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 385.431, + "new_cases_per_million": 7.952, + "new_cases_smoothed_per_million": 5.756, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 787.0, + "total_tests": 36668.0, + "total_tests_per_thousand": 19.44, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 1127.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 103.803, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-21", + "total_cases": 739.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 391.793, + "new_cases_per_million": 6.362, + "new_cases_smoothed_per_million": 6.362, + "total_deaths_per_million": 2.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1304.0, + "total_tests": 37972.0, + "total_tests_per_thousand": 20.131, + "new_tests_per_thousand": 0.691, + "new_tests_smoothed": 1279.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 106.583, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-22", + "total_cases": 748.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.0, + "total_deaths": 9.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 396.564, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 6.892, + "total_deaths_per_million": 4.771, + "new_deaths_per_million": 2.121, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1364.0, + "total_tests": 39336.0, + "total_tests_per_thousand": 20.855, + "new_tests_per_thousand": 0.723, + "new_tests_smoothed": 1349.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 103.76899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-23", + "total_cases": 761.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 403.456, + "new_cases_per_million": 6.892, + "new_cases_smoothed_per_million": 7.195, + "total_deaths_per_million": 5.832, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 1705.0, + "total_tests": 41041.0, + "total_tests_per_thousand": 21.759, + "new_tests_per_thousand": 0.904, + "new_tests_smoothed": 1391.0, + "new_tests_smoothed_per_thousand": 0.737, + "tests_per_case": 102.495, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-24", + "total_cases": 778.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 412.469, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 7.801, + "total_deaths_per_million": 5.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.454, + "new_tests": 2039.0, + "total_tests": 43080.0, + "total_tests_per_thousand": 22.84, + "new_tests_per_thousand": 1.081, + "new_tests_smoothed": 1463.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 99.427, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-25", + "total_cases": 784.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 415.65, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 7.725, + "total_deaths_per_million": 6.362, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 2663.0, + "total_tests": 45743.0, + "total_tests_per_thousand": 24.251, + "new_tests_per_thousand": 1.412, + "new_tests_smoothed": 1578.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 108.294, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-26", + "total_cases": 804.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 426.253, + "new_cases_per_million": 10.603, + "new_cases_smoothed_per_million": 6.968, + "total_deaths_per_million": 6.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 1874.0, + "total_tests": 47617.0, + "total_tests_per_thousand": 25.245, + "new_tests_per_thousand": 0.994, + "new_tests_smoothed": 1677.0, + "new_tests_smoothed_per_thousand": 0.889, + "tests_per_case": 127.598, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-27", + "total_cases": 812.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 430.495, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 6.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 1564.0, + "total_tests": 49181.0, + "total_tests_per_thousand": 26.074, + "new_tests_per_thousand": 0.829, + "new_tests_smoothed": 1788.0, + "new_tests_smoothed_per_thousand": 0.948, + "tests_per_case": 147.247, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-28", + "total_cases": 818.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.286, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 433.676, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 5.983, + "total_deaths_per_million": 6.892, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.606, + "new_tests": 2380.0, + "total_tests": 51561.0, + "total_tests_per_thousand": 27.336, + "new_tests_per_thousand": 1.262, + "new_tests_smoothed": 1941.0, + "new_tests_smoothed_per_thousand": 1.029, + "tests_per_case": 171.987, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-29", + "total_cases": 836.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 443.219, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 6.665, + "total_deaths_per_million": 6.892, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 3250.0, + "total_tests": 54811.0, + "total_tests_per_thousand": 29.059, + "new_tests_per_thousand": 1.723, + "new_tests_smoothed": 2211.0, + "new_tests_smoothed_per_thousand": 1.172, + "tests_per_case": 175.875, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-04-30", + "total_cases": 849.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.571, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 450.111, + "new_cases_per_million": 6.892, + "new_cases_smoothed_per_million": 6.665, + "total_deaths_per_million": 7.952, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 3075.0, + "total_tests": 57886.0, + "total_tests_per_thousand": 30.689, + "new_tests_per_thousand": 1.63, + "new_tests_smoothed": 2406.0, + "new_tests_smoothed_per_thousand": 1.276, + "tests_per_case": 191.386, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-01", + "total_cases": 858.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 454.882, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 6.059, + "total_deaths_per_million": 7.952, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 3234.0, + "total_tests": 61120.0, + "total_tests_per_thousand": 32.404, + "new_tests_per_thousand": 1.715, + "new_tests_smoothed": 2577.0, + "new_tests_smoothed_per_thousand": 1.366, + "tests_per_case": 225.487, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-02", + "total_cases": 870.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.286, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 461.244, + "new_cases_per_million": 6.362, + "new_cases_smoothed_per_million": 6.513, + "total_deaths_per_million": 8.483, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1982.0, + "total_tests": 63102.0, + "total_tests_per_thousand": 33.455, + "new_tests_per_thousand": 1.051, + "new_tests_smoothed": 2480.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 201.86, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-03", + "total_cases": 871.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 461.775, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 5.074, + "total_deaths_per_million": 8.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1143.0, + "total_tests": 64245.0, + "total_tests_per_thousand": 34.061, + "new_tests_per_thousand": 0.606, + "new_tests_smoothed": 2375.0, + "new_tests_smoothed_per_thousand": 1.259, + "tests_per_case": 248.13400000000001, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-04", + "total_cases": 879.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 466.016, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 5.074, + "total_deaths_per_million": 8.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1219.0, + "total_tests": 65464.0, + "total_tests_per_thousand": 34.707, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 2326.0, + "new_tests_smoothed_per_thousand": 1.233, + "tests_per_case": 243.015, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-05", + "total_cases": 896.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 475.029, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 5.908, + "total_deaths_per_million": 8.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 686.0, + "total_tests": 66150.0, + "total_tests_per_thousand": 35.07, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 2084.0, + "new_tests_smoothed_per_thousand": 1.105, + "tests_per_case": 187.02599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-06", + "total_cases": 896.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 475.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.544, + "total_deaths_per_million": 9.013, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 2477.0, + "total_tests": 68627.0, + "total_tests_per_thousand": 36.384, + "new_tests_per_thousand": 1.313, + "new_tests_smoothed": 1974.0, + "new_tests_smoothed_per_thousand": 1.047, + "tests_per_case": 230.3, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-07", + "total_cases": 900.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 477.149, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 9.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 2442.0, + "total_tests": 71069.0, + "total_tests_per_thousand": 37.678, + "new_tests_per_thousand": 1.295, + "new_tests_smoothed": 1883.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 258.45099999999996, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-08", + "total_cases": 909.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.286, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 481.921, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1947.0, + "total_tests": 73016.0, + "total_tests_per_thousand": 38.711, + "new_tests_per_thousand": 1.032, + "new_tests_smoothed": 1699.0, + "new_tests_smoothed_per_thousand": 0.901, + "tests_per_case": 233.196, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-09", + "total_cases": 928.0, + "new_cases": 19.0, + "new_cases_smoothed": 8.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 491.994, + "new_cases_per_million": 10.073, + "new_cases_smoothed_per_million": 4.393, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 2555.0, + "total_tests": 75571.0, + "total_tests_per_thousand": 40.065, + "new_tests_per_thousand": 1.355, + "new_tests_smoothed": 1781.0, + "new_tests_smoothed_per_thousand": 0.944, + "tests_per_case": 214.94799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-10", + "total_cases": 930.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 493.054, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 4.469, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1021.0, + "total_tests": 76592.0, + "total_tests_per_thousand": 40.606, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 1764.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 209.28799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-11", + "total_cases": 939.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 497.826, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 4.544, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 555.0, + "total_tests": 77147.0, + "total_tests_per_thousand": 40.901, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 1669.0, + "new_tests_smoothed_per_thousand": 0.885, + "tests_per_case": 194.717, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-12", + "total_cases": 946.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 501.537, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 3.787, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1900.0, + "total_tests": 79047.0, + "total_tests_per_thousand": 41.908, + "new_tests_per_thousand": 1.007, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.977, + "tests_per_case": 257.88, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-13", + "total_cases": 950.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 503.658, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 4.09, + "total_deaths_per_million": 9.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2199.0, + "total_tests": 81246.0, + "total_tests_per_thousand": 43.074, + "new_tests_per_thousand": 1.166, + "new_tests_smoothed": 1803.0, + "new_tests_smoothed_per_thousand": 0.956, + "tests_per_case": 233.722, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-14", + "total_cases": 951.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 504.188, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 2029.0, + "total_tests": 83275.0, + "total_tests_per_thousand": 44.15, + "new_tests_per_thousand": 1.076, + "new_tests_smoothed": 1744.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 239.373, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-05-15", + "total_cases": 962.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 510.02, + "new_cases_per_million": 5.832, + "new_cases_smoothed_per_million": 4.014, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2156.0, + "total_tests": 85431.0, + "total_tests_per_thousand": 45.293, + "new_tests_per_thousand": 1.143, + "new_tests_smoothed": 1774.0, + "new_tests_smoothed_per_thousand": 0.941, + "tests_per_case": 234.30200000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 970.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 514.261, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 3.181, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1946.0, + "total_tests": 87377.0, + "total_tests_per_thousand": 46.324, + "new_tests_per_thousand": 1.032, + "new_tests_smoothed": 1687.0, + "new_tests_smoothed_per_thousand": 0.894, + "tests_per_case": 281.16700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 997.0, + "new_cases": 27.0, + "new_cases_smoothed": 9.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 528.575, + "new_cases_per_million": 14.314, + "new_cases_smoothed_per_million": 5.074, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1028.0, + "total_tests": 88405.0, + "total_tests_per_thousand": 46.869, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 1688.0, + "new_tests_smoothed_per_thousand": 0.895, + "tests_per_case": 176.358, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-18", + "total_cases": 1008.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 534.407, + "new_cases_per_million": 5.832, + "new_cases_smoothed_per_million": 5.226, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 718.0, + "total_tests": 89123.0, + "total_tests_per_thousand": 47.25, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 1711.0, + "new_tests_smoothed_per_thousand": 0.907, + "tests_per_case": 173.58, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 1009.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 534.937, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 4.771, + "total_deaths_per_million": 10.073, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1845.0, + "total_tests": 90968.0, + "total_tests_per_thousand": 48.228, + "new_tests_per_thousand": 0.978, + "new_tests_smoothed": 1703.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 189.222, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 1012.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.857, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 536.528, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 11.133, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1783.0, + "total_tests": 92751.0, + "total_tests_per_thousand": 49.173, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 1644.0, + "new_tests_smoothed_per_thousand": 0.872, + "tests_per_case": 185.613, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 1016.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 538.649, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 4.923, + "total_deaths_per_million": 11.133, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1870.0, + "total_tests": 94621.0, + "total_tests_per_thousand": 50.165, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 1621.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 174.56900000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 1025.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.0, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 543.42, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 4.771, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1745.0, + "total_tests": 96366.0, + "total_tests_per_thousand": 51.09, + "new_tests_per_thousand": 0.925, + "new_tests_smoothed": 1562.0, + "new_tests_smoothed_per_thousand": 0.828, + "tests_per_case": 173.55599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 1030.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 546.071, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 4.544, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1480.0, + "total_tests": 97846.0, + "total_tests_per_thousand": 51.875, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 1496.0, + "new_tests_smoothed_per_thousand": 0.793, + "tests_per_case": 174.533, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 1046.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 554.554, + "new_cases_per_million": 8.483, + "new_cases_smoothed_per_million": 3.711, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1203.0, + "total_tests": 99049.0, + "total_tests_per_thousand": 52.512, + "new_tests_per_thousand": 0.638, + "new_tests_smoothed": 1521.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 217.28599999999997, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 1047.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 555.084, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 2.954, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 721.0, + "total_tests": 99770.0, + "total_tests_per_thousand": 52.895, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 1521.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 273.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-26", + "total_cases": 1049.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 556.144, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1828.0, + "total_tests": 101598.0, + "total_tests_per_thousand": 53.864, + "new_tests_per_thousand": 0.969, + "new_tests_smoothed": 1519.0, + "new_tests_smoothed_per_thousand": 0.805, + "tests_per_case": 265.825, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-27", + "total_cases": 1053.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 558.265, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 3.105, + "total_deaths_per_million": 11.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1955.0, + "total_tests": 103553.0, + "total_tests_per_thousand": 54.9, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 1543.0, + "new_tests_smoothed_per_thousand": 0.818, + "tests_per_case": 263.439, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-28", + "total_cases": 1057.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 560.385, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 3.105, + "total_deaths_per_million": 12.194, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1951.0, + "total_tests": 105504.0, + "total_tests_per_thousand": 55.935, + "new_tests_per_thousand": 1.034, + "new_tests_smoothed": 1555.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 265.488, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-29", + "total_cases": 1061.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 562.506, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 2.727, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1427.0, + "total_tests": 106931.0, + "total_tests_per_thousand": 56.691, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 1509.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 293.41700000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-30", + "total_cases": 1064.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 564.097, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1243.0, + "total_tests": 108174.0, + "total_tests_per_thousand": 57.35, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 1475.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 303.676, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-05-31", + "total_cases": 1065.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 564.627, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 897.0, + "total_tests": 109071.0, + "total_tests_per_thousand": 57.826, + "new_tests_per_thousand": 0.476, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.759, + "tests_per_case": 527.5790000000001, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-01", + "total_cases": 1066.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 565.157, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 652.0, + "total_tests": 109723.0, + "total_tests_per_thousand": 58.171, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 1422.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 523.895, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 1071.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 567.808, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1681.0, + "total_tests": 111404.0, + "total_tests_per_thousand": 59.063, + "new_tests_per_thousand": 0.891, + "new_tests_smoothed": 1401.0, + "new_tests_smoothed_per_thousand": 0.743, + "tests_per_case": 445.773, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 1079.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 572.049, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 1.969, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1561.0, + "total_tests": 112965.0, + "total_tests_per_thousand": 59.89, + "new_tests_per_thousand": 0.828, + "new_tests_smoothed": 1345.0, + "new_tests_smoothed_per_thousand": 0.713, + "tests_per_case": 362.115, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 1079.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 572.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 12.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1486.0, + "total_tests": 114451.0, + "total_tests_per_thousand": 60.678, + "new_tests_per_thousand": 0.788, + "new_tests_smoothed": 1278.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 406.63599999999997, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 1082.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 573.64, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.59, + "total_deaths_per_million": 13.254, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1010.0, + "total_tests": 115461.0, + "total_tests_per_thousand": 61.213, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 1219.0, + "new_tests_smoothed_per_thousand": 0.646, + "tests_per_case": 406.333, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 1082.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 573.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 13.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1074.0, + "total_tests": 116535.0, + "total_tests_per_thousand": 61.783, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 1194.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 464.333, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 1086.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 575.76, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.59, + "total_deaths_per_million": 13.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1125.0, + "total_tests": 117660.0, + "total_tests_per_thousand": 62.379, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 1227.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 409.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 1088.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 576.821, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 13.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 662.0, + "total_tests": 118322.0, + "total_tests_per_thousand": 62.73, + "new_tests_per_thousand": 0.351, + "new_tests_smoothed": 1228.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 390.727, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 1088.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 576.821, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 13.784, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1730.0, + "total_tests": 120052.0, + "total_tests_per_thousand": 63.647, + "new_tests_per_thousand": 0.917, + "new_tests_smoothed": 1235.0, + "new_tests_smoothed_per_thousand": 0.655, + "tests_per_case": 508.529, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 1089.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 577.351, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 13.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1731.0, + "total_tests": 121783.0, + "total_tests_per_thousand": 64.565, + "new_tests_per_thousand": 0.918, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 882.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-11", + "total_cases": 1092.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 578.941, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 13.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1581.0, + "total_tests": 123364.0, + "total_tests_per_thousand": 65.403, + "new_tests_per_thousand": 0.838, + "new_tests_smoothed": 1273.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 685.462, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-12", + "total_cases": 1094.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 580.002, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 0.909, + "total_deaths_per_million": 13.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1298.0, + "total_tests": 124662.0, + "total_tests_per_thousand": 66.092, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 1314.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 766.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-13", + "total_cases": 1096.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 581.062, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 14.314, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1392.0, + "total_tests": 126054.0, + "total_tests_per_thousand": 66.83, + "new_tests_per_thousand": 0.738, + "new_tests_smoothed": 1360.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 680.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-14", + "total_cases": 1097.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 581.592, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 14.845, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1396.0, + "total_tests": 127450.0, + "total_tests_per_thousand": 67.57, + "new_tests_per_thousand": 0.74, + "new_tests_smoothed": 1399.0, + "new_tests_smoothed_per_thousand": 0.742, + "tests_per_case": 890.273, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-15", + "total_cases": 1097.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 581.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 14.845, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 695.0, + "total_tests": 128145.0, + "total_tests_per_thousand": 67.938, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 1403.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 1091.222, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-16", + "total_cases": 1097.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 581.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 14.845, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1691.0, + "total_tests": 129836.0, + "total_tests_per_thousand": 68.835, + "new_tests_per_thousand": 0.897, + "new_tests_smoothed": 1398.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 1087.333, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-17", + "total_cases": 1098.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 582.122, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 14.845, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1810.0, + "total_tests": 131646.0, + "total_tests_per_thousand": 69.794, + "new_tests_per_thousand": 0.96, + "new_tests_smoothed": 1409.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 1095.889, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-18", + "total_cases": 1104.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 585.303, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 0.909, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 1.06, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1911.0, + "total_tests": 133557.0, + "total_tests_per_thousand": 70.807, + "new_tests_per_thousand": 1.013, + "new_tests_smoothed": 1456.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 849.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-19", + "total_cases": 1108.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 587.424, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 1324.0, + "total_tests": 134881.0, + "total_tests_per_thousand": 71.509, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 1460.0, + "new_tests_smoothed_per_thousand": 0.774, + "tests_per_case": 730.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-20", + "total_cases": 1110.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 588.484, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227, + "new_tests": 1686.0, + "total_tests": 136567.0, + "total_tests_per_thousand": 72.403, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 1502.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 751.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-21", + "total_cases": 1111.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1294.0, + "total_tests": 137861.0, + "total_tests_per_thousand": 73.089, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 1487.0, + "new_tests_smoothed_per_thousand": 0.788, + "tests_per_case": 743.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-22", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1163.0, + "total_tests": 139024.0, + "total_tests_per_thousand": 73.706, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 1554.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 777.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-23", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1413.0, + "total_tests": 140437.0, + "total_tests_per_thousand": 74.455, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 1514.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 757.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-24", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 1276.0, + "total_tests": 141713.0, + "total_tests_per_thousand": 75.131, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 1438.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 774.308, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-25", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1081.0, + "total_tests": 142794.0, + "total_tests_per_thousand": 75.705, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 1320.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 1320.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-26", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 589.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2292.0, + "total_tests": 145086.0, + "total_tests_per_thousand": 76.92, + "new_tests_per_thousand": 1.215, + "new_tests_smoothed": 1458.0, + "new_tests_smoothed_per_thousand": 0.773, + "tests_per_case": 3402.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-27", + "total_cases": 1112.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 589.544, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1788.0, + "total_tests": 146874.0, + "total_tests_per_thousand": 77.868, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 1472.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 5152.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-28", + "total_cases": 1115.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 591.135, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1042.0, + "total_tests": 147916.0, + "total_tests_per_thousand": 78.42, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 1436.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 2513.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-29", + "total_cases": 1116.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 591.665, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.379, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 861.0, + "total_tests": 148777.0, + "total_tests_per_thousand": 78.876, + "new_tests_per_thousand": 0.456, + "new_tests_smoothed": 1393.0, + "new_tests_smoothed_per_thousand": 0.739, + "tests_per_case": 1950.2, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-30", + "total_cases": 1117.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 592.195, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2060.0, + "total_tests": 150837.0, + "total_tests_per_thousand": 79.969, + "new_tests_per_thousand": 1.092, + "new_tests_smoothed": 1486.0, + "new_tests_smoothed_per_thousand": 0.788, + "tests_per_case": 1733.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-01", + "total_cases": 1118.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 592.725, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1941.0, + "total_tests": 152778.0, + "total_tests_per_thousand": 80.998, + "new_tests_per_thousand": 1.029, + "new_tests_smoothed": 1581.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 1581.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-02", + "total_cases": 1121.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 594.316, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1716.0, + "total_tests": 154494.0, + "total_tests_per_thousand": 81.907, + "new_tests_per_thousand": 0.91, + "new_tests_smoothed": 1671.0, + "new_tests_smoothed_per_thousand": 0.886, + "tests_per_case": 1169.7, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-03", + "total_cases": 1122.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 594.846, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1105.0, + "total_tests": 155599.0, + "total_tests_per_thousand": 82.493, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 1502.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 955.818, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-04", + "total_cases": 1122.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 594.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1185.0, + "total_tests": 156784.0, + "total_tests_per_thousand": 83.122, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 991.2, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-05", + "total_cases": 1123.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 595.376, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1042.0, + "total_tests": 157826.0, + "total_tests_per_thousand": 83.674, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 1239.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-06", + "total_cases": 1124.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 595.906, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 692.0, + "total_tests": 158518.0, + "total_tests_per_thousand": 84.041, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 1392.0, + "new_tests_smoothed_per_thousand": 0.738, + "tests_per_case": 1218.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-07", + "total_cases": 1127.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 597.497, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1763.0, + "total_tests": 160281.0, + "total_tests_per_thousand": 84.976, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 1349.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 944.3, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-08", + "total_cases": 1134.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 601.208, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1773.0, + "total_tests": 162054.0, + "total_tests_per_thousand": 85.916, + "new_tests_per_thousand": 0.94, + "new_tests_smoothed": 1325.0, + "new_tests_smoothed_per_thousand": 0.702, + "tests_per_case": 579.688, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-09", + "total_cases": 1141.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 604.919, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 1.515, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1715.0, + "total_tests": 163769.0, + "total_tests_per_thousand": 86.825, + "new_tests_per_thousand": 0.909, + "new_tests_smoothed": 1325.0, + "new_tests_smoothed_per_thousand": 0.702, + "tests_per_case": 463.75, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-10", + "total_cases": 1154.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 611.811, + "new_cases_per_million": 6.892, + "new_cases_smoothed_per_million": 2.424, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1841.0, + "total_tests": 165610.0, + "total_tests_per_thousand": 87.801, + "new_tests_per_thousand": 0.976, + "new_tests_smoothed": 1430.0, + "new_tests_smoothed_per_thousand": 0.758, + "tests_per_case": 312.812, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-11", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 611.811, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.424, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1870.0, + "total_tests": 167480.0, + "total_tests_per_thousand": 88.792, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 1528.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 334.25, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-12", + "total_cases": 1173.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 621.885, + "new_cases_per_million": 10.073, + "new_cases_smoothed_per_million": 3.787, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1467.0, + "total_tests": 168947.0, + "total_tests_per_thousand": 89.57, + "new_tests_per_thousand": 0.778, + "new_tests_smoothed": 1589.0, + "new_tests_smoothed_per_thousand": 0.842, + "tests_per_case": 222.46, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-13", + "total_cases": 1173.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 621.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.711, + "total_deaths_per_million": 15.905, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 996.0, + "total_tests": 169943.0, + "total_tests_per_thousand": 90.098, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 1632.0, + "new_tests_smoothed_per_thousand": 0.865, + "tests_per_case": 233.143, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-14", + "total_cases": 1174.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.714, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 622.415, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 3.56, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2135.0, + "total_tests": 172078.0, + "total_tests_per_thousand": 91.23, + "new_tests_per_thousand": 1.132, + "new_tests_smoothed": 1685.0, + "new_tests_smoothed_per_thousand": 0.893, + "tests_per_case": 250.957, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-15", + "total_cases": 1178.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 624.535, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 3.332, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1979.0, + "total_tests": 174057.0, + "total_tests_per_thousand": 92.279, + "new_tests_per_thousand": 1.049, + "new_tests_smoothed": 1715.0, + "new_tests_smoothed_per_thousand": 0.909, + "tests_per_case": 272.841, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-16", + "total_cases": 1178.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 624.535, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.802, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1639.0, + "total_tests": 175696.0, + "total_tests_per_thousand": 93.148, + "new_tests_per_thousand": 0.869, + "new_tests_smoothed": 1704.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 322.378, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-17", + "total_cases": 1179.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 625.066, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.893, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2189.0, + "total_tests": 177885.0, + "total_tests_per_thousand": 94.309, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 1754.0, + "new_tests_smoothed_per_thousand": 0.93, + "tests_per_case": 491.12, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-18", + "total_cases": 1185.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 628.247, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 2.348, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1751.0, + "total_tests": 179636.0, + "total_tests_per_thousand": 95.237, + "new_tests_per_thousand": 0.928, + "new_tests_smoothed": 1737.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 392.226, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-19", + "total_cases": 1189.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 630.367, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1292.0, + "total_tests": 180928.0, + "total_tests_per_thousand": 95.922, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 1712.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 749.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-20", + "total_cases": 1192.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 631.958, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1297.0, + "total_tests": 182225.0, + "total_tests_per_thousand": 96.609, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 0.93, + "tests_per_case": 646.5790000000001, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-21", + "total_cases": 1192.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 631.958, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1385.0, + "total_tests": 183610.0, + "total_tests_per_thousand": 97.344, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 1647.0, + "new_tests_smoothed_per_thousand": 0.873, + "tests_per_case": 640.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-22", + "total_cases": 1193.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 632.488, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.136, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1613.0, + "total_tests": 185223.0, + "total_tests_per_thousand": 98.199, + "new_tests_per_thousand": 0.855, + "new_tests_smoothed": 1595.0, + "new_tests_smoothed_per_thousand": 0.846, + "tests_per_case": 744.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-23", + "total_cases": 1197.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 634.609, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1752.0, + "total_tests": 186975.0, + "total_tests_per_thousand": 99.128, + "new_tests_per_thousand": 0.929, + "new_tests_smoothed": 1611.0, + "new_tests_smoothed_per_thousand": 0.854, + "tests_per_case": 593.526, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-24", + "total_cases": 1203.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 637.79, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 1.818, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1510.0, + "total_tests": 188485.0, + "total_tests_per_thousand": 99.928, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 1514.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 441.583, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-25", + "total_cases": 1205.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 638.85, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 1.515, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1240.0, + "total_tests": 189725.0, + "total_tests_per_thousand": 100.586, + "new_tests_per_thousand": 0.657, + "new_tests_smoothed": 1441.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 504.35, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-26", + "total_cases": 1206.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 639.38, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1345.0, + "total_tests": 191070.0, + "total_tests_per_thousand": 101.299, + "new_tests_per_thousand": 0.713, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 0.768, + "tests_per_case": 596.6469999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-27", + "total_cases": 1219.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 646.272, + "new_cases_per_million": 6.892, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 801.0, + "total_tests": 191871.0, + "total_tests_per_thousand": 101.723, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 1378.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 357.259, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-28", + "total_cases": 1220.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 646.802, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1574.0, + "total_tests": 193445.0, + "total_tests_per_thousand": 102.558, + "new_tests_per_thousand": 0.834, + "new_tests_smoothed": 1405.0, + "new_tests_smoothed_per_thousand": 0.745, + "tests_per_case": 351.25, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-29", + "total_cases": 1220.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 646.802, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1886.0, + "total_tests": 195331.0, + "total_tests_per_thousand": 103.558, + "new_tests_per_thousand": 1.0, + "new_tests_smoothed": 1444.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 374.37, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-30", + "total_cases": 1224.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 648.923, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1704.0, + "total_tests": 197035.0, + "total_tests_per_thousand": 104.461, + "new_tests_per_thousand": 0.903, + "new_tests_smoothed": 1437.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 372.556, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-31", + "total_cases": 1228.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 651.044, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.893, + "total_deaths_per_million": 16.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1473.0, + "total_tests": 198508.0, + "total_tests_per_thousand": 105.242, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.759, + "tests_per_case": 400.96, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-01", + "total_cases": 1231.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 652.634, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.969, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1448.0, + "total_tests": 199956.0, + "total_tests_per_thousand": 106.01, + "new_tests_per_thousand": 0.768, + "new_tests_smoothed": 1462.0, + "new_tests_smoothed_per_thousand": 0.775, + "tests_per_case": 393.615, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-02", + "total_cases": 1238.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 656.345, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 2.424, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1354.0, + "total_tests": 201310.0, + "total_tests_per_thousand": 106.728, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 1463.0, + "new_tests_smoothed_per_thousand": 0.776, + "tests_per_case": 320.031, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-03", + "total_cases": 1243.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 658.996, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 1.818, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 687.0, + "total_tests": 201997.0, + "total_tests_per_thousand": 107.092, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 1447.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 422.042, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-04", + "total_cases": 1246.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.587, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.969, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1871.0, + "total_tests": 203868.0, + "total_tests_per_thousand": 108.084, + "new_tests_per_thousand": 0.992, + "new_tests_smoothed": 1489.0, + "new_tests_smoothed_per_thousand": 0.789, + "tests_per_case": 400.885, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-05", + "total_cases": 1249.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 662.177, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 2.196, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2212.0, + "total_tests": 206080.0, + "total_tests_per_thousand": 109.257, + "new_tests_per_thousand": 1.173, + "new_tests_smoothed": 1536.0, + "new_tests_smoothed_per_thousand": 0.814, + "tests_per_case": 370.759, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-06", + "total_cases": 1257.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 666.419, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 2.499, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1829.0, + "total_tests": 207909.0, + "total_tests_per_thousand": 110.226, + "new_tests_per_thousand": 0.97, + "new_tests_smoothed": 1553.0, + "new_tests_smoothed_per_thousand": 0.823, + "tests_per_case": 329.42400000000004, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-07", + "total_cases": 1275.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 675.962, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 3.56, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2137.0, + "total_tests": 210046.0, + "total_tests_per_thousand": 111.359, + "new_tests_per_thousand": 1.133, + "new_tests_smoothed": 1648.0, + "new_tests_smoothed_per_thousand": 0.874, + "tests_per_case": 245.447, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-08", + "total_cases": 1281.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.143, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 3.787, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1891.0, + "total_tests": 211937.0, + "total_tests_per_thousand": 112.362, + "new_tests_per_thousand": 1.003, + "new_tests_smoothed": 1712.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 239.68, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-09", + "total_cases": 1288.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 682.854, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 3.787, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1597.0, + "total_tests": 213534.0, + "total_tests_per_thousand": 113.208, + "new_tests_per_thousand": 0.847, + "new_tests_smoothed": 1746.0, + "new_tests_smoothed_per_thousand": 0.926, + "tests_per_case": 244.44, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-10", + "total_cases": 1290.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 683.914, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 3.56, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 668.0, + "total_tests": 214202.0, + "total_tests_per_thousand": 113.563, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 1744.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 259.745, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-11", + "total_cases": 1293.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 685.505, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 3.56, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2328.0, + "total_tests": 216530.0, + "total_tests_per_thousand": 114.797, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 1809.0, + "new_tests_smoothed_per_thousand": 0.959, + "tests_per_case": 269.426, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-12", + "total_cases": 1303.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.714, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 690.806, + "new_cases_per_million": 5.302, + "new_cases_smoothed_per_million": 4.09, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2226.0, + "total_tests": 218756.0, + "total_tests_per_thousand": 115.977, + "new_tests_per_thousand": 1.18, + "new_tests_smoothed": 1811.0, + "new_tests_smoothed_per_thousand": 0.96, + "tests_per_case": 234.75900000000001, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-13", + "total_cases": 1303.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 690.806, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.484, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2071.0, + "total_tests": 220827.0, + "total_tests_per_thousand": 117.075, + "new_tests_per_thousand": 1.098, + "new_tests_smoothed": 1845.0, + "new_tests_smoothed_per_thousand": 0.978, + "tests_per_case": 280.76099999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-14", + "total_cases": 1307.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 692.927, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 2.424, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1704.0, + "total_tests": 222531.0, + "total_tests_per_thousand": 117.978, + "new_tests_per_thousand": 0.903, + "new_tests_smoothed": 1784.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 390.25, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-15", + "total_cases": 1308.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 693.457, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1881.0, + "total_tests": 224412.0, + "total_tests_per_thousand": 118.976, + "new_tests_per_thousand": 0.997, + "new_tests_smoothed": 1782.0, + "new_tests_smoothed_per_thousand": 0.945, + "tests_per_case": 462.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-16", + "total_cases": 1315.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 697.168, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 2.045, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1224.0, + "total_tests": 225636.0, + "total_tests_per_thousand": 119.625, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 1729.0, + "new_tests_smoothed_per_thousand": 0.917, + "tests_per_case": 448.259, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-08-17", + "total_cases": 1322.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 700.879, + "new_cases_per_million": 3.711, + "new_cases_smoothed_per_million": 2.424, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 888.0, + "total_tests": 226524.0, + "total_tests_per_thousand": 120.095, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 1760.0, + "new_tests_smoothed_per_thousand": 0.933, + "tests_per_case": 385.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-18", + "total_cases": 1323.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 701.409, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 2.272, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2234.0, + "total_tests": 228758.0, + "total_tests_per_thousand": 121.28, + "new_tests_per_thousand": 1.184, + "new_tests_smoothed": 1747.0, + "new_tests_smoothed_per_thousand": 0.926, + "tests_per_case": 407.63300000000004, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-19", + "total_cases": 1323.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 701.409, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.515, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2163.0, + "total_tests": 230921.0, + "total_tests_per_thousand": 122.426, + "new_tests_per_thousand": 1.147, + "new_tests_smoothed": 1738.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 608.3, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-20", + "total_cases": 1326.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 703.0, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.742, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1997.0, + "total_tests": 232918.0, + "total_tests_per_thousand": 123.485, + "new_tests_per_thousand": 1.059, + "new_tests_smoothed": 1727.0, + "new_tests_smoothed_per_thousand": 0.916, + "tests_per_case": 525.609, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-21", + "total_cases": 1327.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 703.53, + "new_cases_per_million": 0.53, + "new_cases_smoothed_per_million": 1.515, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1602.0, + "total_tests": 234520.0, + "total_tests_per_thousand": 124.335, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 1713.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 599.55, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-22", + "total_cases": 1330.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 705.121, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1777.0, + "total_tests": 236297.0, + "total_tests_per_thousand": 125.277, + "new_tests_per_thousand": 0.942, + "new_tests_smoothed": 1698.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 540.273, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-23", + "total_cases": 1333.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 706.711, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1180.0, + "total_tests": 237477.0, + "total_tests_per_thousand": 125.902, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 1692.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 658.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-24", + "total_cases": 1337.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 708.832, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 1.136, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 926.0, + "total_tests": 238403.0, + "total_tests_per_thousand": 126.393, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 1697.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 791.933, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-25", + "total_cases": 1337.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 708.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.06, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2130.0, + "total_tests": 240533.0, + "total_tests_per_thousand": 127.522, + "new_tests_per_thousand": 1.129, + "new_tests_smoothed": 1682.0, + "new_tests_smoothed_per_thousand": 0.892, + "tests_per_case": 841.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-26", + "total_cases": 1342.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 711.483, + "new_cases_per_million": 2.651, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2290.0, + "total_tests": 242823.0, + "total_tests_per_thousand": 128.736, + "new_tests_per_thousand": 1.214, + "new_tests_smoothed": 1700.0, + "new_tests_smoothed_per_thousand": 0.901, + "tests_per_case": 626.316, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-27", + "total_cases": 1360.0, + "new_cases": 18.0, + "new_cases_smoothed": 4.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 721.026, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 17.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2004.0, + "total_tests": 244827.0, + "total_tests_per_thousand": 129.799, + "new_tests_per_thousand": 1.062, + "new_tests_smoothed": 1701.0, + "new_tests_smoothed_per_thousand": 0.902, + "tests_per_case": 350.20599999999996, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-28", + "total_cases": 1366.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 724.207, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 2.954, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2040.0, + "total_tests": 246867.0, + "total_tests_per_thousand": 130.88, + "new_tests_per_thousand": 1.082, + "new_tests_smoothed": 1764.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 316.615, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 1375.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 728.978, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 3.408, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2065.0, + "total_tests": 248932.0, + "total_tests_per_thousand": 131.975, + "new_tests_per_thousand": 1.095, + "new_tests_smoothed": 1805.0, + "new_tests_smoothed_per_thousand": 0.957, + "tests_per_case": 280.778, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 1375.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 728.978, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.181, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1777.0, + "total_tests": 250709.0, + "total_tests_per_thousand": 132.917, + "new_tests_per_thousand": 0.942, + "new_tests_smoothed": 1890.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 315.0, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 1393.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 738.521, + "new_cases_per_million": 9.543, + "new_cases_smoothed_per_million": 4.241, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 1008.0, + "total_tests": 251717.0, + "total_tests_per_thousand": 133.452, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 1902.0, + "new_tests_smoothed_per_thousand": 1.008, + "tests_per_case": 237.75, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 1396.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 740.112, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 4.469, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2101.0, + "total_tests": 253818.0, + "total_tests_per_thousand": 134.566, + "new_tests_per_thousand": 1.114, + "new_tests_smoothed": 1898.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 225.18599999999998, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 1404.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 744.353, + "new_cases_per_million": 4.241, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2532.0, + "total_tests": 256350.0, + "total_tests_per_thousand": 135.908, + "new_tests_per_thousand": 1.342, + "new_tests_smoothed": 1932.0, + "new_tests_smoothed_per_thousand": 1.024, + "tests_per_case": 218.12900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 1406.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 745.413, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 3.484, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 2445.0, + "total_tests": 258795.0, + "total_tests_per_thousand": 137.204, + "new_tests_per_thousand": 1.296, + "new_tests_smoothed": 1995.0, + "new_tests_smoothed_per_thousand": 1.058, + "tests_per_case": 303.587, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 1410.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 747.534, + "new_cases_per_million": 2.121, + "new_cases_smoothed_per_million": 3.332, + "total_deaths_per_million": 18.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1903.0, + "total_tests": 260698.0, + "total_tests_per_thousand": 138.213, + "new_tests_per_thousand": 1.009, + "new_tests_smoothed": 1976.0, + "new_tests_smoothed_per_thousand": 1.048, + "tests_per_case": 314.36400000000003, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 1416.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 750.715, + "new_cases_per_million": 3.181, + "new_cases_smoothed_per_million": 3.105, + "total_deaths_per_million": 18.556, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.076 + } + ] + }, + "LBN": { + "continent": "Asia", + "location": "Lebanon", + "population": 6825442.0, + "population_density": 594.561, + "median_age": 31.1, + "aged_65_older": 8.514, + "aged_70_older": 5.43, + "gdp_per_capita": 13367.565, + "cardiovasc_death_rate": 266.591, + "diabetes_prevalence": 12.71, + "female_smokers": 26.9, + "male_smokers": 40.7, + "hospital_beds_per_thousand": 2.9, + "life_expectancy": 78.93, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.293, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.44, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-01", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.586, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-02", + "total_cases": 10.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.465, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-03", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.905, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 1.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 1.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.344, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.272, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-07", + "total_cases": 22.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.223, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 0.398, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 2.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.377, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-09", + "total_cases": 32.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.688, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 0.46, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-10", + "total_cases": 41.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.007, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 0.586, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-11", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.586, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 37.96 + }, + { + "date": "2020-03-12", + "total_cases": 61.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.937, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.005, + "total_deaths_per_million": 0.293, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 37.96 + }, + { + "date": "2020-03-13", + "total_cases": 66.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.67, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 1.047, + "total_deaths_per_million": 0.293, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 37.96 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 6.286, + "new_deaths_smoothed": 0.286, + "new_cases_smoothed_per_million": 0.921, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 37.96 + }, + { + "date": "2020-03-15", + "total_cases": 93.0, + "new_cases": 27.0, + "new_cases_smoothed": 10.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13.625, + "new_cases_per_million": 3.956, + "new_cases_smoothed_per_million": 1.486, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 37.96 + }, + { + "date": "2020-03-16", + "total_cases": 99.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.505, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 1.402, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 120.0, + "new_cases": 21.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.581, + "new_cases_per_million": 3.077, + "new_cases_smoothed_per_million": 1.653, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 120.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.653, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-03-19", + "total_cases": 133.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.486, + "new_cases_per_million": 1.905, + "new_cases_smoothed_per_million": 1.507, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-03-20", + "total_cases": 149.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.83, + "new_cases_per_million": 2.344, + "new_cases_smoothed_per_million": 1.737, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-03-21", + "total_cases": 163.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.881, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 2.03, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-03-22", + "total_cases": 230.0, + "new_cases": 67.0, + "new_cases_smoothed": 19.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.697, + "new_cases_per_million": 9.816, + "new_cases_smoothed_per_million": 2.867, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-03-23", + "total_cases": 248.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 36.335, + "new_cases_per_million": 2.637, + "new_cases_smoothed_per_million": 3.119, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-03-24", + "total_cases": 267.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.118, + "new_cases_per_million": 2.784, + "new_cases_smoothed_per_million": 3.077, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-03-25", + "total_cases": 304.0, + "new_cases": 37.0, + "new_cases_smoothed": 26.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.539, + "new_cases_per_million": 5.421, + "new_cases_smoothed_per_million": 3.851, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-03-26", + "total_cases": 333.0, + "new_cases": 29.0, + "new_cases_smoothed": 28.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.788, + "new_cases_per_million": 4.249, + "new_cases_smoothed_per_million": 4.186, + "total_deaths_per_million": 0.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-03-27", + "total_cases": 368.0, + "new_cases": 35.0, + "new_cases_smoothed": 31.286, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 53.916, + "new_cases_per_million": 5.128, + "new_cases_smoothed_per_million": 4.584, + "total_deaths_per_million": 0.879, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-03-28", + "total_cases": 391.0, + "new_cases": 23.0, + "new_cases_smoothed": 32.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 57.286, + "new_cases_per_million": 3.37, + "new_cases_smoothed_per_million": 4.772, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 85.19 + }, + { + "date": "2020-03-29", + "total_cases": 412.0, + "new_cases": 21.0, + "new_cases_smoothed": 26.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 60.362, + "new_cases_per_million": 3.077, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 1.172, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 85.19 + }, + { + "date": "2020-03-30", + "total_cases": 438.0, + "new_cases": 26.0, + "new_cases_smoothed": 27.143, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 64.172, + "new_cases_per_million": 3.809, + "new_cases_smoothed_per_million": 3.977, + "total_deaths_per_million": 1.465, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 85.19 + }, + { + "date": "2020-03-31", + "total_cases": 446.0, + "new_cases": 8.0, + "new_cases_smoothed": 25.571, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 65.344, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 1.612, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 463.0, + "new_cases": 17.0, + "new_cases_smoothed": 22.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 67.834, + "new_cases_per_million": 2.491, + "new_cases_smoothed_per_million": 3.328, + "total_deaths_per_million": 1.758, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 479.0, + "new_cases": 16.0, + "new_cases_smoothed": 20.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 70.179, + "new_cases_per_million": 2.344, + "new_cases_smoothed_per_million": 3.056, + "total_deaths_per_million": 1.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 494.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.0, + "total_deaths": 16.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 72.376, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 2.637, + "total_deaths_per_million": 2.344, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 494.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 72.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 2.344, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 520.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.429, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 76.186, + "new_cases_per_million": 3.809, + "new_cases_smoothed_per_million": 2.26, + "total_deaths_per_million": 2.491, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 527.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.714, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 77.211, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.863, + "total_deaths_per_million": 2.637, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 541.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 79.262, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 2.784, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.167, + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 548.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 80.288, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.779, + "total_deaths_per_million": 2.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 575.0, + "new_cases": 27.0, + "new_cases_smoothed": 13.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 84.244, + "new_cases_per_million": 3.956, + "new_cases_smoothed_per_million": 2.009, + "total_deaths_per_million": 2.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 582.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 85.269, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.842, + "total_deaths_per_million": 2.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 85.19 + }, + { + "date": "2020-04-11", + "total_cases": 609.0, + "new_cases": 27.0, + "new_cases_smoothed": 16.429, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 89.225, + "new_cases_per_million": 3.956, + "new_cases_smoothed_per_million": 2.407, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 85.19 + }, + { + "date": "2020-04-12", + "total_cases": 619.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 90.69, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 2.072, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 85.19 + }, + { + "date": "2020-04-13", + "total_cases": 630.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 92.302, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 2.156, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-04-14", + "total_cases": 632.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 92.595, + "new_cases_per_million": 0.293, + "new_cases_smoothed_per_million": 1.905, + "total_deaths_per_million": 2.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-15", + "total_cases": 641.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 93.913, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 1.946, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-04-16", + "total_cases": 658.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 96.404, + "new_cases_per_million": 2.491, + "new_cases_smoothed_per_million": 1.737, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-04-17", + "total_cases": 663.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 97.137, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 1.695, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 85.19 + }, + { + "date": "2020-04-18", + "total_cases": 668.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 97.869, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 1.235, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-19", + "total_cases": 672.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.455, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 1.109, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-20", + "total_cases": 673.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.602, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.9, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-21", + "total_cases": 677.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.188, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.942, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 677.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.188, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.753, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 682.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.92, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 0.502, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 688.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.799, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 696.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 101.971, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 0.586, + "total_deaths_per_million": 3.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 704.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 103.144, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 0.67, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 707.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 103.583, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.712, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 81.48 + }, + { + "date": "2020-04-28", + "total_cases": 710.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.023, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.691, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 81.48 + }, + { + "date": "2020-04-29", + "total_cases": 717.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 105.048, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 81.48 + }, + { + "date": "2020-04-30", + "total_cases": 721.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 105.634, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.816, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 81.48 + }, + { + "date": "2020-05-01", + "total_cases": 725.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 106.22, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.774, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 81.48 + }, + { + "date": "2020-05-02", + "total_cases": 729.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 106.806, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.691, + "total_deaths_per_million": 3.516, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 81.48 + }, + { + "date": "2020-05-03", + "total_cases": 733.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 107.392, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 737.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 107.978, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.628, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-05", + "total_cases": 740.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 108.418, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.628, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 741.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 108.564, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.502, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-07", + "total_cases": 750.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.883, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-08", + "total_cases": 784.0, + "new_cases": 34.0, + "new_cases_smoothed": 8.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.864, + "new_cases_per_million": 4.981, + "new_cases_smoothed_per_million": 1.235, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-09", + "total_cases": 796.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 116.622, + "new_cases_per_million": 1.758, + "new_cases_smoothed_per_million": 1.402, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 77.78 + }, + { + "date": "2020-05-10", + "total_cases": 809.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.527, + "new_cases_per_million": 1.905, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-11", + "total_cases": 845.0, + "new_cases": 36.0, + "new_cases_smoothed": 15.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 123.802, + "new_cases_per_million": 5.274, + "new_cases_smoothed_per_million": 2.26, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-12", + "total_cases": 859.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.853, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 2.491, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 77.78 + }, + { + "date": "2020-05-13", + "total_cases": 870.0, + "new_cases": 11.0, + "new_cases_smoothed": 18.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.464, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 2.7, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-05-14", + "total_cases": 878.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.636, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 2.679, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-05-15", + "total_cases": 886.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.808, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 2.135, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 85.19 + }, + { + "date": "2020-05-16", + "total_cases": 891.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.541, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-17", + "total_cases": 902.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.153, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 1.946, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-18", + "total_cases": 911.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.471, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 1.381, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 931.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.401, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 1.507, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 954.0, + "new_cases": 23.0, + "new_cases_smoothed": 12.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.771, + "new_cases_per_million": 3.37, + "new_cases_smoothed_per_million": 1.758, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-21", + "total_cases": 961.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.797, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.737, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-22", + "total_cases": 1024.0, + "new_cases": 63.0, + "new_cases_smoothed": 19.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.027, + "new_cases_per_million": 9.23, + "new_cases_smoothed_per_million": 2.888, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-23", + "total_cases": 1086.0, + "new_cases": 62.0, + "new_cases_smoothed": 27.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.111, + "new_cases_per_million": 9.084, + "new_cases_smoothed_per_million": 4.081, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-24", + "total_cases": 1097.0, + "new_cases": 11.0, + "new_cases_smoothed": 27.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.722, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 4.081, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-25", + "total_cases": 1114.0, + "new_cases": 17.0, + "new_cases_smoothed": 29.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 163.213, + "new_cases_per_million": 2.491, + "new_cases_smoothed_per_million": 4.249, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-26", + "total_cases": 1119.0, + "new_cases": 5.0, + "new_cases_smoothed": 26.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 163.945, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 3.935, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 1140.0, + "new_cases": 21.0, + "new_cases_smoothed": 26.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 167.022, + "new_cases_per_million": 3.077, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 1161.0, + "new_cases": 21.0, + "new_cases_smoothed": 28.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.099, + "new_cases_per_million": 3.077, + "new_cases_smoothed_per_million": 4.186, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 1168.0, + "new_cases": 7.0, + "new_cases_smoothed": 20.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.124, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 3.014, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-30", + "total_cases": 1172.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.71, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 1.8, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-31", + "total_cases": 1191.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.494, + "new_cases_per_million": 2.784, + "new_cases_smoothed_per_million": 1.967, + "total_deaths_per_million": 3.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-01", + "total_cases": 1220.0, + "new_cases": 29.0, + "new_cases_smoothed": 15.143, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 178.743, + "new_cases_per_million": 4.249, + "new_cases_smoothed_per_million": 2.219, + "total_deaths_per_million": 3.956, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-02", + "total_cases": 1233.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 180.648, + "new_cases_per_million": 1.905, + "new_cases_smoothed_per_million": 2.386, + "total_deaths_per_million": 3.956, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-03", + "total_cases": 1242.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 181.966, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 2.135, + "total_deaths_per_million": 3.956, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-04", + "total_cases": 1256.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 184.017, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 3.956, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-05", + "total_cases": 1306.0, + "new_cases": 50.0, + "new_cases_smoothed": 19.714, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 191.343, + "new_cases_per_million": 7.326, + "new_cases_smoothed_per_million": 2.888, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-06", + "total_cases": 1312.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 192.222, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-07", + "total_cases": 1320.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.429, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 193.394, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 2.7, + "total_deaths_per_million": 4.249, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-08", + "total_cases": 1331.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.857, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 195.006, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 4.395, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-09", + "total_cases": 1350.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 197.789, + "new_cases_per_million": 2.784, + "new_cases_smoothed_per_million": 2.449, + "total_deaths_per_million": 4.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-10", + "total_cases": 1368.0, + "new_cases": 18.0, + "new_cases_smoothed": 18.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 200.427, + "new_cases_per_million": 2.637, + "new_cases_smoothed_per_million": 2.637, + "total_deaths_per_million": 4.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-11", + "total_cases": 1388.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 203.357, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.763, + "total_deaths_per_million": 4.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-12", + "total_cases": 1402.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.714, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 205.408, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 2.009, + "total_deaths_per_million": 4.542, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-13", + "total_cases": 1422.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 208.338, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.302, + "total_deaths_per_million": 4.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-14", + "total_cases": 1442.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 211.268, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.553, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 74.07 + }, + { + "date": "2020-06-15", + "total_cases": 1446.0, + "new_cases": 4.0, + "new_cases_smoothed": 16.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 211.854, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 2.407, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-16", + "total_cases": 1464.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.492, + "new_cases_per_million": 2.637, + "new_cases_smoothed_per_million": 2.386, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-17", + "total_cases": 1473.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 215.81, + "new_cases_per_million": 1.319, + "new_cases_smoothed_per_million": 2.198, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-18", + "total_cases": 1489.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 218.154, + "new_cases_per_million": 2.344, + "new_cases_smoothed_per_million": 2.114, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-19", + "total_cases": 1495.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 219.033, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 1.946, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-20", + "total_cases": 1510.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.571, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 221.231, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 1.842, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-21", + "total_cases": 1536.0, + "new_cases": 26.0, + "new_cases_smoothed": 13.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.04, + "new_cases_per_million": 3.809, + "new_cases_smoothed_per_million": 1.967, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-22", + "total_cases": 1587.0, + "new_cases": 51.0, + "new_cases_smoothed": 20.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.512, + "new_cases_per_million": 7.472, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-23", + "total_cases": 1603.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.857, + "new_cases_per_million": 2.344, + "new_cases_smoothed_per_million": 2.909, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-24", + "total_cases": 1622.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.64, + "new_cases_per_million": 2.784, + "new_cases_smoothed_per_million": 3.119, + "total_deaths_per_million": 4.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-06-25", + "total_cases": 1644.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.143, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 240.864, + "new_cases_per_million": 3.223, + "new_cases_smoothed_per_million": 3.244, + "total_deaths_per_million": 4.835, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-26", + "total_cases": 1662.0, + "new_cases": 18.0, + "new_cases_smoothed": 23.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 243.501, + "new_cases_per_million": 2.637, + "new_cases_smoothed_per_million": 3.495, + "total_deaths_per_million": 4.835, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-27", + "total_cases": 1697.0, + "new_cases": 35.0, + "new_cases_smoothed": 26.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 248.629, + "new_cases_per_million": 5.128, + "new_cases_smoothed_per_million": 3.914, + "total_deaths_per_million": 4.835, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-28", + "total_cases": 1719.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 251.852, + "new_cases_per_million": 3.223, + "new_cases_smoothed_per_million": 3.83, + "total_deaths_per_million": 4.835, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 74.07 + }, + { + "date": "2020-06-29", + "total_cases": 1740.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.857, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.929, + "new_cases_per_million": 3.077, + "new_cases_smoothed_per_million": 3.202, + "total_deaths_per_million": 4.981, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-06-30", + "total_cases": 1745.0, + "new_cases": 5.0, + "new_cases_smoothed": 20.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 255.661, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 2.972, + "total_deaths_per_million": 4.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 74.07 + }, + { + "date": "2020-07-01", + "total_cases": 1778.0, + "new_cases": 33.0, + "new_cases_smoothed": 22.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 260.496, + "new_cases_per_million": 4.835, + "new_cases_smoothed_per_million": 3.265, + "total_deaths_per_million": 4.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-02", + "total_cases": 1788.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.961, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 3.014, + "total_deaths_per_million": 4.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.52 + }, + { + "date": "2020-07-03", + "total_cases": 1796.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.143, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 263.133, + "new_cases_per_million": 1.172, + "new_cases_smoothed_per_million": 2.805, + "total_deaths_per_million": 5.128, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-04", + "total_cases": 1830.0, + "new_cases": 34.0, + "new_cases_smoothed": 19.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 268.115, + "new_cases_per_million": 4.981, + "new_cases_smoothed_per_million": 2.784, + "total_deaths_per_million": 5.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-05", + "total_cases": 1855.0, + "new_cases": 25.0, + "new_cases_smoothed": 19.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 271.777, + "new_cases_per_million": 3.663, + "new_cases_smoothed_per_million": 2.846, + "total_deaths_per_million": 5.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-06", + "total_cases": 1873.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.0, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 274.414, + "new_cases_per_million": 2.637, + "new_cases_smoothed_per_million": 2.784, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-07", + "total_cases": 1885.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.0, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 276.173, + "new_cases_per_million": 1.758, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-08", + "total_cases": 1907.0, + "new_cases": 22.0, + "new_cases_smoothed": 18.429, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 279.396, + "new_cases_per_million": 3.223, + "new_cases_smoothed_per_million": 2.7, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-09", + "total_cases": 1946.0, + "new_cases": 39.0, + "new_cases_smoothed": 22.571, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 285.11, + "new_cases_per_million": 5.714, + "new_cases_smoothed_per_million": 3.307, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-10", + "total_cases": 2011.0, + "new_cases": 65.0, + "new_cases_smoothed": 30.714, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 294.633, + "new_cases_per_million": 9.523, + "new_cases_smoothed_per_million": 4.5, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.52 + }, + { + "date": "2020-07-11", + "total_cases": 2082.0, + "new_cases": 71.0, + "new_cases_smoothed": 36.0, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 305.035, + "new_cases_per_million": 10.402, + "new_cases_smoothed_per_million": 5.274, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.52 + }, + { + "date": "2020-07-12", + "total_cases": 2168.0, + "new_cases": 86.0, + "new_cases_smoothed": 44.714, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 317.635, + "new_cases_per_million": 12.6, + "new_cases_smoothed_per_million": 6.551, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.52 + }, + { + "date": "2020-07-13", + "total_cases": 2334.0, + "new_cases": 166.0, + "new_cases_smoothed": 65.857, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.956, + "new_cases_per_million": 24.321, + "new_cases_smoothed_per_million": 9.649, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-14", + "total_cases": 2419.0, + "new_cases": 85.0, + "new_cases_smoothed": 76.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 354.409, + "new_cases_per_million": 12.453, + "new_cases_smoothed_per_million": 11.177, + "total_deaths_per_million": 5.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-15", + "total_cases": 2451.0, + "new_cases": 32.0, + "new_cases_smoothed": 77.714, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 359.098, + "new_cases_per_million": 4.688, + "new_cases_smoothed_per_million": 11.386, + "total_deaths_per_million": 5.421, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.52 + }, + { + "date": "2020-07-16", + "total_cases": 2542.0, + "new_cases": 91.0, + "new_cases_smoothed": 85.143, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 372.43, + "new_cases_per_million": 13.332, + "new_cases_smoothed_per_million": 12.474, + "total_deaths_per_million": 5.567, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 68.52 + }, + { + "date": "2020-07-17", + "total_cases": 2599.0, + "new_cases": 57.0, + "new_cases_smoothed": 84.0, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 380.781, + "new_cases_per_million": 8.351, + "new_cases_smoothed_per_million": 12.307, + "total_deaths_per_million": 5.86, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 68.52 + }, + { + "date": "2020-07-18", + "total_cases": 2700.0, + "new_cases": 101.0, + "new_cases_smoothed": 88.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 395.579, + "new_cases_per_million": 14.798, + "new_cases_smoothed_per_million": 12.935, + "total_deaths_per_million": 5.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 68.52 + }, + { + "date": "2020-07-19", + "total_cases": 2775.0, + "new_cases": 75.0, + "new_cases_smoothed": 86.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 406.567, + "new_cases_per_million": 10.988, + "new_cases_smoothed_per_million": 12.705, + "total_deaths_per_million": 5.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 68.52 + }, + { + "date": "2020-07-20", + "total_cases": 2859.0, + "new_cases": 84.0, + "new_cases_smoothed": 75.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 418.874, + "new_cases_per_million": 12.307, + "new_cases_smoothed_per_million": 10.988, + "total_deaths_per_million": 5.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 42.59 + }, + { + "date": "2020-07-21", + "total_cases": 2905.0, + "new_cases": 46.0, + "new_cases_smoothed": 69.429, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 425.613, + "new_cases_per_million": 6.739, + "new_cases_smoothed_per_million": 10.172, + "total_deaths_per_million": 6.007, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 42.59 + }, + { + "date": "2020-07-22", + "total_cases": 2980.0, + "new_cases": 75.0, + "new_cases_smoothed": 75.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 436.602, + "new_cases_per_million": 10.988, + "new_cases_smoothed_per_million": 11.072, + "total_deaths_per_million": 6.007, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 42.59 + }, + { + "date": "2020-07-23", + "total_cases": 3104.0, + "new_cases": 124.0, + "new_cases_smoothed": 80.286, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 454.769, + "new_cases_per_million": 18.167, + "new_cases_smoothed_per_million": 11.763, + "total_deaths_per_million": 6.3, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 42.59 + }, + { + "date": "2020-07-24", + "total_cases": 3260.0, + "new_cases": 156.0, + "new_cases_smoothed": 94.429, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 477.625, + "new_cases_per_million": 22.856, + "new_cases_smoothed_per_million": 13.835, + "total_deaths_per_million": 6.3, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 41.67 + }, + { + "date": "2020-07-25", + "total_cases": 3407.0, + "new_cases": 147.0, + "new_cases_smoothed": 101.0, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 499.162, + "new_cases_per_million": 21.537, + "new_cases_smoothed_per_million": 14.798, + "total_deaths_per_million": 6.739, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 41.67 + }, + { + "date": "2020-07-26", + "total_cases": 3582.0, + "new_cases": 175.0, + "new_cases_smoothed": 115.286, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 524.801, + "new_cases_per_million": 25.639, + "new_cases_smoothed_per_million": 16.891, + "total_deaths_per_million": 6.886, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 41.67 + }, + { + "date": "2020-07-27", + "total_cases": 3750.0, + "new_cases": 168.0, + "new_cases_smoothed": 127.286, + "total_deaths": 51.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 549.415, + "new_cases_per_million": 24.614, + "new_cases_smoothed_per_million": 18.649, + "total_deaths_per_million": 7.472, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.23, + "stringency_index": 41.67 + }, + { + "date": "2020-07-28", + "total_cases": 3882.0, + "new_cases": 132.0, + "new_cases_smoothed": 139.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 568.754, + "new_cases_per_million": 19.339, + "new_cases_smoothed_per_million": 20.449, + "total_deaths_per_million": 7.472, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 41.67 + }, + { + "date": "2020-07-29", + "total_cases": 4023.0, + "new_cases": 141.0, + "new_cases_smoothed": 149.0, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 589.412, + "new_cases_per_million": 20.658, + "new_cases_smoothed_per_million": 21.83, + "total_deaths_per_million": 7.912, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 41.67 + }, + { + "date": "2020-07-30", + "total_cases": 4205.0, + "new_cases": 182.0, + "new_cases_smoothed": 157.286, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 616.077, + "new_cases_per_million": 26.665, + "new_cases_smoothed_per_million": 23.044, + "total_deaths_per_million": 8.058, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 61.11 + }, + { + "date": "2020-07-31", + "total_cases": 4334.0, + "new_cases": 129.0, + "new_cases_smoothed": 153.429, + "total_deaths": 57.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 634.977, + "new_cases_per_million": 18.9, + "new_cases_smoothed_per_million": 22.479, + "total_deaths_per_million": 8.351, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.293, + "stringency_index": 61.11 + }, + { + "date": "2020-08-01", + "total_cases": 4555.0, + "new_cases": 221.0, + "new_cases_smoothed": 164.0, + "total_deaths": 61.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 667.356, + "new_cases_per_million": 32.379, + "new_cases_smoothed_per_million": 24.028, + "total_deaths_per_million": 8.937, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.314, + "stringency_index": 61.11 + }, + { + "date": "2020-08-02", + "total_cases": 4730.0, + "new_cases": 175.0, + "new_cases_smoothed": 164.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 692.995, + "new_cases_per_million": 25.639, + "new_cases_smoothed_per_million": 24.028, + "total_deaths_per_million": 8.937, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.293, + "stringency_index": 61.11 + }, + { + "date": "2020-08-03", + "total_cases": 4885.0, + "new_cases": 155.0, + "new_cases_smoothed": 162.143, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 715.705, + "new_cases_per_million": 22.709, + "new_cases_smoothed_per_million": 23.756, + "total_deaths_per_million": 9.084, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.23, + "stringency_index": 61.11 + }, + { + "date": "2020-08-04", + "total_cases": 5062.0, + "new_cases": 177.0, + "new_cases_smoothed": 168.571, + "total_deaths": 65.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 741.637, + "new_cases_per_million": 25.932, + "new_cases_smoothed_per_million": 24.698, + "total_deaths_per_million": 9.523, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.293, + "stringency_index": 57.41 + }, + { + "date": "2020-08-05", + "total_cases": 5062.0, + "new_cases": 0.0, + "new_cases_smoothed": 148.429, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 741.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.746, + "total_deaths_per_million": 9.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.23, + "stringency_index": 57.41 + }, + { + "date": "2020-08-06", + "total_cases": 5417.0, + "new_cases": 355.0, + "new_cases_smoothed": 173.143, + "total_deaths": 68.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 793.648, + "new_cases_per_million": 52.011, + "new_cases_smoothed_per_million": 25.367, + "total_deaths_per_million": 9.963, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 61.11 + }, + { + "date": "2020-08-07", + "total_cases": 5672.0, + "new_cases": 255.0, + "new_cases_smoothed": 191.143, + "total_deaths": 70.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 831.008, + "new_cases_per_million": 37.36, + "new_cases_smoothed_per_million": 28.004, + "total_deaths_per_million": 10.256, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 61.11 + }, + { + "date": "2020-08-08", + "total_cases": 5951.0, + "new_cases": 279.0, + "new_cases_smoothed": 199.429, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 871.885, + "new_cases_per_million": 40.876, + "new_cases_smoothed_per_million": 29.218, + "total_deaths_per_million": 10.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 61.11 + }, + { + "date": "2020-08-09", + "total_cases": 6223.0, + "new_cases": 272.0, + "new_cases_smoothed": 213.286, + "total_deaths": 76.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 911.736, + "new_cases_per_million": 39.851, + "new_cases_smoothed_per_million": 31.249, + "total_deaths_per_million": 11.135, + "new_deaths_per_million": 0.879, + "new_deaths_smoothed_per_million": 0.314, + "stringency_index": 61.11 + }, + { + "date": "2020-08-10", + "total_cases": 6517.0, + "new_cases": 294.0, + "new_cases_smoothed": 233.143, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 954.81, + "new_cases_per_million": 43.074, + "new_cases_smoothed_per_million": 34.158, + "total_deaths_per_million": 11.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.293, + "stringency_index": 61.11 + }, + { + "date": "2020-08-11", + "total_cases": 6812.0, + "new_cases": 295.0, + "new_cases_smoothed": 250.0, + "total_deaths": 80.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 998.031, + "new_cases_per_million": 43.221, + "new_cases_smoothed_per_million": 36.628, + "total_deaths_per_million": 11.721, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.314, + "stringency_index": 24.07 + }, + { + "date": "2020-08-12", + "total_cases": 7121.0, + "new_cases": 309.0, + "new_cases_smoothed": 294.143, + "total_deaths": 87.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1043.302, + "new_cases_per_million": 45.272, + "new_cases_smoothed_per_million": 43.095, + "total_deaths_per_million": 12.746, + "new_deaths_per_million": 1.026, + "new_deaths_smoothed_per_million": 0.46, + "stringency_index": 24.07 + }, + { + "date": "2020-08-13", + "total_cases": 7413.0, + "new_cases": 292.0, + "new_cases_smoothed": 285.143, + "total_deaths": 89.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1086.084, + "new_cases_per_million": 42.781, + "new_cases_smoothed_per_million": 41.776, + "total_deaths_per_million": 13.039, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 24.07 + }, + { + "date": "2020-08-14", + "total_cases": 7711.0, + "new_cases": 298.0, + "new_cases_smoothed": 291.286, + "total_deaths": 92.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1129.744, + "new_cases_per_million": 43.66, + "new_cases_smoothed_per_million": 42.676, + "total_deaths_per_million": 13.479, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.46, + "stringency_index": 24.07 + }, + { + "date": "2020-08-15", + "total_cases": 8045.0, + "new_cases": 334.0, + "new_cases_smoothed": 299.143, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1178.678, + "new_cases_per_million": 48.935, + "new_cases_smoothed_per_million": 43.828, + "total_deaths_per_million": 13.772, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.502, + "stringency_index": 24.07 + }, + { + "date": "2020-08-16", + "total_cases": 8442.0, + "new_cases": 397.0, + "new_cases_smoothed": 317.0, + "total_deaths": 97.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1236.843, + "new_cases_per_million": 58.165, + "new_cases_smoothed_per_million": 46.444, + "total_deaths_per_million": 14.212, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 24.07 + }, + { + "date": "2020-08-17", + "total_cases": 8881.0, + "new_cases": 439.0, + "new_cases_smoothed": 337.714, + "total_deaths": 103.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1301.161, + "new_cases_per_million": 64.318, + "new_cases_smoothed_per_million": 49.479, + "total_deaths_per_million": 15.091, + "new_deaths_per_million": 0.879, + "new_deaths_smoothed_per_million": 0.565, + "stringency_index": 24.07 + }, + { + "date": "2020-08-18", + "total_cases": 9337.0, + "new_cases": 456.0, + "new_cases_smoothed": 360.714, + "total_deaths": 105.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1367.97, + "new_cases_per_million": 66.809, + "new_cases_smoothed_per_million": 52.848, + "total_deaths_per_million": 15.384, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.523, + "stringency_index": 24.07 + }, + { + "date": "2020-08-19", + "total_cases": 9337.0, + "new_cases": 0.0, + "new_cases_smoothed": 316.571, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1367.97, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.381, + "total_deaths_per_million": 15.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.377, + "stringency_index": 24.07 + }, + { + "date": "2020-08-20", + "total_cases": 10347.0, + "new_cases": 1010.0, + "new_cases_smoothed": 419.143, + "total_deaths": 109.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1515.946, + "new_cases_per_million": 147.976, + "new_cases_smoothed_per_million": 61.409, + "total_deaths_per_million": 15.97, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.419, + "stringency_index": 24.07 + }, + { + "date": "2020-08-21", + "total_cases": 10952.0, + "new_cases": 605.0, + "new_cases_smoothed": 463.0, + "total_deaths": 113.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1604.585, + "new_cases_per_million": 88.639, + "new_cases_smoothed_per_million": 67.834, + "total_deaths_per_million": 16.556, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 64.81 + }, + { + "date": "2020-08-22", + "total_cases": 11580.0, + "new_cases": 628.0, + "new_cases_smoothed": 505.0, + "total_deaths": 116.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1696.593, + "new_cases_per_million": 92.009, + "new_cases_smoothed_per_million": 73.988, + "total_deaths_per_million": 16.995, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.46, + "stringency_index": 64.81 + }, + { + "date": "2020-08-23", + "total_cases": 12191.0, + "new_cases": 611.0, + "new_cases_smoothed": 535.571, + "total_deaths": 121.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1786.111, + "new_cases_per_million": 89.518, + "new_cases_smoothed_per_million": 78.467, + "total_deaths_per_million": 17.728, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.502, + "stringency_index": 64.81 + }, + { + "date": "2020-08-24", + "total_cases": 12191.0, + "new_cases": 0.0, + "new_cases_smoothed": 472.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1786.111, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 69.279, + "total_deaths_per_million": 17.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.377, + "stringency_index": 64.81 + }, + { + "date": "2020-08-25", + "total_cases": 13155.0, + "new_cases": 964.0, + "new_cases_smoothed": 545.429, + "total_deaths": 126.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1927.348, + "new_cases_per_million": 141.236, + "new_cases_smoothed_per_million": 79.911, + "total_deaths_per_million": 18.46, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.44, + "stringency_index": 64.81 + }, + { + "date": "2020-08-26", + "total_cases": 13687.0, + "new_cases": 532.0, + "new_cases_smoothed": 621.429, + "total_deaths": 138.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2005.291, + "new_cases_per_million": 77.944, + "new_cases_smoothed_per_million": 91.046, + "total_deaths_per_million": 20.218, + "new_deaths_per_million": 1.758, + "new_deaths_smoothed_per_million": 0.691, + "stringency_index": 64.81 + }, + { + "date": "2020-08-27", + "total_cases": 14248.0, + "new_cases": 561.0, + "new_cases_smoothed": 557.286, + "total_deaths": 139.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2087.484, + "new_cases_per_million": 82.192, + "new_cases_smoothed_per_million": 81.648, + "total_deaths_per_million": 20.365, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.628, + "stringency_index": 64.81 + }, + { + "date": "2020-08-28", + "total_cases": 14937.0, + "new_cases": 689.0, + "new_cases_smoothed": 569.286, + "total_deaths": 146.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2188.43, + "new_cases_per_million": 100.946, + "new_cases_smoothed_per_million": 83.406, + "total_deaths_per_million": 21.391, + "new_deaths_per_million": 1.026, + "new_deaths_smoothed_per_million": 0.691 + }, + { + "date": "2020-08-29", + "total_cases": 15613.0, + "new_cases": 676.0, + "new_cases_smoothed": 576.143, + "total_deaths": 148.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2287.471, + "new_cases_per_million": 99.041, + "new_cases_smoothed_per_million": 84.411, + "total_deaths_per_million": 21.684, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.67 + }, + { + "date": "2020-08-30", + "total_cases": 16275.0, + "new_cases": 662.0, + "new_cases_smoothed": 583.429, + "total_deaths": 155.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2384.461, + "new_cases_per_million": 96.99, + "new_cases_smoothed_per_million": 85.479, + "total_deaths_per_million": 22.709, + "new_deaths_per_million": 1.026, + "new_deaths_smoothed_per_million": 0.712 + }, + { + "date": "2020-08-31", + "total_cases": 16870.0, + "new_cases": 595.0, + "new_cases_smoothed": 668.429, + "total_deaths": 160.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2471.635, + "new_cases_per_million": 87.174, + "new_cases_smoothed_per_million": 97.932, + "total_deaths_per_million": 23.442, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.816 + }, + { + "date": "2020-09-01", + "total_cases": 17308.0, + "new_cases": 438.0, + "new_cases_smoothed": 593.286, + "total_deaths": 167.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 2535.806, + "new_cases_per_million": 64.172, + "new_cases_smoothed_per_million": 86.923, + "total_deaths_per_million": 24.467, + "new_deaths_per_million": 1.026, + "new_deaths_smoothed_per_million": 0.858 + }, + { + "date": "2020-09-02", + "total_cases": 17777.0, + "new_cases": 469.0, + "new_cases_smoothed": 584.286, + "total_deaths": 171.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2604.52, + "new_cases_per_million": 68.713, + "new_cases_smoothed_per_million": 85.604, + "total_deaths_per_million": 25.053, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.691 + }, + { + "date": "2020-09-03", + "total_cases": 18375.0, + "new_cases": 598.0, + "new_cases_smoothed": 589.571, + "total_deaths": 177.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2692.133, + "new_cases_per_million": 87.613, + "new_cases_smoothed_per_million": 86.378, + "total_deaths_per_million": 25.932, + "new_deaths_per_million": 0.879, + "new_deaths_smoothed_per_million": 0.795 + }, + { + "date": "2020-09-04", + "total_cases": 18963.0, + "new_cases": 588.0, + "new_cases_smoothed": 575.143, + "total_deaths": 179.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2778.282, + "new_cases_per_million": 86.148, + "new_cases_smoothed_per_million": 84.265, + "total_deaths_per_million": 26.225, + "new_deaths_per_million": 0.293, + "new_deaths_smoothed_per_million": 0.691 + }, + { + "date": "2020-09-05", + "total_cases": 19490.0, + "new_cases": 527.0, + "new_cases_smoothed": 553.857, + "total_deaths": 183.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2855.493, + "new_cases_per_million": 77.211, + "new_cases_smoothed_per_million": 81.146, + "total_deaths_per_million": 26.811, + "new_deaths_per_million": 0.586, + "new_deaths_smoothed_per_million": 0.733 + } + ] + }, + "LSO": { + "continent": "Africa", + "location": "Lesotho", + "population": 2142252.0, + "population_density": 73.562, + "median_age": 22.2, + "aged_65_older": 4.506, + "aged_70_older": 2.647, + "gdp_per_capita": 2851.153, + "extreme_poverty": 59.6, + "cardiovasc_death_rate": 405.126, + "diabetes_prevalence": 3.94, + "female_smokers": 0.4, + "male_smokers": 53.9, + "handwashing_facilities": 2.117, + "life_expectancy": 54.33, + "data": [ + { + "date": "2020-05-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.467, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-29", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-30", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-05-31", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-01", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-04", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-05", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.934, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-06", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-07", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-08", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-09", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-10", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-11", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-12", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-13", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-14", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-15", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-16", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-17", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-18", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-19", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-20", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-21", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-22", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-23", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-24", + "total_cases": 17.0, + "new_cases": 13.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.936, + "new_cases_per_million": 6.068, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-25", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-26", + "total_cases": 20.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.336, + "new_cases_per_million": 1.4, + "new_cases_smoothed_per_million": 1.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-27", + "total_cases": 24.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.203, + "new_cases_per_million": 1.867, + "new_cases_smoothed_per_million": 1.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-29", + "total_cases": 27.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.604, + "new_cases_per_million": 1.4, + "new_cases_smoothed_per_million": 1.534, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-30", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.534, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-01", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-02", + "total_cases": 35.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.338, + "new_cases_per_million": 3.734, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-03", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.338, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-04", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.338, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-05", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.338, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-06", + "total_cases": 79.0, + "new_cases": 44.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.877, + "new_cases_per_million": 20.539, + "new_cases_smoothed_per_million": 3.468, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-07", + "total_cases": 91.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.479, + "new_cases_per_million": 5.602, + "new_cases_smoothed_per_million": 4.268, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-08", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.268, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-09", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-10", + "total_cases": 134.0, + "new_cases": 43.0, + "new_cases_smoothed": 14.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.551, + "new_cases_per_million": 20.072, + "new_cases_smoothed_per_million": 6.602, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 54.63 + }, + { + "date": "2020-07-11", + "total_cases": 134.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.602, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 54.63 + }, + { + "date": "2020-07-12", + "total_cases": 184.0, + "new_cases": 50.0, + "new_cases_smoothed": 21.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.891, + "new_cases_per_million": 23.34, + "new_cases_smoothed_per_million": 9.936, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 54.63 + }, + { + "date": "2020-07-13", + "total_cases": 233.0, + "new_cases": 49.0, + "new_cases_smoothed": 22.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 108.764, + "new_cases_per_million": 22.873, + "new_cases_smoothed_per_million": 10.27, + "total_deaths_per_million": 0.934, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 54.63 + }, + { + "date": "2020-07-14", + "total_cases": 233.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 108.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.469, + "total_deaths_per_million": 0.934, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 54.63 + }, + { + "date": "2020-07-15", + "total_cases": 245.0, + "new_cases": 12.0, + "new_cases_smoothed": 22.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 114.366, + "new_cases_per_million": 5.602, + "new_cases_smoothed_per_million": 10.27, + "total_deaths_per_million": 1.4, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 58.33 + }, + { + "date": "2020-07-16", + "total_cases": 256.0, + "new_cases": 11.0, + "new_cases_smoothed": 23.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 119.5, + "new_cases_per_million": 5.135, + "new_cases_smoothed_per_million": 11.003, + "total_deaths_per_million": 1.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 58.33 + }, + { + "date": "2020-07-17", + "total_cases": 256.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 119.5, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.136, + "total_deaths_per_million": 1.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 58.33 + }, + { + "date": "2020-07-18", + "total_cases": 311.0, + "new_cases": 55.0, + "new_cases_smoothed": 25.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 145.174, + "new_cases_per_million": 25.674, + "new_cases_smoothed_per_million": 11.803, + "total_deaths_per_million": 1.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 58.33 + }, + { + "date": "2020-07-19", + "total_cases": 359.0, + "new_cases": 48.0, + "new_cases_smoothed": 25.0, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 167.581, + "new_cases_per_million": 22.406, + "new_cases_smoothed_per_million": 11.67, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 1.4, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-07-20", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.402, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "stringency_index": 71.3 + }, + { + "date": "2020-07-21", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.402, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "stringency_index": 71.3 + }, + { + "date": "2020-07-22", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.602, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-07-23", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.869, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-07-24", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.869, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-07-25", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.201, + "total_deaths_per_million": 2.801, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-07-26", + "total_cases": 419.0, + "new_cases": 60.0, + "new_cases_smoothed": 8.571, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 195.589, + "new_cases_per_million": 28.008, + "new_cases_smoothed_per_million": 4.001, + "total_deaths_per_million": 4.201, + "new_deaths_per_million": 1.4, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-07-27", + "total_cases": 446.0, + "new_cases": 27.0, + "new_cases_smoothed": 12.429, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 208.192, + "new_cases_per_million": 12.604, + "new_cases_smoothed_per_million": 5.802, + "total_deaths_per_million": 5.135, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-07-28", + "total_cases": 505.0, + "new_cases": 59.0, + "new_cases_smoothed": 20.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 235.733, + "new_cases_per_million": 27.541, + "new_cases_smoothed_per_million": 9.736, + "total_deaths_per_million": 5.602, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-07-29", + "total_cases": 505.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 235.733, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.736, + "total_deaths_per_million": 5.602, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-07-30", + "total_cases": 576.0, + "new_cases": 71.0, + "new_cases_smoothed": 31.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 268.876, + "new_cases_per_million": 33.143, + "new_cases_smoothed_per_million": 14.471, + "total_deaths_per_million": 6.068, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.467, + "stringency_index": 71.3 + }, + { + "date": "2020-07-31", + "total_cases": 604.0, + "new_cases": 28.0, + "new_cases_smoothed": 35.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 281.946, + "new_cases_per_million": 13.07, + "new_cases_smoothed_per_million": 16.338, + "total_deaths_per_million": 6.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.467, + "stringency_index": 71.3 + }, + { + "date": "2020-08-01", + "total_cases": 604.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 281.946, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.338, + "total_deaths_per_million": 6.068, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.467, + "stringency_index": 71.3 + }, + { + "date": "2020-08-02", + "total_cases": 702.0, + "new_cases": 98.0, + "new_cases_smoothed": 40.429, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 327.693, + "new_cases_per_million": 45.746, + "new_cases_smoothed_per_million": 18.872, + "total_deaths_per_million": 6.535, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-08-03", + "total_cases": 718.0, + "new_cases": 16.0, + "new_cases_smoothed": 38.857, + "total_deaths": 19.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 335.161, + "new_cases_per_million": 7.469, + "new_cases_smoothed_per_million": 18.138, + "total_deaths_per_million": 8.869, + "new_deaths_per_million": 2.334, + "new_deaths_smoothed_per_million": 0.533, + "stringency_index": 71.3 + }, + { + "date": "2020-08-04", + "total_cases": 718.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 335.161, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.204, + "total_deaths_per_million": 8.869, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.467, + "stringency_index": 71.3 + }, + { + "date": "2020-08-05", + "total_cases": 726.0, + "new_cases": 8.0, + "new_cases_smoothed": 31.571, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 338.896, + "new_cases_per_million": 3.734, + "new_cases_smoothed_per_million": 14.737, + "total_deaths_per_million": 9.803, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 0.6, + "stringency_index": 71.3 + }, + { + "date": "2020-08-06", + "total_cases": 726.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 338.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.003, + "total_deaths_per_million": 9.803, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.533, + "stringency_index": 71.3 + }, + { + "date": "2020-08-07", + "total_cases": 742.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.714, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 346.364, + "new_cases_per_million": 7.469, + "new_cases_smoothed_per_million": 9.203, + "total_deaths_per_million": 10.736, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 0.667, + "stringency_index": 71.3 + }, + { + "date": "2020-08-08", + "total_cases": 742.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 346.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.203, + "total_deaths_per_million": 10.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.667, + "stringency_index": 71.3 + }, + { + "date": "2020-08-09", + "total_cases": 742.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 346.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.667, + "total_deaths_per_million": 10.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.6, + "stringency_index": 71.3 + }, + { + "date": "2020-08-10", + "total_cases": 742.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 346.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.6, + "total_deaths_per_million": 10.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.267, + "stringency_index": 71.3 + }, + { + "date": "2020-08-11", + "total_cases": 781.0, + "new_cases": 39.0, + "new_cases_smoothed": 9.0, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 364.57, + "new_cases_per_million": 18.205, + "new_cases_smoothed_per_million": 4.201, + "total_deaths_per_million": 11.203, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-08-12", + "total_cases": 781.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 364.57, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.668, + "total_deaths_per_million": 11.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-08-13", + "total_cases": 798.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 372.505, + "new_cases_per_million": 7.936, + "new_cases_smoothed_per_million": 4.801, + "total_deaths_per_million": 11.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 71.3 + }, + { + "date": "2020-08-14", + "total_cases": 815.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 380.441, + "new_cases_per_million": 7.936, + "new_cases_smoothed_per_million": 4.868, + "total_deaths_per_million": 11.203, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 71.3 + }, + { + "date": "2020-08-15", + "total_cases": 884.0, + "new_cases": 69.0, + "new_cases_smoothed": 20.286, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 412.65, + "new_cases_per_million": 32.209, + "new_cases_smoothed_per_million": 9.469, + "total_deaths_per_million": 11.67, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 71.3 + }, + { + "date": "2020-08-16", + "total_cases": 903.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 421.519, + "new_cases_per_million": 8.869, + "new_cases_smoothed_per_million": 10.736, + "total_deaths_per_million": 11.67, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "stringency_index": 71.3 + }, + { + "date": "2020-08-17", + "total_cases": 946.0, + "new_cases": 43.0, + "new_cases_smoothed": 29.143, + "total_deaths": 30.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 441.591, + "new_cases_per_million": 20.072, + "new_cases_smoothed_per_million": 13.604, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 2.334, + "new_deaths_smoothed_per_million": 0.467, + "stringency_index": 71.3 + }, + { + "date": "2020-08-18", + "total_cases": 946.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 441.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.003, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-08-19", + "total_cases": 946.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 441.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.003, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-08-20", + "total_cases": 946.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 441.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.869, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-08-21", + "total_cases": 996.0, + "new_cases": 50.0, + "new_cases_smoothed": 25.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 464.931, + "new_cases_per_million": 23.34, + "new_cases_smoothed_per_million": 12.07, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 71.3 + }, + { + "date": "2020-08-22", + "total_cases": 1015.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 473.8, + "new_cases_per_million": 8.869, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-08-23", + "total_cases": 1015.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 473.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.469, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 71.3 + }, + { + "date": "2020-08-24", + "total_cases": 1015.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 473.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.601, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-08-25", + "total_cases": 1015.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 473.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.601, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-08-26", + "total_cases": 1049.0, + "new_cases": 34.0, + "new_cases_smoothed": 14.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 489.672, + "new_cases_per_million": 15.871, + "new_cases_smoothed_per_million": 6.869, + "total_deaths_per_million": 14.004, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-08-27", + "total_cases": 1051.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.0, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 490.605, + "new_cases_per_million": 0.934, + "new_cases_smoothed_per_million": 7.002, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 71.3 + }, + { + "date": "2020-08-28", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 490.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.668, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-08-29", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 490.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.401, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-08-30", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 490.605, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.401, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-08-31", + "total_cases": 1066.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 497.607, + "new_cases_per_million": 7.002, + "new_cases_smoothed_per_million": 3.401, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-09-01", + "total_cases": 1085.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 506.476, + "new_cases_per_million": 8.869, + "new_cases_smoothed_per_million": 4.668, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-09-02", + "total_cases": 1085.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 506.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.401, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-09-03", + "total_cases": 1085.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 506.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.267, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1085.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 506.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.267, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1148.0, + "new_cases": 63.0, + "new_cases_smoothed": 13.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 535.885, + "new_cases_per_million": 29.408, + "new_cases_smoothed_per_million": 6.468, + "total_deaths_per_million": 14.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LBR": { + "continent": "Africa", + "location": "Liberia", + "population": 5057677.0, + "population_density": 49.127, + "median_age": 19.2, + "aged_65_older": 3.057, + "aged_70_older": 1.756, + "gdp_per_capita": 752.788, + "extreme_poverty": 38.6, + "cardiovasc_death_rate": 272.509, + "diabetes_prevalence": 2.42, + "female_smokers": 1.5, + "male_smokers": 18.1, + "handwashing_facilities": 1.188, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 64.1, + "data": [ + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-18", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.395, + "new_cases_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-19", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.395, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.395, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.395, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.186, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.186, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.384, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.977, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 0.198, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.57, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.282, + "total_deaths_per_million": 0.593, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.768, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 81.48 + }, + { + "date": "2020-04-09", + "total_cases": 31.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.129, + "new_cases_per_million": 3.361, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 81.48 + }, + { + "date": "2020-04-10", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-04-11", + "total_cases": 37.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.316, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 0.791, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-04-12", + "total_cases": 48.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9.491, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 1.073, + "total_deaths_per_million": 0.989, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 50.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.886, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.045, + "total_deaths_per_million": 0.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 59.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.665, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 1.186, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-04-15", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.665, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 1.186, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-04-16", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11.665, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 1.186, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-17", + "total_cases": 73.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.434, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 1.186, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-18", + "total_cases": 76.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.027, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 1.102, + "total_deaths_per_million": 1.384, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-04-19", + "total_cases": 81.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.015, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-20", + "total_cases": 91.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.992, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 1.158, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-04-21", + "total_cases": 99.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.574, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 1.13, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-22", + "total_cases": 101.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.97, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-23", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.97, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-24", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.97, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-04-25", + "total_cases": 117.0, + "new_cases": 16.0, + "new_cases_smoothed": 5.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.133, + "new_cases_per_million": 3.164, + "new_cases_smoothed_per_million": 1.158, + "total_deaths_per_million": 1.582, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.96 + }, + { + "date": "2020-04-26", + "total_cases": 120.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 23.726, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 1.102, + "total_deaths_per_million": 2.175, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-04-27", + "total_cases": 124.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 24.517, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 2.373, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-04-28", + "total_cases": 133.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 16.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 26.297, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 0.96, + "total_deaths_per_million": 3.164, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 87.96 + }, + { + "date": "2020-04-29", + "total_cases": 141.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.878, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 1.13, + "total_deaths_per_million": 3.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 87.96 + }, + { + "date": "2020-04-30", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.13, + "total_deaths_per_million": 3.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.13, + "total_deaths_per_million": 3.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.226, + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 152.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.0, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 30.053, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 0.989, + "total_deaths_per_million": 3.559, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.282, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 154.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 30.449, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.96, + "total_deaths_per_million": 3.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.198, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 158.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 31.24, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.96, + "total_deaths_per_million": 3.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 166.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.821, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 3.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-06", + "total_cases": 170.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 33.612, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-05-07", + "total_cases": 178.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 35.194, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 1.045, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-05-08", + "total_cases": 189.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 37.369, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 1.356, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 87.96 + }, + { + "date": "2020-05-09", + "total_cases": 199.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.346, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 1.328, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-10", + "total_cases": 199.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-11", + "total_cases": 199.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.158, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-12", + "total_cases": 211.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 41.719, + "new_cases_per_million": 2.373, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-13", + "total_cases": 212.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.916, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-14", + "total_cases": 213.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.114, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.989, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-15", + "total_cases": 215.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.51, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-16", + "total_cases": 219.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.301, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-17", + "total_cases": 223.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.091, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.678, + "total_deaths_per_million": 3.954, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-18", + "total_cases": 226.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.685, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.763, + "total_deaths_per_million": 4.152, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.96 + }, + { + "date": "2020-05-19", + "total_cases": 229.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.278, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 4.35, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-20", + "total_cases": 233.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 46.069, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.593, + "total_deaths_per_million": 4.548, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-05-21", + "total_cases": 238.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 47.057, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 4.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-05-22", + "total_cases": 240.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 47.453, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 4.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 87.96 + }, + { + "date": "2020-05-23", + "total_cases": 249.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 49.232, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 4.745, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 255.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 50.418, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 0.904, + "total_deaths_per_million": 5.141, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 265.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 52.396, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 1.102, + "total_deaths_per_million": 5.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 265.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 52.396, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 5.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 266.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.593, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 5.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 266.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 52.593, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 269.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 53.186, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 273.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 53.977, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.678, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 280.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.361, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 288.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 56.943, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 84.26 + }, + { + "date": "2020-06-02", + "total_cases": 296.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.525, + "new_cases_per_million": 1.582, + "new_cases_smoothed_per_million": 0.876, + "total_deaths_per_million": 5.338, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 84.26 + }, + { + "date": "2020-06-03", + "total_cases": 311.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.429, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 61.491, + "new_cases_per_million": 2.966, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 5.536, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 84.26 + }, + { + "date": "2020-06-04", + "total_cases": 316.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.479, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 5.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.04 + }, + { + "date": "2020-06-05", + "total_cases": 321.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 63.468, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 1.469, + "total_deaths_per_million": 5.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-06", + "total_cases": 334.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.714, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 66.038, + "new_cases_per_million": 2.57, + "new_cases_smoothed_per_million": 1.723, + "total_deaths_per_million": 5.932, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-07", + "total_cases": 345.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 68.213, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 1.836, + "total_deaths_per_million": 5.932, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-08", + "total_cases": 359.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 70.981, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 2.005, + "total_deaths_per_million": 5.932, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-09", + "total_cases": 370.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 73.156, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 2.09, + "total_deaths_per_million": 5.932, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-10", + "total_cases": 383.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.286, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 75.726, + "new_cases_per_million": 2.57, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 6.129, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-11", + "total_cases": 397.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 78.495, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 2.288, + "total_deaths_per_million": 6.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-12", + "total_cases": 410.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 81.065, + "new_cases_per_million": 2.57, + "new_cases_smoothed_per_million": 2.514, + "total_deaths_per_million": 6.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-13", + "total_cases": 421.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 83.24, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 2.457, + "total_deaths_per_million": 6.327, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-14", + "total_cases": 446.0, + "new_cases": 25.0, + "new_cases_smoothed": 14.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.183, + "new_cases_per_million": 4.943, + "new_cases_smoothed_per_million": 2.853, + "total_deaths_per_million": 6.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-15", + "total_cases": 458.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 90.555, + "new_cases_per_million": 2.373, + "new_cases_smoothed_per_million": 2.796, + "total_deaths_per_million": 6.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-16", + "total_cases": 498.0, + "new_cases": 40.0, + "new_cases_smoothed": 18.286, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 98.464, + "new_cases_per_million": 7.909, + "new_cases_smoothed_per_million": 3.615, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 79.63 + }, + { + "date": "2020-06-17", + "total_cases": 509.0, + "new_cases": 11.0, + "new_cases_smoothed": 18.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 100.639, + "new_cases_per_million": 2.175, + "new_cases_smoothed_per_million": 3.559, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-18", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 100.639, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.164, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-19", + "total_cases": 542.0, + "new_cases": 33.0, + "new_cases_smoothed": 18.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 107.164, + "new_cases_per_million": 6.525, + "new_cases_smoothed_per_million": 3.728, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-20", + "total_cases": 581.0, + "new_cases": 39.0, + "new_cases_smoothed": 22.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.875, + "new_cases_per_million": 7.711, + "new_cases_smoothed_per_million": 4.519, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-21", + "total_cases": 601.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.829, + "new_cases_per_million": 3.954, + "new_cases_smoothed_per_million": 4.378, + "total_deaths_per_million": 6.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-22", + "total_cases": 626.0, + "new_cases": 25.0, + "new_cases_smoothed": 24.0, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.772, + "new_cases_per_million": 4.943, + "new_cases_smoothed_per_million": 4.745, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 79.63 + }, + { + "date": "2020-06-23", + "total_cases": 650.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.517, + "new_cases_per_million": 4.745, + "new_cases_smoothed_per_million": 4.293, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-24", + "total_cases": 652.0, + "new_cases": 2.0, + "new_cases_smoothed": 20.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.913, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 4.039, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-25", + "total_cases": 662.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 130.89, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 4.322, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-26", + "total_cases": 681.0, + "new_cases": 19.0, + "new_cases_smoothed": 19.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.647, + "new_cases_per_million": 3.757, + "new_cases_smoothed_per_million": 3.926, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-27", + "total_cases": 684.0, + "new_cases": 3.0, + "new_cases_smoothed": 14.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 135.24, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 2.909, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-28", + "total_cases": 729.0, + "new_cases": 45.0, + "new_cases_smoothed": 18.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 144.137, + "new_cases_per_million": 8.897, + "new_cases_smoothed_per_million": 3.615, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 79.63 + }, + { + "date": "2020-06-29", + "total_cases": 768.0, + "new_cases": 39.0, + "new_cases_smoothed": 20.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 151.848, + "new_cases_per_million": 7.711, + "new_cases_smoothed_per_million": 4.011, + "total_deaths_per_million": 6.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-06-30", + "total_cases": 770.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.143, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 152.244, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 3.389, + "total_deaths_per_million": 7.118, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 75.93 + }, + { + "date": "2020-07-01", + "total_cases": 780.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 154.221, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 3.615, + "total_deaths_per_million": 7.118, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 75.93 + }, + { + "date": "2020-07-02", + "total_cases": 804.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.286, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 158.966, + "new_cases_per_million": 4.745, + "new_cases_smoothed_per_million": 4.011, + "total_deaths_per_million": 7.316, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-03", + "total_cases": 819.0, + "new_cases": 15.0, + "new_cases_smoothed": 19.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 161.932, + "new_cases_per_million": 2.966, + "new_cases_smoothed_per_million": 3.898, + "total_deaths_per_million": 7.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-04", + "total_cases": 833.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.286, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 164.7, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 7.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-05", + "total_cases": 869.0, + "new_cases": 36.0, + "new_cases_smoothed": 20.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.818, + "new_cases_per_million": 7.118, + "new_cases_smoothed_per_million": 3.954, + "total_deaths_per_million": 7.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-06", + "total_cases": 874.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 172.807, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 2.994, + "total_deaths_per_million": 7.316, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-07", + "total_cases": 891.0, + "new_cases": 17.0, + "new_cases_smoothed": 17.286, + "total_deaths": 39.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 176.168, + "new_cases_per_million": 3.361, + "new_cases_smoothed_per_million": 3.418, + "total_deaths_per_million": 7.711, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 75.93 + }, + { + "date": "2020-07-08", + "total_cases": 917.0, + "new_cases": 26.0, + "new_cases_smoothed": 19.571, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 181.309, + "new_cases_per_million": 5.141, + "new_cases_smoothed_per_million": 3.87, + "total_deaths_per_million": 8.106, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 75.93 + }, + { + "date": "2020-07-09", + "total_cases": 926.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.429, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 183.088, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 3.446, + "total_deaths_per_million": 8.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 73.15 + }, + { + "date": "2020-07-10", + "total_cases": 957.0, + "new_cases": 31.0, + "new_cases_smoothed": 19.714, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 189.217, + "new_cases_per_million": 6.129, + "new_cases_smoothed_per_million": 3.898, + "total_deaths_per_million": 8.304, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 73.15 + }, + { + "date": "2020-07-11", + "total_cases": 963.0, + "new_cases": 6.0, + "new_cases_smoothed": 18.571, + "total_deaths": 47.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 190.404, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 3.672, + "total_deaths_per_million": 9.293, + "new_deaths_per_million": 0.989, + "new_deaths_smoothed_per_million": 0.282, + "stringency_index": 73.15 + }, + { + "date": "2020-07-12", + "total_cases": 998.0, + "new_cases": 35.0, + "new_cases_smoothed": 18.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 197.324, + "new_cases_per_million": 6.92, + "new_cases_smoothed_per_million": 3.644, + "total_deaths_per_million": 9.293, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.282, + "stringency_index": 73.15 + }, + { + "date": "2020-07-13", + "total_cases": 1010.0, + "new_cases": 12.0, + "new_cases_smoothed": 19.429, + "total_deaths": 51.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 199.696, + "new_cases_per_million": 2.373, + "new_cases_smoothed_per_million": 3.841, + "total_deaths_per_million": 10.084, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.395, + "stringency_index": 73.15 + }, + { + "date": "2020-07-14", + "total_cases": 1024.0, + "new_cases": 14.0, + "new_cases_smoothed": 19.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 202.464, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 3.757, + "total_deaths_per_million": 10.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.339, + "stringency_index": 73.15 + }, + { + "date": "2020-07-15", + "total_cases": 1024.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 202.464, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.022, + "total_deaths_per_million": 10.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.282, + "stringency_index": 73.15 + }, + { + "date": "2020-07-16", + "total_cases": 1056.0, + "new_cases": 32.0, + "new_cases_smoothed": 18.571, + "total_deaths": 66.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 208.792, + "new_cases_per_million": 6.327, + "new_cases_smoothed_per_million": 3.672, + "total_deaths_per_million": 13.049, + "new_deaths_per_million": 2.966, + "new_deaths_smoothed_per_million": 0.706, + "stringency_index": 73.15 + }, + { + "date": "2020-07-17", + "total_cases": 1070.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.143, + "total_deaths": 68.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 211.56, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 3.192, + "total_deaths_per_million": 13.445, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.734, + "stringency_index": 67.59 + }, + { + "date": "2020-07-18", + "total_cases": 1085.0, + "new_cases": 15.0, + "new_cases_smoothed": 17.429, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 214.525, + "new_cases_per_million": 2.966, + "new_cases_smoothed_per_million": 3.446, + "total_deaths_per_million": 13.643, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.621, + "stringency_index": 67.59 + }, + { + "date": "2020-07-19", + "total_cases": 1088.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.857, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 215.119, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 2.542, + "total_deaths_per_million": 13.84, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.65, + "stringency_index": 67.59 + }, + { + "date": "2020-07-20", + "total_cases": 1091.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.571, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 215.712, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 2.288, + "total_deaths_per_million": 13.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.537, + "stringency_index": 67.59 + }, + { + "date": "2020-07-21", + "total_cases": 1107.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.857, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 218.875, + "new_cases_per_million": 3.164, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 13.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.537, + "stringency_index": 67.59 + }, + { + "date": "2020-07-22", + "total_cases": 1108.0, + "new_cases": 1.0, + "new_cases_smoothed": 12.0, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 219.073, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 2.373, + "total_deaths_per_million": 13.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.537, + "stringency_index": 67.59 + }, + { + "date": "2020-07-23", + "total_cases": 1114.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.286, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 220.259, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 1.638, + "total_deaths_per_million": 13.84, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-07-24", + "total_cases": 1117.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.714, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 220.852, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 1.328, + "total_deaths_per_million": 14.038, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-07-25", + "total_cases": 1135.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.143, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 224.411, + "new_cases_per_million": 3.559, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 14.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-07-26", + "total_cases": 1155.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.571, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 228.366, + "new_cases_per_million": 3.954, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 14.038, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 67.59 + }, + { + "date": "2020-07-27", + "total_cases": 1162.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.143, + "total_deaths": 72.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 229.75, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 2.005, + "total_deaths_per_million": 14.236, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-07-28", + "total_cases": 1167.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 230.738, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 1.695, + "total_deaths_per_million": 14.236, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-07-29", + "total_cases": 1177.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.857, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 232.716, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 1.949, + "total_deaths_per_million": 14.236, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-07-30", + "total_cases": 1179.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.286, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 233.111, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.836, + "total_deaths_per_million": 14.236, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-07-31", + "total_cases": 1181.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.143, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 233.506, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.808, + "total_deaths_per_million": 14.434, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-08-01", + "total_cases": 1186.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.286, + "total_deaths": 75.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 234.495, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 1.441, + "total_deaths_per_million": 14.829, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-02", + "total_cases": 1189.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 235.088, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.96, + "total_deaths_per_million": 14.829, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-03", + "total_cases": 1207.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.429, + "total_deaths": 77.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 238.647, + "new_cases_per_million": 3.559, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 15.224, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 67.59 + }, + { + "date": "2020-08-04", + "total_cases": 1214.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 240.031, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 1.328, + "total_deaths_per_million": 15.422, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 67.59 + }, + { + "date": "2020-08-05", + "total_cases": 1216.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 240.427, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.102, + "total_deaths_per_million": 15.422, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 67.59 + }, + { + "date": "2020-08-06", + "total_cases": 1221.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 241.415, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 1.186, + "total_deaths_per_million": 15.422, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 67.59 + }, + { + "date": "2020-08-07", + "total_cases": 1224.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 242.008, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 15.422, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 67.59 + }, + { + "date": "2020-08-08", + "total_cases": 1230.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 243.195, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 1.243, + "total_deaths_per_million": 15.422, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-08-09", + "total_cases": 1234.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 243.986, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 1.271, + "total_deaths_per_million": 15.62, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-10", + "total_cases": 1237.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 244.579, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 15.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 67.59 + }, + { + "date": "2020-08-11", + "total_cases": 1240.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.172, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 15.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 67.59 + }, + { + "date": "2020-08-12", + "total_cases": 1250.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.857, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 247.149, + "new_cases_per_million": 1.977, + "new_cases_smoothed_per_million": 0.96, + "total_deaths_per_million": 16.015, + "new_deaths_per_million": 0.395, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-08-13", + "total_cases": 1252.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.429, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 247.544, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.876, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-14", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 247.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-15", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 247.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 67.59 + }, + { + "date": "2020-08-16", + "total_cases": 1257.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 248.533, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-08-17", + "total_cases": 1257.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 248.533, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-08-18", + "total_cases": 1277.0, + "new_cases": 20.0, + "new_cases_smoothed": 5.286, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 252.487, + "new_cases_per_million": 3.954, + "new_cases_smoothed_per_million": 1.045, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 67.59 + }, + { + "date": "2020-08-19", + "total_cases": 1282.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 253.476, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 0.904, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 67.59 + }, + { + "date": "2020-08-20", + "total_cases": 1282.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 253.476, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-21", + "total_cases": 1284.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 253.871, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.904, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-22", + "total_cases": 1285.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.069, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-23", + "total_cases": 1286.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.267, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-24", + "total_cases": 1286.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-25", + "total_cases": 1290.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.058, + "new_cases_per_million": 0.791, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-26", + "total_cases": 1295.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.046, + "new_cases_per_million": 0.989, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-27", + "total_cases": 1298.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.64, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.452, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-28", + "total_cases": 1298.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.395, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-29", + "total_cases": 1298.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-30", + "total_cases": 1304.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.826, + "new_cases_per_million": 1.186, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-08-31", + "total_cases": 1304.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.826, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 1304.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.826, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.395, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 1305.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.024, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.282, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 1305.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1306.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.221, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1306.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.221, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 16.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LBY": { + "continent": "Africa", + "location": "Libya", + "population": 6871287.0, + "population_density": 3.623, + "median_age": 29.0, + "aged_65_older": 4.424, + "aged_70_older": 2.816, + "gdp_per_capita": 17881.509, + "cardiovasc_death_rate": 341.862, + "diabetes_prevalence": 10.43, + "hospital_beds_per_thousand": 3.7, + "life_expectancy": 72.91, + "data": [ + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.146, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-27", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.164, + "new_cases_per_million": 1.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.455, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.601, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.601, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 18.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.62, + "new_cases_per_million": 1.019, + "new_cases_smoothed_per_million": 0.353, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.62, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.62, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.765, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.056, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 24.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.493, + "new_cases_per_million": 0.437, + "new_cases_smoothed_per_million": 0.27, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.493, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.27, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.638, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.784, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 35.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.094, + "new_cases_per_million": 1.31, + "new_cases_smoothed_per_million": 0.333, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 48.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.986, + "new_cases_per_million": 1.892, + "new_cases_smoothed_per_million": 0.561, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 49.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.131, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 51.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.422, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.333, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 59.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.586, + "new_cases_per_million": 1.164, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 60.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.732, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 61.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-27", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-28", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-29", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-04-30", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-01", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-02", + "total_cases": 63.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.169, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-03", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-04", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-05", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-06", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-07", + "total_cases": 64.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 100.0 + }, + { + "date": "2020-05-08", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-09", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-10", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-11", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-12", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-13", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-14", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-15", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-16", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-17", + "total_cases": 65.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.46, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-18", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-19", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.46, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-20", + "total_cases": 68.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.896, + "new_cases_per_million": 0.437, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-21", + "total_cases": 69.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.042, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-22", + "total_cases": 71.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.333, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-23", + "total_cases": 72.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.478, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-24", + "total_cases": 75.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.915, + "new_cases_per_million": 0.437, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-25", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.915, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-26", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.915, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.208, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-27", + "total_cases": 77.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.206, + "new_cases_per_million": 0.291, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-05-28", + "total_cases": 99.0, + "new_cases": 22.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.408, + "new_cases_per_million": 3.202, + "new_cases_smoothed_per_million": 0.624, + "total_deaths_per_million": 0.582, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 96.3 + }, + { + "date": "2020-05-29", + "total_cases": 105.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.281, + "new_cases_per_million": 0.873, + "new_cases_smoothed_per_million": 0.707, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-05-30", + "total_cases": 118.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.173, + "new_cases_per_million": 1.892, + "new_cases_smoothed_per_million": 0.956, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-05-31", + "total_cases": 130.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.919, + "new_cases_per_million": 1.746, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-01", + "total_cases": 156.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.703, + "new_cases_per_million": 3.784, + "new_cases_smoothed_per_million": 1.684, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-02", + "total_cases": 168.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.45, + "new_cases_per_million": 1.746, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-03", + "total_cases": 182.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 26.487, + "new_cases_per_million": 2.037, + "new_cases_smoothed_per_million": 2.183, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-04", + "total_cases": 196.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.524, + "new_cases_per_million": 2.037, + "new_cases_smoothed_per_million": 2.017, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 96.3 + }, + { + "date": "2020-06-05", + "total_cases": 196.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.524, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-06", + "total_cases": 239.0, + "new_cases": 43.0, + "new_cases_smoothed": 17.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.782, + "new_cases_per_million": 6.258, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-07", + "total_cases": 256.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.256, + "new_cases_per_million": 2.474, + "new_cases_smoothed_per_million": 2.62, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-08", + "total_cases": 256.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.079, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-09", + "total_cases": 270.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.294, + "new_cases_per_million": 2.037, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-10", + "total_cases": 332.0, + "new_cases": 62.0, + "new_cases_smoothed": 21.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.317, + "new_cases_per_million": 9.023, + "new_cases_smoothed_per_million": 3.119, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-11", + "total_cases": 378.0, + "new_cases": 46.0, + "new_cases_smoothed": 26.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.012, + "new_cases_per_million": 6.695, + "new_cases_smoothed_per_million": 3.784, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-12", + "total_cases": 393.0, + "new_cases": 15.0, + "new_cases_smoothed": 28.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.195, + "new_cases_per_million": 2.183, + "new_cases_smoothed_per_million": 4.096, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-13", + "total_cases": 409.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 59.523, + "new_cases_per_million": 2.329, + "new_cases_smoothed_per_million": 3.534, + "total_deaths_per_million": 0.873, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 96.3 + }, + { + "date": "2020-06-14", + "total_cases": 418.0, + "new_cases": 9.0, + "new_cases_smoothed": 23.143, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 60.833, + "new_cases_per_million": 1.31, + "new_cases_smoothed_per_million": 3.368, + "total_deaths_per_million": 1.164, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 96.3 + }, + { + "date": "2020-06-15", + "total_cases": 418.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 60.833, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.368, + "total_deaths_per_million": 1.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 96.3 + }, + { + "date": "2020-06-16", + "total_cases": 467.0, + "new_cases": 49.0, + "new_cases_smoothed": 28.143, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 67.964, + "new_cases_per_million": 7.131, + "new_cases_smoothed_per_million": 4.096, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 96.3 + }, + { + "date": "2020-06-17", + "total_cases": 467.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 67.964, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.807, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 96.3 + }, + { + "date": "2020-06-18", + "total_cases": 467.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 67.964, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.85, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 96.3 + }, + { + "date": "2020-06-19", + "total_cases": 500.0, + "new_cases": 33.0, + "new_cases_smoothed": 15.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 72.767, + "new_cases_per_million": 4.803, + "new_cases_smoothed_per_million": 2.225, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 96.3 + }, + { + "date": "2020-06-20", + "total_cases": 510.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.222, + "new_cases_per_million": 1.455, + "new_cases_smoothed_per_million": 2.1, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "stringency_index": 96.3 + }, + { + "date": "2020-06-21", + "total_cases": 520.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 75.677, + "new_cases_per_million": 1.455, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-22", + "total_cases": 544.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 79.17, + "new_cases_per_million": 3.493, + "new_cases_smoothed_per_million": 2.62, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 96.3 + }, + { + "date": "2020-06-23", + "total_cases": 571.0, + "new_cases": 27.0, + "new_cases_smoothed": 14.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.099, + "new_cases_per_million": 3.929, + "new_cases_smoothed_per_million": 2.162, + "total_deaths_per_million": 1.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-06-24", + "total_cases": 639.0, + "new_cases": 68.0, + "new_cases_smoothed": 24.571, + "total_deaths": 17.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 92.996, + "new_cases_per_million": 9.896, + "new_cases_smoothed_per_million": 3.576, + "total_deaths_per_million": 2.474, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.146, + "stringency_index": 96.3 + }, + { + "date": "2020-06-25", + "total_cases": 639.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.571, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 92.996, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.576, + "total_deaths_per_million": 2.62, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 96.3 + }, + { + "date": "2020-06-26", + "total_cases": 698.0, + "new_cases": 59.0, + "new_cases_smoothed": 28.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 101.582, + "new_cases_per_million": 8.586, + "new_cases_smoothed_per_million": 4.117, + "total_deaths_per_million": 2.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 96.3 + }, + { + "date": "2020-06-27", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 101.582, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.909, + "total_deaths_per_million": 2.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 94.44 + }, + { + "date": "2020-06-28", + "total_cases": 713.0, + "new_cases": 15.0, + "new_cases_smoothed": 27.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 103.765, + "new_cases_per_million": 2.183, + "new_cases_smoothed_per_million": 4.013, + "total_deaths_per_million": 2.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 94.44 + }, + { + "date": "2020-06-29", + "total_cases": 762.0, + "new_cases": 49.0, + "new_cases_smoothed": 31.143, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 110.896, + "new_cases_per_million": 7.131, + "new_cases_smoothed_per_million": 4.532, + "total_deaths_per_million": 3.056, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 94.44 + }, + { + "date": "2020-06-30", + "total_cases": 762.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 110.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.971, + "total_deaths_per_million": 3.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 94.44 + }, + { + "date": "2020-07-01", + "total_cases": 824.0, + "new_cases": 62.0, + "new_cases_smoothed": 26.429, + "total_deaths": 24.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 119.919, + "new_cases_per_million": 9.023, + "new_cases_smoothed_per_million": 3.846, + "total_deaths_per_million": 3.493, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.146, + "stringency_index": 94.44 + }, + { + "date": "2020-07-02", + "total_cases": 858.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 124.867, + "new_cases_per_million": 4.948, + "new_cases_smoothed_per_million": 4.553, + "total_deaths_per_million": 3.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 94.44 + }, + { + "date": "2020-07-03", + "total_cases": 891.0, + "new_cases": 33.0, + "new_cases_smoothed": 27.571, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 129.67, + "new_cases_per_million": 4.803, + "new_cases_smoothed_per_million": 4.013, + "total_deaths_per_million": 3.784, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 94.44 + }, + { + "date": "2020-07-04", + "total_cases": 918.0, + "new_cases": 27.0, + "new_cases_smoothed": 31.429, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 133.599, + "new_cases_per_million": 3.929, + "new_cases_smoothed_per_million": 4.574, + "total_deaths_per_million": 3.929, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 94.44 + }, + { + "date": "2020-07-05", + "total_cases": 989.0, + "new_cases": 71.0, + "new_cases_smoothed": 39.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 143.932, + "new_cases_per_million": 10.333, + "new_cases_smoothed_per_million": 5.738, + "total_deaths_per_million": 3.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 94.44 + }, + { + "date": "2020-07-06", + "total_cases": 989.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 143.932, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.719, + "total_deaths_per_million": 3.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 94.44 + }, + { + "date": "2020-07-07", + "total_cases": 1046.0, + "new_cases": 57.0, + "new_cases_smoothed": 40.571, + "total_deaths": 32.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 152.228, + "new_cases_per_million": 8.295, + "new_cases_smoothed_per_million": 5.904, + "total_deaths_per_million": 4.657, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 90.74 + }, + { + "date": "2020-07-08", + "total_cases": 1182.0, + "new_cases": 136.0, + "new_cases_smoothed": 51.143, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 172.02, + "new_cases_per_million": 19.793, + "new_cases_smoothed_per_million": 7.443, + "total_deaths_per_million": 5.094, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 90.74 + }, + { + "date": "2020-07-09", + "total_cases": 1182.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.286, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 172.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.736, + "total_deaths_per_million": 5.094, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 90.74 + }, + { + "date": "2020-07-10", + "total_cases": 1268.0, + "new_cases": 86.0, + "new_cases_smoothed": 53.857, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 184.536, + "new_cases_per_million": 12.516, + "new_cases_smoothed_per_million": 7.838, + "total_deaths_per_million": 5.239, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-11", + "total_cases": 1342.0, + "new_cases": 74.0, + "new_cases_smoothed": 60.571, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 195.305, + "new_cases_per_million": 10.769, + "new_cases_smoothed_per_million": 8.815, + "total_deaths_per_million": 5.53, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 90.74 + }, + { + "date": "2020-07-12", + "total_cases": 1389.0, + "new_cases": 47.0, + "new_cases_smoothed": 57.143, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 202.146, + "new_cases_per_million": 6.84, + "new_cases_smoothed_per_million": 8.316, + "total_deaths_per_million": 5.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 90.74 + }, + { + "date": "2020-07-13", + "total_cases": 1433.0, + "new_cases": 44.0, + "new_cases_smoothed": 63.429, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 208.549, + "new_cases_per_million": 6.403, + "new_cases_smoothed_per_million": 9.231, + "total_deaths_per_million": 5.676, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.249, + "stringency_index": 90.74 + }, + { + "date": "2020-07-14", + "total_cases": 1512.0, + "new_cases": 79.0, + "new_cases_smoothed": 66.571, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 220.046, + "new_cases_per_million": 11.497, + "new_cases_smoothed_per_million": 9.688, + "total_deaths_per_million": 5.821, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 90.74 + }, + { + "date": "2020-07-15", + "total_cases": 1563.0, + "new_cases": 51.0, + "new_cases_smoothed": 54.429, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 227.468, + "new_cases_per_million": 7.422, + "new_cases_smoothed_per_million": 7.921, + "total_deaths_per_million": 6.112, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.146, + "stringency_index": 90.74 + }, + { + "date": "2020-07-16", + "total_cases": 1589.0, + "new_cases": 26.0, + "new_cases_smoothed": 58.143, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 231.252, + "new_cases_per_million": 3.784, + "new_cases_smoothed_per_million": 8.462, + "total_deaths_per_million": 6.258, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 90.74 + }, + { + "date": "2020-07-17", + "total_cases": 1652.0, + "new_cases": 63.0, + "new_cases_smoothed": 54.857, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 240.421, + "new_cases_per_million": 9.169, + "new_cases_smoothed_per_million": 7.984, + "total_deaths_per_million": 6.695, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-18", + "total_cases": 1704.0, + "new_cases": 52.0, + "new_cases_smoothed": 51.714, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 247.988, + "new_cases_per_million": 7.568, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 6.84, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 90.74 + }, + { + "date": "2020-07-19", + "total_cases": 1791.0, + "new_cases": 87.0, + "new_cases_smoothed": 57.429, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 260.65, + "new_cases_per_million": 12.661, + "new_cases_smoothed_per_million": 8.358, + "total_deaths_per_million": 6.986, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-20", + "total_cases": 1866.0, + "new_cases": 75.0, + "new_cases_smoothed": 61.857, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 271.565, + "new_cases_per_million": 10.915, + "new_cases_smoothed_per_million": 9.002, + "total_deaths_per_million": 6.986, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 90.74 + }, + { + "date": "2020-07-21", + "total_cases": 1960.0, + "new_cases": 94.0, + "new_cases_smoothed": 64.0, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 285.245, + "new_cases_per_million": 13.68, + "new_cases_smoothed_per_million": 9.314, + "total_deaths_per_million": 7.131, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 90.74 + }, + { + "date": "2020-07-22", + "total_cases": 2088.0, + "new_cases": 128.0, + "new_cases_smoothed": 75.0, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 303.873, + "new_cases_per_million": 18.628, + "new_cases_smoothed_per_million": 10.915, + "total_deaths_per_million": 7.277, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 90.74 + }, + { + "date": "2020-07-23", + "total_cases": 2176.0, + "new_cases": 88.0, + "new_cases_smoothed": 83.857, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 316.68, + "new_cases_per_million": 12.807, + "new_cases_smoothed_per_million": 12.204, + "total_deaths_per_million": 7.713, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-24", + "total_cases": 2314.0, + "new_cases": 138.0, + "new_cases_smoothed": 94.571, + "total_deaths": 56.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 336.764, + "new_cases_per_million": 20.084, + "new_cases_smoothed_per_million": 13.763, + "total_deaths_per_million": 8.15, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-25", + "total_cases": 2425.0, + "new_cases": 111.0, + "new_cases_smoothed": 103.0, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 352.918, + "new_cases_per_million": 16.154, + "new_cases_smoothed_per_million": 14.99, + "total_deaths_per_million": 8.295, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-26", + "total_cases": 2547.0, + "new_cases": 122.0, + "new_cases_smoothed": 108.0, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 370.673, + "new_cases_per_million": 17.755, + "new_cases_smoothed_per_million": 15.718, + "total_deaths_per_million": 8.441, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 90.74 + }, + { + "date": "2020-07-27", + "total_cases": 2547.0, + "new_cases": 0.0, + "new_cases_smoothed": 97.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 370.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.158, + "total_deaths_per_million": 8.441, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 87.96 + }, + { + "date": "2020-07-28", + "total_cases": 2827.0, + "new_cases": 280.0, + "new_cases_smoothed": 123.857, + "total_deaths": 64.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 411.422, + "new_cases_per_million": 40.749, + "new_cases_smoothed_per_million": 18.025, + "total_deaths_per_million": 9.314, + "new_deaths_per_million": 0.873, + "new_deaths_smoothed_per_million": 0.312, + "stringency_index": 87.96 + }, + { + "date": "2020-07-29", + "total_cases": 2827.0, + "new_cases": 0.0, + "new_cases_smoothed": 105.571, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 411.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.364, + "total_deaths_per_million": 9.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 87.96 + }, + { + "date": "2020-07-30", + "total_cases": 3017.0, + "new_cases": 190.0, + "new_cases_smoothed": 120.143, + "total_deaths": 67.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 439.073, + "new_cases_per_million": 27.651, + "new_cases_smoothed_per_million": 17.485, + "total_deaths_per_million": 9.751, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 87.96 + }, + { + "date": "2020-07-31", + "total_cases": 3222.0, + "new_cases": 205.0, + "new_cases_smoothed": 129.714, + "total_deaths": 71.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 468.908, + "new_cases_per_million": 29.834, + "new_cases_smoothed_per_million": 18.878, + "total_deaths_per_million": 10.333, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.312, + "stringency_index": 87.96 + }, + { + "date": "2020-08-01", + "total_cases": 3222.0, + "new_cases": 0.0, + "new_cases_smoothed": 113.857, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 468.908, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.57, + "total_deaths_per_million": 10.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 87.96 + }, + { + "date": "2020-08-02", + "total_cases": 3621.0, + "new_cases": 399.0, + "new_cases_smoothed": 153.429, + "total_deaths": 74.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 526.976, + "new_cases_per_million": 58.068, + "new_cases_smoothed_per_million": 22.329, + "total_deaths_per_million": 10.769, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.333, + "stringency_index": 87.96 + }, + { + "date": "2020-08-03", + "total_cases": 3691.0, + "new_cases": 70.0, + "new_cases_smoothed": 163.429, + "total_deaths": 80.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 537.163, + "new_cases_per_million": 10.187, + "new_cases_smoothed_per_million": 23.784, + "total_deaths_per_million": 11.643, + "new_deaths_per_million": 0.873, + "new_deaths_smoothed_per_million": 0.457, + "stringency_index": 87.96 + }, + { + "date": "2020-08-04", + "total_cases": 4063.0, + "new_cases": 372.0, + "new_cases_smoothed": 176.571, + "total_deaths": 93.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 591.301, + "new_cases_per_million": 54.138, + "new_cases_smoothed_per_million": 25.697, + "total_deaths_per_million": 13.535, + "new_deaths_per_million": 1.892, + "new_deaths_smoothed_per_million": 0.603, + "stringency_index": 87.96 + }, + { + "date": "2020-08-05", + "total_cases": 4063.0, + "new_cases": 0.0, + "new_cases_smoothed": 176.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 591.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.697, + "total_deaths_per_million": 13.535, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.603, + "stringency_index": 87.96 + }, + { + "date": "2020-08-06", + "total_cases": 4224.0, + "new_cases": 161.0, + "new_cases_smoothed": 172.429, + "total_deaths": 96.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 614.732, + "new_cases_per_million": 23.431, + "new_cases_smoothed_per_million": 25.094, + "total_deaths_per_million": 13.971, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.603, + "stringency_index": 87.96 + }, + { + "date": "2020-08-07", + "total_cases": 4475.0, + "new_cases": 251.0, + "new_cases_smoothed": 179.0, + "total_deaths": 99.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 651.261, + "new_cases_per_million": 36.529, + "new_cases_smoothed_per_million": 26.05, + "total_deaths_per_million": 14.408, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.582, + "stringency_index": 87.96 + }, + { + "date": "2020-08-08", + "total_cases": 5079.0, + "new_cases": 604.0, + "new_cases_smoothed": 265.286, + "total_deaths": 108.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 739.163, + "new_cases_per_million": 87.902, + "new_cases_smoothed_per_million": 38.608, + "total_deaths_per_million": 15.718, + "new_deaths_per_million": 1.31, + "new_deaths_smoothed_per_million": 0.769, + "stringency_index": 87.96 + }, + { + "date": "2020-08-09", + "total_cases": 5079.0, + "new_cases": 0.0, + "new_cases_smoothed": 208.286, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 739.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.312, + "total_deaths_per_million": 15.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 87.96 + }, + { + "date": "2020-08-10", + "total_cases": 5232.0, + "new_cases": 153.0, + "new_cases_smoothed": 220.143, + "total_deaths": 113.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 761.429, + "new_cases_per_million": 22.267, + "new_cases_smoothed_per_million": 32.038, + "total_deaths_per_million": 16.445, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.686, + "stringency_index": 87.96 + }, + { + "date": "2020-08-11", + "total_cases": 5541.0, + "new_cases": 309.0, + "new_cases_smoothed": 211.143, + "total_deaths": 120.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 806.399, + "new_cases_per_million": 44.97, + "new_cases_smoothed_per_million": 30.728, + "total_deaths_per_million": 17.464, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.561, + "stringency_index": 87.96 + }, + { + "date": "2020-08-12", + "total_cases": 5929.0, + "new_cases": 388.0, + "new_cases_smoothed": 266.571, + "total_deaths": 125.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 862.866, + "new_cases_per_million": 56.467, + "new_cases_smoothed_per_million": 38.795, + "total_deaths_per_million": 18.192, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.665, + "stringency_index": 87.96 + }, + { + "date": "2020-08-13", + "total_cases": 6302.0, + "new_cases": 373.0, + "new_cases_smoothed": 296.857, + "total_deaths": 132.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 917.15, + "new_cases_per_million": 54.284, + "new_cases_smoothed_per_million": 43.203, + "total_deaths_per_million": 19.21, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.748, + "stringency_index": 87.96 + }, + { + "date": "2020-08-14", + "total_cases": 7050.0, + "new_cases": 748.0, + "new_cases_smoothed": 367.857, + "total_deaths": 135.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1026.009, + "new_cases_per_million": 108.859, + "new_cases_smoothed_per_million": 53.535, + "total_deaths_per_million": 19.647, + "new_deaths_per_million": 0.437, + "new_deaths_smoothed_per_million": 0.748, + "stringency_index": 87.96 + }, + { + "date": "2020-08-15", + "total_cases": 7327.0, + "new_cases": 277.0, + "new_cases_smoothed": 321.143, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1066.321, + "new_cases_per_million": 40.313, + "new_cases_smoothed_per_million": 46.737, + "total_deaths_per_million": 20.229, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 87.96 + }, + { + "date": "2020-08-16", + "total_cases": 7738.0, + "new_cases": 411.0, + "new_cases_smoothed": 379.857, + "total_deaths": 145.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1126.135, + "new_cases_per_million": 59.814, + "new_cases_smoothed_per_million": 55.282, + "total_deaths_per_million": 21.102, + "new_deaths_per_million": 0.873, + "new_deaths_smoothed_per_million": 0.769, + "stringency_index": 87.96 + }, + { + "date": "2020-08-17", + "total_cases": 7738.0, + "new_cases": 0.0, + "new_cases_smoothed": 358.0, + "total_deaths": 145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1126.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 52.101, + "total_deaths_per_million": 21.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.665, + "stringency_index": 87.96 + }, + { + "date": "2020-08-18", + "total_cases": 8579.0, + "new_cases": 841.0, + "new_cases_smoothed": 434.0, + "total_deaths": 157.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1248.529, + "new_cases_per_million": 122.393, + "new_cases_smoothed_per_million": 63.161, + "total_deaths_per_million": 22.849, + "new_deaths_per_million": 1.746, + "new_deaths_smoothed_per_million": 0.769, + "stringency_index": 87.96 + }, + { + "date": "2020-08-19", + "total_cases": 8579.0, + "new_cases": 0.0, + "new_cases_smoothed": 378.571, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1248.529, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 55.095, + "total_deaths_per_million": 22.849, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.665, + "stringency_index": 87.96 + }, + { + "date": "2020-08-20", + "total_cases": 9068.0, + "new_cases": 489.0, + "new_cases_smoothed": 395.143, + "total_deaths": 164.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1319.695, + "new_cases_per_million": 71.166, + "new_cases_smoothed_per_million": 57.506, + "total_deaths_per_million": 23.867, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.665, + "stringency_index": 87.96 + }, + { + "date": "2020-08-21", + "total_cases": 9463.0, + "new_cases": 395.0, + "new_cases_smoothed": 344.714, + "total_deaths": 169.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1377.18, + "new_cases_per_million": 57.486, + "new_cases_smoothed_per_million": 50.167, + "total_deaths_per_million": 24.595, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 87.96 + }, + { + "date": "2020-08-22", + "total_cases": 9707.0, + "new_cases": 244.0, + "new_cases_smoothed": 340.0, + "total_deaths": 173.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1412.69, + "new_cases_per_million": 35.51, + "new_cases_smoothed_per_million": 49.481, + "total_deaths_per_million": 25.177, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 87.96 + }, + { + "date": "2020-08-23", + "total_cases": 10121.0, + "new_cases": 414.0, + "new_cases_smoothed": 340.429, + "total_deaths": 180.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1472.941, + "new_cases_per_million": 60.251, + "new_cases_smoothed_per_million": 49.544, + "total_deaths_per_million": 26.196, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 87.96 + }, + { + "date": "2020-08-24", + "total_cases": 10437.0, + "new_cases": 316.0, + "new_cases_smoothed": 385.571, + "total_deaths": 188.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1518.929, + "new_cases_per_million": 45.988, + "new_cases_smoothed_per_million": 56.113, + "total_deaths_per_million": 27.36, + "new_deaths_per_million": 1.164, + "new_deaths_smoothed_per_million": 0.894, + "stringency_index": 87.96 + }, + { + "date": "2020-08-25", + "total_cases": 11009.0, + "new_cases": 572.0, + "new_cases_smoothed": 347.143, + "total_deaths": 199.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1602.174, + "new_cases_per_million": 83.245, + "new_cases_smoothed_per_million": 50.521, + "total_deaths_per_million": 28.961, + "new_deaths_per_million": 1.601, + "new_deaths_smoothed_per_million": 0.873, + "stringency_index": 87.96 + }, + { + "date": "2020-08-26", + "total_cases": 11281.0, + "new_cases": 272.0, + "new_cases_smoothed": 386.0, + "total_deaths": 203.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1641.759, + "new_cases_per_million": 39.585, + "new_cases_smoothed_per_million": 56.176, + "total_deaths_per_million": 29.543, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 87.96 + }, + { + "date": "2020-08-27", + "total_cases": 11834.0, + "new_cases": 553.0, + "new_cases_smoothed": 395.143, + "total_deaths": 210.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1722.239, + "new_cases_per_million": 80.48, + "new_cases_smoothed_per_million": 57.506, + "total_deaths_per_million": 30.562, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 87.96 + }, + { + "date": "2020-08-28", + "total_cases": 12274.0, + "new_cases": 440.0, + "new_cases_smoothed": 401.571, + "total_deaths": 219.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1786.274, + "new_cases_per_million": 64.035, + "new_cases_smoothed_per_million": 58.442, + "total_deaths_per_million": 31.872, + "new_deaths_per_million": 1.31, + "new_deaths_smoothed_per_million": 1.04 + }, + { + "date": "2020-08-29", + "total_cases": 12629.0, + "new_cases": 355.0, + "new_cases_smoothed": 417.429, + "total_deaths": 226.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1837.938, + "new_cases_per_million": 51.664, + "new_cases_smoothed_per_million": 60.75, + "total_deaths_per_million": 32.89, + "new_deaths_per_million": 1.019, + "new_deaths_smoothed_per_million": 1.102 + }, + { + "date": "2020-08-30", + "total_cases": 12958.0, + "new_cases": 329.0, + "new_cases_smoothed": 405.286, + "total_deaths": 231.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1885.818, + "new_cases_per_million": 47.88, + "new_cases_smoothed_per_million": 58.983, + "total_deaths_per_million": 33.618, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 1.06 + }, + { + "date": "2020-08-31", + "total_cases": 13423.0, + "new_cases": 465.0, + "new_cases_smoothed": 426.571, + "total_deaths": 232.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1953.491, + "new_cases_per_million": 67.673, + "new_cases_smoothed_per_million": 62.08, + "total_deaths_per_million": 33.764, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.915 + }, + { + "date": "2020-09-01", + "total_cases": 13966.0, + "new_cases": 543.0, + "new_cases_smoothed": 422.429, + "total_deaths": 237.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2032.516, + "new_cases_per_million": 79.024, + "new_cases_smoothed_per_million": 61.477, + "total_deaths_per_million": 34.491, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.79 + }, + { + "date": "2020-09-02", + "total_cases": 14624.0, + "new_cases": 658.0, + "new_cases_smoothed": 477.571, + "total_deaths": 242.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2128.277, + "new_cases_per_million": 95.761, + "new_cases_smoothed_per_million": 69.502, + "total_deaths_per_million": 35.219, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.811 + }, + { + "date": "2020-09-03", + "total_cases": 15156.0, + "new_cases": 532.0, + "new_cases_smoothed": 474.571, + "total_deaths": 250.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2205.7, + "new_cases_per_million": 77.424, + "new_cases_smoothed_per_million": 69.066, + "total_deaths_per_million": 36.383, + "new_deaths_per_million": 1.164, + "new_deaths_smoothed_per_million": 0.832 + }, + { + "date": "2020-09-04", + "total_cases": 15773.0, + "new_cases": 617.0, + "new_cases_smoothed": 499.857, + "total_deaths": 254.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2295.494, + "new_cases_per_million": 89.794, + "new_cases_smoothed_per_million": 72.746, + "total_deaths_per_million": 36.965, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.728 + }, + { + "date": "2020-09-05", + "total_cases": 16445.0, + "new_cases": 672.0, + "new_cases_smoothed": 545.143, + "total_deaths": 262.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2393.293, + "new_cases_per_million": 97.798, + "new_cases_smoothed_per_million": 79.336, + "total_deaths_per_million": 38.13, + "new_deaths_per_million": 1.164, + "new_deaths_smoothed_per_million": 0.748 + } + ] + }, + "LIE": { + "continent": "Europe", + "location": "Liechtenstein", + "population": 38137.0, + "population_density": 237.012, + "diabetes_prevalence": 7.77, + "hospital_beds_per_thousand": 2.397, + "life_expectancy": 82.49, + "data": [ + { + "date": "2020-03-05", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 26.221, + "new_cases_per_million": 26.221, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.746, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.664, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.885, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.549, + "new_cases_per_million": 78.664, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 25.0, + "new_cases": 18.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 655.531, + "new_cases_per_million": 471.983, + "new_cases_smoothed_per_million": 82.41, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 655.531, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.664, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 34.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 891.523, + "new_cases_per_million": 235.991, + "new_cases_smoothed_per_million": 112.377, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 943.965, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 119.869, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 46.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1206.178, + "new_cases_per_million": 262.213, + "new_cases_smoothed_per_million": 146.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1206.178, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 146.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 47.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1232.399, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 149.836, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 51.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1337.284, + "new_cases_per_million": 104.885, + "new_cases_smoothed_per_million": 97.393, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 56.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1468.39, + "new_cases_per_million": 131.106, + "new_cases_smoothed_per_million": 116.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 60.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1573.275, + "new_cases_per_million": 104.885, + "new_cases_smoothed_per_million": 97.393, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 61.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1599.497, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 93.647, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 62.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1625.718, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 59.934, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 64.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1678.16, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 67.426, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 68.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.045, + "new_cases_per_million": 104.885, + "new_cases_smoothed_per_million": 78.664, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 72.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1887.93, + "new_cases_per_million": 104.885, + "new_cases_smoothed_per_million": 78.664, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 75.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1966.594, + "new_cases_per_million": 78.664, + "new_cases_smoothed_per_million": 71.172, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1966.594, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 77.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2019.037, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 59.934, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 26.221, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-06", + "total_cases": 78.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2045.258, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 59.934, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-07", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2045.258, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 52.443, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-08", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2045.258, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.459, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-09", + "total_cases": 79.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2071.479, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-10", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2071.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.984, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-11", + "total_cases": 80.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2097.7, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 18.729, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.746 + }, + { + "date": "2020-04-12", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2097.7, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2097.7, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2123.922, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2123.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2123.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2123.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2123.922, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2150.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 83.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2176.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 84.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2202.585, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2202.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2202.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2228.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 86.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2255.028, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2255.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 87.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 87.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2281.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 88.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2307.47, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 89.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2333.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 90.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2359.913, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 3.746, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 91.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2386.134, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 91.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2386.134, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 93.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2438.577, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 14.984, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2438.577, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.984, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2464.798, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 18.729, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 97.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2543.462, + "new_cases_per_million": 78.664, + "new_cases_smoothed_per_million": 29.967, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 98.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2569.683, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 29.967, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 100.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2622.125, + "new_cases_per_million": 52.443, + "new_cases_smoothed_per_million": 33.713, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2622.125, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.713, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 101.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2648.347, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 29.967, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2648.347, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.967, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2648.347, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2648.347, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.984, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 105.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2753.232, + "new_cases_per_million": 104.885, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 106.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2779.453, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2779.453, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 107.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2805.674, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 22.475, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 108.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 26.221, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.221, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.238, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2831.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.492, + "total_deaths_per_million": 26.221, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LTU": { + "continent": "Europe", + "location": "Lithuania", + "population": 2722291.0, + "population_density": 45.135, + "median_age": 43.5, + "aged_65_older": 19.002, + "aged_70_older": 13.778, + "gdp_per_capita": 29524.265, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 342.989, + "diabetes_prevalence": 3.67, + "female_smokers": 21.3, + "male_smokers": 38.0, + "hospital_beds_per_thousand": 6.56, + "life_expectancy": 75.93, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.367, + "new_cases_per_million": 0.367, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 76.0, + "total_tests_per_thousand": 0.028, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.367, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.367, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.367, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 226.0, + "total_tests_per_thousand": 0.083, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.01, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.009, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.008, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.007, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.007, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.102, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 56.0, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.102, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 56.0, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 366.0, + "total_tests_per_thousand": 0.134, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 56.0, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-14", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.204, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 0.262, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 36.4, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-15", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.306, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 31.5, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-16", + "total_cases": 14.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.143, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 624.0, + "total_tests_per_thousand": 0.229, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 24.769000000000002, + "positive_rate": 0.04, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-17", + "total_cases": 17.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.245, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 742.0, + "total_tests_per_thousand": 0.273, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 26.25, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-18", + "total_cases": 25.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.183, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 1.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 193.0, + "total_tests": 935.0, + "total_tests_per_thousand": 0.343, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 86.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 27.364, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-19", + "total_cases": 33.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.122, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 1.574, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 125.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 29.166999999999998, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-20", + "total_cases": 48.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.632, + "new_cases_per_million": 5.51, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 164.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 25.511, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 69.0, + "new_cases": 21.0, + "new_cases_smoothed": 9.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.346, + "new_cases_per_million": 7.714, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 192.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 21.333000000000002, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 105.0, + "new_cases": 36.0, + "new_cases_smoothed": 13.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.57, + "new_cases_per_million": 13.224, + "new_cases_smoothed_per_million": 5.038, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 2086.0, + "total_tests_per_thousand": 0.766, + "new_tests_smoothed": 221.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 16.115, + "positive_rate": 0.062, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 143.0, + "new_cases": 38.0, + "new_cases_smoothed": 18.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.529, + "new_cases_per_million": 13.959, + "new_cases_smoothed_per_million": 6.77, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 275.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 14.922, + "positive_rate": 0.067, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 179.0, + "new_cases": 36.0, + "new_cases_smoothed": 23.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 65.753, + "new_cases_per_million": 13.224, + "new_cases_smoothed_per_million": 8.501, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 324.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 209.0, + "new_cases": 30.0, + "new_cases_smoothed": 26.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 76.774, + "new_cases_per_million": 11.02, + "new_cases_smoothed_per_million": 9.656, + "total_deaths_per_million": 0.735, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.105, + "total_tests": 3471.0, + "total_tests_per_thousand": 1.275, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 13.772, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 274.0, + "new_cases": 65.0, + "new_cases_smoothed": 34.429, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 100.651, + "new_cases_per_million": 23.877, + "new_cases_smoothed_per_million": 12.647, + "total_deaths_per_million": 1.469, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.21, + "new_tests_smoothed": 466.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 13.535, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 299.0, + "new_cases": 25.0, + "new_cases_smoothed": 35.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 109.834, + "new_cases_per_million": 9.183, + "new_cases_smoothed_per_million": 13.172, + "total_deaths_per_million": 1.469, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "total_tests": 5495.0, + "total_tests_per_thousand": 2.019, + "new_tests_smoothed": 569.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 15.869000000000002, + "positive_rate": 0.063, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 358.0, + "new_cases": 59.0, + "new_cases_smoothed": 41.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 131.507, + "new_cases_per_million": 21.673, + "new_cases_smoothed_per_million": 15.166, + "total_deaths_per_million": 1.837, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 1405.0, + "total_tests": 6900.0, + "total_tests_per_thousand": 2.535, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 17.657, + "positive_rate": 0.057, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 394.0, + "new_cases": 36.0, + "new_cases_smoothed": 41.286, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 144.731, + "new_cases_per_million": 13.224, + "new_cases_smoothed_per_million": 15.166, + "total_deaths_per_million": 2.571, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 1524.0, + "total_tests": 8424.0, + "total_tests_per_thousand": 3.094, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 905.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 21.92, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-30", + "total_cases": 484.0, + "new_cases": 90.0, + "new_cases_smoothed": 48.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 177.791, + "new_cases_per_million": 33.06, + "new_cases_smoothed_per_million": 17.895, + "total_deaths_per_million": 2.571, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 1467.0, + "total_tests": 9891.0, + "total_tests_per_thousand": 3.633, + "new_tests_per_thousand": 0.539, + "new_tests_smoothed": 1049.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 21.534000000000002, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 484.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 177.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.005, + "total_deaths_per_million": 2.571, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.315, + "new_tests_smoothed": 1175.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 26.967, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-01", + "total_cases": 533.0, + "new_cases": 49.0, + "new_cases_smoothed": 46.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 195.791, + "new_cases_per_million": 18.0, + "new_cases_smoothed_per_million": 17.002, + "total_deaths_per_million": 2.571, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "total_tests": 12574.0, + "total_tests_per_thousand": 4.619, + "new_tests_smoothed": 1300.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 28.086, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-02", + "total_cases": 581.0, + "new_cases": 48.0, + "new_cases_smoothed": 43.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 213.423, + "new_cases_per_million": 17.632, + "new_cases_smoothed_per_million": 16.11, + "total_deaths_per_million": 2.939, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 3049.0, + "total_tests": 15623.0, + "total_tests_per_thousand": 5.739, + "new_tests_per_thousand": 1.12, + "new_tests_smoothed": 1591.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 36.277, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-03", + "total_cases": 649.0, + "new_cases": 68.0, + "new_cases_smoothed": 50.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 238.402, + "new_cases_per_million": 24.979, + "new_cases_smoothed_per_million": 18.367, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 2809.0, + "total_tests": 18432.0, + "total_tests_per_thousand": 6.771, + "new_tests_per_thousand": 1.032, + "new_tests_smoothed": 1848.0, + "new_tests_smoothed_per_thousand": 0.679, + "tests_per_case": 36.96, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-04", + "total_cases": 771.0, + "new_cases": 122.0, + "new_cases_smoothed": 59.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 283.217, + "new_cases_per_million": 44.815, + "new_cases_smoothed_per_million": 21.673, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 2944.0, + "total_tests": 21376.0, + "total_tests_per_thousand": 7.852, + "new_tests_per_thousand": 1.081, + "new_tests_smoothed": 2068.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 35.051, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-05", + "total_cases": 771.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 283.217, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.784, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 2269.0, + "total_tests": 23645.0, + "total_tests_per_thousand": 8.686, + "new_tests_per_thousand": 0.833, + "new_tests_smoothed": 2174.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 40.366, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-06", + "total_cases": 811.0, + "new_cases": 40.0, + "new_cases_smoothed": 46.714, + "total_deaths": 13.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 297.911, + "new_cases_per_million": 14.694, + "new_cases_smoothed_per_million": 17.16, + "total_deaths_per_million": 4.775, + "new_deaths_per_million": 1.469, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 1954.0, + "total_tests": 25599.0, + "total_tests_per_thousand": 9.403, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 2244.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 48.037, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-07", + "total_cases": 843.0, + "new_cases": 32.0, + "new_cases_smoothed": 51.286, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 309.666, + "new_cases_per_million": 11.755, + "new_cases_smoothed_per_million": 18.839, + "total_deaths_per_million": 5.143, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 2208.0, + "total_tests": 27807.0, + "total_tests_per_thousand": 10.215, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 2368.0, + "new_tests_smoothed_per_thousand": 0.87, + "tests_per_case": 46.173, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-08", + "total_cases": 880.0, + "new_cases": 37.0, + "new_cases_smoothed": 49.571, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 323.257, + "new_cases_per_million": 13.591, + "new_cases_smoothed_per_million": 18.209, + "total_deaths_per_million": 5.51, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.42, + "new_tests_smoothed": 2533.0, + "new_tests_smoothed_per_thousand": 0.93, + "tests_per_case": 51.098, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-09", + "total_cases": 912.0, + "new_cases": 32.0, + "new_cases_smoothed": 47.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 335.012, + "new_cases_per_million": 11.755, + "new_cases_smoothed_per_million": 17.37, + "total_deaths_per_million": 5.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "total_tests": 32809.0, + "total_tests_per_thousand": 12.052, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.902, + "tests_per_case": 51.918, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-10", + "total_cases": 955.0, + "new_cases": 43.0, + "new_cases_smoothed": 43.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 350.807, + "new_cases_per_million": 15.796, + "new_cases_smoothed_per_million": 16.058, + "total_deaths_per_million": 5.51, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 3242.0, + "total_tests": 36051.0, + "total_tests_per_thousand": 13.243, + "new_tests_per_thousand": 1.191, + "new_tests_smoothed": 2517.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 57.578, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 999.0, + "new_cases": 44.0, + "new_cases_smoothed": 32.571, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 366.97, + "new_cases_per_million": 16.163, + "new_cases_smoothed_per_million": 11.965, + "total_deaths_per_million": 6.245, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 2421.0, + "total_tests": 38472.0, + "total_tests_per_thousand": 14.132, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 2442.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 74.97399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 1053.0, + "new_cases": 54.0, + "new_cases_smoothed": 40.286, + "total_deaths": 23.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 386.807, + "new_cases_per_million": 19.836, + "new_cases_smoothed_per_million": 14.798, + "total_deaths_per_million": 8.449, + "new_deaths_per_million": 2.204, + "new_deaths_smoothed_per_million": 0.735, + "new_tests_smoothed": 2335.0, + "new_tests_smoothed_per_thousand": 0.858, + "tests_per_case": 57.961000000000006, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 1062.0, + "new_cases": 9.0, + "new_cases_smoothed": 35.857, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 390.113, + "new_cases_per_million": 3.306, + "new_cases_smoothed_per_million": 13.172, + "total_deaths_per_million": 8.816, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.577, + "total_tests": 41503.0, + "total_tests_per_thousand": 15.246, + "new_tests_smoothed": 2272.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 63.363, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 1070.0, + "new_cases": 8.0, + "new_cases_smoothed": 32.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 393.051, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 11.912, + "total_deaths_per_million": 8.816, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.525, + "new_tests": 1187.0, + "total_tests": 42690.0, + "total_tests_per_thousand": 15.682, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 2126.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 65.559, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-15", + "total_cases": 1070.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 393.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.971, + "total_deaths_per_million": 8.816, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.472, + "new_tests": 1987.0, + "total_tests": 44677.0, + "total_tests_per_thousand": 16.412, + "new_tests_per_thousand": 0.73, + "new_tests_smoothed": 2053.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 75.637, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-16", + "total_cases": 1091.0, + "new_cases": 21.0, + "new_cases_smoothed": 25.571, + "total_deaths": 29.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 400.765, + "new_cases_per_million": 7.714, + "new_cases_smoothed_per_million": 9.393, + "total_deaths_per_million": 10.653, + "new_deaths_per_million": 1.837, + "new_deaths_smoothed_per_million": 0.735, + "new_tests": 3860.0, + "total_tests": 48537.0, + "total_tests_per_thousand": 17.829, + "new_tests_per_thousand": 1.418, + "new_tests_smoothed": 2247.0, + "new_tests_smoothed_per_thousand": 0.825, + "tests_per_case": 87.87200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-17", + "total_cases": 1149.0, + "new_cases": 58.0, + "new_cases_smoothed": 27.714, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 422.071, + "new_cases_per_million": 21.306, + "new_cases_smoothed_per_million": 10.181, + "total_deaths_per_million": 11.755, + "new_deaths_per_million": 1.102, + "new_deaths_smoothed_per_million": 0.892, + "new_tests": 4564.0, + "total_tests": 53101.0, + "total_tests_per_thousand": 19.506, + "new_tests_per_thousand": 1.677, + "new_tests_smoothed": 2436.0, + "new_tests_smoothed_per_thousand": 0.895, + "tests_per_case": 87.897, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-18", + "total_cases": 1239.0, + "new_cases": 90.0, + "new_cases_smoothed": 34.286, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 455.131, + "new_cases_per_million": 33.06, + "new_cases_smoothed_per_million": 12.594, + "total_deaths_per_million": 12.122, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 5715.0, + "total_tests": 58816.0, + "total_tests_per_thousand": 21.605, + "new_tests_per_thousand": 2.099, + "new_tests_smoothed": 2906.0, + "new_tests_smoothed_per_thousand": 1.067, + "tests_per_case": 84.758, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-19", + "total_cases": 1298.0, + "new_cases": 59.0, + "new_cases_smoothed": 35.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 476.804, + "new_cases_per_million": 21.673, + "new_cases_smoothed_per_million": 12.857, + "total_deaths_per_million": 12.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.525, + "new_tests": 5219.0, + "total_tests": 64035.0, + "total_tests_per_thousand": 23.522, + "new_tests_per_thousand": 1.917, + "new_tests_smoothed": 3435.0, + "new_tests_smoothed_per_thousand": 1.262, + "tests_per_case": 98.14299999999999, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-20", + "total_cases": 1326.0, + "new_cases": 28.0, + "new_cases_smoothed": 37.714, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 487.09, + "new_cases_per_million": 10.285, + "new_cases_smoothed_per_million": 13.854, + "total_deaths_per_million": 13.224, + "new_deaths_per_million": 1.102, + "new_deaths_smoothed_per_million": 0.63, + "new_tests": 2317.0, + "total_tests": 66352.0, + "total_tests_per_thousand": 24.374, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 3550.0, + "new_tests_smoothed_per_thousand": 1.304, + "tests_per_case": 94.12899999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-21", + "total_cases": 1350.0, + "new_cases": 24.0, + "new_cases_smoothed": 40.0, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 495.906, + "new_cases_per_million": 8.816, + "new_cases_smoothed_per_million": 14.694, + "total_deaths_per_million": 13.591, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.682, + "new_tests": 4401.0, + "total_tests": 70753.0, + "total_tests_per_thousand": 25.99, + "new_tests_per_thousand": 1.617, + "new_tests_smoothed": 4009.0, + "new_tests_smoothed_per_thousand": 1.473, + "tests_per_case": 100.225, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-22", + "total_cases": 1370.0, + "new_cases": 20.0, + "new_cases_smoothed": 42.857, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 503.253, + "new_cases_per_million": 7.347, + "new_cases_smoothed_per_million": 15.743, + "total_deaths_per_million": 13.959, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.735, + "new_tests": 6040.0, + "total_tests": 76793.0, + "total_tests_per_thousand": 28.209, + "new_tests_per_thousand": 2.219, + "new_tests_smoothed": 4588.0, + "new_tests_smoothed_per_thousand": 1.685, + "tests_per_case": 107.053, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-23", + "total_cases": 1398.0, + "new_cases": 28.0, + "new_cases_smoothed": 43.857, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 513.538, + "new_cases_per_million": 10.285, + "new_cases_smoothed_per_million": 16.11, + "total_deaths_per_million": 13.959, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.472, + "new_tests": 6798.0, + "total_tests": 83591.0, + "total_tests_per_thousand": 30.706, + "new_tests_per_thousand": 2.497, + "new_tests_smoothed": 5008.0, + "new_tests_smoothed_per_thousand": 1.84, + "tests_per_case": 114.189, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-24", + "total_cases": 1410.0, + "new_cases": 12.0, + "new_cases_smoothed": 37.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 517.946, + "new_cases_per_million": 4.408, + "new_cases_smoothed_per_million": 13.696, + "total_deaths_per_million": 14.694, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 7401.0, + "total_tests": 90992.0, + "total_tests_per_thousand": 33.425, + "new_tests_per_thousand": 2.719, + "new_tests_smoothed": 5413.0, + "new_tests_smoothed_per_thousand": 1.988, + "tests_per_case": 145.17600000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-25", + "total_cases": 1410.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 517.946, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.974, + "total_deaths_per_million": 14.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 7956.0, + "total_tests": 98948.0, + "total_tests_per_thousand": 36.347, + "new_tests_per_thousand": 2.923, + "new_tests_smoothed": 5733.0, + "new_tests_smoothed_per_thousand": 2.106, + "tests_per_case": 234.68400000000003, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-26", + "total_cases": 1426.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.286, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 523.824, + "new_cases_per_million": 5.877, + "new_cases_smoothed_per_million": 6.717, + "total_deaths_per_million": 15.061, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 5540.0, + "total_tests": 104488.0, + "total_tests_per_thousand": 38.382, + "new_tests_per_thousand": 2.035, + "new_tests_smoothed": 5779.0, + "new_tests_smoothed_per_thousand": 2.123, + "tests_per_case": 316.039, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-27", + "total_cases": 1438.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 528.232, + "new_cases_per_million": 4.408, + "new_cases_smoothed_per_million": 5.877, + "total_deaths_per_million": 15.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 2287.0, + "total_tests": 106775.0, + "total_tests_per_thousand": 39.222, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 5775.0, + "new_tests_smoothed_per_thousand": 2.121, + "tests_per_case": 360.93800000000005, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-28", + "total_cases": 1449.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 532.272, + "new_cases_per_million": 4.041, + "new_cases_smoothed_per_million": 5.195, + "total_deaths_per_million": 15.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 5034.0, + "total_tests": 111809.0, + "total_tests_per_thousand": 41.072, + "new_tests_per_thousand": 1.849, + "new_tests_smoothed": 5865.0, + "new_tests_smoothed_per_thousand": 2.154, + "tests_per_case": 414.69699999999995, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-29", + "total_cases": 1344.0, + "new_cases": -105.0, + "new_cases_smoothed": -3.714, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 493.702, + "new_cases_per_million": -38.57, + "new_cases_smoothed_per_million": -1.364, + "total_deaths_per_million": 16.163, + "new_deaths_per_million": 1.102, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 6392.0, + "total_tests": 118201.0, + "total_tests_per_thousand": 43.42, + "new_tests_per_thousand": 2.348, + "new_tests_smoothed": 5915.0, + "new_tests_smoothed_per_thousand": 2.173, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-30", + "total_cases": 1375.0, + "new_cases": 31.0, + "new_cases_smoothed": -3.286, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 505.089, + "new_cases_per_million": 11.387, + "new_cases_smoothed_per_million": -1.207, + "total_deaths_per_million": 16.53, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 7354.0, + "total_tests": 125555.0, + "total_tests_per_thousand": 46.121, + "new_tests_per_thousand": 2.701, + "new_tests_smoothed": 5995.0, + "new_tests_smoothed_per_thousand": 2.202, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-01", + "total_cases": 1385.0, + "new_cases": 10.0, + "new_cases_smoothed": -3.571, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 508.763, + "new_cases_per_million": 3.673, + "new_cases_smoothed_per_million": -1.312, + "total_deaths_per_million": 16.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 7213.0, + "total_tests": 132768.0, + "total_tests_per_thousand": 48.771, + "new_tests_per_thousand": 2.65, + "new_tests_smoothed": 5968.0, + "new_tests_smoothed_per_thousand": 2.192, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-02", + "total_cases": 1399.0, + "new_cases": 14.0, + "new_cases_smoothed": -1.571, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 513.905, + "new_cases_per_million": 5.143, + "new_cases_smoothed_per_million": -0.577, + "total_deaths_per_million": 16.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 5502.0, + "total_tests": 138270.0, + "total_tests_per_thousand": 50.792, + "new_tests_per_thousand": 2.021, + "new_tests_smoothed": 5617.0, + "new_tests_smoothed_per_thousand": 2.063, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-03", + "total_cases": 1406.0, + "new_cases": 7.0, + "new_cases_smoothed": -2.857, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 516.477, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": -1.05, + "total_deaths_per_million": 16.898, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 3408.0, + "total_tests": 141678.0, + "total_tests_per_thousand": 52.044, + "new_tests_per_thousand": 1.252, + "new_tests_smoothed": 5313.0, + "new_tests_smoothed_per_thousand": 1.952, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 1410.0, + "new_cases": 4.0, + "new_cases_smoothed": -4.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 517.946, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": -1.469, + "total_deaths_per_million": 16.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 2351.0, + "total_tests": 144029.0, + "total_tests_per_thousand": 52.907, + "new_tests_per_thousand": 0.864, + "new_tests_smoothed": 5322.0, + "new_tests_smoothed_per_thousand": 1.955, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-05", + "total_cases": 1419.0, + "new_cases": 9.0, + "new_cases_smoothed": -4.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 521.252, + "new_cases_per_million": 3.306, + "new_cases_smoothed_per_million": -1.574, + "total_deaths_per_million": 16.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 5077.0, + "total_tests": 149106.0, + "total_tests_per_thousand": 54.772, + "new_tests_per_thousand": 1.865, + "new_tests_smoothed": 5328.0, + "new_tests_smoothed_per_thousand": 1.957, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 1423.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 522.721, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 4.146, + "total_deaths_per_million": 16.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 7387.0, + "total_tests": 156493.0, + "total_tests_per_thousand": 57.486, + "new_tests_per_thousand": 2.714, + "new_tests_smoothed": 5470.0, + "new_tests_smoothed_per_thousand": 2.009, + "tests_per_case": 484.684, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-07", + "total_cases": 1428.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 524.558, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 2.781, + "total_deaths_per_million": 17.632, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 7595.0, + "total_tests": 164088.0, + "total_tests_per_thousand": 60.276, + "new_tests_per_thousand": 2.79, + "new_tests_smoothed": 5505.0, + "new_tests_smoothed_per_thousand": 2.022, + "tests_per_case": 727.075, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-08", + "total_cases": 1433.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.857, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 526.395, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 2.519, + "total_deaths_per_million": 18.0, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 8103.0, + "total_tests": 172191.0, + "total_tests_per_thousand": 63.252, + "new_tests_per_thousand": 2.977, + "new_tests_smoothed": 5632.0, + "new_tests_smoothed_per_thousand": 2.069, + "tests_per_case": 821.3330000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-09", + "total_cases": 1436.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 527.497, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 18.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 8141.0, + "total_tests": 180332.0, + "total_tests_per_thousand": 66.243, + "new_tests_per_thousand": 2.99, + "new_tests_smoothed": 6009.0, + "new_tests_smoothed_per_thousand": 2.207, + "tests_per_case": 1136.838, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-10", + "total_cases": 1444.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 530.436, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 1.994, + "total_deaths_per_million": 18.367, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 3581.0, + "total_tests": 183913.0, + "total_tests_per_thousand": 67.558, + "new_tests_per_thousand": 1.315, + "new_tests_smoothed": 6034.0, + "new_tests_smoothed_per_thousand": 2.217, + "tests_per_case": 1111.526, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-11", + "total_cases": 1479.0, + "new_cases": 35.0, + "new_cases_smoothed": 9.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 543.292, + "new_cases_per_million": 12.857, + "new_cases_smoothed_per_million": 3.621, + "total_deaths_per_million": 18.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 2652.0, + "total_tests": 186565.0, + "total_tests_per_thousand": 68.532, + "new_tests_per_thousand": 0.974, + "new_tests_smoothed": 6077.0, + "new_tests_smoothed_per_thousand": 2.232, + "tests_per_case": 616.507, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 1485.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 545.496, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 3.463, + "total_deaths_per_million": 18.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 5821.0, + "total_tests": 192386.0, + "total_tests_per_thousand": 70.671, + "new_tests_per_thousand": 2.138, + "new_tests_smoothed": 6183.0, + "new_tests_smoothed_per_thousand": 2.271, + "tests_per_case": 655.773, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 1491.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 547.7, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 3.568, + "total_deaths_per_million": 18.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 7878.0, + "total_tests": 200264.0, + "total_tests_per_thousand": 73.565, + "new_tests_per_thousand": 2.894, + "new_tests_smoothed": 6253.0, + "new_tests_smoothed_per_thousand": 2.297, + "tests_per_case": 643.691, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 1505.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.0, + "total_deaths": 54.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 552.843, + "new_cases_per_million": 5.143, + "new_cases_smoothed_per_million": 4.041, + "total_deaths_per_million": 19.836, + "new_deaths_per_million": 1.469, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 7989.0, + "total_tests": 208253.0, + "total_tests_per_thousand": 76.499, + "new_tests_per_thousand": 2.935, + "new_tests_smoothed": 6309.0, + "new_tests_smoothed_per_thousand": 2.318, + "tests_per_case": 573.545, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-15", + "total_cases": 1511.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 555.047, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 4.093, + "total_deaths_per_million": 19.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 7994.0, + "total_tests": 216247.0, + "total_tests_per_thousand": 79.436, + "new_tests_per_thousand": 2.936, + "new_tests_smoothed": 6294.0, + "new_tests_smoothed_per_thousand": 2.312, + "tests_per_case": 564.846, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 1523.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.429, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 559.455, + "new_cases_per_million": 4.408, + "new_cases_smoothed_per_million": 4.565, + "total_deaths_per_million": 19.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 7793.0, + "total_tests": 224040.0, + "total_tests_per_thousand": 82.298, + "new_tests_per_thousand": 2.863, + "new_tests_smoothed": 6244.0, + "new_tests_smoothed_per_thousand": 2.294, + "tests_per_case": 502.39099999999996, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 1534.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.857, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 563.496, + "new_cases_per_million": 4.041, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 20.204, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 4686.0, + "total_tests": 228726.0, + "total_tests_per_thousand": 84.02, + "new_tests_per_thousand": 1.721, + "new_tests_smoothed": 6402.0, + "new_tests_smoothed_per_thousand": 2.352, + "tests_per_case": 497.93300000000005, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-18", + "total_cases": 1541.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.857, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 566.067, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 3.254, + "total_deaths_per_million": 20.571, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.315, + "new_tests_smoothed": 6657.0, + "new_tests_smoothed_per_thousand": 2.445, + "tests_per_case": 751.597, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-19", + "total_cases": 1547.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.857, + "total_deaths": 59.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 568.271, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 3.254, + "total_deaths_per_million": 21.673, + "new_deaths_per_million": 1.102, + "new_deaths_smoothed_per_million": 0.472, + "total_tests": 237600.0, + "total_tests_per_thousand": 87.279, + "new_tests_smoothed": 6459.0, + "new_tests_smoothed_per_thousand": 2.373, + "tests_per_case": 729.242, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-20", + "total_cases": 1562.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.143, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 573.781, + "new_cases_per_million": 5.51, + "new_cases_smoothed_per_million": 3.726, + "total_deaths_per_million": 22.04, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.525, + "new_tests": 7980.0, + "total_tests": 245580.0, + "total_tests_per_thousand": 90.211, + "new_tests_per_thousand": 2.931, + "new_tests_smoothed": 6474.0, + "new_tests_smoothed_per_thousand": 2.378, + "tests_per_case": 638.2819999999999, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-21", + "total_cases": 1577.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.286, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 579.291, + "new_cases_per_million": 5.51, + "new_cases_smoothed_per_million": 3.778, + "total_deaths_per_million": 22.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.315, + "new_tests_smoothed": 6294.0, + "new_tests_smoothed_per_thousand": 2.312, + "tests_per_case": 611.9169999999999, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-22", + "total_cases": 1594.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.857, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 585.536, + "new_cases_per_million": 6.245, + "new_cases_smoothed_per_million": 4.356, + "total_deaths_per_million": 22.408, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.367, + "total_tests": 259043.0, + "total_tests_per_thousand": 95.156, + "new_tests_smoothed": 6114.0, + "new_tests_smoothed_per_thousand": 2.246, + "tests_per_case": 515.639, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-23", + "total_cases": 1604.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.21, + "new_cases_per_million": 3.673, + "new_cases_smoothed_per_million": 4.251, + "total_deaths_per_million": 22.408, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 5839.0, + "total_tests": 264882.0, + "total_tests_per_thousand": 97.301, + "new_tests_per_thousand": 2.145, + "new_tests_smoothed": 5835.0, + "new_tests_smoothed_per_thousand": 2.143, + "tests_per_case": 504.259, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-24", + "total_cases": 1616.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.714, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 593.618, + "new_cases_per_million": 4.408, + "new_cases_smoothed_per_million": 4.303, + "total_deaths_per_million": 23.142, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.42, + "new_tests_smoothed": 5523.0, + "new_tests_smoothed_per_thousand": 2.029, + "tests_per_case": 471.476, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-25", + "total_cases": 1623.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 596.189, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 4.303, + "total_deaths_per_million": 23.142, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "total_tests": 269889.0, + "total_tests_per_thousand": 99.14, + "new_tests_smoothed": 5247.0, + "new_tests_smoothed_per_thousand": 1.927, + "tests_per_case": 447.915, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-26", + "total_cases": 1635.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.571, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 600.597, + "new_cases_per_million": 4.408, + "new_cases_smoothed_per_million": 4.618, + "total_deaths_per_million": 23.142, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 5169.0, + "total_tests": 275058.0, + "total_tests_per_thousand": 101.039, + "new_tests_per_thousand": 1.899, + "new_tests_smoothed": 5351.0, + "new_tests_smoothed_per_thousand": 1.966, + "tests_per_case": 425.648, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-27", + "total_cases": 1639.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.0, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 602.066, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 4.041, + "total_deaths_per_million": 23.877, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 6174.0, + "total_tests": 281232.0, + "total_tests_per_thousand": 103.307, + "new_tests_per_thousand": 2.268, + "new_tests_smoothed": 5093.0, + "new_tests_smoothed_per_thousand": 1.871, + "tests_per_case": 463.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-28", + "total_cases": 1647.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.0, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 605.005, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 3.673, + "total_deaths_per_million": 24.244, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 6750.0, + "total_tests": 287982.0, + "total_tests_per_thousand": 105.787, + "new_tests_per_thousand": 2.48, + "new_tests_smoothed": 5096.0, + "new_tests_smoothed_per_thousand": 1.872, + "tests_per_case": 509.6, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-29", + "total_cases": 1656.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 68.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 608.311, + "new_cases_per_million": 3.306, + "new_cases_smoothed_per_million": 3.254, + "total_deaths_per_million": 24.979, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 6109.0, + "total_tests": 294091.0, + "total_tests_per_thousand": 108.031, + "new_tests_per_thousand": 2.244, + "new_tests_smoothed": 5007.0, + "new_tests_smoothed_per_thousand": 1.839, + "tests_per_case": 565.306, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-30", + "total_cases": 1662.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.286, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 610.515, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 24.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "new_tests_smoothed": 4799.0, + "new_tests_smoothed_per_thousand": 1.763, + "tests_per_case": 579.19, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 63.89 + }, + { + "date": "2020-05-31", + "total_cases": 1670.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.714, + "total_deaths": 70.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 613.454, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 2.834, + "total_deaths_per_million": 25.714, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.367, + "total_tests": 302859.0, + "total_tests_per_thousand": 111.252, + "new_tests_smoothed": 5068.0, + "new_tests_smoothed_per_thousand": 1.862, + "tests_per_case": 656.9630000000001, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 63.89 + }, + { + "date": "2020-06-01", + "total_cases": 1675.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 615.291, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 2.729, + "total_deaths_per_million": 25.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 1995.0, + "total_tests": 304854.0, + "total_tests_per_thousand": 111.984, + "new_tests_per_thousand": 0.733, + "new_tests_smoothed": 4995.0, + "new_tests_smoothed_per_thousand": 1.835, + "tests_per_case": 672.404, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-02", + "total_cases": 1678.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 616.393, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 2.257, + "total_deaths_per_million": 25.714, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 4871.0, + "total_tests": 309725.0, + "total_tests_per_thousand": 113.774, + "new_tests_per_thousand": 1.789, + "new_tests_smoothed": 4952.0, + "new_tests_smoothed_per_thousand": 1.819, + "tests_per_case": 806.14, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-03", + "total_cases": 1682.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.143, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 617.862, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 2.257, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 5387.0, + "total_tests": 315112.0, + "total_tests_per_thousand": 115.753, + "new_tests_per_thousand": 1.979, + "new_tests_smoothed": 4840.0, + "new_tests_smoothed_per_thousand": 1.778, + "tests_per_case": 787.9069999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-04", + "total_cases": 1684.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 618.597, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 5928.0, + "total_tests": 321040.0, + "total_tests_per_thousand": 117.93, + "new_tests_per_thousand": 2.178, + "new_tests_smoothed": 4723.0, + "new_tests_smoothed_per_thousand": 1.735, + "tests_per_case": 893.541, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-05", + "total_cases": 1687.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 619.699, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.627, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 5254.0, + "total_tests": 326294.0, + "total_tests_per_thousand": 119.86, + "new_tests_per_thousand": 1.93, + "new_tests_smoothed": 4600.0, + "new_tests_smoothed_per_thousand": 1.69, + "tests_per_case": 1038.71, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-06", + "total_cases": 1694.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 622.27, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests_smoothed": 4421.0, + "new_tests_smoothed_per_thousand": 1.624, + "tests_per_case": 967.0939999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-07", + "total_cases": 1705.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.0, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 626.311, + "new_cases_per_million": 4.041, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 4242.0, + "new_tests_smoothed_per_thousand": 1.558, + "tests_per_case": 848.4, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-08", + "total_cases": 1714.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 629.617, + "new_cases_per_million": 3.306, + "new_cases_smoothed_per_million": 2.047, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 335686.0, + "total_tests_per_thousand": 123.31, + "new_tests_smoothed": 4405.0, + "new_tests_smoothed_per_thousand": 1.618, + "tests_per_case": 790.6410000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-09", + "total_cases": 1720.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 631.821, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 2.204, + "total_deaths_per_million": 26.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4387.0, + "total_tests": 340073.0, + "total_tests_per_thousand": 124.922, + "new_tests_per_thousand": 1.612, + "new_tests_smoothed": 4335.0, + "new_tests_smoothed_per_thousand": 1.592, + "tests_per_case": 722.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-10", + "total_cases": 1727.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 72.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 634.392, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 26.448, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5319.0, + "total_tests": 345392.0, + "total_tests_per_thousand": 126.875, + "new_tests_per_thousand": 1.954, + "new_tests_smoothed": 4326.0, + "new_tests_smoothed_per_thousand": 1.589, + "tests_per_case": 672.933, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-11", + "total_cases": 1733.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.0, + "total_deaths": 74.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 636.596, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 2.571, + "total_deaths_per_million": 27.183, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 5396.0, + "total_tests": 350788.0, + "total_tests_per_thousand": 128.858, + "new_tests_per_thousand": 1.982, + "new_tests_smoothed": 4250.0, + "new_tests_smoothed_per_thousand": 1.561, + "tests_per_case": 607.143, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-12", + "total_cases": 1752.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 643.576, + "new_cases_per_million": 6.979, + "new_cases_smoothed_per_million": 3.411, + "total_deaths_per_million": 27.183, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 5274.0, + "total_tests": 356062.0, + "total_tests_per_thousand": 130.795, + "new_tests_per_thousand": 1.937, + "new_tests_smoothed": 4253.0, + "new_tests_smoothed_per_thousand": 1.562, + "tests_per_case": 458.015, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-13", + "total_cases": 1756.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.857, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 645.045, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 3.254, + "total_deaths_per_million": 27.183, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 4608.0, + "total_tests": 360670.0, + "total_tests_per_thousand": 132.488, + "new_tests_per_thousand": 1.693, + "new_tests_smoothed": 4464.0, + "new_tests_smoothed_per_thousand": 1.64, + "tests_per_case": 504.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-14", + "total_cases": 1763.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.286, + "total_deaths": 75.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 647.616, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 27.55, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 2858.0, + "total_tests": 363528.0, + "total_tests_per_thousand": 133.538, + "new_tests_per_thousand": 1.05, + "new_tests_smoothed": 4425.0, + "new_tests_smoothed_per_thousand": 1.625, + "tests_per_case": 534.052, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-15", + "total_cases": 1768.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.714, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 649.453, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 2.834, + "total_deaths_per_million": 27.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 1608.0, + "total_tests": 365136.0, + "total_tests_per_thousand": 134.128, + "new_tests_per_thousand": 0.591, + "new_tests_smoothed": 4207.0, + "new_tests_smoothed_per_thousand": 1.545, + "tests_per_case": 545.352, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-16", + "total_cases": 1773.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 76.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 651.29, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 2.781, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 4410.0, + "total_tests": 369546.0, + "total_tests_per_thousand": 135.748, + "new_tests_per_thousand": 1.62, + "new_tests_smoothed": 4210.0, + "new_tests_smoothed_per_thousand": 1.546, + "tests_per_case": 556.038, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 52.78 + }, + { + "date": "2020-06-17", + "total_cases": 1776.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 652.392, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 2.571, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 6026.0, + "total_tests": 375572.0, + "total_tests_per_thousand": 137.962, + "new_tests_per_thousand": 2.214, + "new_tests_smoothed": 4311.0, + "new_tests_smoothed_per_thousand": 1.584, + "tests_per_case": 615.857, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-18", + "total_cases": 1778.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.429, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 653.126, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5653.0, + "total_tests": 381225.0, + "total_tests_per_thousand": 140.038, + "new_tests_per_thousand": 2.077, + "new_tests_smoothed": 4348.0, + "new_tests_smoothed_per_thousand": 1.597, + "tests_per_case": 676.3560000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-19", + "total_cases": 1784.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 655.33, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4969.0, + "total_tests": 386194.0, + "total_tests_per_thousand": 141.864, + "new_tests_per_thousand": 1.825, + "new_tests_smoothed": 4305.0, + "new_tests_smoothed_per_thousand": 1.581, + "tests_per_case": 941.7189999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-20", + "total_cases": 1792.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 658.269, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 1.889, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4263.0, + "total_tests": 390457.0, + "total_tests_per_thousand": 143.43, + "new_tests_per_thousand": 1.566, + "new_tests_smoothed": 4255.0, + "new_tests_smoothed_per_thousand": 1.563, + "tests_per_case": 827.3610000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-21", + "total_cases": 1795.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 659.371, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2096.0, + "total_tests": 392553.0, + "total_tests_per_thousand": 144.199, + "new_tests_per_thousand": 0.77, + "new_tests_smoothed": 4146.0, + "new_tests_smoothed_per_thousand": 1.523, + "tests_per_case": 906.938, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-22", + "total_cases": 1798.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.473, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.574, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1912.0, + "total_tests": 394465.0, + "total_tests_per_thousand": 144.902, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 4190.0, + "new_tests_smoothed_per_thousand": 1.539, + "tests_per_case": 977.6669999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-23", + "total_cases": 1801.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.0, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 661.575, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.469, + "total_deaths_per_million": 27.918, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3952.0, + "total_tests": 398417.0, + "total_tests_per_thousand": 146.354, + "new_tests_per_thousand": 1.452, + "new_tests_smoothed": 4124.0, + "new_tests_smoothed_per_thousand": 1.515, + "tests_per_case": 1031.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-24", + "total_cases": 1803.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 662.31, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 28.285, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5424.0, + "total_tests": 403841.0, + "total_tests_per_thousand": 148.346, + "new_tests_per_thousand": 1.992, + "new_tests_smoothed": 4038.0, + "new_tests_smoothed_per_thousand": 1.483, + "tests_per_case": 1046.889, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-25", + "total_cases": 1804.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 662.677, + "new_cases_per_million": 0.367, + "new_cases_smoothed_per_million": 1.364, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 2716.0, + "total_tests": 406557.0, + "total_tests_per_thousand": 149.344, + "new_tests_per_thousand": 0.998, + "new_tests_smoothed": 3619.0, + "new_tests_smoothed_per_thousand": 1.329, + "tests_per_case": 974.346, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-26", + "total_cases": 1806.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 663.412, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 1.154, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4310.0, + "total_tests": 410867.0, + "total_tests_per_thousand": 150.927, + "new_tests_per_thousand": 1.583, + "new_tests_smoothed": 3525.0, + "new_tests_smoothed_per_thousand": 1.295, + "tests_per_case": 1121.5910000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-27", + "total_cases": 1808.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 664.146, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3925.0, + "total_tests": 414792.0, + "total_tests_per_thousand": 152.369, + "new_tests_per_thousand": 1.442, + "new_tests_smoothed": 3476.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 1520.75, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-28", + "total_cases": 1813.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 665.983, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 0.945, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 1947.0, + "total_tests": 416739.0, + "total_tests_per_thousand": 153.084, + "new_tests_per_thousand": 0.715, + "new_tests_smoothed": 3455.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 1343.611, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-06-29", + "total_cases": 1816.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 667.085, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 0.945, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 1629.0, + "total_tests": 418368.0, + "total_tests_per_thousand": 153.682, + "new_tests_per_thousand": 0.598, + "new_tests_smoothed": 3415.0, + "new_tests_smoothed_per_thousand": 1.254, + "tests_per_case": 1328.056, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-06-30", + "total_cases": 1816.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 667.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4472.0, + "total_tests": 422840.0, + "total_tests_per_thousand": 155.325, + "new_tests_per_thousand": 1.643, + "new_tests_smoothed": 3489.0, + "new_tests_smoothed_per_thousand": 1.282, + "tests_per_case": 1628.2, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-01", + "total_cases": 1817.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 667.453, + "new_cases_per_million": 0.367, + "new_cases_smoothed_per_million": 0.735, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5398.0, + "total_tests": 428238.0, + "total_tests_per_thousand": 157.308, + "new_tests_per_thousand": 1.983, + "new_tests_smoothed": 3485.0, + "new_tests_smoothed_per_thousand": 1.28, + "tests_per_case": 1742.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-02", + "total_cases": 1818.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 667.82, + "new_cases_per_million": 0.367, + "new_cases_smoothed_per_million": 0.735, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4219.0, + "total_tests": 432457.0, + "total_tests_per_thousand": 158.858, + "new_tests_per_thousand": 1.55, + "new_tests_smoothed": 3700.0, + "new_tests_smoothed_per_thousand": 1.359, + "tests_per_case": 1850.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-03", + "total_cases": 1825.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 670.391, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 0.997, + "total_deaths_per_million": 28.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4222.0, + "total_tests": 436679.0, + "total_tests_per_thousand": 160.409, + "new_tests_per_thousand": 1.551, + "new_tests_smoothed": 3687.0, + "new_tests_smoothed_per_thousand": 1.354, + "tests_per_case": 1358.368, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-04", + "total_cases": 1828.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.857, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 671.493, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3403.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 1191.05, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-05", + "total_cases": 1831.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 672.595, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 0.945, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3401.0, + "new_tests_smoothed_per_thousand": 1.249, + "tests_per_case": 1322.611, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-06", + "total_cases": 1836.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 674.432, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3444.0, + "new_tests_smoothed_per_thousand": 1.265, + "tests_per_case": 1205.4, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-07", + "total_cases": 1841.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 676.269, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 444407.0, + "total_tests_per_thousand": 163.247, + "new_tests_smoothed": 3081.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 862.68, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-08", + "total_cases": 1844.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 677.371, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3587.0, + "total_tests": 447994.0, + "total_tests_per_thousand": 164.565, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 2822.0, + "new_tests_smoothed_per_thousand": 1.037, + "tests_per_case": 731.63, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-09", + "total_cases": 1854.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.143, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 681.044, + "new_cases_per_million": 3.673, + "new_cases_smoothed_per_million": 1.889, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3993.0, + "total_tests": 451987.0, + "total_tests_per_thousand": 166.032, + "new_tests_per_thousand": 1.467, + "new_tests_smoothed": 2790.0, + "new_tests_smoothed_per_thousand": 1.025, + "tests_per_case": 542.5, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-10", + "total_cases": 1857.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 682.146, + "new_cases_per_million": 1.102, + "new_cases_smoothed_per_million": 1.679, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3846.0, + "total_tests": 455833.0, + "total_tests_per_thousand": 167.445, + "new_tests_per_thousand": 1.413, + "new_tests_smoothed": 2736.0, + "new_tests_smoothed_per_thousand": 1.005, + "tests_per_case": 598.5, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-11", + "total_cases": 1861.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 683.615, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 1.732, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2738.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 580.788, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-12", + "total_cases": 1865.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 685.085, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 1.784, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2740.0, + "new_tests_smoothed_per_thousand": 1.007, + "tests_per_case": 564.118, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-13", + "total_cases": 1869.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 686.554, + "new_cases_per_million": 1.469, + "new_cases_smoothed_per_million": 1.732, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 461666.0, + "total_tests_per_thousand": 169.587, + "new_tests_smoothed": 2742.0, + "new_tests_smoothed_per_thousand": 1.007, + "tests_per_case": 581.636, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-14", + "total_cases": 1874.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 688.391, + "new_cases_per_million": 1.837, + "new_cases_smoothed_per_million": 1.732, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3730.0, + "total_tests": 465396.0, + "total_tests_per_thousand": 170.957, + "new_tests_per_thousand": 1.37, + "new_tests_smoothed": 2998.0, + "new_tests_smoothed_per_thousand": 1.101, + "tests_per_case": 635.939, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-15", + "total_cases": 1875.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 688.758, + "new_cases_per_million": 0.367, + "new_cases_smoothed_per_million": 1.627, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3015.0, + "new_tests_smoothed_per_thousand": 1.108, + "tests_per_case": 680.806, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-16", + "total_cases": 1882.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.0, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 691.329, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 1.469, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 472804.0, + "total_tests_per_thousand": 173.679, + "new_tests_smoothed": 2974.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 743.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-17", + "total_cases": 1902.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.429, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 698.676, + "new_cases_per_million": 7.347, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3317.0, + "total_tests": 476121.0, + "total_tests_per_thousand": 174.897, + "new_tests_per_thousand": 1.218, + "new_tests_smoothed": 2898.0, + "new_tests_smoothed_per_thousand": 1.065, + "tests_per_case": 450.8, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-18", + "total_cases": 1908.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 700.88, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 2.466, + "total_deaths_per_million": 29.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2929.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 436.23400000000004, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-19", + "total_cases": 1915.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 80.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 703.452, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 2.624, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 2960.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 414.4, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-20", + "total_cases": 1932.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.0, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 709.696, + "new_cases_per_million": 6.245, + "new_cases_smoothed_per_million": 3.306, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 482607.0, + "total_tests_per_thousand": 177.28, + "new_tests_smoothed": 2992.0, + "new_tests_smoothed_per_thousand": 1.099, + "tests_per_case": 332.444, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-21", + "total_cases": 1947.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.429, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 715.206, + "new_cases_per_million": 5.51, + "new_cases_smoothed_per_million": 3.831, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3617.0, + "total_tests": 486224.0, + "total_tests_per_thousand": 178.608, + "new_tests_per_thousand": 1.329, + "new_tests_smoothed": 2975.0, + "new_tests_smoothed_per_thousand": 1.093, + "tests_per_case": 285.274, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-22", + "total_cases": 1949.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.571, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 715.941, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 3.883, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3645.0, + "total_tests": 489869.0, + "total_tests_per_thousand": 179.947, + "new_tests_per_thousand": 1.339, + "new_tests_smoothed": 2967.0, + "new_tests_smoothed_per_thousand": 1.09, + "tests_per_case": 280.66200000000003, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-23", + "total_cases": 1960.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 719.982, + "new_cases_per_million": 4.041, + "new_cases_smoothed_per_million": 4.093, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3996.0, + "total_tests": 493865.0, + "total_tests_per_thousand": 181.415, + "new_tests_per_thousand": 1.468, + "new_tests_smoothed": 3009.0, + "new_tests_smoothed_per_thousand": 1.105, + "tests_per_case": 270.038, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-24", + "total_cases": 1960.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 719.982, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3380.0, + "total_tests": 497245.0, + "total_tests_per_thousand": 182.657, + "new_tests_per_thousand": 1.242, + "new_tests_smoothed": 3018.0, + "new_tests_smoothed_per_thousand": 1.109, + "tests_per_case": 364.241, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-25", + "total_cases": 1986.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.143, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 729.533, + "new_cases_per_million": 9.551, + "new_cases_smoothed_per_million": 4.093, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3193.0, + "new_tests_smoothed_per_thousand": 1.173, + "tests_per_case": 286.551, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-26", + "total_cases": 2001.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.286, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 735.043, + "new_cases_per_million": 5.51, + "new_cases_smoothed_per_million": 4.513, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3369.0, + "new_tests_smoothed_per_thousand": 1.238, + "tests_per_case": 274.221, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 27.78 + }, + { + "date": "2020-07-27", + "total_cases": 2008.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.857, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 737.614, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 3.988, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 507420.0, + "total_tests_per_thousand": 186.394, + "new_tests_smoothed": 3545.0, + "new_tests_smoothed_per_thousand": 1.302, + "tests_per_case": 326.513, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-07-28", + "total_cases": 2019.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.286, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 741.655, + "new_cases_per_million": 4.041, + "new_cases_smoothed_per_million": 3.778, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4042.0, + "total_tests": 511462.0, + "total_tests_per_thousand": 187.879, + "new_tests_per_thousand": 1.485, + "new_tests_smoothed": 3605.0, + "new_tests_smoothed_per_thousand": 1.324, + "tests_per_case": 350.486, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-07-29", + "total_cases": 2027.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.143, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 744.593, + "new_cases_per_million": 2.939, + "new_cases_smoothed_per_million": 4.093, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4335.0, + "total_tests": 515797.0, + "total_tests_per_thousand": 189.472, + "new_tests_per_thousand": 1.592, + "new_tests_smoothed": 3704.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 332.41, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-07-30", + "total_cases": 2043.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.857, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 750.471, + "new_cases_per_million": 5.877, + "new_cases_smoothed_per_million": 4.356, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4132.0, + "total_tests": 519929.0, + "total_tests_per_thousand": 190.99, + "new_tests_per_thousand": 1.518, + "new_tests_smoothed": 3723.0, + "new_tests_smoothed_per_thousand": 1.368, + "tests_per_case": 313.988, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-07-31", + "total_cases": 2062.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.571, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 757.45, + "new_cases_per_million": 6.979, + "new_cases_smoothed_per_million": 5.353, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3612.0, + "new_tests_smoothed_per_thousand": 1.327, + "tests_per_case": 247.882, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-01", + "total_cases": 2075.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.714, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 762.226, + "new_cases_per_million": 4.775, + "new_cases_smoothed_per_million": 4.67, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3499.0, + "new_tests_smoothed_per_thousand": 1.285, + "tests_per_case": 275.202, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-02", + "total_cases": 2093.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.143, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 768.838, + "new_cases_per_million": 6.612, + "new_cases_smoothed_per_million": 4.828, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 527729.0, + "total_tests_per_thousand": 193.855, + "new_tests_smoothed": 3386.0, + "new_tests_smoothed_per_thousand": 1.244, + "tests_per_case": 257.63, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-03", + "total_cases": 2110.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.571, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.082, + "new_cases_per_million": 6.245, + "new_cases_smoothed_per_million": 5.353, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3789.0, + "total_tests": 531518.0, + "total_tests_per_thousand": 195.247, + "new_tests_per_thousand": 1.392, + "new_tests_smoothed": 3443.0, + "new_tests_smoothed_per_thousand": 1.265, + "tests_per_case": 236.28400000000002, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-04", + "total_cases": 2120.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 778.756, + "new_cases_per_million": 3.673, + "new_cases_smoothed_per_million": 5.3, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4859.0, + "total_tests": 536377.0, + "total_tests_per_thousand": 197.031, + "new_tests_per_thousand": 1.785, + "new_tests_smoothed": 3559.0, + "new_tests_smoothed_per_thousand": 1.307, + "tests_per_case": 246.66299999999998, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-05", + "total_cases": 2137.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.714, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 785.001, + "new_cases_per_million": 6.245, + "new_cases_smoothed_per_million": 5.772, + "total_deaths_per_million": 29.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3255.0, + "new_tests_smoothed_per_thousand": 1.196, + "tests_per_case": 207.136, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-06", + "total_cases": 2147.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.857, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 788.674, + "new_cases_per_million": 3.673, + "new_cases_smoothed_per_million": 5.458, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 540784.0, + "total_tests_per_thousand": 198.65, + "new_tests_smoothed": 2979.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 200.51, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 30.56 + }, + { + "date": "2020-08-07", + "total_cases": 2171.0, + "new_cases": 24.0, + "new_cases_smoothed": 15.571, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 797.49, + "new_cases_per_million": 8.816, + "new_cases_smoothed_per_million": 5.72, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4578.0, + "total_tests": 545362.0, + "total_tests_per_thousand": 200.332, + "new_tests_per_thousand": 1.682, + "new_tests_smoothed": 3262.0, + "new_tests_smoothed_per_thousand": 1.198, + "tests_per_case": 209.486, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-08", + "total_cases": 2194.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.0, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 805.939, + "new_cases_per_million": 8.449, + "new_cases_smoothed_per_million": 6.245, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3273.0, + "new_tests_smoothed_per_thousand": 1.202, + "tests_per_case": 192.52900000000002, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-09", + "total_cases": 2231.0, + "new_cases": 37.0, + "new_cases_smoothed": 19.714, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 819.53, + "new_cases_per_million": 13.591, + "new_cases_smoothed_per_million": 7.242, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3283.0, + "new_tests_smoothed_per_thousand": 1.206, + "tests_per_case": 166.52900000000002, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-10", + "total_cases": 2252.0, + "new_cases": 21.0, + "new_cases_smoothed": 20.286, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 827.244, + "new_cases_per_million": 7.714, + "new_cases_smoothed_per_million": 7.452, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 553388.0, + "total_tests_per_thousand": 203.28, + "new_tests_smoothed": 3124.0, + "new_tests_smoothed_per_thousand": 1.148, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-11", + "total_cases": 2265.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.714, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 832.02, + "new_cases_per_million": 4.775, + "new_cases_smoothed_per_million": 7.609, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 3014.0, + "new_tests_smoothed_per_thousand": 1.107, + "tests_per_case": 145.503, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-12", + "total_cases": 2283.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.857, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 838.632, + "new_cases_per_million": 6.612, + "new_cases_smoothed_per_million": 7.662, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 561555.0, + "total_tests_per_thousand": 206.28, + "new_tests_smoothed": 3282.0, + "new_tests_smoothed_per_thousand": 1.206, + "tests_per_case": 157.356, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-13", + "total_cases": 2309.0, + "new_cases": 26.0, + "new_cases_smoothed": 23.143, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 848.183, + "new_cases_per_million": 9.551, + "new_cases_smoothed_per_million": 8.501, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4227.0, + "total_tests": 565782.0, + "total_tests_per_thousand": 207.833, + "new_tests_per_thousand": 1.553, + "new_tests_smoothed": 3571.0, + "new_tests_smoothed_per_thousand": 1.312, + "tests_per_case": 154.30200000000002, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-14", + "total_cases": 2330.0, + "new_cases": 21.0, + "new_cases_smoothed": 22.714, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 855.897, + "new_cases_per_million": 7.714, + "new_cases_smoothed_per_million": 8.344, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4875.0, + "total_tests": 570657.0, + "total_tests_per_thousand": 209.624, + "new_tests_per_thousand": 1.791, + "new_tests_smoothed": 3614.0, + "new_tests_smoothed_per_thousand": 1.328, + "tests_per_case": 159.107, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-15", + "total_cases": 2352.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.571, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 863.978, + "new_cases_per_million": 8.081, + "new_cases_smoothed_per_million": 8.291, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3698.0, + "new_tests_smoothed_per_thousand": 1.358, + "tests_per_case": 163.835, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-16", + "total_cases": 2386.0, + "new_cases": 34.0, + "new_cases_smoothed": 22.143, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 876.468, + "new_cases_per_million": 12.489, + "new_cases_smoothed_per_million": 8.134, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3782.0, + "new_tests_smoothed_per_thousand": 1.389, + "tests_per_case": 170.8, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-17", + "total_cases": 2416.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.429, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 887.488, + "new_cases_per_million": 11.02, + "new_cases_smoothed_per_million": 8.606, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 580453.0, + "total_tests_per_thousand": 213.222, + "new_tests_smoothed": 3866.0, + "new_tests_smoothed_per_thousand": 1.42, + "tests_per_case": 165.012, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-18", + "total_cases": 2436.0, + "new_cases": 20.0, + "new_cases_smoothed": 24.429, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.835, + "new_cases_per_million": 7.347, + "new_cases_smoothed_per_million": 8.974, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4188.0, + "total_tests": 584641.0, + "total_tests_per_thousand": 214.761, + "new_tests_per_thousand": 1.538, + "new_tests_smoothed": 3881.0, + "new_tests_smoothed_per_thousand": 1.426, + "tests_per_case": 158.871, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-19", + "total_cases": 2474.0, + "new_cases": 38.0, + "new_cases_smoothed": 27.286, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 908.793, + "new_cases_per_million": 13.959, + "new_cases_smoothed_per_million": 10.023, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4864.0, + "total_tests": 589505.0, + "total_tests_per_thousand": 216.547, + "new_tests_per_thousand": 1.787, + "new_tests_smoothed": 3993.0, + "new_tests_smoothed_per_thousand": 1.467, + "tests_per_case": 146.34, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-20", + "total_cases": 2496.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.714, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 916.875, + "new_cases_per_million": 8.081, + "new_cases_smoothed_per_million": 9.813, + "total_deaths_per_million": 29.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4973.0, + "total_tests": 594478.0, + "total_tests_per_thousand": 218.374, + "new_tests_per_thousand": 1.827, + "new_tests_smoothed": 4099.0, + "new_tests_smoothed_per_thousand": 1.506, + "tests_per_case": 153.439, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-21", + "total_cases": 2528.0, + "new_cases": 32.0, + "new_cases_smoothed": 28.286, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 928.63, + "new_cases_per_million": 11.755, + "new_cases_smoothed_per_million": 10.39, + "total_deaths_per_million": 30.122, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5035.0, + "total_tests": 599513.0, + "total_tests_per_thousand": 220.224, + "new_tests_per_thousand": 1.85, + "new_tests_smoothed": 4122.0, + "new_tests_smoothed_per_thousand": 1.514, + "tests_per_case": 145.727, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-22", + "total_cases": 2564.0, + "new_cases": 36.0, + "new_cases_smoothed": 30.286, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 941.854, + "new_cases_per_million": 13.224, + "new_cases_smoothed_per_million": 11.125, + "total_deaths_per_million": 30.489, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.105, + "new_tests_smoothed": 4096.0, + "new_tests_smoothed_per_thousand": 1.505, + "tests_per_case": 135.245, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-23", + "total_cases": 2594.0, + "new_cases": 30.0, + "new_cases_smoothed": 29.714, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 952.874, + "new_cases_per_million": 11.02, + "new_cases_smoothed_per_million": 10.915, + "total_deaths_per_million": 30.856, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.157, + "new_tests_smoothed": 4071.0, + "new_tests_smoothed_per_thousand": 1.495, + "tests_per_case": 137.005, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-24", + "total_cases": 2635.0, + "new_cases": 41.0, + "new_cases_smoothed": 31.286, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 967.935, + "new_cases_per_million": 15.061, + "new_cases_smoothed_per_million": 11.492, + "total_deaths_per_million": 30.856, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "total_tests": 608767.0, + "total_tests_per_thousand": 223.623, + "new_tests_smoothed": 4045.0, + "new_tests_smoothed_per_thousand": 1.486, + "tests_per_case": 129.292, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-25", + "total_cases": 2673.0, + "new_cases": 38.0, + "new_cases_smoothed": 33.857, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 981.894, + "new_cases_per_million": 13.959, + "new_cases_smoothed_per_million": 12.437, + "total_deaths_per_million": 31.224, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 4557.0, + "total_tests": 613324.0, + "total_tests_per_thousand": 225.297, + "new_tests_per_thousand": 1.674, + "new_tests_smoothed": 4098.0, + "new_tests_smoothed_per_thousand": 1.505, + "tests_per_case": 121.038, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-26", + "total_cases": 2694.0, + "new_cases": 21.0, + "new_cases_smoothed": 31.429, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 989.608, + "new_cases_per_million": 7.714, + "new_cases_smoothed_per_million": 11.545, + "total_deaths_per_million": 31.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 5081.0, + "total_tests": 618405.0, + "total_tests_per_thousand": 227.163, + "new_tests_per_thousand": 1.866, + "new_tests_smoothed": 4129.0, + "new_tests_smoothed_per_thousand": 1.517, + "tests_per_case": 131.377, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-27", + "total_cases": 2726.0, + "new_cases": 32.0, + "new_cases_smoothed": 32.857, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1001.362, + "new_cases_per_million": 11.755, + "new_cases_smoothed_per_million": 12.07, + "total_deaths_per_million": 31.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 5436.0, + "total_tests": 623841.0, + "total_tests_per_thousand": 229.16, + "new_tests_per_thousand": 1.997, + "new_tests_smoothed": 4195.0, + "new_tests_smoothed_per_thousand": 1.541, + "tests_per_case": 127.67399999999999, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-28", + "total_cases": 2762.0, + "new_cases": 36.0, + "new_cases_smoothed": 33.429, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1014.587, + "new_cases_per_million": 13.224, + "new_cases_smoothed_per_million": 12.28, + "total_deaths_per_million": 31.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 5602.0, + "total_tests": 629443.0, + "total_tests_per_thousand": 231.218, + "new_tests_per_thousand": 2.058, + "new_tests_smoothed": 4276.0, + "new_tests_smoothed_per_thousand": 1.571, + "tests_per_case": 127.915, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 2810.0, + "new_cases": 48.0, + "new_cases_smoothed": 35.143, + "total_deaths": 86.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1032.219, + "new_cases_per_million": 17.632, + "new_cases_smoothed_per_million": 12.909, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.157, + "new_tests_smoothed": 4292.0, + "new_tests_smoothed_per_thousand": 1.577, + "tests_per_case": 122.13, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 2839.0, + "new_cases": 29.0, + "new_cases_smoothed": 35.0, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1042.872, + "new_cases_per_million": 10.653, + "new_cases_smoothed_per_million": 12.857, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests_smoothed": 4309.0, + "new_tests_smoothed_per_thousand": 1.583, + "tests_per_case": 123.11399999999999, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 2874.0, + "new_cases": 35.0, + "new_cases_smoothed": 34.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1055.728, + "new_cases_per_million": 12.857, + "new_cases_smoothed_per_million": 12.542, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "total_tests": 639044.0, + "total_tests_per_thousand": 234.745, + "new_tests_smoothed": 4325.0, + "new_tests_smoothed_per_thousand": 1.589, + "tests_per_case": 126.67399999999999, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 2906.0, + "new_cases": 32.0, + "new_cases_smoothed": 33.286, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1067.483, + "new_cases_per_million": 11.755, + "new_cases_smoothed_per_million": 12.227, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4660.0, + "total_tests": 643704.0, + "total_tests_per_thousand": 236.457, + "new_tests_per_thousand": 1.712, + "new_tests_smoothed": 4340.0, + "new_tests_smoothed_per_thousand": 1.594, + "tests_per_case": 130.386, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 2929.0, + "new_cases": 23.0, + "new_cases_smoothed": 33.571, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1075.932, + "new_cases_per_million": 8.449, + "new_cases_smoothed_per_million": 12.332, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 5159.0, + "total_tests": 648863.0, + "total_tests_per_thousand": 238.352, + "new_tests_per_thousand": 1.895, + "new_tests_smoothed": 4351.0, + "new_tests_smoothed_per_thousand": 1.598, + "tests_per_case": 129.60399999999998, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 2958.0, + "new_cases": 29.0, + "new_cases_smoothed": 33.143, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1086.585, + "new_cases_per_million": 10.653, + "new_cases_smoothed_per_million": 12.175, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4881.0, + "total_tests": 653744.0, + "total_tests_per_thousand": 240.145, + "new_tests_per_thousand": 1.793, + "new_tests_smoothed": 4272.0, + "new_tests_smoothed_per_thousand": 1.569, + "tests_per_case": 128.89700000000002, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 2978.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.857, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1093.932, + "new_cases_per_million": 7.347, + "new_cases_smoothed_per_million": 11.335, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4918.0, + "total_tests": 658662.0, + "total_tests_per_thousand": 241.951, + "new_tests_per_thousand": 1.807, + "new_tests_smoothed": 4174.0, + "new_tests_smoothed_per_thousand": 1.533, + "tests_per_case": 135.269, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-09-05", + "total_cases": 3004.0, + "new_cases": 26.0, + "new_cases_smoothed": 27.714, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1103.482, + "new_cases_per_million": 9.551, + "new_cases_smoothed_per_million": 10.181, + "total_deaths_per_million": 31.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LUX": { + "continent": "Europe", + "location": "Luxembourg", + "population": 625976.0, + "population_density": 231.447, + "median_age": 39.7, + "aged_65_older": 14.312, + "aged_70_older": 9.842, + "gdp_per_capita": 94277.965, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 128.275, + "diabetes_prevalence": 4.42, + "female_smokers": 20.9, + "male_smokers": 26.0, + "hospital_beds_per_thousand": 4.51, + "life_expectancy": 82.25, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2.0, + "total_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 9.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.011, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 11.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 12.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 16.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.006, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 17.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 21.0, + "total_tests_per_thousand": 0.034, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 21.0, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 23.0, + "total_tests_per_thousand": 0.037, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 28.0, + "total_tests_per_thousand": 0.045, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 34.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 21.0, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.793, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 0.685, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 40.0, + "total_tests_per_thousand": 0.064, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.456, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.988, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 0.913, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 55.0, + "total_tests_per_thousand": 0.088, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 8.75, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.913, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 76.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.183, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 1.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 110.0, + "total_tests_per_thousand": 0.176, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.183, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 281.0, + "total_tests_per_thousand": 0.449, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-13", + "total_cases": 26.0, + "new_cases": 19.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.535, + "new_cases_per_million": 30.353, + "new_cases_smoothed_per_million": 5.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 182.0, + "total_tests": 463.0, + "total_tests_per_thousand": 0.74, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 17.08, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 42.59 + }, + { + "date": "2020-03-14", + "total_cases": 38.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.705, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 7.988, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 91.0, + "total_tests": 554.0, + "total_tests_per_thousand": 0.885, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 73.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 14.6, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 42.59 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 5.0, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 7.988, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 17.0, + "total_tests": 571.0, + "total_tests_per_thousand": 0.912, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 75.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 15.0, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-03-16", + "total_cases": 77.0, + "new_cases": 39.0, + "new_cases_smoothed": 10.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 123.008, + "new_cases_per_million": 62.303, + "new_cases_smoothed_per_million": 16.431, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 353.0, + "total_tests": 924.0, + "total_tests_per_thousand": 1.476, + "new_tests_per_thousand": 0.564, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 12.056, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 72.22 + }, + { + "date": "2020-03-17", + "total_cases": 81.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.398, + "new_cases_per_million": 6.39, + "new_cases_smoothed_per_million": 17.344, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 560.0, + "total_tests": 1484.0, + "total_tests_per_thousand": 2.371, + "new_tests_per_thousand": 0.895, + "new_tests_smoothed": 201.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 18.512999999999998, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-18", + "total_cases": 140.0, + "new_cases": 59.0, + "new_cases_smoothed": 19.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 223.651, + "new_cases_per_million": 94.253, + "new_cases_smoothed_per_million": 30.353, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 876.0, + "total_tests": 2360.0, + "total_tests_per_thousand": 3.77, + "new_tests_per_thousand": 1.399, + "new_tests_smoothed": 321.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 16.895, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-19", + "total_cases": 210.0, + "new_cases": 70.0, + "new_cases_smoothed": 29.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 335.476, + "new_cases_per_million": 111.825, + "new_cases_smoothed_per_million": 46.328, + "total_deaths_per_million": 3.195, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 892.0, + "total_tests": 3252.0, + "total_tests_per_thousand": 5.195, + "new_tests_per_thousand": 1.425, + "new_tests_smoothed": 424.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 14.620999999999999, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-20", + "total_cases": 345.0, + "new_cases": 135.0, + "new_cases_smoothed": 45.571, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 551.139, + "new_cases_per_million": 215.663, + "new_cases_smoothed_per_million": 72.801, + "total_deaths_per_million": 6.39, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 979.0, + "total_tests": 4231.0, + "total_tests_per_thousand": 6.759, + "new_tests_per_thousand": 1.564, + "new_tests_smoothed": 538.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 11.806, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-21", + "total_cases": 484.0, + "new_cases": 139.0, + "new_cases_smoothed": 63.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 773.193, + "new_cases_per_million": 222.053, + "new_cases_smoothed_per_million": 101.784, + "total_deaths_per_million": 7.988, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 430.0, + "total_tests": 4661.0, + "total_tests_per_thousand": 7.446, + "new_tests_per_thousand": 0.687, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 9.213, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-22", + "total_cases": 670.0, + "new_cases": 186.0, + "new_cases_smoothed": 90.286, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1070.329, + "new_cases_per_million": 297.136, + "new_cases_smoothed_per_million": 144.232, + "total_deaths_per_million": 12.78, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 21.0, + "total_tests": 4682.0, + "total_tests_per_thousand": 7.48, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 6.502000000000001, + "positive_rate": 0.154, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-23", + "total_cases": 798.0, + "new_cases": 128.0, + "new_cases_smoothed": 103.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1274.809, + "new_cases_per_million": 204.481, + "new_cases_smoothed_per_million": 164.543, + "total_deaths_per_million": 12.78, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 1083.0, + "total_tests": 5765.0, + "total_tests_per_thousand": 9.21, + "new_tests_per_thousand": 1.73, + "new_tests_smoothed": 692.0, + "new_tests_smoothed_per_thousand": 1.105, + "tests_per_case": 6.718, + "positive_rate": 0.149, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-24", + "total_cases": 875.0, + "new_cases": 77.0, + "new_cases_smoothed": 113.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1397.817, + "new_cases_per_million": 123.008, + "new_cases_smoothed_per_million": 181.203, + "total_deaths_per_million": 12.78, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 857.0, + "total_tests": 6622.0, + "total_tests_per_thousand": 10.579, + "new_tests_per_thousand": 1.369, + "new_tests_smoothed": 734.0, + "new_tests_smoothed_per_thousand": 1.173, + "tests_per_case": 6.471, + "positive_rate": 0.155, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-25", + "total_cases": 1099.0, + "new_cases": 224.0, + "new_cases_smoothed": 137.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1755.658, + "new_cases_per_million": 357.841, + "new_cases_smoothed_per_million": 218.858, + "total_deaths_per_million": 12.78, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 863.0, + "total_tests": 7485.0, + "total_tests_per_thousand": 11.957, + "new_tests_per_thousand": 1.379, + "new_tests_smoothed": 732.0, + "new_tests_smoothed_per_thousand": 1.169, + "tests_per_case": 5.343, + "positive_rate": 0.187, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-26", + "total_cases": 1333.0, + "new_cases": 234.0, + "new_cases_smoothed": 160.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2129.475, + "new_cases_per_million": 373.816, + "new_cases_smoothed_per_million": 256.285, + "total_deaths_per_million": 12.78, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 4407.0, + "total_tests": 11892.0, + "total_tests_per_thousand": 18.998, + "new_tests_per_thousand": 7.04, + "new_tests_smoothed": 1234.0, + "new_tests_smoothed_per_thousand": 1.971, + "tests_per_case": 7.692, + "positive_rate": 0.13, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 1453.0, + "new_cases": 120.0, + "new_cases_smoothed": 158.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2321.175, + "new_cases_per_million": 191.701, + "new_cases_smoothed_per_million": 252.862, + "total_deaths_per_million": 14.378, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 1012.0, + "total_tests": 12904.0, + "total_tests_per_thousand": 20.614, + "new_tests_per_thousand": 1.617, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 1.979, + "tests_per_case": 7.827999999999999, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 1605.0, + "new_cases": 152.0, + "new_cases_smoothed": 160.143, + "total_deaths": 15.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2563.996, + "new_cases_per_million": 242.821, + "new_cases_smoothed_per_million": 255.829, + "total_deaths_per_million": 23.963, + "new_deaths_per_million": 9.585, + "new_deaths_smoothed_per_million": 2.282, + "new_tests": 749.0, + "total_tests": 13653.0, + "total_tests_per_thousand": 21.811, + "new_tests_per_thousand": 1.197, + "new_tests_smoothed": 1285.0, + "new_tests_smoothed_per_thousand": 2.053, + "tests_per_case": 8.024, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 1831.0, + "new_cases": 226.0, + "new_cases_smoothed": 165.857, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2925.032, + "new_cases_per_million": 361.036, + "new_cases_smoothed_per_million": 264.958, + "total_deaths_per_million": 28.755, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 2.282, + "new_tests": 240.0, + "total_tests": 13893.0, + "total_tests_per_thousand": 22.194, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 1316.0, + "new_tests_smoothed_per_thousand": 2.102, + "tests_per_case": 7.935, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 1950.0, + "new_cases": 119.0, + "new_cases_smoothed": 164.571, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3115.135, + "new_cases_per_million": 190.103, + "new_cases_smoothed_per_million": 262.904, + "total_deaths_per_million": 33.548, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 977.0, + "total_tests": 14870.0, + "total_tests_per_thousand": 23.755, + "new_tests_per_thousand": 1.561, + "new_tests_smoothed": 1301.0, + "new_tests_smoothed_per_thousand": 2.078, + "tests_per_case": 7.905, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 1988.0, + "new_cases": 38.0, + "new_cases_smoothed": 159.0, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3175.841, + "new_cases_per_million": 60.705, + "new_cases_smoothed_per_million": 254.003, + "total_deaths_per_million": 35.145, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 3.195, + "new_tests": 844.0, + "total_tests": 15714.0, + "total_tests_per_thousand": 25.103, + "new_tests_per_thousand": 1.348, + "new_tests_smoothed": 1299.0, + "new_tests_smoothed_per_thousand": 2.075, + "tests_per_case": 8.17, + "positive_rate": 0.122, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 2178.0, + "new_cases": 190.0, + "new_cases_smoothed": 154.143, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3479.367, + "new_cases_per_million": 303.526, + "new_cases_smoothed_per_million": 246.244, + "total_deaths_per_million": 36.743, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 3.423, + "new_tests": 1103.0, + "total_tests": 16817.0, + "total_tests_per_thousand": 26.865, + "new_tests_per_thousand": 1.762, + "new_tests_smoothed": 1333.0, + "new_tests_smoothed_per_thousand": 2.129, + "tests_per_case": 8.648, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 2319.0, + "new_cases": 141.0, + "new_cases_smoothed": 140.857, + "total_deaths": 29.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3704.615, + "new_cases_per_million": 225.248, + "new_cases_smoothed_per_million": 225.02, + "total_deaths_per_million": 46.328, + "new_deaths_per_million": 9.585, + "new_deaths_smoothed_per_million": 4.793, + "new_tests": 1203.0, + "total_tests": 18020.0, + "total_tests_per_thousand": 28.787, + "new_tests_per_thousand": 1.922, + "new_tests_smoothed": 875.0, + "new_tests_smoothed_per_thousand": 1.398, + "tests_per_case": 6.212000000000001, + "positive_rate": 0.161, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 2487.0, + "new_cases": 168.0, + "new_cases_smoothed": 147.714, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3972.996, + "new_cases_per_million": 268.381, + "new_cases_smoothed_per_million": 235.974, + "total_deaths_per_million": 47.925, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 4.793, + "new_tests": 1098.0, + "total_tests": 19118.0, + "total_tests_per_thousand": 30.541, + "new_tests_per_thousand": 1.754, + "new_tests_smoothed": 888.0, + "new_tests_smoothed_per_thousand": 1.419, + "tests_per_case": 6.0120000000000005, + "positive_rate": 0.166, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 2612.0, + "new_cases": 125.0, + "new_cases_smoothed": 143.857, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 4172.684, + "new_cases_per_million": 199.688, + "new_cases_smoothed_per_million": 229.813, + "total_deaths_per_million": 49.523, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 3.651, + "new_tests": 706.0, + "total_tests": 19824.0, + "total_tests_per_thousand": 31.669, + "new_tests_per_thousand": 1.128, + "new_tests_smoothed": 882.0, + "new_tests_smoothed_per_thousand": 1.409, + "tests_per_case": 6.131, + "positive_rate": 0.163, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 2729.0, + "new_cases": 117.0, + "new_cases_smoothed": 128.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4359.592, + "new_cases_per_million": 186.908, + "new_cases_smoothed_per_million": 204.937, + "total_deaths_per_million": 49.523, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 442.0, + "total_tests": 20266.0, + "total_tests_per_thousand": 32.375, + "new_tests_per_thousand": 0.706, + "new_tests_smoothed": 910.0, + "new_tests_smoothed_per_thousand": 1.454, + "tests_per_case": 7.093999999999999, + "positive_rate": 0.141, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 2804.0, + "new_cases": 75.0, + "new_cases_smoothed": 122.0, + "total_deaths": 36.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4479.405, + "new_cases_per_million": 119.813, + "new_cases_smoothed_per_million": 194.896, + "total_deaths_per_million": 57.51, + "new_deaths_per_million": 7.988, + "new_deaths_smoothed_per_million": 3.423, + "new_tests": 819.0, + "total_tests": 21085.0, + "total_tests_per_thousand": 33.683, + "new_tests_per_thousand": 1.308, + "new_tests_smoothed": 888.0, + "new_tests_smoothed_per_thousand": 1.419, + "tests_per_case": 7.279, + "positive_rate": 0.13699999999999998, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 2843.0, + "new_cases": 39.0, + "new_cases_smoothed": 122.143, + "total_deaths": 41.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 4541.708, + "new_cases_per_million": 62.303, + "new_cases_smoothed_per_million": 195.124, + "total_deaths_per_million": 65.498, + "new_deaths_per_million": 7.988, + "new_deaths_smoothed_per_million": 4.336, + "new_tests": 882.0, + "total_tests": 21967.0, + "total_tests_per_thousand": 35.092, + "new_tests_per_thousand": 1.409, + "new_tests_smoothed": 893.0, + "new_tests_smoothed_per_thousand": 1.427, + "tests_per_case": 7.311, + "positive_rate": 0.13699999999999998, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 2970.0, + "new_cases": 127.0, + "new_cases_smoothed": 113.143, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 4744.591, + "new_cases_per_million": 202.883, + "new_cases_smoothed_per_million": 180.746, + "total_deaths_per_million": 70.29, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 4.793, + "new_tests": 786.0, + "total_tests": 22753.0, + "total_tests_per_thousand": 36.348, + "new_tests_per_thousand": 1.256, + "new_tests_smoothed": 848.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 7.495, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 3034.0, + "new_cases": 64.0, + "new_cases_smoothed": 102.143, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4846.831, + "new_cases_per_million": 102.24, + "new_cases_smoothed_per_million": 163.174, + "total_deaths_per_million": 73.485, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 3.88, + "new_tests": 698.0, + "total_tests": 23451.0, + "total_tests_per_thousand": 37.463, + "new_tests_per_thousand": 1.115, + "new_tests_smoothed": 776.0, + "new_tests_smoothed_per_thousand": 1.24, + "tests_per_case": 7.597, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 3115.0, + "new_cases": 81.0, + "new_cases_smoothed": 89.714, + "total_deaths": 52.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 4976.229, + "new_cases_per_million": 129.398, + "new_cases_smoothed_per_million": 143.319, + "total_deaths_per_million": 83.07, + "new_deaths_per_million": 9.585, + "new_deaths_smoothed_per_million": 5.021, + "new_tests": 518.0, + "total_tests": 23969.0, + "total_tests_per_thousand": 38.291, + "new_tests_per_thousand": 0.828, + "new_tests_smoothed": 693.0, + "new_tests_smoothed_per_thousand": 1.107, + "tests_per_case": 7.725, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 3223.0, + "new_cases": 108.0, + "new_cases_smoothed": 87.286, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5148.76, + "new_cases_per_million": 172.531, + "new_cases_smoothed_per_million": 139.439, + "total_deaths_per_million": 86.265, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 5.249, + "new_tests": 248.0, + "total_tests": 24217.0, + "total_tests_per_thousand": 38.687, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 628.0, + "new_tests_smoothed_per_thousand": 1.003, + "tests_per_case": 7.195, + "positive_rate": 0.139, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 3270.0, + "new_cases": 47.0, + "new_cases_smoothed": 77.286, + "total_deaths": 62.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 5223.842, + "new_cases_per_million": 75.083, + "new_cases_smoothed_per_million": 123.464, + "total_deaths_per_million": 99.045, + "new_deaths_per_million": 12.78, + "new_deaths_smoothed_per_million": 7.075, + "new_tests": 173.0, + "total_tests": 24390.0, + "total_tests_per_thousand": 38.963, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 589.0, + "new_tests_smoothed_per_thousand": 0.941, + "tests_per_case": 7.621, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 3281.0, + "new_cases": 11.0, + "new_cases_smoothed": 68.143, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5241.415, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 108.859, + "total_deaths_per_million": 105.435, + "new_deaths_per_million": 6.39, + "new_deaths_smoothed_per_million": 6.846, + "new_tests": 53.0, + "total_tests": 24443.0, + "total_tests_per_thousand": 39.048, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 480.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 7.044, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 3292.0, + "new_cases": 11.0, + "new_cases_smoothed": 64.143, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5258.988, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 102.469, + "total_deaths_per_million": 107.033, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 5.934, + "new_tests": 1096.0, + "total_tests": 25539.0, + "total_tests_per_thousand": 40.799, + "new_tests_per_thousand": 1.751, + "new_tests_smoothed": 510.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 7.9510000000000005, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 3307.0, + "new_cases": 15.0, + "new_cases_smoothed": 48.143, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5282.95, + "new_cases_per_million": 23.963, + "new_cases_smoothed_per_million": 76.908, + "total_deaths_per_million": 107.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.249, + "new_tests": 636.0, + "total_tests": 26175.0, + "total_tests_per_thousand": 41.815, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 489.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 10.157, + "positive_rate": 0.098, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 3373.0, + "new_cases": 66.0, + "new_cases_smoothed": 48.429, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5388.385, + "new_cases_per_million": 105.435, + "new_cases_smoothed_per_million": 77.365, + "total_deaths_per_million": 110.228, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 5.249, + "new_tests": 714.0, + "total_tests": 26889.0, + "total_tests_per_thousand": 42.955, + "new_tests_per_thousand": 1.141, + "new_tests_smoothed": 491.0, + "new_tests_smoothed_per_thousand": 0.784, + "tests_per_case": 10.139, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 3444.0, + "new_cases": 71.0, + "new_cases_smoothed": 47.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5501.808, + "new_cases_per_million": 113.423, + "new_cases_smoothed_per_million": 75.083, + "total_deaths_per_million": 110.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.88, + "new_tests": 773.0, + "total_tests": 27662.0, + "total_tests_per_thousand": 44.19, + "new_tests_per_thousand": 1.235, + "new_tests_smoothed": 528.0, + "new_tests_smoothed_per_thousand": 0.843, + "tests_per_case": 11.234000000000002, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 3480.0, + "new_cases": 36.0, + "new_cases_smoothed": 36.714, + "total_deaths": 72.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5559.319, + "new_cases_per_million": 57.51, + "new_cases_smoothed_per_million": 58.651, + "total_deaths_per_million": 115.02, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 4.108, + "new_tests": 406.0, + "total_tests": 28068.0, + "total_tests_per_thousand": 44.839, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 0.879, + "tests_per_case": 14.981, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 3537.0, + "new_cases": 57.0, + "new_cases_smoothed": 38.143, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5650.376, + "new_cases_per_million": 91.058, + "new_cases_smoothed_per_million": 60.933, + "total_deaths_per_million": 115.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.282, + "new_tests": 104.0, + "total_tests": 28172.0, + "total_tests_per_thousand": 45.005, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 540.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 14.157, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 3550.0, + "new_cases": 13.0, + "new_cases_smoothed": 38.429, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5671.144, + "new_cases_per_million": 20.768, + "new_cases_smoothed_per_million": 61.39, + "total_deaths_per_million": 116.618, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 738.0, + "total_tests": 28910.0, + "total_tests_per_thousand": 46.184, + "new_tests_per_thousand": 1.179, + "new_tests_smoothed": 638.0, + "new_tests_smoothed_per_thousand": 1.019, + "tests_per_case": 16.602, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-21", + "total_cases": 3558.0, + "new_cases": 8.0, + "new_cases_smoothed": 38.0, + "total_deaths": 75.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5683.924, + "new_cases_per_million": 12.78, + "new_cases_smoothed_per_million": 60.705, + "total_deaths_per_million": 119.813, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 1.826, + "new_tests": 599.0, + "total_tests": 29509.0, + "total_tests_per_thousand": 47.141, + "new_tests_per_thousand": 0.957, + "new_tests_smoothed": 567.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 14.921, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-22", + "total_cases": 3618.0, + "new_cases": 60.0, + "new_cases_smoothed": 44.429, + "total_deaths": 78.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5779.774, + "new_cases_per_million": 95.85, + "new_cases_smoothed_per_million": 70.975, + "total_deaths_per_million": 124.605, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 2.51, + "new_tests": 857.0, + "total_tests": 30366.0, + "total_tests_per_thousand": 48.51, + "new_tests_per_thousand": 1.369, + "new_tests_smoothed": 599.0, + "new_tests_smoothed_per_thousand": 0.957, + "tests_per_case": 13.482000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-23", + "total_cases": 3654.0, + "new_cases": 36.0, + "new_cases_smoothed": 40.143, + "total_deaths": 80.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5837.284, + "new_cases_per_million": 57.51, + "new_cases_smoothed_per_million": 64.128, + "total_deaths_per_million": 127.8, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 2.51, + "new_tests": 559.0, + "total_tests": 30925.0, + "total_tests_per_thousand": 49.403, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 577.0, + "new_tests_smoothed_per_thousand": 0.922, + "tests_per_case": 14.374, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-24", + "total_cases": 3665.0, + "new_cases": 11.0, + "new_cases_smoothed": 31.571, + "total_deaths": 83.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5854.857, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 50.436, + "total_deaths_per_million": 132.593, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 3.195, + "new_tests": 912.0, + "total_tests": 31837.0, + "total_tests_per_thousand": 50.86, + "new_tests_per_thousand": 1.457, + "new_tests_smoothed": 596.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 18.878, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-25", + "total_cases": 3695.0, + "new_cases": 30.0, + "new_cases_smoothed": 30.714, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5902.782, + "new_cases_per_million": 47.925, + "new_cases_smoothed_per_million": 49.066, + "total_deaths_per_million": 135.788, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 463.0, + "total_tests": 32300.0, + "total_tests_per_thousand": 51.599, + "new_tests_per_thousand": 0.74, + "new_tests_smoothed": 605.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 19.698, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-26", + "total_cases": 3711.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.857, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5928.342, + "new_cases_per_million": 25.56, + "new_cases_smoothed_per_million": 39.709, + "total_deaths_per_million": 135.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 92.0, + "total_tests": 32392.0, + "total_tests_per_thousand": 51.746, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 603.0, + "new_tests_smoothed_per_thousand": 0.963, + "tests_per_case": 24.259, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-27", + "total_cases": 3723.0, + "new_cases": 12.0, + "new_cases_smoothed": 24.714, + "total_deaths": 88.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5947.512, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 39.481, + "total_deaths_per_million": 140.58, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 3.423, + "new_tests": 541.0, + "total_tests": 32933.0, + "total_tests_per_thousand": 52.611, + "new_tests_per_thousand": 0.864, + "new_tests_smoothed": 575.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 23.266, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-28", + "total_cases": 3729.0, + "new_cases": 6.0, + "new_cases_smoothed": 24.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5957.097, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 39.025, + "total_deaths_per_million": 140.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.967, + "new_tests": 1414.0, + "total_tests": 34347.0, + "total_tests_per_thousand": 54.87, + "new_tests_per_thousand": 2.259, + "new_tests_smoothed": 691.0, + "new_tests_smoothed_per_thousand": 1.104, + "tests_per_case": 28.287, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-29", + "total_cases": 3741.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.571, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5976.267, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 28.07, + "total_deaths_per_million": 142.178, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 2.51, + "new_tests": 1533.0, + "total_tests": 35880.0, + "total_tests_per_thousand": 57.318, + "new_tests_per_thousand": 2.449, + "new_tests_smoothed": 788.0, + "new_tests_smoothed_per_thousand": 1.259, + "tests_per_case": 44.846000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-30", + "total_cases": 3769.0, + "new_cases": 28.0, + "new_cases_smoothed": 16.429, + "total_deaths": 89.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6020.998, + "new_cases_per_million": 44.73, + "new_cases_smoothed_per_million": 26.245, + "total_deaths_per_million": 142.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.054, + "new_tests": 1554.0, + "total_tests": 37434.0, + "total_tests_per_thousand": 59.801, + "new_tests_per_thousand": 2.483, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 1.486, + "tests_per_case": 56.608999999999995, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-01", + "total_cases": 3784.0, + "new_cases": 15.0, + "new_cases_smoothed": 17.0, + "total_deaths": 90.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6044.96, + "new_cases_per_million": 23.963, + "new_cases_smoothed_per_million": 27.158, + "total_deaths_per_million": 143.775, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 1251.0, + "total_tests": 38685.0, + "total_tests_per_thousand": 61.799, + "new_tests_per_thousand": 1.998, + "new_tests_smoothed": 978.0, + "new_tests_smoothed_per_thousand": 1.562, + "tests_per_case": 57.528999999999996, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-02", + "total_cases": 3802.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.286, + "total_deaths": 92.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6073.715, + "new_cases_per_million": 28.755, + "new_cases_smoothed_per_million": 24.419, + "total_deaths_per_million": 146.97, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 561.0, + "total_tests": 39246.0, + "total_tests_per_thousand": 62.696, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 1.585, + "tests_per_case": 64.89699999999999, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-03", + "total_cases": 3812.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6089.69, + "new_cases_per_million": 15.975, + "new_cases_smoothed_per_million": 23.05, + "total_deaths_per_million": 146.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 184.0, + "total_tests": 39430.0, + "total_tests_per_thousand": 62.99, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 1005.0, + "new_tests_smoothed_per_thousand": 1.605, + "tests_per_case": 69.653, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-04", + "total_cases": 3824.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.429, + "total_deaths": 96.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6108.86, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 23.05, + "total_deaths_per_million": 153.361, + "new_deaths_per_million": 6.39, + "new_deaths_smoothed_per_million": 1.826, + "new_tests": 781.0, + "total_tests": 40211.0, + "total_tests_per_thousand": 64.237, + "new_tests_per_thousand": 1.248, + "new_tests_smoothed": 1040.0, + "new_tests_smoothed_per_thousand": 1.661, + "tests_per_case": 72.079, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-05", + "total_cases": 3828.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.143, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6115.25, + "new_cases_per_million": 6.39, + "new_cases_smoothed_per_million": 22.593, + "total_deaths_per_million": 153.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.826, + "new_tests": 986.0, + "total_tests": 41197.0, + "total_tests_per_thousand": 65.812, + "new_tests_per_thousand": 1.575, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 1.564, + "tests_per_case": 69.222, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-06", + "total_cases": 3840.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.143, + "total_deaths": 96.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6134.42, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 22.593, + "total_deaths_per_million": 153.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 1024.0, + "total_tests": 42221.0, + "total_tests_per_thousand": 67.448, + "new_tests_per_thousand": 1.636, + "new_tests_smoothed": 906.0, + "new_tests_smoothed_per_thousand": 1.447, + "tests_per_case": 64.061, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-07", + "total_cases": 3851.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.714, + "total_deaths": 98.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6151.993, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 18.714, + "total_deaths_per_million": 156.556, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 2.054, + "new_tests": 1007.0, + "total_tests": 43228.0, + "total_tests_per_thousand": 69.057, + "new_tests_per_thousand": 1.609, + "new_tests_smoothed": 828.0, + "new_tests_smoothed_per_thousand": 1.323, + "tests_per_case": 70.683, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-08", + "total_cases": 3859.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.714, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6164.773, + "new_cases_per_million": 12.78, + "new_cases_smoothed_per_million": 17.116, + "total_deaths_per_million": 159.751, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 2.282, + "new_tests": 1015.0, + "total_tests": 44243.0, + "total_tests_per_thousand": 70.678, + "new_tests_per_thousand": 1.621, + "new_tests_smoothed": 794.0, + "new_tests_smoothed_per_thousand": 1.268, + "tests_per_case": 74.107, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-09", + "total_cases": 3871.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.857, + "total_deaths": 100.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6183.943, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 15.747, + "total_deaths_per_million": 159.751, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.826, + "new_tests": 579.0, + "total_tests": 44822.0, + "total_tests_per_thousand": 71.603, + "new_tests_per_thousand": 0.925, + "new_tests_smoothed": 797.0, + "new_tests_smoothed_per_thousand": 1.273, + "tests_per_case": 80.855, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-10", + "total_cases": 3877.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.286, + "total_deaths": 101.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6193.528, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 14.834, + "total_deaths_per_million": 161.348, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 2.054, + "new_tests": 147.0, + "total_tests": 44969.0, + "total_tests_per_thousand": 71.838, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 791.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 85.185, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-05-11", + "total_cases": 3886.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 101.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6207.906, + "new_cases_per_million": 14.378, + "new_cases_smoothed_per_million": 14.149, + "total_deaths_per_million": 161.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 816.0, + "total_tests": 45785.0, + "total_tests_per_thousand": 73.142, + "new_tests_per_thousand": 1.304, + "new_tests_smoothed": 796.0, + "new_tests_smoothed_per_thousand": 1.272, + "tests_per_case": 89.87100000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-12", + "total_cases": 3888.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.571, + "total_deaths": 101.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6211.101, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 13.693, + "total_deaths_per_million": 161.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 975.0, + "total_tests": 46760.0, + "total_tests_per_thousand": 74.699, + "new_tests_per_thousand": 1.558, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 1.27, + "tests_per_case": 92.75, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-13", + "total_cases": 3894.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.714, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6220.686, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 12.324, + "total_deaths_per_million": 162.946, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 854.0, + "total_tests": 47614.0, + "total_tests_per_thousand": 76.064, + "new_tests_per_thousand": 1.364, + "new_tests_smoothed": 770.0, + "new_tests_smoothed_per_thousand": 1.23, + "tests_per_case": 99.815, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-14", + "total_cases": 3904.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.571, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6236.661, + "new_cases_per_million": 15.975, + "new_cases_smoothed_per_million": 12.095, + "total_deaths_per_million": 164.543, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 877.0, + "total_tests": 48491.0, + "total_tests_per_thousand": 77.465, + "new_tests_per_thousand": 1.401, + "new_tests_smoothed": 752.0, + "new_tests_smoothed_per_thousand": 1.201, + "tests_per_case": 99.321, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-15", + "total_cases": 3915.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6254.233, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 12.78, + "total_deaths_per_million": 164.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 976.0, + "total_tests": 49467.0, + "total_tests_per_thousand": 79.024, + "new_tests_per_thousand": 1.559, + "new_tests_smoothed": 746.0, + "new_tests_smoothed_per_thousand": 1.192, + "tests_per_case": 93.25, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-16", + "total_cases": 3923.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6267.013, + "new_cases_per_million": 12.78, + "new_cases_smoothed_per_million": 11.867, + "total_deaths_per_million": 166.141, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 736.0, + "total_tests": 50203.0, + "total_tests_per_thousand": 80.2, + "new_tests_per_thousand": 1.176, + "new_tests_smoothed": 769.0, + "new_tests_smoothed_per_thousand": 1.228, + "tests_per_case": 103.51899999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-17", + "total_cases": 3930.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6278.196, + "new_cases_per_million": 11.183, + "new_cases_smoothed_per_million": 12.095, + "total_deaths_per_million": 166.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 88.0, + "total_tests": 50291.0, + "total_tests_per_thousand": 80.34, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 760.0, + "new_tests_smoothed_per_thousand": 1.214, + "tests_per_case": 100.37700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-18", + "total_cases": 3945.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.429, + "total_deaths": 107.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6302.159, + "new_cases_per_million": 23.963, + "new_cases_smoothed_per_million": 13.465, + "total_deaths_per_million": 170.933, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 739.0, + "total_tests": 51030.0, + "total_tests_per_thousand": 81.521, + "new_tests_per_thousand": 1.181, + "new_tests_smoothed": 749.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 88.86399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-19", + "total_cases": 3947.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6305.354, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 13.465, + "total_deaths_per_million": 170.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 774.0, + "total_tests": 51804.0, + "total_tests_per_thousand": 82.757, + "new_tests_per_thousand": 1.236, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 1.152, + "tests_per_case": 85.542, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-20", + "total_cases": 3958.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.143, + "total_deaths": 109.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6322.926, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 14.606, + "total_deaths_per_million": 174.128, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 1.598, + "new_tests": 1085.0, + "total_tests": 52889.0, + "total_tests_per_thousand": 84.49, + "new_tests_per_thousand": 1.733, + "new_tests_smoothed": 754.0, + "new_tests_smoothed_per_thousand": 1.205, + "tests_per_case": 82.469, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-21", + "total_cases": 3971.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.571, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6343.694, + "new_cases_per_million": 20.768, + "new_cases_smoothed_per_million": 15.29, + "total_deaths_per_million": 174.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 573.0, + "total_tests": 53462.0, + "total_tests_per_thousand": 85.406, + "new_tests_per_thousand": 0.915, + "new_tests_smoothed": 710.0, + "new_tests_smoothed_per_thousand": 1.134, + "tests_per_case": 74.179, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-22", + "total_cases": 3980.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6358.071, + "new_cases_per_million": 14.378, + "new_cases_smoothed_per_million": 14.834, + "total_deaths_per_million": 174.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 944.0, + "total_tests": 54406.0, + "total_tests_per_thousand": 86.914, + "new_tests_per_thousand": 1.508, + "new_tests_smoothed": 706.0, + "new_tests_smoothed_per_thousand": 1.128, + "tests_per_case": 76.031, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-23", + "total_cases": 3981.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6359.669, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 13.236, + "total_deaths_per_million": 174.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 929.0, + "total_tests": 55335.0, + "total_tests_per_thousand": 88.398, + "new_tests_per_thousand": 1.484, + "new_tests_smoothed": 733.0, + "new_tests_smoothed_per_thousand": 1.171, + "tests_per_case": 88.46600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-24", + "total_cases": 3990.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.571, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6374.046, + "new_cases_per_million": 14.378, + "new_cases_smoothed_per_million": 13.693, + "total_deaths_per_million": 174.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 61.0, + "total_tests": 55396.0, + "total_tests_per_thousand": 88.495, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 1.165, + "tests_per_case": 85.05, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 56.48 + }, + { + "date": "2020-05-25", + "total_cases": 3992.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 110.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6377.241, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 10.726, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 684.0, + "total_tests": 56080.0, + "total_tests_per_thousand": 89.588, + "new_tests_per_thousand": 1.093, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 1.152, + "tests_per_case": 107.383, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-26", + "total_cases": 3993.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6378.839, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 10.498, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 1007.0, + "total_tests": 57087.0, + "total_tests_per_thousand": 91.197, + "new_tests_per_thousand": 1.609, + "new_tests_smoothed": 755.0, + "new_tests_smoothed_per_thousand": 1.206, + "tests_per_case": 114.891, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-27", + "total_cases": 3995.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6382.034, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 8.444, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 889.0, + "total_tests": 57976.0, + "total_tests_per_thousand": 92.617, + "new_tests_per_thousand": 1.42, + "new_tests_smoothed": 727.0, + "new_tests_smoothed_per_thousand": 1.161, + "tests_per_case": 137.541, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-28", + "total_cases": 4001.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6391.619, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 6.846, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 1591.0, + "total_tests": 59567.0, + "total_tests_per_thousand": 95.159, + "new_tests_per_thousand": 2.542, + "new_tests_smoothed": 872.0, + "new_tests_smoothed_per_thousand": 1.393, + "tests_per_case": 203.467, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-29", + "total_cases": 4008.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6402.801, + "new_cases_per_million": 11.183, + "new_cases_smoothed_per_million": 6.39, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 1858.0, + "total_tests": 61425.0, + "total_tests_per_thousand": 98.127, + "new_tests_per_thousand": 2.968, + "new_tests_smoothed": 1003.0, + "new_tests_smoothed_per_thousand": 1.602, + "tests_per_case": 250.75, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-30", + "total_cases": 4012.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6409.191, + "new_cases_per_million": 6.39, + "new_cases_smoothed_per_million": 7.075, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 1679.0, + "total_tests": 63104.0, + "total_tests_per_thousand": 100.809, + "new_tests_per_thousand": 2.682, + "new_tests_smoothed": 1110.0, + "new_tests_smoothed_per_thousand": 1.773, + "tests_per_case": 250.645, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-31", + "total_cases": 4016.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6415.581, + "new_cases_per_million": 6.39, + "new_cases_smoothed_per_million": 5.934, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 132.0, + "total_tests": 63236.0, + "total_tests_per_thousand": 101.02, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 1.789, + "tests_per_case": 301.538, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-01", + "total_cases": 4018.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6418.776, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 5.934, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 357.0, + "total_tests": 63593.0, + "total_tests_per_thousand": 101.59, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 1.714, + "tests_per_case": 288.885, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-02", + "total_cases": 4019.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6420.374, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 5.934, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1210.0, + "total_tests": 64803.0, + "total_tests_per_thousand": 103.523, + "new_tests_per_thousand": 1.933, + "new_tests_smoothed": 1102.0, + "new_tests_smoothed_per_thousand": 1.76, + "tests_per_case": 296.692, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-03", + "total_cases": 4020.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6421.971, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 5.705, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1311.0, + "total_tests": 66114.0, + "total_tests_per_thousand": 105.617, + "new_tests_per_thousand": 2.094, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 1.858, + "tests_per_case": 325.64, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-04", + "total_cases": 4020.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6421.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.336, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1260.0, + "total_tests": 67374.0, + "total_tests_per_thousand": 107.63, + "new_tests_per_thousand": 2.013, + "new_tests_smoothed": 1115.0, + "new_tests_smoothed_per_thousand": 1.781, + "tests_per_case": 410.789, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-05", + "total_cases": 4027.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6433.154, + "new_cases_per_million": 11.183, + "new_cases_smoothed_per_million": 4.336, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2409.0, + "total_tests": 69783.0, + "total_tests_per_thousand": 111.479, + "new_tests_per_thousand": 3.848, + "new_tests_smoothed": 1194.0, + "new_tests_smoothed_per_thousand": 1.907, + "tests_per_case": 439.895, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-06", + "total_cases": 4032.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6441.142, + "new_cases_per_million": 7.988, + "new_cases_smoothed_per_million": 4.564, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1513.0, + "total_tests": 71296.0, + "total_tests_per_thousand": 113.896, + "new_tests_per_thousand": 2.417, + "new_tests_smoothed": 1170.0, + "new_tests_smoothed_per_thousand": 1.869, + "tests_per_case": 409.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-07", + "total_cases": 4035.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6445.934, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 4.336, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 419.0, + "total_tests": 71715.0, + "total_tests_per_thousand": 114.565, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 1211.0, + "new_tests_smoothed_per_thousand": 1.935, + "tests_per_case": 446.158, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-08", + "total_cases": 4039.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6452.324, + "new_cases_per_million": 6.39, + "new_cases_smoothed_per_million": 4.793, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1816.0, + "total_tests": 73531.0, + "total_tests_per_thousand": 117.466, + "new_tests_per_thousand": 2.901, + "new_tests_smoothed": 1420.0, + "new_tests_smoothed_per_thousand": 2.268, + "tests_per_case": 473.333, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-09", + "total_cases": 4040.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6453.922, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 4.793, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2173.0, + "total_tests": 75704.0, + "total_tests_per_thousand": 120.938, + "new_tests_per_thousand": 3.471, + "new_tests_smoothed": 1557.0, + "new_tests_smoothed_per_thousand": 2.487, + "tests_per_case": 519.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-10", + "total_cases": 4046.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6463.507, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 5.934, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3902.0, + "total_tests": 79606.0, + "total_tests_per_thousand": 127.171, + "new_tests_per_thousand": 6.233, + "new_tests_smoothed": 1927.0, + "new_tests_smoothed_per_thousand": 3.078, + "tests_per_case": 518.808, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-11", + "total_cases": 4049.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6468.299, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 6.618, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3474.0, + "total_tests": 83080.0, + "total_tests_per_thousand": 132.721, + "new_tests_per_thousand": 5.55, + "new_tests_smoothed": 2244.0, + "new_tests_smoothed_per_thousand": 3.585, + "tests_per_case": 541.655, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-12", + "total_cases": 4052.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6473.092, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 5.705, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5158.0, + "total_tests": 88238.0, + "total_tests_per_thousand": 140.961, + "new_tests_per_thousand": 8.24, + "new_tests_smoothed": 2636.0, + "new_tests_smoothed_per_thousand": 4.211, + "tests_per_case": 738.08, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-13", + "total_cases": 4055.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6477.884, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 5.249, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2904.0, + "total_tests": 91142.0, + "total_tests_per_thousand": 145.6, + "new_tests_per_thousand": 4.639, + "new_tests_smoothed": 2835.0, + "new_tests_smoothed_per_thousand": 4.529, + "tests_per_case": 862.826, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-14", + "total_cases": 4063.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6490.664, + "new_cases_per_million": 12.78, + "new_cases_smoothed_per_million": 6.39, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 533.0, + "total_tests": 91675.0, + "total_tests_per_thousand": 146.451, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 2851.0, + "new_tests_smoothed_per_thousand": 4.554, + "tests_per_case": 712.75, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-15", + "total_cases": 4070.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6501.847, + "new_cases_per_million": 11.183, + "new_cases_smoothed_per_million": 7.075, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4073.0, + "total_tests": 95748.0, + "total_tests_per_thousand": 152.958, + "new_tests_per_thousand": 6.507, + "new_tests_smoothed": 3174.0, + "new_tests_smoothed_per_thousand": 5.07, + "tests_per_case": 716.71, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-16", + "total_cases": 4072.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6505.042, + "new_cases_per_million": 3.195, + "new_cases_smoothed_per_million": 7.303, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4065.0, + "total_tests": 99813.0, + "total_tests_per_thousand": 159.452, + "new_tests_per_thousand": 6.494, + "new_tests_smoothed": 3444.0, + "new_tests_smoothed_per_thousand": 5.502, + "tests_per_case": 753.375, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-17", + "total_cases": 4075.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6509.834, + "new_cases_per_million": 4.793, + "new_cases_smoothed_per_million": 6.618, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5400.0, + "total_tests": 105213.0, + "total_tests_per_thousand": 168.078, + "new_tests_per_thousand": 8.627, + "new_tests_smoothed": 3658.0, + "new_tests_smoothed_per_thousand": 5.844, + "tests_per_case": 882.966, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-18", + "total_cases": 4085.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6525.809, + "new_cases_per_million": 15.975, + "new_cases_smoothed_per_million": 8.216, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5308.0, + "total_tests": 110521.0, + "total_tests_per_thousand": 176.558, + "new_tests_per_thousand": 8.48, + "new_tests_smoothed": 3920.0, + "new_tests_smoothed_per_thousand": 6.262, + "tests_per_case": 762.222, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-19", + "total_cases": 4091.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6535.394, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 8.9, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5840.0, + "total_tests": 116361.0, + "total_tests_per_thousand": 185.887, + "new_tests_per_thousand": 9.329, + "new_tests_smoothed": 4018.0, + "new_tests_smoothed_per_thousand": 6.419, + "tests_per_case": 721.179, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-20", + "total_cases": 4099.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6548.174, + "new_cases_per_million": 12.78, + "new_cases_smoothed_per_million": 10.041, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4693.0, + "total_tests": 121054.0, + "total_tests_per_thousand": 193.384, + "new_tests_per_thousand": 7.497, + "new_tests_smoothed": 4273.0, + "new_tests_smoothed_per_thousand": 6.826, + "tests_per_case": 679.795, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-21", + "total_cases": 4105.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6557.759, + "new_cases_per_million": 9.585, + "new_cases_smoothed_per_million": 9.585, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 384.0, + "total_tests": 121438.0, + "total_tests_per_thousand": 193.998, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 4252.0, + "new_tests_smoothed_per_thousand": 6.793, + "tests_per_case": 708.6669999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-22", + "total_cases": 4120.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6581.722, + "new_cases_per_million": 23.963, + "new_cases_smoothed_per_million": 11.411, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5076.0, + "total_tests": 126514.0, + "total_tests_per_thousand": 202.107, + "new_tests_per_thousand": 8.109, + "new_tests_smoothed": 4395.0, + "new_tests_smoothed_per_thousand": 7.021, + "tests_per_case": 615.3, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-23", + "total_cases": 4121.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6583.319, + "new_cases_per_million": 1.598, + "new_cases_smoothed_per_million": 11.183, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 80.0, + "total_tests": 126594.0, + "total_tests_per_thousand": 202.235, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 3826.0, + "new_tests_smoothed_per_thousand": 6.112, + "tests_per_case": 546.571, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-24", + "total_cases": 4133.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6602.49, + "new_cases_per_million": 19.17, + "new_cases_smoothed_per_million": 13.236, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3867.0, + "total_tests": 130461.0, + "total_tests_per_thousand": 208.412, + "new_tests_per_thousand": 6.178, + "new_tests_smoothed": 3607.0, + "new_tests_smoothed_per_thousand": 5.762, + "tests_per_case": 435.32800000000003, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-25", + "total_cases": 4140.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.857, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6613.672, + "new_cases_per_million": 11.183, + "new_cases_smoothed_per_million": 12.552, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4145.0, + "total_tests": 134606.0, + "total_tests_per_thousand": 215.034, + "new_tests_per_thousand": 6.622, + "new_tests_smoothed": 3441.0, + "new_tests_smoothed_per_thousand": 5.497, + "tests_per_case": 437.945, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-06-26", + "total_cases": 4151.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6631.245, + "new_cases_per_million": 17.573, + "new_cases_smoothed_per_million": 13.693, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4839.0, + "total_tests": 139445.0, + "total_tests_per_thousand": 222.764, + "new_tests_per_thousand": 7.73, + "new_tests_smoothed": 3298.0, + "new_tests_smoothed_per_thousand": 5.269, + "tests_per_case": 384.767, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-27", + "total_cases": 4173.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6666.39, + "new_cases_per_million": 35.145, + "new_cases_smoothed_per_million": 16.888, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4451.0, + "total_tests": 143896.0, + "total_tests_per_thousand": 229.875, + "new_tests_per_thousand": 7.11, + "new_tests_smoothed": 3263.0, + "new_tests_smoothed_per_thousand": 5.213, + "tests_per_case": 308.66200000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-28", + "total_cases": 4217.0, + "new_cases": 44.0, + "new_cases_smoothed": 16.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6736.68, + "new_cases_per_million": 70.29, + "new_cases_smoothed_per_million": 25.56, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 671.0, + "total_tests": 144567.0, + "total_tests_per_thousand": 230.947, + "new_tests_per_thousand": 1.072, + "new_tests_smoothed": 3304.0, + "new_tests_smoothed_per_thousand": 5.278, + "tests_per_case": 206.5, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-29", + "total_cases": 4242.0, + "new_cases": 25.0, + "new_cases_smoothed": 17.429, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6776.618, + "new_cases_per_million": 39.938, + "new_cases_smoothed_per_million": 27.842, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6653.0, + "total_tests": 151220.0, + "total_tests_per_thousand": 241.575, + "new_tests_per_thousand": 10.628, + "new_tests_smoothed": 3529.0, + "new_tests_smoothed_per_thousand": 5.638, + "tests_per_case": 202.484, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-30", + "total_cases": 4256.0, + "new_cases": 14.0, + "new_cases_smoothed": 19.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6798.983, + "new_cases_per_million": 22.365, + "new_cases_smoothed_per_million": 30.809, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5864.0, + "total_tests": 157084.0, + "total_tests_per_thousand": 250.943, + "new_tests_per_thousand": 9.368, + "new_tests_smoothed": 4356.0, + "new_tests_smoothed_per_thousand": 6.959, + "tests_per_case": 225.86700000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-01", + "total_cases": 4299.0, + "new_cases": 43.0, + "new_cases_smoothed": 23.714, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6867.675, + "new_cases_per_million": 68.693, + "new_cases_smoothed_per_million": 37.884, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7874.0, + "total_tests": 164958.0, + "total_tests_per_thousand": 263.521, + "new_tests_per_thousand": 12.579, + "new_tests_smoothed": 4928.0, + "new_tests_smoothed_per_thousand": 7.873, + "tests_per_case": 207.80700000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-02", + "total_cases": 4345.0, + "new_cases": 46.0, + "new_cases_smoothed": 29.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6941.161, + "new_cases_per_million": 73.485, + "new_cases_smoothed_per_million": 46.784, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8584.0, + "total_tests": 173542.0, + "total_tests_per_thousand": 277.234, + "new_tests_per_thousand": 13.713, + "new_tests_smoothed": 5562.0, + "new_tests_smoothed_per_thousand": 8.885, + "tests_per_case": 189.922, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-03", + "total_cases": 4395.0, + "new_cases": 50.0, + "new_cases_smoothed": 34.857, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7021.036, + "new_cases_per_million": 79.875, + "new_cases_smoothed_per_million": 55.684, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8039.0, + "total_tests": 181581.0, + "total_tests_per_thousand": 290.077, + "new_tests_per_thousand": 12.842, + "new_tests_smoothed": 6019.0, + "new_tests_smoothed_per_thousand": 9.615, + "tests_per_case": 172.676, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-04", + "total_cases": 4447.0, + "new_cases": 52.0, + "new_cases_smoothed": 39.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7104.106, + "new_cases_per_million": 83.07, + "new_cases_smoothed_per_million": 62.531, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6057.0, + "total_tests": 187638.0, + "total_tests_per_thousand": 299.753, + "new_tests_per_thousand": 9.676, + "new_tests_smoothed": 6249.0, + "new_tests_smoothed_per_thousand": 9.983, + "tests_per_case": 159.64600000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-05", + "total_cases": 4476.0, + "new_cases": 29.0, + "new_cases_smoothed": 37.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7150.434, + "new_cases_per_million": 46.328, + "new_cases_smoothed_per_million": 59.108, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 740.0, + "total_tests": 188378.0, + "total_tests_per_thousand": 300.935, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 6259.0, + "new_tests_smoothed_per_thousand": 9.999, + "tests_per_case": 169.162, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-06", + "total_cases": 4522.0, + "new_cases": 46.0, + "new_cases_smoothed": 40.0, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7223.919, + "new_cases_per_million": 73.485, + "new_cases_smoothed_per_million": 63.9, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7381.0, + "total_tests": 195759.0, + "total_tests_per_thousand": 312.726, + "new_tests_per_thousand": 11.791, + "new_tests_smoothed": 6363.0, + "new_tests_smoothed_per_thousand": 10.165, + "tests_per_case": 159.075, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-07", + "total_cases": 4542.0, + "new_cases": 20.0, + "new_cases_smoothed": 40.857, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7255.869, + "new_cases_per_million": 31.95, + "new_cases_smoothed_per_million": 65.27, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7254.0, + "total_tests": 203013.0, + "total_tests_per_thousand": 324.314, + "new_tests_per_thousand": 11.588, + "new_tests_smoothed": 6561.0, + "new_tests_smoothed_per_thousand": 10.481, + "tests_per_case": 160.584, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-08", + "total_cases": 4603.0, + "new_cases": 61.0, + "new_cases_smoothed": 43.429, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7353.317, + "new_cases_per_million": 97.448, + "new_cases_smoothed_per_million": 69.377, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8519.0, + "total_tests": 211532.0, + "total_tests_per_thousand": 337.923, + "new_tests_per_thousand": 13.609, + "new_tests_smoothed": 6653.0, + "new_tests_smoothed_per_thousand": 10.628, + "tests_per_case": 153.194, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-09", + "total_cases": 4650.0, + "new_cases": 47.0, + "new_cases_smoothed": 43.571, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7428.4, + "new_cases_per_million": 75.083, + "new_cases_smoothed_per_million": 69.606, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8128.0, + "total_tests": 219660.0, + "total_tests_per_thousand": 350.908, + "new_tests_per_thousand": 12.985, + "new_tests_smoothed": 6588.0, + "new_tests_smoothed_per_thousand": 10.524, + "tests_per_case": 151.2, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-10", + "total_cases": 4719.0, + "new_cases": 69.0, + "new_cases_smoothed": 46.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7538.628, + "new_cases_per_million": 110.228, + "new_cases_smoothed_per_million": 73.942, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3526.0, + "total_tests": 223186.0, + "total_tests_per_thousand": 356.541, + "new_tests_per_thousand": 5.633, + "new_tests_smoothed": 5944.0, + "new_tests_smoothed_per_thousand": 9.496, + "tests_per_case": 128.42, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-11", + "total_cases": 4777.0, + "new_cases": 58.0, + "new_cases_smoothed": 47.143, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7631.283, + "new_cases_per_million": 92.655, + "new_cases_smoothed_per_million": 75.311, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5393.0, + "total_tests": 228579.0, + "total_tests_per_thousand": 365.156, + "new_tests_per_thousand": 8.615, + "new_tests_smoothed": 5849.0, + "new_tests_smoothed_per_thousand": 9.344, + "tests_per_case": 124.07, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-12", + "total_cases": 4842.0, + "new_cases": 65.0, + "new_cases_smoothed": 52.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7735.121, + "new_cases_per_million": 103.838, + "new_cases_smoothed_per_million": 83.527, + "total_deaths_per_million": 175.726, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3159.0, + "total_tests": 231738.0, + "total_tests_per_thousand": 370.203, + "new_tests_per_thousand": 5.047, + "new_tests_smoothed": 6194.0, + "new_tests_smoothed_per_thousand": 9.895, + "tests_per_case": 118.464, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-13", + "total_cases": 4925.0, + "new_cases": 83.0, + "new_cases_smoothed": 57.571, + "total_deaths": 111.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7867.714, + "new_cases_per_million": 132.593, + "new_cases_smoothed_per_million": 91.971, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 7311.0, + "total_tests": 239049.0, + "total_tests_per_thousand": 381.882, + "new_tests_per_thousand": 11.679, + "new_tests_smoothed": 6184.0, + "new_tests_smoothed_per_thousand": 9.879, + "tests_per_case": 107.414, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-14", + "total_cases": 4956.0, + "new_cases": 31.0, + "new_cases_smoothed": 59.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7917.236, + "new_cases_per_million": 49.523, + "new_cases_smoothed_per_million": 94.481, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 7883.0, + "total_tests": 246932.0, + "total_tests_per_thousand": 394.475, + "new_tests_per_thousand": 12.593, + "new_tests_smoothed": 6274.0, + "new_tests_smoothed_per_thousand": 10.023, + "tests_per_case": 106.08200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-15", + "total_cases": 5056.0, + "new_cases": 100.0, + "new_cases_smoothed": 64.714, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8076.987, + "new_cases_per_million": 159.751, + "new_cases_smoothed_per_million": 103.381, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 9659.0, + "total_tests": 256591.0, + "total_tests_per_thousand": 409.905, + "new_tests_per_thousand": 15.43, + "new_tests_smoothed": 6437.0, + "new_tests_smoothed_per_thousand": 10.283, + "tests_per_case": 99.46799999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-07-16", + "total_cases": 5056.0, + "new_cases": 0.0, + "new_cases_smoothed": 58.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8076.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 92.655, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 8634.0, + "total_tests": 265225.0, + "total_tests_per_thousand": 423.698, + "new_tests_per_thousand": 13.793, + "new_tests_smoothed": 6509.0, + "new_tests_smoothed_per_thousand": 10.398, + "tests_per_case": 112.22399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-07-17", + "total_cases": 5122.0, + "new_cases": 66.0, + "new_cases_smoothed": 57.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8182.422, + "new_cases_per_million": 105.435, + "new_cases_smoothed_per_million": 91.971, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 9936.0, + "total_tests": 275161.0, + "total_tests_per_thousand": 439.571, + "new_tests_per_thousand": 15.873, + "new_tests_smoothed": 7425.0, + "new_tests_smoothed_per_thousand": 11.861, + "tests_per_case": 128.97, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-07-18", + "total_cases": 5285.0, + "new_cases": 163.0, + "new_cases_smoothed": 72.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8442.816, + "new_cases_per_million": 260.393, + "new_cases_smoothed_per_million": 115.933, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 8155.0, + "total_tests": 283316.0, + "total_tests_per_thousand": 452.599, + "new_tests_per_thousand": 13.028, + "new_tests_smoothed": 7820.0, + "new_tests_smoothed_per_thousand": 12.492, + "tests_per_case": 107.756, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-07-19", + "total_cases": 5409.0, + "new_cases": 124.0, + "new_cases_smoothed": 81.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8640.906, + "new_cases_per_million": 198.091, + "new_cases_smoothed_per_million": 129.398, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 1963.0, + "total_tests": 285279.0, + "total_tests_per_thousand": 455.735, + "new_tests_per_thousand": 3.136, + "new_tests_smoothed": 7649.0, + "new_tests_smoothed_per_thousand": 12.219, + "tests_per_case": 94.432, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-20", + "total_cases": 5483.0, + "new_cases": 74.0, + "new_cases_smoothed": 79.714, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8759.122, + "new_cases_per_million": 118.215, + "new_cases_smoothed_per_million": 127.344, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6060.0, + "total_tests": 291339.0, + "total_tests_per_thousand": 465.416, + "new_tests_per_thousand": 9.681, + "new_tests_smoothed": 7470.0, + "new_tests_smoothed_per_thousand": 11.933, + "tests_per_case": 93.71, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-21", + "total_cases": 5605.0, + "new_cases": 122.0, + "new_cases_smoothed": 92.714, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8954.017, + "new_cases_per_million": 194.896, + "new_cases_smoothed_per_million": 148.112, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10375.0, + "total_tests": 301714.0, + "total_tests_per_thousand": 481.99, + "new_tests_per_thousand": 16.574, + "new_tests_smoothed": 7826.0, + "new_tests_smoothed_per_thousand": 12.502, + "tests_per_case": 84.41, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-22", + "total_cases": 5725.0, + "new_cases": 120.0, + "new_cases_smoothed": 95.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9145.718, + "new_cases_per_million": 191.701, + "new_cases_smoothed_per_million": 152.676, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4014.0, + "total_tests": 305728.0, + "total_tests_per_thousand": 488.402, + "new_tests_per_thousand": 6.412, + "new_tests_smoothed": 7020.0, + "new_tests_smoothed_per_thousand": 11.214, + "tests_per_case": 73.453, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-23", + "total_cases": 5854.0, + "new_cases": 129.0, + "new_cases_smoothed": 114.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9351.796, + "new_cases_per_million": 206.078, + "new_cases_smoothed_per_million": 182.116, + "total_deaths_per_million": 177.323, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8269.0, + "total_tests": 313997.0, + "total_tests_per_thousand": 501.612, + "new_tests_per_thousand": 13.21, + "new_tests_smoothed": 6967.0, + "new_tests_smoothed_per_thousand": 11.13, + "tests_per_case": 61.114, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-24", + "total_cases": 5952.0, + "new_cases": 98.0, + "new_cases_smoothed": 118.571, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9508.352, + "new_cases_per_million": 156.556, + "new_cases_smoothed_per_million": 189.418, + "total_deaths_per_million": 178.921, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 5639.0, + "total_tests": 319636.0, + "total_tests_per_thousand": 510.62, + "new_tests_per_thousand": 9.008, + "new_tests_smoothed": 6354.0, + "new_tests_smoothed_per_thousand": 10.151, + "tests_per_case": 53.588, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-25", + "total_cases": 6056.0, + "new_cases": 104.0, + "new_cases_smoothed": 110.143, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9674.492, + "new_cases_per_million": 166.141, + "new_cases_smoothed_per_million": 175.954, + "total_deaths_per_million": 178.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 2989.0, + "total_tests": 322625.0, + "total_tests_per_thousand": 515.395, + "new_tests_per_thousand": 4.775, + "new_tests_smoothed": 5616.0, + "new_tests_smoothed_per_thousand": 8.972, + "tests_per_case": 50.988, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-26", + "total_cases": 6189.0, + "new_cases": 133.0, + "new_cases_smoothed": 111.429, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9886.961, + "new_cases_per_million": 212.468, + "new_cases_smoothed_per_million": 178.008, + "total_deaths_per_million": 178.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 499.0, + "total_tests": 323124.0, + "total_tests_per_thousand": 516.192, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 5406.0, + "new_tests_smoothed_per_thousand": 8.636, + "tests_per_case": 48.515, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-27", + "total_cases": 6272.0, + "new_cases": 83.0, + "new_cases_smoothed": 112.714, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10019.553, + "new_cases_per_million": 132.593, + "new_cases_smoothed_per_million": 180.062, + "total_deaths_per_million": 178.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 7575.0, + "total_tests": 330699.0, + "total_tests_per_thousand": 528.293, + "new_tests_per_thousand": 12.101, + "new_tests_smoothed": 5623.0, + "new_tests_smoothed_per_thousand": 8.983, + "tests_per_case": 49.887, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-28", + "total_cases": 6321.0, + "new_cases": 49.0, + "new_cases_smoothed": 102.286, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10097.831, + "new_cases_per_million": 78.278, + "new_cases_smoothed_per_million": 163.402, + "total_deaths_per_million": 178.921, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 3601.0, + "total_tests": 334300.0, + "total_tests_per_thousand": 534.046, + "new_tests_per_thousand": 5.753, + "new_tests_smoothed": 4655.0, + "new_tests_smoothed_per_thousand": 7.436, + "tests_per_case": 45.51, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-07-29", + "total_cases": 6375.0, + "new_cases": 54.0, + "new_cases_smoothed": 92.857, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10184.097, + "new_cases_per_million": 86.265, + "new_cases_smoothed_per_million": 148.34, + "total_deaths_per_million": 180.518, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 2688.0, + "total_tests": 336988.0, + "total_tests_per_thousand": 538.34, + "new_tests_per_thousand": 4.294, + "new_tests_smoothed": 4466.0, + "new_tests_smoothed_per_thousand": 7.134, + "tests_per_case": 48.095, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-07-30", + "total_cases": 6533.0, + "new_cases": 158.0, + "new_cases_smoothed": 97.0, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10436.502, + "new_cases_per_million": 252.406, + "new_cases_smoothed_per_million": 154.958, + "total_deaths_per_million": 182.116, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 3648.0, + "total_tests": 340636.0, + "total_tests_per_thousand": 544.168, + "new_tests_per_thousand": 5.828, + "new_tests_smoothed": 3806.0, + "new_tests_smoothed_per_thousand": 6.08, + "tests_per_case": 39.236999999999995, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-07-31", + "total_cases": 6616.0, + "new_cases": 83.0, + "new_cases_smoothed": 94.857, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10569.095, + "new_cases_per_million": 132.593, + "new_cases_smoothed_per_million": 151.535, + "total_deaths_per_million": 182.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 3156.0, + "total_tests": 343792.0, + "total_tests_per_thousand": 549.21, + "new_tests_per_thousand": 5.042, + "new_tests_smoothed": 3451.0, + "new_tests_smoothed_per_thousand": 5.513, + "tests_per_case": 36.381, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-01", + "total_cases": 6695.0, + "new_cases": 79.0, + "new_cases_smoothed": 91.286, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10695.298, + "new_cases_per_million": 126.203, + "new_cases_smoothed_per_million": 145.829, + "total_deaths_per_million": 182.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 2243.0, + "total_tests": 346035.0, + "total_tests_per_thousand": 552.793, + "new_tests_per_thousand": 3.583, + "new_tests_smoothed": 3344.0, + "new_tests_smoothed_per_thousand": 5.342, + "tests_per_case": 36.632, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-02", + "total_cases": 6695.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.286, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10695.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 115.477, + "total_deaths_per_million": 182.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 334.0, + "total_tests": 346369.0, + "total_tests_per_thousand": 553.326, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 3321.0, + "new_tests_smoothed_per_thousand": 5.305, + "tests_per_case": 45.943000000000005, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-03", + "total_cases": 6695.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.429, + "total_deaths": 117.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10695.298, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 96.535, + "total_deaths_per_million": 186.908, + "new_deaths_per_million": 4.793, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 2153.0, + "total_tests": 348522.0, + "total_tests_per_thousand": 556.766, + "new_tests_per_thousand": 3.439, + "new_tests_smoothed": 2546.0, + "new_tests_smoothed_per_thousand": 4.067, + "tests_per_case": 42.132, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-04", + "total_cases": 6864.0, + "new_cases": 169.0, + "new_cases_smoothed": 77.571, + "total_deaths": 118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10965.277, + "new_cases_per_million": 269.978, + "new_cases_smoothed_per_million": 123.921, + "total_deaths_per_million": 188.506, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.369, + "new_tests": 2507.0, + "total_tests": 351029.0, + "total_tests_per_thousand": 560.771, + "new_tests_per_thousand": 4.005, + "new_tests_smoothed": 2390.0, + "new_tests_smoothed_per_thousand": 3.818, + "tests_per_case": 30.81, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-05", + "total_cases": 6917.0, + "new_cases": 53.0, + "new_cases_smoothed": 77.429, + "total_deaths": 118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11049.944, + "new_cases_per_million": 84.668, + "new_cases_smoothed_per_million": 123.693, + "total_deaths_per_million": 188.506, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 2932.0, + "total_tests": 353961.0, + "total_tests_per_thousand": 565.455, + "new_tests_per_thousand": 4.684, + "new_tests_smoothed": 2425.0, + "new_tests_smoothed_per_thousand": 3.874, + "tests_per_case": 31.319000000000003, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-06", + "total_cases": 7007.0, + "new_cases": 90.0, + "new_cases_smoothed": 67.714, + "total_deaths": 118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11193.72, + "new_cases_per_million": 143.775, + "new_cases_smoothed_per_million": 108.174, + "total_deaths_per_million": 188.506, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 1684.0, + "total_tests": 355645.0, + "total_tests_per_thousand": 568.145, + "new_tests_per_thousand": 2.69, + "new_tests_smoothed": 2144.0, + "new_tests_smoothed_per_thousand": 3.425, + "tests_per_case": 31.662, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-08-07", + "total_cases": 7073.0, + "new_cases": 66.0, + "new_cases_smoothed": 65.286, + "total_deaths": 119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11299.155, + "new_cases_per_million": 105.435, + "new_cases_smoothed_per_million": 104.294, + "total_deaths_per_million": 190.103, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 1796.0, + "total_tests": 357441.0, + "total_tests_per_thousand": 571.014, + "new_tests_per_thousand": 2.869, + "new_tests_smoothed": 1950.0, + "new_tests_smoothed_per_thousand": 3.115, + "tests_per_case": 29.869, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-08", + "total_cases": 7113.0, + "new_cases": 40.0, + "new_cases_smoothed": 59.714, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11363.055, + "new_cases_per_million": 63.9, + "new_cases_smoothed_per_million": 95.394, + "total_deaths_per_million": 190.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 1477.0, + "total_tests": 358918.0, + "total_tests_per_thousand": 573.373, + "new_tests_per_thousand": 2.36, + "new_tests_smoothed": 1840.0, + "new_tests_smoothed_per_thousand": 2.939, + "tests_per_case": 30.813000000000002, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-09", + "total_cases": 7113.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.714, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11363.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 95.394, + "total_deaths_per_million": 190.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 121.0, + "total_tests": 359039.0, + "total_tests_per_thousand": 573.567, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 1810.0, + "new_tests_smoothed_per_thousand": 2.891, + "tests_per_case": 30.311, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-10", + "total_cases": 7113.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.714, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11363.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 95.394, + "total_deaths_per_million": 190.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 1293.0, + "total_tests": 360332.0, + "total_tests_per_thousand": 575.632, + "new_tests_per_thousand": 2.066, + "new_tests_smoothed": 1687.0, + "new_tests_smoothed_per_thousand": 2.695, + "tests_per_case": 28.250999999999998, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-11", + "total_cases": 7216.0, + "new_cases": 103.0, + "new_cases_smoothed": 50.286, + "total_deaths": 121.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11527.599, + "new_cases_per_million": 164.543, + "new_cases_smoothed_per_million": 80.332, + "total_deaths_per_million": 193.298, + "new_deaths_per_million": 3.195, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 1714.0, + "total_tests": 362046.0, + "total_tests_per_thousand": 578.37, + "new_tests_per_thousand": 2.738, + "new_tests_smoothed": 1574.0, + "new_tests_smoothed_per_thousand": 2.514, + "tests_per_case": 31.301, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-12", + "total_cases": 7242.0, + "new_cases": 26.0, + "new_cases_smoothed": 46.429, + "total_deaths": 122.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11569.134, + "new_cases_per_million": 41.535, + "new_cases_smoothed_per_million": 74.17, + "total_deaths_per_million": 194.896, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 1237.0, + "total_tests": 363283.0, + "total_tests_per_thousand": 580.347, + "new_tests_per_thousand": 1.976, + "new_tests_smoothed": 1332.0, + "new_tests_smoothed_per_thousand": 2.128, + "tests_per_case": 28.689, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-13", + "total_cases": 7300.0, + "new_cases": 58.0, + "new_cases_smoothed": 41.857, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11661.789, + "new_cases_per_million": 92.655, + "new_cases_smoothed_per_million": 66.867, + "total_deaths_per_million": 194.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 1204.0, + "total_tests": 364487.0, + "total_tests_per_thousand": 582.27, + "new_tests_per_thousand": 1.923, + "new_tests_smoothed": 1263.0, + "new_tests_smoothed_per_thousand": 2.018, + "tests_per_case": 30.174, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-14", + "total_cases": 7368.0, + "new_cases": 68.0, + "new_cases_smoothed": 42.143, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11770.419, + "new_cases_per_million": 108.63, + "new_cases_smoothed_per_million": 67.323, + "total_deaths_per_million": 194.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 2081.0, + "total_tests": 366568.0, + "total_tests_per_thousand": 585.594, + "new_tests_per_thousand": 3.324, + "new_tests_smoothed": 1304.0, + "new_tests_smoothed_per_thousand": 2.083, + "tests_per_case": 30.941999999999997, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-15", + "total_cases": 7405.0, + "new_cases": 37.0, + "new_cases_smoothed": 41.714, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11829.527, + "new_cases_per_million": 59.108, + "new_cases_smoothed_per_million": 66.639, + "total_deaths_per_million": 194.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 703.0, + "total_tests": 367271.0, + "total_tests_per_thousand": 586.717, + "new_tests_per_thousand": 1.123, + "new_tests_smoothed": 1193.0, + "new_tests_smoothed_per_thousand": 1.906, + "tests_per_case": 28.599, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-16", + "total_cases": 7439.0, + "new_cases": 34.0, + "new_cases_smoothed": 46.571, + "total_deaths": 123.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11883.842, + "new_cases_per_million": 54.315, + "new_cases_smoothed_per_million": 74.398, + "total_deaths_per_million": 196.493, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 170.0, + "total_tests": 367441.0, + "total_tests_per_thousand": 586.989, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 1200.0, + "new_tests_smoothed_per_thousand": 1.917, + "tests_per_case": 25.767, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-17", + "total_cases": 7439.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.571, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11883.842, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 74.398, + "total_deaths_per_million": 196.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 894.0, + "total_tests": 368335.0, + "total_tests_per_thousand": 588.417, + "new_tests_per_thousand": 1.428, + "new_tests_smoothed": 1143.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 24.543000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-18", + "total_cases": 7469.0, + "new_cases": 30.0, + "new_cases_smoothed": 36.143, + "total_deaths": 124.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11931.767, + "new_cases_per_million": 47.925, + "new_cases_smoothed_per_million": 57.738, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 0.685, + "new_tests": 1405.0, + "total_tests": 369740.0, + "total_tests_per_thousand": 590.662, + "new_tests_per_thousand": 2.244, + "new_tests_smoothed": 1099.0, + "new_tests_smoothed_per_thousand": 1.756, + "tests_per_case": 30.406999999999996, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-19", + "total_cases": 7499.0, + "new_cases": 30.0, + "new_cases_smoothed": 36.714, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11979.693, + "new_cases_per_million": 47.925, + "new_cases_smoothed_per_million": 58.651, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 1977.0, + "total_tests": 371717.0, + "total_tests_per_thousand": 593.82, + "new_tests_per_thousand": 3.158, + "new_tests_smoothed": 1205.0, + "new_tests_smoothed_per_thousand": 1.925, + "tests_per_case": 32.821, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-20", + "total_cases": 7566.0, + "new_cases": 67.0, + "new_cases_smoothed": 38.0, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12086.725, + "new_cases_per_million": 107.033, + "new_cases_smoothed_per_million": 60.705, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 1180.0, + "total_tests": 372897.0, + "total_tests_per_thousand": 595.705, + "new_tests_per_thousand": 1.885, + "new_tests_smoothed": 1201.0, + "new_tests_smoothed_per_thousand": 1.919, + "tests_per_case": 31.605, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-21", + "total_cases": 7637.0, + "new_cases": 71.0, + "new_cases_smoothed": 38.429, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12200.148, + "new_cases_per_million": 113.423, + "new_cases_smoothed_per_million": 61.39, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 1667.0, + "total_tests": 374564.0, + "total_tests_per_thousand": 598.368, + "new_tests_per_thousand": 2.663, + "new_tests_smoothed": 1142.0, + "new_tests_smoothed_per_thousand": 1.824, + "tests_per_case": 29.717, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-22", + "total_cases": 7704.0, + "new_cases": 67.0, + "new_cases_smoothed": 42.714, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12307.181, + "new_cases_per_million": 107.033, + "new_cases_smoothed_per_million": 68.236, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.456, + "new_tests": 1205.0, + "total_tests": 375769.0, + "total_tests_per_thousand": 600.293, + "new_tests_per_thousand": 1.925, + "new_tests_smoothed": 1214.0, + "new_tests_smoothed_per_thousand": 1.939, + "tests_per_case": 28.421, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-23", + "total_cases": 7704.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12307.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 60.477, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 257.0, + "total_tests": 376026.0, + "total_tests_per_thousand": 600.704, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 1226.0, + "new_tests_smoothed_per_thousand": 1.959, + "tests_per_case": 32.385, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-24", + "total_cases": 7704.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12307.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 60.477, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.228, + "new_tests": 708.0, + "total_tests": 376734.0, + "total_tests_per_thousand": 601.835, + "new_tests_per_thousand": 1.131, + "new_tests_smoothed": 1200.0, + "new_tests_smoothed_per_thousand": 1.917, + "tests_per_case": 31.698, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-25", + "total_cases": 7794.0, + "new_cases": 90.0, + "new_cases_smoothed": 46.429, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12450.957, + "new_cases_per_million": 143.775, + "new_cases_smoothed_per_million": 74.17, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1409.0, + "total_tests": 378143.0, + "total_tests_per_thousand": 604.085, + "new_tests_per_thousand": 2.251, + "new_tests_smoothed": 1200.0, + "new_tests_smoothed_per_thousand": 1.917, + "tests_per_case": 25.846, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-26", + "total_cases": 7838.0, + "new_cases": 44.0, + "new_cases_smoothed": 48.429, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12521.247, + "new_cases_per_million": 70.29, + "new_cases_smoothed_per_million": 77.365, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1365.0, + "total_tests": 379508.0, + "total_tests_per_thousand": 606.266, + "new_tests_per_thousand": 2.181, + "new_tests_smoothed": 1113.0, + "new_tests_smoothed_per_thousand": 1.778, + "tests_per_case": 22.982, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-27", + "total_cases": 7928.0, + "new_cases": 90.0, + "new_cases_smoothed": 51.714, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12665.022, + "new_cases_per_million": 143.775, + "new_cases_smoothed_per_million": 82.614, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1748.0, + "total_tests": 381256.0, + "total_tests_per_thousand": 609.058, + "new_tests_per_thousand": 2.792, + "new_tests_smoothed": 1194.0, + "new_tests_smoothed_per_thousand": 1.907, + "tests_per_case": 23.088, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-28", + "total_cases": 6543.0, + "new_cases": -1385.0, + "new_cases_smoothed": -156.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10452.477, + "new_cases_per_million": -2212.545, + "new_cases_smoothed_per_million": -249.667, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1511.0, + "total_tests": 382767.0, + "total_tests_per_thousand": 611.472, + "new_tests_per_thousand": 2.414, + "new_tests_smoothed": 1172.0, + "new_tests_smoothed_per_thousand": 1.872, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-29", + "total_cases": 6580.0, + "new_cases": 37.0, + "new_cases_smoothed": -160.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10511.585, + "new_cases_per_million": 59.108, + "new_cases_smoothed_per_million": -256.514, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1549.0, + "total_tests": 384316.0, + "total_tests_per_thousand": 613.947, + "new_tests_per_thousand": 2.475, + "new_tests_smoothed": 1221.0, + "new_tests_smoothed_per_thousand": 1.951, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-30", + "total_cases": 6580.0, + "new_cases": 0.0, + "new_cases_smoothed": -160.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10511.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -256.514, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 233.0, + "total_tests": 384549.0, + "total_tests_per_thousand": 614.319, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 1218.0, + "new_tests_smoothed_per_thousand": 1.946, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-31", + "total_cases": 6625.0, + "new_cases": 45.0, + "new_cases_smoothed": -154.143, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10583.473, + "new_cases_per_million": 71.888, + "new_cases_smoothed_per_million": -246.244, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1271.0, + "total_tests": 385820.0, + "total_tests_per_thousand": 616.35, + "new_tests_per_thousand": 2.03, + "new_tests_smoothed": 1298.0, + "new_tests_smoothed_per_thousand": 2.074, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-09-01", + "total_cases": 6677.0, + "new_cases": 52.0, + "new_cases_smoothed": -159.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10666.543, + "new_cases_per_million": 83.07, + "new_cases_smoothed_per_million": -254.916, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-09-02", + "total_cases": 6677.0, + "new_cases": 0.0, + "new_cases_smoothed": -165.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10666.543, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": -264.958, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-09-03", + "total_cases": 6745.0, + "new_cases": 68.0, + "new_cases_smoothed": -169.0, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10775.173, + "new_cases_per_million": 108.63, + "new_cases_smoothed_per_million": -269.978, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 6745.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10775.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.099, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 6854.0, + "new_cases": 109.0, + "new_cases_smoothed": 39.143, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10949.302, + "new_cases_per_million": 174.128, + "new_cases_smoothed_per_million": 62.531, + "total_deaths_per_million": 198.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MKD": { + "continent": "Europe", + "location": "Macedonia", + "population": 2083380.0, + "population_density": 82.6, + "median_age": 39.1, + "aged_65_older": 13.26, + "aged_70_older": 8.16, + "gdp_per_capita": 13111.214, + "extreme_poverty": 5.0, + "cardiovasc_death_rate": 322.688, + "diabetes_prevalence": 10.08, + "hospital_beds_per_thousand": 4.28, + "life_expectancy": 75.8, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.44, + "new_cases_per_million": 0.96, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.36, + "new_cases_per_million": 1.92, + "new_cases_smoothed_per_million": 0.411, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.411, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.32, + "new_cases_per_million": 0.96, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 13.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.24, + "new_cases_per_million": 1.92, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 1.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 19.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.12, + "new_cases_per_million": 2.88, + "new_cases_smoothed_per_million": 1.097, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 31.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.88, + "new_cases_per_million": 5.76, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 42.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.16, + "new_cases_per_million": 5.28, + "new_cases_smoothed_per_million": 2.4, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 48.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.039, + "new_cases_per_million": 2.88, + "new_cases_smoothed_per_million": 2.674, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 70.0, + "new_cases": 22.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.599, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 3.908, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 85.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.799, + "new_cases_per_million": 7.2, + "new_cases_smoothed_per_million": 4.937, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 114.0, + "new_cases": 29.0, + "new_cases_smoothed": 14.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 54.719, + "new_cases_per_million": 13.92, + "new_cases_smoothed_per_million": 6.926, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.069 + }, + { + "date": "2020-03-24", + "total_cases": 136.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 65.279, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 8.023, + "total_deaths_per_million": 0.96, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.137 + }, + { + "date": "2020-03-25", + "total_cases": 148.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 71.038, + "new_cases_per_million": 5.76, + "new_cases_smoothed_per_million": 8.023, + "total_deaths_per_million": 0.96, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137 + }, + { + "date": "2020-03-26", + "total_cases": 177.0, + "new_cases": 29.0, + "new_cases_smoothed": 19.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 84.958, + "new_cases_per_million": 13.92, + "new_cases_smoothed_per_million": 9.257, + "total_deaths_per_million": 0.96, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137 + }, + { + "date": "2020-03-27", + "total_cases": 201.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 96.478, + "new_cases_per_million": 11.52, + "new_cases_smoothed_per_million": 10.491, + "total_deaths_per_million": 1.44, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.206 + }, + { + "date": "2020-03-28", + "total_cases": 219.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 105.118, + "new_cases_per_million": 8.64, + "new_cases_smoothed_per_million": 10.217, + "total_deaths_per_million": 1.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206 + }, + { + "date": "2020-03-29", + "total_cases": 241.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 115.677, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 10.697, + "total_deaths_per_million": 1.92, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.274 + }, + { + "date": "2020-03-30", + "total_cases": 259.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.714, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 124.317, + "new_cases_per_million": 8.64, + "new_cases_smoothed_per_million": 9.943, + "total_deaths_per_million": 2.88, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.343 + }, + { + "date": "2020-03-31", + "total_cases": 285.0, + "new_cases": 26.0, + "new_cases_smoothed": 21.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 136.797, + "new_cases_per_million": 12.48, + "new_cases_smoothed_per_million": 10.217, + "total_deaths_per_million": 3.36, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.343 + }, + { + "date": "2020-04-01", + "total_cases": 329.0, + "new_cases": 44.0, + "new_cases_smoothed": 25.857, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 157.916, + "new_cases_per_million": 21.12, + "new_cases_smoothed_per_million": 12.411, + "total_deaths_per_million": 4.32, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.48 + }, + { + "date": "2020-04-02", + "total_cases": 354.0, + "new_cases": 25.0, + "new_cases_smoothed": 25.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 169.916, + "new_cases_per_million": 12.0, + "new_cases_smoothed_per_million": 12.137, + "total_deaths_per_million": 4.8, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.549 + }, + { + "date": "2020-04-03", + "total_cases": 354.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 169.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.491, + "total_deaths_per_million": 5.28, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.549 + }, + { + "date": "2020-04-04", + "total_cases": 430.0, + "new_cases": 76.0, + "new_cases_smoothed": 30.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 206.395, + "new_cases_per_million": 36.479, + "new_cases_smoothed_per_million": 14.468, + "total_deaths_per_million": 5.76, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-04-05", + "total_cases": 483.0, + "new_cases": 53.0, + "new_cases_smoothed": 34.571, + "total_deaths": 17.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 231.835, + "new_cases_per_million": 25.439, + "new_cases_smoothed_per_million": 16.594, + "total_deaths_per_million": 8.16, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 0.891 + }, + { + "date": "2020-04-06", + "total_cases": 483.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 231.835, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.36, + "total_deaths_per_million": 8.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.754 + }, + { + "date": "2020-04-07", + "total_cases": 570.0, + "new_cases": 87.0, + "new_cases_smoothed": 40.714, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 273.594, + "new_cases_per_million": 41.759, + "new_cases_smoothed_per_million": 19.542, + "total_deaths_per_million": 10.08, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 0.96 + }, + { + "date": "2020-04-08", + "total_cases": 599.0, + "new_cases": 29.0, + "new_cases_smoothed": 38.571, + "total_deaths": 26.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 287.514, + "new_cases_per_million": 13.92, + "new_cases_smoothed_per_million": 18.514, + "total_deaths_per_million": 12.48, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-09", + "total_cases": 617.0, + "new_cases": 18.0, + "new_cases_smoothed": 37.571, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 296.153, + "new_cases_per_million": 8.64, + "new_cases_smoothed_per_million": 18.034, + "total_deaths_per_million": 14.4, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-04-10", + "total_cases": 663.0, + "new_cases": 46.0, + "new_cases_smoothed": 44.143, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 318.233, + "new_cases_per_million": 22.08, + "new_cases_smoothed_per_million": 21.188, + "total_deaths_per_million": 15.36, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.44 + }, + { + "date": "2020-04-11", + "total_cases": 711.0, + "new_cases": 48.0, + "new_cases_smoothed": 40.143, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 341.272, + "new_cases_per_million": 23.039, + "new_cases_smoothed_per_million": 19.268, + "total_deaths_per_million": 15.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-04-12", + "total_cases": 760.0, + "new_cases": 49.0, + "new_cases_smoothed": 39.571, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 364.792, + "new_cases_per_million": 23.519, + "new_cases_smoothed_per_million": 18.994, + "total_deaths_per_million": 16.32, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-13", + "total_cases": 828.0, + "new_cases": 68.0, + "new_cases_smoothed": 49.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 397.431, + "new_cases_per_million": 32.639, + "new_cases_smoothed_per_million": 23.657, + "total_deaths_per_million": 16.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-14", + "total_cases": 854.0, + "new_cases": 26.0, + "new_cases_smoothed": 40.571, + "total_deaths": 38.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 409.911, + "new_cases_per_million": 12.48, + "new_cases_smoothed_per_million": 19.474, + "total_deaths_per_million": 18.24, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-15", + "total_cases": 908.0, + "new_cases": 54.0, + "new_cases_smoothed": 44.143, + "total_deaths": 44.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 435.83, + "new_cases_per_million": 25.919, + "new_cases_smoothed_per_million": 21.188, + "total_deaths_per_million": 21.12, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 1.234 + }, + { + "date": "2020-04-16", + "total_cases": 974.0, + "new_cases": 66.0, + "new_cases_smoothed": 51.0, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 467.51, + "new_cases_per_million": 31.679, + "new_cases_smoothed_per_million": 24.479, + "total_deaths_per_million": 21.6, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-04-17", + "total_cases": 1081.0, + "new_cases": 107.0, + "new_cases_smoothed": 59.714, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 518.868, + "new_cases_per_million": 51.359, + "new_cases_smoothed_per_million": 28.662, + "total_deaths_per_million": 22.08, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.96 + }, + { + "date": "2020-04-18", + "total_cases": 1117.0, + "new_cases": 36.0, + "new_cases_smoothed": 58.0, + "total_deaths": 49.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 536.148, + "new_cases_per_million": 17.28, + "new_cases_smoothed_per_million": 27.839, + "total_deaths_per_million": 23.519, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-19", + "total_cases": 1170.0, + "new_cases": 53.0, + "new_cases_smoothed": 58.571, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 561.587, + "new_cases_per_million": 25.439, + "new_cases_smoothed_per_million": 28.114, + "total_deaths_per_million": 23.519, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-04-20", + "total_cases": 1207.0, + "new_cases": 37.0, + "new_cases_smoothed": 54.143, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 579.347, + "new_cases_per_million": 17.76, + "new_cases_smoothed_per_million": 25.988, + "total_deaths_per_million": 24.479, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-04-21", + "total_cases": 1225.0, + "new_cases": 18.0, + "new_cases_smoothed": 53.0, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 587.987, + "new_cases_per_million": 8.64, + "new_cases_smoothed_per_million": 25.439, + "total_deaths_per_million": 25.919, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-04-22", + "total_cases": 1231.0, + "new_cases": 6.0, + "new_cases_smoothed": 46.143, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 590.867, + "new_cases_per_million": 2.88, + "new_cases_smoothed_per_million": 22.148, + "total_deaths_per_million": 26.399, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.754 + }, + { + "date": "2020-04-23", + "total_cases": 1259.0, + "new_cases": 28.0, + "new_cases_smoothed": 40.714, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 604.306, + "new_cases_per_million": 13.44, + "new_cases_smoothed_per_million": 19.542, + "total_deaths_per_million": 26.879, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.754 + }, + { + "date": "2020-04-24", + "total_cases": 1300.0, + "new_cases": 41.0, + "new_cases_smoothed": 31.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 623.986, + "new_cases_per_million": 19.68, + "new_cases_smoothed_per_million": 15.017, + "total_deaths_per_million": 26.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.686 + }, + { + "date": "2020-04-25", + "total_cases": 1326.0, + "new_cases": 26.0, + "new_cases_smoothed": 29.857, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 636.466, + "new_cases_per_million": 12.48, + "new_cases_smoothed_per_million": 14.331, + "total_deaths_per_million": 27.359, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.549 + }, + { + "date": "2020-04-26", + "total_cases": 1367.0, + "new_cases": 41.0, + "new_cases_smoothed": 28.143, + "total_deaths": 59.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 656.145, + "new_cases_per_million": 19.68, + "new_cases_smoothed_per_million": 13.508, + "total_deaths_per_million": 28.319, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.686 + }, + { + "date": "2020-04-27", + "total_cases": 1386.0, + "new_cases": 19.0, + "new_cases_smoothed": 25.571, + "total_deaths": 61.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 665.265, + "new_cases_per_million": 9.12, + "new_cases_smoothed_per_million": 12.274, + "total_deaths_per_million": 29.279, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.686 + }, + { + "date": "2020-04-28", + "total_cases": 1399.0, + "new_cases": 13.0, + "new_cases_smoothed": 24.857, + "total_deaths": 65.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 671.505, + "new_cases_per_million": 6.24, + "new_cases_smoothed_per_million": 11.931, + "total_deaths_per_million": 31.199, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 0.754 + }, + { + "date": "2020-04-29", + "total_cases": 1421.0, + "new_cases": 22.0, + "new_cases_smoothed": 27.143, + "total_deaths": 71.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 682.065, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 13.028, + "total_deaths_per_million": 34.079, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-04-30", + "total_cases": 1442.0, + "new_cases": 21.0, + "new_cases_smoothed": 26.143, + "total_deaths": 73.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 692.144, + "new_cases_per_million": 10.08, + "new_cases_smoothed_per_million": 12.548, + "total_deaths_per_million": 35.039, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-05-01", + "total_cases": 1465.0, + "new_cases": 23.0, + "new_cases_smoothed": 23.571, + "total_deaths": 77.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 703.184, + "new_cases_per_million": 11.04, + "new_cases_smoothed_per_million": 11.314, + "total_deaths_per_million": 36.959, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.44 + }, + { + "date": "2020-05-02", + "total_cases": 1494.0, + "new_cases": 29.0, + "new_cases_smoothed": 24.0, + "total_deaths": 81.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 717.104, + "new_cases_per_million": 13.92, + "new_cases_smoothed_per_million": 11.52, + "total_deaths_per_million": 38.879, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.646 + }, + { + "date": "2020-05-03", + "total_cases": 1506.0, + "new_cases": 12.0, + "new_cases_smoothed": 19.857, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 722.864, + "new_cases_per_million": 5.76, + "new_cases_smoothed_per_million": 9.531, + "total_deaths_per_million": 39.359, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.577 + }, + { + "date": "2020-05-04", + "total_cases": 1511.0, + "new_cases": 5.0, + "new_cases_smoothed": 17.857, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 725.264, + "new_cases_per_million": 2.4, + "new_cases_smoothed_per_million": 8.571, + "total_deaths_per_million": 40.319, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.577 + }, + { + "date": "2020-05-05", + "total_cases": 1518.0, + "new_cases": 7.0, + "new_cases_smoothed": 17.0, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 728.624, + "new_cases_per_million": 3.36, + "new_cases_smoothed_per_million": 8.16, + "total_deaths_per_million": 40.799, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-05-06", + "total_cases": 1526.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.0, + "total_deaths": 86.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 732.464, + "new_cases_per_million": 3.84, + "new_cases_smoothed_per_million": 7.2, + "total_deaths_per_million": 41.279, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-05-07", + "total_cases": 1539.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.857, + "total_deaths": 88.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 738.703, + "new_cases_per_million": 6.24, + "new_cases_smoothed_per_million": 6.651, + "total_deaths_per_million": 42.239, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-05-08", + "total_cases": 1572.0, + "new_cases": 33.0, + "new_cases_smoothed": 15.286, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 754.543, + "new_cases_per_million": 15.84, + "new_cases_smoothed_per_million": 7.337, + "total_deaths_per_million": 42.719, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.823 + }, + { + "date": "2020-05-09", + "total_cases": 1586.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.143, + "total_deaths": 90.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 761.263, + "new_cases_per_million": 6.72, + "new_cases_smoothed_per_million": 6.308, + "total_deaths_per_million": 43.199, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-05-10", + "total_cases": 1622.0, + "new_cases": 36.0, + "new_cases_smoothed": 16.571, + "total_deaths": 91.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 778.543, + "new_cases_per_million": 17.28, + "new_cases_smoothed_per_million": 7.954, + "total_deaths_per_million": 43.679, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-05-11", + "total_cases": 1642.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 788.142, + "new_cases_per_million": 9.6, + "new_cases_smoothed_per_million": 8.983, + "total_deaths_per_million": 43.679, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.48 + }, + { + "date": "2020-05-12", + "total_cases": 1664.0, + "new_cases": 22.0, + "new_cases_smoothed": 20.857, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 798.702, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 10.011, + "total_deaths_per_million": 43.679, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411 + }, + { + "date": "2020-05-13", + "total_cases": 1674.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.143, + "total_deaths": 92.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 803.502, + "new_cases_per_million": 4.8, + "new_cases_smoothed_per_million": 10.148, + "total_deaths_per_million": 44.159, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.411 + }, + { + "date": "2020-05-14", + "total_cases": 1694.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.143, + "total_deaths": 95.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 813.102, + "new_cases_per_million": 9.6, + "new_cases_smoothed_per_million": 10.628, + "total_deaths_per_million": 45.599, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.48 + }, + { + "date": "2020-05-15", + "total_cases": 1723.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.571, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 827.021, + "new_cases_per_million": 13.92, + "new_cases_smoothed_per_million": 10.354, + "total_deaths_per_million": 45.599, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.411 + }, + { + "date": "2020-05-16", + "total_cases": 1740.0, + "new_cases": 17.0, + "new_cases_smoothed": 22.0, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 835.181, + "new_cases_per_million": 8.16, + "new_cases_smoothed_per_million": 10.56, + "total_deaths_per_million": 46.559, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.48 + }, + { + "date": "2020-05-17", + "total_cases": 1762.0, + "new_cases": 22.0, + "new_cases_smoothed": 20.0, + "total_deaths": 98.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 845.741, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 9.6, + "total_deaths_per_million": 47.039, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.48 + }, + { + "date": "2020-05-18", + "total_cases": 1792.0, + "new_cases": 30.0, + "new_cases_smoothed": 21.429, + "total_deaths": 101.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 860.141, + "new_cases_per_million": 14.4, + "new_cases_smoothed_per_million": 10.285, + "total_deaths_per_million": 48.479, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.686 + }, + { + "date": "2020-05-19", + "total_cases": 1817.0, + "new_cases": 25.0, + "new_cases_smoothed": 21.857, + "total_deaths": 104.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 872.14, + "new_cases_per_million": 12.0, + "new_cases_smoothed_per_million": 10.491, + "total_deaths_per_million": 49.919, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.891 + }, + { + "date": "2020-05-20", + "total_cases": 1839.0, + "new_cases": 22.0, + "new_cases_smoothed": 23.571, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 882.7, + "new_cases_per_million": 10.56, + "new_cases_smoothed_per_million": 11.314, + "total_deaths_per_million": 50.879, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 0.96 + }, + { + "date": "2020-05-21", + "total_cases": 1858.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.429, + "total_deaths": 110.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 891.82, + "new_cases_per_million": 9.12, + "new_cases_smoothed_per_million": 11.245, + "total_deaths_per_million": 52.799, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-05-22", + "total_cases": 1898.0, + "new_cases": 40.0, + "new_cases_smoothed": 25.0, + "total_deaths": 111.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 911.02, + "new_cases_per_million": 19.2, + "new_cases_smoothed_per_million": 12.0, + "total_deaths_per_million": 53.279, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-05-23", + "total_cases": 1921.0, + "new_cases": 23.0, + "new_cases_smoothed": 25.857, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 922.059, + "new_cases_per_million": 11.04, + "new_cases_smoothed_per_million": 12.411, + "total_deaths_per_million": 53.759, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-05-24", + "total_cases": 1941.0, + "new_cases": 20.0, + "new_cases_smoothed": 25.571, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 931.659, + "new_cases_per_million": 9.6, + "new_cases_smoothed_per_million": 12.274, + "total_deaths_per_million": 54.239, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.029 + }, + { + "date": "2020-05-25", + "total_cases": 1978.0, + "new_cases": 37.0, + "new_cases_smoothed": 26.571, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 949.419, + "new_cases_per_million": 17.76, + "new_cases_smoothed_per_million": 12.754, + "total_deaths_per_million": 54.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.823 + }, + { + "date": "2020-05-26", + "total_cases": 1999.0, + "new_cases": 21.0, + "new_cases_smoothed": 26.0, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 959.499, + "new_cases_per_million": 10.08, + "new_cases_smoothed_per_million": 12.48, + "total_deaths_per_million": 54.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-05-27", + "total_cases": 2015.0, + "new_cases": 16.0, + "new_cases_smoothed": 25.143, + "total_deaths": 116.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 967.178, + "new_cases_per_million": 7.68, + "new_cases_smoothed_per_million": 12.068, + "total_deaths_per_million": 55.679, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.686 + }, + { + "date": "2020-05-28", + "total_cases": 2040.0, + "new_cases": 25.0, + "new_cases_smoothed": 26.0, + "total_deaths": 119.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 979.178, + "new_cases_per_million": 12.0, + "new_cases_smoothed_per_million": 12.48, + "total_deaths_per_million": 57.119, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-05-29", + "total_cases": 2078.0, + "new_cases": 38.0, + "new_cases_smoothed": 25.714, + "total_deaths": 122.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 997.418, + "new_cases_per_million": 18.24, + "new_cases_smoothed_per_million": 12.343, + "total_deaths_per_million": 58.559, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 0.754 + }, + { + "date": "2020-05-30", + "total_cases": 2130.0, + "new_cases": 52.0, + "new_cases_smoothed": 29.857, + "total_deaths": 126.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1022.377, + "new_cases_per_million": 24.959, + "new_cases_smoothed_per_million": 14.331, + "total_deaths_per_million": 60.479, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 0.96 + }, + { + "date": "2020-05-31", + "total_cases": 2164.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.857, + "total_deaths": 131.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1038.697, + "new_cases_per_million": 16.32, + "new_cases_smoothed_per_million": 15.291, + "total_deaths_per_million": 62.879, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.234 + }, + { + "date": "2020-06-01", + "total_cases": 2226.0, + "new_cases": 62.0, + "new_cases_smoothed": 35.429, + "total_deaths": 133.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1068.456, + "new_cases_per_million": 29.759, + "new_cases_smoothed_per_million": 17.005, + "total_deaths_per_million": 63.839, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-06-02", + "total_cases": 2315.0, + "new_cases": 89.0, + "new_cases_smoothed": 45.143, + "total_deaths": 140.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1111.175, + "new_cases_per_million": 42.719, + "new_cases_smoothed_per_million": 21.668, + "total_deaths_per_million": 67.198, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 1.851 + }, + { + "date": "2020-06-03", + "total_cases": 2391.0, + "new_cases": 76.0, + "new_cases_smoothed": 53.714, + "total_deaths": 141.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1147.654, + "new_cases_per_million": 36.479, + "new_cases_smoothed_per_million": 25.782, + "total_deaths_per_million": 67.678, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.714 + }, + { + "date": "2020-06-04", + "total_cases": 2492.0, + "new_cases": 101.0, + "new_cases_smoothed": 64.571, + "total_deaths": 145.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1196.133, + "new_cases_per_million": 48.479, + "new_cases_smoothed_per_million": 30.994, + "total_deaths_per_million": 69.598, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.783 + }, + { + "date": "2020-06-05", + "total_cases": 2612.0, + "new_cases": 120.0, + "new_cases_smoothed": 76.286, + "total_deaths": 147.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1253.732, + "new_cases_per_million": 57.599, + "new_cases_smoothed_per_million": 36.616, + "total_deaths_per_million": 70.558, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.714 + }, + { + "date": "2020-06-06", + "total_cases": 2792.0, + "new_cases": 180.0, + "new_cases_smoothed": 94.571, + "total_deaths": 149.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1340.13, + "new_cases_per_million": 86.398, + "new_cases_smoothed_per_million": 45.393, + "total_deaths_per_million": 71.518, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.577 + }, + { + "date": "2020-06-07", + "total_cases": 2917.0, + "new_cases": 125.0, + "new_cases_smoothed": 107.571, + "total_deaths": 151.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1400.129, + "new_cases_per_million": 59.999, + "new_cases_smoothed_per_million": 51.633, + "total_deaths_per_million": 72.478, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-06-08", + "total_cases": 3028.0, + "new_cases": 111.0, + "new_cases_smoothed": 114.571, + "total_deaths": 153.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1453.407, + "new_cases_per_million": 53.279, + "new_cases_smoothed_per_million": 54.993, + "total_deaths_per_million": 73.438, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-06-09", + "total_cases": 3155.0, + "new_cases": 127.0, + "new_cases_smoothed": 120.0, + "total_deaths": 156.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1514.366, + "new_cases_per_million": 60.959, + "new_cases_smoothed_per_million": 57.599, + "total_deaths_per_million": 74.878, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-06-10", + "total_cases": 3242.0, + "new_cases": 87.0, + "new_cases_smoothed": 121.571, + "total_deaths": 157.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1556.125, + "new_cases_per_million": 41.759, + "new_cases_smoothed_per_million": 58.353, + "total_deaths_per_million": 75.358, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-06-11", + "total_cases": 3367.0, + "new_cases": 125.0, + "new_cases_smoothed": 125.0, + "total_deaths": 164.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1616.124, + "new_cases_per_million": 59.999, + "new_cases_smoothed_per_million": 59.999, + "total_deaths_per_million": 78.718, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 1.303 + }, + { + "date": "2020-06-12", + "total_cases": 3542.0, + "new_cases": 175.0, + "new_cases_smoothed": 132.857, + "total_deaths": 169.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1700.122, + "new_cases_per_million": 83.998, + "new_cases_smoothed_per_million": 63.77, + "total_deaths_per_million": 81.118, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.509 + }, + { + "date": "2020-06-13", + "total_cases": 3706.0, + "new_cases": 164.0, + "new_cases_smoothed": 130.571, + "total_deaths": 171.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1778.84, + "new_cases_per_million": 78.718, + "new_cases_smoothed_per_million": 62.673, + "total_deaths_per_million": 82.078, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.509 + }, + { + "date": "2020-06-14", + "total_cases": 3902.0, + "new_cases": 196.0, + "new_cases_smoothed": 140.714, + "total_deaths": 179.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 1872.918, + "new_cases_per_million": 94.078, + "new_cases_smoothed_per_million": 67.541, + "total_deaths_per_million": 85.918, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 1.92 + }, + { + "date": "2020-06-15", + "total_cases": 4057.0, + "new_cases": 155.0, + "new_cases_smoothed": 147.0, + "total_deaths": 188.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1947.316, + "new_cases_per_million": 74.398, + "new_cases_smoothed_per_million": 70.558, + "total_deaths_per_million": 90.238, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 2.4 + }, + { + "date": "2020-06-16", + "total_cases": 4157.0, + "new_cases": 100.0, + "new_cases_smoothed": 143.143, + "total_deaths": 193.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1995.315, + "new_cases_per_million": 47.999, + "new_cases_smoothed_per_million": 68.707, + "total_deaths_per_million": 92.638, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 2.537 + }, + { + "date": "2020-06-17", + "total_cases": 4289.0, + "new_cases": 132.0, + "new_cases_smoothed": 149.571, + "total_deaths": 201.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2058.674, + "new_cases_per_million": 63.359, + "new_cases_smoothed_per_million": 71.793, + "total_deaths_per_million": 96.478, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 3.017 + }, + { + "date": "2020-06-18", + "total_cases": 4482.0, + "new_cases": 193.0, + "new_cases_smoothed": 159.286, + "total_deaths": 210.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2151.312, + "new_cases_per_million": 92.638, + "new_cases_smoothed_per_million": 76.455, + "total_deaths_per_million": 100.798, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 3.154 + }, + { + "date": "2020-06-19", + "total_cases": 4664.0, + "new_cases": 182.0, + "new_cases_smoothed": 160.286, + "total_deaths": 216.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 2238.67, + "new_cases_per_million": 87.358, + "new_cases_smoothed_per_million": 76.935, + "total_deaths_per_million": 103.678, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 3.223 + }, + { + "date": "2020-06-20", + "total_cases": 4820.0, + "new_cases": 156.0, + "new_cases_smoothed": 159.143, + "total_deaths": 222.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2313.548, + "new_cases_per_million": 74.878, + "new_cases_smoothed_per_million": 76.387, + "total_deaths_per_million": 106.558, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 3.497 + }, + { + "date": "2020-06-21", + "total_cases": 5005.0, + "new_cases": 185.0, + "new_cases_smoothed": 157.571, + "total_deaths": 233.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2402.346, + "new_cases_per_million": 88.798, + "new_cases_smoothed_per_million": 75.633, + "total_deaths_per_million": 111.837, + "new_deaths_per_million": 5.28, + "new_deaths_smoothed_per_million": 3.703 + }, + { + "date": "2020-06-22", + "total_cases": 5106.0, + "new_cases": 101.0, + "new_cases_smoothed": 149.857, + "total_deaths": 238.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2450.825, + "new_cases_per_million": 48.479, + "new_cases_smoothed_per_million": 71.93, + "total_deaths_per_million": 114.237, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 3.428 + }, + { + "date": "2020-06-23", + "total_cases": 5196.0, + "new_cases": 90.0, + "new_cases_smoothed": 148.429, + "total_deaths": 247.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2494.024, + "new_cases_per_million": 43.199, + "new_cases_smoothed_per_million": 71.244, + "total_deaths_per_million": 118.557, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 3.703 + }, + { + "date": "2020-06-24", + "total_cases": 5314.0, + "new_cases": 118.0, + "new_cases_smoothed": 146.429, + "total_deaths": 251.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 2550.663, + "new_cases_per_million": 56.639, + "new_cases_smoothed_per_million": 70.284, + "total_deaths_per_million": 120.477, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 3.428 + }, + { + "date": "2020-06-25", + "total_cases": 5450.0, + "new_cases": 136.0, + "new_cases_smoothed": 138.286, + "total_deaths": 259.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2615.941, + "new_cases_per_million": 65.279, + "new_cases_smoothed_per_million": 66.376, + "total_deaths_per_million": 124.317, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-06-26", + "total_cases": 5603.0, + "new_cases": 153.0, + "new_cases_smoothed": 134.143, + "total_deaths": 265.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2689.38, + "new_cases_per_million": 73.438, + "new_cases_smoothed_per_million": 64.387, + "total_deaths_per_million": 127.197, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-06-27", + "total_cases": 5766.0, + "new_cases": 163.0, + "new_cases_smoothed": 135.143, + "total_deaths": 268.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2767.618, + "new_cases_per_million": 78.238, + "new_cases_smoothed_per_million": 64.867, + "total_deaths_per_million": 128.637, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 3.154 + }, + { + "date": "2020-06-28", + "total_cases": 5916.0, + "new_cases": 150.0, + "new_cases_smoothed": 130.143, + "total_deaths": 277.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 2839.616, + "new_cases_per_million": 71.998, + "new_cases_smoothed_per_million": 62.467, + "total_deaths_per_million": 132.957, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 3.017 + }, + { + "date": "2020-06-29", + "total_cases": 6092.0, + "new_cases": 176.0, + "new_cases_smoothed": 140.857, + "total_deaths": 286.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2924.095, + "new_cases_per_million": 84.478, + "new_cases_smoothed_per_million": 67.61, + "total_deaths_per_million": 137.277, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 3.291 + }, + { + "date": "2020-06-30", + "total_cases": 6224.0, + "new_cases": 132.0, + "new_cases_smoothed": 146.857, + "total_deaths": 298.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 2987.453, + "new_cases_per_million": 63.359, + "new_cases_smoothed_per_million": 70.49, + "total_deaths_per_million": 143.037, + "new_deaths_per_million": 5.76, + "new_deaths_smoothed_per_million": 3.497 + }, + { + "date": "2020-07-01", + "total_cases": 6350.0, + "new_cases": 126.0, + "new_cases_smoothed": 148.0, + "total_deaths": 302.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 3047.932, + "new_cases_per_million": 60.479, + "new_cases_smoothed_per_million": 71.038, + "total_deaths_per_million": 144.957, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 3.497 + }, + { + "date": "2020-07-02", + "total_cases": 6470.0, + "new_cases": 120.0, + "new_cases_smoothed": 145.714, + "total_deaths": 306.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 3105.53, + "new_cases_per_million": 57.599, + "new_cases_smoothed_per_million": 69.941, + "total_deaths_per_million": 146.877, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 3.223 + }, + { + "date": "2020-07-03", + "total_cases": 6643.0, + "new_cases": 173.0, + "new_cases_smoothed": 148.571, + "total_deaths": 321.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3188.569, + "new_cases_per_million": 83.038, + "new_cases_smoothed_per_million": 71.313, + "total_deaths_per_million": 154.077, + "new_deaths_per_million": 7.2, + "new_deaths_smoothed_per_million": 3.84 + }, + { + "date": "2020-07-04", + "total_cases": 6643.0, + "new_cases": 0.0, + "new_cases_smoothed": 125.286, + "total_deaths": 321.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3188.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 60.136, + "total_deaths_per_million": 154.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.634 + }, + { + "date": "2020-07-05", + "total_cases": 6932.0, + "new_cases": 289.0, + "new_cases_smoothed": 145.143, + "total_deaths": 334.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3327.285, + "new_cases_per_million": 138.717, + "new_cases_smoothed_per_million": 69.667, + "total_deaths_per_million": 160.316, + "new_deaths_per_million": 6.24, + "new_deaths_smoothed_per_million": 3.908 + }, + { + "date": "2020-07-06", + "total_cases": 7046.0, + "new_cases": 114.0, + "new_cases_smoothed": 136.286, + "total_deaths": 341.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3382.004, + "new_cases_per_million": 54.719, + "new_cases_smoothed_per_million": 65.416, + "total_deaths_per_million": 163.676, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 3.771 + }, + { + "date": "2020-07-07", + "total_cases": 7122.0, + "new_cases": 76.0, + "new_cases_smoothed": 128.286, + "total_deaths": 346.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3418.483, + "new_cases_per_million": 36.479, + "new_cases_smoothed_per_million": 61.576, + "total_deaths_per_million": 166.076, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 3.291 + }, + { + "date": "2020-07-08", + "total_cases": 7240.0, + "new_cases": 118.0, + "new_cases_smoothed": 127.143, + "total_deaths": 351.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3475.122, + "new_cases_per_million": 56.639, + "new_cases_smoothed_per_million": 61.027, + "total_deaths_per_million": 168.476, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-07-09", + "total_cases": 7401.0, + "new_cases": 161.0, + "new_cases_smoothed": 133.0, + "total_deaths": 359.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3552.4, + "new_cases_per_million": 77.278, + "new_cases_smoothed_per_million": 63.839, + "total_deaths_per_million": 172.316, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 3.634 + }, + { + "date": "2020-07-10", + "total_cases": 7567.0, + "new_cases": 166.0, + "new_cases_smoothed": 132.0, + "total_deaths": 361.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 3632.079, + "new_cases_per_million": 79.678, + "new_cases_smoothed_per_million": 63.359, + "total_deaths_per_million": 173.276, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 2.743 + }, + { + "date": "2020-07-11", + "total_cases": 7770.0, + "new_cases": 203.0, + "new_cases_smoothed": 161.0, + "total_deaths": 367.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 3729.516, + "new_cases_per_million": 97.438, + "new_cases_smoothed_per_million": 77.278, + "total_deaths_per_million": 176.156, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 3.154 + }, + { + "date": "2020-07-12", + "total_cases": 7967.0, + "new_cases": 197.0, + "new_cases_smoothed": 147.857, + "total_deaths": 375.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 3824.074, + "new_cases_per_million": 94.558, + "new_cases_smoothed_per_million": 70.97, + "total_deaths_per_million": 179.996, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 2.811 + }, + { + "date": "2020-07-13", + "total_cases": 8111.0, + "new_cases": 144.0, + "new_cases_smoothed": 152.143, + "total_deaths": 382.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 3893.193, + "new_cases_per_million": 69.118, + "new_cases_smoothed_per_million": 73.027, + "total_deaths_per_million": 183.356, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 2.811 + }, + { + "date": "2020-07-14", + "total_cases": 8197.0, + "new_cases": 86.0, + "new_cases_smoothed": 153.571, + "total_deaths": 385.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3934.472, + "new_cases_per_million": 41.279, + "new_cases_smoothed_per_million": 73.713, + "total_deaths_per_million": 184.796, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 2.674 + }, + { + "date": "2020-07-15", + "total_cases": 8328.0, + "new_cases": 131.0, + "new_cases_smoothed": 155.429, + "total_deaths": 389.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3997.35, + "new_cases_per_million": 62.879, + "new_cases_smoothed_per_million": 74.604, + "total_deaths_per_million": 186.716, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.606 + }, + { + "date": "2020-07-16", + "total_cases": 8522.0, + "new_cases": 194.0, + "new_cases_smoothed": 160.143, + "total_deaths": 393.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4090.468, + "new_cases_per_million": 93.118, + "new_cases_smoothed_per_million": 76.867, + "total_deaths_per_million": 188.636, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.331 + }, + { + "date": "2020-07-17", + "total_cases": 8612.0, + "new_cases": 90.0, + "new_cases_smoothed": 149.286, + "total_deaths": 401.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4133.667, + "new_cases_per_million": 43.199, + "new_cases_smoothed_per_million": 71.656, + "total_deaths_per_million": 192.476, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 2.743 + }, + { + "date": "2020-07-18", + "total_cases": 8772.0, + "new_cases": 160.0, + "new_cases_smoothed": 143.143, + "total_deaths": 406.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4210.466, + "new_cases_per_million": 76.798, + "new_cases_smoothed_per_million": 68.707, + "total_deaths_per_million": 194.876, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 2.674 + }, + { + "date": "2020-07-19", + "total_cases": 9009.0, + "new_cases": 237.0, + "new_cases_smoothed": 148.857, + "total_deaths": 414.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4324.223, + "new_cases_per_million": 113.757, + "new_cases_smoothed_per_million": 71.45, + "total_deaths_per_million": 198.716, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 2.674 + }, + { + "date": "2020-07-20", + "total_cases": 9132.0, + "new_cases": 123.0, + "new_cases_smoothed": 145.857, + "total_deaths": 422.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4383.262, + "new_cases_per_million": 59.039, + "new_cases_smoothed_per_million": 70.01, + "total_deaths_per_million": 202.555, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 2.743 + }, + { + "date": "2020-07-21", + "total_cases": 9249.0, + "new_cases": 117.0, + "new_cases_smoothed": 150.286, + "total_deaths": 432.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 4439.421, + "new_cases_per_million": 56.159, + "new_cases_smoothed_per_million": 72.136, + "total_deaths_per_million": 207.355, + "new_deaths_per_million": 4.8, + "new_deaths_smoothed_per_million": 3.223 + }, + { + "date": "2020-07-22", + "total_cases": 9412.0, + "new_cases": 163.0, + "new_cases_smoothed": 154.857, + "total_deaths": 432.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4517.659, + "new_cases_per_million": 78.238, + "new_cases_smoothed_per_million": 74.33, + "total_deaths_per_million": 207.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.949 + }, + { + "date": "2020-07-23", + "total_cases": 9547.0, + "new_cases": 135.0, + "new_cases_smoothed": 146.429, + "total_deaths": 442.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 4582.457, + "new_cases_per_million": 64.799, + "new_cases_smoothed_per_million": 70.284, + "total_deaths_per_million": 212.155, + "new_deaths_per_million": 4.8, + "new_deaths_smoothed_per_million": 3.36 + }, + { + "date": "2020-07-24", + "total_cases": 9669.0, + "new_cases": 122.0, + "new_cases_smoothed": 151.0, + "total_deaths": 445.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4641.016, + "new_cases_per_million": 58.559, + "new_cases_smoothed_per_million": 72.478, + "total_deaths_per_million": 213.595, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 3.017 + }, + { + "date": "2020-07-25", + "total_cases": 9797.0, + "new_cases": 128.0, + "new_cases_smoothed": 146.429, + "total_deaths": 451.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 4702.455, + "new_cases_per_million": 61.439, + "new_cases_smoothed_per_million": 70.284, + "total_deaths_per_million": 216.475, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 3.086 + }, + { + "date": "2020-07-26", + "total_cases": 9934.0, + "new_cases": 137.0, + "new_cases_smoothed": 132.143, + "total_deaths": 460.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4768.213, + "new_cases_per_million": 65.759, + "new_cases_smoothed_per_million": 63.427, + "total_deaths_per_million": 220.795, + "new_deaths_per_million": 4.32, + "new_deaths_smoothed_per_million": 3.154 + }, + { + "date": "2020-07-27", + "total_cases": 10086.0, + "new_cases": 152.0, + "new_cases_smoothed": 136.286, + "total_deaths": 460.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 4841.172, + "new_cases_per_million": 72.958, + "new_cases_smoothed_per_million": 65.416, + "total_deaths_per_million": 220.795, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.606 + }, + { + "date": "2020-07-28", + "total_cases": 10214.0, + "new_cases": 128.0, + "new_cases_smoothed": 137.857, + "total_deaths": 466.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4902.61, + "new_cases_per_million": 61.439, + "new_cases_smoothed_per_million": 66.17, + "total_deaths_per_million": 223.675, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 2.331 + }, + { + "date": "2020-07-29", + "total_cases": 10316.0, + "new_cases": 102.0, + "new_cases_smoothed": 129.143, + "total_deaths": 471.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4951.569, + "new_cases_per_million": 48.959, + "new_cases_smoothed_per_million": 61.987, + "total_deaths_per_million": 226.075, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 2.674 + }, + { + "date": "2020-07-30", + "total_cases": 10504.0, + "new_cases": 188.0, + "new_cases_smoothed": 136.714, + "total_deaths": 476.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 5041.807, + "new_cases_per_million": 90.238, + "new_cases_smoothed_per_million": 65.621, + "total_deaths_per_million": 228.475, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 2.331 + }, + { + "date": "2020-07-31", + "total_cases": 10623.0, + "new_cases": 119.0, + "new_cases_smoothed": 136.286, + "total_deaths": 480.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 5098.926, + "new_cases_per_million": 57.119, + "new_cases_smoothed_per_million": 65.416, + "total_deaths_per_million": 230.395, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.4 + }, + { + "date": "2020-08-01", + "total_cases": 10762.0, + "new_cases": 139.0, + "new_cases_smoothed": 137.857, + "total_deaths": 486.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 5165.644, + "new_cases_per_million": 66.719, + "new_cases_smoothed_per_million": 66.17, + "total_deaths_per_million": 233.275, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 2.4 + }, + { + "date": "2020-08-02", + "total_cases": 10900.0, + "new_cases": 138.0, + "new_cases_smoothed": 138.0, + "total_deaths": 493.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5231.883, + "new_cases_per_million": 66.239, + "new_cases_smoothed_per_million": 66.239, + "total_deaths_per_million": 236.635, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 2.263 + }, + { + "date": "2020-08-03", + "total_cases": 11054.0, + "new_cases": 154.0, + "new_cases_smoothed": 138.286, + "total_deaths": 497.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 5305.801, + "new_cases_per_million": 73.918, + "new_cases_smoothed_per_million": 66.376, + "total_deaths_per_million": 238.555, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.537 + }, + { + "date": "2020-08-04", + "total_cases": 11140.0, + "new_cases": 86.0, + "new_cases_smoothed": 132.286, + "total_deaths": 500.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 5347.08, + "new_cases_per_million": 41.279, + "new_cases_smoothed_per_million": 63.496, + "total_deaths_per_million": 239.995, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 2.331 + }, + { + "date": "2020-08-05", + "total_cases": 11140.0, + "new_cases": 0.0, + "new_cases_smoothed": 117.714, + "total_deaths": 500.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5347.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.502, + "total_deaths_per_million": 239.995, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.989 + }, + { + "date": "2020-08-06", + "total_cases": 11201.0, + "new_cases": 61.0, + "new_cases_smoothed": 99.571, + "total_deaths": 505.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5376.36, + "new_cases_per_million": 29.279, + "new_cases_smoothed_per_million": 47.793, + "total_deaths_per_million": 242.395, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.989 + }, + { + "date": "2020-08-07", + "total_cases": 11289.0, + "new_cases": 88.0, + "new_cases_smoothed": 95.143, + "total_deaths": 511.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 5418.599, + "new_cases_per_million": 42.239, + "new_cases_smoothed_per_million": 45.668, + "total_deaths_per_million": 245.275, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 2.126 + }, + { + "date": "2020-08-08", + "total_cases": 11571.0, + "new_cases": 282.0, + "new_cases_smoothed": 115.571, + "total_deaths": 519.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5553.956, + "new_cases_per_million": 135.357, + "new_cases_smoothed_per_million": 55.473, + "total_deaths_per_million": 249.114, + "new_deaths_per_million": 3.84, + "new_deaths_smoothed_per_million": 2.263 + }, + { + "date": "2020-08-09", + "total_cases": 11771.0, + "new_cases": 200.0, + "new_cases_smoothed": 124.429, + "total_deaths": 523.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5649.953, + "new_cases_per_million": 95.998, + "new_cases_smoothed_per_million": 59.724, + "total_deaths_per_million": 251.034, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.057 + }, + { + "date": "2020-08-10", + "total_cases": 11856.0, + "new_cases": 85.0, + "new_cases_smoothed": 114.571, + "total_deaths": 527.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5690.753, + "new_cases_per_million": 40.799, + "new_cases_smoothed_per_million": 54.993, + "total_deaths_per_million": 252.954, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 2.057 + }, + { + "date": "2020-08-11", + "total_cases": 11965.0, + "new_cases": 109.0, + "new_cases_smoothed": 117.857, + "total_deaths": 528.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5743.071, + "new_cases_per_million": 52.319, + "new_cases_smoothed_per_million": 56.57, + "total_deaths_per_million": 253.434, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.92 + }, + { + "date": "2020-08-12", + "total_cases": 11965.0, + "new_cases": 0.0, + "new_cases_smoothed": 117.857, + "total_deaths": 528.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5743.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 56.57, + "total_deaths_per_million": 253.434, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.92 + }, + { + "date": "2020-08-13", + "total_cases": 12217.0, + "new_cases": 252.0, + "new_cases_smoothed": 145.143, + "total_deaths": 530.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5864.029, + "new_cases_per_million": 120.957, + "new_cases_smoothed_per_million": 69.667, + "total_deaths_per_million": 254.394, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.714 + }, + { + "date": "2020-08-14", + "total_cases": 12357.0, + "new_cases": 140.0, + "new_cases_smoothed": 152.571, + "total_deaths": 532.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5931.227, + "new_cases_per_million": 67.198, + "new_cases_smoothed_per_million": 73.233, + "total_deaths_per_million": 255.354, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.44 + }, + { + "date": "2020-08-15", + "total_cases": 12546.0, + "new_cases": 189.0, + "new_cases_smoothed": 139.286, + "total_deaths": 535.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6021.945, + "new_cases_per_million": 90.718, + "new_cases_smoothed_per_million": 66.856, + "total_deaths_per_million": 256.794, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-08-16", + "total_cases": 12653.0, + "new_cases": 107.0, + "new_cases_smoothed": 126.0, + "total_deaths": 539.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6073.304, + "new_cases_per_million": 51.359, + "new_cases_smoothed_per_million": 60.479, + "total_deaths_per_million": 258.714, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.097 + }, + { + "date": "2020-08-17", + "total_cases": 12739.0, + "new_cases": 86.0, + "new_cases_smoothed": 126.143, + "total_deaths": 544.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6114.583, + "new_cases_per_million": 41.279, + "new_cases_smoothed_per_million": 60.547, + "total_deaths_per_million": 261.114, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-08-18", + "total_cases": 12774.0, + "new_cases": 35.0, + "new_cases_smoothed": 115.571, + "total_deaths": 545.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6131.383, + "new_cases_per_million": 16.8, + "new_cases_smoothed_per_million": 55.473, + "total_deaths_per_million": 261.594, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-08-19", + "total_cases": 12877.0, + "new_cases": 103.0, + "new_cases_smoothed": 130.286, + "total_deaths": 548.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6180.822, + "new_cases_per_million": 49.439, + "new_cases_smoothed_per_million": 62.536, + "total_deaths_per_million": 263.034, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-08-20", + "total_cases": 12985.0, + "new_cases": 108.0, + "new_cases_smoothed": 109.714, + "total_deaths": 550.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6232.66, + "new_cases_per_million": 51.839, + "new_cases_smoothed_per_million": 52.662, + "total_deaths_per_million": 263.994, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-08-21", + "total_cases": 12985.0, + "new_cases": 0.0, + "new_cases_smoothed": 89.714, + "total_deaths": 550.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 6232.66, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.062, + "total_deaths_per_million": 263.994, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.234 + }, + { + "date": "2020-08-22", + "total_cases": 13218.0, + "new_cases": 233.0, + "new_cases_smoothed": 96.0, + "total_deaths": 556.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 6344.498, + "new_cases_per_million": 111.837, + "new_cases_smoothed_per_million": 46.079, + "total_deaths_per_million": 266.874, + "new_deaths_per_million": 2.88, + "new_deaths_smoothed_per_million": 1.44 + }, + { + "date": "2020-08-23", + "total_cases": 13218.0, + "new_cases": 0.0, + "new_cases_smoothed": 80.714, + "total_deaths": 556.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6344.498, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.742, + "total_deaths_per_million": 266.874, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.166 + }, + { + "date": "2020-08-24", + "total_cases": 13514.0, + "new_cases": 296.0, + "new_cases_smoothed": 110.714, + "total_deaths": 563.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 6486.575, + "new_cases_per_million": 142.077, + "new_cases_smoothed_per_million": 53.142, + "total_deaths_per_million": 270.234, + "new_deaths_per_million": 3.36, + "new_deaths_smoothed_per_million": 1.303 + }, + { + "date": "2020-08-25", + "total_cases": 13595.0, + "new_cases": 81.0, + "new_cases_smoothed": 117.286, + "total_deaths": 564.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 6525.454, + "new_cases_per_million": 38.879, + "new_cases_smoothed_per_million": 56.296, + "total_deaths_per_million": 270.714, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 1.303 + }, + { + "date": "2020-08-26", + "total_cases": 13673.0, + "new_cases": 78.0, + "new_cases_smoothed": 113.714, + "total_deaths": 568.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6562.893, + "new_cases_per_million": 37.439, + "new_cases_smoothed_per_million": 54.582, + "total_deaths_per_million": 272.634, + "new_deaths_per_million": 1.92, + "new_deaths_smoothed_per_million": 1.371 + }, + { + "date": "2020-08-27", + "total_cases": 13799.0, + "new_cases": 126.0, + "new_cases_smoothed": 116.286, + "total_deaths": 573.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 6623.372, + "new_cases_per_million": 60.479, + "new_cases_smoothed_per_million": 55.816, + "total_deaths_per_million": 275.034, + "new_deaths_per_million": 2.4, + "new_deaths_smoothed_per_million": 1.577 + }, + { + "date": "2020-08-28", + "total_cases": 13927.0, + "new_cases": 128.0, + "new_cases_smoothed": 134.571, + "total_deaths": 584.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 6684.81, + "new_cases_per_million": 61.439, + "new_cases_smoothed_per_million": 64.593, + "total_deaths_per_million": 280.314, + "new_deaths_per_million": 5.28, + "new_deaths_smoothed_per_million": 2.331 + }, + { + "date": "2020-08-29", + "total_cases": 13927.0, + "new_cases": 0.0, + "new_cases_smoothed": 101.286, + "total_deaths": 584.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 6684.81, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.616, + "total_deaths_per_million": 280.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.92 + }, + { + "date": "2020-08-30", + "total_cases": 13927.0, + "new_cases": 0.0, + "new_cases_smoothed": 101.286, + "total_deaths": 584.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 6684.81, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 48.616, + "total_deaths_per_million": 280.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.92 + }, + { + "date": "2020-08-31", + "total_cases": 13927.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.0, + "total_deaths": 584.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 6684.81, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.319, + "total_deaths_per_million": 280.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.44 + }, + { + "date": "2020-09-01", + "total_cases": 14330.0, + "new_cases": 403.0, + "new_cases_smoothed": 105.0, + "total_deaths": 600.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 6878.246, + "new_cases_per_million": 193.436, + "new_cases_smoothed_per_million": 50.399, + "total_deaths_per_million": 287.994, + "new_deaths_per_million": 7.68, + "new_deaths_smoothed_per_million": 2.469 + }, + { + "date": "2020-09-02", + "total_cases": 14341.0, + "new_cases": 11.0, + "new_cases_smoothed": 95.429, + "total_deaths": 603.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 6883.526, + "new_cases_per_million": 5.28, + "new_cases_smoothed_per_million": 45.805, + "total_deaths_per_million": 289.434, + "new_deaths_per_million": 1.44, + "new_deaths_smoothed_per_million": 2.4 + }, + { + "date": "2020-09-03", + "total_cases": 14455.0, + "new_cases": 114.0, + "new_cases_smoothed": 93.714, + "total_deaths": 604.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 6938.245, + "new_cases_per_million": 54.719, + "new_cases_smoothed_per_million": 44.982, + "total_deaths_per_million": 289.914, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 2.126 + }, + { + "date": "2020-09-04", + "total_cases": 14600.0, + "new_cases": 145.0, + "new_cases_smoothed": 96.143, + "total_deaths": 606.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7007.843, + "new_cases_per_million": 69.598, + "new_cases_smoothed_per_million": 46.148, + "total_deaths_per_million": 290.873, + "new_deaths_per_million": 0.96, + "new_deaths_smoothed_per_million": 1.509 + }, + { + "date": "2020-09-05", + "total_cases": 14762.0, + "new_cases": 162.0, + "new_cases_smoothed": 119.286, + "total_deaths": 606.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7085.601, + "new_cases_per_million": 77.758, + "new_cases_smoothed_per_million": 57.256, + "total_deaths_per_million": 290.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.509 + } + ] + }, + "MDG": { + "continent": "Africa", + "location": "Madagascar", + "population": 27691019.0, + "population_density": 43.951, + "median_age": 19.6, + "aged_65_older": 2.929, + "aged_70_older": 1.686, + "gdp_per_capita": 1416.44, + "extreme_poverty": 77.6, + "cardiovasc_death_rate": 405.994, + "diabetes_prevalence": 3.94, + "handwashing_facilities": 50.54, + "hospital_beds_per_thousand": 0.2, + "life_expectancy": 67.04, + "data": [ + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.108, + "new_cases_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.108, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.108, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-24", + "total_cases": 17.0, + "new_cases": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.614, + "new_cases_per_million": 0.506, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-25", + "total_cases": 19.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.686, + "new_cases_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-26", + "total_cases": 19.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.686, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-27", + "total_cases": 23.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.831, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-28", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.867, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-29", + "total_cases": 28.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.011, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-30", + "total_cases": 37.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.336, + "new_cases_per_million": 0.325, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-03-31", + "total_cases": 44.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.589, + "new_cases_per_million": 0.253, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-04-01", + "total_cases": 46.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.661, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-04-02", + "total_cases": 54.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.95, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-04-03", + "total_cases": 59.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.131, + "new_cases_per_million": 0.181, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-04-04", + "total_cases": 65.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.347, + "new_cases_per_million": 0.217, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 91.67 + }, + { + "date": "2020-04-05", + "total_cases": 71.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.564, + "new_cases_per_million": 0.217, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-06", + "total_cases": 72.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.6, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-07", + "total_cases": 77.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.781, + "new_cases_per_million": 0.181, + "new_cases_smoothed_per_million": 0.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-08", + "total_cases": 85.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.07, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-09", + "total_cases": 93.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.358, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-10", + "total_cases": 93.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.358, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-11", + "total_cases": 102.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.684, + "new_cases_per_million": 0.325, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-12", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-13", + "total_cases": 106.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.828, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-14", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-15", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.9, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-16", + "total_cases": 110.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.972, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-17", + "total_cases": 111.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.009, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-18", + "total_cases": 117.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.225, + "new_cases_per_million": 0.217, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-19", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 95.37 + }, + { + "date": "2020-04-20", + "total_cases": 121.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.37, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-21", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-22", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-04-23", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-04-24", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-04-25", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.406, + "new_cases_per_million": 0.036, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-04-26", + "total_cases": 124.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.478, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-04-27", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.478, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-04-28", + "total_cases": 128.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.622, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-04-29", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-04-30", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-01", + "total_cases": 132.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.767, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-02", + "total_cases": 135.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.875, + "new_cases_per_million": 0.108, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-03", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.875, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-04", + "total_cases": 149.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.381, + "new_cases_per_million": 0.506, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-05", + "total_cases": 149.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.381, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-06", + "total_cases": 158.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.706, + "new_cases_per_million": 0.325, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-07", + "total_cases": 158.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.706, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-08", + "total_cases": 169.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.103, + "new_cases_per_million": 0.397, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-09", + "total_cases": 169.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-10", + "total_cases": 169.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-11", + "total_cases": 171.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.175, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-05-12", + "total_cases": 186.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.717, + "new_cases_per_million": 0.542, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-13", + "total_cases": 192.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.934, + "new_cases_per_million": 0.217, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-14", + "total_cases": 212.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.656, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 0.279, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-15", + "total_cases": 230.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.306, + "new_cases_per_million": 0.65, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-16", + "total_cases": 238.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.595, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.356, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-17", + "total_cases": 283.0, + "new_cases": 45.0, + "new_cases_smoothed": 16.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.22, + "new_cases_per_million": 1.625, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-18", + "total_cases": 304.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.978, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-05-19", + "total_cases": 322.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.628, + "new_cases_per_million": 0.65, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-05-20", + "total_cases": 326.0, + "new_cases": 4.0, + "new_cases_smoothed": 19.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11.773, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.691, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-05-21", + "total_cases": 371.0, + "new_cases": 45.0, + "new_cases_smoothed": 22.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.398, + "new_cases_per_million": 1.625, + "new_cases_smoothed_per_million": 0.82, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-05-22", + "total_cases": 405.0, + "new_cases": 34.0, + "new_cases_smoothed": 25.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.626, + "new_cases_per_million": 1.228, + "new_cases_smoothed_per_million": 0.903, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-05-23", + "total_cases": 448.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.179, + "new_cases_per_million": 1.553, + "new_cases_smoothed_per_million": 1.083, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-05-24", + "total_cases": 448.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.851, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-05-25", + "total_cases": 527.0, + "new_cases": 79.0, + "new_cases_smoothed": 31.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.031, + "new_cases_per_million": 2.853, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-05-26", + "total_cases": 542.0, + "new_cases": 15.0, + "new_cases_smoothed": 31.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.573, + "new_cases_per_million": 0.542, + "new_cases_smoothed_per_million": 1.135, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-05-27", + "total_cases": 586.0, + "new_cases": 44.0, + "new_cases_smoothed": 37.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.162, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 1.341, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-28", + "total_cases": 612.0, + "new_cases": 26.0, + "new_cases_smoothed": 34.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.101, + "new_cases_per_million": 0.939, + "new_cases_smoothed_per_million": 1.243, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-29", + "total_cases": 656.0, + "new_cases": 44.0, + "new_cases_smoothed": 35.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.69, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 1.295, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-30", + "total_cases": 698.0, + "new_cases": 42.0, + "new_cases_smoothed": 35.714, + "total_deaths": 5.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 25.207, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 1.29, + "total_deaths_per_million": 0.181, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-05-31", + "total_cases": 758.0, + "new_cases": 60.0, + "new_cases_smoothed": 44.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 27.373, + "new_cases_per_million": 2.167, + "new_cases_smoothed_per_million": 1.599, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-01", + "total_cases": 771.0, + "new_cases": 13.0, + "new_cases_smoothed": 34.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 27.843, + "new_cases_per_million": 0.469, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-02", + "total_cases": 826.0, + "new_cases": 55.0, + "new_cases_smoothed": 40.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 29.829, + "new_cases_per_million": 1.986, + "new_cases_smoothed_per_million": 1.465, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-03", + "total_cases": 845.0, + "new_cases": 19.0, + "new_cases_smoothed": 37.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.515, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 1.336, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-04", + "total_cases": 908.0, + "new_cases": 63.0, + "new_cases_smoothed": 42.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 32.79, + "new_cases_per_million": 2.275, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-05", + "total_cases": 957.0, + "new_cases": 49.0, + "new_cases_smoothed": 43.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 34.56, + "new_cases_per_million": 1.77, + "new_cases_smoothed_per_million": 1.553, + "total_deaths_per_million": 0.253, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 70.37 + }, + { + "date": "2020-06-06", + "total_cases": 975.0, + "new_cases": 18.0, + "new_cases_smoothed": 39.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 35.21, + "new_cases_per_million": 0.65, + "new_cases_smoothed_per_million": 1.429, + "total_deaths_per_million": 0.253, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-06-07", + "total_cases": 1026.0, + "new_cases": 51.0, + "new_cases_smoothed": 38.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.052, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 1.383, + "total_deaths_per_million": 0.289, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-06-08", + "total_cases": 1052.0, + "new_cases": 26.0, + "new_cases_smoothed": 40.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 37.991, + "new_cases_per_million": 0.939, + "new_cases_smoothed_per_million": 1.45, + "total_deaths_per_million": 0.325, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-09", + "total_cases": 1094.0, + "new_cases": 42.0, + "new_cases_smoothed": 38.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.507, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 1.383, + "total_deaths_per_million": 0.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-10", + "total_cases": 1138.0, + "new_cases": 44.0, + "new_cases_smoothed": 41.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41.096, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 0.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-11", + "total_cases": 1162.0, + "new_cases": 24.0, + "new_cases_smoothed": 36.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.963, + "new_cases_per_million": 0.867, + "new_cases_smoothed_per_million": 1.31, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-12", + "total_cases": 1203.0, + "new_cases": 41.0, + "new_cases_smoothed": 35.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 43.444, + "new_cases_per_million": 1.481, + "new_cases_smoothed_per_million": 1.269, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-13", + "total_cases": 1230.0, + "new_cases": 27.0, + "new_cases_smoothed": 36.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 44.419, + "new_cases_per_million": 0.975, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-14", + "total_cases": 1252.0, + "new_cases": 22.0, + "new_cases_smoothed": 32.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 45.213, + "new_cases_per_million": 0.794, + "new_cases_smoothed_per_million": 1.166, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-06-15", + "total_cases": 1272.0, + "new_cases": 20.0, + "new_cases_smoothed": 31.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.935, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 1.135, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-06-16", + "total_cases": 1290.0, + "new_cases": 18.0, + "new_cases_smoothed": 28.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.586, + "new_cases_per_million": 0.65, + "new_cases_smoothed_per_million": 1.011, + "total_deaths_per_million": 0.361, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 70.37 + }, + { + "date": "2020-06-17", + "total_cases": 1317.0, + "new_cases": 27.0, + "new_cases_smoothed": 25.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 47.561, + "new_cases_per_million": 0.975, + "new_cases_smoothed_per_million": 0.923, + "total_deaths_per_million": 0.433, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-18", + "total_cases": 1378.0, + "new_cases": 61.0, + "new_cases_smoothed": 30.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.763, + "new_cases_per_million": 2.203, + "new_cases_smoothed_per_million": 1.114, + "total_deaths_per_million": 0.433, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 70.37 + }, + { + "date": "2020-06-19", + "total_cases": 1403.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 50.666, + "new_cases_per_million": 0.903, + "new_cases_smoothed_per_million": 1.032, + "total_deaths_per_million": 0.469, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-20", + "total_cases": 1443.0, + "new_cases": 40.0, + "new_cases_smoothed": 30.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.111, + "new_cases_per_million": 1.445, + "new_cases_smoothed_per_million": 1.099, + "total_deaths_per_million": 0.469, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-21", + "total_cases": 1503.0, + "new_cases": 60.0, + "new_cases_smoothed": 35.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 54.278, + "new_cases_per_million": 2.167, + "new_cases_smoothed_per_million": 1.295, + "total_deaths_per_million": 0.469, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-22", + "total_cases": 1596.0, + "new_cases": 93.0, + "new_cases_smoothed": 46.286, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 57.636, + "new_cases_per_million": 3.358, + "new_cases_smoothed_per_million": 1.672, + "total_deaths_per_million": 0.506, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-23", + "total_cases": 1640.0, + "new_cases": 44.0, + "new_cases_smoothed": 50.0, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 59.225, + "new_cases_per_million": 1.589, + "new_cases_smoothed_per_million": 1.806, + "total_deaths_per_million": 0.542, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 70.37 + }, + { + "date": "2020-06-24", + "total_cases": 1724.0, + "new_cases": 84.0, + "new_cases_smoothed": 58.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 62.258, + "new_cases_per_million": 3.033, + "new_cases_smoothed_per_million": 2.1, + "total_deaths_per_million": 0.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-25", + "total_cases": 1787.0, + "new_cases": 63.0, + "new_cases_smoothed": 58.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 64.534, + "new_cases_per_million": 2.275, + "new_cases_smoothed_per_million": 2.11, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 70.37 + }, + { + "date": "2020-06-26", + "total_cases": 1829.0, + "new_cases": 42.0, + "new_cases_smoothed": 60.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 66.05, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 2.198, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-06-27", + "total_cases": 1922.0, + "new_cases": 93.0, + "new_cases_smoothed": 68.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 69.409, + "new_cases_per_million": 3.358, + "new_cases_smoothed_per_million": 2.471, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 68.98 + }, + { + "date": "2020-06-28", + "total_cases": 2005.0, + "new_cases": 83.0, + "new_cases_smoothed": 71.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 72.406, + "new_cases_per_million": 2.997, + "new_cases_smoothed_per_million": 2.59, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 68.98 + }, + { + "date": "2020-06-29", + "total_cases": 2078.0, + "new_cases": 73.0, + "new_cases_smoothed": 68.857, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 75.042, + "new_cases_per_million": 2.636, + "new_cases_smoothed_per_million": 2.487, + "total_deaths_per_million": 0.65, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.98 + }, + { + "date": "2020-06-30", + "total_cases": 2138.0, + "new_cases": 60.0, + "new_cases_smoothed": 71.143, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 77.209, + "new_cases_per_million": 2.167, + "new_cases_smoothed_per_million": 2.569, + "total_deaths_per_million": 0.722, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 68.98 + }, + { + "date": "2020-07-01", + "total_cases": 2214.0, + "new_cases": 76.0, + "new_cases_smoothed": 70.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 79.954, + "new_cases_per_million": 2.745, + "new_cases_smoothed_per_million": 2.528, + "total_deaths_per_million": 0.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 68.98 + }, + { + "date": "2020-07-02", + "total_cases": 2303.0, + "new_cases": 89.0, + "new_cases_smoothed": 73.714, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 83.168, + "new_cases_per_million": 3.214, + "new_cases_smoothed_per_million": 2.662, + "total_deaths_per_million": 0.794, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 68.98 + }, + { + "date": "2020-07-03", + "total_cases": 2403.0, + "new_cases": 100.0, + "new_cases_smoothed": 82.0, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 86.779, + "new_cases_per_million": 3.611, + "new_cases_smoothed_per_million": 2.961, + "total_deaths_per_million": 0.867, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 68.98 + }, + { + "date": "2020-07-04", + "total_cases": 2512.0, + "new_cases": 109.0, + "new_cases_smoothed": 84.286, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 90.715, + "new_cases_per_million": 3.936, + "new_cases_smoothed_per_million": 3.044, + "total_deaths_per_million": 0.939, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 68.98 + }, + { + "date": "2020-07-05", + "total_cases": 2728.0, + "new_cases": 216.0, + "new_cases_smoothed": 103.286, + "total_deaths": 29.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 98.516, + "new_cases_per_million": 7.8, + "new_cases_smoothed_per_million": 3.73, + "total_deaths_per_million": 1.047, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 68.98 + }, + { + "date": "2020-07-06", + "total_cases": 2728.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.857, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 98.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.353, + "total_deaths_per_million": 1.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 68.98 + }, + { + "date": "2020-07-07", + "total_cases": 3250.0, + "new_cases": 522.0, + "new_cases_smoothed": 158.857, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 117.367, + "new_cases_per_million": 18.851, + "new_cases_smoothed_per_million": 5.737, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 68.98 + }, + { + "date": "2020-07-08", + "total_cases": 3472.0, + "new_cases": 222.0, + "new_cases_smoothed": 179.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 125.384, + "new_cases_per_million": 8.017, + "new_cases_smoothed_per_million": 6.49, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 68.98 + }, + { + "date": "2020-07-09", + "total_cases": 3573.0, + "new_cases": 101.0, + "new_cases_smoothed": 181.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 129.031, + "new_cases_per_million": 3.647, + "new_cases_smoothed_per_million": 6.552, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 68.98 + }, + { + "date": "2020-07-10", + "total_cases": 3782.0, + "new_cases": 209.0, + "new_cases_smoothed": 197.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 136.579, + "new_cases_per_million": 7.548, + "new_cases_smoothed_per_million": 7.114, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 68.98 + }, + { + "date": "2020-07-11", + "total_cases": 4143.0, + "new_cases": 361.0, + "new_cases_smoothed": 233.0, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 149.615, + "new_cases_per_million": 13.037, + "new_cases_smoothed_per_million": 8.414, + "total_deaths_per_million": 1.228, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 68.98 + }, + { + "date": "2020-07-12", + "total_cases": 4578.0, + "new_cases": 435.0, + "new_cases_smoothed": 264.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 165.324, + "new_cases_per_million": 15.709, + "new_cases_smoothed_per_million": 9.544, + "total_deaths_per_million": 1.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 68.98 + }, + { + "date": "2020-07-13", + "total_cases": 4867.0, + "new_cases": 289.0, + "new_cases_smoothed": 305.571, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 175.761, + "new_cases_per_million": 10.437, + "new_cases_smoothed_per_million": 11.035, + "total_deaths_per_million": 1.264, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 68.98 + }, + { + "date": "2020-07-14", + "total_cases": 5080.0, + "new_cases": 213.0, + "new_cases_smoothed": 261.429, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 183.453, + "new_cases_per_million": 7.692, + "new_cases_smoothed_per_million": 9.441, + "total_deaths_per_million": 1.336, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 68.98 + }, + { + "date": "2020-07-15", + "total_cases": 5343.0, + "new_cases": 263.0, + "new_cases_smoothed": 267.286, + "total_deaths": 39.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 192.951, + "new_cases_per_million": 9.498, + "new_cases_smoothed_per_million": 9.652, + "total_deaths_per_million": 1.408, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 68.98 + }, + { + "date": "2020-07-16", + "total_cases": 5605.0, + "new_cases": 262.0, + "new_cases_smoothed": 290.286, + "total_deaths": 43.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 202.412, + "new_cases_per_million": 9.462, + "new_cases_smoothed_per_million": 10.483, + "total_deaths_per_million": 1.553, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 68.98 + }, + { + "date": "2020-07-17", + "total_cases": 6089.0, + "new_cases": 484.0, + "new_cases_smoothed": 329.571, + "total_deaths": 53.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 219.891, + "new_cases_per_million": 17.479, + "new_cases_smoothed_per_million": 11.902, + "total_deaths_per_million": 1.914, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 68.98 + }, + { + "date": "2020-07-18", + "total_cases": 6467.0, + "new_cases": 378.0, + "new_cases_smoothed": 332.0, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 233.541, + "new_cases_per_million": 13.651, + "new_cases_smoothed_per_million": 11.989, + "total_deaths_per_million": 1.95, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 68.98 + }, + { + "date": "2020-07-19", + "total_cases": 6849.0, + "new_cases": 382.0, + "new_cases_smoothed": 324.429, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 247.337, + "new_cases_per_million": 13.795, + "new_cases_smoothed_per_million": 11.716, + "total_deaths_per_million": 1.986, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 68.98 + }, + { + "date": "2020-07-20", + "total_cases": 7049.0, + "new_cases": 200.0, + "new_cases_smoothed": 311.714, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 254.559, + "new_cases_per_million": 7.223, + "new_cases_smoothed_per_million": 11.257, + "total_deaths_per_million": 2.131, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 68.98 + }, + { + "date": "2020-07-21", + "total_cases": 7153.0, + "new_cases": 104.0, + "new_cases_smoothed": 296.143, + "total_deaths": 62.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 258.315, + "new_cases_per_million": 3.756, + "new_cases_smoothed_per_million": 10.695, + "total_deaths_per_million": 2.239, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 68.98 + }, + { + "date": "2020-07-22", + "total_cases": 7548.0, + "new_cases": 395.0, + "new_cases_smoothed": 315.0, + "total_deaths": 65.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 272.579, + "new_cases_per_million": 14.265, + "new_cases_smoothed_per_million": 11.376, + "total_deaths_per_million": 2.347, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 68.98 + }, + { + "date": "2020-07-23", + "total_cases": 8162.0, + "new_cases": 614.0, + "new_cases_smoothed": 365.286, + "total_deaths": 69.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 294.753, + "new_cases_per_million": 22.173, + "new_cases_smoothed_per_million": 13.191, + "total_deaths_per_million": 2.492, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 68.98 + }, + { + "date": "2020-07-24", + "total_cases": 8381.0, + "new_cases": 219.0, + "new_cases_smoothed": 327.429, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 302.661, + "new_cases_per_million": 7.909, + "new_cases_smoothed_per_million": 11.824, + "total_deaths_per_million": 2.528, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 68.98 + }, + { + "date": "2020-07-25", + "total_cases": 8741.0, + "new_cases": 360.0, + "new_cases_smoothed": 324.857, + "total_deaths": 76.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 315.662, + "new_cases_per_million": 13.001, + "new_cases_smoothed_per_million": 11.731, + "total_deaths_per_million": 2.745, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 68.98 + }, + { + "date": "2020-07-26", + "total_cases": 8866.0, + "new_cases": 125.0, + "new_cases_smoothed": 288.143, + "total_deaths": 78.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 320.176, + "new_cases_per_million": 4.514, + "new_cases_smoothed_per_million": 10.406, + "total_deaths_per_million": 2.817, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.119, + "stringency_index": 68.98 + }, + { + "date": "2020-07-27", + "total_cases": 9295.0, + "new_cases": 429.0, + "new_cases_smoothed": 320.857, + "total_deaths": 85.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 335.668, + "new_cases_per_million": 15.492, + "new_cases_smoothed_per_million": 11.587, + "total_deaths_per_million": 3.07, + "new_deaths_per_million": 0.253, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 68.98 + }, + { + "date": "2020-07-28", + "total_cases": 9690.0, + "new_cases": 395.0, + "new_cases_smoothed": 362.429, + "total_deaths": 91.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 349.933, + "new_cases_per_million": 14.265, + "new_cases_smoothed_per_million": 13.088, + "total_deaths_per_million": 3.286, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 68.98 + }, + { + "date": "2020-07-29", + "total_cases": 10104.0, + "new_cases": 414.0, + "new_cases_smoothed": 365.143, + "total_deaths": 93.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 364.884, + "new_cases_per_million": 14.951, + "new_cases_smoothed_per_million": 13.186, + "total_deaths_per_million": 3.358, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 68.98 + }, + { + "date": "2020-07-30", + "total_cases": 10317.0, + "new_cases": 213.0, + "new_cases_smoothed": 307.857, + "total_deaths": 99.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 372.576, + "new_cases_per_million": 7.692, + "new_cases_smoothed_per_million": 11.118, + "total_deaths_per_million": 3.575, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 68.98 + }, + { + "date": "2020-07-31", + "total_cases": 10748.0, + "new_cases": 431.0, + "new_cases_smoothed": 338.143, + "total_deaths": 105.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 388.14, + "new_cases_per_million": 15.565, + "new_cases_smoothed_per_million": 12.211, + "total_deaths_per_million": 3.792, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.181, + "stringency_index": 68.98 + }, + { + "date": "2020-08-01", + "total_cases": 10868.0, + "new_cases": 120.0, + "new_cases_smoothed": 303.857, + "total_deaths": 106.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 392.474, + "new_cases_per_million": 4.334, + "new_cases_smoothed_per_million": 10.973, + "total_deaths_per_million": 3.828, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 68.98 + }, + { + "date": "2020-08-02", + "total_cases": 11273.0, + "new_cases": 405.0, + "new_cases_smoothed": 343.857, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 407.1, + "new_cases_per_million": 14.626, + "new_cases_smoothed_per_million": 12.418, + "total_deaths_per_million": 3.864, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 68.98 + }, + { + "date": "2020-08-03", + "total_cases": 11528.0, + "new_cases": 255.0, + "new_cases_smoothed": 319.0, + "total_deaths": 114.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 416.308, + "new_cases_per_million": 9.209, + "new_cases_smoothed_per_million": 11.52, + "total_deaths_per_million": 4.117, + "new_deaths_per_million": 0.253, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 68.98 + }, + { + "date": "2020-08-04", + "total_cases": 11660.0, + "new_cases": 132.0, + "new_cases_smoothed": 281.429, + "total_deaths": 118.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 421.075, + "new_cases_per_million": 4.767, + "new_cases_smoothed_per_million": 10.163, + "total_deaths_per_million": 4.261, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.139, + "stringency_index": 68.98 + }, + { + "date": "2020-08-05", + "total_cases": 11895.0, + "new_cases": 235.0, + "new_cases_smoothed": 255.857, + "total_deaths": 123.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 429.562, + "new_cases_per_million": 8.487, + "new_cases_smoothed_per_million": 9.24, + "total_deaths_per_million": 4.442, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 68.98 + }, + { + "date": "2020-08-06", + "total_cases": 12222.0, + "new_cases": 327.0, + "new_cases_smoothed": 272.143, + "total_deaths": 127.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 441.371, + "new_cases_per_million": 11.809, + "new_cases_smoothed_per_million": 9.828, + "total_deaths_per_million": 4.586, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 68.98 + }, + { + "date": "2020-08-07", + "total_cases": 12526.0, + "new_cases": 304.0, + "new_cases_smoothed": 254.0, + "total_deaths": 134.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 452.349, + "new_cases_per_million": 10.978, + "new_cases_smoothed_per_million": 9.173, + "total_deaths_per_million": 4.839, + "new_deaths_per_million": 0.253, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 68.98 + }, + { + "date": "2020-08-08", + "total_cases": 12708.0, + "new_cases": 182.0, + "new_cases_smoothed": 262.857, + "total_deaths": 135.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 458.921, + "new_cases_per_million": 6.573, + "new_cases_smoothed_per_million": 9.493, + "total_deaths_per_million": 4.875, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 68.98 + }, + { + "date": "2020-08-09", + "total_cases": 12922.0, + "new_cases": 214.0, + "new_cases_smoothed": 235.571, + "total_deaths": 141.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 466.649, + "new_cases_per_million": 7.728, + "new_cases_smoothed_per_million": 8.507, + "total_deaths_per_million": 5.092, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 68.98 + }, + { + "date": "2020-08-10", + "total_cases": 13086.0, + "new_cases": 164.0, + "new_cases_smoothed": 222.571, + "total_deaths": 148.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 472.572, + "new_cases_per_million": 5.922, + "new_cases_smoothed_per_million": 8.038, + "total_deaths_per_million": 5.345, + "new_deaths_per_million": 0.253, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 67.59 + }, + { + "date": "2020-08-11", + "total_cases": 13202.0, + "new_cases": 116.0, + "new_cases_smoothed": 220.286, + "total_deaths": 151.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 476.761, + "new_cases_per_million": 4.189, + "new_cases_smoothed_per_million": 7.955, + "total_deaths_per_million": 5.453, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.17, + "stringency_index": 67.59 + }, + { + "date": "2020-08-12", + "total_cases": 13317.0, + "new_cases": 115.0, + "new_cases_smoothed": 203.143, + "total_deaths": 152.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 480.914, + "new_cases_per_million": 4.153, + "new_cases_smoothed_per_million": 7.336, + "total_deaths_per_million": 5.489, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 67.59 + }, + { + "date": "2020-08-13", + "total_cases": 13397.0, + "new_cases": 80.0, + "new_cases_smoothed": 167.857, + "total_deaths": 156.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 483.803, + "new_cases_per_million": 2.889, + "new_cases_smoothed_per_million": 6.062, + "total_deaths_per_million": 5.634, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 67.59 + }, + { + "date": "2020-08-14", + "total_cases": 13522.0, + "new_cases": 125.0, + "new_cases_smoothed": 142.286, + "total_deaths": 162.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 488.317, + "new_cases_per_million": 4.514, + "new_cases_smoothed_per_million": 5.138, + "total_deaths_per_million": 5.85, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 65.74 + }, + { + "date": "2020-08-15", + "total_cases": 13643.0, + "new_cases": 121.0, + "new_cases_smoothed": 133.571, + "total_deaths": 164.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 492.687, + "new_cases_per_million": 4.37, + "new_cases_smoothed_per_million": 4.824, + "total_deaths_per_million": 5.922, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 65.74 + }, + { + "date": "2020-08-16", + "total_cases": 13724.0, + "new_cases": 81.0, + "new_cases_smoothed": 114.571, + "total_deaths": 166.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 495.612, + "new_cases_per_million": 2.925, + "new_cases_smoothed_per_million": 4.137, + "total_deaths_per_million": 5.995, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 65.74 + }, + { + "date": "2020-08-17", + "total_cases": 13827.0, + "new_cases": 103.0, + "new_cases_smoothed": 105.857, + "total_deaths": 170.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 499.332, + "new_cases_per_million": 3.72, + "new_cases_smoothed_per_million": 3.823, + "total_deaths_per_million": 6.139, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 65.74 + }, + { + "date": "2020-08-18", + "total_cases": 13886.0, + "new_cases": 59.0, + "new_cases_smoothed": 97.714, + "total_deaths": 171.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 501.462, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 3.529, + "total_deaths_per_million": 6.175, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 65.74 + }, + { + "date": "2020-08-19", + "total_cases": 14009.0, + "new_cases": 123.0, + "new_cases_smoothed": 98.857, + "total_deaths": 173.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 505.904, + "new_cases_per_million": 4.442, + "new_cases_smoothed_per_million": 3.57, + "total_deaths_per_million": 6.248, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 65.74 + }, + { + "date": "2020-08-20", + "total_cases": 14074.0, + "new_cases": 65.0, + "new_cases_smoothed": 96.714, + "total_deaths": 173.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 508.251, + "new_cases_per_million": 2.347, + "new_cases_smoothed_per_million": 3.493, + "total_deaths_per_million": 6.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 65.74 + }, + { + "date": "2020-08-21", + "total_cases": 14154.0, + "new_cases": 80.0, + "new_cases_smoothed": 90.286, + "total_deaths": 177.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 511.14, + "new_cases_per_million": 2.889, + "new_cases_smoothed_per_million": 3.26, + "total_deaths_per_million": 6.392, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 14218.0, + "new_cases": 64.0, + "new_cases_smoothed": 82.143, + "total_deaths": 178.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 513.452, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 2.966, + "total_deaths_per_million": 6.428, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 14277.0, + "new_cases": 59.0, + "new_cases_smoothed": 79.0, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 515.582, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 2.853, + "total_deaths_per_million": 6.428, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 70.37 + }, + { + "date": "2020-08-24", + "total_cases": 14327.0, + "new_cases": 50.0, + "new_cases_smoothed": 71.429, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 517.388, + "new_cases_per_million": 1.806, + "new_cases_smoothed_per_million": 2.579, + "total_deaths_per_million": 6.428, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 14402.0, + "new_cases": 75.0, + "new_cases_smoothed": 73.714, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 520.096, + "new_cases_per_million": 2.708, + "new_cases_smoothed_per_million": 2.662, + "total_deaths_per_million": 6.428, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 70.37 + }, + { + "date": "2020-08-26", + "total_cases": 14475.0, + "new_cases": 73.0, + "new_cases_smoothed": 66.571, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 522.733, + "new_cases_per_million": 2.636, + "new_cases_smoothed_per_million": 2.404, + "total_deaths_per_million": 6.428, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 70.37 + }, + { + "date": "2020-08-27", + "total_cases": 14554.0, + "new_cases": 79.0, + "new_cases_smoothed": 68.571, + "total_deaths": 181.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 525.586, + "new_cases_per_million": 2.853, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 6.536, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 59.26 + }, + { + "date": "2020-08-28", + "total_cases": 14592.0, + "new_cases": 38.0, + "new_cases_smoothed": 62.571, + "total_deaths": 184.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 526.958, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 2.26, + "total_deaths_per_million": 6.645, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 59.26 + }, + { + "date": "2020-08-29", + "total_cases": 14696.0, + "new_cases": 104.0, + "new_cases_smoothed": 68.286, + "total_deaths": 187.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 530.714, + "new_cases_per_million": 3.756, + "new_cases_smoothed_per_million": 2.466, + "total_deaths_per_million": 6.753, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 59.26 + }, + { + "date": "2020-08-30", + "total_cases": 14791.0, + "new_cases": 95.0, + "new_cases_smoothed": 73.429, + "total_deaths": 190.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 534.144, + "new_cases_per_million": 3.431, + "new_cases_smoothed_per_million": 2.652, + "total_deaths_per_million": 6.861, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 59.26 + }, + { + "date": "2020-08-31", + "total_cases": 14843.0, + "new_cases": 52.0, + "new_cases_smoothed": 73.714, + "total_deaths": 191.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 536.022, + "new_cases_per_million": 1.878, + "new_cases_smoothed_per_million": 2.662, + "total_deaths_per_million": 6.898, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-09-01", + "total_cases": 14863.0, + "new_cases": 20.0, + "new_cases_smoothed": 65.857, + "total_deaths": 192.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 536.744, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 2.378, + "total_deaths_per_million": 6.934, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.072 + }, + { + "date": "2020-09-02", + "total_cases": 14957.0, + "new_cases": 94.0, + "new_cases_smoothed": 68.857, + "total_deaths": 195.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 540.139, + "new_cases_per_million": 3.395, + "new_cases_smoothed_per_million": 2.487, + "total_deaths_per_million": 7.042, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.088 + }, + { + "date": "2020-09-03", + "total_cases": 15023.0, + "new_cases": 66.0, + "new_cases_smoothed": 67.0, + "total_deaths": 196.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 542.522, + "new_cases_per_million": 2.383, + "new_cases_smoothed_per_million": 2.42, + "total_deaths_per_million": 7.078, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.077 + }, + { + "date": "2020-09-04", + "total_cases": 15106.0, + "new_cases": 83.0, + "new_cases_smoothed": 73.429, + "total_deaths": 197.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 545.52, + "new_cases_per_million": 2.997, + "new_cases_smoothed_per_million": 2.652, + "total_deaths_per_million": 7.114, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-09-05", + "total_cases": 15187.0, + "new_cases": 81.0, + "new_cases_smoothed": 70.143, + "total_deaths": 198.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 548.445, + "new_cases_per_million": 2.925, + "new_cases_smoothed_per_million": 2.533, + "total_deaths_per_million": 7.15, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.057 + } + ] + }, + "MWI": { + "continent": "Africa", + "location": "Malawi", + "population": 19129955.0, + "population_density": 197.519, + "median_age": 18.1, + "aged_65_older": 2.979, + "aged_70_older": 1.783, + "gdp_per_capita": 1095.042, + "extreme_poverty": 71.4, + "cardiovasc_death_rate": 227.349, + "diabetes_prevalence": 3.94, + "female_smokers": 4.4, + "male_smokers": 24.7, + "handwashing_facilities": 8.704, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 64.26, + "data": [ + { + "date": "2020-04-03", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-04-04", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.157, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-04-05", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.209, + "new_cases_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-04-06", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.209, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-04-07", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.261, + "new_cases_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-04-08", + "total_cases": 8.0, + "new_cases": 3.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.418, + "new_cases_per_million": 0.157, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.052, + "stringency_index": 53.7 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-11", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.47, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.052, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-12", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.627, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 53.7 + }, + { + "date": "2020-04-13", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 53.7 + }, + { + "date": "2020-04-14", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.836, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 53.7 + }, + { + "date": "2020-04-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.836, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.836, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.836, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 53.7 + }, + { + "date": "2020-04-18", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-19", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-20", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-21", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-22", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.941, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.105, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-23", + "total_cases": 23.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-24", + "total_cases": 33.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.725, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-25", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-26", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-27", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.777, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-28", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.882, + "new_cases_per_million": 0.105, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-29", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-04-30", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.882, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-01", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.934, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-02", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-03", + "total_cases": 38.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.986, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-04", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.039, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-05", + "total_cases": 41.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.143, + "new_cases_per_million": 0.105, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-06", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.143, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-07", + "total_cases": 43.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.248, + "new_cases_per_million": 0.105, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-08", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.248, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-09", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.248, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-10", + "total_cases": 56.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.927, + "new_cases_per_million": 0.68, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-11", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-12", + "total_cases": 57.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.98, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-13", + "total_cases": 58.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.032, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-14", + "total_cases": 63.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.293, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-15", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-16", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-17", + "total_cases": 65.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.398, + "new_cases_per_million": 0.105, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-18", + "total_cases": 70.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.659, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-19", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.659, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-20", + "total_cases": 71.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.711, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-21", + "total_cases": 72.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.764, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-22", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-23", + "total_cases": 82.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.286, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.157, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-05-24", + "total_cases": 83.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.339, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-25", + "total_cases": 83.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.339, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-26", + "total_cases": 101.0, + "new_cases": 18.0, + "new_cases_smoothed": 4.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.28, + "new_cases_per_million": 0.941, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-27", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.28, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-28", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.28, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-29", + "total_cases": 203.0, + "new_cases": 102.0, + "new_cases_smoothed": 18.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.612, + "new_cases_per_million": 5.332, + "new_cases_smoothed_per_million": 0.978, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-30", + "total_cases": 273.0, + "new_cases": 70.0, + "new_cases_smoothed": 27.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.271, + "new_cases_per_million": 3.659, + "new_cases_smoothed_per_million": 1.426, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-05-31", + "total_cases": 279.0, + "new_cases": 6.0, + "new_cases_smoothed": 28.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.584, + "new_cases_per_million": 0.314, + "new_cases_smoothed_per_million": 1.464, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-01", + "total_cases": 284.0, + "new_cases": 5.0, + "new_cases_smoothed": 28.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.846, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 336.0, + "new_cases": 52.0, + "new_cases_smoothed": 33.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.564, + "new_cases_per_million": 2.718, + "new_cases_smoothed_per_million": 1.755, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 358.0, + "new_cases": 22.0, + "new_cases_smoothed": 36.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.714, + "new_cases_per_million": 1.15, + "new_cases_smoothed_per_million": 1.919, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 369.0, + "new_cases": 11.0, + "new_cases_smoothed": 38.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.289, + "new_cases_per_million": 0.575, + "new_cases_smoothed_per_million": 2.001, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 393.0, + "new_cases": 24.0, + "new_cases_smoothed": 27.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.544, + "new_cases_per_million": 1.255, + "new_cases_smoothed_per_million": 1.419, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 409.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.38, + "new_cases_per_million": 0.836, + "new_cases_smoothed_per_million": 1.016, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 409.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.38, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 438.0, + "new_cases": 29.0, + "new_cases_smoothed": 22.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.896, + "new_cases_per_million": 1.516, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 443.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.157, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 0.799, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 455.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.785, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.642, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 481.0, + "new_cases": 26.0, + "new_cases_smoothed": 12.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.144, + "new_cases_per_million": 1.359, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 481.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 529.0, + "new_cases": 48.0, + "new_cases_smoothed": 17.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.653, + "new_cases_per_million": 2.509, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 0.261, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 547.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.594, + "new_cases_per_million": 0.941, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-06-16", + "total_cases": 556.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 29.064, + "new_cases_per_million": 0.47, + "new_cases_smoothed_per_million": 0.844, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 564.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 29.483, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 572.0, + "new_cases": 8.0, + "new_cases_smoothed": 16.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 29.901, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.874, + "total_deaths_per_million": 0.314, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 592.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.857, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 30.946, + "new_cases_per_million": 1.045, + "new_cases_smoothed_per_million": 0.829, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 620.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 32.41, + "new_cases_per_million": 1.464, + "new_cases_smoothed_per_million": 1.038, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 620.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 32.41, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 57.41 + }, + { + "date": "2020-06-22", + "total_cases": 730.0, + "new_cases": 110.0, + "new_cases_smoothed": 26.143, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 38.16, + "new_cases_per_million": 5.75, + "new_cases_smoothed_per_million": 1.367, + "total_deaths_per_million": 0.575, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-23", + "total_cases": 803.0, + "new_cases": 73.0, + "new_cases_smoothed": 35.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 41.976, + "new_cases_per_million": 3.816, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 0.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-24", + "total_cases": 848.0, + "new_cases": 45.0, + "new_cases_smoothed": 40.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 44.328, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 2.121, + "total_deaths_per_million": 0.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-25", + "total_cases": 941.0, + "new_cases": 93.0, + "new_cases_smoothed": 52.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 49.19, + "new_cases_per_million": 4.861, + "new_cases_smoothed_per_million": 2.756, + "total_deaths_per_million": 0.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 960.0, + "new_cases": 19.0, + "new_cases_smoothed": 52.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 50.183, + "new_cases_per_million": 0.993, + "new_cases_smoothed_per_million": 2.748, + "total_deaths_per_million": 0.627, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 57.41 + }, + { + "date": "2020-06-27", + "total_cases": 1005.0, + "new_cases": 45.0, + "new_cases_smoothed": 55.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 52.535, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 2.875, + "total_deaths_per_million": 0.68, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-28", + "total_cases": 1038.0, + "new_cases": 33.0, + "new_cases_smoothed": 59.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 54.26, + "new_cases_per_million": 1.725, + "new_cases_smoothed_per_million": 3.122, + "total_deaths_per_million": 0.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-06-29", + "total_cases": 1146.0, + "new_cases": 108.0, + "new_cases_smoothed": 59.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 59.906, + "new_cases_per_million": 5.646, + "new_cases_smoothed_per_million": 3.107, + "total_deaths_per_million": 0.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-06-30", + "total_cases": 1224.0, + "new_cases": 78.0, + "new_cases_smoothed": 60.143, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 63.983, + "new_cases_per_million": 4.077, + "new_cases_smoothed_per_million": 3.144, + "total_deaths_per_million": 0.732, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 57.41 + }, + { + "date": "2020-07-01", + "total_cases": 1265.0, + "new_cases": 41.0, + "new_cases_smoothed": 59.571, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 66.127, + "new_cases_per_million": 2.143, + "new_cases_smoothed_per_million": 3.114, + "total_deaths_per_million": 0.836, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-07-02", + "total_cases": 1342.0, + "new_cases": 77.0, + "new_cases_smoothed": 57.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 70.152, + "new_cases_per_million": 4.025, + "new_cases_smoothed_per_million": 2.995, + "total_deaths_per_million": 0.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-07-03", + "total_cases": 1402.0, + "new_cases": 60.0, + "new_cases_smoothed": 63.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 73.288, + "new_cases_per_million": 3.136, + "new_cases_smoothed_per_million": 3.301, + "total_deaths_per_million": 0.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 57.41 + }, + { + "date": "2020-07-04", + "total_cases": 1498.0, + "new_cases": 96.0, + "new_cases_smoothed": 70.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 78.307, + "new_cases_per_million": 5.018, + "new_cases_smoothed_per_million": 3.682, + "total_deaths_per_million": 0.836, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 57.41 + }, + { + "date": "2020-07-05", + "total_cases": 1613.0, + "new_cases": 115.0, + "new_cases_smoothed": 82.143, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 84.318, + "new_cases_per_million": 6.012, + "new_cases_smoothed_per_million": 4.294, + "total_deaths_per_million": 0.889, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 57.41 + }, + { + "date": "2020-07-06", + "total_cases": 1742.0, + "new_cases": 129.0, + "new_cases_smoothed": 85.143, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 91.061, + "new_cases_per_million": 6.743, + "new_cases_smoothed_per_million": 4.451, + "total_deaths_per_million": 0.993, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 57.41 + }, + { + "date": "2020-07-07", + "total_cases": 1818.0, + "new_cases": 76.0, + "new_cases_smoothed": 84.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 95.034, + "new_cases_per_million": 3.973, + "new_cases_smoothed_per_million": 4.436, + "total_deaths_per_million": 0.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 57.41 + }, + { + "date": "2020-07-08", + "total_cases": 1877.0, + "new_cases": 59.0, + "new_cases_smoothed": 87.429, + "total_deaths": 24.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 98.118, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 4.57, + "total_deaths_per_million": 1.255, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 57.41 + }, + { + "date": "2020-07-09", + "total_cases": 1929.0, + "new_cases": 52.0, + "new_cases_smoothed": 83.857, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 100.837, + "new_cases_per_million": 2.718, + "new_cases_smoothed_per_million": 4.384, + "total_deaths_per_million": 1.307, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 57.41 + }, + { + "date": "2020-07-10", + "total_cases": 1984.0, + "new_cases": 55.0, + "new_cases_smoothed": 83.143, + "total_deaths": 29.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 103.712, + "new_cases_per_million": 2.875, + "new_cases_smoothed_per_million": 4.346, + "total_deaths_per_million": 1.516, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.097, + "stringency_index": 57.41 + }, + { + "date": "2020-07-11", + "total_cases": 2069.0, + "new_cases": 85.0, + "new_cases_smoothed": 81.571, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 108.155, + "new_cases_per_million": 4.443, + "new_cases_smoothed_per_million": 4.264, + "total_deaths_per_million": 1.62, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 57.41 + }, + { + "date": "2020-07-12", + "total_cases": 2261.0, + "new_cases": 192.0, + "new_cases_smoothed": 92.571, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 118.192, + "new_cases_per_million": 10.037, + "new_cases_smoothed_per_million": 4.839, + "total_deaths_per_million": 1.725, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.119, + "stringency_index": 57.41 + }, + { + "date": "2020-07-13", + "total_cases": 2364.0, + "new_cases": 103.0, + "new_cases_smoothed": 88.857, + "total_deaths": 38.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 123.576, + "new_cases_per_million": 5.384, + "new_cases_smoothed_per_million": 4.645, + "total_deaths_per_million": 1.986, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.142, + "stringency_index": 57.41 + }, + { + "date": "2020-07-14", + "total_cases": 2430.0, + "new_cases": 66.0, + "new_cases_smoothed": 87.429, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 127.026, + "new_cases_per_million": 3.45, + "new_cases_smoothed_per_million": 4.57, + "total_deaths_per_million": 2.039, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 57.41 + }, + { + "date": "2020-07-15", + "total_cases": 2497.0, + "new_cases": 67.0, + "new_cases_smoothed": 88.571, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 130.528, + "new_cases_per_million": 3.502, + "new_cases_smoothed_per_million": 4.63, + "total_deaths_per_million": 2.091, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.119, + "stringency_index": 57.41 + }, + { + "date": "2020-07-16", + "total_cases": 2614.0, + "new_cases": 117.0, + "new_cases_smoothed": 97.857, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 136.644, + "new_cases_per_million": 6.116, + "new_cases_smoothed_per_million": 5.115, + "total_deaths_per_million": 2.248, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 57.41 + }, + { + "date": "2020-07-17", + "total_cases": 2712.0, + "new_cases": 98.0, + "new_cases_smoothed": 104.0, + "total_deaths": 51.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 141.767, + "new_cases_per_million": 5.123, + "new_cases_smoothed_per_million": 5.436, + "total_deaths_per_million": 2.666, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.164, + "stringency_index": 57.41 + }, + { + "date": "2020-07-18", + "total_cases": 2810.0, + "new_cases": 98.0, + "new_cases_smoothed": 105.857, + "total_deaths": 55.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 146.89, + "new_cases_per_million": 5.123, + "new_cases_smoothed_per_million": 5.534, + "total_deaths_per_million": 2.875, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 57.41 + }, + { + "date": "2020-07-19", + "total_cases": 2907.0, + "new_cases": 97.0, + "new_cases_smoothed": 92.286, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 151.961, + "new_cases_per_million": 5.071, + "new_cases_smoothed_per_million": 4.824, + "total_deaths_per_million": 3.084, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 57.41 + }, + { + "date": "2020-07-20", + "total_cases": 2992.0, + "new_cases": 85.0, + "new_cases_smoothed": 89.714, + "total_deaths": 62.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 156.404, + "new_cases_per_million": 4.443, + "new_cases_smoothed_per_million": 4.69, + "total_deaths_per_million": 3.241, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 57.41 + }, + { + "date": "2020-07-21", + "total_cases": 3045.0, + "new_cases": 53.0, + "new_cases_smoothed": 87.857, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 159.174, + "new_cases_per_million": 2.771, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 3.346, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 57.41 + }, + { + "date": "2020-07-22", + "total_cases": 3149.0, + "new_cases": 104.0, + "new_cases_smoothed": 93.143, + "total_deaths": 71.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 164.611, + "new_cases_per_million": 5.436, + "new_cases_smoothed_per_million": 4.869, + "total_deaths_per_million": 3.711, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 57.41 + }, + { + "date": "2020-07-23", + "total_cases": 3302.0, + "new_cases": 153.0, + "new_cases_smoothed": 98.286, + "total_deaths": 76.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 172.609, + "new_cases_per_million": 7.998, + "new_cases_smoothed_per_million": 5.138, + "total_deaths_per_million": 3.973, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 57.41 + }, + { + "date": "2020-07-24", + "total_cases": 3386.0, + "new_cases": 84.0, + "new_cases_smoothed": 96.286, + "total_deaths": 79.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 177.0, + "new_cases_per_million": 4.391, + "new_cases_smoothed_per_million": 5.033, + "total_deaths_per_million": 4.13, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 57.41 + }, + { + "date": "2020-07-25", + "total_cases": 3453.0, + "new_cases": 67.0, + "new_cases_smoothed": 91.857, + "total_deaths": 87.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 180.502, + "new_cases_per_million": 3.502, + "new_cases_smoothed_per_million": 4.802, + "total_deaths_per_million": 4.548, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.239, + "stringency_index": 57.41 + }, + { + "date": "2020-07-26", + "total_cases": 3453.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.0, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 180.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.077, + "total_deaths_per_million": 4.548, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 57.41 + }, + { + "date": "2020-07-27", + "total_cases": 3640.0, + "new_cases": 187.0, + "new_cases_smoothed": 92.571, + "total_deaths": 99.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 190.277, + "new_cases_per_million": 9.775, + "new_cases_smoothed_per_million": 4.839, + "total_deaths_per_million": 5.175, + "new_deaths_per_million": 0.627, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 57.41 + }, + { + "date": "2020-07-28", + "total_cases": 3709.0, + "new_cases": 69.0, + "new_cases_smoothed": 94.857, + "total_deaths": 103.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 193.884, + "new_cases_per_million": 3.607, + "new_cases_smoothed_per_million": 4.959, + "total_deaths_per_million": 5.384, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 57.41 + }, + { + "date": "2020-07-29", + "total_cases": 3709.0, + "new_cases": 0.0, + "new_cases_smoothed": 80.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 193.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.182, + "total_deaths_per_million": 5.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239, + "stringency_index": 57.41 + }, + { + "date": "2020-07-30", + "total_cases": 3858.0, + "new_cases": 149.0, + "new_cases_smoothed": 79.429, + "total_deaths": 107.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 201.673, + "new_cases_per_million": 7.789, + "new_cases_smoothed_per_million": 4.152, + "total_deaths_per_million": 5.593, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 57.41 + }, + { + "date": "2020-07-31", + "total_cases": 3981.0, + "new_cases": 123.0, + "new_cases_smoothed": 85.0, + "total_deaths": 109.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 208.103, + "new_cases_per_million": 6.43, + "new_cases_smoothed_per_million": 4.443, + "total_deaths_per_million": 5.698, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 57.41 + }, + { + "date": "2020-08-01", + "total_cases": 4078.0, + "new_cases": 97.0, + "new_cases_smoothed": 89.286, + "total_deaths": 114.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 213.174, + "new_cases_per_million": 5.071, + "new_cases_smoothed_per_million": 4.667, + "total_deaths_per_million": 5.959, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 57.41 + }, + { + "date": "2020-08-02", + "total_cases": 4186.0, + "new_cases": 108.0, + "new_cases_smoothed": 104.714, + "total_deaths": 120.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 218.819, + "new_cases_per_million": 5.646, + "new_cases_smoothed_per_million": 5.474, + "total_deaths_per_million": 6.273, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 57.41 + }, + { + "date": "2020-08-03", + "total_cases": 4231.0, + "new_cases": 45.0, + "new_cases_smoothed": 84.429, + "total_deaths": 123.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 221.171, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 4.413, + "total_deaths_per_million": 6.43, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 57.41 + }, + { + "date": "2020-08-04", + "total_cases": 4273.0, + "new_cases": 42.0, + "new_cases_smoothed": 80.571, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 223.367, + "new_cases_per_million": 2.196, + "new_cases_smoothed_per_million": 4.212, + "total_deaths_per_million": 6.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "stringency_index": 57.41 + }, + { + "date": "2020-08-05", + "total_cases": 4347.0, + "new_cases": 74.0, + "new_cases_smoothed": 91.143, + "total_deaths": 128.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 227.235, + "new_cases_per_million": 3.868, + "new_cases_smoothed_per_million": 4.764, + "total_deaths_per_million": 6.691, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 57.41 + }, + { + "date": "2020-08-06", + "total_cases": 4426.0, + "new_cases": 79.0, + "new_cases_smoothed": 81.143, + "total_deaths": 136.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 231.365, + "new_cases_per_million": 4.13, + "new_cases_smoothed_per_million": 4.242, + "total_deaths_per_million": 7.109, + "new_deaths_per_million": 0.418, + "new_deaths_smoothed_per_million": 0.217, + "stringency_index": 57.41 + }, + { + "date": "2020-08-07", + "total_cases": 4491.0, + "new_cases": 65.0, + "new_cases_smoothed": 72.857, + "total_deaths": 137.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 234.763, + "new_cases_per_million": 3.398, + "new_cases_smoothed_per_million": 3.809, + "total_deaths_per_million": 7.162, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.209, + "stringency_index": 57.41 + }, + { + "date": "2020-08-08", + "total_cases": 4575.0, + "new_cases": 84.0, + "new_cases_smoothed": 71.0, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 239.154, + "new_cases_per_million": 4.391, + "new_cases_smoothed_per_million": 3.711, + "total_deaths_per_million": 7.162, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 62.04 + }, + { + "date": "2020-08-09", + "total_cases": 4624.0, + "new_cases": 49.0, + "new_cases_smoothed": 62.571, + "total_deaths": 143.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 241.715, + "new_cases_per_million": 2.561, + "new_cases_smoothed_per_million": 3.271, + "total_deaths_per_million": 7.475, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 62.04 + }, + { + "date": "2020-08-10", + "total_cases": 4658.0, + "new_cases": 34.0, + "new_cases_smoothed": 61.0, + "total_deaths": 146.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 243.492, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 3.189, + "total_deaths_per_million": 7.632, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 62.04 + }, + { + "date": "2020-08-11", + "total_cases": 4673.0, + "new_cases": 15.0, + "new_cases_smoothed": 57.143, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 244.277, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 2.987, + "total_deaths_per_million": 7.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 62.04 + }, + { + "date": "2020-08-12", + "total_cases": 4712.0, + "new_cases": 39.0, + "new_cases_smoothed": 52.143, + "total_deaths": 152.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 246.315, + "new_cases_per_million": 2.039, + "new_cases_smoothed_per_million": 2.726, + "total_deaths_per_million": 7.946, + "new_deaths_per_million": 0.314, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 62.04 + }, + { + "date": "2020-08-13", + "total_cases": 4752.0, + "new_cases": 40.0, + "new_cases_smoothed": 46.571, + "total_deaths": 152.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 248.406, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 2.434, + "total_deaths_per_million": 7.946, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.119, + "stringency_index": 62.04 + }, + { + "date": "2020-08-14", + "total_cases": 4912.0, + "new_cases": 160.0, + "new_cases_smoothed": 60.143, + "total_deaths": 153.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 256.77, + "new_cases_per_million": 8.364, + "new_cases_smoothed_per_million": 3.144, + "total_deaths_per_million": 7.998, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.119, + "stringency_index": 62.04 + }, + { + "date": "2020-08-15", + "total_cases": 4988.0, + "new_cases": 76.0, + "new_cases_smoothed": 59.0, + "total_deaths": 156.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 260.743, + "new_cases_per_million": 3.973, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 8.155, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.142, + "stringency_index": 62.04 + }, + { + "date": "2020-08-16", + "total_cases": 5026.0, + "new_cases": 38.0, + "new_cases_smoothed": 57.429, + "total_deaths": 157.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 262.729, + "new_cases_per_million": 1.986, + "new_cases_smoothed_per_million": 3.002, + "total_deaths_per_million": 8.207, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 62.04 + }, + { + "date": "2020-08-17", + "total_cases": 5072.0, + "new_cases": 46.0, + "new_cases_smoothed": 59.143, + "total_deaths": 161.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 265.134, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 3.092, + "total_deaths_per_million": 8.416, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 62.04 + }, + { + "date": "2020-08-18", + "total_cases": 5072.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.0, + "total_deaths": 161.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 265.134, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.98, + "total_deaths_per_million": 8.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 62.04 + }, + { + "date": "2020-08-19", + "total_cases": 5193.0, + "new_cases": 121.0, + "new_cases_smoothed": 68.714, + "total_deaths": 163.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 271.459, + "new_cases_per_million": 6.325, + "new_cases_smoothed_per_million": 3.592, + "total_deaths_per_million": 8.521, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 62.04 + }, + { + "date": "2020-08-20", + "total_cases": 5240.0, + "new_cases": 47.0, + "new_cases_smoothed": 69.714, + "total_deaths": 164.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 273.916, + "new_cases_per_million": 2.457, + "new_cases_smoothed_per_million": 3.644, + "total_deaths_per_million": 8.573, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 62.04 + }, + { + "date": "2020-08-21", + "total_cases": 5240.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.857, + "total_deaths": 164.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 273.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.449, + "total_deaths_per_million": 8.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 62.04 + }, + { + "date": "2020-08-22", + "total_cases": 5282.0, + "new_cases": 42.0, + "new_cases_smoothed": 42.0, + "total_deaths": 165.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 276.111, + "new_cases_per_million": 2.196, + "new_cases_smoothed_per_million": 2.196, + "total_deaths_per_million": 8.625, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 62.04 + }, + { + "date": "2020-08-23", + "total_cases": 5322.0, + "new_cases": 40.0, + "new_cases_smoothed": 42.286, + "total_deaths": 166.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 278.202, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 2.21, + "total_deaths_per_million": 8.677, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 62.04 + }, + { + "date": "2020-08-24", + "total_cases": 5322.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.714, + "total_deaths": 166.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 278.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.867, + "total_deaths_per_million": 8.677, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 62.04 + }, + { + "date": "2020-08-25", + "total_cases": 5419.0, + "new_cases": 97.0, + "new_cases_smoothed": 49.571, + "total_deaths": 169.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 283.273, + "new_cases_per_million": 5.071, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 8.834, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 62.04 + }, + { + "date": "2020-08-26", + "total_cases": 5423.0, + "new_cases": 4.0, + "new_cases_smoothed": 32.857, + "total_deaths": 170.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 283.482, + "new_cases_per_million": 0.209, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 8.887, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 62.04 + }, + { + "date": "2020-08-27", + "total_cases": 5474.0, + "new_cases": 51.0, + "new_cases_smoothed": 33.429, + "total_deaths": 173.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 286.148, + "new_cases_per_million": 2.666, + "new_cases_smoothed_per_million": 1.747, + "total_deaths_per_million": 9.043, + "new_deaths_per_million": 0.157, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 62.04 + }, + { + "date": "2020-08-28", + "total_cases": 5496.0, + "new_cases": 22.0, + "new_cases_smoothed": 36.571, + "total_deaths": 173.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 287.298, + "new_cases_per_million": 1.15, + "new_cases_smoothed_per_million": 1.912, + "total_deaths_per_million": 9.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 62.04 + }, + { + "date": "2020-08-29", + "total_cases": 5523.0, + "new_cases": 27.0, + "new_cases_smoothed": 34.429, + "total_deaths": 174.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 288.71, + "new_cases_per_million": 1.411, + "new_cases_smoothed_per_million": 1.8, + "total_deaths_per_million": 9.096, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 62.04 + }, + { + "date": "2020-08-30", + "total_cases": 5528.0, + "new_cases": 5.0, + "new_cases_smoothed": 29.429, + "total_deaths": 174.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 288.971, + "new_cases_per_million": 0.261, + "new_cases_smoothed_per_million": 1.538, + "total_deaths_per_million": 9.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 62.04 + }, + { + "date": "2020-08-31", + "total_cases": 5536.0, + "new_cases": 8.0, + "new_cases_smoothed": 30.571, + "total_deaths": 174.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 289.389, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 1.598, + "total_deaths_per_million": 9.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 62.04 + }, + { + "date": "2020-09-01", + "total_cases": 5566.0, + "new_cases": 30.0, + "new_cases_smoothed": 21.0, + "total_deaths": 175.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 290.957, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 1.098, + "total_deaths_per_million": 9.148, + "new_deaths_per_million": 0.052, + "new_deaths_smoothed_per_million": 0.045 + }, + { + "date": "2020-09-02", + "total_cases": 5576.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.857, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 291.48, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 9.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037 + }, + { + "date": "2020-09-03", + "total_cases": 5579.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.0, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 291.637, + "new_cases_per_million": 0.157, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 9.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-09-04", + "total_cases": 5593.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.857, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 292.369, + "new_cases_per_million": 0.732, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 9.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-09-05", + "total_cases": 5608.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.143, + "total_deaths": 175.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 293.153, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.635, + "total_deaths_per_million": 9.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + } + ] + }, + "MYS": { + "continent": "Asia", + "location": "Malaysia", + "population": 32365998.0, + "population_density": 96.254, + "median_age": 29.9, + "aged_65_older": 6.293, + "aged_70_older": 3.407, + "gdp_per_capita": 26808.164, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 260.942, + "diabetes_prevalence": 16.74, + "female_smokers": 1.0, + "male_smokers": 42.4, + "hospital_beds_per_thousand": 1.9, + "life_expectancy": 76.16, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-25", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.093, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-26", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.216, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-31", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.371, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.433, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.463, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.494, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.556, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.556, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.556, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.556, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.587, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 653.0, + "total_tests_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.649, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 656.0, + "total_tests_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 101.0, + "total_tests": 757.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 797.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 880.0, + "total_tests_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 88.0, + "total_tests": 968.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 105.0, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1028.0, + "total_tests_per_thousand": 0.032, + "new_tests_smoothed": 53.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 1054.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 1067.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 1091.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 454.0, + "total_tests": 1545.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 95.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.711, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 1548.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 83.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 581.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.772, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 88.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 205.333, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 92.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 214.667, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.896, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1739.0, + "total_tests_per_thousand": 0.054, + "new_tests_smoothed": 98.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 113.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 113.0, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 36.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.112, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1983.0, + "total_tests_per_thousand": 0.061, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 63.5, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 50.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.545, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 83.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 20.75, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.545, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 102.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 26.444000000000003, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "total_cases": 83.0, + "new_cases": 33.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.564, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 113.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 13.638, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-08", + "total_cases": 93.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.873, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 12.765, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-09", + "total_cases": 99.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.059, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2686.0, + "total_tests_per_thousand": 0.083, + "new_tests_smoothed": 135.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 13.5, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-10", + "total_cases": 117.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.615, + "new_cases_per_million": 0.556, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 181.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 14.398, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-11", + "total_cases": 129.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.986, + "new_cases_per_million": 0.371, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3573.0, + "total_tests_per_thousand": 0.11, + "new_tests_smoothed": 227.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 17.086, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-03-12", + "total_cases": 149.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.604, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 3691.0, + "total_tests_per_thousand": 0.114, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 224.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 15.838, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-13", + "total_cases": 158.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.882, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.477, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 290.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 18.796, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-14", + "total_cases": 197.0, + "new_cases": 39.0, + "new_cases_smoothed": 16.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.087, + "new_cases_per_million": 1.205, + "new_cases_smoothed_per_million": 0.503, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4899.0, + "total_tests_per_thousand": 0.151, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 21.86, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-15", + "total_cases": 238.0, + "new_cases": 41.0, + "new_cases_smoothed": 20.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.353, + "new_cases_per_million": 1.267, + "new_cases_smoothed_per_million": 0.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 20.71, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-16", + "total_cases": 428.0, + "new_cases": 190.0, + "new_cases_smoothed": 47.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.224, + "new_cases_per_million": 5.87, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.66, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-17", + "total_cases": 553.0, + "new_cases": 125.0, + "new_cases_smoothed": 62.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.086, + "new_cases_per_million": 3.862, + "new_cases_smoothed_per_million": 1.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6842.0, + "total_tests_per_thousand": 0.211, + "new_tests_smoothed": 530.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 8.509, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-03-18", + "total_cases": 673.0, + "new_cases": 120.0, + "new_cases_smoothed": 77.714, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.793, + "new_cases_per_million": 3.708, + "new_cases_smoothed_per_million": 2.401, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 7.875, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-19", + "total_cases": 790.0, + "new_cases": 117.0, + "new_cases_smoothed": 91.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.408, + "new_cases_per_million": 3.615, + "new_cases_smoothed_per_million": 2.829, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 8873.0, + "total_tests_per_thousand": 0.274, + "new_tests_smoothed": 740.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 8.081, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-20", + "total_cases": 900.0, + "new_cases": 110.0, + "new_cases_smoothed": 106.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 27.807, + "new_cases_per_million": 3.399, + "new_cases_smoothed_per_million": 3.275, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 1270.0, + "total_tests": 10143.0, + "total_tests_per_thousand": 0.313, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 835.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 7.877000000000001, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-21", + "total_cases": 1030.0, + "new_cases": 130.0, + "new_cases_smoothed": 119.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 31.824, + "new_cases_per_million": 4.017, + "new_cases_smoothed_per_million": 3.677, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 830.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 6.975, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-22", + "total_cases": 1183.0, + "new_cases": 153.0, + "new_cases_smoothed": 135.0, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 36.551, + "new_cases_per_million": 4.727, + "new_cases_smoothed_per_million": 4.171, + "total_deaths_per_million": 0.124, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 11275.0, + "total_tests_per_thousand": 0.348, + "new_tests_smoothed": 818.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 6.059, + "positive_rate": 0.165, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-23", + "total_cases": 1306.0, + "new_cases": 123.0, + "new_cases_smoothed": 125.429, + "total_deaths": 10.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 40.351, + "new_cases_per_million": 3.8, + "new_cases_smoothed_per_million": 3.875, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1835.0, + "total_tests": 13110.0, + "total_tests_per_thousand": 0.405, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 988.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 7.877000000000001, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-24", + "total_cases": 1518.0, + "new_cases": 212.0, + "new_cases_smoothed": 137.857, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 46.901, + "new_cases_per_million": 6.55, + "new_cases_smoothed_per_million": 4.259, + "total_deaths_per_million": 0.433, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 484.0, + "total_tests": 13594.0, + "total_tests_per_thousand": 0.42, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 965.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-25", + "total_cases": 1624.0, + "new_cases": 106.0, + "new_cases_smoothed": 135.857, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 50.176, + "new_cases_per_million": 3.275, + "new_cases_smoothed_per_million": 4.198, + "total_deaths_per_million": 0.463, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 2226.0, + "total_tests": 15820.0, + "total_tests_per_thousand": 0.489, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1138.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 8.376, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-26", + "total_cases": 1796.0, + "new_cases": 172.0, + "new_cases_smoothed": 143.714, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 55.49, + "new_cases_per_million": 5.314, + "new_cases_smoothed_per_million": 4.44, + "total_deaths_per_million": 0.587, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 1163.0, + "total_tests": 16983.0, + "total_tests_per_thousand": 0.525, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1159.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 8.065, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 2031.0, + "new_cases": 235.0, + "new_cases_smoothed": 161.571, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 62.751, + "new_cases_per_million": 7.261, + "new_cases_smoothed_per_million": 4.992, + "total_deaths_per_million": 0.711, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 7185.0, + "total_tests": 24168.0, + "total_tests_per_thousand": 0.747, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 2004.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.402999999999999, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 2161.0, + "new_cases": 130.0, + "new_cases_smoothed": 161.571, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 66.768, + "new_cases_per_million": 4.017, + "new_cases_smoothed_per_million": 4.992, + "total_deaths_per_million": 0.803, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 5293.0, + "total_tests": 29461.0, + "total_tests_per_thousand": 0.91, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 2679.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 16.581, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 2320.0, + "new_cases": 159.0, + "new_cases_smoothed": 162.429, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 71.68, + "new_cases_per_million": 4.913, + "new_cases_smoothed_per_million": 5.018, + "total_deaths_per_million": 0.834, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.102, + "new_tests_smoothed": 2723.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 16.764, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 2470.0, + "new_cases": 150.0, + "new_cases_smoothed": 166.286, + "total_deaths": 34.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 76.315, + "new_cases_per_million": 4.634, + "new_cases_smoothed_per_million": 5.138, + "total_deaths_per_million": 1.05, + "new_deaths_per_million": 0.216, + "new_deaths_smoothed_per_million": 0.106, + "total_tests": 31206.0, + "total_tests_per_thousand": 0.964, + "new_tests_smoothed": 2585.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 15.546, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 2626.0, + "new_cases": 156.0, + "new_cases_smoothed": 158.286, + "total_deaths": 37.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 81.135, + "new_cases_per_million": 4.82, + "new_cases_smoothed_per_million": 4.89, + "total_deaths_per_million": 1.143, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 1058.0, + "total_tests": 32264.0, + "total_tests_per_thousand": 0.997, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 2667.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 16.849, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-01", + "total_cases": 2766.0, + "new_cases": 140.0, + "new_cases_smoothed": 163.143, + "total_deaths": 43.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 85.46, + "new_cases_per_million": 4.326, + "new_cases_smoothed_per_million": 5.041, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 3538.0, + "total_tests": 35802.0, + "total_tests_per_thousand": 1.106, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 2855.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 17.5, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-02", + "total_cases": 2908.0, + "new_cases": 142.0, + "new_cases_smoothed": 158.857, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 89.847, + "new_cases_per_million": 4.387, + "new_cases_smoothed_per_million": 4.908, + "total_deaths_per_million": 1.39, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.115, + "new_tests": 1797.0, + "total_tests": 37599.0, + "total_tests_per_thousand": 1.162, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2945.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 18.539, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 3116.0, + "new_cases": 208.0, + "new_cases_smoothed": 155.0, + "total_deaths": 50.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 96.274, + "new_cases_per_million": 6.426, + "new_cases_smoothed_per_million": 4.789, + "total_deaths_per_million": 1.545, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 1859.0, + "total_tests": 39458.0, + "total_tests_per_thousand": 1.219, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 2184.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 14.09, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-04", + "total_cases": 3333.0, + "new_cases": 217.0, + "new_cases_smoothed": 167.429, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 102.978, + "new_cases_per_million": 6.705, + "new_cases_smoothed_per_million": 5.173, + "total_deaths_per_million": 1.638, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 1465.0, + "total_tests": 40923.0, + "total_tests_per_thousand": 1.264, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 1637.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 9.777000000000001, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-05", + "total_cases": 3483.0, + "new_cases": 150.0, + "new_cases_smoothed": 166.143, + "total_deaths": 57.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 107.613, + "new_cases_per_million": 4.634, + "new_cases_smoothed_per_million": 5.133, + "total_deaths_per_million": 1.761, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 2616.0, + "total_tests": 43539.0, + "total_tests_per_thousand": 1.345, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 1886.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 11.352, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-06", + "total_cases": 3662.0, + "new_cases": 179.0, + "new_cases_smoothed": 170.286, + "total_deaths": 61.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 113.143, + "new_cases_per_million": 5.53, + "new_cases_smoothed_per_million": 5.261, + "total_deaths_per_million": 1.885, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 3918.0, + "total_tests": 47457.0, + "total_tests_per_thousand": 1.466, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 2322.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 13.636, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 3793.0, + "new_cases": 131.0, + "new_cases_smoothed": 166.714, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 117.191, + "new_cases_per_million": 4.047, + "new_cases_smoothed_per_million": 5.151, + "total_deaths_per_million": 1.916, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 5028.0, + "total_tests": 52485.0, + "total_tests_per_thousand": 1.622, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 2889.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 17.329, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 3963.0, + "new_cases": 170.0, + "new_cases_smoothed": 171.0, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 122.443, + "new_cases_per_million": 5.252, + "new_cases_smoothed_per_million": 5.283, + "total_deaths_per_million": 1.946, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 5755.0, + "total_tests": 58240.0, + "total_tests_per_thousand": 1.799, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 3205.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 18.743, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 4119.0, + "new_cases": 156.0, + "new_cases_smoothed": 173.0, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 127.263, + "new_cases_per_million": 4.82, + "new_cases_smoothed_per_million": 5.345, + "total_deaths_per_million": 2.008, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 5127.0, + "total_tests": 63367.0, + "total_tests_per_thousand": 1.958, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 3681.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 21.276999999999997, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 4228.0, + "new_cases": 109.0, + "new_cases_smoothed": 158.857, + "total_deaths": 67.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 130.631, + "new_cases_per_million": 3.368, + "new_cases_smoothed_per_million": 4.908, + "total_deaths_per_million": 2.07, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 4584.0, + "total_tests": 67951.0, + "total_tests_per_thousand": 2.099, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 4070.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 25.621, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 4346.0, + "new_cases": 118.0, + "new_cases_smoothed": 144.714, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 134.277, + "new_cases_per_million": 3.646, + "new_cases_smoothed_per_million": 4.471, + "total_deaths_per_million": 2.163, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 3946.0, + "total_tests": 71897.0, + "total_tests_per_thousand": 2.221, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 4425.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 30.576999999999998, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 4530.0, + "new_cases": 184.0, + "new_cases_smoothed": 149.571, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 139.962, + "new_cases_per_million": 5.685, + "new_cases_smoothed_per_million": 4.621, + "total_deaths_per_million": 2.255, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 5594.0, + "total_tests": 77491.0, + "total_tests_per_thousand": 2.394, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 4850.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 32.426, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 4683.0, + "new_cases": 153.0, + "new_cases_smoothed": 145.857, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 144.689, + "new_cases_per_million": 4.727, + "new_cases_smoothed_per_million": 4.506, + "total_deaths_per_million": 2.348, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 4239.0, + "total_tests": 81730.0, + "total_tests_per_thousand": 2.525, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 4896.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 33.567, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 4817.0, + "new_cases": 134.0, + "new_cases_smoothed": 146.286, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 148.829, + "new_cases_per_million": 4.14, + "new_cases_smoothed_per_million": 4.52, + "total_deaths_per_million": 2.379, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 3061.0, + "total_tests": 84791.0, + "total_tests_per_thousand": 2.62, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 4615.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 31.548000000000002, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 4987.0, + "new_cases": 170.0, + "new_cases_smoothed": 146.286, + "total_deaths": 82.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 154.081, + "new_cases_per_million": 5.252, + "new_cases_smoothed_per_million": 4.52, + "total_deaths_per_million": 2.534, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2392.0, + "total_tests": 87183.0, + "total_tests_per_thousand": 2.694, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 4135.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 28.267, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 5072.0, + "new_cases": 85.0, + "new_cases_smoothed": 136.143, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 156.708, + "new_cases_per_million": 2.626, + "new_cases_smoothed_per_million": 4.206, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.079, + "new_tests_smoothed": 4082.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 29.983, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 5182.0, + "new_cases": 110.0, + "new_cases_smoothed": 136.286, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 160.106, + "new_cases_per_million": 3.399, + "new_cases_smoothed_per_million": 4.211, + "total_deaths_per_million": 2.595, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.075, + "total_tests": 96695.0, + "total_tests_per_thousand": 2.988, + "new_tests_smoothed": 4106.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 30.128, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 5251.0, + "new_cases": 69.0, + "new_cases_smoothed": 129.286, + "total_deaths": 86.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 162.238, + "new_cases_per_million": 2.132, + "new_cases_smoothed_per_million": 3.994, + "total_deaths_per_million": 2.657, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 4099.0, + "total_tests": 100794.0, + "total_tests_per_thousand": 3.114, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 4128.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 31.929000000000002, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 5305.0, + "new_cases": 54.0, + "new_cases_smoothed": 110.714, + "total_deaths": 88.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 163.907, + "new_cases_per_million": 1.668, + "new_cases_smoothed_per_million": 3.421, + "total_deaths_per_million": 2.719, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 3098.0, + "total_tests": 103892.0, + "total_tests_per_thousand": 3.21, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 3772.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 34.07, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 5389.0, + "new_cases": 84.0, + "new_cases_smoothed": 100.857, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 166.502, + "new_cases_per_million": 2.595, + "new_cases_smoothed_per_million": 3.116, + "total_deaths_per_million": 2.75, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 4324.0, + "total_tests": 108216.0, + "total_tests_per_thousand": 3.344, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 3784.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 37.518, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 5425.0, + "new_cases": 36.0, + "new_cases_smoothed": 86.857, + "total_deaths": 89.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 167.614, + "new_cases_per_million": 1.112, + "new_cases_smoothed_per_million": 2.684, + "total_deaths_per_million": 2.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests_smoothed": 3742.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 43.082, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 5482.0, + "new_cases": 57.0, + "new_cases_smoothed": 70.714, + "total_deaths": 92.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 169.375, + "new_cases_per_million": 1.761, + "new_cases_smoothed_per_million": 2.185, + "total_deaths_per_million": 2.842, + "new_deaths_per_million": 0.093, + "new_deaths_smoothed_per_million": 0.044, + "total_tests": 113755.0, + "total_tests_per_thousand": 3.515, + "new_tests_smoothed": 3796.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 53.681000000000004, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 5532.0, + "new_cases": 50.0, + "new_cases_smoothed": 65.714, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 170.92, + "new_cases_per_million": 1.545, + "new_cases_smoothed_per_million": 2.03, + "total_deaths_per_million": 2.873, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 3651.0, + "total_tests": 117406.0, + "total_tests_per_thousand": 3.627, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 3638.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 55.361000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 5603.0, + "new_cases": 71.0, + "new_cases_smoothed": 60.143, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 173.114, + "new_cases_per_million": 2.194, + "new_cases_smoothed_per_million": 1.858, + "total_deaths_per_million": 2.935, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.049, + "new_tests": 4316.0, + "total_tests": 121722.0, + "total_tests_per_thousand": 3.761, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 3575.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 59.442, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 5691.0, + "new_cases": 88.0, + "new_cases_smoothed": 62.857, + "total_deaths": 96.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 175.833, + "new_cases_per_million": 2.719, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 2.966, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 5248.0, + "total_tests": 126970.0, + "total_tests_per_thousand": 3.923, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 3739.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 59.483999999999995, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 5742.0, + "new_cases": 51.0, + "new_cases_smoothed": 62.429, + "total_deaths": 98.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 177.408, + "new_cases_per_million": 1.576, + "new_cases_smoothed_per_million": 1.929, + "total_deaths_per_million": 3.028, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 4521.0, + "total_tests": 131491.0, + "total_tests_per_thousand": 4.063, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 3943.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 63.16, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 5780.0, + "new_cases": 38.0, + "new_cases_smoothed": 55.857, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 178.582, + "new_cases_per_million": 1.174, + "new_cases_smoothed_per_million": 1.726, + "total_deaths_per_million": 3.028, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 7407.0, + "total_tests": 138898.0, + "total_tests_per_thousand": 4.291, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 4383.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 78.468, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 5820.0, + "new_cases": 40.0, + "new_cases_smoothed": 56.429, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 179.818, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.743, + "total_deaths_per_million": 3.059, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 7901.0, + "total_tests": 146799.0, + "total_tests_per_thousand": 4.536, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 5116.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 90.663, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 5851.0, + "new_cases": 31.0, + "new_cases_smoothed": 52.714, + "total_deaths": 100.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 180.776, + "new_cases_per_million": 0.958, + "new_cases_smoothed_per_million": 1.629, + "total_deaths_per_million": 3.09, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 7404.0, + "total_tests": 154203.0, + "total_tests_per_thousand": 4.764, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 5778.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 109.61, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 5945.0, + "new_cases": 94.0, + "new_cases_smoothed": 59.0, + "total_deaths": 100.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 183.68, + "new_cases_per_million": 2.904, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 3.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 6298.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 106.74600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 6002.0, + "new_cases": 57.0, + "new_cases_smoothed": 57.0, + "total_deaths": 102.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 185.442, + "new_cases_per_million": 1.761, + "new_cases_smoothed_per_million": 1.761, + "total_deaths_per_million": 3.151, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.031, + "total_tests": 168784.0, + "total_tests_per_thousand": 5.215, + "new_tests_smoothed": 6723.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 117.947, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 6071.0, + "new_cases": 69.0, + "new_cases_smoothed": 54.286, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 187.573, + "new_cases_per_million": 2.132, + "new_cases_smoothed_per_million": 1.677, + "total_deaths_per_million": 3.182, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 15429.0, + "total_tests": 184213.0, + "total_tests_per_thousand": 5.692, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 8178.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 150.64700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 6176.0, + "new_cases": 105.0, + "new_cases_smoothed": 62.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 190.818, + "new_cases_per_million": 3.244, + "new_cases_smoothed_per_million": 1.916, + "total_deaths_per_million": 3.182, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 11620.0, + "total_tests": 195833.0, + "total_tests_per_thousand": 6.051, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 9192.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 148.25799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 6298.0, + "new_cases": 122.0, + "new_cases_smoothed": 74.0, + "total_deaths": 105.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 194.587, + "new_cases_per_million": 3.769, + "new_cases_smoothed_per_million": 2.286, + "total_deaths_per_million": 3.244, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 9765.0, + "total_tests": 205598.0, + "total_tests_per_thousand": 6.352, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 9529.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 128.77, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-05", + "total_cases": 6353.0, + "new_cases": 55.0, + "new_cases_smoothed": 76.143, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 196.286, + "new_cases_per_million": 1.699, + "new_cases_smoothed_per_million": 2.353, + "total_deaths_per_million": 3.244, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 7622.0, + "total_tests": 213220.0, + "total_tests_per_thousand": 6.588, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 9489.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 124.62100000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-06", + "total_cases": 6383.0, + "new_cases": 30.0, + "new_cases_smoothed": 76.0, + "total_deaths": 106.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 197.213, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 2.348, + "total_deaths_per_million": 3.275, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 8930.0, + "total_tests": 222150.0, + "total_tests_per_thousand": 6.864, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 9707.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 127.72399999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-07", + "total_cases": 6428.0, + "new_cases": 45.0, + "new_cases_smoothed": 69.0, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 198.603, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.132, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 8869.0, + "total_tests": 231019.0, + "total_tests_per_thousand": 7.138, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 9932.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 143.942, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-08", + "total_cases": 6467.0, + "new_cases": 39.0, + "new_cases_smoothed": 66.429, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 199.808, + "new_cases_per_million": 1.205, + "new_cases_smoothed_per_million": 2.052, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 8609.0, + "total_tests": 239628.0, + "total_tests_per_thousand": 7.404, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 10121.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 152.359, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-09", + "total_cases": 6535.0, + "new_cases": 68.0, + "new_cases_smoothed": 66.286, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 201.909, + "new_cases_per_million": 2.101, + "new_cases_smoothed_per_million": 2.048, + "total_deaths_per_million": 3.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 9153.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 138.084, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-10", + "total_cases": 6589.0, + "new_cases": 54.0, + "new_cases_smoothed": 59.0, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 203.578, + "new_cases_per_million": 1.668, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 3.337, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.022, + "total_tests": 256937.0, + "total_tests_per_thousand": 7.938, + "new_tests_smoothed": 8729.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 147.94899999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-11", + "total_cases": 6656.0, + "new_cases": 67.0, + "new_cases_smoothed": 51.143, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 205.648, + "new_cases_per_million": 2.07, + "new_cases_smoothed_per_million": 1.58, + "total_deaths_per_million": 3.337, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 9111.0, + "total_tests": 266048.0, + "total_tests_per_thousand": 8.22, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 8636.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 168.86, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-12", + "total_cases": 6726.0, + "new_cases": 70.0, + "new_cases_smoothed": 53.286, + "total_deaths": 109.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 207.811, + "new_cases_per_million": 2.163, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 3.368, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.018, + "new_tests_smoothed": 9037.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 169.595, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-13", + "total_cases": 6742.0, + "new_cases": 16.0, + "new_cases_smoothed": 51.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 208.305, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 1.585, + "total_deaths_per_million": 3.368, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests_smoothed": 9252.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 180.40099999999998, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-14", + "total_cases": 6779.0, + "new_cases": 37.0, + "new_cases_smoothed": 50.143, + "total_deaths": 111.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 209.448, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 3.43, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 297342.0, + "total_tests_per_thousand": 9.187, + "new_tests_smoothed": 9475.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 188.96, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-15", + "total_cases": 6819.0, + "new_cases": 40.0, + "new_cases_smoothed": 50.286, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 210.684, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.554, + "total_deaths_per_million": 3.46, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 126964.0, + "total_tests": 424306.0, + "total_tests_per_thousand": 13.11, + "new_tests_per_thousand": 3.923, + "new_tests_smoothed": 26383.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 524.6619999999999, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-16", + "total_cases": 6855.0, + "new_cases": 36.0, + "new_cases_smoothed": 45.714, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 211.796, + "new_cases_per_million": 1.112, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 3.46, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 9830.0, + "total_tests": 434136.0, + "total_tests_per_thousand": 13.413, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 26550.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 580.781, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-17", + "total_cases": 6872.0, + "new_cases": 17.0, + "new_cases_smoothed": 40.429, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 212.322, + "new_cases_per_million": 0.525, + "new_cases_smoothed_per_million": 1.249, + "total_deaths_per_million": 3.491, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 9127.0, + "total_tests": 443263.0, + "total_tests_per_thousand": 13.695, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 26618.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 658.3960000000001, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-18", + "total_cases": 6894.0, + "new_cases": 22.0, + "new_cases_smoothed": 34.0, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 213.001, + "new_cases_per_million": 0.68, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 3.491, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests_smoothed": 26673.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 784.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-19", + "total_cases": 6941.0, + "new_cases": 47.0, + "new_cases_smoothed": 30.714, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 214.453, + "new_cases_per_million": 1.452, + "new_cases_smoothed_per_million": 0.949, + "total_deaths_per_million": 3.491, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 462257.0, + "total_tests_per_thousand": 14.282, + "new_tests_smoothed": 26540.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 864.0930000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-20", + "total_cases": 6978.0, + "new_cases": 37.0, + "new_cases_smoothed": 33.714, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 215.597, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 1.042, + "total_deaths_per_million": 3.522, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 9061.0, + "total_tests": 471318.0, + "total_tests_per_thousand": 14.562, + "new_tests_per_thousand": 0.28, + "new_tests_smoothed": 26344.0, + "new_tests_smoothed_per_thousand": 0.814, + "tests_per_case": 781.39, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-21", + "total_cases": 7009.0, + "new_cases": 31.0, + "new_cases_smoothed": 32.857, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 216.554, + "new_cases_per_million": 0.958, + "new_cases_smoothed_per_million": 1.015, + "total_deaths_per_million": 3.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 10093.0, + "total_tests": 481411.0, + "total_tests_per_thousand": 14.874, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 26296.0, + "new_tests_smoothed_per_thousand": 0.812, + "tests_per_case": 800.313, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-22", + "total_cases": 7059.0, + "new_cases": 50.0, + "new_cases_smoothed": 34.286, + "total_deaths": 114.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 218.099, + "new_cases_per_million": 1.545, + "new_cases_smoothed_per_million": 1.059, + "total_deaths_per_million": 3.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 10318.0, + "total_tests": 491729.0, + "total_tests_per_thousand": 15.193, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 9632.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 280.933, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-23", + "total_cases": 7137.0, + "new_cases": 78.0, + "new_cases_smoothed": 40.286, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 220.509, + "new_cases_per_million": 2.41, + "new_cases_smoothed_per_million": 1.245, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 8740.0, + "total_tests": 500469.0, + "total_tests_per_thousand": 15.463, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 9476.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 235.22, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 7185.0, + "new_cases": 48.0, + "new_cases_smoothed": 44.714, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 221.992, + "new_cases_per_million": 1.483, + "new_cases_smoothed_per_million": 1.382, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 7213.0, + "total_tests": 507682.0, + "total_tests_per_thousand": 15.686, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 9203.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 205.81799999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 7245.0, + "new_cases": 60.0, + "new_cases_smoothed": 50.143, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 223.846, + "new_cases_per_million": 1.854, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 5688.0, + "total_tests": 513370.0, + "total_tests_per_thousand": 15.861, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 8659.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 172.687, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 7417.0, + "new_cases": 172.0, + "new_cases_smoothed": 68.0, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 229.16, + "new_cases_per_million": 5.314, + "new_cases_smoothed_per_million": 2.101, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 6574.0, + "total_tests": 519944.0, + "total_tests_per_thousand": 16.065, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 8241.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 121.191, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 7604.0, + "new_cases": 187.0, + "new_cases_smoothed": 89.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 234.938, + "new_cases_per_million": 5.778, + "new_cases_smoothed_per_million": 2.763, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests_smoothed": 7701.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 86.113, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 7619.0, + "new_cases": 15.0, + "new_cases_smoothed": 87.143, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.401, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 2.692, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "total_tests": 530501.0, + "total_tests_per_thousand": 16.391, + "new_tests_smoothed": 7013.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 80.477, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 7629.0, + "new_cases": 10.0, + "new_cases_smoothed": 81.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.71, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 2.516, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7393.0, + "total_tests": 537894.0, + "total_tests_per_thousand": 16.619, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 6595.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 80.991, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 7732.0, + "new_cases": 103.0, + "new_cases_smoothed": 85.0, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.893, + "new_cases_per_million": 3.182, + "new_cases_smoothed_per_million": 2.626, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8474.0, + "total_tests": 546368.0, + "total_tests_per_thousand": 16.881, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 6557.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 77.141, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 7762.0, + "new_cases": 30.0, + "new_cases_smoothed": 82.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.82, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 2.547, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6815.0, + "total_tests": 553183.0, + "total_tests_per_thousand": 17.091, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 6500.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 78.85600000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 7819.0, + "new_cases": 57.0, + "new_cases_smoothed": 82.0, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.581, + "new_cases_per_million": 1.761, + "new_cases_smoothed_per_million": 2.534, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7555.0, + "total_tests": 560738.0, + "total_tests_per_thousand": 17.325, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 6767.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 82.524, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 7857.0, + "new_cases": 38.0, + "new_cases_smoothed": 62.857, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.755, + "new_cases_per_million": 1.174, + "new_cases_smoothed_per_million": 1.942, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6549.0, + "total_tests": 567287.0, + "total_tests_per_thousand": 17.527, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 6763.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 107.59299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-03", + "total_cases": 7877.0, + "new_cases": 20.0, + "new_cases_smoothed": 39.0, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.373, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 1.205, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8218.0, + "total_tests": 575505.0, + "total_tests_per_thousand": 17.781, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 7183.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 184.179, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-04", + "total_cases": 7970.0, + "new_cases": 93.0, + "new_cases_smoothed": 50.143, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.246, + "new_cases_per_million": 2.873, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6981.0, + "total_tests": 582486.0, + "total_tests_per_thousand": 17.997, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 7426.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 148.097, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-05", + "total_cases": 7970.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.714, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.246, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.505, + "total_deaths_per_million": 3.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8127.0, + "total_tests": 590613.0, + "total_tests_per_thousand": 18.248, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 7531.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 154.595, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-06", + "total_cases": 8266.0, + "new_cases": 296.0, + "new_cases_smoothed": 76.286, + "total_deaths": 116.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 255.391, + "new_cases_per_million": 9.145, + "new_cases_smoothed_per_million": 2.357, + "total_deaths_per_million": 3.584, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 8841.0, + "total_tests": 599454.0, + "total_tests_per_thousand": 18.521, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 7584.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 99.416, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-07", + "total_cases": 8303.0, + "new_cases": 37.0, + "new_cases_smoothed": 77.286, + "total_deaths": 117.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 256.535, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 2.388, + "total_deaths_per_million": 3.615, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 7666.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 99.19, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-08", + "total_cases": 8322.0, + "new_cases": 19.0, + "new_cases_smoothed": 71.857, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 257.122, + "new_cases_per_million": 0.587, + "new_cases_smoothed_per_million": 2.22, + "total_deaths_per_million": 3.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 614239.0, + "total_tests_per_thousand": 18.978, + "new_tests_smoothed": 7643.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 106.36399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-09", + "total_cases": 8329.0, + "new_cases": 7.0, + "new_cases_smoothed": 67.429, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 257.338, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 2.083, + "total_deaths_per_million": 3.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 6081.0, + "total_tests": 620320.0, + "total_tests_per_thousand": 19.166, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 7576.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 112.35600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-10", + "total_cases": 8336.0, + "new_cases": 7.0, + "new_cases_smoothed": 65.571, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 257.554, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 2.026, + "total_deaths_per_million": 3.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 5455.0, + "total_tests": 625775.0, + "total_tests_per_thousand": 19.334, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 7181.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 109.514, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 8338.0, + "new_cases": 2.0, + "new_cases_smoothed": 52.571, + "total_deaths": 118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 257.616, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 1.624, + "total_deaths_per_million": 3.646, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 5833.0, + "total_tests": 631608.0, + "total_tests_per_thousand": 19.515, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 7017.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 133.476, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 8369.0, + "new_cases": 31.0, + "new_cases_smoothed": 57.0, + "total_deaths": 118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 258.574, + "new_cases_per_million": 0.958, + "new_cases_smoothed_per_million": 1.761, + "total_deaths_per_million": 3.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 9072.0, + "total_tests": 640680.0, + "total_tests_per_thousand": 19.795, + "new_tests_per_thousand": 0.28, + "new_tests_smoothed": 7152.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 125.47399999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 8402.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.429, + "total_deaths": 119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 259.593, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 3.677, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 5375.0, + "total_tests": 646055.0, + "total_tests_per_thousand": 19.961, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 6657.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 342.64, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 8445.0, + "new_cases": 43.0, + "new_cases_smoothed": 20.286, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 260.922, + "new_cases_per_million": 1.329, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 3.708, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 5289.0, + "total_tests": 651344.0, + "total_tests_per_thousand": 20.124, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 6357.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 313.373, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 8453.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.714, + "total_deaths": 121.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 261.169, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 4866.0, + "total_tests": 656210.0, + "total_tests_per_thousand": 20.275, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 5996.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 320.397, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-16", + "total_cases": 8494.0, + "new_cases": 41.0, + "new_cases_smoothed": 23.571, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 262.436, + "new_cases_per_million": 1.267, + "new_cases_smoothed_per_million": 0.728, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3422.0, + "total_tests": 659632.0, + "total_tests_per_thousand": 20.38, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 5616.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 238.255, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 8505.0, + "new_cases": 11.0, + "new_cases_smoothed": 24.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 262.776, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.746, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 4702.0, + "total_tests": 664334.0, + "total_tests_per_thousand": 20.526, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 5508.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 228.142, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 8515.0, + "new_cases": 10.0, + "new_cases_smoothed": 25.286, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 263.085, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 5255.0, + "total_tests": 669589.0, + "total_tests_per_thousand": 20.688, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 5426.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 214.588, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 8529.0, + "new_cases": 14.0, + "new_cases_smoothed": 22.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 263.517, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 4962.0, + "total_tests": 674551.0, + "total_tests_per_thousand": 20.841, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 4839.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 211.706, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-20", + "total_cases": 8535.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 263.703, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 5275.0, + "total_tests": 679826.0, + "total_tests_per_thousand": 21.004, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 4824.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 253.895, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-21", + "total_cases": 8556.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 264.351, + "new_cases_per_million": 0.649, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 4142.0, + "total_tests": 683968.0, + "total_tests_per_thousand": 21.132, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 4661.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 293.937, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-22", + "total_cases": 8572.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.846, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 0.525, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2937.0, + "total_tests": 686905.0, + "total_tests_per_thousand": 21.223, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 4385.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 257.941, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-23", + "total_cases": 8587.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.286, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.309, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6698.0, + "total_tests": 693603.0, + "total_tests_per_thousand": 21.43, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 4853.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 365.28, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-24", + "total_cases": 8590.0, + "new_cases": 3.0, + "new_cases_smoothed": 12.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.402, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10733.0, + "total_tests": 704336.0, + "total_tests_per_thousand": 21.762, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 5715.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 470.647, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-25", + "total_cases": 8596.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.571, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.587, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.358, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11842.0, + "total_tests": 716178.0, + "total_tests_per_thousand": 22.127, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 6656.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 575.21, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-26", + "total_cases": 8600.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.711, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12938.0, + "total_tests": 729116.0, + "total_tests_per_thousand": 22.527, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 7795.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 768.5210000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-27", + "total_cases": 8606.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.896, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10342.0, + "total_tests": 739458.0, + "total_tests_per_thousand": 22.847, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 8519.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 839.9010000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-28", + "total_cases": 8616.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.571, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.205, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10492.0, + "total_tests": 749950.0, + "total_tests_per_thousand": 23.171, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 9426.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 1099.7, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-29", + "total_cases": 8634.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.761, + "new_cases_per_million": 0.556, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6221.0, + "total_tests": 756171.0, + "total_tests_per_thousand": 23.363, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 9895.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 1117.177, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-30", + "total_cases": 8637.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.854, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8828.0, + "total_tests": 764999.0, + "total_tests_per_thousand": 23.636, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 10199.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 1427.86, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-01", + "total_cases": 8639.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.916, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8912.0, + "total_tests": 773911.0, + "total_tests_per_thousand": 23.911, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 9939.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 1419.8570000000002, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-02", + "total_cases": 8640.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.286, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 266.947, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8727.0, + "total_tests": 782638.0, + "total_tests_per_thousand": 24.181, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 9494.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 1510.4089999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-03", + "total_cases": 8643.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.04, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8221.0, + "total_tests": 790859.0, + "total_tests_per_thousand": 24.435, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 8820.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 1435.8139999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-04", + "total_cases": 8648.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.194, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6937.0, + "total_tests": 797796.0, + "total_tests_per_thousand": 24.649, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 8334.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_per_case": 1389.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-05", + "total_cases": 8658.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.503, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.185, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6722.0, + "total_tests": 804518.0, + "total_tests_per_thousand": 24.857, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 7795.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 1299.167, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-06", + "total_cases": 8658.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5539.0, + "total_tests": 810057.0, + "total_tests_per_thousand": 25.028, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 7698.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 2245.25, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-07", + "total_cases": 8668.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.429, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.812, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6061.0, + "total_tests": 816118.0, + "total_tests_per_thousand": 25.215, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 7303.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 1649.065, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-08", + "total_cases": 8674.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.997, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.154, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6528.0, + "total_tests": 822646.0, + "total_tests_per_thousand": 25.417, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 6962.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 1392.4, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-09", + "total_cases": 8677.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.09, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7342.0, + "total_tests": 829988.0, + "total_tests_per_thousand": 25.644, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 6764.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 1279.6760000000002, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-10", + "total_cases": 8683.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.714, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.275, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6267.0, + "total_tests": 836255.0, + "total_tests_per_thousand": 25.837, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 6485.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 1134.875, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-11", + "total_cases": 8696.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.857, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.677, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 3.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6221.0, + "total_tests": 842476.0, + "total_tests_per_thousand": 26.03, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 6383.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 930.8539999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-12", + "total_cases": 8704.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.571, + "total_deaths": 122.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 268.924, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.203, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5034.0, + "total_tests": 847510.0, + "total_tests_per_thousand": 26.185, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 6142.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 934.6519999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-13", + "total_cases": 8718.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.571, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.357, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 2913.0, + "total_tests": 850423.0, + "total_tests_per_thousand": 26.275, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 5767.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 672.817, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-14", + "total_cases": 8725.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.573, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 4696.0, + "total_tests": 855119.0, + "total_tests_per_thousand": 26.42, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 5572.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 684.2810000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-15", + "total_cases": 8729.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.697, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 6777.0, + "total_tests": 861896.0, + "total_tests_per_thousand": 26.63, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 5607.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 713.618, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-16", + "total_cases": 8734.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.143, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.851, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 6498.0, + "total_tests": 868394.0, + "total_tests_per_thousand": 26.83, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 5487.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 673.842, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-17", + "total_cases": 8737.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.714, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 269.944, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.238, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7828.0, + "total_tests": 876222.0, + "total_tests_per_thousand": 27.072, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 5710.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 740.185, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-18", + "total_cases": 8755.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.429, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 270.5, + "new_cases_per_million": 0.556, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7948.0, + "total_tests": 884170.0, + "total_tests_per_thousand": 27.318, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 5956.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 706.6439999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-19", + "total_cases": 8764.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.571, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.778, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5574.0, + "total_tests": 889744.0, + "total_tests_per_thousand": 27.49, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 6033.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 703.85, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-20", + "total_cases": 8779.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.714, + "total_deaths": 123.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 271.241, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 6014.0, + "total_tests": 895758.0, + "total_tests_per_thousand": 27.676, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 6476.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 743.148, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-21", + "total_cases": 8800.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.714, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 271.89, + "new_cases_per_million": 0.649, + "new_cases_smoothed_per_million": 0.331, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 6681.0, + "total_tests": 902439.0, + "total_tests_per_thousand": 27.882, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 6760.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 630.933, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-22", + "total_cases": 8815.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.286, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 272.354, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7188.0, + "total_tests": 909627.0, + "total_tests_per_thousand": 28.104, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 6819.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 555.035, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-23", + "total_cases": 8831.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 272.848, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 0.428, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 6713.0, + "total_tests": 916340.0, + "total_tests_per_thousand": 28.312, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 6849.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 494.25800000000004, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-24", + "total_cases": 8840.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.714, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.126, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 8848.0, + "total_tests": 925188.0, + "total_tests_per_thousand": 28.585, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 6995.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 475.38800000000003, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-25", + "total_cases": 8861.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.143, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.775, + "new_cases_per_million": 0.649, + "new_cases_smoothed_per_million": 0.468, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7209.0, + "total_tests": 932397.0, + "total_tests_per_thousand": 28.808, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 6890.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 455.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-26", + "total_cases": 8884.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.143, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.486, + "new_cases_per_million": 0.711, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 3.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5248.0, + "total_tests": 937645.0, + "total_tests_per_thousand": 28.97, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 6843.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 399.175, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-27", + "total_cases": 8897.0, + "new_cases": 13.0, + "new_cases_smoothed": 16.857, + "total_deaths": 124.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.887, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5599.0, + "total_tests": 943244.0, + "total_tests_per_thousand": 29.143, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 6784.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 402.441, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-28", + "total_cases": 8904.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.104, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.459, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5897.0, + "total_tests": 949141.0, + "total_tests_per_thousand": 29.325, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 6672.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 449.077, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-29", + "total_cases": 8943.0, + "new_cases": 39.0, + "new_cases_smoothed": 18.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 276.308, + "new_cases_per_million": 1.205, + "new_cases_smoothed_per_million": 0.565, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 5992.0, + "total_tests": 955133.0, + "total_tests_per_thousand": 29.51, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 6501.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 355.523, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-30", + "total_cases": 8956.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 276.71, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.552, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7946.0, + "total_tests": 963079.0, + "total_tests_per_thousand": 29.756, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 6677.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 373.912, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-07-31", + "total_cases": 8964.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.714, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 276.957, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 3.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 7565.0, + "total_tests": 970644.0, + "total_tests_per_thousand": 29.99, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 6494.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 366.597, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-01", + "total_cases": 8976.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.429, + "total_deaths": 125.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.328, + "new_cases_per_million": 0.371, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 4030.0, + "total_tests": 974674.0, + "total_tests_per_thousand": 30.114, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 6040.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 367.652, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-02", + "total_cases": 8985.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.606, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.446, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 4504.0, + "total_tests": 979178.0, + "total_tests_per_thousand": 30.253, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 5933.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 411.19800000000004, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-08-03", + "total_cases": 8999.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.039, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 4119.0, + "total_tests": 983297.0, + "total_tests_per_thousand": 30.381, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 5722.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 392.686, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-04", + "total_cases": 9001.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.857, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.1, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.428, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 8036.0, + "total_tests": 991333.0, + "total_tests_per_thousand": 30.629, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 6027.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 434.93800000000005, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-05", + "total_cases": 9002.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.131, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 9757.0, + "total_tests": 1001090.0, + "total_tests_per_thousand": 30.93, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 6565.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 778.898, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-06", + "total_cases": 9023.0, + "new_cases": 21.0, + "new_cases_smoothed": 9.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 278.78, + "new_cases_per_million": 0.649, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 11570.0, + "total_tests": 1012660.0, + "total_tests_per_thousand": 31.288, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 7083.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 740.015, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-07", + "total_cases": 9038.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 279.244, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 12059.0, + "total_tests": 1024719.0, + "total_tests_per_thousand": 31.66, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 7725.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 730.743, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-08", + "total_cases": 9063.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.016, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 0.384, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11620.0, + "total_tests": 1036339.0, + "total_tests_per_thousand": 32.019, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 8809.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 708.77, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-09", + "total_cases": 9070.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.232, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9637.0, + "total_tests": 1045976.0, + "total_tests_per_thousand": 32.317, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 9543.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 785.8939999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-10", + "total_cases": 9083.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.634, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.371, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7555.0, + "total_tests": 1053531.0, + "total_tests_per_thousand": 32.551, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 10033.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 836.0830000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-11", + "total_cases": 9094.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.974, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9773.0, + "total_tests": 1063304.0, + "total_tests_per_thousand": 32.853, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 10282.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 773.914, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-12", + "total_cases": 9103.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.252, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.446, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10716.0, + "total_tests": 1074020.0, + "total_tests_per_thousand": 33.184, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 10419.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 722.1089999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-13", + "total_cases": 9114.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.592, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.402, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11020.0, + "total_tests": 1085040.0, + "total_tests_per_thousand": 33.524, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 10340.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_per_case": 795.385, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-14", + "total_cases": 9129.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.055, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.402, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10728.0, + "total_tests": 1095768.0, + "total_tests_per_thousand": 33.856, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 10150.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 780.7689999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-15", + "total_cases": 9149.0, + "new_cases": 20.0, + "new_cases_smoothed": 12.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.673, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10449.0, + "total_tests": 1106217.0, + "total_tests_per_thousand": 34.178, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 9983.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 812.57, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-16", + "total_cases": 9175.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 283.477, + "new_cases_per_million": 0.803, + "new_cases_smoothed_per_million": 0.463, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8029.0, + "total_tests": 1114246.0, + "total_tests_per_thousand": 34.426, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 9753.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 650.2, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-17", + "total_cases": 9200.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.249, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 0.516, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6420.0, + "total_tests": 1120666.0, + "total_tests_per_thousand": 34.625, + "new_tests_per_thousand": 0.198, + "new_tests_smoothed": 9591.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 573.821, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-18", + "total_cases": 9212.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.857, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.62, + "new_cases_per_million": 0.371, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8425.0, + "total_tests": 1129091.0, + "total_tests_per_thousand": 34.885, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 9398.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 557.508, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-19", + "total_cases": 9219.0, + "new_cases": 7.0, + "new_cases_smoothed": 16.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.836, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12588.0, + "total_tests": 1141679.0, + "total_tests_per_thousand": 35.274, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 9666.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 583.293, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-20", + "total_cases": 9235.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.33, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 0.534, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10461.0, + "total_tests": 1152140.0, + "total_tests_per_thousand": 35.597, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 9586.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 554.562, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-21", + "total_cases": 9240.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.857, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.485, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8250.0, + "total_tests": 1160390.0, + "total_tests_per_thousand": 35.852, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 9232.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 582.198, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-22", + "total_cases": 9249.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.763, + "new_cases_per_million": 0.278, + "new_cases_smoothed_per_million": 0.441, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7559.0, + "total_tests": 1167949.0, + "total_tests_per_thousand": 36.086, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 8819.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 617.33, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-23", + "total_cases": 9257.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.01, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.362, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8467.0, + "total_tests": 1176416.0, + "total_tests_per_thousand": 36.347, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 8881.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 758.1339999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-24", + "total_cases": 9267.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.319, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6429.0, + "total_tests": 1182845.0, + "total_tests_per_thousand": 36.546, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 8883.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 928.075, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-25", + "total_cases": 9274.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.857, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.535, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8655.0, + "total_tests": 1191500.0, + "total_tests_per_thousand": 36.813, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 8916.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 1006.645, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-26", + "total_cases": 9285.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.875, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11264.0, + "total_tests": 1202764.0, + "total_tests_per_thousand": 37.161, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 8726.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 925.485, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-27", + "total_cases": 9291.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.061, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10026.0, + "total_tests": 1212790.0, + "total_tests_per_thousand": 37.471, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 8664.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 1083.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-28", + "total_cases": 9296.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.215, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10064.0, + "total_tests": 1222854.0, + "total_tests_per_thousand": 37.782, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 8923.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 1115.375, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-29", + "total_cases": 9306.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.524, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10073.0, + "total_tests": 1232927.0, + "total_tests_per_thousand": 38.093, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 9283.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 1140.018, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-30", + "total_cases": 9317.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.864, + "new_cases_per_million": 0.34, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 3.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10613.0, + "total_tests": 1243540.0, + "total_tests_per_thousand": 38.421, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 9589.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 1118.7169999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-08-31", + "total_cases": 9334.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.571, + "total_deaths": 126.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 288.389, + "new_cases_per_million": 0.525, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 3.893, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 10315.0, + "total_tests": 1253855.0, + "total_tests_per_thousand": 38.74, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 10144.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 1059.8210000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 57.41 + }, + { + "date": "2020-09-01", + "total_cases": 9340.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 127.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 288.574, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 3.924, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 8993.0, + "total_tests": 1262848.0, + "total_tests_per_thousand": 39.018, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 10193.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 1081.076, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 9354.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.857, + "total_deaths": 128.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 289.007, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 3.955, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 7381.0, + "total_tests": 1270229.0, + "total_tests_per_thousand": 39.246, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 9638.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 977.768, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 9360.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.857, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 289.192, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 3.955, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 10649.0, + "total_tests": 1280878.0, + "total_tests_per_thousand": 39.575, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 9727.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 986.797, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 9374.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.143, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 289.625, + "new_cases_per_million": 0.433, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 3.955, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013 + }, + { + "date": "2020-09-05", + "total_cases": 9374.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 289.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 3.955, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013 + } + ] + }, + "MDV": { + "continent": "Asia", + "location": "Maldives", + "population": 540542.0, + "population_density": 1454.433, + "median_age": 30.6, + "aged_65_older": 4.12, + "aged_70_older": 2.875, + "gdp_per_capita": 15183.616, + "cardiovasc_death_rate": 164.905, + "diabetes_prevalence": 9.19, + "female_smokers": 2.1, + "male_smokers": 55.0, + "handwashing_facilities": 95.803, + "life_expectancy": 78.92, + "data": [ + { + "date": "2020-03-08", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.7, + "new_cases_per_million": 3.7, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.4, + "new_cases_per_million": 3.7, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-11", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 11.1, + "new_cases_per_million": 3.7, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-12", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.8, + "new_cases_per_million": 3.7, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.65, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 2.379, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.65, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.85, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 13.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 7.4, + "new_cases_smoothed_per_million": 2.379, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 221.0, + "total_tests_per_thousand": 0.409, + "tests_units": "samples tested" + }, + { + "date": "2020-03-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.379, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 254.0, + "total_tests_per_thousand": 0.47, + "new_tests_per_thousand": 0.061, + "tests_units": "samples tested" + }, + { + "date": "2020-03-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.85, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 209.0, + "total_tests": 463.0, + "total_tests_per_thousand": 0.857, + "new_tests_per_thousand": 0.387, + "tests_units": "samples tested" + }, + { + "date": "2020-03-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 56.0, + "total_tests": 519.0, + "total_tests_per_thousand": 0.96, + "new_tests_per_thousand": 0.104, + "tests_units": "samples tested" + }, + { + "date": "2020-03-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 563.0, + "total_tests_per_thousand": 1.042, + "new_tests_per_thousand": 0.081, + "tests_units": "samples tested" + }, + { + "date": "2020-03-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 593.0, + "total_tests_per_thousand": 1.097, + "new_tests_per_thousand": 0.055, + "tests_units": "samples tested" + }, + { + "date": "2020-03-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 643.0, + "total_tests_per_thousand": 1.19, + "new_tests_per_thousand": 0.092, + "tests_units": "samples tested" + }, + { + "date": "2020-03-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 673.0, + "total_tests_per_thousand": 1.245, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.12, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-03-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 67.0, + "new_tests_smoothed_per_thousand": 0.124, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-03-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 776.0, + "total_tests_per_thousand": 1.436, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.083, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-03-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 799.0, + "total_tests_per_thousand": 1.478, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.074, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-03-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 823.0, + "total_tests_per_thousand": 1.523, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.068, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-03-28", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.9, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 57.0, + "total_tests": 880.0, + "total_tests_per_thousand": 1.628, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 287.0, + "positive_rate": 0.003, + "tests_units": "samples tested" + }, + { + "date": "2020-03-29", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.6, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 0.793, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 36.0, + "total_tests": 916.0, + "total_tests_per_thousand": 1.695, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 91.0, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-03-30", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.45, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 50.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 87.5, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-03-31", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.45, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1132.0, + "total_tests_per_thousand": 2.094, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 101.5, + "positive_rate": 0.01, + "tests_units": "samples tested" + }, + { + "date": "2020-04-01", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.3, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 1199.0, + "total_tests_per_thousand": 2.218, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 84.0, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-04-02", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.586, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 92.0, + "total_tests": 1291.0, + "total_tests_per_thousand": 2.388, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 70.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 81.667, + "positive_rate": 0.012, + "tests_units": "samples tested" + }, + { + "date": "2020-04-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.586, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 92.0, + "total_tests": 1383.0, + "total_tests_per_thousand": 2.559, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 93.333, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-04-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.321, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 103.0, + "total_tests": 1486.0, + "total_tests_per_thousand": 2.749, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 87.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 121.8, + "positive_rate": 0.008, + "tests_units": "samples tested" + }, + { + "date": "2020-04-05", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.793, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 1508.0, + "total_tests_per_thousand": 2.79, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 85.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 198.333, + "positive_rate": 0.005, + "tests_units": "samples tested" + }, + { + "date": "2020-04-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 285.0, + "total_tests": 1793.0, + "total_tests_per_thousand": 3.317, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 110.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 385.0, + "positive_rate": 0.003, + "tests_units": "samples tested" + }, + { + "date": "2020-04-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 125.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 437.5, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-04-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 1022.0, + "positive_rate": 0.001, + "tests_units": "samples tested" + }, + { + "date": "2020-04-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2434.0, + "total_tests_per_thousand": 4.503, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.302, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-04-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 160.0, + "new_tests_smoothed_per_thousand": 0.296, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-04-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 154.0, + "new_tests_smoothed_per_thousand": 0.285, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-04-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2632.0, + "total_tests_per_thousand": 4.869, + "new_tests_smoothed": 161.0, + "new_tests_smoothed_per_thousand": 0.298, + "positive_rate": 0.0, + "tests_units": "samples tested" + }, + { + "date": "2020-04-13", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.0, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 60.0, + "total_tests": 2692.0, + "total_tests_per_thousand": 4.98, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 128.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 896.0, + "positive_rate": 0.001, + "tests_units": "samples tested" + }, + { + "date": "2020-04-14", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 2716.0, + "total_tests_per_thousand": 5.025, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 101.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 707.0, + "positive_rate": 0.001, + "tests_units": "samples tested" + }, + { + "date": "2020-04-15", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.85, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 374.0, + "total_tests": 3090.0, + "total_tests_per_thousand": 5.716, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 434.0, + "positive_rate": 0.002, + "tests_units": "samples tested" + }, + { + "date": "2020-04-16", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.85, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 88.0, + "total_tests": 3178.0, + "total_tests_per_thousand": 5.879, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 106.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 371.0, + "positive_rate": 0.003, + "tests_units": "samples tested" + }, + { + "date": "2020-04-17", + "total_cases": 25.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.25, + "new_cases_per_million": 7.4, + "new_cases_smoothed_per_million": 1.586, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 148.167, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-04-18", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.65, + "new_cases_per_million": 7.4, + "new_cases_smoothed_per_million": 2.643, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 148.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 103.6, + "positive_rate": 0.01, + "tests_units": "samples tested" + }, + { + "date": "2020-04-19", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.75, + "new_cases_per_million": 11.1, + "new_cases_smoothed_per_million": 4.229, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 168.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 73.5, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-04-20", + "total_cases": 52.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.2, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 8.457, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 41.562, + "positive_rate": 0.024, + "tests_units": "samples tested" + }, + { + "date": "2020-04-21", + "total_cases": 69.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.65, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 12.95, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 216.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 30.857, + "positive_rate": 0.032, + "tests_units": "samples tested" + }, + { + "date": "2020-04-22", + "total_cases": 85.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 157.25, + "new_cases_per_million": 29.6, + "new_cases_smoothed_per_million": 16.914, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 193.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 21.109, + "positive_rate": 0.047, + "tests_units": "samples tested" + }, + { + "date": "2020-04-23", + "total_cases": 85.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 157.25, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.914, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4650.0, + "total_tests_per_thousand": 8.602, + "new_tests_smoothed": 210.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 22.969, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested" + }, + { + "date": "2020-04-24", + "total_cases": 110.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.499, + "new_cases_per_million": 46.25, + "new_cases_smoothed_per_million": 22.464, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 549.0, + "total_tests": 5199.0, + "total_tests_per_thousand": 9.618, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 259.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 21.329, + "positive_rate": 0.047, + "tests_units": "samples tested" + }, + { + "date": "2020-04-25", + "total_cases": 128.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.799, + "new_cases_per_million": 33.3, + "new_cases_smoothed_per_million": 26.164, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 263.0, + "total_tests": 5462.0, + "total_tests_per_thousand": 10.105, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 266.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 18.808, + "positive_rate": 0.053, + "tests_units": "samples tested" + }, + { + "date": "2020-04-26", + "total_cases": 137.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 253.449, + "new_cases_per_million": 16.65, + "new_cases_smoothed_per_million": 26.957, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 428.0, + "total_tests": 5890.0, + "total_tests_per_thousand": 10.896, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 297.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 20.382, + "positive_rate": 0.049, + "tests_units": "samples tested" + }, + { + "date": "2020-04-27", + "total_cases": 214.0, + "new_cases": 77.0, + "new_cases_smoothed": 23.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 395.899, + "new_cases_per_million": 142.45, + "new_cases_smoothed_per_million": 42.814, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 326.0, + "total_tests": 6216.0, + "total_tests_per_thousand": 11.5, + "new_tests_per_thousand": 0.603, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 13.568, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-04-28", + "total_cases": 214.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 395.899, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.321, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 420.0, + "total_tests": 6636.0, + "total_tests_per_thousand": 12.277, + "new_tests_per_thousand": 0.777, + "new_tests_smoothed": 344.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 16.607, + "positive_rate": 0.06, + "tests_units": "samples tested" + }, + { + "date": "2020-04-29", + "total_cases": 245.0, + "new_cases": 31.0, + "new_cases_smoothed": 22.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 453.249, + "new_cases_per_million": 57.35, + "new_cases_smoothed_per_million": 42.286, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 15.838, + "positive_rate": 0.063, + "tests_units": "samples tested" + }, + { + "date": "2020-04-30", + "total_cases": 277.0, + "new_cases": 32.0, + "new_cases_smoothed": 27.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 512.449, + "new_cases_per_million": 59.2, + "new_cases_smoothed_per_million": 50.743, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 7311.0, + "total_tests_per_thousand": 13.525, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 13.854000000000001, + "positive_rate": 0.07200000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-05-01", + "total_cases": 468.0, + "new_cases": 191.0, + "new_cases_smoothed": 51.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 865.798, + "new_cases_per_million": 353.349, + "new_cases_smoothed_per_million": 94.614, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 443.0, + "total_tests": 7754.0, + "total_tests_per_thousand": 14.345, + "new_tests_per_thousand": 0.82, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.675, + "tests_per_case": 7.1370000000000005, + "positive_rate": 0.14, + "tests_units": "samples tested" + }, + { + "date": "2020-05-02", + "total_cases": 491.0, + "new_cases": 23.0, + "new_cases_smoothed": 51.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 908.348, + "new_cases_per_million": 42.55, + "new_cases_smoothed_per_million": 95.935, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 465.0, + "total_tests": 8219.0, + "total_tests_per_thousand": 15.205, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.729, + "tests_per_case": 7.598, + "positive_rate": 0.132, + "tests_units": "samples tested" + }, + { + "date": "2020-05-03", + "total_cases": 519.0, + "new_cases": 28.0, + "new_cases_smoothed": 54.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 960.147, + "new_cases_per_million": 51.8, + "new_cases_smoothed_per_million": 100.957, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 382.0, + "total_tests": 8601.0, + "total_tests_per_thousand": 15.912, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 7.0920000000000005, + "positive_rate": 0.141, + "tests_units": "samples tested" + }, + { + "date": "2020-05-04", + "total_cases": 527.0, + "new_cases": 8.0, + "new_cases_smoothed": 44.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 974.947, + "new_cases_per_million": 14.8, + "new_cases_smoothed_per_million": 82.721, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 288.0, + "total_tests": 8889.0, + "total_tests_per_thousand": 16.445, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 382.0, + "new_tests_smoothed_per_thousand": 0.707, + "tests_per_case": 8.543, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-05-05", + "total_cases": 551.0, + "new_cases": 24.0, + "new_cases_smoothed": 48.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1019.347, + "new_cases_per_million": 44.4, + "new_cases_smoothed_per_million": 89.064, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 497.0, + "total_tests": 9386.0, + "total_tests_per_thousand": 17.364, + "new_tests_per_thousand": 0.919, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.727, + "tests_per_case": 8.163, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-05-06", + "total_cases": 573.0, + "new_cases": 22.0, + "new_cases_smoothed": 46.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1060.047, + "new_cases_per_million": 40.7, + "new_cases_smoothed_per_million": 86.685, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 482.0, + "total_tests": 9868.0, + "total_tests_per_thousand": 18.256, + "new_tests_per_thousand": 0.892, + "new_tests_smoothed": 414.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 8.835, + "positive_rate": 0.113, + "tests_units": "samples tested" + }, + { + "date": "2020-05-07", + "total_cases": 617.0, + "new_cases": 44.0, + "new_cases_smoothed": 48.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1141.447, + "new_cases_per_million": 81.4, + "new_cases_smoothed_per_million": 89.857, + "total_deaths_per_million": 3.7, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 407.0, + "total_tests": 10275.0, + "total_tests_per_thousand": 19.009, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 423.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 8.709, + "positive_rate": 0.115, + "tests_units": "samples tested" + }, + { + "date": "2020-05-08", + "total_cases": 642.0, + "new_cases": 25.0, + "new_cases_smoothed": 24.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1187.697, + "new_cases_per_million": 46.25, + "new_cases_smoothed_per_million": 45.986, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 474.0, + "total_tests": 10749.0, + "total_tests_per_thousand": 19.886, + "new_tests_per_thousand": 0.877, + "new_tests_smoothed": 428.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 17.218, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested" + }, + { + "date": "2020-05-09", + "total_cases": 644.0, + "new_cases": 2.0, + "new_cases_smoothed": 21.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1191.397, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 40.436, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 588.0, + "total_tests": 11337.0, + "total_tests_per_thousand": 20.973, + "new_tests_per_thousand": 1.088, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.823, + "tests_per_case": 20.359, + "positive_rate": 0.049, + "tests_units": "samples tested" + }, + { + "date": "2020-05-10", + "total_cases": 790.0, + "new_cases": 146.0, + "new_cases_smoothed": 38.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1461.496, + "new_cases_per_million": 270.099, + "new_cases_smoothed_per_million": 71.621, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 479.0, + "total_tests": 11816.0, + "total_tests_per_thousand": 21.86, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.849, + "tests_per_case": 11.856, + "positive_rate": 0.084, + "tests_units": "samples tested" + }, + { + "date": "2020-05-11", + "total_cases": 835.0, + "new_cases": 45.0, + "new_cases_smoothed": 44.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1544.746, + "new_cases_per_million": 83.25, + "new_cases_smoothed_per_million": 81.4, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 430.0, + "total_tests": 12246.0, + "total_tests_per_thousand": 22.655, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 480.0, + "new_tests_smoothed_per_thousand": 0.888, + "tests_per_case": 10.909, + "positive_rate": 0.092, + "tests_units": "samples tested" + }, + { + "date": "2020-05-12", + "total_cases": 897.0, + "new_cases": 62.0, + "new_cases_smoothed": 49.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1659.446, + "new_cases_per_million": 114.7, + "new_cases_smoothed_per_million": 91.443, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 155.0, + "total_tests": 12401.0, + "total_tests_per_thousand": 22.942, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 431.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 8.72, + "positive_rate": 0.115, + "tests_units": "samples tested" + }, + { + "date": "2020-05-13", + "total_cases": 904.0, + "new_cases": 7.0, + "new_cases_smoothed": 47.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1672.395, + "new_cases_per_million": 12.95, + "new_cases_smoothed_per_million": 87.478, + "total_deaths_per_million": 5.55, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 0.786, + "tests_per_case": 8.988, + "positive_rate": 0.111, + "tests_units": "samples tested" + }, + { + "date": "2020-05-14", + "total_cases": 955.0, + "new_cases": 51.0, + "new_cases_smoothed": 48.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1766.745, + "new_cases_per_million": 94.35, + "new_cases_smoothed_per_million": 89.328, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "total_tests": 13291.0, + "total_tests_per_thousand": 24.588, + "new_tests_smoothed": 431.0, + "new_tests_smoothed_per_thousand": 0.797, + "tests_per_case": 8.926, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-05-15", + "total_cases": 982.0, + "new_cases": 27.0, + "new_cases_smoothed": 48.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1816.695, + "new_cases_per_million": 49.95, + "new_cases_smoothed_per_million": 89.857, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 398.0, + "total_tests": 13689.0, + "total_tests_per_thousand": 25.325, + "new_tests_per_thousand": 0.736, + "new_tests_smoothed": 420.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 8.647, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-05-16", + "total_cases": 1031.0, + "new_cases": 49.0, + "new_cases_smoothed": 55.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1907.345, + "new_cases_per_million": 90.65, + "new_cases_smoothed_per_million": 102.278, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 787.0, + "total_tests": 14476.0, + "total_tests_per_thousand": 26.781, + "new_tests_per_thousand": 1.456, + "new_tests_smoothed": 448.0, + "new_tests_smoothed_per_thousand": 0.829, + "tests_per_case": 8.103, + "positive_rate": 0.12300000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-05-17", + "total_cases": 1078.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1994.295, + "new_cases_per_million": 86.95, + "new_cases_smoothed_per_million": 76.114, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 378.0, + "total_tests": 14854.0, + "total_tests_per_thousand": 27.48, + "new_tests_per_thousand": 0.699, + "new_tests_smoothed": 434.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 10.549000000000001, + "positive_rate": 0.095, + "tests_units": "samples tested" + }, + { + "date": "2020-05-18", + "total_cases": 1094.0, + "new_cases": 16.0, + "new_cases_smoothed": 37.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2023.895, + "new_cases_per_million": 29.6, + "new_cases_smoothed_per_million": 68.45, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 426.0, + "total_tests": 15280.0, + "total_tests_per_thousand": 28.268, + "new_tests_per_thousand": 0.788, + "new_tests_smoothed": 433.0, + "new_tests_smoothed_per_thousand": 0.801, + "tests_per_case": 11.703, + "positive_rate": 0.085, + "tests_units": "samples tested" + }, + { + "date": "2020-05-19", + "total_cases": 1106.0, + "new_cases": 12.0, + "new_cases_smoothed": 29.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2046.094, + "new_cases_per_million": 22.2, + "new_cases_smoothed_per_million": 55.236, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 547.0, + "total_tests": 15827.0, + "total_tests_per_thousand": 29.28, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 489.0, + "new_tests_smoothed_per_thousand": 0.905, + "tests_per_case": 16.378, + "positive_rate": 0.061, + "tests_units": "samples tested" + }, + { + "date": "2020-05-20", + "total_cases": 1143.0, + "new_cases": 37.0, + "new_cases_smoothed": 34.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2114.544, + "new_cases_per_million": 68.45, + "new_cases_smoothed_per_million": 63.164, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 524.0, + "total_tests": 16351.0, + "total_tests_per_thousand": 30.249, + "new_tests_per_thousand": 0.969, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.927, + "tests_per_case": 14.674000000000001, + "positive_rate": 0.068, + "tests_units": "samples tested" + }, + { + "date": "2020-05-21", + "total_cases": 1186.0, + "new_cases": 43.0, + "new_cases_smoothed": 33.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2194.094, + "new_cases_per_million": 79.55, + "new_cases_smoothed_per_million": 61.05, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 16846.0, + "total_tests_per_thousand": 31.165, + "new_tests_per_thousand": 0.916, + "new_tests_smoothed": 508.0, + "new_tests_smoothed_per_thousand": 0.94, + "tests_per_case": 15.394, + "positive_rate": 0.065, + "tests_units": "samples tested" + }, + { + "date": "2020-05-22", + "total_cases": 1216.0, + "new_cases": 30.0, + "new_cases_smoothed": 33.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2249.594, + "new_cases_per_million": 55.5, + "new_cases_smoothed_per_million": 61.843, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 328.0, + "total_tests": 17174.0, + "total_tests_per_thousand": 31.772, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 498.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 14.897, + "positive_rate": 0.067, + "tests_units": "samples tested" + }, + { + "date": "2020-05-23", + "total_cases": 1274.0, + "new_cases": 58.0, + "new_cases_smoothed": 34.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2356.894, + "new_cases_per_million": 107.3, + "new_cases_smoothed_per_million": 64.221, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 598.0, + "total_tests": 17772.0, + "total_tests_per_thousand": 32.878, + "new_tests_per_thousand": 1.106, + "new_tests_smoothed": 471.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 13.568, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-05-24", + "total_cases": 1303.0, + "new_cases": 29.0, + "new_cases_smoothed": 32.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2410.543, + "new_cases_per_million": 53.65, + "new_cases_smoothed_per_million": 59.464, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 711.0, + "total_tests": 18483.0, + "total_tests_per_thousand": 34.193, + "new_tests_per_thousand": 1.315, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 0.958, + "tests_per_case": 16.116, + "positive_rate": 0.062, + "tests_units": "samples tested" + }, + { + "date": "2020-05-25", + "total_cases": 1371.0, + "new_cases": 68.0, + "new_cases_smoothed": 39.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2536.343, + "new_cases_per_million": 125.8, + "new_cases_smoothed_per_million": 73.207, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 676.0, + "total_tests": 19159.0, + "total_tests_per_thousand": 35.444, + "new_tests_per_thousand": 1.251, + "new_tests_smoothed": 554.0, + "new_tests_smoothed_per_thousand": 1.025, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "samples tested" + }, + { + "date": "2020-05-26", + "total_cases": 1395.0, + "new_cases": 24.0, + "new_cases_smoothed": 41.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2580.743, + "new_cases_per_million": 44.4, + "new_cases_smoothed_per_million": 76.378, + "total_deaths_per_million": 7.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 861.0, + "total_tests": 20020.0, + "total_tests_per_thousand": 37.037, + "new_tests_per_thousand": 1.593, + "new_tests_smoothed": 599.0, + "new_tests_smoothed_per_thousand": 1.108, + "tests_per_case": 14.509, + "positive_rate": 0.069, + "tests_units": "samples tested" + }, + { + "date": "2020-05-27", + "total_cases": 1438.0, + "new_cases": 43.0, + "new_cases_smoothed": 42.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2660.293, + "new_cases_per_million": 79.55, + "new_cases_smoothed_per_million": 77.964, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 822.0, + "total_tests": 20842.0, + "total_tests_per_thousand": 38.558, + "new_tests_per_thousand": 1.521, + "new_tests_smoothed": 642.0, + "new_tests_smoothed_per_thousand": 1.188, + "tests_per_case": 15.234000000000002, + "positive_rate": 0.066, + "tests_units": "samples tested" + }, + { + "date": "2020-05-28", + "total_cases": 1457.0, + "new_cases": 19.0, + "new_cases_smoothed": 38.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2695.443, + "new_cases_per_million": 35.15, + "new_cases_smoothed_per_million": 71.621, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 797.0, + "total_tests": 21639.0, + "total_tests_per_thousand": 40.032, + "new_tests_per_thousand": 1.474, + "new_tests_smoothed": 685.0, + "new_tests_smoothed_per_thousand": 1.267, + "tests_per_case": 17.694000000000003, + "positive_rate": 0.057, + "tests_units": "samples tested" + }, + { + "date": "2020-05-29", + "total_cases": 1513.0, + "new_cases": 56.0, + "new_cases_smoothed": 42.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2799.042, + "new_cases_per_million": 103.6, + "new_cases_smoothed_per_million": 78.493, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 680.0, + "total_tests": 22319.0, + "total_tests_per_thousand": 41.29, + "new_tests_per_thousand": 1.258, + "new_tests_smoothed": 735.0, + "new_tests_smoothed_per_thousand": 1.36, + "tests_per_case": 17.323, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested" + }, + { + "date": "2020-05-30", + "total_cases": 1591.0, + "new_cases": 78.0, + "new_cases_smoothed": 45.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2943.342, + "new_cases_per_million": 144.3, + "new_cases_smoothed_per_million": 83.778, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 808.0, + "total_tests": 23127.0, + "total_tests_per_thousand": 42.785, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 765.0, + "new_tests_smoothed_per_thousand": 1.415, + "tests_per_case": 16.893, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested" + }, + { + "date": "2020-05-31", + "total_cases": 1672.0, + "new_cases": 81.0, + "new_cases_smoothed": 52.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3093.192, + "new_cases_per_million": 149.85, + "new_cases_smoothed_per_million": 97.521, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 698.0, + "total_tests": 23825.0, + "total_tests_per_thousand": 44.076, + "new_tests_per_thousand": 1.291, + "new_tests_smoothed": 763.0, + "new_tests_smoothed_per_thousand": 1.412, + "tests_per_case": 14.474, + "positive_rate": 0.069, + "tests_units": "samples tested" + }, + { + "date": "2020-06-01", + "total_cases": 1773.0, + "new_cases": 101.0, + "new_cases_smoothed": 57.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3280.041, + "new_cases_per_million": 186.849, + "new_cases_smoothed_per_million": 106.243, + "total_deaths_per_million": 9.25, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 959.0, + "total_tests": 24784.0, + "total_tests_per_thousand": 45.85, + "new_tests_per_thousand": 1.774, + "new_tests_smoothed": 804.0, + "new_tests_smoothed_per_thousand": 1.487, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "samples tested" + }, + { + "date": "2020-06-02", + "total_cases": 1829.0, + "new_cases": 56.0, + "new_cases_smoothed": 62.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3383.641, + "new_cases_per_million": 103.6, + "new_cases_smoothed_per_million": 114.7, + "total_deaths_per_million": 11.1, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 807.0, + "total_tests": 25591.0, + "total_tests_per_thousand": 47.343, + "new_tests_per_thousand": 1.493, + "new_tests_smoothed": 796.0, + "new_tests_smoothed_per_thousand": 1.473, + "tests_per_case": 12.839, + "positive_rate": 0.078, + "tests_units": "samples tested" + }, + { + "date": "2020-06-03", + "total_cases": 1841.0, + "new_cases": 12.0, + "new_cases_smoothed": 57.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3405.841, + "new_cases_per_million": 22.2, + "new_cases_smoothed_per_million": 106.507, + "total_deaths_per_million": 12.95, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 652.0, + "total_tests": 26243.0, + "total_tests_per_thousand": 48.549, + "new_tests_per_thousand": 1.206, + "new_tests_smoothed": 772.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 13.409, + "positive_rate": 0.075, + "tests_units": "samples tested" + }, + { + "date": "2020-06-04", + "total_cases": 1850.0, + "new_cases": 9.0, + "new_cases_smoothed": 56.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3422.491, + "new_cases_per_million": 16.65, + "new_cases_smoothed_per_million": 103.864, + "total_deaths_per_million": 12.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 801.0, + "total_tests": 27044.0, + "total_tests_per_thousand": 50.031, + "new_tests_per_thousand": 1.482, + "new_tests_smoothed": 772.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 13.751, + "positive_rate": 0.073, + "tests_units": "samples tested" + }, + { + "date": "2020-06-05", + "total_cases": 1872.0, + "new_cases": 22.0, + "new_cases_smoothed": 51.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3463.191, + "new_cases_per_million": 40.7, + "new_cases_smoothed_per_million": 94.878, + "total_deaths_per_million": 12.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 933.0, + "total_tests": 27977.0, + "total_tests_per_thousand": 51.757, + "new_tests_per_thousand": 1.726, + "new_tests_smoothed": 808.0, + "new_tests_smoothed_per_thousand": 1.495, + "tests_per_case": 15.755, + "positive_rate": 0.063, + "tests_units": "samples tested" + }, + { + "date": "2020-06-06", + "total_cases": 1883.0, + "new_cases": 11.0, + "new_cases_smoothed": 41.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3483.541, + "new_cases_per_million": 20.35, + "new_cases_smoothed_per_million": 77.171, + "total_deaths_per_million": 12.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 730.0, + "total_tests": 28707.0, + "total_tests_per_thousand": 53.108, + "new_tests_per_thousand": 1.35, + "new_tests_smoothed": 797.0, + "new_tests_smoothed_per_thousand": 1.474, + "tests_per_case": 19.105999999999998, + "positive_rate": 0.052000000000000005, + "tests_units": "samples tested" + }, + { + "date": "2020-06-07", + "total_cases": 1901.0, + "new_cases": 18.0, + "new_cases_smoothed": 32.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3516.841, + "new_cases_per_million": 33.3, + "new_cases_smoothed_per_million": 60.521, + "total_deaths_per_million": 12.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 875.0, + "total_tests": 29582.0, + "total_tests_per_thousand": 54.727, + "new_tests_per_thousand": 1.619, + "new_tests_smoothed": 822.0, + "new_tests_smoothed_per_thousand": 1.521, + "tests_per_case": 25.127, + "positive_rate": 0.04, + "tests_units": "samples tested" + }, + { + "date": "2020-06-08", + "total_cases": 1903.0, + "new_cases": 2.0, + "new_cases_smoothed": 18.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3520.54, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 34.357, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.793, + "new_tests_smoothed": 812.0, + "new_tests_smoothed_per_thousand": 1.502, + "tests_per_case": 43.723, + "positive_rate": 0.023, + "tests_units": "samples tested" + }, + { + "date": "2020-06-09", + "total_cases": 1916.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3544.59, + "new_cases_per_million": 24.05, + "new_cases_smoothed_per_million": 22.993, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "total_tests": 31355.0, + "total_tests_per_thousand": 58.007, + "new_tests_smoothed": 823.0, + "new_tests_smoothed_per_thousand": 1.523, + "tests_per_case": 66.218, + "positive_rate": 0.015, + "tests_units": "samples tested" + }, + { + "date": "2020-06-10", + "total_cases": 1942.0, + "new_cases": 26.0, + "new_cases_smoothed": 14.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3592.69, + "new_cases_per_million": 48.1, + "new_cases_smoothed_per_million": 26.693, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 772.0, + "total_tests": 32127.0, + "total_tests_per_thousand": 59.435, + "new_tests_per_thousand": 1.428, + "new_tests_smoothed": 841.0, + "new_tests_smoothed_per_thousand": 1.556, + "tests_per_case": 58.287, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-06-11", + "total_cases": 1962.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3629.69, + "new_cases_per_million": 37.0, + "new_cases_smoothed_per_million": 29.6, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 657.0, + "total_tests": 32784.0, + "total_tests_per_thousand": 60.65, + "new_tests_per_thousand": 1.215, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 1.517, + "tests_per_case": 51.25, + "positive_rate": 0.02, + "tests_units": "samples tested" + }, + { + "date": "2020-06-12", + "total_cases": 1976.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3655.59, + "new_cases_per_million": 25.9, + "new_cases_smoothed_per_million": 27.486, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 564.0, + "total_tests": 33348.0, + "total_tests_per_thousand": 61.694, + "new_tests_per_thousand": 1.043, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 1.419, + "tests_per_case": 51.625, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-06-13", + "total_cases": 2003.0, + "new_cases": 27.0, + "new_cases_smoothed": 17.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3705.54, + "new_cases_per_million": 49.95, + "new_cases_smoothed_per_million": 31.714, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 764.0, + "total_tests": 34112.0, + "total_tests_per_thousand": 63.107, + "new_tests_per_thousand": 1.413, + "new_tests_smoothed": 772.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 45.033, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-06-14", + "total_cases": 2013.0, + "new_cases": 10.0, + "new_cases_smoothed": 16.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3724.04, + "new_cases_per_million": 18.5, + "new_cases_smoothed_per_million": 29.6, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 629.0, + "total_tests": 34741.0, + "total_tests_per_thousand": 64.271, + "new_tests_per_thousand": 1.164, + "new_tests_smoothed": 737.0, + "new_tests_smoothed_per_thousand": 1.363, + "tests_per_case": 46.062, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-06-15", + "total_cases": 2035.0, + "new_cases": 22.0, + "new_cases_smoothed": 18.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3764.74, + "new_cases_per_million": 40.7, + "new_cases_smoothed_per_million": 34.886, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 762.0, + "new_tests_smoothed_per_thousand": 1.41, + "tests_per_case": 40.409, + "positive_rate": 0.025, + "tests_units": "samples tested" + }, + { + "date": "2020-06-16", + "total_cases": 2065.0, + "new_cases": 30.0, + "new_cases_smoothed": 21.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3820.24, + "new_cases_per_million": 55.5, + "new_cases_smoothed_per_million": 39.378, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 36857.0, + "total_tests_per_thousand": 68.185, + "new_tests_smoothed": 786.0, + "new_tests_smoothed_per_thousand": 1.454, + "tests_per_case": 36.926, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested" + }, + { + "date": "2020-06-17", + "total_cases": 2094.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3873.89, + "new_cases_per_million": 53.65, + "new_cases_smoothed_per_million": 40.171, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 634.0, + "total_tests": 37491.0, + "total_tests_per_thousand": 69.358, + "new_tests_per_thousand": 1.173, + "new_tests_smoothed": 766.0, + "new_tests_smoothed_per_thousand": 1.417, + "tests_per_case": 35.275999999999996, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested" + }, + { + "date": "2020-06-18", + "total_cases": 2120.0, + "new_cases": 26.0, + "new_cases_smoothed": 22.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3921.989, + "new_cases_per_million": 48.1, + "new_cases_smoothed_per_million": 41.757, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1132.0, + "total_tests": 38623.0, + "total_tests_per_thousand": 71.452, + "new_tests_per_thousand": 2.094, + "new_tests_smoothed": 834.0, + "new_tests_smoothed_per_thousand": 1.543, + "tests_per_case": 36.949, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested" + }, + { + "date": "2020-06-19", + "total_cases": 2137.0, + "new_cases": 17.0, + "new_cases_smoothed": 23.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3953.439, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 42.55, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 912.0, + "new_tests_smoothed_per_thousand": 1.687, + "tests_per_case": 39.652, + "positive_rate": 0.025, + "tests_units": "samples tested" + }, + { + "date": "2020-06-20", + "total_cases": 2150.0, + "new_cases": 13.0, + "new_cases_smoothed": 21.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3977.489, + "new_cases_per_million": 24.05, + "new_cases_smoothed_per_million": 38.85, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 40848.0, + "total_tests_per_thousand": 75.569, + "new_tests_smoothed": 962.0, + "new_tests_smoothed_per_thousand": 1.78, + "tests_per_case": 45.81, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-06-21", + "total_cases": 2187.0, + "new_cases": 37.0, + "new_cases_smoothed": 24.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4045.939, + "new_cases_per_million": 68.45, + "new_cases_smoothed_per_million": 45.986, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 706.0, + "total_tests": 41554.0, + "total_tests_per_thousand": 76.875, + "new_tests_per_thousand": 1.306, + "new_tests_smoothed": 973.0, + "new_tests_smoothed_per_thousand": 1.8, + "tests_per_case": 39.144, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-06-22", + "total_cases": 2203.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4075.539, + "new_cases_per_million": 29.6, + "new_cases_smoothed_per_million": 44.4, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1276.0, + "total_tests": 42830.0, + "total_tests_per_thousand": 79.235, + "new_tests_per_thousand": 2.361, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 1.857, + "tests_per_case": 41.833, + "positive_rate": 0.024, + "tests_units": "samples tested" + }, + { + "date": "2020-06-23", + "total_cases": 2217.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4101.439, + "new_cases_per_million": 25.9, + "new_cases_smoothed_per_million": 40.171, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1168.0, + "total_tests": 43998.0, + "total_tests_per_thousand": 81.396, + "new_tests_per_thousand": 2.161, + "new_tests_smoothed": 1020.0, + "new_tests_smoothed_per_thousand": 1.887, + "tests_per_case": 46.974, + "positive_rate": 0.021, + "tests_units": "samples tested" + }, + { + "date": "2020-06-24", + "total_cases": 2238.0, + "new_cases": 21.0, + "new_cases_smoothed": 20.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4140.289, + "new_cases_per_million": 38.85, + "new_cases_smoothed_per_million": 38.057, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1187.0, + "total_tests": 45185.0, + "total_tests_per_thousand": 83.592, + "new_tests_per_thousand": 2.196, + "new_tests_smoothed": 1099.0, + "new_tests_smoothed_per_thousand": 2.033, + "tests_per_case": 53.424, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-06-25", + "total_cases": 2261.0, + "new_cases": 23.0, + "new_cases_smoothed": 20.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4182.839, + "new_cases_per_million": 42.55, + "new_cases_smoothed_per_million": 37.264, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 997.0, + "total_tests": 46182.0, + "total_tests_per_thousand": 85.436, + "new_tests_per_thousand": 1.844, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 1.998, + "tests_per_case": 53.617, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-06-26", + "total_cases": 2277.0, + "new_cases": 16.0, + "new_cases_smoothed": 20.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4212.439, + "new_cases_per_million": 29.6, + "new_cases_smoothed_per_million": 37.0, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 709.0, + "total_tests": 46891.0, + "total_tests_per_thousand": 86.748, + "new_tests_per_thousand": 1.312, + "new_tests_smoothed": 1022.0, + "new_tests_smoothed_per_thousand": 1.891, + "tests_per_case": 51.1, + "positive_rate": 0.02, + "tests_units": "samples tested" + }, + { + "date": "2020-06-27", + "total_cases": 2283.0, + "new_cases": 6.0, + "new_cases_smoothed": 19.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4223.539, + "new_cases_per_million": 11.1, + "new_cases_smoothed_per_million": 35.15, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 850.0, + "total_tests": 47741.0, + "total_tests_per_thousand": 88.321, + "new_tests_per_thousand": 1.572, + "new_tests_smoothed": 985.0, + "new_tests_smoothed_per_thousand": 1.822, + "tests_per_case": 51.842, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-06-28", + "total_cases": 2305.0, + "new_cases": 22.0, + "new_cases_smoothed": 16.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4264.238, + "new_cases_per_million": 40.7, + "new_cases_smoothed_per_million": 31.186, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 862.0, + "total_tests": 48603.0, + "total_tests_per_thousand": 89.915, + "new_tests_per_thousand": 1.595, + "new_tests_smoothed": 1007.0, + "new_tests_smoothed_per_thousand": 1.863, + "tests_per_case": 59.736999999999995, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-06-29", + "total_cases": 2323.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4297.538, + "new_cases_per_million": 33.3, + "new_cases_smoothed_per_million": 31.714, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 735.0, + "total_tests": 49338.0, + "total_tests_per_thousand": 91.275, + "new_tests_per_thousand": 1.36, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 1.72, + "tests_per_case": 54.25, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-06-30", + "total_cases": 2336.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4321.588, + "new_cases_per_million": 24.05, + "new_cases_smoothed_per_million": 31.45, + "total_deaths_per_million": 14.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 998.0, + "total_tests": 50336.0, + "total_tests_per_thousand": 93.121, + "new_tests_per_thousand": 1.846, + "new_tests_smoothed": 905.0, + "new_tests_smoothed_per_thousand": 1.674, + "tests_per_case": 53.235, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-07-01", + "total_cases": 2361.0, + "new_cases": 25.0, + "new_cases_smoothed": 17.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4367.838, + "new_cases_per_million": 46.25, + "new_cases_smoothed_per_million": 32.507, + "total_deaths_per_million": 16.65, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1240.0, + "total_tests": 51576.0, + "total_tests_per_thousand": 95.415, + "new_tests_per_thousand": 2.294, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 1.689, + "tests_per_case": 51.958999999999996, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-07-02", + "total_cases": 2382.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4406.688, + "new_cases_per_million": 38.85, + "new_cases_smoothed_per_million": 31.978, + "total_deaths_per_million": 16.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1386.0, + "total_tests": 52962.0, + "total_tests_per_thousand": 97.979, + "new_tests_per_thousand": 2.564, + "new_tests_smoothed": 969.0, + "new_tests_smoothed_per_thousand": 1.793, + "tests_per_case": 56.058, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-07-03", + "total_cases": 2400.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4439.988, + "new_cases_per_million": 33.3, + "new_cases_smoothed_per_million": 32.507, + "total_deaths_per_million": 18.5, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 905.0, + "total_tests": 53867.0, + "total_tests_per_thousand": 99.654, + "new_tests_per_thousand": 1.674, + "new_tests_smoothed": 997.0, + "new_tests_smoothed_per_thousand": 1.844, + "tests_per_case": 56.74, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-07-04", + "total_cases": 2410.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4458.488, + "new_cases_per_million": 18.5, + "new_cases_smoothed_per_million": 33.564, + "total_deaths_per_million": 18.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1378.0, + "total_tests": 55245.0, + "total_tests_per_thousand": 102.203, + "new_tests_per_thousand": 2.549, + "new_tests_smoothed": 1072.0, + "new_tests_smoothed_per_thousand": 1.983, + "tests_per_case": 59.086999999999996, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-07-05", + "total_cases": 2435.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4504.738, + "new_cases_per_million": 46.25, + "new_cases_smoothed_per_million": 34.357, + "total_deaths_per_million": 18.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 893.0, + "total_tests": 56138.0, + "total_tests_per_thousand": 103.855, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 1076.0, + "new_tests_smoothed_per_thousand": 1.991, + "tests_per_case": 57.938, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-07-06", + "total_cases": 2468.0, + "new_cases": 33.0, + "new_cases_smoothed": 20.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4565.788, + "new_cases_per_million": 61.05, + "new_cases_smoothed_per_million": 38.321, + "total_deaths_per_million": 20.35, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 778.0, + "total_tests": 56916.0, + "total_tests_per_thousand": 105.294, + "new_tests_per_thousand": 1.439, + "new_tests_smoothed": 1083.0, + "new_tests_smoothed_per_thousand": 2.004, + "tests_per_case": 52.283, + "positive_rate": 0.019, + "tests_units": "samples tested" + }, + { + "date": "2020-07-07", + "total_cases": 2491.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4608.338, + "new_cases_per_million": 42.55, + "new_cases_smoothed_per_million": 40.964, + "total_deaths_per_million": 22.2, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 695.0, + "total_tests": 57611.0, + "total_tests_per_thousand": 106.58, + "new_tests_per_thousand": 1.286, + "new_tests_smoothed": 1039.0, + "new_tests_smoothed_per_thousand": 1.922, + "tests_per_case": 46.923, + "positive_rate": 0.021, + "tests_units": "samples tested" + }, + { + "date": "2020-07-08", + "total_cases": 2501.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4626.838, + "new_cases_per_million": 18.5, + "new_cases_smoothed_per_million": 37.0, + "total_deaths_per_million": 22.2, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 972.0, + "total_tests": 58583.0, + "total_tests_per_thousand": 108.378, + "new_tests_per_thousand": 1.798, + "new_tests_smoothed": 1001.0, + "new_tests_smoothed_per_thousand": 1.852, + "tests_per_case": 50.05, + "positive_rate": 0.02, + "tests_units": "samples tested" + }, + { + "date": "2020-07-09", + "total_cases": 2517.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.286, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4656.437, + "new_cases_per_million": 29.6, + "new_cases_smoothed_per_million": 35.678, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 947.0, + "total_tests": 59530.0, + "total_tests_per_thousand": 110.13, + "new_tests_per_thousand": 1.752, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 1.735, + "tests_per_case": 48.637, + "positive_rate": 0.021, + "tests_units": "samples tested" + }, + { + "date": "2020-07-10", + "total_cases": 2553.0, + "new_cases": 36.0, + "new_cases_smoothed": 21.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4723.037, + "new_cases_per_million": 66.6, + "new_cases_smoothed_per_million": 40.436, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 451.0, + "total_tests": 59981.0, + "total_tests_per_thousand": 110.965, + "new_tests_per_thousand": 0.834, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 1.615, + "tests_per_case": 39.941, + "positive_rate": 0.025, + "tests_units": "samples tested" + }, + { + "date": "2020-07-11", + "total_cases": 2617.0, + "new_cases": 64.0, + "new_cases_smoothed": 29.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4841.437, + "new_cases_per_million": 118.4, + "new_cases_smoothed_per_million": 54.707, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 236.0, + "total_tests": 60217.0, + "total_tests_per_thousand": 111.401, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 710.0, + "new_tests_smoothed_per_thousand": 1.313, + "tests_per_case": 24.01, + "positive_rate": 0.042, + "tests_units": "samples tested" + }, + { + "date": "2020-07-12", + "total_cases": 2664.0, + "new_cases": 47.0, + "new_cases_smoothed": 32.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4928.387, + "new_cases_per_million": 86.95, + "new_cases_smoothed_per_million": 60.521, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1602.0, + "total_tests": 61819.0, + "total_tests_per_thousand": 114.365, + "new_tests_per_thousand": 2.964, + "new_tests_smoothed": 812.0, + "new_tests_smoothed_per_thousand": 1.502, + "tests_per_case": 24.820999999999998, + "positive_rate": 0.04, + "tests_units": "samples tested" + }, + { + "date": "2020-07-13", + "total_cases": 2731.0, + "new_cases": 67.0, + "new_cases_smoothed": 37.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5052.336, + "new_cases_per_million": 123.95, + "new_cases_smoothed_per_million": 69.507, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 948.0, + "total_tests": 62767.0, + "total_tests_per_thousand": 116.119, + "new_tests_per_thousand": 1.754, + "new_tests_smoothed": 836.0, + "new_tests_smoothed_per_thousand": 1.547, + "tests_per_case": 22.250999999999998, + "positive_rate": 0.045, + "tests_units": "samples tested" + }, + { + "date": "2020-07-14", + "total_cases": 2762.0, + "new_cases": 31.0, + "new_cases_smoothed": 38.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5109.686, + "new_cases_per_million": 57.35, + "new_cases_smoothed_per_million": 71.621, + "total_deaths_per_million": 24.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 792.0, + "total_tests": 63559.0, + "total_tests_per_thousand": 117.584, + "new_tests_per_thousand": 1.465, + "new_tests_smoothed": 850.0, + "new_tests_smoothed_per_thousand": 1.572, + "tests_per_case": 21.956, + "positive_rate": 0.046, + "tests_units": "samples tested" + }, + { + "date": "2020-07-15", + "total_cases": 2801.0, + "new_cases": 39.0, + "new_cases_smoothed": 42.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5181.836, + "new_cases_per_million": 72.15, + "new_cases_smoothed_per_million": 79.286, + "total_deaths_per_million": 25.9, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 680.0, + "total_tests": 64239.0, + "total_tests_per_thousand": 118.842, + "new_tests_per_thousand": 1.258, + "new_tests_smoothed": 808.0, + "new_tests_smoothed_per_thousand": 1.495, + "tests_per_case": 18.852999999999998, + "positive_rate": 0.053, + "tests_units": "samples tested" + }, + { + "date": "2020-07-16", + "total_cases": 2831.0, + "new_cases": 30.0, + "new_cases_smoothed": 44.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5237.336, + "new_cases_per_million": 55.5, + "new_cases_smoothed_per_million": 82.985, + "total_deaths_per_million": 25.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 937.0, + "total_tests": 65176.0, + "total_tests_per_thousand": 120.575, + "new_tests_per_thousand": 1.733, + "new_tests_smoothed": 807.0, + "new_tests_smoothed_per_thousand": 1.493, + "tests_per_case": 17.99, + "positive_rate": 0.055999999999999994, + "tests_units": "samples tested" + }, + { + "date": "2020-07-17", + "total_cases": 2899.0, + "new_cases": 68.0, + "new_cases_smoothed": 49.429, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5363.136, + "new_cases_per_million": 125.8, + "new_cases_smoothed_per_million": 91.443, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 623.0, + "total_tests": 65799.0, + "total_tests_per_thousand": 121.728, + "new_tests_per_thousand": 1.153, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 1.537, + "tests_per_case": 16.812, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested" + }, + { + "date": "2020-07-18", + "total_cases": 2913.0, + "new_cases": 14.0, + "new_cases_smoothed": 42.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5389.035, + "new_cases_per_million": 25.9, + "new_cases_smoothed_per_million": 78.228, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 807.0, + "total_tests": 66606.0, + "total_tests_per_thousand": 123.221, + "new_tests_per_thousand": 1.493, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 1.689, + "tests_per_case": 21.590999999999998, + "positive_rate": 0.046, + "tests_units": "samples tested" + }, + { + "date": "2020-07-19", + "total_cases": 2930.0, + "new_cases": 17.0, + "new_cases_smoothed": 38.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5420.485, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 70.3, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 658.0, + "total_tests": 67264.0, + "total_tests_per_thousand": 124.438, + "new_tests_per_thousand": 1.217, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 1.439, + "tests_per_case": 20.474, + "positive_rate": 0.049, + "tests_units": "samples tested" + }, + { + "date": "2020-07-20", + "total_cases": 2966.0, + "new_cases": 36.0, + "new_cases_smoothed": 33.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5487.085, + "new_cases_per_million": 66.6, + "new_cases_smoothed_per_million": 62.107, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 721.0, + "total_tests": 67985.0, + "total_tests_per_thousand": 125.772, + "new_tests_per_thousand": 1.334, + "new_tests_smoothed": 745.0, + "new_tests_smoothed_per_thousand": 1.378, + "tests_per_case": 22.191, + "positive_rate": 0.045, + "tests_units": "samples tested" + }, + { + "date": "2020-07-21", + "total_cases": 2966.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5487.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.914, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 711.0, + "total_tests": 68696.0, + "total_tests_per_thousand": 127.087, + "new_tests_per_thousand": 1.315, + "new_tests_smoothed": 734.0, + "new_tests_smoothed_per_thousand": 1.358, + "tests_per_case": 25.186, + "positive_rate": 0.04, + "tests_units": "samples tested" + }, + { + "date": "2020-07-22", + "total_cases": 3044.0, + "new_cases": 78.0, + "new_cases_smoothed": 34.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5631.385, + "new_cases_per_million": 144.3, + "new_cases_smoothed_per_million": 64.221, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 674.0, + "total_tests": 69370.0, + "total_tests_per_thousand": 128.334, + "new_tests_per_thousand": 1.247, + "new_tests_smoothed": 733.0, + "new_tests_smoothed_per_thousand": 1.356, + "tests_per_case": 21.115, + "positive_rate": 0.047, + "tests_units": "samples tested" + }, + { + "date": "2020-07-23", + "total_cases": 3103.0, + "new_cases": 59.0, + "new_cases_smoothed": 38.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5740.535, + "new_cases_per_million": 109.15, + "new_cases_smoothed_per_million": 71.886, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 680.0, + "total_tests": 70050.0, + "total_tests_per_thousand": 129.592, + "new_tests_per_thousand": 1.258, + "new_tests_smoothed": 696.0, + "new_tests_smoothed_per_thousand": 1.288, + "tests_per_case": 17.912, + "positive_rate": 0.055999999999999994, + "tests_units": "samples tested" + }, + { + "date": "2020-07-24", + "total_cases": 3103.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5740.535, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.914, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 795.0, + "total_tests": 70845.0, + "total_tests_per_thousand": 131.063, + "new_tests_per_thousand": 1.471, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 24.74, + "positive_rate": 0.04, + "tests_units": "samples tested" + }, + { + "date": "2020-07-25", + "total_cases": 3120.0, + "new_cases": 17.0, + "new_cases_smoothed": 29.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5771.984, + "new_cases_per_million": 31.45, + "new_cases_smoothed_per_million": 54.707, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1129.0, + "total_tests": 71974.0, + "total_tests_per_thousand": 133.152, + "new_tests_per_thousand": 2.089, + "new_tests_smoothed": 767.0, + "new_tests_smoothed_per_thousand": 1.419, + "tests_per_case": 25.936999999999998, + "positive_rate": 0.039, + "tests_units": "samples tested" + }, + { + "date": "2020-07-26", + "total_cases": 3252.0, + "new_cases": 132.0, + "new_cases_smoothed": 46.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6016.184, + "new_cases_per_million": 244.199, + "new_cases_smoothed_per_million": 85.1, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 987.0, + "total_tests": 72961.0, + "total_tests_per_thousand": 134.977, + "new_tests_per_thousand": 1.826, + "new_tests_smoothed": 814.0, + "new_tests_smoothed_per_thousand": 1.506, + "tests_per_case": 17.695999999999998, + "positive_rate": 0.057, + "tests_units": "samples tested" + }, + { + "date": "2020-07-27", + "total_cases": 3302.0, + "new_cases": 50.0, + "new_cases_smoothed": 48.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6108.684, + "new_cases_per_million": 92.5, + "new_cases_smoothed_per_million": 88.8, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1146.0, + "total_tests": 74107.0, + "total_tests_per_thousand": 137.098, + "new_tests_per_thousand": 2.12, + "new_tests_smoothed": 875.0, + "new_tests_smoothed_per_thousand": 1.619, + "tests_per_case": 18.229, + "positive_rate": 0.055, + "tests_units": "samples tested" + }, + { + "date": "2020-07-28", + "total_cases": 3369.0, + "new_cases": 67.0, + "new_cases_smoothed": 57.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6232.633, + "new_cases_per_million": 123.95, + "new_cases_smoothed_per_million": 106.507, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1443.0, + "total_tests": 75550.0, + "total_tests_per_thousand": 139.767, + "new_tests_per_thousand": 2.67, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 1.811, + "tests_per_case": 17.005, + "positive_rate": 0.059000000000000004, + "tests_units": "samples tested" + }, + { + "date": "2020-07-29", + "total_cases": 3506.0, + "new_cases": 137.0, + "new_cases_smoothed": 66.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6486.082, + "new_cases_per_million": 253.449, + "new_cases_smoothed_per_million": 122.1, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1387.0, + "total_tests": 76937.0, + "total_tests_per_thousand": 142.333, + "new_tests_per_thousand": 2.566, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 2.0, + "tests_per_case": 16.379, + "positive_rate": 0.061, + "tests_units": "samples tested" + }, + { + "date": "2020-07-30", + "total_cases": 3567.0, + "new_cases": 61.0, + "new_cases_smoothed": 66.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6598.932, + "new_cases_per_million": 112.85, + "new_cases_smoothed_per_million": 122.628, + "total_deaths_per_million": 27.75, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1103.0, + "total_tests": 78040.0, + "total_tests_per_thousand": 144.374, + "new_tests_per_thousand": 2.041, + "new_tests_smoothed": 1141.0, + "new_tests_smoothed_per_thousand": 2.111, + "tests_per_case": 17.213, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested" + }, + { + "date": "2020-07-31", + "total_cases": 3719.0, + "new_cases": 152.0, + "new_cases_smoothed": 88.0, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6880.131, + "new_cases_per_million": 281.199, + "new_cases_smoothed_per_million": 162.8, + "total_deaths_per_million": 29.6, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 860.0, + "total_tests": 78900.0, + "total_tests_per_thousand": 145.965, + "new_tests_per_thousand": 1.591, + "new_tests_smoothed": 1151.0, + "new_tests_smoothed_per_thousand": 2.129, + "tests_per_case": 13.08, + "positive_rate": 0.076, + "tests_units": "samples tested" + }, + { + "date": "2020-08-01", + "total_cases": 3793.0, + "new_cases": 74.0, + "new_cases_smoothed": 96.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7017.031, + "new_cases_per_million": 136.9, + "new_cases_smoothed_per_million": 177.864, + "total_deaths_per_million": 29.6, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 917.0, + "total_tests": 79817.0, + "total_tests_per_thousand": 147.661, + "new_tests_per_thousand": 1.696, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 2.072, + "tests_per_case": 11.649000000000001, + "positive_rate": 0.086, + "tests_units": "samples tested" + }, + { + "date": "2020-08-02", + "total_cases": 3949.0, + "new_cases": 156.0, + "new_cases_smoothed": 99.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7305.63, + "new_cases_per_million": 288.599, + "new_cases_smoothed_per_million": 184.207, + "total_deaths_per_million": 31.45, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1182.0, + "total_tests": 80999.0, + "total_tests_per_thousand": 149.848, + "new_tests_per_thousand": 2.187, + "new_tests_smoothed": 1148.0, + "new_tests_smoothed_per_thousand": 2.124, + "tests_per_case": 11.529000000000002, + "positive_rate": 0.087, + "tests_units": "samples tested" + }, + { + "date": "2020-08-03", + "total_cases": 4164.0, + "new_cases": 215.0, + "new_cases_smoothed": 123.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7703.379, + "new_cases_per_million": 397.749, + "new_cases_smoothed_per_million": 227.814, + "total_deaths_per_million": 31.45, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1209.0, + "total_tests": 82208.0, + "total_tests_per_thousand": 152.084, + "new_tests_per_thousand": 2.237, + "new_tests_smoothed": 1157.0, + "new_tests_smoothed_per_thousand": 2.14, + "tests_per_case": 9.396, + "positive_rate": 0.106, + "tests_units": "samples tested" + }, + { + "date": "2020-08-04", + "total_cases": 4293.0, + "new_cases": 129.0, + "new_cases_smoothed": 132.0, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7942.029, + "new_cases_per_million": 238.649, + "new_cases_smoothed_per_million": 244.199, + "total_deaths_per_million": 33.3, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 907.0, + "total_tests": 83115.0, + "total_tests_per_thousand": 153.762, + "new_tests_per_thousand": 1.678, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 2.0, + "tests_per_case": 8.189, + "positive_rate": 0.122, + "tests_units": "samples tested" + }, + { + "date": "2020-08-05", + "total_cases": 4446.0, + "new_cases": 153.0, + "new_cases_smoothed": 134.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8225.078, + "new_cases_per_million": 283.049, + "new_cases_smoothed_per_million": 248.428, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1029.0, + "total_tests": 84144.0, + "total_tests_per_thousand": 155.666, + "new_tests_per_thousand": 1.904, + "new_tests_smoothed": 1030.0, + "new_tests_smoothed_per_thousand": 1.905, + "tests_per_case": 7.67, + "positive_rate": 0.13, + "tests_units": "samples tested" + }, + { + "date": "2020-08-06", + "total_cases": 4594.0, + "new_cases": 148.0, + "new_cases_smoothed": 146.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8498.877, + "new_cases_per_million": 273.799, + "new_cases_smoothed_per_million": 271.421, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1443.0, + "total_tests": 85587.0, + "total_tests_per_thousand": 158.336, + "new_tests_per_thousand": 2.67, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 1.994, + "tests_per_case": 7.348, + "positive_rate": 0.136, + "tests_units": "samples tested" + }, + { + "date": "2020-08-07", + "total_cases": 4680.0, + "new_cases": 86.0, + "new_cases_smoothed": 137.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8657.977, + "new_cases_per_million": 159.1, + "new_cases_smoothed_per_million": 253.978, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1064.0, + "total_tests": 86651.0, + "total_tests_per_thousand": 160.304, + "new_tests_per_thousand": 1.968, + "new_tests_smoothed": 1107.0, + "new_tests_smoothed_per_thousand": 2.048, + "tests_per_case": 8.062999999999999, + "positive_rate": 0.124, + "tests_units": "samples tested" + }, + { + "date": "2020-08-08", + "total_cases": 4769.0, + "new_cases": 89.0, + "new_cases_smoothed": 139.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8822.626, + "new_cases_per_million": 164.65, + "new_cases_smoothed_per_million": 257.942, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 981.0, + "total_tests": 87632.0, + "total_tests_per_thousand": 162.119, + "new_tests_per_thousand": 1.815, + "new_tests_smoothed": 1116.0, + "new_tests_smoothed_per_thousand": 2.065, + "tests_per_case": 8.004, + "positive_rate": 0.125, + "tests_units": "samples tested" + }, + { + "date": "2020-08-09", + "total_cases": 4898.0, + "new_cases": 129.0, + "new_cases_smoothed": 135.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9061.276, + "new_cases_per_million": 238.649, + "new_cases_smoothed_per_million": 250.806, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 760.0, + "total_tests": 88392.0, + "total_tests_per_thousand": 163.525, + "new_tests_per_thousand": 1.406, + "new_tests_smoothed": 1056.0, + "new_tests_smoothed_per_thousand": 1.954, + "tests_per_case": 7.789, + "positive_rate": 0.128, + "tests_units": "samples tested" + }, + { + "date": "2020-08-10", + "total_cases": 5041.0, + "new_cases": 143.0, + "new_cases_smoothed": 125.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9325.825, + "new_cases_per_million": 264.549, + "new_cases_smoothed_per_million": 231.778, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1163.0, + "total_tests": 89555.0, + "total_tests_per_thousand": 165.676, + "new_tests_per_thousand": 2.152, + "new_tests_smoothed": 1050.0, + "new_tests_smoothed_per_thousand": 1.942, + "tests_per_case": 8.381, + "positive_rate": 0.11900000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-08-11", + "total_cases": 5157.0, + "new_cases": 116.0, + "new_cases_smoothed": 123.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9540.424, + "new_cases_per_million": 214.599, + "new_cases_smoothed_per_million": 228.342, + "total_deaths_per_million": 35.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1149.0, + "total_tests": 90704.0, + "total_tests_per_thousand": 167.802, + "new_tests_per_thousand": 2.126, + "new_tests_smoothed": 1084.0, + "new_tests_smoothed_per_thousand": 2.005, + "tests_per_case": 8.782, + "positive_rate": 0.114, + "tests_units": "samples tested" + }, + { + "date": "2020-08-12", + "total_cases": 5223.0, + "new_cases": 66.0, + "new_cases_smoothed": 111.0, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9662.524, + "new_cases_per_million": 122.1, + "new_cases_smoothed_per_million": 205.349, + "total_deaths_per_million": 37.0, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1199.0, + "total_tests": 91903.0, + "total_tests_per_thousand": 170.02, + "new_tests_per_thousand": 2.218, + "new_tests_smoothed": 1108.0, + "new_tests_smoothed_per_thousand": 2.05, + "tests_per_case": 9.982000000000001, + "positive_rate": 0.1, + "tests_units": "samples tested" + }, + { + "date": "2020-08-13", + "total_cases": 5366.0, + "new_cases": 143.0, + "new_cases_smoothed": 110.286, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9927.073, + "new_cases_per_million": 264.549, + "new_cases_smoothed_per_million": 204.028, + "total_deaths_per_million": 38.85, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1195.0, + "total_tests": 93098.0, + "total_tests_per_thousand": 172.231, + "new_tests_per_thousand": 2.211, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 1.985, + "tests_per_case": 9.729, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-08-14", + "total_cases": 5494.0, + "new_cases": 128.0, + "new_cases_smoothed": 116.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10163.873, + "new_cases_per_million": 236.799, + "new_cases_smoothed_per_million": 215.128, + "total_deaths_per_million": 38.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 949.0, + "total_tests": 94047.0, + "total_tests_per_thousand": 173.986, + "new_tests_per_thousand": 1.756, + "new_tests_smoothed": 1057.0, + "new_tests_smoothed_per_thousand": 1.955, + "tests_per_case": 9.09, + "positive_rate": 0.11, + "tests_units": "samples tested" + }, + { + "date": "2020-08-15", + "total_cases": 5572.0, + "new_cases": 78.0, + "new_cases_smoothed": 114.714, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10308.172, + "new_cases_per_million": 144.3, + "new_cases_smoothed_per_million": 212.221, + "total_deaths_per_million": 40.7, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 818.0, + "total_tests": 94865.0, + "total_tests_per_thousand": 175.5, + "new_tests_per_thousand": 1.513, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 1.911, + "tests_per_case": 9.005, + "positive_rate": 0.111, + "tests_units": "samples tested" + }, + { + "date": "2020-08-16", + "total_cases": 5679.0, + "new_cases": 107.0, + "new_cases_smoothed": 111.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10506.122, + "new_cases_per_million": 197.949, + "new_cases_smoothed_per_million": 206.407, + "total_deaths_per_million": 40.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1310.0, + "total_tests": 96175.0, + "total_tests_per_thousand": 177.923, + "new_tests_per_thousand": 2.423, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 2.057, + "tests_per_case": 9.967, + "positive_rate": 0.1, + "tests_units": "samples tested" + }, + { + "date": "2020-08-17", + "total_cases": 5785.0, + "new_cases": 106.0, + "new_cases_smoothed": 106.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10702.221, + "new_cases_per_million": 196.099, + "new_cases_smoothed_per_million": 196.628, + "total_deaths_per_million": 40.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1036.0, + "total_tests": 97211.0, + "total_tests_per_thousand": 179.84, + "new_tests_per_thousand": 1.917, + "new_tests_smoothed": 1094.0, + "new_tests_smoothed_per_thousand": 2.024, + "tests_per_case": 10.293, + "positive_rate": 0.09699999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-08-18", + "total_cases": 5909.0, + "new_cases": 124.0, + "new_cases_smoothed": 107.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10931.62, + "new_cases_per_million": 229.399, + "new_cases_smoothed_per_million": 198.742, + "total_deaths_per_million": 42.55, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 964.0, + "total_tests": 98175.0, + "total_tests_per_thousand": 181.623, + "new_tests_per_thousand": 1.783, + "new_tests_smoothed": 1067.0, + "new_tests_smoothed_per_thousand": 1.974, + "tests_per_case": 9.932, + "positive_rate": 0.10099999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-08-19", + "total_cases": 6079.0, + "new_cases": 170.0, + "new_cases_smoothed": 122.286, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11246.12, + "new_cases_per_million": 314.499, + "new_cases_smoothed_per_million": 226.228, + "total_deaths_per_million": 44.4, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1125.0, + "total_tests": 99300.0, + "total_tests_per_thousand": 183.705, + "new_tests_per_thousand": 2.081, + "new_tests_smoothed": 1057.0, + "new_tests_smoothed_per_thousand": 1.955, + "tests_per_case": 8.644, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-08-20", + "total_cases": 6225.0, + "new_cases": 146.0, + "new_cases_smoothed": 122.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11516.219, + "new_cases_per_million": 270.099, + "new_cases_smoothed_per_million": 227.021, + "total_deaths_per_million": 44.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 933.0, + "total_tests": 100233.0, + "total_tests_per_thousand": 185.431, + "new_tests_per_thousand": 1.726, + "new_tests_smoothed": 1019.0, + "new_tests_smoothed_per_thousand": 1.885, + "tests_per_case": 8.304, + "positive_rate": 0.12, + "tests_units": "samples tested" + }, + { + "date": "2020-08-21", + "total_cases": 6370.0, + "new_cases": 145.0, + "new_cases_smoothed": 125.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11784.468, + "new_cases_per_million": 268.249, + "new_cases_smoothed_per_million": 231.514, + "total_deaths_per_million": 44.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1497.0, + "total_tests": 101730.0, + "total_tests_per_thousand": 188.2, + "new_tests_per_thousand": 2.769, + "new_tests_smoothed": 1098.0, + "new_tests_smoothed_per_thousand": 2.031, + "tests_per_case": 8.774, + "positive_rate": 0.114, + "tests_units": "samples tested" + }, + { + "date": "2020-08-22", + "total_cases": 6564.0, + "new_cases": 194.0, + "new_cases_smoothed": 141.714, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 12143.367, + "new_cases_per_million": 358.899, + "new_cases_smoothed_per_million": 262.171, + "total_deaths_per_million": 46.25, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 952.0, + "total_tests": 102682.0, + "total_tests_per_thousand": 189.961, + "new_tests_per_thousand": 1.761, + "new_tests_smoothed": 1117.0, + "new_tests_smoothed_per_thousand": 2.066, + "tests_per_case": 7.882000000000001, + "positive_rate": 0.127, + "tests_units": "samples tested" + }, + { + "date": "2020-08-23", + "total_cases": 6660.0, + "new_cases": 96.0, + "new_cases_smoothed": 140.143, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12320.967, + "new_cases_per_million": 177.6, + "new_cases_smoothed_per_million": 259.264, + "total_deaths_per_million": 48.1, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 972.0, + "total_tests": 103654.0, + "total_tests_per_thousand": 191.759, + "new_tests_per_thousand": 1.798, + "new_tests_smoothed": 1068.0, + "new_tests_smoothed_per_thousand": 1.976, + "tests_per_case": 7.621, + "positive_rate": 0.131, + "tests_units": "samples tested" + }, + { + "date": "2020-08-24", + "total_cases": 6779.0, + "new_cases": 119.0, + "new_cases_smoothed": 142.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12541.116, + "new_cases_per_million": 220.149, + "new_cases_smoothed_per_million": 262.699, + "total_deaths_per_million": 48.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 977.0, + "total_tests": 104631.0, + "total_tests_per_thousand": 193.567, + "new_tests_per_thousand": 1.807, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 1.961, + "tests_per_case": 7.465, + "positive_rate": 0.134, + "tests_units": "samples tested" + }, + { + "date": "2020-08-25", + "total_cases": 6912.0, + "new_cases": 133.0, + "new_cases_smoothed": 143.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12787.165, + "new_cases_per_million": 246.049, + "new_cases_smoothed_per_million": 265.078, + "total_deaths_per_million": 49.95, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1224.0, + "total_tests": 105855.0, + "total_tests_per_thousand": 195.831, + "new_tests_per_thousand": 2.264, + "new_tests_smoothed": 1097.0, + "new_tests_smoothed_per_thousand": 2.029, + "tests_per_case": 7.656000000000001, + "positive_rate": 0.131, + "tests_units": "samples tested" + }, + { + "date": "2020-08-26", + "total_cases": 7047.0, + "new_cases": 135.0, + "new_cases_smoothed": 138.286, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13036.915, + "new_cases_per_million": 249.749, + "new_cases_smoothed_per_million": 255.828, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1054.0, + "total_tests": 106909.0, + "total_tests_per_thousand": 197.781, + "new_tests_per_thousand": 1.95, + "new_tests_smoothed": 1087.0, + "new_tests_smoothed_per_thousand": 2.011, + "tests_per_case": 7.861000000000001, + "positive_rate": 0.127, + "tests_units": "samples tested" + }, + { + "date": "2020-08-27", + "total_cases": 7225.0, + "new_cases": 178.0, + "new_cases_smoothed": 142.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13366.214, + "new_cases_per_million": 329.299, + "new_cases_smoothed_per_million": 264.285, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1190.0, + "total_tests": 108099.0, + "total_tests_per_thousand": 199.983, + "new_tests_per_thousand": 2.201, + "new_tests_smoothed": 1124.0, + "new_tests_smoothed_per_thousand": 2.079, + "tests_per_case": 7.867999999999999, + "positive_rate": 0.127, + "tests_units": "samples tested" + }, + { + "date": "2020-08-28", + "total_cases": 7329.0, + "new_cases": 104.0, + "new_cases_smoothed": 137.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13558.613, + "new_cases_per_million": 192.399, + "new_cases_smoothed_per_million": 253.449, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 1021.0, + "total_tests": 109120.0, + "total_tests_per_thousand": 201.871, + "new_tests_per_thousand": 1.889, + "new_tests_smoothed": 1056.0, + "new_tests_smoothed_per_thousand": 1.954, + "tests_per_case": 7.707999999999999, + "positive_rate": 0.13, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 7469.0, + "new_cases": 140.0, + "new_cases_smoothed": 129.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13817.613, + "new_cases_per_million": 258.999, + "new_cases_smoothed_per_million": 239.178, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 1129.0, + "total_tests": 110249.0, + "total_tests_per_thousand": 203.96, + "new_tests_per_thousand": 2.089, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 2.0, + "tests_per_case": 8.361, + "positive_rate": 0.12, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 7578.0, + "new_cases": 109.0, + "new_cases_smoothed": 131.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14019.262, + "new_cases_per_million": 201.649, + "new_cases_smoothed_per_million": 242.614, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1489.0, + "total_tests": 111738.0, + "total_tests_per_thousand": 206.715, + "new_tests_per_thousand": 2.755, + "new_tests_smoothed": 1155.0, + "new_tests_smoothed_per_thousand": 2.137, + "tests_per_case": 8.807, + "positive_rate": 0.114, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 7667.0, + "new_cases": 89.0, + "new_cases_smoothed": 126.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14183.912, + "new_cases_per_million": 164.65, + "new_cases_smoothed_per_million": 234.685, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "new_tests": 1189.0, + "total_tests": 112927.0, + "total_tests_per_thousand": 208.914, + "new_tests_per_thousand": 2.2, + "new_tests_smoothed": 1185.0, + "new_tests_smoothed_per_thousand": 2.192, + "tests_per_case": 9.341000000000001, + "positive_rate": 0.107, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 7808.0, + "new_cases": 141.0, + "new_cases_smoothed": 128.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14444.761, + "new_cases_per_million": 260.849, + "new_cases_smoothed_per_million": 236.799, + "total_deaths_per_million": 51.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 958.0, + "total_tests": 113885.0, + "total_tests_per_thousand": 210.687, + "new_tests_per_thousand": 1.772, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 2.122, + "tests_per_case": 8.961, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 8003.0, + "new_cases": 195.0, + "new_cases_smoothed": 136.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14805.51, + "new_cases_per_million": 360.749, + "new_cases_smoothed_per_million": 252.656, + "total_deaths_per_million": 53.65, + "new_deaths_per_million": 1.85, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1842.0, + "total_tests": 115727.0, + "total_tests_per_thousand": 214.094, + "new_tests_per_thousand": 3.408, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 2.331, + "tests_per_case": 9.226, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 8140.0, + "new_cases": 137.0, + "new_cases_smoothed": 130.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15058.959, + "new_cases_per_million": 253.449, + "new_cases_smoothed_per_million": 241.821, + "total_deaths_per_million": 53.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1337.0, + "total_tests": 117064.0, + "total_tests_per_thousand": 216.568, + "new_tests_per_thousand": 2.473, + "new_tests_smoothed": 1281.0, + "new_tests_smoothed_per_thousand": 2.37, + "tests_per_case": 9.8, + "positive_rate": 0.102, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 8281.0, + "new_cases": 141.0, + "new_cases_smoothed": 136.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15319.809, + "new_cases_per_million": 260.849, + "new_cases_smoothed_per_million": 251.599, + "total_deaths_per_million": 53.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264 + }, + { + "date": "2020-09-05", + "total_cases": 8361.0, + "new_cases": 80.0, + "new_cases_smoothed": 127.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15467.808, + "new_cases_per_million": 148.0, + "new_cases_smoothed_per_million": 235.742, + "total_deaths_per_million": 53.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264 + } + ] + }, + "MLI": { + "continent": "Africa", + "location": "Mali", + "population": 20250834.0, + "population_density": 15.196, + "median_age": 16.4, + "aged_65_older": 2.519, + "aged_70_older": 1.486, + "gdp_per_capita": 2014.306, + "cardiovasc_death_rate": 268.024, + "diabetes_prevalence": 2.42, + "female_smokers": 1.6, + "male_smokers": 23.0, + "handwashing_facilities": 52.232, + "hospital_beds_per_thousand": 0.1, + "life_expectancy": 59.31, + "data": [ + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-27", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-28", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-29", + "total_cases": 9.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.444, + "new_cases_per_million": 0.247, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-30", + "total_cases": 18.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.444, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-31", + "total_cases": 18.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 72.22 + }, + { + "date": "2020-04-02", + "total_cases": 28.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.383, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 72.22 + }, + { + "date": "2020-04-03", + "total_cases": 36.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.778, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.148, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 72.22 + }, + { + "date": "2020-04-04", + "total_cases": 39.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.926, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 72.22 + }, + { + "date": "2020-04-05", + "total_cases": 41.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.025, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 72.22 + }, + { + "date": "2020-04-06", + "total_cases": 45.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.222, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 72.22 + }, + { + "date": "2020-04-07", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2.321, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 72.22 + }, + { + "date": "2020-04-08", + "total_cases": 56.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.765, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-09", + "total_cases": 59.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2.913, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 72.22 + }, + { + "date": "2020-04-10", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.913, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-11", + "total_cases": 87.0, + "new_cases": 28.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.296, + "new_cases_per_million": 1.383, + "new_cases_smoothed_per_million": 0.339, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-12", + "total_cases": 105.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.143, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5.185, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 0.444, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 72.22 + }, + { + "date": "2020-04-13", + "total_cases": 116.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.728, + "new_cases_per_million": 0.543, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 0.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-14", + "total_cases": 123.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6.074, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.536, + "total_deaths_per_million": 0.494, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 72.22 + }, + { + "date": "2020-04-15", + "total_cases": 144.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.571, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7.111, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 72.22 + }, + { + "date": "2020-04-16", + "total_cases": 148.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 7.308, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.628, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 72.22 + }, + { + "date": "2020-04-17", + "total_cases": 171.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.444, + "new_cases_per_million": 1.136, + "new_cases_smoothed_per_million": 0.79, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 72.22 + }, + { + "date": "2020-04-18", + "total_cases": 190.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9.382, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 72.22 + }, + { + "date": "2020-04-19", + "total_cases": 216.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.666, + "new_cases_per_million": 1.284, + "new_cases_smoothed_per_million": 0.783, + "total_deaths_per_million": 0.642, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-20", + "total_cases": 224.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.429, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11.061, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.762, + "total_deaths_per_million": 0.691, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 72.22 + }, + { + "date": "2020-04-21", + "total_cases": 246.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12.148, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-22", + "total_cases": 258.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.74, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.804, + "total_deaths_per_million": 0.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 72.22 + }, + { + "date": "2020-04-23", + "total_cases": 293.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.714, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14.469, + "new_cases_per_million": 1.728, + "new_cases_smoothed_per_million": 1.023, + "total_deaths_per_million": 0.839, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 72.22 + }, + { + "date": "2020-04-24", + "total_cases": 309.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.714, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 15.259, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 1.037, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 72.22 + }, + { + "date": "2020-04-25", + "total_cases": 325.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 16.049, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 0.952, + "total_deaths_per_million": 1.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 72.22 + }, + { + "date": "2020-04-26", + "total_cases": 370.0, + "new_cases": 45.0, + "new_cases_smoothed": 22.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 18.271, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 1.086, + "total_deaths_per_million": 1.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 72.22 + }, + { + "date": "2020-04-27", + "total_cases": 389.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.571, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 19.209, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 1.164, + "total_deaths_per_million": 1.136, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 72.22 + }, + { + "date": "2020-04-28", + "total_cases": 408.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 20.147, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 1.136, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 72.22 + }, + { + "date": "2020-04-29", + "total_cases": 424.0, + "new_cases": 16.0, + "new_cases_smoothed": 23.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 20.937, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 1.171, + "total_deaths_per_million": 1.185, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 72.22 + }, + { + "date": "2020-04-30", + "total_cases": 482.0, + "new_cases": 58.0, + "new_cases_smoothed": 27.0, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 23.801, + "new_cases_per_million": 2.864, + "new_cases_smoothed_per_million": 1.333, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 72.22 + }, + { + "date": "2020-05-01", + "total_cases": 490.0, + "new_cases": 8.0, + "new_cases_smoothed": 25.857, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 24.197, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.277, + "total_deaths_per_million": 1.284, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 69.44 + }, + { + "date": "2020-05-02", + "total_cases": 508.0, + "new_cases": 18.0, + "new_cases_smoothed": 26.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 25.085, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 1.291, + "total_deaths_per_million": 1.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 69.44 + }, + { + "date": "2020-05-03", + "total_cases": 544.0, + "new_cases": 36.0, + "new_cases_smoothed": 24.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 26.863, + "new_cases_per_million": 1.778, + "new_cases_smoothed_per_million": 1.227, + "total_deaths_per_million": 1.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 69.44 + }, + { + "date": "2020-05-04", + "total_cases": 563.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.857, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 27.801, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 1.227, + "total_deaths_per_million": 1.333, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 69.44 + }, + { + "date": "2020-05-05", + "total_cases": 580.0, + "new_cases": 17.0, + "new_cases_smoothed": 24.571, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 28.641, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 1.213, + "total_deaths_per_million": 1.432, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 69.44 + }, + { + "date": "2020-05-06", + "total_cases": 612.0, + "new_cases": 32.0, + "new_cases_smoothed": 26.857, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 30.221, + "new_cases_per_million": 1.58, + "new_cases_smoothed_per_million": 1.326, + "total_deaths_per_million": 1.58, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 69.44 + }, + { + "date": "2020-05-07", + "total_cases": 631.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 31.159, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 1.051, + "total_deaths_per_million": 1.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 69.44 + }, + { + "date": "2020-05-08", + "total_cases": 650.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 32.097, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 1.129, + "total_deaths_per_million": 1.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 69.44 + }, + { + "date": "2020-05-09", + "total_cases": 668.0, + "new_cases": 18.0, + "new_cases_smoothed": 22.857, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 32.986, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 1.129, + "total_deaths_per_million": 1.728, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 69.44 + }, + { + "date": "2020-05-10", + "total_cases": 692.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.143, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 34.171, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 1.044, + "total_deaths_per_million": 1.827, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-11", + "total_cases": 704.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.143, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 34.764, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.995, + "total_deaths_per_million": 1.876, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-12", + "total_cases": 712.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.857, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 35.159, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 1.926, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 56.48 + }, + { + "date": "2020-05-13", + "total_cases": 730.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.857, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 36.048, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 0.832, + "total_deaths_per_million": 1.975, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 56.48 + }, + { + "date": "2020-05-14", + "total_cases": 758.0, + "new_cases": 28.0, + "new_cases_smoothed": 18.143, + "total_deaths": 44.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 37.431, + "new_cases_per_million": 1.383, + "new_cases_smoothed_per_million": 0.896, + "total_deaths_per_million": 2.173, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 56.48 + }, + { + "date": "2020-05-15", + "total_cases": 779.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.429, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 38.468, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 0.91, + "total_deaths_per_million": 2.272, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 56.48 + }, + { + "date": "2020-05-16", + "total_cases": 806.0, + "new_cases": 27.0, + "new_cases_smoothed": 19.714, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 39.801, + "new_cases_per_million": 1.333, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 2.272, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-17", + "total_cases": 835.0, + "new_cases": 29.0, + "new_cases_smoothed": 20.429, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 41.233, + "new_cases_per_million": 1.432, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 2.37, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-18", + "total_cases": 860.0, + "new_cases": 25.0, + "new_cases_smoothed": 22.286, + "total_deaths": 52.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 42.467, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 1.1, + "total_deaths_per_million": 2.568, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 56.48 + }, + { + "date": "2020-05-19", + "total_cases": 874.0, + "new_cases": 14.0, + "new_cases_smoothed": 23.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 43.159, + "new_cases_per_million": 0.691, + "new_cases_smoothed_per_million": 1.143, + "total_deaths_per_million": 2.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 56.48 + }, + { + "date": "2020-05-20", + "total_cases": 901.0, + "new_cases": 27.0, + "new_cases_smoothed": 24.429, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 44.492, + "new_cases_per_million": 1.333, + "new_cases_smoothed_per_million": 1.206, + "total_deaths_per_million": 2.617, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 56.48 + }, + { + "date": "2020-05-21", + "total_cases": 931.0, + "new_cases": 30.0, + "new_cases_smoothed": 24.714, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 45.973, + "new_cases_per_million": 1.481, + "new_cases_smoothed_per_million": 1.22, + "total_deaths_per_million": 2.716, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-22", + "total_cases": 947.0, + "new_cases": 16.0, + "new_cases_smoothed": 24.0, + "total_deaths": 60.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 46.764, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 1.185, + "total_deaths_per_million": 2.963, + "new_deaths_per_million": 0.247, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 56.48 + }, + { + "date": "2020-05-23", + "total_cases": 969.0, + "new_cases": 22.0, + "new_cases_smoothed": 23.286, + "total_deaths": 62.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 47.85, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 3.062, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 56.48 + }, + { + "date": "2020-05-24", + "total_cases": 1015.0, + "new_cases": 46.0, + "new_cases_smoothed": 25.714, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 50.121, + "new_cases_per_million": 2.272, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 3.111, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 56.48 + }, + { + "date": "2020-05-25", + "total_cases": 1030.0, + "new_cases": 15.0, + "new_cases_smoothed": 24.286, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 50.862, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 1.199, + "total_deaths_per_million": 3.21, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 56.48 + }, + { + "date": "2020-05-26", + "total_cases": 1059.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.429, + "total_deaths": 67.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 52.294, + "new_cases_per_million": 1.432, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 3.309, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 56.48 + }, + { + "date": "2020-05-27", + "total_cases": 1077.0, + "new_cases": 18.0, + "new_cases_smoothed": 25.143, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 53.183, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 1.242, + "total_deaths_per_million": 3.457, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 56.48 + }, + { + "date": "2020-05-28", + "total_cases": 1116.0, + "new_cases": 39.0, + "new_cases_smoothed": 26.429, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 55.109, + "new_cases_per_million": 1.926, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 3.457, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 56.48 + }, + { + "date": "2020-05-29", + "total_cases": 1194.0, + "new_cases": 78.0, + "new_cases_smoothed": 35.286, + "total_deaths": 72.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 58.961, + "new_cases_per_million": 3.852, + "new_cases_smoothed_per_million": 1.742, + "total_deaths_per_million": 3.555, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 56.48 + }, + { + "date": "2020-05-30", + "total_cases": 1226.0, + "new_cases": 32.0, + "new_cases_smoothed": 36.714, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 60.541, + "new_cases_per_million": 1.58, + "new_cases_smoothed_per_million": 1.813, + "total_deaths_per_million": 3.605, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 56.48 + }, + { + "date": "2020-05-31", + "total_cases": 1250.0, + "new_cases": 24.0, + "new_cases_smoothed": 33.571, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 61.726, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 3.753, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 56.48 + }, + { + "date": "2020-06-01", + "total_cases": 1265.0, + "new_cases": 15.0, + "new_cases_smoothed": 33.571, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 62.467, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 3.802, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 56.48 + }, + { + "date": "2020-06-02", + "total_cases": 1315.0, + "new_cases": 50.0, + "new_cases_smoothed": 36.571, + "total_deaths": 78.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 64.936, + "new_cases_per_million": 2.469, + "new_cases_smoothed_per_million": 1.806, + "total_deaths_per_million": 3.852, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 52.78 + }, + { + "date": "2020-06-03", + "total_cases": 1351.0, + "new_cases": 36.0, + "new_cases_smoothed": 39.143, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 66.713, + "new_cases_per_million": 1.778, + "new_cases_smoothed_per_million": 1.933, + "total_deaths_per_million": 3.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 52.78 + }, + { + "date": "2020-06-04", + "total_cases": 1351.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.571, + "total_deaths": 78.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 66.713, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 3.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 52.78 + }, + { + "date": "2020-06-05", + "total_cases": 1461.0, + "new_cases": 110.0, + "new_cases_smoothed": 38.143, + "total_deaths": 85.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 72.145, + "new_cases_per_million": 5.432, + "new_cases_smoothed_per_million": 1.884, + "total_deaths_per_million": 4.197, + "new_deaths_per_million": 0.346, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 52.78 + }, + { + "date": "2020-06-06", + "total_cases": 1485.0, + "new_cases": 24.0, + "new_cases_smoothed": 37.0, + "total_deaths": 87.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 73.33, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 1.827, + "total_deaths_per_million": 4.296, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 52.78 + }, + { + "date": "2020-06-07", + "total_cases": 1523.0, + "new_cases": 38.0, + "new_cases_smoothed": 39.0, + "total_deaths": 90.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 75.207, + "new_cases_per_million": 1.876, + "new_cases_smoothed_per_million": 1.926, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 52.78 + }, + { + "date": "2020-06-08", + "total_cases": 1533.0, + "new_cases": 10.0, + "new_cases_smoothed": 38.286, + "total_deaths": 92.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 75.701, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 1.891, + "total_deaths_per_million": 4.543, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 52.78 + }, + { + "date": "2020-06-09", + "total_cases": 1547.0, + "new_cases": 14.0, + "new_cases_smoothed": 33.143, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 76.392, + "new_cases_per_million": 0.691, + "new_cases_smoothed_per_million": 1.637, + "total_deaths_per_million": 4.543, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 52.78 + }, + { + "date": "2020-06-10", + "total_cases": 1586.0, + "new_cases": 39.0, + "new_cases_smoothed": 33.571, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 78.318, + "new_cases_per_million": 1.926, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 4.642, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 52.78 + }, + { + "date": "2020-06-11", + "total_cases": 1667.0, + "new_cases": 81.0, + "new_cases_smoothed": 45.143, + "total_deaths": 96.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 82.318, + "new_cases_per_million": 4.0, + "new_cases_smoothed_per_million": 2.229, + "total_deaths_per_million": 4.741, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 52.78 + }, + { + "date": "2020-06-12", + "total_cases": 1722.0, + "new_cases": 55.0, + "new_cases_smoothed": 37.286, + "total_deaths": 97.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 85.034, + "new_cases_per_million": 2.716, + "new_cases_smoothed_per_million": 1.841, + "total_deaths_per_million": 4.79, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 52.78 + }, + { + "date": "2020-06-13", + "total_cases": 1752.0, + "new_cases": 30.0, + "new_cases_smoothed": 38.143, + "total_deaths": 101.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 86.515, + "new_cases_per_million": 1.481, + "new_cases_smoothed_per_million": 1.884, + "total_deaths_per_million": 4.987, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 52.78 + }, + { + "date": "2020-06-14", + "total_cases": 1776.0, + "new_cases": 24.0, + "new_cases_smoothed": 36.143, + "total_deaths": 104.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 87.7, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 1.785, + "total_deaths_per_million": 5.136, + "new_deaths_per_million": 0.148, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 52.78 + }, + { + "date": "2020-06-15", + "total_cases": 1809.0, + "new_cases": 33.0, + "new_cases_smoothed": 39.429, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 89.33, + "new_cases_per_million": 1.63, + "new_cases_smoothed_per_million": 1.947, + "total_deaths_per_million": 5.136, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 52.78 + }, + { + "date": "2020-06-16", + "total_cases": 1860.0, + "new_cases": 51.0, + "new_cases_smoothed": 44.714, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 91.848, + "new_cases_per_million": 2.518, + "new_cases_smoothed_per_million": 2.208, + "total_deaths_per_million": 5.136, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 52.78 + }, + { + "date": "2020-06-17", + "total_cases": 1885.0, + "new_cases": 25.0, + "new_cases_smoothed": 42.714, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 93.083, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 2.109, + "total_deaths_per_million": 5.234, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 52.78 + }, + { + "date": "2020-06-18", + "total_cases": 1890.0, + "new_cases": 5.0, + "new_cases_smoothed": 31.857, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 93.329, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 1.573, + "total_deaths_per_million": 5.284, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 52.78 + }, + { + "date": "2020-06-19", + "total_cases": 1906.0, + "new_cases": 16.0, + "new_cases_smoothed": 26.286, + "total_deaths": 107.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 94.12, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 1.298, + "total_deaths_per_million": 5.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.071, + "stringency_index": 52.78 + }, + { + "date": "2020-06-20", + "total_cases": 1923.0, + "new_cases": 17.0, + "new_cases_smoothed": 24.429, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 94.959, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 1.206, + "total_deaths_per_million": 5.333, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 52.78 + }, + { + "date": "2020-06-21", + "total_cases": 1933.0, + "new_cases": 10.0, + "new_cases_smoothed": 22.429, + "total_deaths": 109.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 95.453, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 1.108, + "total_deaths_per_million": 5.382, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-06-22", + "total_cases": 1961.0, + "new_cases": 28.0, + "new_cases_smoothed": 21.714, + "total_deaths": 111.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 96.836, + "new_cases_per_million": 1.383, + "new_cases_smoothed_per_million": 1.072, + "total_deaths_per_million": 5.481, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 52.78 + }, + { + "date": "2020-06-23", + "total_cases": 1961.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 96.836, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.712, + "total_deaths_per_million": 5.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 52.78 + }, + { + "date": "2020-06-24", + "total_cases": 1978.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.286, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 97.675, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.656, + "total_deaths_per_million": 5.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-06-25", + "total_cases": 2001.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.857, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 98.811, + "new_cases_per_million": 1.136, + "new_cases_smoothed_per_million": 0.783, + "total_deaths_per_million": 5.531, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-06-26", + "total_cases": 2007.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.429, + "total_deaths": 113.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 99.107, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.712, + "total_deaths_per_million": 5.58, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 52.78 + }, + { + "date": "2020-06-27", + "total_cases": 2039.0, + "new_cases": 32.0, + "new_cases_smoothed": 16.571, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 100.687, + "new_cases_per_million": 1.58, + "new_cases_smoothed_per_million": 0.818, + "total_deaths_per_million": 5.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-06-28", + "total_cases": 2118.0, + "new_cases": 79.0, + "new_cases_smoothed": 26.429, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 104.588, + "new_cases_per_million": 3.901, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 5.58, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-06-29", + "total_cases": 2147.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.571, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 106.02, + "new_cases_per_million": 1.432, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 5.629, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-06-30", + "total_cases": 2173.0, + "new_cases": 26.0, + "new_cases_smoothed": 30.286, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 107.304, + "new_cases_per_million": 1.284, + "new_cases_smoothed_per_million": 1.496, + "total_deaths_per_million": 5.679, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-01", + "total_cases": 2181.0, + "new_cases": 8.0, + "new_cases_smoothed": 29.0, + "total_deaths": 116.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 107.699, + "new_cases_per_million": 0.395, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 5.728, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-07-02", + "total_cases": 2202.0, + "new_cases": 21.0, + "new_cases_smoothed": 28.714, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 108.736, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.418, + "total_deaths_per_million": 5.728, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-03", + "total_cases": 2260.0, + "new_cases": 58.0, + "new_cases_smoothed": 36.143, + "total_deaths": 117.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 111.6, + "new_cases_per_million": 2.864, + "new_cases_smoothed_per_million": 1.785, + "total_deaths_per_million": 5.778, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-04", + "total_cases": 2285.0, + "new_cases": 25.0, + "new_cases_smoothed": 35.143, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 112.835, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 1.735, + "total_deaths_per_million": 5.778, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-05", + "total_cases": 2303.0, + "new_cases": 18.0, + "new_cases_smoothed": 26.429, + "total_deaths": 118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 113.724, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 5.827, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-07-06", + "total_cases": 2330.0, + "new_cases": 27.0, + "new_cases_smoothed": 26.143, + "total_deaths": 119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 115.057, + "new_cases_per_million": 1.333, + "new_cases_smoothed_per_million": 1.291, + "total_deaths_per_million": 5.876, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 52.78 + }, + { + "date": "2020-07-07", + "total_cases": 2331.0, + "new_cases": 1.0, + "new_cases_smoothed": 22.571, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 115.106, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 1.115, + "total_deaths_per_million": 5.876, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-08", + "total_cases": 2348.0, + "new_cases": 17.0, + "new_cases_smoothed": 23.857, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 115.946, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 1.178, + "total_deaths_per_million": 5.876, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-07-09", + "total_cases": 2358.0, + "new_cases": 10.0, + "new_cases_smoothed": 22.286, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 116.44, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 1.1, + "total_deaths_per_million": 5.926, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-10", + "total_cases": 2358.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 116.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.691, + "total_deaths_per_million": 5.926, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-07-11", + "total_cases": 2404.0, + "new_cases": 46.0, + "new_cases_smoothed": 17.0, + "total_deaths": 121.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 118.711, + "new_cases_per_million": 2.272, + "new_cases_smoothed_per_million": 0.839, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 52.78 + }, + { + "date": "2020-07-12", + "total_cases": 2406.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.714, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 118.81, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-07-13", + "total_cases": 2411.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.571, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 119.057, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-14", + "total_cases": 2412.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.571, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 119.106, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-15", + "total_cases": 2423.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.714, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 119.649, + "new_cases_per_million": 0.543, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-16", + "total_cases": 2433.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.714, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 120.143, + "new_cases_per_million": 0.494, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-07-17", + "total_cases": 2440.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.714, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 120.489, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.578, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-07-18", + "total_cases": 2467.0, + "new_cases": 27.0, + "new_cases_smoothed": 9.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.822, + "new_cases_per_million": 1.333, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-07-19", + "total_cases": 2472.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.069, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-07-20", + "total_cases": 2475.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.217, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-07-21", + "total_cases": 2475.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.217, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-07-22", + "total_cases": 2477.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 122.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 122.316, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.381, + "total_deaths_per_million": 6.024, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-07-23", + "total_cases": 2494.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 123.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.155, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-24", + "total_cases": 2494.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.714, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.381, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-25", + "total_cases": 2503.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.143, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.6, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 0.254, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-26", + "total_cases": 2503.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-27", + "total_cases": 2510.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 123.946, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 6.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-28", + "total_cases": 2513.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.429, + "total_deaths": 124.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 124.094, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 52.78 + }, + { + "date": "2020-07-29", + "total_cases": 2520.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 124.439, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 52.78 + }, + { + "date": "2020-07-30", + "total_cases": 2521.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 124.489, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 52.78 + }, + { + "date": "2020-07-31", + "total_cases": 2522.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 124.538, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-01", + "total_cases": 2535.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.18, + "new_cases_per_million": 0.642, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-02", + "total_cases": 2535.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-03", + "total_cases": 2541.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.476, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-04", + "total_cases": 2543.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.575, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-05", + "total_cases": 2543.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.575, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-06", + "total_cases": 2546.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.723, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-07", + "total_cases": 2552.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.02, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 6.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-08", + "total_cases": 2561.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.714, + "total_deaths": 125.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 126.464, + "new_cases_per_million": 0.444, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-09", + "total_cases": 2565.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 126.661, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-10", + "total_cases": 2567.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 126.76, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-11", + "total_cases": 2573.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.056, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-12", + "total_cases": 2577.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.254, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-13", + "total_cases": 2582.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.501, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.254, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-14", + "total_cases": 2597.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 128.242, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-15", + "total_cases": 2597.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.242, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.254, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-16", + "total_cases": 2614.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.081, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.346, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-17", + "total_cases": 2614.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.081, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-18", + "total_cases": 2640.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.571, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.365, + "new_cases_per_million": 1.284, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-19", + "total_cases": 2666.0, + "new_cases": 26.0, + "new_cases_smoothed": 12.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.649, + "new_cases_per_million": 1.284, + "new_cases_smoothed_per_million": 0.628, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-20", + "total_cases": 2667.0, + "new_cases": 1.0, + "new_cases_smoothed": 12.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.698, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-21", + "total_cases": 2667.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.494, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-22", + "total_cases": 2688.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.735, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 0.642, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-23", + "total_cases": 2699.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.278, + "new_cases_per_million": 0.543, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-24", + "total_cases": 2705.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.0, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.575, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.642, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-25", + "total_cases": 2708.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.723, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.48, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-26", + "total_cases": 2713.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 133.97, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 6.173, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-08-27", + "total_cases": 2717.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.143, + "total_deaths": 126.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.167, + "new_cases_per_million": 0.198, + "new_cases_smoothed_per_million": 0.353, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-28", + "total_cases": 2730.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.0, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.809, + "new_cases_per_million": 0.642, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-29", + "total_cases": 2736.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 135.106, + "new_cases_per_million": 0.296, + "new_cases_smoothed_per_million": 0.339, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-30", + "total_cases": 2757.0, + "new_cases": 21.0, + "new_cases_smoothed": 8.286, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 136.143, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 0.409, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-08-31", + "total_cases": 2773.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.714, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 136.933, + "new_cases_per_million": 0.79, + "new_cases_smoothed_per_million": 0.48, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-09-01", + "total_cases": 2776.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.714, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.081, + "new_cases_per_million": 0.148, + "new_cases_smoothed_per_million": 0.48, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-09-02", + "total_cases": 2777.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.143, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.13, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 47.22 + }, + { + "date": "2020-09-03", + "total_cases": 2802.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.143, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.365, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-09-04", + "total_cases": 2807.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.0, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.612, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.543, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2814.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.143, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.957, + "new_cases_per_million": 0.346, + "new_cases_smoothed_per_million": 0.55, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MLT": { + "continent": "Europe", + "location": "Malta", + "population": 441539.0, + "population_density": 1454.037, + "median_age": 42.4, + "aged_65_older": 19.426, + "aged_70_older": 11.324, + "gdp_per_capita": 36513.323, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 168.711, + "diabetes_prevalence": 8.83, + "female_smokers": 20.9, + "male_smokers": 30.2, + "hospital_beds_per_thousand": 4.485, + "life_expectancy": 82.53, + "data": [ + { + "date": "2020-02-06", + "new_tests": 1.0, + "total_tests": 1.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-02-07", + "tests_units": "tests performed" + }, + { + "date": "2020-02-08", + "tests_units": "tests performed" + }, + { + "date": "2020-02-09", + "tests_units": "tests performed" + }, + { + "date": "2020-02-10", + "tests_units": "tests performed" + }, + { + "date": "2020-02-11", + "tests_units": "tests performed" + }, + { + "date": "2020-02-12", + "tests_units": "tests performed" + }, + { + "date": "2020-02-13", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-14", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-15", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-16", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-17", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-18", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-19", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-20", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-21", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-22", + "new_tests": 1.0, + "total_tests": 2.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-02-23", + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_units": "tests performed" + }, + { + "date": "2020-02-24", + "new_tests": 44.0, + "total_tests": 46.0, + "total_tests_per_thousand": 0.104, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_units": "tests performed" + }, + { + "date": "2020-02-25", + "new_tests": 29.0, + "total_tests": 75.0, + "total_tests_per_thousand": 0.17, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 10.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "tests performed" + }, + { + "date": "2020-02-26", + "new_tests": 50.0, + "total_tests": 125.0, + "total_tests_per_thousand": 0.283, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "tests performed" + }, + { + "date": "2020-02-27", + "new_tests": 14.0, + "total_tests": 139.0, + "total_tests_per_thousand": 0.315, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_units": "tests performed" + }, + { + "date": "2020-02-28", + "new_tests": 10.0, + "total_tests": 149.0, + "total_tests_per_thousand": 0.337, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 21.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_units": "tests performed" + }, + { + "date": "2020-02-29", + "new_tests": 7.0, + "total_tests": 156.0, + "total_tests_per_thousand": 0.353, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_units": "tests performed" + }, + { + "date": "2020-03-01", + "new_tests": 8.0, + "total_tests": 164.0, + "total_tests_per_thousand": 0.371, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_units": "tests performed" + }, + { + "date": "2020-03-02", + "new_tests": 5.0, + "total_tests": 169.0, + "total_tests_per_thousand": 0.383, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "tests performed" + }, + { + "date": "2020-03-03", + "new_tests": 22.0, + "total_tests": 191.0, + "total_tests_per_thousand": 0.433, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_units": "tests performed" + }, + { + "date": "2020-03-04", + "new_tests": 42.0, + "total_tests": 233.0, + "total_tests_per_thousand": 0.528, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_units": "tests performed" + }, + { + "date": "2020-03-05", + "new_tests": 31.0, + "total_tests": 264.0, + "total_tests_per_thousand": 0.598, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "tests performed" + }, + { + "date": "2020-03-06", + "new_tests": 63.0, + "total_tests": 327.0, + "total_tests_per_thousand": 0.741, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "tests performed" + }, + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.265, + "new_cases_per_million": 2.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 98.0, + "total_tests": 425.0, + "total_tests_per_thousand": 0.963, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "tests performed" + }, + { + "date": "2020-03-08", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.794, + "new_cases_per_million": 4.53, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 543.0, + "total_tests_per_thousand": 1.23, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_units": "tests performed" + }, + { + "date": "2020-03-09", + "total_cases": 5.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 11.324, + "new_cases_per_million": 4.53, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 83.0, + "total_tests": 626.0, + "total_tests_per_thousand": 1.418, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "tests performed" + }, + { + "date": "2020-03-10", + "total_cases": 6.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 13.589, + "new_cases_per_million": 2.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 65.0, + "total_tests": 691.0, + "total_tests_per_thousand": 1.565, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_units": "tests performed" + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 15.854, + "new_cases_per_million": 2.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 162.0, + "total_tests": 853.0, + "total_tests_per_thousand": 1.932, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 89.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_units": "tests performed" + }, + { + "date": "2020-03-12", + "total_cases": 8.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.118, + "new_cases_per_million": 2.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 188.0, + "total_tests": 1041.0, + "total_tests_per_thousand": 2.358, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 111.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_units": "tests performed" + }, + { + "date": "2020-03-13", + "total_cases": 18.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.767, + "new_cases_per_million": 22.648, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 148.0, + "total_tests": 1189.0, + "total_tests_per_thousand": 2.693, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 123.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_units": "tests performed" + }, + { + "date": "2020-03-14", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.031, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 154.0, + "total_tests": 1343.0, + "total_tests_per_thousand": 3.042, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 131.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 50.943999999999996, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-03-15", + "total_cases": 30.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.944, + "new_cases_per_million": 24.913, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 130.0, + "total_tests": 1473.0, + "total_tests_per_thousand": 3.336, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 133.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 34.481, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed" + }, + { + "date": "2020-03-16", + "total_cases": 38.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.063, + "new_cases_per_million": 18.118, + "new_cases_smoothed_per_million": 10.677, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 141.0, + "total_tests": 1614.0, + "total_tests_per_thousand": 3.655, + "new_tests_per_thousand": 0.319, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_per_case": 29.909000000000002, + "positive_rate": 0.033, + "tests_units": "tests performed" + }, + { + "date": "2020-03-17", + "total_cases": 48.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.711, + "new_cases_per_million": 22.648, + "new_cases_smoothed_per_million": 13.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 160.0, + "total_tests": 1774.0, + "total_tests_per_thousand": 4.018, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 25.833000000000002, + "positive_rate": 0.039, + "tests_units": "tests performed" + }, + { + "date": "2020-03-18", + "total_cases": 52.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.77, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 14.559, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 302.0, + "total_tests": 2076.0, + "total_tests_per_thousand": 4.702, + "new_tests_per_thousand": 0.684, + "new_tests_smoothed": 175.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 27.221999999999998, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed" + }, + { + "date": "2020-03-19", + "total_cases": 64.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.948, + "new_cases_per_million": 27.178, + "new_cases_smoothed_per_million": 18.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 276.0, + "total_tests": 2352.0, + "total_tests_per_thousand": 5.327, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 187.0, + "new_tests_smoothed_per_thousand": 0.424, + "tests_per_case": 23.375, + "positive_rate": 0.043, + "tests_units": "tests performed" + }, + { + "date": "2020-03-20", + "total_cases": 73.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 165.331, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 17.795, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 259.0, + "total_tests": 2611.0, + "total_tests_per_thousand": 5.913, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 203.0, + "new_tests_smoothed_per_thousand": 0.46, + "tests_per_case": 25.836, + "positive_rate": 0.039, + "tests_units": "tests performed" + }, + { + "date": "2020-03-21", + "total_cases": 90.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.833, + "new_cases_per_million": 38.502, + "new_cases_smoothed_per_million": 22.972, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 296.0, + "total_tests": 2907.0, + "total_tests_per_thousand": 6.584, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 223.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 21.986, + "positive_rate": 0.045, + "tests_units": "tests performed" + }, + { + "date": "2020-03-22", + "total_cases": 107.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.334, + "new_cases_per_million": 38.502, + "new_cases_smoothed_per_million": 24.913, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 309.0, + "total_tests": 3216.0, + "total_tests_per_thousand": 7.284, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.564, + "tests_per_case": 22.636, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed" + }, + { + "date": "2020-03-23", + "total_cases": 114.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.188, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 24.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 311.0, + "total_tests": 3527.0, + "total_tests_per_thousand": 7.988, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 273.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 25.145, + "positive_rate": 0.04, + "tests_units": "tests performed" + }, + { + "date": "2020-03-24", + "total_cases": 129.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 292.16, + "new_cases_per_million": 33.972, + "new_cases_smoothed_per_million": 26.207, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 488.0, + "total_tests": 4015.0, + "total_tests_per_thousand": 9.093, + "new_tests_per_thousand": 1.105, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 27.654, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed" + }, + { + "date": "2020-03-25", + "total_cases": 134.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 303.484, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 26.531, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 405.0, + "total_tests": 4420.0, + "total_tests_per_thousand": 10.01, + "new_tests_per_thousand": 0.917, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.759, + "tests_per_case": 28.598000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed" + }, + { + "date": "2020-03-26", + "total_cases": 139.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 314.808, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 24.266, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 454.0, + "total_tests": 4874.0, + "total_tests_per_thousand": 11.039, + "new_tests_per_thousand": 1.028, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.815, + "tests_per_case": 33.6, + "positive_rate": 0.03, + "tests_units": "tests performed" + }, + { + "date": "2020-03-27", + "total_cases": 149.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 337.456, + "new_cases_per_million": 22.648, + "new_cases_smoothed_per_million": 24.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 518.0, + "total_tests": 5392.0, + "total_tests_per_thousand": 12.212, + "new_tests_per_thousand": 1.173, + "new_tests_smoothed": 397.0, + "new_tests_smoothed_per_thousand": 0.899, + "tests_per_case": 36.566, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed" + }, + { + "date": "2020-03-28", + "total_cases": 151.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 341.986, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 19.736, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 599.0, + "total_tests": 5991.0, + "total_tests_per_thousand": 13.568, + "new_tests_per_thousand": 1.357, + "new_tests_smoothed": 441.0, + "new_tests_smoothed_per_thousand": 0.999, + "tests_per_case": 50.607, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-03-29", + "total_cases": 156.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 353.31, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 15.854, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 631.0, + "total_tests": 6622.0, + "total_tests_per_thousand": 14.998, + "new_tests_per_thousand": 1.429, + "new_tests_smoothed": 487.0, + "new_tests_smoothed_per_thousand": 1.103, + "tests_per_case": 69.571, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-03-30", + "total_cases": 169.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.752, + "new_cases_per_million": 29.442, + "new_cases_smoothed_per_million": 17.795, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 564.0, + "total_tests": 7186.0, + "total_tests_per_thousand": 16.275, + "new_tests_per_thousand": 1.277, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 66.564, + "positive_rate": 0.015, + "tests_units": "tests performed" + }, + { + "date": "2020-03-31", + "total_cases": 188.0, + "new_cases": 19.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 425.783, + "new_cases_per_million": 43.031, + "new_cases_smoothed_per_million": 19.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 625.0, + "total_tests": 7811.0, + "total_tests_per_thousand": 17.69, + "new_tests_per_thousand": 1.416, + "new_tests_smoothed": 542.0, + "new_tests_smoothed_per_thousand": 1.228, + "tests_per_case": 64.305, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-04-01", + "total_cases": 195.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 441.637, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 19.736, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 737.0, + "total_tests": 8548.0, + "total_tests_per_thousand": 19.36, + "new_tests_per_thousand": 1.669, + "new_tests_smoothed": 590.0, + "new_tests_smoothed_per_thousand": 1.336, + "tests_per_case": 67.705, + "positive_rate": 0.015, + "tests_units": "tests performed" + }, + { + "date": "2020-04-02", + "total_cases": 202.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 457.491, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 20.383, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 747.0, + "total_tests": 9295.0, + "total_tests_per_thousand": 21.051, + "new_tests_per_thousand": 1.692, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 1.431, + "tests_per_case": 70.222, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-03", + "total_cases": 213.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 482.404, + "new_cases_per_million": 24.913, + "new_cases_smoothed_per_million": 20.707, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 660.0, + "total_tests": 9955.0, + "total_tests_per_thousand": 22.546, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 652.0, + "new_tests_smoothed_per_thousand": 1.477, + "tests_per_case": 71.312, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-04", + "total_cases": 227.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 514.111, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 24.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 654.0, + "total_tests": 10609.0, + "total_tests_per_thousand": 24.027, + "new_tests_per_thousand": 1.481, + "new_tests_smoothed": 660.0, + "new_tests_smoothed_per_thousand": 1.495, + "tests_per_case": 60.788999999999994, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-04-05", + "total_cases": 241.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 545.818, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 27.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 555.0, + "total_tests": 11164.0, + "total_tests_per_thousand": 25.284, + "new_tests_per_thousand": 1.257, + "new_tests_smoothed": 649.0, + "new_tests_smoothed_per_thousand": 1.47, + "tests_per_case": 53.446999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-04-06", + "total_cases": 293.0, + "new_cases": 52.0, + "new_cases_smoothed": 17.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 663.588, + "new_cases_per_million": 117.77, + "new_cases_smoothed_per_million": 40.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 817.0, + "total_tests": 11981.0, + "total_tests_per_thousand": 27.135, + "new_tests_per_thousand": 1.85, + "new_tests_smoothed": 685.0, + "new_tests_smoothed_per_thousand": 1.551, + "tests_per_case": 38.669000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-04-07", + "total_cases": 299.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 677.177, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 35.913, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 991.0, + "total_tests": 12972.0, + "total_tests_per_thousand": 29.379, + "new_tests_per_thousand": 2.244, + "new_tests_smoothed": 737.0, + "new_tests_smoothed_per_thousand": 1.669, + "tests_per_case": 46.477, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-04-08", + "total_cases": 337.0, + "new_cases": 38.0, + "new_cases_smoothed": 20.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 763.239, + "new_cases_per_million": 86.063, + "new_cases_smoothed_per_million": 45.943, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1001.0, + "total_tests": 13973.0, + "total_tests_per_thousand": 31.646, + "new_tests_per_thousand": 2.267, + "new_tests_smoothed": 775.0, + "new_tests_smoothed_per_thousand": 1.755, + "tests_per_case": 38.204, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-04-09", + "total_cases": 350.0, + "new_cases": 13.0, + "new_cases_smoothed": 21.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 792.682, + "new_cases_per_million": 29.442, + "new_cases_smoothed_per_million": 47.884, + "total_deaths_per_million": 2.265, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 995.0, + "total_tests": 14968.0, + "total_tests_per_thousand": 33.9, + "new_tests_per_thousand": 2.253, + "new_tests_smoothed": 810.0, + "new_tests_smoothed_per_thousand": 1.834, + "tests_per_case": 38.311, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-04-10", + "total_cases": 370.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 837.978, + "new_cases_per_million": 45.296, + "new_cases_smoothed_per_million": 50.796, + "total_deaths_per_million": 4.53, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 1200.0, + "total_tests": 16168.0, + "total_tests_per_thousand": 36.617, + "new_tests_per_thousand": 2.718, + "new_tests_smoothed": 888.0, + "new_tests_smoothed_per_thousand": 2.011, + "tests_per_case": 39.592, + "positive_rate": 0.025, + "tests_units": "tests performed" + }, + { + "date": "2020-04-11", + "total_cases": 378.0, + "new_cases": 8.0, + "new_cases_smoothed": 21.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 856.097, + "new_cases_per_million": 18.118, + "new_cases_smoothed_per_million": 48.855, + "total_deaths_per_million": 4.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 1024.0, + "total_tests": 17192.0, + "total_tests_per_thousand": 38.937, + "new_tests_per_thousand": 2.319, + "new_tests_smoothed": 940.0, + "new_tests_smoothed_per_thousand": 2.129, + "tests_per_case": 43.576, + "positive_rate": 0.023, + "tests_units": "tests performed" + }, + { + "date": "2020-04-12", + "total_cases": 384.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 869.685, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 46.267, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 948.0, + "total_tests": 18140.0, + "total_tests_per_thousand": 41.084, + "new_tests_per_thousand": 2.147, + "new_tests_smoothed": 997.0, + "new_tests_smoothed_per_thousand": 2.258, + "tests_per_case": 48.803999999999995, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-04-13", + "total_cases": 393.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 890.069, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 32.354, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 1047.0, + "total_tests": 19187.0, + "total_tests_per_thousand": 43.455, + "new_tests_per_thousand": 2.371, + "new_tests_smoothed": 1029.0, + "new_tests_smoothed_per_thousand": 2.33, + "tests_per_case": 72.03, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-14", + "total_cases": 399.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 903.657, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 32.354, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 1062.0, + "total_tests": 20249.0, + "total_tests_per_thousand": 45.86, + "new_tests_per_thousand": 2.405, + "new_tests_smoothed": 1040.0, + "new_tests_smoothed_per_thousand": 2.355, + "tests_per_case": 72.8, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-15", + "total_cases": 412.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 933.1, + "new_cases_per_million": 29.442, + "new_cases_smoothed_per_million": 24.266, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 1029.0, + "total_tests": 21278.0, + "total_tests_per_thousand": 48.191, + "new_tests_per_thousand": 2.33, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 2.364, + "tests_per_case": 97.44, + "positive_rate": 0.01, + "tests_units": "tests performed" + }, + { + "date": "2020-04-16", + "total_cases": 422.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 955.748, + "new_cases_per_million": 22.648, + "new_cases_smoothed_per_million": 23.295, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 1076.0, + "total_tests": 22354.0, + "total_tests_per_thousand": 50.627, + "new_tests_per_thousand": 2.437, + "new_tests_smoothed": 1055.0, + "new_tests_smoothed_per_thousand": 2.389, + "tests_per_case": 102.569, + "positive_rate": 0.01, + "tests_units": "tests performed" + }, + { + "date": "2020-04-17", + "total_cases": 426.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 964.807, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 18.118, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 979.0, + "total_tests": 23333.0, + "total_tests_per_thousand": 52.845, + "new_tests_per_thousand": 2.217, + "new_tests_smoothed": 1024.0, + "new_tests_smoothed_per_thousand": 2.319, + "tests_per_case": 128.0, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-04-18", + "total_cases": 427.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 967.072, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 15.854, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 783.0, + "total_tests": 24116.0, + "total_tests_per_thousand": 54.618, + "new_tests_per_thousand": 1.773, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 2.24, + "tests_per_case": 141.286, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-19", + "total_cases": 431.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 976.131, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 15.207, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 572.0, + "total_tests": 24688.0, + "total_tests_per_thousand": 55.914, + "new_tests_per_thousand": 1.295, + "new_tests_smoothed": 935.0, + "new_tests_smoothed_per_thousand": 2.118, + "tests_per_case": 139.255, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-04-20", + "total_cases": 443.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1003.309, + "new_cases_per_million": 27.178, + "new_cases_smoothed_per_million": 16.177, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 705.0, + "total_tests": 25393.0, + "total_tests_per_thousand": 57.51, + "new_tests_per_thousand": 1.597, + "new_tests_smoothed": 887.0, + "new_tests_smoothed_per_thousand": 2.009, + "tests_per_case": 124.18, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-04-21", + "total_cases": 444.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1005.574, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 14.559, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 810.0, + "total_tests": 26203.0, + "total_tests_per_thousand": 59.345, + "new_tests_per_thousand": 1.834, + "new_tests_smoothed": 851.0, + "new_tests_smoothed_per_thousand": 1.927, + "tests_per_case": 132.378, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-04-22", + "total_cases": 444.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1005.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.353, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 640.0, + "total_tests": 26843.0, + "total_tests_per_thousand": 60.794, + "new_tests_per_thousand": 1.449, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 1.801, + "tests_per_case": 173.90599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-04-23", + "total_cases": 446.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1010.103, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 609.0, + "total_tests": 27452.0, + "total_tests_per_thousand": 62.173, + "new_tests_per_thousand": 1.379, + "new_tests_smoothed": 728.0, + "new_tests_smoothed_per_thousand": 1.649, + "tests_per_case": 212.333, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-04-24", + "total_cases": 447.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1012.368, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 6.794, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 555.0, + "total_tests": 28007.0, + "total_tests_per_thousand": 63.43, + "new_tests_per_thousand": 1.257, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 1.513, + "tests_per_case": 222.667, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-04-25", + "total_cases": 449.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.898, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 7.118, + "total_deaths_per_million": 6.794, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 614.0, + "total_tests": 28621.0, + "total_tests_per_thousand": 64.821, + "new_tests_per_thousand": 1.391, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 1.459, + "tests_per_case": 204.90900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-04-26", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1016.898, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 698.0, + "total_tests": 29319.0, + "total_tests_per_thousand": 66.402, + "new_tests_per_thousand": 1.581, + "new_tests_smoothed": 662.0, + "new_tests_smoothed_per_thousand": 1.499, + "tests_per_case": 257.444, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-04-27", + "total_cases": 457.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1035.016, + "new_cases_per_million": 18.118, + "new_cases_smoothed_per_million": 4.53, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1068.0, + "total_tests": 30387.0, + "total_tests_per_thousand": 68.821, + "new_tests_per_thousand": 2.419, + "new_tests_smoothed": 713.0, + "new_tests_smoothed_per_thousand": 1.615, + "tests_per_case": 356.5, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-04-28", + "total_cases": 462.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1046.34, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1207.0, + "total_tests": 31594.0, + "total_tests_per_thousand": 71.554, + "new_tests_per_thousand": 2.734, + "new_tests_smoothed": 770.0, + "new_tests_smoothed_per_thousand": 1.744, + "tests_per_case": 299.444, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-04-29", + "total_cases": 464.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1050.87, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 6.471, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1243.0, + "total_tests": 32837.0, + "total_tests_per_thousand": 74.369, + "new_tests_per_thousand": 2.815, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 1.939, + "tests_per_case": 299.6, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-04-30", + "total_cases": 466.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1055.399, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 6.471, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1181.0, + "total_tests": 34018.0, + "total_tests_per_thousand": 77.044, + "new_tests_per_thousand": 2.675, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 2.124, + "tests_per_case": 328.3, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-01", + "total_cases": 467.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1057.664, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 6.471, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1008.0, + "total_tests": 35026.0, + "total_tests_per_thousand": 79.327, + "new_tests_per_thousand": 2.283, + "new_tests_smoothed": 1003.0, + "new_tests_smoothed_per_thousand": 2.272, + "tests_per_case": 351.05, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-02", + "total_cases": 476.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1078.047, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1070.0, + "total_tests": 36096.0, + "total_tests_per_thousand": 81.75, + "new_tests_per_thousand": 2.423, + "new_tests_smoothed": 1068.0, + "new_tests_smoothed_per_thousand": 2.419, + "tests_per_case": 276.889, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-05-03", + "total_cases": 479.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1084.842, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 9.706, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 731.0, + "total_tests": 36827.0, + "total_tests_per_thousand": 83.406, + "new_tests_per_thousand": 1.656, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 2.43, + "tests_per_case": 250.36700000000002, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-05-04", + "total_cases": 480.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1087.107, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 7.442, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1214.0, + "total_tests": 38041.0, + "total_tests_per_thousand": 86.155, + "new_tests_per_thousand": 2.749, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 2.475, + "tests_per_case": 332.652, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-05", + "total_cases": 483.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1093.901, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 6.794, + "total_deaths_per_million": 9.059, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1394.0, + "total_tests": 39435.0, + "total_tests_per_thousand": 89.313, + "new_tests_per_thousand": 3.157, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 2.537, + "tests_per_case": 373.333, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-06", + "total_cases": 485.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1098.431, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 6.794, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1009.0, + "total_tests": 40444.0, + "total_tests_per_thousand": 91.598, + "new_tests_per_thousand": 2.285, + "new_tests_smoothed": 1087.0, + "new_tests_smoothed_per_thousand": 2.462, + "tests_per_case": 362.333, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-07", + "total_cases": 488.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1105.225, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 7.118, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1135.0, + "total_tests": 41579.0, + "total_tests_per_thousand": 94.168, + "new_tests_per_thousand": 2.571, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 2.446, + "tests_per_case": 343.63599999999997, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-08", + "total_cases": 489.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1107.49, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 7.118, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1005.0, + "total_tests": 42584.0, + "total_tests_per_thousand": 96.444, + "new_tests_per_thousand": 2.276, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 2.446, + "tests_per_case": 343.63599999999997, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-09", + "total_cases": 495.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1121.079, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 6.147, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1107.0, + "total_tests": 43691.0, + "total_tests_per_thousand": 98.952, + "new_tests_per_thousand": 2.507, + "new_tests_smoothed": 1085.0, + "new_tests_smoothed_per_thousand": 2.457, + "tests_per_case": 399.73699999999997, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-10", + "total_cases": 502.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1136.932, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 7.442, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 775.0, + "total_tests": 44466.0, + "total_tests_per_thousand": 100.707, + "new_tests_per_thousand": 1.755, + "new_tests_smoothed": 1091.0, + "new_tests_smoothed_per_thousand": 2.471, + "tests_per_case": 332.043, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-11", + "total_cases": 505.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1143.727, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 8.089, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1238.0, + "total_tests": 45704.0, + "total_tests_per_thousand": 103.511, + "new_tests_per_thousand": 2.804, + "new_tests_smoothed": 1095.0, + "new_tests_smoothed_per_thousand": 2.48, + "tests_per_case": 306.6, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-12", + "total_cases": 507.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1148.256, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1132.0, + "total_tests": 46836.0, + "total_tests_per_thousand": 106.074, + "new_tests_per_thousand": 2.564, + "new_tests_smoothed": 1057.0, + "new_tests_smoothed_per_thousand": 2.394, + "tests_per_case": 308.29200000000003, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-13", + "total_cases": 521.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1179.964, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 11.648, + "total_deaths_per_million": 11.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1316.0, + "total_tests": 48152.0, + "total_tests_per_thousand": 109.055, + "new_tests_per_thousand": 2.98, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 2.494, + "tests_per_case": 214.083, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-05-14", + "total_cases": 531.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1202.612, + "new_cases_per_million": 22.648, + "new_cases_smoothed_per_million": 13.912, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1495.0, + "total_tests": 49647.0, + "total_tests_per_thousand": 112.441, + "new_tests_per_thousand": 3.386, + "new_tests_smoothed": 1153.0, + "new_tests_smoothed_per_thousand": 2.611, + "tests_per_case": 187.69799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-05-15", + "total_cases": 545.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1234.319, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 18.118, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1719.0, + "total_tests": 51366.0, + "total_tests_per_thousand": 116.334, + "new_tests_per_thousand": 3.893, + "new_tests_smoothed": 1255.0, + "new_tests_smoothed_per_thousand": 2.842, + "tests_per_case": 156.875, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-05-16", + "total_cases": 552.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1250.173, + "new_cases_per_million": 15.854, + "new_cases_smoothed_per_million": 18.442, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1425.0, + "total_tests": 52791.0, + "total_tests_per_thousand": 119.561, + "new_tests_per_thousand": 3.227, + "new_tests_smoothed": 1300.0, + "new_tests_smoothed_per_thousand": 2.944, + "tests_per_case": 159.649, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-05-17", + "total_cases": 557.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1261.497, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 17.795, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1011.0, + "total_tests": 53802.0, + "total_tests_per_thousand": 121.851, + "new_tests_per_thousand": 2.29, + "new_tests_smoothed": 1334.0, + "new_tests_smoothed_per_thousand": 3.021, + "tests_per_case": 169.782, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-05-18", + "total_cases": 568.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1286.41, + "new_cases_per_million": 24.913, + "new_cases_smoothed_per_million": 20.383, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1514.0, + "total_tests": 55316.0, + "total_tests_per_thousand": 125.28, + "new_tests_per_thousand": 3.429, + "new_tests_smoothed": 1373.0, + "new_tests_smoothed_per_thousand": 3.11, + "tests_per_case": 152.556, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-05-19", + "total_cases": 583.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1320.382, + "new_cases_per_million": 33.972, + "new_cases_smoothed_per_million": 24.589, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1661.0, + "total_tests": 56977.0, + "total_tests_per_thousand": 129.042, + "new_tests_per_thousand": 3.762, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 3.282, + "tests_per_case": 133.461, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-05-20", + "total_cases": 598.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1354.354, + "new_cases_per_million": 33.972, + "new_cases_smoothed_per_million": 24.913, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1367.0, + "total_tests": 58344.0, + "total_tests_per_thousand": 132.138, + "new_tests_per_thousand": 3.096, + "new_tests_smoothed": 1456.0, + "new_tests_smoothed_per_thousand": 3.298, + "tests_per_case": 132.364, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-05-21", + "total_cases": 599.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1356.619, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 22.001, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1546.0, + "total_tests": 59890.0, + "total_tests_per_thousand": 135.639, + "new_tests_per_thousand": 3.501, + "new_tests_smoothed": 1463.0, + "new_tests_smoothed_per_thousand": 3.313, + "tests_per_case": 150.60299999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-05-22", + "total_cases": 608.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1377.002, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 20.383, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1717.0, + "total_tests": 61607.0, + "total_tests_per_thousand": 139.528, + "new_tests_per_thousand": 3.889, + "new_tests_smoothed": 1463.0, + "new_tests_smoothed_per_thousand": 3.313, + "tests_per_case": 162.556, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-05-23", + "total_cases": 609.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1379.267, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 18.442, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1286.0, + "total_tests": 62893.0, + "total_tests_per_thousand": 142.44, + "new_tests_per_thousand": 2.913, + "new_tests_smoothed": 1443.0, + "new_tests_smoothed_per_thousand": 3.268, + "tests_per_case": 177.21099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-05-24", + "total_cases": 610.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1381.531, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 17.148, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 816.0, + "total_tests": 63709.0, + "total_tests_per_thousand": 144.288, + "new_tests_per_thousand": 1.848, + "new_tests_smoothed": 1415.0, + "new_tests_smoothed_per_thousand": 3.205, + "tests_per_case": 186.887, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-05-25", + "total_cases": 610.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1381.531, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.589, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1467.0, + "total_tests": 65176.0, + "total_tests_per_thousand": 147.611, + "new_tests_per_thousand": 3.322, + "new_tests_smoothed": 1409.0, + "new_tests_smoothed_per_thousand": 3.191, + "tests_per_case": 234.833, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-05-26", + "total_cases": 611.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1383.796, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 9.059, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1248.0, + "total_tests": 66424.0, + "total_tests_per_thousand": 150.437, + "new_tests_per_thousand": 2.826, + "new_tests_smoothed": 1350.0, + "new_tests_smoothed_per_thousand": 3.057, + "tests_per_case": 337.5, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-05-27", + "total_cases": 615.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1392.855, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 5.5, + "total_deaths_per_million": 13.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1224.0, + "total_tests": 67648.0, + "total_tests_per_thousand": 153.21, + "new_tests_per_thousand": 2.772, + "new_tests_smoothed": 1329.0, + "new_tests_smoothed_per_thousand": 3.01, + "tests_per_case": 547.235, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-05-28", + "total_cases": 615.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1392.855, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.177, + "total_deaths_per_million": 15.854, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1192.0, + "total_tests": 68840.0, + "total_tests_per_thousand": 155.909, + "new_tests_per_thousand": 2.7, + "new_tests_smoothed": 1279.0, + "new_tests_smoothed_per_thousand": 2.897, + "tests_per_case": 559.562, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-05-29", + "total_cases": 617.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1397.385, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 2.912, + "total_deaths_per_million": 15.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1367.0, + "total_tests": 70207.0, + "total_tests_per_thousand": 159.005, + "new_tests_per_thousand": 3.096, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 2.783, + "tests_per_case": 955.8889999999999, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-05-30", + "total_cases": 617.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1397.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.588, + "total_deaths_per_million": 15.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 985.0, + "total_tests": 71192.0, + "total_tests_per_thousand": 161.236, + "new_tests_per_thousand": 2.231, + "new_tests_smoothed": 1186.0, + "new_tests_smoothed_per_thousand": 2.686, + "tests_per_case": 1037.75, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-05-31", + "total_cases": 618.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1399.65, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 2.588, + "total_deaths_per_million": 15.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 593.0, + "total_tests": 71785.0, + "total_tests_per_thousand": 162.579, + "new_tests_per_thousand": 1.343, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 2.614, + "tests_per_case": 1009.75, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-01", + "total_cases": 619.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1401.915, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 2.912, + "total_deaths_per_million": 15.854, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 1015.0, + "total_tests": 72800.0, + "total_tests_per_thousand": 164.878, + "new_tests_per_thousand": 2.299, + "new_tests_smoothed": 1089.0, + "new_tests_smoothed_per_thousand": 2.466, + "tests_per_case": 847.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-02", + "total_cases": 621.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1406.444, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 3.235, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 4.53, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 945.0, + "total_tests": 73745.0, + "total_tests_per_thousand": 167.018, + "new_tests_per_thousand": 2.14, + "new_tests_smoothed": 1046.0, + "new_tests_smoothed_per_thousand": 2.369, + "tests_per_case": 732.2, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-03", + "total_cases": 621.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1406.444, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.941, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971, + "new_tests": 905.0, + "total_tests": 74650.0, + "total_tests_per_thousand": 169.068, + "new_tests_per_thousand": 2.05, + "new_tests_smoothed": 1000.0, + "new_tests_smoothed_per_thousand": 2.265, + "tests_per_case": 1166.667, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-04", + "total_cases": 624.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1413.239, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 2.912, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 977.0, + "total_tests": 75627.0, + "total_tests_per_thousand": 171.28, + "new_tests_per_thousand": 2.213, + "new_tests_smoothed": 970.0, + "new_tests_smoothed_per_thousand": 2.197, + "tests_per_case": 754.444, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-05", + "total_cases": 626.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1417.768, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 2.912, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 877.0, + "total_tests": 76504.0, + "total_tests_per_thousand": 173.267, + "new_tests_per_thousand": 1.986, + "new_tests_smoothed": 900.0, + "new_tests_smoothed_per_thousand": 2.038, + "tests_per_case": 700.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-06", + "total_cases": 628.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1422.298, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 3.559, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 905.0, + "total_tests": 77409.0, + "total_tests_per_thousand": 175.316, + "new_tests_per_thousand": 2.05, + "new_tests_smoothed": 888.0, + "new_tests_smoothed_per_thousand": 2.011, + "tests_per_case": 565.091, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-06-07", + "total_cases": 629.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1424.563, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 3.559, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 507.0, + "total_tests": 77916.0, + "total_tests_per_thousand": 176.465, + "new_tests_per_thousand": 1.148, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 1.984, + "tests_per_case": 557.455, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-06-08", + "total_cases": 631.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1429.092, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 3.883, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647, + "new_tests": 1152.0, + "total_tests": 79068.0, + "total_tests_per_thousand": 179.074, + "new_tests_per_thousand": 2.609, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 2.027, + "tests_per_case": 522.0830000000001, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-06-09", + "total_cases": 634.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1435.887, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 4.206, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 851.0, + "total_tests": 79919.0, + "total_tests_per_thousand": 181.001, + "new_tests_per_thousand": 1.927, + "new_tests_smoothed": 882.0, + "new_tests_smoothed_per_thousand": 1.998, + "tests_per_case": 474.923, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-06-10", + "total_cases": 639.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1447.211, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 902.0, + "total_tests": 80821.0, + "total_tests_per_thousand": 183.044, + "new_tests_per_thousand": 2.043, + "new_tests_smoothed": 882.0, + "new_tests_smoothed_per_thousand": 1.998, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-11", + "total_cases": 644.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1458.535, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 6.471, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1130.0, + "total_tests": 81951.0, + "total_tests_per_thousand": 185.603, + "new_tests_per_thousand": 2.559, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 2.045, + "tests_per_case": 316.05, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-12", + "total_cases": 645.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1460.8, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 6.147, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1042.0, + "total_tests": 82993.0, + "total_tests_per_thousand": 187.963, + "new_tests_per_thousand": 2.36, + "new_tests_smoothed": 927.0, + "new_tests_smoothed_per_thousand": 2.099, + "tests_per_case": 341.526, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-13", + "total_cases": 647.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1465.329, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 6.147, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1310.0, + "total_tests": 84303.0, + "total_tests_per_thousand": 190.93, + "new_tests_per_thousand": 2.967, + "new_tests_smoothed": 985.0, + "new_tests_smoothed_per_thousand": 2.231, + "tests_per_case": 362.895, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-14", + "total_cases": 649.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1469.859, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 6.471, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 554.0, + "total_tests": 84857.0, + "total_tests_per_thousand": 192.185, + "new_tests_per_thousand": 1.255, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 2.247, + "tests_per_case": 347.2, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-15", + "total_cases": 655.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1483.448, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1236.0, + "total_tests": 86093.0, + "total_tests_per_thousand": 194.984, + "new_tests_per_thousand": 2.799, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 2.274, + "tests_per_case": 292.83299999999997, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-16", + "total_cases": 661.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1497.037, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 911.0, + "total_tests": 87004.0, + "total_tests_per_thousand": 197.047, + "new_tests_per_thousand": 2.063, + "new_tests_smoothed": 1012.0, + "new_tests_smoothed_per_thousand": 2.292, + "tests_per_case": 262.37, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-06-17", + "total_cases": 662.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1499.301, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 7.442, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 860.0, + "total_tests": 87864.0, + "total_tests_per_thousand": 198.995, + "new_tests_per_thousand": 1.948, + "new_tests_smoothed": 1006.0, + "new_tests_smoothed_per_thousand": 2.278, + "tests_per_case": 306.17400000000004, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-18", + "total_cases": 662.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1499.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 852.0, + "total_tests": 88716.0, + "total_tests_per_thousand": 200.924, + "new_tests_per_thousand": 1.93, + "new_tests_smoothed": 966.0, + "new_tests_smoothed_per_thousand": 2.188, + "tests_per_case": 375.667, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-19", + "total_cases": 663.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1501.566, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 786.0, + "total_tests": 89502.0, + "total_tests_per_thousand": 202.705, + "new_tests_per_thousand": 1.78, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 2.106, + "tests_per_case": 361.667, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-20", + "total_cases": 664.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.831, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 5.5, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 768.0, + "total_tests": 90270.0, + "total_tests_per_thousand": 204.444, + "new_tests_per_thousand": 1.739, + "new_tests_smoothed": 852.0, + "new_tests_smoothed_per_thousand": 1.93, + "tests_per_case": 350.824, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-21", + "total_cases": 664.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.853, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 464.0, + "total_tests": 90734.0, + "total_tests_per_thousand": 205.495, + "new_tests_per_thousand": 1.051, + "new_tests_smoothed": 840.0, + "new_tests_smoothed_per_thousand": 1.902, + "tests_per_case": 392.0, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-06-22", + "total_cases": 664.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.912, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 927.0, + "total_tests": 91661.0, + "total_tests_per_thousand": 207.594, + "new_tests_per_thousand": 2.099, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 1.801, + "tests_per_case": 618.3330000000001, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-06-23", + "total_cases": 664.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1503.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 923.0, + "total_tests": 92584.0, + "total_tests_per_thousand": 209.685, + "new_tests_per_thousand": 2.09, + "new_tests_smoothed": 797.0, + "new_tests_smoothed_per_thousand": 1.805, + "tests_per_case": 1859.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-24", + "total_cases": 667.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1510.625, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1027.0, + "total_tests": 93611.0, + "total_tests_per_thousand": 212.011, + "new_tests_per_thousand": 2.326, + "new_tests_smoothed": 821.0, + "new_tests_smoothed_per_thousand": 1.859, + "tests_per_case": 1149.4, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-25", + "total_cases": 669.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.155, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 2.265, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 946.0, + "total_tests": 94557.0, + "total_tests_per_thousand": 214.153, + "new_tests_per_thousand": 2.143, + "new_tests_smoothed": 834.0, + "new_tests_smoothed_per_thousand": 1.889, + "tests_per_case": 834.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-26", + "total_cases": 669.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.941, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 870.0, + "total_tests": 95427.0, + "total_tests_per_thousand": 216.124, + "new_tests_per_thousand": 1.97, + "new_tests_smoothed": 846.0, + "new_tests_smoothed_per_thousand": 1.916, + "tests_per_case": 987.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-27", + "total_cases": 669.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 661.0, + "total_tests": 96088.0, + "total_tests_per_thousand": 217.621, + "new_tests_per_thousand": 1.497, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 1.882, + "tests_per_case": 1163.4, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-28", + "total_cases": 669.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 516.0, + "total_tests": 96604.0, + "total_tests_per_thousand": 218.789, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 839.0, + "new_tests_smoothed_per_thousand": 1.9, + "tests_per_case": 1174.6, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-29", + "total_cases": 669.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1515.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 567.0, + "total_tests": 97171.0, + "total_tests_per_thousand": 220.073, + "new_tests_per_thousand": 1.284, + "new_tests_smoothed": 787.0, + "new_tests_smoothed_per_thousand": 1.782, + "tests_per_case": 1101.8, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-06-30", + "total_cases": 670.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1517.42, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 1.941, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1135.0, + "total_tests": 98306.0, + "total_tests_per_thousand": 222.644, + "new_tests_per_thousand": 2.571, + "new_tests_smoothed": 817.0, + "new_tests_smoothed_per_thousand": 1.85, + "tests_per_case": 953.1669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-01", + "total_cases": 670.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1517.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 892.0, + "total_tests": 99198.0, + "total_tests_per_thousand": 224.664, + "new_tests_per_thousand": 2.02, + "new_tests_smoothed": 798.0, + "new_tests_smoothed_per_thousand": 1.807, + "tests_per_case": 1862.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-02", + "total_cases": 671.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.685, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 981.0, + "total_tests": 100179.0, + "total_tests_per_thousand": 226.886, + "new_tests_per_thousand": 2.222, + "new_tests_smoothed": 803.0, + "new_tests_smoothed_per_thousand": 1.819, + "tests_per_case": 2810.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-03", + "total_cases": 671.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 987.0, + "total_tests": 101166.0, + "total_tests_per_thousand": 229.121, + "new_tests_per_thousand": 2.235, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 1.857, + "tests_per_case": 2870.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-04", + "total_cases": 671.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 771.0, + "total_tests": 101937.0, + "total_tests_per_thousand": 230.867, + "new_tests_per_thousand": 1.746, + "new_tests_smoothed": 836.0, + "new_tests_smoothed_per_thousand": 1.893, + "tests_per_case": 2926.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-05", + "total_cases": 671.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1519.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 457.0, + "total_tests": 102394.0, + "total_tests_per_thousand": 231.903, + "new_tests_per_thousand": 1.035, + "new_tests_smoothed": 827.0, + "new_tests_smoothed_per_thousand": 1.873, + "tests_per_case": 2894.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-06", + "total_cases": 672.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1521.949, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 930.0, + "total_tests": 103324.0, + "total_tests_per_thousand": 234.009, + "new_tests_per_thousand": 2.106, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 1.991, + "tests_per_case": 2051.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-07", + "total_cases": 672.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1521.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 775.0, + "total_tests": 104099.0, + "total_tests_per_thousand": 235.764, + "new_tests_per_thousand": 1.755, + "new_tests_smoothed": 828.0, + "new_tests_smoothed_per_thousand": 1.875, + "tests_per_case": 2898.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-08", + "total_cases": 673.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 809.0, + "total_tests": 104908.0, + "total_tests_per_thousand": 237.596, + "new_tests_per_thousand": 1.832, + "new_tests_smoothed": 816.0, + "new_tests_smoothed_per_thousand": 1.848, + "tests_per_case": 1904.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-09", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 775.0, + "total_tests": 105683.0, + "total_tests_per_thousand": 239.351, + "new_tests_per_thousand": 1.755, + "new_tests_smoothed": 786.0, + "new_tests_smoothed_per_thousand": 1.78, + "tests_per_case": 2751.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-10", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 742.0, + "total_tests": 106425.0, + "total_tests_per_thousand": 241.032, + "new_tests_per_thousand": 1.68, + "new_tests_smoothed": 751.0, + "new_tests_smoothed_per_thousand": 1.701, + "tests_per_case": 2628.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-11", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 741.0, + "total_tests": 107166.0, + "total_tests_per_thousand": 242.71, + "new_tests_per_thousand": 1.678, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 1.692, + "tests_per_case": 2614.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-12", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 456.0, + "total_tests": 107622.0, + "total_tests_per_thousand": 243.743, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 1.692, + "tests_per_case": 2614.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-13", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 931.0, + "total_tests": 108553.0, + "total_tests_per_thousand": 245.851, + "new_tests_per_thousand": 2.109, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 1.692, + "tests_per_case": 5229.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-14", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 985.0, + "total_tests": 109538.0, + "total_tests_per_thousand": 248.082, + "new_tests_per_thousand": 2.231, + "new_tests_smoothed": 777.0, + "new_tests_smoothed_per_thousand": 1.76, + "tests_per_case": 5439.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-15", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1087.0, + "total_tests": 110625.0, + "total_tests_per_thousand": 250.544, + "new_tests_per_thousand": 2.462, + "new_tests_smoothed": 817.0, + "new_tests_smoothed_per_thousand": 1.85, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-16", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1524.214, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 930.0, + "total_tests": 111555.0, + "total_tests_per_thousand": 252.65, + "new_tests_per_thousand": 2.106, + "new_tests_smoothed": 839.0, + "new_tests_smoothed_per_thousand": 1.9, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-17", + "total_cases": 674.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1526.479, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 848.0, + "total_tests": 112403.0, + "total_tests_per_thousand": 254.571, + "new_tests_per_thousand": 1.921, + "new_tests_smoothed": 854.0, + "new_tests_smoothed_per_thousand": 1.934, + "tests_per_case": 5978.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-18", + "total_cases": 674.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1526.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 834.0, + "total_tests": 113237.0, + "total_tests_per_thousand": 256.46, + "new_tests_per_thousand": 1.889, + "new_tests_smoothed": 867.0, + "new_tests_smoothed_per_thousand": 1.964, + "tests_per_case": 6069.0, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-19", + "total_cases": 675.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1528.744, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 583.0, + "total_tests": 113820.0, + "total_tests_per_thousand": 257.78, + "new_tests_per_thousand": 1.32, + "new_tests_smoothed": 885.0, + "new_tests_smoothed_per_thousand": 2.004, + "tests_per_case": 3097.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-20", + "total_cases": 675.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1528.744, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 959.0, + "total_tests": 114779.0, + "total_tests_per_thousand": 259.952, + "new_tests_per_thousand": 2.172, + "new_tests_smoothed": 889.0, + "new_tests_smoothed_per_thousand": 2.013, + "tests_per_case": 3111.5, + "positive_rate": 0.0, + "tests_units": "tests performed" + }, + { + "date": "2020-07-21", + "total_cases": 677.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1533.273, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 1.294, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1016.0, + "total_tests": 115795.0, + "total_tests_per_thousand": 262.253, + "new_tests_per_thousand": 2.301, + "new_tests_smoothed": 894.0, + "new_tests_smoothed_per_thousand": 2.025, + "tests_per_case": 1564.5, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-22", + "total_cases": 678.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1535.538, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1114.0, + "total_tests": 116909.0, + "total_tests_per_thousand": 264.776, + "new_tests_per_thousand": 2.523, + "new_tests_smoothed": 898.0, + "new_tests_smoothed_per_thousand": 2.034, + "tests_per_case": 1257.2, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-23", + "total_cases": 680.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1540.068, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 2.265, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 931.0, + "total_tests": 117840.0, + "total_tests_per_thousand": 266.885, + "new_tests_per_thousand": 2.109, + "new_tests_smoothed": 898.0, + "new_tests_smoothed_per_thousand": 2.034, + "tests_per_case": 898.0, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-07-24", + "total_cases": 684.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1549.127, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 3.235, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1085.0, + "total_tests": 118925.0, + "total_tests_per_thousand": 269.342, + "new_tests_per_thousand": 2.457, + "new_tests_smoothed": 932.0, + "new_tests_smoothed_per_thousand": 2.111, + "tests_per_case": 652.4, + "positive_rate": 0.002, + "tests_units": "tests performed" + }, + { + "date": "2020-07-25", + "total_cases": 698.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1580.834, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1220.0, + "total_tests": 120145.0, + "total_tests_per_thousand": 272.105, + "new_tests_per_thousand": 2.763, + "new_tests_smoothed": 987.0, + "new_tests_smoothed_per_thousand": 2.235, + "tests_per_case": 287.875, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-07-26", + "total_cases": 699.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1583.099, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 850.0, + "total_tests": 120995.0, + "total_tests_per_thousand": 274.03, + "new_tests_per_thousand": 1.925, + "new_tests_smoothed": 1025.0, + "new_tests_smoothed_per_thousand": 2.321, + "tests_per_case": 298.95799999999997, + "positive_rate": 0.003, + "tests_units": "tests performed" + }, + { + "date": "2020-07-27", + "total_cases": 705.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1596.688, + "new_cases_per_million": 13.589, + "new_cases_smoothed_per_million": 9.706, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1353.0, + "total_tests": 122348.0, + "total_tests_per_thousand": 277.094, + "new_tests_per_thousand": 3.064, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 2.448, + "tests_per_case": 252.233, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-07-28", + "total_cases": 718.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1626.13, + "new_cases_per_million": 29.442, + "new_cases_smoothed_per_million": 13.265, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1615.0, + "total_tests": 123963.0, + "total_tests_per_thousand": 280.752, + "new_tests_per_thousand": 3.658, + "new_tests_smoothed": 1167.0, + "new_tests_smoothed_per_thousand": 2.643, + "tests_per_case": 199.24400000000003, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-07-29", + "total_cases": 727.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1646.514, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 15.854, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1722.0, + "total_tests": 125685.0, + "total_tests_per_thousand": 284.652, + "new_tests_per_thousand": 3.9, + "new_tests_smoothed": 1254.0, + "new_tests_smoothed_per_thousand": 2.84, + "tests_per_case": 179.143, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-07-30", + "total_cases": 736.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1666.897, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 18.118, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1314.0, + "total_tests": 126999.0, + "total_tests_per_thousand": 287.628, + "new_tests_per_thousand": 2.976, + "new_tests_smoothed": 1308.0, + "new_tests_smoothed_per_thousand": 2.962, + "tests_per_case": 163.5, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-07-31", + "total_cases": 740.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1675.956, + "new_cases_per_million": 9.059, + "new_cases_smoothed_per_million": 18.118, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1748.0, + "total_tests": 128747.0, + "total_tests_per_thousand": 291.587, + "new_tests_per_thousand": 3.959, + "new_tests_smoothed": 1403.0, + "new_tests_smoothed_per_thousand": 3.178, + "tests_per_case": 175.375, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-08-01", + "total_cases": 742.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1680.486, + "new_cases_per_million": 4.53, + "new_cases_smoothed_per_million": 14.236, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1416.0, + "total_tests": 130163.0, + "total_tests_per_thousand": 294.794, + "new_tests_per_thousand": 3.207, + "new_tests_smoothed": 1431.0, + "new_tests_smoothed_per_thousand": 3.241, + "tests_per_case": 227.65900000000002, + "positive_rate": 0.004, + "tests_units": "tests performed" + }, + { + "date": "2020-08-02", + "total_cases": 756.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1712.193, + "new_cases_per_million": 31.707, + "new_cases_smoothed_per_million": 18.442, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1437.0, + "total_tests": 131600.0, + "total_tests_per_thousand": 298.048, + "new_tests_per_thousand": 3.255, + "new_tests_smoothed": 1515.0, + "new_tests_smoothed_per_thousand": 3.431, + "tests_per_case": 186.053, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-08-03", + "total_cases": 772.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1748.43, + "new_cases_per_million": 36.237, + "new_cases_smoothed_per_million": 21.677, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1501.0, + "total_tests": 133101.0, + "total_tests_per_thousand": 301.448, + "new_tests_per_thousand": 3.399, + "new_tests_smoothed": 1536.0, + "new_tests_smoothed_per_thousand": 3.479, + "tests_per_case": 160.47799999999998, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-08-04", + "total_cases": 793.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.991, + "new_cases_per_million": 47.561, + "new_cases_smoothed_per_million": 24.266, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1839.0, + "total_tests": 134940.0, + "total_tests_per_thousand": 305.613, + "new_tests_per_thousand": 4.165, + "new_tests_smoothed": 1568.0, + "new_tests_smoothed_per_thousand": 3.551, + "tests_per_case": 146.347, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-05", + "total_cases": 812.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1839.022, + "new_cases_per_million": 43.031, + "new_cases_smoothed_per_million": 27.501, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1769.0, + "total_tests": 136709.0, + "total_tests_per_thousand": 309.619, + "new_tests_per_thousand": 4.006, + "new_tests_smoothed": 1575.0, + "new_tests_smoothed_per_thousand": 3.567, + "tests_per_case": 129.70600000000002, + "positive_rate": 0.008, + "tests_units": "tests performed" + }, + { + "date": "2020-08-06", + "total_cases": 862.0, + "new_cases": 50.0, + "new_cases_smoothed": 18.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1952.262, + "new_cases_per_million": 113.24, + "new_cases_smoothed_per_million": 40.767, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1717.0, + "total_tests": 138426.0, + "total_tests_per_thousand": 313.508, + "new_tests_per_thousand": 3.889, + "new_tests_smoothed": 1632.0, + "new_tests_smoothed_per_thousand": 3.696, + "tests_per_case": 90.667, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-08-07", + "total_cases": 902.0, + "new_cases": 40.0, + "new_cases_smoothed": 23.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2042.855, + "new_cases_per_million": 90.592, + "new_cases_smoothed_per_million": 52.414, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1548.0, + "total_tests": 139974.0, + "total_tests_per_thousand": 317.014, + "new_tests_per_thousand": 3.506, + "new_tests_smoothed": 1604.0, + "new_tests_smoothed_per_thousand": 3.633, + "tests_per_case": 69.309, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-08", + "total_cases": 956.0, + "new_cases": 54.0, + "new_cases_smoothed": 30.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2165.154, + "new_cases_per_million": 122.3, + "new_cases_smoothed_per_million": 69.238, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1789.0, + "total_tests": 141763.0, + "total_tests_per_thousand": 321.066, + "new_tests_per_thousand": 4.052, + "new_tests_smoothed": 1657.0, + "new_tests_smoothed_per_thousand": 3.753, + "tests_per_case": 54.201, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-09", + "total_cases": 979.0, + "new_cases": 23.0, + "new_cases_smoothed": 31.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2217.245, + "new_cases_per_million": 52.091, + "new_cases_smoothed_per_million": 72.15, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1617.0, + "total_tests": 143380.0, + "total_tests_per_thousand": 324.728, + "new_tests_per_thousand": 3.662, + "new_tests_smoothed": 1683.0, + "new_tests_smoothed_per_thousand": 3.812, + "tests_per_case": 52.83, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-08-10", + "total_cases": 1008.0, + "new_cases": 29.0, + "new_cases_smoothed": 33.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2282.924, + "new_cases_per_million": 65.679, + "new_cases_smoothed_per_million": 76.356, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1881.0, + "total_tests": 145261.0, + "total_tests_per_thousand": 328.988, + "new_tests_per_thousand": 4.26, + "new_tests_smoothed": 1737.0, + "new_tests_smoothed_per_thousand": 3.934, + "tests_per_case": 51.521, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-08-11", + "total_cases": 1057.0, + "new_cases": 49.0, + "new_cases_smoothed": 37.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2393.9, + "new_cases_per_million": 110.975, + "new_cases_smoothed_per_million": 85.416, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2144.0, + "total_tests": 147405.0, + "total_tests_per_thousand": 333.844, + "new_tests_per_thousand": 4.856, + "new_tests_smoothed": 1781.0, + "new_tests_smoothed_per_thousand": 4.034, + "tests_per_case": 47.223, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-08-12", + "total_cases": 1112.0, + "new_cases": 55.0, + "new_cases_smoothed": 42.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2518.464, + "new_cases_per_million": 124.564, + "new_cases_smoothed_per_million": 97.063, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2483.0, + "total_tests": 149888.0, + "total_tests_per_thousand": 339.467, + "new_tests_per_thousand": 5.624, + "new_tests_smoothed": 1883.0, + "new_tests_smoothed_per_thousand": 4.265, + "tests_per_case": 43.937, + "positive_rate": 0.023, + "tests_units": "tests performed" + }, + { + "date": "2020-08-13", + "total_cases": 1143.0, + "new_cases": 31.0, + "new_cases_smoothed": 40.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2588.673, + "new_cases_per_million": 70.209, + "new_cases_smoothed_per_million": 90.916, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2191.0, + "total_tests": 152079.0, + "total_tests_per_thousand": 344.429, + "new_tests_per_thousand": 4.962, + "new_tests_smoothed": 1950.0, + "new_tests_smoothed_per_thousand": 4.416, + "tests_per_case": 48.577, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-08-14", + "total_cases": 1215.0, + "new_cases": 72.0, + "new_cases_smoothed": 44.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2751.739, + "new_cases_per_million": 163.066, + "new_cases_smoothed_per_million": 101.269, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2434.0, + "total_tests": 154513.0, + "total_tests_per_thousand": 349.942, + "new_tests_per_thousand": 5.513, + "new_tests_smoothed": 2077.0, + "new_tests_smoothed_per_thousand": 4.704, + "tests_per_case": 46.45, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-15", + "total_cases": 1278.0, + "new_cases": 63.0, + "new_cases_smoothed": 46.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2894.422, + "new_cases_per_million": 142.683, + "new_cases_smoothed_per_million": 104.181, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2140.0, + "total_tests": 156653.0, + "total_tests_per_thousand": 354.789, + "new_tests_per_thousand": 4.847, + "new_tests_smoothed": 2127.0, + "new_tests_smoothed_per_thousand": 4.817, + "tests_per_case": 46.239, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-16", + "total_cases": 1346.0, + "new_cases": 68.0, + "new_cases_smoothed": 52.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3048.428, + "new_cases_per_million": 154.007, + "new_cases_smoothed_per_million": 118.741, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2270.0, + "total_tests": 158923.0, + "total_tests_per_thousand": 359.93, + "new_tests_per_thousand": 5.141, + "new_tests_smoothed": 2220.0, + "new_tests_smoothed_per_thousand": 5.028, + "tests_per_case": 42.343, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-08-17", + "total_cases": 1395.0, + "new_cases": 49.0, + "new_cases_smoothed": 55.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3159.404, + "new_cases_per_million": 110.975, + "new_cases_smoothed_per_million": 125.211, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2123.0, + "total_tests": 161046.0, + "total_tests_per_thousand": 364.738, + "new_tests_per_thousand": 4.808, + "new_tests_smoothed": 2255.0, + "new_tests_smoothed_per_thousand": 5.107, + "tests_per_case": 40.788000000000004, + "positive_rate": 0.025, + "tests_units": "tests performed" + }, + { + "date": "2020-08-18", + "total_cases": 1442.0, + "new_cases": 47.0, + "new_cases_smoothed": 55.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3265.85, + "new_cases_per_million": 106.446, + "new_cases_smoothed_per_million": 124.564, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2260.0, + "total_tests": 163306.0, + "total_tests_per_thousand": 369.856, + "new_tests_per_thousand": 5.118, + "new_tests_smoothed": 2272.0, + "new_tests_smoothed_per_thousand": 5.146, + "tests_per_case": 41.309, + "positive_rate": 0.024, + "tests_units": "tests performed" + }, + { + "date": "2020-08-19", + "total_cases": 1482.0, + "new_cases": 40.0, + "new_cases_smoothed": 52.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3356.442, + "new_cases_per_million": 90.592, + "new_cases_smoothed_per_million": 119.711, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3029.0, + "total_tests": 166335.0, + "total_tests_per_thousand": 376.716, + "new_tests_per_thousand": 6.86, + "new_tests_smoothed": 2350.0, + "new_tests_smoothed_per_thousand": 5.322, + "tests_per_case": 44.458999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-20", + "total_cases": 1491.0, + "new_cases": 9.0, + "new_cases_smoothed": 49.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3376.825, + "new_cases_per_million": 20.383, + "new_cases_smoothed_per_million": 112.593, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2445.0, + "total_tests": 168780.0, + "total_tests_per_thousand": 382.254, + "new_tests_per_thousand": 5.537, + "new_tests_smoothed": 2386.0, + "new_tests_smoothed_per_thousand": 5.404, + "tests_per_case": 47.994, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-08-21", + "total_cases": 1509.0, + "new_cases": 18.0, + "new_cases_smoothed": 42.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3417.592, + "new_cases_per_million": 40.767, + "new_cases_smoothed_per_million": 95.122, + "total_deaths_per_million": 20.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2310.0, + "total_tests": 171090.0, + "total_tests_per_thousand": 387.486, + "new_tests_per_thousand": 5.232, + "new_tests_smoothed": 2368.0, + "new_tests_smoothed_per_thousand": 5.363, + "tests_per_case": 56.381, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-22", + "total_cases": 1546.0, + "new_cases": 37.0, + "new_cases_smoothed": 38.286, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3501.389, + "new_cases_per_million": 83.798, + "new_cases_smoothed_per_million": 86.71, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2173.0, + "total_tests": 173263.0, + "total_tests_per_thousand": 392.407, + "new_tests_per_thousand": 4.921, + "new_tests_smoothed": 2373.0, + "new_tests_smoothed_per_thousand": 5.374, + "tests_per_case": 61.981, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-08-23", + "total_cases": 1577.0, + "new_cases": 31.0, + "new_cases_smoothed": 33.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3571.598, + "new_cases_per_million": 70.209, + "new_cases_smoothed_per_million": 74.739, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2194.0, + "total_tests": 175457.0, + "total_tests_per_thousand": 397.376, + "new_tests_per_thousand": 4.969, + "new_tests_smoothed": 2362.0, + "new_tests_smoothed_per_thousand": 5.349, + "tests_per_case": 71.57600000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-24", + "total_cases": 1612.0, + "new_cases": 35.0, + "new_cases_smoothed": 31.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3650.867, + "new_cases_per_million": 79.268, + "new_cases_smoothed_per_million": 70.209, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2047.0, + "total_tests": 177504.0, + "total_tests_per_thousand": 402.012, + "new_tests_per_thousand": 4.636, + "new_tests_smoothed": 2351.0, + "new_tests_smoothed_per_thousand": 5.325, + "tests_per_case": 75.839, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-08-25", + "total_cases": 1667.0, + "new_cases": 55.0, + "new_cases_smoothed": 32.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3775.431, + "new_cases_per_million": 124.564, + "new_cases_smoothed_per_million": 72.797, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2185.0, + "total_tests": 179689.0, + "total_tests_per_thousand": 406.961, + "new_tests_per_thousand": 4.949, + "new_tests_smoothed": 2340.0, + "new_tests_smoothed_per_thousand": 5.3, + "tests_per_case": 72.8, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-26", + "total_cases": 1705.0, + "new_cases": 38.0, + "new_cases_smoothed": 31.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3861.494, + "new_cases_per_million": 86.063, + "new_cases_smoothed_per_million": 72.15, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2542.0, + "total_tests": 182231.0, + "total_tests_per_thousand": 412.718, + "new_tests_per_thousand": 5.757, + "new_tests_smoothed": 2271.0, + "new_tests_smoothed_per_thousand": 5.143, + "tests_per_case": 71.28699999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-27", + "total_cases": 1751.0, + "new_cases": 46.0, + "new_cases_smoothed": 37.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3965.675, + "new_cases_per_million": 104.181, + "new_cases_smoothed_per_million": 84.121, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2109.0, + "total_tests": 184340.0, + "total_tests_per_thousand": 417.494, + "new_tests_per_thousand": 4.776, + "new_tests_smoothed": 2223.0, + "new_tests_smoothed_per_thousand": 5.035, + "tests_per_case": 59.85, + "positive_rate": 0.017, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 1788.0, + "new_cases": 37.0, + "new_cases_smoothed": 39.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4049.472, + "new_cases_per_million": 83.798, + "new_cases_smoothed_per_million": 90.269, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 2290.0, + "total_tests": 186630.0, + "total_tests_per_thousand": 422.681, + "new_tests_per_thousand": 5.186, + "new_tests_smoothed": 2220.0, + "new_tests_smoothed_per_thousand": 5.028, + "tests_per_case": 55.699, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 1820.0, + "new_cases": 32.0, + "new_cases_smoothed": 39.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4121.946, + "new_cases_per_million": 72.474, + "new_cases_smoothed_per_million": 88.651, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1909.0, + "total_tests": 188539.0, + "total_tests_per_thousand": 427.004, + "new_tests_per_thousand": 4.324, + "new_tests_smoothed": 2182.0, + "new_tests_smoothed_per_thousand": 4.942, + "tests_per_case": 55.745, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 1847.0, + "new_cases": 27.0, + "new_cases_smoothed": 38.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4183.096, + "new_cases_per_million": 61.15, + "new_cases_smoothed_per_million": 87.357, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 1862.0, + "new_cases": 15.0, + "new_cases_smoothed": 35.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4217.068, + "new_cases_per_million": 33.972, + "new_cases_smoothed_per_million": 80.886, + "total_deaths_per_million": 24.913, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.324 + }, + { + "date": "2020-09-01", + "total_cases": 1883.0, + "new_cases": 21.0, + "new_cases_smoothed": 30.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4264.629, + "new_cases_per_million": 47.561, + "new_cases_smoothed_per_million": 69.885, + "total_deaths_per_million": 27.178, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.647 + }, + { + "date": "2020-09-02", + "total_cases": 1909.0, + "new_cases": 26.0, + "new_cases_smoothed": 29.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4323.514, + "new_cases_per_million": 58.885, + "new_cases_smoothed_per_million": 66.003, + "total_deaths_per_million": 27.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.647 + }, + { + "date": "2020-09-03", + "total_cases": 1931.0, + "new_cases": 22.0, + "new_cases_smoothed": 25.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4373.34, + "new_cases_per_million": 49.826, + "new_cases_smoothed_per_million": 58.238, + "total_deaths_per_million": 29.442, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 0.971 + }, + { + "date": "2020-09-04", + "total_cases": 1965.0, + "new_cases": 34.0, + "new_cases_smoothed": 25.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4450.343, + "new_cases_per_million": 77.003, + "new_cases_smoothed_per_million": 57.267, + "total_deaths_per_million": 29.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971 + }, + { + "date": "2020-09-05", + "total_cases": 1984.0, + "new_cases": 19.0, + "new_cases_smoothed": 23.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4493.374, + "new_cases_per_million": 43.031, + "new_cases_smoothed_per_million": 53.061, + "total_deaths_per_million": 29.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.971 + } + ] + }, + "MRT": { + "continent": "Africa", + "location": "Mauritania", + "population": 4649660.0, + "population_density": 4.289, + "median_age": 20.3, + "aged_65_older": 3.138, + "aged_70_older": 1.792, + "gdp_per_capita": 3597.633, + "extreme_poverty": 6.0, + "cardiovasc_death_rate": 232.347, + "diabetes_prevalence": 2.42, + "handwashing_facilities": 15.95, + "life_expectancy": 64.92, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.215, + "new_cases_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.215, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.215, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.215, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.215, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.43, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.645, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.645, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.43, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-03", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-05", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-06", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-11", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-14", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-15", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-16", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-17", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-18", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-19", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-20", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-21", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-22", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-25", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-26", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-27", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-01", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-05", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-05-14", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.936, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.43, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-05-15", + "total_cases": 16.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.441, + "new_cases_per_million": 1.505, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 0.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 77.78 + }, + { + "date": "2020-05-16", + "total_cases": 29.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.237, + "new_cases_per_million": 2.796, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.645, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-17", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.645, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-18", + "total_cases": 62.0, + "new_cases": 33.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13.334, + "new_cases_per_million": 7.097, + "new_cases_smoothed_per_million": 1.659, + "total_deaths_per_million": 0.86, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 77.78 + }, + { + "date": "2020-05-19", + "total_cases": 81.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.421, + "new_cases_per_million": 4.086, + "new_cases_smoothed_per_million": 2.243, + "total_deaths_per_million": 0.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 77.78 + }, + { + "date": "2020-05-20", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 17.421, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.243, + "total_deaths_per_million": 0.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 77.78 + }, + { + "date": "2020-05-21", + "total_cases": 131.0, + "new_cases": 50.0, + "new_cases_smoothed": 17.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.174, + "new_cases_per_million": 10.753, + "new_cases_smoothed_per_million": 3.748, + "total_deaths_per_million": 0.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-22", + "total_cases": 173.0, + "new_cases": 42.0, + "new_cases_smoothed": 22.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 37.207, + "new_cases_per_million": 9.033, + "new_cases_smoothed_per_million": 4.824, + "total_deaths_per_million": 1.075, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 77.78 + }, + { + "date": "2020-05-23", + "total_cases": 173.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.424, + "total_deaths_per_million": 1.075, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-24", + "total_cases": 227.0, + "new_cases": 54.0, + "new_cases_smoothed": 28.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 48.821, + "new_cases_per_million": 11.614, + "new_cases_smoothed_per_million": 6.083, + "total_deaths_per_million": 1.29, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.092, + "stringency_index": 77.78 + }, + { + "date": "2020-05-25", + "total_cases": 237.0, + "new_cases": 10.0, + "new_cases_smoothed": 25.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.971, + "new_cases_per_million": 2.151, + "new_cases_smoothed_per_million": 5.377, + "total_deaths_per_million": 1.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-26", + "total_cases": 237.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.793, + "total_deaths_per_million": 1.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 77.78 + }, + { + "date": "2020-05-27", + "total_cases": 262.0, + "new_cases": 25.0, + "new_cases_smoothed": 25.857, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 56.348, + "new_cases_per_million": 5.377, + "new_cases_smoothed_per_million": 5.561, + "total_deaths_per_million": 1.936, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 77.78 + }, + { + "date": "2020-05-28", + "total_cases": 292.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.0, + "total_deaths": 16.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 62.8, + "new_cases_per_million": 6.452, + "new_cases_smoothed_per_million": 4.947, + "total_deaths_per_million": 3.441, + "new_deaths_per_million": 1.505, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 77.78 + }, + { + "date": "2020-05-29", + "total_cases": 292.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 62.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.656, + "total_deaths_per_million": 3.441, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.338, + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 423.0, + "new_cases": 131.0, + "new_cases_smoothed": 35.714, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 90.974, + "new_cases_per_million": 28.174, + "new_cases_smoothed_per_million": 7.681, + "total_deaths_per_million": 4.301, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 483.0, + "new_cases": 60.0, + "new_cases_smoothed": 36.571, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 103.879, + "new_cases_per_million": 12.904, + "new_cases_smoothed_per_million": 7.865, + "total_deaths_per_million": 4.516, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 530.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.857, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 113.987, + "new_cases_per_million": 10.108, + "new_cases_smoothed_per_million": 9.002, + "total_deaths_per_million": 4.947, + "new_deaths_per_million": 0.43, + "new_deaths_smoothed_per_million": 0.522, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 530.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 113.987, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.002, + "total_deaths_per_million": 4.947, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.522, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 668.0, + "new_cases": 138.0, + "new_cases_smoothed": 58.0, + "total_deaths": 31.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 143.666, + "new_cases_per_million": 29.68, + "new_cases_smoothed_per_million": 12.474, + "total_deaths_per_million": 6.667, + "new_deaths_per_million": 1.721, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 668.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 143.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.552, + "total_deaths_per_million": 6.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 784.0, + "new_cases": 116.0, + "new_cases_smoothed": 70.286, + "total_deaths": 39.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 168.614, + "new_cases_per_million": 24.948, + "new_cases_smoothed_per_million": 15.116, + "total_deaths_per_million": 8.388, + "new_deaths_per_million": 1.721, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 883.0, + "new_cases": 99.0, + "new_cases_smoothed": 65.714, + "total_deaths": 43.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 189.906, + "new_cases_per_million": 21.292, + "new_cases_smoothed_per_million": 14.133, + "total_deaths_per_million": 9.248, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 0.707, + "stringency_index": 77.78 + }, + { + "date": "2020-06-07", + "total_cases": 947.0, + "new_cases": 64.0, + "new_cases_smoothed": 66.286, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 203.671, + "new_cases_per_million": 13.764, + "new_cases_smoothed_per_million": 14.256, + "total_deaths_per_million": 9.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 77.78 + }, + { + "date": "2020-06-08", + "total_cases": 947.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.571, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 203.671, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.812, + "total_deaths_per_million": 9.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.614, + "stringency_index": 77.78 + }, + { + "date": "2020-06-09", + "total_cases": 947.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.571, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 203.671, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.812, + "total_deaths_per_million": 9.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.614, + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 1162.0, + "new_cases": 215.0, + "new_cases_smoothed": 70.571, + "total_deaths": 61.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 249.911, + "new_cases_per_million": 46.24, + "new_cases_smoothed_per_million": 15.178, + "total_deaths_per_million": 13.119, + "new_deaths_per_million": 3.871, + "new_deaths_smoothed_per_million": 0.922, + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 1162.0, + "new_cases": 0.0, + "new_cases_smoothed": 70.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 249.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.178, + "total_deaths_per_million": 13.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.922, + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 1162.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.0, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 249.911, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.614, + "total_deaths_per_million": 13.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.676, + "stringency_index": 77.78 + }, + { + "date": "2020-06-13", + "total_cases": 1439.0, + "new_cases": 277.0, + "new_cases_smoothed": 79.429, + "total_deaths": 74.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 309.485, + "new_cases_per_million": 59.574, + "new_cases_smoothed_per_million": 17.083, + "total_deaths_per_million": 15.915, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 0.952, + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 1439.0, + "new_cases": 0.0, + "new_cases_smoothed": 70.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 309.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.116, + "total_deaths_per_million": 15.915, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.952, + "stringency_index": 77.78 + }, + { + "date": "2020-06-15", + "total_cases": 1783.0, + "new_cases": 344.0, + "new_cases_smoothed": 119.429, + "total_deaths": 87.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 383.469, + "new_cases_per_million": 73.984, + "new_cases_smoothed_per_million": 25.685, + "total_deaths_per_million": 18.711, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 1.352, + "stringency_index": 77.78 + }, + { + "date": "2020-06-16", + "total_cases": 1887.0, + "new_cases": 104.0, + "new_cases_smoothed": 134.286, + "total_deaths": 91.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 405.836, + "new_cases_per_million": 22.367, + "new_cases_smoothed_per_million": 28.881, + "total_deaths_per_million": 19.571, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 1.475, + "stringency_index": 77.78 + }, + { + "date": "2020-06-17", + "total_cases": 2057.0, + "new_cases": 170.0, + "new_cases_smoothed": 127.857, + "total_deaths": 93.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 442.398, + "new_cases_per_million": 36.562, + "new_cases_smoothed_per_million": 27.498, + "total_deaths_per_million": 20.001, + "new_deaths_per_million": 0.43, + "new_deaths_smoothed_per_million": 0.983, + "stringency_index": 77.78 + }, + { + "date": "2020-06-18", + "total_cases": 2057.0, + "new_cases": 0.0, + "new_cases_smoothed": 127.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 442.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.498, + "total_deaths_per_million": 20.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.983, + "stringency_index": 77.78 + }, + { + "date": "2020-06-19", + "total_cases": 2223.0, + "new_cases": 166.0, + "new_cases_smoothed": 151.571, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 478.099, + "new_cases_per_million": 35.702, + "new_cases_smoothed_per_million": 32.598, + "total_deaths_per_million": 20.432, + "new_deaths_per_million": 0.43, + "new_deaths_smoothed_per_million": 1.045, + "stringency_index": 77.78 + }, + { + "date": "2020-06-20", + "total_cases": 2223.0, + "new_cases": 0.0, + "new_cases_smoothed": 112.0, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 478.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.088, + "total_deaths_per_million": 20.432, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 77.78 + }, + { + "date": "2020-06-21", + "total_cases": 2813.0, + "new_cases": 590.0, + "new_cases_smoothed": 196.286, + "total_deaths": 108.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 604.99, + "new_cases_per_million": 126.891, + "new_cases_smoothed_per_million": 42.215, + "total_deaths_per_million": 23.228, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 1.045, + "stringency_index": 77.78 + }, + { + "date": "2020-06-22", + "total_cases": 2813.0, + "new_cases": 0.0, + "new_cases_smoothed": 147.143, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 604.99, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.646, + "total_deaths_per_million": 23.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 77.78 + }, + { + "date": "2020-06-23", + "total_cases": 2984.0, + "new_cases": 171.0, + "new_cases_smoothed": 156.714, + "total_deaths": 111.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 641.767, + "new_cases_per_million": 36.777, + "new_cases_smoothed_per_million": 33.704, + "total_deaths_per_million": 23.873, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.614, + "stringency_index": 77.78 + }, + { + "date": "2020-06-24", + "total_cases": 2984.0, + "new_cases": 0.0, + "new_cases_smoothed": 132.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 641.767, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.481, + "total_deaths_per_million": 23.873, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.553, + "stringency_index": 77.78 + }, + { + "date": "2020-06-25", + "total_cases": 3292.0, + "new_cases": 308.0, + "new_cases_smoothed": 176.429, + "total_deaths": 114.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 708.009, + "new_cases_per_million": 66.241, + "new_cases_smoothed_per_million": 37.944, + "total_deaths_per_million": 24.518, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.645, + "stringency_index": 77.78 + }, + { + "date": "2020-06-26", + "total_cases": 3739.0, + "new_cases": 447.0, + "new_cases_smoothed": 216.571, + "total_deaths": 119.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 804.145, + "new_cases_per_million": 96.136, + "new_cases_smoothed_per_million": 46.578, + "total_deaths_per_million": 25.593, + "new_deaths_per_million": 1.075, + "new_deaths_smoothed_per_million": 0.737, + "stringency_index": 77.78 + }, + { + "date": "2020-06-27", + "total_cases": 3739.0, + "new_cases": 0.0, + "new_cases_smoothed": 216.571, + "total_deaths": 119.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 804.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.578, + "total_deaths_per_million": 25.593, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.737, + "stringency_index": 77.78 + }, + { + "date": "2020-06-28", + "total_cases": 3907.0, + "new_cases": 168.0, + "new_cases_smoothed": 156.286, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 840.276, + "new_cases_per_million": 36.132, + "new_cases_smoothed_per_million": 33.612, + "total_deaths_per_million": 25.808, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 77.78 + }, + { + "date": "2020-06-29", + "total_cases": 3907.0, + "new_cases": 0.0, + "new_cases_smoothed": 156.286, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 840.276, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.612, + "total_deaths_per_million": 25.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 77.78 + }, + { + "date": "2020-06-30", + "total_cases": 4149.0, + "new_cases": 242.0, + "new_cases_smoothed": 166.429, + "total_deaths": 126.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 892.323, + "new_cases_per_million": 52.047, + "new_cases_smoothed_per_million": 35.794, + "total_deaths_per_million": 27.099, + "new_deaths_per_million": 1.29, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 77.78 + }, + { + "date": "2020-07-01", + "total_cases": 4149.0, + "new_cases": 0.0, + "new_cases_smoothed": 166.429, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 892.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.794, + "total_deaths_per_million": 27.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 74.07 + }, + { + "date": "2020-07-02", + "total_cases": 4149.0, + "new_cases": 0.0, + "new_cases_smoothed": 122.429, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 892.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.331, + "total_deaths_per_million": 27.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 74.07 + }, + { + "date": "2020-07-03", + "total_cases": 4472.0, + "new_cases": 323.0, + "new_cases_smoothed": 104.714, + "total_deaths": 129.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 961.791, + "new_cases_per_million": 69.467, + "new_cases_smoothed_per_million": 22.521, + "total_deaths_per_million": 27.744, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 74.07 + }, + { + "date": "2020-07-04", + "total_cases": 4472.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.714, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 961.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.521, + "total_deaths_per_million": 27.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 74.07 + }, + { + "date": "2020-07-05", + "total_cases": 4827.0, + "new_cases": 355.0, + "new_cases_smoothed": 131.429, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1038.14, + "new_cases_per_million": 76.35, + "new_cases_smoothed_per_million": 28.266, + "total_deaths_per_million": 27.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.277, + "stringency_index": 74.07 + }, + { + "date": "2020-07-06", + "total_cases": 4879.0, + "new_cases": 52.0, + "new_cases_smoothed": 138.857, + "total_deaths": 130.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1049.324, + "new_cases_per_million": 11.184, + "new_cases_smoothed_per_million": 29.864, + "total_deaths_per_million": 27.959, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 74.07 + }, + { + "date": "2020-07-07", + "total_cases": 4879.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.286, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1049.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.429, + "total_deaths_per_million": 27.959, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 53.7 + }, + { + "date": "2020-07-08", + "total_cases": 4879.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.286, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1049.324, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 22.429, + "total_deaths_per_million": 27.959, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 53.7 + }, + { + "date": "2020-07-09", + "total_cases": 5024.0, + "new_cases": 145.0, + "new_cases_smoothed": 125.0, + "total_deaths": 135.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1080.509, + "new_cases_per_million": 31.185, + "new_cases_smoothed_per_million": 26.884, + "total_deaths_per_million": 29.034, + "new_deaths_per_million": 1.075, + "new_deaths_smoothed_per_million": 0.277, + "stringency_index": 53.7 + }, + { + "date": "2020-07-10", + "total_cases": 5087.0, + "new_cases": 63.0, + "new_cases_smoothed": 87.857, + "total_deaths": 139.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1094.058, + "new_cases_per_million": 13.549, + "new_cases_smoothed_per_million": 18.895, + "total_deaths_per_million": 29.895, + "new_deaths_per_million": 0.86, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 29.63 + }, + { + "date": "2020-07-11", + "total_cases": 5126.0, + "new_cases": 39.0, + "new_cases_smoothed": 93.429, + "total_deaths": 144.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1102.446, + "new_cases_per_million": 8.388, + "new_cases_smoothed_per_million": 20.094, + "total_deaths_per_million": 30.97, + "new_deaths_per_million": 1.075, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 29.63 + }, + { + "date": "2020-07-12", + "total_cases": 5126.0, + "new_cases": 0.0, + "new_cases_smoothed": 42.714, + "total_deaths": 144.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1102.446, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.187, + "total_deaths_per_million": 30.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.461, + "stringency_index": 29.63 + }, + { + "date": "2020-07-13", + "total_cases": 5126.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 144.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1102.446, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.589, + "total_deaths_per_million": 30.97, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.43, + "stringency_index": 29.63 + }, + { + "date": "2020-07-14", + "total_cases": 5355.0, + "new_cases": 229.0, + "new_cases_smoothed": 68.0, + "total_deaths": 147.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1151.697, + "new_cases_per_million": 49.251, + "new_cases_smoothed_per_million": 14.625, + "total_deaths_per_million": 31.615, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.522, + "stringency_index": 29.63 + }, + { + "date": "2020-07-15", + "total_cases": 5446.0, + "new_cases": 91.0, + "new_cases_smoothed": 81.0, + "total_deaths": 149.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1171.268, + "new_cases_per_million": 19.571, + "new_cases_smoothed_per_million": 17.421, + "total_deaths_per_million": 32.045, + "new_deaths_per_million": 0.43, + "new_deaths_smoothed_per_million": 0.584, + "stringency_index": 29.63 + }, + { + "date": "2020-07-16", + "total_cases": 5446.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.286, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1171.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.966, + "total_deaths_per_million": 32.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.43, + "stringency_index": 29.63 + }, + { + "date": "2020-07-17", + "total_cases": 5446.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1171.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.03, + "total_deaths_per_million": 32.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.307, + "stringency_index": 29.63 + }, + { + "date": "2020-07-18", + "total_cases": 5446.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.714, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1171.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.832, + "total_deaths_per_million": 32.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 29.63 + }, + { + "date": "2020-07-19", + "total_cases": 5446.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.714, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1171.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.832, + "total_deaths_per_million": 32.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 29.63 + }, + { + "date": "2020-07-20", + "total_cases": 5873.0, + "new_cases": 427.0, + "new_cases_smoothed": 106.714, + "total_deaths": 155.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1263.103, + "new_cases_per_million": 91.835, + "new_cases_smoothed_per_million": 22.951, + "total_deaths_per_million": 33.336, + "new_deaths_per_million": 1.29, + "new_deaths_smoothed_per_million": 0.338, + "stringency_index": 29.63 + }, + { + "date": "2020-07-21", + "total_cases": 5923.0, + "new_cases": 50.0, + "new_cases_smoothed": 81.143, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1273.857, + "new_cases_per_million": 10.753, + "new_cases_smoothed_per_million": 17.451, + "total_deaths_per_million": 33.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 29.63 + }, + { + "date": "2020-07-22", + "total_cases": 5923.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.143, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1273.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.655, + "total_deaths_per_million": 33.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 29.63 + }, + { + "date": "2020-07-23", + "total_cases": 5923.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.143, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1273.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.655, + "total_deaths_per_million": 33.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 29.63 + }, + { + "date": "2020-07-24", + "total_cases": 6027.0, + "new_cases": 104.0, + "new_cases_smoothed": 83.0, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1296.224, + "new_cases_per_million": 22.367, + "new_cases_smoothed_per_million": 17.851, + "total_deaths_per_million": 33.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 29.63 + }, + { + "date": "2020-07-25", + "total_cases": 6067.0, + "new_cases": 40.0, + "new_cases_smoothed": 88.714, + "total_deaths": 156.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1304.827, + "new_cases_per_million": 8.603, + "new_cases_smoothed_per_million": 19.08, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.215, + "stringency_index": 29.63 + }, + { + "date": "2020-07-26", + "total_cases": 6067.0, + "new_cases": 0.0, + "new_cases_smoothed": 88.714, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1304.827, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.08, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "stringency_index": 29.63 + }, + { + "date": "2020-07-27", + "total_cases": 6171.0, + "new_cases": 104.0, + "new_cases_smoothed": 42.571, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1327.194, + "new_cases_per_million": 22.367, + "new_cases_smoothed_per_million": 9.156, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-07-28", + "total_cases": 6171.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.429, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1327.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.62, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-07-29", + "total_cases": 6171.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.429, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1327.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.62, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-07-30", + "total_cases": 6249.0, + "new_cases": 78.0, + "new_cases_smoothed": 46.571, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1343.969, + "new_cases_per_million": 16.775, + "new_cases_smoothed_per_million": 10.016, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-07-31", + "total_cases": 6270.0, + "new_cases": 21.0, + "new_cases_smoothed": 34.714, + "total_deaths": 156.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1348.486, + "new_cases_per_million": 4.516, + "new_cases_smoothed_per_million": 7.466, + "total_deaths_per_million": 33.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-01", + "total_cases": 6295.0, + "new_cases": 25.0, + "new_cases_smoothed": 32.571, + "total_deaths": 157.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1353.862, + "new_cases_per_million": 5.377, + "new_cases_smoothed_per_million": 7.005, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-02", + "total_cases": 6310.0, + "new_cases": 15.0, + "new_cases_smoothed": 34.714, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1357.088, + "new_cases_per_million": 3.226, + "new_cases_smoothed_per_million": 7.466, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-03", + "total_cases": 6310.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.857, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1357.088, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.271, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-04", + "total_cases": 6323.0, + "new_cases": 13.0, + "new_cases_smoothed": 21.714, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1359.884, + "new_cases_per_million": 2.796, + "new_cases_smoothed_per_million": 4.67, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-05", + "total_cases": 6382.0, + "new_cases": 59.0, + "new_cases_smoothed": 30.143, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1372.573, + "new_cases_per_million": 12.689, + "new_cases_smoothed_per_million": 6.483, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-06", + "total_cases": 6382.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1372.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.086, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-07", + "total_cases": 6382.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1372.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.441, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-08", + "total_cases": 6382.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1372.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.673, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-09", + "total_cases": 6498.0, + "new_cases": 116.0, + "new_cases_smoothed": 26.857, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1397.522, + "new_cases_per_million": 24.948, + "new_cases_smoothed_per_million": 5.776, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-10", + "total_cases": 6498.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.857, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1397.522, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.776, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-11", + "total_cases": 6498.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1397.522, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.377, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-12", + "total_cases": 6550.0, + "new_cases": 52.0, + "new_cases_smoothed": 24.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1408.705, + "new_cases_per_million": 11.184, + "new_cases_smoothed_per_million": 5.162, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-13", + "total_cases": 6598.0, + "new_cases": 48.0, + "new_cases_smoothed": 30.857, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1419.028, + "new_cases_per_million": 10.323, + "new_cases_smoothed_per_million": 6.636, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-14", + "total_cases": 6622.0, + "new_cases": 24.0, + "new_cases_smoothed": 34.286, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1424.19, + "new_cases_per_million": 5.162, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-15", + "total_cases": 6622.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.286, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1424.19, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-16", + "total_cases": 6622.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1424.19, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.81, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-17", + "total_cases": 6701.0, + "new_cases": 79.0, + "new_cases_smoothed": 29.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1441.181, + "new_cases_per_million": 16.99, + "new_cases_smoothed_per_million": 6.237, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-18", + "total_cases": 6701.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.0, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1441.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.237, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-19", + "total_cases": 6789.0, + "new_cases": 88.0, + "new_cases_smoothed": 34.143, + "total_deaths": 157.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1460.107, + "new_cases_per_million": 18.926, + "new_cases_smoothed_per_million": 7.343, + "total_deaths_per_million": 33.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-20", + "total_cases": 6829.0, + "new_cases": 40.0, + "new_cases_smoothed": 33.0, + "total_deaths": 158.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1468.71, + "new_cases_per_million": 8.603, + "new_cases_smoothed_per_million": 7.097, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-21", + "total_cases": 6829.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.571, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1468.71, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.36, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-22", + "total_cases": 6885.0, + "new_cases": 56.0, + "new_cases_smoothed": 37.571, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1480.753, + "new_cases_per_million": 12.044, + "new_cases_smoothed_per_million": 8.08, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-23", + "total_cases": 6885.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1480.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.08, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-24", + "total_cases": 6885.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.286, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1480.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.653, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-25", + "total_cases": 6905.0, + "new_cases": 20.0, + "new_cases_smoothed": 29.143, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1485.055, + "new_cases_per_million": 4.301, + "new_cases_smoothed_per_million": 6.268, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-26", + "total_cases": 6928.0, + "new_cases": 23.0, + "new_cases_smoothed": 19.857, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1490.001, + "new_cases_per_million": 4.947, + "new_cases_smoothed_per_million": 4.271, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-08-27", + "total_cases": 6960.0, + "new_cases": 32.0, + "new_cases_smoothed": 18.714, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1496.884, + "new_cases_per_million": 6.882, + "new_cases_smoothed_per_million": 4.025, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-28", + "total_cases": 6977.0, + "new_cases": 17.0, + "new_cases_smoothed": 21.143, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1500.54, + "new_cases_per_million": 3.656, + "new_cases_smoothed_per_million": 4.547, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-29", + "total_cases": 6977.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1500.54, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.827, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-30", + "total_cases": 7012.0, + "new_cases": 35.0, + "new_cases_smoothed": 18.143, + "total_deaths": 158.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1508.067, + "new_cases_per_million": 7.527, + "new_cases_smoothed_per_million": 3.902, + "total_deaths_per_million": 33.981, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 29.63 + }, + { + "date": "2020-08-31", + "total_cases": 7022.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.571, + "total_deaths": 159.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1510.218, + "new_cases_per_million": 2.151, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 34.196, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-09-01", + "total_cases": 7048.0, + "new_cases": 26.0, + "new_cases_smoothed": 20.429, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1515.81, + "new_cases_per_million": 5.592, + "new_cases_smoothed_per_million": 4.394, + "total_deaths_per_million": 34.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-09-02", + "total_cases": 7075.0, + "new_cases": 27.0, + "new_cases_smoothed": 21.0, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1521.617, + "new_cases_per_million": 5.807, + "new_cases_smoothed_per_million": 4.516, + "total_deaths_per_million": 34.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 29.63 + }, + { + "date": "2020-09-03", + "total_cases": 7089.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.429, + "total_deaths": 160.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1524.628, + "new_cases_per_million": 3.011, + "new_cases_smoothed_per_million": 3.963, + "total_deaths_per_million": 34.411, + "new_deaths_per_million": 0.215, + "new_deaths_smoothed_per_million": 0.061, + "stringency_index": 21.3 + }, + { + "date": "2020-09-04", + "total_cases": 7106.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.429, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1528.284, + "new_cases_per_million": 3.656, + "new_cases_smoothed_per_million": 3.963, + "total_deaths_per_million": 34.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061 + }, + { + "date": "2020-09-05", + "total_cases": 7126.0, + "new_cases": 20.0, + "new_cases_smoothed": 21.286, + "total_deaths": 160.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1532.585, + "new_cases_per_million": 4.301, + "new_cases_smoothed_per_million": 4.578, + "total_deaths_per_million": 34.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.061 + } + ] + }, + "MUS": { + "continent": "Africa", + "location": "Mauritius", + "population": 1271767.0, + "population_density": 622.962, + "median_age": 37.4, + "aged_65_older": 10.945, + "aged_70_older": 5.884, + "gdp_per_capita": 20292.745, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 224.644, + "diabetes_prevalence": 22.02, + "female_smokers": 3.2, + "male_smokers": 40.7, + "hospital_beds_per_thousand": 3.4, + "life_expectancy": 74.99, + "data": [ + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.359, + "new_cases_per_million": 2.359, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 12.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 9.436, + "new_cases_per_million": 7.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 14.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 11.008, + "new_cases_per_million": 1.573, + "total_deaths_per_million": 0.786, + "new_deaths_per_million": 0.786, + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 28.0, + "new_cases": 14.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "total_cases_per_million": 22.017, + "new_cases_per_million": 11.008, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.786, + "stringency_index": 71.3 + }, + { + "date": "2020-03-24", + "total_cases": 36.0, + "new_cases": 8.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "total_cases_per_million": 28.307, + "new_cases_per_million": 6.29, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-25", + "total_cases": 42.0, + "new_cases": 6.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "total_cases_per_million": 33.025, + "new_cases_per_million": 4.718, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-26", + "total_cases": 48.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.743, + "new_cases_per_million": 4.718, + "new_cases_smoothed_per_million": 5.392, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-03-27", + "total_cases": 81.0, + "new_cases": 33.0, + "new_cases_smoothed": 11.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 63.691, + "new_cases_per_million": 25.948, + "new_cases_smoothed_per_million": 8.762, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-03-28", + "total_cases": 94.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 73.913, + "new_cases_per_million": 10.222, + "new_cases_smoothed_per_million": 9.211, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-03-29", + "total_cases": 102.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 80.203, + "new_cases_per_million": 6.29, + "new_cases_smoothed_per_million": 9.885, + "total_deaths_per_million": 1.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-03-30", + "total_cases": 110.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 86.494, + "new_cases_per_million": 6.29, + "new_cases_smoothed_per_million": 9.211, + "total_deaths_per_million": 2.359, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 128.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.647, + "new_cases_per_million": 14.154, + "new_cases_smoothed_per_million": 10.334, + "total_deaths_per_million": 2.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 143.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.442, + "new_cases_per_million": 11.795, + "new_cases_smoothed_per_million": 11.345, + "total_deaths_per_million": 2.359, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 154.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 121.091, + "new_cases_per_million": 8.649, + "new_cases_smoothed_per_million": 11.907, + "total_deaths_per_million": 3.932, + "new_deaths_per_million": 1.573, + "new_deaths_smoothed_per_million": 0.337, + "stringency_index": 82.41 + }, + { + "date": "2020-04-03", + "total_cases": 169.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.571, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 132.886, + "new_cases_per_million": 11.795, + "new_cases_smoothed_per_million": 9.885, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 1.573, + "new_deaths_smoothed_per_million": 0.562, + "stringency_index": 82.41 + }, + { + "date": "2020-04-04", + "total_cases": 186.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 146.253, + "new_cases_per_million": 13.367, + "new_cases_smoothed_per_million": 10.334, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.562, + "stringency_index": 82.41 + }, + { + "date": "2020-04-05", + "total_cases": 196.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 154.116, + "new_cases_per_million": 7.863, + "new_cases_smoothed_per_million": 10.559, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.562, + "stringency_index": 82.41 + }, + { + "date": "2020-04-06", + "total_cases": 227.0, + "new_cases": 31.0, + "new_cases_smoothed": 16.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 178.492, + "new_cases_per_million": 24.376, + "new_cases_smoothed_per_million": 13.143, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 244.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 191.859, + "new_cases_per_million": 13.367, + "new_cases_smoothed_per_million": 13.03, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 268.0, + "new_cases": 24.0, + "new_cases_smoothed": 17.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 210.73, + "new_cases_per_million": 18.871, + "new_cases_smoothed_per_million": 14.041, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 273.0, + "new_cases": 5.0, + "new_cases_smoothed": 17.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.662, + "new_cases_per_million": 3.932, + "new_cases_smoothed_per_million": 13.367, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 314.0, + "new_cases": 41.0, + "new_cases_smoothed": 20.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.901, + "new_cases_per_million": 32.239, + "new_cases_smoothed_per_million": 16.288, + "total_deaths_per_million": 5.504, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 318.0, + "new_cases": 4.0, + "new_cases_smoothed": 18.857, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 250.046, + "new_cases_per_million": 3.145, + "new_cases_smoothed_per_million": 14.828, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 1.573, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 319.0, + "new_cases": 1.0, + "new_cases_smoothed": 17.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 250.832, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 13.817, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 324.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.764, + "new_cases_per_million": 3.932, + "new_cases_smoothed_per_million": 10.896, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.986, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.29, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.729, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 254.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.674, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 325.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 255.55, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.674, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 328.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.909, + "new_cases_per_million": 2.359, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 257.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-23", + "total_cases": 329.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.695, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 331.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.268, + "new_cases_per_million": 1.573, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 331.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.674, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 332.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-05-02", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-05-03", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-05-04", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-11", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-16", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-18", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-19", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-20", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-21", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-22", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-23", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-24", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-25", + "total_cases": 334.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.627, + "new_cases_per_million": 1.573, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-26", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.627, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-27", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.627, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-28", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.627, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-29", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 262.627, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-30", + "total_cases": 335.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-31", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-01", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-02", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-03", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-04", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-05", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-06", + "total_cases": 337.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 1.573, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-07", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-08", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-09", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-10", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-11", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-12", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-13", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-14", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-06-15", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-16", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-17", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-18", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-19", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-20", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-21", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-22", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 264.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-23", + "total_cases": 340.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.345, + "new_cases_per_million": 2.359, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-24", + "total_cases": 340.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 267.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 341.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-02", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-03", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-04", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-05", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-06", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-07", + "total_cases": 342.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-08", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-09", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-10", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-11", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-12", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-13", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-14", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-15", + "total_cases": 342.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.917, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-16", + "total_cases": 343.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-17", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-18", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-19", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-20", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-21", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-22", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-23", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-24", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-25", + "total_cases": 344.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.786, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-26", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-27", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-28", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-29", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-30", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-07-31", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-01", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-02", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-03", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-04", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-05", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-06", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-07", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-08", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-09", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-10", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-11", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-12", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-13", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-14", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-15", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-16", + "total_cases": 344.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-17", + "total_cases": 346.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 1.573, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-18", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-19", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-20", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-21", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-22", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-23", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-24", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-25", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-08-26", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-27", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-28", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-29", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-30", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-31", + "total_cases": 346.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-09-01", + "total_cases": 356.0, + "new_cases": 10.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.925, + "new_cases_per_million": 7.863, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-09-02", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-09-03", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-09-04", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-09-05", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.925, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 7.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MEX": { + "continent": "North America", + "location": "Mexico", + "population": 128932753.0, + "population_density": 66.444, + "median_age": 29.3, + "aged_65_older": 6.857, + "aged_70_older": 4.321, + "gdp_per_capita": 17336.469, + "extreme_poverty": 2.5, + "cardiovasc_death_rate": 152.783, + "diabetes_prevalence": 13.06, + "female_smokers": 6.9, + "male_smokers": 21.4, + "handwashing_facilities": 87.847, + "hospital_beds_per_thousand": 1.38, + "life_expectancy": 75.05, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 38.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 44.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 58.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 86.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 114.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 129.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 173.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 212.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 217.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 237.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 274.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 325.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 59.0, + "total_tests": 384.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42.0, + "total_tests": 426.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42.0, + "total_tests": 468.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 484.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 505.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 65.0, + "total_tests": 570.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 52.0, + "total_tests": 622.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 56.0, + "total_tests": 678.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 46.0, + "total_tests": 724.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 46.0, + "total_tests": 770.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 785.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 43.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 819.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 43.0, + "total_tests": 862.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 42.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 912.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 943.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 39.0, + "total_tests": 982.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 1014.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 1022.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 1034.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 1048.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 51.0, + "total_tests": 1099.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 1144.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 1189.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 1217.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 1224.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 1240.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 1311.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 49.0, + "total_tests": 1360.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 1400.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 36.0, + "total_tests": 1436.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 35.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 1468.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 1477.0, + "total_tests_per_thousand": 0.011, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 1493.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 1521.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 1551.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 1582.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 1604.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 1626.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 1638.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 1647.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 1680.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 1711.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 1751.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 45.0, + "total_tests": 1796.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 65.0, + "total_tests": 1861.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.016, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 1887.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-01", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.031, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 1915.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 66.5, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-02", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.008, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 1993.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 63.0, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 75.0, + "total_tests": 2068.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 51.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 71.4, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 2138.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 77.0, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 2204.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 81.2, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 55.0, + "total_tests": 2259.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 79.8, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 2285.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 57.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 2320.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 406.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-09", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.054, + "new_cases_per_million": 0.016, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 80.0, + "total_tests": 2400.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 203.0, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 107.0, + "total_tests": 2507.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 63.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 220.5, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 133.0, + "total_tests": 2640.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-12", + "total_cases": 11.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.085, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 203.0, + "total_tests": 2843.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 91.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 106.167, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-13", + "total_cases": 16.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.124, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 284.0, + "total_tests": 3127.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 124.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 78.90899999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-14", + "total_cases": 26.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.202, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 163.0, + "total_tests": 3290.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 144.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 48.0, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-15", + "total_cases": 41.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.318, + "new_cases_per_million": 0.116, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 3461.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 31.694000000000003, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-16", + "total_cases": 53.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.411, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 263.0, + "total_tests": 3724.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 189.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 28.761, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-17", + "total_cases": 82.0, + "new_cases": 29.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.636, + "new_cases_per_million": 0.225, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 462.0, + "total_tests": 4186.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 22.4, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-18", + "total_cases": 93.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.721, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.095, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 520.0, + "total_tests": 4706.0, + "total_tests_per_thousand": 0.036, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 295.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 24.011999999999997, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-19", + "total_cases": 118.0, + "new_cases": 25.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.915, + "new_cases_per_million": 0.194, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 590.0, + "total_tests": 5296.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 22.897, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-20", + "total_cases": 164.0, + "new_cases": 46.0, + "new_cases_smoothed": 21.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.272, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 572.0, + "total_tests": 5868.0, + "total_tests_per_thousand": 0.046, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 392.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 18.541, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-21", + "total_cases": 203.0, + "new_cases": 39.0, + "new_cases_smoothed": 25.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.574, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.016, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 399.0, + "total_tests": 6267.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 16.808, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-03-22", + "total_cases": 251.0, + "new_cases": 48.0, + "new_cases_smoothed": 30.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.947, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 0.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 313.0, + "total_tests": 6580.0, + "total_tests_per_thousand": 0.051, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 446.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 14.867, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-03-23", + "total_cases": 316.0, + "new_cases": 65.0, + "new_cases_smoothed": 37.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.451, + "new_cases_per_million": 0.504, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 0.016, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 840.0, + "total_tests": 7420.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 528.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 14.052999999999999, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-24", + "total_cases": 367.0, + "new_cases": 51.0, + "new_cases_smoothed": 40.714, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2.846, + "new_cases_per_million": 0.396, + "new_cases_smoothed_per_million": 0.316, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 1137.0, + "total_tests": 8557.0, + "total_tests_per_thousand": 0.066, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 624.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 15.325999999999999, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 405.0, + "new_cases": 38.0, + "new_cases_smoothed": 44.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.141, + "new_cases_per_million": 0.295, + "new_cases_smoothed_per_million": 0.346, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1254.0, + "total_tests": 9811.0, + "total_tests_per_thousand": 0.076, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 16.355999999999998, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 475.0, + "new_cases": 70.0, + "new_cases_smoothed": 51.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.684, + "new_cases_per_million": 0.543, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1225.0, + "total_tests": 11036.0, + "total_tests_per_thousand": 0.086, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 16.078, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-27", + "total_cases": 585.0, + "new_cases": 110.0, + "new_cases_smoothed": 60.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4.537, + "new_cases_per_million": 0.853, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 1459.0, + "total_tests": 12495.0, + "total_tests_per_thousand": 0.097, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 947.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 15.745999999999999, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-28", + "total_cases": 717.0, + "new_cases": 132.0, + "new_cases_smoothed": 73.429, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5.561, + "new_cases_per_million": 1.024, + "new_cases_smoothed_per_million": 0.57, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 766.0, + "total_tests": 13261.0, + "total_tests_per_thousand": 0.103, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 999.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 13.605, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-29", + "total_cases": 848.0, + "new_cases": 131.0, + "new_cases_smoothed": 85.286, + "total_deaths": 16.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6.577, + "new_cases_per_million": 1.016, + "new_cases_smoothed_per_million": 0.661, + "total_deaths_per_million": 0.124, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 742.0, + "total_tests": 14003.0, + "total_tests_per_thousand": 0.109, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 12.429, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-30", + "total_cases": 993.0, + "new_cases": 145.0, + "new_cases_smoothed": 96.714, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7.702, + "new_cases_per_million": 1.125, + "new_cases_smoothed_per_million": 0.75, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 1669.0, + "total_tests": 15672.0, + "total_tests_per_thousand": 0.122, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1179.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 12.190999999999999, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 1094.0, + "new_cases": 101.0, + "new_cases_smoothed": 103.857, + "total_deaths": 28.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 8.485, + "new_cases_per_million": 0.783, + "new_cases_smoothed_per_million": 0.806, + "total_deaths_per_million": 0.217, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1484.0, + "total_tests": 17156.0, + "total_tests_per_thousand": 0.133, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1228.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 11.824000000000002, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 1215.0, + "new_cases": 121.0, + "new_cases_smoothed": 115.714, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 9.424, + "new_cases_per_million": 0.938, + "new_cases_smoothed_per_million": 0.897, + "total_deaths_per_million": 0.225, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1583.0, + "total_tests": 18739.0, + "total_tests_per_thousand": 0.145, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1275.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 11.019, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 1378.0, + "new_cases": 163.0, + "new_cases_smoothed": 129.0, + "total_deaths": 37.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 10.688, + "new_cases_per_million": 1.264, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.287, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 1695.0, + "total_tests": 20434.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1343.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 10.411, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-03", + "total_cases": 1510.0, + "new_cases": 132.0, + "new_cases_smoothed": 132.143, + "total_deaths": 50.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 11.712, + "new_cases_per_million": 1.024, + "new_cases_smoothed_per_million": 1.025, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 1726.0, + "total_tests": 22160.0, + "total_tests_per_thousand": 0.172, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1381.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 10.450999999999999, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-04", + "total_cases": 1688.0, + "new_cases": 178.0, + "new_cases_smoothed": 138.714, + "total_deaths": 60.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 13.092, + "new_cases_per_million": 1.381, + "new_cases_smoothed_per_million": 1.076, + "total_deaths_per_million": 0.465, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1077.0, + "total_tests": 23237.0, + "total_tests_per_thousand": 0.18, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1425.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 10.273, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-05", + "total_cases": 1890.0, + "new_cases": 202.0, + "new_cases_smoothed": 148.857, + "total_deaths": 79.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 14.659, + "new_cases_per_million": 1.567, + "new_cases_smoothed_per_million": 1.155, + "total_deaths_per_million": 0.613, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 804.0, + "total_tests": 24041.0, + "total_tests_per_thousand": 0.186, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1434.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 9.633, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-06", + "total_cases": 2143.0, + "new_cases": 253.0, + "new_cases_smoothed": 164.286, + "total_deaths": 94.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 16.621, + "new_cases_per_million": 1.962, + "new_cases_smoothed_per_million": 1.274, + "total_deaths_per_million": 0.729, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1997.0, + "total_tests": 26038.0, + "total_tests_per_thousand": 0.202, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1481.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 9.015, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 2439.0, + "new_cases": 296.0, + "new_cases_smoothed": 192.143, + "total_deaths": 125.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 18.917, + "new_cases_per_million": 2.296, + "new_cases_smoothed_per_million": 1.49, + "total_deaths_per_million": 0.969, + "new_deaths_per_million": 0.24, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 1988.0, + "total_tests": 28026.0, + "total_tests_per_thousand": 0.217, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1553.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 8.083, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 2785.0, + "new_cases": 346.0, + "new_cases_smoothed": 224.286, + "total_deaths": 141.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 21.6, + "new_cases_per_million": 2.684, + "new_cases_smoothed_per_million": 1.74, + "total_deaths_per_million": 1.094, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 2171.0, + "total_tests": 30197.0, + "total_tests_per_thousand": 0.234, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1637.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.2989999999999995, + "positive_rate": 0.13699999999999998, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 3181.0, + "new_cases": 396.0, + "new_cases_smoothed": 257.571, + "total_deaths": 174.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 24.672, + "new_cases_per_million": 3.071, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 1.35, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 1637.0, + "total_tests": 31834.0, + "total_tests_per_thousand": 0.247, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1629.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 6.324, + "positive_rate": 0.158, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 3441.0, + "new_cases": 260.0, + "new_cases_smoothed": 275.857, + "total_deaths": 194.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 26.688, + "new_cases_per_million": 2.017, + "new_cases_smoothed_per_million": 2.14, + "total_deaths_per_million": 1.505, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 1922.0, + "total_tests": 33756.0, + "total_tests_per_thousand": 0.262, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1657.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 6.007000000000001, + "positive_rate": 0.166, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 3844.0, + "new_cases": 403.0, + "new_cases_smoothed": 308.0, + "total_deaths": 233.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 29.814, + "new_cases_per_million": 3.126, + "new_cases_smoothed_per_million": 2.389, + "total_deaths_per_million": 1.807, + "new_deaths_per_million": 0.302, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 1379.0, + "total_tests": 35135.0, + "total_tests_per_thousand": 0.273, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 1700.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 5.519, + "positive_rate": 0.18100000000000002, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 4219.0, + "new_cases": 375.0, + "new_cases_smoothed": 332.714, + "total_deaths": 273.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 32.722, + "new_cases_per_million": 2.908, + "new_cases_smoothed_per_million": 2.581, + "total_deaths_per_million": 2.117, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 1189.0, + "total_tests": 36324.0, + "total_tests_per_thousand": 0.282, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.275, + "positive_rate": 0.19, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 4661.0, + "new_cases": 442.0, + "new_cases_smoothed": 359.714, + "total_deaths": 296.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 36.151, + "new_cases_per_million": 3.428, + "new_cases_smoothed_per_million": 2.79, + "total_deaths_per_million": 2.296, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 2796.0, + "total_tests": 39120.0, + "total_tests_per_thousand": 0.303, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1869.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.196000000000001, + "positive_rate": 0.192, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 5014.0, + "new_cases": 353.0, + "new_cases_smoothed": 367.857, + "total_deaths": 332.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 38.888, + "new_cases_per_million": 2.738, + "new_cases_smoothed_per_million": 2.853, + "total_deaths_per_million": 2.575, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 2885.0, + "total_tests": 42005.0, + "total_tests_per_thousand": 0.326, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1997.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 5.428999999999999, + "positive_rate": 0.184, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 5399.0, + "new_cases": 385.0, + "new_cases_smoothed": 373.429, + "total_deaths": 406.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 41.875, + "new_cases_per_million": 2.986, + "new_cases_smoothed_per_million": 2.896, + "total_deaths_per_million": 3.149, + "new_deaths_per_million": 0.574, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 2778.0, + "total_tests": 44783.0, + "total_tests_per_thousand": 0.347, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 2084.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 5.581, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 5847.0, + "new_cases": 448.0, + "new_cases_smoothed": 380.857, + "total_deaths": 449.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 45.349, + "new_cases_per_million": 3.475, + "new_cases_smoothed_per_million": 2.954, + "total_deaths_per_million": 3.482, + "new_deaths_per_million": 0.334, + "new_deaths_smoothed_per_million": 0.305, + "new_tests": 2678.0, + "total_tests": 47461.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2232.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 5.86, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 6297.0, + "new_cases": 450.0, + "new_cases_smoothed": 408.0, + "total_deaths": 486.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.714, + "total_cases_per_million": 48.839, + "new_cases_per_million": 3.49, + "new_cases_smoothed_per_million": 3.164, + "total_deaths_per_million": 3.769, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 3018.0, + "total_tests": 50479.0, + "total_tests_per_thousand": 0.392, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 2389.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 5.855, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 6875.0, + "new_cases": 578.0, + "new_cases_smoothed": 433.0, + "total_deaths": 546.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 44.714, + "total_cases_per_million": 53.322, + "new_cases_per_million": 4.483, + "new_cases_smoothed_per_million": 3.358, + "total_deaths_per_million": 4.235, + "new_deaths_per_million": 0.465, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 1617.0, + "total_tests": 52096.0, + "total_tests_per_thousand": 0.404, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 2423.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 5.596, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 7497.0, + "new_cases": 622.0, + "new_cases_smoothed": 468.286, + "total_deaths": 650.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 53.857, + "total_cases_per_million": 58.147, + "new_cases_per_million": 4.824, + "new_cases_smoothed_per_million": 3.632, + "total_deaths_per_million": 5.041, + "new_deaths_per_million": 0.807, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 1474.0, + "total_tests": 53570.0, + "total_tests_per_thousand": 0.415, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 2464.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 5.2620000000000005, + "positive_rate": 0.19, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 8261.0, + "new_cases": 764.0, + "new_cases_smoothed": 514.286, + "total_deaths": 686.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 55.714, + "total_cases_per_million": 64.072, + "new_cases_per_million": 5.926, + "new_cases_smoothed_per_million": 3.989, + "total_deaths_per_million": 5.321, + "new_deaths_per_million": 0.279, + "new_deaths_smoothed_per_million": 0.432, + "new_tests": 3583.0, + "total_tests": 57153.0, + "total_tests_per_thousand": 0.443, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 2576.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 5.0089999999999995, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 8772.0, + "new_cases": 511.0, + "new_cases_smoothed": 536.857, + "total_deaths": 712.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 54.286, + "total_cases_per_million": 68.035, + "new_cases_per_million": 3.963, + "new_cases_smoothed_per_million": 4.164, + "total_deaths_per_million": 5.522, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.421, + "new_tests": 3312.0, + "total_tests": 60465.0, + "total_tests_per_thousand": 0.469, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 2637.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 4.912, + "positive_rate": 0.204, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 9501.0, + "new_cases": 729.0, + "new_cases_smoothed": 586.0, + "total_deaths": 857.0, + "new_deaths": 145.0, + "new_deaths_smoothed": 64.429, + "total_cases_per_million": 73.69, + "new_cases_per_million": 5.654, + "new_cases_smoothed_per_million": 4.545, + "total_deaths_per_million": 6.647, + "new_deaths_per_million": 1.125, + "new_deaths_smoothed_per_million": 0.5, + "new_tests": 3178.0, + "total_tests": 63643.0, + "total_tests_per_thousand": 0.494, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 2694.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 4.5969999999999995, + "positive_rate": 0.218, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-23", + "total_cases": 10544.0, + "new_cases": 1043.0, + "new_cases_smoothed": 671.0, + "total_deaths": 970.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 74.429, + "total_cases_per_million": 81.779, + "new_cases_per_million": 8.089, + "new_cases_smoothed_per_million": 5.204, + "total_deaths_per_million": 7.523, + "new_deaths_per_million": 0.876, + "new_deaths_smoothed_per_million": 0.577, + "new_tests": 3486.0, + "total_tests": 67129.0, + "total_tests_per_thousand": 0.521, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 2810.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 4.188, + "positive_rate": 0.239, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 11633.0, + "new_cases": 1089.0, + "new_cases_smoothed": 762.286, + "total_deaths": 1069.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 83.286, + "total_cases_per_million": 90.225, + "new_cases_per_million": 8.446, + "new_cases_smoothed_per_million": 5.912, + "total_deaths_per_million": 8.291, + "new_deaths_per_million": 0.768, + "new_deaths_smoothed_per_million": 0.646, + "new_tests": 3923.0, + "total_tests": 71052.0, + "total_tests_per_thousand": 0.551, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 2939.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 3.8560000000000003, + "positive_rate": 0.259, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 12872.0, + "new_cases": 1239.0, + "new_cases_smoothed": 856.714, + "total_deaths": 1221.0, + "new_deaths": 152.0, + "new_deaths_smoothed": 96.429, + "total_cases_per_million": 99.835, + "new_cases_per_million": 9.61, + "new_cases_smoothed_per_million": 6.645, + "total_deaths_per_million": 9.47, + "new_deaths_per_million": 1.179, + "new_deaths_smoothed_per_million": 0.748, + "new_tests": 2169.0, + "total_tests": 73221.0, + "total_tests_per_thousand": 0.568, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 3018.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 3.523, + "positive_rate": 0.284, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 13842.0, + "new_cases": 970.0, + "new_cases_smoothed": 906.429, + "total_deaths": 1305.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 93.571, + "total_cases_per_million": 107.358, + "new_cases_per_million": 7.523, + "new_cases_smoothed_per_million": 7.03, + "total_deaths_per_million": 10.122, + "new_deaths_per_million": 0.652, + "new_deaths_smoothed_per_million": 0.726, + "new_tests": 1900.0, + "total_tests": 75121.0, + "total_tests_per_thousand": 0.583, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3079.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 3.397, + "positive_rate": 0.294, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 14677.0, + "new_cases": 835.0, + "new_cases_smoothed": 916.571, + "total_deaths": 1351.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 95.0, + "total_cases_per_million": 113.835, + "new_cases_per_million": 6.476, + "new_cases_smoothed_per_million": 7.109, + "total_deaths_per_million": 10.478, + "new_deaths_per_million": 0.357, + "new_deaths_smoothed_per_million": 0.737, + "new_tests": 4256.0, + "total_tests": 79377.0, + "total_tests_per_thousand": 0.616, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 3175.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 3.464, + "positive_rate": 0.289, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 15529.0, + "new_cases": 852.0, + "new_cases_smoothed": 965.286, + "total_deaths": 1434.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 103.143, + "total_cases_per_million": 120.443, + "new_cases_per_million": 6.608, + "new_cases_smoothed_per_million": 7.487, + "total_deaths_per_million": 11.122, + "new_deaths_per_million": 0.644, + "new_deaths_smoothed_per_million": 0.8, + "new_tests": 4371.0, + "total_tests": 83748.0, + "total_tests_per_thousand": 0.65, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 3326.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 3.446, + "positive_rate": 0.29, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 16752.0, + "new_cases": 1223.0, + "new_cases_smoothed": 1035.857, + "total_deaths": 1569.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 101.714, + "total_cases_per_million": 129.928, + "new_cases_per_million": 9.486, + "new_cases_smoothed_per_million": 8.034, + "total_deaths_per_million": 12.169, + "new_deaths_per_million": 1.047, + "new_deaths_smoothed_per_million": 0.789, + "new_tests": 4669.0, + "total_tests": 88417.0, + "total_tests_per_thousand": 0.686, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 3539.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 3.4160000000000004, + "positive_rate": 0.293, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 17799.0, + "new_cases": 1047.0, + "new_cases_smoothed": 1036.429, + "total_deaths": 1732.0, + "new_deaths": 163.0, + "new_deaths_smoothed": 108.857, + "total_cases_per_million": 138.049, + "new_cases_per_million": 8.121, + "new_cases_smoothed_per_million": 8.039, + "total_deaths_per_million": 13.433, + "new_deaths_per_million": 1.264, + "new_deaths_smoothed_per_million": 0.844, + "new_tests": 5058.0, + "total_tests": 93475.0, + "total_tests_per_thousand": 0.725, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 3764.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 3.6319999999999997, + "positive_rate": 0.275, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 19224.0, + "new_cases": 1425.0, + "new_cases_smoothed": 1084.429, + "total_deaths": 1859.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 112.857, + "total_cases_per_million": 149.101, + "new_cases_per_million": 11.052, + "new_cases_smoothed_per_million": 8.411, + "total_deaths_per_million": 14.418, + "new_deaths_per_million": 0.985, + "new_deaths_smoothed_per_million": 0.875, + "new_tests": 3058.0, + "total_tests": 96533.0, + "total_tests_per_thousand": 0.749, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 3640.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 3.3569999999999998, + "positive_rate": 0.298, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-02", + "total_cases": 20739.0, + "new_cases": 1515.0, + "new_cases_smoothed": 1123.857, + "total_deaths": 1972.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 107.286, + "total_cases_per_million": 160.851, + "new_cases_per_million": 11.75, + "new_cases_smoothed_per_million": 8.717, + "total_deaths_per_million": 15.295, + "new_deaths_per_million": 0.876, + "new_deaths_smoothed_per_million": 0.832, + "new_tests": 2792.0, + "total_tests": 99325.0, + "total_tests_per_thousand": 0.77, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 3729.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 3.318, + "positive_rate": 0.301, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-03", + "total_cases": 22088.0, + "new_cases": 1349.0, + "new_cases_smoothed": 1178.0, + "total_deaths": 2061.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 108.0, + "total_cases_per_million": 171.314, + "new_cases_per_million": 10.463, + "new_cases_smoothed_per_million": 9.137, + "total_deaths_per_million": 15.985, + "new_deaths_per_million": 0.69, + "new_deaths_smoothed_per_million": 0.838, + "new_tests": 2729.0, + "total_tests": 102054.0, + "total_tests_per_thousand": 0.792, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 3848.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 3.267, + "positive_rate": 0.306, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-04", + "total_cases": 23471.0, + "new_cases": 1383.0, + "new_cases_smoothed": 1256.286, + "total_deaths": 2154.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 114.714, + "total_cases_per_million": 182.041, + "new_cases_per_million": 10.727, + "new_cases_smoothed_per_million": 9.744, + "total_deaths_per_million": 16.706, + "new_deaths_per_million": 0.721, + "new_deaths_smoothed_per_million": 0.89, + "new_tests": 5868.0, + "total_tests": 107922.0, + "total_tests_per_thousand": 0.837, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 4078.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 3.2460000000000004, + "positive_rate": 0.308, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 24905.0, + "new_cases": 1434.0, + "new_cases_smoothed": 1339.429, + "total_deaths": 2271.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 119.571, + "total_cases_per_million": 193.163, + "new_cases_per_million": 11.122, + "new_cases_smoothed_per_million": 10.389, + "total_deaths_per_million": 17.614, + "new_deaths_per_million": 0.907, + "new_deaths_smoothed_per_million": 0.927, + "new_tests": 5000.0, + "total_tests": 112922.0, + "total_tests_per_thousand": 0.876, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 4168.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 3.112, + "positive_rate": 0.321, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 26025.0, + "new_cases": 1120.0, + "new_cases_smoothed": 1324.714, + "total_deaths": 2507.0, + "new_deaths": 236.0, + "new_deaths_smoothed": 134.0, + "total_cases_per_million": 201.849, + "new_cases_per_million": 8.687, + "new_cases_smoothed_per_million": 10.274, + "total_deaths_per_million": 19.444, + "new_deaths_per_million": 1.83, + "new_deaths_smoothed_per_million": 1.039, + "new_tests": 5630.0, + "total_tests": 118552.0, + "total_tests_per_thousand": 0.919, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 4305.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 3.25, + "positive_rate": 0.308, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 27634.0, + "new_cases": 1609.0, + "new_cases_smoothed": 1405.0, + "total_deaths": 2704.0, + "new_deaths": 197.0, + "new_deaths_smoothed": 138.857, + "total_cases_per_million": 214.329, + "new_cases_per_million": 12.479, + "new_cases_smoothed_per_million": 10.897, + "total_deaths_per_million": 20.972, + "new_deaths_per_million": 1.528, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 5745.0, + "total_tests": 124297.0, + "total_tests_per_thousand": 0.964, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 4403.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 3.134, + "positive_rate": 0.319, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 29616.0, + "new_cases": 1982.0, + "new_cases_smoothed": 1484.571, + "total_deaths": 2961.0, + "new_deaths": 257.0, + "new_deaths_smoothed": 157.429, + "total_cases_per_million": 229.701, + "new_cases_per_million": 15.372, + "new_cases_smoothed_per_million": 11.514, + "total_deaths_per_million": 22.965, + "new_deaths_per_million": 1.993, + "new_deaths_smoothed_per_million": 1.221, + "new_tests": 6082.0, + "total_tests": 130379.0, + "total_tests_per_thousand": 1.011, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 4835.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 3.2569999999999997, + "positive_rate": 0.307, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 31522.0, + "new_cases": 1906.0, + "new_cases_smoothed": 1540.429, + "total_deaths": 3160.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 169.714, + "total_cases_per_million": 244.484, + "new_cases_per_million": 14.783, + "new_cases_smoothed_per_million": 11.948, + "total_deaths_per_million": 24.509, + "new_deaths_per_million": 1.543, + "new_deaths_smoothed_per_million": 1.316, + "new_tests": 3424.0, + "total_tests": 133803.0, + "total_tests_per_thousand": 1.038, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 4925.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 3.197, + "positive_rate": 0.313, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 33460.0, + "new_cases": 1938.0, + "new_cases_smoothed": 1624.571, + "total_deaths": 3353.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 184.571, + "total_cases_per_million": 259.515, + "new_cases_per_million": 15.031, + "new_cases_smoothed_per_million": 12.6, + "total_deaths_per_million": 26.006, + "new_deaths_per_million": 1.497, + "new_deaths_smoothed_per_million": 1.432, + "new_tests": 2700.0, + "total_tests": 136503.0, + "total_tests_per_thousand": 1.059, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 4921.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 3.029, + "positive_rate": 0.33, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-11", + "total_cases": 35022.0, + "new_cases": 1562.0, + "new_cases_smoothed": 1650.143, + "total_deaths": 3465.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 187.286, + "total_cases_per_million": 271.63, + "new_cases_per_million": 12.115, + "new_cases_smoothed_per_million": 12.798, + "total_deaths_per_million": 26.874, + "new_deaths_per_million": 0.869, + "new_deaths_smoothed_per_million": 1.453, + "new_tests": 6773.0, + "total_tests": 143276.0, + "total_tests_per_thousand": 1.111, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 5051.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 3.0610000000000004, + "positive_rate": 0.327, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 36327.0, + "new_cases": 1305.0, + "new_cases_smoothed": 1631.714, + "total_deaths": 3573.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 186.0, + "total_cases_per_million": 281.752, + "new_cases_per_million": 10.122, + "new_cases_smoothed_per_million": 12.656, + "total_deaths_per_million": 27.712, + "new_deaths_per_million": 0.838, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 6930.0, + "total_tests": 150206.0, + "total_tests_per_thousand": 1.165, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 5326.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 3.264, + "positive_rate": 0.306, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 38324.0, + "new_cases": 1997.0, + "new_cases_smoothed": 1757.0, + "total_deaths": 3926.0, + "new_deaths": 353.0, + "new_deaths_smoothed": 202.714, + "total_cases_per_million": 297.24, + "new_cases_per_million": 15.489, + "new_cases_smoothed_per_million": 13.627, + "total_deaths_per_million": 30.45, + "new_deaths_per_million": 2.738, + "new_deaths_smoothed_per_million": 1.572, + "new_tests": 6887.0, + "total_tests": 157093.0, + "total_tests_per_thousand": 1.218, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 5506.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 3.134, + "positive_rate": 0.319, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 40186.0, + "new_cases": 1862.0, + "new_cases_smoothed": 1793.143, + "total_deaths": 4220.0, + "new_deaths": 294.0, + "new_deaths_smoothed": 216.571, + "total_cases_per_million": 311.682, + "new_cases_per_million": 14.442, + "new_cases_smoothed_per_million": 13.908, + "total_deaths_per_million": 32.73, + "new_deaths_per_million": 2.28, + "new_deaths_smoothed_per_million": 1.68, + "new_tests": 7168.0, + "total_tests": 164261.0, + "total_tests_per_thousand": 1.274, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 5709.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 3.1839999999999997, + "positive_rate": 0.314, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 42595.0, + "new_cases": 2409.0, + "new_cases_smoothed": 1854.143, + "total_deaths": 4477.0, + "new_deaths": 257.0, + "new_deaths_smoothed": 216.571, + "total_cases_per_million": 330.366, + "new_cases_per_million": 18.684, + "new_cases_smoothed_per_million": 14.381, + "total_deaths_per_million": 34.724, + "new_deaths_per_million": 1.993, + "new_deaths_smoothed_per_million": 1.68, + "new_tests": 7669.0, + "total_tests": 171930.0, + "total_tests_per_thousand": 1.333, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 5936.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 3.201, + "positive_rate": 0.312, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-16", + "total_cases": 45032.0, + "new_cases": 2437.0, + "new_cases_smoothed": 1930.0, + "total_deaths": 4767.0, + "new_deaths": 290.0, + "new_deaths_smoothed": 229.571, + "total_cases_per_million": 349.267, + "new_cases_per_million": 18.901, + "new_cases_smoothed_per_million": 14.969, + "total_deaths_per_million": 36.973, + "new_deaths_per_million": 2.249, + "new_deaths_smoothed_per_million": 1.781, + "new_tests": 4156.0, + "total_tests": 176086.0, + "total_tests_per_thousand": 1.366, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 6040.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 3.13, + "positive_rate": 0.32, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-17", + "total_cases": 47144.0, + "new_cases": 2112.0, + "new_cases_smoothed": 1954.857, + "total_deaths": 5045.0, + "new_deaths": 278.0, + "new_deaths_smoothed": 241.714, + "total_cases_per_million": 365.648, + "new_cases_per_million": 16.381, + "new_cases_smoothed_per_million": 15.162, + "total_deaths_per_million": 39.129, + "new_deaths_per_million": 2.156, + "new_deaths_smoothed_per_million": 1.875, + "new_tests": 2847.0, + "total_tests": 178933.0, + "total_tests_per_thousand": 1.388, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 6061.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 3.1, + "positive_rate": 0.32299999999999995, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-18", + "total_cases": 49219.0, + "new_cases": 2075.0, + "new_cases_smoothed": 2028.143, + "total_deaths": 5177.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 244.571, + "total_cases_per_million": 381.742, + "new_cases_per_million": 16.094, + "new_cases_smoothed_per_million": 15.73, + "total_deaths_per_million": 40.153, + "new_deaths_per_million": 1.024, + "new_deaths_smoothed_per_million": 1.897, + "new_tests": 8420.0, + "total_tests": 187353.0, + "total_tests_per_thousand": 1.453, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 6297.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 3.105, + "positive_rate": 0.322, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-19", + "total_cases": 51633.0, + "new_cases": 2414.0, + "new_cases_smoothed": 2186.571, + "total_deaths": 5332.0, + "new_deaths": 155.0, + "new_deaths_smoothed": 251.286, + "total_cases_per_million": 400.465, + "new_cases_per_million": 18.723, + "new_cases_smoothed_per_million": 16.959, + "total_deaths_per_million": 41.355, + "new_deaths_per_million": 1.202, + "new_deaths_smoothed_per_million": 1.949, + "new_tests": 7637.0, + "total_tests": 194990.0, + "total_tests_per_thousand": 1.512, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 6398.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 2.926, + "positive_rate": 0.342, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-20", + "total_cases": 54346.0, + "new_cases": 2713.0, + "new_cases_smoothed": 2288.857, + "total_deaths": 5666.0, + "new_deaths": 334.0, + "new_deaths_smoothed": 248.571, + "total_cases_per_million": 421.507, + "new_cases_per_million": 21.042, + "new_cases_smoothed_per_million": 17.752, + "total_deaths_per_million": 43.945, + "new_deaths_per_million": 2.59, + "new_deaths_smoothed_per_million": 1.928, + "new_tests": 8227.0, + "total_tests": 203217.0, + "total_tests_per_thousand": 1.576, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 6589.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 2.8789999999999996, + "positive_rate": 0.34700000000000003, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-21", + "total_cases": 56594.0, + "new_cases": 2248.0, + "new_cases_smoothed": 2344.0, + "total_deaths": 6090.0, + "new_deaths": 424.0, + "new_deaths_smoothed": 267.143, + "total_cases_per_million": 438.942, + "new_cases_per_million": 17.435, + "new_cases_smoothed_per_million": 18.18, + "total_deaths_per_million": 47.234, + "new_deaths_per_million": 3.289, + "new_deaths_smoothed_per_million": 2.072, + "new_tests": 8183.0, + "total_tests": 211400.0, + "total_tests_per_thousand": 1.64, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 6734.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 2.873, + "positive_rate": 0.348, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 59567.0, + "new_cases": 2973.0, + "new_cases_smoothed": 2424.571, + "total_deaths": 6510.0, + "new_deaths": 420.0, + "new_deaths_smoothed": 290.429, + "total_cases_per_million": 462.001, + "new_cases_per_million": 23.059, + "new_cases_smoothed_per_million": 18.805, + "total_deaths_per_million": 50.491, + "new_deaths_per_million": 3.258, + "new_deaths_smoothed_per_million": 2.253, + "new_tests": 8488.0, + "total_tests": 219888.0, + "total_tests_per_thousand": 1.705, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 6851.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 2.826, + "positive_rate": 0.354, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-23", + "total_cases": 62527.0, + "new_cases": 2960.0, + "new_cases_smoothed": 2499.286, + "total_deaths": 6989.0, + "new_deaths": 479.0, + "new_deaths_smoothed": 317.429, + "total_cases_per_million": 484.958, + "new_cases_per_million": 22.958, + "new_cases_smoothed_per_million": 19.384, + "total_deaths_per_million": 54.207, + "new_deaths_per_million": 3.715, + "new_deaths_smoothed_per_million": 2.462, + "new_tests": 4364.0, + "total_tests": 224252.0, + "total_tests_per_thousand": 1.739, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 6881.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 2.753, + "positive_rate": 0.363, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-24", + "total_cases": 65856.0, + "new_cases": 3329.0, + "new_cases_smoothed": 2673.143, + "total_deaths": 7179.0, + "new_deaths": 190.0, + "new_deaths_smoothed": 304.857, + "total_cases_per_million": 510.778, + "new_cases_per_million": 25.82, + "new_cases_smoothed_per_million": 20.733, + "total_deaths_per_million": 55.68, + "new_deaths_per_million": 1.474, + "new_deaths_smoothed_per_million": 2.364, + "new_tests": 3522.0, + "total_tests": 227774.0, + "total_tests_per_thousand": 1.767, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 6977.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 2.61, + "positive_rate": 0.38299999999999995, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-25", + "total_cases": 68620.0, + "new_cases": 2764.0, + "new_cases_smoothed": 2771.571, + "total_deaths": 7394.0, + "new_deaths": 215.0, + "new_deaths_smoothed": 316.714, + "total_cases_per_million": 532.215, + "new_cases_per_million": 21.438, + "new_cases_smoothed_per_million": 21.496, + "total_deaths_per_million": 57.348, + "new_deaths_per_million": 1.668, + "new_deaths_smoothed_per_million": 2.456, + "new_tests": 9381.0, + "total_tests": 237155.0, + "total_tests_per_thousand": 1.839, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 7115.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 2.5669999999999997, + "positive_rate": 0.39, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-26", + "total_cases": 71105.0, + "new_cases": 2485.0, + "new_cases_smoothed": 2781.714, + "total_deaths": 7633.0, + "new_deaths": 239.0, + "new_deaths_smoothed": 328.714, + "total_cases_per_million": 551.489, + "new_cases_per_million": 19.274, + "new_cases_smoothed_per_million": 21.575, + "total_deaths_per_million": 59.201, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 2.55, + "new_tests": 9060.0, + "total_tests": 246215.0, + "total_tests_per_thousand": 1.91, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 7318.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 2.6310000000000002, + "positive_rate": 0.38, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-27", + "total_cases": 74560.0, + "new_cases": 3455.0, + "new_cases_smoothed": 2887.714, + "total_deaths": 8134.0, + "new_deaths": 501.0, + "new_deaths_smoothed": 352.571, + "total_cases_per_million": 578.286, + "new_cases_per_million": 26.797, + "new_cases_smoothed_per_million": 22.397, + "total_deaths_per_million": 63.087, + "new_deaths_per_million": 3.886, + "new_deaths_smoothed_per_million": 2.735, + "new_tests": 9353.0, + "total_tests": 255568.0, + "total_tests_per_thousand": 1.982, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 7479.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 2.59, + "positive_rate": 0.386, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-28", + "total_cases": 78023.0, + "new_cases": 3463.0, + "new_cases_smoothed": 3061.286, + "total_deaths": 8597.0, + "new_deaths": 463.0, + "new_deaths_smoothed": 358.143, + "total_cases_per_million": 605.145, + "new_cases_per_million": 26.859, + "new_cases_smoothed_per_million": 23.743, + "total_deaths_per_million": 66.678, + "new_deaths_per_million": 3.591, + "new_deaths_smoothed_per_million": 2.778, + "new_tests": 8875.0, + "total_tests": 264443.0, + "total_tests_per_thousand": 2.051, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 7578.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 2.475, + "positive_rate": 0.40399999999999997, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-29", + "total_cases": 81400.0, + "new_cases": 3377.0, + "new_cases_smoothed": 3119.0, + "total_deaths": 9044.0, + "new_deaths": 447.0, + "new_deaths_smoothed": 362.0, + "total_cases_per_million": 631.337, + "new_cases_per_million": 26.192, + "new_cases_smoothed_per_million": 24.191, + "total_deaths_per_million": 70.145, + "new_deaths_per_million": 3.467, + "new_deaths_smoothed_per_million": 2.808, + "new_tests": 9166.0, + "total_tests": 273609.0, + "total_tests_per_thousand": 2.122, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 7674.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 2.46, + "positive_rate": 0.406, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-30", + "total_cases": 84627.0, + "new_cases": 3227.0, + "new_cases_smoothed": 3157.143, + "total_deaths": 9415.0, + "new_deaths": 371.0, + "new_deaths_smoothed": 346.571, + "total_cases_per_million": 656.365, + "new_cases_per_million": 25.029, + "new_cases_smoothed_per_million": 24.487, + "total_deaths_per_million": 73.023, + "new_deaths_per_million": 2.877, + "new_deaths_smoothed_per_million": 2.688, + "new_tests": 5166.0, + "total_tests": 278775.0, + "total_tests_per_thousand": 2.162, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 7789.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 2.467, + "positive_rate": 0.405, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-31", + "total_cases": 87512.0, + "new_cases": 2885.0, + "new_cases_smoothed": 3093.714, + "total_deaths": 9779.0, + "new_deaths": 364.0, + "new_deaths_smoothed": 371.429, + "total_cases_per_million": 678.741, + "new_cases_per_million": 22.376, + "new_cases_smoothed_per_million": 23.995, + "total_deaths_per_million": 75.846, + "new_deaths_per_million": 2.823, + "new_deaths_smoothed_per_million": 2.881, + "new_tests": 3761.0, + "total_tests": 282536.0, + "total_tests_per_thousand": 2.191, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 7823.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 2.529, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-06-01", + "total_cases": 90664.0, + "new_cases": 3152.0, + "new_cases_smoothed": 3149.143, + "total_deaths": 9930.0, + "new_deaths": 151.0, + "new_deaths_smoothed": 362.286, + "total_cases_per_million": 703.188, + "new_cases_per_million": 24.447, + "new_cases_smoothed_per_million": 24.425, + "total_deaths_per_million": 77.017, + "new_deaths_per_million": 1.171, + "new_deaths_smoothed_per_million": 2.81, + "new_tests": 10406.0, + "total_tests": 292942.0, + "total_tests_per_thousand": 2.272, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 7970.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 2.531, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-02", + "total_cases": 93435.0, + "new_cases": 2771.0, + "new_cases_smoothed": 3190.0, + "total_deaths": 10167.0, + "new_deaths": 237.0, + "new_deaths_smoothed": 362.0, + "total_cases_per_million": 724.68, + "new_cases_per_million": 21.492, + "new_cases_smoothed_per_million": 24.742, + "total_deaths_per_million": 78.855, + "new_deaths_per_million": 1.838, + "new_deaths_smoothed_per_million": 2.808, + "new_tests": 9755.0, + "total_tests": 302697.0, + "total_tests_per_thousand": 2.348, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 8069.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 2.529, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-03", + "total_cases": 97326.0, + "new_cases": 3891.0, + "new_cases_smoothed": 3252.286, + "total_deaths": 10637.0, + "new_deaths": 470.0, + "new_deaths_smoothed": 357.571, + "total_cases_per_million": 754.859, + "new_cases_per_million": 30.179, + "new_cases_smoothed_per_million": 25.225, + "total_deaths_per_million": 82.5, + "new_deaths_per_million": 3.645, + "new_deaths_smoothed_per_million": 2.773, + "new_tests": 10278.0, + "total_tests": 312975.0, + "total_tests_per_thousand": 2.427, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 8201.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 2.522, + "positive_rate": 0.397, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-04", + "total_cases": 101238.0, + "new_cases": 3912.0, + "new_cases_smoothed": 3316.429, + "total_deaths": 11728.0, + "new_deaths": 1091.0, + "new_deaths_smoothed": 447.286, + "total_cases_per_million": 785.2, + "new_cases_per_million": 30.341, + "new_cases_smoothed_per_million": 25.722, + "total_deaths_per_million": 90.962, + "new_deaths_per_million": 8.462, + "new_deaths_smoothed_per_million": 3.469, + "new_tests": 10106.0, + "total_tests": 323081.0, + "total_tests_per_thousand": 2.506, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 8377.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 2.526, + "positive_rate": 0.396, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-05", + "total_cases": 105680.0, + "new_cases": 4442.0, + "new_cases_smoothed": 3468.571, + "total_deaths": 12545.0, + "new_deaths": 817.0, + "new_deaths_smoothed": 500.143, + "total_cases_per_million": 819.652, + "new_cases_per_million": 34.452, + "new_cases_smoothed_per_million": 26.902, + "total_deaths_per_million": 97.299, + "new_deaths_per_million": 6.337, + "new_deaths_smoothed_per_million": 3.879, + "new_tests": 10562.0, + "total_tests": 333643.0, + "total_tests_per_thousand": 2.588, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 8576.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 2.472, + "positive_rate": 0.40399999999999997, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-06", + "total_cases": 110026.0, + "new_cases": 4346.0, + "new_cases_smoothed": 3628.429, + "total_deaths": 13170.0, + "new_deaths": 625.0, + "new_deaths_smoothed": 536.429, + "total_cases_per_million": 853.36, + "new_cases_per_million": 33.707, + "new_cases_smoothed_per_million": 28.142, + "total_deaths_per_million": 102.146, + "new_deaths_per_million": 4.847, + "new_deaths_smoothed_per_million": 4.161, + "new_tests": 5495.0, + "total_tests": 339138.0, + "total_tests_per_thousand": 2.63, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 8623.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 2.377, + "positive_rate": 0.42100000000000004, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-07", + "total_cases": 113619.0, + "new_cases": 3593.0, + "new_cases_smoothed": 3729.571, + "total_deaths": 13511.0, + "new_deaths": 341.0, + "new_deaths_smoothed": 533.143, + "total_cases_per_million": 881.227, + "new_cases_per_million": 27.867, + "new_cases_smoothed_per_million": 28.926, + "total_deaths_per_million": 104.791, + "new_deaths_per_million": 2.645, + "new_deaths_smoothed_per_million": 4.135, + "new_tests": 4076.0, + "total_tests": 343214.0, + "total_tests_per_thousand": 2.662, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 8668.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 2.324, + "positive_rate": 0.43, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-08", + "total_cases": 117103.0, + "new_cases": 3484.0, + "new_cases_smoothed": 3777.0, + "total_deaths": 13699.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 538.429, + "total_cases_per_million": 908.249, + "new_cases_per_million": 27.022, + "new_cases_smoothed_per_million": 29.294, + "total_deaths_per_million": 106.249, + "new_deaths_per_million": 1.458, + "new_deaths_smoothed_per_million": 4.176, + "new_tests": 11673.0, + "total_tests": 354887.0, + "total_tests_per_thousand": 2.752, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 8849.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 2.343, + "positive_rate": 0.42700000000000005, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-09", + "total_cases": 120102.0, + "new_cases": 2999.0, + "new_cases_smoothed": 3809.571, + "total_deaths": 14053.0, + "new_deaths": 354.0, + "new_deaths_smoothed": 555.143, + "total_cases_per_million": 931.509, + "new_cases_per_million": 23.26, + "new_cases_smoothed_per_million": 29.547, + "total_deaths_per_million": 108.995, + "new_deaths_per_million": 2.746, + "new_deaths_smoothed_per_million": 4.306, + "new_tests": 11664.0, + "total_tests": 366551.0, + "total_tests_per_thousand": 2.843, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 9122.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 2.394, + "positive_rate": 0.418, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-10", + "total_cases": 124301.0, + "new_cases": 4199.0, + "new_cases_smoothed": 3853.571, + "total_deaths": 14649.0, + "new_deaths": 596.0, + "new_deaths_smoothed": 573.143, + "total_cases_per_million": 964.076, + "new_cases_per_million": 32.567, + "new_cases_smoothed_per_million": 29.888, + "total_deaths_per_million": 113.617, + "new_deaths_per_million": 4.623, + "new_deaths_smoothed_per_million": 4.445, + "new_tests": 11649.0, + "total_tests": 378200.0, + "total_tests_per_thousand": 2.933, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 9318.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 2.418, + "positive_rate": 0.414, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-11", + "total_cases": 129184.0, + "new_cases": 4883.0, + "new_cases_smoothed": 3992.286, + "total_deaths": 15357.0, + "new_deaths": 708.0, + "new_deaths_smoothed": 518.429, + "total_cases_per_million": 1001.949, + "new_cases_per_million": 37.872, + "new_cases_smoothed_per_million": 30.964, + "total_deaths_per_million": 119.109, + "new_deaths_per_million": 5.491, + "new_deaths_smoothed_per_million": 4.021, + "new_tests": 11313.0, + "total_tests": 389513.0, + "total_tests_per_thousand": 3.021, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 9490.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 2.377, + "positive_rate": 0.42100000000000004, + "tests_units": "people tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-12", + "total_cases": 133974.0, + "new_cases": 4790.0, + "new_cases_smoothed": 4042.0, + "total_deaths": 15944.0, + "new_deaths": 587.0, + "new_deaths_smoothed": 485.571, + "total_cases_per_million": 1039.1, + "new_cases_per_million": 37.151, + "new_cases_smoothed_per_million": 31.35, + "total_deaths_per_million": 123.661, + "new_deaths_per_million": 4.553, + "new_deaths_smoothed_per_million": 3.766, + "new_tests": 11770.0, + "total_tests": 401283.0, + "total_tests_per_thousand": 3.112, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 9663.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 2.391, + "positive_rate": 0.418, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-13", + "total_cases": 139196.0, + "new_cases": 5222.0, + "new_cases_smoothed": 4167.143, + "total_deaths": 16448.0, + "new_deaths": 504.0, + "new_deaths_smoothed": 468.286, + "total_cases_per_million": 1079.602, + "new_cases_per_million": 40.502, + "new_cases_smoothed_per_million": 32.32, + "total_deaths_per_million": 127.57, + "new_deaths_per_million": 3.909, + "new_deaths_smoothed_per_million": 3.632, + "new_tests": 5535.0, + "total_tests": 406818.0, + "total_tests_per_thousand": 3.155, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 9669.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 2.32, + "positive_rate": 0.431, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-14", + "total_cases": 142690.0, + "new_cases": 3494.0, + "new_cases_smoothed": 4153.0, + "total_deaths": 16872.0, + "new_deaths": 424.0, + "new_deaths_smoothed": 480.143, + "total_cases_per_million": 1106.701, + "new_cases_per_million": 27.099, + "new_cases_smoothed_per_million": 32.211, + "total_deaths_per_million": 130.859, + "new_deaths_per_million": 3.289, + "new_deaths_smoothed_per_million": 3.724, + "new_tests": 4469.0, + "total_tests": 411287.0, + "total_tests_per_thousand": 3.19, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 9725.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 2.342, + "positive_rate": 0.42700000000000005, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-15", + "total_cases": 146837.0, + "new_cases": 4147.0, + "new_cases_smoothed": 4247.714, + "total_deaths": 17141.0, + "new_deaths": 269.0, + "new_deaths_smoothed": 491.714, + "total_cases_per_million": 1138.865, + "new_cases_per_million": 32.164, + "new_cases_smoothed_per_million": 32.945, + "total_deaths_per_million": 132.945, + "new_deaths_per_million": 2.086, + "new_deaths_smoothed_per_million": 3.814, + "new_tests": 13131.0, + "total_tests": 424418.0, + "total_tests_per_thousand": 3.292, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 9933.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 2.338, + "positive_rate": 0.428, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-16", + "total_cases": 150264.0, + "new_cases": 3427.0, + "new_cases_smoothed": 4308.857, + "total_deaths": 17580.0, + "new_deaths": 439.0, + "new_deaths_smoothed": 503.857, + "total_cases_per_million": 1165.445, + "new_cases_per_million": 26.58, + "new_cases_smoothed_per_million": 33.419, + "total_deaths_per_million": 136.35, + "new_deaths_per_million": 3.405, + "new_deaths_smoothed_per_million": 3.908, + "new_tests": 12616.0, + "total_tests": 437034.0, + "total_tests_per_thousand": 3.39, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 10069.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 2.3369999999999997, + "positive_rate": 0.428, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-17", + "total_cases": 154863.0, + "new_cases": 4599.0, + "new_cases_smoothed": 4366.0, + "total_deaths": 18310.0, + "new_deaths": 730.0, + "new_deaths_smoothed": 523.0, + "total_cases_per_million": 1201.115, + "new_cases_per_million": 35.67, + "new_cases_smoothed_per_million": 33.863, + "total_deaths_per_million": 142.012, + "new_deaths_per_million": 5.662, + "new_deaths_smoothed_per_million": 4.056, + "new_tests": 12061.0, + "total_tests": 449095.0, + "total_tests_per_thousand": 3.483, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 10128.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.32, + "positive_rate": 0.431, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-18", + "total_cases": 159793.0, + "new_cases": 4930.0, + "new_cases_smoothed": 4372.714, + "total_deaths": 19080.0, + "new_deaths": 770.0, + "new_deaths_smoothed": 531.857, + "total_cases_per_million": 1239.351, + "new_cases_per_million": 38.237, + "new_cases_smoothed_per_million": 33.915, + "total_deaths_per_million": 147.984, + "new_deaths_per_million": 5.972, + "new_deaths_smoothed_per_million": 4.125, + "new_tests": 11776.0, + "total_tests": 460871.0, + "total_tests_per_thousand": 3.575, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 10194.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.331, + "positive_rate": 0.429, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-19", + "total_cases": 165455.0, + "new_cases": 5662.0, + "new_cases_smoothed": 4497.286, + "total_deaths": 19747.0, + "new_deaths": 667.0, + "new_deaths_smoothed": 543.286, + "total_cases_per_million": 1283.266, + "new_cases_per_million": 43.914, + "new_cases_smoothed_per_million": 34.881, + "total_deaths_per_million": 153.157, + "new_deaths_per_million": 5.173, + "new_deaths_smoothed_per_million": 4.214, + "new_tests": 11818.0, + "total_tests": 472689.0, + "total_tests_per_thousand": 3.666, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 10201.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.2680000000000002, + "positive_rate": 0.441, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-20", + "total_cases": 170485.0, + "new_cases": 5030.0, + "new_cases_smoothed": 4469.857, + "total_deaths": 20394.0, + "new_deaths": 647.0, + "new_deaths_smoothed": 563.714, + "total_cases_per_million": 1322.278, + "new_cases_per_million": 39.013, + "new_cases_smoothed_per_million": 34.668, + "total_deaths_per_million": 158.175, + "new_deaths_per_million": 5.018, + "new_deaths_smoothed_per_million": 4.372, + "new_tests": 6177.0, + "total_tests": 478866.0, + "total_tests_per_thousand": 3.714, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 10293.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 2.303, + "positive_rate": 0.434, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-21", + "total_cases": 175202.0, + "new_cases": 4717.0, + "new_cases_smoothed": 4644.571, + "total_deaths": 20781.0, + "new_deaths": 387.0, + "new_deaths_smoothed": 558.429, + "total_cases_per_million": 1358.863, + "new_cases_per_million": 36.585, + "new_cases_smoothed_per_million": 36.023, + "total_deaths_per_million": 161.177, + "new_deaths_per_million": 3.002, + "new_deaths_smoothed_per_million": 4.331, + "new_tests": 3966.0, + "total_tests": 482832.0, + "total_tests_per_thousand": 3.745, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 10221.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.201, + "positive_rate": 0.45399999999999996, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-22", + "total_cases": 180545.0, + "new_cases": 5343.0, + "new_cases_smoothed": 4815.429, + "total_deaths": 21825.0, + "new_deaths": 1044.0, + "new_deaths_smoothed": 669.143, + "total_cases_per_million": 1400.304, + "new_cases_per_million": 41.44, + "new_cases_smoothed_per_million": 37.348, + "total_deaths_per_million": 169.274, + "new_deaths_per_million": 8.097, + "new_deaths_smoothed_per_million": 5.19, + "new_tests": 12380.0, + "total_tests": 495212.0, + "total_tests_per_thousand": 3.841, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 10113.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 2.1, + "positive_rate": 0.47600000000000003, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-23", + "total_cases": 185122.0, + "new_cases": 4577.0, + "new_cases_smoothed": 4979.714, + "total_deaths": 22584.0, + "new_deaths": 759.0, + "new_deaths_smoothed": 714.857, + "total_cases_per_million": 1435.803, + "new_cases_per_million": 35.499, + "new_cases_smoothed_per_million": 38.623, + "total_deaths_per_million": 175.161, + "new_deaths_per_million": 5.887, + "new_deaths_smoothed_per_million": 5.544, + "new_tests": 12824.0, + "total_tests": 508036.0, + "total_tests_per_thousand": 3.94, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 10143.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 2.037, + "positive_rate": 0.491, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-24", + "total_cases": 191410.0, + "new_cases": 6288.0, + "new_cases_smoothed": 5221.0, + "total_deaths": 23377.0, + "new_deaths": 793.0, + "new_deaths_smoothed": 723.857, + "total_cases_per_million": 1484.572, + "new_cases_per_million": 48.77, + "new_cases_smoothed_per_million": 40.494, + "total_deaths_per_million": 181.312, + "new_deaths_per_million": 6.15, + "new_deaths_smoothed_per_million": 5.614, + "new_tests": 12188.0, + "total_tests": 520224.0, + "total_tests_per_thousand": 4.035, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 10161.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 1.946, + "positive_rate": 0.514, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-25", + "total_cases": 196847.0, + "new_cases": 5437.0, + "new_cases_smoothed": 5293.429, + "total_deaths": 24342.0, + "new_deaths": 965.0, + "new_deaths_smoothed": 751.714, + "total_cases_per_million": 1526.742, + "new_cases_per_million": 42.169, + "new_cases_smoothed_per_million": 41.056, + "total_deaths_per_million": 188.796, + "new_deaths_per_million": 7.485, + "new_deaths_smoothed_per_million": 5.83, + "new_tests": 12496.0, + "total_tests": 532720.0, + "total_tests_per_thousand": 4.132, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 10264.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 1.939, + "positive_rate": 0.516, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-26", + "total_cases": 202951.0, + "new_cases": 6104.0, + "new_cases_smoothed": 5356.571, + "total_deaths": 25060.0, + "new_deaths": 718.0, + "new_deaths_smoothed": 759.0, + "total_cases_per_million": 1574.084, + "new_cases_per_million": 47.343, + "new_cases_smoothed_per_million": 41.545, + "total_deaths_per_million": 194.365, + "new_deaths_per_million": 5.569, + "new_deaths_smoothed_per_million": 5.887, + "new_tests": 12928.0, + "total_tests": 545648.0, + "total_tests_per_thousand": 4.232, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 10423.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 1.946, + "positive_rate": 0.514, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-27", + "total_cases": 208392.0, + "new_cases": 5441.0, + "new_cases_smoothed": 5415.286, + "total_deaths": 25779.0, + "new_deaths": 719.0, + "new_deaths_smoothed": 769.286, + "total_cases_per_million": 1616.284, + "new_cases_per_million": 42.2, + "new_cases_smoothed_per_million": 42.001, + "total_deaths_per_million": 199.941, + "new_deaths_per_million": 5.577, + "new_deaths_smoothed_per_million": 5.967, + "new_tests": 6587.0, + "total_tests": 552235.0, + "total_tests_per_thousand": 4.283, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 10481.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 1.935, + "positive_rate": 0.517, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-28", + "total_cases": 212802.0, + "new_cases": 4410.0, + "new_cases_smoothed": 5371.429, + "total_deaths": 26381.0, + "new_deaths": 602.0, + "new_deaths_smoothed": 800.0, + "total_cases_per_million": 1650.488, + "new_cases_per_million": 34.204, + "new_cases_smoothed_per_million": 41.661, + "total_deaths_per_million": 204.611, + "new_deaths_per_million": 4.669, + "new_deaths_smoothed_per_million": 6.205, + "new_tests": 4883.0, + "total_tests": 557118.0, + "total_tests_per_thousand": 4.321, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 10612.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 1.976, + "positive_rate": 0.506, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-29", + "total_cases": 216852.0, + "new_cases": 4050.0, + "new_cases_smoothed": 5186.714, + "total_deaths": 26648.0, + "new_deaths": 267.0, + "new_deaths_smoothed": 689.0, + "total_cases_per_million": 1681.9, + "new_cases_per_million": 31.412, + "new_cases_smoothed_per_million": 40.228, + "total_deaths_per_million": 206.681, + "new_deaths_per_million": 2.071, + "new_deaths_smoothed_per_million": 5.344, + "new_tests": 14487.0, + "total_tests": 571605.0, + "total_tests_per_thousand": 4.433, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 10913.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 2.104, + "positive_rate": 0.475, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-06-30", + "total_cases": 220657.0, + "new_cases": 3805.0, + "new_cases_smoothed": 5076.429, + "total_deaths": 27121.0, + "new_deaths": 473.0, + "new_deaths_smoothed": 648.143, + "total_cases_per_million": 1711.412, + "new_cases_per_million": 29.512, + "new_cases_smoothed_per_million": 39.373, + "total_deaths_per_million": 210.35, + "new_deaths_per_million": 3.669, + "new_deaths_smoothed_per_million": 5.027, + "new_tests": 13940.0, + "total_tests": 585545.0, + "total_tests_per_thousand": 4.541, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 11073.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 2.181, + "positive_rate": 0.45799999999999996, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-01", + "total_cases": 226089.0, + "new_cases": 5432.0, + "new_cases_smoothed": 4954.143, + "total_deaths": 27769.0, + "new_deaths": 648.0, + "new_deaths_smoothed": 627.429, + "total_cases_per_million": 1753.542, + "new_cases_per_million": 42.13, + "new_cases_smoothed_per_million": 38.424, + "total_deaths_per_million": 215.376, + "new_deaths_per_million": 5.026, + "new_deaths_smoothed_per_million": 4.866, + "new_tests": 14565.0, + "total_tests": 600110.0, + "total_tests_per_thousand": 4.654, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 11412.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 2.3040000000000003, + "positive_rate": 0.434, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-02", + "total_cases": 231770.0, + "new_cases": 5681.0, + "new_cases_smoothed": 4989.0, + "total_deaths": 28510.0, + "new_deaths": 741.0, + "new_deaths_smoothed": 595.429, + "total_cases_per_million": 1797.604, + "new_cases_per_million": 44.062, + "new_cases_smoothed_per_million": 38.695, + "total_deaths_per_million": 221.123, + "new_deaths_per_million": 5.747, + "new_deaths_smoothed_per_million": 4.618, + "new_tests": 13389.0, + "total_tests": 613499.0, + "total_tests_per_thousand": 4.758, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 11540.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 2.313, + "positive_rate": 0.43200000000000005, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-03", + "total_cases": 238511.0, + "new_cases": 6741.0, + "new_cases_smoothed": 5080.0, + "total_deaths": 29189.0, + "new_deaths": 679.0, + "new_deaths_smoothed": 589.857, + "total_cases_per_million": 1849.887, + "new_cases_per_million": 52.283, + "new_cases_smoothed_per_million": 39.4, + "total_deaths_per_million": 226.389, + "new_deaths_per_million": 5.266, + "new_deaths_smoothed_per_million": 4.575, + "new_tests": 13767.0, + "total_tests": 627266.0, + "total_tests_per_thousand": 4.865, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 11660.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 2.295, + "positive_rate": 0.436, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-04", + "total_cases": 245251.0, + "new_cases": 6740.0, + "new_cases_smoothed": 5265.571, + "total_deaths": 29843.0, + "new_deaths": 654.0, + "new_deaths_smoothed": 580.571, + "total_cases_per_million": 1902.162, + "new_cases_per_million": 52.275, + "new_cases_smoothed_per_million": 40.84, + "total_deaths_per_million": 231.462, + "new_deaths_per_million": 5.072, + "new_deaths_smoothed_per_million": 4.503, + "new_tests": 6266.0, + "total_tests": 633532.0, + "total_tests_per_thousand": 4.914, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 11614.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 2.206, + "positive_rate": 0.45299999999999996, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-05", + "total_cases": 252165.0, + "new_cases": 6914.0, + "new_cases_smoothed": 5623.286, + "total_deaths": 30366.0, + "new_deaths": 523.0, + "new_deaths_smoothed": 569.286, + "total_cases_per_million": 1955.787, + "new_cases_per_million": 53.625, + "new_cases_smoothed_per_million": 43.614, + "total_deaths_per_million": 235.518, + "new_deaths_per_million": 4.056, + "new_deaths_smoothed_per_million": 4.415, + "new_tests": 4949.0, + "total_tests": 638481.0, + "total_tests_per_thousand": 4.952, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 11623.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 2.0669999999999997, + "positive_rate": 0.484, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-06", + "total_cases": 256848.0, + "new_cases": 4683.0, + "new_cases_smoothed": 5713.714, + "total_deaths": 30639.0, + "new_deaths": 273.0, + "new_deaths_smoothed": 570.143, + "total_cases_per_million": 1992.108, + "new_cases_per_million": 36.321, + "new_cases_smoothed_per_million": 44.315, + "total_deaths_per_million": 237.636, + "new_deaths_per_million": 2.117, + "new_deaths_smoothed_per_million": 4.422, + "new_tests": 15014.0, + "total_tests": 653495.0, + "total_tests_per_thousand": 5.068, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 11699.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 2.048, + "positive_rate": 0.488, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-07", + "total_cases": 261750.0, + "new_cases": 4902.0, + "new_cases_smoothed": 5870.429, + "total_deaths": 31119.0, + "new_deaths": 480.0, + "new_deaths_smoothed": 571.143, + "total_cases_per_million": 2030.128, + "new_cases_per_million": 38.02, + "new_cases_smoothed_per_million": 45.531, + "total_deaths_per_million": 241.358, + "new_deaths_per_million": 3.723, + "new_deaths_smoothed_per_million": 4.43, + "new_tests": 14977.0, + "total_tests": 668472.0, + "total_tests_per_thousand": 5.185, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 11847.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 2.0180000000000002, + "positive_rate": 0.496, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-08", + "total_cases": 268008.0, + "new_cases": 6258.0, + "new_cases_smoothed": 5988.429, + "total_deaths": 32014.0, + "new_deaths": 895.0, + "new_deaths_smoothed": 606.429, + "total_cases_per_million": 2078.665, + "new_cases_per_million": 48.537, + "new_cases_smoothed_per_million": 46.446, + "total_deaths_per_million": 248.3, + "new_deaths_per_million": 6.942, + "new_deaths_smoothed_per_million": 4.703, + "new_tests": 14255.0, + "total_tests": 682727.0, + "total_tests_per_thousand": 5.295, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 11802.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.9709999999999999, + "positive_rate": 0.507, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-09", + "total_cases": 275003.0, + "new_cases": 6995.0, + "new_cases_smoothed": 6176.143, + "total_deaths": 32796.0, + "new_deaths": 782.0, + "new_deaths_smoothed": 612.286, + "total_cases_per_million": 2132.918, + "new_cases_per_million": 54.253, + "new_cases_smoothed_per_million": 47.902, + "total_deaths_per_million": 254.365, + "new_deaths_per_million": 6.065, + "new_deaths_smoothed_per_million": 4.749, + "new_tests": 13654.0, + "total_tests": 696381.0, + "total_tests_per_thousand": 5.401, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 11840.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.9169999999999998, + "positive_rate": 0.522, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-10", + "total_cases": 282283.0, + "new_cases": 7280.0, + "new_cases_smoothed": 6253.143, + "total_deaths": 33526.0, + "new_deaths": 730.0, + "new_deaths_smoothed": 619.571, + "total_cases_per_million": 2189.382, + "new_cases_per_million": 56.464, + "new_cases_smoothed_per_million": 48.499, + "total_deaths_per_million": 260.027, + "new_deaths_per_million": 5.662, + "new_deaths_smoothed_per_million": 4.805, + "new_tests": 13559.0, + "total_tests": 709940.0, + "total_tests_per_thousand": 5.506, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 11811.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.889, + "positive_rate": 0.529, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-11", + "total_cases": 289174.0, + "new_cases": 6891.0, + "new_cases_smoothed": 6274.714, + "total_deaths": 34191.0, + "new_deaths": 665.0, + "new_deaths_smoothed": 621.143, + "total_cases_per_million": 2242.828, + "new_cases_per_million": 53.446, + "new_cases_smoothed_per_million": 48.667, + "total_deaths_per_million": 265.185, + "new_deaths_per_million": 5.158, + "new_deaths_smoothed_per_million": 4.818, + "new_tests": 6543.0, + "total_tests": 716483.0, + "total_tests_per_thousand": 5.557, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 11850.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.889, + "positive_rate": 0.53, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-12", + "total_cases": 295268.0, + "new_cases": 6094.0, + "new_cases_smoothed": 6157.571, + "total_deaths": 34730.0, + "new_deaths": 539.0, + "new_deaths_smoothed": 623.429, + "total_cases_per_million": 2290.093, + "new_cases_per_million": 47.265, + "new_cases_smoothed_per_million": 47.758, + "total_deaths_per_million": 269.365, + "new_deaths_per_million": 4.18, + "new_deaths_smoothed_per_million": 4.835, + "new_tests": 5037.0, + "total_tests": 721520.0, + "total_tests_per_thousand": 5.596, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 11863.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.9269999999999998, + "positive_rate": 0.519, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-13", + "total_cases": 299750.0, + "new_cases": 4482.0, + "new_cases_smoothed": 6128.857, + "total_deaths": 35006.0, + "new_deaths": 276.0, + "new_deaths_smoothed": 623.857, + "total_cases_per_million": 2324.855, + "new_cases_per_million": 34.762, + "new_cases_smoothed_per_million": 47.535, + "total_deaths_per_million": 271.506, + "new_deaths_per_million": 2.141, + "new_deaths_smoothed_per_million": 4.839, + "new_tests": 15610.0, + "total_tests": 737130.0, + "total_tests_per_thousand": 5.717, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 11948.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 1.949, + "positive_rate": 0.513, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-14", + "total_cases": 304435.0, + "new_cases": 4685.0, + "new_cases_smoothed": 6097.857, + "total_deaths": 35449.0, + "new_deaths": 443.0, + "new_deaths_smoothed": 618.571, + "total_cases_per_million": 2361.192, + "new_cases_per_million": 36.337, + "new_cases_smoothed_per_million": 47.295, + "total_deaths_per_million": 274.942, + "new_deaths_per_million": 3.436, + "new_deaths_smoothed_per_million": 4.798, + "new_tests": 14945.0, + "total_tests": 752075.0, + "total_tests_per_thousand": 5.833, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 11943.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 1.959, + "positive_rate": 0.511, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-15", + "total_cases": 311486.0, + "new_cases": 7051.0, + "new_cases_smoothed": 6211.143, + "total_deaths": 36327.0, + "new_deaths": 878.0, + "new_deaths_smoothed": 616.143, + "total_cases_per_million": 2415.88, + "new_cases_per_million": 54.687, + "new_cases_smoothed_per_million": 48.174, + "total_deaths_per_million": 281.752, + "new_deaths_per_million": 6.81, + "new_deaths_smoothed_per_million": 4.779, + "new_tests": 16141.0, + "total_tests": 768216.0, + "total_tests_per_thousand": 5.958, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 12213.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 1.966, + "positive_rate": 0.509, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-16", + "total_cases": 317635.0, + "new_cases": 6149.0, + "new_cases_smoothed": 6090.286, + "total_deaths": 36906.0, + "new_deaths": 579.0, + "new_deaths_smoothed": 587.143, + "total_cases_per_million": 2463.571, + "new_cases_per_million": 47.692, + "new_cases_smoothed_per_million": 47.236, + "total_deaths_per_million": 286.242, + "new_deaths_per_million": 4.491, + "new_deaths_smoothed_per_million": 4.554, + "new_tests": 15428.0, + "total_tests": 783644.0, + "total_tests_per_thousand": 6.078, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 12466.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 2.0469999999999997, + "positive_rate": 0.489, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-17", + "total_cases": 324041.0, + "new_cases": 6406.0, + "new_cases_smoothed": 5965.429, + "total_deaths": 37574.0, + "new_deaths": 668.0, + "new_deaths_smoothed": 578.286, + "total_cases_per_million": 2513.256, + "new_cases_per_million": 49.685, + "new_cases_smoothed_per_million": 46.268, + "total_deaths_per_million": 291.423, + "new_deaths_per_million": 5.181, + "new_deaths_smoothed_per_million": 4.485, + "new_tests": 15454.0, + "total_tests": 799098.0, + "total_tests_per_thousand": 6.198, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 12737.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 2.135, + "positive_rate": 0.46799999999999997, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-18", + "total_cases": 331298.0, + "new_cases": 7257.0, + "new_cases_smoothed": 6017.714, + "total_deaths": 38310.0, + "new_deaths": 736.0, + "new_deaths_smoothed": 588.429, + "total_cases_per_million": 2569.541, + "new_cases_per_million": 56.285, + "new_cases_smoothed_per_million": 46.673, + "total_deaths_per_million": 297.132, + "new_deaths_per_million": 5.708, + "new_deaths_smoothed_per_million": 4.564, + "new_tests": 7695.0, + "total_tests": 806793.0, + "total_tests_per_thousand": 6.257, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 12901.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 2.144, + "positive_rate": 0.466, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-19", + "total_cases": 338913.0, + "new_cases": 7615.0, + "new_cases_smoothed": 6235.0, + "total_deaths": 38888.0, + "new_deaths": 578.0, + "new_deaths_smoothed": 594.0, + "total_cases_per_million": 2628.603, + "new_cases_per_million": 59.062, + "new_cases_smoothed_per_million": 48.359, + "total_deaths_per_million": 301.615, + "new_deaths_per_million": 4.483, + "new_deaths_smoothed_per_million": 4.607, + "new_tests": 5090.0, + "total_tests": 811883.0, + "total_tests_per_thousand": 6.297, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 12909.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 2.07, + "positive_rate": 0.483, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-20", + "total_cases": 344224.0, + "new_cases": 5311.0, + "new_cases_smoothed": 6353.429, + "total_deaths": 39184.0, + "new_deaths": 296.0, + "new_deaths_smoothed": 596.857, + "total_cases_per_million": 2669.795, + "new_cases_per_million": 41.192, + "new_cases_smoothed_per_million": 49.277, + "total_deaths_per_million": 303.91, + "new_deaths_per_million": 2.296, + "new_deaths_smoothed_per_million": 4.629, + "new_tests": 16688.0, + "total_tests": 828571.0, + "total_tests_per_thousand": 6.426, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 13063.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 2.056, + "positive_rate": 0.486, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-21", + "total_cases": 349396.0, + "new_cases": 5172.0, + "new_cases_smoothed": 6423.0, + "total_deaths": 39485.0, + "new_deaths": 301.0, + "new_deaths_smoothed": 576.571, + "total_cases_per_million": 2709.909, + "new_cases_per_million": 40.114, + "new_cases_smoothed_per_million": 49.817, + "total_deaths_per_million": 306.245, + "new_deaths_per_million": 2.335, + "new_deaths_smoothed_per_million": 4.472, + "new_tests": 15873.0, + "total_tests": 844444.0, + "total_tests_per_thousand": 6.549, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 13196.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 2.0540000000000003, + "positive_rate": 0.48700000000000004, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-22", + "total_cases": 356255.0, + "new_cases": 6859.0, + "new_cases_smoothed": 6395.571, + "total_deaths": 40400.0, + "new_deaths": 915.0, + "new_deaths_smoothed": 581.857, + "total_cases_per_million": 2763.107, + "new_cases_per_million": 53.198, + "new_cases_smoothed_per_million": 49.604, + "total_deaths_per_million": 313.342, + "new_deaths_per_million": 7.097, + "new_deaths_smoothed_per_million": 4.513, + "new_tests": 15622.0, + "total_tests": 860066.0, + "total_tests_per_thousand": 6.671, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 13121.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 2.052, + "positive_rate": 0.48700000000000004, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-23", + "total_cases": 362274.0, + "new_cases": 6019.0, + "new_cases_smoothed": 6377.0, + "total_deaths": 41190.0, + "new_deaths": 790.0, + "new_deaths_smoothed": 612.0, + "total_cases_per_million": 2809.79, + "new_cases_per_million": 46.683, + "new_cases_smoothed_per_million": 49.46, + "total_deaths_per_million": 319.469, + "new_deaths_per_million": 6.127, + "new_deaths_smoothed_per_million": 4.747, + "new_tests": 15156.0, + "total_tests": 875222.0, + "total_tests_per_thousand": 6.788, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 13083.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 2.052, + "positive_rate": 0.48700000000000004, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-24", + "total_cases": 370712.0, + "new_cases": 8438.0, + "new_cases_smoothed": 6667.286, + "total_deaths": 41908.0, + "new_deaths": 718.0, + "new_deaths_smoothed": 619.143, + "total_cases_per_million": 2875.235, + "new_cases_per_million": 65.445, + "new_cases_smoothed_per_million": 51.711, + "total_deaths_per_million": 325.038, + "new_deaths_per_million": 5.569, + "new_deaths_smoothed_per_million": 4.802, + "new_tests": 14930.0, + "total_tests": 890152.0, + "total_tests_per_thousand": 6.904, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 13008.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 1.9509999999999998, + "positive_rate": 0.513, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-25", + "total_cases": 378285.0, + "new_cases": 7573.0, + "new_cases_smoothed": 6712.429, + "total_deaths": 42645.0, + "new_deaths": 737.0, + "new_deaths_smoothed": 619.286, + "total_cases_per_million": 2933.971, + "new_cases_per_million": 58.736, + "new_cases_smoothed_per_million": 52.061, + "total_deaths_per_million": 330.754, + "new_deaths_per_million": 5.716, + "new_deaths_smoothed_per_million": 4.803, + "new_tests": 6935.0, + "total_tests": 897087.0, + "total_tests_per_thousand": 6.958, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 12899.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 1.922, + "positive_rate": 0.52, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-26", + "total_cases": 385036.0, + "new_cases": 6751.0, + "new_cases_smoothed": 6589.0, + "total_deaths": 43374.0, + "new_deaths": 729.0, + "new_deaths_smoothed": 640.857, + "total_cases_per_million": 2986.332, + "new_cases_per_million": 52.361, + "new_cases_smoothed_per_million": 51.104, + "total_deaths_per_million": 336.408, + "new_deaths_per_million": 5.654, + "new_deaths_smoothed_per_million": 4.97, + "new_tests": 4831.0, + "total_tests": 901918.0, + "total_tests_per_thousand": 6.995, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 12862.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 1.952, + "positive_rate": 0.512, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-27", + "total_cases": 390516.0, + "new_cases": 5480.0, + "new_cases_smoothed": 6613.143, + "total_deaths": 43680.0, + "new_deaths": 306.0, + "new_deaths_smoothed": 642.286, + "total_cases_per_million": 3028.835, + "new_cases_per_million": 42.503, + "new_cases_smoothed_per_million": 51.291, + "total_deaths_per_million": 338.781, + "new_deaths_per_million": 2.373, + "new_deaths_smoothed_per_million": 4.982, + "new_tests": 15333.0, + "total_tests": 917251.0, + "total_tests_per_thousand": 7.114, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 12669.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 1.916, + "positive_rate": 0.522, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-28", + "total_cases": 395489.0, + "new_cases": 4973.0, + "new_cases_smoothed": 6584.714, + "total_deaths": 44022.0, + "new_deaths": 342.0, + "new_deaths_smoothed": 648.143, + "total_cases_per_million": 3067.405, + "new_cases_per_million": 38.57, + "new_cases_smoothed_per_million": 51.071, + "total_deaths_per_million": 341.434, + "new_deaths_per_million": 2.653, + "new_deaths_smoothed_per_million": 5.027, + "new_tests": 15393.0, + "total_tests": 932644.0, + "total_tests_per_thousand": 7.234, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 12600.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 1.9140000000000001, + "positive_rate": 0.523, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-29", + "total_cases": 402697.0, + "new_cases": 7208.0, + "new_cases_smoothed": 6634.571, + "total_deaths": 44876.0, + "new_deaths": 854.0, + "new_deaths_smoothed": 639.429, + "total_cases_per_million": 3123.31, + "new_cases_per_million": 55.905, + "new_cases_smoothed_per_million": 51.458, + "total_deaths_per_million": 348.057, + "new_deaths_per_million": 6.624, + "new_deaths_smoothed_per_million": 4.959, + "new_tests": 14610.0, + "total_tests": 947254.0, + "total_tests_per_thousand": 7.347, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 12455.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 1.8769999999999998, + "positive_rate": 0.5329999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-30", + "total_cases": 408449.0, + "new_cases": 5752.0, + "new_cases_smoothed": 6596.429, + "total_deaths": 45361.0, + "new_deaths": 485.0, + "new_deaths_smoothed": 595.857, + "total_cases_per_million": 3167.923, + "new_cases_per_million": 44.612, + "new_cases_smoothed_per_million": 51.162, + "total_deaths_per_million": 351.819, + "new_deaths_per_million": 3.762, + "new_deaths_smoothed_per_million": 4.621, + "new_tests": 14326.0, + "total_tests": 961580.0, + "total_tests_per_thousand": 7.458, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 12337.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 1.87, + "positive_rate": 0.535, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-07-31", + "total_cases": 416179.0, + "new_cases": 7730.0, + "new_cases_smoothed": 6495.286, + "total_deaths": 46000.0, + "new_deaths": 639.0, + "new_deaths_smoothed": 584.571, + "total_cases_per_million": 3227.876, + "new_cases_per_million": 59.954, + "new_cases_smoothed_per_million": 50.377, + "total_deaths_per_million": 356.775, + "new_deaths_per_million": 4.956, + "new_deaths_smoothed_per_million": 4.534, + "new_tests": 13262.0, + "total_tests": 974842.0, + "total_tests_per_thousand": 7.561, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 12099.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 1.8630000000000002, + "positive_rate": 0.537, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-01", + "total_cases": 424637.0, + "new_cases": 8458.0, + "new_cases_smoothed": 6621.714, + "total_deaths": 46688.0, + "new_deaths": 688.0, + "new_deaths_smoothed": 577.571, + "total_cases_per_million": 3293.477, + "new_cases_per_million": 65.6, + "new_cases_smoothed_per_million": 51.358, + "total_deaths_per_million": 362.111, + "new_deaths_per_million": 5.336, + "new_deaths_smoothed_per_million": 4.48, + "new_tests": 6811.0, + "total_tests": 981653.0, + "total_tests_per_thousand": 7.614, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 12081.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 1.824, + "positive_rate": 0.5479999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-02", + "total_cases": 434193.0, + "new_cases": 9556.0, + "new_cases_smoothed": 7022.429, + "total_deaths": 47472.0, + "new_deaths": 784.0, + "new_deaths_smoothed": 585.429, + "total_cases_per_million": 3367.593, + "new_cases_per_million": 74.116, + "new_cases_smoothed_per_million": 54.466, + "total_deaths_per_million": 368.192, + "new_deaths_per_million": 6.081, + "new_deaths_smoothed_per_million": 4.541, + "new_tests": 4170.0, + "total_tests": 985823.0, + "total_tests_per_thousand": 7.646, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 11986.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 1.7069999999999999, + "positive_rate": 0.586, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-03", + "total_cases": 439046.0, + "new_cases": 4853.0, + "new_cases_smoothed": 6932.857, + "total_deaths": 47746.0, + "new_deaths": 274.0, + "new_deaths_smoothed": 580.857, + "total_cases_per_million": 3405.232, + "new_cases_per_million": 37.64, + "new_cases_smoothed_per_million": 53.771, + "total_deaths_per_million": 370.317, + "new_deaths_per_million": 2.125, + "new_deaths_smoothed_per_million": 4.505, + "new_tests": 14018.0, + "total_tests": 999841.0, + "total_tests_per_thousand": 7.755, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 11799.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1.702, + "positive_rate": 0.588, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-04", + "total_cases": 443813.0, + "new_cases": 4767.0, + "new_cases_smoothed": 6903.429, + "total_deaths": 48012.0, + "new_deaths": 266.0, + "new_deaths_smoothed": 570.0, + "total_cases_per_million": 3442.205, + "new_cases_per_million": 36.973, + "new_cases_smoothed_per_million": 53.543, + "total_deaths_per_million": 372.38, + "new_deaths_per_million": 2.063, + "new_deaths_smoothed_per_million": 4.421, + "new_tests": 14497.0, + "total_tests": 1014338.0, + "total_tests_per_thousand": 7.867, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 11671.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 1.6909999999999998, + "positive_rate": 0.5920000000000001, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-05", + "total_cases": 449961.0, + "new_cases": 6148.0, + "new_cases_smoothed": 6752.0, + "total_deaths": 48869.0, + "new_deaths": 857.0, + "new_deaths_smoothed": 570.429, + "total_cases_per_million": 3489.889, + "new_cases_per_million": 47.684, + "new_cases_smoothed_per_million": 52.368, + "total_deaths_per_million": 379.027, + "new_deaths_per_million": 6.647, + "new_deaths_smoothed_per_million": 4.424, + "new_tests": 14000.0, + "total_tests": 1028338.0, + "total_tests_per_thousand": 7.976, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 11583.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 1.715, + "positive_rate": 0.583, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-06", + "total_cases": 456100.0, + "new_cases": 6139.0, + "new_cases_smoothed": 6807.286, + "total_deaths": 49698.0, + "new_deaths": 829.0, + "new_deaths_smoothed": 619.571, + "total_cases_per_million": 3537.503, + "new_cases_per_million": 47.614, + "new_cases_smoothed_per_million": 52.797, + "total_deaths_per_million": 385.457, + "new_deaths_per_million": 6.43, + "new_deaths_smoothed_per_million": 4.805, + "new_tests": 13491.0, + "total_tests": 1041829.0, + "total_tests_per_thousand": 8.08, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 11464.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.6840000000000002, + "positive_rate": 0.594, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-07", + "total_cases": 462690.0, + "new_cases": 6590.0, + "new_cases_smoothed": 6644.429, + "total_deaths": 50517.0, + "new_deaths": 819.0, + "new_deaths_smoothed": 645.286, + "total_cases_per_million": 3588.615, + "new_cases_per_million": 51.112, + "new_cases_smoothed_per_million": 51.534, + "total_deaths_per_million": 391.809, + "new_deaths_per_million": 6.352, + "new_deaths_smoothed_per_million": 5.005, + "new_tests": 13499.0, + "total_tests": 1055328.0, + "total_tests_per_thousand": 8.185, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 11498.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.73, + "positive_rate": 0.578, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-08", + "total_cases": 469407.0, + "new_cases": 6717.0, + "new_cases_smoothed": 6395.714, + "total_deaths": 51311.0, + "new_deaths": 794.0, + "new_deaths_smoothed": 660.429, + "total_cases_per_million": 3640.712, + "new_cases_per_million": 52.097, + "new_cases_smoothed_per_million": 49.605, + "total_deaths_per_million": 397.967, + "new_deaths_per_million": 6.158, + "new_deaths_smoothed_per_million": 5.122, + "new_tests": 6449.0, + "total_tests": 1061777.0, + "total_tests_per_thousand": 8.235, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 11446.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.79, + "positive_rate": 0.5589999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-09", + "total_cases": 475902.0, + "new_cases": 6495.0, + "new_cases_smoothed": 5958.429, + "total_deaths": 52006.0, + "new_deaths": 695.0, + "new_deaths_smoothed": 647.714, + "total_cases_per_million": 3691.087, + "new_cases_per_million": 50.375, + "new_cases_smoothed_per_million": 46.213, + "total_deaths_per_million": 403.358, + "new_deaths_per_million": 5.39, + "new_deaths_smoothed_per_million": 5.024, + "new_tests": 4023.0, + "total_tests": 1065800.0, + "total_tests_per_thousand": 8.266, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 11425.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.9169999999999998, + "positive_rate": 0.522, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-10", + "total_cases": 480278.0, + "new_cases": 4376.0, + "new_cases_smoothed": 5890.286, + "total_deaths": 52298.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 650.286, + "total_cases_per_million": 3725.027, + "new_cases_per_million": 33.94, + "new_cases_smoothed_per_million": 45.685, + "total_deaths_per_million": 405.622, + "new_deaths_per_million": 2.265, + "new_deaths_smoothed_per_million": 5.044, + "new_tests": 14272.0, + "total_tests": 1080072.0, + "total_tests_per_thousand": 8.377, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 11462.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.946, + "positive_rate": 0.514, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-11", + "total_cases": 485836.0, + "new_cases": 5558.0, + "new_cases_smoothed": 6003.286, + "total_deaths": 53003.0, + "new_deaths": 705.0, + "new_deaths_smoothed": 713.0, + "total_cases_per_million": 3768.135, + "new_cases_per_million": 43.108, + "new_cases_smoothed_per_million": 46.561, + "total_deaths_per_million": 411.09, + "new_deaths_per_million": 5.468, + "new_deaths_smoothed_per_million": 5.53, + "new_tests": 14234.0, + "total_tests": 1094306.0, + "total_tests_per_thousand": 8.487, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 11424.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1.903, + "positive_rate": 0.525, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-12", + "total_cases": 492522.0, + "new_cases": 6686.0, + "new_cases_smoothed": 6080.143, + "total_deaths": 53929.0, + "new_deaths": 926.0, + "new_deaths_smoothed": 722.857, + "total_cases_per_million": 3819.991, + "new_cases_per_million": 51.856, + "new_cases_smoothed_per_million": 47.157, + "total_deaths_per_million": 418.272, + "new_deaths_per_million": 7.182, + "new_deaths_smoothed_per_million": 5.606, + "new_tests": 13456.0, + "total_tests": 1107762.0, + "total_tests_per_thousand": 8.592, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 11346.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 1.8659999999999999, + "positive_rate": 0.536, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-13", + "total_cases": 498380.0, + "new_cases": 5858.0, + "new_cases_smoothed": 6040.0, + "total_deaths": 54666.0, + "new_deaths": 737.0, + "new_deaths_smoothed": 709.714, + "total_cases_per_million": 3865.426, + "new_cases_per_million": 45.435, + "new_cases_smoothed_per_million": 46.846, + "total_deaths_per_million": 423.988, + "new_deaths_per_million": 5.716, + "new_deaths_smoothed_per_million": 5.505, + "new_tests": 13265.0, + "total_tests": 1121027.0, + "total_tests_per_thousand": 8.695, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 11314.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 1.8730000000000002, + "positive_rate": 0.534, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-14", + "total_cases": 505751.0, + "new_cases": 7371.0, + "new_cases_smoothed": 6151.571, + "total_deaths": 55293.0, + "new_deaths": 627.0, + "new_deaths_smoothed": 682.286, + "total_cases_per_million": 3922.595, + "new_cases_per_million": 57.169, + "new_cases_smoothed_per_million": 47.711, + "total_deaths_per_million": 428.851, + "new_deaths_per_million": 4.863, + "new_deaths_smoothed_per_million": 5.292, + "new_tests": 13154.0, + "total_tests": 1134181.0, + "total_tests_per_thousand": 8.797, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 11265.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 1.831, + "positive_rate": 0.546, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-15", + "total_cases": 511369.0, + "new_cases": 5618.0, + "new_cases_smoothed": 5994.571, + "total_deaths": 55908.0, + "new_deaths": 615.0, + "new_deaths_smoothed": 656.714, + "total_cases_per_million": 3966.168, + "new_cases_per_million": 43.573, + "new_cases_smoothed_per_million": 46.494, + "total_deaths_per_million": 433.621, + "new_deaths_per_million": 4.77, + "new_deaths_smoothed_per_million": 5.093, + "new_tests": 6145.0, + "total_tests": 1140326.0, + "total_tests_per_thousand": 8.844, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 11221.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 1.8719999999999999, + "positive_rate": 0.534, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-16", + "total_cases": 517714.0, + "new_cases": 6345.0, + "new_cases_smoothed": 5973.143, + "total_deaths": 56543.0, + "new_deaths": 635.0, + "new_deaths_smoothed": 648.143, + "total_cases_per_million": 4015.38, + "new_cases_per_million": 49.212, + "new_cases_smoothed_per_million": 46.328, + "total_deaths_per_million": 438.546, + "new_deaths_per_million": 4.925, + "new_deaths_smoothed_per_million": 5.027, + "new_tests": 3944.0, + "total_tests": 1144270.0, + "total_tests_per_thousand": 8.875, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 11210.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 1.8769999999999998, + "positive_rate": 0.5329999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-17", + "total_cases": 522162.0, + "new_cases": 4448.0, + "new_cases_smoothed": 5983.429, + "total_deaths": 56757.0, + "new_deaths": 214.0, + "new_deaths_smoothed": 637.0, + "total_cases_per_million": 4049.879, + "new_cases_per_million": 34.499, + "new_cases_smoothed_per_million": 46.407, + "total_deaths_per_million": 440.206, + "new_deaths_per_million": 1.66, + "new_deaths_smoothed_per_million": 4.941, + "new_tests": 13682.0, + "total_tests": 1157952.0, + "total_tests_per_thousand": 8.981, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 11126.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 1.859, + "positive_rate": 0.5379999999999999, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-18", + "total_cases": 525733.0, + "new_cases": 3571.0, + "new_cases_smoothed": 5699.571, + "total_deaths": 57023.0, + "new_deaths": 266.0, + "new_deaths_smoothed": 574.286, + "total_cases_per_million": 4077.575, + "new_cases_per_million": 27.697, + "new_cases_smoothed_per_million": 44.206, + "total_deaths_per_million": 442.269, + "new_deaths_per_million": 2.063, + "new_deaths_smoothed_per_million": 4.454, + "new_tests": 13922.0, + "total_tests": 1171874.0, + "total_tests_per_thousand": 9.089, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 11081.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 1.944, + "positive_rate": 0.514, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-19", + "total_cases": 531239.0, + "new_cases": 5506.0, + "new_cases_smoothed": 5531.0, + "total_deaths": 57774.0, + "new_deaths": 751.0, + "new_deaths_smoothed": 549.286, + "total_cases_per_million": 4120.28, + "new_cases_per_million": 42.704, + "new_cases_smoothed_per_million": 42.898, + "total_deaths_per_million": 448.094, + "new_deaths_per_million": 5.825, + "new_deaths_smoothed_per_million": 4.26, + "new_tests": 13203.0, + "total_tests": 1185077.0, + "total_tests_per_thousand": 9.191, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 11045.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 1.9969999999999999, + "positive_rate": 0.501, + "tests_units": "people tested", + "stringency_index": 70.83 + }, + { + "date": "2020-08-20", + "total_cases": 537031.0, + "new_cases": 5792.0, + "new_cases_smoothed": 5521.571, + "total_deaths": 58481.0, + "new_deaths": 707.0, + "new_deaths_smoothed": 545.0, + "total_cases_per_million": 4165.202, + "new_cases_per_million": 44.923, + "new_cases_smoothed_per_million": 42.825, + "total_deaths_per_million": 453.578, + "new_deaths_per_million": 5.483, + "new_deaths_smoothed_per_million": 4.227, + "new_tests": 11839.0, + "total_tests": 1196916.0, + "total_tests_per_thousand": 9.283, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 10841.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 1.963, + "positive_rate": 0.509, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-21", + "total_cases": 543806.0, + "new_cases": 6775.0, + "new_cases_smoothed": 5436.429, + "total_deaths": 59106.0, + "new_deaths": 625.0, + "new_deaths_smoothed": 544.714, + "total_cases_per_million": 4217.749, + "new_cases_per_million": 52.547, + "new_cases_smoothed_per_million": 42.165, + "total_deaths_per_million": 458.425, + "new_deaths_per_million": 4.847, + "new_deaths_smoothed_per_million": 4.225, + "new_tests": 12936.0, + "total_tests": 1209852.0, + "total_tests_per_thousand": 9.384, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 10810.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 1.9880000000000002, + "positive_rate": 0.503, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-22", + "total_cases": 549734.0, + "new_cases": 5928.0, + "new_cases_smoothed": 5480.714, + "total_deaths": 59610.0, + "new_deaths": 504.0, + "new_deaths_smoothed": 528.857, + "total_cases_per_million": 4263.727, + "new_cases_per_million": 45.977, + "new_cases_smoothed_per_million": 42.508, + "total_deaths_per_million": 462.334, + "new_deaths_per_million": 3.909, + "new_deaths_smoothed_per_million": 4.102, + "new_tests": 5954.0, + "total_tests": 1215806.0, + "total_tests_per_thousand": 9.43, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 10783.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 1.9669999999999999, + "positive_rate": 0.508, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-23", + "total_cases": 556216.0, + "new_cases": 6482.0, + "new_cases_smoothed": 5500.286, + "total_deaths": 60254.0, + "new_deaths": 644.0, + "new_deaths_smoothed": 530.143, + "total_cases_per_million": 4314.001, + "new_cases_per_million": 50.274, + "new_cases_smoothed_per_million": 42.66, + "total_deaths_per_million": 467.329, + "new_deaths_per_million": 4.995, + "new_deaths_smoothed_per_million": 4.112, + "new_tests": 3868.0, + "total_tests": 1219674.0, + "total_tests_per_thousand": 9.46, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 10772.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 1.9580000000000002, + "positive_rate": 0.511, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-24", + "total_cases": 560164.0, + "new_cases": 3948.0, + "new_cases_smoothed": 5428.857, + "total_deaths": 60480.0, + "new_deaths": 226.0, + "new_deaths_smoothed": 531.857, + "total_cases_per_million": 4344.621, + "new_cases_per_million": 30.621, + "new_cases_smoothed_per_million": 42.106, + "total_deaths_per_million": 469.082, + "new_deaths_per_million": 1.753, + "new_deaths_smoothed_per_million": 4.125, + "new_tests": 13294.0, + "total_tests": 1232968.0, + "total_tests_per_thousand": 9.563, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 10717.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 1.974, + "positive_rate": 0.507, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-25", + "total_cases": 563705.0, + "new_cases": 3541.0, + "new_cases_smoothed": 5424.571, + "total_deaths": 60800.0, + "new_deaths": 320.0, + "new_deaths_smoothed": 539.571, + "total_cases_per_million": 4372.085, + "new_cases_per_million": 27.464, + "new_cases_smoothed_per_million": 42.073, + "total_deaths_per_million": 471.564, + "new_deaths_per_million": 2.482, + "new_deaths_smoothed_per_million": 4.185, + "new_tests": 12739.0, + "total_tests": 1245707.0, + "total_tests_per_thousand": 9.662, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 10548.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 1.944, + "positive_rate": 0.514, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-26", + "total_cases": 568621.0, + "new_cases": 4916.0, + "new_cases_smoothed": 5340.286, + "total_deaths": 61450.0, + "new_deaths": 650.0, + "new_deaths_smoothed": 525.143, + "total_cases_per_million": 4410.214, + "new_cases_per_million": 38.128, + "new_cases_smoothed_per_million": 41.419, + "total_deaths_per_million": 476.605, + "new_deaths_per_million": 5.041, + "new_deaths_smoothed_per_million": 4.073, + "new_tests": 13830.0, + "total_tests": 1259537.0, + "total_tests_per_thousand": 9.769, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 10637.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 1.992, + "positive_rate": 0.502, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-27", + "total_cases": 573888.0, + "new_cases": 5267.0, + "new_cases_smoothed": 5265.286, + "total_deaths": 62076.0, + "new_deaths": 626.0, + "new_deaths_smoothed": 513.571, + "total_cases_per_million": 4451.065, + "new_cases_per_million": 40.851, + "new_cases_smoothed_per_million": 40.837, + "total_deaths_per_million": 481.46, + "new_deaths_per_million": 4.855, + "new_deaths_smoothed_per_million": 3.983, + "new_tests": 11758.0, + "total_tests": 1271295.0, + "total_tests_per_thousand": 9.86, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 10626.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 2.0180000000000002, + "positive_rate": 0.496, + "tests_units": "people tested", + "stringency_index": 74.54 + }, + { + "date": "2020-08-28", + "total_cases": 579914.0, + "new_cases": 6026.0, + "new_cases_smoothed": 5158.286, + "total_deaths": 62594.0, + "new_deaths": 518.0, + "new_deaths_smoothed": 498.286, + "total_cases_per_million": 4497.802, + "new_cases_per_million": 46.738, + "new_cases_smoothed_per_million": 40.008, + "total_deaths_per_million": 485.478, + "new_deaths_per_million": 4.018, + "new_deaths_smoothed_per_million": 3.865, + "stringency_index": 74.54 + }, + { + "date": "2020-08-29", + "total_cases": 585738.0, + "new_cases": 5824.0, + "new_cases_smoothed": 5143.429, + "total_deaths": 63146.0, + "new_deaths": 552.0, + "new_deaths_smoothed": 505.143, + "total_cases_per_million": 4542.973, + "new_cases_per_million": 45.171, + "new_cases_smoothed_per_million": 39.892, + "total_deaths_per_million": 489.759, + "new_deaths_per_million": 4.281, + "new_deaths_smoothed_per_million": 3.918, + "stringency_index": 74.54 + }, + { + "date": "2020-08-30", + "total_cases": 591712.0, + "new_cases": 5974.0, + "new_cases_smoothed": 5070.857, + "total_deaths": 63819.0, + "new_deaths": 673.0, + "new_deaths_smoothed": 509.286, + "total_cases_per_million": 4589.307, + "new_cases_per_million": 46.334, + "new_cases_smoothed_per_million": 39.329, + "total_deaths_per_million": 494.979, + "new_deaths_per_million": 5.22, + "new_deaths_smoothed_per_million": 3.95, + "stringency_index": 74.54 + }, + { + "date": "2020-08-31", + "total_cases": 595841.0, + "new_cases": 4129.0, + "new_cases_smoothed": 5096.714, + "total_deaths": 64158.0, + "new_deaths": 339.0, + "new_deaths_smoothed": 525.429, + "total_cases_per_million": 4621.332, + "new_cases_per_million": 32.024, + "new_cases_smoothed_per_million": 39.53, + "total_deaths_per_million": 497.608, + "new_deaths_per_million": 2.629, + "new_deaths_smoothed_per_million": 4.075, + "stringency_index": 74.54 + }, + { + "date": "2020-09-01", + "total_cases": 599560.0, + "new_cases": 3719.0, + "new_cases_smoothed": 5122.143, + "total_deaths": 64414.0, + "new_deaths": 256.0, + "new_deaths_smoothed": 516.286, + "total_cases_per_million": 4650.176, + "new_cases_per_million": 28.844, + "new_cases_smoothed_per_million": 39.727, + "total_deaths_per_million": 499.594, + "new_deaths_per_million": 1.986, + "new_deaths_smoothed_per_million": 4.004, + "stringency_index": 74.54 + }, + { + "date": "2020-09-02", + "total_cases": 606036.0, + "new_cases": 6476.0, + "new_cases_smoothed": 5345.0, + "total_deaths": 65241.0, + "new_deaths": 827.0, + "new_deaths_smoothed": 541.571, + "total_cases_per_million": 4700.404, + "new_cases_per_million": 50.228, + "new_cases_smoothed_per_million": 41.456, + "total_deaths_per_million": 506.008, + "new_deaths_per_million": 6.414, + "new_deaths_smoothed_per_million": 4.2, + "stringency_index": 74.54 + }, + { + "date": "2020-09-03", + "total_cases": 610957.0, + "new_cases": 4921.0, + "new_cases_smoothed": 5295.571, + "total_deaths": 65816.0, + "new_deaths": 575.0, + "new_deaths_smoothed": 534.286, + "total_cases_per_million": 4738.571, + "new_cases_per_million": 38.167, + "new_cases_smoothed_per_million": 41.072, + "total_deaths_per_million": 510.468, + "new_deaths_per_million": 4.46, + "new_deaths_smoothed_per_million": 4.144, + "stringency_index": 74.54 + }, + { + "date": "2020-09-04", + "total_cases": 616894.0, + "new_cases": 5937.0, + "new_cases_smoothed": 5282.857, + "total_deaths": 66329.0, + "new_deaths": 513.0, + "new_deaths_smoothed": 533.571, + "total_cases_per_million": 4784.618, + "new_cases_per_million": 46.047, + "new_cases_smoothed_per_million": 40.974, + "total_deaths_per_million": 514.446, + "new_deaths_per_million": 3.979, + "new_deaths_smoothed_per_million": 4.138, + "stringency_index": 74.54 + }, + { + "date": "2020-09-05", + "total_cases": 623090.0, + "new_cases": 6196.0, + "new_cases_smoothed": 5336.0, + "total_deaths": 66851.0, + "new_deaths": 522.0, + "new_deaths_smoothed": 529.286, + "total_cases_per_million": 4832.674, + "new_cases_per_million": 48.056, + "new_cases_smoothed_per_million": 41.386, + "total_deaths_per_million": 518.495, + "new_deaths_per_million": 4.049, + "new_deaths_smoothed_per_million": 4.105 + } + ] + }, + "MDA": { + "continent": "Europe", + "location": "Moldova", + "population": 4033963.0, + "population_density": 123.655, + "median_age": 37.6, + "aged_65_older": 10.864, + "aged_70_older": 6.955, + "gdp_per_capita": 5189.972, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 408.502, + "diabetes_prevalence": 5.72, + "female_smokers": 5.9, + "male_smokers": 44.6, + "handwashing_facilities": 86.979, + "hospital_beds_per_thousand": 5.8, + "life_expectancy": 71.9, + "data": [ + { + "date": "2020-03-08", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.248, + "new_cases_per_million": 0.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.744, + "new_cases_per_million": 0.496, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-12", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.992, + "new_cases_per_million": 0.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.487, + "new_cases_per_million": 0.496, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-14", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.983, + "new_cases_per_million": 0.496, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-15", + "total_cases": 20.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.958, + "new_cases_per_million": 2.975, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-16", + "total_cases": 23.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.702, + "new_cases_per_million": 0.744, + "new_cases_smoothed_per_million": 0.779, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-17", + "total_cases": 29.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.189, + "new_cases_per_million": 1.487, + "new_cases_smoothed_per_million": 0.992, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-18", + "total_cases": 30.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.437, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.956, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-19", + "total_cases": 36.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.924, + "new_cases_per_million": 1.487, + "new_cases_smoothed_per_million": 1.133, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 54.63 + }, + { + "date": "2020-03-20", + "total_cases": 49.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.147, + "new_cases_per_million": 3.223, + "new_cases_smoothed_per_million": 1.523, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 54.63 + }, + { + "date": "2020-03-21", + "total_cases": 66.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.361, + "new_cases_per_million": 4.214, + "new_cases_smoothed_per_million": 2.054, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 80.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.832, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 2.125, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 94.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.302, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 2.514, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 65.74 + }, + { + "date": "2020-03-24", + "total_cases": 109.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.021, + "new_cases_per_million": 3.718, + "new_cases_smoothed_per_million": 2.833, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-03-25", + "total_cases": 125.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.987, + "new_cases_per_million": 3.966, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-03-26", + "total_cases": 149.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.936, + "new_cases_per_million": 5.949, + "new_cases_smoothed_per_million": 4.002, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-03-27", + "total_cases": 177.0, + "new_cases": 28.0, + "new_cases_smoothed": 18.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.877, + "new_cases_per_million": 6.941, + "new_cases_smoothed_per_million": 4.533, + "total_deaths_per_million": 0.248, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-03-28", + "total_cases": 199.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.331, + "new_cases_per_million": 5.454, + "new_cases_smoothed_per_million": 4.71, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-03-29", + "total_cases": 231.0, + "new_cases": 32.0, + "new_cases_smoothed": 21.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.264, + "new_cases_per_million": 7.933, + "new_cases_smoothed_per_million": 5.347, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-03-30", + "total_cases": 263.0, + "new_cases": 32.0, + "new_cases_smoothed": 24.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 65.196, + "new_cases_per_million": 7.933, + "new_cases_smoothed_per_million": 5.985, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-03-31", + "total_cases": 298.0, + "new_cases": 35.0, + "new_cases_smoothed": 27.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 73.873, + "new_cases_per_million": 8.676, + "new_cases_smoothed_per_million": 6.693, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 87.04 + }, + { + "date": "2020-04-01", + "total_cases": 353.0, + "new_cases": 55.0, + "new_cases_smoothed": 32.571, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 87.507, + "new_cases_per_million": 13.634, + "new_cases_smoothed_per_million": 8.074, + "total_deaths_per_million": 0.992, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 87.04 + }, + { + "date": "2020-04-02", + "total_cases": 423.0, + "new_cases": 70.0, + "new_cases_smoothed": 39.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 104.86, + "new_cases_per_million": 17.353, + "new_cases_smoothed_per_million": 9.703, + "total_deaths_per_million": 1.239, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.142, + "stringency_index": 87.04 + }, + { + "date": "2020-04-03", + "total_cases": 505.0, + "new_cases": 82.0, + "new_cases_smoothed": 46.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 125.187, + "new_cases_per_million": 20.327, + "new_cases_smoothed_per_million": 11.616, + "total_deaths_per_million": 1.487, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 87.04 + }, + { + "date": "2020-04-04", + "total_cases": 591.0, + "new_cases": 86.0, + "new_cases_smoothed": 56.0, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 146.506, + "new_cases_per_million": 21.319, + "new_cases_smoothed_per_million": 13.882, + "total_deaths_per_million": 1.983, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 87.04 + }, + { + "date": "2020-04-05", + "total_cases": 752.0, + "new_cases": 161.0, + "new_cases_smoothed": 74.429, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 186.417, + "new_cases_per_million": 39.911, + "new_cases_smoothed_per_million": 18.45, + "total_deaths_per_million": 2.975, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 0.354, + "stringency_index": 87.04 + }, + { + "date": "2020-04-06", + "total_cases": 864.0, + "new_cases": 112.0, + "new_cases_smoothed": 85.857, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 214.181, + "new_cases_per_million": 27.764, + "new_cases_smoothed_per_million": 21.284, + "total_deaths_per_million": 3.718, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 0.46, + "stringency_index": 87.04 + }, + { + "date": "2020-04-07", + "total_cases": 965.0, + "new_cases": 101.0, + "new_cases_smoothed": 95.286, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 239.219, + "new_cases_per_million": 25.037, + "new_cases_smoothed_per_million": 23.621, + "total_deaths_per_million": 4.71, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 87.04 + }, + { + "date": "2020-04-08", + "total_cases": 1056.0, + "new_cases": 91.0, + "new_cases_smoothed": 100.429, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 261.777, + "new_cases_per_million": 22.558, + "new_cases_smoothed_per_million": 24.896, + "total_deaths_per_million": 5.454, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 0.637, + "stringency_index": 87.04 + }, + { + "date": "2020-04-09", + "total_cases": 1174.0, + "new_cases": 118.0, + "new_cases_smoothed": 107.286, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 291.029, + "new_cases_per_million": 29.252, + "new_cases_smoothed_per_million": 26.596, + "total_deaths_per_million": 6.693, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 0.779, + "stringency_index": 87.04 + }, + { + "date": "2020-04-10", + "total_cases": 1289.0, + "new_cases": 115.0, + "new_cases_smoothed": 112.0, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 319.537, + "new_cases_per_million": 28.508, + "new_cases_smoothed_per_million": 27.764, + "total_deaths_per_million": 7.189, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.815, + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 1438.0, + "new_cases": 149.0, + "new_cases_smoothed": 121.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 356.473, + "new_cases_per_million": 36.936, + "new_cases_smoothed_per_million": 29.995, + "total_deaths_per_million": 7.189, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.744, + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 1560.0, + "new_cases": 122.0, + "new_cases_smoothed": 115.429, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 386.716, + "new_cases_per_million": 30.243, + "new_cases_smoothed_per_million": 28.614, + "total_deaths_per_million": 7.437, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 0.637, + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 1662.0, + "new_cases": 102.0, + "new_cases_smoothed": 114.0, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 412.002, + "new_cases_per_million": 25.285, + "new_cases_smoothed_per_million": 28.26, + "total_deaths_per_million": 7.933, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 1712.0, + "new_cases": 50.0, + "new_cases_smoothed": 106.714, + "total_deaths": 36.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 424.397, + "new_cases_per_million": 12.395, + "new_cases_smoothed_per_million": 26.454, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 0.602, + "stringency_index": 87.04 + }, + { + "date": "2020-04-15", + "total_cases": 1934.0, + "new_cases": 222.0, + "new_cases_smoothed": 125.429, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 479.429, + "new_cases_per_million": 55.033, + "new_cases_smoothed_per_million": 31.093, + "total_deaths_per_million": 9.916, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 0.637, + "stringency_index": 87.04 + }, + { + "date": "2020-04-16", + "total_cases": 2049.0, + "new_cases": 115.0, + "new_cases_smoothed": 125.0, + "total_deaths": 46.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 507.937, + "new_cases_per_million": 28.508, + "new_cases_smoothed_per_million": 30.987, + "total_deaths_per_million": 11.403, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 0.673, + "stringency_index": 87.04 + }, + { + "date": "2020-04-17", + "total_cases": 2154.0, + "new_cases": 105.0, + "new_cases_smoothed": 123.571, + "total_deaths": 54.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 533.966, + "new_cases_per_million": 26.029, + "new_cases_smoothed_per_million": 30.633, + "total_deaths_per_million": 13.386, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 0.885, + "stringency_index": 87.04 + }, + { + "date": "2020-04-18", + "total_cases": 2264.0, + "new_cases": 110.0, + "new_cases_smoothed": 118.0, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 561.235, + "new_cases_per_million": 27.268, + "new_cases_smoothed_per_million": 29.252, + "total_deaths_per_million": 13.882, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 2351.0, + "new_cases": 87.0, + "new_cases_smoothed": 113.0, + "total_deaths": 60.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 582.802, + "new_cases_per_million": 21.567, + "new_cases_smoothed_per_million": 28.012, + "total_deaths_per_million": 14.874, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 2472.0, + "new_cases": 121.0, + "new_cases_smoothed": 115.714, + "total_deaths": 67.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 612.797, + "new_cases_per_million": 29.995, + "new_cases_smoothed_per_million": 28.685, + "total_deaths_per_million": 16.609, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.239, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 2548.0, + "new_cases": 76.0, + "new_cases_smoothed": 119.429, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 631.637, + "new_cases_per_million": 18.84, + "new_cases_smoothed_per_million": 29.606, + "total_deaths_per_million": 17.353, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.204, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 2614.0, + "new_cases": 66.0, + "new_cases_smoothed": 97.143, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 647.998, + "new_cases_per_million": 16.361, + "new_cases_smoothed_per_million": 24.081, + "total_deaths_per_million": 18.096, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.169, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 2778.0, + "new_cases": 164.0, + "new_cases_smoothed": 104.143, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 688.653, + "new_cases_per_million": 40.655, + "new_cases_smoothed_per_million": 25.817, + "total_deaths_per_million": 18.84, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.062, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 2926.0, + "new_cases": 148.0, + "new_cases_smoothed": 110.286, + "total_deaths": 80.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 725.341, + "new_cases_per_million": 36.688, + "new_cases_smoothed_per_million": 27.339, + "total_deaths_per_million": 19.832, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 0.921, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 3110.0, + "new_cases": 184.0, + "new_cases_smoothed": 120.857, + "total_deaths": 87.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 770.954, + "new_cases_per_million": 45.613, + "new_cases_smoothed_per_million": 29.96, + "total_deaths_per_million": 21.567, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.098, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 3304.0, + "new_cases": 194.0, + "new_cases_smoothed": 136.143, + "total_deaths": 94.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 819.046, + "new_cases_per_million": 48.092, + "new_cases_smoothed_per_million": 33.749, + "total_deaths_per_million": 23.302, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.204, + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 3408.0, + "new_cases": 104.0, + "new_cases_smoothed": 133.714, + "total_deaths": 96.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 844.827, + "new_cases_per_million": 25.781, + "new_cases_smoothed_per_million": 33.147, + "total_deaths_per_million": 23.798, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 3481.0, + "new_cases": 73.0, + "new_cases_smoothed": 133.286, + "total_deaths": 102.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 862.923, + "new_cases_per_million": 18.096, + "new_cases_smoothed_per_million": 33.041, + "total_deaths_per_million": 25.285, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.133, + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 3638.0, + "new_cases": 157.0, + "new_cases_smoothed": 146.286, + "total_deaths": 107.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 901.843, + "new_cases_per_million": 38.92, + "new_cases_smoothed_per_million": 36.264, + "total_deaths_per_million": 26.525, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.204, + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 3771.0, + "new_cases": 133.0, + "new_cases_smoothed": 141.857, + "total_deaths": 111.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 934.813, + "new_cases_per_million": 32.97, + "new_cases_smoothed_per_million": 35.166, + "total_deaths_per_million": 27.516, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.239, + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 3897.0, + "new_cases": 126.0, + "new_cases_smoothed": 138.714, + "total_deaths": 119.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 966.048, + "new_cases_per_million": 31.235, + "new_cases_smoothed_per_million": 34.387, + "total_deaths_per_million": 29.5, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.381, + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 3980.0, + "new_cases": 83.0, + "new_cases_smoothed": 124.286, + "total_deaths": 122.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 986.623, + "new_cases_per_million": 20.575, + "new_cases_smoothed_per_million": 30.81, + "total_deaths_per_million": 30.243, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.239, + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 4052.0, + "new_cases": 72.0, + "new_cases_smoothed": 106.857, + "total_deaths": 124.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1004.471, + "new_cases_per_million": 17.848, + "new_cases_smoothed_per_million": 26.489, + "total_deaths_per_million": 30.739, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 1.062, + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 4121.0, + "new_cases": 69.0, + "new_cases_smoothed": 101.857, + "total_deaths": 125.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1021.576, + "new_cases_per_million": 17.105, + "new_cases_smoothed_per_million": 25.25, + "total_deaths_per_million": 30.987, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 4248.0, + "new_cases": 127.0, + "new_cases_smoothed": 109.571, + "total_deaths": 132.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1053.059, + "new_cases_per_million": 31.483, + "new_cases_smoothed_per_million": 27.162, + "total_deaths_per_million": 32.722, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.062, + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 4363.0, + "new_cases": 115.0, + "new_cases_smoothed": 103.571, + "total_deaths": 136.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 1081.567, + "new_cases_per_million": 28.508, + "new_cases_smoothed_per_million": 25.675, + "total_deaths_per_million": 33.714, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.027, + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 4476.0, + "new_cases": 113.0, + "new_cases_smoothed": 100.714, + "total_deaths": 143.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1109.579, + "new_cases_per_million": 28.012, + "new_cases_smoothed_per_million": 24.967, + "total_deaths_per_million": 35.449, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.133, + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 4605.0, + "new_cases": 129.0, + "new_cases_smoothed": 101.143, + "total_deaths": 145.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1141.557, + "new_cases_per_million": 31.978, + "new_cases_smoothed_per_million": 25.073, + "total_deaths_per_million": 35.945, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 0.921, + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 4728.0, + "new_cases": 123.0, + "new_cases_smoothed": 106.857, + "total_deaths": 152.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1172.048, + "new_cases_per_million": 30.491, + "new_cases_smoothed_per_million": 26.489, + "total_deaths_per_million": 37.68, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.062, + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 4867.0, + "new_cases": 139.0, + "new_cases_smoothed": 116.429, + "total_deaths": 161.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1206.506, + "new_cases_per_million": 34.457, + "new_cases_smoothed_per_million": 28.862, + "total_deaths_per_million": 39.911, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.31, + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 4927.0, + "new_cases": 60.0, + "new_cases_smoothed": 115.143, + "total_deaths": 169.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1221.38, + "new_cases_per_million": 14.874, + "new_cases_smoothed_per_million": 28.543, + "total_deaths_per_million": 41.894, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.558, + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 4995.0, + "new_cases": 68.0, + "new_cases_smoothed": 106.714, + "total_deaths": 175.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1238.236, + "new_cases_per_million": 16.857, + "new_cases_smoothed_per_million": 26.454, + "total_deaths_per_million": 43.382, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.523, + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 5154.0, + "new_cases": 159.0, + "new_cases_smoothed": 113.0, + "total_deaths": 182.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1277.652, + "new_cases_per_million": 39.415, + "new_cases_smoothed_per_million": 28.012, + "total_deaths_per_million": 45.117, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 5406.0, + "new_cases": 252.0, + "new_cases_smoothed": 132.857, + "total_deaths": 185.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1340.121, + "new_cases_per_million": 62.47, + "new_cases_smoothed_per_million": 32.935, + "total_deaths_per_million": 45.861, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.487, + "stringency_index": 84.26 + }, + { + "date": "2020-05-15", + "total_cases": 5553.0, + "new_cases": 147.0, + "new_cases_smoothed": 135.429, + "total_deaths": 194.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1376.562, + "new_cases_per_million": 36.441, + "new_cases_smoothed_per_million": 33.572, + "total_deaths_per_million": 48.092, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 84.26 + }, + { + "date": "2020-05-16", + "total_cases": 5745.0, + "new_cases": 192.0, + "new_cases_smoothed": 145.286, + "total_deaths": 197.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1424.158, + "new_cases_per_million": 47.596, + "new_cases_smoothed_per_million": 36.016, + "total_deaths_per_million": 48.835, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.594, + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 5934.0, + "new_cases": 189.0, + "new_cases_smoothed": 152.429, + "total_deaths": 207.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1471.01, + "new_cases_per_million": 46.852, + "new_cases_smoothed_per_million": 37.786, + "total_deaths_per_million": 51.314, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 6060.0, + "new_cases": 126.0, + "new_cases_smoothed": 161.857, + "total_deaths": 211.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1502.245, + "new_cases_per_million": 31.235, + "new_cases_smoothed_per_million": 40.124, + "total_deaths_per_million": 52.306, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.487, + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 6138.0, + "new_cases": 78.0, + "new_cases_smoothed": 163.286, + "total_deaths": 215.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1521.581, + "new_cases_per_million": 19.336, + "new_cases_smoothed_per_million": 40.478, + "total_deaths_per_million": 53.297, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 6340.0, + "new_cases": 202.0, + "new_cases_smoothed": 169.429, + "total_deaths": 221.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1571.655, + "new_cases_per_million": 50.075, + "new_cases_smoothed_per_million": 42.001, + "total_deaths_per_million": 54.785, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.381, + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 6553.0, + "new_cases": 213.0, + "new_cases_smoothed": 163.857, + "total_deaths": 228.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1624.457, + "new_cases_per_million": 52.802, + "new_cases_smoothed_per_million": 40.619, + "total_deaths_per_million": 56.52, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.523, + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 6704.0, + "new_cases": 151.0, + "new_cases_smoothed": 164.429, + "total_deaths": 233.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1661.889, + "new_cases_per_million": 37.432, + "new_cases_smoothed_per_million": 40.761, + "total_deaths_per_million": 57.76, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.381, + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 6847.0, + "new_cases": 143.0, + "new_cases_smoothed": 157.429, + "total_deaths": 237.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1697.338, + "new_cases_per_million": 35.449, + "new_cases_smoothed_per_million": 39.026, + "total_deaths_per_million": 58.751, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 6994.0, + "new_cases": 147.0, + "new_cases_smoothed": 151.429, + "total_deaths": 242.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1733.779, + "new_cases_per_million": 36.441, + "new_cases_smoothed_per_million": 37.538, + "total_deaths_per_million": 59.991, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.239, + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 7093.0, + "new_cases": 99.0, + "new_cases_smoothed": 147.571, + "total_deaths": 250.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1758.321, + "new_cases_per_million": 24.542, + "new_cases_smoothed_per_million": 36.582, + "total_deaths_per_million": 61.974, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.381, + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 7147.0, + "new_cases": 54.0, + "new_cases_smoothed": 144.143, + "total_deaths": 261.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1771.707, + "new_cases_per_million": 13.386, + "new_cases_smoothed_per_million": 35.732, + "total_deaths_per_million": 64.701, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 7305.0, + "new_cases": 158.0, + "new_cases_smoothed": 137.857, + "total_deaths": 267.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1810.874, + "new_cases_per_million": 39.167, + "new_cases_smoothed_per_million": 34.174, + "total_deaths_per_million": 66.188, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 7537.0, + "new_cases": 232.0, + "new_cases_smoothed": 140.571, + "total_deaths": 274.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1868.386, + "new_cases_per_million": 57.512, + "new_cases_smoothed_per_million": 34.847, + "total_deaths_per_million": 67.923, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 7725.0, + "new_cases": 188.0, + "new_cases_smoothed": 145.857, + "total_deaths": 282.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1914.99, + "new_cases_per_million": 46.604, + "new_cases_smoothed_per_million": 36.157, + "total_deaths_per_million": 69.906, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 7896.0, + "new_cases": 171.0, + "new_cases_smoothed": 149.857, + "total_deaths": 288.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1957.38, + "new_cases_per_million": 42.39, + "new_cases_smoothed_per_million": 37.149, + "total_deaths_per_million": 71.394, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 8098.0, + "new_cases": 202.0, + "new_cases_smoothed": 157.714, + "total_deaths": 291.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2007.455, + "new_cases_per_million": 50.075, + "new_cases_smoothed_per_million": 39.097, + "total_deaths_per_million": 72.137, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 8251.0, + "new_cases": 153.0, + "new_cases_smoothed": 165.429, + "total_deaths": 295.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 2045.383, + "new_cases_per_million": 37.928, + "new_cases_smoothed_per_million": 41.009, + "total_deaths_per_million": 73.129, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.594, + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 8360.0, + "new_cases": 109.0, + "new_cases_smoothed": 173.286, + "total_deaths": 307.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2072.404, + "new_cases_per_million": 27.021, + "new_cases_smoothed_per_million": 42.957, + "total_deaths_per_million": 76.104, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 8548.0, + "new_cases": 188.0, + "new_cases_smoothed": 177.571, + "total_deaths": 307.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2119.008, + "new_cases_per_million": 46.604, + "new_cases_smoothed_per_million": 44.019, + "total_deaths_per_million": 76.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 8795.0, + "new_cases": 247.0, + "new_cases_smoothed": 179.714, + "total_deaths": 310.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2180.238, + "new_cases_per_million": 61.23, + "new_cases_smoothed_per_million": 44.55, + "total_deaths_per_million": 76.848, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.275, + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 9018.0, + "new_cases": 223.0, + "new_cases_smoothed": 184.714, + "total_deaths": 315.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2235.519, + "new_cases_per_million": 55.281, + "new_cases_smoothed_per_million": 45.79, + "total_deaths_per_million": 78.087, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.169, + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 9247.0, + "new_cases": 229.0, + "new_cases_smoothed": 193.0, + "total_deaths": 323.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2292.287, + "new_cases_per_million": 56.768, + "new_cases_smoothed_per_million": 47.844, + "total_deaths_per_million": 80.07, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.239, + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 9511.0, + "new_cases": 264.0, + "new_cases_smoothed": 201.857, + "total_deaths": 331.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 2357.731, + "new_cases_per_million": 65.444, + "new_cases_smoothed_per_million": 50.039, + "total_deaths_per_million": 82.053, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 9700.0, + "new_cases": 189.0, + "new_cases_smoothed": 207.0, + "total_deaths": 341.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2404.583, + "new_cases_per_million": 46.852, + "new_cases_smoothed_per_million": 51.314, + "total_deaths_per_million": 84.532, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 9807.0, + "new_cases": 107.0, + "new_cases_smoothed": 206.714, + "total_deaths": 353.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2431.108, + "new_cases_per_million": 26.525, + "new_cases_smoothed_per_million": 51.243, + "total_deaths_per_million": 87.507, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 10025.0, + "new_cases": 218.0, + "new_cases_smoothed": 211.0, + "total_deaths": 365.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2485.149, + "new_cases_per_million": 54.041, + "new_cases_smoothed_per_million": 52.306, + "total_deaths_per_million": 90.482, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 10321.0, + "new_cases": 296.0, + "new_cases_smoothed": 218.0, + "total_deaths": 371.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 2558.526, + "new_cases_per_million": 73.377, + "new_cases_smoothed_per_million": 54.041, + "total_deaths_per_million": 91.969, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 2.16, + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 10727.0, + "new_cases": 406.0, + "new_cases_smoothed": 244.143, + "total_deaths": 375.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2659.172, + "new_cases_per_million": 100.645, + "new_cases_smoothed_per_million": 60.522, + "total_deaths_per_million": 92.961, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 2.125, + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 11093.0, + "new_cases": 366.0, + "new_cases_smoothed": 263.714, + "total_deaths": 385.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 2749.901, + "new_cases_per_million": 90.73, + "new_cases_smoothed_per_million": 65.374, + "total_deaths_per_million": 95.44, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.196, + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 11459.0, + "new_cases": 366.0, + "new_cases_smoothed": 278.286, + "total_deaths": 398.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 2840.631, + "new_cases_per_million": 90.73, + "new_cases_smoothed_per_million": 68.986, + "total_deaths_per_million": 98.662, + "new_deaths_per_million": 3.223, + "new_deaths_smoothed_per_million": 2.373, + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 11740.0, + "new_cases": 281.0, + "new_cases_smoothed": 291.429, + "total_deaths": 406.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 2910.289, + "new_cases_per_million": 69.659, + "new_cases_smoothed_per_million": 72.244, + "total_deaths_per_million": 100.645, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 2.302, + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 11879.0, + "new_cases": 139.0, + "new_cases_smoothed": 296.0, + "total_deaths": 411.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 2944.747, + "new_cases_per_million": 34.457, + "new_cases_smoothed_per_million": 73.377, + "total_deaths_per_million": 101.885, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 12254.0, + "new_cases": 375.0, + "new_cases_smoothed": 318.429, + "total_deaths": 423.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 3037.708, + "new_cases_per_million": 92.961, + "new_cases_smoothed_per_million": 78.937, + "total_deaths_per_million": 104.86, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 12732.0, + "new_cases": 478.0, + "new_cases_smoothed": 344.429, + "total_deaths": 433.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 3156.201, + "new_cases_per_million": 118.494, + "new_cases_smoothed_per_million": 85.382, + "total_deaths_per_million": 107.339, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.196, + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 13106.0, + "new_cases": 374.0, + "new_cases_smoothed": 339.857, + "total_deaths": 444.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 3248.914, + "new_cases_per_million": 92.713, + "new_cases_smoothed_per_million": 84.249, + "total_deaths_per_million": 110.065, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 2.444, + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 13556.0, + "new_cases": 450.0, + "new_cases_smoothed": 351.857, + "total_deaths": 450.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3360.467, + "new_cases_per_million": 111.553, + "new_cases_smoothed_per_million": 87.224, + "total_deaths_per_million": 111.553, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 2.302, + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 13953.0, + "new_cases": 397.0, + "new_cases_smoothed": 356.286, + "total_deaths": 464.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3458.882, + "new_cases_per_million": 98.414, + "new_cases_smoothed_per_million": 88.322, + "total_deaths_per_million": 115.023, + "new_deaths_per_million": 3.471, + "new_deaths_smoothed_per_million": 2.337, + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 14200.0, + "new_cases": 247.0, + "new_cases_smoothed": 351.429, + "total_deaths": 473.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 3520.112, + "new_cases_per_million": 61.23, + "new_cases_smoothed_per_million": 87.117, + "total_deaths_per_million": 117.254, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 2.373, + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 14363.0, + "new_cases": 163.0, + "new_cases_smoothed": 354.857, + "total_deaths": 480.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 3560.519, + "new_cases_per_million": 40.407, + "new_cases_smoothed_per_million": 87.967, + "total_deaths_per_million": 118.99, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 2.444, + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 14714.0, + "new_cases": 351.0, + "new_cases_smoothed": 351.429, + "total_deaths": 490.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 3647.53, + "new_cases_per_million": 87.011, + "new_cases_smoothed_per_million": 87.117, + "total_deaths_per_million": 121.469, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.373, + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 15078.0, + "new_cases": 364.0, + "new_cases_smoothed": 335.143, + "total_deaths": 495.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 3737.764, + "new_cases_per_million": 90.234, + "new_cases_smoothed_per_million": 83.08, + "total_deaths_per_million": 122.708, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 2.196, + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 15453.0, + "new_cases": 375.0, + "new_cases_smoothed": 335.286, + "total_deaths": 502.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 3830.724, + "new_cases_per_million": 92.961, + "new_cases_smoothed_per_million": 83.116, + "total_deaths_per_million": 124.443, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 15776.0, + "new_cases": 323.0, + "new_cases_smoothed": 317.143, + "total_deaths": 515.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3910.794, + "new_cases_per_million": 80.07, + "new_cases_smoothed_per_million": 78.618, + "total_deaths_per_million": 127.666, + "new_deaths_per_million": 3.223, + "new_deaths_smoothed_per_million": 2.302, + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 16080.0, + "new_cases": 304.0, + "new_cases_smoothed": 303.857, + "total_deaths": 521.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3986.155, + "new_cases_per_million": 75.36, + "new_cases_smoothed_per_million": 75.325, + "total_deaths_per_million": 129.153, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 16250.0, + "new_cases": 170.0, + "new_cases_smoothed": 292.857, + "total_deaths": 530.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4028.297, + "new_cases_per_million": 42.142, + "new_cases_smoothed_per_million": 72.598, + "total_deaths_per_million": 131.384, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 16357.0, + "new_cases": 107.0, + "new_cases_smoothed": 284.857, + "total_deaths": 536.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 4054.822, + "new_cases_per_million": 26.525, + "new_cases_smoothed_per_million": 70.615, + "total_deaths_per_million": 132.872, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.983, + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 16613.0, + "new_cases": 256.0, + "new_cases_smoothed": 271.286, + "total_deaths": 545.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4118.283, + "new_cases_per_million": 63.461, + "new_cases_smoothed_per_million": 67.25, + "total_deaths_per_million": 135.103, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.948, + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 16898.0, + "new_cases": 285.0, + "new_cases_smoothed": 260.0, + "total_deaths": 549.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 4188.933, + "new_cases_per_million": 70.65, + "new_cases_smoothed_per_million": 64.453, + "total_deaths_per_million": 136.094, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.912, + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 17150.0, + "new_cases": 252.0, + "new_cases_smoothed": 242.429, + "total_deaths": 560.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 4251.402, + "new_cases_per_million": 62.47, + "new_cases_smoothed_per_million": 60.097, + "total_deaths_per_million": 138.821, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 17445.0, + "new_cases": 295.0, + "new_cases_smoothed": 238.429, + "total_deaths": 572.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4324.531, + "new_cases_per_million": 73.129, + "new_cases_smoothed_per_million": 59.105, + "total_deaths_per_million": 141.796, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 17672.0, + "new_cases": 227.0, + "new_cases_smoothed": 227.429, + "total_deaths": 580.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 4380.804, + "new_cases_per_million": 56.272, + "new_cases_smoothed_per_million": 56.378, + "total_deaths_per_million": 143.779, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 2.089, + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 17814.0, + "new_cases": 142.0, + "new_cases_smoothed": 223.429, + "total_deaths": 585.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4416.005, + "new_cases_per_million": 35.201, + "new_cases_smoothed_per_million": 55.387, + "total_deaths_per_million": 145.019, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.948, + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 17906.0, + "new_cases": 92.0, + "new_cases_smoothed": 221.286, + "total_deaths": 595.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 4438.811, + "new_cases_per_million": 22.806, + "new_cases_smoothed_per_million": 54.856, + "total_deaths_per_million": 147.498, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.089, + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 18141.0, + "new_cases": 235.0, + "new_cases_smoothed": 218.286, + "total_deaths": 603.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 4497.067, + "new_cases_per_million": 58.255, + "new_cases_smoothed_per_million": 54.112, + "total_deaths_per_million": 149.481, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 18471.0, + "new_cases": 330.0, + "new_cases_smoothed": 224.714, + "total_deaths": 614.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 4578.872, + "new_cases_per_million": 81.805, + "new_cases_smoothed_per_million": 55.706, + "total_deaths_per_million": 152.208, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 2.302, + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 18666.0, + "new_cases": 195.0, + "new_cases_smoothed": 216.571, + "total_deaths": 624.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 4627.212, + "new_cases_per_million": 48.34, + "new_cases_smoothed_per_million": 53.687, + "total_deaths_per_million": 154.687, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.266, + "stringency_index": 77.78 + }, + { + "date": "2020-07-11", + "total_cases": 18924.0, + "new_cases": 258.0, + "new_cases_smoothed": 211.286, + "total_deaths": 635.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 4691.168, + "new_cases_per_million": 63.957, + "new_cases_smoothed_per_million": 52.377, + "total_deaths_per_million": 157.413, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 2.231, + "stringency_index": 77.78 + }, + { + "date": "2020-07-12", + "total_cases": 19208.0, + "new_cases": 284.0, + "new_cases_smoothed": 219.429, + "total_deaths": 640.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 4761.571, + "new_cases_per_million": 70.402, + "new_cases_smoothed_per_million": 54.395, + "total_deaths_per_million": 158.653, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 2.125, + "stringency_index": 77.78 + }, + { + "date": "2020-07-13", + "total_cases": 19382.0, + "new_cases": 174.0, + "new_cases_smoothed": 224.0, + "total_deaths": 642.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4804.704, + "new_cases_per_million": 43.134, + "new_cases_smoothed_per_million": 55.529, + "total_deaths_per_million": 159.149, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 77.78 + }, + { + "date": "2020-07-14", + "total_cases": 19439.0, + "new_cases": 57.0, + "new_cases_smoothed": 219.0, + "total_deaths": 649.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 4818.834, + "new_cases_per_million": 14.13, + "new_cases_smoothed_per_million": 54.289, + "total_deaths_per_million": 160.884, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.912, + "stringency_index": 77.78 + }, + { + "date": "2020-07-15", + "total_cases": 19708.0, + "new_cases": 269.0, + "new_cases_smoothed": 223.857, + "total_deaths": 658.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4885.518, + "new_cases_per_million": 66.684, + "new_cases_smoothed_per_million": 55.493, + "total_deaths_per_million": 163.115, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.948, + "stringency_index": 77.78 + }, + { + "date": "2020-07-16", + "total_cases": 20040.0, + "new_cases": 332.0, + "new_cases_smoothed": 224.143, + "total_deaths": 659.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 4967.819, + "new_cases_per_million": 82.301, + "new_cases_smoothed_per_million": 55.564, + "total_deaths_per_million": 163.363, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 1.594, + "stringency_index": 77.78 + }, + { + "date": "2020-07-17", + "total_cases": 20264.0, + "new_cases": 224.0, + "new_cases_smoothed": 228.286, + "total_deaths": 666.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 5023.348, + "new_cases_per_million": 55.529, + "new_cases_smoothed_per_million": 56.591, + "total_deaths_per_million": 165.098, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.487, + "stringency_index": 57.41 + }, + { + "date": "2020-07-18", + "total_cases": 20494.0, + "new_cases": 230.0, + "new_cases_smoothed": 224.286, + "total_deaths": 675.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5080.364, + "new_cases_per_million": 57.016, + "new_cases_smoothed_per_million": 55.599, + "total_deaths_per_million": 167.329, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 57.41 + }, + { + "date": "2020-07-19", + "total_cases": 20794.0, + "new_cases": 300.0, + "new_cases_smoothed": 226.571, + "total_deaths": 680.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 5154.732, + "new_cases_per_million": 74.369, + "new_cases_smoothed_per_million": 56.166, + "total_deaths_per_million": 168.569, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 57.41 + }, + { + "date": "2020-07-20", + "total_cases": 20980.0, + "new_cases": 186.0, + "new_cases_smoothed": 228.286, + "total_deaths": 684.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 5200.841, + "new_cases_per_million": 46.109, + "new_cases_smoothed_per_million": 56.591, + "total_deaths_per_million": 169.56, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.487, + "stringency_index": 57.41 + }, + { + "date": "2020-07-21", + "total_cases": 21115.0, + "new_cases": 135.0, + "new_cases_smoothed": 239.429, + "total_deaths": 695.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 5234.307, + "new_cases_per_million": 33.466, + "new_cases_smoothed_per_million": 59.353, + "total_deaths_per_million": 172.287, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 57.41 + }, + { + "date": "2020-07-22", + "total_cases": 21442.0, + "new_cases": 327.0, + "new_cases_smoothed": 247.714, + "total_deaths": 707.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 5315.369, + "new_cases_per_million": 81.062, + "new_cases_smoothed_per_million": 61.407, + "total_deaths_per_million": 175.262, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 57.41 + }, + { + "date": "2020-07-23", + "total_cases": 21798.0, + "new_cases": 356.0, + "new_cases_smoothed": 251.143, + "total_deaths": 712.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 5403.619, + "new_cases_per_million": 88.251, + "new_cases_smoothed_per_million": 62.257, + "total_deaths_per_million": 176.501, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.877, + "stringency_index": 57.41 + }, + { + "date": "2020-07-24", + "total_cases": 22105.0, + "new_cases": 307.0, + "new_cases_smoothed": 263.0, + "total_deaths": 719.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 5479.723, + "new_cases_per_million": 76.104, + "new_cases_smoothed_per_million": 65.196, + "total_deaths_per_million": 178.237, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.877, + "stringency_index": 57.41 + }, + { + "date": "2020-07-25", + "total_cases": 22483.0, + "new_cases": 378.0, + "new_cases_smoothed": 284.143, + "total_deaths": 726.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5573.427, + "new_cases_per_million": 93.704, + "new_cases_smoothed_per_million": 70.438, + "total_deaths_per_million": 179.972, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 57.41 + }, + { + "date": "2020-07-26", + "total_cases": 22828.0, + "new_cases": 345.0, + "new_cases_smoothed": 290.571, + "total_deaths": 732.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 5658.951, + "new_cases_per_million": 85.524, + "new_cases_smoothed_per_million": 72.031, + "total_deaths_per_million": 181.459, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 57.41 + }, + { + "date": "2020-07-27", + "total_cases": 23034.0, + "new_cases": 206.0, + "new_cases_smoothed": 293.429, + "total_deaths": 735.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5710.018, + "new_cases_per_million": 51.066, + "new_cases_smoothed_per_million": 72.74, + "total_deaths_per_million": 182.203, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 57.41 + }, + { + "date": "2020-07-28", + "total_cases": 23154.0, + "new_cases": 120.0, + "new_cases_smoothed": 291.286, + "total_deaths": 748.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 5739.765, + "new_cases_per_million": 29.747, + "new_cases_smoothed_per_million": 72.208, + "total_deaths_per_million": 185.426, + "new_deaths_per_million": 3.223, + "new_deaths_smoothed_per_million": 1.877, + "stringency_index": 57.41 + }, + { + "date": "2020-07-29", + "total_cases": 23521.0, + "new_cases": 367.0, + "new_cases_smoothed": 297.0, + "total_deaths": 753.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 5830.743, + "new_cases_per_million": 90.978, + "new_cases_smoothed_per_million": 73.625, + "total_deaths_per_million": 186.665, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.629, + "stringency_index": 57.41 + }, + { + "date": "2020-07-30", + "total_cases": 23947.0, + "new_cases": 426.0, + "new_cases_smoothed": 307.0, + "total_deaths": 759.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5936.346, + "new_cases_per_million": 105.603, + "new_cases_smoothed_per_million": 76.104, + "total_deaths_per_million": 188.152, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.664, + "stringency_index": 57.41 + }, + { + "date": "2020-07-31", + "total_cases": 23947.0, + "new_cases": 0.0, + "new_cases_smoothed": 263.143, + "total_deaths": 771.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 5936.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 65.232, + "total_deaths_per_million": 191.127, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 57.41 + }, + { + "date": "2020-08-01", + "total_cases": 24733.0, + "new_cases": 786.0, + "new_cases_smoothed": 321.429, + "total_deaths": 778.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 6131.192, + "new_cases_per_million": 194.846, + "new_cases_smoothed_per_million": 79.681, + "total_deaths_per_million": 192.862, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 57.41 + }, + { + "date": "2020-08-02", + "total_cases": 25113.0, + "new_cases": 380.0, + "new_cases_smoothed": 326.429, + "total_deaths": 788.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 6225.392, + "new_cases_per_million": 94.2, + "new_cases_smoothed_per_million": 80.92, + "total_deaths_per_million": 195.341, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 1.983, + "stringency_index": 57.41 + }, + { + "date": "2020-08-03", + "total_cases": 25362.0, + "new_cases": 249.0, + "new_cases_smoothed": 332.571, + "total_deaths": 791.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 6287.118, + "new_cases_per_million": 61.726, + "new_cases_smoothed_per_million": 82.443, + "total_deaths_per_million": 196.085, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.983, + "stringency_index": 57.41 + }, + { + "date": "2020-08-04", + "total_cases": 25482.0, + "new_cases": 120.0, + "new_cases_smoothed": 332.571, + "total_deaths": 800.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 6316.865, + "new_cases_per_million": 29.747, + "new_cases_smoothed_per_million": 82.443, + "total_deaths_per_million": 198.316, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 57.41 + }, + { + "date": "2020-08-05", + "total_cases": 25814.0, + "new_cases": 332.0, + "new_cases_smoothed": 327.571, + "total_deaths": 810.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6399.166, + "new_cases_per_million": 82.301, + "new_cases_smoothed_per_million": 81.203, + "total_deaths_per_million": 200.795, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 57.41 + }, + { + "date": "2020-08-06", + "total_cases": 26222.0, + "new_cases": 408.0, + "new_cases_smoothed": 325.0, + "total_deaths": 823.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 6500.308, + "new_cases_per_million": 101.141, + "new_cases_smoothed_per_million": 80.566, + "total_deaths_per_million": 204.018, + "new_deaths_per_million": 3.223, + "new_deaths_smoothed_per_million": 2.266, + "stringency_index": 57.41 + }, + { + "date": "2020-08-07", + "total_cases": 26628.0, + "new_cases": 406.0, + "new_cases_smoothed": 383.0, + "total_deaths": 828.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6600.953, + "new_cases_per_million": 100.645, + "new_cases_smoothed_per_million": 94.944, + "total_deaths_per_million": 205.257, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 57.41 + }, + { + "date": "2020-08-08", + "total_cases": 26990.0, + "new_cases": 362.0, + "new_cases_smoothed": 322.429, + "total_deaths": 835.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6690.691, + "new_cases_per_million": 89.738, + "new_cases_smoothed_per_million": 79.928, + "total_deaths_per_million": 206.992, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 2.019, + "stringency_index": 57.41 + }, + { + "date": "2020-08-09", + "total_cases": 27443.0, + "new_cases": 453.0, + "new_cases_smoothed": 332.857, + "total_deaths": 841.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 6802.988, + "new_cases_per_million": 112.297, + "new_cases_smoothed_per_million": 82.514, + "total_deaths_per_million": 208.48, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.877, + "stringency_index": 57.41 + }, + { + "date": "2020-08-10", + "total_cases": 27660.0, + "new_cases": 217.0, + "new_cases_smoothed": 328.286, + "total_deaths": 845.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 6856.781, + "new_cases_per_million": 53.793, + "new_cases_smoothed_per_million": 81.38, + "total_deaths_per_million": 209.471, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.912, + "stringency_index": 57.41 + }, + { + "date": "2020-08-11", + "total_cases": 27841.0, + "new_cases": 181.0, + "new_cases_smoothed": 337.0, + "total_deaths": 850.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 6901.65, + "new_cases_per_million": 44.869, + "new_cases_smoothed_per_million": 83.541, + "total_deaths_per_million": 210.711, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.771, + "stringency_index": 57.41 + }, + { + "date": "2020-08-12", + "total_cases": 28223.0, + "new_cases": 382.0, + "new_cases_smoothed": 344.143, + "total_deaths": 857.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 6996.346, + "new_cases_per_million": 94.696, + "new_cases_smoothed_per_million": 85.311, + "total_deaths_per_million": 212.446, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.664, + "stringency_index": 57.41 + }, + { + "date": "2020-08-13", + "total_cases": 28697.0, + "new_cases": 474.0, + "new_cases_smoothed": 353.571, + "total_deaths": 863.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 7113.848, + "new_cases_per_million": 117.502, + "new_cases_smoothed_per_million": 87.649, + "total_deaths_per_million": 213.934, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 57.41 + }, + { + "date": "2020-08-14", + "total_cases": 29087.0, + "new_cases": 390.0, + "new_cases_smoothed": 351.286, + "total_deaths": 878.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 7210.527, + "new_cases_per_million": 96.679, + "new_cases_smoothed_per_million": 87.082, + "total_deaths_per_million": 217.652, + "new_deaths_per_million": 3.718, + "new_deaths_smoothed_per_million": 1.771, + "stringency_index": 57.41 + }, + { + "date": "2020-08-15", + "total_cases": 29483.0, + "new_cases": 396.0, + "new_cases_smoothed": 356.143, + "total_deaths": 884.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7308.694, + "new_cases_per_million": 98.166, + "new_cases_smoothed_per_million": 88.286, + "total_deaths_per_million": 219.139, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.735, + "stringency_index": 57.41 + }, + { + "date": "2020-08-16", + "total_cases": 29905.0, + "new_cases": 422.0, + "new_cases_smoothed": 351.714, + "total_deaths": 895.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 7413.305, + "new_cases_per_million": 104.612, + "new_cases_smoothed_per_million": 87.188, + "total_deaths_per_million": 221.866, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 1.912, + "stringency_index": 57.41 + }, + { + "date": "2020-08-17", + "total_cases": 30183.0, + "new_cases": 278.0, + "new_cases_smoothed": 360.429, + "total_deaths": 896.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 7482.22, + "new_cases_per_million": 68.915, + "new_cases_smoothed_per_million": 89.349, + "total_deaths_per_million": 222.114, + "new_deaths_per_million": 0.248, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 57.41 + }, + { + "date": "2020-08-18", + "total_cases": 30377.0, + "new_cases": 194.0, + "new_cases_smoothed": 362.286, + "total_deaths": 908.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 7530.312, + "new_cases_per_million": 48.092, + "new_cases_smoothed_per_million": 89.809, + "total_deaths_per_million": 225.089, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 2.054, + "stringency_index": 57.41 + }, + { + "date": "2020-08-19", + "total_cases": 30789.0, + "new_cases": 412.0, + "new_cases_smoothed": 366.571, + "total_deaths": 908.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 7632.445, + "new_cases_per_million": 102.133, + "new_cases_smoothed_per_million": 90.871, + "total_deaths_per_million": 225.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 57.41 + }, + { + "date": "2020-08-20", + "total_cases": 31415.0, + "new_cases": 626.0, + "new_cases_smoothed": 388.286, + "total_deaths": 914.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 7787.627, + "new_cases_per_million": 155.182, + "new_cases_smoothed_per_million": 96.254, + "total_deaths_per_million": 226.576, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.806, + "stringency_index": 57.41 + }, + { + "date": "2020-08-21", + "total_cases": 31937.0, + "new_cases": 522.0, + "new_cases_smoothed": 407.143, + "total_deaths": 921.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 7917.028, + "new_cases_per_million": 129.401, + "new_cases_smoothed_per_million": 100.929, + "total_deaths_per_million": 228.311, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.523, + "stringency_index": 57.41 + }, + { + "date": "2020-08-22", + "total_cases": 32484.0, + "new_cases": 547.0, + "new_cases_smoothed": 428.714, + "total_deaths": 929.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 8052.627, + "new_cases_per_million": 135.599, + "new_cases_smoothed_per_million": 106.276, + "total_deaths_per_million": 230.295, + "new_deaths_per_million": 1.983, + "new_deaths_smoothed_per_million": 1.594, + "stringency_index": 57.41 + }, + { + "date": "2020-08-23", + "total_cases": 33072.0, + "new_cases": 588.0, + "new_cases_smoothed": 452.429, + "total_deaths": 935.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 8198.39, + "new_cases_per_million": 145.762, + "new_cases_smoothed_per_million": 112.155, + "total_deaths_per_million": 231.782, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.417, + "stringency_index": 57.41 + }, + { + "date": "2020-08-24", + "total_cases": 33478.0, + "new_cases": 406.0, + "new_cases_smoothed": 470.714, + "total_deaths": 940.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 8299.035, + "new_cases_per_million": 100.645, + "new_cases_smoothed_per_million": 116.688, + "total_deaths_per_million": 233.021, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.558, + "stringency_index": 57.41 + }, + { + "date": "2020-08-25", + "total_cases": 33828.0, + "new_cases": 350.0, + "new_cases_smoothed": 493.0, + "total_deaths": 945.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 8385.798, + "new_cases_per_million": 86.763, + "new_cases_smoothed_per_million": 122.212, + "total_deaths_per_million": 234.261, + "new_deaths_per_million": 1.239, + "new_deaths_smoothed_per_million": 1.31, + "stringency_index": 57.41 + }, + { + "date": "2020-08-26", + "total_cases": 34358.0, + "new_cases": 530.0, + "new_cases_smoothed": 509.857, + "total_deaths": 960.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 8517.183, + "new_cases_per_million": 131.384, + "new_cases_smoothed_per_million": 126.391, + "total_deaths_per_million": 237.979, + "new_deaths_per_million": 3.718, + "new_deaths_smoothed_per_million": 1.842, + "stringency_index": 57.41 + }, + { + "date": "2020-08-27", + "total_cases": 34982.0, + "new_cases": 624.0, + "new_cases_smoothed": 509.571, + "total_deaths": 967.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 8671.869, + "new_cases_per_million": 154.687, + "new_cases_smoothed_per_million": 126.32, + "total_deaths_per_million": 239.715, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.877, + "stringency_index": 57.41 + }, + { + "date": "2020-08-28", + "total_cases": 35546.0, + "new_cases": 564.0, + "new_cases_smoothed": 515.571, + "total_deaths": 977.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 8811.682, + "new_cases_per_million": 139.813, + "new_cases_smoothed_per_million": 127.808, + "total_deaths_per_million": 242.194, + "new_deaths_per_million": 2.479, + "new_deaths_smoothed_per_million": 1.983 + }, + { + "date": "2020-08-29", + "total_cases": 35904.0, + "new_cases": 358.0, + "new_cases_smoothed": 488.571, + "total_deaths": 981.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 8900.429, + "new_cases_per_million": 88.746, + "new_cases_smoothed_per_million": 121.115, + "total_deaths_per_million": 243.185, + "new_deaths_per_million": 0.992, + "new_deaths_smoothed_per_million": 1.842 + }, + { + "date": "2020-08-30", + "total_cases": 36404.0, + "new_cases": 500.0, + "new_cases_smoothed": 476.0, + "total_deaths": 990.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 9024.376, + "new_cases_per_million": 123.948, + "new_cases_smoothed_per_million": 117.998, + "total_deaths_per_million": 245.416, + "new_deaths_per_million": 2.231, + "new_deaths_smoothed_per_million": 1.948 + }, + { + "date": "2020-08-31", + "total_cases": 36700.0, + "new_cases": 296.0, + "new_cases_smoothed": 460.286, + "total_deaths": 992.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 9097.753, + "new_cases_per_million": 73.377, + "new_cases_smoothed_per_million": 114.103, + "total_deaths_per_million": 245.912, + "new_deaths_per_million": 0.496, + "new_deaths_smoothed_per_million": 1.842 + }, + { + "date": "2020-09-01", + "total_cases": 36920.0, + "new_cases": 220.0, + "new_cases_smoothed": 441.714, + "total_deaths": 995.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 9152.29, + "new_cases_per_million": 54.537, + "new_cases_smoothed_per_million": 109.499, + "total_deaths_per_million": 246.656, + "new_deaths_per_million": 0.744, + "new_deaths_smoothed_per_million": 1.771 + }, + { + "date": "2020-09-02", + "total_cases": 37208.0, + "new_cases": 288.0, + "new_cases_smoothed": 407.143, + "total_deaths": 1008.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 9223.684, + "new_cases_per_million": 71.394, + "new_cases_smoothed_per_million": 100.929, + "total_deaths_per_million": 249.878, + "new_deaths_per_million": 3.223, + "new_deaths_smoothed_per_million": 1.7 + }, + { + "date": "2020-09-03", + "total_cases": 37740.0, + "new_cases": 532.0, + "new_cases_smoothed": 394.0, + "total_deaths": 1024.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 9355.564, + "new_cases_per_million": 131.88, + "new_cases_smoothed_per_million": 97.671, + "total_deaths_per_million": 253.845, + "new_deaths_per_million": 3.966, + "new_deaths_smoothed_per_million": 2.019 + }, + { + "date": "2020-09-04", + "total_cases": 38372.0, + "new_cases": 632.0, + "new_cases_smoothed": 403.714, + "total_deaths": 1036.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 9512.234, + "new_cases_per_million": 156.67, + "new_cases_smoothed_per_million": 100.079, + "total_deaths_per_million": 256.819, + "new_deaths_per_million": 2.975, + "new_deaths_smoothed_per_million": 2.089 + }, + { + "date": "2020-09-05", + "total_cases": 38906.0, + "new_cases": 534.0, + "new_cases_smoothed": 428.857, + "total_deaths": 1047.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 9644.61, + "new_cases_per_million": 132.376, + "new_cases_smoothed_per_million": 106.312, + "total_deaths_per_million": 259.546, + "new_deaths_per_million": 2.727, + "new_deaths_smoothed_per_million": 2.337 + } + ] + }, + "MCO": { + "continent": "Europe", + "location": "Monaco", + "population": 39244.0, + "population_density": 19347.5, + "diabetes_prevalence": 5.46, + "hospital_beds_per_thousand": 13.8, + "life_expectancy": 86.75, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.482, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.482, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.482, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.64, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.64, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.64, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.64, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 7.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 178.371, + "new_cases_per_million": 152.89, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.334, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 229.334, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 305.779, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 40.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 18.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.669, + "new_cases_per_million": 152.89, + "new_cases_smoothed_per_million": 61.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 458.669, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 40.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 509.632, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 40.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 560.595, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 47.323, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 586.077, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 586.077, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 662.522, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 32.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 815.411, + "new_cases_per_million": 152.89, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 33.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 840.893, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 35.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 891.856, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 917.338, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 942.819, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 40.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1019.264, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 61.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 43.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1095.709, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 61.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 47.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1197.635, + "new_cases_per_million": 101.926, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1223.117, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 51.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1299.562, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 58.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 52.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1325.043, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 58.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 54.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1376.007, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 61.884, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1376.007, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 57.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1452.451, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 50.963, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 63.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1605.341, + "new_cases_per_million": 152.89, + "new_cases_smoothed_per_million": 58.244, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 25.482, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-12", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1605.341, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-13", + "total_cases": 64.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1630.823, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 47.323, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-14", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1630.823, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.683, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-15", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1630.823, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.402, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-16", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1630.823, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.402, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-17", + "total_cases": 64.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1630.823, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.482, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.64 + }, + { + "date": "2020-04-18", + "total_cases": 65.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1656.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 66.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 67.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 67.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1707.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 68.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1732.749, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1732.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1732.749, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 69.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1758.231, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1758.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1758.231, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 70.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.712, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1783.712, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1860.157, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1860.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1860.157, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 75.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.12, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 76.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1936.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 78.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1987.565, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 7.28, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 79.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2013.047, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 80.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2038.528, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2064.01, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2064.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2064.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2064.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2089.491, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 84.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2140.455, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2140.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2140.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2140.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2140.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2165.936, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 14.561, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 87.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2216.899, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 90.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2293.344, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 91.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2318.826, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 25.482, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 93.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2369.789, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 32.762, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 94.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2395.271, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 36.402, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2395.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 36.402, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2395.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.762, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 95.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2420.752, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 97.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2471.715, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 25.482, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 99.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2522.679, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 29.122, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2522.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2522.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2522.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 100.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2548.16, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 21.841, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2548.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.201, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2548.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 102.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2599.123, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 10.921, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 106.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2701.05, + "new_cases_per_million": 101.926, + "new_cases_smoothed_per_million": 25.482, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2752.013, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 32.762, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 111.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2828.458, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 43.683, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 115.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2930.384, + "new_cases_per_million": 101.926, + "new_cases_smoothed_per_million": 54.603, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 121.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3083.274, + "new_cases_per_million": 152.89, + "new_cases_smoothed_per_million": 76.445, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3108.755, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 80.085, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 125.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3185.2, + "new_cases_per_million": 76.445, + "new_cases_smoothed_per_million": 83.725, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 125.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3185.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 69.164, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 130.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3312.608, + "new_cases_per_million": 127.408, + "new_cases_smoothed_per_million": 80.085, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 131.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3338.09, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 72.805, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 138.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3516.461, + "new_cases_per_million": 178.371, + "new_cases_smoothed_per_million": 83.725, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 140.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3567.424, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 69.164, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 142.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3618.388, + "new_cases_per_million": 50.963, + "new_cases_smoothed_per_million": 72.805, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 143.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3643.869, + "new_cases_per_million": 25.482, + "new_cases_smoothed_per_million": 65.524, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 147.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3745.796, + "new_cases_per_million": 101.926, + "new_cases_smoothed_per_million": 80.085, + "total_deaths_per_million": 25.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MNG": { + "continent": "Asia", + "location": "Mongolia", + "population": 3278292.0, + "population_density": 1.98, + "median_age": 28.6, + "aged_65_older": 4.031, + "aged_70_older": 2.421, + "gdp_per_capita": 11840.846, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 460.043, + "diabetes_prevalence": 4.82, + "female_smokers": 5.5, + "male_smokers": 46.5, + "handwashing_facilities": 71.18, + "hospital_beds_per_thousand": 7.0, + "life_expectancy": 69.87, + "data": [ + { + "date": "2020-03-10", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.305, + "new_cases_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.305, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-17", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-18", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.22, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-19", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.525, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-20", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-21", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.83, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-22", + "total_cases": 10.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 1.22, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-23", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-24", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-25", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-26", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-27", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.355, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.355, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-29", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.66, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.66, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.66, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-04-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.66, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-04-02", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.271, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-04-03", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-04-04", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-04-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-06", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-07", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.576, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.576, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-09", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-15", + "total_cases": 30.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.151, + "new_cases_per_million": 4.271, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-16", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.151, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.61, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-17", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.456, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-18", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-19", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-20", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.761, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.697, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-21", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.371, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-22", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.676, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-23", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.676, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-24", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.981, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-25", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.981, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-26", + "total_cases": 38.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-27", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-28", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-29", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-30", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-01", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-02", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.896, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-03", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.896, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-04", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.201, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-05", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.507, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-06", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.507, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-07", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.507, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-08", + "total_cases": 42.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-09", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-10", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-11", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-12", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-13", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-14", + "total_cases": 61.0, + "new_cases": 19.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.607, + "new_cases_per_million": 5.796, + "new_cases_smoothed_per_million": 0.872, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-15", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-16", + "total_cases": 135.0, + "new_cases": 74.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.18, + "new_cases_per_million": 22.573, + "new_cases_smoothed_per_million": 4.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-17", + "total_cases": 136.0, + "new_cases": 1.0, + "new_cases_smoothed": 13.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.485, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 4.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-18", + "total_cases": 140.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.705, + "new_cases_per_million": 1.22, + "new_cases_smoothed_per_million": 4.271, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-19", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.271, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-20", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.271, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-21", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-22", + "total_cases": 141.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 3.486, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-23", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-24", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-25", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-26", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-27", + "total_cases": 148.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.145, + "new_cases_per_million": 2.135, + "new_cases_smoothed_per_million": 0.349, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-28", + "total_cases": 161.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.111, + "new_cases_per_million": 3.965, + "new_cases_smoothed_per_million": 0.915, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-29", + "total_cases": 179.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.602, + "new_cases_per_million": 5.491, + "new_cases_smoothed_per_million": 1.656, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-30", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.656, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-05-31", + "total_cases": 179.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.656, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-01", + "total_cases": 185.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.432, + "new_cases_per_million": 1.83, + "new_cases_smoothed_per_million": 1.917, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-02", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.917, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-03", + "total_cases": 185.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-04", + "total_cases": 186.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.737, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 1.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-05", + "total_cases": 191.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.262, + "new_cases_per_million": 1.525, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-06", + "total_cases": 191.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.262, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-07", + "total_cases": 193.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.872, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.61, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-08", + "total_cases": 194.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.177, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-09", + "total_cases": 194.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.177, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-10", + "total_cases": 194.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.177, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-11", + "total_cases": 194.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.177, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.349, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-12", + "total_cases": 197.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-13", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-14", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-15", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-16", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-17", + "total_cases": 197.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-18", + "total_cases": 201.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.312, + "new_cases_per_million": 1.22, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-19", + "total_cases": 204.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.228, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-20", + "total_cases": 204.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.228, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-21", + "total_cases": 206.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.838, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-22", + "total_cases": 213.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.973, + "new_cases_per_million": 2.135, + "new_cases_smoothed_per_million": 0.697, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-23", + "total_cases": 215.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.583, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-24", + "total_cases": 215.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.583, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-25", + "total_cases": 216.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.888, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-26", + "total_cases": 219.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.803, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-27", + "total_cases": 219.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.803, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-28", + "total_cases": 219.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.803, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.566, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-29", + "total_cases": 220.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-06-30", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-01", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-02", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-07-03", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-04", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-05", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-06", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-07", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-08", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 227.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.243, + "new_cases_per_million": 2.135, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-11", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-12", + "total_cases": 230.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.158, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-13", + "total_cases": 230.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-14", + "total_cases": 243.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.124, + "new_cases_per_million": 3.965, + "new_cases_smoothed_per_million": 1.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-15", + "total_cases": 261.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.615, + "new_cases_per_million": 5.491, + "new_cases_smoothed_per_million": 1.787, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.482, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 262.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.92, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 1.525, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 287.0, + "new_cases": 25.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 7.626, + "new_cases_smoothed_per_million": 2.615, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.484, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.484, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.917, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 288.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.851, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 1.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.851, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 289.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.156, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 291.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.766, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 291.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 291.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 291.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-02", + "total_cases": 293.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-03", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-04", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-05", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-06", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-07", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-08", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-09", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-10", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-11", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-12", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.376, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-13", + "total_cases": 297.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.596, + "new_cases_per_million": 1.22, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-14", + "total_cases": 297.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.596, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-15", + "total_cases": 298.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-16", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-17", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-18", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-19", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-20", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-21", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-22", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-23", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-24", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-25", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.901, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-26", + "total_cases": 300.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.511, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-27", + "total_cases": 301.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.816, + "new_cases_per_million": 0.305, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-28", + "total_cases": 301.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-29", + "total_cases": 301.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-30", + "total_cases": 301.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-31", + "total_cases": 301.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.816, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-09-01", + "total_cases": 304.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.731, + "new_cases_per_million": 0.915, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-09-02", + "total_cases": 306.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.341, + "new_cases_per_million": 0.61, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-09-03", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.341, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-09-04", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.341, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.341, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MNE": { + "continent": "Europe", + "location": "Montenegro", + "population": 628062.0, + "population_density": 46.28, + "median_age": 39.1, + "aged_65_older": 14.762, + "aged_70_older": 9.395, + "gdp_per_capita": 16409.288, + "extreme_poverty": 1.0, + "cardiovasc_death_rate": 387.305, + "diabetes_prevalence": 10.08, + "female_smokers": 44.0, + "male_smokers": 47.9, + "hospital_beds_per_thousand": 3.861, + "life_expectancy": 76.88, + "data": [ + { + "date": "2020-03-18", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.184, + "new_cases_per_million": 3.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 8.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 12.738, + "new_cases_per_million": 9.553, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 13.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 20.699, + "new_cases_per_million": 7.961, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 14.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 22.291, + "new_cases_per_million": 1.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 14.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 22.291, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 21.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 33.436, + "new_cases_per_million": 11.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 27.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.989, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 6.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 47.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.833, + "new_cases_per_million": 31.844, + "new_cases_smoothed_per_million": 10.236, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 53.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 84.387, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 10.236, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 67.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.677, + "new_cases_per_million": 22.291, + "new_cases_smoothed_per_million": 12.283, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-03-28", + "total_cases": 75.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 119.415, + "new_cases_per_million": 12.738, + "new_cases_smoothed_per_million": 13.875, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-03-29", + "total_cases": 84.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 133.745, + "new_cases_per_million": 14.33, + "new_cases_smoothed_per_million": 15.922, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-03-30", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 135.337, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 14.557, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-03-31", + "total_cases": 91.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 144.89, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 14.557, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-01", + "total_cases": 109.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 173.55, + "new_cases_per_million": 28.66, + "new_cases_smoothed_per_million": 14.102, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-02", + "total_cases": 123.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 195.841, + "new_cases_per_million": 22.291, + "new_cases_smoothed_per_million": 15.922, + "total_deaths_per_million": 1.592, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-03", + "total_cases": 144.0, + "new_cases": 21.0, + "new_cases_smoothed": 11.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 229.277, + "new_cases_per_million": 33.436, + "new_cases_smoothed_per_million": 17.514, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-04", + "total_cases": 174.0, + "new_cases": 30.0, + "new_cases_smoothed": 14.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 277.043, + "new_cases_per_million": 47.766, + "new_cases_smoothed_per_million": 22.518, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-05", + "total_cases": 201.0, + "new_cases": 27.0, + "new_cases_smoothed": 16.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 320.032, + "new_cases_per_million": 42.989, + "new_cases_smoothed_per_million": 26.612, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-06", + "total_cases": 214.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 340.731, + "new_cases_per_million": 20.699, + "new_cases_smoothed_per_million": 29.342, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-07", + "total_cases": 233.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 370.982, + "new_cases_per_million": 30.252, + "new_cases_smoothed_per_million": 32.299, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-08", + "total_cases": 241.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 383.72, + "new_cases_per_million": 12.738, + "new_cases_smoothed_per_million": 30.024, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-09", + "total_cases": 249.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 396.458, + "new_cases_per_million": 12.738, + "new_cases_smoothed_per_million": 28.66, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-10", + "total_cases": 252.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 401.234, + "new_cases_per_million": 4.777, + "new_cases_smoothed_per_million": 24.565, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 257.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 409.195, + "new_cases_per_million": 7.961, + "new_cases_smoothed_per_million": 18.879, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 263.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 418.748, + "new_cases_per_million": 9.553, + "new_cases_smoothed_per_million": 14.102, + "total_deaths_per_million": 3.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 272.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 433.078, + "new_cases_per_million": 14.33, + "new_cases_smoothed_per_million": 13.193, + "total_deaths_per_million": 4.777, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-14", + "total_cases": 274.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 436.263, + "new_cases_per_million": 3.184, + "new_cases_smoothed_per_million": 9.326, + "total_deaths_per_million": 4.777, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-15", + "total_cases": 283.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 450.592, + "new_cases_per_million": 14.33, + "new_cases_smoothed_per_million": 9.553, + "total_deaths_per_million": 6.369, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-16", + "total_cases": 288.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 458.553, + "new_cases_per_million": 7.961, + "new_cases_smoothed_per_million": 8.871, + "total_deaths_per_million": 6.369, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-17", + "total_cases": 303.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 482.436, + "new_cases_per_million": 23.883, + "new_cases_smoothed_per_million": 11.6, + "total_deaths_per_million": 6.369, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-18", + "total_cases": 303.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 482.436, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.463, + "total_deaths_per_million": 6.369, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-19", + "total_cases": 307.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 488.805, + "new_cases_per_million": 6.369, + "new_cases_smoothed_per_million": 10.008, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.682 + }, + { + "date": "2020-04-20", + "total_cases": 308.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 490.397, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 8.188, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-21", + "total_cases": 312.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 496.766, + "new_cases_per_million": 6.369, + "new_cases_smoothed_per_million": 8.643, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-22", + "total_cases": 313.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 498.358, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 6.824, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-23", + "total_cases": 315.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 501.543, + "new_cases_per_million": 3.184, + "new_cases_smoothed_per_million": 6.141, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-24", + "total_cases": 319.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 507.912, + "new_cases_per_million": 6.369, + "new_cases_smoothed_per_million": 3.639, + "total_deaths_per_million": 7.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-25", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 507.912, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.639, + "total_deaths_per_million": 9.553, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-26", + "total_cases": 320.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 509.504, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 9.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-04-27", + "total_cases": 321.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 511.096, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-28", + "total_cases": 321.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 511.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.047, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-29", + "total_cases": 321.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 511.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.82, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-04-30", + "total_cases": 322.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 512.688, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-05-01", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 512.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-05-02", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 512.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-03", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 512.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 11.145, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-04", + "total_cases": 322.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 512.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-05", + "total_cases": 323.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 514.28, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-06", + "total_cases": 324.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 0.682, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-07", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-08", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-09", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-10", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 12.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-11", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-12", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-13", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-14", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-15", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-16", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-17", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.227 + }, + { + "date": "2020-05-18", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 515.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 325.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 517.465, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 326.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 519.057, + "new_cases_per_million": 1.592, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 326.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 519.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 333.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 530.202, + "new_cases_per_million": 11.145, + "new_cases_smoothed_per_million": 2.047, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 337.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 536.571, + "new_cases_per_million": 6.369, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 355.0, + "new_cases": 18.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 565.231, + "new_cases_per_million": 28.66, + "new_cases_smoothed_per_million": 7.051, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 359.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 571.6, + "new_cases_per_million": 6.369, + "new_cases_smoothed_per_million": 7.961, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 362.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 576.376, + "new_cases_per_million": 4.777, + "new_cases_smoothed_per_million": 8.416, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 367.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 584.337, + "new_cases_per_million": 7.961, + "new_cases_smoothed_per_million": 9.326, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 378.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 601.851, + "new_cases_per_million": 17.514, + "new_cases_smoothed_per_million": 11.828, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 389.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 619.366, + "new_cases_per_million": 17.514, + "new_cases_smoothed_per_million": 12.738, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 414.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 659.171, + "new_cases_per_million": 39.805, + "new_cases_smoothed_per_million": 17.514, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 439.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 698.976, + "new_cases_per_million": 39.805, + "new_cases_smoothed_per_million": 19.106, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 469.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 746.742, + "new_cases_per_million": 47.766, + "new_cases_smoothed_per_million": 25.02, + "total_deaths_per_million": 14.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 481.0, + "new_cases": 12.0, + "new_cases_smoothed": 17.0, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 765.848, + "new_cases_per_million": 19.106, + "new_cases_smoothed_per_million": 27.067, + "total_deaths_per_million": 17.514, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-06-30", + "total_cases": 501.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 797.692, + "new_cases_per_million": 31.844, + "new_cases_smoothed_per_million": 30.479, + "total_deaths_per_million": 17.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.455 + }, + { + "date": "2020-07-01", + "total_cases": 548.0, + "new_cases": 47.0, + "new_cases_smoothed": 24.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 872.525, + "new_cases_per_million": 74.833, + "new_cases_smoothed_per_million": 38.668, + "total_deaths_per_million": 19.106, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.682 + }, + { + "date": "2020-07-02", + "total_cases": 576.0, + "new_cases": 28.0, + "new_cases_smoothed": 26.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 917.107, + "new_cases_per_million": 44.582, + "new_cases_smoothed_per_million": 42.534, + "total_deaths_per_million": 19.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.682 + }, + { + "date": "2020-07-03", + "total_cases": 616.0, + "new_cases": 40.0, + "new_cases_smoothed": 28.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 980.795, + "new_cases_per_million": 63.688, + "new_cases_smoothed_per_million": 45.946, + "total_deaths_per_million": 20.699, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 0.91 + }, + { + "date": "2020-07-04", + "total_cases": 663.0, + "new_cases": 47.0, + "new_cases_smoothed": 32.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1055.628, + "new_cases_per_million": 74.833, + "new_cases_smoothed_per_million": 50.95, + "total_deaths_per_million": 20.699, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.91 + }, + { + "date": "2020-07-05", + "total_cases": 720.0, + "new_cases": 57.0, + "new_cases_smoothed": 35.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1146.384, + "new_cases_per_million": 90.755, + "new_cases_smoothed_per_million": 57.092, + "total_deaths_per_million": 22.291, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.137 + }, + { + "date": "2020-07-06", + "total_cases": 781.0, + "new_cases": 61.0, + "new_cases_smoothed": 42.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1243.508, + "new_cases_per_million": 97.124, + "new_cases_smoothed_per_million": 68.237, + "total_deaths_per_million": 22.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.682 + }, + { + "date": "2020-07-07", + "total_cases": 841.0, + "new_cases": 60.0, + "new_cases_smoothed": 48.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1339.04, + "new_cases_per_million": 95.532, + "new_cases_smoothed_per_million": 77.335, + "total_deaths_per_million": 22.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.682 + }, + { + "date": "2020-07-08", + "total_cases": 907.0, + "new_cases": 66.0, + "new_cases_smoothed": 51.286, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1444.125, + "new_cases_per_million": 105.085, + "new_cases_smoothed_per_million": 81.657, + "total_deaths_per_million": 27.067, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 1.137 + }, + { + "date": "2020-07-09", + "total_cases": 960.0, + "new_cases": 53.0, + "new_cases_smoothed": 54.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1528.512, + "new_cases_per_million": 84.387, + "new_cases_smoothed_per_million": 87.344, + "total_deaths_per_million": 27.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.137 + }, + { + "date": "2020-07-10", + "total_cases": 1019.0, + "new_cases": 59.0, + "new_cases_smoothed": 57.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1622.451, + "new_cases_per_million": 93.94, + "new_cases_smoothed_per_million": 91.665, + "total_deaths_per_million": 30.252, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 1.365 + }, + { + "date": "2020-07-11", + "total_cases": 1077.0, + "new_cases": 58.0, + "new_cases_smoothed": 59.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1714.799, + "new_cases_per_million": 92.348, + "new_cases_smoothed_per_million": 94.167, + "total_deaths_per_million": 30.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.365 + }, + { + "date": "2020-07-12", + "total_cases": 1164.0, + "new_cases": 87.0, + "new_cases_smoothed": 63.429, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1853.32, + "new_cases_per_million": 138.521, + "new_cases_smoothed_per_million": 100.991, + "total_deaths_per_million": 36.621, + "new_deaths_per_million": 6.369, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-07-13", + "total_cases": 1221.0, + "new_cases": 57.0, + "new_cases_smoothed": 62.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1944.076, + "new_cases_per_million": 90.755, + "new_cases_smoothed_per_million": 100.081, + "total_deaths_per_million": 36.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-07-14", + "total_cases": 1453.0, + "new_cases": 232.0, + "new_cases_smoothed": 87.429, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2313.466, + "new_cases_per_million": 369.39, + "new_cases_smoothed_per_million": 139.204, + "total_deaths_per_million": 38.213, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-07-15", + "total_cases": 1522.0, + "new_cases": 69.0, + "new_cases_smoothed": 87.857, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2423.328, + "new_cases_per_million": 109.862, + "new_cases_smoothed_per_million": 139.886, + "total_deaths_per_million": 39.805, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-07-16", + "total_cases": 1582.0, + "new_cases": 60.0, + "new_cases_smoothed": 88.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2518.86, + "new_cases_per_million": 95.532, + "new_cases_smoothed_per_million": 141.478, + "total_deaths_per_million": 39.805, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-07-17", + "total_cases": 1618.0, + "new_cases": 36.0, + "new_cases_smoothed": 85.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2576.179, + "new_cases_per_million": 57.319, + "new_cases_smoothed_per_million": 136.247, + "total_deaths_per_million": 41.397, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-07-18", + "total_cases": 1618.0, + "new_cases": 0.0, + "new_cases_smoothed": 77.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2576.179, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.054, + "total_deaths_per_million": 41.397, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-07-19", + "total_cases": 1664.0, + "new_cases": 46.0, + "new_cases_smoothed": 71.429, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2649.42, + "new_cases_per_million": 73.241, + "new_cases_smoothed_per_million": 113.729, + "total_deaths_per_million": 44.582, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 1.137 + }, + { + "date": "2020-07-20", + "total_cases": 1771.0, + "new_cases": 107.0, + "new_cases_smoothed": 78.571, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2819.785, + "new_cases_per_million": 170.365, + "new_cases_smoothed_per_million": 125.101, + "total_deaths_per_million": 47.766, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-07-21", + "total_cases": 1861.0, + "new_cases": 90.0, + "new_cases_smoothed": 58.286, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2963.083, + "new_cases_per_million": 143.298, + "new_cases_smoothed_per_million": 92.802, + "total_deaths_per_million": 50.95, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-07-22", + "total_cases": 1920.0, + "new_cases": 59.0, + "new_cases_smoothed": 56.857, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3057.023, + "new_cases_per_million": 93.94, + "new_cases_smoothed_per_million": 90.528, + "total_deaths_per_million": 55.727, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-07-23", + "total_cases": 1937.0, + "new_cases": 17.0, + "new_cases_smoothed": 50.714, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3084.09, + "new_cases_per_million": 27.067, + "new_cases_smoothed_per_million": 80.747, + "total_deaths_per_million": 55.727, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-07-24", + "total_cases": 2261.0, + "new_cases": 324.0, + "new_cases_smoothed": 91.857, + "total_deaths": 39.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3599.963, + "new_cases_per_million": 515.873, + "new_cases_smoothed_per_million": 146.255, + "total_deaths_per_million": 62.096, + "new_deaths_per_million": 6.369, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-07-25", + "total_cases": 2569.0, + "new_cases": 308.0, + "new_cases_smoothed": 135.857, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 4090.361, + "new_cases_per_million": 490.397, + "new_cases_smoothed_per_million": 216.312, + "total_deaths_per_million": 63.688, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 3.184 + }, + { + "date": "2020-07-26", + "total_cases": 2569.0, + "new_cases": 0.0, + "new_cases_smoothed": 129.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4090.361, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 205.849, + "total_deaths_per_million": 63.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-07-27", + "total_cases": 2569.0, + "new_cases": 0.0, + "new_cases_smoothed": 114.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4090.361, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 181.511, + "total_deaths_per_million": 63.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-07-28", + "total_cases": 2893.0, + "new_cases": 324.0, + "new_cases_smoothed": 147.429, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4606.233, + "new_cases_per_million": 515.873, + "new_cases_smoothed_per_million": 234.736, + "total_deaths_per_million": 68.465, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 2.502 + }, + { + "date": "2020-07-29", + "total_cases": 2949.0, + "new_cases": 56.0, + "new_cases_smoothed": 147.0, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4695.396, + "new_cases_per_million": 89.163, + "new_cases_smoothed_per_million": 234.053, + "total_deaths_per_million": 71.649, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-07-30", + "total_cases": 3016.0, + "new_cases": 67.0, + "new_cases_smoothed": 154.143, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4802.074, + "new_cases_per_million": 106.677, + "new_cases_smoothed_per_million": 245.426, + "total_deaths_per_million": 74.833, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-07-31", + "total_cases": 3073.0, + "new_cases": 57.0, + "new_cases_smoothed": 116.0, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4892.829, + "new_cases_per_million": 90.755, + "new_cases_smoothed_per_million": 184.695, + "total_deaths_per_million": 76.426, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-01", + "total_cases": 3112.0, + "new_cases": 39.0, + "new_cases_smoothed": 77.571, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4954.925, + "new_cases_per_million": 62.096, + "new_cases_smoothed_per_million": 123.509, + "total_deaths_per_million": 78.018, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-02", + "total_cases": 3198.0, + "new_cases": 86.0, + "new_cases_smoothed": 89.857, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5091.854, + "new_cases_per_million": 136.929, + "new_cases_smoothed_per_million": 143.07, + "total_deaths_per_million": 79.61, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-08-03", + "total_cases": 3258.0, + "new_cases": 60.0, + "new_cases_smoothed": 98.429, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5187.386, + "new_cases_per_million": 95.532, + "new_cases_smoothed_per_million": 156.718, + "total_deaths_per_million": 81.202, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.502 + }, + { + "date": "2020-08-04", + "total_cases": 3301.0, + "new_cases": 43.0, + "new_cases_smoothed": 58.286, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5255.851, + "new_cases_per_million": 68.465, + "new_cases_smoothed_per_million": 92.802, + "total_deaths_per_million": 82.794, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-05", + "total_cases": 3361.0, + "new_cases": 60.0, + "new_cases_smoothed": 58.857, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5351.383, + "new_cases_per_million": 95.532, + "new_cases_smoothed_per_million": 93.712, + "total_deaths_per_million": 84.387, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-08-06", + "total_cases": 3411.0, + "new_cases": 50.0, + "new_cases_smoothed": 56.429, + "total_deaths": 57.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5430.992, + "new_cases_per_million": 79.61, + "new_cases_smoothed_per_million": 89.846, + "total_deaths_per_million": 90.755, + "new_deaths_per_million": 6.369, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-08-07", + "total_cases": 3480.0, + "new_cases": 69.0, + "new_cases_smoothed": 58.143, + "total_deaths": 60.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5540.854, + "new_cases_per_million": 109.862, + "new_cases_smoothed_per_million": 92.575, + "total_deaths_per_million": 95.532, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-08-08", + "total_cases": 3549.0, + "new_cases": 69.0, + "new_cases_smoothed": 62.429, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5650.716, + "new_cases_per_million": 109.862, + "new_cases_smoothed_per_million": 99.399, + "total_deaths_per_million": 97.124, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-08-09", + "total_cases": 3588.0, + "new_cases": 39.0, + "new_cases_smoothed": 55.714, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5712.812, + "new_cases_per_million": 62.096, + "new_cases_smoothed_per_million": 88.708, + "total_deaths_per_million": 98.716, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-08-10", + "total_cases": 3618.0, + "new_cases": 30.0, + "new_cases_smoothed": 51.429, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5760.578, + "new_cases_per_million": 47.766, + "new_cases_smoothed_per_million": 81.885, + "total_deaths_per_million": 101.901, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-08-11", + "total_cases": 3696.0, + "new_cases": 78.0, + "new_cases_smoothed": 56.429, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5884.769, + "new_cases_per_million": 124.192, + "new_cases_smoothed_per_million": 89.846, + "total_deaths_per_million": 108.27, + "new_deaths_per_million": 6.369, + "new_deaths_smoothed_per_million": 3.639 + }, + { + "date": "2020-08-12", + "total_cases": 3748.0, + "new_cases": 52.0, + "new_cases_smoothed": 55.286, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5967.564, + "new_cases_per_million": 82.794, + "new_cases_smoothed_per_million": 88.026, + "total_deaths_per_million": 113.046, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 4.094 + }, + { + "date": "2020-08-13", + "total_cases": 3813.0, + "new_cases": 65.0, + "new_cases_smoothed": 57.429, + "total_deaths": 73.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 6071.057, + "new_cases_per_million": 103.493, + "new_cases_smoothed_per_million": 91.438, + "total_deaths_per_million": 116.231, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 3.639 + }, + { + "date": "2020-08-14", + "total_cases": 3857.0, + "new_cases": 44.0, + "new_cases_smoothed": 53.857, + "total_deaths": 73.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6141.113, + "new_cases_per_million": 70.057, + "new_cases_smoothed_per_million": 85.751, + "total_deaths_per_million": 116.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-08-15", + "total_cases": 3930.0, + "new_cases": 73.0, + "new_cases_smoothed": 54.429, + "total_deaths": 73.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6257.344, + "new_cases_per_million": 116.231, + "new_cases_smoothed_per_million": 86.661, + "total_deaths_per_million": 116.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-08-16", + "total_cases": 3960.0, + "new_cases": 30.0, + "new_cases_smoothed": 53.143, + "total_deaths": 75.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6305.11, + "new_cases_per_million": 47.766, + "new_cases_smoothed_per_million": 84.614, + "total_deaths_per_million": 119.415, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-08-17", + "total_cases": 4035.0, + "new_cases": 75.0, + "new_cases_smoothed": 59.571, + "total_deaths": 77.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6424.525, + "new_cases_per_million": 119.415, + "new_cases_smoothed_per_million": 94.85, + "total_deaths_per_million": 122.599, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.957 + }, + { + "date": "2020-08-18", + "total_cases": 4085.0, + "new_cases": 50.0, + "new_cases_smoothed": 55.571, + "total_deaths": 80.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6504.135, + "new_cases_per_million": 79.61, + "new_cases_smoothed_per_million": 88.481, + "total_deaths_per_million": 127.376, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 2.729 + }, + { + "date": "2020-08-19", + "total_cases": 4132.0, + "new_cases": 47.0, + "new_cases_smoothed": 54.857, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6578.968, + "new_cases_per_million": 74.833, + "new_cases_smoothed_per_million": 87.344, + "total_deaths_per_million": 127.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-20", + "total_cases": 4174.0, + "new_cases": 42.0, + "new_cases_smoothed": 51.571, + "total_deaths": 80.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6645.841, + "new_cases_per_million": 66.872, + "new_cases_smoothed_per_million": 82.112, + "total_deaths_per_million": 127.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-08-21", + "total_cases": 4229.0, + "new_cases": 55.0, + "new_cases_smoothed": 53.143, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6733.412, + "new_cases_per_million": 87.571, + "new_cases_smoothed_per_million": 84.614, + "total_deaths_per_million": 128.968, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-08-22", + "total_cases": 4277.0, + "new_cases": 48.0, + "new_cases_smoothed": 49.571, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6809.837, + "new_cases_per_million": 76.426, + "new_cases_smoothed_per_million": 78.928, + "total_deaths_per_million": 130.56, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-23", + "total_cases": 4311.0, + "new_cases": 34.0, + "new_cases_smoothed": 50.143, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6863.972, + "new_cases_per_million": 54.135, + "new_cases_smoothed_per_million": 79.837, + "total_deaths_per_million": 133.745, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-24", + "total_cases": 4343.0, + "new_cases": 32.0, + "new_cases_smoothed": 44.0, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6914.922, + "new_cases_per_million": 50.95, + "new_cases_smoothed_per_million": 70.057, + "total_deaths_per_million": 133.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-08-25", + "total_cases": 4378.0, + "new_cases": 35.0, + "new_cases_smoothed": 41.857, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6970.649, + "new_cases_per_million": 55.727, + "new_cases_smoothed_per_million": 66.645, + "total_deaths_per_million": 133.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.91 + }, + { + "date": "2020-08-26", + "total_cases": 4444.0, + "new_cases": 66.0, + "new_cases_smoothed": 44.571, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7075.735, + "new_cases_per_million": 105.085, + "new_cases_smoothed_per_million": 70.967, + "total_deaths_per_million": 138.521, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 1.592 + }, + { + "date": "2020-08-27", + "total_cases": 4499.0, + "new_cases": 55.0, + "new_cases_smoothed": 46.429, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7163.306, + "new_cases_per_million": 87.571, + "new_cases_smoothed_per_million": 73.924, + "total_deaths_per_million": 140.114, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-08-28", + "total_cases": 4558.0, + "new_cases": 59.0, + "new_cases_smoothed": 47.0, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7257.245, + "new_cases_per_million": 93.94, + "new_cases_smoothed_per_million": 74.833, + "total_deaths_per_million": 141.706, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 1.82 + }, + { + "date": "2020-08-29", + "total_cases": 4663.0, + "new_cases": 105.0, + "new_cases_smoothed": 55.143, + "total_deaths": 92.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7424.426, + "new_cases_per_million": 167.181, + "new_cases_smoothed_per_million": 87.798, + "total_deaths_per_million": 146.482, + "new_deaths_per_million": 4.777, + "new_deaths_smoothed_per_million": 2.275 + }, + { + "date": "2020-08-30", + "total_cases": 4727.0, + "new_cases": 64.0, + "new_cases_smoothed": 59.429, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7526.327, + "new_cases_per_million": 101.901, + "new_cases_smoothed_per_million": 94.622, + "total_deaths_per_million": 148.075, + "new_deaths_per_million": 1.592, + "new_deaths_smoothed_per_million": 2.047 + }, + { + "date": "2020-08-31", + "total_cases": 4790.0, + "new_cases": 63.0, + "new_cases_smoothed": 63.857, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 7626.636, + "new_cases_per_million": 100.309, + "new_cases_smoothed_per_million": 101.673, + "total_deaths_per_million": 156.036, + "new_deaths_per_million": 7.961, + "new_deaths_smoothed_per_million": 3.184 + }, + { + "date": "2020-09-01", + "total_cases": 4835.0, + "new_cases": 45.0, + "new_cases_smoothed": 65.286, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 7698.285, + "new_cases_per_million": 71.649, + "new_cases_smoothed_per_million": 103.948, + "total_deaths_per_million": 159.22, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 3.639 + }, + { + "date": "2020-09-02", + "total_cases": 4917.0, + "new_cases": 82.0, + "new_cases_smoothed": 67.571, + "total_deaths": 102.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 7828.845, + "new_cases_per_million": 130.56, + "new_cases_smoothed_per_million": 107.587, + "total_deaths_per_million": 162.404, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 3.412 + }, + { + "date": "2020-09-03", + "total_cases": 5019.0, + "new_cases": 102.0, + "new_cases_smoothed": 74.286, + "total_deaths": 104.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 7991.249, + "new_cases_per_million": 162.404, + "new_cases_smoothed_per_million": 118.278, + "total_deaths_per_million": 165.589, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 3.639 + }, + { + "date": "2020-09-04", + "total_cases": 5165.0, + "new_cases": 146.0, + "new_cases_smoothed": 86.714, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 8223.71, + "new_cases_per_million": 232.461, + "new_cases_smoothed_per_million": 138.066, + "total_deaths_per_million": 165.589, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.412 + }, + { + "date": "2020-09-05", + "total_cases": 5275.0, + "new_cases": 110.0, + "new_cases_smoothed": 87.429, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 8398.852, + "new_cases_per_million": 175.142, + "new_cases_smoothed_per_million": 139.204, + "total_deaths_per_million": 168.773, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 3.184 + } + ] + }, + "MSR": { + "continent": "North America", + "location": "Montserrat", + "population": 4999.0, + "life_expectancy": 74.16, + "data": [ + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 200.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.96 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 200.04, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 800.16, + "new_cases_smoothed_per_million": 142.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-01", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 114.309, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1000.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-05", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1200.24, + "new_cases_per_million": 200.04, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-06", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1200.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1200.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1200.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-09", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1800.36, + "new_cases_per_million": 600.12, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-10", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1800.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-11", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1800.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 114.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-12", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1800.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 85.731, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-13", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 400.08, + "new_cases_smoothed_per_million": 142.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 142.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 142.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 57.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 57.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 57.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 57.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-04-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-04-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 200.04, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 72.22 + }, + { + "date": "2020-04-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 72.22 + }, + { + "date": "2020-04-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 72.22 + }, + { + "date": "2020-04-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 72.22 + }, + { + "date": "2020-04-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 72.22 + }, + { + "date": "2020-05-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 68.52 + }, + { + "date": "2020-05-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 28.577, + "stringency_index": 68.52 + }, + { + "date": "2020-05-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-05-31", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-06-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-07-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2200.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 200.04, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2400.48, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 200.04, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.577, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2600.52, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 200.04, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "MAR": { + "continent": "Africa", + "location": "Morocco", + "population": 36910558.0, + "population_density": 80.08, + "median_age": 29.6, + "aged_65_older": 6.769, + "aged_70_older": 4.209, + "gdp_per_capita": 7485.013, + "extreme_poverty": 1.0, + "cardiovasc_death_rate": 419.146, + "diabetes_prevalence": 7.14, + "female_smokers": 0.8, + "male_smokers": 47.1, + "hospital_beds_per_thousand": 1.1, + "life_expectancy": 76.68, + "data": [ + { + "date": "2020-02-07", + "total_tests": 9.0, + "total_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_tests": 10.0, + "total_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_tests": 11.0, + "total_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_tests": 12.0, + "total_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "new_tests": 1.0, + "total_tests": 13.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "new_tests": 1.0, + "total_tests": 14.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 0.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "new_tests": 1.0, + "total_tests": 15.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "new_tests": 2.0, + "total_tests": 17.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "new_tests": 2.0, + "total_tests": 19.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_tests": 25.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_tests": 29.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 33.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_tests": 2.0, + "total_tests": 35.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-05", + "new_tests": 7.0, + "total_tests": 42.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-06", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.054, + "new_cases_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 52.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-07", + "new_tests": 5.0, + "total_tests": 57.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-08", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 62.0, + "total_tests_per_thousand": 0.002, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 66.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 35.0, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.004, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 84.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 49.0, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-12", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.135, + "new_cases_per_million": 0.081, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 13.0, + "total_tests": 97.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 5.56 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.163, + "new_cases_per_million": 0.027, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 4.0, + "total_tests": 101.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 12.25, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.19, + "new_cases_per_million": 0.027, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 29.0, + "total_tests": 130.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 10.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-03-15", + "total_cases": 18.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.488, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 20.0, + "total_tests": 150.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 5.688, + "positive_rate": 0.17600000000000002, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-03-16", + "total_cases": 28.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.759, + "new_cases_per_million": 0.271, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 39.0, + "total_tests": 189.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 4.846, + "positive_rate": 0.20600000000000002, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-17", + "total_cases": 37.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.002, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 38.0, + "total_tests": 227.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 4.6, + "positive_rate": 0.217, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-18", + "total_cases": 44.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.192, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 90.0, + "total_tests": 317.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 5.5, + "positive_rate": 0.182, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 54.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.463, + "new_cases_per_million": 0.271, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 53.0, + "total_tests": 370.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 5.571000000000001, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 63.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.707, + "new_cases_per_million": 0.244, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 94.0, + "total_tests": 464.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 6.386, + "positive_rate": 0.157, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-21", + "total_cases": 86.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.33, + "new_cases_per_million": 0.623, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.081, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 73.0, + "total_tests": 537.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 5.138999999999999, + "positive_rate": 0.195, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-22", + "total_cases": 96.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.601, + "new_cases_per_million": 0.271, + "new_cases_smoothed_per_million": 0.302, + "total_deaths_per_million": 0.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 90.0, + "total_tests": 627.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 6.103, + "positive_rate": 0.16399999999999998, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-23", + "total_cases": 115.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.116, + "new_cases_per_million": 0.515, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.108, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 159.0, + "total_tests": 786.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 85.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 6.8389999999999995, + "positive_rate": 0.146, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-24", + "total_cases": 134.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.63, + "new_cases_per_million": 0.515, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.108, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 69.0, + "total_tests": 855.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 90.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 6.495, + "positive_rate": 0.154, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-25", + "total_cases": 170.0, + "new_cases": 36.0, + "new_cases_smoothed": 18.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.606, + "new_cases_per_million": 0.975, + "new_cases_smoothed_per_million": 0.488, + "total_deaths_per_million": 0.135, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 140.0, + "total_tests": 995.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 97.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 5.388999999999999, + "positive_rate": 0.18600000000000003, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 225.0, + "new_cases": 55.0, + "new_cases_smoothed": 24.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.096, + "new_cases_per_million": 1.49, + "new_cases_smoothed_per_million": 0.662, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 211.0, + "total_tests": 1206.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 4.871, + "positive_rate": 0.205, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-27", + "total_cases": 275.0, + "new_cases": 50.0, + "new_cases_smoothed": 30.286, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7.45, + "new_cases_per_million": 1.355, + "new_cases_smoothed_per_million": 0.821, + "total_deaths_per_million": 0.271, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 562.0, + "total_tests": 1768.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 186.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 6.142, + "positive_rate": 0.163, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-28", + "total_cases": 345.0, + "new_cases": 70.0, + "new_cases_smoothed": 37.0, + "total_deaths": 23.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 9.347, + "new_cases_per_million": 1.896, + "new_cases_smoothed_per_million": 1.002, + "total_deaths_per_million": 0.623, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 208.0, + "total_tests": 1976.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 206.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.568, + "positive_rate": 0.18, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 358.0, + "new_cases": 13.0, + "new_cases_smoothed": 37.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 9.699, + "new_cases_per_million": 0.352, + "new_cases_smoothed_per_million": 1.014, + "total_deaths_per_million": 0.623, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 297.0, + "total_tests": 2273.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 235.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 6.279, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 479.0, + "new_cases": 121.0, + "new_cases_smoothed": 52.0, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 12.977, + "new_cases_per_million": 3.278, + "new_cases_smoothed_per_million": 1.409, + "total_deaths_per_million": 0.704, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 478.0, + "total_tests": 2751.0, + "total_tests_per_thousand": 0.075, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 281.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 5.404, + "positive_rate": 0.185, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 556.0, + "new_cases": 77.0, + "new_cases_smoothed": 60.286, + "total_deaths": 33.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 15.063, + "new_cases_per_million": 2.086, + "new_cases_smoothed_per_million": 1.633, + "total_deaths_per_million": 0.894, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 149.0, + "total_tests": 2900.0, + "total_tests_per_thousand": 0.079, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 4.843999999999999, + "positive_rate": 0.20600000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 617.0, + "new_cases": 61.0, + "new_cases_smoothed": 63.857, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 16.716, + "new_cases_per_million": 1.653, + "new_cases_smoothed_per_million": 1.73, + "total_deaths_per_million": 0.975, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 445.0, + "total_tests": 3345.0, + "total_tests_per_thousand": 0.091, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 336.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 5.2620000000000005, + "positive_rate": 0.19, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 654.0, + "new_cases": 37.0, + "new_cases_smoothed": 61.286, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 17.719, + "new_cases_per_million": 1.002, + "new_cases_smoothed_per_million": 1.66, + "total_deaths_per_million": 1.057, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 279.0, + "total_tests": 3624.0, + "total_tests_per_thousand": 0.098, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 345.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 5.629, + "positive_rate": 0.17800000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 708.0, + "new_cases": 54.0, + "new_cases_smoothed": 61.857, + "total_deaths": 44.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 19.182, + "new_cases_per_million": 1.463, + "new_cases_smoothed_per_million": 1.676, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 286.0, + "total_tests": 3910.0, + "total_tests_per_thousand": 0.106, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 306.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 4.947, + "positive_rate": 0.20199999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 708.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.857, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 19.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.405, + "total_deaths_per_million": 1.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 411.0, + "total_tests": 4321.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 6.46, + "positive_rate": 0.155, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 919.0, + "new_cases": 211.0, + "new_cases_smoothed": 80.143, + "total_deaths": 59.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 24.898, + "new_cases_per_million": 5.717, + "new_cases_smoothed_per_million": 2.171, + "total_deaths_per_million": 1.598, + "new_deaths_per_million": 0.406, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 527.0, + "total_tests": 4848.0, + "total_tests_per_thousand": 0.131, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 4.592, + "positive_rate": 0.218, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 1021.0, + "new_cases": 102.0, + "new_cases_smoothed": 77.429, + "total_deaths": 70.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 27.661, + "new_cases_per_million": 2.763, + "new_cases_smoothed_per_million": 2.098, + "total_deaths_per_million": 1.896, + "new_deaths_per_million": 0.298, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 256.0, + "total_tests": 5104.0, + "total_tests_per_thousand": 0.138, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 336.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 4.3389999999999995, + "positive_rate": 0.23, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 1120.0, + "new_cases": 99.0, + "new_cases_smoothed": 80.571, + "total_deaths": 80.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 30.344, + "new_cases_per_million": 2.682, + "new_cases_smoothed_per_million": 2.183, + "total_deaths_per_million": 2.167, + "new_deaths_per_million": 0.271, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 333.0, + "total_tests": 5437.0, + "total_tests_per_thousand": 0.147, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 4.493, + "positive_rate": 0.223, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 1184.0, + "new_cases": 64.0, + "new_cases_smoothed": 81.0, + "total_deaths": 90.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 32.078, + "new_cases_per_million": 1.734, + "new_cases_smoothed_per_million": 2.194, + "total_deaths_per_million": 2.438, + "new_deaths_per_million": 0.271, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 315.0, + "total_tests": 5752.0, + "total_tests_per_thousand": 0.156, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 344.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 4.247, + "positive_rate": 0.235, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 1275.0, + "new_cases": 91.0, + "new_cases_smoothed": 88.714, + "total_deaths": 93.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 34.543, + "new_cases_per_million": 2.465, + "new_cases_smoothed_per_million": 2.403, + "total_deaths_per_million": 2.52, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 631.0, + "total_tests": 6383.0, + "total_tests_per_thousand": 0.173, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 4.441, + "positive_rate": 0.225, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 1374.0, + "new_cases": 99.0, + "new_cases_smoothed": 95.143, + "total_deaths": 97.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 37.225, + "new_cases_per_million": 2.682, + "new_cases_smoothed_per_million": 2.578, + "total_deaths_per_million": 2.628, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 856.0, + "total_tests": 7239.0, + "total_tests_per_thousand": 0.196, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 476.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 5.003, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 1448.0, + "new_cases": 74.0, + "new_cases_smoothed": 105.714, + "total_deaths": 107.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 39.23, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 2.864, + "total_deaths_per_million": 2.899, + "new_deaths_per_million": 0.271, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 709.0, + "total_tests": 7948.0, + "total_tests_per_thousand": 0.215, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 518.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 4.9, + "positive_rate": 0.204, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 1545.0, + "new_cases": 97.0, + "new_cases_smoothed": 89.429, + "total_deaths": 111.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 41.858, + "new_cases_per_million": 2.628, + "new_cases_smoothed_per_million": 2.423, + "total_deaths_per_million": 3.007, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.201, + "new_tests": 656.0, + "total_tests": 8604.0, + "total_tests_per_thousand": 0.233, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 537.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 6.005, + "positive_rate": 0.16699999999999998, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 1661.0, + "new_cases": 116.0, + "new_cases_smoothed": 91.429, + "total_deaths": 118.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 45.001, + "new_cases_per_million": 3.143, + "new_cases_smoothed_per_million": 2.477, + "total_deaths_per_million": 3.197, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 524.0, + "total_tests": 9128.0, + "total_tests_per_thousand": 0.247, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 575.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 6.289, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 1763.0, + "new_cases": 102.0, + "new_cases_smoothed": 91.857, + "total_deaths": 126.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 47.764, + "new_cases_per_million": 2.763, + "new_cases_smoothed_per_million": 2.489, + "total_deaths_per_million": 3.414, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 794.0, + "total_tests": 9922.0, + "total_tests_per_thousand": 0.269, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 641.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 6.978, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 1888.0, + "new_cases": 125.0, + "new_cases_smoothed": 100.571, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 51.151, + "new_cases_per_million": 3.387, + "new_cases_smoothed_per_million": 2.725, + "total_deaths_per_million": 3.414, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 728.0, + "total_tests": 10650.0, + "total_tests_per_thousand": 0.289, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 700.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 6.96, + "positive_rate": 0.14400000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 2024.0, + "new_cases": 136.0, + "new_cases_smoothed": 107.0, + "total_deaths": 127.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 54.835, + "new_cases_per_million": 3.685, + "new_cases_smoothed_per_million": 2.899, + "total_deaths_per_million": 3.441, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 1346.0, + "total_tests": 11996.0, + "total_tests_per_thousand": 0.325, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 802.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 7.495, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 2283.0, + "new_cases": 259.0, + "new_cases_smoothed": 129.857, + "total_deaths": 130.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 61.852, + "new_cases_per_million": 7.017, + "new_cases_smoothed_per_million": 3.518, + "total_deaths_per_million": 3.522, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 956.0, + "total_tests": 12952.0, + "total_tests_per_thousand": 0.351, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 816.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 6.284, + "positive_rate": 0.159, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 2564.0, + "new_cases": 281.0, + "new_cases_smoothed": 159.429, + "total_deaths": 135.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 69.465, + "new_cases_per_million": 7.613, + "new_cases_smoothed_per_million": 4.319, + "total_deaths_per_million": 3.657, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 737.0, + "total_tests": 13689.0, + "total_tests_per_thousand": 0.371, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 5.143, + "positive_rate": 0.19399999999999998, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 2685.0, + "new_cases": 121.0, + "new_cases_smoothed": 162.857, + "total_deaths": 137.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 72.743, + "new_cases_per_million": 3.278, + "new_cases_smoothed_per_million": 4.412, + "total_deaths_per_million": 3.712, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 1434.0, + "total_tests": 15123.0, + "total_tests_per_thousand": 0.41, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 931.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 5.7170000000000005, + "positive_rate": 0.175, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 2855.0, + "new_cases": 170.0, + "new_cases_smoothed": 170.571, + "total_deaths": 141.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 77.349, + "new_cases_per_million": 4.606, + "new_cases_smoothed_per_million": 4.621, + "total_deaths_per_million": 3.82, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1263.0, + "total_tests": 16386.0, + "total_tests_per_thousand": 0.444, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 6.08, + "positive_rate": 0.16399999999999998, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 3046.0, + "new_cases": 191.0, + "new_cases_smoothed": 183.286, + "total_deaths": 143.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 82.524, + "new_cases_per_million": 5.175, + "new_cases_smoothed_per_million": 4.966, + "total_deaths_per_million": 3.874, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 1714.0, + "total_tests": 18100.0, + "total_tests_per_thousand": 0.49, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 6.372999999999999, + "positive_rate": 0.157, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 3209.0, + "new_cases": 163.0, + "new_cases_smoothed": 188.714, + "total_deaths": 145.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 86.94, + "new_cases_per_million": 4.416, + "new_cases_smoothed_per_million": 5.113, + "total_deaths_per_million": 3.928, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1785.0, + "total_tests": 19885.0, + "total_tests_per_thousand": 0.539, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1319.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 6.989, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 3377.0, + "new_cases": 168.0, + "new_cases_smoothed": 193.286, + "total_deaths": 149.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 91.491, + "new_cases_per_million": 4.552, + "new_cases_smoothed_per_million": 5.237, + "total_deaths_per_million": 4.037, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 2062.0, + "total_tests": 21947.0, + "total_tests_per_thousand": 0.595, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1422.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 7.357, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 3568.0, + "new_cases": 191.0, + "new_cases_smoothed": 183.571, + "total_deaths": 155.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 96.666, + "new_cases_per_million": 5.175, + "new_cases_smoothed_per_million": 4.973, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 1986.0, + "total_tests": 23933.0, + "total_tests_per_thousand": 0.648, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1569.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 8.547, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 3758.0, + "new_cases": 190.0, + "new_cases_smoothed": 170.571, + "total_deaths": 158.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 101.814, + "new_cases_per_million": 5.148, + "new_cases_smoothed_per_million": 4.621, + "total_deaths_per_million": 4.281, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1510.0, + "total_tests": 25443.0, + "total_tests_per_thousand": 0.689, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 1679.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 9.843, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 3897.0, + "new_cases": 139.0, + "new_cases_smoothed": 173.143, + "total_deaths": 159.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 105.58, + "new_cases_per_million": 3.766, + "new_cases_smoothed_per_million": 4.691, + "total_deaths_per_million": 4.308, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 1956.0, + "total_tests": 27399.0, + "total_tests_per_thousand": 0.742, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 1754.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 10.13, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 4065.0, + "new_cases": 168.0, + "new_cases_smoothed": 172.857, + "total_deaths": 161.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 110.131, + "new_cases_per_million": 4.552, + "new_cases_smoothed_per_million": 4.683, + "total_deaths_per_million": 4.362, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1855.0, + "total_tests": 29254.0, + "total_tests_per_thousand": 0.793, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1838.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 10.633, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 4120.0, + "new_cases": 55.0, + "new_cases_smoothed": 153.429, + "total_deaths": 162.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 111.621, + "new_cases_per_million": 1.49, + "new_cases_smoothed_per_million": 4.157, + "total_deaths_per_million": 4.389, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1996.0, + "total_tests": 31250.0, + "total_tests_per_thousand": 0.847, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1879.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 12.247, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 4252.0, + "new_cases": 132.0, + "new_cases_smoothed": 149.0, + "total_deaths": 165.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 115.197, + "new_cases_per_million": 3.576, + "new_cases_smoothed_per_million": 4.037, + "total_deaths_per_million": 4.47, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1680.0, + "total_tests": 32930.0, + "total_tests_per_thousand": 0.892, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1864.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 12.51, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 4321.0, + "new_cases": 69.0, + "new_cases_smoothed": 134.857, + "total_deaths": 168.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 117.067, + "new_cases_per_million": 1.869, + "new_cases_smoothed_per_million": 3.654, + "total_deaths_per_million": 4.552, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 1911.0, + "total_tests": 34841.0, + "total_tests_per_thousand": 0.944, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 13.659, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 4423.0, + "new_cases": 102.0, + "new_cases_smoothed": 122.143, + "total_deaths": 170.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 119.83, + "new_cases_per_million": 2.763, + "new_cases_smoothed_per_million": 3.309, + "total_deaths_per_million": 4.606, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 2165.0, + "total_tests": 37006.0, + "total_tests_per_thousand": 1.003, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1868.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 15.294, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 4569.0, + "new_cases": 146.0, + "new_cases_smoothed": 115.857, + "total_deaths": 171.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 123.786, + "new_cases_per_million": 3.956, + "new_cases_smoothed_per_million": 3.139, + "total_deaths_per_million": 4.633, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2361.0, + "total_tests": 39367.0, + "total_tests_per_thousand": 1.067, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1989.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 17.168, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 4729.0, + "new_cases": 160.0, + "new_cases_smoothed": 118.857, + "total_deaths": 173.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 128.121, + "new_cases_per_million": 4.335, + "new_cases_smoothed_per_million": 3.22, + "total_deaths_per_million": 4.687, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 2745.0, + "total_tests": 42112.0, + "total_tests_per_thousand": 1.141, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 2102.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 17.685, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 4903.0, + "new_cases": 174.0, + "new_cases_smoothed": 119.714, + "total_deaths": 174.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 132.835, + "new_cases_per_million": 4.714, + "new_cases_smoothed_per_million": 3.243, + "total_deaths_per_million": 4.714, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3190.0, + "total_tests": 45302.0, + "total_tests_per_thousand": 1.227, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 2293.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 19.154, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-05", + "total_cases": 5043.0, + "new_cases": 140.0, + "new_cases_smoothed": 131.857, + "total_deaths": 179.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 136.628, + "new_cases_per_million": 3.793, + "new_cases_smoothed_per_million": 3.572, + "total_deaths_per_million": 4.85, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 4268.0, + "total_tests": 49570.0, + "total_tests_per_thousand": 1.343, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 2617.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 19.847, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-06", + "total_cases": 5219.0, + "new_cases": 176.0, + "new_cases_smoothed": 138.143, + "total_deaths": 181.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 141.396, + "new_cases_per_million": 4.768, + "new_cases_smoothed_per_million": 3.743, + "total_deaths_per_million": 4.904, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 3388.0, + "total_tests": 52958.0, + "total_tests_per_thousand": 1.435, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 2861.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 20.71, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-07", + "total_cases": 5408.0, + "new_cases": 189.0, + "new_cases_smoothed": 155.286, + "total_deaths": 183.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 146.516, + "new_cases_per_million": 5.12, + "new_cases_smoothed_per_million": 4.207, + "total_deaths_per_million": 4.958, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3534.0, + "total_tests": 56492.0, + "total_tests_per_thousand": 1.531, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 3093.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 19.918, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-08", + "total_cases": 5548.0, + "new_cases": 140.0, + "new_cases_smoothed": 160.714, + "total_deaths": 183.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 150.309, + "new_cases_per_million": 3.793, + "new_cases_smoothed_per_million": 4.354, + "total_deaths_per_million": 4.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3379.0, + "total_tests": 59871.0, + "total_tests_per_thousand": 1.622, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 3266.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 20.322, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-09", + "total_cases": 5711.0, + "new_cases": 163.0, + "new_cases_smoothed": 163.143, + "total_deaths": 186.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 154.725, + "new_cases_per_million": 4.416, + "new_cases_smoothed_per_million": 4.42, + "total_deaths_per_million": 5.039, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 3188.0, + "total_tests": 63059.0, + "total_tests_per_thousand": 1.708, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 3385.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 20.749000000000002, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-10", + "total_cases": 5910.0, + "new_cases": 199.0, + "new_cases_smoothed": 168.714, + "total_deaths": 186.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 160.117, + "new_cases_per_million": 5.391, + "new_cases_smoothed_per_million": 4.571, + "total_deaths_per_million": 5.039, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2865.0, + "total_tests": 65924.0, + "total_tests_per_thousand": 1.786, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 3402.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 20.164, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-11", + "total_cases": 6063.0, + "new_cases": 153.0, + "new_cases_smoothed": 165.714, + "total_deaths": 188.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 164.262, + "new_cases_per_million": 4.145, + "new_cases_smoothed_per_million": 4.49, + "total_deaths_per_million": 5.093, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 3056.0, + "total_tests": 68980.0, + "total_tests_per_thousand": 1.869, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 3383.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 20.415, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-12", + "total_cases": 6281.0, + "new_cases": 218.0, + "new_cases_smoothed": 176.857, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 170.168, + "new_cases_per_million": 5.906, + "new_cases_smoothed_per_million": 4.792, + "total_deaths_per_million": 5.093, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 2835.0, + "total_tests": 71815.0, + "total_tests_per_thousand": 1.946, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3178.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 17.969, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-13", + "total_cases": 6418.0, + "new_cases": 137.0, + "new_cases_smoothed": 171.286, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 173.88, + "new_cases_per_million": 3.712, + "new_cases_smoothed_per_million": 4.641, + "total_deaths_per_million": 5.093, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 4055.0, + "total_tests": 75870.0, + "total_tests_per_thousand": 2.056, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 3273.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 19.108, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-14", + "total_cases": 6512.0, + "new_cases": 94.0, + "new_cases_smoothed": 157.714, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 176.426, + "new_cases_per_million": 2.547, + "new_cases_smoothed_per_million": 4.273, + "total_deaths_per_million": 5.093, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 2052.0, + "total_tests": 77922.0, + "total_tests_per_thousand": 2.111, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 3061.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 19.409000000000002, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-15", + "total_cases": 6607.0, + "new_cases": 95.0, + "new_cases_smoothed": 151.286, + "total_deaths": 190.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 179.0, + "new_cases_per_million": 2.574, + "new_cases_smoothed_per_million": 4.099, + "total_deaths_per_million": 5.148, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3694.0, + "total_tests": 81616.0, + "total_tests_per_thousand": 2.211, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 3106.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 20.531, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-16", + "total_cases": 6652.0, + "new_cases": 45.0, + "new_cases_smoothed": 134.429, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 180.219, + "new_cases_per_million": 1.219, + "new_cases_smoothed_per_million": 3.642, + "total_deaths_per_million": 5.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3388.0, + "total_tests": 85004.0, + "total_tests_per_thousand": 2.303, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 3135.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 23.320999999999998, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-17", + "total_cases": 6741.0, + "new_cases": 89.0, + "new_cases_smoothed": 118.714, + "total_deaths": 192.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 182.631, + "new_cases_per_million": 2.411, + "new_cases_smoothed_per_million": 3.216, + "total_deaths_per_million": 5.202, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 4953.0, + "total_tests": 89957.0, + "total_tests_per_thousand": 2.437, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 3433.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 28.918000000000003, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-18", + "total_cases": 6870.0, + "new_cases": 129.0, + "new_cases_smoothed": 115.286, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 186.126, + "new_cases_per_million": 3.495, + "new_cases_smoothed_per_million": 3.123, + "total_deaths_per_million": 5.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 5579.0, + "total_tests": 95536.0, + "total_tests_per_thousand": 2.588, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 3794.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 32.91, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-19", + "total_cases": 6952.0, + "new_cases": 82.0, + "new_cases_smoothed": 95.857, + "total_deaths": 192.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 188.347, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 2.597, + "total_deaths_per_million": 5.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 4831.0, + "total_tests": 100367.0, + "total_tests_per_thousand": 2.719, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 4079.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 42.553000000000004, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-20", + "total_cases": 7023.0, + "new_cases": 71.0, + "new_cases_smoothed": 86.429, + "total_deaths": 193.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 190.271, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 2.342, + "total_deaths_per_million": 5.229, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 5637.0, + "total_tests": 106004.0, + "total_tests_per_thousand": 2.872, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 4305.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 49.81, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-21", + "total_cases": 7133.0, + "new_cases": 110.0, + "new_cases_smoothed": 88.714, + "total_deaths": 194.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 193.251, + "new_cases_per_million": 2.98, + "new_cases_smoothed_per_million": 2.403, + "total_deaths_per_million": 5.256, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 6993.0, + "total_tests": 112997.0, + "total_tests_per_thousand": 3.061, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 5011.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 56.485, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-22", + "total_cases": 7211.0, + "new_cases": 78.0, + "new_cases_smoothed": 86.286, + "total_deaths": 196.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 195.364, + "new_cases_per_million": 2.113, + "new_cases_smoothed_per_million": 2.338, + "total_deaths_per_million": 5.31, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 10405.0, + "total_tests": 123402.0, + "total_tests_per_thousand": 3.343, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 5969.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 69.17699999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-23", + "total_cases": 7332.0, + "new_cases": 121.0, + "new_cases_smoothed": 97.143, + "total_deaths": 197.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 198.642, + "new_cases_per_million": 3.278, + "new_cases_smoothed_per_million": 2.632, + "total_deaths_per_million": 5.337, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 10159.0, + "total_tests": 133561.0, + "total_tests_per_thousand": 3.619, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 6937.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 71.41, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-24", + "total_cases": 7406.0, + "new_cases": 74.0, + "new_cases_smoothed": 95.0, + "total_deaths": 198.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 200.647, + "new_cases_per_million": 2.005, + "new_cases_smoothed_per_million": 2.574, + "total_deaths_per_million": 5.364, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 9321.0, + "total_tests": 142882.0, + "total_tests_per_thousand": 3.871, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 7561.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 79.589, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-25", + "total_cases": 7433.0, + "new_cases": 27.0, + "new_cases_smoothed": 80.429, + "total_deaths": 199.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 201.379, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 5.391, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 9321.0, + "total_tests": 152203.0, + "total_tests_per_thousand": 4.124, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 8095.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 100.648, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-26", + "total_cases": 7532.0, + "new_cases": 99.0, + "new_cases_smoothed": 82.857, + "total_deaths": 200.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 204.061, + "new_cases_per_million": 2.682, + "new_cases_smoothed_per_million": 2.245, + "total_deaths_per_million": 5.419, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 9162.0, + "total_tests": 161365.0, + "total_tests_per_thousand": 4.372, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 8714.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 105.169, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-27", + "total_cases": 7577.0, + "new_cases": 45.0, + "new_cases_smoothed": 79.143, + "total_deaths": 202.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 205.28, + "new_cases_per_million": 1.219, + "new_cases_smoothed_per_million": 2.144, + "total_deaths_per_million": 5.473, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 9348.0, + "total_tests": 170713.0, + "total_tests_per_thousand": 4.625, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 9244.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 116.801, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-28", + "total_cases": 7601.0, + "new_cases": 24.0, + "new_cases_smoothed": 66.857, + "total_deaths": 202.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 205.93, + "new_cases_per_million": 0.65, + "new_cases_smoothed_per_million": 1.811, + "total_deaths_per_million": 5.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 9476.0, + "total_tests": 180189.0, + "total_tests_per_thousand": 4.882, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 9599.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 143.575, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-29", + "total_cases": 7643.0, + "new_cases": 42.0, + "new_cases_smoothed": 61.714, + "total_deaths": 202.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 207.068, + "new_cases_per_million": 1.138, + "new_cases_smoothed_per_million": 1.672, + "total_deaths_per_million": 5.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 9872.0, + "total_tests": 190061.0, + "total_tests_per_thousand": 5.149, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 9523.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 154.308, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-30", + "total_cases": 7714.0, + "new_cases": 71.0, + "new_cases_smoothed": 54.571, + "total_deaths": 202.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 208.992, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 1.478, + "total_deaths_per_million": 5.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 9937.0, + "total_tests": 199998.0, + "total_tests_per_thousand": 5.418, + "new_tests_per_thousand": 0.269, + "new_tests_smoothed": 9491.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_per_case": 173.919, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-31", + "total_cases": 7780.0, + "new_cases": 66.0, + "new_cases_smoothed": 53.429, + "total_deaths": 204.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 210.78, + "new_cases_per_million": 1.788, + "new_cases_smoothed_per_million": 1.448, + "total_deaths_per_million": 5.527, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 9141.0, + "total_tests": 209139.0, + "total_tests_per_thousand": 5.666, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 9465.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 177.15200000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-01", + "total_cases": 7807.0, + "new_cases": 27.0, + "new_cases_smoothed": 53.429, + "total_deaths": 205.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 211.511, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 1.448, + "total_deaths_per_million": 5.554, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 12415.0, + "total_tests": 221554.0, + "total_tests_per_thousand": 6.002, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 9907.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 185.425, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-02", + "total_cases": 7833.0, + "new_cases": 26.0, + "new_cases_smoothed": 43.0, + "total_deaths": 205.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 212.216, + "new_cases_per_million": 0.704, + "new_cases_smoothed_per_million": 1.165, + "total_deaths_per_million": 5.554, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 13097.0, + "total_tests": 234651.0, + "total_tests_per_thousand": 6.357, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 10469.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 243.465, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-03", + "total_cases": 7866.0, + "new_cases": 33.0, + "new_cases_smoothed": 41.286, + "total_deaths": 206.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 213.11, + "new_cases_per_million": 0.894, + "new_cases_smoothed_per_million": 1.119, + "total_deaths_per_million": 5.581, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 13173.0, + "total_tests": 247824.0, + "total_tests_per_thousand": 6.714, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 11016.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 266.824, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-04", + "total_cases": 7922.0, + "new_cases": 56.0, + "new_cases_smoothed": 45.857, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 214.627, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 1.242, + "total_deaths_per_million": 5.581, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 13186.0, + "total_tests": 261010.0, + "total_tests_per_thousand": 7.071, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 11546.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 251.782, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-05", + "total_cases": 8003.0, + "new_cases": 81.0, + "new_cases_smoothed": 51.429, + "total_deaths": 208.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 216.821, + "new_cases_per_million": 2.194, + "new_cases_smoothed_per_million": 1.393, + "total_deaths_per_million": 5.635, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 14339.0, + "total_tests": 275349.0, + "total_tests_per_thousand": 7.46, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 12184.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 236.91099999999997, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-06", + "total_cases": 8071.0, + "new_cases": 68.0, + "new_cases_smoothed": 51.0, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 218.664, + "new_cases_per_million": 1.842, + "new_cases_smoothed_per_million": 1.382, + "total_deaths_per_million": 5.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 14108.0, + "total_tests": 289457.0, + "total_tests_per_thousand": 7.842, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 12780.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 250.588, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-07", + "total_cases": 8132.0, + "new_cases": 61.0, + "new_cases_smoothed": 50.286, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 220.316, + "new_cases_per_million": 1.653, + "new_cases_smoothed_per_million": 1.362, + "total_deaths_per_million": 5.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16496.0, + "total_tests": 305953.0, + "total_tests_per_thousand": 8.289, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 13831.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 275.048, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-08", + "total_cases": 8224.0, + "new_cases": 92.0, + "new_cases_smoothed": 59.571, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 222.809, + "new_cases_per_million": 2.493, + "new_cases_smoothed_per_million": 1.614, + "total_deaths_per_million": 5.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 16750.0, + "total_tests": 322703.0, + "total_tests_per_thousand": 8.743, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 14450.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 242.56599999999997, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-09", + "total_cases": 8302.0, + "new_cases": 78.0, + "new_cases_smoothed": 67.0, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 224.922, + "new_cases_per_million": 2.113, + "new_cases_smoothed_per_million": 1.815, + "total_deaths_per_million": 5.635, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 16868.0, + "total_tests": 339571.0, + "total_tests_per_thousand": 9.2, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 14989.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 223.71599999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-10", + "total_cases": 8437.0, + "new_cases": 135.0, + "new_cases_smoothed": 81.571, + "total_deaths": 210.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 228.58, + "new_cases_per_million": 3.657, + "new_cases_smoothed_per_million": 2.21, + "total_deaths_per_million": 5.689, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16480.0, + "total_tests": 356051.0, + "total_tests_per_thousand": 9.646, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 15461.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 189.53900000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-06-11", + "total_cases": 8455.0, + "new_cases": 18.0, + "new_cases_smoothed": 76.143, + "total_deaths": 210.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 229.067, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 2.063, + "total_deaths_per_million": 5.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16540.0, + "total_tests": 372591.0, + "total_tests_per_thousand": 10.094, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 15940.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 209.343, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-12", + "total_cases": 8537.0, + "new_cases": 82.0, + "new_cases_smoothed": 76.286, + "total_deaths": 211.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 231.289, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 2.067, + "total_deaths_per_million": 5.717, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 16551.0, + "total_tests": 389142.0, + "total_tests_per_thousand": 10.543, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 16256.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 213.09400000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-13", + "total_cases": 8610.0, + "new_cases": 73.0, + "new_cases_smoothed": 77.0, + "total_deaths": 212.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 233.267, + "new_cases_per_million": 1.978, + "new_cases_smoothed_per_million": 2.086, + "total_deaths_per_million": 5.744, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16756.0, + "total_tests": 405898.0, + "total_tests_per_thousand": 10.997, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 16634.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 216.02599999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-14", + "total_cases": 8692.0, + "new_cases": 82.0, + "new_cases_smoothed": 80.0, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 235.488, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 2.167, + "total_deaths_per_million": 5.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16622.0, + "total_tests": 422520.0, + "total_tests_per_thousand": 11.447, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 16652.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 208.15, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-15", + "total_cases": 8734.0, + "new_cases": 42.0, + "new_cases_smoothed": 72.857, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 236.626, + "new_cases_per_million": 1.138, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 5.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16752.0, + "total_tests": 439272.0, + "total_tests_per_thousand": 11.901, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 16653.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 228.571, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-16", + "total_cases": 8838.0, + "new_cases": 104.0, + "new_cases_smoothed": 76.571, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 239.444, + "new_cases_per_million": 2.818, + "new_cases_smoothed_per_million": 2.075, + "total_deaths_per_million": 5.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 16496.0, + "total_tests": 455768.0, + "total_tests_per_thousand": 12.348, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 16600.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 216.791, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-17", + "total_cases": 8921.0, + "new_cases": 83.0, + "new_cases_smoothed": 69.143, + "total_deaths": 212.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 241.692, + "new_cases_per_million": 2.249, + "new_cases_smoothed_per_million": 1.873, + "total_deaths_per_million": 5.744, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 15968.0, + "total_tests": 471736.0, + "total_tests_per_thousand": 12.781, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 16526.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 239.012, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-18", + "total_cases": 8997.0, + "new_cases": 76.0, + "new_cases_smoothed": 77.429, + "total_deaths": 213.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 243.751, + "new_cases_per_million": 2.059, + "new_cases_smoothed_per_million": 2.098, + "total_deaths_per_million": 5.771, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 17211.0, + "total_tests": 488947.0, + "total_tests_per_thousand": 13.247, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 16622.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 214.675, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-19", + "total_cases": 9074.0, + "new_cases": 77.0, + "new_cases_smoothed": 76.714, + "total_deaths": 213.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 245.838, + "new_cases_per_million": 2.086, + "new_cases_smoothed_per_million": 2.078, + "total_deaths_per_million": 5.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 16689.0, + "total_tests": 505636.0, + "total_tests_per_thousand": 13.699, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 16642.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 216.935, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-20", + "total_cases": 9613.0, + "new_cases": 539.0, + "new_cases_smoothed": 143.286, + "total_deaths": 213.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 260.44, + "new_cases_per_million": 14.603, + "new_cases_smoothed_per_million": 3.882, + "total_deaths_per_million": 5.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 16530.0, + "total_tests": 522166.0, + "total_tests_per_thousand": 14.147, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 16610.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 115.92200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-21", + "total_cases": 9801.0, + "new_cases": 188.0, + "new_cases_smoothed": 158.429, + "total_deaths": 213.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 265.534, + "new_cases_per_million": 5.093, + "new_cases_smoothed_per_million": 4.292, + "total_deaths_per_million": 5.771, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 16025.0, + "total_tests": 538191.0, + "total_tests_per_thousand": 14.581, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 16524.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 104.29899999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-06-22", + "total_cases": 9977.0, + "new_cases": 176.0, + "new_cases_smoothed": 177.571, + "total_deaths": 214.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 270.302, + "new_cases_per_million": 4.768, + "new_cases_smoothed_per_million": 4.811, + "total_deaths_per_million": 5.798, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 18504.0, + "total_tests": 556695.0, + "total_tests_per_thousand": 15.082, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 16775.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 94.469, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-06-23", + "total_cases": 10172.0, + "new_cases": 195.0, + "new_cases_smoothed": 190.571, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 275.585, + "new_cases_per_million": 5.283, + "new_cases_smoothed_per_million": 5.163, + "total_deaths_per_million": 5.798, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 18481.0, + "total_tests": 575176.0, + "total_tests_per_thousand": 15.583, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 17058.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 89.51, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-06-24", + "total_cases": 10264.0, + "new_cases": 92.0, + "new_cases_smoothed": 191.857, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 278.078, + "new_cases_per_million": 2.493, + "new_cases_smoothed_per_million": 5.198, + "total_deaths_per_million": 5.798, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 16581.0, + "total_tests": 591757.0, + "total_tests_per_thousand": 16.032, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 17146.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 89.369, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-25", + "total_cases": 10907.0, + "new_cases": 643.0, + "new_cases_smoothed": 272.857, + "total_deaths": 216.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 295.498, + "new_cases_per_million": 17.42, + "new_cases_smoothed_per_million": 7.392, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 16736.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 61.336000000000006, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-26", + "total_cases": 11338.0, + "new_cases": 431.0, + "new_cases_smoothed": 323.429, + "total_deaths": 217.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 307.175, + "new_cases_per_million": 11.677, + "new_cases_smoothed_per_million": 8.762, + "total_deaths_per_million": 5.879, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.015, + "total_tests": 620435.0, + "total_tests_per_thousand": 16.809, + "new_tests_smoothed": 16400.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 50.707, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-27", + "total_cases": 11633.0, + "new_cases": 295.0, + "new_cases_smoothed": 288.571, + "total_deaths": 218.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 315.167, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 7.818, + "total_deaths_per_million": 5.906, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 13059.0, + "total_tests": 633494.0, + "total_tests_per_thousand": 17.163, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 15904.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 55.113, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-28", + "total_cases": 11877.0, + "new_cases": 244.0, + "new_cases_smoothed": 296.571, + "total_deaths": 220.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 321.778, + "new_cases_per_million": 6.611, + "new_cases_smoothed_per_million": 8.035, + "total_deaths_per_million": 5.96, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 12701.0, + "total_tests": 646195.0, + "total_tests_per_thousand": 17.507, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 15429.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 52.025, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-29", + "total_cases": 12052.0, + "new_cases": 175.0, + "new_cases_smoothed": 296.429, + "total_deaths": 221.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 326.519, + "new_cases_per_million": 4.741, + "new_cases_smoothed_per_million": 8.031, + "total_deaths_per_million": 5.987, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 16619.0, + "total_tests": 662814.0, + "total_tests_per_thousand": 17.957, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 15160.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 51.141999999999996, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-30", + "total_cases": 12290.0, + "new_cases": 238.0, + "new_cases_smoothed": 302.571, + "total_deaths": 225.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 332.967, + "new_cases_per_million": 6.448, + "new_cases_smoothed_per_million": 8.197, + "total_deaths_per_million": 6.096, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 18377.0, + "total_tests": 681191.0, + "total_tests_per_thousand": 18.455, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 15145.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 50.053999999999995, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-01", + "total_cases": 12533.0, + "new_cases": 243.0, + "new_cases_smoothed": 324.143, + "total_deaths": 228.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 339.551, + "new_cases_per_million": 6.583, + "new_cases_smoothed_per_million": 8.782, + "total_deaths_per_million": 6.177, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 16937.0, + "total_tests": 698128.0, + "total_tests_per_thousand": 18.914, + "new_tests_per_thousand": 0.459, + "new_tests_smoothed": 15196.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 46.881, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-02", + "total_cases": 12636.0, + "new_cases": 103.0, + "new_cases_smoothed": 247.0, + "total_deaths": 228.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 342.341, + "new_cases_per_million": 2.791, + "new_cases_smoothed_per_million": 6.692, + "total_deaths_per_million": 6.177, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 17725.0, + "total_tests": 715853.0, + "total_tests_per_thousand": 19.394, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 15680.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 63.482, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-03", + "total_cases": 12969.0, + "new_cases": 333.0, + "new_cases_smoothed": 233.0, + "total_deaths": 229.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 351.363, + "new_cases_per_million": 9.022, + "new_cases_smoothed_per_million": 6.313, + "total_deaths_per_million": 6.204, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 16641.0, + "total_tests": 732494.0, + "total_tests_per_thousand": 19.845, + "new_tests_per_thousand": 0.451, + "new_tests_smoothed": 16008.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 68.704, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-04", + "total_cases": 13288.0, + "new_cases": 319.0, + "new_cases_smoothed": 236.429, + "total_deaths": 230.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 360.005, + "new_cases_per_million": 8.643, + "new_cases_smoothed_per_million": 6.405, + "total_deaths_per_million": 6.231, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 15955.0, + "total_tests": 748449.0, + "total_tests_per_thousand": 20.277, + "new_tests_per_thousand": 0.432, + "new_tests_smoothed": 16422.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 69.459, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-05", + "total_cases": 13822.0, + "new_cases": 534.0, + "new_cases_smoothed": 277.857, + "total_deaths": 232.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 374.473, + "new_cases_per_million": 14.467, + "new_cases_smoothed_per_million": 7.528, + "total_deaths_per_million": 6.285, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 17131.0, + "total_tests": 765580.0, + "total_tests_per_thousand": 20.741, + "new_tests_per_thousand": 0.464, + "new_tests_smoothed": 17055.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 61.38, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-06", + "total_cases": 14215.0, + "new_cases": 393.0, + "new_cases_smoothed": 309.0, + "total_deaths": 235.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 385.12, + "new_cases_per_million": 10.647, + "new_cases_smoothed_per_million": 8.372, + "total_deaths_per_million": 6.367, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 18059.0, + "total_tests": 783639.0, + "total_tests_per_thousand": 21.231, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 17261.0, + "new_tests_smoothed_per_thousand": 0.468, + "tests_per_case": 55.861000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-07", + "total_cases": 14329.0, + "new_cases": 114.0, + "new_cases_smoothed": 291.286, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 388.209, + "new_cases_per_million": 3.089, + "new_cases_smoothed_per_million": 7.892, + "total_deaths_per_million": 6.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 17690.0, + "total_tests": 801329.0, + "total_tests_per_thousand": 21.71, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 17163.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 58.922, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-08", + "total_cases": 14329.0, + "new_cases": 0.0, + "new_cases_smoothed": 256.571, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 388.209, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.951, + "total_deaths_per_million": 6.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 17795.0, + "total_tests": 819124.0, + "total_tests_per_thousand": 22.192, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 17285.0, + "new_tests_smoothed_per_thousand": 0.468, + "tests_per_case": 67.369, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-09", + "total_cases": 14771.0, + "new_cases": 442.0, + "new_cases_smoothed": 305.0, + "total_deaths": 242.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 400.184, + "new_cases_per_million": 11.975, + "new_cases_smoothed_per_million": 8.263, + "total_deaths_per_million": 6.556, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 16140.0, + "total_tests": 835264.0, + "total_tests_per_thousand": 22.629, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 17059.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 55.931000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-10", + "total_cases": 14949.0, + "new_cases": 178.0, + "new_cases_smoothed": 282.857, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 405.006, + "new_cases_per_million": 4.822, + "new_cases_smoothed_per_million": 7.663, + "total_deaths_per_million": 6.556, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 13833.0, + "total_tests": 849097.0, + "total_tests_per_thousand": 23.004, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 16658.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 58.891999999999996, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-11", + "total_cases": 15328.0, + "new_cases": 379.0, + "new_cases_smoothed": 291.429, + "total_deaths": 243.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 415.274, + "new_cases_per_million": 10.268, + "new_cases_smoothed_per_million": 7.896, + "total_deaths_per_million": 6.583, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 15497.0, + "total_tests": 864594.0, + "total_tests_per_thousand": 23.424, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 16592.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 56.933, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-12", + "total_cases": 15542.0, + "new_cases": 214.0, + "new_cases_smoothed": 245.714, + "total_deaths": 245.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 421.072, + "new_cases_per_million": 5.798, + "new_cases_smoothed_per_million": 6.657, + "total_deaths_per_million": 6.638, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 14032.0, + "total_tests": 878626.0, + "total_tests_per_thousand": 23.804, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 16149.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 65.723, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-13", + "total_cases": 15745.0, + "new_cases": 203.0, + "new_cases_smoothed": 218.571, + "total_deaths": 250.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 426.572, + "new_cases_per_million": 5.5, + "new_cases_smoothed_per_million": 5.922, + "total_deaths_per_million": 6.773, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 18012.0, + "total_tests": 896638.0, + "total_tests_per_thousand": 24.292, + "new_tests_per_thousand": 0.488, + "new_tests_smoothed": 16143.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 73.857, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-14", + "total_cases": 15936.0, + "new_cases": 191.0, + "new_cases_smoothed": 229.571, + "total_deaths": 255.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 431.746, + "new_cases_per_million": 5.175, + "new_cases_smoothed_per_million": 6.22, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 18502.0, + "total_tests": 915140.0, + "total_tests_per_thousand": 24.793, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 16259.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 70.82300000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-15", + "total_cases": 16097.0, + "new_cases": 161.0, + "new_cases_smoothed": 252.571, + "total_deaths": 257.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 436.108, + "new_cases_per_million": 4.362, + "new_cases_smoothed_per_million": 6.843, + "total_deaths_per_million": 6.963, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 18908.0, + "total_tests": 934048.0, + "total_tests_per_thousand": 25.306, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 16418.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 65.003, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-16", + "total_cases": 16262.0, + "new_cases": 165.0, + "new_cases_smoothed": 213.0, + "total_deaths": 259.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 440.579, + "new_cases_per_million": 4.47, + "new_cases_smoothed_per_million": 5.771, + "total_deaths_per_million": 7.017, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 19667.0, + "total_tests": 953715.0, + "total_tests_per_thousand": 25.839, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 16922.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 79.446, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-17", + "total_cases": 16424.0, + "new_cases": 162.0, + "new_cases_smoothed": 210.714, + "total_deaths": 260.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 444.968, + "new_cases_per_million": 4.389, + "new_cases_smoothed_per_million": 5.709, + "total_deaths_per_million": 7.044, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 19689.0, + "total_tests": 973404.0, + "total_tests_per_thousand": 26.372, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 17758.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 84.275, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-18", + "total_cases": 16726.0, + "new_cases": 302.0, + "new_cases_smoothed": 199.714, + "total_deaths": 264.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 453.149, + "new_cases_per_million": 8.182, + "new_cases_smoothed_per_million": 5.411, + "total_deaths_per_million": 7.152, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 17110.0, + "total_tests": 990514.0, + "total_tests_per_thousand": 26.836, + "new_tests_per_thousand": 0.464, + "new_tests_smoothed": 17989.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 90.074, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-19", + "total_cases": 17015.0, + "new_cases": 289.0, + "new_cases_smoothed": 210.429, + "total_deaths": 269.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 460.979, + "new_cases_per_million": 7.83, + "new_cases_smoothed_per_million": 5.701, + "total_deaths_per_million": 7.288, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.093, + "new_tests": 18812.0, + "total_tests": 1009326.0, + "total_tests_per_thousand": 27.345, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 18671.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 88.728, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-20", + "total_cases": 17236.0, + "new_cases": 221.0, + "new_cases_smoothed": 213.0, + "total_deaths": 273.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 466.967, + "new_cases_per_million": 5.987, + "new_cases_smoothed_per_million": 5.771, + "total_deaths_per_million": 7.396, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 18447.0, + "total_tests": 1027773.0, + "total_tests_per_thousand": 27.845, + "new_tests_per_thousand": 0.5, + "new_tests_smoothed": 18734.0, + "new_tests_smoothed_per_thousand": 0.508, + "tests_per_case": 87.95299999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-21", + "total_cases": 17562.0, + "new_cases": 326.0, + "new_cases_smoothed": 232.286, + "total_deaths": 276.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 475.799, + "new_cases_per_million": 8.832, + "new_cases_smoothed_per_million": 6.293, + "total_deaths_per_million": 7.478, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 19033.0, + "total_tests": 1046806.0, + "total_tests_per_thousand": 28.361, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 18809.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 80.97399999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-22", + "total_cases": 17742.0, + "new_cases": 180.0, + "new_cases_smoothed": 235.0, + "total_deaths": 280.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 480.675, + "new_cases_per_million": 4.877, + "new_cases_smoothed_per_million": 6.367, + "total_deaths_per_million": 7.586, + "new_deaths_per_million": 0.108, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 19027.0, + "total_tests": 1065833.0, + "total_tests_per_thousand": 28.876, + "new_tests_per_thousand": 0.515, + "new_tests_smoothed": 18826.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 80.111, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-23", + "total_cases": 17962.0, + "new_cases": 220.0, + "new_cases_smoothed": 242.857, + "total_deaths": 285.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 486.636, + "new_cases_per_million": 5.96, + "new_cases_smoothed_per_million": 6.58, + "total_deaths_per_million": 7.721, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 19657.0, + "total_tests": 1085490.0, + "total_tests_per_thousand": 29.409, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 18825.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 77.515, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-24", + "total_cases": 18264.0, + "new_cases": 302.0, + "new_cases_smoothed": 262.857, + "total_deaths": 292.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 494.818, + "new_cases_per_million": 8.182, + "new_cases_smoothed_per_million": 7.121, + "total_deaths_per_million": 7.911, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.124, + "new_tests": 19781.0, + "total_tests": 1105271.0, + "total_tests_per_thousand": 29.945, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 18838.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 71.666, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-25", + "total_cases": 18834.0, + "new_cases": 570.0, + "new_cases_smoothed": 301.143, + "total_deaths": 299.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 510.261, + "new_cases_per_million": 15.443, + "new_cases_smoothed_per_million": 8.159, + "total_deaths_per_million": 8.101, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 20942.0, + "total_tests": 1126213.0, + "total_tests_per_thousand": 30.512, + "new_tests_per_thousand": 0.567, + "new_tests_smoothed": 19386.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 64.375, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-26", + "total_cases": 19645.0, + "new_cases": 811.0, + "new_cases_smoothed": 375.714, + "total_deaths": 305.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 532.233, + "new_cases_per_million": 21.972, + "new_cases_smoothed_per_million": 10.179, + "total_deaths_per_million": 8.263, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 20960.0, + "total_tests": 1147173.0, + "total_tests_per_thousand": 31.08, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 19692.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 52.412, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-27", + "total_cases": 20278.0, + "new_cases": 633.0, + "new_cases_smoothed": 434.571, + "total_deaths": 313.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 549.382, + "new_cases_per_million": 17.15, + "new_cases_smoothed_per_million": 11.774, + "total_deaths_per_million": 8.48, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 20940.0, + "total_tests": 1168113.0, + "total_tests_per_thousand": 31.647, + "new_tests_per_thousand": 0.567, + "new_tests_smoothed": 20049.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 46.135, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-28", + "total_cases": 20887.0, + "new_cases": 609.0, + "new_cases_smoothed": 475.0, + "total_deaths": 316.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 565.881, + "new_cases_per_million": 16.499, + "new_cases_smoothed_per_million": 12.869, + "total_deaths_per_million": 8.561, + "new_deaths_per_million": 0.081, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 20688.0, + "total_tests": 1188801.0, + "total_tests_per_thousand": 32.208, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 20285.0, + "new_tests_smoothed_per_thousand": 0.55, + "tests_per_case": 42.705, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-29", + "total_cases": 21387.0, + "new_cases": 500.0, + "new_cases_smoothed": 520.714, + "total_deaths": 327.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 579.428, + "new_cases_per_million": 13.546, + "new_cases_smoothed_per_million": 14.107, + "total_deaths_per_million": 8.859, + "new_deaths_per_million": 0.298, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 21234.0, + "total_tests": 1210035.0, + "total_tests_per_thousand": 32.783, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 20600.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 39.561, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-30", + "total_cases": 22213.0, + "new_cases": 826.0, + "new_cases_smoothed": 607.286, + "total_deaths": 334.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 601.806, + "new_cases_per_million": 22.378, + "new_cases_smoothed_per_million": 16.453, + "total_deaths_per_million": 9.049, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 21160.0, + "total_tests": 1231195.0, + "total_tests_per_thousand": 33.356, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 20815.0, + "new_tests_smoothed_per_thousand": 0.564, + "tests_per_case": 34.275, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-07-31", + "total_cases": 23259.0, + "new_cases": 1046.0, + "new_cases_smoothed": 713.571, + "total_deaths": 346.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 630.145, + "new_cases_per_million": 28.339, + "new_cases_smoothed_per_million": 19.332, + "total_deaths_per_million": 9.374, + "new_deaths_per_million": 0.325, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 21170.0, + "total_tests": 1252365.0, + "total_tests_per_thousand": 33.93, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 21013.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 29.448, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-08-01", + "total_cases": 24322.0, + "new_cases": 1063.0, + "new_cases_smoothed": 784.0, + "total_deaths": 353.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 658.944, + "new_cases_per_million": 28.799, + "new_cases_smoothed_per_million": 21.241, + "total_deaths_per_million": 9.564, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 21574.0, + "total_tests": 1273939.0, + "total_tests_per_thousand": 34.514, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 21104.0, + "new_tests_smoothed_per_thousand": 0.572, + "tests_per_case": 26.918000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-08-02", + "total_cases": 25015.0, + "new_cases": 693.0, + "new_cases_smoothed": 767.143, + "total_deaths": 367.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 677.719, + "new_cases_per_million": 18.775, + "new_cases_smoothed_per_million": 20.784, + "total_deaths_per_million": 9.943, + "new_deaths_per_million": 0.379, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 21255.0, + "total_tests": 1295194.0, + "total_tests_per_thousand": 35.09, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 21146.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 27.565, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-08-03", + "total_cases": 25537.0, + "new_cases": 522.0, + "new_cases_smoothed": 751.286, + "total_deaths": 382.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 691.862, + "new_cases_per_million": 14.142, + "new_cases_smoothed_per_million": 20.354, + "total_deaths_per_million": 10.349, + "new_deaths_per_million": 0.406, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 21667.0, + "total_tests": 1316861.0, + "total_tests_per_thousand": 35.677, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 21250.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 28.285, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-08-04", + "total_cases": 26196.0, + "new_cases": 659.0, + "new_cases_smoothed": 758.429, + "total_deaths": 401.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 709.716, + "new_cases_per_million": 17.854, + "new_cases_smoothed_per_million": 20.548, + "total_deaths_per_million": 10.864, + "new_deaths_per_million": 0.515, + "new_deaths_smoothed_per_million": 0.329, + "new_tests": 22128.0, + "total_tests": 1338989.0, + "total_tests_per_thousand": 36.277, + "new_tests_per_thousand": 0.6, + "new_tests_smoothed": 21455.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 28.289, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-08-05", + "total_cases": 27217.0, + "new_cases": 1021.0, + "new_cases_smoothed": 832.857, + "total_deaths": 417.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 737.377, + "new_cases_per_million": 27.661, + "new_cases_smoothed_per_million": 22.564, + "total_deaths_per_million": 11.298, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 22561.0, + "total_tests": 1361550.0, + "total_tests_per_thousand": 36.888, + "new_tests_per_thousand": 0.611, + "new_tests_smoothed": 21645.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 25.989, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-06", + "total_cases": 28500.0, + "new_cases": 1283.0, + "new_cases_smoothed": 898.143, + "total_deaths": 435.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 772.137, + "new_cases_per_million": 34.76, + "new_cases_smoothed_per_million": 24.333, + "total_deaths_per_million": 11.785, + "new_deaths_per_million": 0.488, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 22266.0, + "total_tests": 1383816.0, + "total_tests_per_thousand": 37.491, + "new_tests_per_thousand": 0.603, + "new_tests_smoothed": 21803.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 24.276, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-07", + "total_cases": 29644.0, + "new_cases": 1144.0, + "new_cases_smoothed": 912.143, + "total_deaths": 449.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 803.131, + "new_cases_per_million": 30.994, + "new_cases_smoothed_per_million": 24.712, + "total_deaths_per_million": 12.165, + "new_deaths_per_million": 0.379, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 21343.0, + "total_tests": 1405159.0, + "total_tests_per_thousand": 38.069, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 21828.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 23.93, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-08", + "total_cases": 30662.0, + "new_cases": 1018.0, + "new_cases_smoothed": 905.714, + "total_deaths": 461.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 830.711, + "new_cases_per_million": 27.58, + "new_cases_smoothed_per_million": 24.538, + "total_deaths_per_million": 12.49, + "new_deaths_per_million": 0.325, + "new_deaths_smoothed_per_million": 0.418, + "new_tests": 22476.0, + "total_tests": 1427635.0, + "total_tests_per_thousand": 38.678, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 21957.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 24.243000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-09", + "total_cases": 32007.0, + "new_cases": 1345.0, + "new_cases_smoothed": 998.857, + "total_deaths": 480.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 867.15, + "new_cases_per_million": 36.439, + "new_cases_smoothed_per_million": 27.062, + "total_deaths_per_million": 13.004, + "new_deaths_per_million": 0.515, + "new_deaths_smoothed_per_million": 0.437, + "new_tests": 22333.0, + "total_tests": 1449968.0, + "total_tests_per_thousand": 39.283, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 22111.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 22.136, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-10", + "total_cases": 33237.0, + "new_cases": 1230.0, + "new_cases_smoothed": 1100.0, + "total_deaths": 498.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 900.474, + "new_cases_per_million": 33.324, + "new_cases_smoothed_per_million": 29.802, + "total_deaths_per_million": 13.492, + "new_deaths_per_million": 0.488, + "new_deaths_smoothed_per_million": 0.449, + "new_tests": 22127.0, + "total_tests": 1472095.0, + "total_tests_per_thousand": 39.883, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 22176.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 20.16, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-11", + "total_cases": 34063.0, + "new_cases": 826.0, + "new_cases_smoothed": 1123.857, + "total_deaths": 516.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 922.852, + "new_cases_per_million": 22.378, + "new_cases_smoothed_per_million": 30.448, + "total_deaths_per_million": 13.98, + "new_deaths_per_million": 0.488, + "new_deaths_smoothed_per_million": 0.445, + "new_tests": 22001.0, + "total_tests": 1494096.0, + "total_tests_per_thousand": 40.479, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 22158.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 19.715999999999998, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-12", + "total_cases": 35195.0, + "new_cases": 1132.0, + "new_cases_smoothed": 1139.714, + "total_deaths": 533.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 953.521, + "new_cases_per_million": 30.669, + "new_cases_smoothed_per_million": 30.878, + "total_deaths_per_million": 14.44, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.449, + "new_tests": 22306.0, + "total_tests": 1516402.0, + "total_tests_per_thousand": 41.083, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 22122.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 19.41, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-13", + "total_cases": 36694.0, + "new_cases": 1499.0, + "new_cases_smoothed": 1170.571, + "total_deaths": 556.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 994.133, + "new_cases_per_million": 40.612, + "new_cases_smoothed_per_million": 31.714, + "total_deaths_per_million": 15.063, + "new_deaths_per_million": 0.623, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 22118.0, + "total_tests": 1538520.0, + "total_tests_per_thousand": 41.682, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 22101.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 18.881, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-14", + "total_cases": 37935.0, + "new_cases": 1241.0, + "new_cases_smoothed": 1184.429, + "total_deaths": 584.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 1027.755, + "new_cases_per_million": 33.622, + "new_cases_smoothed_per_million": 32.089, + "total_deaths_per_million": 15.822, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 22007.0, + "total_tests": 1560527.0, + "total_tests_per_thousand": 42.279, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 22195.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 18.739, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-15", + "total_cases": 39241.0, + "new_cases": 1306.0, + "new_cases_smoothed": 1225.571, + "total_deaths": 611.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 1063.138, + "new_cases_per_million": 35.383, + "new_cases_smoothed_per_million": 33.204, + "total_deaths_per_million": 16.554, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.581, + "new_tests": 22707.0, + "total_tests": 1583234.0, + "total_tests_per_thousand": 42.894, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 22228.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 18.137, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-16", + "total_cases": 41017.0, + "new_cases": 1776.0, + "new_cases_smoothed": 1287.143, + "total_deaths": 632.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 1111.254, + "new_cases_per_million": 48.116, + "new_cases_smoothed_per_million": 34.872, + "total_deaths_per_million": 17.122, + "new_deaths_per_million": 0.569, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 22379.0, + "total_tests": 1605613.0, + "total_tests_per_thousand": 43.5, + "new_tests_per_thousand": 0.606, + "new_tests_smoothed": 22235.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 17.275, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-17", + "total_cases": 42489.0, + "new_cases": 1472.0, + "new_cases_smoothed": 1321.714, + "total_deaths": 658.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 22.857, + "total_cases_per_million": 1151.134, + "new_cases_per_million": 39.88, + "new_cases_smoothed_per_million": 35.809, + "total_deaths_per_million": 17.827, + "new_deaths_per_million": 0.704, + "new_deaths_smoothed_per_million": 0.619, + "new_tests": 21197.0, + "total_tests": 1626810.0, + "total_tests_per_thousand": 44.074, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 22102.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 16.722, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-18", + "total_cases": 43558.0, + "new_cases": 1069.0, + "new_cases_smoothed": 1356.429, + "total_deaths": 658.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 1180.096, + "new_cases_per_million": 28.962, + "new_cases_smoothed_per_million": 36.749, + "total_deaths_per_million": 17.827, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 21918.0, + "total_tests": 1648728.0, + "total_tests_per_thousand": 44.668, + "new_tests_per_thousand": 0.594, + "new_tests_smoothed": 22090.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 16.285, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-19", + "total_cases": 43558.0, + "new_cases": 0.0, + "new_cases_smoothed": 1194.714, + "total_deaths": 681.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 1180.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.368, + "total_deaths_per_million": 18.45, + "new_deaths_per_million": 0.623, + "new_deaths_smoothed_per_million": 0.573, + "new_tests": 21841.0, + "total_tests": 1670569.0, + "total_tests_per_thousand": 45.26, + "new_tests_per_thousand": 0.592, + "new_tests_smoothed": 22024.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 18.435, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-20", + "total_cases": 46313.0, + "new_cases": 2755.0, + "new_cases_smoothed": 1374.143, + "total_deaths": 743.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 1254.736, + "new_cases_per_million": 74.64, + "new_cases_smoothed_per_million": 37.229, + "total_deaths_per_million": 20.13, + "new_deaths_per_million": 1.68, + "new_deaths_smoothed_per_million": 0.724, + "new_tests": 21836.0, + "total_tests": 1692405.0, + "total_tests_per_thousand": 45.852, + "new_tests_per_thousand": 0.592, + "new_tests_smoothed": 21984.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 15.998, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-21", + "total_cases": 47638.0, + "new_cases": 1325.0, + "new_cases_smoothed": 1386.143, + "total_deaths": 775.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 1290.633, + "new_cases_per_million": 35.898, + "new_cases_smoothed_per_million": 37.554, + "total_deaths_per_million": 20.997, + "new_deaths_per_million": 0.867, + "new_deaths_smoothed_per_million": 0.739, + "new_tests": 22178.0, + "total_tests": 1714583.0, + "total_tests_per_thousand": 46.452, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 22008.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 15.877, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 49247.0, + "new_cases": 1609.0, + "new_cases_smoothed": 1429.429, + "total_deaths": 817.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 1334.225, + "new_cases_per_million": 43.592, + "new_cases_smoothed_per_million": 38.727, + "total_deaths_per_million": 22.135, + "new_deaths_per_million": 1.138, + "new_deaths_smoothed_per_million": 0.797, + "new_tests": 22393.0, + "total_tests": 1736976.0, + "total_tests_per_thousand": 47.059, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 21963.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 15.365, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 50812.0, + "new_cases": 1565.0, + "new_cases_smoothed": 1399.286, + "total_deaths": 858.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 1376.625, + "new_cases_per_million": 42.4, + "new_cases_smoothed_per_million": 37.91, + "total_deaths_per_million": 23.245, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 0.875, + "new_tests": 21894.0, + "total_tests": 1758870.0, + "total_tests_per_thousand": 47.652, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 21894.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 15.647, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-24", + "total_cases": 50812.0, + "new_cases": 0.0, + "new_cases_smoothed": 1189.0, + "total_deaths": 858.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 1376.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.213, + "total_deaths_per_million": 23.245, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.774, + "new_tests": 21110.0, + "total_tests": 1779980.0, + "total_tests_per_thousand": 48.224, + "new_tests_per_thousand": 0.572, + "new_tests_smoothed": 21881.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 18.403, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 53252.0, + "new_cases": 2440.0, + "new_cases_smoothed": 1384.857, + "total_deaths": 920.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 1442.731, + "new_cases_per_million": 66.106, + "new_cases_smoothed_per_million": 37.519, + "total_deaths_per_million": 24.925, + "new_deaths_per_million": 1.68, + "new_deaths_smoothed_per_million": 1.014, + "new_tests": 22190.0, + "total_tests": 1802170.0, + "total_tests_per_thousand": 48.825, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 21920.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 15.828, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-26", + "total_cases": 54528.0, + "new_cases": 1276.0, + "new_cases_smoothed": 1567.143, + "total_deaths": 955.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 1477.301, + "new_cases_per_million": 34.57, + "new_cases_smoothed_per_million": 42.458, + "total_deaths_per_million": 25.873, + "new_deaths_per_million": 0.948, + "new_deaths_smoothed_per_million": 1.06, + "new_tests": 22081.0, + "total_tests": 1824251.0, + "total_tests_per_thousand": 49.424, + "new_tests_per_thousand": 0.598, + "new_tests_smoothed": 21955.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 14.01, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-27", + "total_cases": 55864.0, + "new_cases": 1336.0, + "new_cases_smoothed": 1364.429, + "total_deaths": 984.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 1513.496, + "new_cases_per_million": 36.196, + "new_cases_smoothed_per_million": 36.966, + "total_deaths_per_million": 26.659, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.933, + "new_tests": 22009.0, + "total_tests": 1846260.0, + "total_tests_per_thousand": 50.02, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 21979.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 16.109, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-28", + "total_cases": 57085.0, + "new_cases": 1221.0, + "new_cases_smoothed": 1349.571, + "total_deaths": 1011.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 1546.576, + "new_cases_per_million": 33.08, + "new_cases_smoothed_per_million": 36.563, + "total_deaths_per_million": 27.391, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 0.913, + "new_tests": 22285.0, + "total_tests": 1868545.0, + "total_tests_per_thousand": 50.624, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 21995.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 16.298, + "positive_rate": 0.061, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 58489.0, + "new_cases": 1404.0, + "new_cases_smoothed": 1320.286, + "total_deaths": 1052.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 33.571, + "total_cases_per_million": 1584.614, + "new_cases_per_million": 38.038, + "new_cases_smoothed_per_million": 35.77, + "total_deaths_per_million": 28.501, + "new_deaths_per_million": 1.111, + "new_deaths_smoothed_per_million": 0.91, + "new_tests": 22419.0, + "total_tests": 1890964.0, + "total_tests_per_thousand": 51.231, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 21998.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 16.662, + "positive_rate": 0.06, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 60056.0, + "new_cases": 1567.0, + "new_cases_smoothed": 1320.571, + "total_deaths": 1078.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 1627.068, + "new_cases_per_million": 42.454, + "new_cases_smoothed_per_million": 35.778, + "total_deaths_per_million": 29.206, + "new_deaths_per_million": 0.704, + "new_deaths_smoothed_per_million": 0.851, + "new_tests": 22001.0, + "total_tests": 1912965.0, + "total_tests_per_thousand": 51.827, + "new_tests_per_thousand": 0.596, + "new_tests_smoothed": 22014.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 16.67, + "positive_rate": 0.06, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 61399.0, + "new_cases": 1343.0, + "new_cases_smoothed": 1512.429, + "total_deaths": 1111.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 1663.454, + "new_cases_per_million": 36.385, + "new_cases_smoothed_per_million": 40.976, + "total_deaths_per_million": 30.1, + "new_deaths_per_million": 0.894, + "new_deaths_smoothed_per_million": 0.979, + "new_tests": 21369.0, + "total_tests": 1934334.0, + "total_tests_per_thousand": 52.406, + "new_tests_per_thousand": 0.579, + "new_tests_smoothed": 22051.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 14.58, + "positive_rate": 0.069, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 62590.0, + "new_cases": 1191.0, + "new_cases_smoothed": 1334.0, + "total_deaths": 1141.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 1695.721, + "new_cases_per_million": 32.267, + "new_cases_smoothed_per_million": 36.141, + "total_deaths_per_million": 30.913, + "new_deaths_per_million": 0.813, + "new_deaths_smoothed_per_million": 0.855, + "new_tests": 22082.0, + "total_tests": 1956416.0, + "total_tests_per_thousand": 53.004, + "new_tests_per_thousand": 0.598, + "new_tests_smoothed": 22035.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 16.518, + "positive_rate": 0.061, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 63781.0, + "new_cases": 1191.0, + "new_cases_smoothed": 1321.857, + "total_deaths": 1184.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 1727.988, + "new_cases_per_million": 32.267, + "new_cases_smoothed_per_million": 35.812, + "total_deaths_per_million": 32.078, + "new_deaths_per_million": 1.165, + "new_deaths_smoothed_per_million": 0.886, + "new_tests": 22424.0, + "total_tests": 1978840.0, + "total_tests_per_thousand": 53.612, + "new_tests_per_thousand": 0.608, + "new_tests_smoothed": 22084.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 16.707, + "positive_rate": 0.06, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 65453.0, + "new_cases": 1672.0, + "new_cases_smoothed": 1369.857, + "total_deaths": 1216.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 33.143, + "total_cases_per_million": 1773.287, + "new_cases_per_million": 45.299, + "new_cases_smoothed_per_million": 37.113, + "total_deaths_per_million": 32.945, + "new_deaths_per_million": 0.867, + "new_deaths_smoothed_per_million": 0.898, + "new_tests": 22284.0, + "total_tests": 2001124.0, + "total_tests_per_thousand": 54.215, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 22123.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 16.15, + "positive_rate": 0.062, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 65855.0, + "new_cases": 402.0, + "new_cases_smoothed": 1252.857, + "total_deaths": 1253.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 1784.178, + "new_cases_per_million": 10.891, + "new_cases_smoothed_per_million": 33.943, + "total_deaths_per_million": 33.947, + "new_deaths_per_million": 1.002, + "new_deaths_smoothed_per_million": 0.937 + }, + { + "date": "2020-09-05", + "total_cases": 65855.0, + "new_cases": 0.0, + "new_cases_smoothed": 1052.286, + "total_deaths": 1253.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 28.714, + "total_cases_per_million": 1784.178, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.509, + "total_deaths_per_million": 33.947, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.778 + } + ] + }, + "MOZ": { + "continent": "Africa", + "location": "Mozambique", + "population": 31255435.0, + "population_density": 37.728, + "median_age": 17.7, + "aged_65_older": 3.158, + "aged_70_older": 1.87, + "gdp_per_capita": 1136.103, + "extreme_poverty": 62.9, + "cardiovasc_death_rate": 329.942, + "diabetes_prevalence": 3.3, + "female_smokers": 5.1, + "male_smokers": 29.1, + "handwashing_facilities": 12.227, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 60.85, + "data": [ + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.032, + "new_cases_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.032, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.032, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-26", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-28", + "total_cases": 7.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.256, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-07", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-09", + "total_cases": 17.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-10", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-11", + "total_cases": 20.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.64, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-12", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-13", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.672, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-14", + "total_cases": 27.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.864, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-15", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.896, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-16", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.928, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-17", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.992, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-18", + "total_cases": 34.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.088, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-19", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.12, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-20", + "total_cases": 39.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.248, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-21", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.248, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-22", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.248, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-23", + "total_cases": 41.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.312, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-24", + "total_cases": 46.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.472, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-25", + "total_cases": 65.0, + "new_cases": 19.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.08, + "new_cases_per_million": 0.608, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-26", + "total_cases": 70.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.24, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-27", + "total_cases": 76.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.432, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-28", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-29", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-04-30", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-01", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.432, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-02", + "total_cases": 79.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.528, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-03", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-04", + "total_cases": 80.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.56, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-05", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.56, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-06", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-07", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-08", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.592, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-09", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.624, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-10", + "total_cases": 87.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.784, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-11", + "total_cases": 91.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.911, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-12", + "total_cases": 103.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.295, + "new_cases_per_million": 0.384, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-13", + "total_cases": 104.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.327, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-14", + "total_cases": 107.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.423, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-15", + "total_cases": 115.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.679, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-16", + "total_cases": 119.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.807, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-17", + "total_cases": 129.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.127, + "new_cases_per_million": 0.32, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-18", + "total_cases": 137.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.383, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-19", + "total_cases": 145.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.639, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-20", + "total_cases": 146.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.671, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-21", + "total_cases": 156.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.991, + "new_cases_per_million": 0.32, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-22", + "total_cases": 162.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.183, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-23", + "total_cases": 164.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.247, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-24", + "total_cases": 168.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.375, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-25", + "total_cases": 194.0, + "new_cases": 26.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.207, + "new_cases_per_million": 0.832, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-05-26", + "total_cases": 209.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.687, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.293, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 56.48 + }, + { + "date": "2020-05-27", + "total_cases": 213.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.815, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 56.48 + }, + { + "date": "2020-05-28", + "total_cases": 227.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.263, + "new_cases_per_million": 0.448, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 56.48 + }, + { + "date": "2020-05-29", + "total_cases": 233.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.455, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.04 + }, + { + "date": "2020-05-30", + "total_cases": 234.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.487, + "new_cases_per_million": 0.032, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.04 + }, + { + "date": "2020-05-31", + "total_cases": 244.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.807, + "new_cases_per_million": 0.32, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.04 + }, + { + "date": "2020-06-01", + "total_cases": 254.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.127, + "new_cases_per_million": 0.32, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.04 + }, + { + "date": "2020-06-02", + "total_cases": 254.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.04 + }, + { + "date": "2020-06-03", + "total_cases": 307.0, + "new_cases": 53.0, + "new_cases_smoothed": 13.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.822, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.04 + }, + { + "date": "2020-06-04", + "total_cases": 316.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.11, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.04 + }, + { + "date": "2020-06-05", + "total_cases": 352.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.262, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-06", + "total_cases": 354.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.326, + "new_cases_per_million": 0.064, + "new_cases_smoothed_per_million": 0.548, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-07", + "total_cases": 411.0, + "new_cases": 57.0, + "new_cases_smoothed": 23.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.15, + "new_cases_per_million": 1.824, + "new_cases_smoothed_per_million": 0.763, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-08", + "total_cases": 426.0, + "new_cases": 15.0, + "new_cases_smoothed": 24.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.63, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-09", + "total_cases": 433.0, + "new_cases": 7.0, + "new_cases_smoothed": 25.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.854, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.818, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-10", + "total_cases": 453.0, + "new_cases": 20.0, + "new_cases_smoothed": 20.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.493, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-11", + "total_cases": 472.0, + "new_cases": 19.0, + "new_cases_smoothed": 22.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.101, + "new_cases_per_million": 0.608, + "new_cases_smoothed_per_million": 0.713, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-12", + "total_cases": 489.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.645, + "new_cases_per_million": 0.544, + "new_cases_smoothed_per_million": 0.626, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-13", + "total_cases": 509.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.285, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 0.708, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-14", + "total_cases": 553.0, + "new_cases": 44.0, + "new_cases_smoothed": 20.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.693, + "new_cases_per_million": 1.408, + "new_cases_smoothed_per_million": 0.649, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-06-15", + "total_cases": 583.0, + "new_cases": 30.0, + "new_cases_smoothed": 22.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.653, + "new_cases_per_million": 0.96, + "new_cases_smoothed_per_million": 0.718, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.04 + }, + { + "date": "2020-06-16", + "total_cases": 609.0, + "new_cases": 26.0, + "new_cases_smoothed": 25.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.485, + "new_cases_per_million": 0.832, + "new_cases_smoothed_per_million": 0.804, + "total_deaths_per_million": 0.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.04 + }, + { + "date": "2020-06-17", + "total_cases": 638.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.412, + "new_cases_per_million": 0.928, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 651.0, + "new_cases": 13.0, + "new_cases_smoothed": 25.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.828, + "new_cases_per_million": 0.416, + "new_cases_smoothed_per_million": 0.818, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 662.0, + "new_cases": 11.0, + "new_cases_smoothed": 24.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.18, + "new_cases_per_million": 0.352, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 668.0, + "new_cases": 6.0, + "new_cases_smoothed": 22.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.372, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 688.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.012, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 733.0, + "new_cases": 45.0, + "new_cases_smoothed": 21.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.452, + "new_cases_per_million": 1.44, + "new_cases_smoothed_per_million": 0.686, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 737.0, + "new_cases": 4.0, + "new_cases_smoothed": 18.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.58, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.585, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 757.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.22, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 762.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.38, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.507, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 788.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 25.212, + "new_cases_per_million": 0.832, + "new_cases_smoothed_per_million": 0.576, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 816.0, + "new_cases": 28.0, + "new_cases_smoothed": 21.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.107, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.676, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 839.0, + "new_cases": 23.0, + "new_cases_smoothed": 21.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.843, + "new_cases_per_million": 0.736, + "new_cases_smoothed_per_million": 0.69, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 859.0, + "new_cases": 20.0, + "new_cases_smoothed": 18.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.483, + "new_cases_per_million": 0.64, + "new_cases_smoothed_per_million": 0.576, + "total_deaths_per_million": 0.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 883.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.251, + "new_cases_per_million": 0.768, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 0.192, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 889.0, + "new_cases": 6.0, + "new_cases_smoothed": 18.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.443, + "new_cases_per_million": 0.192, + "new_cases_smoothed_per_million": 0.603, + "total_deaths_per_million": 0.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 903.0, + "new_cases": 14.0, + "new_cases_smoothed": 20.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.891, + "new_cases_per_million": 0.448, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 0.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 918.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.371, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.594, + "total_deaths_per_million": 0.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 939.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.043, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 0.192, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 969.0, + "new_cases": 30.0, + "new_cases_smoothed": 18.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 31.003, + "new_cases_per_million": 0.96, + "new_cases_smoothed_per_million": 0.594, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 987.0, + "new_cases": 18.0, + "new_cases_smoothed": 18.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 31.579, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 0.585, + "total_deaths_per_million": 0.256, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 1012.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.378, + "new_cases_per_million": 0.8, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 0.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 1040.0, + "new_cases": 28.0, + "new_cases_smoothed": 21.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 33.274, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.69, + "total_deaths_per_million": 0.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 1071.0, + "new_cases": 31.0, + "new_cases_smoothed": 24.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 34.266, + "new_cases_per_million": 0.992, + "new_cases_smoothed_per_million": 0.768, + "total_deaths_per_million": 0.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 1092.0, + "new_cases": 21.0, + "new_cases_smoothed": 24.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 34.938, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 1111.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 35.546, + "new_cases_per_million": 0.608, + "new_cases_smoothed_per_million": 0.786, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 1135.0, + "new_cases": 24.0, + "new_cases_smoothed": 23.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.314, + "new_cases_per_million": 0.768, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 1157.0, + "new_cases": 22.0, + "new_cases_smoothed": 24.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.018, + "new_cases_per_million": 0.704, + "new_cases_smoothed_per_million": 0.777, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-14", + "total_cases": 1219.0, + "new_cases": 62.0, + "new_cases_smoothed": 29.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.001, + "new_cases_per_million": 1.984, + "new_cases_smoothed_per_million": 0.946, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-15", + "total_cases": 1268.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.569, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 1.042, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-16", + "total_cases": 1330.0, + "new_cases": 62.0, + "new_cases_smoothed": 37.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.553, + "new_cases_per_million": 1.984, + "new_cases_smoothed_per_million": 1.184, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-17", + "total_cases": 1383.0, + "new_cases": 53.0, + "new_cases_smoothed": 41.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.248, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-07-18", + "total_cases": 1402.0, + "new_cases": 19.0, + "new_cases_smoothed": 41.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.856, + "new_cases_per_million": 0.608, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-07-19", + "total_cases": 1435.0, + "new_cases": 33.0, + "new_cases_smoothed": 42.857, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.912, + "new_cases_per_million": 1.056, + "new_cases_smoothed_per_million": 1.371, + "total_deaths_per_million": 0.32, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-20", + "total_cases": 1491.0, + "new_cases": 56.0, + "new_cases_smoothed": 47.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 47.704, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 0.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-21", + "total_cases": 1507.0, + "new_cases": 16.0, + "new_cases_smoothed": 41.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 48.216, + "new_cases_per_million": 0.512, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-07-22", + "total_cases": 1536.0, + "new_cases": 29.0, + "new_cases_smoothed": 38.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.143, + "new_cases_per_million": 0.928, + "new_cases_smoothed_per_million": 1.225, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-07-23", + "total_cases": 1557.0, + "new_cases": 21.0, + "new_cases_smoothed": 32.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.815, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 1.038, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-07-24", + "total_cases": 1582.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.615, + "new_cases_per_million": 0.8, + "new_cases_smoothed_per_million": 0.91, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-07-25", + "total_cases": 1590.0, + "new_cases": 8.0, + "new_cases_smoothed": 26.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.871, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.859, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-07-26", + "total_cases": 1616.0, + "new_cases": 26.0, + "new_cases_smoothed": 25.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.703, + "new_cases_per_million": 0.832, + "new_cases_smoothed_per_million": 0.827, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-27", + "total_cases": 1669.0, + "new_cases": 53.0, + "new_cases_smoothed": 25.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.399, + "new_cases_per_million": 1.696, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 75.0 + }, + { + "date": "2020-07-28", + "total_cases": 1701.0, + "new_cases": 32.0, + "new_cases_smoothed": 27.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.423, + "new_cases_per_million": 1.024, + "new_cases_smoothed_per_million": 0.887, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-07-29", + "total_cases": 1720.0, + "new_cases": 19.0, + "new_cases_smoothed": 26.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.03, + "new_cases_per_million": 0.608, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-30", + "total_cases": 1748.0, + "new_cases": 28.0, + "new_cases_smoothed": 27.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 55.926, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.873, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-07-31", + "total_cases": 1808.0, + "new_cases": 60.0, + "new_cases_smoothed": 32.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.846, + "new_cases_per_million": 1.92, + "new_cases_smoothed_per_million": 1.033, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-01", + "total_cases": 1864.0, + "new_cases": 56.0, + "new_cases_smoothed": 39.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.638, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 1.252, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-02", + "total_cases": 1907.0, + "new_cases": 43.0, + "new_cases_smoothed": 41.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.013, + "new_cases_per_million": 1.376, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-08-03", + "total_cases": 1946.0, + "new_cases": 39.0, + "new_cases_smoothed": 39.571, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 62.261, + "new_cases_per_million": 1.248, + "new_cases_smoothed_per_million": 1.266, + "total_deaths_per_million": 0.416, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 44.44 + }, + { + "date": "2020-08-04", + "total_cases": 1973.0, + "new_cases": 27.0, + "new_cases_smoothed": 38.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 63.125, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.243, + "total_deaths_per_million": 0.448, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 44.44 + }, + { + "date": "2020-08-05", + "total_cases": 2029.0, + "new_cases": 56.0, + "new_cases_smoothed": 44.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 64.917, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 44.44 + }, + { + "date": "2020-08-06", + "total_cases": 2079.0, + "new_cases": 50.0, + "new_cases_smoothed": 47.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 66.516, + "new_cases_per_million": 1.6, + "new_cases_smoothed_per_million": 1.513, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 44.44 + }, + { + "date": "2020-08-07", + "total_cases": 2120.0, + "new_cases": 41.0, + "new_cases_smoothed": 44.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 67.828, + "new_cases_per_million": 1.312, + "new_cases_smoothed_per_million": 1.426, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 75.0 + }, + { + "date": "2020-08-08", + "total_cases": 2213.0, + "new_cases": 93.0, + "new_cases_smoothed": 49.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 70.804, + "new_cases_per_million": 2.975, + "new_cases_smoothed_per_million": 1.595, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 75.0 + }, + { + "date": "2020-08-09", + "total_cases": 2241.0, + "new_cases": 28.0, + "new_cases_smoothed": 47.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 71.7, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 1.527, + "total_deaths_per_million": 0.512, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 75.0 + }, + { + "date": "2020-08-10", + "total_cases": 2269.0, + "new_cases": 28.0, + "new_cases_smoothed": 46.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 72.595, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 1.476, + "total_deaths_per_million": 0.512, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 75.0 + }, + { + "date": "2020-08-11", + "total_cases": 2411.0, + "new_cases": 142.0, + "new_cases_smoothed": 62.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 77.139, + "new_cases_per_million": 4.543, + "new_cases_smoothed_per_million": 2.002, + "total_deaths_per_million": 0.512, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-08-12", + "total_cases": 2481.0, + "new_cases": 70.0, + "new_cases_smoothed": 64.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 79.378, + "new_cases_per_million": 2.24, + "new_cases_smoothed_per_million": 2.066, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.0 + }, + { + "date": "2020-08-13", + "total_cases": 2559.0, + "new_cases": 78.0, + "new_cases_smoothed": 68.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 81.874, + "new_cases_per_million": 2.496, + "new_cases_smoothed_per_million": 2.194, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 75.0 + }, + { + "date": "2020-08-14", + "total_cases": 2638.0, + "new_cases": 79.0, + "new_cases_smoothed": 74.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 84.401, + "new_cases_per_million": 2.528, + "new_cases_smoothed_per_million": 2.368, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 75.0 + }, + { + "date": "2020-08-15", + "total_cases": 2708.0, + "new_cases": 70.0, + "new_cases_smoothed": 70.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 86.641, + "new_cases_per_million": 2.24, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 75.0 + }, + { + "date": "2020-08-16", + "total_cases": 2791.0, + "new_cases": 83.0, + "new_cases_smoothed": 78.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 89.296, + "new_cases_per_million": 2.656, + "new_cases_smoothed_per_million": 2.514, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 75.0 + }, + { + "date": "2020-08-17", + "total_cases": 2855.0, + "new_cases": 64.0, + "new_cases_smoothed": 83.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 91.344, + "new_cases_per_million": 2.048, + "new_cases_smoothed_per_million": 2.678, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 75.0 + }, + { + "date": "2020-08-18", + "total_cases": 2914.0, + "new_cases": 59.0, + "new_cases_smoothed": 71.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 93.232, + "new_cases_per_million": 1.888, + "new_cases_smoothed_per_million": 2.299, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 62.5 + }, + { + "date": "2020-08-19", + "total_cases": 2914.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 93.232, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.979, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.5 + }, + { + "date": "2020-08-20", + "total_cases": 3045.0, + "new_cases": 131.0, + "new_cases_smoothed": 69.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.423, + "new_cases_per_million": 4.191, + "new_cases_smoothed_per_million": 2.221, + "total_deaths_per_million": 0.608, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.5 + }, + { + "date": "2020-08-21", + "total_cases": 3115.0, + "new_cases": 70.0, + "new_cases_smoothed": 68.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.663, + "new_cases_per_million": 2.24, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-22", + "total_cases": 3195.0, + "new_cases": 80.0, + "new_cases_smoothed": 69.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 102.222, + "new_cases_per_million": 2.56, + "new_cases_smoothed_per_million": 2.226, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-23", + "total_cases": 3304.0, + "new_cases": 109.0, + "new_cases_smoothed": 73.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 105.71, + "new_cases_per_million": 3.487, + "new_cases_smoothed_per_million": 2.345, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-24", + "total_cases": 3395.0, + "new_cases": 91.0, + "new_cases_smoothed": 77.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 108.621, + "new_cases_per_million": 2.911, + "new_cases_smoothed_per_million": 2.468, + "total_deaths_per_million": 0.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-25", + "total_cases": 3440.0, + "new_cases": 45.0, + "new_cases_smoothed": 75.143, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 110.061, + "new_cases_per_million": 1.44, + "new_cases_smoothed_per_million": 2.404, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.5 + }, + { + "date": "2020-08-26", + "total_cases": 3508.0, + "new_cases": 68.0, + "new_cases_smoothed": 84.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 112.236, + "new_cases_per_million": 2.176, + "new_cases_smoothed_per_million": 2.715, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.5 + }, + { + "date": "2020-08-27", + "total_cases": 3590.0, + "new_cases": 82.0, + "new_cases_smoothed": 77.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 114.86, + "new_cases_per_million": 2.624, + "new_cases_smoothed_per_million": 2.491, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.5 + }, + { + "date": "2020-08-28", + "total_cases": 3651.0, + "new_cases": 61.0, + "new_cases_smoothed": 76.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 116.812, + "new_cases_per_million": 1.952, + "new_cases_smoothed_per_million": 2.45, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-29", + "total_cases": 3697.0, + "new_cases": 46.0, + "new_cases_smoothed": 71.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.283, + "new_cases_per_million": 1.472, + "new_cases_smoothed_per_million": 2.294, + "total_deaths_per_million": 0.672, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 62.5 + }, + { + "date": "2020-08-30", + "total_cases": 3760.0, + "new_cases": 63.0, + "new_cases_smoothed": 65.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 120.299, + "new_cases_per_million": 2.016, + "new_cases_smoothed_per_million": 2.084, + "total_deaths_per_million": 0.704, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 62.5 + }, + { + "date": "2020-08-31", + "total_cases": 3821.0, + "new_cases": 61.0, + "new_cases_smoothed": 60.857, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 122.251, + "new_cases_per_million": 1.952, + "new_cases_smoothed_per_million": 1.947, + "total_deaths_per_million": 0.736, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 62.5 + }, + { + "date": "2020-09-01", + "total_cases": 3916.0, + "new_cases": 95.0, + "new_cases_smoothed": 68.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 125.29, + "new_cases_per_million": 3.039, + "new_cases_smoothed_per_million": 2.176, + "total_deaths_per_million": 0.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-09-02", + "total_cases": 4039.0, + "new_cases": 123.0, + "new_cases_smoothed": 75.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 129.226, + "new_cases_per_million": 3.935, + "new_cases_smoothed_per_million": 2.427, + "total_deaths_per_million": 0.736, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-09-03", + "total_cases": 4117.0, + "new_cases": 78.0, + "new_cases_smoothed": 75.286, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 131.721, + "new_cases_per_million": 2.496, + "new_cases_smoothed_per_million": 2.409, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.018 + }, + { + "date": "2020-09-04", + "total_cases": 4207.0, + "new_cases": 90.0, + "new_cases_smoothed": 79.429, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 134.601, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 2.541, + "total_deaths_per_million": 0.832, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.023 + }, + { + "date": "2020-09-05", + "total_cases": 4265.0, + "new_cases": 58.0, + "new_cases_smoothed": 81.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 136.456, + "new_cases_per_million": 1.856, + "new_cases_smoothed_per_million": 2.596, + "total_deaths_per_million": 0.832, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023 + } + ] + }, + "MMR": { + "continent": "Asia", + "location": "Myanmar", + "population": 54409794.0, + "population_density": 81.721, + "median_age": 29.1, + "aged_65_older": 5.732, + "aged_70_older": 3.12, + "gdp_per_capita": 5591.597, + "extreme_poverty": 6.4, + "cardiovasc_death_rate": 202.104, + "diabetes_prevalence": 4.61, + "female_smokers": 6.3, + "male_smokers": 35.2, + "handwashing_facilities": 79.287, + "hospital_beds_per_thousand": 0.9, + "life_expectancy": 67.13, + "data": [ + { + "date": "2020-03-17", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-03-23", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.037, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.055, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 14.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.257, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-04-01", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.276, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 65.74 + }, + { + "date": "2020-04-02", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.294, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 65.74 + }, + { + "date": "2020-04-03", + "total_cases": 20.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.368, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 1183.0, + "total_tests_per_thousand": 0.022, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-04-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.368, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 63.0, + "total_tests": 1246.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-04-05", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.386, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-04-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 1340.0, + "total_tests_per_thousand": 0.025, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-04-07", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-08", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1406.0, + "total_tests_per_thousand": 0.026, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 137.0, + "total_tests": 1543.0, + "total_tests_per_thousand": 0.028, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 27.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.496, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 76.0, + "total_tests": 1619.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 62.0, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.515, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 230.0, + "total_tests": 1849.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 86.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 75.25, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 31.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.57, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 285.0, + "total_tests": 2134.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 120.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 84.0, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-13", + "total_cases": 41.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.754, + "new_cases_per_million": 0.184, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 309.0, + "total_tests": 2443.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 158.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 55.3, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-04-14", + "total_cases": 62.0, + "new_cases": 21.0, + "new_cases_smoothed": 5.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.14, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 360.0, + "total_tests": 2803.0, + "total_tests_per_thousand": 0.052, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 204.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 35.7, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-15", + "total_cases": 74.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.36, + "new_cases_per_million": 0.221, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 433.0, + "total_tests": 3236.0, + "total_tests_per_thousand": 0.059, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 261.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 35.135, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-16", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.36, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 288.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 38.769, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-17", + "total_cases": 85.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.562, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.152, + "total_deaths_per_million": 0.074, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 3880.0, + "total_tests_per_thousand": 0.071, + "new_tests_smoothed": 323.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 38.983000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-18", + "total_cases": 94.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.728, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 267.0, + "total_tests": 4147.0, + "total_tests_per_thousand": 0.076, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 34.788000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-19", + "total_cases": 107.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.967, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.2, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 370.0, + "total_tests": 4517.0, + "total_tests_per_thousand": 0.083, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 340.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 31.316, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-20", + "total_cases": 111.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.04, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 402.0, + "total_tests": 4919.0, + "total_tests_per_thousand": 0.09, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 354.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 35.4, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 119.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.187, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 276.0, + "total_tests": 5195.0, + "total_tests_per_thousand": 0.095, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 342.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 121.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.224, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 251.0, + "total_tests": 5446.0, + "total_tests_per_thousand": 0.1, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 316.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 47.06399999999999, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-23", + "total_cases": 127.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.334, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 328.0, + "total_tests": 5774.0, + "total_tests_per_thousand": 0.106, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 317.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 41.868, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-24", + "total_cases": 132.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.426, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 341.0, + "total_tests": 6115.0, + "total_tests_per_thousand": 0.112, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 47.511, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-25", + "total_cases": 144.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.647, + "new_cases_per_million": 0.221, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 416.0, + "total_tests": 6531.0, + "total_tests_per_thousand": 0.12, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 341.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 47.74, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-26", + "total_cases": 146.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.683, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 337.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 60.486999999999995, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-27", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.683, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 7215.0, + "total_tests_per_thousand": 0.133, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 65.6, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-28", + "total_cases": 146.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.683, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 393.0, + "total_tests": 7608.0, + "total_tests_per_thousand": 0.14, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 345.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 89.444, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-29", + "total_cases": 150.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.757, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 282.0, + "total_tests": 7890.0, + "total_tests_per_thousand": 0.145, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 349.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 84.241, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-30", + "total_cases": 150.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 195.0, + "total_tests": 8085.0, + "total_tests_per_thousand": 0.149, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 330.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 100.435, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-01", + "total_cases": 151.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.775, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 155.0, + "total_tests": 8240.0, + "total_tests_per_thousand": 0.151, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 304.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-02", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 340.0, + "total_tests": 8580.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 293.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 293.0, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 86.11 + }, + { + "date": "2020-05-03", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.775, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 214.0, + "total_tests": 8794.0, + "total_tests_per_thousand": 0.162, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 274.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 383.6, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 155.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.849, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 244.0, + "total_tests": 9038.0, + "total_tests_per_thousand": 0.166, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 260.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 202.222, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 161.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 257.0, + "total_tests": 9295.0, + "total_tests_per_thousand": 0.171, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 241.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 112.46700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 161.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 747.0, + "total_tests": 10042.0, + "total_tests_per_thousand": 0.185, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 307.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 195.364, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 162.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.977, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 224.0, + "total_tests": 10266.0, + "total_tests_per_thousand": 0.189, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 312.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 182.0, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 176.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.235, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 566.0, + "total_tests": 10832.0, + "total_tests_per_thousand": 0.199, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 103.6, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 177.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.253, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 390.0, + "total_tests": 11222.0, + "total_tests_per_thousand": 0.206, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 377.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 101.5, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 178.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.271, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 260.0, + "total_tests": 11482.0, + "total_tests_per_thousand": 0.211, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 384.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 99.556, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 180.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.308, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 340.0, + "total_tests": 11822.0, + "total_tests_per_thousand": 0.217, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 398.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 111.44, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 240.0, + "total_tests": 12062.0, + "total_tests_per_thousand": 0.222, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 395.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 145.526, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 180.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 420.0, + "total_tests": 12482.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 349.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 128.579, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 181.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.327, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 513.0, + "total_tests": 12995.0, + "total_tests_per_thousand": 0.239, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 390.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 143.684, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-15", + "total_cases": 181.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.327, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 639.0, + "total_tests": 13634.0, + "total_tests_per_thousand": 0.251, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 400.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 560.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-16", + "total_cases": 182.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.345, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 365.0, + "total_tests": 13999.0, + "total_tests_per_thousand": 0.257, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 397.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 555.8, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 182.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 562.0, + "total_tests": 14561.0, + "total_tests_per_thousand": 0.268, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 440.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 770.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 187.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.437, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 576.0, + "total_tests": 15137.0, + "total_tests_per_thousand": 0.278, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 474.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 474.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 191.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.51, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 701.0, + "total_tests": 15838.0, + "total_tests_per_thousand": 0.291, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 539.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 193.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.547, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 712.0, + "total_tests": 16550.0, + "total_tests_per_thousand": 0.304, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 581.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 312.846, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 199.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.657, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1124.0, + "total_tests": 17674.0, + "total_tests_per_thousand": 0.325, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 259.778, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 199.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.657, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 201.0, + "total_tests": 17875.0, + "total_tests_per_thousand": 0.329, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 606.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 235.667, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 201.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.694, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 769.0, + "total_tests": 18644.0, + "total_tests_per_thousand": 0.343, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 664.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 244.632, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 905.0, + "total_tests": 19549.0, + "total_tests_per_thousand": 0.359, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 713.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 262.684, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 201.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.694, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 763.0, + "total_tests": 20312.0, + "total_tests_per_thousand": 0.373, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 739.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 369.5, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 203.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.731, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1130.0, + "total_tests": 21442.0, + "total_tests_per_thousand": 0.394, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 801.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 467.25, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 206.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.786, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1022.0, + "total_tests": 22464.0, + "total_tests_per_thousand": 0.413, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 845.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 455.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 206.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1026.0, + "total_tests": 23490.0, + "total_tests_per_thousand": 0.432, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 831.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 206.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 923.0, + "total_tests": 24413.0, + "total_tests_per_thousand": 0.449, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 934.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 934.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 224.0, + "new_cases": 18.0, + "new_cases_smoothed": 3.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.117, + "new_cases_per_million": 0.331, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1227.0, + "total_tests": 25640.0, + "total_tests_per_thousand": 0.471, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 999.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 304.043, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 224.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.117, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1437.0, + "total_tests": 27077.0, + "total_tests_per_thousand": 0.498, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1075.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 327.17400000000004, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 228.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.19, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1174.0, + "total_tests": 28251.0, + "total_tests_per_thousand": 0.519, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1134.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 294.0, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 228.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.19, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1672.0, + "total_tests": 29923.0, + "total_tests_per_thousand": 0.55, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1212.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 339.36, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 233.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.282, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1778.0, + "total_tests": 31701.0, + "total_tests_per_thousand": 0.583, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1320.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 342.222, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 234.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.301, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1886.0, + "total_tests": 33587.0, + "total_tests_per_thousand": 0.617, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1442.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 360.5, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 236.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.337, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1845.0, + "total_tests": 35432.0, + "total_tests_per_thousand": 0.651, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1574.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 367.267, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 236.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1887.0, + "total_tests": 37319.0, + "total_tests_per_thousand": 0.686, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1668.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 973.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 240.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.411, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1892.0, + "total_tests": 39211.0, + "total_tests_per_thousand": 0.721, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1733.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 758.188, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 243.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.466, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1389.0, + "total_tests": 40600.0, + "total_tests_per_thousand": 0.746, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1764.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 823.2, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 244.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.484, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1816.0, + "total_tests": 42416.0, + "total_tests_per_thousand": 0.78, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1785.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 780.938, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 246.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.521, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1520.0, + "total_tests": 43936.0, + "total_tests_per_thousand": 0.808, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1748.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 941.2310000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 249.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.576, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1990.0, + "total_tests": 45926.0, + "total_tests_per_thousand": 0.844, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1763.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 822.7330000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 261.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.797, + "new_cases_per_million": 0.221, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1784.0, + "total_tests": 47710.0, + "total_tests_per_thousand": 0.877, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1754.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 491.12, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2019.0, + "total_tests": 49729.0, + "total_tests_per_thousand": 0.914, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1773.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 496.44, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1722.0, + "total_tests": 51451.0, + "total_tests_per_thousand": 0.946, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1749.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 583.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 262.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.815, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1900.0, + "total_tests": 53351.0, + "total_tests_per_thousand": 0.981, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1822.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 671.263, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 262.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.815, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2061.0, + "total_tests": 55412.0, + "total_tests_per_thousand": 1.018, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1857.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 722.1669999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 262.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.815, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1314.0, + "total_tests": 56726.0, + "total_tests_per_thousand": 1.043, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1827.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 799.312, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 263.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.834, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1904.0, + "total_tests": 58630.0, + "total_tests_per_thousand": 1.078, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1815.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 907.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 286.0, + "new_cases": 23.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.256, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1498.0, + "total_tests": 60128.0, + "total_tests_per_thousand": 1.105, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1774.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 496.72, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 286.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1942.0, + "total_tests": 62070.0, + "total_tests_per_thousand": 1.141, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1763.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 493.64, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 287.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.275, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1348.0, + "total_tests": 63418.0, + "total_tests_per_thousand": 1.166, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1710.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 460.385, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 290.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.33, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1114.0, + "total_tests": 64532.0, + "total_tests_per_thousand": 1.186, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1597.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 399.25, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 291.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.348, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1821.0, + "total_tests": 66353.0, + "total_tests_per_thousand": 1.22, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1563.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 377.276, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 292.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.367, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2051.0, + "total_tests": 68404.0, + "total_tests_per_thousand": 1.257, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1668.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 389.2, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 293.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.385, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1862.0, + "total_tests": 70266.0, + "total_tests_per_thousand": 1.291, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1662.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 387.8, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1426.0, + "total_tests": 71692.0, + "total_tests_per_thousand": 1.318, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1652.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 1652.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1586.0, + "total_tests": 73278.0, + "total_tests_per_thousand": 1.347, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1601.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 1601.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 296.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.44, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1700.0, + "total_tests": 74978.0, + "total_tests_per_thousand": 1.378, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1651.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 1284.111, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 299.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.495, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1337.0, + "total_tests": 76315.0, + "total_tests_per_thousand": 1.403, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1683.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 1309.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 299.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1451.0, + "total_tests": 77766.0, + "total_tests_per_thousand": 1.429, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1630.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 1426.25, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 299.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.495, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1306.0, + "total_tests": 79072.0, + "total_tests_per_thousand": 1.453, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1524.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 1524.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 304.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.587, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1535.0, + "total_tests": 80607.0, + "total_tests_per_thousand": 1.481, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1477.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 939.909, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 304.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.587, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1370.0, + "total_tests": 81977.0, + "total_tests_per_thousand": 1.507, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1469.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 934.818, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 306.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.624, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1562.0, + "total_tests": 83539.0, + "total_tests_per_thousand": 1.535, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1466.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 789.385, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 313.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.753, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 934.0, + "total_tests": 84473.0, + "total_tests_per_thousand": 1.553, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1356.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 558.3530000000001, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 313.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1333.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 666.5, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 316.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.808, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 86821.0, + "total_tests_per_thousand": 1.596, + "new_tests_smoothed": 1294.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 532.8240000000001, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 316.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.808, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1413.0, + "total_tests": 88234.0, + "total_tests_per_thousand": 1.622, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1309.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 539.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 318.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.845, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1679.0, + "total_tests": 89913.0, + "total_tests_per_thousand": 1.653, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1329.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 664.5, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 321.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.9, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1566.0, + "total_tests": 91479.0, + "total_tests_per_thousand": 1.681, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1357.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 558.765, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 326.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.992, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1697.0, + "total_tests": 93176.0, + "total_tests_per_thousand": 1.712, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1377.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 481.95, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 330.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.065, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 992.0, + "total_tests": 94168.0, + "total_tests_per_thousand": 1.731, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1385.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 570.294, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 331.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.083, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 704.0, + "total_tests": 94872.0, + "total_tests_per_thousand": 1.744, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1318.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 512.556, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 336.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.175, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1452.0, + "total_tests": 96324.0, + "total_tests_per_thousand": 1.77, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1358.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 475.3, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 337.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.194, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1327.0, + "total_tests": 97651.0, + "total_tests_per_thousand": 1.795, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1345.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 448.333, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 337.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.194, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1651.0, + "total_tests": 99302.0, + "total_tests_per_thousand": 1.825, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 1341.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 494.05300000000005, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 339.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.23, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1649.0, + "total_tests": 100951.0, + "total_tests_per_thousand": 1.855, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 1353.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 526.1669999999999, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1548.0, + "total_tests": 102499.0, + "total_tests_per_thousand": 1.884, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1332.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 717.2310000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 341.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.267, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1389.0, + "total_tests": 103888.0, + "total_tests_per_thousand": 1.909, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1389.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 883.909, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 986.0, + "total_tests": 104874.0, + "total_tests_per_thousand": 1.927, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1429.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 1000.3, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 761.0, + "total_tests": 105635.0, + "total_tests_per_thousand": 1.941, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1330.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 1862.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-22", + "total_cases": 341.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.267, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1038.0, + "total_tests": 106673.0, + "total_tests_per_thousand": 1.961, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1289.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 2255.75, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-23", + "total_cases": 343.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.304, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1255.0, + "total_tests": 107928.0, + "total_tests_per_thousand": 1.984, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1232.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 1437.3329999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-24", + "total_cases": 343.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.304, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1406.0, + "total_tests": 109334.0, + "total_tests_per_thousand": 2.009, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1198.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 2096.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-25", + "total_cases": 346.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.359, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1192.0, + "total_tests": 110526.0, + "total_tests_per_thousand": 2.031, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 1147.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-26", + "total_cases": 349.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.414, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 899.0, + "total_tests": 111425.0, + "total_tests_per_thousand": 2.048, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1077.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 942.375, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-27", + "total_cases": 350.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.433, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 956.0, + "total_tests": 112381.0, + "total_tests_per_thousand": 2.065, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1072.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 833.778, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-28", + "total_cases": 350.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.433, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1117.0, + "total_tests": 113498.0, + "total_tests_per_thousand": 2.086, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1123.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 873.444, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-29", + "total_cases": 351.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.451, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2203.0, + "total_tests": 115701.0, + "total_tests_per_thousand": 2.126, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1290.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 903.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-30", + "total_cases": 353.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.488, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 819.0, + "total_tests": 116520.0, + "total_tests_per_thousand": 2.142, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1227.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 858.9, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-31", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.488, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 699.0, + "total_tests": 117219.0, + "total_tests_per_thousand": 2.154, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 1126.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 788.2, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-01", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.488, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 908.0, + "total_tests": 118127.0, + "total_tests_per_thousand": 2.171, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1086.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-02", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.488, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1015.0, + "total_tests": 119142.0, + "total_tests_per_thousand": 2.19, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1102.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1928.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-03", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.488, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1150.0, + "total_tests": 120292.0, + "total_tests_per_thousand": 2.211, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1130.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 2636.667, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-04", + "total_cases": 355.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.525, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 540.0, + "total_tests": 120832.0, + "total_tests_per_thousand": 2.221, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 1467.2, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-05", + "total_cases": 356.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.543, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1458.0, + "total_tests": 122290.0, + "total_tests_per_thousand": 2.248, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 941.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 1317.4, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-06", + "total_cases": 357.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.561, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1151.0, + "total_tests": 123441.0, + "total_tests_per_thousand": 2.269, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 1730.75, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-07", + "total_cases": 359.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.598, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1324.0, + "total_tests": 124765.0, + "total_tests_per_thousand": 2.293, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1257.667, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-08", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1062.0, + "total_tests": 125827.0, + "total_tests_per_thousand": 2.313, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1283.333, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-09", + "total_cases": 359.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1001.0, + "total_tests": 126828.0, + "total_tests_per_thousand": 2.331, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1098.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1281.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-10", + "total_cases": 360.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.616, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 898.0, + "total_tests": 127726.0, + "total_tests_per_thousand": 2.347, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1062.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 1062.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-11", + "total_cases": 360.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.616, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1075.0, + "total_tests": 128801.0, + "total_tests_per_thousand": 2.367, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1138.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 1593.2, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-12", + "total_cases": 360.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.616, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1738.0, + "total_tests": 130539.0, + "total_tests_per_thousand": 2.399, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1178.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 2061.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-13", + "total_cases": 361.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.635, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1760.0, + "total_tests": 132299.0, + "total_tests_per_thousand": 2.432, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1265.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 2213.75, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-14", + "total_cases": 369.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.782, + "new_cases_per_million": 0.147, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1736.0, + "total_tests": 134035.0, + "total_tests_per_thousand": 2.463, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1324.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 926.8, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-15", + "total_cases": 374.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.874, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1367.0, + "total_tests": 135402.0, + "total_tests_per_thousand": 2.489, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1368.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 638.4, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-16", + "total_cases": 374.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 751.0, + "total_tests": 136153.0, + "total_tests_per_thousand": 2.502, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1332.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 621.6, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-17", + "total_cases": 375.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.892, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1596.0, + "total_tests": 137749.0, + "total_tests_per_thousand": 2.532, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 668.2669999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 74.07 + }, + { + "date": "2020-08-18", + "total_cases": 376.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.911, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1765.0, + "total_tests": 139514.0, + "total_tests_per_thousand": 2.564, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1530.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 669.375, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-19", + "total_cases": 379.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.966, + "new_cases_per_million": 0.055, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1530.0, + "total_tests": 141044.0, + "total_tests_per_thousand": 2.592, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1501.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 553.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 396.0, + "new_cases": 17.0, + "new_cases_smoothed": 5.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.278, + "new_cases_per_million": 0.312, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1472.0, + "total_tests": 142516.0, + "total_tests_per_thousand": 2.619, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1460.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 292.0, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 409.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.517, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1538.0, + "total_tests": 144054.0, + "total_tests_per_thousand": 2.648, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1431.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 250.425, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 435.0, + "new_cases": 26.0, + "new_cases_smoothed": 8.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.995, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1113.0, + "total_tests": 145167.0, + "total_tests_per_thousand": 2.668, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1395.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 160.082, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 444.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.16, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 870.0, + "total_tests": 146037.0, + "total_tests_per_thousand": 2.684, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1412.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 141.2, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 463.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.509, + "new_cases_per_million": 0.349, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1783.0, + "total_tests": 147820.0, + "total_tests_per_thousand": 2.717, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1439.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 114.46600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 474.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.712, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2041.0, + "total_tests": 149861.0, + "total_tests_per_thousand": 2.754, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1478.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 105.571, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 504.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.263, + "new_cases_per_million": 0.551, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2078.0, + "total_tests": 151939.0, + "total_tests_per_thousand": 2.792, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1556.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 87.13600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 586.0, + "new_cases": 82.0, + "new_cases_smoothed": 27.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.77, + "new_cases_per_million": 1.507, + "new_cases_smoothed_per_million": 0.499, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1882.0, + "total_tests": 153821.0, + "total_tests_per_thousand": 2.827, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1615.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 59.5, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-28", + "total_cases": 628.0, + "new_cases": 42.0, + "new_cases_smoothed": 31.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.542, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 0.575, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2221.0, + "total_tests": 156042.0, + "total_tests_per_thousand": 2.868, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 1713.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 54.753, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 656.0, + "new_cases": 28.0, + "new_cases_smoothed": 31.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.057, + "new_cases_per_million": 0.515, + "new_cases_smoothed_per_million": 0.58, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1801.0, + "total_tests": 157843.0, + "total_tests_per_thousand": 2.901, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1811.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 57.361999999999995, + "positive_rate": 0.017, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 749.0, + "new_cases": 93.0, + "new_cases_smoothed": 43.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.766, + "new_cases_per_million": 1.709, + "new_cases_smoothed_per_million": 0.801, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2413.0, + "total_tests": 160256.0, + "total_tests_per_thousand": 2.945, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 2031.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 46.613, + "positive_rate": 0.021, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 787.0, + "new_cases": 38.0, + "new_cases_smoothed": 46.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.464, + "new_cases_per_million": 0.698, + "new_cases_smoothed_per_million": 0.851, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1912.0, + "total_tests": 162168.0, + "total_tests_per_thousand": 2.98, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 2050.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 44.29, + "positive_rate": 0.023, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 887.0, + "new_cases": 100.0, + "new_cases_smoothed": 59.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.302, + "new_cases_per_million": 1.838, + "new_cases_smoothed_per_million": 1.084, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 938.0, + "new_cases": 51.0, + "new_cases_smoothed": 62.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.24, + "new_cases_per_million": 0.937, + "new_cases_smoothed_per_million": 1.14, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 1058.0, + "new_cases": 120.0, + "new_cases_smoothed": 67.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.445, + "new_cases_per_million": 2.205, + "new_cases_smoothed_per_million": 1.239, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 1133.0, + "new_cases": 75.0, + "new_cases_smoothed": 72.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.823, + "new_cases_per_million": 1.378, + "new_cases_smoothed_per_million": 1.326, + "total_deaths_per_million": 0.129, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.003 + }, + { + "date": "2020-09-05", + "total_cases": 1216.0, + "new_cases": 83.0, + "new_cases_smoothed": 80.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.349, + "new_cases_per_million": 1.525, + "new_cases_smoothed_per_million": 1.47, + "total_deaths_per_million": 0.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003 + } + ] + }, + "NAM": { + "continent": "Africa", + "location": "Namibia", + "population": 2540916.0, + "population_density": 3.078, + "median_age": 22.0, + "aged_65_older": 3.552, + "aged_70_older": 2.085, + "gdp_per_capita": 9541.808, + "extreme_poverty": 13.4, + "cardiovasc_death_rate": 243.811, + "diabetes_prevalence": 3.94, + "female_smokers": 9.7, + "male_smokers": 34.2, + "handwashing_facilities": 44.6, + "life_expectancy": 63.71, + "data": [ + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.787, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-16", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-17", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-18", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-19", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.787, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.574, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 8.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.148, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-30", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.329, + "new_cases_per_million": 1.181, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-31", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-02", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.116, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.506, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-04", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.51, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.51, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-06", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-04-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-06", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-05-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-13", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.297, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.084, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-23", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.478, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-24", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.871, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-25", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.265, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-26", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-27", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-28", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.658, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-29", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-30", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.052, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-31", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-01", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.445, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-02", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.839, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.839, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.839, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.839, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.839, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.413, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.2, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.594, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.594, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-16", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.594, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-17", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.381, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-18", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.168, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-19", + "total_cases": 39.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.349, + "new_cases_per_million": 1.181, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-20", + "total_cases": 45.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.71, + "new_cases_per_million": 2.361, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-21", + "total_cases": 46.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.104, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-22", + "total_cases": 55.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.646, + "new_cases_per_million": 3.542, + "new_cases_smoothed_per_million": 1.293, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-06-23", + "total_cases": 63.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.794, + "new_cases_per_million": 3.148, + "new_cases_smoothed_per_million": 1.743, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-24", + "total_cases": 72.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.336, + "new_cases_per_million": 3.542, + "new_cases_smoothed_per_million": 2.136, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-25", + "total_cases": 76.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.91, + "new_cases_per_million": 1.574, + "new_cases_smoothed_per_million": 2.249, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-26", + "total_cases": 81.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.878, + "new_cases_per_million": 1.968, + "new_cases_smoothed_per_million": 2.361, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-27", + "total_cases": 121.0, + "new_cases": 40.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.621, + "new_cases_per_million": 15.742, + "new_cases_smoothed_per_million": 4.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-28", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.621, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.217, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-29", + "total_cases": 183.0, + "new_cases": 62.0, + "new_cases_smoothed": 18.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.021, + "new_cases_per_million": 24.401, + "new_cases_smoothed_per_million": 7.197, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 196.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.138, + "new_cases_per_million": 5.116, + "new_cases_smoothed_per_million": 7.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 203.0, + "new_cases": 7.0, + "new_cases_smoothed": 18.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.892, + "new_cases_per_million": 2.755, + "new_cases_smoothed_per_million": 7.365, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-02", + "total_cases": 285.0, + "new_cases": 82.0, + "new_cases_smoothed": 29.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 112.164, + "new_cases_per_million": 32.272, + "new_cases_smoothed_per_million": 11.751, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-03", + "total_cases": 293.0, + "new_cases": 8.0, + "new_cases_smoothed": 30.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 115.313, + "new_cases_per_million": 3.148, + "new_cases_smoothed_per_million": 11.919, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-04", + "total_cases": 350.0, + "new_cases": 57.0, + "new_cases_smoothed": 32.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 137.746, + "new_cases_per_million": 22.433, + "new_cases_smoothed_per_million": 12.875, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-05", + "total_cases": 375.0, + "new_cases": 25.0, + "new_cases_smoothed": 36.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 147.585, + "new_cases_per_million": 9.839, + "new_cases_smoothed_per_million": 14.281, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-06", + "total_cases": 412.0, + "new_cases": 37.0, + "new_cases_smoothed": 32.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.146, + "new_cases_per_million": 14.562, + "new_cases_smoothed_per_million": 12.875, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-07", + "total_cases": 485.0, + "new_cases": 73.0, + "new_cases_smoothed": 41.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.876, + "new_cases_per_million": 28.73, + "new_cases_smoothed_per_million": 16.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-08", + "total_cases": 539.0, + "new_cases": 54.0, + "new_cases_smoothed": 48.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 212.128, + "new_cases_per_million": 21.252, + "new_cases_smoothed_per_million": 18.891, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-09", + "total_cases": 593.0, + "new_cases": 54.0, + "new_cases_smoothed": 44.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.38, + "new_cases_per_million": 21.252, + "new_cases_smoothed_per_million": 17.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-10", + "total_cases": 615.0, + "new_cases": 22.0, + "new_cases_smoothed": 46.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.039, + "new_cases_per_million": 8.658, + "new_cases_smoothed_per_million": 18.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-11", + "total_cases": 668.0, + "new_cases": 53.0, + "new_cases_smoothed": 45.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 262.897, + "new_cases_per_million": 20.859, + "new_cases_smoothed_per_million": 17.879, + "total_deaths_per_million": 0.394, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 51.85 + }, + { + "date": "2020-07-12", + "total_cases": 668.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 262.897, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.473, + "total_deaths_per_million": 0.394, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 51.85 + }, + { + "date": "2020-07-13", + "total_cases": 785.0, + "new_cases": 117.0, + "new_cases_smoothed": 53.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 308.944, + "new_cases_per_million": 46.046, + "new_cases_smoothed_per_million": 20.971, + "total_deaths_per_million": 0.394, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 51.85 + }, + { + "date": "2020-07-14", + "total_cases": 861.0, + "new_cases": 76.0, + "new_cases_smoothed": 53.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 338.854, + "new_cases_per_million": 29.91, + "new_cases_smoothed_per_million": 21.14, + "total_deaths_per_million": 0.394, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 51.85 + }, + { + "date": "2020-07-15", + "total_cases": 864.0, + "new_cases": 3.0, + "new_cases_smoothed": 46.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 340.035, + "new_cases_per_million": 1.181, + "new_cases_smoothed_per_million": 18.272, + "total_deaths_per_million": 0.787, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 60.65 + }, + { + "date": "2020-07-16", + "total_cases": 960.0, + "new_cases": 96.0, + "new_cases_smoothed": 52.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 377.817, + "new_cases_per_million": 37.782, + "new_cases_smoothed_per_million": 20.634, + "total_deaths_per_million": 0.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 60.65 + }, + { + "date": "2020-07-17", + "total_cases": 1032.0, + "new_cases": 72.0, + "new_cases_smoothed": 59.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 406.153, + "new_cases_per_million": 28.336, + "new_cases_smoothed_per_million": 23.445, + "total_deaths_per_million": 0.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 60.65 + }, + { + "date": "2020-07-18", + "total_cases": 1078.0, + "new_cases": 46.0, + "new_cases_smoothed": 58.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 424.256, + "new_cases_per_million": 18.104, + "new_cases_smoothed_per_million": 23.051, + "total_deaths_per_million": 0.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 60.65 + }, + { + "date": "2020-07-19", + "total_cases": 1203.0, + "new_cases": 125.0, + "new_cases_smoothed": 76.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 473.451, + "new_cases_per_million": 49.195, + "new_cases_smoothed_per_million": 30.079, + "total_deaths_per_million": 0.787, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 60.65 + }, + { + "date": "2020-07-20", + "total_cases": 1247.0, + "new_cases": 44.0, + "new_cases_smoothed": 66.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 490.768, + "new_cases_per_million": 17.317, + "new_cases_smoothed_per_million": 25.975, + "total_deaths_per_million": 1.181, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 60.65 + }, + { + "date": "2020-07-21", + "total_cases": 1344.0, + "new_cases": 97.0, + "new_cases_smoothed": 69.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 528.943, + "new_cases_per_million": 38.175, + "new_cases_smoothed_per_million": 27.156, + "total_deaths_per_million": 1.574, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 60.65 + }, + { + "date": "2020-07-22", + "total_cases": 1366.0, + "new_cases": 22.0, + "new_cases_smoothed": 71.714, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 537.601, + "new_cases_per_million": 8.658, + "new_cases_smoothed_per_million": 28.224, + "total_deaths_per_million": 2.755, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 60.65 + }, + { + "date": "2020-07-23", + "total_cases": 1402.0, + "new_cases": 36.0, + "new_cases_smoothed": 63.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 551.77, + "new_cases_per_million": 14.168, + "new_cases_smoothed_per_million": 24.85, + "total_deaths_per_million": 2.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 60.65 + }, + { + "date": "2020-07-24", + "total_cases": 1522.0, + "new_cases": 120.0, + "new_cases_smoothed": 70.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 598.997, + "new_cases_per_million": 47.227, + "new_cases_smoothed_per_million": 27.549, + "total_deaths_per_million": 2.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 60.65 + }, + { + "date": "2020-07-25", + "total_cases": 1618.0, + "new_cases": 96.0, + "new_cases_smoothed": 77.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 636.778, + "new_cases_per_million": 37.782, + "new_cases_smoothed_per_million": 30.36, + "total_deaths_per_million": 2.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 60.65 + }, + { + "date": "2020-07-26", + "total_cases": 1687.0, + "new_cases": 69.0, + "new_cases_smoothed": 69.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 663.934, + "new_cases_per_million": 27.156, + "new_cases_smoothed_per_million": 27.212, + "total_deaths_per_million": 2.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 48.15 + }, + { + "date": "2020-07-27", + "total_cases": 1775.0, + "new_cases": 88.0, + "new_cases_smoothed": 75.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 698.567, + "new_cases_per_million": 34.633, + "new_cases_smoothed_per_million": 29.686, + "total_deaths_per_million": 3.148, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 48.15 + }, + { + "date": "2020-07-28", + "total_cases": 1843.0, + "new_cases": 68.0, + "new_cases_smoothed": 71.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 725.329, + "new_cases_per_million": 26.762, + "new_cases_smoothed_per_million": 28.055, + "total_deaths_per_million": 3.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 48.15 + }, + { + "date": "2020-07-29", + "total_cases": 1917.0, + "new_cases": 74.0, + "new_cases_smoothed": 78.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 754.452, + "new_cases_per_million": 29.123, + "new_cases_smoothed_per_million": 30.979, + "total_deaths_per_million": 3.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 48.15 + }, + { + "date": "2020-07-30", + "total_cases": 1986.0, + "new_cases": 69.0, + "new_cases_smoothed": 83.429, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 781.608, + "new_cases_per_million": 27.156, + "new_cases_smoothed_per_million": 32.834, + "total_deaths_per_million": 3.542, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 48.15 + }, + { + "date": "2020-07-31", + "total_cases": 2052.0, + "new_cases": 66.0, + "new_cases_smoothed": 75.714, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 807.583, + "new_cases_per_million": 25.975, + "new_cases_smoothed_per_million": 29.798, + "total_deaths_per_million": 3.936, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 48.15 + }, + { + "date": "2020-08-01", + "total_cases": 2129.0, + "new_cases": 77.0, + "new_cases_smoothed": 73.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 837.887, + "new_cases_per_million": 30.304, + "new_cases_smoothed_per_million": 28.73, + "total_deaths_per_million": 3.936, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 48.15 + }, + { + "date": "2020-08-02", + "total_cases": 2224.0, + "new_cases": 95.0, + "new_cases_smoothed": 76.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 875.275, + "new_cases_per_million": 37.388, + "new_cases_smoothed_per_million": 30.192, + "total_deaths_per_million": 4.329, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 48.15 + }, + { + "date": "2020-08-03", + "total_cases": 2294.0, + "new_cases": 70.0, + "new_cases_smoothed": 74.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 902.824, + "new_cases_per_million": 27.549, + "new_cases_smoothed_per_million": 29.18, + "total_deaths_per_million": 4.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 46.76 + }, + { + "date": "2020-08-04", + "total_cases": 2406.0, + "new_cases": 112.0, + "new_cases_smoothed": 80.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 946.903, + "new_cases_per_million": 44.079, + "new_cases_smoothed_per_million": 31.653, + "total_deaths_per_million": 4.723, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 48.61 + }, + { + "date": "2020-08-05", + "total_cases": 2470.0, + "new_cases": 64.0, + "new_cases_smoothed": 79.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 972.09, + "new_cases_per_million": 25.188, + "new_cases_smoothed_per_million": 31.091, + "total_deaths_per_million": 4.723, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 48.61 + }, + { + "date": "2020-08-06", + "total_cases": 2540.0, + "new_cases": 70.0, + "new_cases_smoothed": 79.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 999.64, + "new_cases_per_million": 27.549, + "new_cases_smoothed_per_million": 31.147, + "total_deaths_per_million": 4.723, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "stringency_index": 48.61 + }, + { + "date": "2020-08-07", + "total_cases": 2652.0, + "new_cases": 112.0, + "new_cases_smoothed": 85.714, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1043.718, + "new_cases_per_million": 44.079, + "new_cases_smoothed_per_million": 33.734, + "total_deaths_per_million": 5.903, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 48.61 + }, + { + "date": "2020-08-08", + "total_cases": 2802.0, + "new_cases": 150.0, + "new_cases_smoothed": 96.143, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1102.752, + "new_cases_per_million": 59.034, + "new_cases_smoothed_per_million": 37.838, + "total_deaths_per_million": 6.297, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.337, + "stringency_index": 48.61 + }, + { + "date": "2020-08-09", + "total_cases": 2802.0, + "new_cases": 0.0, + "new_cases_smoothed": 82.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1102.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.497, + "total_deaths_per_million": 6.297, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 48.61 + }, + { + "date": "2020-08-10", + "total_cases": 2949.0, + "new_cases": 147.0, + "new_cases_smoothed": 93.571, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1160.605, + "new_cases_per_million": 57.853, + "new_cases_smoothed_per_million": 36.826, + "total_deaths_per_million": 7.478, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 0.45, + "stringency_index": 48.61 + }, + { + "date": "2020-08-11", + "total_cases": 3101.0, + "new_cases": 152.0, + "new_cases_smoothed": 99.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1220.426, + "new_cases_per_million": 59.821, + "new_cases_smoothed_per_million": 39.075, + "total_deaths_per_million": 7.478, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.394, + "stringency_index": 48.61 + }, + { + "date": "2020-08-12", + "total_cases": 3229.0, + "new_cases": 128.0, + "new_cases_smoothed": 108.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1270.802, + "new_cases_per_million": 50.376, + "new_cases_smoothed_per_million": 42.673, + "total_deaths_per_million": 7.478, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.394, + "stringency_index": 60.19 + }, + { + "date": "2020-08-13", + "total_cases": 3406.0, + "new_cases": 177.0, + "new_cases_smoothed": 123.714, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1340.461, + "new_cases_per_million": 69.66, + "new_cases_smoothed_per_million": 48.689, + "total_deaths_per_million": 8.658, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 0.562, + "stringency_index": 60.19 + }, + { + "date": "2020-08-14", + "total_cases": 3544.0, + "new_cases": 138.0, + "new_cases_smoothed": 127.429, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1394.773, + "new_cases_per_million": 54.311, + "new_cases_smoothed_per_million": 50.151, + "total_deaths_per_million": 10.626, + "new_deaths_per_million": 1.968, + "new_deaths_smoothed_per_million": 0.675, + "stringency_index": 60.19 + }, + { + "date": "2020-08-15", + "total_cases": 3726.0, + "new_cases": 182.0, + "new_cases_smoothed": 132.0, + "total_deaths": 31.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1466.4, + "new_cases_per_million": 71.628, + "new_cases_smoothed_per_million": 51.95, + "total_deaths_per_million": 12.2, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 0.843, + "stringency_index": 60.19 + }, + { + "date": "2020-08-16", + "total_cases": 3907.0, + "new_cases": 181.0, + "new_cases_smoothed": 157.857, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1537.634, + "new_cases_per_million": 71.234, + "new_cases_smoothed_per_million": 62.126, + "total_deaths_per_million": 13.775, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 1.068, + "stringency_index": 60.19 + }, + { + "date": "2020-08-17", + "total_cases": 4154.0, + "new_cases": 247.0, + "new_cases_smoothed": 172.143, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1634.843, + "new_cases_per_million": 97.209, + "new_cases_smoothed_per_million": 67.748, + "total_deaths_per_million": 13.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.9, + "stringency_index": 60.19 + }, + { + "date": "2020-08-18", + "total_cases": 4344.0, + "new_cases": 190.0, + "new_cases_smoothed": 177.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1709.62, + "new_cases_per_million": 74.776, + "new_cases_smoothed_per_million": 69.885, + "total_deaths_per_million": 14.168, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 60.19 + }, + { + "date": "2020-08-19", + "total_cases": 4464.0, + "new_cases": 120.0, + "new_cases_smoothed": 176.429, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1756.847, + "new_cases_per_million": 47.227, + "new_cases_smoothed_per_million": 69.435, + "total_deaths_per_million": 14.562, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 1.012, + "stringency_index": 60.19 + }, + { + "date": "2020-08-20", + "total_cases": 4665.0, + "new_cases": 201.0, + "new_cases_smoothed": 179.857, + "total_deaths": 39.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1835.952, + "new_cases_per_million": 79.105, + "new_cases_smoothed_per_million": 70.784, + "total_deaths_per_million": 15.349, + "new_deaths_per_million": 0.787, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 60.19 + }, + { + "date": "2020-08-21", + "total_cases": 4912.0, + "new_cases": 247.0, + "new_cases_smoothed": 195.429, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1933.161, + "new_cases_per_million": 97.209, + "new_cases_smoothed_per_million": 76.913, + "total_deaths_per_million": 16.136, + "new_deaths_per_million": 0.787, + "new_deaths_smoothed_per_million": 0.787, + "stringency_index": 60.19 + }, + { + "date": "2020-08-22", + "total_cases": 5227.0, + "new_cases": 315.0, + "new_cases_smoothed": 214.429, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2057.132, + "new_cases_per_million": 123.971, + "new_cases_smoothed_per_million": 84.39, + "total_deaths_per_million": 16.529, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.618, + "stringency_index": 60.19 + }, + { + "date": "2020-08-23", + "total_cases": 5538.0, + "new_cases": 311.0, + "new_cases_smoothed": 233.0, + "total_deaths": 46.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2179.529, + "new_cases_per_million": 122.397, + "new_cases_smoothed_per_million": 91.699, + "total_deaths_per_million": 18.104, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 0.618, + "stringency_index": 60.19 + }, + { + "date": "2020-08-24", + "total_cases": 5854.0, + "new_cases": 316.0, + "new_cases_smoothed": 242.857, + "total_deaths": 52.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2303.894, + "new_cases_per_million": 124.365, + "new_cases_smoothed_per_million": 95.579, + "total_deaths_per_million": 20.465, + "new_deaths_per_million": 2.361, + "new_deaths_smoothed_per_million": 0.956, + "stringency_index": 60.19 + }, + { + "date": "2020-08-25", + "total_cases": 6030.0, + "new_cases": 176.0, + "new_cases_smoothed": 240.857, + "total_deaths": 56.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2373.16, + "new_cases_per_million": 69.266, + "new_cases_smoothed_per_million": 94.791, + "total_deaths_per_million": 22.039, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 1.124, + "stringency_index": 57.41 + }, + { + "date": "2020-08-26", + "total_cases": 6160.0, + "new_cases": 130.0, + "new_cases_smoothed": 242.286, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2424.323, + "new_cases_per_million": 51.163, + "new_cases_smoothed_per_million": 95.354, + "total_deaths_per_million": 22.433, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 1.124, + "stringency_index": 57.41 + }, + { + "date": "2020-08-27", + "total_cases": 6431.0, + "new_cases": 271.0, + "new_cases_smoothed": 252.286, + "total_deaths": 59.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2530.977, + "new_cases_per_million": 106.654, + "new_cases_smoothed_per_million": 99.289, + "total_deaths_per_million": 23.22, + "new_deaths_per_million": 0.787, + "new_deaths_smoothed_per_million": 1.124, + "stringency_index": 57.41 + }, + { + "date": "2020-08-28", + "total_cases": 6712.0, + "new_cases": 281.0, + "new_cases_smoothed": 257.143, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2641.567, + "new_cases_per_million": 110.59, + "new_cases_smoothed_per_million": 101.201, + "total_deaths_per_million": 23.614, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 1.068, + "stringency_index": 57.41 + }, + { + "date": "2020-08-29", + "total_cases": 6906.0, + "new_cases": 194.0, + "new_cases_smoothed": 239.857, + "total_deaths": 65.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2717.917, + "new_cases_per_million": 76.35, + "new_cases_smoothed_per_million": 94.398, + "total_deaths_per_million": 25.581, + "new_deaths_per_million": 1.968, + "new_deaths_smoothed_per_million": 1.293, + "stringency_index": 57.41 + }, + { + "date": "2020-08-30", + "total_cases": 7116.0, + "new_cases": 210.0, + "new_cases_smoothed": 225.429, + "total_deaths": 69.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2800.565, + "new_cases_per_million": 82.647, + "new_cases_smoothed_per_million": 88.719, + "total_deaths_per_million": 27.156, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 1.293, + "stringency_index": 57.41 + }, + { + "date": "2020-08-31", + "total_cases": 7365.0, + "new_cases": 249.0, + "new_cases_smoothed": 215.857, + "total_deaths": 72.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2898.561, + "new_cases_per_million": 97.996, + "new_cases_smoothed_per_million": 84.952, + "total_deaths_per_million": 28.336, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 1.124, + "stringency_index": 57.41 + }, + { + "date": "2020-09-01", + "total_cases": 7550.0, + "new_cases": 185.0, + "new_cases_smoothed": 217.143, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2971.369, + "new_cases_per_million": 72.808, + "new_cases_smoothed_per_million": 85.458, + "total_deaths_per_million": 29.517, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 1.068, + "stringency_index": 57.41 + }, + { + "date": "2020-09-02", + "total_cases": 7692.0, + "new_cases": 142.0, + "new_cases_smoothed": 218.857, + "total_deaths": 81.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 3027.255, + "new_cases_per_million": 55.885, + "new_cases_smoothed_per_million": 86.133, + "total_deaths_per_million": 31.878, + "new_deaths_per_million": 2.361, + "new_deaths_smoothed_per_million": 1.349, + "stringency_index": 57.41 + }, + { + "date": "2020-09-03", + "total_cases": 7844.0, + "new_cases": 152.0, + "new_cases_smoothed": 201.857, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 3087.076, + "new_cases_per_million": 59.821, + "new_cases_smoothed_per_million": 79.443, + "total_deaths_per_million": 32.272, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 1.293, + "stringency_index": 57.41 + }, + { + "date": "2020-09-04", + "total_cases": 8082.0, + "new_cases": 238.0, + "new_cases_smoothed": 195.714, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 3180.743, + "new_cases_per_million": 93.667, + "new_cases_smoothed_per_million": 77.025, + "total_deaths_per_million": 33.846, + "new_deaths_per_million": 1.574, + "new_deaths_smoothed_per_million": 1.462 + }, + { + "date": "2020-09-05", + "total_cases": 8323.0, + "new_cases": 241.0, + "new_cases_smoothed": 202.429, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3275.59, + "new_cases_per_million": 94.848, + "new_cases_smoothed_per_million": 79.668, + "total_deaths_per_million": 33.846, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.181 + } + ] + }, + "NPL": { + "continent": "Asia", + "location": "Nepal", + "population": 29136808.0, + "population_density": 204.43, + "median_age": 25.0, + "aged_65_older": 5.809, + "aged_70_older": 3.212, + "gdp_per_capita": 2442.804, + "extreme_poverty": 15.0, + "cardiovasc_death_rate": 260.797, + "diabetes_prevalence": 7.26, + "female_smokers": 9.5, + "male_smokers": 37.8, + "handwashing_facilities": 47.782, + "hospital_beds_per_thousand": 0.3, + "life_expectancy": 70.78, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3.0, + "total_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-01-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 5.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 14.0, + "total_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 18.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 24.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 34.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 35.0, + "total_tests_per_thousand": 0.001, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 175.0, + "total_tests": 210.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 212.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 216.0, + "total_tests_per_thousand": 0.007, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 217.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 221.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 222.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 224.0, + "total_tests_per_thousand": 0.008, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 16.67 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 243.0, + "total_tests_per_thousand": 0.008, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 182.0, + "total_tests": 425.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 433.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 437.0, + "total_tests_per_thousand": 0.015, + "new_tests_smoothed": 30.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 445.0, + "total_tests_per_thousand": 0.015, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 447.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 450.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 456.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 467.0, + "total_tests_per_thousand": 0.016, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 478.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18.0, + "total_tests": 496.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 512.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 9.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 529.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 11.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 546.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 572.0, + "total_tests_per_thousand": 0.02, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 37.0, + "total_tests": 609.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 610.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 77.0, + "total_tests": 687.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 87.5, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 758.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 115.5, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 802.0, + "total_tests_per_thousand": 0.028, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 129.5, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 73.0, + "total_tests": 875.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 45.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 157.5, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42.0, + "total_tests": 917.0, + "total_tests_per_thousand": 0.031, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 85.75, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 993.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 96.25, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 1060.0, + "total_tests_per_thousand": 0.036, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 64.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 149.333, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 85.0, + "total_tests": 1145.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 227.5, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 1185.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 61.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 213.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.172, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 123.0, + "total_tests": 1308.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.206, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 213.0, + "total_tests": 1521.0, + "total_tests_per_thousand": 0.052, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 92.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 214.667, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.206, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 121.0, + "total_tests": 1642.0, + "total_tests_per_thousand": 0.056, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 104.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 728.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 248.0, + "total_tests": 1890.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 128.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 224.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 232.0, + "total_tests": 2122.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 244.0, + "total_tests": 2366.0, + "total_tests_per_thousand": 0.081, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 174.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 304.5, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 529.0, + "total_tests": 2895.0, + "total_tests_per_thousand": 0.099, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 244.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 427.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 630.0, + "total_tests": 3525.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 317.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 554.75, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 901.0, + "total_tests": 4426.0, + "total_tests_per_thousand": 0.152, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 415.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 968.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 758.0, + "total_tests": 5184.0, + "total_tests_per_thousand": 0.178, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 506.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 1180.667, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 12.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.412, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 507.0, + "total_tests": 5691.0, + "total_tests_per_thousand": 0.195, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 543.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 1267.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 608.0, + "total_tests": 6299.0, + "total_tests_per_thousand": 0.216, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 597.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 835.8, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 572.0, + "total_tests": 6871.0, + "total_tests_per_thousand": 0.236, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 644.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 369.0, + "total_tests": 7240.0, + "total_tests_per_thousand": 0.248, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 621.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 621.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 218.0, + "total_tests": 7458.0, + "total_tests_per_thousand": 0.256, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 562.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 562.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 30.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.03, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 555.0, + "total_tests": 8013.0, + "total_tests_per_thousand": 0.275, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 512.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 170.667, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.064, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 68.0, + "total_tests": 8081.0, + "total_tests_per_thousand": 0.277, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 414.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 131.727, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 333.0, + "total_tests": 8414.0, + "total_tests_per_thousand": 0.289, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 389.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 143.316, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 349.0, + "total_tests": 8763.0, + "total_tests_per_thousand": 0.301, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 352.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 144.941, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 42.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.441, + "new_cases_per_million": 0.378, + "new_cases_smoothed_per_million": 0.127, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 251.0, + "total_tests": 9014.0, + "total_tests_per_thousand": 0.309, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 306.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 82.385, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 45.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.544, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 186.0, + "total_tests": 9200.0, + "total_tests_per_thousand": 0.316, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 280.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 67.586, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 48.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.647, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 202.0, + "total_tests": 9402.0, + "total_tests_per_thousand": 0.323, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 278.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 60.812, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 49.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.682, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 264.0, + "total_tests": 9666.0, + "total_tests_per_thousand": 0.332, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 236.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 86.947, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 265.0, + "total_tests": 9931.0, + "total_tests_per_thousand": 0.341, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 264.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 102.667, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 52.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.785, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 540.0, + "total_tests": 10471.0, + "total_tests_per_thousand": 0.359, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 294.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 336.0, + "total_tests": 10807.0, + "total_tests_per_thousand": 0.371, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 97.333, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 54.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.853, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 717.0, + "total_tests": 11524.0, + "total_tests_per_thousand": 0.396, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 359.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 209.417, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 57.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.956, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 487.0, + "total_tests": 12011.0, + "total_tests_per_thousand": 0.412, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 402.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 234.5, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.956, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 566.0, + "total_tests": 12577.0, + "total_tests_per_thousand": 0.432, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 454.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 353.111, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 59.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.025, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 521.0, + "total_tests": 13098.0, + "total_tests_per_thousand": 0.45, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 490.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.025, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 326.0, + "total_tests": 13424.0, + "total_tests_per_thousand": 0.461, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 499.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 349.3, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 75.0, + "new_cases": 16.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.574, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 216.0, + "total_tests": 13640.0, + "total_tests_per_thousand": 0.468, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 453.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 137.87, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 82.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.814, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 210.0, + "total_tests": 13850.0, + "total_tests_per_thousand": 0.475, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 435.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 101.5, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.814, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 246.0, + "total_tests": 14096.0, + "total_tests_per_thousand": 0.484, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 91.75, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 99.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.398, + "new_cases_per_million": 0.583, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 415.0, + "total_tests": 14511.0, + "total_tests_per_thousand": 0.498, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 357.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 59.5, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-08", + "total_cases": 101.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.466, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 981.0, + "total_tests": 15492.0, + "total_tests_per_thousand": 0.532, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 416.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 66.182, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-09", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 817.0, + "total_tests": 16309.0, + "total_tests_per_thousand": 0.56, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 76.5, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-10", + "total_cases": 109.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.741, + "new_cases_per_million": 0.275, + "new_cases_smoothed_per_million": 0.245, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 589.0, + "total_tests": 16898.0, + "total_tests_per_thousand": 0.58, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 496.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 69.44, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-11", + "total_cases": 120.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.119, + "new_cases_per_million": 0.378, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 911.0, + "total_tests": 17809.0, + "total_tests_per_thousand": 0.611, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 596.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 92.711, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-12", + "total_cases": 134.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.599, + "new_cases_per_million": 0.48, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1155.0, + "total_tests": 18964.0, + "total_tests_per_thousand": 0.651, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 731.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 98.404, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-13", + "total_cases": 217.0, + "new_cases": 83.0, + "new_cases_smoothed": 19.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.448, + "new_cases_per_million": 2.849, + "new_cases_smoothed_per_million": 0.662, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2376.0, + "total_tests": 21340.0, + "total_tests_per_thousand": 0.732, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1035.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 53.667, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-14", + "total_cases": 219.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.516, + "new_cases_per_million": 0.069, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1324.0, + "total_tests": 22664.0, + "total_tests_per_thousand": 0.778, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 1165.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 67.958, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-15", + "total_cases": 258.0, + "new_cases": 39.0, + "new_cases_smoothed": 22.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.855, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 0.77, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1250.0, + "total_tests": 23914.0, + "total_tests_per_thousand": 0.821, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1203.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 53.637, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-16", + "total_cases": 276.0, + "new_cases": 18.0, + "new_cases_smoothed": 25.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.473, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2777.0, + "total_tests": 26691.0, + "total_tests_per_thousand": 0.916, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 1483.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 59.32, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-17", + "total_cases": 291.0, + "new_cases": 15.0, + "new_cases_smoothed": 26.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.987, + "new_cases_per_million": 0.515, + "new_cases_smoothed_per_million": 0.892, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 1470.0, + "total_tests": 28161.0, + "total_tests_per_thousand": 0.967, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1609.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 61.885, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-18", + "total_cases": 304.0, + "new_cases": 13.0, + "new_cases_smoothed": 26.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.434, + "new_cases_per_million": 0.446, + "new_cases_smoothed_per_million": 0.902, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 2563.0, + "total_tests": 30724.0, + "total_tests_per_thousand": 1.054, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 1845.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 70.19, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-19", + "total_cases": 375.0, + "new_cases": 71.0, + "new_cases_smoothed": 34.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12.87, + "new_cases_per_million": 2.437, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 2282.0, + "total_tests": 33006.0, + "total_tests_per_thousand": 1.133, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2006.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 58.266000000000005, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-20", + "total_cases": 402.0, + "new_cases": 27.0, + "new_cases_smoothed": 26.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.797, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 0.907, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 2488.0, + "total_tests": 35494.0, + "total_tests_per_thousand": 1.218, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 2022.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 76.508, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-21", + "total_cases": 444.0, + "new_cases": 42.0, + "new_cases_smoothed": 32.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.238, + "new_cases_per_million": 1.441, + "new_cases_smoothed_per_million": 1.103, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3243.0, + "total_tests": 38737.0, + "total_tests_per_thousand": 1.329, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 2296.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 71.431, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-22", + "total_cases": 487.0, + "new_cases": 43.0, + "new_cases_smoothed": 32.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 16.714, + "new_cases_per_million": 1.476, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3780.0, + "total_tests": 42517.0, + "total_tests_per_thousand": 1.459, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 2658.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 81.249, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-23", + "total_cases": 548.0, + "new_cases": 61.0, + "new_cases_smoothed": 38.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.808, + "new_cases_per_million": 2.094, + "new_cases_smoothed_per_million": 1.334, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3442.0, + "total_tests": 45959.0, + "total_tests_per_thousand": 1.577, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2753.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 70.84899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-24", + "total_cases": 584.0, + "new_cases": 36.0, + "new_cases_smoothed": 41.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.043, + "new_cases_per_million": 1.236, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 2856.0, + "total_tests": 48815.0, + "total_tests_per_thousand": 1.675, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 2951.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 70.502, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-25", + "total_cases": 603.0, + "new_cases": 19.0, + "new_cases_smoothed": 42.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.695, + "new_cases_per_million": 0.652, + "new_cases_smoothed_per_million": 1.466, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 2827.0, + "total_tests": 51642.0, + "total_tests_per_thousand": 1.772, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 2988.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 69.953, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-26", + "total_cases": 682.0, + "new_cases": 79.0, + "new_cases_smoothed": 43.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.407, + "new_cases_per_million": 2.711, + "new_cases_smoothed_per_million": 1.505, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3055.0, + "total_tests": 54697.0, + "total_tests_per_thousand": 1.877, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 3099.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 70.661, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-27", + "total_cases": 772.0, + "new_cases": 90.0, + "new_cases_smoothed": 52.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 26.496, + "new_cases_per_million": 3.089, + "new_cases_smoothed_per_million": 1.814, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3580.0, + "total_tests": 58277.0, + "total_tests_per_thousand": 2.0, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 3255.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 61.581, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-28", + "total_cases": 886.0, + "new_cases": 114.0, + "new_cases_smoothed": 63.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.408, + "new_cases_per_million": 3.913, + "new_cases_smoothed_per_million": 2.167, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 2639.0, + "total_tests": 60916.0, + "total_tests_per_thousand": 2.091, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 3168.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 50.172, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-29", + "total_cases": 1042.0, + "new_cases": 156.0, + "new_cases_smoothed": 79.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 35.762, + "new_cases_per_million": 5.354, + "new_cases_smoothed_per_million": 2.721, + "total_deaths_per_million": 0.172, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3238.0, + "total_tests": 64154.0, + "total_tests_per_thousand": 2.202, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 3091.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 38.986, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-30", + "total_cases": 1212.0, + "new_cases": 170.0, + "new_cases_smoothed": 94.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41.597, + "new_cases_per_million": 5.835, + "new_cases_smoothed_per_million": 3.256, + "total_deaths_per_million": 0.206, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2575.0, + "total_tests": 66729.0, + "total_tests_per_thousand": 2.29, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 2967.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 31.279, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-05-31", + "total_cases": 1401.0, + "new_cases": 189.0, + "new_cases_smoothed": 116.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 48.084, + "new_cases_per_million": 6.487, + "new_cases_smoothed_per_million": 4.006, + "total_deaths_per_million": 0.206, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2858.0, + "total_tests": 69587.0, + "total_tests_per_thousand": 2.388, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 2967.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 25.421, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-01", + "total_cases": 1572.0, + "new_cases": 171.0, + "new_cases_smoothed": 138.429, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 53.952, + "new_cases_per_million": 5.869, + "new_cases_smoothed_per_million": 4.751, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 2316.0, + "total_tests": 71903.0, + "total_tests_per_thousand": 2.468, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 2894.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 20.906, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-02", + "total_cases": 1798.0, + "new_cases": 226.0, + "new_cases_smoothed": 159.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 61.709, + "new_cases_per_million": 7.757, + "new_cases_smoothed_per_million": 5.472, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 3440.0, + "total_tests": 75343.0, + "total_tests_per_thousand": 2.586, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2949.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 18.497, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-03", + "total_cases": 2099.0, + "new_cases": 301.0, + "new_cases_smoothed": 189.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 72.039, + "new_cases_per_million": 10.331, + "new_cases_smoothed_per_million": 6.506, + "total_deaths_per_million": 0.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4924.0, + "total_tests": 80267.0, + "total_tests_per_thousand": 2.755, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 3141.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 16.569000000000003, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-04", + "total_cases": 2300.0, + "new_cases": 201.0, + "new_cases_smoothed": 202.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 78.938, + "new_cases_per_million": 6.898, + "new_cases_smoothed_per_million": 6.933, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3867.0, + "total_tests": 84134.0, + "total_tests_per_thousand": 2.888, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 3317.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 16.421, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-05", + "total_cases": 2634.0, + "new_cases": 334.0, + "new_cases_smoothed": 227.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 90.401, + "new_cases_per_million": 11.463, + "new_cases_smoothed_per_million": 7.806, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4232.0, + "total_tests": 88366.0, + "total_tests_per_thousand": 3.033, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 3459.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 15.209000000000001, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-06", + "total_cases": 2912.0, + "new_cases": 278.0, + "new_cases_smoothed": 242.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 99.942, + "new_cases_per_million": 9.541, + "new_cases_smoothed_per_million": 8.335, + "total_deaths_per_million": 0.378, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4111.0, + "total_tests": 92477.0, + "total_tests_per_thousand": 3.174, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 3678.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 15.145, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-07", + "total_cases": 2912.0, + "new_cases": 0.0, + "new_cases_smoothed": 215.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 99.942, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.408, + "total_deaths_per_million": 0.378, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3728.0, + "total_tests": 96205.0, + "total_tests_per_thousand": 3.302, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 3803.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 17.618, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-08", + "total_cases": 3448.0, + "new_cases": 536.0, + "new_cases_smoothed": 268.0, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 118.338, + "new_cases_per_million": 18.396, + "new_cases_smoothed_per_million": 9.198, + "total_deaths_per_million": 0.446, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4766.0, + "total_tests": 100971.0, + "total_tests_per_thousand": 3.465, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 4153.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 15.495999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-09", + "total_cases": 3762.0, + "new_cases": 314.0, + "new_cases_smoothed": 280.571, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 129.115, + "new_cases_per_million": 10.777, + "new_cases_smoothed_per_million": 9.629, + "total_deaths_per_million": 0.48, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 5359.0, + "total_tests": 106330.0, + "total_tests_per_thousand": 3.649, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 4427.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 15.779000000000002, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-10", + "total_cases": 4085.0, + "new_cases": 323.0, + "new_cases_smoothed": 283.714, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 140.201, + "new_cases_per_million": 11.086, + "new_cases_smoothed_per_million": 9.737, + "total_deaths_per_million": 0.515, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 4414.0, + "total_tests": 110744.0, + "total_tests_per_thousand": 3.801, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 4354.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 15.345999999999998, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-11", + "total_cases": 4364.0, + "new_cases": 279.0, + "new_cases_smoothed": 294.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 149.776, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 10.12, + "total_deaths_per_million": 0.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 5193.0, + "total_tests": 115937.0, + "total_tests_per_thousand": 3.979, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 4543.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 15.407, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-12", + "total_cases": 4614.0, + "new_cases": 250.0, + "new_cases_smoothed": 282.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 158.356, + "new_cases_per_million": 8.58, + "new_cases_smoothed_per_million": 9.708, + "total_deaths_per_million": 0.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 5925.0, + "total_tests": 121862.0, + "total_tests_per_thousand": 4.182, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 4785.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 16.917, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-13", + "total_cases": 5062.0, + "new_cases": 448.0, + "new_cases_smoothed": 307.143, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 173.732, + "new_cases_per_million": 15.376, + "new_cases_smoothed_per_million": 10.541, + "total_deaths_per_million": 0.549, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 5426.0, + "total_tests": 127288.0, + "total_tests_per_thousand": 4.369, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 4973.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 16.191, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-14", + "total_cases": 5335.0, + "new_cases": 273.0, + "new_cases_smoothed": 346.143, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 183.102, + "new_cases_per_million": 9.37, + "new_cases_smoothed_per_million": 11.88, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 6089.0, + "total_tests": 133377.0, + "total_tests_per_thousand": 4.578, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 5310.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 15.34, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-15", + "total_cases": 5760.0, + "new_cases": 425.0, + "new_cases_smoothed": 330.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 197.688, + "new_cases_per_million": 14.586, + "new_cases_smoothed_per_million": 11.336, + "total_deaths_per_million": 0.652, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 5306.0, + "total_tests": 138683.0, + "total_tests_per_thousand": 4.76, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 5387.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 16.31, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-16", + "total_cases": 6211.0, + "new_cases": 451.0, + "new_cases_smoothed": 349.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 213.167, + "new_cases_per_million": 15.479, + "new_cases_smoothed_per_million": 12.007, + "total_deaths_per_million": 0.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 5055.0, + "total_tests": 143738.0, + "total_tests_per_thousand": 4.933, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 5344.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 15.275, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-17", + "total_cases": 6591.0, + "new_cases": 380.0, + "new_cases_smoothed": 358.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 226.209, + "new_cases_per_million": 13.042, + "new_cases_smoothed_per_million": 12.287, + "total_deaths_per_million": 0.652, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6034.0, + "total_tests": 149772.0, + "total_tests_per_thousand": 5.14, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 5575.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 15.573, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-18", + "total_cases": 7177.0, + "new_cases": 586.0, + "new_cases_smoothed": 401.857, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 246.321, + "new_cases_per_million": 20.112, + "new_cases_smoothed_per_million": 13.792, + "total_deaths_per_million": 0.686, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 5746.0, + "total_tests": 155518.0, + "total_tests_per_thousand": 5.338, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 5654.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 14.07, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-19", + "total_cases": 7848.0, + "new_cases": 671.0, + "new_cases_smoothed": 462.0, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 269.35, + "new_cases_per_million": 23.029, + "new_cases_smoothed_per_million": 15.856, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 6231.0, + "total_tests": 161749.0, + "total_tests_per_thousand": 5.551, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 5698.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 12.333, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-20", + "total_cases": 8274.0, + "new_cases": 426.0, + "new_cases_smoothed": 458.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 283.971, + "new_cases_per_million": 14.621, + "new_cases_smoothed_per_million": 15.748, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 7416.0, + "total_tests": 169165.0, + "total_tests_per_thousand": 5.806, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 5982.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 13.037, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-21", + "total_cases": 8605.0, + "new_cases": 331.0, + "new_cases_smoothed": 467.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 295.331, + "new_cases_per_million": 11.36, + "new_cases_smoothed_per_million": 16.033, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6008.0, + "total_tests": 175173.0, + "total_tests_per_thousand": 6.012, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 5971.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 12.782, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-22", + "total_cases": 9026.0, + "new_cases": 421.0, + "new_cases_smoothed": 466.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 309.78, + "new_cases_per_million": 14.449, + "new_cases_smoothed_per_million": 16.013, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6198.0, + "total_tests": 181371.0, + "total_tests_per_thousand": 6.225, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 6098.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 13.07, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-23", + "total_cases": 9026.0, + "new_cases": 0.0, + "new_cases_smoothed": 402.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 309.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.802, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4995.0, + "total_tests": 186366.0, + "total_tests_per_thousand": 6.396, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 6090.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 15.144, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-24", + "total_cases": 9026.0, + "new_cases": 0.0, + "new_cases_smoothed": 347.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 309.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.939, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6828.0, + "total_tests": 193194.0, + "total_tests_per_thousand": 6.631, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 6203.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 17.832, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-25", + "total_cases": 10728.0, + "new_cases": 1702.0, + "new_cases_smoothed": 507.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 368.194, + "new_cases_per_million": 58.414, + "new_cases_smoothed_per_million": 17.41, + "total_deaths_per_million": 0.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 6543.0, + "total_tests": 199737.0, + "total_tests_per_thousand": 6.855, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 6317.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 12.453, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-26", + "total_cases": 11162.0, + "new_cases": 434.0, + "new_cases_smoothed": 473.429, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 383.089, + "new_cases_per_million": 14.895, + "new_cases_smoothed_per_million": 16.248, + "total_deaths_per_million": 0.892, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6534.0, + "total_tests": 206271.0, + "total_tests_per_thousand": 7.079, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 6360.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 13.434000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-27", + "total_cases": 11755.0, + "new_cases": 593.0, + "new_cases_smoothed": 497.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 403.442, + "new_cases_per_million": 20.352, + "new_cases_smoothed_per_million": 17.067, + "total_deaths_per_million": 0.927, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4606.0, + "total_tests": 210877.0, + "total_tests_per_thousand": 7.237, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 5959.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 11.982999999999999, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-28", + "total_cases": 11755.0, + "new_cases": 0.0, + "new_cases_smoothed": 450.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 403.442, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.444, + "total_deaths_per_million": 0.927, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4962.0, + "total_tests": 215839.0, + "total_tests_per_thousand": 7.408, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 5809.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 12.909, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-29", + "total_cases": 12772.0, + "new_cases": 1017.0, + "new_cases_smoothed": 535.143, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 438.346, + "new_cases_per_million": 34.904, + "new_cases_smoothed_per_million": 18.367, + "total_deaths_per_million": 0.961, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 7791.0, + "total_tests": 223630.0, + "total_tests_per_thousand": 7.675, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 6037.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 11.280999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-06-30", + "total_cases": 13248.0, + "new_cases": 476.0, + "new_cases_smoothed": 603.143, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 454.683, + "new_cases_per_million": 16.337, + "new_cases_smoothed_per_million": 20.7, + "total_deaths_per_million": 0.995, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 4711.0, + "total_tests": 228341.0, + "total_tests_per_thousand": 7.837, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 5996.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 9.941, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-01", + "total_cases": 13564.0, + "new_cases": 316.0, + "new_cases_smoothed": 648.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 465.528, + "new_cases_per_million": 10.845, + "new_cases_smoothed_per_million": 22.25, + "total_deaths_per_million": 0.995, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 4886.0, + "total_tests": 233227.0, + "total_tests_per_thousand": 8.005, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 5719.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 8.822000000000001, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-02", + "total_cases": 14046.0, + "new_cases": 482.0, + "new_cases_smoothed": 474.0, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 482.071, + "new_cases_per_million": 16.543, + "new_cases_smoothed_per_million": 16.268, + "total_deaths_per_million": 1.03, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 4537.0, + "total_tests": 237764.0, + "total_tests_per_thousand": 8.16, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 5432.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 11.46, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-03", + "total_cases": 14519.0, + "new_cases": 473.0, + "new_cases_smoothed": 479.571, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 498.304, + "new_cases_per_million": 16.234, + "new_cases_smoothed_per_million": 16.459, + "total_deaths_per_million": 1.064, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4483.0, + "total_tests": 242247.0, + "total_tests_per_thousand": 8.314, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 5139.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 10.716, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-04", + "total_cases": 15259.0, + "new_cases": 740.0, + "new_cases_smoothed": 500.571, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 523.702, + "new_cases_per_million": 25.397, + "new_cases_smoothed_per_million": 17.18, + "total_deaths_per_million": 1.098, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4050.0, + "total_tests": 246297.0, + "total_tests_per_thousand": 8.453, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 5060.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 10.107999999999999, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-05", + "total_cases": 15491.0, + "new_cases": 232.0, + "new_cases_smoothed": 533.714, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 531.664, + "new_cases_per_million": 7.962, + "new_cases_smoothed_per_million": 18.318, + "total_deaths_per_million": 1.167, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 4710.0, + "total_tests": 251007.0, + "total_tests_per_thousand": 8.615, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 5024.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 9.413, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-06", + "total_cases": 15784.0, + "new_cases": 293.0, + "new_cases_smoothed": 430.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 541.72, + "new_cases_per_million": 10.056, + "new_cases_smoothed_per_million": 14.768, + "total_deaths_per_million": 1.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 4721.0, + "total_tests": 255728.0, + "total_tests_per_thousand": 8.777, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 4585.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 10.655999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-07", + "total_cases": 15964.0, + "new_cases": 180.0, + "new_cases_smoothed": 388.0, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 547.898, + "new_cases_per_million": 6.178, + "new_cases_smoothed_per_million": 13.316, + "total_deaths_per_million": 1.201, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 6133.0, + "total_tests": 261861.0, + "total_tests_per_thousand": 8.987, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 4789.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 12.343, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-08", + "total_cases": 15964.0, + "new_cases": 0.0, + "new_cases_smoothed": 342.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 547.898, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.767, + "total_deaths_per_million": 1.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 4696.0, + "total_tests": 266557.0, + "total_tests_per_thousand": 9.148, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 4761.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 13.886, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-09", + "total_cases": 16423.0, + "new_cases": 459.0, + "new_cases_smoothed": 339.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 563.651, + "new_cases_per_million": 15.753, + "new_cases_smoothed_per_million": 11.654, + "total_deaths_per_million": 1.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4588.0, + "total_tests": 271145.0, + "total_tests_per_thousand": 9.306, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 4769.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 14.044, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-10", + "total_cases": 16531.0, + "new_cases": 108.0, + "new_cases_smoothed": 287.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 567.358, + "new_cases_per_million": 3.707, + "new_cases_smoothed_per_million": 9.865, + "total_deaths_per_million": 1.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4806.0, + "total_tests": 275951.0, + "total_tests_per_thousand": 9.471, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 4815.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 16.752, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-11", + "total_cases": 16649.0, + "new_cases": 118.0, + "new_cases_smoothed": 198.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 571.408, + "new_cases_per_million": 4.05, + "new_cases_smoothed_per_million": 6.815, + "total_deaths_per_million": 1.201, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3648.0, + "total_tests": 279599.0, + "total_tests_per_thousand": 9.596, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 4757.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 23.956, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-12", + "total_cases": 16719.0, + "new_cases": 70.0, + "new_cases_smoothed": 175.429, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 573.81, + "new_cases_per_million": 2.402, + "new_cases_smoothed_per_million": 6.021, + "total_deaths_per_million": 1.304, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 3916.0, + "total_tests": 283515.0, + "total_tests_per_thousand": 9.73, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 4644.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 26.471999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-13", + "total_cases": 16801.0, + "new_cases": 82.0, + "new_cases_smoothed": 145.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 576.625, + "new_cases_per_million": 2.814, + "new_cases_smoothed_per_million": 4.986, + "total_deaths_per_million": 1.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 5802.0, + "total_tests": 289317.0, + "total_tests_per_thousand": 9.93, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 4798.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 33.025, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-14", + "total_cases": 16945.0, + "new_cases": 144.0, + "new_cases_smoothed": 140.143, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 581.567, + "new_cases_per_million": 4.942, + "new_cases_smoothed_per_million": 4.81, + "total_deaths_per_million": 1.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 4422.0, + "total_tests": 293739.0, + "total_tests_per_thousand": 10.081, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 4554.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 32.495, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-15", + "total_cases": 17061.0, + "new_cases": 116.0, + "new_cases_smoothed": 156.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 585.548, + "new_cases_per_million": 3.981, + "new_cases_smoothed_per_million": 5.379, + "total_deaths_per_million": 1.304, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 5090.0, + "total_tests": 298829.0, + "total_tests_per_thousand": 10.256, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 4610.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 29.416999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-16", + "total_cases": 17177.0, + "new_cases": 116.0, + "new_cases_smoothed": 107.714, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 589.529, + "new_cases_per_million": 3.981, + "new_cases_smoothed_per_million": 3.697, + "total_deaths_per_million": 1.339, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4981.0, + "total_tests": 303810.0, + "total_tests_per_thousand": 10.427, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 4666.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 43.318000000000005, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-17", + "total_cases": 17344.0, + "new_cases": 167.0, + "new_cases_smoothed": 116.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 595.261, + "new_cases_per_million": 5.732, + "new_cases_smoothed_per_million": 3.986, + "total_deaths_per_million": 1.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4688.0, + "total_tests": 308498.0, + "total_tests_per_thousand": 10.588, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 4650.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 40.037, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-18", + "total_cases": 17445.0, + "new_cases": 101.0, + "new_cases_smoothed": 113.714, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 598.727, + "new_cases_per_million": 3.466, + "new_cases_smoothed_per_million": 3.903, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3331.0, + "total_tests": 311829.0, + "total_tests_per_thousand": 10.702, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 4604.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 40.486999999999995, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-19", + "total_cases": 17502.0, + "new_cases": 57.0, + "new_cases_smoothed": 111.857, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 600.684, + "new_cases_per_million": 1.956, + "new_cases_smoothed_per_million": 3.839, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3741.0, + "total_tests": 315570.0, + "total_tests_per_thousand": 10.831, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 4579.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 40.936, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-20", + "total_cases": 17658.0, + "new_cases": 156.0, + "new_cases_smoothed": 122.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 606.038, + "new_cases_per_million": 5.354, + "new_cases_smoothed_per_million": 4.202, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 4302.0, + "total_tests": 319872.0, + "total_tests_per_thousand": 10.978, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 4365.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 35.653, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-07-21", + "total_cases": 17844.0, + "new_cases": 186.0, + "new_cases_smoothed": 128.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 612.421, + "new_cases_per_million": 6.384, + "new_cases_smoothed_per_million": 4.408, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3544.0, + "total_tests": 323416.0, + "total_tests_per_thousand": 11.1, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 4240.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_per_case": 33.014, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-07-22", + "total_cases": 17944.0, + "new_cases": 100.0, + "new_cases_smoothed": 126.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 615.853, + "new_cases_per_million": 3.432, + "new_cases_smoothed_per_million": 4.329, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 4198.0, + "total_tests": 327614.0, + "total_tests_per_thousand": 11.244, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 4112.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 32.598, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-23", + "total_cases": 18094.0, + "new_cases": 150.0, + "new_cases_smoothed": 131.0, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 621.001, + "new_cases_per_million": 5.148, + "new_cases_smoothed_per_million": 4.496, + "total_deaths_per_million": 1.441, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 3481.0, + "total_tests": 331095.0, + "total_tests_per_thousand": 11.363, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 3898.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 29.756, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-07-24", + "total_cases": 18241.0, + "new_cases": 147.0, + "new_cases_smoothed": 128.143, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 626.047, + "new_cases_per_million": 5.045, + "new_cases_smoothed_per_million": 4.398, + "total_deaths_per_million": 1.476, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 3987.0, + "total_tests": 335082.0, + "total_tests_per_thousand": 11.5, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 3798.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 29.639, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-25", + "total_cases": 18374.0, + "new_cases": 133.0, + "new_cases_smoothed": 132.714, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 630.611, + "new_cases_per_million": 4.565, + "new_cases_smoothed_per_million": 4.555, + "total_deaths_per_million": 1.51, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 4075.0, + "total_tests": 339157.0, + "total_tests_per_thousand": 11.64, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 29.416999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-26", + "total_cases": 18483.0, + "new_cases": 109.0, + "new_cases_smoothed": 140.143, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 634.352, + "new_cases_per_million": 3.741, + "new_cases_smoothed_per_million": 4.81, + "total_deaths_per_million": 1.544, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3300.0, + "total_tests": 342457.0, + "total_tests_per_thousand": 11.753, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 3841.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 27.408, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-27", + "total_cases": 18613.0, + "new_cases": 130.0, + "new_cases_smoothed": 136.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 638.814, + "new_cases_per_million": 4.462, + "new_cases_smoothed_per_million": 4.682, + "total_deaths_per_million": 1.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 4818.0, + "total_tests": 347275.0, + "total_tests_per_thousand": 11.919, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 3915.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 28.695999999999998, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-28", + "total_cases": 18752.0, + "new_cases": 139.0, + "new_cases_smoothed": 129.714, + "total_deaths": 48.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 643.585, + "new_cases_per_million": 4.771, + "new_cases_smoothed_per_million": 4.452, + "total_deaths_per_million": 1.647, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 5032.0, + "total_tests": 352307.0, + "total_tests_per_thousand": 12.091, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 4127.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 31.816, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-29", + "total_cases": 19063.0, + "new_cases": 311.0, + "new_cases_smoothed": 159.857, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 654.258, + "new_cases_per_million": 10.674, + "new_cases_smoothed_per_million": 5.486, + "total_deaths_per_million": 1.682, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 6037.0, + "total_tests": 358344.0, + "total_tests_per_thousand": 12.299, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 4390.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 27.462, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-30", + "total_cases": 19273.0, + "new_cases": 210.0, + "new_cases_smoothed": 168.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 661.466, + "new_cases_per_million": 7.207, + "new_cases_smoothed_per_million": 5.781, + "total_deaths_per_million": 1.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 6304.0, + "total_tests": 364648.0, + "total_tests_per_thousand": 12.515, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 4793.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 28.456999999999997, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-31", + "total_cases": 19547.0, + "new_cases": 274.0, + "new_cases_smoothed": 186.571, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 670.87, + "new_cases_per_million": 9.404, + "new_cases_smoothed_per_million": 6.403, + "total_deaths_per_million": 1.785, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 10768.0, + "total_tests": 375416.0, + "total_tests_per_thousand": 12.885, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 5762.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 30.884, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-01", + "total_cases": 19771.0, + "new_cases": 224.0, + "new_cases_smoothed": 199.571, + "total_deaths": 56.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 678.558, + "new_cases_per_million": 7.688, + "new_cases_smoothed_per_million": 6.849, + "total_deaths_per_million": 1.922, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 6993.0, + "total_tests": 382409.0, + "total_tests_per_thousand": 13.125, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 6179.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 30.961, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-02", + "total_cases": 20086.0, + "new_cases": 315.0, + "new_cases_smoothed": 229.0, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 689.369, + "new_cases_per_million": 10.811, + "new_cases_smoothed_per_million": 7.859, + "total_deaths_per_million": 1.922, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 8861.0, + "total_tests": 391270.0, + "total_tests_per_thousand": 13.429, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 6973.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 30.45, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-03", + "total_cases": 20332.0, + "new_cases": 246.0, + "new_cases_smoothed": 245.571, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 697.812, + "new_cases_per_million": 8.443, + "new_cases_smoothed_per_million": 8.428, + "total_deaths_per_million": 1.956, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 7637.0, + "total_tests": 398907.0, + "total_tests_per_thousand": 13.691, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 7376.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 30.035999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-04", + "total_cases": 20750.0, + "new_cases": 418.0, + "new_cases_smoothed": 285.429, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 712.158, + "new_cases_per_million": 14.346, + "new_cases_smoothed_per_million": 9.796, + "total_deaths_per_million": 1.956, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 7687.0, + "total_tests": 406594.0, + "total_tests_per_thousand": 13.955, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 7755.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 27.17, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-05", + "total_cases": 21009.0, + "new_cases": 259.0, + "new_cases_smoothed": 278.0, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 721.047, + "new_cases_per_million": 8.889, + "new_cases_smoothed_per_million": 9.541, + "total_deaths_per_million": 1.991, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 6359.0, + "total_tests": 412953.0, + "total_tests_per_thousand": 14.173, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 7801.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 28.061, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-06", + "total_cases": 21390.0, + "new_cases": 381.0, + "new_cases_smoothed": 302.429, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 734.123, + "new_cases_per_million": 13.076, + "new_cases_smoothed_per_million": 10.38, + "total_deaths_per_million": 2.059, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 6622.0, + "total_tests": 419575.0, + "total_tests_per_thousand": 14.4, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 7847.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 25.947, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-07", + "total_cases": 21750.0, + "new_cases": 360.0, + "new_cases_smoothed": 314.714, + "total_deaths": 65.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 746.478, + "new_cases_per_million": 12.356, + "new_cases_smoothed_per_million": 10.801, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 7926.0, + "total_tests": 427501.0, + "total_tests_per_thousand": 14.672, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 7441.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 23.644000000000002, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-08-08", + "total_cases": 22214.0, + "new_cases": 464.0, + "new_cases_smoothed": 349.0, + "total_deaths": 70.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 762.403, + "new_cases_per_million": 15.925, + "new_cases_smoothed_per_million": 11.978, + "total_deaths_per_million": 2.402, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 7788.0, + "total_tests": 435289.0, + "total_tests_per_thousand": 14.939, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 7554.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 21.645, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-08-09", + "total_cases": 22592.0, + "new_cases": 378.0, + "new_cases_smoothed": 358.0, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 775.377, + "new_cases_per_million": 12.973, + "new_cases_smoothed_per_million": 12.287, + "total_deaths_per_million": 2.505, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 8515.0, + "total_tests": 443804.0, + "total_tests_per_thousand": 15.232, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 7505.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 20.964000000000002, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-08-10", + "total_cases": 22972.0, + "new_cases": 380.0, + "new_cases_smoothed": 377.143, + "total_deaths": 75.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 788.419, + "new_cases_per_million": 13.042, + "new_cases_smoothed_per_million": 12.944, + "total_deaths_per_million": 2.574, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.088, + "new_tests": 8432.0, + "total_tests": 452236.0, + "total_tests_per_thousand": 15.521, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 7618.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 20.199, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-08-11", + "total_cases": 23310.0, + "new_cases": 338.0, + "new_cases_smoothed": 365.714, + "total_deaths": 79.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 800.019, + "new_cases_per_million": 11.6, + "new_cases_smoothed_per_million": 12.552, + "total_deaths_per_million": 2.711, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 10462.0, + "total_tests": 462698.0, + "total_tests_per_thousand": 15.88, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 8015.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 21.916, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-12", + "total_cases": 23948.0, + "new_cases": 638.0, + "new_cases_smoothed": 419.857, + "total_deaths": 83.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 821.916, + "new_cases_per_million": 21.897, + "new_cases_smoothed_per_million": 14.41, + "total_deaths_per_million": 2.849, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 10481.0, + "total_tests": 473179.0, + "total_tests_per_thousand": 16.24, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 8604.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 20.493000000000002, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-13", + "total_cases": 24432.0, + "new_cases": 484.0, + "new_cases_smoothed": 434.571, + "total_deaths": 91.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 838.527, + "new_cases_per_million": 16.611, + "new_cases_smoothed_per_million": 14.915, + "total_deaths_per_million": 3.123, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 9859.0, + "total_tests": 483038.0, + "total_tests_per_thousand": 16.578, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 9066.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 20.862, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-14", + "total_cases": 24957.0, + "new_cases": 525.0, + "new_cases_smoothed": 458.143, + "total_deaths": 95.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 856.545, + "new_cases_per_million": 18.018, + "new_cases_smoothed_per_million": 15.724, + "total_deaths_per_million": 3.26, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 11575.0, + "total_tests": 494613.0, + "total_tests_per_thousand": 16.976, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 9587.0, + "new_tests_smoothed_per_thousand": 0.329, + "tests_per_case": 20.926, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-15", + "total_cases": 25551.0, + "new_cases": 594.0, + "new_cases_smoothed": 476.714, + "total_deaths": 99.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 876.932, + "new_cases_per_million": 20.387, + "new_cases_smoothed_per_million": 16.361, + "total_deaths_per_million": 3.398, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 11047.0, + "total_tests": 505660.0, + "total_tests_per_thousand": 17.355, + "new_tests_per_thousand": 0.379, + "new_tests_smoothed": 10053.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 21.088, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-16", + "total_cases": 26019.0, + "new_cases": 468.0, + "new_cases_smoothed": 489.571, + "total_deaths": 102.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 892.994, + "new_cases_per_million": 16.062, + "new_cases_smoothed_per_million": 16.803, + "total_deaths_per_million": 3.501, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 12247.0, + "total_tests": 517907.0, + "total_tests_per_thousand": 17.775, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 10586.0, + "new_tests_smoothed_per_thousand": 0.363, + "tests_per_case": 21.623, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-17", + "total_cases": 26660.0, + "new_cases": 641.0, + "new_cases_smoothed": 526.857, + "total_deaths": 104.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 914.994, + "new_cases_per_million": 22.0, + "new_cases_smoothed_per_million": 18.082, + "total_deaths_per_million": 3.569, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 11520.0, + "total_tests": 529427.0, + "total_tests_per_thousand": 18.17, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 11027.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 20.93, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-18", + "total_cases": 27241.0, + "new_cases": 581.0, + "new_cases_smoothed": 561.571, + "total_deaths": 107.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 934.934, + "new_cases_per_million": 19.94, + "new_cases_smoothed_per_million": 19.274, + "total_deaths_per_million": 3.672, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 13439.0, + "total_tests": 542866.0, + "total_tests_per_thousand": 18.632, + "new_tests_per_thousand": 0.461, + "new_tests_smoothed": 11453.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 20.395, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-08-19", + "total_cases": 28257.0, + "new_cases": 1016.0, + "new_cases_smoothed": 615.571, + "total_deaths": 114.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 969.804, + "new_cases_per_million": 34.87, + "new_cases_smoothed_per_million": 21.127, + "total_deaths_per_million": 3.913, + "new_deaths_per_million": 0.24, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 11522.0, + "total_tests": 554388.0, + "total_tests_per_thousand": 19.027, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 11601.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 18.846, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-08-20", + "total_cases": 28938.0, + "new_cases": 681.0, + "new_cases_smoothed": 643.714, + "total_deaths": 120.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 993.177, + "new_cases_per_million": 23.372, + "new_cases_smoothed_per_million": 22.093, + "total_deaths_per_million": 4.119, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 11832.0, + "total_tests": 566220.0, + "total_tests_per_thousand": 19.433, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 11883.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 18.46, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-08-21", + "total_cases": 29645.0, + "new_cases": 707.0, + "new_cases_smoothed": 669.714, + "total_deaths": 126.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1017.442, + "new_cases_per_million": 24.265, + "new_cases_smoothed_per_million": 22.985, + "total_deaths_per_million": 4.324, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 13679.0, + "total_tests": 579899.0, + "total_tests_per_thousand": 19.903, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 12184.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 18.192999999999998, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-22", + "total_cases": 30483.0, + "new_cases": 838.0, + "new_cases_smoothed": 704.571, + "total_deaths": 137.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1046.202, + "new_cases_per_million": 28.761, + "new_cases_smoothed_per_million": 24.181, + "total_deaths_per_million": 4.702, + "new_deaths_per_million": 0.378, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 12519.0, + "total_tests": 592418.0, + "total_tests_per_thousand": 20.332, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 12394.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 17.590999999999998, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-23", + "total_cases": 31117.0, + "new_cases": 634.0, + "new_cases_smoothed": 728.286, + "total_deaths": 146.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1067.962, + "new_cases_per_million": 21.759, + "new_cases_smoothed_per_million": 24.995, + "total_deaths_per_million": 5.011, + "new_deaths_per_million": 0.309, + "new_deaths_smoothed_per_million": 0.216, + "new_tests": 8026.0, + "total_tests": 600444.0, + "total_tests_per_thousand": 20.608, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 11791.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 16.19, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-24", + "total_cases": 31935.0, + "new_cases": 818.0, + "new_cases_smoothed": 753.571, + "total_deaths": 149.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1096.036, + "new_cases_per_million": 28.074, + "new_cases_smoothed_per_million": 25.863, + "total_deaths_per_million": 5.114, + "new_deaths_per_million": 0.103, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 10234.0, + "total_tests": 610678.0, + "total_tests_per_thousand": 20.959, + "new_tests_per_thousand": 0.351, + "new_tests_smoothed": 11607.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 15.402999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-25", + "total_cases": 32678.0, + "new_cases": 743.0, + "new_cases_smoothed": 776.714, + "total_deaths": 157.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1121.537, + "new_cases_per_million": 25.5, + "new_cases_smoothed_per_million": 26.657, + "total_deaths_per_million": 5.388, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 11321.0, + "total_tests": 621999.0, + "total_tests_per_thousand": 21.348, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 11305.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 14.555, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-26", + "total_cases": 33533.0, + "new_cases": 855.0, + "new_cases_smoothed": 753.714, + "total_deaths": 164.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1150.881, + "new_cases_per_million": 29.344, + "new_cases_smoothed_per_million": 25.868, + "total_deaths_per_million": 5.629, + "new_deaths_per_million": 0.24, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 13253.0, + "total_tests": 635252.0, + "total_tests_per_thousand": 21.802, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 11552.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 15.327, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-27", + "total_cases": 34418.0, + "new_cases": 885.0, + "new_cases_smoothed": 782.857, + "total_deaths": 175.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1181.255, + "new_cases_per_million": 30.374, + "new_cases_smoothed_per_million": 26.868, + "total_deaths_per_million": 6.006, + "new_deaths_per_million": 0.378, + "new_deaths_smoothed_per_million": 0.27, + "new_tests": 12629.0, + "total_tests": 647881.0, + "total_tests_per_thousand": 22.236, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 11666.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 14.902000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-28", + "total_cases": 35529.0, + "new_cases": 1111.0, + "new_cases_smoothed": 840.571, + "total_deaths": 183.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1219.385, + "new_cases_per_million": 38.13, + "new_cases_smoothed_per_million": 28.849, + "total_deaths_per_million": 6.281, + "new_deaths_per_million": 0.275, + "new_deaths_smoothed_per_million": 0.279, + "new_tests": 10229.0, + "total_tests": 658110.0, + "total_tests_per_thousand": 22.587, + "new_tests_per_thousand": 0.351, + "new_tests_smoothed": 11173.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 13.292, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-29", + "total_cases": 36456.0, + "new_cases": 927.0, + "new_cases_smoothed": 853.286, + "total_deaths": 195.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1251.201, + "new_cases_per_million": 31.815, + "new_cases_smoothed_per_million": 29.285, + "total_deaths_per_million": 6.693, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.284, + "new_tests": 11516.0, + "total_tests": 669626.0, + "total_tests_per_thousand": 22.982, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 11030.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 12.927, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-30", + "total_cases": 37340.0, + "new_cases": 884.0, + "new_cases_smoothed": 889.0, + "total_deaths": 207.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1281.541, + "new_cases_per_million": 30.34, + "new_cases_smoothed_per_million": 30.511, + "total_deaths_per_million": 7.104, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.299, + "new_tests": 12717.0, + "total_tests": 682343.0, + "total_tests_per_thousand": 23.419, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 11700.0, + "new_tests_smoothed_per_thousand": 0.402, + "tests_per_case": 13.161, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-08-31", + "total_cases": 38561.0, + "new_cases": 1221.0, + "new_cases_smoothed": 946.571, + "total_deaths": 221.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1323.446, + "new_cases_per_million": 41.906, + "new_cases_smoothed_per_million": 32.487, + "total_deaths_per_million": 7.585, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 11129.0, + "total_tests": 693472.0, + "total_tests_per_thousand": 23.801, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 11828.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 12.495999999999999, + "positive_rate": 0.08, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 39460.0, + "new_cases": 899.0, + "new_cases_smoothed": 968.857, + "total_deaths": 228.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1354.301, + "new_cases_per_million": 30.854, + "new_cases_smoothed_per_million": 33.252, + "total_deaths_per_million": 7.825, + "new_deaths_per_million": 0.24, + "new_deaths_smoothed_per_million": 0.348, + "new_tests": 12088.0, + "total_tests": 705560.0, + "total_tests_per_thousand": 24.215, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 11937.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 12.321, + "positive_rate": 0.081, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 40529.0, + "new_cases": 1069.0, + "new_cases_smoothed": 999.429, + "total_deaths": 239.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1390.99, + "new_cases_per_million": 36.689, + "new_cases_smoothed_per_million": 34.301, + "total_deaths_per_million": 8.203, + "new_deaths_per_million": 0.378, + "new_deaths_smoothed_per_million": 0.368, + "new_tests": 12879.0, + "total_tests": 718439.0, + "total_tests_per_thousand": 24.657, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 11884.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 11.890999999999998, + "positive_rate": 0.084, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 41649.0, + "new_cases": 1120.0, + "new_cases_smoothed": 1033.0, + "total_deaths": 251.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1429.429, + "new_cases_per_million": 38.439, + "new_cases_smoothed_per_million": 35.453, + "total_deaths_per_million": 8.615, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.373, + "new_tests": 13413.0, + "total_tests": 731852.0, + "total_tests_per_thousand": 25.118, + "new_tests_per_thousand": 0.46, + "new_tests_smoothed": 11996.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 11.613, + "positive_rate": 0.086, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 42877.0, + "new_cases": 1228.0, + "new_cases_smoothed": 1049.714, + "total_deaths": 257.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 1471.575, + "new_cases_per_million": 42.146, + "new_cases_smoothed_per_million": 36.027, + "total_deaths_per_million": 8.82, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.363 + }, + { + "date": "2020-09-05", + "total_cases": 44236.0, + "new_cases": 1359.0, + "new_cases_smoothed": 1111.429, + "total_deaths": 271.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1518.217, + "new_cases_per_million": 46.642, + "new_cases_smoothed_per_million": 38.145, + "total_deaths_per_million": 9.301, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.373 + } + ] + }, + "NLD": { + "continent": "Europe", + "location": "Netherlands", + "population": 17134873.0, + "population_density": 508.544, + "median_age": 43.2, + "aged_65_older": 18.779, + "aged_70_older": 11.881, + "gdp_per_capita": 48472.545, + "cardiovasc_death_rate": 109.361, + "diabetes_prevalence": 5.29, + "female_smokers": 24.4, + "male_smokers": 27.3, + "hospital_beds_per_thousand": 3.32, + "life_expectancy": 82.28, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.058, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.117, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 7.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.409, + "new_cases_per_million": 0.292, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.759, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "total_cases": 18.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.05, + "new_cases_per_million": 0.292, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "total_cases": 28.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.634, + "new_cases_per_million": 0.584, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 38.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.218, + "new_cases_per_million": 0.584, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 82.0, + "new_cases": 44.0, + "new_cases_smoothed": 11.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.786, + "new_cases_per_million": 2.568, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 1.85 + }, + { + "date": "2020-03-07", + "total_cases": 128.0, + "new_cases": 46.0, + "new_cases_smoothed": 18.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.47, + "new_cases_per_million": 2.685, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 0.058, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 1.85 + }, + { + "date": "2020-03-08", + "total_cases": 188.0, + "new_cases": 60.0, + "new_cases_smoothed": 25.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.972, + "new_cases_per_million": 3.502, + "new_cases_smoothed_per_million": 1.509, + "total_deaths_per_million": 0.058, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 1.85 + }, + { + "date": "2020-03-09", + "total_cases": 265.0, + "new_cases": 77.0, + "new_cases_smoothed": 36.0, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.466, + "new_cases_per_million": 4.494, + "new_cases_smoothed_per_million": 2.101, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 10.19 + }, + { + "date": "2020-03-10", + "total_cases": 321.0, + "new_cases": 56.0, + "new_cases_smoothed": 43.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.734, + "new_cases_per_million": 3.268, + "new_cases_smoothed_per_million": 2.526, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 18.52 + }, + { + "date": "2020-03-11", + "total_cases": 382.0, + "new_cases": 61.0, + "new_cases_smoothed": 50.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 22.294, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 0.233, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 18.52 + }, + { + "date": "2020-03-12", + "total_cases": 503.0, + "new_cases": 121.0, + "new_cases_smoothed": 66.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 29.355, + "new_cases_per_million": 7.062, + "new_cases_smoothed_per_million": 3.877, + "total_deaths_per_million": 0.292, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 41.67 + }, + { + "date": "2020-03-13", + "total_cases": 614.0, + "new_cases": 111.0, + "new_cases_smoothed": 76.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 35.833, + "new_cases_per_million": 6.478, + "new_cases_smoothed_per_million": 4.435, + "total_deaths_per_million": 0.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 41.67 + }, + { + "date": "2020-03-14", + "total_cases": 804.0, + "new_cases": 190.0, + "new_cases_smoothed": 96.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 46.922, + "new_cases_per_million": 11.088, + "new_cases_smoothed_per_million": 5.636, + "total_deaths_per_million": 0.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 41.67 + }, + { + "date": "2020-03-15", + "total_cases": 959.0, + "new_cases": 155.0, + "new_cases_smoothed": 110.143, + "total_deaths": 12.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 55.968, + "new_cases_per_million": 9.046, + "new_cases_smoothed_per_million": 6.428, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.409, + "new_deaths_smoothed_per_million": 0.092, + "total_tests": 17080.0, + "total_tests_per_thousand": 0.997, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-03-16", + "total_cases": 1135.0, + "new_cases": 176.0, + "new_cases_smoothed": 124.286, + "total_deaths": 20.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 66.239, + "new_cases_per_million": 10.271, + "new_cases_smoothed_per_million": 7.253, + "total_deaths_per_million": 1.167, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.142, + "tests_units": "people tested", + "stringency_index": 62.04 + }, + { + "date": "2020-03-17", + "total_cases": 1413.0, + "new_cases": 278.0, + "new_cases_smoothed": 156.0, + "total_deaths": 24.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 82.463, + "new_cases_per_million": 16.224, + "new_cases_smoothed_per_million": 9.104, + "total_deaths_per_million": 1.401, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.175, + "tests_units": "people tested", + "stringency_index": 62.04 + }, + { + "date": "2020-03-18", + "total_cases": 1705.0, + "new_cases": 292.0, + "new_cases_smoothed": 189.0, + "total_deaths": 43.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 99.505, + "new_cases_per_million": 17.041, + "new_cases_smoothed_per_million": 11.03, + "total_deaths_per_million": 2.51, + "new_deaths_per_million": 1.109, + "new_deaths_smoothed_per_million": 0.325, + "tests_units": "people tested", + "stringency_index": 62.04 + }, + { + "date": "2020-03-19", + "total_cases": 2051.0, + "new_cases": 346.0, + "new_cases_smoothed": 221.143, + "total_deaths": 58.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 119.697, + "new_cases_per_million": 20.193, + "new_cases_smoothed_per_million": 12.906, + "total_deaths_per_million": 3.385, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 0.442, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-03-20", + "total_cases": 2460.0, + "new_cases": 409.0, + "new_cases_smoothed": 263.714, + "total_deaths": 76.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 143.567, + "new_cases_per_million": 23.869, + "new_cases_smoothed_per_million": 15.391, + "total_deaths_per_million": 4.435, + "new_deaths_per_million": 1.05, + "new_deaths_smoothed_per_million": 0.592, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-03-21", + "total_cases": 2994.0, + "new_cases": 534.0, + "new_cases_smoothed": 312.857, + "total_deaths": 106.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 174.731, + "new_cases_per_million": 31.165, + "new_cases_smoothed_per_million": 18.259, + "total_deaths_per_million": 6.186, + "new_deaths_per_million": 1.751, + "new_deaths_smoothed_per_million": 0.842, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-03-22", + "total_cases": 3631.0, + "new_cases": 637.0, + "new_cases_smoothed": 381.714, + "total_deaths": 136.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 211.907, + "new_cases_per_million": 37.176, + "new_cases_smoothed_per_million": 22.277, + "total_deaths_per_million": 7.937, + "new_deaths_per_million": 1.751, + "new_deaths_smoothed_per_million": 1.034, + "total_tests": 38418.0, + "total_tests_per_thousand": 2.242, + "new_tests_smoothed": 3048.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 7.985, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-03-23", + "total_cases": 4204.0, + "new_cases": 573.0, + "new_cases_smoothed": 438.429, + "total_deaths": 179.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 245.348, + "new_cases_per_million": 33.441, + "new_cases_smoothed_per_million": 25.587, + "total_deaths_per_million": 10.447, + "new_deaths_per_million": 2.51, + "new_deaths_smoothed_per_million": 1.326, + "new_tests_smoothed": 3118.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 7.112, + "positive_rate": 0.141, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-24", + "total_cases": 4749.0, + "new_cases": 545.0, + "new_cases_smoothed": 476.571, + "total_deaths": 213.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 277.154, + "new_cases_per_million": 31.806, + "new_cases_smoothed_per_million": 27.813, + "total_deaths_per_million": 12.431, + "new_deaths_per_million": 1.984, + "new_deaths_smoothed_per_million": 1.576, + "new_tests_smoothed": 3187.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 6.687, + "positive_rate": 0.15, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-25", + "total_cases": 5560.0, + "new_cases": 811.0, + "new_cases_smoothed": 550.714, + "total_deaths": 276.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 324.484, + "new_cases_per_million": 47.33, + "new_cases_smoothed_per_million": 32.14, + "total_deaths_per_million": 16.108, + "new_deaths_per_million": 3.677, + "new_deaths_smoothed_per_million": 1.943, + "new_tests_smoothed": 3257.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 5.914, + "positive_rate": 0.16899999999999998, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-26", + "total_cases": 6412.0, + "new_cases": 852.0, + "new_cases_smoothed": 623.0, + "total_deaths": 356.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 374.208, + "new_cases_per_million": 49.723, + "new_cases_smoothed_per_million": 36.359, + "total_deaths_per_million": 20.776, + "new_deaths_per_million": 4.669, + "new_deaths_smoothed_per_million": 2.484, + "new_tests_smoothed": 3326.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 5.3389999999999995, + "positive_rate": 0.187, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-27", + "total_cases": 7431.0, + "new_cases": 1019.0, + "new_cases_smoothed": 710.143, + "total_deaths": 434.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 51.143, + "total_cases_per_million": 433.677, + "new_cases_per_million": 59.469, + "new_cases_smoothed_per_million": 41.444, + "total_deaths_per_million": 25.328, + "new_deaths_per_million": 4.552, + "new_deaths_smoothed_per_million": 2.985, + "new_tests_smoothed": 3396.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 4.782, + "positive_rate": 0.209, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-28", + "total_cases": 8603.0, + "new_cases": 1172.0, + "new_cases_smoothed": 801.286, + "total_deaths": 546.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 62.857, + "total_cases_per_million": 502.076, + "new_cases_per_million": 68.399, + "new_cases_smoothed_per_million": 46.763, + "total_deaths_per_million": 31.865, + "new_deaths_per_million": 6.536, + "new_deaths_smoothed_per_million": 3.668, + "new_tests_smoothed": 3465.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 4.324, + "positive_rate": 0.231, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-29", + "total_cases": 9762.0, + "new_cases": 1159.0, + "new_cases_smoothed": 875.857, + "total_deaths": 639.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 71.857, + "total_cases_per_million": 569.715, + "new_cases_per_million": 67.64, + "new_cases_smoothed_per_million": 51.115, + "total_deaths_per_million": 37.292, + "new_deaths_per_million": 5.428, + "new_deaths_smoothed_per_million": 4.194, + "total_tests": 63163.0, + "total_tests_per_thousand": 3.686, + "new_tests_smoothed": 3535.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 4.0360000000000005, + "positive_rate": 0.248, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-30", + "total_cases": 10866.0, + "new_cases": 1104.0, + "new_cases_smoothed": 951.714, + "total_deaths": 771.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 84.571, + "total_cases_per_million": 634.145, + "new_cases_per_million": 64.43, + "new_cases_smoothed_per_million": 55.543, + "total_deaths_per_million": 44.996, + "new_deaths_per_million": 7.704, + "new_deaths_smoothed_per_million": 4.936, + "new_tests_smoothed": 3624.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 3.8080000000000003, + "positive_rate": 0.263, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-31", + "total_cases": 11750.0, + "new_cases": 884.0, + "new_cases_smoothed": 1000.143, + "total_deaths": 864.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 93.0, + "total_cases_per_million": 685.736, + "new_cases_per_million": 51.591, + "new_cases_smoothed_per_million": 58.369, + "total_deaths_per_million": 50.423, + "new_deaths_per_million": 5.428, + "new_deaths_smoothed_per_million": 5.428, + "new_tests_smoothed": 3713.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 3.7119999999999997, + "positive_rate": 0.26899999999999996, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 12595.0, + "new_cases": 845.0, + "new_cases_smoothed": 1005.0, + "total_deaths": 1039.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 735.051, + "new_cases_per_million": 49.315, + "new_cases_smoothed_per_million": 58.652, + "total_deaths_per_million": 60.637, + "new_deaths_per_million": 10.213, + "new_deaths_smoothed_per_million": 6.361, + "new_tests_smoothed": 3802.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 3.783, + "positive_rate": 0.264, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 13614.0, + "new_cases": 1019.0, + "new_cases_smoothed": 1028.857, + "total_deaths": 1173.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 116.714, + "total_cases_per_million": 794.52, + "new_cases_per_million": 59.469, + "new_cases_smoothed_per_million": 60.045, + "total_deaths_per_million": 68.457, + "new_deaths_per_million": 7.82, + "new_deaths_smoothed_per_million": 6.812, + "new_tests_smoothed": 3890.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 3.781, + "positive_rate": 0.264, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 14697.0, + "new_cases": 1083.0, + "new_cases_smoothed": 1038.0, + "total_deaths": 1339.0, + "new_deaths": 166.0, + "new_deaths_smoothed": 129.286, + "total_cases_per_million": 857.724, + "new_cases_per_million": 63.204, + "new_cases_smoothed_per_million": 60.578, + "total_deaths_per_million": 78.145, + "new_deaths_per_million": 9.688, + "new_deaths_smoothed_per_million": 7.545, + "new_tests_smoothed": 3979.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 3.833, + "positive_rate": 0.261, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 15723.0, + "new_cases": 1026.0, + "new_cases_smoothed": 1017.143, + "total_deaths": 1487.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 134.429, + "total_cases_per_million": 917.602, + "new_cases_per_million": 59.878, + "new_cases_smoothed_per_million": 59.361, + "total_deaths_per_million": 86.782, + "new_deaths_per_million": 8.637, + "new_deaths_smoothed_per_million": 7.845, + "new_tests_smoothed": 4068.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 3.9989999999999997, + "positive_rate": 0.25, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 16627.0, + "new_cases": 904.0, + "new_cases_smoothed": 980.714, + "total_deaths": 1651.0, + "new_deaths": 164.0, + "new_deaths_smoothed": 144.571, + "total_cases_per_million": 970.36, + "new_cases_per_million": 52.758, + "new_cases_smoothed_per_million": 57.235, + "total_deaths_per_million": 96.353, + "new_deaths_per_million": 9.571, + "new_deaths_smoothed_per_million": 8.437, + "total_tests": 92261.0, + "total_tests_per_thousand": 5.384, + "new_tests_smoothed": 4157.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 4.239, + "positive_rate": 0.23600000000000002, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 17851.0, + "new_cases": 1224.0, + "new_cases_smoothed": 997.857, + "total_deaths": 1766.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 142.143, + "total_cases_per_million": 1041.794, + "new_cases_per_million": 71.433, + "new_cases_smoothed_per_million": 58.235, + "total_deaths_per_million": 103.065, + "new_deaths_per_million": 6.711, + "new_deaths_smoothed_per_million": 8.296, + "new_tests_smoothed": 4358.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 4.367, + "positive_rate": 0.22899999999999998, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 18803.0, + "new_cases": 952.0, + "new_cases_smoothed": 1007.571, + "total_deaths": 1867.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 143.286, + "total_cases_per_million": 1097.353, + "new_cases_per_million": 55.559, + "new_cases_smoothed_per_million": 58.802, + "total_deaths_per_million": 108.959, + "new_deaths_per_million": 5.894, + "new_deaths_smoothed_per_million": 8.362, + "new_tests_smoothed": 4559.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 4.525, + "positive_rate": 0.221, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 19580.0, + "new_cases": 777.0, + "new_cases_smoothed": 997.857, + "total_deaths": 2101.0, + "new_deaths": 234.0, + "new_deaths_smoothed": 151.714, + "total_cases_per_million": 1142.699, + "new_cases_per_million": 45.346, + "new_cases_smoothed_per_million": 58.235, + "total_deaths_per_million": 122.615, + "new_deaths_per_million": 13.656, + "new_deaths_smoothed_per_million": 8.854, + "new_tests_smoothed": 4761.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 4.771, + "positive_rate": 0.21, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 20549.0, + "new_cases": 969.0, + "new_cases_smoothed": 990.714, + "total_deaths": 2248.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 153.571, + "total_cases_per_million": 1199.25, + "new_cases_per_million": 56.551, + "new_cases_smoothed_per_million": 57.819, + "total_deaths_per_million": 131.194, + "new_deaths_per_million": 8.579, + "new_deaths_smoothed_per_million": 8.963, + "new_tests_smoothed": 4962.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 5.0089999999999995, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 21762.0, + "new_cases": 1213.0, + "new_cases_smoothed": 1009.286, + "total_deaths": 2396.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 151.0, + "total_cases_per_million": 1270.042, + "new_cases_per_million": 70.791, + "new_cases_smoothed_per_million": 58.902, + "total_deaths_per_million": 139.832, + "new_deaths_per_million": 8.637, + "new_deaths_smoothed_per_million": 8.812, + "new_tests_smoothed": 5163.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 5.115, + "positive_rate": 0.195, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 23097.0, + "new_cases": 1335.0, + "new_cases_smoothed": 1053.429, + "total_deaths": 2511.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 146.286, + "total_cases_per_million": 1347.953, + "new_cases_per_million": 77.911, + "new_cases_smoothed_per_million": 61.479, + "total_deaths_per_million": 146.543, + "new_deaths_per_million": 6.711, + "new_deaths_smoothed_per_million": 8.537, + "new_tests_smoothed": 5364.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 5.092, + "positive_rate": 0.196, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 24413.0, + "new_cases": 1316.0, + "new_cases_smoothed": 1112.286, + "total_deaths": 2643.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 141.714, + "total_cases_per_million": 1424.755, + "new_cases_per_million": 76.802, + "new_cases_smoothed_per_million": 64.914, + "total_deaths_per_million": 154.247, + "new_deaths_per_million": 7.704, + "new_deaths_smoothed_per_million": 8.271, + "total_tests": 131221.0, + "total_tests_per_thousand": 7.658, + "new_tests_smoothed": 5566.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 5.004, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 25587.0, + "new_cases": 1174.0, + "new_cases_smoothed": 1105.143, + "total_deaths": 2737.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 138.714, + "total_cases_per_million": 1493.27, + "new_cases_per_million": 68.515, + "new_cases_smoothed_per_million": 64.497, + "total_deaths_per_million": 159.733, + "new_deaths_per_million": 5.486, + "new_deaths_smoothed_per_million": 8.095, + "new_tests_smoothed": 5589.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 5.0569999999999995, + "positive_rate": 0.198, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 26551.0, + "new_cases": 964.0, + "new_cases_smoothed": 1106.857, + "total_deaths": 2823.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 136.571, + "total_cases_per_million": 1549.53, + "new_cases_per_million": 56.26, + "new_cases_smoothed_per_million": 64.597, + "total_deaths_per_million": 164.752, + "new_deaths_per_million": 5.019, + "new_deaths_smoothed_per_million": 7.97, + "new_tests_smoothed": 5612.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 5.07, + "positive_rate": 0.19699999999999998, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 27419.0, + "new_cases": 868.0, + "new_cases_smoothed": 1119.857, + "total_deaths": 2945.0, + "new_deaths": 122.0, + "new_deaths_smoothed": 120.571, + "total_cases_per_million": 1600.187, + "new_cases_per_million": 50.657, + "new_cases_smoothed_per_million": 65.355, + "total_deaths_per_million": 171.872, + "new_deaths_per_million": 7.12, + "new_deaths_smoothed_per_million": 7.037, + "new_tests_smoothed": 5636.0, + "new_tests_smoothed_per_thousand": 0.329, + "tests_per_case": 5.033, + "positive_rate": 0.19899999999999998, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 28153.0, + "new_cases": 734.0, + "new_cases_smoothed": 1086.286, + "total_deaths": 3134.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 126.571, + "total_cases_per_million": 1643.024, + "new_cases_per_million": 42.837, + "new_cases_smoothed_per_million": 63.396, + "total_deaths_per_million": 182.902, + "new_deaths_per_million": 11.03, + "new_deaths_smoothed_per_million": 7.387, + "new_tests_smoothed": 5659.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 5.209, + "positive_rate": 0.192, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 29214.0, + "new_cases": 1061.0, + "new_cases_smoothed": 1064.571, + "total_deaths": 3315.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 131.286, + "total_cases_per_million": 1704.944, + "new_cases_per_million": 61.921, + "new_cases_smoothed_per_million": 62.129, + "total_deaths_per_million": 193.465, + "new_deaths_per_million": 10.563, + "new_deaths_smoothed_per_million": 7.662, + "new_tests_smoothed": 5682.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 5.337000000000001, + "positive_rate": 0.187, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 30449.0, + "new_cases": 1235.0, + "new_cases_smoothed": 1050.286, + "total_deaths": 3459.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 135.429, + "total_cases_per_million": 1777.019, + "new_cases_per_million": 72.075, + "new_cases_smoothed_per_million": 61.295, + "total_deaths_per_million": 201.869, + "new_deaths_per_million": 8.404, + "new_deaths_smoothed_per_million": 7.904, + "new_tests_smoothed": 5706.0, + "new_tests_smoothed_per_thousand": 0.333, + "tests_per_case": 5.433, + "positive_rate": 0.184, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 31589.0, + "new_cases": 1140.0, + "new_cases_smoothed": 1025.143, + "total_deaths": 3601.0, + "new_deaths": 142.0, + "new_deaths_smoothed": 136.857, + "total_cases_per_million": 1843.55, + "new_cases_per_million": 66.531, + "new_cases_smoothed_per_million": 59.828, + "total_deaths_per_million": 210.156, + "new_deaths_per_million": 8.287, + "new_deaths_smoothed_per_million": 7.987, + "total_tests": 171323.0, + "total_tests_per_thousand": 9.998, + "new_tests_smoothed": 5729.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 5.587999999999999, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 32655.0, + "new_cases": 1066.0, + "new_cases_smoothed": 1009.714, + "total_deaths": 3684.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 135.286, + "total_cases_per_million": 1905.763, + "new_cases_per_million": 62.212, + "new_cases_smoothed_per_million": 58.927, + "total_deaths_per_million": 215.0, + "new_deaths_per_million": 4.844, + "new_deaths_smoothed_per_million": 7.895, + "new_tests_smoothed": 5694.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 5.638999999999999, + "positive_rate": 0.177, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 33405.0, + "new_cases": 750.0, + "new_cases_smoothed": 979.143, + "total_deaths": 3751.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 132.571, + "total_cases_per_million": 1949.533, + "new_cases_per_million": 43.77, + "new_cases_smoothed_per_million": 57.143, + "total_deaths_per_million": 218.91, + "new_deaths_per_million": 3.91, + "new_deaths_smoothed_per_million": 7.737, + "new_tests_smoothed": 5659.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 5.78, + "positive_rate": 0.17300000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 34134.0, + "new_cases": 729.0, + "new_cases_smoothed": 959.286, + "total_deaths": 3916.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 138.714, + "total_cases_per_million": 1992.078, + "new_cases_per_million": 42.545, + "new_cases_smoothed_per_million": 55.984, + "total_deaths_per_million": 228.54, + "new_deaths_per_million": 9.629, + "new_deaths_smoothed_per_million": 8.095, + "new_tests_smoothed": 5624.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 5.8629999999999995, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 34842.0, + "new_cases": 708.0, + "new_cases_smoothed": 955.571, + "total_deaths": 4054.0, + "new_deaths": 138.0, + "new_deaths_smoothed": 131.429, + "total_cases_per_million": 2033.397, + "new_cases_per_million": 41.319, + "new_cases_smoothed_per_million": 55.768, + "total_deaths_per_million": 236.594, + "new_deaths_per_million": 8.054, + "new_deaths_smoothed_per_million": 7.67, + "new_tests_smoothed": 5590.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 5.85, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 35729.0, + "new_cases": 887.0, + "new_cases_smoothed": 930.714, + "total_deaths": 4177.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 123.143, + "total_cases_per_million": 2085.163, + "new_cases_per_million": 51.766, + "new_cases_smoothed_per_million": 54.317, + "total_deaths_per_million": 243.772, + "new_deaths_per_million": 7.178, + "new_deaths_smoothed_per_million": 7.187, + "new_tests_smoothed": 5555.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 5.968999999999999, + "positive_rate": 0.168, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 36535.0, + "new_cases": 806.0, + "new_cases_smoothed": 869.429, + "total_deaths": 4289.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 118.571, + "total_cases_per_million": 2132.201, + "new_cases_per_million": 47.039, + "new_cases_smoothed_per_million": 50.74, + "total_deaths_per_million": 250.308, + "new_deaths_per_million": 6.536, + "new_deaths_smoothed_per_million": 6.92, + "new_tests_smoothed": 5520.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 6.349, + "positive_rate": 0.158, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 37190.0, + "new_cases": 655.0, + "new_cases_smoothed": 800.143, + "total_deaths": 4409.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 115.429, + "total_cases_per_million": 2170.428, + "new_cases_per_million": 38.226, + "new_cases_smoothed_per_million": 46.697, + "total_deaths_per_million": 257.312, + "new_deaths_per_million": 7.003, + "new_deaths_smoothed_per_million": 6.736, + "total_tests": 209718.0, + "total_tests_per_thousand": 12.239, + "new_tests_smoothed": 5485.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 6.855, + "positive_rate": 0.146, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 37845.0, + "new_cases": 655.0, + "new_cases_smoothed": 741.429, + "total_deaths": 4475.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 113.0, + "total_cases_per_million": 2208.654, + "new_cases_per_million": 38.226, + "new_cases_smoothed_per_million": 43.27, + "total_deaths_per_million": 261.163, + "new_deaths_per_million": 3.852, + "new_deaths_smoothed_per_million": 6.595, + "new_tests_smoothed": 5292.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 7.138, + "positive_rate": 0.14, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 38245.0, + "new_cases": 400.0, + "new_cases_smoothed": 691.429, + "total_deaths": 4518.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 109.571, + "total_cases_per_million": 2231.998, + "new_cases_per_million": 23.344, + "new_cases_smoothed_per_million": 40.352, + "total_deaths_per_million": 263.673, + "new_deaths_per_million": 2.51, + "new_deaths_smoothed_per_million": 6.395, + "new_tests_smoothed": 5100.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 7.376, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 38416.0, + "new_cases": 171.0, + "new_cases_smoothed": 611.714, + "total_deaths": 4566.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 92.857, + "total_cases_per_million": 2241.978, + "new_cases_per_million": 9.98, + "new_cases_smoothed_per_million": 35.7, + "total_deaths_per_million": 266.474, + "new_deaths_per_million": 2.801, + "new_deaths_smoothed_per_million": 5.419, + "new_tests_smoothed": 4907.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 8.022, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 38802.0, + "new_cases": 386.0, + "new_cases_smoothed": 565.714, + "total_deaths": 4711.0, + "new_deaths": 145.0, + "new_deaths_smoothed": 93.857, + "total_cases_per_million": 2264.505, + "new_cases_per_million": 22.527, + "new_cases_smoothed_per_million": 33.015, + "total_deaths_per_million": 274.936, + "new_deaths_per_million": 8.462, + "new_deaths_smoothed_per_million": 5.478, + "new_tests_smoothed": 4714.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 8.333, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 39316.0, + "new_cases": 514.0, + "new_cases_smoothed": 512.429, + "total_deaths": 4795.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 88.286, + "total_cases_per_million": 2294.502, + "new_cases_per_million": 29.997, + "new_cases_smoothed_per_million": 29.906, + "total_deaths_per_million": 279.839, + "new_deaths_per_million": 4.902, + "new_deaths_smoothed_per_million": 5.152, + "new_tests_smoothed": 4522.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 8.825, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 39791.0, + "new_cases": 475.0, + "new_cases_smoothed": 465.143, + "total_deaths": 4893.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 86.286, + "total_cases_per_million": 2322.223, + "new_cases_per_million": 27.721, + "new_cases_smoothed_per_million": 27.146, + "total_deaths_per_million": 285.558, + "new_deaths_per_million": 5.719, + "new_deaths_smoothed_per_million": 5.036, + "new_tests_smoothed": 4329.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 9.307, + "positive_rate": 0.107, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 40236.0, + "new_cases": 445.0, + "new_cases_smoothed": 435.143, + "total_deaths": 4987.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 82.571, + "total_cases_per_million": 2348.194, + "new_cases_per_million": 25.97, + "new_cases_smoothed_per_million": 25.395, + "total_deaths_per_million": 291.044, + "new_deaths_per_million": 5.486, + "new_deaths_smoothed_per_million": 4.819, + "total_tests": 238672.0, + "total_tests_per_thousand": 13.929, + "new_tests_smoothed": 4136.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 9.505, + "positive_rate": 0.105, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 40571.0, + "new_cases": 335.0, + "new_cases_smoothed": 389.429, + "total_deaths": 5056.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 2367.744, + "new_cases_per_million": 19.551, + "new_cases_smoothed_per_million": 22.727, + "total_deaths_per_million": 295.071, + "new_deaths_per_million": 4.027, + "new_deaths_smoothed_per_million": 4.844, + "new_tests_smoothed": 4137.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 10.623, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-05", + "total_cases": 40770.0, + "new_cases": 199.0, + "new_cases_smoothed": 360.714, + "total_deaths": 5082.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 80.571, + "total_cases_per_million": 2379.358, + "new_cases_per_million": 11.614, + "new_cases_smoothed_per_million": 21.051, + "total_deaths_per_million": 296.588, + "new_deaths_per_million": 1.517, + "new_deaths_smoothed_per_million": 4.702, + "new_tests_smoothed": 4138.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 11.472000000000001, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 41087.0, + "new_cases": 317.0, + "new_cases_smoothed": 381.571, + "total_deaths": 5168.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 86.0, + "total_cases_per_million": 2397.858, + "new_cases_per_million": 18.5, + "new_cases_smoothed_per_million": 22.269, + "total_deaths_per_million": 301.607, + "new_deaths_per_million": 5.019, + "new_deaths_smoothed_per_million": 5.019, + "new_tests_smoothed": 4139.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 10.847000000000001, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 41319.0, + "new_cases": 232.0, + "new_cases_smoothed": 359.571, + "total_deaths": 5204.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 70.429, + "total_cases_per_million": 2411.398, + "new_cases_per_million": 13.54, + "new_cases_smoothed_per_million": 20.985, + "total_deaths_per_million": 303.708, + "new_deaths_per_million": 2.101, + "new_deaths_smoothed_per_million": 4.11, + "new_tests_smoothed": 4141.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 11.515999999999998, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-08", + "total_cases": 41774.0, + "new_cases": 455.0, + "new_cases_smoothed": 351.143, + "total_deaths": 5288.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 70.429, + "total_cases_per_million": 2437.952, + "new_cases_per_million": 26.554, + "new_cases_smoothed_per_million": 20.493, + "total_deaths_per_million": 308.61, + "new_deaths_per_million": 4.902, + "new_deaths_smoothed_per_million": 4.11, + "new_tests_smoothed": 4142.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 11.796, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-09", + "total_cases": 42093.0, + "new_cases": 319.0, + "new_cases_smoothed": 328.857, + "total_deaths": 5359.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 66.571, + "total_cases_per_million": 2456.569, + "new_cases_per_million": 18.617, + "new_cases_smoothed_per_million": 19.192, + "total_deaths_per_million": 312.754, + "new_deaths_per_million": 4.144, + "new_deaths_smoothed_per_million": 3.885, + "new_tests_smoothed": 4143.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 12.597999999999999, + "positive_rate": 0.079, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-10", + "total_cases": 42382.0, + "new_cases": 289.0, + "new_cases_smoothed": 306.571, + "total_deaths": 5422.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 62.143, + "total_cases_per_million": 2473.435, + "new_cases_per_million": 16.866, + "new_cases_smoothed_per_million": 17.892, + "total_deaths_per_million": 316.431, + "new_deaths_per_million": 3.677, + "new_deaths_smoothed_per_million": 3.627, + "total_tests": 267678.0, + "total_tests_per_thousand": 15.622, + "new_tests_smoothed": 4144.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 13.517000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 42627.0, + "new_cases": 245.0, + "new_cases_smoothed": 293.714, + "total_deaths": 5440.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 54.857, + "total_cases_per_million": 2487.734, + "new_cases_per_million": 14.298, + "new_cases_smoothed_per_million": 17.141, + "total_deaths_per_million": 317.481, + "new_deaths_per_million": 1.05, + "new_deaths_smoothed_per_million": 3.201, + "new_tests_smoothed": 4219.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 14.364, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-12", + "total_cases": 42788.0, + "new_cases": 161.0, + "new_cases_smoothed": 288.286, + "total_deaths": 5456.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 53.429, + "total_cases_per_million": 2497.13, + "new_cases_per_million": 9.396, + "new_cases_smoothed_per_million": 16.825, + "total_deaths_per_million": 318.415, + "new_deaths_per_million": 0.934, + "new_deaths_smoothed_per_million": 3.118, + "new_tests_smoothed": 4294.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 14.895, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-13", + "total_cases": 42984.0, + "new_cases": 196.0, + "new_cases_smoothed": 271.0, + "total_deaths": 5510.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 48.857, + "total_cases_per_million": 2508.568, + "new_cases_per_million": 11.439, + "new_cases_smoothed_per_million": 15.816, + "total_deaths_per_million": 321.566, + "new_deaths_per_million": 3.151, + "new_deaths_smoothed_per_million": 2.851, + "new_tests_smoothed": 4369.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 16.122, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-14", + "total_cases": 43211.0, + "new_cases": 227.0, + "new_cases_smoothed": 270.286, + "total_deaths": 5562.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 51.143, + "total_cases_per_million": 2521.816, + "new_cases_per_million": 13.248, + "new_cases_smoothed_per_million": 15.774, + "total_deaths_per_million": 324.601, + "new_deaths_per_million": 3.035, + "new_deaths_smoothed_per_million": 2.985, + "new_tests_smoothed": 4444.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 16.442, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-15", + "total_cases": 43481.0, + "new_cases": 270.0, + "new_cases_smoothed": 243.857, + "total_deaths": 5590.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 2537.574, + "new_cases_per_million": 15.757, + "new_cases_smoothed_per_million": 14.232, + "total_deaths_per_million": 326.235, + "new_deaths_per_million": 1.634, + "new_deaths_smoothed_per_million": 2.518, + "new_tests_smoothed": 4519.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 18.531, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-16", + "total_cases": 43681.0, + "new_cases": 200.0, + "new_cases_smoothed": 226.857, + "total_deaths": 5643.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 2549.246, + "new_cases_per_million": 11.672, + "new_cases_smoothed_per_million": 13.239, + "total_deaths_per_million": 329.328, + "new_deaths_per_million": 3.093, + "new_deaths_smoothed_per_million": 2.368, + "new_tests_smoothed": 4594.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 20.250999999999998, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-17", + "total_cases": 43870.0, + "new_cases": 189.0, + "new_cases_smoothed": 212.571, + "total_deaths": 5670.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 2560.276, + "new_cases_per_million": 11.03, + "new_cases_smoothed_per_million": 12.406, + "total_deaths_per_million": 330.904, + "new_deaths_per_million": 1.576, + "new_deaths_smoothed_per_million": 2.068, + "total_tests": 300365.0, + "total_tests_per_thousand": 17.529, + "new_tests_smoothed": 4670.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 21.969, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-18", + "total_cases": 43995.0, + "new_cases": 125.0, + "new_cases_smoothed": 195.429, + "total_deaths": 5680.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 2567.571, + "new_cases_per_million": 7.295, + "new_cases_smoothed_per_million": 11.405, + "total_deaths_per_million": 331.488, + "new_deaths_per_million": 0.584, + "new_deaths_smoothed_per_million": 2.001, + "new_tests_smoothed": 4591.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 23.491999999999997, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-19", + "total_cases": 44141.0, + "new_cases": 146.0, + "new_cases_smoothed": 193.286, + "total_deaths": 5694.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 2576.091, + "new_cases_per_million": 8.521, + "new_cases_smoothed_per_million": 11.28, + "total_deaths_per_million": 332.305, + "new_deaths_per_million": 0.817, + "new_deaths_smoothed_per_million": 1.984, + "new_tests_smoothed": 4512.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 23.344, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-20", + "total_cases": 44249.0, + "new_cases": 108.0, + "new_cases_smoothed": 180.714, + "total_deaths": 5715.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 29.286, + "total_cases_per_million": 2582.394, + "new_cases_per_million": 6.303, + "new_cases_smoothed_per_million": 10.547, + "total_deaths_per_million": 333.53, + "new_deaths_per_million": 1.226, + "new_deaths_smoothed_per_million": 1.709, + "new_tests_smoothed": 4434.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 24.535999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-21", + "total_cases": 44447.0, + "new_cases": 198.0, + "new_cases_smoothed": 176.571, + "total_deaths": 5748.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 2593.95, + "new_cases_per_million": 11.555, + "new_cases_smoothed_per_million": 10.305, + "total_deaths_per_million": 335.456, + "new_deaths_per_million": 1.926, + "new_deaths_smoothed_per_million": 1.551, + "new_tests_smoothed": 4355.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 24.664, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-22", + "total_cases": 44700.0, + "new_cases": 253.0, + "new_cases_smoothed": 174.143, + "total_deaths": 5775.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 2608.715, + "new_cases_per_million": 14.765, + "new_cases_smoothed_per_million": 10.163, + "total_deaths_per_million": 337.032, + "new_deaths_per_million": 1.576, + "new_deaths_smoothed_per_million": 1.542, + "new_tests_smoothed": 4277.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 24.56, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-23", + "total_cases": 44888.0, + "new_cases": 188.0, + "new_cases_smoothed": 172.429, + "total_deaths": 5788.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 2619.687, + "new_cases_per_million": 10.972, + "new_cases_smoothed_per_million": 10.063, + "total_deaths_per_million": 337.791, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 1.209, + "new_tests_smoothed": 4198.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 24.346, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-24", + "total_cases": 45064.0, + "new_cases": 176.0, + "new_cases_smoothed": 170.571, + "total_deaths": 5811.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 2629.958, + "new_cases_per_million": 10.271, + "new_cases_smoothed_per_million": 9.955, + "total_deaths_per_million": 339.133, + "new_deaths_per_million": 1.342, + "new_deaths_smoothed_per_million": 1.176, + "total_tests": 329201.0, + "total_tests_per_thousand": 19.212, + "new_tests_smoothed": 4119.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 24.148000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-25", + "total_cases": 45236.0, + "new_cases": 172.0, + "new_cases_smoothed": 177.286, + "total_deaths": 5822.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 2639.996, + "new_cases_per_million": 10.038, + "new_cases_smoothed_per_million": 10.346, + "total_deaths_per_million": 339.775, + "new_deaths_per_million": 0.642, + "new_deaths_smoothed_per_million": 1.184, + "new_tests_smoothed": 4222.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 23.815, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-26", + "total_cases": 45445.0, + "new_cases": 209.0, + "new_cases_smoothed": 186.286, + "total_deaths": 5830.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 2652.194, + "new_cases_per_million": 12.197, + "new_cases_smoothed_per_million": 10.872, + "total_deaths_per_million": 340.242, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 1.134, + "new_tests_smoothed": 4325.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 23.217, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-27", + "total_cases": 45578.0, + "new_cases": 133.0, + "new_cases_smoothed": 189.857, + "total_deaths": 5856.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 2659.956, + "new_cases_per_million": 7.762, + "new_cases_smoothed_per_million": 11.08, + "total_deaths_per_million": 341.759, + "new_deaths_per_million": 1.517, + "new_deaths_smoothed_per_million": 1.176, + "new_tests_smoothed": 4428.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 23.323, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-28", + "total_cases": 45768.0, + "new_cases": 190.0, + "new_cases_smoothed": 188.714, + "total_deaths": 5871.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 2671.044, + "new_cases_per_million": 11.088, + "new_cases_smoothed_per_million": 11.013, + "total_deaths_per_million": 342.635, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 1.025, + "new_tests_smoothed": 4530.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 24.005, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-29", + "total_cases": 45950.0, + "new_cases": 182.0, + "new_cases_smoothed": 178.571, + "total_deaths": 5903.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 2681.666, + "new_cases_per_million": 10.622, + "new_cases_smoothed_per_million": 10.422, + "total_deaths_per_million": 344.502, + "new_deaths_per_million": 1.868, + "new_deaths_smoothed_per_million": 1.067, + "new_tests_smoothed": 4633.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 25.945, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-30", + "total_cases": 46126.0, + "new_cases": 176.0, + "new_cases_smoothed": 176.857, + "total_deaths": 5931.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 2691.937, + "new_cases_per_million": 10.271, + "new_cases_smoothed_per_million": 10.321, + "total_deaths_per_million": 346.136, + "new_deaths_per_million": 1.634, + "new_deaths_smoothed_per_million": 1.192, + "new_tests_smoothed": 4736.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 26.779, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-05-31", + "total_cases": 46257.0, + "new_cases": 131.0, + "new_cases_smoothed": 170.429, + "total_deaths": 5951.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 2699.582, + "new_cases_per_million": 7.645, + "new_cases_smoothed_per_million": 9.946, + "total_deaths_per_million": 347.303, + "new_deaths_per_million": 1.167, + "new_deaths_smoothed_per_million": 1.167, + "total_tests": 363072.0, + "total_tests_per_thousand": 21.189, + "new_tests_smoothed": 4839.0, + "new_tests_smoothed_per_thousand": 0.282, + "tests_per_case": 28.393, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 68.52 + }, + { + "date": "2020-06-01", + "total_cases": 46442.0, + "new_cases": 185.0, + "new_cases_smoothed": 172.286, + "total_deaths": 5956.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 2710.379, + "new_cases_per_million": 10.797, + "new_cases_smoothed_per_million": 10.055, + "total_deaths_per_million": 347.595, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 1.117, + "new_tests_smoothed": 5351.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 31.059, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-02", + "total_cases": 46545.0, + "new_cases": 103.0, + "new_cases_smoothed": 157.143, + "total_deaths": 5962.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 2716.39, + "new_cases_per_million": 6.011, + "new_cases_smoothed_per_million": 9.171, + "total_deaths_per_million": 347.945, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 1.101, + "new_tests_smoothed": 5863.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 37.31, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 46647.0, + "new_cases": 102.0, + "new_cases_smoothed": 152.714, + "total_deaths": 5967.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2722.343, + "new_cases_per_million": 5.953, + "new_cases_smoothed_per_million": 8.912, + "total_deaths_per_million": 348.237, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.925, + "new_tests_smoothed": 6375.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 41.745, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 46733.0, + "new_cases": 86.0, + "new_cases_smoothed": 137.857, + "total_deaths": 5977.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 2727.362, + "new_cases_per_million": 5.019, + "new_cases_smoothed_per_million": 8.045, + "total_deaths_per_million": 348.821, + "new_deaths_per_million": 0.584, + "new_deaths_smoothed_per_million": 0.884, + "new_tests_smoothed": 6886.0, + "new_tests_smoothed_per_thousand": 0.402, + "tests_per_case": 49.95, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 46942.0, + "new_cases": 209.0, + "new_cases_smoothed": 141.714, + "total_deaths": 5990.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 2739.559, + "new_cases_per_million": 12.197, + "new_cases_smoothed_per_million": 8.271, + "total_deaths_per_million": 349.579, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 0.725, + "new_tests_smoothed": 7398.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 52.20399999999999, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 47152.0, + "new_cases": 210.0, + "new_cases_smoothed": 146.571, + "total_deaths": 6005.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 2751.815, + "new_cases_per_million": 12.256, + "new_cases_smoothed_per_million": 8.554, + "total_deaths_per_million": 350.455, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 0.617, + "new_tests_smoothed": 7910.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 53.967, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 47335.0, + "new_cases": 183.0, + "new_cases_smoothed": 154.0, + "total_deaths": 6011.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2762.495, + "new_cases_per_million": 10.68, + "new_cases_smoothed_per_million": 8.988, + "total_deaths_per_million": 350.805, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.5, + "total_tests": 422028.0, + "total_tests_per_thousand": 24.63, + "new_tests_smoothed": 8422.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 54.688, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 47574.0, + "new_cases": 239.0, + "new_cases_smoothed": 161.714, + "total_deaths": 6013.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 2776.443, + "new_cases_per_million": 13.948, + "new_cases_smoothed_per_million": 9.438, + "total_deaths_per_million": 350.922, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.475, + "new_tests_smoothed": 8521.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 52.692, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 47739.0, + "new_cases": 165.0, + "new_cases_smoothed": 170.571, + "total_deaths": 6016.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2786.073, + "new_cases_per_million": 9.629, + "new_cases_smoothed_per_million": 9.955, + "total_deaths_per_million": 351.097, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.45, + "new_tests_smoothed": 8619.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 50.53, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 47903.0, + "new_cases": 164.0, + "new_cases_smoothed": 179.429, + "total_deaths": 6031.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 2795.644, + "new_cases_per_million": 9.571, + "new_cases_smoothed_per_million": 10.472, + "total_deaths_per_million": 351.972, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 0.534, + "new_tests_smoothed": 8718.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 48.588, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 48087.0, + "new_cases": 184.0, + "new_cases_smoothed": 193.429, + "total_deaths": 6042.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 2806.382, + "new_cases_per_million": 10.738, + "new_cases_smoothed_per_million": 11.289, + "total_deaths_per_million": 352.614, + "new_deaths_per_million": 0.642, + "new_deaths_smoothed_per_million": 0.542, + "new_tests_smoothed": 8816.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 45.578, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 48251.0, + "new_cases": 164.0, + "new_cases_smoothed": 187.0, + "total_deaths": 6044.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 2815.953, + "new_cases_per_million": 9.571, + "new_cases_smoothed_per_million": 10.913, + "total_deaths_per_million": 352.731, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.45, + "new_tests_smoothed": 8914.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 47.668, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 48461.0, + "new_cases": 210.0, + "new_cases_smoothed": 187.0, + "total_deaths": 6053.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 2828.209, + "new_cases_per_million": 12.256, + "new_cases_smoothed_per_million": 10.913, + "total_deaths_per_million": 353.256, + "new_deaths_per_million": 0.525, + "new_deaths_smoothed_per_million": 0.4, + "new_tests_smoothed": 9013.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 48.198, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 48640.0, + "new_cases": 179.0, + "new_cases_smoothed": 186.429, + "total_deaths": 6057.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2838.655, + "new_cases_per_million": 10.447, + "new_cases_smoothed_per_million": 10.88, + "total_deaths_per_million": 353.49, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.384, + "total_tests": 485806.0, + "total_tests_per_thousand": 28.352, + "new_tests_smoothed": 9111.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 48.871, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 48783.0, + "new_cases": 143.0, + "new_cases_smoothed": 172.714, + "total_deaths": 6059.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 2847.001, + "new_cases_per_million": 8.346, + "new_cases_smoothed_per_million": 10.08, + "total_deaths_per_million": 353.606, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.384, + "new_tests_smoothed": 9147.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 52.96, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-16", + "total_cases": 48948.0, + "new_cases": 165.0, + "new_cases_smoothed": 172.714, + "total_deaths": 6065.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2856.63, + "new_cases_per_million": 9.629, + "new_cases_smoothed_per_million": 10.08, + "total_deaths_per_million": 353.957, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.409, + "new_tests_smoothed": 9183.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 53.169, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-17", + "total_cases": 49087.0, + "new_cases": 139.0, + "new_cases_smoothed": 169.143, + "total_deaths": 6070.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2864.743, + "new_cases_per_million": 8.112, + "new_cases_smoothed_per_million": 9.871, + "total_deaths_per_million": 354.248, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.325, + "new_tests_smoothed": 9219.0, + "new_tests_smoothed_per_thousand": 0.538, + "tests_per_case": 54.504, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-18", + "total_cases": 49204.0, + "new_cases": 117.0, + "new_cases_smoothed": 159.571, + "total_deaths": 6074.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2871.571, + "new_cases_per_million": 6.828, + "new_cases_smoothed_per_million": 9.313, + "total_deaths_per_million": 354.482, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.267, + "new_tests_smoothed": 9255.0, + "new_tests_smoothed_per_thousand": 0.54, + "tests_per_case": 57.998999999999995, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-19", + "total_cases": 49319.0, + "new_cases": 115.0, + "new_cases_smoothed": 152.571, + "total_deaths": 6078.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 2878.282, + "new_cases_per_million": 6.711, + "new_cases_smoothed_per_million": 8.904, + "total_deaths_per_million": 354.715, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.283, + "new_tests_smoothed": 9291.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 60.896, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-20", + "total_cases": 49426.0, + "new_cases": 107.0, + "new_cases_smoothed": 137.857, + "total_deaths": 6081.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2884.527, + "new_cases_per_million": 6.245, + "new_cases_smoothed_per_million": 8.045, + "total_deaths_per_million": 354.89, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.233, + "new_tests_smoothed": 9327.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 67.657, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-21", + "total_cases": 49502.0, + "new_cases": 76.0, + "new_cases_smoothed": 123.143, + "total_deaths": 6089.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2888.962, + "new_cases_per_million": 4.435, + "new_cases_smoothed_per_million": 7.187, + "total_deaths_per_million": 355.357, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.267, + "total_tests": 551347.0, + "total_tests_per_thousand": 32.177, + "new_tests_smoothed": 9363.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 76.03399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-22", + "total_cases": 49593.0, + "new_cases": 91.0, + "new_cases_smoothed": 115.714, + "total_deaths": 6090.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2894.273, + "new_cases_per_million": 5.311, + "new_cases_smoothed_per_million": 6.753, + "total_deaths_per_million": 355.416, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.258, + "new_tests_smoothed": 9332.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 80.64699999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-23", + "total_cases": 49658.0, + "new_cases": 65.0, + "new_cases_smoothed": 101.429, + "total_deaths": 6090.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2898.066, + "new_cases_per_million": 3.793, + "new_cases_smoothed_per_million": 5.919, + "total_deaths_per_million": 355.416, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.208, + "new_tests_smoothed": 9301.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 91.7, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-24", + "total_cases": 49722.0, + "new_cases": 64.0, + "new_cases_smoothed": 90.714, + "total_deaths": 6095.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2901.801, + "new_cases_per_million": 3.735, + "new_cases_smoothed_per_million": 5.294, + "total_deaths_per_million": 355.707, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.208, + "new_tests_smoothed": 9270.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 102.189, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-25", + "total_cases": 49804.0, + "new_cases": 82.0, + "new_cases_smoothed": 85.714, + "total_deaths": 6097.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2906.587, + "new_cases_per_million": 4.786, + "new_cases_smoothed_per_million": 5.002, + "total_deaths_per_million": 355.824, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.192, + "new_tests_smoothed": 9239.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 107.788, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-26", + "total_cases": 49914.0, + "new_cases": 110.0, + "new_cases_smoothed": 85.0, + "total_deaths": 6100.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2913.007, + "new_cases_per_million": 6.42, + "new_cases_smoothed_per_million": 4.961, + "total_deaths_per_million": 355.999, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.183, + "new_tests_smoothed": 9209.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 108.34100000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-27", + "total_cases": 50005.0, + "new_cases": 91.0, + "new_cases_smoothed": 82.714, + "total_deaths": 6103.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2918.318, + "new_cases_per_million": 5.311, + "new_cases_smoothed_per_million": 4.827, + "total_deaths_per_million": 356.174, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.183, + "new_tests_smoothed": 9178.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 110.96, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-28", + "total_cases": 50074.0, + "new_cases": 69.0, + "new_cases_smoothed": 81.714, + "total_deaths": 6105.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2922.344, + "new_cases_per_million": 4.027, + "new_cases_smoothed_per_million": 4.769, + "total_deaths_per_million": 356.291, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.133, + "total_tests": 615375.0, + "total_tests_per_thousand": 35.914, + "new_tests_smoothed": 9147.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 111.939, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-29", + "total_cases": 50147.0, + "new_cases": 73.0, + "new_cases_smoothed": 79.143, + "total_deaths": 6105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2926.605, + "new_cases_per_million": 4.26, + "new_cases_smoothed_per_million": 4.619, + "total_deaths_per_million": 356.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "new_tests_smoothed": 9262.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 117.029, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-30", + "total_cases": 50223.0, + "new_cases": 76.0, + "new_cases_smoothed": 80.714, + "total_deaths": 6107.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2931.04, + "new_cases_per_million": 4.435, + "new_cases_smoothed_per_million": 4.711, + "total_deaths_per_million": 356.408, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.142, + "new_tests_smoothed": 9377.0, + "new_tests_smoothed_per_thousand": 0.547, + "tests_per_case": 116.175, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-07-01", + "total_cases": 50273.0, + "new_cases": 50.0, + "new_cases_smoothed": 78.714, + "total_deaths": 6113.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 2933.958, + "new_cases_per_million": 2.918, + "new_cases_smoothed_per_million": 4.594, + "total_deaths_per_million": 356.758, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.15, + "new_tests_smoothed": 9492.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 120.588, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-02", + "total_cases": 50335.0, + "new_cases": 62.0, + "new_cases_smoothed": 75.857, + "total_deaths": 6115.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 2937.576, + "new_cases_per_million": 3.618, + "new_cases_smoothed_per_million": 4.427, + "total_deaths_per_million": 356.875, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.15, + "new_tests_smoothed": 9606.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 126.633, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-03", + "total_cases": 50412.0, + "new_cases": 77.0, + "new_cases_smoothed": 71.143, + "total_deaths": 6118.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 2942.07, + "new_cases_per_million": 4.494, + "new_cases_smoothed_per_million": 4.152, + "total_deaths_per_million": 357.05, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.15, + "new_tests_smoothed": 9721.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 136.641, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-04", + "total_cases": 50487.0, + "new_cases": 75.0, + "new_cases_smoothed": 68.857, + "total_deaths": 6120.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2946.447, + "new_cases_per_million": 4.377, + "new_cases_smoothed_per_million": 4.019, + "total_deaths_per_million": 357.166, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.142, + "new_tests_smoothed": 9836.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 142.846, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-05", + "total_cases": 50548.0, + "new_cases": 61.0, + "new_cases_smoothed": 67.714, + "total_deaths": 6126.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2950.007, + "new_cases_per_million": 3.56, + "new_cases_smoothed_per_million": 3.952, + "total_deaths_per_million": 357.517, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.175, + "total_tests": 685033.0, + "total_tests_per_thousand": 39.979, + "new_tests_smoothed": 9951.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 146.95600000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-06", + "total_cases": 50621.0, + "new_cases": 73.0, + "new_cases_smoothed": 67.714, + "total_deaths": 6127.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2954.268, + "new_cases_per_million": 4.26, + "new_cases_smoothed_per_million": 3.952, + "total_deaths_per_million": 357.575, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.183, + "new_tests_smoothed": 10141.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 149.762, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-07", + "total_cases": 50657.0, + "new_cases": 36.0, + "new_cases_smoothed": 62.0, + "total_deaths": 6128.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2956.369, + "new_cases_per_million": 2.101, + "new_cases_smoothed_per_million": 3.618, + "total_deaths_per_million": 357.633, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.175, + "new_tests_smoothed": 10330.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 166.613, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-08", + "total_cases": 50694.0, + "new_cases": 37.0, + "new_cases_smoothed": 60.143, + "total_deaths": 6132.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 2958.528, + "new_cases_per_million": 2.159, + "new_cases_smoothed_per_million": 3.51, + "total_deaths_per_million": 357.867, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.158, + "new_tests_smoothed": 10520.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 174.917, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-09", + "total_cases": 50746.0, + "new_cases": 52.0, + "new_cases_smoothed": 58.714, + "total_deaths": 6135.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2961.563, + "new_cases_per_million": 3.035, + "new_cases_smoothed_per_million": 3.427, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.167, + "new_tests_smoothed": 10710.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 182.40900000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-10", + "total_cases": 50798.0, + "new_cases": 52.0, + "new_cases_smoothed": 55.143, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 2964.597, + "new_cases_per_million": 3.035, + "new_cases_smoothed_per_million": 3.218, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.142, + "new_tests_smoothed": 10899.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 197.65, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-11", + "total_cases": 50840.0, + "new_cases": 42.0, + "new_cases_smoothed": 50.429, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2967.049, + "new_cases_per_million": 2.451, + "new_cases_smoothed_per_million": 2.943, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "new_tests_smoothed": 11089.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 219.895, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-12", + "total_cases": 50921.0, + "new_cases": 81.0, + "new_cases_smoothed": 53.286, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2971.776, + "new_cases_per_million": 4.727, + "new_cases_smoothed_per_million": 3.11, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "total_tests": 763982.0, + "total_tests_per_thousand": 44.586, + "new_tests_smoothed": 11278.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 211.65099999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-13", + "total_cases": 51022.0, + "new_cases": 101.0, + "new_cases_smoothed": 57.286, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2977.67, + "new_cases_per_million": 5.894, + "new_cases_smoothed_per_million": 3.343, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 11500.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 200.748, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-14", + "total_cases": 51093.0, + "new_cases": 71.0, + "new_cases_smoothed": 62.286, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2981.814, + "new_cases_per_million": 4.144, + "new_cases_smoothed_per_million": 3.635, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 11721.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 188.18099999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-15", + "total_cases": 51146.0, + "new_cases": 53.0, + "new_cases_smoothed": 64.571, + "total_deaths": 6135.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2984.907, + "new_cases_per_million": 3.093, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 358.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 11942.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 184.942, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-16", + "total_cases": 51252.0, + "new_cases": 106.0, + "new_cases_smoothed": 72.286, + "total_deaths": 6136.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2991.093, + "new_cases_per_million": 6.186, + "new_cases_smoothed_per_million": 4.219, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 12163.0, + "new_tests_smoothed_per_thousand": 0.71, + "tests_per_case": 168.263, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-17", + "total_cases": 51351.0, + "new_cases": 99.0, + "new_cases_smoothed": 79.0, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2996.871, + "new_cases_per_million": 5.778, + "new_cases_smoothed_per_million": 4.61, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 12384.0, + "new_tests_smoothed_per_thousand": 0.723, + "tests_per_case": 156.759, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-18", + "total_cases": 51454.0, + "new_cases": 103.0, + "new_cases_smoothed": 87.714, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3002.882, + "new_cases_per_million": 6.011, + "new_cases_smoothed_per_million": 5.119, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 12605.0, + "new_tests_smoothed_per_thousand": 0.736, + "tests_per_case": 143.705, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-19", + "total_cases": 51581.0, + "new_cases": 127.0, + "new_cases_smoothed": 94.286, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3010.294, + "new_cases_per_million": 7.412, + "new_cases_smoothed_per_million": 5.503, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "total_tests": 853765.0, + "total_tests_per_thousand": 49.826, + "new_tests_smoothed": 12826.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 136.033, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-20", + "total_cases": 51725.0, + "new_cases": 144.0, + "new_cases_smoothed": 100.429, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3018.698, + "new_cases_per_million": 8.404, + "new_cases_smoothed_per_million": 5.861, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 13315.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 132.582, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-21", + "total_cases": 51910.0, + "new_cases": 185.0, + "new_cases_smoothed": 116.714, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3029.494, + "new_cases_per_million": 10.797, + "new_cases_smoothed_per_million": 6.812, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 13804.0, + "new_tests_smoothed_per_thousand": 0.806, + "tests_per_case": 118.272, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-22", + "total_cases": 52073.0, + "new_cases": 163.0, + "new_cases_smoothed": 132.429, + "total_deaths": 6136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3039.007, + "new_cases_per_million": 9.513, + "new_cases_smoothed_per_million": 7.729, + "total_deaths_per_million": 358.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 14293.0, + "new_tests_smoothed_per_thousand": 0.834, + "tests_per_case": 107.93, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-23", + "total_cases": 52241.0, + "new_cases": 168.0, + "new_cases_smoothed": 141.286, + "total_deaths": 6139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3048.812, + "new_cases_per_million": 9.805, + "new_cases_smoothed_per_million": 8.246, + "total_deaths_per_million": 358.275, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 14782.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 104.625, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-24", + "total_cases": 52404.0, + "new_cases": 163.0, + "new_cases_smoothed": 150.429, + "total_deaths": 6139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3058.324, + "new_cases_per_million": 9.513, + "new_cases_smoothed_per_million": 8.779, + "total_deaths_per_million": 358.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 15271.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 101.51700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-25", + "total_cases": 52595.0, + "new_cases": 191.0, + "new_cases_smoothed": 163.0, + "total_deaths": 6139.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3069.471, + "new_cases_per_million": 11.147, + "new_cases_smoothed_per_million": 9.513, + "total_deaths_per_million": 358.275, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 15760.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 96.68700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-26", + "total_cases": 52732.0, + "new_cases": 137.0, + "new_cases_smoothed": 164.429, + "total_deaths": 6140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3077.467, + "new_cases_per_million": 7.995, + "new_cases_smoothed_per_million": 9.596, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.033, + "total_tests": 967509.0, + "total_tests_per_thousand": 56.464, + "new_tests_smoothed": 16249.0, + "new_tests_smoothed_per_thousand": 0.948, + "tests_per_case": 98.821, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-27", + "total_cases": 52946.0, + "new_cases": 214.0, + "new_cases_smoothed": 174.429, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3089.956, + "new_cases_per_million": 12.489, + "new_cases_smoothed_per_million": 10.18, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests_smoothed": 16418.0, + "new_tests_smoothed_per_thousand": 0.958, + "tests_per_case": 94.124, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-28", + "total_cases": 53151.0, + "new_cases": 205.0, + "new_cases_smoothed": 177.286, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3101.92, + "new_cases_per_million": 11.964, + "new_cases_smoothed_per_million": 10.346, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests_smoothed": 16587.0, + "new_tests_smoothed_per_thousand": 0.968, + "tests_per_case": 93.561, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-29", + "total_cases": 53374.0, + "new_cases": 223.0, + "new_cases_smoothed": 185.857, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3114.934, + "new_cases_per_million": 13.014, + "new_cases_smoothed_per_million": 10.847, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests_smoothed": 16756.0, + "new_tests_smoothed_per_thousand": 0.978, + "tests_per_case": 90.155, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-30", + "total_cases": 53621.0, + "new_cases": 247.0, + "new_cases_smoothed": 197.143, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3129.349, + "new_cases_per_million": 14.415, + "new_cases_smoothed_per_million": 11.505, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 16925.0, + "new_tests_smoothed_per_thousand": 0.988, + "tests_per_case": 85.851, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-31", + "total_cases": 53963.0, + "new_cases": 342.0, + "new_cases_smoothed": 222.714, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3149.308, + "new_cases_per_million": 19.959, + "new_cases_smoothed_per_million": 12.998, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 17094.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 76.753, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-01", + "total_cases": 54301.0, + "new_cases": 338.0, + "new_cases_smoothed": 243.714, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3169.034, + "new_cases_per_million": 19.726, + "new_cases_smoothed_per_million": 14.223, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 17263.0, + "new_tests_smoothed_per_thousand": 1.007, + "tests_per_case": 70.833, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-02", + "total_cases": 54732.0, + "new_cases": 431.0, + "new_cases_smoothed": 285.714, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3194.188, + "new_cases_per_million": 25.153, + "new_cases_smoothed_per_million": 16.674, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1089530.0, + "total_tests_per_thousand": 63.586, + "new_tests_smoothed": 17432.0, + "new_tests_smoothed_per_thousand": 1.017, + "tests_per_case": 61.012, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-03", + "total_cases": 55043.0, + "new_cases": 311.0, + "new_cases_smoothed": 299.571, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3212.338, + "new_cases_per_million": 18.15, + "new_cases_smoothed_per_million": 17.483, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 17351.0, + "new_tests_smoothed_per_thousand": 1.013, + "tests_per_case": 57.919, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-04", + "total_cases": 55415.0, + "new_cases": 372.0, + "new_cases_smoothed": 323.429, + "total_deaths": 6140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3234.048, + "new_cases_per_million": 21.71, + "new_cases_smoothed_per_million": 18.875, + "total_deaths_per_million": 358.334, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 17270.0, + "new_tests_smoothed_per_thousand": 1.008, + "tests_per_case": 53.397, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-05", + "total_cases": 55955.0, + "new_cases": 540.0, + "new_cases_smoothed": 368.714, + "total_deaths": 6141.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3265.563, + "new_cases_per_million": 31.515, + "new_cases_smoothed_per_million": 21.518, + "total_deaths_per_million": 358.392, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 17189.0, + "new_tests_smoothed_per_thousand": 1.003, + "tests_per_case": 46.619, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-06", + "total_cases": 56381.0, + "new_cases": 426.0, + "new_cases_smoothed": 394.286, + "total_deaths": 6145.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3290.424, + "new_cases_per_million": 24.862, + "new_cases_smoothed_per_million": 23.011, + "total_deaths_per_million": 358.625, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 17108.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 43.39, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-07", + "total_cases": 56982.0, + "new_cases": 601.0, + "new_cases_smoothed": 431.286, + "total_deaths": 6145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3325.499, + "new_cases_per_million": 35.075, + "new_cases_smoothed_per_million": 25.17, + "total_deaths_per_million": 358.625, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 17027.0, + "new_tests_smoothed_per_thousand": 0.994, + "tests_per_case": 39.48, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-08", + "total_cases": 57501.0, + "new_cases": 519.0, + "new_cases_smoothed": 457.143, + "total_deaths": 6145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3355.788, + "new_cases_per_million": 30.289, + "new_cases_smoothed_per_million": 26.679, + "total_deaths_per_million": 358.625, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 16946.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 37.069, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-09", + "total_cases": 57987.0, + "new_cases": 486.0, + "new_cases_smoothed": 465.0, + "total_deaths": 6148.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3384.151, + "new_cases_per_million": 28.363, + "new_cases_smoothed_per_million": 27.138, + "total_deaths_per_million": 358.8, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.067, + "total_tests": 1207588.0, + "total_tests_per_thousand": 70.475, + "new_tests_smoothed": 16865.0, + "new_tests_smoothed_per_thousand": 0.984, + "tests_per_case": 36.269, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-10", + "total_cases": 58564.0, + "new_cases": 577.0, + "new_cases_smoothed": 503.0, + "total_deaths": 6148.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3417.825, + "new_cases_per_million": 33.674, + "new_cases_smoothed_per_million": 29.355, + "total_deaths_per_million": 358.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 16900.0, + "new_tests_smoothed_per_thousand": 0.986, + "tests_per_case": 33.598, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-11", + "total_cases": 59139.0, + "new_cases": 575.0, + "new_cases_smoothed": 532.0, + "total_deaths": 6148.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3451.382, + "new_cases_per_million": 33.557, + "new_cases_smoothed_per_million": 31.048, + "total_deaths_per_million": 358.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 16934.0, + "new_tests_smoothed_per_thousand": 0.988, + "tests_per_case": 31.831, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-12", + "total_cases": 59918.0, + "new_cases": 779.0, + "new_cases_smoothed": 566.143, + "total_deaths": 6150.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3496.845, + "new_cases_per_million": 45.463, + "new_cases_smoothed_per_million": 33.04, + "total_deaths_per_million": 358.917, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.075, + "new_tests_smoothed": 16968.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 29.971, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-13", + "total_cases": 60572.0, + "new_cases": 654.0, + "new_cases_smoothed": 598.714, + "total_deaths": 6152.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 3535.013, + "new_cases_per_million": 38.168, + "new_cases_smoothed_per_million": 34.941, + "total_deaths_per_million": 359.034, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 17002.0, + "new_tests_smoothed_per_thousand": 0.992, + "tests_per_case": 28.398000000000003, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-14", + "total_cases": 61149.0, + "new_cases": 577.0, + "new_cases_smoothed": 595.286, + "total_deaths": 6156.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3568.687, + "new_cases_per_million": 33.674, + "new_cases_smoothed_per_million": 34.741, + "total_deaths_per_million": 359.267, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.092, + "new_tests_smoothed": 17036.0, + "new_tests_smoothed_per_thousand": 0.994, + "tests_per_case": 28.618000000000002, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-15", + "total_cases": 61785.0, + "new_cases": 636.0, + "new_cases_smoothed": 612.0, + "total_deaths": 6158.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3605.804, + "new_cases_per_million": 37.117, + "new_cases_smoothed_per_million": 35.717, + "total_deaths_per_million": 359.384, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.108, + "new_tests_smoothed": 17071.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 27.894000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-16", + "total_cases": 62437.0, + "new_cases": 652.0, + "new_cases_smoothed": 635.714, + "total_deaths": 6160.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3643.855, + "new_cases_per_million": 38.051, + "new_cases_smoothed_per_million": 37.101, + "total_deaths_per_million": 359.501, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.1, + "total_tests": 1327322.0, + "total_tests_per_thousand": 77.463, + "new_tests_smoothed": 17105.0, + "new_tests_smoothed_per_thousand": 0.998, + "tests_per_case": 26.906999999999996, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-17", + "total_cases": 62943.0, + "new_cases": 506.0, + "new_cases_smoothed": 625.571, + "total_deaths": 6163.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3673.386, + "new_cases_per_million": 29.53, + "new_cases_smoothed_per_million": 36.509, + "total_deaths_per_million": 359.676, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.125, + "new_tests_smoothed": 17905.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 28.622, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 36.11 + }, + { + "date": "2020-08-18", + "total_cases": 63424.0, + "new_cases": 481.0, + "new_cases_smoothed": 612.143, + "total_deaths": 6163.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3701.457, + "new_cases_per_million": 28.071, + "new_cases_smoothed_per_million": 35.725, + "total_deaths_per_million": 359.676, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "new_tests_smoothed": 18705.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 30.557, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-19", + "total_cases": 63911.0, + "new_cases": 487.0, + "new_cases_smoothed": 570.429, + "total_deaths": 6166.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3729.879, + "new_cases_per_million": 28.422, + "new_cases_smoothed_per_million": 33.291, + "total_deaths_per_million": 359.851, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.133, + "new_tests_smoothed": 19505.0, + "new_tests_smoothed_per_thousand": 1.138, + "tests_per_case": 34.194, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-20", + "total_cases": 64463.0, + "new_cases": 552.0, + "new_cases_smoothed": 555.857, + "total_deaths": 6172.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 3762.094, + "new_cases_per_million": 32.215, + "new_cases_smoothed_per_million": 32.44, + "total_deaths_per_million": 360.201, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.167, + "new_tests_smoothed": 20305.0, + "new_tests_smoothed_per_thousand": 1.185, + "tests_per_case": 36.529, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-21", + "total_cases": 64992.0, + "new_cases": 529.0, + "new_cases_smoothed": 549.0, + "total_deaths": 6182.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 3792.967, + "new_cases_per_million": 30.873, + "new_cases_smoothed_per_million": 32.04, + "total_deaths_per_million": 360.785, + "new_deaths_per_million": 0.584, + "new_deaths_smoothed_per_million": 0.217, + "new_tests_smoothed": 21105.0, + "new_tests_smoothed_per_thousand": 1.232, + "tests_per_case": 38.443000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-22", + "total_cases": 65526.0, + "new_cases": 534.0, + "new_cases_smoothed": 534.429, + "total_deaths": 6186.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3824.131, + "new_cases_per_million": 31.165, + "new_cases_smoothed_per_million": 31.19, + "total_deaths_per_million": 361.018, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.233, + "new_tests_smoothed": 21905.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 40.988, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-23", + "total_cases": 66034.0, + "new_cases": 508.0, + "new_cases_smoothed": 513.857, + "total_deaths": 6191.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3853.778, + "new_cases_per_million": 29.647, + "new_cases_smoothed_per_million": 29.989, + "total_deaths_per_million": 361.31, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.258, + "total_tests": 1486255.0, + "total_tests_per_thousand": 86.739, + "new_tests_smoothed": 22705.0, + "new_tests_smoothed_per_thousand": 1.325, + "tests_per_case": 44.185, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-24", + "total_cases": 66490.0, + "new_cases": 456.0, + "new_cases_smoothed": 506.714, + "total_deaths": 6191.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3880.391, + "new_cases_per_million": 26.612, + "new_cases_smoothed_per_million": 29.572, + "total_deaths_per_million": 361.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.233, + "new_tests_smoothed": 22764.0, + "new_tests_smoothed_per_thousand": 1.329, + "tests_per_case": 44.925, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-25", + "total_cases": 67062.0, + "new_cases": 572.0, + "new_cases_smoothed": 519.714, + "total_deaths": 6193.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3913.773, + "new_cases_per_million": 33.382, + "new_cases_smoothed_per_million": 30.331, + "total_deaths_per_million": 361.427, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.25, + "new_tests_smoothed": 22824.0, + "new_tests_smoothed_per_thousand": 1.332, + "tests_per_case": 43.916000000000004, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-26", + "total_cases": 67476.0, + "new_cases": 414.0, + "new_cases_smoothed": 509.286, + "total_deaths": 6198.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 3937.934, + "new_cases_per_million": 24.161, + "new_cases_smoothed_per_million": 29.722, + "total_deaths_per_million": 361.718, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.267, + "new_tests_smoothed": 22883.0, + "new_tests_smoothed_per_thousand": 1.335, + "tests_per_case": 44.931999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-27", + "total_cases": 68046.0, + "new_cases": 570.0, + "new_cases_smoothed": 511.857, + "total_deaths": 6206.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3971.2, + "new_cases_per_million": 33.265, + "new_cases_smoothed_per_million": 29.872, + "total_deaths_per_million": 362.185, + "new_deaths_per_million": 0.467, + "new_deaths_smoothed_per_million": 0.283, + "new_tests_smoothed": 22943.0, + "new_tests_smoothed_per_thousand": 1.339, + "tests_per_case": 44.823, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-28", + "total_cases": 68556.0, + "new_cases": 510.0, + "new_cases_smoothed": 509.143, + "total_deaths": 6209.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4000.963, + "new_cases_per_million": 29.764, + "new_cases_smoothed_per_million": 29.714, + "total_deaths_per_million": 362.36, + "new_deaths_per_million": 0.175, + "new_deaths_smoothed_per_million": 0.225, + "new_tests_smoothed": 23002.0, + "new_tests_smoothed_per_thousand": 1.342, + "tests_per_case": 45.178000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-29", + "total_cases": 69063.0, + "new_cases": 507.0, + "new_cases_smoothed": 505.286, + "total_deaths": 6211.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 4030.552, + "new_cases_per_million": 29.589, + "new_cases_smoothed_per_million": 29.489, + "total_deaths_per_million": 362.477, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.208, + "new_tests_smoothed": 23062.0, + "new_tests_smoothed_per_thousand": 1.346, + "tests_per_case": 45.641999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-30", + "total_cases": 69563.0, + "new_cases": 500.0, + "new_cases_smoothed": 504.143, + "total_deaths": 6215.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4059.732, + "new_cases_per_million": 29.18, + "new_cases_smoothed_per_million": 29.422, + "total_deaths_per_million": 362.711, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.2, + "total_tests": 1648103.0, + "total_tests_per_thousand": 96.184, + "new_tests_smoothed": 23121.0, + "new_tests_smoothed_per_thousand": 1.349, + "tests_per_case": 45.861999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-08-31", + "total_cases": 70071.0, + "new_cases": 508.0, + "new_cases_smoothed": 511.571, + "total_deaths": 6215.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4089.38, + "new_cases_per_million": 29.647, + "new_cases_smoothed_per_million": 29.856, + "total_deaths_per_million": 362.711, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 45.37 + }, + { + "date": "2020-09-01", + "total_cases": 70596.0, + "new_cases": 525.0, + "new_cases_smoothed": 504.857, + "total_deaths": 6215.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 4120.019, + "new_cases_per_million": 30.639, + "new_cases_smoothed_per_million": 29.464, + "total_deaths_per_million": 362.711, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.183, + "stringency_index": 45.37 + }, + { + "date": "2020-09-02", + "total_cases": 71057.0, + "new_cases": 461.0, + "new_cases_smoothed": 511.571, + "total_deaths": 6221.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 4146.923, + "new_cases_per_million": 26.904, + "new_cases_smoothed_per_million": 29.856, + "total_deaths_per_million": 363.061, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 45.37 + }, + { + "date": "2020-09-03", + "total_cases": 71971.0, + "new_cases": 914.0, + "new_cases_smoothed": 560.714, + "total_deaths": 6226.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 4200.265, + "new_cases_per_million": 53.342, + "new_cases_smoothed_per_million": 32.724, + "total_deaths_per_million": 363.353, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.167 + }, + { + "date": "2020-09-04", + "total_cases": 72392.0, + "new_cases": 421.0, + "new_cases_smoothed": 548.0, + "total_deaths": 6226.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4224.834, + "new_cases_per_million": 24.57, + "new_cases_smoothed_per_million": 31.982, + "total_deaths_per_million": 363.353, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.142 + }, + { + "date": "2020-09-05", + "total_cases": 73136.0, + "new_cases": 744.0, + "new_cases_smoothed": 581.857, + "total_deaths": 6228.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4268.255, + "new_cases_per_million": 43.42, + "new_cases_smoothed_per_million": 33.957, + "total_deaths_per_million": 363.469, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.142 + } + ] + }, + "NCL": { + "continent": "Oceania", + "location": "New Caledonia", + "population": 285491.0, + "population_density": 15.342, + "median_age": 33.4, + "aged_65_older": 9.954, + "aged_70_older": 6.489, + "diabetes_prevalence": 23.36, + "life_expectancy": 77.55, + "data": [ + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.005, + "new_cases_per_million": 7.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.011, + "new_cases_per_million": 7.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 17.514, + "new_cases_per_million": 3.503, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 24.519, + "new_cases_per_million": 7.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 9.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 31.525, + "new_cases_per_million": 7.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 14.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 49.038, + "new_cases_per_million": 17.514, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.541, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 7.506, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.505, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.541, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.044, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 4.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.503, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 7.005, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.552, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.552, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.552, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.552, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.055, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.557, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.06, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.563, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.071, + "new_cases_per_million": 10.508, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "NZL": { + "continent": "Oceania", + "location": "New Zealand", + "population": 4822233.0, + "population_density": 18.206, + "median_age": 37.9, + "aged_65_older": 15.322, + "aged_70_older": 9.72, + "gdp_per_capita": 36085.843, + "cardiovasc_death_rate": 128.797, + "diabetes_prevalence": 8.08, + "female_smokers": 14.8, + "male_smokers": 17.2, + "hospital_beds_per_thousand": 2.61, + "life_expectancy": 82.29, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.415, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.622, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.829, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.037, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 312.0, + "total_tests_per_thousand": 0.065, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 401.0, + "total_tests_per_thousand": 0.083, + "new_tests_per_thousand": 0.018, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 83.0, + "total_tests": 484.0, + "total_tests_per_thousand": 0.1, + "new_tests_per_thousand": 0.017, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 515.0, + "total_tests_per_thousand": 0.107, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 35.0, + "total_tests": 550.0, + "total_tests_per_thousand": 0.114, + "new_tests_per_thousand": 0.007, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-14", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.244, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 584.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.007, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-15", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.659, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 142.0, + "total_tests": 726.0, + "total_tests_per_thousand": 0.151, + "new_tests_per_thousand": 0.029, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 325.0, + "total_tests": 1051.0, + "total_tests_per_thousand": 0.218, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 106.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 247.333, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-03-17", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 659.0, + "total_tests": 1710.0, + "total_tests_per_thousand": 0.355, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 187.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 436.333, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-03-18", + "total_cases": 20.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.147, + "new_cases_per_million": 2.488, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1209.0, + "total_tests": 2919.0, + "total_tests_per_thousand": 0.605, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 348.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 162.4, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-03-19", + "total_cases": 28.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.806, + "new_cases_per_million": 1.659, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1291.0, + "total_tests": 4210.0, + "total_tests_per_thousand": 0.873, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 528.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 160.696, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-03-20", + "total_cases": 39.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.088, + "new_cases_per_million": 2.281, + "new_cases_smoothed_per_million": 1.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1554.0, + "total_tests": 5764.0, + "total_tests_per_thousand": 1.195, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 745.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 153.382, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-03-21", + "total_cases": 53.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.991, + "new_cases_per_million": 2.903, + "new_cases_smoothed_per_million": 1.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1176.0, + "total_tests": 6940.0, + "total_tests_per_thousand": 1.439, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 908.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 135.234, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-03-22", + "total_cases": 66.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.687, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1256.0, + "total_tests": 8196.0, + "total_tests_per_thousand": 1.7, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 1067.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 128.776, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 54.63 + }, + { + "date": "2020-03-23", + "total_cases": 102.0, + "new_cases": 36.0, + "new_cases_smoothed": 13.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.152, + "new_cases_per_million": 7.465, + "new_cases_smoothed_per_million": 2.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1050.0, + "total_tests": 9246.0, + "total_tests_per_thousand": 1.917, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 1171.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 87.20200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-24", + "total_cases": 142.0, + "new_cases": 40.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.447, + "new_cases_per_million": 8.295, + "new_cases_smoothed_per_million": 3.97, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1544.0, + "total_tests": 10790.0, + "total_tests_per_thousand": 2.238, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 1297.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 67.75399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-03-25", + "total_cases": 189.0, + "new_cases": 47.0, + "new_cases_smoothed": 24.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.193, + "new_cases_per_million": 9.747, + "new_cases_smoothed_per_million": 5.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2592.0, + "total_tests": 13382.0, + "total_tests_per_thousand": 2.775, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 1495.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 61.923, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-26", + "total_cases": 262.0, + "new_cases": 73.0, + "new_cases_smoothed": 33.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.332, + "new_cases_per_million": 15.138, + "new_cases_smoothed_per_million": 6.932, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2117.0, + "total_tests": 15499.0, + "total_tests_per_thousand": 3.214, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 1613.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 48.251999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 338.0, + "new_cases": 76.0, + "new_cases_smoothed": 42.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.092, + "new_cases_per_million": 15.76, + "new_cases_smoothed_per_million": 8.858, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2067.0, + "total_tests": 17566.0, + "total_tests_per_thousand": 3.643, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 1686.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 39.472, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 416.0, + "new_cases": 78.0, + "new_cases_smoothed": 51.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.267, + "new_cases_per_million": 16.175, + "new_cases_smoothed_per_million": 10.754, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1809.0, + "total_tests": 19375.0, + "total_tests_per_thousand": 4.018, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 1776.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 34.248000000000005, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 476.0, + "new_cases": 60.0, + "new_cases_smoothed": 58.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.709, + "new_cases_per_million": 12.442, + "new_cases_smoothed_per_million": 12.146, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 918.0, + "total_tests": 20293.0, + "total_tests_per_thousand": 4.208, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 1728.0, + "new_tests_smoothed_per_thousand": 0.358, + "tests_per_case": 29.502, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 552.0, + "new_cases": 76.0, + "new_cases_smoothed": 64.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.47, + "new_cases_per_million": 15.76, + "new_cases_smoothed_per_million": 13.331, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1391.0, + "total_tests": 21684.0, + "total_tests_per_thousand": 4.497, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 1777.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 27.642, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 647.0, + "new_cases": 95.0, + "new_cases_smoothed": 72.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.17, + "new_cases_per_million": 19.7, + "new_cases_smoothed_per_million": 14.96, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2093.0, + "total_tests": 23777.0, + "total_tests_per_thousand": 4.931, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 1855.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 25.713, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 647.0, + "new_cases": 0.0, + "new_cases_smoothed": 65.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.568, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2562.0, + "total_tests": 26339.0, + "total_tests_per_thousand": 5.462, + "new_tests_per_thousand": 0.531, + "new_tests_smoothed": 1851.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 28.29, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 723.0, + "new_cases": 76.0, + "new_cases_smoothed": 65.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 149.931, + "new_cases_per_million": 15.76, + "new_cases_smoothed_per_million": 13.657, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3446.0, + "total_tests": 29785.0, + "total_tests_per_thousand": 6.177, + "new_tests_per_thousand": 0.715, + "new_tests_smoothed": 2041.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 30.991, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 772.0, + "new_cases": 49.0, + "new_cases_smoothed": 62.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 160.092, + "new_cases_per_million": 10.161, + "new_cases_smoothed_per_million": 12.857, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3631.0, + "total_tests": 33416.0, + "total_tests_per_thousand": 6.93, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 2264.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 36.516, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 824.0, + "new_cases": 52.0, + "new_cases_smoothed": 58.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 170.875, + "new_cases_per_million": 10.783, + "new_cases_smoothed_per_million": 12.087, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3093.0, + "total_tests": 36509.0, + "total_tests_per_thousand": 7.571, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 2448.0, + "new_tests_smoothed_per_thousand": 0.508, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 872.0, + "new_cases": 48.0, + "new_cases_smoothed": 56.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.829, + "new_cases_per_million": 9.954, + "new_cases_smoothed_per_million": 11.731, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3709.0, + "total_tests": 40218.0, + "total_tests_per_thousand": 8.34, + "new_tests_per_thousand": 0.769, + "new_tests_smoothed": 2846.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 50.308, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 911.0, + "new_cases": 39.0, + "new_cases_smoothed": 51.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 188.917, + "new_cases_per_million": 8.088, + "new_cases_smoothed_per_million": 10.635, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2908.0, + "total_tests": 43126.0, + "total_tests_per_thousand": 8.943, + "new_tests_per_thousand": 0.603, + "new_tests_smoothed": 3063.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 59.724, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 943.0, + "new_cases": 32.0, + "new_cases_smoothed": 42.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.553, + "new_cases_per_million": 6.636, + "new_cases_smoothed_per_million": 8.769, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4049.0, + "total_tests": 47175.0, + "total_tests_per_thousand": 9.783, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 3343.0, + "new_tests_smoothed_per_thousand": 0.693, + "tests_per_case": 79.057, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 969.0, + "new_cases": 26.0, + "new_cases_smoothed": 46.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.944, + "new_cases_per_million": 5.392, + "new_cases_smoothed_per_million": 9.539, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3990.0, + "total_tests": 51165.0, + "total_tests_per_thousand": 10.61, + "new_tests_per_thousand": 0.827, + "new_tests_smoothed": 3547.0, + "new_tests_smoothed_per_thousand": 0.736, + "tests_per_case": 77.109, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 992.0, + "new_cases": 23.0, + "new_cases_smoothed": 38.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.714, + "new_cases_per_million": 4.77, + "new_cases_smoothed_per_million": 7.969, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4520.0, + "total_tests": 55685.0, + "total_tests_per_thousand": 11.548, + "new_tests_per_thousand": 0.937, + "new_tests_smoothed": 3700.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 96.28299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 1015.0, + "new_cases": 23.0, + "new_cases_smoothed": 34.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 210.483, + "new_cases_per_million": 4.77, + "new_cases_smoothed_per_million": 7.199, + "total_deaths_per_million": 0.415, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3061.0, + "total_tests": 58746.0, + "total_tests_per_thousand": 12.182, + "new_tests_per_thousand": 0.635, + "new_tests_smoothed": 3619.0, + "new_tests_smoothed_per_thousand": 0.75, + "tests_per_case": 104.251, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 1035.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.143, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 214.631, + "new_cases_per_million": 4.147, + "new_cases_smoothed_per_million": 6.251, + "total_deaths_per_million": 0.829, + "new_deaths_per_million": 0.415, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 2421.0, + "total_tests": 61167.0, + "total_tests_per_thousand": 12.684, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 3523.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 116.87700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 1049.0, + "new_cases": 14.0, + "new_cases_smoothed": 25.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 217.534, + "new_cases_per_million": 2.903, + "new_cases_smoothed_per_million": 5.244, + "total_deaths_per_million": 0.829, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 1660.0, + "total_tests": 62827.0, + "total_tests_per_thousand": 13.029, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 3230.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 127.74, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 1064.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 220.645, + "new_cases_per_million": 3.111, + "new_cases_smoothed_per_million": 4.533, + "total_deaths_per_million": 1.037, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 1572.0, + "total_tests": 64399.0, + "total_tests_per_thousand": 13.355, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 3039.0, + "new_tests_smoothed_per_thousand": 0.63, + "tests_per_case": 139.039, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 1072.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.429, + "total_deaths": 9.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 222.304, + "new_cases_per_million": 1.659, + "new_cases_smoothed_per_million": 3.822, + "total_deaths_per_million": 1.866, + "new_deaths_per_million": 0.829, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 2100.0, + "total_tests": 66499.0, + "total_tests_per_thousand": 13.79, + "new_tests_per_thousand": 0.435, + "new_tests_smoothed": 2761.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 149.822, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 1078.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 223.548, + "new_cases_per_million": 1.244, + "new_cases_smoothed_per_million": 3.229, + "total_deaths_per_million": 1.866, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3661.0, + "total_tests": 70160.0, + "total_tests_per_thousand": 14.549, + "new_tests_per_thousand": 0.759, + "new_tests_smoothed": 2714.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 174.294, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 1084.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 224.792, + "new_cases_per_million": 1.244, + "new_cases_smoothed_per_million": 2.725, + "total_deaths_per_million": 1.866, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 4241.0, + "total_tests": 74401.0, + "total_tests_per_thousand": 15.429, + "new_tests_per_thousand": 0.879, + "new_tests_smoothed": 2674.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 203.457, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 1086.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.143, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 225.207, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 2.103, + "total_deaths_per_million": 2.281, + "new_deaths_per_million": 0.415, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 4677.0, + "total_tests": 79078.0, + "total_tests_per_thousand": 16.399, + "new_tests_per_thousand": 0.97, + "new_tests_smoothed": 2905.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 286.408, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 1094.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 226.866, + "new_cases_per_million": 1.659, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 2.281, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 4146.0, + "total_tests": 83224.0, + "total_tests_per_thousand": 17.258, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 3151.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 373.847, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 1098.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.0, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 227.695, + "new_cases_per_million": 0.829, + "new_cases_smoothed_per_million": 1.452, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3081.0, + "total_tests": 86305.0, + "total_tests_per_thousand": 17.897, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 3354.0, + "new_tests_smoothed_per_thousand": 0.696, + "tests_per_case": 479.14300000000003, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 1105.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 229.147, + "new_cases_per_million": 1.452, + "new_cases_smoothed_per_million": 1.215, + "total_deaths_per_million": 2.488, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 3203.0, + "total_tests": 89508.0, + "total_tests_per_thousand": 18.562, + "new_tests_per_thousand": 0.664, + "new_tests_smoothed": 3587.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 612.415, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 1107.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 229.562, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 1.037, + "total_deaths_per_million": 2.696, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 5289.0, + "total_tests": 94797.0, + "total_tests_per_thousand": 19.658, + "new_tests_per_thousand": 1.097, + "new_tests_smoothed": 4043.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 808.6, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 1112.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 230.599, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.007, + "total_deaths_per_million": 2.903, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 6480.0, + "total_tests": 101277.0, + "total_tests_per_thousand": 21.002, + "new_tests_per_thousand": 1.344, + "new_tests_smoothed": 4445.0, + "new_tests_smoothed_per_thousand": 0.922, + "tests_per_case": 915.1469999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 1112.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 230.599, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.829, + "total_deaths_per_million": 3.318, + "new_deaths_per_million": 0.415, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 6961.0, + "total_tests": 108238.0, + "total_tests_per_thousand": 22.446, + "new_tests_per_thousand": 1.444, + "new_tests_smoothed": 4834.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 1208.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 1114.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 231.013, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.829, + "total_deaths_per_million": 3.525, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 6777.0, + "total_tests": 115015.0, + "total_tests_per_thousand": 23.851, + "new_tests_per_thousand": 1.405, + "new_tests_smoothed": 5134.0, + "new_tests_smoothed_per_thousand": 1.065, + "tests_per_case": 1283.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 1117.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 231.635, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 3.733, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 5966.0, + "total_tests": 120981.0, + "total_tests_per_thousand": 25.088, + "new_tests_per_thousand": 1.237, + "new_tests_smoothed": 5394.0, + "new_tests_smoothed_per_thousand": 1.119, + "tests_per_case": 1641.652, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 1121.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 232.465, + "new_cases_per_million": 0.829, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 3.733, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 2939.0, + "total_tests": 123920.0, + "total_tests_per_thousand": 25.698, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 5374.0, + "new_tests_smoothed_per_thousand": 1.114, + "tests_per_case": 1635.565, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 1122.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 232.672, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 2146.0, + "total_tests": 126066.0, + "total_tests_per_thousand": 26.143, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 5223.0, + "new_tests_smoothed_per_thousand": 1.083, + "tests_per_case": 2150.647, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 1124.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 233.087, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 2637.0, + "total_tests": 128703.0, + "total_tests_per_thousand": 26.69, + "new_tests_per_thousand": 0.547, + "new_tests_smoothed": 4844.0, + "new_tests_smoothed_per_thousand": 1.005, + "tests_per_case": 1994.588, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 1126.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 233.502, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.148, + "new_tests": 5867.0, + "total_tests": 134570.0, + "total_tests_per_thousand": 27.906, + "new_tests_per_thousand": 1.217, + "new_tests_smoothed": 4756.0, + "new_tests_smoothed_per_thousand": 0.986, + "tests_per_case": 2378.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-04-30", + "total_cases": 1129.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 234.124, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 5328.0, + "total_tests": 139898.0, + "total_tests_per_thousand": 29.011, + "new_tests_per_thousand": 1.105, + "new_tests_smoothed": 4523.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 1862.412, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-01", + "total_cases": 1132.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 234.746, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.533, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 5691.0, + "total_tests": 145589.0, + "total_tests_per_thousand": 30.191, + "new_tests_per_thousand": 1.18, + "new_tests_smoothed": 4368.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 1698.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-02", + "total_cases": 1134.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 235.161, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 4.147, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 4634.0, + "total_tests": 150223.0, + "total_tests_per_thousand": 31.152, + "new_tests_per_thousand": 0.961, + "new_tests_smoothed": 4177.0, + "new_tests_smoothed_per_thousand": 0.866, + "tests_per_case": 1719.941, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-03", + "total_cases": 1136.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 235.576, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 4.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 2473.0, + "total_tests": 152696.0, + "total_tests_per_thousand": 31.665, + "new_tests_per_thousand": 0.513, + "new_tests_smoothed": 4111.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 1918.467, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-04", + "total_cases": 1137.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.783, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 4.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3232.0, + "total_tests": 155928.0, + "total_tests_per_thousand": 32.335, + "new_tests_per_thousand": 0.67, + "new_tests_smoothed": 4266.0, + "new_tests_smoothed_per_thousand": 0.885, + "tests_per_case": 1990.8, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-05", + "total_cases": 1137.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 4.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 4772.0, + "total_tests": 160700.0, + "total_tests_per_thousand": 33.325, + "new_tests_per_thousand": 0.99, + "new_tests_smoothed": 4571.0, + "new_tests_smoothed_per_thousand": 0.948, + "tests_per_case": 2461.308, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-06", + "total_cases": 1138.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 235.99, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 7323.0, + "total_tests": 168023.0, + "total_tests_per_thousand": 34.843, + "new_tests_per_thousand": 1.519, + "new_tests_smoothed": 4779.0, + "new_tests_smoothed_per_thousand": 0.991, + "tests_per_case": 2787.75, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-07", + "total_cases": 1139.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 236.198, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 7812.0, + "total_tests": 175835.0, + "total_tests_per_thousand": 36.463, + "new_tests_per_thousand": 1.62, + "new_tests_smoothed": 5134.0, + "new_tests_smoothed_per_thousand": 1.065, + "tests_per_case": 3593.8, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-08", + "total_cases": 1141.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 236.612, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 7204.0, + "total_tests": 183039.0, + "total_tests_per_thousand": 37.957, + "new_tests_per_thousand": 1.494, + "new_tests_smoothed": 5350.0, + "new_tests_smoothed_per_thousand": 1.109, + "tests_per_case": 4161.111, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-09", + "total_cases": 1142.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 236.82, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 7287.0, + "total_tests": 190326.0, + "total_tests_per_thousand": 39.468, + "new_tests_per_thousand": 1.511, + "new_tests_smoothed": 5729.0, + "new_tests_smoothed_per_thousand": 1.188, + "tests_per_case": 5012.875, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-10", + "total_cases": 1144.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.234, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3865.0, + "total_tests": 194191.0, + "total_tests_per_thousand": 40.27, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 5928.0, + "new_tests_smoothed_per_thousand": 1.229, + "tests_per_case": 5187.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-11", + "total_cases": 1147.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.857, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2893.0, + "total_tests": 197084.0, + "total_tests_per_thousand": 40.87, + "new_tests_per_thousand": 0.6, + "new_tests_smoothed": 5879.0, + "new_tests_smoothed_per_thousand": 1.219, + "tests_per_case": 4115.3, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-12", + "total_cases": 1147.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 5961.0, + "total_tests": 203045.0, + "total_tests_per_thousand": 42.106, + "new_tests_per_thousand": 1.236, + "new_tests_smoothed": 6049.0, + "new_tests_smoothed_per_thousand": 1.254, + "tests_per_case": 4234.3, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-13", + "total_cases": 1147.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7019.0, + "total_tests": 210064.0, + "total_tests_per_thousand": 43.562, + "new_tests_per_thousand": 1.456, + "new_tests_smoothed": 6006.0, + "new_tests_smoothed_per_thousand": 1.245, + "tests_per_case": 4671.333, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-14", + "total_cases": 1147.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 237.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6723.0, + "total_tests": 216787.0, + "total_tests_per_thousand": 44.956, + "new_tests_per_thousand": 1.394, + "new_tests_smoothed": 5850.0, + "new_tests_smoothed_per_thousand": 1.213, + "tests_per_case": 5118.75, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-15", + "total_cases": 1148.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.064, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7150.0, + "total_tests": 223937.0, + "total_tests_per_thousand": 46.438, + "new_tests_per_thousand": 1.483, + "new_tests_smoothed": 5843.0, + "new_tests_smoothed_per_thousand": 1.212, + "tests_per_case": 5843.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-16", + "total_cases": 1148.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4211.0, + "total_tests": 228148.0, + "total_tests_per_thousand": 47.312, + "new_tests_per_thousand": 0.873, + "new_tests_smoothed": 5403.0, + "new_tests_smoothed_per_thousand": 1.12, + "tests_per_case": 6303.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-17", + "total_cases": 1149.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.271, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2570.0, + "total_tests": 230718.0, + "total_tests_per_thousand": 47.845, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 5218.0, + "new_tests_smoothed_per_thousand": 1.082, + "tests_per_case": 7305.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-18", + "total_cases": 1149.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 238.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3125.0, + "total_tests": 233843.0, + "total_tests_per_thousand": 48.493, + "new_tests_per_thousand": 0.648, + "new_tests_smoothed": 5251.0, + "new_tests_smoothed_per_thousand": 1.089, + "tests_per_case": 18378.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-19", + "total_cases": 1153.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.101, + "new_cases_per_million": 0.829, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4882.0, + "total_tests": 238725.0, + "total_tests_per_thousand": 49.505, + "new_tests_per_thousand": 1.012, + "new_tests_smoothed": 5097.0, + "new_tests_smoothed_per_thousand": 1.057, + "tests_per_case": 5946.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-20", + "total_cases": 1153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6113.0, + "total_tests": 244838.0, + "total_tests_per_thousand": 50.773, + "new_tests_per_thousand": 1.268, + "new_tests_smoothed": 4968.0, + "new_tests_smoothed_per_thousand": 1.03, + "tests_per_case": 5796.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-21", + "total_cases": 1153.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5408.0, + "total_tests": 250246.0, + "total_tests_per_thousand": 51.894, + "new_tests_per_thousand": 1.121, + "new_tests_smoothed": 4780.0, + "new_tests_smoothed_per_thousand": 0.991, + "tests_per_case": 5576.6669999999995, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-22", + "total_cases": 1154.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5604.0, + "total_tests": 255850.0, + "total_tests_per_thousand": 53.056, + "new_tests_per_thousand": 1.162, + "new_tests_smoothed": 4559.0, + "new_tests_smoothed_per_thousand": 0.945, + "tests_per_case": 5318.8330000000005, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-23", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3302.0, + "total_tests": 259152.0, + "total_tests_per_thousand": 53.741, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 4429.0, + "new_tests_smoothed_per_thousand": 0.918, + "tests_per_case": 5167.167, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-24", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2163.0, + "total_tests": 261315.0, + "total_tests_per_thousand": 54.19, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 4371.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 6119.4, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-25", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1841.0, + "total_tests": 263156.0, + "total_tests_per_thousand": 54.571, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 4188.0, + "new_tests_smoothed_per_thousand": 0.868, + "tests_per_case": 5863.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-26", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4279.0, + "total_tests": 267435.0, + "total_tests_per_thousand": 55.459, + "new_tests_per_thousand": 0.887, + "new_tests_smoothed": 4101.0, + "new_tests_smoothed_per_thousand": 0.85, + "tests_per_case": 28707.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-27", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 4.355, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4255.0, + "total_tests": 271690.0, + "total_tests_per_thousand": 56.341, + "new_tests_per_thousand": 0.882, + "new_tests_smoothed": 3836.0, + "new_tests_smoothed_per_thousand": 0.795, + "tests_per_case": 26852.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-28", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 4162.0, + "total_tests": 275852.0, + "total_tests_per_thousand": 57.204, + "new_tests_per_thousand": 0.863, + "new_tests_smoothed": 3658.0, + "new_tests_smoothed_per_thousand": 0.759, + "tests_per_case": 25606.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 36.11 + }, + { + "date": "2020-05-29", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 3020.0, + "total_tests": 278872.0, + "total_tests_per_thousand": 57.83, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 3289.0, + "new_tests_smoothed_per_thousand": 0.682, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-05-30", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2111.0, + "total_tests": 280983.0, + "total_tests_per_thousand": 58.268, + "new_tests_per_thousand": 0.438, + "new_tests_smoothed": 3119.0, + "new_tests_smoothed_per_thousand": 0.647, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-05-31", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 626.0, + "total_tests": 281609.0, + "total_tests_per_thousand": 58.398, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 2899.0, + "new_tests_smoothed_per_thousand": 0.601, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-01", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 654.0, + "total_tests": 282263.0, + "total_tests_per_thousand": 58.534, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 2730.0, + "new_tests_smoothed_per_thousand": 0.566, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-02", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1262.0, + "total_tests": 283525.0, + "total_tests_per_thousand": 58.795, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 2299.0, + "new_tests_smoothed_per_thousand": 0.477, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-03", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 2649.0, + "total_tests": 286174.0, + "total_tests_per_thousand": 59.345, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 2069.0, + "new_tests_smoothed_per_thousand": 0.429, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-04", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2813.0, + "total_tests": 288987.0, + "total_tests_per_thousand": 59.928, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 1876.0, + "new_tests_smoothed_per_thousand": 0.389, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-05", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3007.0, + "total_tests": 291994.0, + "total_tests_per_thousand": 60.552, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 1875.0, + "new_tests_smoothed_per_thousand": 0.389, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-06", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2054.0, + "total_tests": 294048.0, + "total_tests_per_thousand": 60.978, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 1866.0, + "new_tests_smoothed_per_thousand": 0.387, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-07", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 800.0, + "total_tests": 294848.0, + "total_tests_per_thousand": 61.143, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 1891.0, + "new_tests_smoothed_per_thousand": 0.392, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-08", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1053.0, + "total_tests": 295901.0, + "total_tests_per_thousand": 61.362, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 1948.0, + "new_tests_smoothed_per_thousand": 0.404, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-09", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2631.0, + "total_tests": 298532.0, + "total_tests_per_thousand": 61.907, + "new_tests_per_thousand": 0.546, + "new_tests_smoothed": 2144.0, + "new_tests_smoothed_per_thousand": 0.445, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-10", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3350.0, + "total_tests": 301882.0, + "total_tests_per_thousand": 62.602, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 2244.0, + "new_tests_smoothed_per_thousand": 0.465, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-11", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2950.0, + "total_tests": 304832.0, + "total_tests_per_thousand": 63.214, + "new_tests_per_thousand": 0.612, + "new_tests_smoothed": 2264.0, + "new_tests_smoothed_per_thousand": 0.469, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-12", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2978.0, + "total_tests": 307810.0, + "total_tests_per_thousand": 63.831, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 2259.0, + "new_tests_smoothed_per_thousand": 0.468, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-13", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2487.0, + "total_tests": 310297.0, + "total_tests_per_thousand": 64.347, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 2321.0, + "new_tests_smoothed_per_thousand": 0.481, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-14", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 824.0, + "total_tests": 311121.0, + "total_tests_per_thousand": 64.518, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 2325.0, + "new_tests_smoothed_per_thousand": 0.482, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-15", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1527.0, + "total_tests": 312648.0, + "total_tests_per_thousand": 64.835, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 2392.0, + "new_tests_smoothed_per_thousand": 0.496, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-16", + "total_cases": 1156.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.723, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3603.0, + "total_tests": 316251.0, + "total_tests_per_thousand": 65.582, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 2531.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 8858.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-17", + "total_cases": 1156.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.723, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4936.0, + "total_tests": 321187.0, + "total_tests_per_thousand": 66.605, + "new_tests_per_thousand": 1.024, + "new_tests_smoothed": 2758.0, + "new_tests_smoothed_per_thousand": 0.572, + "tests_per_case": 9653.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-18", + "total_cases": 1157.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.93, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6273.0, + "total_tests": 327460.0, + "total_tests_per_thousand": 67.906, + "new_tests_per_thousand": 1.301, + "new_tests_smoothed": 3233.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 7543.6669999999995, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-19", + "total_cases": 1157.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7707.0, + "total_tests": 335167.0, + "total_tests_per_thousand": 69.505, + "new_tests_per_thousand": 1.598, + "new_tests_smoothed": 3908.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 9118.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-20", + "total_cases": 1159.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.345, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5950.0, + "total_tests": 341117.0, + "total_tests_per_thousand": 70.738, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 4403.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 6164.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-21", + "total_cases": 1161.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.76, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3402.0, + "total_tests": 344519.0, + "total_tests_per_thousand": 71.444, + "new_tests_per_thousand": 0.705, + "new_tests_smoothed": 4771.0, + "new_tests_smoothed_per_thousand": 0.989, + "tests_per_case": 4771.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-22", + "total_cases": 1163.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.175, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4303.0, + "total_tests": 348822.0, + "total_tests_per_thousand": 72.336, + "new_tests_per_thousand": 0.892, + "new_tests_smoothed": 5168.0, + "new_tests_smoothed_per_thousand": 1.072, + "tests_per_case": 4019.5559999999996, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-23", + "total_cases": 1165.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.589, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9174.0, + "total_tests": 357996.0, + "total_tests_per_thousand": 74.239, + "new_tests_per_thousand": 1.902, + "new_tests_smoothed": 5964.0, + "new_tests_smoothed_per_thousand": 1.237, + "tests_per_case": 4638.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-24", + "total_cases": 1166.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 241.797, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10436.0, + "total_tests": 368432.0, + "total_tests_per_thousand": 76.403, + "new_tests_per_thousand": 2.164, + "new_tests_smoothed": 6749.0, + "new_tests_smoothed_per_thousand": 1.4, + "tests_per_case": 4724.3, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-25", + "total_cases": 1169.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.419, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9825.0, + "total_tests": 378257.0, + "total_tests_per_thousand": 78.44, + "new_tests_per_thousand": 2.037, + "new_tests_smoothed": 7257.0, + "new_tests_smoothed_per_thousand": 1.505, + "tests_per_case": 4233.25, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-26", + "total_cases": 1170.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 242.626, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9178.0, + "total_tests": 387435.0, + "total_tests_per_thousand": 80.343, + "new_tests_per_thousand": 1.903, + "new_tests_smoothed": 7467.0, + "new_tests_smoothed_per_thousand": 1.548, + "tests_per_case": 4020.692, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-27", + "total_cases": 1172.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.041, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5321.0, + "total_tests": 392756.0, + "total_tests_per_thousand": 81.447, + "new_tests_per_thousand": 1.103, + "new_tests_smoothed": 7377.0, + "new_tests_smoothed_per_thousand": 1.53, + "tests_per_case": 3972.2309999999998, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-28", + "total_cases": 1176.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.87, + "new_cases_per_million": 0.829, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2754.0, + "total_tests": 395510.0, + "total_tests_per_thousand": 82.018, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 7284.0, + "new_tests_smoothed_per_thousand": 1.511, + "tests_per_case": 3399.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-29", + "total_cases": 1178.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.285, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1960.0, + "total_tests": 397470.0, + "total_tests_per_thousand": 82.424, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 6950.0, + "new_tests_smoothed_per_thousand": 1.441, + "tests_per_case": 3243.333, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-06-30", + "total_cases": 1178.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4530.0, + "total_tests": 402000.0, + "total_tests_per_thousand": 83.364, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 6286.0, + "new_tests_smoothed_per_thousand": 1.304, + "tests_per_case": 3384.7690000000002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-01", + "total_cases": 1178.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3329.0, + "total_tests": 405329.0, + "total_tests_per_thousand": 84.054, + "new_tests_per_thousand": 0.69, + "new_tests_smoothed": 5271.0, + "new_tests_smoothed_per_thousand": 1.093, + "tests_per_case": 3074.75, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-02", + "total_cases": 1180.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.7, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3703.0, + "total_tests": 409032.0, + "total_tests_per_thousand": 84.822, + "new_tests_per_thousand": 0.768, + "new_tests_smoothed": 4396.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 2797.455, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-03", + "total_cases": 1180.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.7, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2900.0, + "total_tests": 411932.0, + "total_tests_per_thousand": 85.423, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 3500.0, + "new_tests_smoothed_per_thousand": 0.726, + "tests_per_case": 2450.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-04", + "total_cases": 1180.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.7, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2294.0, + "total_tests": 414226.0, + "total_tests_per_thousand": 85.899, + "new_tests_per_thousand": 0.476, + "new_tests_smoothed": 3067.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 2683.625, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-05", + "total_cases": 1183.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.322, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1057.0, + "total_tests": 415283.0, + "total_tests_per_thousand": 86.118, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 2825.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 2825.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-06", + "total_cases": 1183.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.322, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1641.0, + "total_tests": 416924.0, + "total_tests_per_thousand": 86.459, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 2779.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 3890.6, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-07", + "total_cases": 1186.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.944, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2131.0, + "total_tests": 419055.0, + "total_tests_per_thousand": 86.901, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 2436.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 2131.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-08", + "total_cases": 1187.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.152, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3089.0, + "total_tests": 422144.0, + "total_tests_per_thousand": 87.541, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 1868.2220000000002, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-09", + "total_cases": 1190.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.774, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2575.0, + "total_tests": 424719.0, + "total_tests_per_thousand": 88.075, + "new_tests_per_thousand": 0.534, + "new_tests_smoothed": 2241.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 1568.7, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-10", + "total_cases": 1192.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.188, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.355, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2057.0, + "total_tests": 426776.0, + "total_tests_per_thousand": 88.502, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 2121.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 1237.25, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-11", + "total_cases": 1193.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.396, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.385, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1824.0, + "total_tests": 428600.0, + "total_tests_per_thousand": 88.88, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 2053.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 1105.462, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-12", + "total_cases": 1194.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.603, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1043.0, + "total_tests": 429643.0, + "total_tests_per_thousand": 89.096, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 2051.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 1305.182, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-13", + "total_cases": 1194.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.603, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1620.0, + "total_tests": 431263.0, + "total_tests_per_thousand": 89.432, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 2048.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 1303.2730000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-14", + "total_cases": 1195.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.811, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2061.0, + "total_tests": 433324.0, + "total_tests_per_thousand": 89.86, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 1585.111, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-15", + "total_cases": 1197.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.225, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2899.0, + "total_tests": 436223.0, + "total_tests_per_thousand": 90.461, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 2011.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 1407.7, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-16", + "total_cases": 1198.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.433, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2497.0, + "total_tests": 438720.0, + "total_tests_per_thousand": 90.979, + "new_tests_per_thousand": 0.518, + "new_tests_smoothed": 2000.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 1750.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-17", + "total_cases": 1199.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.64, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2403.0, + "total_tests": 441123.0, + "total_tests_per_thousand": 91.477, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 2050.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 2050.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-18", + "total_cases": 1200.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.847, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1365.0, + "total_tests": 442488.0, + "total_tests_per_thousand": 91.76, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 1984.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 1984.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-19", + "total_cases": 1203.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.469, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 681.0, + "total_tests": 443169.0, + "total_tests_per_thousand": 91.901, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 1932.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 1502.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-20", + "total_cases": 1204.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.677, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1007.0, + "total_tests": 444176.0, + "total_tests_per_thousand": 92.11, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 1845.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 1291.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-21", + "total_cases": 1205.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.884, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2191.0, + "total_tests": 446367.0, + "total_tests_per_thousand": 92.564, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 1863.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 1304.1, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-22", + "total_cases": 1205.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2419.0, + "total_tests": 448786.0, + "total_tests_per_thousand": 93.066, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 1795.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 1570.625, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-23", + "total_cases": 1205.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2830.0, + "total_tests": 451616.0, + "total_tests_per_thousand": 93.653, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 1842.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-24", + "total_cases": 1206.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.092, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2307.0, + "total_tests": 453923.0, + "total_tests_per_thousand": 94.131, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 1829.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 1829.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-25", + "total_cases": 1206.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1754.0, + "total_tests": 455677.0, + "total_tests_per_thousand": 94.495, + "new_tests_per_thousand": 0.364, + "new_tests_smoothed": 1884.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 2198.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-26", + "total_cases": 1206.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 550.0, + "total_tests": 456227.0, + "total_tests_per_thousand": 94.609, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 1865.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 4351.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-27", + "total_cases": 1206.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1107.0, + "total_tests": 457334.0, + "total_tests_per_thousand": 94.839, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 1880.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 6580.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-28", + "total_cases": 1207.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.299, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2733.0, + "total_tests": 460067.0, + "total_tests_per_thousand": 95.405, + "new_tests_per_thousand": 0.567, + "new_tests_smoothed": 1957.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 6849.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-29", + "total_cases": 1209.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.714, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2523.0, + "total_tests": 462590.0, + "total_tests_per_thousand": 95.929, + "new_tests_per_thousand": 0.523, + "new_tests_smoothed": 1972.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 3451.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-30", + "total_cases": 1210.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.921, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.148, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2476.0, + "total_tests": 465066.0, + "total_tests_per_thousand": 96.442, + "new_tests_per_thousand": 0.513, + "new_tests_smoothed": 1921.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 2689.4, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-31", + "total_cases": 1210.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3002.0, + "total_tests": 468068.0, + "total_tests_per_thousand": 97.065, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 2021.0, + "new_tests_smoothed_per_thousand": 0.419, + "tests_per_case": 3536.75, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-01", + "total_cases": 1212.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.336, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2401.0, + "total_tests": 470469.0, + "total_tests_per_thousand": 97.562, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 2113.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 2465.167, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-02", + "total_cases": 1215.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.958, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1692.0, + "total_tests": 472161.0, + "total_tests_per_thousand": 97.913, + "new_tests_per_thousand": 0.351, + "new_tests_smoothed": 2276.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 1770.2220000000002, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-03", + "total_cases": 1217.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.373, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1608.0, + "total_tests": 473769.0, + "total_tests_per_thousand": 98.247, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 2348.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 1494.182, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-04", + "total_cases": 1217.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4140.0, + "total_tests": 477909.0, + "total_tests_per_thousand": 99.105, + "new_tests_per_thousand": 0.859, + "new_tests_smoothed": 2549.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 1784.3, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-05", + "total_cases": 1219.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5020.0, + "total_tests": 482929.0, + "total_tests_per_thousand": 100.146, + "new_tests_per_thousand": 1.041, + "new_tests_smoothed": 2906.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 2034.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-06", + "total_cases": 1219.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4014.0, + "total_tests": 486943.0, + "total_tests_per_thousand": 100.979, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 3125.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 2430.556, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-07", + "total_cases": 1219.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3289.0, + "total_tests": 490232.0, + "total_tests_per_thousand": 101.661, + "new_tests_per_thousand": 0.682, + "new_tests_smoothed": 3166.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 2462.444, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-08", + "total_cases": 1219.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4249.0, + "total_tests": 494481.0, + "total_tests_per_thousand": 102.542, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 3430.0, + "new_tests_smoothed_per_thousand": 0.711, + "tests_per_case": 3430.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-09", + "total_cases": 1219.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2125.0, + "total_tests": 496606.0, + "total_tests_per_thousand": 102.983, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 3492.0, + "new_tests_smoothed_per_thousand": 0.724, + "tests_per_case": 6111.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-10", + "total_cases": 1219.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.787, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1874.0, + "total_tests": 498480.0, + "total_tests_per_thousand": 103.371, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 3530.0, + "new_tests_smoothed_per_thousand": 0.732, + "tests_per_case": 12355.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-11", + "total_cases": 1220.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.995, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4225.0, + "total_tests": 502705.0, + "total_tests_per_thousand": 104.247, + "new_tests_per_thousand": 0.876, + "new_tests_smoothed": 3542.0, + "new_tests_smoothed_per_thousand": 0.735, + "tests_per_case": 8264.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-08-12", + "total_cases": 1220.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6006.0, + "total_tests": 508711.0, + "total_tests_per_thousand": 105.493, + "new_tests_per_thousand": 1.245, + "new_tests_smoothed": 3683.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 25781.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-13", + "total_cases": 1238.0, + "new_cases": 18.0, + "new_cases_smoothed": 2.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 256.728, + "new_cases_per_million": 3.733, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15703.0, + "total_tests": 524414.0, + "total_tests_per_thousand": 108.749, + "new_tests_per_thousand": 3.256, + "new_tests_smoothed": 5353.0, + "new_tests_smoothed_per_thousand": 1.11, + "tests_per_case": 1972.158, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-14", + "total_cases": 1251.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 259.423, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 0.948, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23846.0, + "total_tests": 548260.0, + "total_tests_per_thousand": 113.694, + "new_tests_per_thousand": 4.945, + "new_tests_smoothed": 8290.0, + "new_tests_smoothed_per_thousand": 1.719, + "tests_per_case": 1813.4379999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-15", + "total_cases": 1258.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.875, + "new_cases_per_million": 1.452, + "new_cases_smoothed_per_million": 1.155, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23682.0, + "total_tests": 571942.0, + "total_tests_per_thousand": 118.605, + "new_tests_per_thousand": 4.911, + "new_tests_smoothed": 11066.0, + "new_tests_smoothed_per_thousand": 2.295, + "tests_per_case": 1986.205, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-16", + "total_cases": 1271.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.571, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 1.54, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26014.0, + "total_tests": 597956.0, + "total_tests_per_thousand": 124.0, + "new_tests_per_thousand": 5.395, + "new_tests_smoothed": 14479.0, + "new_tests_smoothed_per_thousand": 3.003, + "tests_per_case": 1949.096, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-17", + "total_cases": 1280.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 265.437, + "new_cases_per_million": 1.866, + "new_cases_smoothed_per_million": 1.807, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18421.0, + "total_tests": 616377.0, + "total_tests_per_thousand": 127.82, + "new_tests_per_thousand": 3.82, + "new_tests_smoothed": 16842.0, + "new_tests_smoothed_per_thousand": 3.493, + "tests_per_case": 1932.6889999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-18", + "total_cases": 1293.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 268.133, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 2.163, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23038.0, + "total_tests": 639415.0, + "total_tests_per_thousand": 132.597, + "new_tests_per_thousand": 4.777, + "new_tests_smoothed": 19530.0, + "new_tests_smoothed_per_thousand": 4.05, + "tests_per_case": 1872.74, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-19", + "total_cases": 1299.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.377, + "new_cases_per_million": 1.244, + "new_cases_smoothed_per_million": 2.34, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 18091.0, + "total_tests": 657506.0, + "total_tests_per_thousand": 136.349, + "new_tests_per_thousand": 3.752, + "new_tests_smoothed": 21256.0, + "new_tests_smoothed_per_thousand": 4.408, + "tests_per_case": 1883.443, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-20", + "total_cases": 1304.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 270.414, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.955, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15714.0, + "total_tests": 673220.0, + "total_tests_per_thousand": 139.608, + "new_tests_per_thousand": 3.259, + "new_tests_smoothed": 21258.0, + "new_tests_smoothed_per_thousand": 4.408, + "tests_per_case": 2254.636, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-21", + "total_cases": 1315.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 272.695, + "new_cases_per_million": 2.281, + "new_cases_smoothed_per_million": 1.896, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12256.0, + "total_tests": 685476.0, + "total_tests_per_thousand": 142.149, + "new_tests_per_thousand": 2.542, + "new_tests_smoothed": 19602.0, + "new_tests_smoothed_per_thousand": 4.065, + "tests_per_case": 2143.969, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-22", + "total_cases": 1321.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 273.939, + "new_cases_per_million": 1.244, + "new_cases_smoothed_per_million": 1.866, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7005.0, + "total_tests": 692481.0, + "total_tests_per_thousand": 143.602, + "new_tests_per_thousand": 1.453, + "new_tests_smoothed": 17220.0, + "new_tests_smoothed_per_thousand": 3.571, + "tests_per_case": 1913.3329999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-08-23", + "total_cases": 1324.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 274.562, + "new_cases_per_million": 0.622, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4589.0, + "total_tests": 697070.0, + "total_tests_per_thousand": 144.553, + "new_tests_per_thousand": 0.952, + "new_tests_smoothed": 14159.0, + "new_tests_smoothed_per_thousand": 2.936, + "tests_per_case": 1870.057, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-24", + "total_cases": 1332.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 276.221, + "new_cases_per_million": 1.659, + "new_cases_smoothed_per_million": 1.54, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4434.0, + "total_tests": 701504.0, + "total_tests_per_thousand": 145.473, + "new_tests_per_thousand": 0.919, + "new_tests_smoothed": 12161.0, + "new_tests_smoothed_per_thousand": 2.522, + "tests_per_case": 1637.058, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-25", + "total_cases": 1339.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.571, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.672, + "new_cases_per_million": 1.452, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8559.0, + "total_tests": 710063.0, + "total_tests_per_thousand": 147.248, + "new_tests_per_thousand": 1.775, + "new_tests_smoothed": 10093.0, + "new_tests_smoothed_per_thousand": 2.093, + "tests_per_case": 1535.891, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-26", + "total_cases": 1344.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.709, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.333, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9257.0, + "total_tests": 719320.0, + "total_tests_per_thousand": 149.167, + "new_tests_per_thousand": 1.92, + "new_tests_smoothed": 8831.0, + "new_tests_smoothed_per_thousand": 1.831, + "tests_per_case": 1373.711, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-27", + "total_cases": 1351.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.161, + "new_cases_per_million": 1.452, + "new_cases_smoothed_per_million": 1.392, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11010.0, + "total_tests": 730330.0, + "total_tests_per_thousand": 151.451, + "new_tests_per_thousand": 2.283, + "new_tests_smoothed": 8159.0, + "new_tests_smoothed_per_thousand": 1.692, + "tests_per_case": 1215.17, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-28", + "total_cases": 1363.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.649, + "new_cases_per_million": 2.488, + "new_cases_smoothed_per_million": 1.422, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9991.0, + "total_tests": 740321.0, + "total_tests_per_thousand": 153.522, + "new_tests_per_thousand": 2.072, + "new_tests_smoothed": 7835.0, + "new_tests_smoothed_per_thousand": 1.625, + "tests_per_case": 1142.604, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-29", + "total_cases": 1376.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.345, + "new_cases_per_million": 2.696, + "new_cases_smoothed_per_million": 1.629, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10487.0, + "total_tests": 750808.0, + "total_tests_per_thousand": 155.697, + "new_tests_per_thousand": 2.175, + "new_tests_smoothed": 8332.0, + "new_tests_smoothed_per_thousand": 1.728, + "tests_per_case": 1060.4360000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-30", + "total_cases": 1378.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.76, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 1.6, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7219.0, + "total_tests": 758027.0, + "total_tests_per_thousand": 157.194, + "new_tests_per_thousand": 1.497, + "new_tests_smoothed": 8708.0, + "new_tests_smoothed_per_thousand": 1.806, + "tests_per_case": 1128.815, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-08-31", + "total_cases": 1387.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.626, + "new_cases_per_million": 1.866, + "new_cases_smoothed_per_million": 1.629, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8599.0, + "total_tests": 766626.0, + "total_tests_per_thousand": 158.977, + "new_tests_per_thousand": 1.783, + "new_tests_smoothed": 9303.0, + "new_tests_smoothed_per_thousand": 1.929, + "tests_per_case": 1184.018, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 40.28 + }, + { + "date": "2020-09-01", + "total_cases": 1401.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.529, + "new_cases_per_million": 2.903, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10934.0, + "total_tests": 777560.0, + "total_tests_per_thousand": 161.245, + "new_tests_per_thousand": 2.267, + "new_tests_smoothed": 9642.0, + "new_tests_smoothed_per_thousand": 1.999, + "tests_per_case": 1088.613, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 1406.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.566, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10521.0, + "total_tests": 788081.0, + "total_tests_per_thousand": 163.427, + "new_tests_per_thousand": 2.182, + "new_tests_smoothed": 9823.0, + "new_tests_smoothed_per_thousand": 2.037, + "tests_per_case": 1109.048, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 1408.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.981, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 1.689, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9909.0, + "total_tests": 797990.0, + "total_tests_per_thousand": 165.481, + "new_tests_per_thousand": 2.055, + "new_tests_smoothed": 9666.0, + "new_tests_smoothed_per_thousand": 2.004, + "tests_per_case": 1187.053, + "positive_rate": 0.001, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 1413.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 293.018, + "new_cases_per_million": 1.037, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 1413.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 293.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.096, + "total_deaths_per_million": 4.562, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "NIC": { + "continent": "North America", + "location": "Nicaragua", + "population": 6624554.0, + "population_density": 51.667, + "median_age": 27.3, + "aged_65_older": 5.445, + "aged_70_older": 3.519, + "gdp_per_capita": 5321.444, + "extreme_poverty": 3.2, + "cardiovasc_death_rate": 137.016, + "diabetes_prevalence": 11.47, + "hospital_beds_per_thousand": 0.9, + "life_expectancy": 74.48, + "data": [ + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.151, + "new_cases_per_million": 0.151, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.151, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.151, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-03-29", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.604, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-03-30", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-03-31", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-04-01", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 8.33 + }, + { + "date": "2020-04-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-05", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-06", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-07", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.906, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-09", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-10", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-11", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.057, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-12", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-13", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-14", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-04-15", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-16", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-17", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-18", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-19", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-20", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.151, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-04-21", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.302, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-22", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.51, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-23", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.51, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-24", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.51, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-25", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.66, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-04-26", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.811, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-04-27", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.962, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-04-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-04-30", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-05-01", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-05-02", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-05-03", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 16.67 + }, + { + "date": "2020-05-04", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.113, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-05-05", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.264, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-05-06", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.151, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043, + "stringency_index": 16.67 + }, + { + "date": "2020-05-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 11.11 + }, + { + "date": "2020-05-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 11.11 + }, + { + "date": "2020-05-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 11.11 + }, + { + "date": "2020-05-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 11.11 + }, + { + "date": "2020-05-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-05-12", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.415, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-05-13", + "total_cases": 25.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 1.359, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.453, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-15", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-16", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-17", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-18", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-19", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 11.11 + }, + { + "date": "2020-05-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-05-21", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-05-22", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-05-23", + "total_cases": 279.0, + "new_cases": 254.0, + "new_cases_smoothed": 36.286, + "total_deaths": 17.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.116, + "new_cases_per_million": 38.342, + "new_cases_smoothed_per_million": 5.477, + "total_deaths_per_million": 2.566, + "new_deaths_per_million": 1.359, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-05-24", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.477, + "total_deaths_per_million": 2.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-05-25", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.477, + "total_deaths_per_million": 2.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-05-26", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.477, + "total_deaths_per_million": 2.566, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-05-27", + "total_cases": 759.0, + "new_cases": 480.0, + "new_cases_smoothed": 104.857, + "total_deaths": 35.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 114.574, + "new_cases_per_million": 72.458, + "new_cases_smoothed_per_million": 15.829, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 2.717, + "new_deaths_smoothed_per_million": 0.582, + "stringency_index": 11.11 + }, + { + "date": "2020-05-28", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.829, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.582, + "stringency_index": 11.11 + }, + { + "date": "2020-05-29", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.829, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.582, + "stringency_index": 11.11 + }, + { + "date": "2020-05-30", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.351, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 11.11 + }, + { + "date": "2020-05-31", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.351, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 11.11 + }, + { + "date": "2020-06-01", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.351, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 11.11 + }, + { + "date": "2020-06-02", + "total_cases": 759.0, + "new_cases": 0.0, + "new_cases_smoothed": 68.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 114.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.351, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 11.11 + }, + { + "date": "2020-06-03", + "total_cases": 1118.0, + "new_cases": 359.0, + "new_cases_smoothed": 51.286, + "total_deaths": 46.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 168.766, + "new_cases_per_million": 54.192, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 1.66, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-04", + "total_cases": 1118.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 168.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-05", + "total_cases": 1118.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 168.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-06", + "total_cases": 1118.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 168.766, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-07", + "total_cases": 1309.0, + "new_cases": 191.0, + "new_cases_smoothed": 78.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 197.598, + "new_cases_per_million": 28.832, + "new_cases_smoothed_per_million": 11.861, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-08", + "total_cases": 1309.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 197.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.861, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-09", + "total_cases": 1309.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.571, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 197.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.861, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "stringency_index": 11.11 + }, + { + "date": "2020-06-10", + "total_cases": 1309.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 197.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.119, + "total_deaths_per_million": 6.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-06-11", + "total_cases": 1464.0, + "new_cases": 155.0, + "new_cases_smoothed": 49.429, + "total_deaths": 55.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 220.996, + "new_cases_per_million": 23.398, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 1.359, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-12", + "total_cases": 1464.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 220.996, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-13", + "total_cases": 1655.0, + "new_cases": 191.0, + "new_cases_smoothed": 76.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 249.828, + "new_cases_per_million": 28.832, + "new_cases_smoothed_per_million": 11.58, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-14", + "total_cases": 1655.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 249.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-15", + "total_cases": 1655.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 249.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-16", + "total_cases": 1655.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 249.828, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.461, + "total_deaths_per_million": 8.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-17", + "total_cases": 1823.0, + "new_cases": 168.0, + "new_cases_smoothed": 73.429, + "total_deaths": 64.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 275.188, + "new_cases_per_million": 25.36, + "new_cases_smoothed_per_million": 11.084, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 1.359, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 11.11 + }, + { + "date": "2020-06-18", + "total_cases": 2014.0, + "new_cases": 191.0, + "new_cases_smoothed": 78.571, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 28.832, + "new_cases_smoothed_per_million": 11.861, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-19", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.571, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.861, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-20", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-21", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-22", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-23", + "total_cases": 2014.0, + "new_cases": 0.0, + "new_cases_smoothed": 51.286, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 304.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.742, + "total_deaths_per_million": 9.661, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-06-24", + "total_cases": 2170.0, + "new_cases": 156.0, + "new_cases_smoothed": 49.571, + "total_deaths": 74.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 23.549, + "new_cases_smoothed_per_million": 7.483, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 1.51, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-25", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-26", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-27", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-28", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-29", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-06-30", + "total_cases": 2170.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 327.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.364, + "total_deaths_per_million": 11.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 11.11 + }, + { + "date": "2020-07-01", + "total_cases": 2519.0, + "new_cases": 349.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 52.683, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 1.359, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-02", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-03", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-04", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-05", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-06", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-07", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.857, + "total_deaths": 83.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 380.252, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 12.529, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 11.11 + }, + { + "date": "2020-07-08", + "total_cases": 2846.0, + "new_cases": 327.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 49.362, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 1.208, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-09", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-10", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-11", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-12", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-13", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 11.11 + }, + { + "date": "2020-07-14", + "total_cases": 2846.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 429.614, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.052, + "total_deaths_per_million": 13.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-15", + "total_cases": 3147.0, + "new_cases": 301.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 45.437, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 1.208, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-16", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-17", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-18", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-19", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-20", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-21", + "total_cases": 3147.0, + "new_cases": 0.0, + "new_cases_smoothed": 43.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 475.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.491, + "total_deaths_per_million": 14.944, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-22", + "total_cases": 3439.0, + "new_cases": 292.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 44.078, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 1.359, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-23", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-24", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-25", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-26", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-27", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-28", + "total_cases": 3439.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 519.129, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 16.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 16.67 + }, + { + "date": "2020-07-29", + "total_cases": 3672.0, + "new_cases": 233.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 35.172, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 1.208, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-30", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-07-31", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-08-01", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-08-02", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-08-03", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-08-04", + "total_cases": 3672.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.286, + "total_deaths": 116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 554.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.025, + "total_deaths_per_million": 17.511, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.173, + "stringency_index": 16.67 + }, + { + "date": "2020-08-05", + "total_cases": 3902.0, + "new_cases": 230.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 34.719, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 1.057, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-06", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-07", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-08", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-09", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-10", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-11", + "total_cases": 3902.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.857, + "total_deaths": 123.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 589.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.96, + "total_deaths_per_million": 18.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 16.67 + }, + { + "date": "2020-08-12", + "total_cases": 4115.0, + "new_cases": 213.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 32.153, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.755, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-13", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-14", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-15", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-16", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-17", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-18", + "total_cases": 4115.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 621.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.593, + "total_deaths_per_million": 19.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-19", + "total_cases": 4311.0, + "new_cases": 196.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 29.587, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.755, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-20", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-21", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-22", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-23", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-24", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-25", + "total_cases": 4311.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.0, + "total_deaths": 133.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 650.761, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.227, + "total_deaths_per_million": 20.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 16.67 + }, + { + "date": "2020-08-26", + "total_cases": 4494.0, + "new_cases": 183.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 27.625, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 16.67 + }, + { + "date": "2020-08-27", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 16.67 + }, + { + "date": "2020-08-28", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 11.11 + }, + { + "date": "2020-08-29", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 11.11 + }, + { + "date": "2020-08-30", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 11.11 + }, + { + "date": "2020-08-31", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 11.11 + }, + { + "date": "2020-09-01", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.946, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 11.11 + }, + { + "date": "2020-09-02", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-09-03", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-09-04", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-09-05", + "total_cases": 4494.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 137.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 678.385, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 20.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "NER": { + "continent": "Africa", + "location": "Niger", + "population": 24206636.0, + "population_density": 16.955, + "median_age": 15.1, + "aged_65_older": 2.553, + "aged_70_older": 1.378, + "gdp_per_capita": 926.0, + "extreme_poverty": 44.5, + "cardiovasc_death_rate": 238.339, + "diabetes_prevalence": 2.42, + "female_smokers": 0.1, + "male_smokers": 15.4, + "handwashing_facilities": 8.978, + "hospital_beds_per_thousand": 0.3, + "life_expectancy": 62.42, + "data": [ + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.041, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.083, + "new_cases_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 7.0, + "new_cases": 5.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.289, + "new_cases_per_million": 0.207, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.041, + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 7.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.289, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.413, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 52.78 + }, + { + "date": "2020-03-28", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 61.11 + }, + { + "date": "2020-03-29", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 61.11 + }, + { + "date": "2020-03-30", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.413, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 61.11 + }, + { + "date": "2020-03-31", + "total_cases": 20.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.826, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.124, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 61.11 + }, + { + "date": "2020-04-01", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.826, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.124, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 61.11 + }, + { + "date": "2020-04-02", + "total_cases": 74.0, + "new_cases": 54.0, + "new_cases_smoothed": 9.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3.057, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 0.395, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-04-03", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.378, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-04-04", + "total_cases": 98.0, + "new_cases": 24.0, + "new_cases_smoothed": 12.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.048, + "new_cases_per_million": 0.991, + "new_cases_smoothed_per_million": 0.519, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-04-05", + "total_cases": 120.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.957, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 0.649, + "total_deaths_per_million": 0.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-04-06", + "total_cases": 184.0, + "new_cases": 64.0, + "new_cases_smoothed": 24.857, + "total_deaths": 10.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7.601, + "new_cases_per_million": 2.644, + "new_cases_smoothed_per_million": 1.027, + "total_deaths_per_million": 0.413, + "new_deaths_per_million": 0.207, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-04-07", + "total_cases": 253.0, + "new_cases": 69.0, + "new_cases_smoothed": 33.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.452, + "new_cases_per_million": 2.85, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 0.413, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-04-08", + "total_cases": 278.0, + "new_cases": 25.0, + "new_cases_smoothed": 36.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 11.484, + "new_cases_per_million": 1.033, + "new_cases_smoothed_per_million": 1.523, + "total_deaths_per_million": 0.454, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-04-09", + "total_cases": 342.0, + "new_cases": 64.0, + "new_cases_smoothed": 38.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 14.128, + "new_cases_per_million": 2.644, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 0.454, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-10", + "total_cases": 410.0, + "new_cases": 68.0, + "new_cases_smoothed": 48.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 16.938, + "new_cases_per_million": 2.809, + "new_cases_smoothed_per_million": 1.983, + "total_deaths_per_million": 0.454, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-11", + "total_cases": 438.0, + "new_cases": 28.0, + "new_cases_smoothed": 48.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 18.094, + "new_cases_per_million": 1.157, + "new_cases_smoothed_per_million": 2.007, + "total_deaths_per_million": 0.454, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-12", + "total_cases": 491.0, + "new_cases": 53.0, + "new_cases_smoothed": 53.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 20.284, + "new_cases_per_million": 2.189, + "new_cases_smoothed_per_million": 2.189, + "total_deaths_per_million": 0.454, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-13", + "total_cases": 529.0, + "new_cases": 38.0, + "new_cases_smoothed": 49.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.854, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 2.036, + "total_deaths_per_million": 0.496, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 61.11 + }, + { + "date": "2020-04-14", + "total_cases": 548.0, + "new_cases": 19.0, + "new_cases_smoothed": 42.143, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.638, + "new_cases_per_million": 0.785, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 0.537, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 61.11 + }, + { + "date": "2020-04-15", + "total_cases": 570.0, + "new_cases": 22.0, + "new_cases_smoothed": 41.714, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.547, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 1.723, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 61.11 + }, + { + "date": "2020-04-16", + "total_cases": 584.0, + "new_cases": 14.0, + "new_cases_smoothed": 34.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.126, + "new_cases_per_million": 0.578, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 0.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 61.11 + }, + { + "date": "2020-04-17", + "total_cases": 609.0, + "new_cases": 25.0, + "new_cases_smoothed": 28.429, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 25.158, + "new_cases_per_million": 1.033, + "new_cases_smoothed_per_million": 1.174, + "total_deaths_per_million": 0.62, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-04-18", + "total_cases": 627.0, + "new_cases": 18.0, + "new_cases_smoothed": 27.0, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 25.902, + "new_cases_per_million": 0.744, + "new_cases_smoothed_per_million": 1.115, + "total_deaths_per_million": 0.744, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-04-19", + "total_cases": 639.0, + "new_cases": 12.0, + "new_cases_smoothed": 21.143, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 26.398, + "new_cases_per_million": 0.496, + "new_cases_smoothed_per_million": 0.873, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-04-20", + "total_cases": 648.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.0, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 26.77, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 0.826, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-04-21", + "total_cases": 655.0, + "new_cases": 7.0, + "new_cases_smoothed": 15.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 27.059, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.631, + "total_deaths_per_million": 0.826, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-04-22", + "total_cases": 655.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 27.059, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.502, + "total_deaths_per_million": 0.826, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-23", + "total_cases": 662.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.143, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.348, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.46, + "total_deaths_per_million": 0.909, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-04-24", + "total_cases": 671.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.72, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 0.991, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-04-25", + "total_cases": 681.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 28.133, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.991, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-04-26", + "total_cases": 684.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 27.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 28.257, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.266, + "total_deaths_per_million": 1.115, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-04-27", + "total_cases": 696.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.857, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.752, + "new_cases_per_million": 0.496, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 1.198, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-04-28", + "total_cases": 701.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.959, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 1.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-04-29", + "total_cases": 709.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.714, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 29.289, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 1.281, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-04-30", + "total_cases": 713.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 29.455, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 1.322, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 61.11 + }, + { + "date": "2020-05-01", + "total_cases": 719.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 29.703, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 1.322, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-05-02", + "total_cases": 728.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.714, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 30.074, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.277, + "total_deaths_per_million": 1.363, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-05-03", + "total_cases": 736.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.429, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 30.405, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 1.446, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-05-04", + "total_cases": 750.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.714, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 30.983, + "new_cases_per_million": 0.578, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 1.487, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-05-05", + "total_cases": 755.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.714, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 31.19, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 1.529, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 61.11 + }, + { + "date": "2020-05-06", + "total_cases": 763.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.714, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 31.52, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-05-07", + "total_cases": 770.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 31.809, + "new_cases_per_million": 0.289, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 61.11 + }, + { + "date": "2020-05-08", + "total_cases": 781.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.857, + "total_deaths": 42.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 32.264, + "new_cases_per_million": 0.454, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 1.735, + "new_deaths_per_million": 0.165, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 61.11 + }, + { + "date": "2020-05-09", + "total_cases": 795.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.571, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 32.842, + "new_cases_per_million": 0.578, + "new_cases_smoothed_per_million": 0.395, + "total_deaths_per_million": 1.818, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-05-10", + "total_cases": 815.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.286, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 33.668, + "new_cases_per_million": 0.826, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 1.859, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 61.11 + }, + { + "date": "2020-05-11", + "total_cases": 821.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.143, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 33.916, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 1.9, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 61.11 + }, + { + "date": "2020-05-12", + "total_cases": 832.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 34.371, + "new_cases_per_million": 0.454, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 1.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 61.11 + }, + { + "date": "2020-05-13", + "total_cases": 854.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.0, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 35.28, + "new_cases_per_million": 0.909, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 1.942, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 33.33 + }, + { + "date": "2020-05-14", + "total_cases": 860.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.857, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 35.527, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 2.024, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 33.33 + }, + { + "date": "2020-05-15", + "total_cases": 876.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.571, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 36.188, + "new_cases_per_million": 0.661, + "new_cases_smoothed_per_million": 0.561, + "total_deaths_per_million": 2.066, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 33.33 + }, + { + "date": "2020-05-16", + "total_cases": 885.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 36.56, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.531, + "total_deaths_per_million": 2.107, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 33.33 + }, + { + "date": "2020-05-17", + "total_cases": 889.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 36.725, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.437, + "total_deaths_per_million": 2.107, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 33.33 + }, + { + "date": "2020-05-18", + "total_cases": 904.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.857, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 37.345, + "new_cases_per_million": 0.62, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 2.231, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 33.33 + }, + { + "date": "2020-05-19", + "total_cases": 909.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.0, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 37.552, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 2.272, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 33.33 + }, + { + "date": "2020-05-20", + "total_cases": 914.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 37.758, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 2.272, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 33.33 + }, + { + "date": "2020-05-21", + "total_cases": 920.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.571, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 38.006, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 2.396, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 33.33 + }, + { + "date": "2020-05-22", + "total_cases": 924.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38.171, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 2.479, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 33.33 + }, + { + "date": "2020-05-23", + "total_cases": 937.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 38.708, + "new_cases_per_million": 0.537, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 2.479, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 33.33 + }, + { + "date": "2020-05-24", + "total_cases": 943.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.714, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38.956, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 2.52, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 33.33 + }, + { + "date": "2020-05-25", + "total_cases": 945.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 39.039, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 2.52, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 33.33 + }, + { + "date": "2020-05-26", + "total_cases": 951.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 39.287, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 2.561, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 33.33 + }, + { + "date": "2020-05-27", + "total_cases": 952.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 39.328, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 2.603, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 33.33 + }, + { + "date": "2020-05-28", + "total_cases": 955.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.0, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 39.452, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 2.644, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 33.33 + }, + { + "date": "2020-05-29", + "total_cases": 955.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 39.452, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 2.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 33.33 + }, + { + "date": "2020-05-30", + "total_cases": 955.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 39.452, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 2.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 33.33 + }, + { + "date": "2020-05-31", + "total_cases": 956.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.493, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 2.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 33.33 + }, + { + "date": "2020-06-01", + "total_cases": 958.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.576, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 2.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 22.22 + }, + { + "date": "2020-06-02", + "total_cases": 958.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 65.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 39.576, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 22.22 + }, + { + "date": "2020-06-03", + "total_cases": 960.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.659, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 22.22 + }, + { + "date": "2020-06-04", + "total_cases": 961.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.7, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-05", + "total_cases": 963.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.782, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-06", + "total_cases": 966.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.906, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-07", + "total_cases": 970.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.072, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-08", + "total_cases": 973.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.196, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-09", + "total_cases": 973.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-10", + "total_cases": 974.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.237, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-11", + "total_cases": 974.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-12", + "total_cases": 974.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-13", + "total_cases": 978.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.402, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 2.685, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-14", + "total_cases": 980.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.485, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 2.727, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-15", + "total_cases": 980.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.727, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-16", + "total_cases": 980.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.485, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.727, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-17", + "total_cases": 1016.0, + "new_cases": 36.0, + "new_cases_smoothed": 6.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.972, + "new_cases_per_million": 1.487, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 2.727, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-18", + "total_cases": 1020.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 42.137, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 22.22 + }, + { + "date": "2020-06-19", + "total_cases": 1020.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 42.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 22.22 + }, + { + "date": "2020-06-20", + "total_cases": 1020.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 42.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 22.22 + }, + { + "date": "2020-06-21", + "total_cases": 1035.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.857, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.757, + "new_cases_per_million": 0.62, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-22", + "total_cases": 1036.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.0, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.798, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.33, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-23", + "total_cases": 1046.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.211, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-24", + "total_cases": 1051.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.418, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-06-25", + "total_cases": 1056.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.624, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-26", + "total_cases": 1059.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.571, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.748, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-27", + "total_cases": 1062.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.0, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.872, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-28", + "total_cases": 1068.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.714, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.12, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.195, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-29", + "total_cases": 1074.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.368, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-06-30", + "total_cases": 1075.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.409, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.171, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-01", + "total_cases": 1075.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.409, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-02", + "total_cases": 1075.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.409, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-03", + "total_cases": 1081.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 68.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.657, + "new_cases_per_million": 0.248, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-04", + "total_cases": 1082.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.698, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-05", + "total_cases": 1082.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-06", + "total_cases": 1093.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.714, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.153, + "new_cases_per_million": 0.454, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-07", + "total_cases": 1093.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.153, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-08", + "total_cases": 1094.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.194, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-09", + "total_cases": 1097.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.318, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-10", + "total_cases": 1097.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.318, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-11", + "total_cases": 1099.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.401, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-12", + "total_cases": 1099.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-13", + "total_cases": 1099.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-14", + "total_cases": 1099.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-15", + "total_cases": 1099.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-16", + "total_cases": 1100.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.442, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-17", + "total_cases": 1102.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.525, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-18", + "total_cases": 1102.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-19", + "total_cases": 1104.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.607, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-20", + "total_cases": 1104.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.607, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-21", + "total_cases": 1105.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.649, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-22", + "total_cases": 1113.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.979, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.083, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 22.22 + }, + { + "date": "2020-07-23", + "total_cases": 1122.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.351, + "new_cases_per_million": 0.372, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-24", + "total_cases": 1124.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.434, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-25", + "total_cases": 1124.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-26", + "total_cases": 1124.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-27", + "total_cases": 1132.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.764, + "new_cases_per_million": 0.33, + "new_cases_smoothed_per_million": 0.165, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-28", + "total_cases": 1132.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-29", + "total_cases": 1132.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.764, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-30", + "total_cases": 1134.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.847, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-07-31", + "total_cases": 1134.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.847, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-01", + "total_cases": 1134.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.847, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-02", + "total_cases": 1136.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.929, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-03", + "total_cases": 1147.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.384, + "new_cases_per_million": 0.454, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-04", + "total_cases": 1152.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.59, + "new_cases_per_million": 0.207, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-05", + "total_cases": 1152.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.118, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-06", + "total_cases": 1152.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-07", + "total_cases": 1153.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.632, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-08", + "total_cases": 1153.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.632, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-09", + "total_cases": 1157.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.797, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-10", + "total_cases": 1158.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.838, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-11", + "total_cases": 1158.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.838, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-12", + "total_cases": 1158.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.838, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-13", + "total_cases": 1161.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.962, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-14", + "total_cases": 1161.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-15", + "total_cases": 1165.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.127, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.071, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-16", + "total_cases": 1165.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-17", + "total_cases": 1167.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.21, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-18", + "total_cases": 1167.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.21, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-19", + "total_cases": 1167.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.21, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-20", + "total_cases": 1167.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.21, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-21", + "total_cases": 1169.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.293, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-22", + "total_cases": 1172.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.416, + "new_cases_per_million": 0.124, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-23", + "total_cases": 1172.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-24", + "total_cases": 1172.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-25", + "total_cases": 1172.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.416, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-26", + "total_cases": 1173.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.458, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-27", + "total_cases": 1173.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-28", + "total_cases": 1173.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-29", + "total_cases": 1175.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.54, + "new_cases_per_million": 0.083, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-30", + "total_cases": 1175.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.54, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-31", + "total_cases": 1176.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.582, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-09-01", + "total_cases": 1176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.582, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-09-02", + "total_cases": 1176.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.582, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-09-03", + "total_cases": 1177.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.623, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-09-04", + "total_cases": 1177.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-09-05", + "total_cases": 1177.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.623, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 2.85, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + } + ] + }, + "NGA": { + "continent": "Africa", + "location": "Nigeria", + "population": 206139587.0, + "population_density": 209.588, + "median_age": 18.1, + "aged_65_older": 2.751, + "aged_70_older": 1.447, + "gdp_per_capita": 5338.454, + "cardiovasc_death_rate": 181.013, + "diabetes_prevalence": 2.42, + "female_smokers": 0.6, + "male_smokers": 10.8, + "handwashing_facilities": 41.949, + "life_expectancy": 54.69, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-16", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-17", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-18", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.46 + }, + { + "date": "2020-03-19", + "total_cases": 8.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.46 + }, + { + "date": "2020-03-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.8 + }, + { + "date": "2020-03-21", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.058, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.8 + }, + { + "date": "2020-03-22", + "total_cases": 22.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.107, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.8 + }, + { + "date": "2020-03-23", + "total_cases": 30.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.146, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.61 + }, + { + "date": "2020-03-24", + "total_cases": 40.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.194, + "new_cases_per_million": 0.049, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 48.61 + }, + { + "date": "2020-03-25", + "total_cases": 44.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.213, + "new_cases_per_million": 0.019, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 48.61 + }, + { + "date": "2020-03-26", + "total_cases": 51.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.247, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 52.31 + }, + { + "date": "2020-03-27", + "total_cases": 65.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.315, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 52.31 + }, + { + "date": "2020-03-28", + "total_cases": 81.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.393, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 55.09 + }, + { + "date": "2020-03-29", + "total_cases": 97.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-03-30", + "total_cases": 97.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-03-31", + "total_cases": 131.0, + "new_cases": 34.0, + "new_cases_smoothed": 13.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.635, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-04-01", + "total_cases": 131.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.635, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-04-02", + "total_cases": 151.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.733, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-04-03", + "total_cases": 174.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.844, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-04-04", + "total_cases": 190.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.922, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 82.87 + }, + { + "date": "2020-04-05", + "total_cases": 210.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.143, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.019, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.019, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 82.87 + }, + { + "date": "2020-04-06", + "total_cases": 232.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.125, + "new_cases_per_million": 0.107, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 82.87 + }, + { + "date": "2020-04-07", + "total_cases": 238.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.155, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.024, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 82.87 + }, + { + "date": "2020-04-08", + "total_cases": 254.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.232, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.029, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 5000.0, + "total_tests_per_thousand": 0.024, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-09", + "total_cases": 276.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1.339, + "new_cases_per_million": 0.107, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.029, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-10", + "total_cases": 288.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.397, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-11", + "total_cases": 305.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.48, + "new_cases_per_million": 0.082, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-12", + "total_cases": 318.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.429, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.543, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.004, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-13", + "total_cases": 323.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.567, + "new_cases_per_million": 0.024, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-14", + "total_cases": 343.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.664, + "new_cases_per_million": 0.097, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.049, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-15", + "total_cases": 373.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.0, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.809, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.053, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 206.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 12.118, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-16", + "total_cases": 407.0, + "new_cases": 34.0, + "new_cases_smoothed": 18.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.974, + "new_cases_per_million": 0.165, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.058, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.004, + "total_tests": 6649.0, + "total_tests_per_thousand": 0.032, + "new_tests_smoothed": 206.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 11.008, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-17", + "total_cases": 442.0, + "new_cases": 35.0, + "new_cases_smoothed": 22.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2.144, + "new_cases_per_million": 0.17, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 504.0, + "total_tests": 7153.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 11.318, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-18", + "total_cases": 493.0, + "new_cases": 51.0, + "new_cases_smoothed": 26.857, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2.392, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.13, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.007, + "new_tests_smoothed": 288.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 10.722999999999999, + "positive_rate": 0.09300000000000001, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-19", + "total_cases": 542.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.0, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2.629, + "new_cases_per_million": 0.238, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 10.25, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-20", + "total_cases": 627.0, + "new_cases": 85.0, + "new_cases_smoothed": 43.429, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3.042, + "new_cases_per_million": 0.412, + "new_cases_smoothed_per_million": 0.211, + "total_deaths_per_million": 0.102, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 8.474, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-21", + "total_cases": 665.0, + "new_cases": 38.0, + "new_cases_smoothed": 46.0, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3.226, + "new_cases_per_million": 0.184, + "new_cases_smoothed_per_million": 0.223, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 408.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 8.87, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-22", + "total_cases": 782.0, + "new_cases": 117.0, + "new_cases_smoothed": 58.429, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3.794, + "new_cases_per_million": 0.568, + "new_cases_smoothed_per_million": 0.283, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.01, + "new_tests_smoothed": 448.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 7.667000000000001, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 82.87 + }, + { + "date": "2020-04-23", + "total_cases": 873.0, + "new_cases": 91.0, + "new_cases_smoothed": 66.571, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 4.235, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.323, + "total_deaths_per_million": 0.136, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 10061.0, + "total_tests_per_thousand": 0.049, + "new_tests_smoothed": 487.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 7.315, + "positive_rate": 0.13699999999999998, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-24", + "total_cases": 981.0, + "new_cases": 108.0, + "new_cases_smoothed": 77.0, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 4.759, + "new_cases_per_million": 0.524, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 0.15, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.012, + "new_tests_smoothed": 477.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 6.195, + "positive_rate": 0.161, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-25", + "total_cases": 1095.0, + "new_cases": 114.0, + "new_cases_smoothed": 86.0, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5.312, + "new_cases_per_million": 0.553, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.01, + "total_tests": 10918.0, + "total_tests_per_thousand": 0.053, + "new_tests_smoothed": 469.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 5.452999999999999, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-26", + "total_cases": 1182.0, + "new_cases": 87.0, + "new_cases_smoothed": 91.429, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5.734, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 0.17, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.011, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.933, + "positive_rate": 0.203, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-27", + "total_cases": 1273.0, + "new_cases": 91.0, + "new_cases_smoothed": 92.286, + "total_deaths": 40.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 6.175, + "new_cases_per_million": 0.441, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 0.194, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.013, + "new_tests_smoothed": 434.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.703, + "positive_rate": 0.213, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-28", + "total_cases": 1337.0, + "new_cases": 64.0, + "new_cases_smoothed": 96.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 6.486, + "new_cases_per_million": 0.31, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.194, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "total_tests": 12004.0, + "total_tests_per_thousand": 0.058, + "new_tests_smoothed": 416.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.333, + "positive_rate": 0.231, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-29", + "total_cases": 1532.0, + "new_cases": 195.0, + "new_cases_smoothed": 107.143, + "total_deaths": 44.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 7.432, + "new_cases_per_million": 0.946, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.213, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 824.0, + "total_tests": 12828.0, + "total_tests_per_thousand": 0.062, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 465.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 4.34, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-04-30", + "total_cases": 1728.0, + "new_cases": 196.0, + "new_cases_smoothed": 122.143, + "total_deaths": 51.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 8.383, + "new_cases_per_million": 0.951, + "new_cases_smoothed_per_million": 0.593, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.016, + "new_tests_smoothed": 605.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 4.953, + "positive_rate": 0.20199999999999999, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-05-01", + "total_cases": 1932.0, + "new_cases": 204.0, + "new_cases_smoothed": 135.857, + "total_deaths": 58.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 9.372, + "new_cases_per_million": 0.99, + "new_cases_smoothed_per_million": 0.659, + "total_deaths_per_million": 0.281, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.019, + "total_tests": 15759.0, + "total_tests_per_thousand": 0.076, + "new_tests_smoothed": 753.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 5.542999999999999, + "positive_rate": 0.18, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-05-02", + "total_cases": 2170.0, + "new_cases": 238.0, + "new_cases_smoothed": 153.571, + "total_deaths": 68.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 10.527, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 0.745, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 751.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 4.89, + "positive_rate": 0.204, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-05-03", + "total_cases": 2388.0, + "new_cases": 218.0, + "new_cases_smoothed": 172.286, + "total_deaths": 85.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 11.584, + "new_cases_per_million": 1.058, + "new_cases_smoothed_per_million": 0.836, + "total_deaths_per_million": 0.412, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.035, + "total_tests": 16588.0, + "total_tests_per_thousand": 0.08, + "new_tests_smoothed": 758.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 4.4, + "positive_rate": 0.22699999999999998, + "tests_units": "samples tested", + "stringency_index": 85.65 + }, + { + "date": "2020-05-04", + "total_cases": 2558.0, + "new_cases": 170.0, + "new_cases_smoothed": 183.571, + "total_deaths": 87.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 12.409, + "new_cases_per_million": 0.825, + "new_cases_smoothed_per_million": 0.891, + "total_deaths_per_million": 0.422, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1948.0, + "total_tests": 18536.0, + "total_tests_per_thousand": 0.09, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 985.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 5.3660000000000005, + "positive_rate": 0.18600000000000003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-05", + "total_cases": 2802.0, + "new_cases": 244.0, + "new_cases_smoothed": 209.286, + "total_deaths": 93.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 13.593, + "new_cases_per_million": 1.184, + "new_cases_smoothed_per_million": 1.015, + "total_deaths_per_million": 0.451, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 976.0, + "total_tests": 19512.0, + "total_tests_per_thousand": 0.095, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 5.127000000000001, + "positive_rate": 0.195, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-06", + "total_cases": 2950.0, + "new_cases": 148.0, + "new_cases_smoothed": 202.571, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 14.311, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.983, + "total_deaths_per_million": 0.475, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 1696.0, + "total_tests": 21208.0, + "total_tests_per_thousand": 0.103, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1197.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.909, + "positive_rate": 0.16899999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-07", + "total_cases": 3145.0, + "new_cases": 195.0, + "new_cases_smoothed": 202.429, + "total_deaths": 103.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 15.257, + "new_cases_per_million": 0.946, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 0.5, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1284.0, + "total_tests": 22492.0, + "total_tests_per_thousand": 0.109, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1171.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.785, + "positive_rate": 0.17300000000000001, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-08", + "total_cases": 3526.0, + "new_cases": 381.0, + "new_cases_smoothed": 227.714, + "total_deaths": 107.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 17.105, + "new_cases_per_million": 1.848, + "new_cases_smoothed_per_million": 1.105, + "total_deaths_per_million": 0.519, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 1343.0, + "total_tests": 23835.0, + "total_tests_per_thousand": 0.116, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.0680000000000005, + "positive_rate": 0.19699999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-09", + "total_cases": 3912.0, + "new_cases": 386.0, + "new_cases_smoothed": 248.857, + "total_deaths": 117.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 18.977, + "new_cases_per_million": 1.873, + "new_cases_smoothed_per_million": 1.207, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.034, + "new_tests_smoothed": 1249.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.019, + "positive_rate": 0.19899999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-10", + "total_cases": 4151.0, + "new_cases": 239.0, + "new_cases_smoothed": 251.857, + "total_deaths": 128.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 20.137, + "new_cases_per_million": 1.159, + "new_cases_smoothed_per_million": 1.222, + "total_deaths_per_million": 0.621, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.03, + "new_tests_smoothed": 1344.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.336, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-11", + "total_cases": 4399.0, + "new_cases": 248.0, + "new_cases_smoothed": 263.0, + "total_deaths": 143.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 21.34, + "new_cases_per_million": 1.203, + "new_cases_smoothed_per_million": 1.276, + "total_deaths_per_million": 0.694, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.039, + "total_tests": 27078.0, + "total_tests_per_thousand": 0.131, + "new_tests_smoothed": 1220.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.638999999999999, + "positive_rate": 0.21600000000000003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-12", + "total_cases": 4641.0, + "new_cases": 242.0, + "new_cases_smoothed": 262.714, + "total_deaths": 150.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 22.514, + "new_cases_per_million": 1.174, + "new_cases_smoothed_per_million": 1.274, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1340.0, + "total_tests": 28418.0, + "total_tests_per_thousand": 0.138, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1272.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.842, + "positive_rate": 0.207, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-13", + "total_cases": 4787.0, + "new_cases": 146.0, + "new_cases_smoothed": 262.429, + "total_deaths": 158.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 23.222, + "new_cases_per_million": 0.708, + "new_cases_smoothed_per_million": 1.273, + "total_deaths_per_million": 0.766, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 990.0, + "total_tests": 29408.0, + "total_tests_per_thousand": 0.143, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1171.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.462, + "positive_rate": 0.22399999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-14", + "total_cases": 4971.0, + "new_cases": 184.0, + "new_cases_smoothed": 260.857, + "total_deaths": 164.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 24.115, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 1.265, + "total_deaths_per_million": 0.796, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 1249.0, + "total_tests": 30657.0, + "total_tests_per_thousand": 0.149, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1166.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.47, + "positive_rate": 0.22399999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-15", + "total_cases": 5162.0, + "new_cases": 191.0, + "new_cases_smoothed": 233.714, + "total_deaths": 167.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 25.041, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 1.134, + "total_deaths_per_million": 0.81, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.042, + "new_tests_smoothed": 1138.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.869, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-16", + "total_cases": 5445.0, + "new_cases": 283.0, + "new_cases_smoothed": 219.0, + "total_deaths": 171.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 26.414, + "new_cases_per_million": 1.373, + "new_cases_smoothed_per_million": 1.062, + "total_deaths_per_million": 0.83, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.037, + "total_tests": 32942.0, + "total_tests_per_thousand": 0.16, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.237, + "positive_rate": 0.191, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-17", + "total_cases": 5621.0, + "new_cases": 176.0, + "new_cases_smoothed": 210.0, + "total_deaths": 176.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 27.268, + "new_cases_per_million": 0.854, + "new_cases_smoothed_per_million": 1.019, + "total_deaths_per_million": 0.854, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1028.0, + "total_tests": 33970.0, + "total_tests_per_thousand": 0.165, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1139.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.4239999999999995, + "positive_rate": 0.184, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-18", + "total_cases": 5959.0, + "new_cases": 338.0, + "new_cases_smoothed": 222.857, + "total_deaths": 182.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 28.908, + "new_cases_per_million": 1.64, + "new_cases_smoothed_per_million": 1.081, + "total_deaths_per_million": 0.883, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1375.0, + "total_tests": 35345.0, + "total_tests_per_thousand": 0.171, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1181.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.2989999999999995, + "positive_rate": 0.18899999999999997, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-19", + "total_cases": 6175.0, + "new_cases": 216.0, + "new_cases_smoothed": 219.143, + "total_deaths": 191.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 29.955, + "new_cases_per_million": 1.048, + "new_cases_smoothed_per_million": 1.063, + "total_deaths_per_million": 0.927, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 1554.0, + "total_tests": 36899.0, + "total_tests_per_thousand": 0.179, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1212.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.531000000000001, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-20", + "total_cases": 6401.0, + "new_cases": 226.0, + "new_cases_smoothed": 230.571, + "total_deaths": 192.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 31.052, + "new_cases_per_million": 1.096, + "new_cases_smoothed_per_million": 1.119, + "total_deaths_per_million": 0.931, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1332.0, + "total_tests": 38231.0, + "total_tests_per_thousand": 0.185, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 5.465, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-21", + "total_cases": 6677.0, + "new_cases": 276.0, + "new_cases_smoothed": 243.714, + "total_deaths": 200.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 32.391, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 0.97, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 1345.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.519, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-22", + "total_cases": 7016.0, + "new_cases": 339.0, + "new_cases_smoothed": 264.857, + "total_deaths": 211.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 34.035, + "new_cases_per_million": 1.645, + "new_cases_smoothed_per_million": 1.285, + "total_deaths_per_million": 1.024, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.03, + "total_tests": 41907.0, + "total_tests_per_thousand": 0.203, + "new_tests_smoothed": 1444.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.452000000000001, + "positive_rate": 0.183, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-23", + "total_cases": 7261.0, + "new_cases": 245.0, + "new_cases_smoothed": 259.429, + "total_deaths": 221.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 35.224, + "new_cases_per_million": 1.189, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 1421.0, + "total_tests": 43328.0, + "total_tests_per_thousand": 0.21, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1484.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.72, + "positive_rate": 0.175, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-24", + "total_cases": 7526.0, + "new_cases": 265.0, + "new_cases_smoothed": 272.143, + "total_deaths": 221.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 36.509, + "new_cases_per_million": 1.286, + "new_cases_smoothed_per_million": 1.32, + "total_deaths_per_million": 1.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 1130.0, + "total_tests": 44458.0, + "total_tests_per_thousand": 0.216, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1498.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.504, + "positive_rate": 0.182, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-25", + "total_cases": 7839.0, + "new_cases": 313.0, + "new_cases_smoothed": 268.571, + "total_deaths": 226.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 38.028, + "new_cases_per_million": 1.518, + "new_cases_smoothed_per_million": 1.303, + "total_deaths_per_million": 1.096, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1225.0, + "total_tests": 45683.0, + "total_tests_per_thousand": 0.222, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1477.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.499, + "positive_rate": 0.182, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-26", + "total_cases": 8068.0, + "new_cases": 229.0, + "new_cases_smoothed": 270.429, + "total_deaths": 233.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 39.139, + "new_cases_per_million": 1.111, + "new_cases_smoothed_per_million": 1.312, + "total_deaths_per_million": 1.13, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 1120.0, + "total_tests": 46803.0, + "total_tests_per_thousand": 0.227, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1415.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.232, + "positive_rate": 0.191, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 8344.0, + "new_cases": 276.0, + "new_cases_smoothed": 277.571, + "total_deaths": 249.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 40.477, + "new_cases_per_million": 1.339, + "new_cases_smoothed_per_million": 1.347, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1741.0, + "total_tests": 48544.0, + "total_tests_per_thousand": 0.235, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1473.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 5.307, + "positive_rate": 0.188, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 8733.0, + "new_cases": 389.0, + "new_cases_smoothed": 293.714, + "total_deaths": 254.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 42.364, + "new_cases_per_million": 1.887, + "new_cases_smoothed_per_million": 1.425, + "total_deaths_per_million": 1.232, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 1422.0, + "total_tests": 49966.0, + "total_tests_per_thousand": 0.242, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1414.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 4.814, + "positive_rate": 0.20800000000000002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 8915.0, + "new_cases": 182.0, + "new_cases_smoothed": 271.286, + "total_deaths": 259.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 43.247, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 1.256, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 8760.0, + "total_tests": 58726.0, + "total_tests_per_thousand": 0.285, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 2403.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 8.857999999999999, + "positive_rate": 0.113, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 9302.0, + "new_cases": 387.0, + "new_cases_smoothed": 291.571, + "total_deaths": 261.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 45.125, + "new_cases_per_million": 1.877, + "new_cases_smoothed_per_million": 1.414, + "total_deaths_per_million": 1.266, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 2099.0, + "total_tests": 60825.0, + "total_tests_per_thousand": 0.295, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2500.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 8.574, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 9855.0, + "new_cases": 553.0, + "new_cases_smoothed": 332.714, + "total_deaths": 273.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 47.807, + "new_cases_per_million": 2.683, + "new_cases_smoothed_per_million": 1.614, + "total_deaths_per_million": 1.324, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.036, + "new_tests_smoothed": 2556.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 7.682, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 10162.0, + "new_cases": 307.0, + "new_cases_smoothed": 331.857, + "total_deaths": 287.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 49.297, + "new_cases_per_million": 1.489, + "new_cases_smoothed_per_million": 1.61, + "total_deaths_per_million": 1.392, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.042, + "total_tests": 63882.0, + "total_tests_per_thousand": 0.31, + "new_tests_smoothed": 2600.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.835, + "positive_rate": 0.128, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 10578.0, + "new_cases": 416.0, + "new_cases_smoothed": 358.571, + "total_deaths": 299.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 51.315, + "new_cases_per_million": 2.018, + "new_cases_smoothed_per_million": 1.739, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2003.0, + "total_tests": 65885.0, + "total_tests_per_thousand": 0.32, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2726.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.602, + "positive_rate": 0.132, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 10819.0, + "new_cases": 241.0, + "new_cases_smoothed": 353.571, + "total_deaths": 314.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 52.484, + "new_cases_per_million": 1.169, + "new_cases_smoothed_per_million": 1.715, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 3916.0, + "total_tests": 69801.0, + "total_tests_per_thousand": 0.339, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 3037.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.589, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 11166.0, + "new_cases": 347.0, + "new_cases_smoothed": 347.571, + "total_deaths": 315.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 54.167, + "new_cases_per_million": 1.683, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 1.528, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 1535.0, + "total_tests": 71336.0, + "total_tests_per_thousand": 0.346, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 3053.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.783999999999999, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 11516.0, + "new_cases": 350.0, + "new_cases_smoothed": 371.571, + "total_deaths": 323.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 55.865, + "new_cases_per_million": 1.698, + "new_cases_smoothed_per_million": 1.803, + "total_deaths_per_million": 1.567, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 1728.0, + "total_tests": 73064.0, + "total_tests_per_thousand": 0.354, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 2048.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 5.5120000000000005, + "positive_rate": 0.18100000000000002, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 11844.0, + "new_cases": 328.0, + "new_cases_smoothed": 363.143, + "total_deaths": 333.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 57.456, + "new_cases_per_million": 1.591, + "new_cases_smoothed_per_million": 1.762, + "total_deaths_per_million": 1.615, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1935.0, + "total_tests": 74999.0, + "total_tests_per_thousand": 0.364, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2025.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 5.5760000000000005, + "positive_rate": 0.179, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 12233.0, + "new_cases": 389.0, + "new_cases_smoothed": 339.714, + "total_deaths": 342.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 59.343, + "new_cases_per_million": 1.887, + "new_cases_smoothed_per_million": 1.648, + "total_deaths_per_million": 1.659, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1803.0, + "total_tests": 76802.0, + "total_tests_per_thousand": 0.373, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2064.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 6.0760000000000005, + "positive_rate": 0.165, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 12486.0, + "new_cases": 253.0, + "new_cases_smoothed": 332.0, + "total_deaths": 354.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 60.571, + "new_cases_per_million": 1.227, + "new_cases_smoothed_per_million": 1.611, + "total_deaths_per_million": 1.717, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 1442.0, + "total_tests": 78244.0, + "total_tests_per_thousand": 0.38, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 2052.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 6.181, + "positive_rate": 0.162, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 12801.0, + "new_cases": 315.0, + "new_cases_smoothed": 317.571, + "total_deaths": 361.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 62.099, + "new_cases_per_million": 1.528, + "new_cases_smoothed_per_million": 1.541, + "total_deaths_per_million": 1.751, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1704.0, + "total_tests": 79948.0, + "total_tests_per_thousand": 0.388, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 2009.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 6.3260000000000005, + "positive_rate": 0.158, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 13464.0, + "new_cases": 663.0, + "new_cases_smoothed": 377.857, + "total_deaths": 365.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 65.315, + "new_cases_per_million": 3.216, + "new_cases_smoothed_per_million": 1.833, + "total_deaths_per_million": 1.771, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 2987.0, + "total_tests": 82935.0, + "total_tests_per_thousand": 0.402, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1876.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 4.965, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 13873.0, + "new_cases": 409.0, + "new_cases_smoothed": 386.714, + "total_deaths": 382.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 67.299, + "new_cases_per_million": 1.984, + "new_cases_smoothed_per_million": 1.876, + "total_deaths_per_million": 1.853, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 2440.0, + "total_tests": 85375.0, + "total_tests_per_thousand": 0.414, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2006.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 5.187, + "positive_rate": 0.193, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 14554.0, + "new_cases": 681.0, + "new_cases_smoothed": 434.0, + "total_deaths": 387.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 70.603, + "new_cases_per_million": 3.304, + "new_cases_smoothed_per_million": 2.105, + "total_deaths_per_million": 1.877, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.044, + "new_tests_smoothed": 2122.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 4.888999999999999, + "positive_rate": 0.205, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 15181.0, + "new_cases": 627.0, + "new_cases_smoothed": 476.714, + "total_deaths": 399.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 73.644, + "new_cases_per_million": 3.042, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 1.936, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.046, + "total_tests": 90464.0, + "total_tests_per_thousand": 0.439, + "new_tests_smoothed": 2209.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 4.6339999999999995, + "positive_rate": 0.21600000000000003, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 15682.0, + "new_cases": 501.0, + "new_cases_smoothed": 492.714, + "total_deaths": 407.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 76.075, + "new_cases_per_million": 2.43, + "new_cases_smoothed_per_million": 2.39, + "total_deaths_per_million": 1.974, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 2460.0, + "total_tests": 92924.0, + "total_tests_per_thousand": 0.451, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2303.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 4.6739999999999995, + "positive_rate": 0.214, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 16085.0, + "new_cases": 403.0, + "new_cases_smoothed": 514.143, + "total_deaths": 420.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 78.03, + "new_cases_per_million": 1.955, + "new_cases_smoothed_per_million": 2.494, + "total_deaths_per_million": 2.037, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 1399.0, + "total_tests": 94323.0, + "total_tests_per_thousand": 0.458, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 2297.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 4.468, + "positive_rate": 0.22399999999999998, + "tests_units": "samples tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 16658.0, + "new_cases": 573.0, + "new_cases_smoothed": 551.0, + "total_deaths": 424.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 80.809, + "new_cases_per_million": 2.78, + "new_cases_smoothed_per_million": 2.673, + "total_deaths_per_million": 2.057, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 2079.0, + "total_tests": 96402.0, + "total_tests_per_thousand": 0.468, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2351.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 4.2669999999999995, + "positive_rate": 0.23399999999999999, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-17", + "total_cases": 17148.0, + "new_cases": 490.0, + "new_cases_smoothed": 526.286, + "total_deaths": 455.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 83.186, + "new_cases_per_million": 2.377, + "new_cases_smoothed_per_million": 2.553, + "total_deaths_per_million": 2.207, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.062, + "new_tests_smoothed": 2610.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 4.959, + "positive_rate": 0.20199999999999999, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-18", + "total_cases": 17735.0, + "new_cases": 587.0, + "new_cases_smoothed": 551.714, + "total_deaths": 469.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 86.034, + "new_cases_per_million": 2.848, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 2.275, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.06, + "total_tests": 106006.0, + "total_tests_per_thousand": 0.514, + "new_tests_smoothed": 2947.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.3420000000000005, + "positive_rate": 0.187, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-19", + "total_cases": 18480.0, + "new_cases": 745.0, + "new_cases_smoothed": 560.857, + "total_deaths": 475.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 89.648, + "new_cases_per_million": 3.614, + "new_cases_smoothed_per_million": 2.721, + "total_deaths_per_million": 2.304, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 2542.0, + "total_tests": 108548.0, + "total_tests_per_thousand": 0.527, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2947.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.254, + "positive_rate": 0.19, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-20", + "total_cases": 19147.0, + "new_cases": 667.0, + "new_cases_smoothed": 566.571, + "total_deaths": 487.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 92.884, + "new_cases_per_million": 3.236, + "new_cases_smoothed_per_million": 2.748, + "total_deaths_per_million": 2.362, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 2504.0, + "total_tests": 111052.0, + "total_tests_per_thousand": 0.539, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2941.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.191, + "positive_rate": 0.193, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-21", + "total_cases": 19808.0, + "new_cases": 661.0, + "new_cases_smoothed": 589.429, + "total_deaths": 506.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 96.09, + "new_cases_per_million": 3.207, + "new_cases_smoothed_per_million": 2.859, + "total_deaths_per_million": 2.455, + "new_deaths_per_million": 0.092, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 2523.0, + "total_tests": 113575.0, + "total_tests_per_thousand": 0.551, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2950.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 5.005, + "positive_rate": 0.2, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-22", + "total_cases": 20244.0, + "new_cases": 436.0, + "new_cases_smoothed": 594.143, + "total_deaths": 518.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 98.205, + "new_cases_per_million": 2.115, + "new_cases_smoothed_per_million": 2.882, + "total_deaths_per_million": 2.513, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 2185.0, + "total_tests": 115760.0, + "total_tests_per_thousand": 0.562, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 3062.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 5.154, + "positive_rate": 0.19399999999999998, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-23", + "total_cases": 20919.0, + "new_cases": 675.0, + "new_cases_smoothed": 608.714, + "total_deaths": 525.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 101.48, + "new_cases_per_million": 3.274, + "new_cases_smoothed_per_million": 2.953, + "total_deaths_per_million": 2.547, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 1809.0, + "total_tests": 117569.0, + "total_tests_per_thousand": 0.57, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 3024.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 4.968, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-24", + "total_cases": 21371.0, + "new_cases": 452.0, + "new_cases_smoothed": 603.286, + "total_deaths": 533.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 103.672, + "new_cases_per_million": 2.193, + "new_cases_smoothed_per_million": 2.927, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 2539.0, + "total_tests": 120108.0, + "total_tests_per_thousand": 0.583, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2701.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 4.477, + "positive_rate": 0.223, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-25", + "total_cases": 22020.0, + "new_cases": 649.0, + "new_cases_smoothed": 612.143, + "total_deaths": 542.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 106.821, + "new_cases_per_million": 3.148, + "new_cases_smoothed_per_million": 2.97, + "total_deaths_per_million": 2.629, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 2047.0, + "total_tests": 122155.0, + "total_tests_per_thousand": 0.593, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2307.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.7689999999999997, + "positive_rate": 0.265, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-26", + "total_cases": 22614.0, + "new_cases": 594.0, + "new_cases_smoothed": 590.571, + "total_deaths": 549.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 109.702, + "new_cases_per_million": 2.882, + "new_cases_smoothed_per_million": 2.865, + "total_deaths_per_million": 2.663, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.051, + "new_tests_smoothed": 2301.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.8960000000000004, + "positive_rate": 0.257, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-27", + "total_cases": 23298.0, + "new_cases": 684.0, + "new_cases_smoothed": 593.0, + "total_deaths": 554.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 113.021, + "new_cases_per_million": 3.318, + "new_cases_smoothed_per_million": 2.877, + "total_deaths_per_million": 2.687, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.046, + "total_tests": 127158.0, + "total_tests_per_thousand": 0.617, + "new_tests_smoothed": 2301.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.88, + "positive_rate": 0.258, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-28", + "total_cases": 24077.0, + "new_cases": 779.0, + "new_cases_smoothed": 609.857, + "total_deaths": 558.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 116.799, + "new_cases_per_million": 3.779, + "new_cases_smoothed_per_million": 2.958, + "total_deaths_per_million": 2.707, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 3006.0, + "total_tests": 130164.0, + "total_tests_per_thousand": 0.631, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 2370.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.886, + "positive_rate": 0.257, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-29", + "total_cases": 24567.0, + "new_cases": 490.0, + "new_cases_smoothed": 617.571, + "total_deaths": 565.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 119.177, + "new_cases_per_million": 2.377, + "new_cases_smoothed_per_million": 2.996, + "total_deaths_per_million": 2.741, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 2140.0, + "total_tests": 132304.0, + "total_tests_per_thousand": 0.642, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 2363.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.826, + "positive_rate": 0.261, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-06-30", + "total_cases": 25133.0, + "new_cases": 566.0, + "new_cases_smoothed": 602.0, + "total_deaths": 573.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 121.922, + "new_cases_per_million": 2.746, + "new_cases_smoothed_per_million": 2.92, + "total_deaths_per_million": 2.78, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1953.0, + "total_tests": 134257.0, + "total_tests_per_thousand": 0.651, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2384.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 3.96, + "positive_rate": 0.253, + "tests_units": "samples tested", + "stringency_index": 76.39 + }, + { + "date": "2020-07-01", + "total_cases": 25694.0, + "new_cases": 561.0, + "new_cases_smoothed": 617.571, + "total_deaths": 590.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 124.644, + "new_cases_per_million": 2.721, + "new_cases_smoothed_per_million": 2.996, + "total_deaths_per_million": 2.862, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 4205.0, + "total_tests": 138462.0, + "total_tests_per_thousand": 0.672, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 2622.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 4.246, + "positive_rate": 0.23600000000000002, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-02", + "total_cases": 26484.0, + "new_cases": 790.0, + "new_cases_smoothed": 637.714, + "total_deaths": 603.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 128.476, + "new_cases_per_million": 3.832, + "new_cases_smoothed_per_million": 3.094, + "total_deaths_per_million": 2.925, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 3063.0, + "total_tests": 141525.0, + "total_tests_per_thousand": 0.687, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 2767.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 4.3389999999999995, + "positive_rate": 0.23, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-03", + "total_cases": 27110.0, + "new_cases": 626.0, + "new_cases_smoothed": 642.286, + "total_deaths": 616.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 131.513, + "new_cases_per_million": 3.037, + "new_cases_smoothed_per_million": 3.116, + "total_deaths_per_million": 2.988, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.046, + "new_tests": 3308.0, + "total_tests": 144833.0, + "total_tests_per_thousand": 0.703, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 2882.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 4.487, + "positive_rate": 0.223, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-04", + "total_cases": 27564.0, + "new_cases": 454.0, + "new_cases_smoothed": 609.429, + "total_deaths": 628.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 133.715, + "new_cases_per_million": 2.202, + "new_cases_smoothed_per_million": 2.956, + "total_deaths_per_million": 3.046, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 3355.0, + "total_tests": 148188.0, + "total_tests_per_thousand": 0.719, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 3004.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 4.928999999999999, + "positive_rate": 0.203, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-05", + "total_cases": 28167.0, + "new_cases": 603.0, + "new_cases_smoothed": 584.286, + "total_deaths": 634.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 136.64, + "new_cases_per_million": 2.925, + "new_cases_smoothed_per_million": 2.834, + "total_deaths_per_million": 3.076, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2933.0, + "total_tests": 151121.0, + "total_tests_per_thousand": 0.733, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 2994.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 5.124, + "positive_rate": 0.195, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-06", + "total_cases": 28711.0, + "new_cases": 544.0, + "new_cases_smoothed": 592.0, + "total_deaths": 645.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 139.279, + "new_cases_per_million": 2.639, + "new_cases_smoothed_per_million": 2.872, + "total_deaths_per_million": 3.129, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 1831.0, + "total_tests": 152952.0, + "total_tests_per_thousand": 0.742, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2950.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 4.9830000000000005, + "positive_rate": 0.201, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-07", + "total_cases": 29286.0, + "new_cases": 575.0, + "new_cases_smoothed": 593.286, + "total_deaths": 654.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 142.069, + "new_cases_per_million": 2.789, + "new_cases_smoothed_per_million": 2.878, + "total_deaths_per_million": 3.173, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.056, + "new_tests_smoothed": 3862.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 6.51, + "positive_rate": 0.154, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-08", + "total_cases": 29789.0, + "new_cases": 503.0, + "new_cases_smoothed": 585.0, + "total_deaths": 669.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 144.509, + "new_cases_per_million": 2.44, + "new_cases_smoothed_per_million": 2.838, + "total_deaths_per_million": 3.245, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.055, + "total_tests": 169629.0, + "total_tests_per_thousand": 0.823, + "new_tests_smoothed": 4452.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 7.61, + "positive_rate": 0.131, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-09", + "total_cases": 30249.0, + "new_cases": 460.0, + "new_cases_smoothed": 537.857, + "total_deaths": 684.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 146.74, + "new_cases_per_million": 2.231, + "new_cases_smoothed_per_million": 2.609, + "total_deaths_per_million": 3.318, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 2302.0, + "total_tests": 171931.0, + "total_tests_per_thousand": 0.834, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 4344.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.076, + "positive_rate": 0.124, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-10", + "total_cases": 30748.0, + "new_cases": 499.0, + "new_cases_smoothed": 519.714, + "total_deaths": 689.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 149.161, + "new_cases_per_million": 2.421, + "new_cases_smoothed_per_million": 2.521, + "total_deaths_per_million": 3.342, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 3725.0, + "total_tests": 175656.0, + "total_tests_per_thousand": 0.852, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 4403.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.472000000000001, + "positive_rate": 0.11800000000000001, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-11", + "total_cases": 31323.0, + "new_cases": 575.0, + "new_cases_smoothed": 537.0, + "total_deaths": 709.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 151.95, + "new_cases_per_million": 2.789, + "new_cases_smoothed_per_million": 2.605, + "total_deaths_per_million": 3.439, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 2609.0, + "total_tests": 178265.0, + "total_tests_per_thousand": 0.865, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 4297.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 8.002, + "positive_rate": 0.125, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-12", + "total_cases": 31987.0, + "new_cases": 664.0, + "new_cases_smoothed": 545.714, + "total_deaths": 724.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 155.172, + "new_cases_per_million": 3.221, + "new_cases_smoothed_per_million": 2.647, + "total_deaths_per_million": 3.512, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 2983.0, + "total_tests": 181248.0, + "total_tests_per_thousand": 0.879, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 4304.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.8870000000000005, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-13", + "total_cases": 32558.0, + "new_cases": 571.0, + "new_cases_smoothed": 549.571, + "total_deaths": 740.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 157.942, + "new_cases_per_million": 2.77, + "new_cases_smoothed_per_million": 2.666, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 2046.0, + "total_tests": 183294.0, + "total_tests_per_thousand": 0.889, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 4335.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.888, + "positive_rate": 0.127, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-14", + "total_cases": 33153.0, + "new_cases": 595.0, + "new_cases_smoothed": 552.429, + "total_deaths": 744.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 160.828, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 2.68, + "total_deaths_per_million": 3.609, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.062, + "new_tests_smoothed": 4266.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.722, + "positive_rate": 0.129, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-15", + "total_cases": 33616.0, + "new_cases": 463.0, + "new_cases_smoothed": 546.714, + "total_deaths": 754.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 163.074, + "new_cases_per_million": 2.246, + "new_cases_smoothed_per_million": 2.652, + "total_deaths_per_million": 3.658, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.059, + "total_tests": 199016.0, + "total_tests_per_thousand": 0.965, + "new_tests_smoothed": 4198.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 7.678999999999999, + "positive_rate": 0.13, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-16", + "total_cases": 34259.0, + "new_cases": 643.0, + "new_cases_smoothed": 572.857, + "total_deaths": 760.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 166.193, + "new_cases_per_million": 3.119, + "new_cases_smoothed_per_million": 2.779, + "total_deaths_per_million": 3.687, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3081.0, + "total_tests": 202097.0, + "total_tests_per_thousand": 0.98, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 4309.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.522, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-17", + "total_cases": 34854.0, + "new_cases": 595.0, + "new_cases_smoothed": 586.571, + "total_deaths": 769.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 169.08, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 2.846, + "total_deaths_per_million": 3.73, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 4325.0, + "total_tests": 206422.0, + "total_tests_per_thousand": 1.001, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 4395.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.492999999999999, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-18", + "total_cases": 35454.0, + "new_cases": 600.0, + "new_cases_smoothed": 590.143, + "total_deaths": 772.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 171.99, + "new_cases_per_million": 2.911, + "new_cases_smoothed_per_million": 2.863, + "total_deaths_per_million": 3.745, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 3024.0, + "total_tests": 209446.0, + "total_tests_per_thousand": 1.016, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 4454.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 7.547000000000001, + "positive_rate": 0.132, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-19", + "total_cases": 36107.0, + "new_cases": 653.0, + "new_cases_smoothed": 588.571, + "total_deaths": 778.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 175.158, + "new_cases_per_million": 3.168, + "new_cases_smoothed_per_million": 2.855, + "total_deaths_per_million": 3.774, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 2755.0, + "total_tests": 212201.0, + "total_tests_per_thousand": 1.029, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 4422.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 7.513, + "positive_rate": 0.133, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-20", + "total_cases": 36663.0, + "new_cases": 556.0, + "new_cases_smoothed": 586.429, + "total_deaths": 789.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 177.855, + "new_cases_per_million": 2.697, + "new_cases_smoothed_per_million": 2.845, + "total_deaths_per_million": 3.828, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.034, + "new_tests_smoothed": 4560.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 7.776, + "positive_rate": 0.129, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-21", + "total_cases": 37225.0, + "new_cases": 562.0, + "new_cases_smoothed": 581.714, + "total_deaths": 801.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 180.582, + "new_cases_per_million": 2.726, + "new_cases_smoothed_per_million": 2.822, + "total_deaths_per_million": 3.886, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.04, + "total_tests": 218223.0, + "total_tests_per_thousand": 1.059, + "new_tests_smoothed": 3867.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 6.648, + "positive_rate": 0.15, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-22", + "total_cases": 37801.0, + "new_cases": 576.0, + "new_cases_smoothed": 597.857, + "total_deaths": 805.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 183.376, + "new_cases_per_million": 2.794, + "new_cases_smoothed_per_million": 2.9, + "total_deaths_per_million": 3.905, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 29602.0, + "total_tests": 247825.0, + "total_tests_per_thousand": 1.202, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 6973.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 11.663, + "positive_rate": 0.086, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-23", + "total_cases": 38344.0, + "new_cases": 543.0, + "new_cases_smoothed": 583.571, + "total_deaths": 813.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 186.01, + "new_cases_per_million": 2.634, + "new_cases_smoothed_per_million": 2.831, + "total_deaths_per_million": 3.944, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 4068.0, + "total_tests": 251893.0, + "total_tests_per_thousand": 1.222, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 7114.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 12.19, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-24", + "total_cases": 38948.0, + "new_cases": 604.0, + "new_cases_smoothed": 584.857, + "total_deaths": 833.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 188.94, + "new_cases_per_million": 2.93, + "new_cases_smoothed_per_million": 2.837, + "total_deaths_per_million": 4.041, + "new_deaths_per_million": 0.097, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 4145.0, + "total_tests": 256038.0, + "total_tests_per_thousand": 1.242, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 7088.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 12.119000000000002, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-25", + "total_cases": 39539.0, + "new_cases": 591.0, + "new_cases_smoothed": 583.571, + "total_deaths": 845.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 191.807, + "new_cases_per_million": 2.867, + "new_cases_smoothed_per_million": 2.831, + "total_deaths_per_million": 4.099, + "new_deaths_per_million": 0.058, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 3478.0, + "total_tests": 259516.0, + "total_tests_per_thousand": 1.259, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 7153.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 12.257, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-26", + "total_cases": 39977.0, + "new_cases": 438.0, + "new_cases_smoothed": 552.857, + "total_deaths": 856.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 193.932, + "new_cases_per_million": 2.125, + "new_cases_smoothed_per_million": 2.682, + "total_deaths_per_million": 4.153, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.054, + "new_tests": 3063.0, + "total_tests": 262579.0, + "total_tests_per_thousand": 1.274, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 7197.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 13.017999999999999, + "positive_rate": 0.077, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-27", + "total_cases": 40532.0, + "new_cases": 555.0, + "new_cases_smoothed": 552.714, + "total_deaths": 858.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 196.624, + "new_cases_per_million": 2.692, + "new_cases_smoothed_per_million": 2.681, + "total_deaths_per_million": 4.162, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 5263.0, + "total_tests": 267842.0, + "total_tests_per_thousand": 1.299, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 7519.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 13.604000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-28", + "total_cases": 41180.0, + "new_cases": 648.0, + "new_cases_smoothed": 565.0, + "total_deaths": 860.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 199.768, + "new_cases_per_million": 3.144, + "new_cases_smoothed_per_million": 2.741, + "total_deaths_per_million": 4.172, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 4906.0, + "total_tests": 272748.0, + "total_tests_per_thousand": 1.323, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 7789.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 13.786, + "positive_rate": 0.073, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-29", + "total_cases": 41804.0, + "new_cases": 624.0, + "new_cases_smoothed": 571.857, + "total_deaths": 868.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 202.795, + "new_cases_per_million": 3.027, + "new_cases_smoothed_per_million": 2.774, + "total_deaths_per_million": 4.211, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 3305.0, + "total_tests": 276053.0, + "total_tests_per_thousand": 1.339, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 4033.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 7.0520000000000005, + "positive_rate": 0.142, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-30", + "total_cases": 42208.0, + "new_cases": 404.0, + "new_cases_smoothed": 552.0, + "total_deaths": 873.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 204.754, + "new_cases_per_million": 1.96, + "new_cases_smoothed_per_million": 2.678, + "total_deaths_per_million": 4.235, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 3622.0, + "total_tests": 279675.0, + "total_tests_per_thousand": 1.357, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 3969.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 7.19, + "positive_rate": 0.139, + "tests_units": "samples tested", + "stringency_index": 68.06 + }, + { + "date": "2020-07-31", + "total_cases": 42689.0, + "new_cases": 481.0, + "new_cases_smoothed": 534.429, + "total_deaths": 878.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 207.088, + "new_cases_per_million": 2.333, + "new_cases_smoothed_per_million": 2.593, + "total_deaths_per_million": 4.259, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 3835.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 7.176, + "positive_rate": 0.139, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-01", + "total_cases": 43151.0, + "new_cases": 462.0, + "new_cases_smoothed": 516.0, + "total_deaths": 879.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 209.329, + "new_cases_per_million": 2.241, + "new_cases_smoothed_per_million": 2.503, + "total_deaths_per_million": 4.264, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 286091.0, + "total_tests_per_thousand": 1.388, + "new_tests_smoothed": 3796.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 7.357, + "positive_rate": 0.136, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-02", + "total_cases": 43537.0, + "new_cases": 386.0, + "new_cases_smoothed": 508.571, + "total_deaths": 883.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 211.202, + "new_cases_per_million": 1.873, + "new_cases_smoothed_per_million": 2.467, + "total_deaths_per_million": 4.284, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 1441.0, + "total_tests": 287532.0, + "total_tests_per_thousand": 1.395, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 3565.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 7.01, + "positive_rate": 0.14300000000000002, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-03", + "total_cases": 43841.0, + "new_cases": 304.0, + "new_cases_smoothed": 472.714, + "total_deaths": 888.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 212.676, + "new_cases_per_million": 1.475, + "new_cases_smoothed_per_million": 2.293, + "total_deaths_per_million": 4.308, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 1601.0, + "total_tests": 289133.0, + "total_tests_per_thousand": 1.403, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 3042.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 6.435, + "positive_rate": 0.155, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-04", + "total_cases": 44129.0, + "new_cases": 288.0, + "new_cases_smoothed": 421.286, + "total_deaths": 896.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 214.073, + "new_cases_per_million": 1.397, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 4.347, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 15088.0, + "total_tests": 304221.0, + "total_tests_per_thousand": 1.476, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 4496.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 10.672, + "positive_rate": 0.094, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-05", + "total_cases": 44433.0, + "new_cases": 304.0, + "new_cases_smoothed": 375.571, + "total_deaths": 910.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 215.548, + "new_cases_per_million": 1.475, + "new_cases_smoothed_per_million": 1.822, + "total_deaths_per_million": 4.414, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.029, + "new_tests_smoothed": 4215.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 11.222999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-06", + "total_cases": 44890.0, + "new_cases": 457.0, + "new_cases_smoothed": 383.143, + "total_deaths": 927.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 217.765, + "new_cases_per_million": 2.217, + "new_cases_smoothed_per_million": 1.859, + "total_deaths_per_million": 4.497, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.037, + "total_tests": 306894.0, + "total_tests_per_thousand": 1.489, + "new_tests_smoothed": 3888.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 10.148, + "positive_rate": 0.099, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-07", + "total_cases": 45244.0, + "new_cases": 354.0, + "new_cases_smoothed": 365.0, + "total_deaths": 930.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 219.482, + "new_cases_per_million": 1.717, + "new_cases_smoothed_per_million": 1.771, + "total_deaths_per_million": 4.512, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 3835.0, + "total_tests": 310729.0, + "total_tests_per_thousand": 1.507, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 3978.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 10.899000000000001, + "positive_rate": 0.092, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-08", + "total_cases": 45687.0, + "new_cases": 443.0, + "new_cases_smoothed": 362.286, + "total_deaths": 936.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 221.631, + "new_cases_per_million": 2.149, + "new_cases_smoothed_per_million": 1.757, + "total_deaths_per_million": 4.541, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 3903.0, + "total_tests": 314632.0, + "total_tests_per_thousand": 1.526, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 4077.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 11.254000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-09", + "total_cases": 46140.0, + "new_cases": 453.0, + "new_cases_smoothed": 371.857, + "total_deaths": 942.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 223.829, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 1.804, + "total_deaths_per_million": 4.57, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2864.0, + "total_tests": 317496.0, + "total_tests_per_thousand": 1.54, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 4281.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 11.512, + "positive_rate": 0.087, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-10", + "total_cases": 46577.0, + "new_cases": 437.0, + "new_cases_smoothed": 390.857, + "total_deaths": 945.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 225.949, + "new_cases_per_million": 2.12, + "new_cases_smoothed_per_million": 1.896, + "total_deaths_per_million": 4.584, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 2355.0, + "total_tests": 319851.0, + "total_tests_per_thousand": 1.552, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 4388.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 11.227, + "positive_rate": 0.08900000000000001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-11", + "total_cases": 46867.0, + "new_cases": 290.0, + "new_cases_smoothed": 391.143, + "total_deaths": 950.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 227.356, + "new_cases_per_million": 1.407, + "new_cases_smoothed_per_million": 1.897, + "total_deaths_per_million": 4.609, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 3535.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 9.038, + "positive_rate": 0.111, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-12", + "total_cases": 47290.0, + "new_cases": 423.0, + "new_cases_smoothed": 408.143, + "total_deaths": 956.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 229.408, + "new_cases_per_million": 2.052, + "new_cases_smoothed_per_million": 1.98, + "total_deaths_per_million": 4.638, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.032, + "total_tests": 338084.0, + "total_tests_per_thousand": 1.64, + "new_tests_smoothed": 4647.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 11.386, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-13", + "total_cases": 47743.0, + "new_cases": 453.0, + "new_cases_smoothed": 407.571, + "total_deaths": 956.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 231.605, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 1.977, + "total_deaths_per_million": 4.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 3337.0, + "total_tests": 341421.0, + "total_tests_per_thousand": 1.656, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 4932.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 12.100999999999999, + "positive_rate": 0.083, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-08-14", + "total_cases": 48116.0, + "new_cases": 373.0, + "new_cases_smoothed": 410.286, + "total_deaths": 966.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 233.415, + "new_cases_per_million": 1.809, + "new_cases_smoothed_per_million": 1.99, + "total_deaths_per_million": 4.686, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 2976.0, + "total_tests": 344397.0, + "total_tests_per_thousand": 1.671, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 4810.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 11.724, + "positive_rate": 0.085, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-15", + "total_cases": 48445.0, + "new_cases": 329.0, + "new_cases_smoothed": 394.0, + "total_deaths": 973.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 235.011, + "new_cases_per_million": 1.596, + "new_cases_smoothed_per_million": 1.911, + "total_deaths_per_million": 4.72, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 4694.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 11.914000000000001, + "positive_rate": 0.084, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-16", + "total_cases": 48770.0, + "new_cases": 325.0, + "new_cases_smoothed": 375.714, + "total_deaths": 974.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 236.587, + "new_cases_per_million": 1.577, + "new_cases_smoothed_per_million": 1.823, + "total_deaths_per_million": 4.725, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.022, + "total_tests": 350589.0, + "total_tests_per_thousand": 1.701, + "new_tests_smoothed": 4728.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 12.584000000000001, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-17", + "total_cases": 49068.0, + "new_cases": 298.0, + "new_cases_smoothed": 355.857, + "total_deaths": 975.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 238.033, + "new_cases_per_million": 1.446, + "new_cases_smoothed_per_million": 1.726, + "total_deaths_per_million": 4.73, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 2036.0, + "total_tests": 352625.0, + "total_tests_per_thousand": 1.711, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 4682.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 13.157, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-18", + "total_cases": 49485.0, + "new_cases": 417.0, + "new_cases_smoothed": 374.0, + "total_deaths": 977.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 240.056, + "new_cases_per_million": 2.023, + "new_cases_smoothed_per_million": 1.814, + "total_deaths_per_million": 4.74, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 2571.0, + "total_tests": 355196.0, + "total_tests_per_thousand": 1.723, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 3747.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 10.019, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-19", + "total_cases": 49895.0, + "new_cases": 410.0, + "new_cases_smoothed": 372.143, + "total_deaths": 981.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 242.045, + "new_cases_per_million": 1.989, + "new_cases_smoothed_per_million": 1.805, + "total_deaths_per_million": 4.759, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 8135.0, + "total_tests": 363331.0, + "total_tests_per_thousand": 1.763, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 3607.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 9.693, + "positive_rate": 0.10300000000000001, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-20", + "total_cases": 50488.0, + "new_cases": 593.0, + "new_cases_smoothed": 392.143, + "total_deaths": 985.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 244.921, + "new_cases_per_million": 2.877, + "new_cases_smoothed_per_million": 1.902, + "total_deaths_per_million": 4.778, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 2913.0, + "total_tests": 366244.0, + "total_tests_per_thousand": 1.777, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 3546.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 9.043, + "positive_rate": 0.111, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-21", + "total_cases": 50964.0, + "new_cases": 476.0, + "new_cases_smoothed": 406.857, + "total_deaths": 992.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 247.231, + "new_cases_per_million": 2.309, + "new_cases_smoothed_per_million": 1.974, + "total_deaths_per_million": 4.812, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 3660.0, + "total_tests": 369904.0, + "total_tests_per_thousand": 1.794, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 3644.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 8.956, + "positive_rate": 0.11199999999999999, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-22", + "total_cases": 51304.0, + "new_cases": 340.0, + "new_cases_smoothed": 408.429, + "total_deaths": 996.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 248.88, + "new_cases_per_million": 1.649, + "new_cases_smoothed_per_million": 1.981, + "total_deaths_per_million": 4.832, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 4173.0, + "total_tests": 374077.0, + "total_tests_per_thousand": 1.815, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 3798.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 9.299, + "positive_rate": 0.10800000000000001, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-23", + "total_cases": 51905.0, + "new_cases": 601.0, + "new_cases_smoothed": 447.857, + "total_deaths": 997.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 251.795, + "new_cases_per_million": 2.916, + "new_cases_smoothed_per_million": 2.173, + "total_deaths_per_million": 4.837, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 3946.0, + "total_tests": 378023.0, + "total_tests_per_thousand": 1.834, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 3919.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 8.751, + "positive_rate": 0.114, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-24", + "total_cases": 52227.0, + "new_cases": 322.0, + "new_cases_smoothed": 451.286, + "total_deaths": 1002.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 253.357, + "new_cases_per_million": 1.562, + "new_cases_smoothed_per_million": 2.189, + "total_deaths_per_million": 4.861, + "new_deaths_per_million": 0.024, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 1519.0, + "total_tests": 379542.0, + "total_tests_per_thousand": 1.841, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 3845.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 8.52, + "positive_rate": 0.11699999999999999, + "tests_units": "samples tested", + "stringency_index": 59.26 + }, + { + "date": "2020-08-25", + "total_cases": 52548.0, + "new_cases": 321.0, + "new_cases_smoothed": 437.571, + "total_deaths": 1004.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 254.915, + "new_cases_per_million": 1.557, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 4.87, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3588.0, + "total_tests": 383130.0, + "total_tests_per_thousand": 1.859, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 3991.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 9.121, + "positive_rate": 0.11, + "tests_units": "samples tested" + }, + { + "date": "2020-08-26", + "total_cases": 52800.0, + "new_cases": 252.0, + "new_cases_smoothed": 415.0, + "total_deaths": 1007.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 256.137, + "new_cases_per_million": 1.222, + "new_cases_smoothed_per_million": 2.013, + "total_deaths_per_million": 4.885, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 5216.0, + "total_tests": 388346.0, + "total_tests_per_thousand": 1.884, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 3574.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 8.612, + "positive_rate": 0.11599999999999999, + "tests_units": "samples tested" + }, + { + "date": "2020-08-27", + "total_cases": 53021.0, + "new_cases": 221.0, + "new_cases_smoothed": 361.857, + "total_deaths": 1010.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 257.209, + "new_cases_per_million": 1.072, + "new_cases_smoothed_per_million": 1.755, + "total_deaths_per_million": 4.9, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 3156.0, + "total_tests": 391502.0, + "total_tests_per_thousand": 1.899, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3608.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 9.971, + "positive_rate": 0.1, + "tests_units": "samples tested" + }, + { + "date": "2020-08-28", + "total_cases": 53317.0, + "new_cases": 296.0, + "new_cases_smoothed": 336.143, + "total_deaths": 1011.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 258.645, + "new_cases_per_million": 1.436, + "new_cases_smoothed_per_million": 1.631, + "total_deaths_per_million": 4.904, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": 3022.0, + "total_tests": 394524.0, + "total_tests_per_thousand": 1.914, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3517.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 10.463, + "positive_rate": 0.096, + "tests_units": "samples tested" + }, + { + "date": "2020-08-29", + "total_cases": 53477.0, + "new_cases": 160.0, + "new_cases_smoothed": 310.429, + "total_deaths": 1011.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 259.421, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 1.506, + "total_deaths_per_million": 4.904, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3780.0, + "total_tests": 398304.0, + "total_tests_per_thousand": 1.932, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 3461.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 11.149000000000001, + "positive_rate": 0.09, + "tests_units": "samples tested" + }, + { + "date": "2020-08-30", + "total_cases": 53727.0, + "new_cases": 250.0, + "new_cases_smoothed": 260.286, + "total_deaths": 1011.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 260.634, + "new_cases_per_million": 1.213, + "new_cases_smoothed_per_million": 1.263, + "total_deaths_per_million": 4.904, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 3766.0, + "total_tests": 402070.0, + "total_tests_per_thousand": 1.95, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 3435.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 13.197000000000001, + "positive_rate": 0.076, + "tests_units": "samples tested" + }, + { + "date": "2020-08-31", + "total_cases": 53865.0, + "new_cases": 138.0, + "new_cases_smoothed": 234.0, + "total_deaths": 1013.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 261.304, + "new_cases_per_million": 0.669, + "new_cases_smoothed_per_million": 1.135, + "total_deaths_per_million": 4.914, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1277.0, + "total_tests": 403347.0, + "total_tests_per_thousand": 1.957, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 3401.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 14.534, + "positive_rate": 0.069, + "tests_units": "samples tested" + }, + { + "date": "2020-09-01", + "total_cases": 54008.0, + "new_cases": 143.0, + "new_cases_smoothed": 208.571, + "total_deaths": 1013.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 261.997, + "new_cases_per_million": 0.694, + "new_cases_smoothed_per_million": 1.012, + "total_deaths_per_million": 4.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 3440.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 16.493, + "positive_rate": 0.061, + "tests_units": "samples tested" + }, + { + "date": "2020-09-02", + "total_cases": 54247.0, + "new_cases": 239.0, + "new_cases_smoothed": 206.714, + "total_deaths": 1023.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 263.157, + "new_cases_per_million": 1.159, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 4.963, + "new_deaths_per_million": 0.049, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 411077.0, + "total_tests_per_thousand": 1.994, + "new_tests_smoothed": 3247.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 15.708, + "positive_rate": 0.064, + "tests_units": "samples tested" + }, + { + "date": "2020-09-03", + "total_cases": 54463.0, + "new_cases": 216.0, + "new_cases_smoothed": 206.0, + "total_deaths": 1027.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 264.204, + "new_cases_per_million": 1.048, + "new_cases_smoothed_per_million": 0.999, + "total_deaths_per_million": 4.982, + "new_deaths_per_million": 0.019, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 2188.0, + "total_tests": 413265.0, + "total_tests_per_thousand": 2.005, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 3109.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 15.092, + "positive_rate": 0.066, + "tests_units": "samples tested" + }, + { + "date": "2020-09-04", + "total_cases": 54587.0, + "new_cases": 124.0, + "new_cases_smoothed": 181.429, + "total_deaths": 1048.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 264.806, + "new_cases_per_million": 0.602, + "new_cases_smoothed_per_million": 0.88, + "total_deaths_per_million": 5.084, + "new_deaths_per_million": 0.102, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-05", + "total_cases": 54743.0, + "new_cases": 156.0, + "new_cases_smoothed": 180.857, + "total_deaths": 1051.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 265.563, + "new_cases_per_million": 0.757, + "new_cases_smoothed_per_million": 0.877, + "total_deaths_per_million": 5.098, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.028 + } + ] + }, + "MNP": { + "continent": "Oceania", + "location": "Northern Mariana Islands", + "population": 57557.0, + "population_density": 119.878, + "cardiovasc_death_rate": 194.994, + "life_expectancy": 76.74, + "data": [ + { + "date": "2020-03-31", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 34.748, + "new_cases_per_million": 34.748, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 6.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 104.244, + "new_cases_per_million": 69.496, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 104.244, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 17.374 + }, + { + "date": "2020-04-03", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 138.993, + "new_cases_per_million": 34.748, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 8.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 138.993, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 8.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 138.993, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.856, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 17.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 138.993, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 17.374, + "new_deaths_smoothed_per_million": 4.964 + }, + { + "date": "2020-04-09", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 52.122, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.115, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.482 + }, + { + "date": "2020-04-15", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.863, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.611, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 260.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.985, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 19.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 330.108, + "new_cases_per_million": 52.122, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 330.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 330.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 330.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 330.108, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.856, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.856, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.856, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 364.856, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 399.604, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 416.978, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 26.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 451.726, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 451.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 469.1, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 469.1, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 486.474, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 17.374, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 521.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 538.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 33.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 573.345, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 573.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 573.345, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 36.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 625.467, + "new_cases_per_million": 52.122, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 625.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 642.841, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 642.841, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 642.841, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 642.841, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 38.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.215, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.215, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 40.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.963, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 694.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 729.711, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 729.711, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 729.711, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 45.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 781.834, + "new_cases_per_million": 52.122, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 46.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 799.208, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 799.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 799.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.892, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 799.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 47.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 816.582, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 816.582, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 833.956, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 833.956, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 49.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 851.33, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 851.33, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 851.33, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 851.33, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 50.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.704, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.704, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.704, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 54.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 69.496, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.41, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.928, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 56.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.949, + "new_cases_per_million": 34.748, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 972.949, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.964, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 57.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 990.323, + "new_cases_per_million": 17.374, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 990.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 990.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.446, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 990.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.482, + "total_deaths_per_million": 34.748, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "NOR": { + "continent": "Europe", + "location": "Norway", + "population": 5421242.0, + "population_density": 14.462, + "median_age": 39.7, + "aged_65_older": 16.821, + "aged_70_older": 10.813, + "gdp_per_capita": 64800.057, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 114.316, + "diabetes_prevalence": 5.31, + "female_smokers": 19.6, + "male_smokers": 20.7, + "hospital_beds_per_thousand": 3.6, + "life_expectancy": 82.4, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 12.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 62.0, + "total_tests": 74.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.011, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 148.0, + "total_tests": 222.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.027, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.184, + "new_cases_per_million": 0.184, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 249.0, + "total_tests": 471.0, + "total_tests_per_thousand": 0.087, + "new_tests_per_thousand": 0.046, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.738, + "new_cases_per_million": 0.553, + "new_cases_smoothed_per_million": 0.105, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 290.0, + "total_tests": 761.0, + "total_tests_per_thousand": 0.14, + "new_tests_per_thousand": 0.053, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.107, + "new_cases_per_million": 0.369, + "new_cases_smoothed_per_million": 0.158, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 209.0, + "total_tests": 970.0, + "total_tests_per_thousand": 0.179, + "new_tests_per_thousand": 0.039, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 15.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.767, + "new_cases_per_million": 1.66, + "new_cases_smoothed_per_million": 0.395, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 235.0, + "total_tests": 1205.0, + "total_tests_per_thousand": 0.222, + "new_tests_per_thousand": 0.043, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.505, + "new_cases_per_million": 0.738, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 391.0, + "total_tests": 1596.0, + "total_tests_per_thousand": 0.294, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 226.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 83.26299999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 25.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.611, + "new_cases_per_million": 1.107, + "new_cases_smoothed_per_million": 0.659, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 380.0, + "total_tests": 1976.0, + "total_tests_per_thousand": 0.364, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 272.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 76.16, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 33.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.087, + "new_cases_per_million": 1.476, + "new_cases_smoothed_per_million": 0.87, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 341.0, + "total_tests": 2317.0, + "total_tests_per_thousand": 0.427, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 299.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 63.424, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 56.0, + "new_cases": 23.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.33, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 1.449, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 374.0, + "total_tests": 2691.0, + "total_tests_per_thousand": 0.496, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 317.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 40.345, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 86.0, + "new_cases": 30.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.864, + "new_cases_per_million": 5.534, + "new_cases_smoothed_per_million": 2.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 365.0, + "total_tests": 3056.0, + "total_tests_per_thousand": 0.564, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 113.0, + "new_cases": 27.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.844, + "new_cases_per_million": 4.98, + "new_cases_smoothed_per_million": 2.82, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 315.0, + "total_tests": 3371.0, + "total_tests_per_thousand": 0.622, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 22.439, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 147.0, + "new_cases": 34.0, + "new_cases_smoothed": 18.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.116, + "new_cases_per_million": 6.272, + "new_cases_smoothed_per_million": 3.478, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 408.0, + "total_tests": 3779.0, + "total_tests_per_thousand": 0.697, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 19.515, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 169.0, + "new_cases": 22.0, + "new_cases_smoothed": 21.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.174, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 3.953, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1484.0, + "total_tests": 5263.0, + "total_tests_per_thousand": 0.971, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 524.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 24.453000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 192.0, + "new_cases": 23.0, + "new_cases_smoothed": 23.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.416, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 4.401, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1686.0, + "total_tests": 6949.0, + "total_tests_per_thousand": 1.282, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 710.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 29.76, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 14.81 + }, + { + "date": "2020-03-11", + "total_cases": 277.0, + "new_cases": 85.0, + "new_cases_smoothed": 34.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.095, + "new_cases_per_million": 15.679, + "new_cases_smoothed_per_million": 6.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2085.0, + "total_tests": 9034.0, + "total_tests_per_thousand": 1.666, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 960.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 27.541, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 20.37 + }, + { + "date": "2020-03-12", + "total_cases": 489.0, + "new_cases": 212.0, + "new_cases_smoothed": 61.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.201, + "new_cases_per_million": 39.105, + "new_cases_smoothed_per_million": 11.41, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3017.0, + "total_tests": 12051.0, + "total_tests_per_thousand": 2.223, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 21.614, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-13", + "total_cases": 621.0, + "new_cases": 132.0, + "new_cases_smoothed": 76.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.549, + "new_cases_per_million": 24.349, + "new_cases_smoothed_per_million": 14.098, + "total_deaths_per_million": 0.184, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 4054.0, + "total_tests": 16105.0, + "total_tests_per_thousand": 2.971, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 1864.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 24.389, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 40.74 + }, + { + "date": "2020-03-14", + "total_cases": 621.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.549, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.386, + "total_deaths_per_million": 0.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2761.0, + "total_tests": 18866.0, + "total_tests_per_thousand": 3.48, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 2214.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 30.508000000000003, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-03-15", + "total_cases": 907.0, + "new_cases": 286.0, + "new_cases_smoothed": 108.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 167.305, + "new_cases_per_million": 52.755, + "new_cases_smoothed_per_million": 20.027, + "total_deaths_per_million": 0.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2870.0, + "total_tests": 21736.0, + "total_tests_per_thousand": 4.009, + "new_tests_per_thousand": 0.529, + "new_tests_smoothed": 2565.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 23.625, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-03-16", + "total_cases": 1077.0, + "new_cases": 170.0, + "new_cases_smoothed": 129.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 198.663, + "new_cases_per_million": 31.358, + "new_cases_smoothed_per_million": 23.927, + "total_deaths_per_million": 0.184, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 6263.0, + "total_tests": 27999.0, + "total_tests_per_thousand": 5.165, + "new_tests_per_thousand": 1.155, + "new_tests_smoothed": 3248.0, + "new_tests_smoothed_per_thousand": 0.599, + "tests_per_case": 25.04, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-17", + "total_cases": 1169.0, + "new_cases": 92.0, + "new_cases_smoothed": 139.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 215.633, + "new_cases_per_million": 16.97, + "new_cases_smoothed_per_million": 25.745, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 6586.0, + "total_tests": 34585.0, + "total_tests_per_thousand": 6.38, + "new_tests_per_thousand": 1.215, + "new_tests_smoothed": 3948.0, + "new_tests_smoothed_per_thousand": 0.728, + "tests_per_case": 28.287, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-18", + "total_cases": 1308.0, + "new_cases": 139.0, + "new_cases_smoothed": 147.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 241.273, + "new_cases_per_million": 25.64, + "new_cases_smoothed_per_million": 27.168, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 6827.0, + "total_tests": 41412.0, + "total_tests_per_thousand": 7.639, + "new_tests_per_thousand": 1.259, + "new_tests_smoothed": 4625.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 31.401999999999997, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-03-19", + "total_cases": 1423.0, + "new_cases": 115.0, + "new_cases_smoothed": 133.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 262.486, + "new_cases_per_million": 21.213, + "new_cases_smoothed_per_million": 24.612, + "total_deaths_per_million": 0.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5983.0, + "total_tests": 47395.0, + "total_tests_per_thousand": 8.742, + "new_tests_per_thousand": 1.104, + "new_tests_smoothed": 5049.0, + "new_tests_smoothed_per_thousand": 0.931, + "tests_per_case": 37.84, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-03-20", + "total_cases": 1552.0, + "new_cases": 129.0, + "new_cases_smoothed": 133.0, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 286.281, + "new_cases_per_million": 23.795, + "new_cases_smoothed_per_million": 24.533, + "total_deaths_per_million": 1.107, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5119.0, + "total_tests": 52514.0, + "total_tests_per_thousand": 9.687, + "new_tests_per_thousand": 0.944, + "new_tests_smoothed": 5201.0, + "new_tests_smoothed_per_thousand": 0.959, + "tests_per_case": 39.105, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-03-21", + "total_cases": 1742.0, + "new_cases": 190.0, + "new_cases_smoothed": 160.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 321.329, + "new_cases_per_million": 35.047, + "new_cases_smoothed_per_million": 29.54, + "total_deaths_per_million": 1.291, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 2507.0, + "total_tests": 55021.0, + "total_tests_per_thousand": 10.149, + "new_tests_per_thousand": 0.462, + "new_tests_smoothed": 5165.0, + "new_tests_smoothed_per_thousand": 0.953, + "tests_per_case": 32.251999999999995, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-03-22", + "total_cases": 1926.0, + "new_cases": 184.0, + "new_cases_smoothed": 145.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 355.269, + "new_cases_per_million": 33.941, + "new_cases_smoothed_per_million": 26.852, + "total_deaths_per_million": 1.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 1288.0, + "total_tests": 56309.0, + "total_tests_per_thousand": 10.387, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 4939.0, + "new_tests_smoothed_per_thousand": 0.911, + "tests_per_case": 33.928000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-03-23", + "total_cases": 2132.0, + "new_cases": 206.0, + "new_cases_smoothed": 150.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 393.268, + "new_cases_per_million": 37.999, + "new_cases_smoothed_per_million": 27.801, + "total_deaths_per_million": 1.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 3564.0, + "total_tests": 59873.0, + "total_tests_per_thousand": 11.044, + "new_tests_per_thousand": 0.657, + "new_tests_smoothed": 4553.0, + "new_tests_smoothed_per_thousand": 0.84, + "tests_per_case": 30.209, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-03-24", + "total_cases": 2371.0, + "new_cases": 239.0, + "new_cases_smoothed": 171.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 437.354, + "new_cases_per_million": 44.086, + "new_cases_smoothed_per_million": 31.674, + "total_deaths_per_million": 1.476, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 3528.0, + "total_tests": 63401.0, + "total_tests_per_thousand": 11.695, + "new_tests_per_thousand": 0.651, + "new_tests_smoothed": 4117.0, + "new_tests_smoothed_per_thousand": 0.759, + "tests_per_case": 23.976, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-25", + "total_cases": 2566.0, + "new_cases": 195.0, + "new_cases_smoothed": 179.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 473.323, + "new_cases_per_million": 35.97, + "new_cases_smoothed_per_million": 33.15, + "total_deaths_per_million": 1.845, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 3344.0, + "total_tests": 66745.0, + "total_tests_per_thousand": 12.312, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 3619.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 20.137999999999998, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-26", + "total_cases": 2916.0, + "new_cases": 350.0, + "new_cases_smoothed": 213.286, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 537.884, + "new_cases_per_million": 64.561, + "new_cases_smoothed_per_million": 39.343, + "total_deaths_per_million": 2.214, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3185.0, + "total_tests": 69930.0, + "total_tests_per_thousand": 12.899, + "new_tests_per_thousand": 0.588, + "new_tests_smoothed": 3219.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 15.092, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 3156.0, + "new_cases": 240.0, + "new_cases_smoothed": 229.143, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 582.154, + "new_cases_per_million": 44.27, + "new_cases_smoothed_per_million": 42.268, + "total_deaths_per_million": 2.582, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 3291.0, + "total_tests": 73221.0, + "total_tests_per_thousand": 13.506, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 2958.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 12.909, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 3581.0, + "new_cases": 425.0, + "new_cases_smoothed": 262.714, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 660.55, + "new_cases_per_million": 78.395, + "new_cases_smoothed_per_million": 48.46, + "total_deaths_per_million": 2.951, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 1801.0, + "total_tests": 75022.0, + "total_tests_per_thousand": 13.839, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 2857.0, + "new_tests_smoothed_per_thousand": 0.527, + "tests_per_case": 10.875, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 3845.0, + "new_cases": 264.0, + "new_cases_smoothed": 274.143, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 709.247, + "new_cases_per_million": 48.697, + "new_cases_smoothed_per_million": 50.568, + "total_deaths_per_million": 3.689, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 1243.0, + "total_tests": 76265.0, + "total_tests_per_thousand": 14.068, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 2851.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 10.4, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 4102.0, + "new_cases": 257.0, + "new_cases_smoothed": 281.429, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 756.653, + "new_cases_per_million": 47.406, + "new_cases_smoothed_per_million": 51.912, + "total_deaths_per_million": 4.058, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 3172.0, + "total_tests": 79437.0, + "total_tests_per_thousand": 14.653, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 2795.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 9.931000000000001, + "positive_rate": 0.10099999999999999, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 4226.0, + "new_cases": 124.0, + "new_cases_smoothed": 265.0, + "total_deaths": 26.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 779.526, + "new_cases_per_million": 22.873, + "new_cases_smoothed_per_million": 48.882, + "total_deaths_per_million": 4.796, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.474, + "new_tests": 3446.0, + "total_tests": 82883.0, + "total_tests_per_thousand": 15.289, + "new_tests_per_thousand": 0.636, + "new_tests_smoothed": 2783.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 10.502, + "positive_rate": 0.095, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 4447.0, + "new_cases": 221.0, + "new_cases_smoothed": 268.714, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 820.292, + "new_cases_per_million": 40.766, + "new_cases_smoothed_per_million": 49.567, + "total_deaths_per_million": 5.165, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.474, + "new_tests": 3716.0, + "total_tests": 86599.0, + "total_tests_per_thousand": 15.974, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 2836.0, + "new_tests_smoothed_per_thousand": 0.523, + "tests_per_case": 10.554, + "positive_rate": 0.095, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 4665.0, + "new_cases": 218.0, + "new_cases_smoothed": 249.857, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 860.504, + "new_cases_per_million": 40.212, + "new_cases_smoothed_per_million": 46.089, + "total_deaths_per_million": 5.903, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.527, + "new_tests": 3310.0, + "total_tests": 89909.0, + "total_tests_per_thousand": 16.585, + "new_tests_per_thousand": 0.611, + "new_tests_smoothed": 2854.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 11.423, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 4935.0, + "new_cases": 270.0, + "new_cases_smoothed": 254.143, + "total_deaths": 42.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 910.308, + "new_cases_per_million": 49.804, + "new_cases_smoothed_per_million": 46.879, + "total_deaths_per_million": 7.747, + "new_deaths_per_million": 1.845, + "new_deaths_smoothed_per_million": 0.738, + "new_tests": 3330.0, + "total_tests": 93239.0, + "total_tests_per_thousand": 17.199, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 2860.0, + "new_tests_smoothed_per_thousand": 0.528, + "tests_per_case": 11.254000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 5208.0, + "new_cases": 273.0, + "new_cases_smoothed": 232.429, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 960.665, + "new_cases_per_million": 50.357, + "new_cases_smoothed_per_million": 42.874, + "total_deaths_per_million": 8.116, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.738, + "new_tests": 1312.0, + "total_tests": 94551.0, + "total_tests_per_thousand": 17.441, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 2790.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 12.004000000000001, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 5510.0, + "new_cases": 302.0, + "new_cases_smoothed": 237.857, + "total_deaths": 50.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1016.372, + "new_cases_per_million": 55.707, + "new_cases_smoothed_per_million": 43.875, + "total_deaths_per_million": 9.223, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 0.791, + "new_tests": 1050.0, + "total_tests": 95601.0, + "total_tests_per_thousand": 17.635, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 2762.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 11.612, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 5640.0, + "new_cases": 130.0, + "new_cases_smoothed": 219.714, + "total_deaths": 58.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1040.352, + "new_cases_per_million": 23.98, + "new_cases_smoothed_per_million": 40.528, + "total_deaths_per_million": 10.699, + "new_deaths_per_million": 1.476, + "new_deaths_smoothed_per_million": 0.949, + "new_tests": 3265.0, + "total_tests": 98866.0, + "total_tests_per_thousand": 18.237, + "new_tests_per_thousand": 0.602, + "new_tests_smoothed": 2776.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 12.635, + "positive_rate": 0.079, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 5755.0, + "new_cases": 115.0, + "new_cases_smoothed": 218.429, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1061.565, + "new_cases_per_million": 21.213, + "new_cases_smoothed_per_million": 40.291, + "total_deaths_per_million": 10.883, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.87, + "new_tests": 2744.0, + "total_tests": 101610.0, + "total_tests_per_thousand": 18.743, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 2675.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 12.247, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 5863.0, + "new_cases": 108.0, + "new_cases_smoothed": 202.286, + "total_deaths": 69.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1081.486, + "new_cases_per_million": 19.922, + "new_cases_smoothed_per_million": 37.314, + "total_deaths_per_million": 12.728, + "new_deaths_per_million": 1.845, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 2086.0, + "total_tests": 103696.0, + "total_tests_per_thousand": 19.128, + "new_tests_per_thousand": 0.385, + "new_tests_smoothed": 2442.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 12.072000000000001, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 6010.0, + "new_cases": 147.0, + "new_cases_smoothed": 192.143, + "total_deaths": 80.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1108.602, + "new_cases_per_million": 27.116, + "new_cases_smoothed_per_million": 35.443, + "total_deaths_per_million": 14.757, + "new_deaths_per_million": 2.029, + "new_deaths_smoothed_per_million": 1.265, + "new_tests": 1211.0, + "total_tests": 104907.0, + "total_tests_per_thousand": 19.351, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 2143.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 11.152999999999999, + "positive_rate": 0.09, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 6160.0, + "new_cases": 150.0, + "new_cases_smoothed": 175.0, + "total_deaths": 88.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1136.271, + "new_cases_per_million": 27.669, + "new_cases_smoothed_per_million": 32.28, + "total_deaths_per_million": 16.232, + "new_deaths_per_million": 1.476, + "new_deaths_smoothed_per_million": 1.212, + "new_tests": 1236.0, + "total_tests": 106143.0, + "total_tests_per_thousand": 19.579, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1843.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 10.530999999999999, + "positive_rate": 0.095, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 6244.0, + "new_cases": 84.0, + "new_cases_smoothed": 148.0, + "total_deaths": 92.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1151.766, + "new_cases_per_million": 15.495, + "new_cases_smoothed_per_million": 27.3, + "total_deaths_per_million": 16.97, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 1.265, + "new_tests": 1301.0, + "total_tests": 107444.0, + "total_tests_per_thousand": 19.819, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 12.446, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 6320.0, + "new_cases": 76.0, + "new_cases_smoothed": 115.714, + "total_deaths": 98.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1165.785, + "new_cases_per_million": 14.019, + "new_cases_smoothed_per_million": 21.345, + "total_deaths_per_million": 18.077, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 1.265, + "new_tests": 1128.0, + "total_tests": 108572.0, + "total_tests_per_thousand": 20.027, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 1853.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 16.014, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 6415.0, + "new_cases": 95.0, + "new_cases_smoothed": 110.714, + "total_deaths": 103.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1183.308, + "new_cases_per_million": 17.524, + "new_cases_smoothed_per_million": 20.422, + "total_deaths_per_million": 18.999, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 1.186, + "new_tests": 1162.0, + "total_tests": 109734.0, + "total_tests_per_thousand": 20.241, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 1553.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 14.027000000000001, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 6488.0, + "new_cases": 73.0, + "new_cases_smoothed": 104.714, + "total_deaths": 114.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1196.774, + "new_cases_per_million": 13.466, + "new_cases_smoothed_per_million": 19.316, + "total_deaths_per_million": 21.028, + "new_deaths_per_million": 2.029, + "new_deaths_smoothed_per_million": 1.449, + "new_tests": 2972.0, + "total_tests": 112706.0, + "total_tests_per_thousand": 20.79, + "new_tests_per_thousand": 0.548, + "new_tests_smoothed": 1585.0, + "new_tests_smoothed_per_thousand": 0.292, + "tests_per_case": 15.136, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 6566.0, + "new_cases": 78.0, + "new_cases_smoothed": 100.429, + "total_deaths": 127.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1211.162, + "new_cases_per_million": 14.388, + "new_cases_smoothed_per_million": 18.525, + "total_deaths_per_million": 23.426, + "new_deaths_per_million": 2.398, + "new_deaths_smoothed_per_million": 1.528, + "new_tests": 3044.0, + "total_tests": 115750.0, + "total_tests_per_thousand": 21.351, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 1722.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 17.147000000000002, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 6677.0, + "new_cases": 111.0, + "new_cases_smoothed": 95.286, + "total_deaths": 130.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1231.637, + "new_cases_per_million": 20.475, + "new_cases_smoothed_per_million": 17.576, + "total_deaths_per_million": 23.98, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 1.318, + "new_tests": 2768.0, + "total_tests": 118518.0, + "total_tests_per_thousand": 21.862, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 1944.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 20.402, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 6791.0, + "new_cases": 114.0, + "new_cases_smoothed": 90.143, + "total_deaths": 136.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1252.665, + "new_cases_per_million": 21.028, + "new_cases_smoothed_per_million": 16.628, + "total_deaths_per_million": 25.087, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 1.265, + "new_tests": 2800.0, + "total_tests": 121318.0, + "total_tests_per_thousand": 22.378, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 2168.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 24.051, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 6791.0, + "new_cases": 0.0, + "new_cases_smoothed": 78.143, + "total_deaths": 136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1252.665, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.414, + "total_deaths_per_million": 25.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 1036.0, + "total_tests": 122354.0, + "total_tests_per_thousand": 22.569, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 2130.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 27.258000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 6984.0, + "new_cases": 193.0, + "new_cases_smoothed": 94.857, + "total_deaths": 148.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1288.266, + "new_cases_per_million": 35.601, + "new_cases_smoothed_per_million": 17.497, + "total_deaths_per_million": 27.3, + "new_deaths_per_million": 2.214, + "new_deaths_smoothed_per_million": 1.318, + "new_tests": 1022.0, + "total_tests": 123376.0, + "total_tests_per_thousand": 22.758, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 2115.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 22.296999999999997, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 7068.0, + "new_cases": 84.0, + "new_cases_smoothed": 93.286, + "total_deaths": 154.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1303.76, + "new_cases_per_million": 15.495, + "new_cases_smoothed_per_million": 17.207, + "total_deaths_per_million": 28.407, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 1.344, + "new_tests": 3391.0, + "total_tests": 126767.0, + "total_tests_per_thousand": 23.383, + "new_tests_per_thousand": 0.626, + "new_tests_smoothed": 2433.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 26.081, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-04-21", + "total_cases": 7113.0, + "new_cases": 45.0, + "new_cases_smoothed": 89.286, + "total_deaths": 154.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1312.061, + "new_cases_per_million": 8.301, + "new_cases_smoothed_per_million": 16.47, + "total_deaths_per_million": 28.407, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.054, + "new_tests": 3257.0, + "total_tests": 130024.0, + "total_tests_per_thousand": 23.984, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 2474.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 27.709, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-22", + "total_cases": 7166.0, + "new_cases": 53.0, + "new_cases_smoothed": 85.714, + "total_deaths": 163.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1321.837, + "new_cases_per_million": 9.776, + "new_cases_smoothed_per_million": 15.811, + "total_deaths_per_million": 30.067, + "new_deaths_per_million": 1.66, + "new_deaths_smoothed_per_million": 0.949, + "new_tests": 2977.0, + "total_tests": 133001.0, + "total_tests_per_thousand": 24.533, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 2464.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 28.747, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-23", + "total_cases": 7250.0, + "new_cases": 84.0, + "new_cases_smoothed": 81.857, + "total_deaths": 169.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1337.332, + "new_cases_per_million": 15.495, + "new_cases_smoothed_per_million": 15.099, + "total_deaths_per_million": 31.174, + "new_deaths_per_million": 1.107, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 2637.0, + "total_tests": 135638.0, + "total_tests_per_thousand": 25.02, + "new_tests_per_thousand": 0.486, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 29.881, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-24", + "total_cases": 7345.0, + "new_cases": 95.0, + "new_cases_smoothed": 79.143, + "total_deaths": 180.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1354.856, + "new_cases_per_million": 17.524, + "new_cases_smoothed_per_million": 14.599, + "total_deaths_per_million": 33.203, + "new_deaths_per_million": 2.029, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 2918.0, + "total_tests": 138556.0, + "total_tests_per_thousand": 25.558, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 31.121, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-25", + "total_cases": 7408.0, + "new_cases": 63.0, + "new_cases_smoothed": 88.143, + "total_deaths": 191.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1366.477, + "new_cases_per_million": 11.621, + "new_cases_smoothed_per_million": 16.259, + "total_deaths_per_million": 35.232, + "new_deaths_per_million": 2.029, + "new_deaths_smoothed_per_million": 1.449, + "new_tests": 984.0, + "total_tests": 139540.0, + "total_tests_per_thousand": 25.739, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 2455.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 27.853, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-26", + "total_cases": 7467.0, + "new_cases": 59.0, + "new_cases_smoothed": 69.0, + "total_deaths": 193.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1377.36, + "new_cases_per_million": 10.883, + "new_cases_smoothed_per_million": 12.728, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 1.186, + "new_tests": 851.0, + "total_tests": 140391.0, + "total_tests_per_thousand": 25.896, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 2431.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 35.232, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-27", + "total_cases": 7505.0, + "new_cases": 38.0, + "new_cases_smoothed": 62.429, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1384.369, + "new_cases_per_million": 7.009, + "new_cases_smoothed_per_million": 11.516, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 3639.0, + "total_tests": 144030.0, + "total_tests_per_thousand": 26.568, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 2466.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 39.501, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-28", + "total_cases": 7533.0, + "new_cases": 28.0, + "new_cases_smoothed": 60.0, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1389.534, + "new_cases_per_million": 5.165, + "new_cases_smoothed_per_million": 11.068, + "total_deaths_per_million": 35.601, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.028, + "new_tests": 3649.0, + "total_tests": 147679.0, + "total_tests_per_thousand": 27.241, + "new_tests_per_thousand": 0.673, + "new_tests_smoothed": 2522.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 42.033, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-29", + "total_cases": 7605.0, + "new_cases": 72.0, + "new_cases_smoothed": 62.714, + "total_deaths": 195.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1402.815, + "new_cases_per_million": 13.281, + "new_cases_smoothed_per_million": 11.568, + "total_deaths_per_million": 35.97, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 3473.0, + "total_tests": 151152.0, + "total_tests_per_thousand": 27.881, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 2593.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 41.346000000000004, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-04-30", + "total_cases": 7667.0, + "new_cases": 62.0, + "new_cases_smoothed": 59.571, + "total_deaths": 202.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1414.252, + "new_cases_per_million": 11.436, + "new_cases_smoothed_per_million": 10.989, + "total_deaths_per_million": 37.261, + "new_deaths_per_million": 1.291, + "new_deaths_smoothed_per_million": 0.87, + "new_tests": 4022.0, + "total_tests": 155174.0, + "total_tests_per_thousand": 28.623, + "new_tests_per_thousand": 0.742, + "new_tests_smoothed": 2791.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 46.851000000000006, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-01", + "total_cases": 7710.0, + "new_cases": 43.0, + "new_cases_smoothed": 52.143, + "total_deaths": 204.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1422.183, + "new_cases_per_million": 7.932, + "new_cases_smoothed_per_million": 9.618, + "total_deaths_per_million": 37.63, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.632, + "new_tests": 1320.0, + "total_tests": 156494.0, + "total_tests_per_thousand": 28.867, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 2563.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 49.153, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-02", + "total_cases": 7759.0, + "new_cases": 49.0, + "new_cases_smoothed": 50.143, + "total_deaths": 204.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1431.222, + "new_cases_per_million": 9.039, + "new_cases_smoothed_per_million": 9.249, + "total_deaths_per_million": 37.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 1370.0, + "total_tests": 157864.0, + "total_tests_per_thousand": 29.12, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 2618.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 52.211000000000006, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-03", + "total_cases": 7759.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.714, + "total_deaths": 204.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1431.222, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.695, + "total_deaths_per_million": 37.63, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.29, + "new_tests": 1103.0, + "total_tests": 158967.0, + "total_tests_per_thousand": 29.323, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 2654.0, + "new_tests_smoothed_per_thousand": 0.49, + "tests_per_case": 63.623000000000005, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-04", + "total_cases": 7809.0, + "new_cases": 50.0, + "new_cases_smoothed": 43.429, + "total_deaths": 208.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1440.445, + "new_cases_per_million": 9.223, + "new_cases_smoothed_per_million": 8.011, + "total_deaths_per_million": 38.368, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 4235.0, + "total_tests": 163202.0, + "total_tests_per_thousand": 30.104, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 2739.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 63.068999999999996, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-05", + "total_cases": 7847.0, + "new_cases": 38.0, + "new_cases_smoothed": 44.857, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1447.454, + "new_cases_per_million": 7.009, + "new_cases_smoothed_per_million": 8.274, + "total_deaths_per_million": 38.368, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 3893.0, + "total_tests": 167095.0, + "total_tests_per_thousand": 30.822, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 2774.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 61.841, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-06", + "total_cases": 7903.0, + "new_cases": 56.0, + "new_cases_smoothed": 42.571, + "total_deaths": 209.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1457.784, + "new_cases_per_million": 10.33, + "new_cases_smoothed_per_million": 7.853, + "total_deaths_per_million": 38.552, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 3821.0, + "total_tests": 170916.0, + "total_tests_per_thousand": 31.527, + "new_tests_per_thousand": 0.705, + "new_tests_smoothed": 2823.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 66.312, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-07", + "total_cases": 7953.0, + "new_cases": 50.0, + "new_cases_smoothed": 40.857, + "total_deaths": 209.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1467.007, + "new_cases_per_million": 9.223, + "new_cases_smoothed_per_million": 7.536, + "total_deaths_per_million": 38.552, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 3385.0, + "total_tests": 174301.0, + "total_tests_per_thousand": 32.151, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 2732.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 66.867, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-08", + "total_cases": 7995.0, + "new_cases": 42.0, + "new_cases_smoothed": 40.714, + "total_deaths": 209.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1474.754, + "new_cases_per_million": 7.747, + "new_cases_smoothed_per_million": 7.51, + "total_deaths_per_million": 38.552, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 3399.0, + "total_tests": 177700.0, + "total_tests_per_thousand": 32.778, + "new_tests_per_thousand": 0.627, + "new_tests_smoothed": 3029.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 74.396, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-09", + "total_cases": 8034.0, + "new_cases": 39.0, + "new_cases_smoothed": 39.286, + "total_deaths": 213.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1481.948, + "new_cases_per_million": 7.194, + "new_cases_smoothed_per_million": 7.247, + "total_deaths_per_million": 39.29, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 1162.0, + "total_tests": 178862.0, + "total_tests_per_thousand": 32.993, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 3000.0, + "new_tests_smoothed_per_thousand": 0.553, + "tests_per_case": 76.36399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-10", + "total_cases": 8069.0, + "new_cases": 35.0, + "new_cases_smoothed": 44.286, + "total_deaths": 213.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1488.404, + "new_cases_per_million": 6.456, + "new_cases_smoothed_per_million": 8.169, + "total_deaths_per_million": 39.29, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 849.0, + "total_tests": 179711.0, + "total_tests_per_thousand": 33.149, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 2963.0, + "new_tests_smoothed_per_thousand": 0.547, + "tests_per_case": 66.906, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-11", + "total_cases": 8099.0, + "new_cases": 30.0, + "new_cases_smoothed": 41.429, + "total_deaths": 217.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1493.938, + "new_cases_per_million": 5.534, + "new_cases_smoothed_per_million": 7.642, + "total_deaths_per_million": 40.028, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3946.0, + "total_tests": 183657.0, + "total_tests_per_thousand": 33.877, + "new_tests_per_thousand": 0.728, + "new_tests_smoothed": 2922.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 70.531, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-05-12", + "total_cases": 8106.0, + "new_cases": 7.0, + "new_cases_smoothed": 37.0, + "total_deaths": 224.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1495.229, + "new_cases_per_million": 1.291, + "new_cases_smoothed_per_million": 6.825, + "total_deaths_per_million": 41.319, + "new_deaths_per_million": 1.291, + "new_deaths_smoothed_per_million": 0.422, + "new_tests": 3825.0, + "total_tests": 187482.0, + "total_tests_per_thousand": 34.583, + "new_tests_per_thousand": 0.706, + "new_tests_smoothed": 2912.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 78.703, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-05-13", + "total_cases": 8135.0, + "new_cases": 29.0, + "new_cases_smoothed": 33.143, + "total_deaths": 228.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1500.579, + "new_cases_per_million": 5.349, + "new_cases_smoothed_per_million": 6.114, + "total_deaths_per_million": 42.057, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 3669.0, + "total_tests": 191151.0, + "total_tests_per_thousand": 35.26, + "new_tests_per_thousand": 0.677, + "new_tests_smoothed": 2891.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 87.228, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 60.19 + }, + { + "date": "2020-05-14", + "total_cases": 8158.0, + "new_cases": 23.0, + "new_cases_smoothed": 29.286, + "total_deaths": 229.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1504.821, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 5.402, + "total_deaths_per_million": 42.241, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.527, + "new_tests": 3768.0, + "total_tests": 194919.0, + "total_tests_per_thousand": 35.955, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 2945.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 100.561, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-15", + "total_cases": 8175.0, + "new_cases": 17.0, + "new_cases_smoothed": 25.714, + "total_deaths": 232.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 1507.957, + "new_cases_per_million": 3.136, + "new_cases_smoothed_per_million": 4.743, + "total_deaths_per_million": 42.795, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.606, + "new_tests": 3722.0, + "total_tests": 198641.0, + "total_tests_per_thousand": 36.641, + "new_tests_per_thousand": 0.687, + "new_tests_smoothed": 2992.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 116.35600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-16", + "total_cases": 8197.0, + "new_cases": 22.0, + "new_cases_smoothed": 23.286, + "total_deaths": 232.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1512.015, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 4.295, + "total_deaths_per_million": 42.795, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 1132.0, + "total_tests": 199773.0, + "total_tests_per_thousand": 36.85, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 2987.0, + "new_tests_smoothed_per_thousand": 0.551, + "tests_per_case": 128.276, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-17", + "total_cases": 8197.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.286, + "total_deaths": 232.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1512.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.373, + "total_deaths_per_million": 42.795, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 558.0, + "total_tests": 200331.0, + "total_tests_per_thousand": 36.953, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 2946.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 161.109, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-18", + "total_cases": 8197.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.0, + "total_deaths": 232.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1512.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.582, + "total_deaths_per_million": 42.795, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 3932.0, + "total_tests": 204263.0, + "total_tests_per_thousand": 37.678, + "new_tests_per_thousand": 0.725, + "new_tests_smoothed": 2944.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 210.28599999999997, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-19", + "total_cases": 8249.0, + "new_cases": 52.0, + "new_cases_smoothed": 20.429, + "total_deaths": 233.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1521.607, + "new_cases_per_million": 9.592, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 42.979, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.237, + "new_tests": 3822.0, + "total_tests": 208085.0, + "total_tests_per_thousand": 38.383, + "new_tests_per_thousand": 0.705, + "new_tests_smoothed": 2943.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 144.063, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-20", + "total_cases": 8257.0, + "new_cases": 8.0, + "new_cases_smoothed": 17.429, + "total_deaths": 233.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1523.083, + "new_cases_per_million": 1.476, + "new_cases_smoothed_per_million": 3.215, + "total_deaths_per_million": 42.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 3527.0, + "total_tests": 211612.0, + "total_tests_per_thousand": 39.034, + "new_tests_per_thousand": 0.651, + "new_tests_smoothed": 2923.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 167.713, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-21", + "total_cases": 8268.0, + "new_cases": 11.0, + "new_cases_smoothed": 15.714, + "total_deaths": 234.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1525.112, + "new_cases_per_million": 2.029, + "new_cases_smoothed_per_million": 2.899, + "total_deaths_per_million": 43.164, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 977.0, + "total_tests": 212589.0, + "total_tests_per_thousand": 39.214, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 2524.0, + "new_tests_smoothed_per_thousand": 0.466, + "tests_per_case": 160.618, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-22", + "total_cases": 8268.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 234.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1525.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.451, + "total_deaths_per_million": 43.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2939.0, + "total_tests": 215528.0, + "total_tests_per_thousand": 39.756, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 2412.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 181.548, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-23", + "total_cases": 8309.0, + "new_cases": 41.0, + "new_cases_smoothed": 16.0, + "total_deaths": 235.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1532.675, + "new_cases_per_million": 7.563, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 869.0, + "total_tests": 216397.0, + "total_tests_per_thousand": 39.916, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 2375.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 148.438, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-24", + "total_cases": 8309.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1532.675, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 738.0, + "total_tests": 217135.0, + "total_tests_per_thousand": 40.053, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 2401.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 150.062, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-25", + "total_cases": 8309.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.0, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1532.675, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.951, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 3556.0, + "total_tests": 220691.0, + "total_tests_per_thousand": 40.709, + "new_tests_per_thousand": 0.656, + "new_tests_smoothed": 2347.0, + "new_tests_smoothed_per_thousand": 0.433, + "tests_per_case": 146.688, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-26", + "total_cases": 8352.0, + "new_cases": 43.0, + "new_cases_smoothed": 14.714, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1540.606, + "new_cases_per_million": 7.932, + "new_cases_smoothed_per_million": 2.714, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2993.0, + "total_tests": 223684.0, + "total_tests_per_thousand": 41.261, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 2228.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 151.417, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-27", + "total_cases": 8364.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.286, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1542.82, + "new_cases_per_million": 2.214, + "new_cases_smoothed_per_million": 2.82, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2812.0, + "total_tests": 226496.0, + "total_tests_per_thousand": 41.779, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 2126.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 139.084, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-28", + "total_cases": 8383.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.429, + "total_deaths": 235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1546.325, + "new_cases_per_million": 3.505, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 43.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2458.0, + "total_tests": 228954.0, + "total_tests_per_thousand": 42.233, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 2338.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 142.313, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-29", + "total_cases": 8401.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.0, + "total_deaths": 236.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1549.645, + "new_cases_per_million": 3.32, + "new_cases_smoothed_per_million": 3.505, + "total_deaths_per_million": 43.532, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2239.0, + "total_tests": 231193.0, + "total_tests_per_thousand": 42.646, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 2238.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 117.789, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-30", + "total_cases": 8411.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.571, + "total_deaths": 236.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1551.489, + "new_cases_per_million": 1.845, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 43.532, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 669.0, + "total_tests": 231862.0, + "total_tests_per_thousand": 42.769, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 2209.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 151.59799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-05-31", + "total_cases": 8411.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 236.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1551.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 43.532, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 509.0, + "total_tests": 232371.0, + "total_tests_per_thousand": 42.863, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 2177.0, + "new_tests_smoothed_per_thousand": 0.402, + "tests_per_case": 149.40200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-01", + "total_cases": 8411.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 236.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1551.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 43.532, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 603.0, + "total_tests": 232974.0, + "total_tests_per_thousand": 42.974, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 0.324, + "tests_per_case": 120.441, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 54.63 + }, + { + "date": "2020-06-02", + "total_cases": 8411.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 236.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1551.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.555, + "total_deaths_per_million": 43.532, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2786.0, + "total_tests": 235760.0, + "total_tests_per_thousand": 43.488, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 1725.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 204.66099999999997, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-03", + "total_cases": 8446.0, + "new_cases": 35.0, + "new_cases_smoothed": 11.714, + "total_deaths": 237.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1557.946, + "new_cases_per_million": 6.456, + "new_cases_smoothed_per_million": 2.161, + "total_deaths_per_million": 43.717, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2485.0, + "total_tests": 238245.0, + "total_tests_per_thousand": 43.947, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 1678.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 143.244, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-04", + "total_cases": 8446.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 237.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1557.946, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.66, + "total_deaths_per_million": 43.717, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2543.0, + "total_tests": 240788.0, + "total_tests_per_thousand": 44.416, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 1691.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 187.889, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-05", + "total_cases": 8477.0, + "new_cases": 31.0, + "new_cases_smoothed": 10.857, + "total_deaths": 238.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1563.664, + "new_cases_per_million": 5.718, + "new_cases_smoothed_per_million": 2.003, + "total_deaths_per_million": 43.901, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 2519.0, + "total_tests": 243307.0, + "total_tests_per_thousand": 44.88, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_per_case": 159.434, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-06", + "total_cases": 8504.0, + "new_cases": 27.0, + "new_cases_smoothed": 13.286, + "total_deaths": 238.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1568.644, + "new_cases_per_million": 4.98, + "new_cases_smoothed_per_million": 2.451, + "total_deaths_per_million": 43.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 798.0, + "total_tests": 244105.0, + "total_tests_per_thousand": 45.028, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 1749.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 131.645, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-07", + "total_cases": 8504.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 238.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1568.644, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.451, + "total_deaths_per_million": 43.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 763.0, + "total_tests": 244868.0, + "total_tests_per_thousand": 45.168, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 1785.0, + "new_tests_smoothed_per_thousand": 0.329, + "tests_per_case": 134.355, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-08", + "total_cases": 8504.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 238.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1568.644, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.451, + "total_deaths_per_million": 43.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 5221.0, + "total_tests": 250089.0, + "total_tests_per_thousand": 46.131, + "new_tests_per_thousand": 0.963, + "new_tests_smoothed": 2445.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 184.032, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-09", + "total_cases": 8547.0, + "new_cases": 43.0, + "new_cases_smoothed": 19.429, + "total_deaths": 239.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1576.576, + "new_cases_per_million": 7.932, + "new_cases_smoothed_per_million": 3.584, + "total_deaths_per_million": 44.086, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 4802.0, + "total_tests": 254891.0, + "total_tests_per_thousand": 47.017, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 2733.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 140.66899999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-10", + "total_cases": 8563.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.714, + "total_deaths": 239.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1579.527, + "new_cases_per_million": 2.951, + "new_cases_smoothed_per_million": 3.083, + "total_deaths_per_million": 44.086, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4058.0, + "total_tests": 258949.0, + "total_tests_per_thousand": 47.766, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 2958.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 176.97400000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-11", + "total_cases": 8576.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.571, + "total_deaths": 239.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1581.925, + "new_cases_per_million": 2.398, + "new_cases_smoothed_per_million": 3.426, + "total_deaths_per_million": 44.086, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4364.0, + "total_tests": 263313.0, + "total_tests_per_thousand": 48.571, + "new_tests_per_thousand": 0.805, + "new_tests_smoothed": 3218.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 173.27700000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-12", + "total_cases": 8594.0, + "new_cases": 18.0, + "new_cases_smoothed": 16.714, + "total_deaths": 242.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1585.246, + "new_cases_per_million": 3.32, + "new_cases_smoothed_per_million": 3.083, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.553, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4130.0, + "total_tests": 267443.0, + "total_tests_per_thousand": 49.332, + "new_tests_per_thousand": 0.762, + "new_tests_smoothed": 3448.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 206.291, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-13", + "total_cases": 8606.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.571, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1587.459, + "new_cases_per_million": 2.214, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 1058.0, + "total_tests": 268501.0, + "total_tests_per_thousand": 49.528, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 3485.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 239.167, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-14", + "total_cases": 8606.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1587.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 972.0, + "total_tests": 269473.0, + "total_tests_per_thousand": 49.707, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 3515.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 241.225, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-06-15", + "total_cases": 8606.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1587.459, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5207.0, + "total_tests": 274680.0, + "total_tests_per_thousand": 50.667, + "new_tests_per_thousand": 0.96, + "new_tests_smoothed": 3513.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 241.088, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-16", + "total_cases": 8631.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.0, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1592.071, + "new_cases_per_million": 4.611, + "new_cases_smoothed_per_million": 2.214, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 4909.0, + "total_tests": 279589.0, + "total_tests_per_thousand": 51.573, + "new_tests_per_thousand": 0.906, + "new_tests_smoothed": 3528.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 294.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-17", + "total_cases": 8631.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1592.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.792, + "total_deaths_per_million": 44.639, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 4482.0, + "total_tests": 284071.0, + "total_tests_per_thousand": 52.4, + "new_tests_per_thousand": 0.827, + "new_tests_smoothed": 3589.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 369.45599999999996, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-18", + "total_cases": 8660.0, + "new_cases": 29.0, + "new_cases_smoothed": 12.0, + "total_deaths": 243.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1597.42, + "new_cases_per_million": 5.349, + "new_cases_smoothed_per_million": 2.214, + "total_deaths_per_million": 44.824, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4017.0, + "total_tests": 288088.0, + "total_tests_per_thousand": 53.141, + "new_tests_per_thousand": 0.741, + "new_tests_smoothed": 3539.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 294.91700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-19", + "total_cases": 8692.0, + "new_cases": 32.0, + "new_cases_smoothed": 14.0, + "total_deaths": 244.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1603.323, + "new_cases_per_million": 5.903, + "new_cases_smoothed_per_million": 2.582, + "total_deaths_per_million": 45.008, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3330.0, + "total_tests": 291418.0, + "total_tests_per_thousand": 53.755, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 3425.0, + "new_tests_smoothed_per_thousand": 0.632, + "tests_per_case": 244.643, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-20", + "total_cases": 8692.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.286, + "total_deaths": 244.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1603.323, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.266, + "total_deaths_per_million": 45.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 879.0, + "total_tests": 292297.0, + "total_tests_per_thousand": 53.917, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 3399.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 276.663, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-21", + "total_cases": 8708.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.571, + "total_deaths": 244.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1606.274, + "new_cases_per_million": 2.951, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 45.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 849.0, + "total_tests": 293146.0, + "total_tests_per_thousand": 54.074, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 3382.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 232.09799999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-22", + "total_cases": 8708.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 244.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1606.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 45.008, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4432.0, + "total_tests": 297578.0, + "total_tests_per_thousand": 54.891, + "new_tests_per_thousand": 0.818, + "new_tests_smoothed": 3271.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 224.48, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-23", + "total_cases": 8745.0, + "new_cases": 37.0, + "new_cases_smoothed": 16.286, + "total_deaths": 248.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1613.099, + "new_cases_per_million": 6.825, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 45.746, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 4082.0, + "total_tests": 301660.0, + "total_tests_per_thousand": 55.644, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 3153.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 193.605, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-24", + "total_cases": 8751.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.143, + "total_deaths": 248.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1614.206, + "new_cases_per_million": 1.107, + "new_cases_smoothed_per_million": 3.162, + "total_deaths_per_million": 45.746, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 4057.0, + "total_tests": 305717.0, + "total_tests_per_thousand": 56.392, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 3092.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 180.36700000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-25", + "total_cases": 8777.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.714, + "total_deaths": 249.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1619.002, + "new_cases_per_million": 4.796, + "new_cases_smoothed_per_million": 3.083, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 3615.0, + "total_tests": 309332.0, + "total_tests_per_thousand": 57.059, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 3035.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 181.581, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-26", + "total_cases": 8793.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.429, + "total_deaths": 249.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1621.953, + "new_cases_per_million": 2.951, + "new_cases_smoothed_per_million": 2.661, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 3415.0, + "total_tests": 312747.0, + "total_tests_per_thousand": 57.689, + "new_tests_per_thousand": 0.63, + "new_tests_smoothed": 3047.0, + "new_tests_smoothed_per_thousand": 0.562, + "tests_per_case": 211.178, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-27", + "total_cases": 8815.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.571, + "total_deaths": 249.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1626.011, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 3.241, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 896.0, + "total_tests": 313643.0, + "total_tests_per_thousand": 57.854, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 3049.0, + "new_tests_smoothed_per_thousand": 0.562, + "tests_per_case": 173.52, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-28", + "total_cases": 8815.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 249.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1626.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.82, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 802.0, + "total_tests": 314445.0, + "total_tests_per_thousand": 58.002, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 3043.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 199.075, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-29", + "total_cases": 8815.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 249.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1626.011, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.82, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5068.0, + "total_tests": 319513.0, + "total_tests_per_thousand": 58.937, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 3134.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 205.028, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-06-30", + "total_cases": 8855.0, + "new_cases": 40.0, + "new_cases_smoothed": 15.714, + "total_deaths": 249.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1633.39, + "new_cases_per_million": 7.378, + "new_cases_smoothed_per_million": 2.899, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 4343.0, + "total_tests": 323856.0, + "total_tests_per_thousand": 59.738, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 3171.0, + "new_tests_smoothed_per_thousand": 0.585, + "tests_per_case": 201.791, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-01", + "total_cases": 8865.0, + "new_cases": 10.0, + "new_cases_smoothed": 16.286, + "total_deaths": 250.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1635.234, + "new_cases_per_million": 1.845, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 46.115, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4385.0, + "total_tests": 328241.0, + "total_tests_per_thousand": 60.547, + "new_tests_per_thousand": 0.809, + "new_tests_smoothed": 3218.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 197.59599999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-02", + "total_cases": 8887.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.714, + "total_deaths": 251.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1639.292, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 2.899, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4042.0, + "total_tests": 332283.0, + "total_tests_per_thousand": 61.293, + "new_tests_per_thousand": 0.746, + "new_tests_smoothed": 3279.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 208.66400000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-03", + "total_cases": 8895.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.571, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1640.768, + "new_cases_per_million": 1.476, + "new_cases_smoothed_per_million": 2.688, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3832.0, + "total_tests": 336115.0, + "total_tests_per_thousand": 62.0, + "new_tests_per_thousand": 0.707, + "new_tests_smoothed": 3338.0, + "new_tests_smoothed_per_thousand": 0.616, + "tests_per_case": 229.078, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-04", + "total_cases": 8895.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1640.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.108, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 1157.0, + "total_tests": 337272.0, + "total_tests_per_thousand": 62.213, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 3376.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 295.4, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-05", + "total_cases": 8895.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1640.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.108, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 962.0, + "total_tests": 338234.0, + "total_tests_per_thousand": 62.391, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 3398.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 297.325, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-06", + "total_cases": 8895.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.429, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1640.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.108, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 5353.0, + "total_tests": 343587.0, + "total_tests_per_thousand": 63.378, + "new_tests_per_thousand": 0.987, + "new_tests_smoothed": 3439.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 300.91200000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-07", + "total_cases": 8930.0, + "new_cases": 35.0, + "new_cases_smoothed": 10.714, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1647.224, + "new_cases_per_million": 6.456, + "new_cases_smoothed_per_million": 1.976, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4560.0, + "total_tests": 348147.0, + "total_tests_per_thousand": 64.219, + "new_tests_per_thousand": 0.841, + "new_tests_smoothed": 3470.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 323.867, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-08", + "total_cases": 8936.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.143, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1648.331, + "new_cases_per_million": 1.107, + "new_cases_smoothed_per_million": 1.871, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 4471.0, + "total_tests": 352618.0, + "total_tests_per_thousand": 65.044, + "new_tests_per_thousand": 0.825, + "new_tests_smoothed": 3482.0, + "new_tests_smoothed_per_thousand": 0.642, + "tests_per_case": 343.296, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-09", + "total_cases": 8947.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.571, + "total_deaths": 251.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1650.36, + "new_cases_per_million": 2.029, + "new_cases_smoothed_per_million": 1.581, + "total_deaths_per_million": 46.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4069.0, + "total_tests": 356687.0, + "total_tests_per_thousand": 65.794, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 3486.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 406.7, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-10", + "total_cases": 8954.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.429, + "total_deaths": 252.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1651.651, + "new_cases_per_million": 1.291, + "new_cases_smoothed_per_million": 1.555, + "total_deaths_per_million": 46.484, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3996.0, + "total_tests": 360683.0, + "total_tests_per_thousand": 66.531, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 3510.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 416.441, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-11", + "total_cases": 8965.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.0, + "total_deaths": 252.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1653.68, + "new_cases_per_million": 2.029, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 46.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1128.0, + "total_tests": 361811.0, + "total_tests_per_thousand": 66.74, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 3506.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 350.6, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-12", + "total_cases": 8965.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 252.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1653.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 46.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 943.0, + "total_tests": 362754.0, + "total_tests_per_thousand": 66.913, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 3503.0, + "new_tests_smoothed_per_thousand": 0.646, + "tests_per_case": 350.3, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-13", + "total_cases": 8965.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 252.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1653.68, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 46.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 5363.0, + "total_tests": 368117.0, + "total_tests_per_thousand": 67.903, + "new_tests_per_thousand": 0.989, + "new_tests_smoothed": 3504.0, + "new_tests_smoothed_per_thousand": 0.646, + "tests_per_case": 350.4, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-14", + "total_cases": 8981.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.286, + "total_deaths": 253.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1656.631, + "new_cases_per_million": 2.951, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 46.668, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4513.0, + "total_tests": 372630.0, + "total_tests_per_thousand": 68.735, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 3498.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 480.11800000000005, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-15", + "total_cases": 8984.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.857, + "total_deaths": 253.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1657.185, + "new_cases_per_million": 0.553, + "new_cases_smoothed_per_million": 1.265, + "total_deaths_per_million": 46.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4603.0, + "total_tests": 377233.0, + "total_tests_per_thousand": 69.584, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 3516.0, + "new_tests_smoothed_per_thousand": 0.649, + "tests_per_case": 512.75, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-16", + "total_cases": 9001.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.714, + "total_deaths": 253.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1660.321, + "new_cases_per_million": 3.136, + "new_cases_smoothed_per_million": 1.423, + "total_deaths_per_million": 46.668, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3881.0, + "total_tests": 381114.0, + "total_tests_per_thousand": 70.3, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 3490.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 452.407, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-17", + "total_cases": 9011.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.143, + "total_deaths": 254.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1662.165, + "new_cases_per_million": 1.845, + "new_cases_smoothed_per_million": 1.502, + "total_deaths_per_million": 46.853, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3501.0, + "total_tests": 384615.0, + "total_tests_per_thousand": 70.946, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 3419.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 419.87699999999995, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-18", + "total_cases": 9015.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.143, + "total_deaths": 255.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1662.903, + "new_cases_per_million": 0.738, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 1153.0, + "total_tests": 385768.0, + "total_tests_per_thousand": 71.159, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 3422.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 479.08, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-19", + "total_cases": 9015.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1662.903, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 1073.0, + "total_tests": 386841.0, + "total_tests_per_thousand": 71.357, + "new_tests_per_thousand": 0.198, + "new_tests_smoothed": 3441.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 481.74, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-20", + "total_cases": 9015.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1662.903, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5111.0, + "total_tests": 391952.0, + "total_tests_per_thousand": 72.299, + "new_tests_per_thousand": 0.943, + "new_tests_smoothed": 3405.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 476.7, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-21", + "total_cases": 9028.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.714, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1665.301, + "new_cases_per_million": 2.398, + "new_cases_smoothed_per_million": 1.239, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4081.0, + "total_tests": 396033.0, + "total_tests_per_thousand": 73.052, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 3343.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 497.894, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-22", + "total_cases": 9038.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.714, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1667.146, + "new_cases_per_million": 1.845, + "new_cases_smoothed_per_million": 1.423, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4039.0, + "total_tests": 400072.0, + "total_tests_per_thousand": 73.797, + "new_tests_per_thousand": 0.745, + "new_tests_smoothed": 3263.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 422.981, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-23", + "total_cases": 9053.0, + "new_cases": 15.0, + "new_cases_smoothed": 7.429, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1669.913, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 1.37, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 3738.0, + "total_tests": 403810.0, + "total_tests_per_thousand": 74.487, + "new_tests_per_thousand": 0.69, + "new_tests_smoothed": 3242.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 436.423, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-24", + "total_cases": 9062.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.286, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1671.573, + "new_cases_per_million": 1.66, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3749.0, + "total_tests": 407559.0, + "total_tests_per_thousand": 75.178, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 3278.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 449.92199999999997, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-25", + "total_cases": 9085.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.0, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1675.815, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1397.0, + "total_tests": 408956.0, + "total_tests_per_thousand": 75.436, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 3313.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 331.3, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-26", + "total_cases": 9085.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1675.815, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1137.0, + "total_tests": 410093.0, + "total_tests_per_thousand": 75.646, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 3322.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 332.2, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-27", + "total_cases": 9085.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1675.815, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.845, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5686.0, + "total_tests": 415779.0, + "total_tests_per_thousand": 76.694, + "new_tests_per_thousand": 1.049, + "new_tests_smoothed": 3404.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 340.4, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-28", + "total_cases": 9117.0, + "new_cases": 32.0, + "new_cases_smoothed": 12.714, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1681.718, + "new_cases_per_million": 5.903, + "new_cases_smoothed_per_million": 2.345, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4850.0, + "total_tests": 420629.0, + "total_tests_per_thousand": 77.589, + "new_tests_per_thousand": 0.895, + "new_tests_smoothed": 3514.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 276.382, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-29", + "total_cases": 9132.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.429, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1684.485, + "new_cases_per_million": 2.767, + "new_cases_smoothed_per_million": 2.477, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4877.0, + "total_tests": 425506.0, + "total_tests_per_thousand": 78.489, + "new_tests_per_thousand": 0.9, + "new_tests_smoothed": 3633.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 270.543, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-30", + "total_cases": 9150.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.857, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1687.805, + "new_cases_per_million": 3.32, + "new_cases_smoothed_per_million": 2.556, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4601.0, + "total_tests": 430107.0, + "total_tests_per_thousand": 79.337, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 3757.0, + "new_tests_smoothed_per_thousand": 0.693, + "tests_per_case": 271.124, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-07-31", + "total_cases": 9172.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.714, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1691.863, + "new_cases_per_million": 4.058, + "new_cases_smoothed_per_million": 2.899, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4528.0, + "total_tests": 434635.0, + "total_tests_per_thousand": 80.173, + "new_tests_per_thousand": 0.835, + "new_tests_smoothed": 3868.0, + "new_tests_smoothed_per_thousand": 0.713, + "tests_per_case": 246.145, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-01", + "total_cases": 9208.0, + "new_cases": 36.0, + "new_cases_smoothed": 17.571, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1698.504, + "new_cases_per_million": 6.641, + "new_cases_smoothed_per_million": 3.241, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1723.0, + "total_tests": 436358.0, + "total_tests_per_thousand": 80.49, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 3915.0, + "new_tests_smoothed_per_thousand": 0.722, + "tests_per_case": 222.805, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-02", + "total_cases": 9208.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1698.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.241, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1454.0, + "total_tests": 437812.0, + "total_tests_per_thousand": 80.759, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 3960.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 225.36599999999999, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-03", + "total_cases": 9208.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 255.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1698.504, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.241, + "total_deaths_per_million": 47.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7642.0, + "total_tests": 445454.0, + "total_tests_per_thousand": 82.168, + "new_tests_per_thousand": 1.41, + "new_tests_smoothed": 4239.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 241.24400000000003, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-04", + "total_cases": 9268.0, + "new_cases": 60.0, + "new_cases_smoothed": 21.571, + "total_deaths": 256.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1709.571, + "new_cases_per_million": 11.068, + "new_cases_smoothed_per_million": 3.979, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 7027.0, + "total_tests": 452481.0, + "total_tests_per_thousand": 83.464, + "new_tests_per_thousand": 1.296, + "new_tests_smoothed": 4550.0, + "new_tests_smoothed_per_thousand": 0.839, + "tests_per_case": 210.92700000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-05", + "total_cases": 9333.0, + "new_cases": 65.0, + "new_cases_smoothed": 28.714, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1721.561, + "new_cases_per_million": 11.99, + "new_cases_smoothed_per_million": 5.297, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 7204.0, + "total_tests": 459685.0, + "total_tests_per_thousand": 84.793, + "new_tests_per_thousand": 1.329, + "new_tests_smoothed": 4883.0, + "new_tests_smoothed_per_thousand": 0.901, + "tests_per_case": 170.055, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-06", + "total_cases": 9362.0, + "new_cases": 29.0, + "new_cases_smoothed": 30.286, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1726.911, + "new_cases_per_million": 5.349, + "new_cases_smoothed_per_million": 5.586, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 7196.0, + "total_tests": 466881.0, + "total_tests_per_thousand": 86.121, + "new_tests_per_thousand": 1.327, + "new_tests_smoothed": 5253.0, + "new_tests_smoothed_per_thousand": 0.969, + "tests_per_case": 173.44799999999998, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-07", + "total_cases": 9409.0, + "new_cases": 47.0, + "new_cases_smoothed": 33.857, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1735.58, + "new_cases_per_million": 8.67, + "new_cases_smoothed_per_million": 6.245, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 7030.0, + "total_tests": 473911.0, + "total_tests_per_thousand": 87.417, + "new_tests_per_thousand": 1.297, + "new_tests_smoothed": 5611.0, + "new_tests_smoothed_per_thousand": 1.035, + "tests_per_case": 165.726, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-08", + "total_cases": 9468.0, + "new_cases": 59.0, + "new_cases_smoothed": 37.143, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1746.463, + "new_cases_per_million": 10.883, + "new_cases_smoothed_per_million": 6.851, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2727.0, + "total_tests": 476638.0, + "total_tests_per_thousand": 87.92, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 5754.0, + "new_tests_smoothed_per_thousand": 1.061, + "tests_per_case": 154.915, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-09", + "total_cases": 9468.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.143, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1746.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.851, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2571.0, + "total_tests": 479209.0, + "total_tests_per_thousand": 88.395, + "new_tests_per_thousand": 0.474, + "new_tests_smoothed": 5914.0, + "new_tests_smoothed_per_thousand": 1.091, + "tests_per_case": 159.22299999999998, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-10", + "total_cases": 9468.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.143, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1746.463, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.851, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 10995.0, + "total_tests": 490204.0, + "total_tests_per_thousand": 90.423, + "new_tests_per_thousand": 2.028, + "new_tests_smoothed": 6393.0, + "new_tests_smoothed_per_thousand": 1.179, + "tests_per_case": 172.11900000000003, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-11", + "total_cases": 9638.0, + "new_cases": 170.0, + "new_cases_smoothed": 52.857, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1777.821, + "new_cases_per_million": 31.358, + "new_cases_smoothed_per_million": 9.75, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10787.0, + "total_tests": 500991.0, + "total_tests_per_thousand": 92.413, + "new_tests_per_thousand": 1.99, + "new_tests_smoothed": 6930.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 131.108, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-12", + "total_cases": 9684.0, + "new_cases": 46.0, + "new_cases_smoothed": 50.143, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1786.307, + "new_cases_per_million": 8.485, + "new_cases_smoothed_per_million": 9.249, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11253.0, + "total_tests": 512244.0, + "total_tests_per_thousand": 94.488, + "new_tests_per_thousand": 2.076, + "new_tests_smoothed": 7508.0, + "new_tests_smoothed_per_thousand": 1.385, + "tests_per_case": 149.732, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-13", + "total_cases": 9750.0, + "new_cases": 66.0, + "new_cases_smoothed": 55.429, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1798.481, + "new_cases_per_million": 12.174, + "new_cases_smoothed_per_million": 10.224, + "total_deaths_per_million": 47.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11061.0, + "total_tests": 523305.0, + "total_tests_per_thousand": 96.529, + "new_tests_per_thousand": 2.04, + "new_tests_smoothed": 8061.0, + "new_tests_smoothed_per_thousand": 1.487, + "tests_per_case": 145.43, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-14", + "total_cases": 9783.0, + "new_cases": 33.0, + "new_cases_smoothed": 53.429, + "total_deaths": 257.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1804.568, + "new_cases_per_million": 6.087, + "new_cases_smoothed_per_million": 9.855, + "total_deaths_per_million": 47.406, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 11531.0, + "total_tests": 534836.0, + "total_tests_per_thousand": 98.656, + "new_tests_per_thousand": 2.127, + "new_tests_smoothed": 8704.0, + "new_tests_smoothed_per_thousand": 1.606, + "tests_per_case": 162.909, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-15", + "total_cases": 9850.0, + "new_cases": 67.0, + "new_cases_smoothed": 54.571, + "total_deaths": 261.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1816.927, + "new_cases_per_million": 12.359, + "new_cases_smoothed_per_million": 10.066, + "total_deaths_per_million": 48.144, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 5069.0, + "total_tests": 539905.0, + "total_tests_per_thousand": 99.591, + "new_tests_per_thousand": 0.935, + "new_tests_smoothed": 9038.0, + "new_tests_smoothed_per_thousand": 1.667, + "tests_per_case": 165.618, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-16", + "total_cases": 9850.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.571, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1816.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.066, + "total_deaths_per_million": 48.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 4344.0, + "total_tests": 544249.0, + "total_tests_per_thousand": 100.392, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 9291.0, + "new_tests_smoothed_per_thousand": 1.714, + "tests_per_case": 170.25400000000002, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-17", + "total_cases": 9850.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.571, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1816.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.066, + "total_deaths_per_million": 48.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 15050.0, + "total_tests": 559299.0, + "total_tests_per_thousand": 103.168, + "new_tests_per_thousand": 2.776, + "new_tests_smoothed": 9871.0, + "new_tests_smoothed_per_thousand": 1.821, + "tests_per_case": 180.882, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-18", + "total_cases": 10004.0, + "new_cases": 154.0, + "new_cases_smoothed": 52.286, + "total_deaths": 261.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1845.334, + "new_cases_per_million": 28.407, + "new_cases_smoothed_per_million": 9.645, + "total_deaths_per_million": 48.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 14026.0, + "total_tests": 573325.0, + "total_tests_per_thousand": 105.755, + "new_tests_per_thousand": 2.587, + "new_tests_smoothed": 10333.0, + "new_tests_smoothed_per_thousand": 1.906, + "tests_per_case": 197.62599999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-19", + "total_cases": 10060.0, + "new_cases": 56.0, + "new_cases_smoothed": 53.714, + "total_deaths": 262.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1855.663, + "new_cases_per_million": 10.33, + "new_cases_smoothed_per_million": 9.908, + "total_deaths_per_million": 48.328, + "new_deaths_per_million": 0.184, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 13673.0, + "total_tests": 586998.0, + "total_tests_per_thousand": 108.277, + "new_tests_per_thousand": 2.522, + "new_tests_smoothed": 10679.0, + "new_tests_smoothed_per_thousand": 1.97, + "tests_per_case": 198.81099999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-20", + "total_cases": 10111.0, + "new_cases": 51.0, + "new_cases_smoothed": 51.571, + "total_deaths": 262.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1865.071, + "new_cases_per_million": 9.407, + "new_cases_smoothed_per_million": 9.513, + "total_deaths_per_million": 48.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.158, + "new_tests": 13051.0, + "total_tests": 600049.0, + "total_tests_per_thousand": 110.685, + "new_tests_per_thousand": 2.407, + "new_tests_smoothed": 10963.0, + "new_tests_smoothed_per_thousand": 2.022, + "tests_per_case": 212.579, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 34.26 + }, + { + "date": "2020-08-21", + "total_cases": 10162.0, + "new_cases": 51.0, + "new_cases_smoothed": 54.143, + "total_deaths": 264.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1874.478, + "new_cases_per_million": 9.407, + "new_cases_smoothed_per_million": 9.987, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 12464.0, + "total_tests": 612513.0, + "total_tests_per_thousand": 112.984, + "new_tests_per_thousand": 2.299, + "new_tests_smoothed": 11097.0, + "new_tests_smoothed_per_thousand": 2.047, + "tests_per_case": 204.958, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-22", + "total_cases": 10197.0, + "new_cases": 35.0, + "new_cases_smoothed": 49.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1880.934, + "new_cases_per_million": 6.456, + "new_cases_smoothed_per_million": 9.144, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5642.0, + "total_tests": 618155.0, + "total_tests_per_thousand": 114.025, + "new_tests_per_thousand": 1.041, + "new_tests_smoothed": 11179.0, + "new_tests_smoothed_per_thousand": 2.062, + "tests_per_case": 225.513, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-23", + "total_cases": 10197.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1880.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.144, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 5738.0, + "total_tests": 623893.0, + "total_tests_per_thousand": 115.083, + "new_tests_per_thousand": 1.058, + "new_tests_smoothed": 11378.0, + "new_tests_smoothed_per_thousand": 2.099, + "tests_per_case": 229.52700000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-24", + "total_cases": 10197.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1880.934, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.144, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 17223.0, + "total_tests": 641116.0, + "total_tests_per_thousand": 118.26, + "new_tests_per_thousand": 3.177, + "new_tests_smoothed": 11688.0, + "new_tests_smoothed_per_thousand": 2.156, + "tests_per_case": 235.78099999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-08-25", + "total_cases": 10323.0, + "new_cases": 126.0, + "new_cases_smoothed": 45.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1904.176, + "new_cases_per_million": 23.242, + "new_cases_smoothed_per_million": 8.406, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 15463.0, + "total_tests": 656579.0, + "total_tests_per_thousand": 121.112, + "new_tests_per_thousand": 2.852, + "new_tests_smoothed": 11893.0, + "new_tests_smoothed_per_thousand": 2.194, + "tests_per_case": 260.975, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-26", + "total_cases": 10395.0, + "new_cases": 72.0, + "new_cases_smoothed": 47.857, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1917.457, + "new_cases_per_million": 13.281, + "new_cases_smoothed_per_million": 8.828, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 15389.0, + "total_tests": 671968.0, + "total_tests_per_thousand": 123.951, + "new_tests_per_thousand": 2.839, + "new_tests_smoothed": 12139.0, + "new_tests_smoothed_per_thousand": 2.239, + "tests_per_case": 253.65099999999998, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-27", + "total_cases": 10454.0, + "new_cases": 59.0, + "new_cases_smoothed": 49.0, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1928.34, + "new_cases_per_million": 10.883, + "new_cases_smoothed_per_million": 9.039, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 14120.0, + "total_tests": 686088.0, + "total_tests_per_thousand": 126.556, + "new_tests_per_thousand": 2.605, + "new_tests_smoothed": 12291.0, + "new_tests_smoothed_per_thousand": 2.267, + "tests_per_case": 250.83700000000002, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-28", + "total_cases": 10505.0, + "new_cases": 51.0, + "new_cases_smoothed": 49.0, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1937.748, + "new_cases_per_million": 9.407, + "new_cases_smoothed_per_million": 9.039, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13057.0, + "total_tests": 699145.0, + "total_tests_per_thousand": 128.964, + "new_tests_per_thousand": 2.408, + "new_tests_smoothed": 12376.0, + "new_tests_smoothed_per_thousand": 2.283, + "tests_per_case": 252.571, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 10543.0, + "new_cases": 38.0, + "new_cases_smoothed": 49.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1944.757, + "new_cases_per_million": 7.009, + "new_cases_smoothed_per_million": 9.118, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4741.0, + "total_tests": 703886.0, + "total_tests_per_thousand": 129.839, + "new_tests_per_thousand": 0.875, + "new_tests_smoothed": 12247.0, + "new_tests_smoothed_per_thousand": 2.259, + "tests_per_case": 247.77200000000002, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 10543.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1944.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.118, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4561.0, + "total_tests": 708447.0, + "total_tests_per_thousand": 130.68, + "new_tests_per_thousand": 0.841, + "new_tests_smoothed": 12079.0, + "new_tests_smoothed_per_thousand": 2.228, + "tests_per_case": 244.373, + "positive_rate": 0.004, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 10543.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1944.757, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.118, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2778.0, + "total_tests": 711225.0, + "total_tests_per_thousand": 131.192, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 10016.0, + "new_tests_smoothed_per_thousand": 1.848, + "tests_per_case": 202.636, + "positive_rate": 0.005, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 10644.0, + "new_cases": 101.0, + "new_cases_smoothed": 45.857, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1963.388, + "new_cases_per_million": 18.63, + "new_cases_smoothed_per_million": 8.459, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 10783.0, + "new_cases": 139.0, + "new_cases_smoothed": 55.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1989.028, + "new_cases_per_million": 25.64, + "new_cases_smoothed_per_million": 10.224, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 10871.0, + "new_cases": 88.0, + "new_cases_smoothed": 59.571, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2005.26, + "new_cases_per_million": 16.232, + "new_cases_smoothed_per_million": 10.989, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 11035.0, + "new_cases": 164.0, + "new_cases_smoothed": 75.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2035.511, + "new_cases_per_million": 30.251, + "new_cases_smoothed_per_million": 13.966, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 11120.0, + "new_cases": 85.0, + "new_cases_smoothed": 82.429, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2051.19, + "new_cases_per_million": 15.679, + "new_cases_smoothed_per_million": 15.205, + "total_deaths_per_million": 48.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "OMN": { + "continent": "Asia", + "location": "Oman", + "population": 5106622.0, + "population_density": 14.98, + "median_age": 30.7, + "aged_65_older": 2.355, + "aged_70_older": 1.53, + "gdp_per_capita": 37960.709, + "cardiovasc_death_rate": 266.342, + "diabetes_prevalence": 12.61, + "female_smokers": 0.5, + "male_smokers": 15.6, + "handwashing_facilities": 97.4, + "hospital_beds_per_thousand": 1.6, + "life_expectancy": 77.86, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.392, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.783, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.783, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.371, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 15.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.937, + "new_cases_per_million": 1.567, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-06", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.133, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 1.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 1.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 1.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-10", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.525, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.525, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.308, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.056, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-14", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.916, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-15", + "total_cases": 20.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-16", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.308, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-17", + "total_cases": 24.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.7, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.7, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-03-19", + "total_cases": 39.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.637, + "new_cases_per_million": 2.937, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-20", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-21", + "total_cases": 48.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.4, + "new_cases_per_million": 1.762, + "new_cases_smoothed_per_million": 0.783, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-22", + "total_cases": 52.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.183, + "new_cases_per_million": 0.783, + "new_cases_smoothed_per_million": 0.895, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-23", + "total_cases": 55.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.77, + "new_cases_per_million": 0.587, + "new_cases_smoothed_per_million": 0.923, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-24", + "total_cases": 66.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.924, + "new_cases_per_million": 2.154, + "new_cases_smoothed_per_million": 1.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-25", + "total_cases": 84.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.449, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 1.678, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-26", + "total_cases": 99.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.387, + "new_cases_per_million": 2.937, + "new_cases_smoothed_per_million": 1.678, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-27", + "total_cases": 109.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.345, + "new_cases_per_million": 1.958, + "new_cases_smoothed_per_million": 1.958, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-28", + "total_cases": 131.0, + "new_cases": 22.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.653, + "new_cases_per_million": 4.308, + "new_cases_smoothed_per_million": 2.322, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-29", + "total_cases": 152.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.765, + "new_cases_per_million": 4.112, + "new_cases_smoothed_per_million": 2.797, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-30", + "total_cases": 167.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.703, + "new_cases_per_million": 2.937, + "new_cases_smoothed_per_million": 3.133, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 179.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.053, + "new_cases_per_million": 2.35, + "new_cases_smoothed_per_million": 3.161, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 192.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.598, + "new_cases_per_million": 2.546, + "new_cases_smoothed_per_million": 3.021, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 210.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.123, + "new_cases_per_million": 3.525, + "new_cases_smoothed_per_million": 3.105, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 231.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.235, + "new_cases_per_million": 4.112, + "new_cases_smoothed_per_million": 3.413, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 231.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.235, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.797, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 277.0, + "new_cases": 46.0, + "new_cases_smoothed": 17.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 54.243, + "new_cases_per_million": 9.008, + "new_cases_smoothed_per_million": 3.497, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 298.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 58.356, + "new_cases_per_million": 4.112, + "new_cases_smoothed_per_million": 3.665, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 371.0, + "new_cases": 73.0, + "new_cases_smoothed": 27.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 72.651, + "new_cases_per_million": 14.295, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 419.0, + "new_cases": 48.0, + "new_cases_smoothed": 32.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.05, + "new_cases_per_million": 9.4, + "new_cases_smoothed_per_million": 6.35, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 419.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.847, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 457.0, + "new_cases": 38.0, + "new_cases_smoothed": 32.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 89.492, + "new_cases_per_million": 7.441, + "new_cases_smoothed_per_million": 6.322, + "total_deaths_per_million": 0.587, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-11", + "total_cases": 484.0, + "new_cases": 27.0, + "new_cases_smoothed": 36.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 94.779, + "new_cases_per_million": 5.287, + "new_cases_smoothed_per_million": 7.078, + "total_deaths_per_million": 0.587, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-12", + "total_cases": 546.0, + "new_cases": 62.0, + "new_cases_smoothed": 38.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.92, + "new_cases_per_million": 12.141, + "new_cases_smoothed_per_million": 7.525, + "total_deaths_per_million": 0.587, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 92.59 + }, + { + "date": "2020-04-13", + "total_cases": 599.0, + "new_cases": 53.0, + "new_cases_smoothed": 43.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 117.299, + "new_cases_per_million": 10.379, + "new_cases_smoothed_per_million": 8.42, + "total_deaths_per_million": 0.783, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-14", + "total_cases": 813.0, + "new_cases": 214.0, + "new_cases_smoothed": 63.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 159.205, + "new_cases_per_million": 41.906, + "new_cases_smoothed_per_million": 12.365, + "total_deaths_per_million": 0.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-15", + "total_cases": 910.0, + "new_cases": 97.0, + "new_cases_smoothed": 70.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 178.2, + "new_cases_per_million": 18.995, + "new_cases_smoothed_per_million": 13.736, + "total_deaths_per_million": 0.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-16", + "total_cases": 910.0, + "new_cases": 0.0, + "new_cases_smoothed": 70.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 178.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.736, + "total_deaths_per_million": 0.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-17", + "total_cases": 1019.0, + "new_cases": 109.0, + "new_cases_smoothed": 80.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.545, + "new_cases_per_million": 21.345, + "new_cases_smoothed_per_million": 15.722, + "total_deaths_per_million": 0.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 92.59 + }, + { + "date": "2020-04-18", + "total_cases": 1069.0, + "new_cases": 50.0, + "new_cases_smoothed": 83.571, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 209.336, + "new_cases_per_million": 9.791, + "new_cases_smoothed_per_million": 16.365, + "total_deaths_per_million": 1.175, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 92.59 + }, + { + "date": "2020-04-19", + "total_cases": 1180.0, + "new_cases": 111.0, + "new_cases_smoothed": 90.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 231.073, + "new_cases_per_million": 21.736, + "new_cases_smoothed_per_million": 17.736, + "total_deaths_per_million": 1.175, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 92.59 + }, + { + "date": "2020-04-20", + "total_cases": 1266.0, + "new_cases": 86.0, + "new_cases_smoothed": 95.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 247.913, + "new_cases_per_million": 16.841, + "new_cases_smoothed_per_million": 18.659, + "total_deaths_per_million": 1.371, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 92.59 + }, + { + "date": "2020-04-21", + "total_cases": 1508.0, + "new_cases": 242.0, + "new_cases_smoothed": 99.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 295.303, + "new_cases_per_million": 47.389, + "new_cases_smoothed_per_million": 19.443, + "total_deaths_per_million": 1.567, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 92.59 + }, + { + "date": "2020-04-22", + "total_cases": 1508.0, + "new_cases": 0.0, + "new_cases_smoothed": 85.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 295.303, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.729, + "total_deaths_per_million": 1.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 92.59 + }, + { + "date": "2020-04-23", + "total_cases": 1614.0, + "new_cases": 106.0, + "new_cases_smoothed": 100.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 316.06, + "new_cases_per_million": 20.757, + "new_cases_smoothed_per_million": 19.694, + "total_deaths_per_million": 1.567, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 92.59 + }, + { + "date": "2020-04-24", + "total_cases": 1716.0, + "new_cases": 102.0, + "new_cases_smoothed": 99.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 336.034, + "new_cases_per_million": 19.974, + "new_cases_smoothed_per_million": 19.498, + "total_deaths_per_million": 1.762, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 92.59 + }, + { + "date": "2020-04-25", + "total_cases": 1790.0, + "new_cases": 74.0, + "new_cases_smoothed": 103.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 350.525, + "new_cases_per_million": 14.491, + "new_cases_smoothed_per_million": 20.17, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 92.59 + }, + { + "date": "2020-04-26", + "total_cases": 1905.0, + "new_cases": 115.0, + "new_cases_smoothed": 103.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 373.045, + "new_cases_per_million": 22.52, + "new_cases_smoothed_per_million": 20.282, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 92.59 + }, + { + "date": "2020-04-27", + "total_cases": 1998.0, + "new_cases": 93.0, + "new_cases_smoothed": 104.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 391.257, + "new_cases_per_million": 18.212, + "new_cases_smoothed_per_million": 20.478, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 92.59 + }, + { + "date": "2020-04-28", + "total_cases": 2049.0, + "new_cases": 51.0, + "new_cases_smoothed": 77.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 401.244, + "new_cases_per_million": 9.987, + "new_cases_smoothed_per_million": 15.134, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-29", + "total_cases": 2131.0, + "new_cases": 82.0, + "new_cases_smoothed": 89.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 417.301, + "new_cases_per_million": 16.058, + "new_cases_smoothed_per_million": 17.428, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 92.59 + }, + { + "date": "2020-04-30", + "total_cases": 2274.0, + "new_cases": 143.0, + "new_cases_smoothed": 94.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 445.304, + "new_cases_per_million": 28.003, + "new_cases_smoothed_per_million": 18.463, + "total_deaths_per_million": 1.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 2348.0, + "new_cases": 74.0, + "new_cases_smoothed": 90.286, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 459.795, + "new_cases_per_million": 14.491, + "new_cases_smoothed_per_million": 17.68, + "total_deaths_per_million": 2.154, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 2447.0, + "new_cases": 99.0, + "new_cases_smoothed": 93.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 479.182, + "new_cases_per_million": 19.387, + "new_cases_smoothed_per_million": 18.379, + "total_deaths_per_million": 2.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 2483.0, + "new_cases": 36.0, + "new_cases_smoothed": 82.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 486.231, + "new_cases_per_million": 7.05, + "new_cases_smoothed_per_million": 16.169, + "total_deaths_per_million": 2.35, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 2568.0, + "new_cases": 85.0, + "new_cases_smoothed": 81.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 502.876, + "new_cases_per_million": 16.645, + "new_cases_smoothed_per_million": 15.946, + "total_deaths_per_million": 2.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 2637.0, + "new_cases": 69.0, + "new_cases_smoothed": 84.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 516.388, + "new_cases_per_million": 13.512, + "new_cases_smoothed_per_million": 16.449, + "total_deaths_per_million": 2.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-06", + "total_cases": 2735.0, + "new_cases": 98.0, + "new_cases_smoothed": 86.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 535.579, + "new_cases_per_million": 19.191, + "new_cases_smoothed_per_million": 16.897, + "total_deaths_per_million": 2.35, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 87.96 + }, + { + "date": "2020-05-07", + "total_cases": 2903.0, + "new_cases": 168.0, + "new_cases_smoothed": 89.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 568.478, + "new_cases_per_million": 32.898, + "new_cases_smoothed_per_million": 17.596, + "total_deaths_per_million": 2.546, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 87.96 + }, + { + "date": "2020-05-08", + "total_cases": 2958.0, + "new_cases": 55.0, + "new_cases_smoothed": 87.143, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 579.248, + "new_cases_per_million": 10.77, + "new_cases_smoothed_per_million": 17.065, + "total_deaths_per_million": 2.742, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 87.96 + }, + { + "date": "2020-05-09", + "total_cases": 3112.0, + "new_cases": 154.0, + "new_cases_smoothed": 95.0, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 609.405, + "new_cases_per_million": 30.157, + "new_cases_smoothed_per_million": 18.603, + "total_deaths_per_million": 2.937, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 87.96 + }, + { + "date": "2020-05-10", + "total_cases": 3224.0, + "new_cases": 112.0, + "new_cases_smoothed": 105.857, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 631.337, + "new_cases_per_million": 21.932, + "new_cases_smoothed_per_million": 20.729, + "total_deaths_per_million": 3.329, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-11", + "total_cases": 3399.0, + "new_cases": 175.0, + "new_cases_smoothed": 118.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 665.606, + "new_cases_per_million": 34.269, + "new_cases_smoothed_per_million": 23.247, + "total_deaths_per_million": 3.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-12", + "total_cases": 3574.0, + "new_cases": 175.0, + "new_cases_smoothed": 133.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 699.876, + "new_cases_per_million": 34.269, + "new_cases_smoothed_per_million": 26.212, + "total_deaths_per_million": 3.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-13", + "total_cases": 3721.0, + "new_cases": 147.0, + "new_cases_smoothed": 140.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 728.662, + "new_cases_per_million": 28.786, + "new_cases_smoothed_per_million": 27.583, + "total_deaths_per_million": 3.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-14", + "total_cases": 4019.0, + "new_cases": 298.0, + "new_cases_smoothed": 159.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 787.017, + "new_cases_per_million": 58.356, + "new_cases_smoothed_per_million": 31.22, + "total_deaths_per_million": 3.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 87.96 + }, + { + "date": "2020-05-15", + "total_cases": 4341.0, + "new_cases": 322.0, + "new_cases_smoothed": 197.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 850.073, + "new_cases_per_million": 63.055, + "new_cases_smoothed_per_million": 38.689, + "total_deaths_per_million": 3.721, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-16", + "total_cases": 4625.0, + "new_cases": 284.0, + "new_cases_smoothed": 216.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 905.687, + "new_cases_per_million": 55.614, + "new_cases_smoothed_per_million": 42.326, + "total_deaths_per_million": 3.721, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 87.96 + }, + { + "date": "2020-05-17", + "total_cases": 5029.0, + "new_cases": 404.0, + "new_cases_smoothed": 257.857, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 984.8, + "new_cases_per_million": 79.113, + "new_cases_smoothed_per_million": 50.495, + "total_deaths_per_million": 4.112, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 87.96 + }, + { + "date": "2020-05-18", + "total_cases": 5186.0, + "new_cases": 157.0, + "new_cases_smoothed": 255.286, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1015.544, + "new_cases_per_million": 30.744, + "new_cases_smoothed_per_million": 49.991, + "total_deaths_per_million": 4.308, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 87.96 + }, + { + "date": "2020-05-19", + "total_cases": 5379.0, + "new_cases": 193.0, + "new_cases_smoothed": 257.857, + "total_deaths": 26.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1053.338, + "new_cases_per_million": 37.794, + "new_cases_smoothed_per_million": 50.495, + "total_deaths_per_million": 5.091, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 0.252, + "stringency_index": 87.96 + }, + { + "date": "2020-05-20", + "total_cases": 5671.0, + "new_cases": 292.0, + "new_cases_smoothed": 278.571, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1110.519, + "new_cases_per_million": 57.181, + "new_cases_smoothed_per_million": 54.551, + "total_deaths_per_million": 5.287, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 87.96 + }, + { + "date": "2020-05-21", + "total_cases": 6043.0, + "new_cases": 372.0, + "new_cases_smoothed": 289.143, + "total_deaths": 30.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1183.365, + "new_cases_per_million": 72.847, + "new_cases_smoothed_per_million": 56.621, + "total_deaths_per_million": 5.875, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 86.11 + }, + { + "date": "2020-05-22", + "total_cases": 6370.0, + "new_cases": 327.0, + "new_cases_smoothed": 289.857, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1247.4, + "new_cases_per_million": 64.035, + "new_cases_smoothed_per_million": 56.761, + "total_deaths_per_million": 6.071, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.336, + "stringency_index": 86.11 + }, + { + "date": "2020-05-23", + "total_cases": 6794.0, + "new_cases": 424.0, + "new_cases_smoothed": 309.857, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1330.429, + "new_cases_per_million": 83.029, + "new_cases_smoothed_per_million": 60.678, + "total_deaths_per_million": 6.266, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 86.11 + }, + { + "date": "2020-05-24", + "total_cases": 7257.0, + "new_cases": 463.0, + "new_cases_smoothed": 318.286, + "total_deaths": 36.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1421.096, + "new_cases_per_million": 90.667, + "new_cases_smoothed_per_million": 62.328, + "total_deaths_per_million": 7.05, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 0.42, + "stringency_index": 86.11 + }, + { + "date": "2020-05-25", + "total_cases": 7770.0, + "new_cases": 513.0, + "new_cases_smoothed": 369.143, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1521.554, + "new_cases_per_million": 100.458, + "new_cases_smoothed_per_million": 72.287, + "total_deaths_per_million": 7.245, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.42, + "stringency_index": 86.11 + }, + { + "date": "2020-05-26", + "total_cases": 7770.0, + "new_cases": 0.0, + "new_cases_smoothed": 341.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1521.554, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.888, + "total_deaths_per_million": 7.245, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 86.11 + }, + { + "date": "2020-05-27", + "total_cases": 8118.0, + "new_cases": 348.0, + "new_cases_smoothed": 349.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1589.701, + "new_cases_per_million": 68.147, + "new_cases_smoothed_per_million": 68.455, + "total_deaths_per_million": 7.245, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 86.11 + }, + { + "date": "2020-05-28", + "total_cases": 8373.0, + "new_cases": 255.0, + "new_cases_smoothed": 332.857, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1639.636, + "new_cases_per_million": 49.935, + "new_cases_smoothed_per_million": 65.181, + "total_deaths_per_million": 7.441, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 86.11 + }, + { + "date": "2020-05-29", + "total_cases": 9009.0, + "new_cases": 636.0, + "new_cases_smoothed": 377.0, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1764.18, + "new_cases_per_million": 124.544, + "new_cases_smoothed_per_million": 73.826, + "total_deaths_per_million": 7.833, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.252, + "stringency_index": 86.11 + }, + { + "date": "2020-05-30", + "total_cases": 9820.0, + "new_cases": 811.0, + "new_cases_smoothed": 432.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1922.993, + "new_cases_per_million": 158.813, + "new_cases_smoothed_per_million": 84.652, + "total_deaths_per_million": 7.833, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 86.11 + }, + { + "date": "2020-05-31", + "total_cases": 10423.0, + "new_cases": 603.0, + "new_cases_smoothed": 452.286, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2041.075, + "new_cases_per_million": 118.082, + "new_cases_smoothed_per_million": 88.568, + "total_deaths_per_million": 8.225, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 86.11 + }, + { + "date": "2020-06-01", + "total_cases": 11437.0, + "new_cases": 1014.0, + "new_cases_smoothed": 523.857, + "total_deaths": 47.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2239.641, + "new_cases_per_million": 198.566, + "new_cases_smoothed_per_million": 102.584, + "total_deaths_per_million": 9.204, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 86.11 + }, + { + "date": "2020-06-02", + "total_cases": 12223.0, + "new_cases": 786.0, + "new_cases_smoothed": 636.143, + "total_deaths": 50.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2393.559, + "new_cases_per_million": 153.918, + "new_cases_smoothed_per_million": 124.572, + "total_deaths_per_million": 9.791, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 86.11 + }, + { + "date": "2020-06-03", + "total_cases": 12799.0, + "new_cases": 576.0, + "new_cases_smoothed": 668.714, + "total_deaths": 59.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2506.354, + "new_cases_per_million": 112.795, + "new_cases_smoothed_per_million": 130.95, + "total_deaths_per_million": 11.554, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 0.615, + "stringency_index": 86.11 + }, + { + "date": "2020-06-04", + "total_cases": 13537.0, + "new_cases": 738.0, + "new_cases_smoothed": 737.714, + "total_deaths": 67.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2650.872, + "new_cases_per_million": 144.518, + "new_cases_smoothed_per_million": 144.462, + "total_deaths_per_million": 13.12, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 0.811, + "new_tests": 2546.0, + "new_tests_per_thousand": 0.499, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-05", + "total_cases": 14316.0, + "new_cases": 779.0, + "new_cases_smoothed": 758.143, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2803.419, + "new_cases_per_million": 152.547, + "new_cases_smoothed_per_million": 148.463, + "total_deaths_per_million": 13.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 2463.0, + "new_tests_per_thousand": 0.482, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-06", + "total_cases": 15086.0, + "new_cases": 770.0, + "new_cases_smoothed": 752.286, + "total_deaths": 72.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2954.203, + "new_cases_per_million": 150.785, + "new_cases_smoothed_per_million": 147.316, + "total_deaths_per_million": 14.099, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 0.895, + "new_tests": 3128.0, + "new_tests_per_thousand": 0.613, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-07", + "total_cases": 16016.0, + "new_cases": 930.0, + "new_cases_smoothed": 799.0, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3136.32, + "new_cases_per_million": 182.116, + "new_cases_smoothed_per_million": 156.464, + "total_deaths_per_million": 14.099, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 2907.0, + "new_tests_per_thousand": 0.569, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-08", + "total_cases": 16882.0, + "new_cases": 866.0, + "new_cases_smoothed": 777.857, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3305.904, + "new_cases_per_million": 169.584, + "new_cases_smoothed_per_million": 152.323, + "total_deaths_per_million": 14.687, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.783, + "new_tests": 2697.0, + "new_tests_per_thousand": 0.528, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-09", + "total_cases": 17486.0, + "new_cases": 604.0, + "new_cases_smoothed": 751.857, + "total_deaths": 81.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3424.181, + "new_cases_per_million": 118.278, + "new_cases_smoothed_per_million": 147.232, + "total_deaths_per_million": 15.862, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.867, + "new_tests": 2688.0, + "new_tests_per_thousand": 0.526, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-10", + "total_cases": 18198.0, + "new_cases": 712.0, + "new_cases_smoothed": 771.286, + "total_deaths": 83.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 3563.608, + "new_cases_per_million": 139.427, + "new_cases_smoothed_per_million": 151.036, + "total_deaths_per_million": 16.253, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.671, + "new_tests": 2658.0, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 2727.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 3.536, + "positive_rate": 0.28300000000000003, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-11", + "total_cases": 18887.0, + "new_cases": 689.0, + "new_cases_smoothed": 764.286, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 3698.531, + "new_cases_per_million": 134.923, + "new_cases_smoothed_per_million": 149.666, + "total_deaths_per_million": 16.449, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.476, + "new_tests": 2747.0, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 2755.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 3.605, + "positive_rate": 0.27699999999999997, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-12", + "total_cases": 19954.0, + "new_cases": 1067.0, + "new_cases_smoothed": 805.429, + "total_deaths": 89.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3907.475, + "new_cases_per_million": 208.944, + "new_cases_smoothed_per_million": 157.722, + "total_deaths_per_million": 17.428, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 0.615, + "new_tests": 3502.0, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 2904.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 3.6060000000000003, + "positive_rate": 0.27699999999999997, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-06-13", + "total_cases": 21071.0, + "new_cases": 1117.0, + "new_cases_smoothed": 855.0, + "total_deaths": 96.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4126.211, + "new_cases_per_million": 218.736, + "new_cases_smoothed_per_million": 167.43, + "total_deaths_per_million": 18.799, + "new_deaths_per_million": 1.371, + "new_deaths_smoothed_per_million": 0.671, + "new_tests": 3135.0, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 2905.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 3.398, + "positive_rate": 0.294, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-14", + "total_cases": 22077.0, + "new_cases": 1006.0, + "new_cases_smoothed": 865.857, + "total_deaths": 99.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4323.21, + "new_cases_per_million": 196.999, + "new_cases_smoothed_per_million": 169.556, + "total_deaths_per_million": 19.387, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 3596.0, + "new_tests_per_thousand": 0.704, + "new_tests_smoothed": 3003.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 3.468, + "positive_rate": 0.28800000000000003, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-15", + "total_cases": 23481.0, + "new_cases": 1404.0, + "new_cases_smoothed": 942.714, + "total_deaths": 104.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4598.147, + "new_cases_per_million": 274.937, + "new_cases_smoothed_per_million": 184.606, + "total_deaths_per_million": 20.366, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 0.811, + "new_tests": 3283.0, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 3087.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 3.275, + "positive_rate": 0.305, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-16", + "total_cases": 24524.0, + "new_cases": 1043.0, + "new_cases_smoothed": 1005.429, + "total_deaths": 108.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4802.392, + "new_cases_per_million": 204.245, + "new_cases_smoothed_per_million": 196.887, + "total_deaths_per_million": 21.149, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 2627.0, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 3078.0, + "new_tests_smoothed_per_thousand": 0.603, + "tests_per_case": 3.0610000000000004, + "positive_rate": 0.327, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-17", + "total_cases": 25269.0, + "new_cases": 745.0, + "new_cases_smoothed": 1010.143, + "total_deaths": 114.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 4948.281, + "new_cases_per_million": 145.889, + "new_cases_smoothed_per_million": 197.81, + "total_deaths_per_million": 22.324, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.867, + "new_tests": 2797.0, + "new_tests_per_thousand": 0.548, + "new_tests_smoothed": 3098.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 3.0669999999999997, + "positive_rate": 0.326, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-18", + "total_cases": 26079.0, + "new_cases": 810.0, + "new_cases_smoothed": 1027.429, + "total_deaths": 116.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 5106.898, + "new_cases_per_million": 158.618, + "new_cases_smoothed_per_million": 201.195, + "total_deaths_per_million": 22.716, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.895, + "new_tests": 2347.0, + "new_tests_per_thousand": 0.46, + "new_tests_smoothed": 3041.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 2.96, + "positive_rate": 0.33799999999999997, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-19", + "total_cases": 26818.0, + "new_cases": 739.0, + "new_cases_smoothed": 980.571, + "total_deaths": 119.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5251.613, + "new_cases_per_million": 144.714, + "new_cases_smoothed_per_million": 192.02, + "total_deaths_per_million": 23.303, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 3317.0, + "new_tests_per_thousand": 0.65, + "new_tests_smoothed": 3015.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 3.075, + "positive_rate": 0.325, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-20", + "total_cases": 27670.0, + "new_cases": 852.0, + "new_cases_smoothed": 942.714, + "total_deaths": 125.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5418.455, + "new_cases_per_million": 166.842, + "new_cases_smoothed_per_million": 184.606, + "total_deaths_per_million": 24.478, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.811, + "new_tests": 2448.0, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 2916.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 3.093, + "positive_rate": 0.32299999999999995, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-21", + "total_cases": 28566.0, + "new_cases": 896.0, + "new_cases_smoothed": 927.0, + "total_deaths": 128.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5593.913, + "new_cases_per_million": 175.458, + "new_cases_smoothed_per_million": 181.529, + "total_deaths_per_million": 25.065, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.811, + "new_tests": 2804.0, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 2803.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 3.0239999999999996, + "positive_rate": 0.331, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-22", + "total_cases": 29471.0, + "new_cases": 905.0, + "new_cases_smoothed": 855.714, + "total_deaths": 131.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 5771.134, + "new_cases_per_million": 177.221, + "new_cases_smoothed_per_million": 167.57, + "total_deaths_per_million": 25.653, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 4544.0, + "new_tests_per_thousand": 0.89, + "new_tests_smoothed": 2983.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 3.486, + "positive_rate": 0.287, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-23", + "total_cases": 31076.0, + "new_cases": 1605.0, + "new_cases_smoothed": 936.0, + "total_deaths": 137.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 6085.432, + "new_cases_per_million": 314.298, + "new_cases_smoothed_per_million": 183.291, + "total_deaths_per_million": 26.828, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.811, + "new_tests": 3940.0, + "new_tests_per_thousand": 0.772, + "new_tests_smoothed": 3171.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 3.388, + "positive_rate": 0.295, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-24", + "total_cases": 32394.0, + "new_cases": 1318.0, + "new_cases_smoothed": 1017.857, + "total_deaths": 140.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 6343.528, + "new_cases_per_million": 258.096, + "new_cases_smoothed_per_million": 199.321, + "total_deaths_per_million": 27.415, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 0.727, + "new_tests": 3585.0, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 3284.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 3.2260000000000004, + "positive_rate": 0.31, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-25", + "total_cases": 33536.0, + "new_cases": 1142.0, + "new_cases_smoothed": 1065.286, + "total_deaths": 142.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 6567.159, + "new_cases_per_million": 223.631, + "new_cases_smoothed_per_million": 208.609, + "total_deaths_per_million": 27.807, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.727, + "new_tests": 3835.0, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 3496.0, + "new_tests_smoothed_per_thousand": 0.685, + "tests_per_case": 3.282, + "positive_rate": 0.305, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-26", + "total_cases": 34902.0, + "new_cases": 1366.0, + "new_cases_smoothed": 1154.857, + "total_deaths": 144.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 6834.655, + "new_cases_per_million": 267.496, + "new_cases_smoothed_per_million": 226.149, + "total_deaths_per_million": 28.199, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.699, + "new_tests": 4013.0, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 3596.0, + "new_tests_smoothed_per_thousand": 0.704, + "tests_per_case": 3.114, + "positive_rate": 0.321, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-27", + "total_cases": 36034.0, + "new_cases": 1132.0, + "new_cases_smoothed": 1194.857, + "total_deaths": 153.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7056.328, + "new_cases_per_million": 221.673, + "new_cases_smoothed_per_million": 233.982, + "total_deaths_per_million": 29.961, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 0.783, + "new_tests": 2508.0, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 3604.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 3.016, + "positive_rate": 0.332, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-28", + "total_cases": 36953.0, + "new_cases": 919.0, + "new_cases_smoothed": 1198.143, + "total_deaths": 159.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 7236.29, + "new_cases_per_million": 179.962, + "new_cases_smoothed_per_million": 234.625, + "total_deaths_per_million": 31.136, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.867, + "new_tests": 3292.0, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 3674.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 3.0660000000000003, + "positive_rate": 0.326, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-29", + "total_cases": 38150.0, + "new_cases": 1197.0, + "new_cases_smoothed": 1239.857, + "total_deaths": 163.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 7470.692, + "new_cases_per_million": 234.402, + "new_cases_smoothed_per_million": 242.794, + "total_deaths_per_million": 31.919, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 0.895, + "new_tests": 3191.0, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 3481.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 2.8080000000000003, + "positive_rate": 0.35600000000000004, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-06-30", + "total_cases": 39060.0, + "new_cases": 910.0, + "new_cases_smoothed": 1140.571, + "total_deaths": 169.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 7648.892, + "new_cases_per_million": 178.2, + "new_cases_smoothed_per_million": 223.351, + "total_deaths_per_million": 33.094, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 0.895, + "new_tests": 3121.0, + "new_tests_per_thousand": 0.611, + "new_tests_smoothed": 3364.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 2.949, + "positive_rate": 0.33899999999999997, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-01", + "total_cases": 40070.0, + "new_cases": 1010.0, + "new_cases_smoothed": 1096.571, + "total_deaths": 176.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 7846.674, + "new_cases_per_million": 197.782, + "new_cases_smoothed_per_million": 214.735, + "total_deaths_per_million": 34.465, + "new_deaths_per_million": 1.371, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 3533.0, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 3356.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 3.06, + "positive_rate": 0.327, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-02", + "total_cases": 41194.0, + "new_cases": 1124.0, + "new_cases_smoothed": 1094.0, + "total_deaths": 185.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 8066.781, + "new_cases_per_million": 220.106, + "new_cases_smoothed_per_million": 214.232, + "total_deaths_per_million": 36.227, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.203, + "new_tests": 4049.0, + "new_tests_per_thousand": 0.793, + "new_tests_smoothed": 3387.0, + "new_tests_smoothed_per_thousand": 0.663, + "tests_per_case": 3.096, + "positive_rate": 0.32299999999999995, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-03", + "total_cases": 42555.0, + "new_cases": 1361.0, + "new_cases_smoothed": 1093.286, + "total_deaths": 188.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 8333.297, + "new_cases_per_million": 266.517, + "new_cases_smoothed_per_million": 214.092, + "total_deaths_per_million": 36.815, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 3834.0, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 3361.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 3.074, + "positive_rate": 0.325, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-04", + "total_cases": 43929.0, + "new_cases": 1374.0, + "new_cases_smoothed": 1127.857, + "total_deaths": 193.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 8602.36, + "new_cases_per_million": 269.062, + "new_cases_smoothed_per_million": 220.862, + "total_deaths_per_million": 37.794, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 1.119, + "new_tests": 2992.0, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 3430.0, + "new_tests_smoothed_per_thousand": 0.672, + "tests_per_case": 3.0410000000000004, + "positive_rate": 0.32899999999999996, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-05", + "total_cases": 45106.0, + "new_cases": 1177.0, + "new_cases_smoothed": 1164.714, + "total_deaths": 203.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 8832.845, + "new_cases_per_million": 230.485, + "new_cases_smoothed_per_million": 228.079, + "total_deaths_per_million": 39.752, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 3515.0, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 3462.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 2.972, + "positive_rate": 0.336, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-06", + "total_cases": 46178.0, + "new_cases": 1072.0, + "new_cases_smoothed": 1146.857, + "total_deaths": 213.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 9042.768, + "new_cases_per_million": 209.924, + "new_cases_smoothed_per_million": 224.582, + "total_deaths_per_million": 41.711, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.399, + "new_tests": 3852.0, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 3557.0, + "new_tests_smoothed_per_thousand": 0.697, + "tests_per_case": 3.102, + "positive_rate": 0.322, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-07", + "total_cases": 47735.0, + "new_cases": 1557.0, + "new_cases_smoothed": 1239.286, + "total_deaths": 218.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 9347.667, + "new_cases_per_million": 304.898, + "new_cases_smoothed_per_million": 242.682, + "total_deaths_per_million": 42.69, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 1.371, + "new_tests": 4007.0, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 3683.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 2.972, + "positive_rate": 0.336, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-08", + "total_cases": 48997.0, + "new_cases": 1262.0, + "new_cases_smoothed": 1275.286, + "total_deaths": 224.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 9594.797, + "new_cases_per_million": 247.13, + "new_cases_smoothed_per_million": 249.732, + "total_deaths_per_million": 43.865, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.343, + "new_tests": 3987.0, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 3748.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 2.9389999999999996, + "positive_rate": 0.34, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-09", + "total_cases": 50207.0, + "new_cases": 1210.0, + "new_cases_smoothed": 1287.571, + "total_deaths": 233.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 9831.744, + "new_cases_per_million": 236.947, + "new_cases_smoothed_per_million": 252.138, + "total_deaths_per_million": 45.627, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.343, + "new_tests": 5456.0, + "new_tests_per_thousand": 1.068, + "new_tests_smoothed": 3949.0, + "new_tests_smoothed_per_thousand": 0.773, + "tests_per_case": 3.0669999999999997, + "positive_rate": 0.326, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-10", + "total_cases": 51725.0, + "new_cases": 1518.0, + "new_cases_smoothed": 1310.0, + "total_deaths": 236.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 10129.005, + "new_cases_per_million": 297.261, + "new_cases_smoothed_per_million": 256.53, + "total_deaths_per_million": 46.215, + "new_deaths_per_million": 0.587, + "new_deaths_smoothed_per_million": 1.343, + "new_tests": 4574.0, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 4055.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 3.095, + "positive_rate": 0.32299999999999995, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-11", + "total_cases": 53614.0, + "new_cases": 1889.0, + "new_cases_smoothed": 1383.571, + "total_deaths": 244.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 10498.917, + "new_cases_per_million": 369.912, + "new_cases_smoothed_per_million": 270.937, + "total_deaths_per_million": 47.781, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.427, + "new_tests": 3833.0, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 4175.0, + "new_tests_smoothed_per_thousand": 0.818, + "tests_per_case": 3.0180000000000002, + "positive_rate": 0.331, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-12", + "total_cases": 54697.0, + "new_cases": 1083.0, + "new_cases_smoothed": 1370.143, + "total_deaths": 248.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 10710.994, + "new_cases_per_million": 212.078, + "new_cases_smoothed_per_million": 268.307, + "total_deaths_per_million": 48.564, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.259, + "new_tests": 3570.0, + "new_tests_per_thousand": 0.699, + "new_tests_smoothed": 4183.0, + "new_tests_smoothed_per_thousand": 0.819, + "tests_per_case": 3.053, + "positive_rate": 0.32799999999999996, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-13", + "total_cases": 56015.0, + "new_cases": 1318.0, + "new_cases_smoothed": 1405.286, + "total_deaths": 257.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 10969.091, + "new_cases_per_million": 258.096, + "new_cases_smoothed_per_million": 275.189, + "total_deaths_per_million": 50.327, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 6173.0, + "new_tests_per_thousand": 1.209, + "new_tests_smoothed": 4514.0, + "new_tests_smoothed_per_thousand": 0.884, + "tests_per_case": 3.2119999999999997, + "positive_rate": 0.311, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-14", + "total_cases": 58179.0, + "new_cases": 2164.0, + "new_cases_smoothed": 1492.0, + "total_deaths": 259.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 11392.854, + "new_cases_per_million": 423.763, + "new_cases_smoothed_per_million": 292.17, + "total_deaths_per_million": 50.718, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 1.147, + "new_tests": 4044.0, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 4520.0, + "new_tests_smoothed_per_thousand": 0.885, + "tests_per_case": 3.029, + "positive_rate": 0.33, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-15", + "total_cases": 59568.0, + "new_cases": 1389.0, + "new_cases_smoothed": 1510.143, + "total_deaths": 273.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 11664.854, + "new_cases_per_million": 272.0, + "new_cases_smoothed_per_million": 295.722, + "total_deaths_per_million": 53.46, + "new_deaths_per_million": 2.742, + "new_deaths_smoothed_per_million": 1.371, + "new_tests": 4613.0, + "new_tests_per_thousand": 0.903, + "new_tests_smoothed": 4609.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 3.052, + "positive_rate": 0.32799999999999996, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-16", + "total_cases": 61247.0, + "new_cases": 1679.0, + "new_cases_smoothed": 1577.143, + "total_deaths": 281.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 11993.643, + "new_cases_per_million": 328.789, + "new_cases_smoothed_per_million": 308.843, + "total_deaths_per_million": 55.027, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.343, + "new_tests": 4704.0, + "new_tests_per_thousand": 0.921, + "new_tests_smoothed": 4502.0, + "new_tests_smoothed_per_thousand": 0.882, + "tests_per_case": 2.855, + "positive_rate": 0.35, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-17", + "total_cases": 62574.0, + "new_cases": 1327.0, + "new_cases_smoothed": 1549.857, + "total_deaths": 290.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 12253.501, + "new_cases_per_million": 259.859, + "new_cases_smoothed_per_million": 303.499, + "total_deaths_per_million": 56.789, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.511, + "new_tests": 4721.0, + "new_tests_per_thousand": 0.924, + "new_tests_smoothed": 4523.0, + "new_tests_smoothed_per_thousand": 0.886, + "tests_per_case": 2.918, + "positive_rate": 0.34299999999999997, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-18", + "total_cases": 64193.0, + "new_cases": 1619.0, + "new_cases_smoothed": 1511.286, + "total_deaths": 298.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 12570.541, + "new_cases_per_million": 317.039, + "new_cases_smoothed_per_million": 295.946, + "total_deaths_per_million": 58.356, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.511, + "new_tests": 3976.0, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 4543.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 3.0060000000000002, + "positive_rate": 0.33299999999999996, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-19", + "total_cases": 65504.0, + "new_cases": 1311.0, + "new_cases_smoothed": 1543.857, + "total_deaths": 308.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 12827.266, + "new_cases_per_million": 256.725, + "new_cases_smoothed_per_million": 302.325, + "total_deaths_per_million": 60.314, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.678, + "new_tests": 3943.0, + "new_tests_per_thousand": 0.772, + "new_tests_smoothed": 4596.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 2.977, + "positive_rate": 0.336, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-20", + "total_cases": 66661.0, + "new_cases": 1157.0, + "new_cases_smoothed": 1520.857, + "total_deaths": 318.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 13053.835, + "new_cases_per_million": 226.569, + "new_cases_smoothed_per_million": 297.821, + "total_deaths_per_million": 62.272, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.706, + "new_tests": 3957.0, + "new_tests_per_thousand": 0.775, + "new_tests_smoothed": 4280.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 2.8139999999999996, + "positive_rate": 0.355, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-21", + "total_cases": 68400.0, + "new_cases": 1739.0, + "new_cases_smoothed": 1460.143, + "total_deaths": 326.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 13394.373, + "new_cases_per_million": 340.538, + "new_cases_smoothed_per_million": 285.931, + "total_deaths_per_million": 63.839, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.874, + "new_tests": 4701.0, + "new_tests_per_thousand": 0.921, + "new_tests_smoothed": 4374.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 2.9960000000000004, + "positive_rate": 0.33399999999999996, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-22", + "total_cases": 69887.0, + "new_cases": 1487.0, + "new_cases_smoothed": 1474.143, + "total_deaths": 337.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 13685.564, + "new_cases_per_million": 291.191, + "new_cases_smoothed_per_million": 288.673, + "total_deaths_per_million": 65.993, + "new_deaths_per_million": 2.154, + "new_deaths_smoothed_per_million": 1.79, + "new_tests": 4798.0, + "new_tests_per_thousand": 0.94, + "new_tests_smoothed": 4400.0, + "new_tests_smoothed_per_thousand": 0.862, + "tests_per_case": 2.985, + "positive_rate": 0.335, + "tests_units": "units unclear", + "stringency_index": 87.96 + }, + { + "date": "2020-07-23", + "total_cases": 71547.0, + "new_cases": 1660.0, + "new_cases_smoothed": 1471.429, + "total_deaths": 349.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 14010.632, + "new_cases_per_million": 325.068, + "new_cases_smoothed_per_million": 288.141, + "total_deaths_per_million": 68.343, + "new_deaths_per_million": 2.35, + "new_deaths_smoothed_per_million": 1.902, + "new_tests": 3344.0, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 4206.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 2.858, + "positive_rate": 0.35, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-07-24", + "total_cases": 72646.0, + "new_cases": 1099.0, + "new_cases_smoothed": 1438.857, + "total_deaths": 355.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 14225.842, + "new_cases_per_million": 215.211, + "new_cases_smoothed_per_million": 281.763, + "total_deaths_per_million": 69.518, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.818, + "new_tests": 3138.0, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 3980.0, + "new_tests_smoothed_per_thousand": 0.779, + "tests_per_case": 2.766, + "positive_rate": 0.36200000000000004, + "tests_units": "units unclear", + "stringency_index": 86.11 + }, + { + "date": "2020-07-25", + "total_cases": 73791.0, + "new_cases": 1145.0, + "new_cases_smoothed": 1371.143, + "total_deaths": 359.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 14450.061, + "new_cases_per_million": 224.219, + "new_cases_smoothed_per_million": 268.503, + "total_deaths_per_million": 70.301, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.706, + "new_tests": 3076.0, + "new_tests_per_thousand": 0.602, + "new_tests_smoothed": 3851.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 2.8089999999999997, + "positive_rate": 0.35600000000000004, + "tests_units": "units unclear", + "stringency_index": 100.0 + }, + { + "date": "2020-07-26", + "total_cases": 74858.0, + "new_cases": 1067.0, + "new_cases_smoothed": 1336.286, + "total_deaths": 371.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 14659.006, + "new_cases_per_million": 208.944, + "new_cases_smoothed_per_million": 261.677, + "total_deaths_per_million": 72.651, + "new_deaths_per_million": 2.35, + "new_deaths_smoothed_per_million": 1.762, + "new_tests": 3187.0, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 3743.0, + "new_tests_smoothed_per_thousand": 0.733, + "tests_per_case": 2.801, + "positive_rate": 0.35700000000000004, + "tests_units": "units unclear", + "stringency_index": 100.0 + }, + { + "date": "2020-07-27", + "total_cases": 76005.0, + "new_cases": 1147.0, + "new_cases_smoothed": 1334.857, + "total_deaths": 384.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 14883.616, + "new_cases_per_million": 224.61, + "new_cases_smoothed_per_million": 261.397, + "total_deaths_per_million": 75.196, + "new_deaths_per_million": 2.546, + "new_deaths_smoothed_per_million": 1.846, + "new_tests": 3504.0, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 3678.0, + "new_tests_smoothed_per_thousand": 0.72, + "tests_per_case": 2.755, + "positive_rate": 0.363, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-07-28", + "total_cases": 77058.0, + "new_cases": 1053.0, + "new_cases_smoothed": 1236.857, + "total_deaths": 393.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 15089.819, + "new_cases_per_million": 206.203, + "new_cases_smoothed_per_million": 242.207, + "total_deaths_per_million": 76.959, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.874, + "new_tests": 1904.0, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 3279.0, + "new_tests_smoothed_per_thousand": 0.642, + "tests_per_case": 2.6510000000000002, + "positive_rate": 0.377, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-07-29", + "total_cases": 77904.0, + "new_cases": 846.0, + "new_cases_smoothed": 1145.286, + "total_deaths": 402.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 15255.486, + "new_cases_per_million": 165.667, + "new_cases_smoothed_per_million": 224.275, + "total_deaths_per_million": 78.721, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.818, + "new_tests": 1314.0, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 2781.0, + "new_tests_smoothed_per_thousand": 0.545, + "tests_per_case": 2.428, + "positive_rate": 0.41200000000000003, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-07-30", + "total_cases": 78569.0, + "new_cases": 665.0, + "new_cases_smoothed": 1003.143, + "total_deaths": 412.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 15385.709, + "new_cases_per_million": 130.223, + "new_cases_smoothed_per_million": 196.44, + "total_deaths_per_million": 80.68, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.762, + "new_tests": 1940.0, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 2580.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 2.572, + "positive_rate": 0.389, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-07-31", + "total_cases": 79159.0, + "new_cases": 590.0, + "new_cases_smoothed": 930.429, + "total_deaths": 421.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 115.536, + "new_cases_smoothed_per_million": 182.2, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.846, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-01", + "total_cases": 79159.0, + "new_cases": 0.0, + "new_cases_smoothed": 766.857, + "total_deaths": 421.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 150.169, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.734, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-02", + "total_cases": 79159.0, + "new_cases": 0.0, + "new_cases_smoothed": 614.429, + "total_deaths": 421.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 120.32, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.399, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-03", + "total_cases": 79159.0, + "new_cases": 0.0, + "new_cases_smoothed": 450.571, + "total_deaths": 421.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 88.233, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.035, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-04", + "total_cases": 79159.0, + "new_cases": 0.0, + "new_cases_smoothed": 300.143, + "total_deaths": 421.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 58.775, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.783, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-05", + "total_cases": 79159.0, + "new_cases": 0.0, + "new_cases_smoothed": 179.286, + "total_deaths": 421.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 15501.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.108, + "total_deaths_per_million": 82.442, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 2682.0, + "new_tests_per_thousand": 0.525, + "tests_units": "units unclear", + "stringency_index": 94.44 + }, + { + "date": "2020-08-06", + "total_cases": 80286.0, + "new_cases": 1127.0, + "new_cases_smoothed": 245.286, + "total_deaths": 488.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 15721.939, + "new_cases_per_million": 220.694, + "new_cases_smoothed_per_million": 48.033, + "total_deaths_per_million": 95.562, + "new_deaths_per_million": 13.12, + "new_deaths_smoothed_per_million": 2.126, + "stringency_index": 94.44 + }, + { + "date": "2020-08-07", + "total_cases": 80713.0, + "new_cases": 427.0, + "new_cases_smoothed": 222.0, + "total_deaths": 492.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 15805.556, + "new_cases_per_million": 83.617, + "new_cases_smoothed_per_million": 43.473, + "total_deaths_per_million": 96.345, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.986, + "stringency_index": 94.44 + }, + { + "date": "2020-08-08", + "total_cases": 81067.0, + "new_cases": 354.0, + "new_cases_smoothed": 272.571, + "total_deaths": 502.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 15874.878, + "new_cases_per_million": 69.322, + "new_cases_smoothed_per_million": 53.376, + "total_deaths_per_million": 98.304, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 2.266, + "stringency_index": 89.81 + }, + { + "date": "2020-08-09", + "total_cases": 81357.0, + "new_cases": 290.0, + "new_cases_smoothed": 314.0, + "total_deaths": 509.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 15931.667, + "new_cases_per_million": 56.789, + "new_cases_smoothed_per_million": 61.489, + "total_deaths_per_million": 99.675, + "new_deaths_per_million": 1.371, + "new_deaths_smoothed_per_million": 2.462, + "stringency_index": 89.81 + }, + { + "date": "2020-08-10", + "total_cases": 81580.0, + "new_cases": 223.0, + "new_cases_smoothed": 345.857, + "total_deaths": 513.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 15975.336, + "new_cases_per_million": 43.669, + "new_cases_smoothed_per_million": 67.727, + "total_deaths_per_million": 100.458, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 2.574, + "stringency_index": 89.81 + }, + { + "date": "2020-08-11", + "total_cases": 81787.0, + "new_cases": 207.0, + "new_cases_smoothed": 375.429, + "total_deaths": 521.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 16015.871, + "new_cases_per_million": 40.536, + "new_cases_smoothed_per_million": 73.518, + "total_deaths_per_million": 102.024, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 2.797, + "stringency_index": 89.81 + }, + { + "date": "2020-08-12", + "total_cases": 82050.0, + "new_cases": 263.0, + "new_cases_smoothed": 413.0, + "total_deaths": 533.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 16067.373, + "new_cases_per_million": 51.502, + "new_cases_smoothed_per_million": 80.875, + "total_deaths_per_million": 104.374, + "new_deaths_per_million": 2.35, + "new_deaths_smoothed_per_million": 3.133, + "stringency_index": 89.81 + }, + { + "date": "2020-08-13", + "total_cases": 82299.0, + "new_cases": 249.0, + "new_cases_smoothed": 287.571, + "total_deaths": 539.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 16116.133, + "new_cases_per_million": 48.76, + "new_cases_smoothed_per_million": 56.313, + "total_deaths_per_million": 105.549, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.427, + "stringency_index": 89.81 + }, + { + "date": "2020-08-14", + "total_cases": 82531.0, + "new_cases": 232.0, + "new_cases_smoothed": 259.714, + "total_deaths": 551.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 16161.564, + "new_cases_per_million": 45.431, + "new_cases_smoothed_per_million": 50.858, + "total_deaths_per_million": 107.899, + "new_deaths_per_million": 2.35, + "new_deaths_smoothed_per_million": 1.651, + "stringency_index": 89.81 + }, + { + "date": "2020-08-15", + "total_cases": 82743.0, + "new_cases": 212.0, + "new_cases_smoothed": 239.429, + "total_deaths": 557.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 16203.079, + "new_cases_per_million": 41.515, + "new_cases_smoothed_per_million": 46.886, + "total_deaths_per_million": 109.074, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.539, + "stringency_index": 89.81 + }, + { + "date": "2020-08-16", + "total_cases": 82924.0, + "new_cases": 181.0, + "new_cases_smoothed": 223.857, + "total_deaths": 562.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 16238.523, + "new_cases_per_million": 35.444, + "new_cases_smoothed_per_million": 43.837, + "total_deaths_per_million": 110.053, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 1.483, + "stringency_index": 89.81 + }, + { + "date": "2020-08-17", + "total_cases": 83086.0, + "new_cases": 162.0, + "new_cases_smoothed": 215.143, + "total_deaths": 572.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 16270.247, + "new_cases_per_million": 31.724, + "new_cases_smoothed_per_million": 42.13, + "total_deaths_per_million": 112.011, + "new_deaths_per_million": 1.958, + "new_deaths_smoothed_per_million": 1.651, + "stringency_index": 89.81 + }, + { + "date": "2020-08-18", + "total_cases": 83226.0, + "new_cases": 140.0, + "new_cases_smoothed": 205.571, + "total_deaths": 588.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 16297.662, + "new_cases_per_million": 27.415, + "new_cases_smoothed_per_million": 40.256, + "total_deaths_per_million": 115.145, + "new_deaths_per_million": 3.133, + "new_deaths_smoothed_per_million": 1.874, + "stringency_index": 86.11 + }, + { + "date": "2020-08-19", + "total_cases": 83418.0, + "new_cases": 192.0, + "new_cases_smoothed": 195.429, + "total_deaths": 597.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 16335.26, + "new_cases_per_million": 37.598, + "new_cases_smoothed_per_million": 38.27, + "total_deaths_per_million": 116.907, + "new_deaths_per_million": 1.762, + "new_deaths_smoothed_per_million": 1.79, + "stringency_index": 86.11 + }, + { + "date": "2020-08-20", + "total_cases": 83606.0, + "new_cases": 188.0, + "new_cases_smoothed": 186.714, + "total_deaths": 603.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 16372.075, + "new_cases_per_million": 36.815, + "new_cases_smoothed_per_million": 36.563, + "total_deaths_per_million": 118.082, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.79, + "stringency_index": 86.11 + }, + { + "date": "2020-08-21", + "total_cases": 83769.0, + "new_cases": 163.0, + "new_cases_smoothed": 176.857, + "total_deaths": 609.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 16403.995, + "new_cases_per_million": 31.919, + "new_cases_smoothed_per_million": 34.633, + "total_deaths_per_million": 119.257, + "new_deaths_per_million": 1.175, + "new_deaths_smoothed_per_million": 1.623, + "stringency_index": 86.11 + }, + { + "date": "2020-08-22", + "total_cases": 83769.0, + "new_cases": 0.0, + "new_cases_smoothed": 146.571, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 16403.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.702, + "total_deaths_per_million": 119.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.455, + "stringency_index": 86.11 + }, + { + "date": "2020-08-23", + "total_cases": 83769.0, + "new_cases": 0.0, + "new_cases_smoothed": 120.714, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 16403.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.639, + "total_deaths_per_million": 119.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.315, + "stringency_index": 86.11 + }, + { + "date": "2020-08-24", + "total_cases": 83769.0, + "new_cases": 0.0, + "new_cases_smoothed": 97.571, + "total_deaths": 609.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 16403.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.107, + "total_deaths_per_million": 119.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.035, + "stringency_index": 86.11 + }, + { + "date": "2020-08-25", + "total_cases": 84509.0, + "new_cases": 740.0, + "new_cases_smoothed": 183.286, + "total_deaths": 637.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 16548.905, + "new_cases_per_million": 144.91, + "new_cases_smoothed_per_million": 35.892, + "total_deaths_per_million": 124.74, + "new_deaths_per_million": 5.483, + "new_deaths_smoothed_per_million": 1.371, + "stringency_index": 86.11 + }, + { + "date": "2020-08-26", + "total_cases": 84652.0, + "new_cases": 143.0, + "new_cases_smoothed": 176.286, + "total_deaths": 642.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 16576.907, + "new_cases_per_million": 28.003, + "new_cases_smoothed_per_million": 34.521, + "total_deaths_per_million": 125.719, + "new_deaths_per_million": 0.979, + "new_deaths_smoothed_per_million": 1.259, + "stringency_index": 86.11 + }, + { + "date": "2020-08-27", + "total_cases": 84818.0, + "new_cases": 166.0, + "new_cases_smoothed": 173.143, + "total_deaths": 646.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 16609.414, + "new_cases_per_million": 32.507, + "new_cases_smoothed_per_million": 33.906, + "total_deaths_per_million": 126.502, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.203, + "stringency_index": 86.11 + }, + { + "date": "2020-08-28", + "total_cases": 85005.0, + "new_cases": 187.0, + "new_cases_smoothed": 176.571, + "total_deaths": 650.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 16646.033, + "new_cases_per_million": 36.619, + "new_cases_smoothed_per_million": 34.577, + "total_deaths_per_million": 127.286, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.147, + "stringency_index": 86.11 + }, + { + "date": "2020-08-29", + "total_cases": 85005.0, + "new_cases": 0.0, + "new_cases_smoothed": 176.571, + "total_deaths": 650.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 16646.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.577, + "total_deaths_per_million": 127.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.147, + "stringency_index": 86.11 + }, + { + "date": "2020-08-30", + "total_cases": 85005.0, + "new_cases": 0.0, + "new_cases_smoothed": 176.571, + "total_deaths": 650.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 16646.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.577, + "total_deaths_per_million": 127.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.147, + "stringency_index": 86.11 + }, + { + "date": "2020-08-31", + "total_cases": 85544.0, + "new_cases": 539.0, + "new_cases_smoothed": 253.571, + "total_deaths": 677.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 16751.583, + "new_cases_per_million": 105.549, + "new_cases_smoothed_per_million": 49.655, + "total_deaths_per_million": 132.573, + "new_deaths_per_million": 5.287, + "new_deaths_smoothed_per_million": 1.902, + "stringency_index": 86.11 + }, + { + "date": "2020-09-01", + "total_cases": 85722.0, + "new_cases": 178.0, + "new_cases_smoothed": 173.286, + "total_deaths": 685.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 16786.439, + "new_cases_per_million": 34.857, + "new_cases_smoothed_per_million": 33.934, + "total_deaths_per_million": 134.14, + "new_deaths_per_million": 1.567, + "new_deaths_smoothed_per_million": 1.343 + }, + { + "date": "2020-09-02", + "total_cases": 85928.0, + "new_cases": 206.0, + "new_cases_smoothed": 182.286, + "total_deaths": 689.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 16826.779, + "new_cases_per_million": 40.34, + "new_cases_smoothed_per_million": 35.696, + "total_deaths_per_million": 134.923, + "new_deaths_per_million": 0.783, + "new_deaths_smoothed_per_million": 1.315 + }, + { + "date": "2020-09-03", + "total_cases": 85928.0, + "new_cases": 0.0, + "new_cases_smoothed": 158.571, + "total_deaths": 689.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 16826.779, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.052, + "total_deaths_per_million": 134.923, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.203 + }, + { + "date": "2020-09-04", + "total_cases": 86380.0, + "new_cases": 452.0, + "new_cases_smoothed": 196.429, + "total_deaths": 705.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 16915.292, + "new_cases_per_million": 88.513, + "new_cases_smoothed_per_million": 38.465, + "total_deaths_per_million": 138.056, + "new_deaths_per_million": 3.133, + "new_deaths_smoothed_per_million": 1.539 + }, + { + "date": "2020-09-05", + "total_cases": 86380.0, + "new_cases": 0.0, + "new_cases_smoothed": 196.429, + "total_deaths": 705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 16915.292, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 38.465, + "total_deaths_per_million": 138.056, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.539 + } + ] + }, + "PAK": { + "continent": "Asia", + "location": "Pakistan", + "population": 220892331.0, + "population_density": 255.573, + "median_age": 23.5, + "aged_65_older": 4.495, + "aged_70_older": 2.78, + "gdp_per_capita": 5034.708, + "extreme_poverty": 4.0, + "cardiovasc_death_rate": 423.031, + "diabetes_prevalence": 8.35, + "female_smokers": 2.8, + "male_smokers": 36.7, + "handwashing_facilities": 59.607, + "hospital_beds_per_thousand": 0.6, + "life_expectancy": 67.27, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-01", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-02", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-04", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-07", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-10", + "total_cases": 16.0, + "new_cases": 10.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.072, + "new_cases_per_million": 0.045, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-03-11", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 471.0, + "total_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-03-12", + "total_cases": 20.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.091, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 60.0, + "total_tests": 531.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-03-13", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.095, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 78.0, + "total_tests": 609.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-14", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.095, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 75.0, + "total_tests": 684.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-15", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.136, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 149.0, + "total_tests": 833.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-16", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.14, + "new_cases_per_million": 0.005, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 292.0, + "total_tests": 1125.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 187.0, + "new_cases": 156.0, + "new_cases_smoothed": 24.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.847, + "new_cases_per_million": 0.706, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 1141.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.847, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1022.0, + "total_tests": 2163.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 242.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 9.906, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-19", + "total_cases": 302.0, + "new_cases": 115.0, + "new_cases_smoothed": 40.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.367, + "new_cases_per_million": 0.521, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1247.0, + "total_tests": 3410.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 10.202, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-20", + "total_cases": 478.0, + "new_cases": 176.0, + "new_cases_smoothed": 65.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.164, + "new_cases_per_million": 0.797, + "new_cases_smoothed_per_million": 0.296, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 591.0, + "total_tests": 4001.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 485.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 7.428999999999999, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-03-21", + "total_cases": 495.0, + "new_cases": 17.0, + "new_cases_smoothed": 67.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.241, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 1224.0, + "total_tests": 5225.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 649.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 9.584, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-03-22", + "total_cases": 646.0, + "new_cases": 151.0, + "new_cases_smoothed": 88.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.925, + "new_cases_per_million": 0.684, + "new_cases_smoothed_per_million": 0.398, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 219.0, + "total_tests": 5444.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 659.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 7.489, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 55.56 + }, + { + "date": "2020-03-23", + "total_cases": 784.0, + "new_cases": 138.0, + "new_cases_smoothed": 107.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3.549, + "new_cases_per_million": 0.625, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 413.0, + "total_tests": 5857.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 676.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 6.284, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-24", + "total_cases": 887.0, + "new_cases": 103.0, + "new_cases_smoothed": 100.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4.016, + "new_cases_per_million": 0.466, + "new_cases_smoothed_per_million": 0.453, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 266.0, + "total_tests": 6123.0, + "total_tests_per_thousand": 0.028, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 712.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 7.12, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-25", + "total_cases": 991.0, + "new_cases": 104.0, + "new_cases_smoothed": 114.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4.486, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.032, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 326.0, + "total_tests": 6449.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 5.327999999999999, + "positive_rate": 0.188, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 1057.0, + "new_cases": 66.0, + "new_cases_smoothed": 107.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4.785, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.488, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 1386.0, + "total_tests": 7835.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 5.86, + "positive_rate": 0.171, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 1197.0, + "new_cases": 140.0, + "new_cases_smoothed": 102.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5.419, + "new_cases_per_million": 0.634, + "new_cases_smoothed_per_million": 0.465, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 5396.0, + "total_tests": 13231.0, + "total_tests_per_thousand": 0.06, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1319.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 12.841, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 1197.0, + "new_cases": 0.0, + "new_cases_smoothed": 100.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5.419, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 1105.0, + "total_tests": 14336.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1302.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 12.982999999999999, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 1408.0, + "new_cases": 211.0, + "new_cases_smoothed": 108.857, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6.374, + "new_cases_per_million": 0.955, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 412.0, + "total_tests": 14748.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 1329.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 12.209000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 1526.0, + "new_cases": 118.0, + "new_cases_smoothed": 106.0, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6.908, + "new_cases_per_million": 0.534, + "new_cases_smoothed_per_million": 0.48, + "total_deaths_per_million": 0.059, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 935.0, + "total_tests": 15683.0, + "total_tests_per_thousand": 0.071, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 1404.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 13.245, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 1625.0, + "new_cases": 99.0, + "new_cases_smoothed": 105.429, + "total_deaths": 18.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 7.357, + "new_cases_per_million": 0.448, + "new_cases_smoothed_per_million": 0.477, + "total_deaths_per_million": 0.081, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 284.0, + "total_tests": 15967.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 1406.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 13.335999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 2039.0, + "new_cases": 414.0, + "new_cases_smoothed": 149.714, + "total_deaths": 26.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 9.231, + "new_cases_per_million": 1.874, + "new_cases_smoothed_per_million": 0.678, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1357.0, + "total_tests": 17324.0, + "total_tests_per_thousand": 0.078, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1554.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 10.38, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 2291.0, + "new_cases": 252.0, + "new_cases_smoothed": 176.286, + "total_deaths": 31.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 10.372, + "new_cases_per_million": 1.141, + "new_cases_smoothed_per_million": 0.798, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 12984.0, + "total_tests": 30308.0, + "total_tests_per_thousand": 0.137, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 3210.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 18.209, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 2291.0, + "new_cases": 0.0, + "new_cases_smoothed": 156.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 10.372, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.708, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2622.0, + "total_tests": 32930.0, + "total_tests_per_thousand": 0.149, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2814.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 18.005, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 2291.0, + "new_cases": 0.0, + "new_cases_smoothed": 156.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 10.372, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.708, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 1955.0, + "total_tests": 34885.0, + "total_tests_per_thousand": 0.158, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 2936.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 18.785999999999998, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 2450.0, + "new_cases": 159.0, + "new_cases_smoothed": 148.857, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 11.091, + "new_cases_per_million": 0.72, + "new_cases_smoothed_per_million": 0.674, + "total_deaths_per_million": 0.158, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 990.0, + "total_tests": 35875.0, + "total_tests_per_thousand": 0.162, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 3018.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 20.274, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 3277.0, + "new_cases": 827.0, + "new_cases_smoothed": 250.143, + "total_deaths": 50.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 14.835, + "new_cases_per_million": 3.744, + "new_cases_smoothed_per_million": 1.132, + "total_deaths_per_million": 0.226, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 3308.0, + "total_tests": 39183.0, + "total_tests_per_thousand": 0.177, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 3357.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 13.42, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 3864.0, + "new_cases": 587.0, + "new_cases_smoothed": 319.857, + "total_deaths": 54.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 17.493, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.448, + "total_deaths_per_million": 0.244, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 2976.0, + "total_tests": 42159.0, + "total_tests_per_thousand": 0.191, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 3742.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 11.699000000000002, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 4072.0, + "new_cases": 208.0, + "new_cases_smoothed": 290.429, + "total_deaths": 58.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 18.434, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 1.315, + "total_deaths_per_million": 0.263, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 2737.0, + "total_tests": 44896.0, + "total_tests_per_thousand": 0.203, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 3939.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 13.562999999999999, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 4322.0, + "new_cases": 250.0, + "new_cases_smoothed": 290.143, + "total_deaths": 63.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 19.566, + "new_cases_per_million": 1.132, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 0.285, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 9810.0, + "total_tests": 54706.0, + "total_tests_per_thousand": 0.248, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 3485.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 12.011, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 4601.0, + "new_cases": 279.0, + "new_cases_smoothed": 330.0, + "total_deaths": 66.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 20.829, + "new_cases_per_million": 1.263, + "new_cases_smoothed_per_million": 1.494, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 3130.0, + "total_tests": 57836.0, + "total_tests_per_thousand": 0.262, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 3558.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.782, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 4788.0, + "new_cases": 187.0, + "new_cases_smoothed": 356.714, + "total_deaths": 71.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 21.676, + "new_cases_per_million": 0.847, + "new_cases_smoothed_per_million": 1.615, + "total_deaths_per_million": 0.321, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3965.0, + "total_tests": 61801.0, + "total_tests_per_thousand": 0.28, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 3845.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 10.779000000000002, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 5038.0, + "new_cases": 250.0, + "new_cases_smoothed": 369.714, + "total_deaths": 86.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 22.807, + "new_cases_per_million": 1.132, + "new_cases_smoothed_per_million": 1.674, + "total_deaths_per_million": 0.389, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 3313.0, + "total_tests": 65114.0, + "total_tests_per_thousand": 0.295, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 4177.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 11.298, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 5374.0, + "new_cases": 336.0, + "new_cases_smoothed": 299.571, + "total_deaths": 93.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 24.329, + "new_cases_per_million": 1.521, + "new_cases_smoothed_per_million": 1.356, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 4814.0, + "total_tests": 69928.0, + "total_tests_per_thousand": 0.317, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 4392.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 14.661, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 5716.0, + "new_cases": 342.0, + "new_cases_smoothed": 264.571, + "total_deaths": 96.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 25.877, + "new_cases_per_million": 1.548, + "new_cases_smoothed_per_million": 1.198, + "total_deaths_per_million": 0.435, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 3511.0, + "total_tests": 73439.0, + "total_tests_per_thousand": 0.332, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 4469.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 16.891, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 5988.0, + "new_cases": 272.0, + "new_cases_smoothed": 273.714, + "total_deaths": 107.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 27.108, + "new_cases_per_million": 1.231, + "new_cases_smoothed_per_million": 1.239, + "total_deaths_per_million": 0.484, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.032, + "new_tests": 5540.0, + "total_tests": 78979.0, + "total_tests_per_thousand": 0.358, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 4869.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 17.789, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-16", + "total_cases": 6505.0, + "new_cases": 517.0, + "new_cases_smoothed": 311.857, + "total_deaths": 124.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 29.449, + "new_cases_per_million": 2.341, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 0.561, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 5725.0, + "total_tests": 84704.0, + "total_tests_per_thousand": 0.383, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 4285.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 13.74, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-17", + "total_cases": 7025.0, + "new_cases": 520.0, + "new_cases_smoothed": 346.286, + "total_deaths": 135.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 31.803, + "new_cases_per_million": 2.354, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 0.611, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 7844.0, + "total_tests": 92548.0, + "total_tests_per_thousand": 0.419, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 4959.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 14.321, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-18", + "total_cases": 7481.0, + "new_cases": 456.0, + "new_cases_smoothed": 384.714, + "total_deaths": 143.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 33.867, + "new_cases_per_million": 2.064, + "new_cases_smoothed_per_million": 1.742, + "total_deaths_per_million": 0.647, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 5974.0, + "total_tests": 98522.0, + "total_tests_per_thousand": 0.446, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 5246.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 13.636, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-19", + "total_cases": 7993.0, + "new_cases": 512.0, + "new_cases_smoothed": 422.143, + "total_deaths": 159.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 36.185, + "new_cases_per_million": 2.318, + "new_cases_smoothed_per_million": 1.911, + "total_deaths_per_million": 0.72, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 5780.0, + "total_tests": 104302.0, + "total_tests_per_thousand": 0.472, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 5598.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 13.261, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-20", + "total_cases": 8418.0, + "new_cases": 425.0, + "new_cases_smoothed": 434.857, + "total_deaths": 176.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 38.109, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 1.969, + "total_deaths_per_million": 0.797, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.054, + "new_tests_smoothed": 5447.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 12.526, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-21", + "total_cases": 9216.0, + "new_cases": 798.0, + "new_cases_smoothed": 500.0, + "total_deaths": 192.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 41.722, + "new_cases_per_million": 3.613, + "new_cases_smoothed_per_million": 2.264, + "total_deaths_per_million": 0.869, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.062, + "total_tests": 111806.0, + "total_tests_per_thousand": 0.506, + "new_tests_smoothed": 5481.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 10.962, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-22", + "total_cases": 9749.0, + "new_cases": 533.0, + "new_cases_smoothed": 537.286, + "total_deaths": 209.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 44.135, + "new_cases_per_million": 2.413, + "new_cases_smoothed_per_million": 2.432, + "total_deaths_per_million": 0.946, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6214.0, + "total_tests": 118020.0, + "total_tests_per_thousand": 0.534, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 5577.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 10.38, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-23", + "total_cases": 9749.0, + "new_cases": 0.0, + "new_cases_smoothed": 463.429, + "total_deaths": 209.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 44.135, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.098, + "total_deaths_per_million": 0.946, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 6529.0, + "total_tests": 124549.0, + "total_tests_per_thousand": 0.564, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 5692.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 12.282, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 92.59 + }, + { + "date": "2020-04-24", + "total_cases": 11155.0, + "new_cases": 1406.0, + "new_cases_smoothed": 590.0, + "total_deaths": 237.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 50.5, + "new_cases_per_million": 6.365, + "new_cases_smoothed_per_million": 2.671, + "total_deaths_per_million": 1.073, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6816.0, + "total_tests": 131365.0, + "total_tests_per_thousand": 0.595, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 5545.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 9.398, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-25", + "total_cases": 11940.0, + "new_cases": 785.0, + "new_cases_smoothed": 637.0, + "total_deaths": 253.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 54.053, + "new_cases_per_million": 3.554, + "new_cases_smoothed_per_million": 2.884, + "total_deaths_per_million": 1.145, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 6782.0, + "total_tests": 138147.0, + "total_tests_per_thousand": 0.625, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 5661.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 8.887, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-26", + "total_cases": 12723.0, + "new_cases": 783.0, + "new_cases_smoothed": 675.714, + "total_deaths": 269.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 57.598, + "new_cases_per_million": 3.545, + "new_cases_smoothed_per_million": 3.059, + "total_deaths_per_million": 1.218, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.071, + "new_tests": 6218.0, + "total_tests": 144365.0, + "total_tests_per_thousand": 0.654, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 5723.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 8.47, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-27", + "total_cases": 13328.0, + "new_cases": 605.0, + "new_cases_smoothed": 701.429, + "total_deaths": 281.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 60.337, + "new_cases_per_million": 2.739, + "new_cases_smoothed_per_million": 3.175, + "total_deaths_per_million": 1.272, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 6391.0, + "total_tests": 150756.0, + "total_tests_per_thousand": 0.682, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 6100.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 8.697000000000001, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-28", + "total_cases": 14079.0, + "new_cases": 751.0, + "new_cases_smoothed": 694.714, + "total_deaths": 301.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 63.737, + "new_cases_per_million": 3.4, + "new_cases_smoothed_per_million": 3.145, + "total_deaths_per_million": 1.363, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 6467.0, + "total_tests": 157223.0, + "total_tests_per_thousand": 0.712, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 6488.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 9.339, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-29", + "total_cases": 14885.0, + "new_cases": 806.0, + "new_cases_smoothed": 733.714, + "total_deaths": 327.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 67.386, + "new_cases_per_million": 3.649, + "new_cases_smoothed_per_million": 3.322, + "total_deaths_per_million": 1.48, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 8688.0, + "total_tests": 165911.0, + "total_tests_per_thousand": 0.751, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 6842.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 9.325, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-30", + "total_cases": 15759.0, + "new_cases": 874.0, + "new_cases_smoothed": 858.571, + "total_deaths": 346.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 71.342, + "new_cases_per_million": 3.957, + "new_cases_smoothed_per_million": 3.887, + "total_deaths_per_million": 1.566, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 8249.0, + "total_tests": 174160.0, + "total_tests_per_thousand": 0.788, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 7087.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 8.254, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-01", + "total_cases": 16817.0, + "new_cases": 1058.0, + "new_cases_smoothed": 808.857, + "total_deaths": 385.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 76.132, + "new_cases_per_million": 4.79, + "new_cases_smoothed_per_million": 3.662, + "total_deaths_per_million": 1.743, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 7971.0, + "total_tests": 182131.0, + "total_tests_per_thousand": 0.825, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 7252.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 8.966000000000001, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-02", + "total_cases": 18114.0, + "new_cases": 1297.0, + "new_cases_smoothed": 882.0, + "total_deaths": 417.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 82.004, + "new_cases_per_million": 5.872, + "new_cases_smoothed_per_million": 3.993, + "total_deaths_per_million": 1.888, + "new_deaths_per_million": 0.145, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 11728.0, + "total_tests": 193859.0, + "total_tests_per_thousand": 0.878, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 7959.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 9.024, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-03", + "total_cases": 19103.0, + "new_cases": 989.0, + "new_cases_smoothed": 911.429, + "total_deaths": 440.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 86.481, + "new_cases_per_million": 4.477, + "new_cases_smoothed_per_million": 4.126, + "total_deaths_per_million": 1.992, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 9166.0, + "total_tests": 203025.0, + "total_tests_per_thousand": 0.919, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 8380.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 9.193999999999999, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-04", + "total_cases": 20186.0, + "new_cases": 1083.0, + "new_cases_smoothed": 979.714, + "total_deaths": 462.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.857, + "total_cases_per_million": 91.384, + "new_cases_per_million": 4.903, + "new_cases_smoothed_per_million": 4.435, + "total_deaths_per_million": 2.092, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.117, + "new_tests": 9486.0, + "total_tests": 212511.0, + "total_tests_per_thousand": 0.962, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 8822.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 9.005, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 21501.0, + "new_cases": 1315.0, + "new_cases_smoothed": 1060.286, + "total_deaths": 486.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 97.337, + "new_cases_per_million": 5.953, + "new_cases_smoothed_per_million": 4.8, + "total_deaths_per_million": 2.2, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 9893.0, + "total_tests": 222404.0, + "total_tests_per_thousand": 1.007, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 9312.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 8.783, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 22550.0, + "new_cases": 1049.0, + "new_cases_smoothed": 1095.0, + "total_deaths": 526.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 102.086, + "new_cases_per_million": 4.749, + "new_cases_smoothed_per_million": 4.957, + "total_deaths_per_million": 2.381, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 10178.0, + "total_tests": 232582.0, + "total_tests_per_thousand": 1.053, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 9524.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 8.698, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 24073.0, + "new_cases": 1523.0, + "new_cases_smoothed": 1187.714, + "total_deaths": 564.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 108.981, + "new_cases_per_million": 6.895, + "new_cases_smoothed_per_million": 5.377, + "total_deaths_per_million": 2.553, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.141, + "new_tests": 12196.0, + "total_tests": 244778.0, + "total_tests_per_thousand": 1.108, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 10088.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 8.494, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 25837.0, + "new_cases": 1764.0, + "new_cases_smoothed": 1288.571, + "total_deaths": 594.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 116.966, + "new_cases_per_million": 7.986, + "new_cases_smoothed_per_million": 5.833, + "total_deaths_per_million": 2.689, + "new_deaths_per_million": 0.136, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 12469.0, + "total_tests": 257247.0, + "total_tests_per_thousand": 1.165, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 10731.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 8.328, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 27474.0, + "new_cases": 1637.0, + "new_cases_smoothed": 1337.143, + "total_deaths": 618.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 28.714, + "total_cases_per_million": 124.377, + "new_cases_per_million": 7.411, + "new_cases_smoothed_per_million": 6.053, + "total_deaths_per_million": 2.798, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 12778.0, + "total_tests": 270025.0, + "total_tests_per_thousand": 1.222, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 10881.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 8.138, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 29465.0, + "new_cases": 1991.0, + "new_cases_smoothed": 1480.286, + "total_deaths": 639.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 133.391, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 6.701, + "total_deaths_per_million": 2.893, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.129, + "new_tests": 13492.0, + "total_tests": 283517.0, + "total_tests_per_thousand": 1.284, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 11499.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 7.768, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 30941.0, + "new_cases": 1476.0, + "new_cases_smoothed": 1536.429, + "total_deaths": 667.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 29.286, + "total_cases_per_million": 140.073, + "new_cases_per_million": 6.682, + "new_cases_smoothed_per_million": 6.956, + "total_deaths_per_million": 3.02, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 11377.0, + "total_tests": 294894.0, + "total_tests_per_thousand": 1.335, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 11769.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 7.66, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 32081.0, + "new_cases": 1140.0, + "new_cases_smoothed": 1511.429, + "total_deaths": 706.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 145.234, + "new_cases_per_million": 5.161, + "new_cases_smoothed_per_million": 6.842, + "total_deaths_per_million": 3.196, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 10957.0, + "total_tests": 305851.0, + "total_tests_per_thousand": 1.385, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 11921.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 7.8870000000000005, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 34336.0, + "new_cases": 2255.0, + "new_cases_smoothed": 1683.714, + "total_deaths": 737.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 155.442, + "new_cases_per_million": 10.209, + "new_cases_smoothed_per_million": 7.622, + "total_deaths_per_million": 3.336, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.136, + "new_tests": 11848.0, + "total_tests": 317699.0, + "total_tests_per_thousand": 1.438, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 12160.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 7.222, + "positive_rate": 0.138, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 35788.0, + "new_cases": 1452.0, + "new_cases_smoothed": 1673.571, + "total_deaths": 770.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 162.016, + "new_cases_per_million": 6.573, + "new_cases_smoothed_per_million": 7.576, + "total_deaths_per_million": 3.486, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 13051.0, + "total_tests": 330750.0, + "total_tests_per_thousand": 1.497, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 12282.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 7.3389999999999995, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 37218.0, + "new_cases": 1430.0, + "new_cases_smoothed": 1625.857, + "total_deaths": 803.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 168.489, + "new_cases_per_million": 6.474, + "new_cases_smoothed_per_million": 7.36, + "total_deaths_per_million": 3.635, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 13700.0, + "total_tests": 344450.0, + "total_tests_per_thousand": 1.559, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 12458.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 7.662000000000001, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 38799.0, + "new_cases": 1581.0, + "new_cases_smoothed": 1617.857, + "total_deaths": 834.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 175.647, + "new_cases_per_million": 7.157, + "new_cases_smoothed_per_million": 7.324, + "total_deaths_per_million": 3.776, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 14814.0, + "total_tests": 359264.0, + "total_tests_per_thousand": 1.626, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 12748.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 7.88, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-17", + "total_cases": 40151.0, + "new_cases": 1352.0, + "new_cases_smoothed": 1526.571, + "total_deaths": 873.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 181.767, + "new_cases_per_million": 6.121, + "new_cases_smoothed_per_million": 6.911, + "total_deaths_per_million": 3.952, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 14146.0, + "total_tests": 373410.0, + "total_tests_per_thousand": 1.69, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 12842.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 8.412, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-18", + "total_cases": 42125.0, + "new_cases": 1974.0, + "new_cases_smoothed": 1597.714, + "total_deaths": 903.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 190.704, + "new_cases_per_million": 8.936, + "new_cases_smoothed_per_million": 7.233, + "total_deaths_per_million": 4.088, + "new_deaths_per_million": 0.136, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 13925.0, + "total_tests": 387335.0, + "total_tests_per_thousand": 1.754, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 13206.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 8.266, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-19", + "total_cases": 43966.0, + "new_cases": 1841.0, + "new_cases_smoothed": 1697.857, + "total_deaths": 939.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 199.038, + "new_cases_per_million": 8.334, + "new_cases_smoothed_per_million": 7.686, + "total_deaths_per_million": 4.251, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.151, + "new_tests": 12957.0, + "total_tests": 400292.0, + "total_tests_per_thousand": 1.812, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 13492.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 7.946000000000001, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-20", + "total_cases": 45898.0, + "new_cases": 1932.0, + "new_cases_smoothed": 1651.714, + "total_deaths": 985.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 207.784, + "new_cases_per_million": 8.746, + "new_cases_smoothed_per_million": 7.477, + "total_deaths_per_million": 4.459, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 13962.0, + "total_tests": 414254.0, + "total_tests_per_thousand": 1.875, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 13794.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 8.351, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-21", + "total_cases": 48091.0, + "new_cases": 2193.0, + "new_cases_smoothed": 1757.571, + "total_deaths": 1017.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 35.286, + "total_cases_per_million": 217.712, + "new_cases_per_million": 9.928, + "new_cases_smoothed_per_million": 7.957, + "total_deaths_per_million": 4.604, + "new_deaths_per_million": 0.145, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 15346.0, + "total_tests": 429600.0, + "total_tests_per_thousand": 1.945, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 14121.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 8.033999999999999, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 50694.0, + "new_cases": 2603.0, + "new_cases_smoothed": 1925.143, + "total_deaths": 1067.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 229.496, + "new_cases_per_million": 11.784, + "new_cases_smoothed_per_million": 8.715, + "total_deaths_per_million": 4.83, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 16387.0, + "total_tests": 445987.0, + "total_tests_per_thousand": 2.019, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 14505.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 7.535, + "positive_rate": 0.133, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-23", + "total_cases": 52437.0, + "new_cases": 1743.0, + "new_cases_smoothed": 1948.286, + "total_deaths": 1101.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 237.387, + "new_cases_per_million": 7.891, + "new_cases_smoothed_per_million": 8.82, + "total_deaths_per_million": 4.984, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 14705.0, + "total_tests": 460692.0, + "total_tests_per_thousand": 2.086, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 14490.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 7.437, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-24", + "total_cases": 54601.0, + "new_cases": 2164.0, + "new_cases_smoothed": 2064.286, + "total_deaths": 1133.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 247.184, + "new_cases_per_million": 9.797, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.145, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 12915.0, + "total_tests": 473607.0, + "total_tests_per_thousand": 2.144, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 14314.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 6.934, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-25", + "total_cases": 56349.0, + "new_cases": 1748.0, + "new_cases_smoothed": 2032.0, + "total_deaths": 1167.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 255.097, + "new_cases_per_million": 7.913, + "new_cases_smoothed_per_million": 9.199, + "total_deaths_per_million": 5.283, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 10049.0, + "total_tests": 483656.0, + "total_tests_per_thousand": 2.19, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 13760.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 6.772, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-26", + "total_cases": 57705.0, + "new_cases": 1356.0, + "new_cases_smoothed": 1962.714, + "total_deaths": 1197.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 261.236, + "new_cases_per_million": 6.139, + "new_cases_smoothed_per_million": 8.885, + "total_deaths_per_million": 5.419, + "new_deaths_per_million": 0.136, + "new_deaths_smoothed_per_million": 0.167, + "new_tests": 7252.0, + "total_tests": 490908.0, + "total_tests_per_thousand": 2.222, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 12945.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 6.595, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-27", + "total_cases": 59151.0, + "new_cases": 1446.0, + "new_cases_smoothed": 1893.286, + "total_deaths": 1225.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 267.782, + "new_cases_per_million": 6.546, + "new_cases_smoothed_per_million": 8.571, + "total_deaths_per_million": 5.546, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 8491.0, + "total_tests": 499399.0, + "total_tests_per_thousand": 2.261, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 12164.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 6.425, + "positive_rate": 0.156, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-28", + "total_cases": 61227.0, + "new_cases": 2076.0, + "new_cases_smoothed": 1876.571, + "total_deaths": 1260.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 277.18, + "new_cases_per_million": 9.398, + "new_cases_smoothed_per_million": 8.495, + "total_deaths_per_million": 5.704, + "new_deaths_per_million": 0.158, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 8687.0, + "total_tests": 508086.0, + "total_tests_per_thousand": 2.3, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 11212.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 5.975, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-29", + "total_cases": 64028.0, + "new_cases": 2801.0, + "new_cases_smoothed": 1904.857, + "total_deaths": 1317.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 289.861, + "new_cases_per_million": 12.68, + "new_cases_smoothed_per_million": 8.623, + "total_deaths_per_million": 5.962, + "new_deaths_per_million": 0.258, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 11931.0, + "total_tests": 520017.0, + "total_tests_per_thousand": 2.354, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 10576.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 5.5520000000000005, + "positive_rate": 0.18, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-30", + "total_cases": 66457.0, + "new_cases": 2429.0, + "new_cases_smoothed": 2002.857, + "total_deaths": 1395.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 300.857, + "new_cases_per_million": 10.996, + "new_cases_smoothed_per_million": 9.067, + "total_deaths_per_million": 6.315, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.19, + "new_tests": 12020.0, + "total_tests": 532037.0, + "total_tests_per_thousand": 2.409, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 10192.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 5.0889999999999995, + "positive_rate": 0.19699999999999998, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-05-31", + "total_cases": 69496.0, + "new_cases": 3039.0, + "new_cases_smoothed": 2127.857, + "total_deaths": 1483.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 50.0, + "total_cases_per_million": 314.615, + "new_cases_per_million": 13.758, + "new_cases_smoothed_per_million": 9.633, + "total_deaths_per_million": 6.714, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 14993.0, + "total_tests": 547030.0, + "total_tests_per_thousand": 2.476, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 10489.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 4.928999999999999, + "positive_rate": 0.203, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-06-01", + "total_cases": 72460.0, + "new_cases": 2964.0, + "new_cases_smoothed": 2301.571, + "total_deaths": 1543.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 53.714, + "total_cases_per_million": 328.033, + "new_cases_per_million": 13.418, + "new_cases_smoothed_per_million": 10.419, + "total_deaths_per_million": 6.985, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.243, + "new_tests": 14106.0, + "total_tests": 561136.0, + "total_tests_per_thousand": 2.54, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 11069.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 4.809, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-06-02", + "total_cases": 76398.0, + "new_cases": 3938.0, + "new_cases_smoothed": 2670.429, + "total_deaths": 1621.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 60.571, + "total_cases_per_million": 345.861, + "new_cases_per_million": 17.828, + "new_cases_smoothed_per_million": 12.089, + "total_deaths_per_million": 7.338, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 16838.0, + "total_tests": 577974.0, + "total_tests_per_thousand": 2.617, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 12438.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 4.658, + "positive_rate": 0.215, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-06-03", + "total_cases": 80463.0, + "new_cases": 4065.0, + "new_cases_smoothed": 3044.571, + "total_deaths": 1688.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 66.143, + "total_cases_per_million": 364.263, + "new_cases_per_million": 18.403, + "new_cases_smoothed_per_million": 13.783, + "total_deaths_per_million": 7.642, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.299, + "new_tests": 17370.0, + "total_tests": 595344.0, + "total_tests_per_thousand": 2.695, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 13706.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 4.502, + "positive_rate": 0.222, + "tests_units": "tests performed", + "stringency_index": 82.41 + }, + { + "date": "2020-06-04", + "total_cases": 85264.0, + "new_cases": 4801.0, + "new_cases_smoothed": 3433.857, + "total_deaths": 1770.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 72.857, + "total_cases_per_million": 385.998, + "new_cases_per_million": 21.735, + "new_cases_smoothed_per_million": 15.545, + "total_deaths_per_million": 8.013, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 20167.0, + "total_tests": 615511.0, + "total_tests_per_thousand": 2.786, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 15346.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 4.468999999999999, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-05", + "total_cases": 89249.0, + "new_cases": 3985.0, + "new_cases_smoothed": 3603.0, + "total_deaths": 1838.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 74.429, + "total_cases_per_million": 404.038, + "new_cases_per_million": 18.04, + "new_cases_smoothed_per_million": 16.311, + "total_deaths_per_million": 8.321, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.337, + "new_tests": 22812.0, + "total_tests": 638323.0, + "total_tests_per_thousand": 2.89, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 16901.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 4.691, + "positive_rate": 0.213, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-06", + "total_cases": 93983.0, + "new_cases": 4734.0, + "new_cases_smoothed": 3932.286, + "total_deaths": 1935.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 77.143, + "total_cases_per_million": 425.47, + "new_cases_per_million": 21.431, + "new_cases_smoothed_per_million": 17.802, + "total_deaths_per_million": 8.76, + "new_deaths_per_million": 0.439, + "new_deaths_smoothed_per_million": 0.349, + "new_tests": 22185.0, + "total_tests": 660508.0, + "total_tests_per_thousand": 2.99, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 18353.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 4.667, + "positive_rate": 0.214, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-07", + "total_cases": 98943.0, + "new_cases": 4960.0, + "new_cases_smoothed": 4206.714, + "total_deaths": 2002.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 74.143, + "total_cases_per_million": 447.924, + "new_cases_per_million": 22.454, + "new_cases_smoothed_per_million": 19.044, + "total_deaths_per_million": 9.063, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 23100.0, + "total_tests": 683608.0, + "total_tests_per_thousand": 3.095, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 19511.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 4.638, + "positive_rate": 0.21600000000000003, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-08", + "total_cases": 103671.0, + "new_cases": 4728.0, + "new_cases_smoothed": 4458.714, + "total_deaths": 2067.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 74.857, + "total_cases_per_million": 469.328, + "new_cases_per_million": 21.404, + "new_cases_smoothed_per_million": 20.185, + "total_deaths_per_million": 9.358, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.339, + "new_tests": 22225.0, + "total_tests": 705833.0, + "total_tests_per_thousand": 3.195, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 20671.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 4.636, + "positive_rate": 0.21600000000000003, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-09", + "total_cases": 108317.0, + "new_cases": 4646.0, + "new_cases_smoothed": 4559.857, + "total_deaths": 2172.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 78.714, + "total_cases_per_million": 490.361, + "new_cases_per_million": 21.033, + "new_cases_smoothed_per_million": 20.643, + "total_deaths_per_million": 9.833, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 24620.0, + "total_tests": 730453.0, + "total_tests_per_thousand": 3.307, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 21783.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 4.777, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-10", + "total_cases": 113702.0, + "new_cases": 5385.0, + "new_cases_smoothed": 4748.429, + "total_deaths": 2255.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 81.0, + "total_cases_per_million": 514.739, + "new_cases_per_million": 24.378, + "new_cases_smoothed_per_million": 21.497, + "total_deaths_per_million": 10.209, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.367, + "new_tests": 23799.0, + "total_tests": 754252.0, + "total_tests_per_thousand": 3.415, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 22701.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 4.781000000000001, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-11", + "total_cases": 119536.0, + "new_cases": 5834.0, + "new_cases_smoothed": 4896.0, + "total_deaths": 2356.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 83.714, + "total_cases_per_million": 541.151, + "new_cases_per_million": 26.411, + "new_cases_smoothed_per_million": 22.165, + "total_deaths_per_million": 10.666, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 26573.0, + "total_tests": 780825.0, + "total_tests_per_thousand": 3.535, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 23616.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 4.824, + "positive_rate": 0.207, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-12", + "total_cases": 125933.0, + "new_cases": 6397.0, + "new_cases_smoothed": 5240.571, + "total_deaths": 2463.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 89.286, + "total_cases_per_million": 570.11, + "new_cases_per_million": 28.96, + "new_cases_smoothed_per_million": 23.725, + "total_deaths_per_million": 11.15, + "new_deaths_per_million": 0.484, + "new_deaths_smoothed_per_million": 0.404, + "new_tests": 28344.0, + "total_tests": 809169.0, + "total_tests_per_thousand": 3.663, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 24407.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 4.657, + "positive_rate": 0.215, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-13", + "total_cases": 132405.0, + "new_cases": 6472.0, + "new_cases_smoothed": 5488.857, + "total_deaths": 2551.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 88.0, + "total_cases_per_million": 599.41, + "new_cases_per_million": 29.299, + "new_cases_smoothed_per_million": 24.849, + "total_deaths_per_million": 11.549, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 0.398, + "new_tests": 29850.0, + "total_tests": 839019.0, + "total_tests_per_thousand": 3.798, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 25502.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 4.646, + "positive_rate": 0.215, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-14", + "total_cases": 139230.0, + "new_cases": 6825.0, + "new_cases_smoothed": 5755.286, + "total_deaths": 2632.0, + "new_deaths": 81.0, + "new_deaths_smoothed": 90.0, + "total_cases_per_million": 630.307, + "new_cases_per_million": 30.897, + "new_cases_smoothed_per_million": 26.055, + "total_deaths_per_million": 11.915, + "new_deaths_per_million": 0.367, + "new_deaths_smoothed_per_million": 0.407, + "new_tests": 29546.0, + "total_tests": 868565.0, + "total_tests_per_thousand": 3.932, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 26422.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 4.591, + "positive_rate": 0.218, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-15", + "total_cases": 144478.0, + "new_cases": 5248.0, + "new_cases_smoothed": 5829.571, + "total_deaths": 2729.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 94.571, + "total_cases_per_million": 654.065, + "new_cases_per_million": 23.758, + "new_cases_smoothed_per_million": 26.391, + "total_deaths_per_million": 12.354, + "new_deaths_per_million": 0.439, + "new_deaths_smoothed_per_million": 0.428, + "new_tests": 29085.0, + "total_tests": 897650.0, + "total_tests_per_thousand": 4.064, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 27402.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 4.7010000000000005, + "positive_rate": 0.213, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-16", + "total_cases": 148921.0, + "new_cases": 4443.0, + "new_cases_smoothed": 5800.571, + "total_deaths": 2839.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 95.286, + "total_cases_per_million": 674.179, + "new_cases_per_million": 20.114, + "new_cases_smoothed_per_million": 26.26, + "total_deaths_per_million": 12.852, + "new_deaths_per_million": 0.498, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 25015.0, + "total_tests": 922665.0, + "total_tests_per_thousand": 4.177, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 27459.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 4.734, + "positive_rate": 0.21100000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-17", + "total_cases": 154760.0, + "new_cases": 5839.0, + "new_cases_smoothed": 5865.429, + "total_deaths": 2975.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 102.857, + "total_cases_per_million": 700.613, + "new_cases_per_million": 26.434, + "new_cases_smoothed_per_million": 26.553, + "total_deaths_per_million": 13.468, + "new_deaths_per_million": 0.616, + "new_deaths_smoothed_per_million": 0.466, + "new_tests": 28117.0, + "total_tests": 950782.0, + "total_tests_per_thousand": 4.304, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 28076.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 4.787, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-18", + "total_cases": 160118.0, + "new_cases": 5358.0, + "new_cases_smoothed": 5797.429, + "total_deaths": 3093.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 105.286, + "total_cases_per_million": 724.869, + "new_cases_per_million": 24.256, + "new_cases_smoothed_per_million": 26.245, + "total_deaths_per_million": 14.002, + "new_deaths_per_million": 0.534, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 31230.0, + "total_tests": 982012.0, + "total_tests_per_thousand": 4.446, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 28741.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 4.958, + "positive_rate": 0.20199999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-19", + "total_cases": 165062.0, + "new_cases": 4944.0, + "new_cases_smoothed": 5589.857, + "total_deaths": 3229.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 109.429, + "total_cases_per_million": 747.251, + "new_cases_per_million": 22.382, + "new_cases_smoothed_per_million": 25.306, + "total_deaths_per_million": 14.618, + "new_deaths_per_million": 0.616, + "new_deaths_smoothed_per_million": 0.495, + "new_tests": 29094.0, + "total_tests": 1011106.0, + "total_tests_per_thousand": 4.577, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 28848.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 5.1610000000000005, + "positive_rate": 0.19399999999999998, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-20", + "total_cases": 171666.0, + "new_cases": 6604.0, + "new_cases_smoothed": 5608.714, + "total_deaths": 3382.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 118.714, + "total_cases_per_million": 777.148, + "new_cases_per_million": 29.897, + "new_cases_smoothed_per_million": 25.391, + "total_deaths_per_million": 15.311, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.537, + "new_tests": 31681.0, + "total_tests": 1042787.0, + "total_tests_per_thousand": 4.721, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 29110.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 5.19, + "positive_rate": 0.193, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-06-21", + "total_cases": 176617.0, + "new_cases": 4951.0, + "new_cases_smoothed": 5341.0, + "total_deaths": 3501.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 124.143, + "total_cases_per_million": 799.561, + "new_cases_per_million": 22.414, + "new_cases_smoothed_per_million": 24.179, + "total_deaths_per_million": 15.849, + "new_deaths_per_million": 0.539, + "new_deaths_smoothed_per_million": 0.562, + "new_tests": 28855.0, + "total_tests": 1071642.0, + "total_tests_per_thousand": 4.851, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 29011.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 5.432, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-06-22", + "total_cases": 181088.0, + "new_cases": 4471.0, + "new_cases_smoothed": 5230.0, + "total_deaths": 3590.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 123.0, + "total_cases_per_million": 819.802, + "new_cases_per_million": 20.241, + "new_cases_smoothed_per_million": 23.677, + "total_deaths_per_million": 16.252, + "new_deaths_per_million": 0.403, + "new_deaths_smoothed_per_million": 0.557, + "new_tests": 30520.0, + "total_tests": 1102162.0, + "total_tests_per_thousand": 4.99, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 29216.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 5.586, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-23", + "total_cases": 185034.0, + "new_cases": 3946.0, + "new_cases_smoothed": 5159.0, + "total_deaths": 3695.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 122.286, + "total_cases_per_million": 837.666, + "new_cases_per_million": 17.864, + "new_cases_smoothed_per_million": 23.355, + "total_deaths_per_million": 16.728, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.554, + "new_tests": 24599.0, + "total_tests": 1126761.0, + "total_tests_per_thousand": 5.101, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 29157.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 5.652, + "positive_rate": 0.177, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-24", + "total_cases": 188926.0, + "new_cases": 3892.0, + "new_cases_smoothed": 4880.857, + "total_deaths": 3755.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 111.429, + "total_cases_per_million": 855.285, + "new_cases_per_million": 17.619, + "new_cases_smoothed_per_million": 22.096, + "total_deaths_per_million": 16.999, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 23380.0, + "total_tests": 1150141.0, + "total_tests_per_thousand": 5.207, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 28480.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 5.835, + "positive_rate": 0.171, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-25", + "total_cases": 192970.0, + "new_cases": 4044.0, + "new_cases_smoothed": 4693.143, + "total_deaths": 3903.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 115.714, + "total_cases_per_million": 873.593, + "new_cases_per_million": 18.308, + "new_cases_smoothed_per_million": 21.246, + "total_deaths_per_million": 17.669, + "new_deaths_per_million": 0.67, + "new_deaths_smoothed_per_million": 0.524, + "new_tests": 21835.0, + "total_tests": 1171976.0, + "total_tests_per_thousand": 5.306, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 27138.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 5.782, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-26", + "total_cases": 195745.0, + "new_cases": 2775.0, + "new_cases_smoothed": 4383.286, + "total_deaths": 3962.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 104.714, + "total_cases_per_million": 886.156, + "new_cases_per_million": 12.563, + "new_cases_smoothed_per_million": 19.844, + "total_deaths_per_million": 17.936, + "new_deaths_per_million": 0.267, + "new_deaths_smoothed_per_million": 0.474, + "new_tests": 21041.0, + "total_tests": 1193017.0, + "total_tests_per_thousand": 5.401, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 25987.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_per_case": 5.928999999999999, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-27", + "total_cases": 198883.0, + "new_cases": 3138.0, + "new_cases_smoothed": 3888.143, + "total_deaths": 4035.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 93.286, + "total_cases_per_million": 900.362, + "new_cases_per_million": 14.206, + "new_cases_smoothed_per_million": 17.602, + "total_deaths_per_million": 18.267, + "new_deaths_per_million": 0.33, + "new_deaths_smoothed_per_million": 0.422, + "new_tests": 21123.0, + "total_tests": 1214140.0, + "total_tests_per_thousand": 5.497, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 24479.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 6.296, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-28", + "total_cases": 202955.0, + "new_cases": 4072.0, + "new_cases_smoothed": 3762.571, + "total_deaths": 4118.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 88.143, + "total_cases_per_million": 918.796, + "new_cases_per_million": 18.434, + "new_cases_smoothed_per_million": 17.034, + "total_deaths_per_million": 18.643, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 25013.0, + "total_tests": 1239153.0, + "total_tests_per_thousand": 5.61, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 23930.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 6.36, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-29", + "total_cases": 206512.0, + "new_cases": 3557.0, + "new_cases_smoothed": 3632.0, + "total_deaths": 4167.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 82.429, + "total_cases_per_million": 934.899, + "new_cases_per_million": 16.103, + "new_cases_smoothed_per_million": 16.442, + "total_deaths_per_million": 18.864, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.373, + "new_tests": 23009.0, + "total_tests": 1262162.0, + "total_tests_per_thousand": 5.714, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 22857.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 6.292999999999999, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-06-30", + "total_cases": 209337.0, + "new_cases": 2825.0, + "new_cases_smoothed": 3471.857, + "total_deaths": 4304.0, + "new_deaths": 137.0, + "new_deaths_smoothed": 87.0, + "total_cases_per_million": 947.688, + "new_cases_per_million": 12.789, + "new_cases_smoothed_per_million": 15.717, + "total_deaths_per_million": 19.485, + "new_deaths_per_million": 0.62, + "new_deaths_smoothed_per_million": 0.394, + "new_tests": 20930.0, + "total_tests": 1283092.0, + "total_tests_per_thousand": 5.809, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 22333.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 6.433, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-01", + "total_cases": 213470.0, + "new_cases": 4133.0, + "new_cases_smoothed": 3506.286, + "total_deaths": 4395.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 91.429, + "total_cases_per_million": 966.398, + "new_cases_per_million": 18.71, + "new_cases_smoothed_per_million": 15.873, + "total_deaths_per_million": 19.897, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.414, + "new_tests": 22418.0, + "total_tests": 1305510.0, + "total_tests_per_thousand": 5.91, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 22196.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 6.33, + "positive_rate": 0.158, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-07-02", + "total_cases": 217809.0, + "new_cases": 4339.0, + "new_cases_smoothed": 3548.429, + "total_deaths": 4473.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 81.429, + "total_cases_per_million": 986.041, + "new_cases_per_million": 19.643, + "new_cases_smoothed_per_million": 16.064, + "total_deaths_per_million": 20.25, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 22128.0, + "total_tests": 1327638.0, + "total_tests_per_thousand": 6.01, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 22237.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 6.267, + "positive_rate": 0.16, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-03", + "total_cases": 221896.0, + "new_cases": 4087.0, + "new_cases_smoothed": 3735.857, + "total_deaths": 4551.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 84.143, + "total_cases_per_million": 1004.544, + "new_cases_per_million": 18.502, + "new_cases_smoothed_per_million": 16.913, + "total_deaths_per_million": 20.603, + "new_deaths_per_million": 0.353, + "new_deaths_smoothed_per_million": 0.381, + "new_tests": 23135.0, + "total_tests": 1350773.0, + "total_tests_per_thousand": 6.115, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 22537.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 6.0329999999999995, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-04", + "total_cases": 225283.0, + "new_cases": 3387.0, + "new_cases_smoothed": 3771.429, + "total_deaths": 4619.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 83.429, + "total_cases_per_million": 1019.877, + "new_cases_per_million": 15.333, + "new_cases_smoothed_per_million": 17.074, + "total_deaths_per_million": 20.911, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 22052.0, + "total_tests": 1372825.0, + "total_tests_per_thousand": 6.215, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 22669.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 6.011, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-05", + "total_cases": 228474.0, + "new_cases": 3191.0, + "new_cases_smoothed": 3645.571, + "total_deaths": 4712.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 84.857, + "total_cases_per_million": 1034.323, + "new_cases_per_million": 14.446, + "new_cases_smoothed_per_million": 16.504, + "total_deaths_per_million": 21.332, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.384, + "new_tests": 25527.0, + "total_tests": 1398352.0, + "total_tests_per_thousand": 6.33, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 22743.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 6.239, + "positive_rate": 0.16, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-06", + "total_cases": 231818.0, + "new_cases": 3344.0, + "new_cases_smoothed": 3615.143, + "total_deaths": 4762.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 85.0, + "total_cases_per_million": 1049.462, + "new_cases_per_million": 15.139, + "new_cases_smoothed_per_million": 16.366, + "total_deaths_per_million": 21.558, + "new_deaths_per_million": 0.226, + "new_deaths_smoothed_per_million": 0.385, + "new_tests": 22271.0, + "total_tests": 1420623.0, + "total_tests_per_thousand": 6.431, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 22637.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 6.2620000000000005, + "positive_rate": 0.16, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-07", + "total_cases": 234509.0, + "new_cases": 2691.0, + "new_cases_smoothed": 3596.0, + "total_deaths": 4839.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 1061.644, + "new_cases_per_million": 12.182, + "new_cases_smoothed_per_million": 16.279, + "total_deaths_per_million": 21.907, + "new_deaths_per_million": 0.349, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 24530.0, + "total_tests": 1445153.0, + "total_tests_per_thousand": 6.542, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 23152.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 6.438, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-08", + "total_cases": 237489.0, + "new_cases": 2980.0, + "new_cases_smoothed": 3431.286, + "total_deaths": 4922.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 75.286, + "total_cases_per_million": 1075.135, + "new_cases_per_million": 13.491, + "new_cases_smoothed_per_million": 15.534, + "total_deaths_per_million": 22.282, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.341, + "new_tests": 21951.0, + "total_tests": 1467104.0, + "total_tests_per_thousand": 6.642, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 23085.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 6.728, + "positive_rate": 0.149, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-09", + "total_cases": 240848.0, + "new_cases": 3359.0, + "new_cases_smoothed": 3291.286, + "total_deaths": 4983.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 72.857, + "total_cases_per_million": 1090.341, + "new_cases_per_million": 15.207, + "new_cases_smoothed_per_million": 14.9, + "total_deaths_per_million": 22.559, + "new_deaths_per_million": 0.276, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 24333.0, + "total_tests": 1491437.0, + "total_tests_per_thousand": 6.752, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 23400.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 7.11, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-10", + "total_cases": 243599.0, + "new_cases": 2751.0, + "new_cases_smoothed": 3100.429, + "total_deaths": 5058.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 72.429, + "total_cases_per_million": 1102.795, + "new_cases_per_million": 12.454, + "new_cases_smoothed_per_million": 14.036, + "total_deaths_per_million": 22.898, + "new_deaths_per_million": 0.34, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 23421.0, + "total_tests": 1514858.0, + "total_tests_per_thousand": 6.858, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 23441.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 7.561, + "positive_rate": 0.132, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-11", + "total_cases": 246351.0, + "new_cases": 2752.0, + "new_cases_smoothed": 3009.714, + "total_deaths": 5123.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 72.0, + "total_cases_per_million": 1115.254, + "new_cases_per_million": 12.459, + "new_cases_smoothed_per_million": 13.625, + "total_deaths_per_million": 23.192, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.326, + "new_tests": 23569.0, + "total_tests": 1538427.0, + "total_tests_per_thousand": 6.965, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 23657.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 7.86, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-12", + "total_cases": 248872.0, + "new_cases": 2521.0, + "new_cases_smoothed": 2914.0, + "total_deaths": 5197.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 69.286, + "total_cases_per_million": 1126.667, + "new_cases_per_million": 11.413, + "new_cases_smoothed_per_million": 13.192, + "total_deaths_per_million": 23.527, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 0.314, + "new_tests": 24211.0, + "total_tests": 1562638.0, + "total_tests_per_thousand": 7.074, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 23469.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 8.054, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-13", + "total_cases": 251625.0, + "new_cases": 2753.0, + "new_cases_smoothed": 2829.571, + "total_deaths": 5266.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 72.0, + "total_cases_per_million": 1139.13, + "new_cases_per_million": 12.463, + "new_cases_smoothed_per_million": 12.81, + "total_deaths_per_million": 23.84, + "new_deaths_per_million": 0.312, + "new_deaths_smoothed_per_million": 0.326, + "new_tests": 22532.0, + "total_tests": 1585170.0, + "total_tests_per_thousand": 7.176, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 23507.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 8.308, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-14", + "total_cases": 253604.0, + "new_cases": 1979.0, + "new_cases_smoothed": 2727.857, + "total_deaths": 5320.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 68.714, + "total_cases_per_million": 1148.089, + "new_cases_per_million": 8.959, + "new_cases_smoothed_per_million": 12.349, + "total_deaths_per_million": 24.084, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.311, + "new_tests": 21020.0, + "total_tests": 1606190.0, + "total_tests_per_thousand": 7.271, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 23005.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 8.433, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-15", + "total_cases": 255769.0, + "new_cases": 2165.0, + "new_cases_smoothed": 2611.429, + "total_deaths": 5386.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 1157.89, + "new_cases_per_million": 9.801, + "new_cases_smoothed_per_million": 11.822, + "total_deaths_per_million": 24.383, + "new_deaths_per_million": 0.299, + "new_deaths_smoothed_per_million": 0.3, + "new_tests": 21749.0, + "total_tests": 1627939.0, + "total_tests_per_thousand": 7.37, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 22976.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 8.798, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-16", + "total_cases": 257914.0, + "new_cases": 2145.0, + "new_cases_smoothed": 2438.0, + "total_deaths": 5426.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 63.286, + "total_cases_per_million": 1167.601, + "new_cases_per_million": 9.711, + "new_cases_smoothed_per_million": 11.037, + "total_deaths_per_million": 24.564, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 24244.0, + "total_tests": 1652183.0, + "total_tests_per_thousand": 7.48, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 22964.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 9.419, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-17", + "total_cases": 259999.0, + "new_cases": 2085.0, + "new_cases_smoothed": 2342.857, + "total_deaths": 5475.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 59.571, + "total_cases_per_million": 1177.04, + "new_cases_per_million": 9.439, + "new_cases_smoothed_per_million": 10.606, + "total_deaths_per_million": 24.786, + "new_deaths_per_million": 0.222, + "new_deaths_smoothed_per_million": 0.27, + "new_tests": 23907.0, + "total_tests": 1676090.0, + "total_tests_per_thousand": 7.588, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 23033.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 9.831, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-18", + "total_cases": 261917.0, + "new_cases": 1918.0, + "new_cases_smoothed": 2223.714, + "total_deaths": 5522.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 57.0, + "total_cases_per_million": 1185.722, + "new_cases_per_million": 8.683, + "new_cases_smoothed_per_million": 10.067, + "total_deaths_per_million": 24.999, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 23011.0, + "total_tests": 1699101.0, + "total_tests_per_thousand": 7.692, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 22953.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 10.322000000000001, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-19", + "total_cases": 263496.0, + "new_cases": 1579.0, + "new_cases_smoothed": 2089.143, + "total_deaths": 5568.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 53.0, + "total_cases_per_million": 1192.871, + "new_cases_per_million": 7.148, + "new_cases_smoothed_per_million": 9.458, + "total_deaths_per_million": 25.207, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 22559.0, + "total_tests": 1721660.0, + "total_tests_per_thousand": 7.794, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 22717.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 10.874, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-20", + "total_cases": 265083.0, + "new_cases": 1587.0, + "new_cases_smoothed": 1922.571, + "total_deaths": 5599.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 47.571, + "total_cases_per_million": 1200.055, + "new_cases_per_million": 7.184, + "new_cases_smoothed_per_million": 8.704, + "total_deaths_per_million": 25.347, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 19108.0, + "total_tests": 1740768.0, + "total_tests_per_thousand": 7.881, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 22228.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 11.562000000000001, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-21", + "total_cases": 266096.0, + "new_cases": 1013.0, + "new_cases_smoothed": 1784.571, + "total_deaths": 5639.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 45.571, + "total_cases_per_million": 1204.641, + "new_cases_per_million": 4.586, + "new_cases_smoothed_per_million": 8.079, + "total_deaths_per_million": 25.528, + "new_deaths_per_million": 0.181, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 17783.0, + "total_tests": 1758551.0, + "total_tests_per_thousand": 7.961, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 21766.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 12.197000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-22", + "total_cases": 267428.0, + "new_cases": 1332.0, + "new_cases_smoothed": 1665.571, + "total_deaths": 5677.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 1210.671, + "new_cases_per_million": 6.03, + "new_cases_smoothed_per_million": 7.54, + "total_deaths_per_million": 25.7, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 18331.0, + "total_tests": 1776882.0, + "total_tests_per_thousand": 8.044, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 21278.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 12.775, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-23", + "total_cases": 269191.0, + "new_cases": 1763.0, + "new_cases_smoothed": 1611.0, + "total_deaths": 5709.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 1218.653, + "new_cases_per_million": 7.981, + "new_cases_smoothed_per_million": 7.293, + "total_deaths_per_million": 25.845, + "new_deaths_per_million": 0.145, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 22408.0, + "total_tests": 1799290.0, + "total_tests_per_thousand": 8.146, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 21015.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 13.045, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-24", + "total_cases": 270400.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1485.857, + "total_deaths": 5763.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 41.143, + "total_cases_per_million": 1224.126, + "new_cases_per_million": 5.473, + "new_cases_smoothed_per_million": 6.727, + "total_deaths_per_million": 26.09, + "new_deaths_per_million": 0.244, + "new_deaths_smoothed_per_million": 0.186, + "new_tests": 22006.0, + "total_tests": 1821296.0, + "total_tests_per_thousand": 8.245, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 20744.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 13.960999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-25", + "total_cases": 271887.0, + "new_cases": 1487.0, + "new_cases_smoothed": 1424.286, + "total_deaths": 5787.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 1230.858, + "new_cases_per_million": 6.732, + "new_cases_smoothed_per_million": 6.448, + "total_deaths_per_million": 26.198, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 23630.0, + "total_tests": 1844926.0, + "total_tests_per_thousand": 8.352, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 20832.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 14.626, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-26", + "total_cases": 273113.0, + "new_cases": 1226.0, + "new_cases_smoothed": 1373.857, + "total_deaths": 5822.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 1236.408, + "new_cases_per_million": 5.55, + "new_cases_smoothed_per_million": 6.22, + "total_deaths_per_million": 26.357, + "new_deaths_per_million": 0.158, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 23254.0, + "total_tests": 1868180.0, + "total_tests_per_thousand": 8.457, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 20931.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 15.235, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-27", + "total_cases": 274289.0, + "new_cases": 1176.0, + "new_cases_smoothed": 1315.143, + "total_deaths": 5842.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 1241.732, + "new_cases_per_million": 5.324, + "new_cases_smoothed_per_million": 5.954, + "total_deaths_per_million": 26.447, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 41666.0, + "total_tests": 1909846.0, + "total_tests_per_thousand": 8.646, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 24154.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 18.366, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-28", + "total_cases": 275225.0, + "new_cases": 936.0, + "new_cases_smoothed": 1304.143, + "total_deaths": 5865.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 1245.969, + "new_cases_per_million": 4.237, + "new_cases_smoothed_per_million": 5.904, + "total_deaths_per_million": 26.551, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 21256.0, + "total_tests": 1931102.0, + "total_tests_per_thousand": 8.742, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 24650.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 18.901, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-29", + "total_cases": 276288.0, + "new_cases": 1063.0, + "new_cases_smoothed": 1265.714, + "total_deaths": 5892.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 30.714, + "total_cases_per_million": 1250.781, + "new_cases_per_million": 4.812, + "new_cases_smoothed_per_million": 5.73, + "total_deaths_per_million": 26.674, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 21628.0, + "total_tests": 1952730.0, + "total_tests_per_thousand": 8.84, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 25121.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 19.847, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-30", + "total_cases": 277402.0, + "new_cases": 1114.0, + "new_cases_smoothed": 1173.0, + "total_deaths": 5924.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 30.714, + "total_cases_per_million": 1255.824, + "new_cases_per_million": 5.043, + "new_cases_smoothed_per_million": 5.31, + "total_deaths_per_million": 26.818, + "new_deaths_per_million": 0.145, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 20507.0, + "total_tests": 1973237.0, + "total_tests_per_thousand": 8.933, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 24850.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 21.185, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-07-31", + "total_cases": 278305.0, + "new_cases": 903.0, + "new_cases_smoothed": 1129.286, + "total_deaths": 5951.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 26.857, + "total_cases_per_million": 1259.912, + "new_cases_per_million": 4.088, + "new_cases_smoothed_per_million": 5.112, + "total_deaths_per_million": 26.941, + "new_deaths_per_million": 0.122, + "new_deaths_smoothed_per_million": 0.122, + "new_tests_smoothed": 24344.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 21.557, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-01", + "total_cases": 278305.0, + "new_cases": 0.0, + "new_cases_smoothed": 916.857, + "total_deaths": 5951.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 1259.912, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.151, + "total_deaths_per_million": 26.941, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.106, + "total_tests": 2010170.0, + "total_tests_per_thousand": 9.1, + "new_tests_smoothed": 23606.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 25.747, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-02", + "total_cases": 278305.0, + "new_cases": 0.0, + "new_cases_smoothed": 741.714, + "total_deaths": 5951.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 1259.912, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.358, + "total_deaths_per_million": 26.941, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 11026.0, + "total_tests": 2021196.0, + "total_tests_per_thousand": 9.15, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 21859.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 29.471, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-03", + "total_cases": 280029.0, + "new_cases": 1724.0, + "new_cases_smoothed": 820.0, + "total_deaths": 5984.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 1267.717, + "new_cases_per_million": 7.805, + "new_cases_smoothed_per_million": 3.712, + "total_deaths_per_million": 27.09, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 10759.0, + "total_tests": 2031955.0, + "total_tests_per_thousand": 9.199, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 17444.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 21.273000000000003, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-04", + "total_cases": 280461.0, + "new_cases": 432.0, + "new_cases_smoothed": 748.0, + "total_deaths": 5999.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 1269.673, + "new_cases_per_million": 1.956, + "new_cases_smoothed_per_million": 3.386, + "total_deaths_per_million": 27.158, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 11915.0, + "total_tests": 2043870.0, + "total_tests_per_thousand": 9.253, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 16110.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 21.537, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-05", + "total_cases": 281136.0, + "new_cases": 675.0, + "new_cases_smoothed": 692.571, + "total_deaths": 6014.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1272.729, + "new_cases_per_million": 3.056, + "new_cases_smoothed_per_million": 3.135, + "total_deaths_per_million": 27.226, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.079, + "new_tests_smoothed": 14092.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 20.347, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-06", + "total_cases": 281863.0, + "new_cases": 727.0, + "new_cases_smoothed": 637.286, + "total_deaths": 6035.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 1276.02, + "new_cases_per_million": 3.291, + "new_cases_smoothed_per_million": 2.885, + "total_deaths_per_million": 27.321, + "new_deaths_per_million": 0.095, + "new_deaths_smoothed_per_million": 0.072, + "total_tests": 2058872.0, + "total_tests_per_thousand": 9.321, + "new_tests_smoothed": 12234.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 19.197, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-07", + "total_cases": 282645.0, + "new_cases": 782.0, + "new_cases_smoothed": 620.0, + "total_deaths": 6052.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 1279.56, + "new_cases_per_million": 3.54, + "new_cases_smoothed_per_million": 2.807, + "total_deaths_per_million": 27.398, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 20461.0, + "total_tests": 2079333.0, + "total_tests_per_thousand": 9.413, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 12518.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 20.19, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-08", + "total_cases": 283487.0, + "new_cases": 842.0, + "new_cases_smoothed": 740.286, + "total_deaths": 6068.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 1283.372, + "new_cases_per_million": 3.812, + "new_cases_smoothed_per_million": 3.351, + "total_deaths_per_million": 27.47, + "new_deaths_per_million": 0.072, + "new_deaths_smoothed_per_million": 0.076, + "new_tests": 24366.0, + "total_tests": 2103699.0, + "total_tests_per_thousand": 9.524, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 13361.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 18.048, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-09", + "total_cases": 284121.0, + "new_cases": 634.0, + "new_cases_smoothed": 830.857, + "total_deaths": 6082.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 1286.242, + "new_cases_per_million": 2.87, + "new_cases_smoothed_per_million": 3.761, + "total_deaths_per_million": 27.534, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 23390.0, + "total_tests": 2127089.0, + "total_tests_per_thousand": 9.63, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 15128.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 18.208, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-08-10", + "total_cases": 284660.0, + "new_cases": 539.0, + "new_cases_smoothed": 661.571, + "total_deaths": 6097.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 1288.682, + "new_cases_per_million": 2.44, + "new_cases_smoothed_per_million": 2.995, + "total_deaths_per_million": 27.602, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 20495.0, + "total_tests": 2147584.0, + "total_tests_per_thousand": 9.722, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 16518.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 24.968000000000004, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-11", + "total_cases": 285191.0, + "new_cases": 531.0, + "new_cases_smoothed": 675.714, + "total_deaths": 6112.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 1291.086, + "new_cases_per_million": 2.404, + "new_cases_smoothed_per_million": 3.059, + "total_deaths_per_million": 27.67, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 18227.0, + "total_tests": 2165811.0, + "total_tests_per_thousand": 9.805, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 17420.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 25.78, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-12", + "total_cases": 285921.0, + "new_cases": 730.0, + "new_cases_smoothed": 683.571, + "total_deaths": 6129.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1294.391, + "new_cases_per_million": 3.305, + "new_cases_smoothed_per_million": 3.095, + "total_deaths_per_million": 27.747, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.074, + "new_tests": 20631.0, + "total_tests": 2186442.0, + "total_tests_per_thousand": 9.898, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 19296.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 28.228, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-13", + "total_cases": 286674.0, + "new_cases": 753.0, + "new_cases_smoothed": 687.286, + "total_deaths": 6139.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 1297.8, + "new_cases_per_million": 3.409, + "new_cases_smoothed_per_million": 3.111, + "total_deaths_per_million": 27.792, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 19222.0, + "total_tests": 2205664.0, + "total_tests_per_thousand": 9.985, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 20970.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 30.511, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-14", + "total_cases": 287300.0, + "new_cases": 626.0, + "new_cases_smoothed": 665.0, + "total_deaths": 6153.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 1300.634, + "new_cases_per_million": 2.834, + "new_cases_smoothed_per_million": 3.011, + "total_deaths_per_million": 27.855, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 23745.0, + "total_tests": 2229409.0, + "total_tests_per_thousand": 10.093, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 21439.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 32.239000000000004, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-15", + "total_cases": 288047.0, + "new_cases": 747.0, + "new_cases_smoothed": 651.429, + "total_deaths": 6162.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 1304.015, + "new_cases_per_million": 3.382, + "new_cases_smoothed_per_million": 2.949, + "total_deaths_per_million": 27.896, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 23722.0, + "total_tests": 2253131.0, + "total_tests_per_thousand": 10.2, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 21347.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 32.77, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-16", + "total_cases": 288717.0, + "new_cases": 670.0, + "new_cases_smoothed": 656.571, + "total_deaths": 6168.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 1307.049, + "new_cases_per_million": 3.033, + "new_cases_smoothed_per_million": 2.972, + "total_deaths_per_million": 27.923, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 24022.0, + "total_tests": 2277153.0, + "total_tests_per_thousand": 10.309, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 21438.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 32.650999999999996, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-17", + "total_cases": 289215.0, + "new_cases": 498.0, + "new_cases_smoothed": 650.714, + "total_deaths": 6175.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1309.303, + "new_cases_per_million": 2.254, + "new_cases_smoothed_per_million": 2.946, + "total_deaths_per_million": 27.955, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 22448.0, + "total_tests": 2299601.0, + "total_tests_per_thousand": 10.411, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 21717.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 33.374, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-18", + "total_cases": 289832.0, + "new_cases": 617.0, + "new_cases_smoothed": 663.0, + "total_deaths": 6190.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1312.096, + "new_cases_per_million": 2.793, + "new_cases_smoothed_per_million": 3.001, + "total_deaths_per_million": 28.023, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 17612.0, + "total_tests": 2317213.0, + "total_tests_per_thousand": 10.49, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 21629.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 32.623000000000005, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-19", + "total_cases": 289832.0, + "new_cases": 0.0, + "new_cases_smoothed": 558.714, + "total_deaths": 6190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1312.096, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.529, + "total_deaths_per_million": 28.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 22859.0, + "total_tests": 2340072.0, + "total_tests_per_thousand": 10.594, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 21947.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 39.281, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-20", + "total_cases": 290958.0, + "new_cases": 1126.0, + "new_cases_smoothed": 612.0, + "total_deaths": 6209.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1317.194, + "new_cases_per_million": 5.098, + "new_cases_smoothed_per_million": 2.771, + "total_deaths_per_million": 28.109, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 23680.0, + "total_tests": 2363752.0, + "total_tests_per_thousand": 10.701, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 22584.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 36.902, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-21", + "total_cases": 291588.0, + "new_cases": 630.0, + "new_cases_smoothed": 612.571, + "total_deaths": 6219.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1320.046, + "new_cases_per_million": 2.852, + "new_cases_smoothed_per_million": 2.773, + "total_deaths_per_million": 28.154, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 25613.0, + "total_tests": 2389365.0, + "total_tests_per_thousand": 10.817, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 22851.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 37.303000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-22", + "total_cases": 292174.0, + "new_cases": 586.0, + "new_cases_smoothed": 589.571, + "total_deaths": 6231.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 1322.699, + "new_cases_per_million": 2.653, + "new_cases_smoothed_per_million": 2.669, + "total_deaths_per_million": 28.208, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 25537.0, + "total_tests": 2414902.0, + "total_tests_per_thousand": 10.932, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 23110.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 39.198, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-23", + "total_cases": 292765.0, + "new_cases": 591.0, + "new_cases_smoothed": 578.286, + "total_deaths": 6235.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1325.374, + "new_cases_per_million": 2.676, + "new_cases_smoothed_per_million": 2.618, + "total_deaths_per_million": 28.226, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 24956.0, + "total_tests": 2439858.0, + "total_tests_per_thousand": 11.045, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 23244.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 40.195, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-24", + "total_cases": 292765.0, + "new_cases": 0.0, + "new_cases_smoothed": 507.143, + "total_deaths": 6235.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1325.374, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.296, + "total_deaths_per_million": 28.226, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 23655.0, + "total_tests": 2463513.0, + "total_tests_per_thousand": 11.153, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 23416.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 46.172, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-25", + "total_cases": 293711.0, + "new_cases": 946.0, + "new_cases_smoothed": 554.143, + "total_deaths": 6255.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1329.657, + "new_cases_per_million": 4.283, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 28.317, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 24231.0, + "total_tests": 2487744.0, + "total_tests_per_thousand": 11.262, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 24362.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 43.963, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-26", + "total_cases": 294193.0, + "new_cases": 482.0, + "new_cases_smoothed": 623.0, + "total_deaths": 6267.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 1331.839, + "new_cases_per_million": 2.182, + "new_cases_smoothed_per_million": 2.82, + "total_deaths_per_million": 28.371, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 24593.0, + "total_tests": 2512337.0, + "total_tests_per_thousand": 11.374, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 24609.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 39.501, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 47.69 + }, + { + "date": "2020-08-27", + "total_cases": 294638.0, + "new_cases": 445.0, + "new_cases_smoothed": 525.714, + "total_deaths": 6274.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1333.853, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.38, + "total_deaths_per_million": 28.403, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 23441.0, + "total_tests": 2535778.0, + "total_tests_per_thousand": 11.48, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 24575.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 46.746, + "positive_rate": 0.021, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 295053.0, + "new_cases": 415.0, + "new_cases_smoothed": 495.0, + "total_deaths": 6283.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1335.732, + "new_cases_per_million": 1.879, + "new_cases_smoothed_per_million": 2.241, + "total_deaths_per_million": 28.444, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 23483.0, + "total_tests": 2559261.0, + "total_tests_per_thousand": 11.586, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 24271.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 49.032, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 295372.0, + "new_cases": 319.0, + "new_cases_smoothed": 456.857, + "total_deaths": 6284.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1337.176, + "new_cases_per_million": 1.444, + "new_cases_smoothed_per_million": 2.068, + "total_deaths_per_million": 28.448, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 22434.0, + "total_tests": 2581695.0, + "total_tests_per_thousand": 11.688, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 23828.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 52.156000000000006, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 295636.0, + "new_cases": 264.0, + "new_cases_smoothed": 410.143, + "total_deaths": 6288.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1338.371, + "new_cases_per_million": 1.195, + "new_cases_smoothed_per_million": 1.857, + "total_deaths_per_million": 28.466, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 21434.0, + "total_tests": 2603129.0, + "total_tests_per_thousand": 11.785, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 23324.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 56.868, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 295849.0, + "new_cases": 213.0, + "new_cases_smoothed": 440.571, + "total_deaths": 6294.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1339.336, + "new_cases_per_million": 0.964, + "new_cases_smoothed_per_million": 1.995, + "total_deaths_per_million": 28.494, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 18017.0, + "total_tests": 2621146.0, + "total_tests_per_thousand": 11.866, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 22519.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 51.113, + "positive_rate": 0.02, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 296149.0, + "new_cases": 300.0, + "new_cases_smoothed": 348.286, + "total_deaths": 6298.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1340.694, + "new_cases_per_million": 1.358, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 28.512, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 20922.0, + "total_tests": 2642068.0, + "total_tests_per_thousand": 11.961, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 22046.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 63.299, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 296590.0, + "new_cases": 441.0, + "new_cases_smoothed": 342.429, + "total_deaths": 6318.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1342.69, + "new_cases_per_million": 1.996, + "new_cases_smoothed_per_million": 1.55, + "total_deaths_per_million": 28.602, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 20440.0, + "total_tests": 2662508.0, + "total_tests_per_thousand": 12.053, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 21453.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 62.65, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 297014.0, + "new_cases": 424.0, + "new_cases_smoothed": 339.429, + "total_deaths": 6328.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1344.61, + "new_cases_per_million": 1.919, + "new_cases_smoothed_per_million": 1.537, + "total_deaths_per_million": 28.647, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 21744.0, + "total_tests": 2684252.0, + "total_tests_per_thousand": 12.152, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 21211.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 62.49, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 297512.0, + "new_cases": 498.0, + "new_cases_smoothed": 351.286, + "total_deaths": 6335.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1346.864, + "new_cases_per_million": 2.254, + "new_cases_smoothed_per_million": 1.59, + "total_deaths_per_million": 28.679, + "new_deaths_per_million": 0.032, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 23218.0, + "total_tests": 2707470.0, + "total_tests_per_thousand": 12.257, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 21173.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 60.273, + "positive_rate": 0.017, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 298025.0, + "new_cases": 513.0, + "new_cases_smoothed": 379.0, + "total_deaths": 6340.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1349.187, + "new_cases_per_million": 2.322, + "new_cases_smoothed_per_million": 1.716, + "total_deaths_per_million": 28.702, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.036 + } + ] + }, + "PSE": { + "continent": "Asia", + "location": "Palestine", + "population": 5101416.0, + "population_density": 778.202, + "median_age": 20.4, + "aged_65_older": 3.043, + "aged_70_older": 1.726, + "gdp_per_capita": 4449.898, + "extreme_poverty": 1.0, + "cardiovasc_death_rate": 265.91, + "diabetes_prevalence": 10.59, + "life_expectancy": 74.05, + "data": [ + { + "date": "2020-03-06", + "total_cases": 7.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.372, + "new_cases_per_million": 1.372, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-07", + "total_cases": 16.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.136, + "new_cases_per_million": 1.764, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-08", + "total_cases": 19.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.724, + "new_cases_per_million": 0.588, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-10", + "total_cases": 20.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.92, + "new_cases_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-11", + "total_cases": 29.0, + "new_cases": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.685, + "new_cases_per_million": 1.764, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-12", + "total_cases": 30.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.881, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 3.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.644, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-14", + "total_cases": 35.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.861, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-15", + "total_cases": 38.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.449, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-16", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.449, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-17", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.645, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-18", + "total_cases": 41.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.037, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.336, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-19", + "total_cases": 44.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.625, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-20", + "total_cases": 47.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.213, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-21", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.409, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-22", + "total_cases": 52.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.193, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-23", + "total_cases": 59.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.565, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.588, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-24", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.565, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-25", + "total_cases": 60.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.761, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-26", + "total_cases": 62.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.153, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-03-27", + "total_cases": 84.0, + "new_cases": 22.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.466, + "new_cases_per_million": 4.313, + "new_cases_smoothed_per_million": 1.036, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-03-28", + "total_cases": 91.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.838, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-03-29", + "total_cases": 97.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.014, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 1.26, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-03-30", + "total_cases": 106.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.779, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-03-31", + "total_cases": 115.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.543, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.568, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-01", + "total_cases": 117.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.935, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 1.596, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 134.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.267, + "new_cases_per_million": 3.332, + "new_cases_smoothed_per_million": 2.016, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 155.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.384, + "new_cases_per_million": 4.117, + "new_cases_smoothed_per_million": 1.988, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 155.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.384, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.792, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "new_cases_smoothed": 8.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.624, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 217.0, + "new_cases": 62.0, + "new_cases_smoothed": 15.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.537, + "new_cases_per_million": 12.153, + "new_cases_smoothed_per_million": 3.108, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 253.0, + "new_cases": 36.0, + "new_cases_smoothed": 19.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.594, + "new_cases_per_million": 7.057, + "new_cases_smoothed_per_million": 3.864, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 260.0, + "new_cases": 7.0, + "new_cases_smoothed": 20.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.966, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 4.004, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 263.0, + "new_cases": 3.0, + "new_cases_smoothed": 18.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.554, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 3.612, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 263.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.554, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.024, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 266.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.142, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 3.108, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 268.0, + "new_cases": 2.0, + "new_cases_smoothed": 16.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.534, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 3.164, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.534, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 287.0, + "new_cases": 19.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 56.259, + "new_cases_per_million": 3.724, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-16", + "total_cases": 291.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.043, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.784, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-17", + "total_cases": 294.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.631, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-04-18", + "total_cases": 307.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.179, + "new_cases_per_million": 2.548, + "new_cases_smoothed_per_million": 1.148, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-19", + "total_cases": 313.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.356, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 1.26, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-20", + "total_cases": 322.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.12, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-21", + "total_cases": 329.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.492, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 1.708, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.492, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 335.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.668, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 1.232, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 336.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.864, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 340.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.648, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.924, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 342.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.04, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 495.0, + "new_cases": 153.0, + "new_cases_smoothed": 24.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.032, + "new_cases_per_million": 29.992, + "new_cases_smoothed_per_million": 4.845, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-28", + "total_cases": 495.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.649, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 495.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.032, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.649, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 507.0, + "new_cases": 12.0, + "new_cases_smoothed": 24.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.384, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 4.817, + "total_deaths_per_million": 0.392, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 507.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.429, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 99.384, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.789, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 517.0, + "new_cases": 10.0, + "new_cases_smoothed": 25.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 101.344, + "new_cases_per_million": 1.96, + "new_cases_smoothed_per_million": 4.957, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 517.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 101.344, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.901, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 522.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 102.325, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 524.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 102.717, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 538.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 105.461, + "new_cases_per_million": 2.744, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 546.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 107.029, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 1.092, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 547.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 1.12, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-12", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-13", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.225, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.252, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-14", + "total_cases": 548.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.421, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-15", + "total_cases": 548.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 107.421, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-16", + "total_cases": 554.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.597, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-17", + "total_cases": 554.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-18", + "total_cases": 560.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.773, + "new_cases_per_million": 1.176, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-19", + "total_cases": 567.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.146, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-20", + "total_cases": 570.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.734, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-21", + "total_cases": 577.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 113.106, + "new_cases_per_million": 1.372, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-22", + "total_cases": 602.0, + "new_cases": 25.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.006, + "new_cases_per_million": 4.901, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-23", + "total_cases": 602.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 0.784, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 96.3 + }, + { + "date": "2020-05-24", + "total_cases": 602.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.344, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-05-25", + "total_cases": 602.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 96.3 + }, + { + "date": "2020-05-26", + "total_cases": 602.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 605.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.595, + "new_cases_per_million": 0.588, + "new_cases_smoothed_per_million": 0.98, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 613.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 120.163, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 1.008, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 625.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 122.515, + "new_cases_per_million": 2.352, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 625.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 122.515, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.644, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 626.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.711, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 627.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.907, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 628.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.103, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.728, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 630.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.495, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 635.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.475, + "new_cases_per_million": 0.98, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 643.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.043, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 643.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 643.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 651.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.612, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-09", + "total_cases": 652.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.808, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-10", + "total_cases": 661.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.572, + "new_cases_per_million": 1.764, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-11", + "total_cases": 665.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.356, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-12", + "total_cases": 667.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.748, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.672, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-13", + "total_cases": 669.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.14, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.728, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-14", + "total_cases": 673.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.924, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-15", + "total_cases": 673.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 686.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.472, + "new_cases_per_million": 2.548, + "new_cases_smoothed_per_million": 0.952, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 690.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.257, + "new_cases_per_million": 0.784, + "new_cases_smoothed_per_million": 0.812, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 701.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 137.413, + "new_cases_per_million": 2.156, + "new_cases_smoothed_per_million": 1.008, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 795.0, + "new_cases": 94.0, + "new_cases_smoothed": 18.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 155.839, + "new_cases_per_million": 18.426, + "new_cases_smoothed_per_million": 3.584, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 858.0, + "new_cases": 63.0, + "new_cases_smoothed": 27.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 168.189, + "new_cases_per_million": 12.35, + "new_cases_smoothed_per_million": 5.293, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 979.0, + "new_cases": 121.0, + "new_cases_smoothed": 43.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 191.908, + "new_cases_per_million": 23.719, + "new_cases_smoothed_per_million": 8.569, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 1022.0, + "new_cases": 43.0, + "new_cases_smoothed": 49.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.337, + "new_cases_per_million": 8.429, + "new_cases_smoothed_per_million": 9.773, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 1196.0, + "new_cases": 174.0, + "new_cases_smoothed": 72.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.445, + "new_cases_per_million": 34.108, + "new_cases_smoothed_per_million": 14.282, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 1375.0, + "new_cases": 179.0, + "new_cases_smoothed": 97.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 269.533, + "new_cases_per_million": 35.088, + "new_cases_smoothed_per_million": 19.182, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 1534.0, + "new_cases": 159.0, + "new_cases_smoothed": 119.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.701, + "new_cases_per_million": 31.168, + "new_cases_smoothed_per_million": 23.327, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 1588.0, + "new_cases": 54.0, + "new_cases_smoothed": 113.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 311.286, + "new_cases_per_million": 10.585, + "new_cases_smoothed_per_million": 22.207, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 1795.0, + "new_cases": 207.0, + "new_cases_smoothed": 133.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 351.863, + "new_cases_per_million": 40.577, + "new_cases_smoothed_per_million": 26.239, + "total_deaths_per_million": 0.98, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 2053.0, + "new_cases": 258.0, + "new_cases_smoothed": 153.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 402.437, + "new_cases_per_million": 50.574, + "new_cases_smoothed_per_million": 30.076, + "total_deaths_per_million": 1.176, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.028, + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 2248.0, + "new_cases": 195.0, + "new_cases_smoothed": 175.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 440.662, + "new_cases_per_million": 38.225, + "new_cases_smoothed_per_million": 34.332, + "total_deaths_per_million": 1.372, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 2443.0, + "new_cases": 195.0, + "new_cases_smoothed": 178.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 478.887, + "new_cases_per_million": 38.225, + "new_cases_smoothed_per_million": 34.92, + "total_deaths_per_million": 1.568, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.084, + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 2765.0, + "new_cases": 322.0, + "new_cases_smoothed": 198.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 542.006, + "new_cases_per_million": 63.12, + "new_cases_smoothed_per_million": 38.925, + "total_deaths_per_million": 1.764, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.112, + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 3095.0, + "new_cases": 330.0, + "new_cases_smoothed": 223.0, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 606.694, + "new_cases_per_million": 64.688, + "new_cases_smoothed_per_million": 43.713, + "total_deaths_per_million": 2.156, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 83.33 + }, + { + "date": "2020-07-03", + "total_cases": 3417.0, + "new_cases": 322.0, + "new_cases_smoothed": 261.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 669.814, + "new_cases_per_million": 63.12, + "new_cases_smoothed_per_million": 51.218, + "total_deaths_per_million": 2.156, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 83.33 + }, + { + "date": "2020-07-04", + "total_cases": 3689.0, + "new_cases": 272.0, + "new_cases_smoothed": 270.571, + "total_deaths": 15.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 723.133, + "new_cases_per_million": 53.319, + "new_cases_smoothed_per_million": 53.038, + "total_deaths_per_million": 2.94, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 83.33 + }, + { + "date": "2020-07-05", + "total_cases": 4250.0, + "new_cases": 561.0, + "new_cases_smoothed": 313.857, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 833.102, + "new_cases_per_million": 109.969, + "new_cases_smoothed_per_million": 61.524, + "total_deaths_per_million": 3.136, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 83.33 + }, + { + "date": "2020-07-06", + "total_cases": 4458.0, + "new_cases": 208.0, + "new_cases_smoothed": 315.714, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 873.875, + "new_cases_per_million": 40.773, + "new_cases_smoothed_per_million": 61.888, + "total_deaths_per_million": 3.92, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 83.33 + }, + { + "date": "2020-07-07", + "total_cases": 4786.0, + "new_cases": 328.0, + "new_cases_smoothed": 334.714, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 938.171, + "new_cases_per_million": 64.296, + "new_cases_smoothed_per_million": 65.612, + "total_deaths_per_million": 4.117, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 83.33 + }, + { + "date": "2020-07-08", + "total_cases": 5092.0, + "new_cases": 306.0, + "new_cases_smoothed": 332.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 998.154, + "new_cases_per_million": 59.983, + "new_cases_smoothed_per_million": 65.164, + "total_deaths_per_million": 4.313, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 83.33 + }, + { + "date": "2020-07-09", + "total_cases": 5567.0, + "new_cases": 475.0, + "new_cases_smoothed": 353.143, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1091.266, + "new_cases_per_million": 93.111, + "new_cases_smoothed_per_million": 69.224, + "total_deaths_per_million": 4.901, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 83.33 + }, + { + "date": "2020-07-10", + "total_cases": 5829.0, + "new_cases": 262.0, + "new_cases_smoothed": 344.571, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1142.624, + "new_cases_per_million": 51.358, + "new_cases_smoothed_per_million": 67.544, + "total_deaths_per_million": 5.293, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 83.33 + }, + { + "date": "2020-07-11", + "total_cases": 6225.0, + "new_cases": 396.0, + "new_cases_smoothed": 362.286, + "total_deaths": 30.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1220.249, + "new_cases_per_million": 77.626, + "new_cases_smoothed_per_million": 71.017, + "total_deaths_per_million": 5.881, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.42, + "stringency_index": 83.33 + }, + { + "date": "2020-07-12", + "total_cases": 6697.0, + "new_cases": 472.0, + "new_cases_smoothed": 349.571, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1312.773, + "new_cases_per_million": 92.523, + "new_cases_smoothed_per_million": 68.524, + "total_deaths_per_million": 6.273, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 83.33 + }, + { + "date": "2020-07-13", + "total_cases": 7038.0, + "new_cases": 341.0, + "new_cases_smoothed": 368.571, + "total_deaths": 37.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 1379.617, + "new_cases_per_million": 66.844, + "new_cases_smoothed_per_million": 72.249, + "total_deaths_per_million": 7.253, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 0.476, + "stringency_index": 83.33 + }, + { + "date": "2020-07-14", + "total_cases": 7441.0, + "new_cases": 403.0, + "new_cases_smoothed": 379.286, + "total_deaths": 41.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1458.615, + "new_cases_per_million": 78.998, + "new_cases_smoothed_per_million": 74.349, + "total_deaths_per_million": 8.037, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.56, + "stringency_index": 83.33 + }, + { + "date": "2020-07-15", + "total_cases": 7734.0, + "new_cases": 293.0, + "new_cases_smoothed": 377.429, + "total_deaths": 47.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1516.05, + "new_cases_per_million": 57.435, + "new_cases_smoothed_per_million": 73.985, + "total_deaths_per_million": 9.213, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.7, + "stringency_index": 83.33 + }, + { + "date": "2020-07-16", + "total_cases": 8154.0, + "new_cases": 420.0, + "new_cases_smoothed": 369.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1598.38, + "new_cases_per_million": 82.33, + "new_cases_smoothed_per_million": 72.445, + "total_deaths_per_million": 9.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 83.33 + }, + { + "date": "2020-07-17", + "total_cases": 8617.0, + "new_cases": 463.0, + "new_cases_smoothed": 398.286, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1689.139, + "new_cases_per_million": 90.759, + "new_cases_smoothed_per_million": 78.074, + "total_deaths_per_million": 9.605, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 83.33 + }, + { + "date": "2020-07-18", + "total_cases": 9056.0, + "new_cases": 439.0, + "new_cases_smoothed": 404.429, + "total_deaths": 55.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1775.193, + "new_cases_per_million": 86.055, + "new_cases_smoothed_per_million": 79.278, + "total_deaths_per_million": 10.781, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.7, + "stringency_index": 83.33 + }, + { + "date": "2020-07-19", + "total_cases": 9587.0, + "new_cases": 531.0, + "new_cases_smoothed": 412.857, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 1879.282, + "new_cases_per_million": 104.089, + "new_cases_smoothed_per_million": 80.93, + "total_deaths_per_million": 11.369, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 83.33 + }, + { + "date": "2020-07-20", + "total_cases": 10052.0, + "new_cases": 465.0, + "new_cases_smoothed": 430.571, + "total_deaths": 62.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 1970.433, + "new_cases_per_million": 91.151, + "new_cases_smoothed_per_million": 84.402, + "total_deaths_per_million": 12.153, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.7, + "stringency_index": 83.33 + }, + { + "date": "2020-07-21", + "total_cases": 10520.0, + "new_cases": 468.0, + "new_cases_smoothed": 439.857, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2062.173, + "new_cases_per_million": 91.739, + "new_cases_smoothed_per_million": 86.223, + "total_deaths_per_million": 12.938, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.7, + "stringency_index": 83.33 + }, + { + "date": "2020-07-22", + "total_cases": 10923.0, + "new_cases": 403.0, + "new_cases_smoothed": 455.571, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2141.17, + "new_cases_per_million": 78.998, + "new_cases_smoothed_per_million": 89.303, + "total_deaths_per_million": 13.134, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.56, + "stringency_index": 83.33 + }, + { + "date": "2020-07-23", + "total_cases": 11280.0, + "new_cases": 357.0, + "new_cases_smoothed": 446.571, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2211.151, + "new_cases_per_million": 69.981, + "new_cases_smoothed_per_million": 87.539, + "total_deaths_per_million": 13.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.56, + "stringency_index": 83.33 + }, + { + "date": "2020-07-24", + "total_cases": 11882.0, + "new_cases": 602.0, + "new_cases_smoothed": 466.429, + "total_deaths": 70.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 2329.157, + "new_cases_per_million": 118.006, + "new_cases_smoothed_per_million": 91.431, + "total_deaths_per_million": 13.722, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.588, + "stringency_index": 83.33 + }, + { + "date": "2020-07-25", + "total_cases": 12427.0, + "new_cases": 545.0, + "new_cases_smoothed": 481.571, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2435.99, + "new_cases_per_million": 106.833, + "new_cases_smoothed_per_million": 94.4, + "total_deaths_per_million": 13.918, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 83.33 + }, + { + "date": "2020-07-26", + "total_cases": 12809.0, + "new_cases": 382.0, + "new_cases_smoothed": 460.286, + "total_deaths": 74.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2510.871, + "new_cases_per_million": 74.881, + "new_cases_smoothed_per_million": 90.227, + "total_deaths_per_million": 14.506, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 83.33 + }, + { + "date": "2020-07-27", + "total_cases": 13129.0, + "new_cases": 320.0, + "new_cases_smoothed": 439.571, + "total_deaths": 78.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2573.599, + "new_cases_per_million": 62.728, + "new_cases_smoothed_per_million": 86.167, + "total_deaths_per_million": 15.29, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 83.33 + }, + { + "date": "2020-07-28", + "total_cases": 13457.0, + "new_cases": 328.0, + "new_cases_smoothed": 419.571, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2637.895, + "new_cases_per_million": 64.296, + "new_cases_smoothed_per_million": 82.246, + "total_deaths_per_million": 15.486, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 77.78 + }, + { + "date": "2020-07-29", + "total_cases": 13938.0, + "new_cases": 481.0, + "new_cases_smoothed": 430.714, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2732.183, + "new_cases_per_million": 94.288, + "new_cases_smoothed_per_million": 84.43, + "total_deaths_per_million": 15.878, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 77.78 + }, + { + "date": "2020-07-30", + "total_cases": 14458.0, + "new_cases": 520.0, + "new_cases_smoothed": 454.0, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2834.115, + "new_cases_per_million": 101.932, + "new_cases_smoothed_per_million": 88.995, + "total_deaths_per_million": 16.074, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.42, + "stringency_index": 77.78 + }, + { + "date": "2020-07-31", + "total_cases": 14838.0, + "new_cases": 380.0, + "new_cases_smoothed": 422.286, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2908.604, + "new_cases_per_million": 74.489, + "new_cases_smoothed_per_million": 82.778, + "total_deaths_per_million": 16.466, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 77.78 + }, + { + "date": "2020-08-01", + "total_cases": 15232.0, + "new_cases": 394.0, + "new_cases_smoothed": 400.714, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2985.838, + "new_cases_per_million": 77.233, + "new_cases_smoothed_per_million": 78.55, + "total_deaths_per_million": 16.662, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.392, + "stringency_index": 77.78 + }, + { + "date": "2020-08-02", + "total_cases": 15555.0, + "new_cases": 323.0, + "new_cases_smoothed": 392.286, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3049.153, + "new_cases_per_million": 63.316, + "new_cases_smoothed_per_million": 76.897, + "total_deaths_per_million": 16.662, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 77.78 + }, + { + "date": "2020-08-03", + "total_cases": 15780.0, + "new_cases": 225.0, + "new_cases_smoothed": 378.714, + "total_deaths": 87.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3093.259, + "new_cases_per_million": 44.105, + "new_cases_smoothed_per_million": 74.237, + "total_deaths_per_million": 17.054, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.252, + "stringency_index": 77.78 + }, + { + "date": "2020-08-04", + "total_cases": 16024.0, + "new_cases": 244.0, + "new_cases_smoothed": 366.714, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3141.089, + "new_cases_per_million": 47.83, + "new_cases_smoothed_per_million": 71.885, + "total_deaths_per_million": 17.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 77.78 + }, + { + "date": "2020-08-05", + "total_cases": 16628.0, + "new_cases": 604.0, + "new_cases_smoothed": 384.286, + "total_deaths": 87.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3259.487, + "new_cases_per_million": 118.398, + "new_cases_smoothed_per_million": 75.329, + "total_deaths_per_million": 17.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 77.78 + }, + { + "date": "2020-08-06", + "total_cases": 16981.0, + "new_cases": 353.0, + "new_cases_smoothed": 360.429, + "total_deaths": 91.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3328.684, + "new_cases_per_million": 69.196, + "new_cases_smoothed_per_million": 70.653, + "total_deaths_per_million": 17.838, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.252, + "stringency_index": 77.78 + }, + { + "date": "2020-08-07", + "total_cases": 17434.0, + "new_cases": 453.0, + "new_cases_smoothed": 370.857, + "total_deaths": 92.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3417.483, + "new_cases_per_million": 88.799, + "new_cases_smoothed_per_million": 72.697, + "total_deaths_per_million": 18.034, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.224, + "stringency_index": 77.78 + }, + { + "date": "2020-08-08", + "total_cases": 17948.0, + "new_cases": 514.0, + "new_cases_smoothed": 388.0, + "total_deaths": 97.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3518.239, + "new_cases_per_million": 100.756, + "new_cases_smoothed_per_million": 76.057, + "total_deaths_per_million": 19.014, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 0.336, + "stringency_index": 77.78 + }, + { + "date": "2020-08-09", + "total_cases": 18374.0, + "new_cases": 426.0, + "new_cases_smoothed": 402.714, + "total_deaths": 103.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3601.745, + "new_cases_per_million": 83.506, + "new_cases_smoothed_per_million": 78.942, + "total_deaths_per_million": 20.19, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.504, + "stringency_index": 77.78 + }, + { + "date": "2020-08-10", + "total_cases": 18651.0, + "new_cases": 277.0, + "new_cases_smoothed": 410.143, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3656.044, + "new_cases_per_million": 54.299, + "new_cases_smoothed_per_million": 80.398, + "total_deaths_per_million": 20.19, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 77.78 + }, + { + "date": "2020-08-11", + "total_cases": 19121.0, + "new_cases": 470.0, + "new_cases_smoothed": 442.429, + "total_deaths": 110.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 3748.175, + "new_cases_per_million": 92.131, + "new_cases_smoothed_per_million": 86.727, + "total_deaths_per_million": 21.563, + "new_deaths_per_million": 1.372, + "new_deaths_smoothed_per_million": 0.644, + "stringency_index": 77.78 + }, + { + "date": "2020-08-12", + "total_cases": 19594.0, + "new_cases": 473.0, + "new_cases_smoothed": 423.714, + "total_deaths": 113.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 3840.894, + "new_cases_per_million": 92.719, + "new_cases_smoothed_per_million": 83.058, + "total_deaths_per_million": 22.151, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 77.78 + }, + { + "date": "2020-08-13", + "total_cases": 20093.0, + "new_cases": 499.0, + "new_cases_smoothed": 444.571, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 3938.71, + "new_cases_per_million": 97.816, + "new_cases_smoothed_per_million": 87.147, + "total_deaths_per_million": 22.347, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.644, + "stringency_index": 77.78 + }, + { + "date": "2020-08-14", + "total_cases": 20525.0, + "new_cases": 432.0, + "new_cases_smoothed": 441.571, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 4023.393, + "new_cases_per_million": 84.682, + "new_cases_smoothed_per_million": 86.559, + "total_deaths_per_million": 22.543, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.644, + "stringency_index": 77.78 + }, + { + "date": "2020-08-15", + "total_cases": 21056.0, + "new_cases": 531.0, + "new_cases_smoothed": 444.0, + "total_deaths": 116.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 4127.481, + "new_cases_per_million": 104.089, + "new_cases_smoothed_per_million": 87.035, + "total_deaths_per_million": 22.739, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.532, + "stringency_index": 77.78 + }, + { + "date": "2020-08-16", + "total_cases": 21554.0, + "new_cases": 498.0, + "new_cases_smoothed": 454.286, + "total_deaths": 119.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 4225.101, + "new_cases_per_million": 97.62, + "new_cases_smoothed_per_million": 89.051, + "total_deaths_per_million": 23.327, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 77.78 + }, + { + "date": "2020-08-17", + "total_cases": 21935.0, + "new_cases": 381.0, + "new_cases_smoothed": 469.143, + "total_deaths": 121.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 4299.787, + "new_cases_per_million": 74.685, + "new_cases_smoothed_per_million": 91.963, + "total_deaths_per_million": 23.719, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.504, + "stringency_index": 77.78 + }, + { + "date": "2020-08-18", + "total_cases": 22391.0, + "new_cases": 456.0, + "new_cases_smoothed": 467.143, + "total_deaths": 121.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4389.174, + "new_cases_per_million": 89.387, + "new_cases_smoothed_per_million": 91.571, + "total_deaths_per_million": 23.719, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 77.78 + }, + { + "date": "2020-08-19", + "total_cases": 23003.0, + "new_cases": 612.0, + "new_cases_smoothed": 487.0, + "total_deaths": 124.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4509.14, + "new_cases_per_million": 119.967, + "new_cases_smoothed_per_million": 95.464, + "total_deaths_per_million": 24.307, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.308, + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 23427.0, + "new_cases": 424.0, + "new_cases_smoothed": 476.286, + "total_deaths": 127.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4592.254, + "new_cases_per_million": 83.114, + "new_cases_smoothed_per_million": 93.363, + "total_deaths_per_million": 24.895, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 23941.0, + "new_cases": 514.0, + "new_cases_smoothed": 488.0, + "total_deaths": 131.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 4693.011, + "new_cases_per_million": 100.756, + "new_cases_smoothed_per_million": 95.66, + "total_deaths_per_million": 25.679, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.448, + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 24398.0, + "new_cases": 457.0, + "new_cases_smoothed": 477.429, + "total_deaths": 135.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 4782.594, + "new_cases_per_million": 89.583, + "new_cases_smoothed_per_million": 93.587, + "total_deaths_per_million": 26.463, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.532, + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 24707.0, + "new_cases": 309.0, + "new_cases_smoothed": 450.429, + "total_deaths": 138.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 4843.165, + "new_cases_per_million": 60.571, + "new_cases_smoothed_per_million": 88.295, + "total_deaths_per_million": 27.051, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.532, + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 25024.0, + "new_cases": 317.0, + "new_cases_smoothed": 441.286, + "total_deaths": 143.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 4905.305, + "new_cases_per_million": 62.14, + "new_cases_smoothed_per_million": 86.503, + "total_deaths_per_million": 28.031, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 25588.0, + "new_cases": 564.0, + "new_cases_smoothed": 456.714, + "total_deaths": 147.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5015.862, + "new_cases_per_million": 110.558, + "new_cases_smoothed_per_million": 89.527, + "total_deaths_per_million": 28.816, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 26162.0, + "new_cases": 574.0, + "new_cases_smoothed": 451.286, + "total_deaths": 150.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5128.38, + "new_cases_per_million": 112.518, + "new_cases_smoothed_per_million": 88.463, + "total_deaths_per_million": 29.404, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 26764.0, + "new_cases": 602.0, + "new_cases_smoothed": 476.714, + "total_deaths": 151.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 5246.386, + "new_cases_per_million": 118.006, + "new_cases_smoothed_per_million": 93.447, + "total_deaths_per_million": 29.6, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.672, + "stringency_index": 77.78 + }, + { + "date": "2020-08-28", + "total_cases": 27386.0, + "new_cases": 622.0, + "new_cases_smoothed": 492.143, + "total_deaths": 158.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 5368.313, + "new_cases_per_million": 121.927, + "new_cases_smoothed_per_million": 96.472, + "total_deaths_per_million": 30.972, + "new_deaths_per_million": 1.372, + "new_deaths_smoothed_per_million": 0.756, + "stringency_index": 77.78 + }, + { + "date": "2020-08-29", + "total_cases": 28110.0, + "new_cases": 724.0, + "new_cases_smoothed": 530.286, + "total_deaths": 160.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5510.235, + "new_cases_per_million": 141.921, + "new_cases_smoothed_per_million": 103.949, + "total_deaths_per_million": 31.364, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.7, + "stringency_index": 77.78 + }, + { + "date": "2020-08-30", + "total_cases": 28527.0, + "new_cases": 417.0, + "new_cases_smoothed": 545.714, + "total_deaths": 164.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5591.977, + "new_cases_per_million": 81.742, + "new_cases_smoothed_per_million": 106.973, + "total_deaths_per_million": 32.148, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 77.78 + }, + { + "date": "2020-08-31", + "total_cases": 29063.0, + "new_cases": 536.0, + "new_cases_smoothed": 577.0, + "total_deaths": 166.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5697.046, + "new_cases_per_million": 105.069, + "new_cases_smoothed_per_million": 113.106, + "total_deaths_per_million": 32.54, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.644, + "stringency_index": 77.78 + }, + { + "date": "2020-09-01", + "total_cases": 29869.0, + "new_cases": 806.0, + "new_cases_smoothed": 611.571, + "total_deaths": 173.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5855.041, + "new_cases_per_million": 157.995, + "new_cases_smoothed_per_million": 119.883, + "total_deaths_per_million": 33.912, + "new_deaths_per_million": 1.372, + "new_deaths_smoothed_per_million": 0.728, + "stringency_index": 77.78 + }, + { + "date": "2020-09-02", + "total_cases": 30490.0, + "new_cases": 621.0, + "new_cases_smoothed": 618.286, + "total_deaths": 180.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5976.772, + "new_cases_per_million": 121.731, + "new_cases_smoothed_per_million": 121.199, + "total_deaths_per_million": 35.284, + "new_deaths_per_million": 1.372, + "new_deaths_smoothed_per_million": 0.84, + "stringency_index": 77.78 + }, + { + "date": "2020-09-03", + "total_cases": 31333.0, + "new_cases": 843.0, + "new_cases_smoothed": 652.714, + "total_deaths": 184.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 6142.02, + "new_cases_per_million": 165.248, + "new_cases_smoothed_per_million": 127.948, + "total_deaths_per_million": 36.068, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.924 + }, + { + "date": "2020-09-04", + "total_cases": 32088.0, + "new_cases": 755.0, + "new_cases_smoothed": 671.714, + "total_deaths": 189.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 6290.018, + "new_cases_per_million": 147.998, + "new_cases_smoothed_per_million": 131.672, + "total_deaths_per_million": 37.049, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 0.868 + }, + { + "date": "2020-09-05", + "total_cases": 32817.0, + "new_cases": 729.0, + "new_cases_smoothed": 672.429, + "total_deaths": 192.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 6432.92, + "new_cases_per_million": 142.902, + "new_cases_smoothed_per_million": 131.812, + "total_deaths_per_million": 37.637, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.896 + } + ] + }, + "PAN": { + "continent": "North America", + "location": "Panama", + "population": 4314768.0, + "population_density": 55.133, + "median_age": 29.7, + "aged_65_older": 7.918, + "aged_70_older": 5.03, + "gdp_per_capita": 22267.037, + "extreme_poverty": 2.2, + "cardiovasc_death_rate": 128.346, + "diabetes_prevalence": 8.33, + "female_smokers": 2.4, + "male_smokers": 9.9, + "hospital_beds_per_thousand": 2.3, + "life_expectancy": 78.51, + "data": [ + { + "date": "2020-03-09", + "total_tests": 107.0, + "total_tests_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-10", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.232, + "new_cases_per_million": 0.232, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 138.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.007, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 6.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 1.622, + "new_cases_per_million": 1.391, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.232, + "new_tests": 42.0, + "total_tests": 180.0, + "total_tests_per_thousand": 0.042, + "new_tests_per_thousand": 0.01, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-12", + "total_cases": 14.0, + "new_cases": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.245, + "new_cases_per_million": 1.622, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_tests": 194.0, + "total_tests": 374.0, + "total_tests_per_thousand": 0.087, + "new_tests_per_thousand": 0.045, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-13", + "total_cases": 27.0, + "new_cases": 13.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 6.258, + "new_cases_per_million": 3.013, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_tests": 239.0, + "total_tests": 613.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.055, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-14", + "total_cases": 36.0, + "new_cases": 9.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.343, + "new_cases_per_million": 2.086, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_tests": 201.0, + "total_tests": 814.0, + "total_tests_per_thousand": 0.189, + "new_tests_per_thousand": 0.047, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-15", + "total_cases": 43.0, + "new_cases": 7.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 9.966, + "new_cases_per_million": 1.622, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_tests": 107.0, + "total_tests": 921.0, + "total_tests_per_thousand": 0.213, + "new_tests_per_thousand": 0.025, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-16", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.966, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.424, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 83.0, + "total_tests": 1004.0, + "total_tests_per_thousand": 0.233, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 128.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-17", + "total_cases": 69.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.992, + "new_cases_per_million": 6.026, + "new_cases_smoothed_per_million": 2.251, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 241.0, + "total_tests": 1245.0, + "total_tests_per_thousand": 0.289, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 158.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 16.265, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-03-18", + "total_cases": 86.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.932, + "new_cases_per_million": 3.94, + "new_cases_smoothed_per_million": 2.616, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 210.0, + "total_tests": 1455.0, + "total_tests_per_thousand": 0.337, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 16.127, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-03-19", + "total_cases": 109.0, + "new_cases": 23.0, + "new_cases_smoothed": 13.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.262, + "new_cases_per_million": 5.331, + "new_cases_smoothed_per_million": 3.145, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 313.0, + "total_tests": 1768.0, + "total_tests_per_thousand": 0.41, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 199.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 14.663, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 51.85 + }, + { + "date": "2020-03-20", + "total_cases": 137.0, + "new_cases": 28.0, + "new_cases_smoothed": 15.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.751, + "new_cases_per_million": 6.489, + "new_cases_smoothed_per_million": 3.642, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 401.0, + "total_tests": 2169.0, + "total_tests_per_thousand": 0.503, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 222.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 14.127, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-03-21", + "total_cases": 200.0, + "new_cases": 63.0, + "new_cases_smoothed": 23.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.352, + "new_cases_per_million": 14.601, + "new_cases_smoothed_per_million": 5.43, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 303.0, + "total_tests": 2472.0, + "total_tests_per_thousand": 0.573, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 237.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 10.116, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-03-22", + "total_cases": 245.0, + "new_cases": 45.0, + "new_cases_smoothed": 28.857, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 56.782, + "new_cases_per_million": 10.429, + "new_cases_smoothed_per_million": 6.688, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 627.0, + "total_tests": 3099.0, + "total_tests_per_thousand": 0.718, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 311.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 10.777000000000001, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 59.26 + }, + { + "date": "2020-03-23", + "total_cases": 313.0, + "new_cases": 68.0, + "new_cases_smoothed": 38.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 72.542, + "new_cases_per_million": 15.76, + "new_cases_smoothed_per_million": 8.939, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 286.0, + "total_tests": 3385.0, + "total_tests_per_thousand": 0.785, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 340.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 8.815, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-03-24", + "total_cases": 345.0, + "new_cases": 32.0, + "new_cases_smoothed": 39.429, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 79.958, + "new_cases_per_million": 7.416, + "new_cases_smoothed_per_million": 9.138, + "total_deaths_per_million": 1.391, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 305.0, + "total_tests": 3690.0, + "total_tests_per_thousand": 0.855, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 349.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 8.851, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-25", + "total_cases": 443.0, + "new_cases": 98.0, + "new_cases_smoothed": 51.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 102.671, + "new_cases_per_million": 22.713, + "new_cases_smoothed_per_million": 11.82, + "total_deaths_per_million": 1.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 558.0, + "total_tests": 4248.0, + "total_tests_per_thousand": 0.985, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 399.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 7.824, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-26", + "total_cases": 588.0, + "new_cases": 145.0, + "new_cases_smoothed": 68.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 136.276, + "new_cases_per_million": 33.606, + "new_cases_smoothed_per_million": 15.859, + "total_deaths_per_million": 1.391, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 608.0, + "total_tests": 4856.0, + "total_tests_per_thousand": 1.125, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 441.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 6.445, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-27", + "total_cases": 674.0, + "new_cases": 86.0, + "new_cases_smoothed": 76.714, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 156.208, + "new_cases_per_million": 19.932, + "new_cases_smoothed_per_million": 17.779, + "total_deaths_per_million": 2.086, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 366.0, + "total_tests": 5222.0, + "total_tests_per_thousand": 1.21, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 436.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 5.683, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-28", + "total_cases": 786.0, + "new_cases": 112.0, + "new_cases_smoothed": 83.714, + "total_deaths": 14.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 182.165, + "new_cases_per_million": 25.957, + "new_cases_smoothed_per_million": 19.402, + "total_deaths_per_million": 3.245, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 0.43, + "new_tests": 540.0, + "total_tests": 5762.0, + "total_tests_per_thousand": 1.335, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 470.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 5.614, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-29", + "total_cases": 901.0, + "new_cases": 115.0, + "new_cases_smoothed": 93.714, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 208.818, + "new_cases_per_million": 26.653, + "new_cases_smoothed_per_million": 21.719, + "total_deaths_per_million": 3.94, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.464, + "new_tests": 398.0, + "total_tests": 6160.0, + "total_tests_per_thousand": 1.428, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 437.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 4.663, + "positive_rate": 0.214, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-30", + "total_cases": 989.0, + "new_cases": 88.0, + "new_cases_smoothed": 96.571, + "total_deaths": 24.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 229.213, + "new_cases_per_million": 20.395, + "new_cases_smoothed_per_million": 22.382, + "total_deaths_per_million": 5.562, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 0.695, + "new_tests": 422.0, + "total_tests": 6582.0, + "total_tests_per_thousand": 1.525, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 457.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 4.732, + "positive_rate": 0.21100000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-31", + "total_cases": 1075.0, + "new_cases": 86.0, + "new_cases_smoothed": 104.286, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 249.144, + "new_cases_per_million": 19.932, + "new_cases_smoothed_per_million": 24.169, + "total_deaths_per_million": 6.026, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.662, + "new_tests": 362.0, + "total_tests": 6944.0, + "total_tests_per_thousand": 1.609, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 465.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 4.459, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-01", + "total_cases": 1181.0, + "new_cases": 106.0, + "new_cases_smoothed": 105.429, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 273.711, + "new_cases_per_million": 24.567, + "new_cases_smoothed_per_million": 24.434, + "total_deaths_per_million": 6.953, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.795, + "new_tests": 389.0, + "total_tests": 7333.0, + "total_tests_per_thousand": 1.7, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 441.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 4.183, + "positive_rate": 0.239, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 1317.0, + "new_cases": 136.0, + "new_cases_smoothed": 104.143, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 305.231, + "new_cases_per_million": 31.52, + "new_cases_smoothed_per_million": 24.136, + "total_deaths_per_million": 7.416, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.861, + "new_tests": 608.0, + "total_tests": 7941.0, + "total_tests_per_thousand": 1.84, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 441.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 4.235, + "positive_rate": 0.23600000000000002, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 1475.0, + "new_cases": 158.0, + "new_cases_smoothed": 114.429, + "total_deaths": 37.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 341.849, + "new_cases_per_million": 36.618, + "new_cases_smoothed_per_million": 26.52, + "total_deaths_per_million": 8.575, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 0.927, + "new_tests": 753.0, + "total_tests": 8694.0, + "total_tests_per_thousand": 2.015, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 496.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 4.335, + "positive_rate": 0.231, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 1673.0, + "new_cases": 198.0, + "new_cases_smoothed": 126.714, + "total_deaths": 41.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 387.738, + "new_cases_per_million": 45.889, + "new_cases_smoothed_per_million": 29.368, + "total_deaths_per_million": 9.502, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.894, + "new_tests": 562.0, + "total_tests": 9256.0, + "total_tests_per_thousand": 2.145, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 499.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 3.938, + "positive_rate": 0.254, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 1801.0, + "new_cases": 128.0, + "new_cases_smoothed": 128.571, + "total_deaths": 46.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 417.404, + "new_cases_per_million": 29.666, + "new_cases_smoothed_per_million": 29.798, + "total_deaths_per_million": 10.661, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 493.0, + "total_tests": 9749.0, + "total_tests_per_thousand": 2.259, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 513.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 3.99, + "positive_rate": 0.251, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 1988.0, + "new_cases": 187.0, + "new_cases_smoothed": 142.714, + "total_deaths": 54.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 460.743, + "new_cases_per_million": 43.34, + "new_cases_smoothed_per_million": 33.076, + "total_deaths_per_million": 12.515, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 0.993, + "new_tests": 548.0, + "total_tests": 10297.0, + "total_tests_per_thousand": 2.386, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 531.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 3.721, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 2100.0, + "new_cases": 112.0, + "new_cases_smoothed": 146.429, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 486.701, + "new_cases_per_million": 25.957, + "new_cases_smoothed_per_million": 33.937, + "total_deaths_per_million": 12.747, + "new_deaths_per_million": 0.232, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 384.0, + "total_tests": 10681.0, + "total_tests_per_thousand": 2.475, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 534.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 3.647, + "positive_rate": 0.27399999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 2249.0, + "new_cases": 149.0, + "new_cases_smoothed": 152.571, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 521.233, + "new_cases_per_million": 34.533, + "new_cases_smoothed_per_million": 35.36, + "total_deaths_per_million": 13.674, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 1095.0, + "total_tests": 11776.0, + "total_tests_per_thousand": 2.729, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 635.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 4.162, + "positive_rate": 0.24, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 2528.0, + "new_cases": 279.0, + "new_cases_smoothed": 173.0, + "total_deaths": 63.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 585.895, + "new_cases_per_million": 64.662, + "new_cases_smoothed_per_million": 40.095, + "total_deaths_per_million": 14.601, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 676.0, + "total_tests": 12452.0, + "total_tests_per_thousand": 2.886, + "new_tests_per_thousand": 0.157, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 3.7230000000000003, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 2752.0, + "new_cases": 224.0, + "new_cases_smoothed": 182.429, + "total_deaths": 66.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 637.809, + "new_cases_per_million": 51.915, + "new_cases_smoothed_per_million": 42.28, + "total_deaths_per_million": 15.296, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 1046.0, + "total_tests": 13498.0, + "total_tests_per_thousand": 3.128, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 3.76, + "positive_rate": 0.266, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 2974.0, + "new_cases": 222.0, + "new_cases_smoothed": 185.857, + "total_deaths": 74.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 689.261, + "new_cases_per_million": 51.451, + "new_cases_smoothed_per_million": 43.075, + "total_deaths_per_million": 17.15, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.093, + "new_tests": 862.0, + "total_tests": 14360.0, + "total_tests_per_thousand": 3.328, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 3.9219999999999997, + "positive_rate": 0.255, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 3234.0, + "new_cases": 260.0, + "new_cases_smoothed": 204.714, + "total_deaths": 79.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 749.519, + "new_cases_per_million": 60.258, + "new_cases_smoothed_per_million": 47.445, + "total_deaths_per_million": 18.309, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.093, + "new_tests": 625.0, + "total_tests": 14985.0, + "total_tests_per_thousand": 3.473, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 748.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 3.654, + "positive_rate": 0.27399999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 3400.0, + "new_cases": 166.0, + "new_cases_smoothed": 201.714, + "total_deaths": 87.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 787.991, + "new_cases_per_million": 38.473, + "new_cases_smoothed_per_million": 46.75, + "total_deaths_per_million": 20.163, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.093, + "new_tests": 412.0, + "total_tests": 15397.0, + "total_tests_per_thousand": 3.568, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 3.614, + "positive_rate": 0.27699999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 3472.0, + "new_cases": 72.0, + "new_cases_smoothed": 196.0, + "total_deaths": 94.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 804.678, + "new_cases_per_million": 16.687, + "new_cases_smoothed_per_million": 45.425, + "total_deaths_per_million": 21.786, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 486.0, + "total_tests": 15883.0, + "total_tests_per_thousand": 3.681, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 743.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 3.7910000000000004, + "positive_rate": 0.264, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 3574.0, + "new_cases": 102.0, + "new_cases_smoothed": 189.286, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 828.318, + "new_cases_per_million": 23.64, + "new_cases_smoothed_per_million": 43.869, + "total_deaths_per_million": 22.017, + "new_deaths_per_million": 0.232, + "new_deaths_smoothed_per_million": 1.192, + "new_tests": 785.0, + "total_tests": 16668.0, + "total_tests_per_thousand": 3.863, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 699.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 3.693, + "positive_rate": 0.271, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 3751.0, + "new_cases": 177.0, + "new_cases_smoothed": 174.714, + "total_deaths": 103.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 869.34, + "new_cases_per_million": 41.022, + "new_cases_smoothed_per_million": 40.492, + "total_deaths_per_million": 23.872, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.324, + "new_tests": 962.0, + "total_tests": 17630.0, + "total_tests_per_thousand": 4.086, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 740.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 4.235, + "positive_rate": 0.23600000000000002, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 4016.0, + "new_cases": 265.0, + "new_cases_smoothed": 180.571, + "total_deaths": 109.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 930.757, + "new_cases_per_million": 61.417, + "new_cases_smoothed_per_million": 41.85, + "total_deaths_per_million": 25.262, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.424, + "new_tests": 711.0, + "total_tests": 18341.0, + "total_tests_per_thousand": 4.251, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 692.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 3.832, + "positive_rate": 0.261, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 4210.0, + "new_cases": 194.0, + "new_cases_smoothed": 176.571, + "total_deaths": 116.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 975.719, + "new_cases_per_million": 44.962, + "new_cases_smoothed_per_million": 40.923, + "total_deaths_per_million": 26.884, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.391, + "new_tests": 497.0, + "total_tests": 18838.0, + "total_tests_per_thousand": 4.366, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 640.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 3.625, + "positive_rate": 0.276, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 4273.0, + "new_cases": 63.0, + "new_cases_smoothed": 148.429, + "total_deaths": 120.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 990.32, + "new_cases_per_million": 14.601, + "new_cases_smoothed_per_million": 34.4, + "total_deaths_per_million": 27.811, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.357, + "new_tests": 1013.0, + "total_tests": 19851.0, + "total_tests_per_thousand": 4.601, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 695.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 4.6819999999999995, + "positive_rate": 0.214, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 4467.0, + "new_cases": 194.0, + "new_cases_smoothed": 152.429, + "total_deaths": 126.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1035.282, + "new_cases_per_million": 44.962, + "new_cases_smoothed_per_million": 35.327, + "total_deaths_per_million": 29.202, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 830.0, + "total_tests": 20681.0, + "total_tests_per_thousand": 4.793, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 755.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 4.953, + "positive_rate": 0.20199999999999999, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 4658.0, + "new_cases": 191.0, + "new_cases_smoothed": 169.429, + "total_deaths": 136.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1079.548, + "new_cases_per_million": 44.267, + "new_cases_smoothed_per_million": 39.267, + "total_deaths_per_million": 31.52, + "new_deaths_per_million": 2.318, + "new_deaths_smoothed_per_million": 1.391, + "new_tests": 871.0, + "total_tests": 21552.0, + "total_tests_per_thousand": 4.995, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 810.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 4.781000000000001, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 4821.0, + "new_cases": 163.0, + "new_cases_smoothed": 178.143, + "total_deaths": 141.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1117.325, + "new_cases_per_million": 37.777, + "new_cases_smoothed_per_million": 41.287, + "total_deaths_per_million": 32.678, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.523, + "new_tests": 1150.0, + "total_tests": 22702.0, + "total_tests_per_thousand": 5.261, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 862.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 4.8389999999999995, + "positive_rate": 0.207, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 4992.0, + "new_cases": 171.0, + "new_cases_smoothed": 177.286, + "total_deaths": 144.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1156.957, + "new_cases_per_million": 39.631, + "new_cases_smoothed_per_million": 41.088, + "total_deaths_per_million": 33.374, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.357, + "new_tests": 442.0, + "total_tests": 23144.0, + "total_tests_per_thousand": 5.364, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 788.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 4.445, + "positive_rate": 0.225, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 5166.0, + "new_cases": 174.0, + "new_cases_smoothed": 164.286, + "total_deaths": 146.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1197.283, + "new_cases_per_million": 40.327, + "new_cases_smoothed_per_million": 38.075, + "total_deaths_per_million": 33.837, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 1.225, + "new_tests": 759.0, + "total_tests": 23903.0, + "total_tests_per_thousand": 5.54, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 4.8389999999999995, + "positive_rate": 0.207, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 5338.0, + "new_cases": 172.0, + "new_cases_smoothed": 161.143, + "total_deaths": 154.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1237.146, + "new_cases_per_million": 39.863, + "new_cases_smoothed_per_million": 37.347, + "total_deaths_per_million": 35.691, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.258, + "new_tests": 1021.0, + "total_tests": 24924.0, + "total_tests_per_thousand": 5.776, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 869.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 5.393, + "positive_rate": 0.185, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 5538.0, + "new_cases": 200.0, + "new_cases_smoothed": 180.714, + "total_deaths": 159.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1283.499, + "new_cases_per_million": 46.352, + "new_cases_smoothed_per_million": 41.883, + "total_deaths_per_million": 36.85, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 1199.0, + "total_tests": 26123.0, + "total_tests_per_thousand": 6.054, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 896.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 4.958, + "positive_rate": 0.20199999999999999, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 5779.0, + "new_cases": 241.0, + "new_cases_smoothed": 187.429, + "total_deaths": 165.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1339.354, + "new_cases_per_million": 55.855, + "new_cases_smoothed_per_million": 43.439, + "total_deaths_per_million": 38.241, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 1098.0, + "total_tests": 27221.0, + "total_tests_per_thousand": 6.309, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 934.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 4.9830000000000005, + "positive_rate": 0.201, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 6021.0, + "new_cases": 242.0, + "new_cases_smoothed": 194.714, + "total_deaths": 167.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1395.44, + "new_cases_per_million": 56.086, + "new_cases_smoothed_per_million": 45.127, + "total_deaths_per_million": 38.704, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 913.0, + "total_tests": 28134.0, + "total_tests_per_thousand": 6.52, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 940.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 4.828, + "positive_rate": 0.207, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 6200.0, + "new_cases": 179.0, + "new_cases_smoothed": 197.0, + "total_deaths": 176.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1436.925, + "new_cases_per_million": 41.485, + "new_cases_smoothed_per_million": 45.657, + "total_deaths_per_million": 40.79, + "new_deaths_per_million": 2.086, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 1011.0, + "total_tests": 29145.0, + "total_tests_per_thousand": 6.755, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 920.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 4.67, + "positive_rate": 0.214, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 6378.0, + "new_cases": 178.0, + "new_cases_smoothed": 198.0, + "total_deaths": 178.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1478.179, + "new_cases_per_million": 41.254, + "new_cases_smoothed_per_million": 45.889, + "total_deaths_per_million": 41.254, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 1.126, + "new_tests": 884.0, + "total_tests": 30029.0, + "total_tests_per_thousand": 6.96, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 984.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 4.97, + "positive_rate": 0.201, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 6532.0, + "new_cases": 154.0, + "new_cases_smoothed": 195.143, + "total_deaths": 188.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1513.871, + "new_cases_per_million": 35.691, + "new_cases_smoothed_per_million": 45.227, + "total_deaths_per_million": 43.571, + "new_deaths_per_million": 2.318, + "new_deaths_smoothed_per_million": 1.391, + "new_tests": 1048.0, + "total_tests": 31077.0, + "total_tests_per_thousand": 7.202, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 1025.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 5.252999999999999, + "positive_rate": 0.19, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 6720.0, + "new_cases": 188.0, + "new_cases_smoothed": 197.429, + "total_deaths": 192.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1557.442, + "new_cases_per_million": 43.571, + "new_cases_smoothed_per_million": 45.756, + "total_deaths_per_million": 44.498, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.258, + "new_tests": 1467.0, + "total_tests": 32544.0, + "total_tests_per_thousand": 7.542, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 1089.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 5.516, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 7090.0, + "new_cases": 370.0, + "new_cases_smoothed": 221.714, + "total_deaths": 197.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1643.194, + "new_cases_per_million": 85.752, + "new_cases_smoothed_per_million": 51.385, + "total_deaths_per_million": 45.657, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.258, + "new_tests": 996.0, + "total_tests": 33540.0, + "total_tests_per_thousand": 7.773, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 4.781000000000001, + "positive_rate": 0.209, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 7197.0, + "new_cases": 107.0, + "new_cases_smoothed": 202.571, + "total_deaths": 200.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1667.992, + "new_cases_per_million": 24.799, + "new_cases_smoothed_per_million": 46.948, + "total_deaths_per_million": 46.352, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 992.0, + "total_tests": 34532.0, + "total_tests_per_thousand": 8.003, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 5.154, + "positive_rate": 0.19399999999999998, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-05", + "total_cases": 7387.0, + "new_cases": 190.0, + "new_cases_smoothed": 195.143, + "total_deaths": 203.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1712.027, + "new_cases_per_million": 44.035, + "new_cases_smoothed_per_million": 45.227, + "total_deaths_per_million": 47.048, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.192, + "new_tests": 915.0, + "total_tests": 35447.0, + "total_tests_per_thousand": 8.215, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 5.355, + "positive_rate": 0.187, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-06", + "total_cases": 7523.0, + "new_cases": 136.0, + "new_cases_smoothed": 189.0, + "total_deaths": 210.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1743.547, + "new_cases_per_million": 31.52, + "new_cases_smoothed_per_million": 43.803, + "total_deaths_per_million": 48.67, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.126, + "new_tests": 1412.0, + "total_tests": 36859.0, + "total_tests_per_thousand": 8.543, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 1102.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 5.831, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-07", + "total_cases": 7731.0, + "new_cases": 208.0, + "new_cases_smoothed": 193.286, + "total_deaths": 218.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1791.753, + "new_cases_per_million": 48.207, + "new_cases_smoothed_per_million": 44.796, + "total_deaths_per_million": 50.524, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.324, + "new_tests": 1044.0, + "total_tests": 37903.0, + "total_tests_per_thousand": 8.784, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 1125.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 5.82, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-08", + "total_cases": 7868.0, + "new_cases": 137.0, + "new_cases_smoothed": 190.857, + "total_deaths": 225.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1823.505, + "new_cases_per_million": 31.751, + "new_cases_smoothed_per_million": 44.233, + "total_deaths_per_million": 52.146, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.225, + "new_tests": 1197.0, + "total_tests": 39100.0, + "total_tests_per_thousand": 9.062, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 6.004, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-09", + "total_cases": 8070.0, + "new_cases": 202.0, + "new_cases_smoothed": 192.857, + "total_deaths": 231.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1870.321, + "new_cases_per_million": 46.816, + "new_cases_smoothed_per_million": 44.697, + "total_deaths_per_million": 53.537, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 1265.0, + "total_tests": 40365.0, + "total_tests_per_thousand": 9.355, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 1117.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 5.792000000000001, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-10", + "total_cases": 8282.0, + "new_cases": 212.0, + "new_cases_smoothed": 170.286, + "total_deaths": 237.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1919.454, + "new_cases_per_million": 49.134, + "new_cases_smoothed_per_million": 39.466, + "total_deaths_per_million": 54.928, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.324, + "new_tests": 827.0, + "total_tests": 41192.0, + "total_tests_per_thousand": 9.547, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 6.419, + "positive_rate": 0.156, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-11", + "total_cases": 8448.0, + "new_cases": 166.0, + "new_cases_smoothed": 178.714, + "total_deaths": 244.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1957.927, + "new_cases_per_million": 38.473, + "new_cases_smoothed_per_million": 41.419, + "total_deaths_per_million": 56.55, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.457, + "new_tests": 980.0, + "total_tests": 42172.0, + "total_tests_per_thousand": 9.774, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 1091.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 6.105, + "positive_rate": 0.16399999999999998, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-12", + "total_cases": 8616.0, + "new_cases": 168.0, + "new_cases_smoothed": 175.571, + "total_deaths": 249.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1996.863, + "new_cases_per_million": 38.936, + "new_cases_smoothed_per_million": 40.691, + "total_deaths_per_million": 57.709, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.523, + "new_tests": 2389.0, + "total_tests": 44561.0, + "total_tests_per_thousand": 10.328, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 1302.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 7.416, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-05-13", + "total_cases": 8783.0, + "new_cases": 167.0, + "new_cases_smoothed": 180.0, + "total_deaths": 252.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 2035.567, + "new_cases_per_million": 38.704, + "new_cases_smoothed_per_million": 41.717, + "total_deaths_per_million": 58.404, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.391, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 6.372000000000001, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 8944.0, + "new_cases": 161.0, + "new_cases_smoothed": 173.286, + "total_deaths": 256.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 2072.881, + "new_cases_per_million": 37.314, + "new_cases_smoothed_per_million": 40.161, + "total_deaths_per_million": 59.331, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.258, + "total_tests": 45221.0, + "total_tests_per_thousand": 10.481, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 6.031000000000001, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 9118.0, + "new_cases": 174.0, + "new_cases_smoothed": 178.571, + "total_deaths": 260.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2113.207, + "new_cases_per_million": 40.327, + "new_cases_smoothed_per_million": 41.386, + "total_deaths_per_million": 60.258, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 868.0, + "total_tests": 46089.0, + "total_tests_per_thousand": 10.682, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 998.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 5.5889999999999995, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 9268.0, + "new_cases": 150.0, + "new_cases_smoothed": 171.143, + "total_deaths": 266.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 2147.972, + "new_cases_per_million": 34.764, + "new_cases_smoothed_per_million": 39.664, + "total_deaths_per_million": 61.649, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.159, + "new_tests": 1295.0, + "total_tests": 47384.0, + "total_tests_per_thousand": 10.982, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 1003.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 5.861000000000001, + "positive_rate": 0.171, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 9449.0, + "new_cases": 181.0, + "new_cases_smoothed": 166.714, + "total_deaths": 269.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2189.921, + "new_cases_per_million": 41.949, + "new_cases_smoothed_per_million": 38.638, + "total_deaths_per_million": 62.344, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.059, + "new_tests": 1215.0, + "total_tests": 48599.0, + "total_tests_per_thousand": 11.263, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 1058.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 6.346, + "positive_rate": 0.158, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 9606.0, + "new_cases": 157.0, + "new_cases_smoothed": 165.429, + "total_deaths": 275.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2226.307, + "new_cases_per_million": 36.387, + "new_cases_smoothed_per_million": 38.34, + "total_deaths_per_million": 63.735, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 713.0, + "total_tests": 49312.0, + "total_tests_per_thousand": 11.429, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 1020.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 6.166, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-19", + "total_cases": 9726.0, + "new_cases": 120.0, + "new_cases_smoothed": 158.571, + "total_deaths": 279.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2254.119, + "new_cases_per_million": 27.811, + "new_cases_smoothed_per_million": 36.751, + "total_deaths_per_million": 64.662, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.993, + "new_tests": 697.0, + "total_tests": 50009.0, + "total_tests_per_thousand": 11.59, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 4.906000000000001, + "positive_rate": 0.204, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-20", + "total_cases": 9867.0, + "new_cases": 141.0, + "new_cases_smoothed": 154.857, + "total_deaths": 281.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2286.797, + "new_cases_per_million": 32.678, + "new_cases_smoothed_per_million": 35.89, + "total_deaths_per_million": 65.125, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 789.0, + "total_tests": 50798.0, + "total_tests_per_thousand": 11.773, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 844.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 5.45, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-21", + "total_cases": 9977.0, + "new_cases": 110.0, + "new_cases_smoothed": 147.571, + "total_deaths": 287.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2312.291, + "new_cases_per_million": 25.494, + "new_cases_smoothed_per_million": 34.201, + "total_deaths_per_million": 66.516, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1250.0, + "total_tests": 52048.0, + "total_tests_per_thousand": 12.063, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 975.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 6.607, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-22", + "total_cases": 10116.0, + "new_cases": 139.0, + "new_cases_smoothed": 142.571, + "total_deaths": 291.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2344.506, + "new_cases_per_million": 32.215, + "new_cases_smoothed_per_million": 33.043, + "total_deaths_per_million": 67.443, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1025.0, + "total_tests": 53073.0, + "total_tests_per_thousand": 12.3, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 998.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-23", + "total_cases": 10267.0, + "new_cases": 151.0, + "new_cases_smoothed": 142.714, + "total_deaths": 295.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2379.502, + "new_cases_per_million": 34.996, + "new_cases_smoothed_per_million": 33.076, + "total_deaths_per_million": 68.37, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 1669.0, + "total_tests": 54742.0, + "total_tests_per_thousand": 12.687, + "new_tests_per_thousand": 0.387, + "new_tests_smoothed": 1051.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 7.364, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-24", + "total_cases": 10577.0, + "new_cases": 310.0, + "new_cases_smoothed": 161.143, + "total_deaths": 299.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2451.348, + "new_cases_per_million": 71.846, + "new_cases_smoothed_per_million": 37.347, + "total_deaths_per_million": 69.297, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 0.993, + "new_tests": 1456.0, + "total_tests": 56198.0, + "total_tests_per_thousand": 13.025, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 6.739, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-25", + "total_cases": 10926.0, + "new_cases": 349.0, + "new_cases_smoothed": 188.571, + "total_deaths": 306.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2532.233, + "new_cases_per_million": 80.885, + "new_cases_smoothed_per_million": 43.704, + "total_deaths_per_million": 70.919, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1056.0, + "total_tests": 57254.0, + "total_tests_per_thousand": 13.269, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 1135.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 6.019, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-26", + "total_cases": 11183.0, + "new_cases": 257.0, + "new_cases_smoothed": 208.143, + "total_deaths": 310.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2591.796, + "new_cases_per_million": 59.563, + "new_cases_smoothed_per_million": 48.24, + "total_deaths_per_million": 71.846, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1213.0, + "total_tests": 58467.0, + "total_tests_per_thousand": 13.55, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 1208.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 5.803999999999999, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-27", + "total_cases": 11447.0, + "new_cases": 264.0, + "new_cases_smoothed": 225.714, + "total_deaths": 313.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 2652.982, + "new_cases_per_million": 61.185, + "new_cases_smoothed_per_million": 52.312, + "total_deaths_per_million": 72.542, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.059, + "new_tests": 1253.0, + "total_tests": 59720.0, + "total_tests_per_thousand": 13.841, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 1275.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 5.649, + "positive_rate": 0.177, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-28", + "total_cases": 11728.0, + "new_cases": 281.0, + "new_cases_smoothed": 250.143, + "total_deaths": 315.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 2718.107, + "new_cases_per_million": 65.125, + "new_cases_smoothed_per_million": 57.974, + "total_deaths_per_million": 73.005, + "new_deaths_per_million": 0.464, + "new_deaths_smoothed_per_million": 0.927, + "new_tests": 1253.0, + "total_tests": 60973.0, + "total_tests_per_thousand": 14.131, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 1275.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 5.0969999999999995, + "positive_rate": 0.196, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-29", + "total_cases": 12131.0, + "new_cases": 403.0, + "new_cases_smoothed": 287.857, + "total_deaths": 320.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2811.507, + "new_cases_per_million": 93.4, + "new_cases_smoothed_per_million": 66.714, + "total_deaths_per_million": 74.164, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 1407.0, + "total_tests": 62380.0, + "total_tests_per_thousand": 14.457, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 1330.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 4.62, + "positive_rate": 0.21600000000000003, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-30", + "total_cases": 12531.0, + "new_cases": 400.0, + "new_cases_smoothed": 323.429, + "total_deaths": 326.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2904.212, + "new_cases_per_million": 92.705, + "new_cases_smoothed_per_million": 74.959, + "total_deaths_per_million": 75.554, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1487.0, + "total_tests": 63867.0, + "total_tests_per_thousand": 14.802, + "new_tests_per_thousand": 0.345, + "new_tests_smoothed": 1304.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 4.032, + "positive_rate": 0.248, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-31", + "total_cases": 13018.0, + "new_cases": 487.0, + "new_cases_smoothed": 348.714, + "total_deaths": 330.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 3017.08, + "new_cases_per_million": 112.868, + "new_cases_smoothed_per_million": 80.819, + "total_deaths_per_million": 76.482, + "new_deaths_per_million": 0.927, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 1470.0, + "total_tests": 65337.0, + "total_tests_per_thousand": 15.143, + "new_tests_per_thousand": 0.341, + "new_tests_smoothed": 1306.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 3.745, + "positive_rate": 0.267, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-01", + "total_cases": 13463.0, + "new_cases": 445.0, + "new_cases_smoothed": 362.429, + "total_deaths": 336.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3120.214, + "new_cases_per_million": 103.134, + "new_cases_smoothed_per_million": 83.997, + "total_deaths_per_million": 77.872, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 0.993, + "new_tests": 928.0, + "total_tests": 66265.0, + "total_tests_per_thousand": 15.358, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 1287.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 3.551, + "positive_rate": 0.282, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-02", + "total_cases": 13837.0, + "new_cases": 374.0, + "new_cases_smoothed": 379.143, + "total_deaths": 344.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3206.893, + "new_cases_per_million": 86.679, + "new_cases_smoothed_per_million": 87.871, + "total_deaths_per_million": 79.726, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.126, + "new_tests": 830.0, + "total_tests": 67095.0, + "total_tests_per_thousand": 15.55, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 1233.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 3.252, + "positive_rate": 0.307, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-03", + "total_cases": 14095.0, + "new_cases": 258.0, + "new_cases_smoothed": 378.286, + "total_deaths": 352.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3266.688, + "new_cases_per_million": 59.795, + "new_cases_smoothed_per_million": 87.672, + "total_deaths_per_million": 81.58, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 1619.0, + "total_tests": 68714.0, + "total_tests_per_thousand": 15.925, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 1285.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 3.397, + "positive_rate": 0.294, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-04", + "total_cases": 14609.0, + "new_cases": 514.0, + "new_cases_smoothed": 411.571, + "total_deaths": 357.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 3385.814, + "new_cases_per_million": 119.126, + "new_cases_smoothed_per_million": 95.387, + "total_deaths_per_million": 82.739, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.391, + "new_tests": 1531.0, + "total_tests": 70245.0, + "total_tests_per_thousand": 16.28, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 1325.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 3.219, + "positive_rate": 0.311, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-05", + "total_cases": 15044.0, + "new_cases": 435.0, + "new_cases_smoothed": 416.143, + "total_deaths": 363.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3486.63, + "new_cases_per_million": 100.817, + "new_cases_smoothed_per_million": 96.446, + "total_deaths_per_million": 84.13, + "new_deaths_per_million": 1.391, + "new_deaths_smoothed_per_million": 1.424, + "new_tests": 1495.0, + "total_tests": 71740.0, + "total_tests_per_thousand": 16.627, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 3.213, + "positive_rate": 0.311, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-06-06", + "total_cases": 15463.0, + "new_cases": 419.0, + "new_cases_smoothed": 418.857, + "total_deaths": 370.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 3583.738, + "new_cases_per_million": 97.108, + "new_cases_smoothed_per_million": 97.075, + "total_deaths_per_million": 85.752, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.457, + "new_tests": 1744.0, + "total_tests": 73484.0, + "total_tests_per_thousand": 17.031, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 1374.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 3.28, + "positive_rate": 0.305, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-06-07", + "total_cases": 16004.0, + "new_cases": 541.0, + "new_cases_smoothed": 426.571, + "total_deaths": 386.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3709.122, + "new_cases_per_million": 125.383, + "new_cases_smoothed_per_million": 98.863, + "total_deaths_per_million": 89.46, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 1.854, + "new_tests": 1573.0, + "total_tests": 75057.0, + "total_tests_per_thousand": 17.395, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 1389.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 3.2560000000000002, + "positive_rate": 0.307, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-08", + "total_cases": 16425.0, + "new_cases": 421.0, + "new_cases_smoothed": 423.143, + "total_deaths": 393.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3806.694, + "new_cases_per_million": 97.572, + "new_cases_smoothed_per_million": 98.069, + "total_deaths_per_million": 91.083, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 1.887, + "new_tests": 1656.0, + "total_tests": 76713.0, + "total_tests_per_thousand": 17.779, + "new_tests_per_thousand": 0.384, + "new_tests_smoothed": 1493.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 3.528, + "positive_rate": 0.28300000000000003, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 16854.0, + "new_cases": 429.0, + "new_cases_smoothed": 431.0, + "total_deaths": 398.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3906.12, + "new_cases_per_million": 99.426, + "new_cases_smoothed_per_million": 99.889, + "total_deaths_per_million": 92.241, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.788, + "new_tests": 1419.0, + "total_tests": 78132.0, + "total_tests_per_thousand": 18.108, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 1577.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 3.659, + "positive_rate": 0.273, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-10", + "total_cases": 17233.0, + "new_cases": 379.0, + "new_cases_smoothed": 448.286, + "total_deaths": 403.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 3993.957, + "new_cases_per_million": 87.838, + "new_cases_smoothed_per_million": 103.896, + "total_deaths_per_million": 93.4, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.689, + "new_tests": 2041.0, + "total_tests": 80173.0, + "total_tests_per_thousand": 18.581, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 1637.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 3.6519999999999997, + "positive_rate": 0.27399999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 17889.0, + "new_cases": 656.0, + "new_cases_smoothed": 468.571, + "total_deaths": 413.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 4145.993, + "new_cases_per_million": 152.036, + "new_cases_smoothed_per_million": 108.597, + "total_deaths_per_million": 95.718, + "new_deaths_per_million": 2.318, + "new_deaths_smoothed_per_million": 1.854, + "new_tests": 2218.0, + "total_tests": 82391.0, + "total_tests_per_thousand": 19.095, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 1735.0, + "new_tests_smoothed_per_thousand": 0.402, + "tests_per_case": 3.7030000000000003, + "positive_rate": 0.27, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 18586.0, + "new_cases": 697.0, + "new_cases_smoothed": 506.0, + "total_deaths": 418.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4307.532, + "new_cases_per_million": 161.538, + "new_cases_smoothed_per_million": 117.272, + "total_deaths_per_million": 96.877, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.821, + "new_tests": 2029.0, + "total_tests": 84420.0, + "total_tests_per_thousand": 19.565, + "new_tests_per_thousand": 0.47, + "new_tests_smoothed": 1811.0, + "new_tests_smoothed_per_thousand": 0.42, + "tests_per_case": 3.5789999999999997, + "positive_rate": 0.27899999999999997, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 19211.0, + "new_cases": 625.0, + "new_cases_smoothed": 535.429, + "total_deaths": 421.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 4452.383, + "new_cases_per_million": 144.851, + "new_cases_smoothed_per_million": 124.092, + "total_deaths_per_million": 97.572, + "new_deaths_per_million": 0.695, + "new_deaths_smoothed_per_million": 1.689, + "new_tests": 2666.0, + "total_tests": 87086.0, + "total_tests_per_thousand": 20.183, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 1943.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 3.6289999999999996, + "positive_rate": 0.276, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 20059.0, + "new_cases": 848.0, + "new_cases_smoothed": 579.286, + "total_deaths": 429.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4648.917, + "new_cases_per_million": 196.534, + "new_cases_smoothed_per_million": 134.257, + "total_deaths_per_million": 99.426, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.424, + "new_tests": 1880.0, + "total_tests": 88966.0, + "total_tests_per_thousand": 20.619, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 1987.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 3.43, + "positive_rate": 0.292, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 20686.0, + "new_cases": 627.0, + "new_cases_smoothed": 608.714, + "total_deaths": 437.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4794.232, + "new_cases_per_million": 145.315, + "new_cases_smoothed_per_million": 141.077, + "total_deaths_per_million": 101.28, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 1.457, + "new_tests": 1984.0, + "total_tests": 90950.0, + "total_tests_per_thousand": 21.079, + "new_tests_per_thousand": 0.46, + "new_tests_smoothed": 2034.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 3.341, + "positive_rate": 0.299, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 21422.0, + "new_cases": 736.0, + "new_cases_smoothed": 652.571, + "total_deaths": 448.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4964.809, + "new_cases_per_million": 170.577, + "new_cases_smoothed_per_million": 151.241, + "total_deaths_per_million": 103.829, + "new_deaths_per_million": 2.549, + "new_deaths_smoothed_per_million": 1.655, + "new_tests": 1645.0, + "total_tests": 92595.0, + "total_tests_per_thousand": 21.46, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 2066.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 3.1660000000000004, + "positive_rate": 0.316, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 21962.0, + "new_cases": 540.0, + "new_cases_smoothed": 675.571, + "total_deaths": 457.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 5089.961, + "new_cases_per_million": 125.152, + "new_cases_smoothed_per_million": 156.572, + "total_deaths_per_million": 105.915, + "new_deaths_per_million": 2.086, + "new_deaths_smoothed_per_million": 1.788, + "new_tests": 2086.0, + "total_tests": 94681.0, + "total_tests_per_thousand": 21.943, + "new_tests_per_thousand": 0.483, + "new_tests_smoothed": 2073.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 3.069, + "positive_rate": 0.326, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-18", + "total_cases": 22597.0, + "new_cases": 635.0, + "new_cases_smoothed": 672.571, + "total_deaths": 470.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 5237.13, + "new_cases_per_million": 147.169, + "new_cases_smoothed_per_million": 155.877, + "total_deaths_per_million": 108.928, + "new_deaths_per_million": 3.013, + "new_deaths_smoothed_per_million": 1.887, + "new_tests": 2449.0, + "total_tests": 97130.0, + "total_tests_per_thousand": 22.511, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 2106.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 3.1310000000000002, + "positive_rate": 0.319, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-19", + "total_cases": 23351.0, + "new_cases": 754.0, + "new_cases_smoothed": 680.714, + "total_deaths": 475.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 5411.878, + "new_cases_per_million": 174.749, + "new_cases_smoothed_per_million": 157.764, + "total_deaths_per_million": 110.087, + "new_deaths_per_million": 1.159, + "new_deaths_smoothed_per_million": 1.887, + "new_tests": 2820.0, + "total_tests": 99950.0, + "total_tests_per_thousand": 23.165, + "new_tests_per_thousand": 0.654, + "new_tests_smoothed": 2219.0, + "new_tests_smoothed_per_thousand": 0.514, + "tests_per_case": 3.26, + "positive_rate": 0.307, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-20", + "total_cases": 24274.0, + "new_cases": 923.0, + "new_cases_smoothed": 723.286, + "total_deaths": 485.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 5625.795, + "new_cases_per_million": 213.916, + "new_cases_smoothed_per_million": 167.63, + "total_deaths_per_million": 112.405, + "new_deaths_per_million": 2.318, + "new_deaths_smoothed_per_million": 2.119, + "new_tests": 2766.0, + "total_tests": 102716.0, + "total_tests_per_thousand": 23.806, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 2233.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 3.0869999999999997, + "positive_rate": 0.324, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-21", + "total_cases": 25222.0, + "new_cases": 948.0, + "new_cases_smoothed": 737.571, + "total_deaths": 493.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 5845.505, + "new_cases_per_million": 219.711, + "new_cases_smoothed_per_million": 170.941, + "total_deaths_per_million": 114.259, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 2.119, + "new_tests": 2410.0, + "total_tests": 105126.0, + "total_tests_per_thousand": 24.364, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 2309.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 3.1310000000000002, + "positive_rate": 0.319, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-22", + "total_cases": 26030.0, + "new_cases": 808.0, + "new_cases_smoothed": 763.429, + "total_deaths": 501.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 6032.769, + "new_cases_per_million": 187.264, + "new_cases_smoothed_per_million": 176.934, + "total_deaths_per_million": 116.113, + "new_deaths_per_million": 1.854, + "new_deaths_smoothed_per_million": 2.119, + "new_tests": 2075.0, + "total_tests": 107201.0, + "total_tests_per_thousand": 24.845, + "new_tests_per_thousand": 0.481, + "new_tests_smoothed": 2322.0, + "new_tests_smoothed_per_thousand": 0.538, + "tests_per_case": 3.042, + "positive_rate": 0.32899999999999996, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-23", + "total_cases": 26752.0, + "new_cases": 722.0, + "new_cases_smoothed": 761.429, + "total_deaths": 521.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 6200.102, + "new_cases_per_million": 167.332, + "new_cases_smoothed_per_million": 176.47, + "total_deaths_per_million": 120.748, + "new_deaths_per_million": 4.635, + "new_deaths_smoothed_per_million": 2.417, + "new_tests": 1701.0, + "total_tests": 108902.0, + "total_tests_per_thousand": 25.239, + "new_tests_per_thousand": 0.394, + "new_tests_smoothed": 2330.0, + "new_tests_smoothed_per_thousand": 0.54, + "tests_per_case": 3.06, + "positive_rate": 0.327, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-24", + "total_cases": 27314.0, + "new_cases": 562.0, + "new_cases_smoothed": 764.571, + "total_deaths": 536.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 6330.352, + "new_cases_per_million": 130.25, + "new_cases_smoothed_per_million": 177.199, + "total_deaths_per_million": 124.225, + "new_deaths_per_million": 3.476, + "new_deaths_smoothed_per_million": 2.616, + "new_tests": 2295.0, + "total_tests": 111197.0, + "total_tests_per_thousand": 25.771, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 2359.0, + "new_tests_smoothed_per_thousand": 0.547, + "tests_per_case": 3.085, + "positive_rate": 0.324, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-25", + "total_cases": 28030.0, + "new_cases": 716.0, + "new_cases_smoothed": 776.143, + "total_deaths": 547.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 6496.294, + "new_cases_per_million": 165.942, + "new_cases_smoothed_per_million": 179.881, + "total_deaths_per_million": 126.774, + "new_deaths_per_million": 2.549, + "new_deaths_smoothed_per_million": 2.549, + "new_tests": 3224.0, + "total_tests": 114421.0, + "total_tests_per_thousand": 26.518, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 2470.0, + "new_tests_smoothed_per_thousand": 0.572, + "tests_per_case": 3.182, + "positive_rate": 0.314, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-26", + "total_cases": 29037.0, + "new_cases": 1007.0, + "new_cases_smoothed": 812.286, + "total_deaths": 564.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 6729.678, + "new_cases_per_million": 233.385, + "new_cases_smoothed_per_million": 188.257, + "total_deaths_per_million": 130.714, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 2.947, + "new_tests": 3029.0, + "total_tests": 117450.0, + "total_tests_per_thousand": 27.22, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 2500.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 3.0780000000000003, + "positive_rate": 0.325, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-27", + "total_cases": 29905.0, + "new_cases": 868.0, + "new_cases_smoothed": 804.429, + "total_deaths": 575.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 6930.848, + "new_cases_per_million": 201.17, + "new_cases_smoothed_per_million": 186.436, + "total_deaths_per_million": 133.263, + "new_deaths_per_million": 2.549, + "new_deaths_smoothed_per_million": 2.98, + "new_tests": 2351.0, + "total_tests": 119801.0, + "total_tests_per_thousand": 27.765, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 2441.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 3.034, + "positive_rate": 0.33, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-28", + "total_cases": 30658.0, + "new_cases": 753.0, + "new_cases_smoothed": 776.571, + "total_deaths": 592.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 7105.365, + "new_cases_per_million": 174.517, + "new_cases_smoothed_per_million": 179.98, + "total_deaths_per_million": 137.203, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 3.278, + "new_tests": 2908.0, + "total_tests": 122709.0, + "total_tests_per_thousand": 28.439, + "new_tests_per_thousand": 0.674, + "new_tests_smoothed": 2512.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 3.235, + "positive_rate": 0.309, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-29", + "total_cases": 31686.0, + "new_cases": 1028.0, + "new_cases_smoothed": 808.0, + "total_deaths": 604.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 7343.616, + "new_cases_per_million": 238.252, + "new_cases_smoothed_per_million": 187.264, + "total_deaths_per_million": 139.984, + "new_deaths_per_million": 2.781, + "new_deaths_smoothed_per_million": 3.41, + "new_tests": 3200.0, + "total_tests": 125909.0, + "total_tests_per_thousand": 29.181, + "new_tests_per_thousand": 0.742, + "new_tests_smoothed": 2673.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 3.3080000000000003, + "positive_rate": 0.302, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-30", + "total_cases": 32785.0, + "new_cases": 1099.0, + "new_cases_smoothed": 861.857, + "total_deaths": 620.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 7598.323, + "new_cases_per_million": 254.707, + "new_cases_smoothed_per_million": 199.746, + "total_deaths_per_million": 143.693, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 3.278, + "new_tests": 1977.0, + "total_tests": 127886.0, + "total_tests_per_thousand": 29.639, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 2712.0, + "new_tests_smoothed_per_thousand": 0.629, + "tests_per_case": 3.147, + "positive_rate": 0.318, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-01", + "total_cases": 33550.0, + "new_cases": 765.0, + "new_cases_smoothed": 890.857, + "total_deaths": 631.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 7775.621, + "new_cases_per_million": 177.298, + "new_cases_smoothed_per_million": 206.467, + "total_deaths_per_million": 146.242, + "new_deaths_per_million": 2.549, + "new_deaths_smoothed_per_million": 3.145, + "new_tests": 2670.0, + "total_tests": 130556.0, + "total_tests_per_thousand": 30.258, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 2766.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 3.105, + "positive_rate": 0.322, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-02", + "total_cases": 34463.0, + "new_cases": 913.0, + "new_cases_smoothed": 919.0, + "total_deaths": 645.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 7987.22, + "new_cases_per_million": 211.599, + "new_cases_smoothed_per_million": 212.989, + "total_deaths_per_million": 149.487, + "new_deaths_per_million": 3.245, + "new_deaths_smoothed_per_million": 3.245, + "new_tests": 2347.0, + "total_tests": 132903.0, + "total_tests_per_thousand": 30.802, + "new_tests_per_thousand": 0.544, + "new_tests_smoothed": 2640.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 2.873, + "positive_rate": 0.348, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-03", + "total_cases": 35237.0, + "new_cases": 774.0, + "new_cases_smoothed": 885.714, + "total_deaths": 667.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 8166.604, + "new_cases_per_million": 179.384, + "new_cases_smoothed_per_million": 205.275, + "total_deaths_per_million": 154.585, + "new_deaths_per_million": 5.099, + "new_deaths_smoothed_per_million": 3.41, + "new_tests": 2261.0, + "total_tests": 135164.0, + "total_tests_per_thousand": 31.326, + "new_tests_per_thousand": 0.524, + "new_tests_smoothed": 2531.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 2.858, + "positive_rate": 0.35, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-04", + "total_cases": 35995.0, + "new_cases": 758.0, + "new_cases_smoothed": 870.0, + "total_deaths": 698.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 8342.279, + "new_cases_per_million": 175.676, + "new_cases_smoothed_per_million": 201.633, + "total_deaths_per_million": 161.77, + "new_deaths_per_million": 7.185, + "new_deaths_smoothed_per_million": 4.072, + "new_tests": 5637.0, + "total_tests": 140801.0, + "total_tests_per_thousand": 32.632, + "new_tests_per_thousand": 1.306, + "new_tests_smoothed": 3000.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 3.448, + "positive_rate": 0.29, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-05", + "total_cases": 36983.0, + "new_cases": 988.0, + "new_cases_smoothed": 903.571, + "total_deaths": 720.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 8571.26, + "new_cases_per_million": 228.981, + "new_cases_smoothed_per_million": 209.414, + "total_deaths_per_million": 166.869, + "new_deaths_per_million": 5.099, + "new_deaths_smoothed_per_million": 4.238, + "new_tests": 1166.0, + "total_tests": 141967.0, + "total_tests_per_thousand": 32.903, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 2751.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 3.045, + "positive_rate": 0.32799999999999996, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-06", + "total_cases": 38149.0, + "new_cases": 1166.0, + "new_cases_smoothed": 923.286, + "total_deaths": 747.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 8841.495, + "new_cases_per_million": 270.235, + "new_cases_smoothed_per_million": 213.983, + "total_deaths_per_million": 173.126, + "new_deaths_per_million": 6.258, + "new_deaths_smoothed_per_million": 4.735, + "new_tests": 3172.0, + "total_tests": 145139.0, + "total_tests_per_thousand": 33.638, + "new_tests_per_thousand": 0.735, + "new_tests_smoothed": 2747.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 2.975, + "positive_rate": 0.336, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-07", + "total_cases": 39334.0, + "new_cases": 1185.0, + "new_cases_smoothed": 935.571, + "total_deaths": 770.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 9116.133, + "new_cases_per_million": 274.638, + "new_cases_smoothed_per_million": 216.83, + "total_deaths_per_million": 178.457, + "new_deaths_per_million": 5.331, + "new_deaths_smoothed_per_million": 4.966, + "new_tests": 2421.0, + "total_tests": 147560.0, + "total_tests_per_thousand": 34.199, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 2811.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 3.005, + "positive_rate": 0.33299999999999996, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-08", + "total_cases": 40291.0, + "new_cases": 957.0, + "new_cases_smoothed": 963.0, + "total_deaths": 799.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 9337.93, + "new_cases_per_million": 221.796, + "new_cases_smoothed_per_million": 223.187, + "total_deaths_per_million": 185.178, + "new_deaths_per_million": 6.721, + "new_deaths_smoothed_per_million": 5.562, + "new_tests": 2584.0, + "total_tests": 150144.0, + "total_tests_per_thousand": 34.798, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 2798.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 2.906, + "positive_rate": 0.344, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-09", + "total_cases": 41251.0, + "new_cases": 960.0, + "new_cases_smoothed": 969.714, + "total_deaths": 819.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 9560.421, + "new_cases_per_million": 222.492, + "new_cases_smoothed_per_million": 224.743, + "total_deaths_per_million": 189.813, + "new_deaths_per_million": 4.635, + "new_deaths_smoothed_per_million": 5.761, + "new_tests": 2498.0, + "total_tests": 152642.0, + "total_tests_per_thousand": 35.377, + "new_tests_per_thousand": 0.579, + "new_tests_smoothed": 2820.0, + "new_tests_smoothed_per_thousand": 0.654, + "tests_per_case": 2.908, + "positive_rate": 0.344, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-10", + "total_cases": 42216.0, + "new_cases": 965.0, + "new_cases_smoothed": 997.0, + "total_deaths": 839.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 9784.072, + "new_cases_per_million": 223.65, + "new_cases_smoothed_per_million": 231.067, + "total_deaths_per_million": 194.448, + "new_deaths_per_million": 4.635, + "new_deaths_smoothed_per_million": 5.695, + "new_tests": 3022.0, + "total_tests": 155664.0, + "total_tests_per_thousand": 36.077, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 2929.0, + "new_tests_smoothed_per_thousand": 0.679, + "tests_per_case": 2.938, + "positive_rate": 0.34, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-11", + "total_cases": 43257.0, + "new_cases": 1041.0, + "new_cases_smoothed": 1037.429, + "total_deaths": 863.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 10025.336, + "new_cases_per_million": 241.264, + "new_cases_smoothed_per_million": 240.437, + "total_deaths_per_million": 200.011, + "new_deaths_per_million": 5.562, + "new_deaths_smoothed_per_million": 5.463, + "new_tests": 2906.0, + "total_tests": 158570.0, + "total_tests_per_thousand": 36.751, + "new_tests_per_thousand": 0.674, + "new_tests_smoothed": 2538.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 2.4459999999999997, + "positive_rate": 0.409, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-12", + "total_cases": 44332.0, + "new_cases": 1075.0, + "new_cases_smoothed": 1049.857, + "total_deaths": 893.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 10274.481, + "new_cases_per_million": 249.144, + "new_cases_smoothed_per_million": 243.317, + "total_deaths_per_million": 206.964, + "new_deaths_per_million": 6.953, + "new_deaths_smoothed_per_million": 5.728, + "new_tests": 3435.0, + "total_tests": 162005.0, + "total_tests_per_thousand": 37.547, + "new_tests_per_thousand": 0.796, + "new_tests_smoothed": 2863.0, + "new_tests_smoothed_per_thousand": 0.664, + "tests_per_case": 2.727, + "positive_rate": 0.36700000000000005, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-13", + "total_cases": 45633.0, + "new_cases": 1301.0, + "new_cases_smoothed": 1069.143, + "total_deaths": 909.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 10576.003, + "new_cases_per_million": 301.523, + "new_cases_smoothed_per_million": 247.787, + "total_deaths_per_million": 210.672, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 5.364, + "new_tests": 3584.0, + "total_tests": 165589.0, + "total_tests_per_thousand": 38.377, + "new_tests_per_thousand": 0.831, + "new_tests_smoothed": 2921.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 2.7319999999999998, + "positive_rate": 0.366, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-14", + "total_cases": 47173.0, + "new_cases": 1540.0, + "new_cases_smoothed": 1119.857, + "total_deaths": 932.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 10932.917, + "new_cases_per_million": 356.914, + "new_cases_smoothed_per_million": 259.541, + "total_deaths_per_million": 216.002, + "new_deaths_per_million": 5.331, + "new_deaths_smoothed_per_million": 5.364, + "new_tests": 2575.0, + "total_tests": 168164.0, + "total_tests_per_thousand": 38.974, + "new_tests_per_thousand": 0.597, + "new_tests_smoothed": 2943.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 2.628, + "positive_rate": 0.381, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-15", + "total_cases": 48096.0, + "new_cases": 923.0, + "new_cases_smoothed": 1115.0, + "total_deaths": 960.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 11146.833, + "new_cases_per_million": 213.916, + "new_cases_smoothed_per_million": 258.415, + "total_deaths_per_million": 222.492, + "new_deaths_per_million": 6.489, + "new_deaths_smoothed_per_million": 5.331, + "new_tests": 3278.0, + "total_tests": 171442.0, + "total_tests_per_thousand": 39.734, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 3043.0, + "new_tests_smoothed_per_thousand": 0.705, + "tests_per_case": 2.7289999999999996, + "positive_rate": 0.366, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-16", + "total_cases": 49243.0, + "new_cases": 1147.0, + "new_cases_smoothed": 1141.714, + "total_deaths": 982.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 11412.665, + "new_cases_per_million": 265.831, + "new_cases_smoothed_per_million": 264.606, + "total_deaths_per_million": 227.59, + "new_deaths_per_million": 5.099, + "new_deaths_smoothed_per_million": 5.397, + "new_tests": 3435.0, + "total_tests": 174877.0, + "total_tests_per_thousand": 40.53, + "new_tests_per_thousand": 0.796, + "new_tests_smoothed": 3176.0, + "new_tests_smoothed_per_thousand": 0.736, + "tests_per_case": 2.782, + "positive_rate": 0.359, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-17", + "total_cases": 50373.0, + "new_cases": 1130.0, + "new_cases_smoothed": 1165.286, + "total_deaths": 1000.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 11674.556, + "new_cases_per_million": 261.891, + "new_cases_smoothed_per_million": 270.069, + "total_deaths_per_million": 231.762, + "new_deaths_per_million": 4.172, + "new_deaths_smoothed_per_million": 5.331, + "new_tests": 2942.0, + "total_tests": 177819.0, + "total_tests_per_thousand": 41.212, + "new_tests_per_thousand": 0.682, + "new_tests_smoothed": 3165.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 2.716, + "positive_rate": 0.368, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-18", + "total_cases": 51408.0, + "new_cases": 1035.0, + "new_cases_smoothed": 1164.429, + "total_deaths": 1038.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 11914.43, + "new_cases_per_million": 239.874, + "new_cases_smoothed_per_million": 269.87, + "total_deaths_per_million": 240.569, + "new_deaths_per_million": 8.807, + "new_deaths_smoothed_per_million": 5.794, + "new_tests": 2477.0, + "total_tests": 180296.0, + "total_tests_per_thousand": 41.786, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 3104.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 2.6660000000000004, + "positive_rate": 0.375, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-19", + "total_cases": 52261.0, + "new_cases": 853.0, + "new_cases_smoothed": 1132.714, + "total_deaths": 1071.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 12112.123, + "new_cases_per_million": 197.693, + "new_cases_smoothed_per_million": 262.52, + "total_deaths_per_million": 248.217, + "new_deaths_per_million": 7.648, + "new_deaths_smoothed_per_million": 5.893, + "new_tests": 3770.0, + "total_tests": 184066.0, + "total_tests_per_thousand": 42.66, + "new_tests_per_thousand": 0.874, + "new_tests_smoothed": 3152.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 2.783, + "positive_rate": 0.359, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-07-20", + "total_cases": 53468.0, + "new_cases": 1207.0, + "new_cases_smoothed": 1119.286, + "total_deaths": 1096.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 12391.86, + "new_cases_per_million": 279.737, + "new_cases_smoothed_per_million": 259.408, + "total_deaths_per_million": 254.011, + "new_deaths_per_million": 5.794, + "new_deaths_smoothed_per_million": 6.191, + "new_tests": 2920.0, + "total_tests": 186986.0, + "total_tests_per_thousand": 43.336, + "new_tests_per_thousand": 0.677, + "new_tests_smoothed": 3057.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 2.7310000000000003, + "positive_rate": 0.366, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-21", + "total_cases": 54426.0, + "new_cases": 958.0, + "new_cases_smoothed": 1036.143, + "total_deaths": 1127.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 12613.888, + "new_cases_per_million": 222.028, + "new_cases_smoothed_per_million": 240.139, + "total_deaths_per_million": 261.196, + "new_deaths_per_million": 7.185, + "new_deaths_smoothed_per_million": 6.456, + "new_tests": 2213.0, + "total_tests": 189199.0, + "total_tests_per_thousand": 43.849, + "new_tests_per_thousand": 0.513, + "new_tests_smoothed": 3005.0, + "new_tests_smoothed_per_thousand": 0.696, + "tests_per_case": 2.9, + "positive_rate": 0.345, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-22", + "total_cases": 55153.0, + "new_cases": 727.0, + "new_cases_smoothed": 1008.143, + "total_deaths": 1159.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 28.429, + "total_cases_per_million": 12782.379, + "new_cases_per_million": 168.491, + "new_cases_smoothed_per_million": 233.649, + "total_deaths_per_million": 268.612, + "new_deaths_per_million": 7.416, + "new_deaths_smoothed_per_million": 6.589, + "new_tests": 2553.0, + "total_tests": 191752.0, + "total_tests_per_thousand": 44.441, + "new_tests_per_thousand": 0.592, + "new_tests_smoothed": 2901.0, + "new_tests_smoothed_per_thousand": 0.672, + "tests_per_case": 2.878, + "positive_rate": 0.348, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-23", + "total_cases": 55906.0, + "new_cases": 753.0, + "new_cases_smoothed": 951.857, + "total_deaths": 1180.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 12956.896, + "new_cases_per_million": 174.517, + "new_cases_smoothed_per_million": 220.604, + "total_deaths_per_million": 273.479, + "new_deaths_per_million": 4.867, + "new_deaths_smoothed_per_million": 6.556, + "new_tests": 3021.0, + "total_tests": 194773.0, + "total_tests_per_thousand": 45.141, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 2842.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 2.986, + "positive_rate": 0.335, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-24", + "total_cases": 56817.0, + "new_cases": 911.0, + "new_cases_smoothed": 920.571, + "total_deaths": 1209.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 13168.031, + "new_cases_per_million": 211.135, + "new_cases_smoothed_per_million": 213.354, + "total_deaths_per_million": 280.2, + "new_deaths_per_million": 6.721, + "new_deaths_smoothed_per_million": 6.92, + "new_tests": 3472.0, + "total_tests": 198245.0, + "total_tests_per_thousand": 45.946, + "new_tests_per_thousand": 0.805, + "new_tests_smoothed": 2918.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 3.17, + "positive_rate": 0.315, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-25", + "total_cases": 57993.0, + "new_cases": 1176.0, + "new_cases_smoothed": 940.714, + "total_deaths": 1250.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 13440.584, + "new_cases_per_million": 272.552, + "new_cases_smoothed_per_million": 218.022, + "total_deaths_per_million": 289.703, + "new_deaths_per_million": 9.502, + "new_deaths_smoothed_per_million": 7.019, + "new_tests": 2690.0, + "total_tests": 200935.0, + "total_tests_per_thousand": 46.569, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 2948.0, + "new_tests_smoothed_per_thousand": 0.683, + "tests_per_case": 3.134, + "positive_rate": 0.319, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-26", + "total_cases": 58864.0, + "new_cases": 871.0, + "new_cases_smoothed": 943.286, + "total_deaths": 1275.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 13642.448, + "new_cases_per_million": 201.865, + "new_cases_smoothed_per_million": 218.618, + "total_deaths_per_million": 295.497, + "new_deaths_per_million": 5.794, + "new_deaths_smoothed_per_million": 6.754, + "new_tests": 4274.0, + "total_tests": 205209.0, + "total_tests_per_thousand": 47.56, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 3020.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 3.202, + "positive_rate": 0.312, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-07-27", + "total_cases": 60296.0, + "new_cases": 1432.0, + "new_cases_smoothed": 975.429, + "total_deaths": 1294.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 13974.332, + "new_cases_per_million": 331.883, + "new_cases_smoothed_per_million": 226.067, + "total_deaths_per_million": 299.9, + "new_deaths_per_million": 4.403, + "new_deaths_smoothed_per_million": 6.556, + "new_tests": 3450.0, + "total_tests": 208659.0, + "total_tests_per_thousand": 48.359, + "new_tests_per_thousand": 0.8, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 0.718, + "tests_per_case": 3.174, + "positive_rate": 0.315, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 61442.0, + "new_cases": 1146.0, + "new_cases_smoothed": 1002.286, + "total_deaths": 1322.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 14239.931, + "new_cases_per_million": 265.599, + "new_cases_smoothed_per_million": 232.292, + "total_deaths_per_million": 306.39, + "new_deaths_per_million": 6.489, + "new_deaths_smoothed_per_million": 6.456, + "new_tests": 2279.0, + "total_tests": 210938.0, + "total_tests_per_thousand": 48.887, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 3106.0, + "new_tests_smoothed_per_thousand": 0.72, + "tests_per_case": 3.0989999999999998, + "positive_rate": 0.32299999999999995, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 62223.0, + "new_cases": 781.0, + "new_cases_smoothed": 1010.0, + "total_deaths": 1349.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 14420.938, + "new_cases_per_million": 181.006, + "new_cases_smoothed_per_million": 234.08, + "total_deaths_per_million": 312.647, + "new_deaths_per_million": 6.258, + "new_deaths_smoothed_per_million": 6.291, + "new_tests": 3167.0, + "total_tests": 214105.0, + "total_tests_per_thousand": 49.621, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 3193.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 3.161, + "positive_rate": 0.316, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 63269.0, + "new_cases": 1046.0, + "new_cases_smoothed": 1051.857, + "total_deaths": 1374.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 14663.361, + "new_cases_per_million": 242.423, + "new_cases_smoothed_per_million": 243.781, + "total_deaths_per_million": 318.441, + "new_deaths_per_million": 5.794, + "new_deaths_smoothed_per_million": 6.423, + "new_tests": 3218.0, + "total_tests": 217323.0, + "total_tests_per_thousand": 50.367, + "new_tests_per_thousand": 0.746, + "new_tests_smoothed": 3221.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 3.062, + "positive_rate": 0.327, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 64191.0, + "new_cases": 922.0, + "new_cases_smoothed": 1053.429, + "total_deaths": 1397.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 26.857, + "total_cases_per_million": 14877.046, + "new_cases_per_million": 213.685, + "new_cases_smoothed_per_million": 244.145, + "total_deaths_per_million": 323.772, + "new_deaths_per_million": 5.331, + "new_deaths_smoothed_per_million": 6.224, + "new_tests": 3098.0, + "total_tests": 220421.0, + "total_tests_per_thousand": 51.085, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 3168.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 3.0069999999999997, + "positive_rate": 0.33299999999999996, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 65256.0, + "new_cases": 1065.0, + "new_cases_smoothed": 1037.571, + "total_deaths": 1421.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 15123.872, + "new_cases_per_million": 246.827, + "new_cases_smoothed_per_million": 240.47, + "total_deaths_per_million": 329.334, + "new_deaths_per_million": 5.562, + "new_deaths_smoothed_per_million": 5.662, + "new_tests": 3668.0, + "total_tests": 224089.0, + "total_tests_per_thousand": 51.935, + "new_tests_per_thousand": 0.85, + "new_tests_smoothed": 3308.0, + "new_tests_smoothed_per_thousand": 0.767, + "tests_per_case": 3.188, + "positive_rate": 0.314, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 66383.0, + "new_cases": 1127.0, + "new_cases_smoothed": 1074.143, + "total_deaths": 1449.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 15385.068, + "new_cases_per_million": 261.196, + "new_cases_smoothed_per_million": 248.946, + "total_deaths_per_million": 335.823, + "new_deaths_per_million": 6.489, + "new_deaths_smoothed_per_million": 5.761, + "new_tests": 3220.0, + "total_tests": 227309.0, + "total_tests_per_thousand": 52.682, + "new_tests_per_thousand": 0.746, + "new_tests_smoothed": 3157.0, + "new_tests_smoothed_per_thousand": 0.732, + "tests_per_case": 2.9389999999999996, + "positive_rate": 0.34, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 67453.0, + "new_cases": 1070.0, + "new_cases_smoothed": 1022.429, + "total_deaths": 1471.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 15633.054, + "new_cases_per_million": 247.986, + "new_cases_smoothed_per_million": 236.96, + "total_deaths_per_million": 340.922, + "new_deaths_per_million": 5.099, + "new_deaths_smoothed_per_million": 5.86, + "new_tests": 2649.0, + "total_tests": 229958.0, + "total_tests_per_thousand": 53.296, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 3043.0, + "new_tests_smoothed_per_thousand": 0.705, + "tests_per_case": 2.9760000000000004, + "positive_rate": 0.336, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 68456.0, + "new_cases": 1003.0, + "new_cases_smoothed": 1002.0, + "total_deaths": 1497.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 15865.511, + "new_cases_per_million": 232.457, + "new_cases_smoothed_per_million": 232.226, + "total_deaths_per_million": 346.948, + "new_deaths_per_million": 6.026, + "new_deaths_smoothed_per_million": 5.794, + "new_tests": 2559.0, + "total_tests": 232517.0, + "total_tests_per_thousand": 53.889, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 3083.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 3.077, + "positive_rate": 0.325, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 69424.0, + "new_cases": 968.0, + "new_cases_smoothed": 1028.714, + "total_deaths": 1522.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 16089.857, + "new_cases_per_million": 224.346, + "new_cases_smoothed_per_million": 238.417, + "total_deaths_per_million": 352.742, + "new_deaths_per_million": 5.794, + "new_deaths_smoothed_per_million": 5.728, + "new_tests": 2557.0, + "total_tests": 235074.0, + "total_tests_per_thousand": 54.481, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 2996.0, + "new_tests_smoothed_per_thousand": 0.694, + "tests_per_case": 2.912, + "positive_rate": 0.34299999999999997, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 70231.0, + "new_cases": 807.0, + "new_cases_smoothed": 994.571, + "total_deaths": 1553.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 25.571, + "total_cases_per_million": 16276.889, + "new_cases_per_million": 187.032, + "new_cases_smoothed_per_million": 230.504, + "total_deaths_per_million": 359.927, + "new_deaths_per_million": 7.185, + "new_deaths_smoothed_per_million": 5.926, + "new_tests": 3608.0, + "total_tests": 238682.0, + "total_tests_per_thousand": 55.317, + "new_tests_per_thousand": 0.836, + "new_tests_smoothed": 3051.0, + "new_tests_smoothed_per_thousand": 0.707, + "tests_per_case": 3.068, + "positive_rate": 0.326, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-07", + "total_cases": 71418.0, + "new_cases": 1187.0, + "new_cases_smoothed": 1032.429, + "total_deaths": 1574.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 16551.991, + "new_cases_per_million": 275.102, + "new_cases_smoothed_per_million": 239.278, + "total_deaths_per_million": 364.794, + "new_deaths_per_million": 4.867, + "new_deaths_smoothed_per_million": 5.86, + "new_tests": 3373.0, + "total_tests": 242055.0, + "total_tests_per_thousand": 56.099, + "new_tests_per_thousand": 0.782, + "new_tests_smoothed": 3091.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 2.9939999999999998, + "positive_rate": 0.33399999999999996, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 72560.0, + "new_cases": 1142.0, + "new_cases_smoothed": 1043.429, + "total_deaths": 1591.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 16816.663, + "new_cases_per_million": 264.672, + "new_cases_smoothed_per_million": 241.827, + "total_deaths_per_million": 368.734, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 5.629, + "new_tests": 3174.0, + "total_tests": 245229.0, + "total_tests_per_thousand": 56.835, + "new_tests_per_thousand": 0.736, + "new_tests_smoothed": 3020.0, + "new_tests_smoothed_per_thousand": 0.7, + "tests_per_case": 2.8939999999999997, + "positive_rate": 0.34600000000000003, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 73651.0, + "new_cases": 1091.0, + "new_cases_smoothed": 1038.286, + "total_deaths": 1609.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.857, + "total_cases_per_million": 17069.516, + "new_cases_per_million": 252.853, + "new_cases_smoothed_per_million": 240.635, + "total_deaths_per_million": 372.905, + "new_deaths_per_million": 4.172, + "new_deaths_smoothed_per_million": 5.297, + "new_tests": 2861.0, + "total_tests": 248090.0, + "total_tests_per_thousand": 57.498, + "new_tests_per_thousand": 0.663, + "new_tests_smoothed": 2969.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 2.86, + "positive_rate": 0.35, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 74492.0, + "new_cases": 841.0, + "new_cases_smoothed": 1005.571, + "total_deaths": 1639.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 17264.428, + "new_cases_per_million": 194.912, + "new_cases_smoothed_per_million": 233.053, + "total_deaths_per_million": 379.858, + "new_deaths_per_million": 6.953, + "new_deaths_smoothed_per_million": 5.562, + "new_tests": 2488.0, + "total_tests": 250578.0, + "total_tests_per_thousand": 58.075, + "new_tests_per_thousand": 0.577, + "new_tests_smoothed": 2946.0, + "new_tests_smoothed_per_thousand": 0.683, + "tests_per_case": 2.93, + "positive_rate": 0.341, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 75394.0, + "new_cases": 902.0, + "new_cases_smoothed": 991.143, + "total_deaths": 1664.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 17473.477, + "new_cases_per_million": 209.049, + "new_cases_smoothed_per_million": 229.709, + "total_deaths_per_million": 385.652, + "new_deaths_per_million": 5.794, + "new_deaths_smoothed_per_million": 5.529, + "new_tests": 3129.0, + "total_tests": 253707.0, + "total_tests_per_thousand": 58.8, + "new_tests_per_thousand": 0.725, + "new_tests_smoothed": 3027.0, + "new_tests_smoothed_per_thousand": 0.702, + "tests_per_case": 3.054, + "positive_rate": 0.327, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-12", + "total_cases": 76464.0, + "new_cases": 1070.0, + "new_cases_smoothed": 1005.714, + "total_deaths": 1680.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 17721.463, + "new_cases_per_million": 247.986, + "new_cases_smoothed_per_million": 233.087, + "total_deaths_per_million": 389.36, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 5.231, + "new_tests": 2742.0, + "total_tests": 256449.0, + "total_tests_per_thousand": 59.435, + "new_tests_per_thousand": 0.635, + "new_tests_smoothed": 3054.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 3.037, + "positive_rate": 0.32899999999999996, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-13", + "total_cases": 77377.0, + "new_cases": 913.0, + "new_cases_smoothed": 1020.857, + "total_deaths": 1703.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 17933.062, + "new_cases_per_million": 211.599, + "new_cases_smoothed_per_million": 236.596, + "total_deaths_per_million": 394.691, + "new_deaths_per_million": 5.331, + "new_deaths_smoothed_per_million": 4.966, + "new_tests": 3134.0, + "total_tests": 259583.0, + "total_tests_per_thousand": 60.162, + "new_tests_per_thousand": 0.726, + "new_tests_smoothed": 2986.0, + "new_tests_smoothed_per_thousand": 0.692, + "tests_per_case": 2.925, + "positive_rate": 0.342, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-14", + "total_cases": 78446.0, + "new_cases": 1069.0, + "new_cases_smoothed": 1004.0, + "total_deaths": 1722.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 18180.815, + "new_cases_per_million": 247.754, + "new_cases_smoothed_per_million": 232.689, + "total_deaths_per_million": 399.094, + "new_deaths_per_million": 4.403, + "new_deaths_smoothed_per_million": 4.9, + "new_tests": 2692.0, + "total_tests": 262275.0, + "total_tests_per_thousand": 60.785, + "new_tests_per_thousand": 0.624, + "new_tests_smoothed": 2889.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 2.877, + "positive_rate": 0.348, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-15", + "total_cases": 79402.0, + "new_cases": 956.0, + "new_cases_smoothed": 977.429, + "total_deaths": 1734.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 18402.38, + "new_cases_per_million": 221.565, + "new_cases_smoothed_per_million": 226.531, + "total_deaths_per_million": 401.876, + "new_deaths_per_million": 2.781, + "new_deaths_smoothed_per_million": 4.735, + "new_tests": 3667.0, + "total_tests": 265942.0, + "total_tests_per_thousand": 61.635, + "new_tests_per_thousand": 0.85, + "new_tests_smoothed": 2959.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 3.0269999999999997, + "positive_rate": 0.33, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-16", + "total_cases": 80665.0, + "new_cases": 1263.0, + "new_cases_smoothed": 1002.0, + "total_deaths": 1746.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 18695.096, + "new_cases_per_million": 292.716, + "new_cases_smoothed_per_million": 232.226, + "total_deaths_per_million": 404.657, + "new_deaths_per_million": 2.781, + "new_deaths_smoothed_per_million": 4.536, + "new_tests": 3752.0, + "total_tests": 269694.0, + "total_tests_per_thousand": 62.505, + "new_tests_per_thousand": 0.87, + "new_tests_smoothed": 3086.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 3.08, + "positive_rate": 0.325, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-17", + "total_cases": 81940.0, + "new_cases": 1275.0, + "new_cases_smoothed": 1064.0, + "total_deaths": 1767.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 18990.592, + "new_cases_per_million": 295.497, + "new_cases_smoothed_per_million": 246.595, + "total_deaths_per_million": 409.524, + "new_deaths_per_million": 4.867, + "new_deaths_smoothed_per_million": 4.238, + "new_tests": 2198.0, + "total_tests": 271892.0, + "total_tests_per_thousand": 63.014, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 3045.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 2.862, + "positive_rate": 0.349, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-18", + "total_cases": 82543.0, + "new_cases": 603.0, + "new_cases_smoothed": 1021.286, + "total_deaths": 1788.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 19130.345, + "new_cases_per_million": 139.753, + "new_cases_smoothed_per_million": 236.695, + "total_deaths_per_million": 414.391, + "new_deaths_per_million": 4.867, + "new_deaths_smoothed_per_million": 4.106, + "new_tests": 2421.0, + "total_tests": 274313.0, + "total_tests_per_thousand": 63.575, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 2944.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 2.883, + "positive_rate": 0.34700000000000003, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-19", + "total_cases": 82790.0, + "new_cases": 247.0, + "new_cases_smoothed": 903.714, + "total_deaths": 1809.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 19187.59, + "new_cases_per_million": 57.245, + "new_cases_smoothed_per_million": 209.447, + "total_deaths_per_million": 419.258, + "new_deaths_per_million": 4.867, + "new_deaths_smoothed_per_million": 4.271, + "new_tests": 5711.0, + "total_tests": 280024.0, + "total_tests_per_thousand": 64.899, + "new_tests_per_thousand": 1.324, + "new_tests_smoothed": 3368.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 3.727, + "positive_rate": 0.268, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-20", + "total_cases": 83754.0, + "new_cases": 964.0, + "new_cases_smoothed": 911.0, + "total_deaths": 1827.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 19411.009, + "new_cases_per_million": 223.419, + "new_cases_smoothed_per_million": 211.135, + "total_deaths_per_million": 423.429, + "new_deaths_per_million": 4.172, + "new_deaths_smoothed_per_million": 4.106, + "new_tests": 4321.0, + "total_tests": 284345.0, + "total_tests_per_thousand": 65.9, + "new_tests_per_thousand": 1.001, + "new_tests_smoothed": 3537.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 3.883, + "positive_rate": 0.258, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-08-21", + "total_cases": 83855.0, + "new_cases": 101.0, + "new_cases_smoothed": 772.714, + "total_deaths": 1844.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 19434.417, + "new_cases_per_million": 23.408, + "new_cases_smoothed_per_million": 179.086, + "total_deaths_per_million": 427.369, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 4.039, + "new_tests": 4320.0, + "total_tests": 288665.0, + "total_tests_per_thousand": 66.902, + "new_tests_per_thousand": 1.001, + "new_tests_smoothed": 3770.0, + "new_tests_smoothed_per_thousand": 0.874, + "tests_per_case": 4.879, + "positive_rate": 0.205, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-22", + "total_cases": 84392.0, + "new_cases": 537.0, + "new_cases_smoothed": 712.857, + "total_deaths": 1859.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 19558.873, + "new_cases_per_million": 124.456, + "new_cases_smoothed_per_million": 165.213, + "total_deaths_per_million": 430.846, + "new_deaths_per_million": 3.476, + "new_deaths_smoothed_per_million": 4.139, + "new_tests": 5312.0, + "total_tests": 293977.0, + "total_tests_per_thousand": 68.133, + "new_tests_per_thousand": 1.231, + "new_tests_smoothed": 4005.0, + "new_tests_smoothed_per_thousand": 0.928, + "tests_per_case": 5.617999999999999, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-23", + "total_cases": 85480.0, + "new_cases": 1088.0, + "new_cases_smoothed": 687.857, + "total_deaths": 1878.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 19811.03, + "new_cases_per_million": 252.157, + "new_cases_smoothed_per_million": 159.419, + "total_deaths_per_million": 435.249, + "new_deaths_per_million": 4.403, + "new_deaths_smoothed_per_million": 4.37, + "new_tests": 7584.0, + "total_tests": 301561.0, + "total_tests_per_thousand": 69.89, + "new_tests_per_thousand": 1.758, + "new_tests_smoothed": 4552.0, + "new_tests_smoothed_per_thousand": 1.055, + "tests_per_case": 6.617999999999999, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-24", + "total_cases": 86900.0, + "new_cases": 1420.0, + "new_cases_smoothed": 708.571, + "total_deaths": 1892.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 20140.133, + "new_cases_per_million": 329.102, + "new_cases_smoothed_per_million": 164.22, + "total_deaths_per_million": 438.494, + "new_deaths_per_million": 3.245, + "new_deaths_smoothed_per_million": 4.139, + "new_tests": 3149.0, + "total_tests": 304710.0, + "total_tests_per_thousand": 70.62, + "new_tests_per_thousand": 0.73, + "new_tests_smoothed": 4688.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 6.6160000000000005, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-25", + "total_cases": 87485.0, + "new_cases": 585.0, + "new_cases_smoothed": 706.0, + "total_deaths": 1906.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 20275.714, + "new_cases_per_million": 135.581, + "new_cases_smoothed_per_million": 163.624, + "total_deaths_per_million": 441.739, + "new_deaths_per_million": 3.245, + "new_deaths_smoothed_per_million": 3.907, + "new_tests": 4907.0, + "total_tests": 309617.0, + "total_tests_per_thousand": 71.758, + "new_tests_per_thousand": 1.137, + "new_tests_smoothed": 5043.0, + "new_tests_smoothed_per_thousand": 1.169, + "tests_per_case": 7.143, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-26", + "total_cases": 88381.0, + "new_cases": 896.0, + "new_cases_smoothed": 798.714, + "total_deaths": 1919.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 20483.372, + "new_cases_per_million": 207.659, + "new_cases_smoothed_per_million": 185.112, + "total_deaths_per_million": 444.752, + "new_deaths_per_million": 3.013, + "new_deaths_smoothed_per_million": 3.642, + "new_tests": 3612.0, + "total_tests": 313229.0, + "total_tests_per_thousand": 72.595, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 4744.0, + "new_tests_smoothed_per_thousand": 1.099, + "tests_per_case": 5.94, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-27", + "total_cases": 89082.0, + "new_cases": 701.0, + "new_cases_smoothed": 761.143, + "total_deaths": 1932.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 20645.838, + "new_cases_per_million": 162.465, + "new_cases_smoothed_per_million": 176.404, + "total_deaths_per_million": 447.765, + "new_deaths_per_million": 3.013, + "new_deaths_smoothed_per_million": 3.476, + "new_tests": 4705.0, + "total_tests": 317934.0, + "total_tests_per_thousand": 73.685, + "new_tests_per_thousand": 1.09, + "new_tests_smoothed": 4798.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 6.303999999999999, + "positive_rate": 0.159, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-28", + "total_cases": 89982.0, + "new_cases": 900.0, + "new_cases_smoothed": 875.286, + "total_deaths": 1948.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 20854.424, + "new_cases_per_million": 208.586, + "new_cases_smoothed_per_million": 202.858, + "total_deaths_per_million": 451.473, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 3.443, + "new_tests": 5115.0, + "total_tests": 323049.0, + "total_tests_per_thousand": 74.871, + "new_tests_per_thousand": 1.185, + "new_tests_smoothed": 4912.0, + "new_tests_smoothed_per_thousand": 1.138, + "tests_per_case": 5.612, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-29", + "total_cases": 90624.0, + "new_cases": 642.0, + "new_cases_smoothed": 890.286, + "total_deaths": 1966.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 21003.215, + "new_cases_per_million": 148.791, + "new_cases_smoothed_per_million": 206.335, + "total_deaths_per_million": 455.644, + "new_deaths_per_million": 4.172, + "new_deaths_smoothed_per_million": 3.543, + "new_tests": 4786.0, + "total_tests": 327835.0, + "total_tests_per_thousand": 75.98, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 4837.0, + "new_tests_smoothed_per_thousand": 1.121, + "tests_per_case": 5.433, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-30", + "total_cases": 91337.0, + "new_cases": 713.0, + "new_cases_smoothed": 836.714, + "total_deaths": 1983.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 21168.461, + "new_cases_per_million": 165.246, + "new_cases_smoothed_per_million": 193.919, + "total_deaths_per_million": 459.584, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 3.476, + "new_tests": 2914.0, + "total_tests": 330749.0, + "total_tests_per_thousand": 76.655, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 4170.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 4.984, + "positive_rate": 0.201, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-31", + "total_cases": 92065.0, + "new_cases": 728.0, + "new_cases_smoothed": 737.857, + "total_deaths": 1995.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 21337.184, + "new_cases_per_million": 168.723, + "new_cases_smoothed_per_million": 171.007, + "total_deaths_per_million": 462.366, + "new_deaths_per_million": 2.781, + "new_deaths_smoothed_per_million": 3.41, + "new_tests": 5596.0, + "total_tests": 336345.0, + "total_tests_per_thousand": 77.952, + "new_tests_per_thousand": 1.297, + "new_tests_smoothed": 4519.0, + "new_tests_smoothed_per_thousand": 1.047, + "tests_per_case": 6.124, + "positive_rate": 0.163, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-09-01", + "total_cases": 92982.0, + "new_cases": 917.0, + "new_cases_smoothed": 785.286, + "total_deaths": 2002.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 21549.71, + "new_cases_per_million": 212.526, + "new_cases_smoothed_per_million": 182.0, + "total_deaths_per_million": 463.988, + "new_deaths_per_million": 1.622, + "new_deaths_smoothed_per_million": 3.178, + "new_tests": 3514.0, + "total_tests": 339859.0, + "total_tests_per_thousand": 78.766, + "new_tests_per_thousand": 0.814, + "new_tests_smoothed": 4320.0, + "new_tests_smoothed_per_thousand": 1.001, + "tests_per_case": 5.501, + "positive_rate": 0.182, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-09-02", + "total_cases": 93552.0, + "new_cases": 570.0, + "new_cases_smoothed": 738.714, + "total_deaths": 2018.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 21681.815, + "new_cases_per_million": 132.104, + "new_cases_smoothed_per_million": 171.206, + "total_deaths_per_million": 467.696, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 3.278, + "new_tests": 3740.0, + "total_tests": 343599.0, + "total_tests_per_thousand": 79.633, + "new_tests_per_thousand": 0.867, + "new_tests_smoothed": 4339.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 5.874, + "positive_rate": 0.17, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-09-03", + "total_cases": 94084.0, + "new_cases": 532.0, + "new_cases_smoothed": 714.571, + "total_deaths": 2030.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 21805.112, + "new_cases_per_million": 123.297, + "new_cases_smoothed_per_million": 165.611, + "total_deaths_per_million": 470.477, + "new_deaths_per_million": 2.781, + "new_deaths_smoothed_per_million": 3.245, + "stringency_index": 81.48 + }, + { + "date": "2020-09-04", + "total_cases": 94914.0, + "new_cases": 830.0, + "new_cases_smoothed": 704.571, + "total_deaths": 2046.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 21997.475, + "new_cases_per_million": 192.363, + "new_cases_smoothed_per_million": 163.293, + "total_deaths_per_million": 474.185, + "new_deaths_per_million": 3.708, + "new_deaths_smoothed_per_million": 3.245 + }, + { + "date": "2020-09-05", + "total_cases": 95596.0, + "new_cases": 682.0, + "new_cases_smoothed": 710.286, + "total_deaths": 2063.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 22155.537, + "new_cases_per_million": 158.062, + "new_cases_smoothed_per_million": 164.617, + "total_deaths_per_million": 478.125, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 3.212 + } + ] + }, + "PNG": { + "continent": "Oceania", + "location": "Papua New Guinea", + "population": 8947027.0, + "population_density": 18.22, + "median_age": 22.6, + "aged_65_older": 3.808, + "aged_70_older": 2.142, + "gdp_per_capita": 3823.194, + "cardiovasc_death_rate": 561.494, + "diabetes_prevalence": 17.65, + "female_smokers": 23.5, + "male_smokers": 48.8, + "life_expectancy": 64.5, + "data": [ + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-03-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-04-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.112, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-04-08", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-09", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-15", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-16", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-17", + "total_cases": 7.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.559, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-18", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-19", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-20", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-21", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-22", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.782, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-23", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-24", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.8 + }, + { + "date": "2020-04-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-04-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.24 + }, + { + "date": "2020-04-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-04-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.06 + }, + { + "date": "2020-05-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.06 + }, + { + "date": "2020-05-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.06 + }, + { + "date": "2020-05-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-05", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.65 + }, + { + "date": "2020-05-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-21", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-22", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-23", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-24", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-05-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-01", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-04", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-05", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-06", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-07", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-21", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-22", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.006, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.31 + }, + { + "date": "2020-06-23", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-24", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-25", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.118, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-26", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-06-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-18", + "total_cases": 15.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.677, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.677, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-20", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.9, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-21", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.124, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-22", + "total_cases": 27.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.018, + "new_cases_per_million": 0.894, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-23", + "total_cases": 30.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.353, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-24", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.465, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-25", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.577, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.271, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-26", + "total_cases": 39.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.359, + "new_cases_per_million": 0.782, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-27", + "total_cases": 62.0, + "new_cases": 23.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.93, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-28", + "total_cases": 62.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.687, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-07-29", + "total_cases": 63.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.041, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.575, + "total_deaths_per_million": 0.112, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 45.37 + }, + { + "date": "2020-07-30", + "total_cases": 63.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.041, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.527, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 45.37 + }, + { + "date": "2020-07-31", + "total_cases": 72.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.047, + "new_cases_per_million": 1.006, + "new_cases_smoothed_per_million": 0.655, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 45.37 + }, + { + "date": "2020-08-01", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.639, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 45.37 + }, + { + "date": "2020-08-02", + "total_cases": 91.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.171, + "new_cases_per_million": 2.124, + "new_cases_smoothed_per_million": 0.83, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 45.37 + }, + { + "date": "2020-08-03", + "total_cases": 110.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12.295, + "new_cases_per_million": 2.124, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 45.37 + }, + { + "date": "2020-08-04", + "total_cases": 111.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12.406, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.782, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.032, + "stringency_index": 52.78 + }, + { + "date": "2020-08-05", + "total_cases": 114.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.742, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 52.78 + }, + { + "date": "2020-08-06", + "total_cases": 153.0, + "new_cases": 39.0, + "new_cases_smoothed": 12.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.101, + "new_cases_per_million": 4.359, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.224, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-08-07", + "total_cases": 163.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.218, + "new_cases_per_million": 1.118, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 188.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.013, + "new_cases_per_million": 2.794, + "new_cases_smoothed_per_million": 1.852, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 188.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 214.0, + "new_cases": 26.0, + "new_cases_smoothed": 14.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.919, + "new_cases_per_million": 2.906, + "new_cases_smoothed_per_million": 1.661, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 214.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.919, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-08-12", + "total_cases": 214.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.919, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.597, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 52.78 + }, + { + "date": "2020-08-13", + "total_cases": 269.0, + "new_cases": 55.0, + "new_cases_smoothed": 16.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.066, + "new_cases_per_million": 6.147, + "new_cases_smoothed_per_million": 1.852, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 55.56 + }, + { + "date": "2020-08-14", + "total_cases": 271.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.289, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 1.724, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-08-15", + "total_cases": 271.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.289, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-08-16", + "total_cases": 271.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.289, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-08-17", + "total_cases": 323.0, + "new_cases": 52.0, + "new_cases_smoothed": 15.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.101, + "new_cases_per_million": 5.812, + "new_cases_smoothed_per_million": 1.74, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-18", + "total_cases": 333.0, + "new_cases": 10.0, + "new_cases_smoothed": 17.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.219, + "new_cases_per_million": 1.118, + "new_cases_smoothed_per_million": 1.9, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-19", + "total_cases": 347.0, + "new_cases": 14.0, + "new_cases_smoothed": 19.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.784, + "new_cases_per_million": 1.565, + "new_cases_smoothed_per_million": 2.124, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-20", + "total_cases": 359.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.125, + "new_cases_per_million": 1.341, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-08-21", + "total_cases": 361.0, + "new_cases": 2.0, + "new_cases_smoothed": 12.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.349, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-22", + "total_cases": 361.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-23", + "total_cases": 361.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-24", + "total_cases": 401.0, + "new_cases": 40.0, + "new_cases_smoothed": 11.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.819, + "new_cases_per_million": 4.471, + "new_cases_smoothed_per_million": 1.245, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-25", + "total_cases": 401.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.819, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.086, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-26", + "total_cases": 419.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.831, + "new_cases_per_million": 2.012, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-27", + "total_cases": 419.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.831, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.958, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 43.52 + }, + { + "date": "2020-08-28", + "total_cases": 424.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.39, + "new_cases_per_million": 0.559, + "new_cases_smoothed_per_million": 1.006, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 453.0, + "new_cases": 29.0, + "new_cases_smoothed": 13.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 50.631, + "new_cases_per_million": 3.241, + "new_cases_smoothed_per_million": 1.469, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.112, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-08-30", + "total_cases": 459.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.302, + "new_cases_per_million": 0.671, + "new_cases_smoothed_per_million": 1.565, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-08-31", + "total_cases": 459.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-01", + "total_cases": 459.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.302, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-02", + "total_cases": 460.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.414, + "new_cases_per_million": 0.112, + "new_cases_smoothed_per_million": 0.655, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-03", + "total_cases": 471.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.643, + "new_cases_per_million": 1.229, + "new_cases_smoothed_per_million": 0.83, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-04", + "total_cases": 471.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.643, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.75, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-05", + "total_cases": 471.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 52.643, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "PRY": { + "continent": "South America", + "location": "Paraguay", + "population": 7132530.0, + "population_density": 17.144, + "median_age": 26.5, + "aged_65_older": 6.378, + "aged_70_older": 3.833, + "gdp_per_capita": 8827.01, + "extreme_poverty": 1.7, + "cardiovasc_death_rate": 199.128, + "diabetes_prevalence": 8.27, + "female_smokers": 5.0, + "male_smokers": 21.6, + "handwashing_facilities": 79.602, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 74.25, + "data": [ + { + "date": "2020-03-07", + "new_tests": 1.0, + "total_tests": 1.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 5.56 + }, + { + "date": "2020-03-08", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.14, + "new_cases_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 5.56 + }, + { + "date": "2020-03-09", + "tests_units": "tests performed", + "stringency_index": 5.56 + }, + { + "date": "2020-03-10", + "new_tests": 8.0, + "total_tests": 9.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-03-11", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.701, + "new_cases_per_million": 0.561, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 16.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-03-12", + "new_tests": 6.0, + "total_tests": 22.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 39.81 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.841, + "new_cases_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 17.0, + "total_tests": 39.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-14", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.981, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 54.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 87.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-16", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.122, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 114.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 15.0, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-03-17", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.262, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 140.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 16.625, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-03-18", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.542, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 164.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 21.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 24.5, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-03-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.542, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 196.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 29.166999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-03-20", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.823, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 240.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 29.0, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-03-21", + "total_cases": 18.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.524, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 68.0, + "total_tests": 308.0, + "total_tests_per_thousand": 0.043, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 22.909000000000002, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-22", + "total_cases": 22.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.084, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 37.0, + "total_tests": 345.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 17.267, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-03-23", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.084, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 89.0, + "total_tests": 434.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 23.0, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-24", + "total_cases": 27.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.785, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 0.361, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 91.0, + "total_tests": 525.0, + "total_tests_per_thousand": 0.074, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 21.389, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-25", + "total_cases": 37.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.714, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.188, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 51.0, + "total_tests": 576.0, + "total_tests_per_thousand": 0.081, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 59.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 15.885, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-26", + "total_cases": 41.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.748, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 78.0, + "total_tests": 654.0, + "total_tests_per_thousand": 0.092, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 15.167, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-27", + "total_cases": 52.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.291, + "new_cases_per_million": 1.542, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 101.0, + "total_tests": 755.0, + "total_tests_per_thousand": 0.106, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 74.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 13.282, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-28", + "total_cases": 56.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.851, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 60.0, + "total_tests": 815.0, + "total_tests_per_thousand": 0.114, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 13.263, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 59.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.272, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 105.0, + "total_tests": 920.0, + "total_tests_per_thousand": 0.129, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 82.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 15.514000000000001, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 64.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.973, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 68.0, + "total_tests": 988.0, + "total_tests_per_thousand": 0.139, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 79.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 13.167, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 65.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.113, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 90.0, + "total_tests": 1078.0, + "total_tests_per_thousand": 0.151, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 79.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 14.552999999999999, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 69.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.674, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 0.641, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 95.0, + "total_tests": 1173.0, + "total_tests_per_thousand": 0.164, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 85.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 18.594, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.674, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.561, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 116.0, + "total_tests": 1289.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 91.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 22.75, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 77.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.796, + "new_cases_per_million": 1.122, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 165.0, + "total_tests": 1454.0, + "total_tests_per_thousand": 0.204, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 100.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 96.0, + "new_cases": 19.0, + "new_cases_smoothed": 5.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.459, + "new_cases_per_million": 2.664, + "new_cases_smoothed_per_million": 0.801, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 192.0, + "total_tests": 1646.0, + "total_tests_per_thousand": 0.231, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 20.825, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 104.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.581, + "new_cases_per_million": 1.122, + "new_cases_smoothed_per_million": 0.901, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 200.0, + "total_tests": 1846.0, + "total_tests_per_thousand": 0.259, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 132.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 20.533, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 113.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.843, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 0.981, + "total_deaths_per_million": 0.701, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 162.0, + "total_tests": 2008.0, + "total_tests_per_thousand": 0.282, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 20.857, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.843, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.961, + "total_deaths_per_million": 0.701, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 212.0, + "total_tests": 2220.0, + "total_tests_per_thousand": 0.311, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 163.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 23.771, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 115.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.123, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 0.701, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 242.0, + "total_tests": 2462.0, + "total_tests_per_thousand": 0.345, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 124.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.385, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 1.102, + "total_deaths_per_million": 0.701, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 223.0, + "total_tests": 2685.0, + "total_tests_per_thousand": 0.376, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 199.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 25.326999999999998, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-10", + "total_cases": 129.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.086, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 1.042, + "total_deaths_per_million": 0.841, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 220.0, + "total_tests": 2905.0, + "total_tests_per_thousand": 0.407, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 207.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 27.865, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-11", + "total_cases": 133.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.647, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 0.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 230.0, + "total_tests": 3135.0, + "total_tests_per_thousand": 0.44, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 213.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 40.297, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-12", + "total_cases": 134.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 18.787, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.601, + "total_deaths_per_million": 0.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 259.0, + "total_tests": 3394.0, + "total_tests_per_thousand": 0.476, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 221.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 51.567, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-13", + "total_cases": 147.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.61, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 0.681, + "total_deaths_per_million": 0.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 248.0, + "total_tests": 3642.0, + "total_tests_per_thousand": 0.511, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 233.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 47.971000000000004, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-14", + "total_cases": 159.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.292, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 0.981, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 246.0, + "total_tests": 3888.0, + "total_tests_per_thousand": 0.545, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 238.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 36.217, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-15", + "total_cases": 161.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.573, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 379.0, + "total_tests": 4267.0, + "total_tests_per_thousand": 0.598, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 258.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 39.260999999999996, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-16", + "total_cases": 174.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.395, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 1.001, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 345.0, + "total_tests": 4612.0, + "total_tests_per_thousand": 0.647, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 275.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 38.5, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-17", + "total_cases": 174.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.395, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.901, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 338.0, + "total_tests": 4950.0, + "total_tests_per_thousand": 0.694, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 292.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 45.422, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-18", + "total_cases": 202.0, + "new_cases": 28.0, + "new_cases_smoothed": 9.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.321, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 1.382, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 304.0, + "total_tests": 5254.0, + "total_tests_per_thousand": 0.737, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 303.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 30.739, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-19", + "total_cases": 202.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.321, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.362, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 247.0, + "total_tests": 5501.0, + "total_tests_per_thousand": 0.771, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 301.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 30.985, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-20", + "total_cases": 206.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.882, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 377.0, + "total_tests": 5878.0, + "total_tests_per_thousand": 0.824, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 37.847, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-21", + "total_cases": 208.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.162, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.981, + "total_deaths_per_million": 1.122, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 414.0, + "total_tests": 6292.0, + "total_tests_per_thousand": 0.882, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 49.0, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-22", + "total_cases": 213.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.863, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 1.042, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 306.0, + "total_tests": 6598.0, + "total_tests_per_thousand": 0.925, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 44.827, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-23", + "total_cases": 213.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.863, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 319.0, + "total_tests": 6917.0, + "total_tests_per_thousand": 0.97, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 329.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 59.051, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-24", + "total_cases": 220.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.845, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 405.0, + "total_tests": 7322.0, + "total_tests_per_thousand": 1.027, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 339.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 51.586999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-25", + "total_cases": 223.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.265, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 0.421, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 308.0, + "total_tests": 7630.0, + "total_tests_per_thousand": 1.07, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 339.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 113.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-26", + "total_cases": 228.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.966, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 295.0, + "total_tests": 7925.0, + "total_tests_per_thousand": 1.111, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 93.154, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 228.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.966, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.441, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 519.0, + "total_tests": 8444.0, + "total_tests_per_thousand": 1.184, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 116.773, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 230.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 32.247, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.441, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 447.0, + "total_tests": 8891.0, + "total_tests_per_thousand": 1.247, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 371.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 118.045, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 239.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.508, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 563.0, + "total_tests": 9454.0, + "total_tests_per_thousand": 1.325, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 408.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 109.846, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 249.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.91, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 0.721, + "total_deaths_per_million": 1.262, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 449.0, + "total_tests": 9903.0, + "total_tests_per_thousand": 1.388, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 427.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 83.02799999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-01", + "total_cases": 266.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 37.294, + "new_cases_per_million": 2.383, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 439.0, + "total_tests": 10342.0, + "total_tests_per_thousand": 1.45, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 431.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 65.587, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-02", + "total_cases": 333.0, + "new_cases": 67.0, + "new_cases_smoothed": 15.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.688, + "new_cases_per_million": 9.394, + "new_cases_smoothed_per_million": 2.203, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 424.0, + "total_tests": 10766.0, + "total_tests_per_thousand": 1.509, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 448.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 28.509, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-03", + "total_cases": 370.0, + "new_cases": 37.0, + "new_cases_smoothed": 20.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.875, + "new_cases_per_million": 5.188, + "new_cases_smoothed_per_million": 2.844, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 340.0, + "total_tests": 11106.0, + "total_tests_per_thousand": 1.557, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 454.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 22.38, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-04", + "total_cases": 396.0, + "new_cases": 26.0, + "new_cases_smoothed": 24.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.52, + "new_cases_per_million": 3.645, + "new_cases_smoothed_per_million": 3.365, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 349.0, + "total_tests": 11455.0, + "total_tests_per_thousand": 1.606, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 430.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 17.917, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-05", + "total_cases": 415.0, + "new_cases": 19.0, + "new_cases_smoothed": 26.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 58.184, + "new_cases_per_million": 2.664, + "new_cases_smoothed_per_million": 3.705, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 458.0, + "total_tests": 11913.0, + "total_tests_per_thousand": 1.67, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 432.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 16.346, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-06", + "total_cases": 431.0, + "new_cases": 16.0, + "new_cases_smoothed": 27.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 60.427, + "new_cases_per_million": 2.243, + "new_cases_smoothed_per_million": 3.846, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 584.0, + "total_tests": 12497.0, + "total_tests_per_thousand": 1.752, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 435.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 15.859000000000002, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-07", + "total_cases": 440.0, + "new_cases": 9.0, + "new_cases_smoothed": 27.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.689, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 3.826, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 599.0, + "total_tests": 13096.0, + "total_tests_per_thousand": 1.836, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 456.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 16.712, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-08", + "total_cases": 462.0, + "new_cases": 22.0, + "new_cases_smoothed": 28.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.774, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 3.926, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 750.0, + "total_tests": 13846.0, + "total_tests_per_thousand": 1.941, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 17.893, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-09", + "total_cases": 563.0, + "new_cases": 101.0, + "new_cases_smoothed": 32.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.934, + "new_cases_per_million": 14.16, + "new_cases_smoothed_per_million": 4.607, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 800.0, + "total_tests": 14646.0, + "total_tests_per_thousand": 2.053, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 554.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 16.861, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-10", + "total_cases": 689.0, + "new_cases": 126.0, + "new_cases_smoothed": 45.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.6, + "new_cases_per_million": 17.666, + "new_cases_smoothed_per_million": 6.389, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 800.0, + "total_tests": 15446.0, + "total_tests_per_thousand": 2.166, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 620.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 13.605, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-11", + "total_cases": 713.0, + "new_cases": 24.0, + "new_cases_smoothed": 45.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.965, + "new_cases_per_million": 3.365, + "new_cases_smoothed_per_million": 6.349, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 709.0, + "total_tests": 16155.0, + "total_tests_per_thousand": 2.265, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 671.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 14.817, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-12", + "total_cases": 724.0, + "new_cases": 11.0, + "new_cases_smoothed": 44.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.507, + "new_cases_per_million": 1.542, + "new_cases_smoothed_per_million": 6.189, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 762.0, + "total_tests": 16917.0, + "total_tests_per_thousand": 2.372, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 715.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 16.197, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-13", + "total_cases": 737.0, + "new_cases": 13.0, + "new_cases_smoothed": 43.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.329, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 6.129, + "total_deaths_per_million": 1.402, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 672.0, + "total_tests": 17589.0, + "total_tests_per_thousand": 2.466, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 727.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 16.631, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-14", + "total_cases": 740.0, + "new_cases": 3.0, + "new_cases_smoothed": 42.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 103.75, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 6.009, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 595.0, + "total_tests": 18184.0, + "total_tests_per_thousand": 2.549, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 727.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 16.963, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-15", + "total_cases": 754.0, + "new_cases": 14.0, + "new_cases_smoothed": 41.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 105.713, + "new_cases_per_million": 1.963, + "new_cases_smoothed_per_million": 5.848, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 672.0, + "total_tests": 18856.0, + "total_tests_per_thousand": 2.644, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 716.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 17.164, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-16", + "total_cases": 759.0, + "new_cases": 5.0, + "new_cases_smoothed": 28.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.414, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 3.926, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 452.0, + "total_tests": 19308.0, + "total_tests_per_thousand": 2.707, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 666.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 23.785999999999998, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-17", + "total_cases": 778.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.078, + "new_cases_per_million": 2.664, + "new_cases_smoothed_per_million": 1.783, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 816.0, + "total_tests": 20124.0, + "total_tests_per_thousand": 2.821, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 52.538999999999994, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-18", + "total_cases": 786.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 110.199, + "new_cases_per_million": 1.122, + "new_cases_smoothed_per_million": 1.462, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 305.0, + "total_tests": 20429.0, + "total_tests_per_thousand": 2.864, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 58.589, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-19", + "total_cases": 788.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 110.48, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 1.282, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 692.0, + "total_tests": 21121.0, + "total_tests_per_thousand": 2.961, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 601.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 65.734, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-20", + "total_cases": 829.0, + "new_cases": 41.0, + "new_cases_smoothed": 13.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 116.228, + "new_cases_per_million": 5.748, + "new_cases_smoothed_per_million": 1.843, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 421.0, + "total_tests": 21542.0, + "total_tests_per_thousand": 3.02, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 565.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 42.989, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-21", + "total_cases": 833.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.789, + "new_cases_per_million": 0.561, + "new_cases_smoothed_per_million": 1.863, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 445.0, + "total_tests": 21987.0, + "total_tests_per_thousand": 3.083, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 543.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 40.871, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-22", + "total_cases": 836.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.209, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 1.642, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 881.0, + "total_tests": 22868.0, + "total_tests_per_thousand": 3.206, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 573.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 48.915, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-23", + "total_cases": 838.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.49, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 937.0, + "total_tests": 23805.0, + "total_tests_per_thousand": 3.338, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 642.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 56.886, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-24", + "total_cases": 850.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.172, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 1.442, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1007.0, + "total_tests": 24812.0, + "total_tests_per_thousand": 3.479, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 670.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 65.139, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 94.44 + }, + { + "date": "2020-05-25", + "total_cases": 862.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.855, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 1.522, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 404.0, + "total_tests": 25216.0, + "total_tests_per_thousand": 3.535, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 684.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 63.0, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-26", + "total_cases": 865.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.275, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 1.542, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 953.0, + "total_tests": 26169.0, + "total_tests_per_thousand": 3.669, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 65.545, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-27", + "total_cases": 877.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.958, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 0.961, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 591.0, + "total_tests": 26760.0, + "total_tests_per_thousand": 3.752, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 745.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 108.646, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-28", + "total_cases": 884.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.939, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 1.021, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 665.0, + "total_tests": 27425.0, + "total_tests_per_thousand": 3.845, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 777.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 106.647, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-29", + "total_cases": 900.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.182, + "new_cases_per_million": 2.243, + "new_cases_smoothed_per_million": 1.282, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 912.0, + "total_tests": 28337.0, + "total_tests_per_thousand": 3.973, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 781.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 85.42200000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-30", + "total_cases": 917.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.566, + "new_cases_per_million": 2.383, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 816.0, + "total_tests": 29153.0, + "total_tests_per_thousand": 4.087, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 764.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 67.696, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-31", + "total_cases": 964.0, + "new_cases": 47.0, + "new_cases_smoothed": 16.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.155, + "new_cases_per_million": 6.59, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 851.0, + "total_tests": 30004.0, + "total_tests_per_thousand": 4.207, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 742.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 45.56100000000001, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-01", + "total_cases": 986.0, + "new_cases": 22.0, + "new_cases_smoothed": 17.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.24, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 2.484, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 830.0, + "total_tests": 30834.0, + "total_tests_per_thousand": 4.323, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 803.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 45.331, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-02", + "total_cases": 995.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.502, + "new_cases_per_million": 1.262, + "new_cases_smoothed_per_million": 2.604, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1272.0, + "total_tests": 32106.0, + "total_tests_per_thousand": 4.501, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 848.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 45.662, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-03", + "total_cases": 1013.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.025, + "new_cases_per_million": 2.524, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 975.0, + "total_tests": 33081.0, + "total_tests_per_thousand": 4.638, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 46.478, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-04", + "total_cases": 1070.0, + "new_cases": 57.0, + "new_cases_smoothed": 26.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.017, + "new_cases_per_million": 7.992, + "new_cases_smoothed_per_million": 3.725, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1159.0, + "total_tests": 34240.0, + "total_tests_per_thousand": 4.801, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 974.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 36.656, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-05", + "total_cases": 1086.0, + "new_cases": 16.0, + "new_cases_smoothed": 26.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.26, + "new_cases_per_million": 2.243, + "new_cases_smoothed_per_million": 3.725, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1018.0, + "total_tests": 35258.0, + "total_tests_per_thousand": 4.943, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 37.22, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-06", + "total_cases": 1087.0, + "new_cases": 1.0, + "new_cases_smoothed": 24.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.4, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 3.405, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1115.0, + "total_tests": 36373.0, + "total_tests_per_thousand": 5.1, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1031.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 42.453, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-07", + "total_cases": 1090.0, + "new_cases": 3.0, + "new_cases_smoothed": 18.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.821, + "new_cases_per_million": 0.421, + "new_cases_smoothed_per_million": 2.524, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1159.0, + "total_tests": 37532.0, + "total_tests_per_thousand": 5.262, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1075.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 59.722, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-08", + "total_cases": 1135.0, + "new_cases": 45.0, + "new_cases_smoothed": 21.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.13, + "new_cases_per_million": 6.309, + "new_cases_smoothed_per_million": 2.984, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1410.0, + "total_tests": 38942.0, + "total_tests_per_thousand": 5.46, + "new_tests_per_thousand": 0.198, + "new_tests_smoothed": 1158.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 54.403, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-09", + "total_cases": 1145.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.532, + "new_cases_per_million": 1.402, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1090.0, + "total_tests": 40032.0, + "total_tests_per_thousand": 5.613, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 1132.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 52.827, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-10", + "total_cases": 1187.0, + "new_cases": 42.0, + "new_cases_smoothed": 24.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 166.421, + "new_cases_per_million": 5.889, + "new_cases_smoothed_per_million": 3.485, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1670.0, + "total_tests": 41702.0, + "total_tests_per_thousand": 5.847, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 1232.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 49.563, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 1202.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 168.524, + "new_cases_per_million": 2.103, + "new_cases_smoothed_per_million": 2.644, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1590.0, + "total_tests": 43292.0, + "total_tests_per_thousand": 6.07, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 1293.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 68.568, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 1230.0, + "new_cases": 28.0, + "new_cases_smoothed": 20.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 172.449, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 2.884, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1840.0, + "total_tests": 45132.0, + "total_tests_per_thousand": 6.328, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 1411.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 68.59, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 1254.0, + "new_cases": 24.0, + "new_cases_smoothed": 23.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 175.814, + "new_cases_per_million": 3.365, + "new_cases_smoothed_per_million": 3.345, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1476.0, + "total_tests": 46608.0, + "total_tests_per_thousand": 6.535, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 1462.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 61.281000000000006, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 1261.0, + "new_cases": 7.0, + "new_cases_smoothed": 24.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 176.796, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 3.425, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1473.0, + "total_tests": 48081.0, + "total_tests_per_thousand": 6.741, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 1507.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 61.69, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 1289.0, + "new_cases": 28.0, + "new_cases_smoothed": 22.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.721, + "new_cases_per_million": 3.926, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 1.542, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 648.0, + "total_tests": 48729.0, + "total_tests_per_thousand": 6.832, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 1398.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 63.545, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 1289.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 180.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.884, + "total_deaths_per_million": 1.682, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 1249.0, + "total_tests": 49978.0, + "total_tests_per_thousand": 7.007, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 1421.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 69.07600000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 1303.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 182.684, + "new_cases_per_million": 1.963, + "new_cases_smoothed_per_million": 2.323, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1200.0, + "total_tests": 51178.0, + "total_tests_per_thousand": 7.175, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 1354.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 81.707, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-18", + "total_cases": 1308.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 183.385, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 2.123, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1471.0, + "total_tests": 52649.0, + "total_tests_per_thousand": 7.382, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 88.292, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-19", + "total_cases": 1330.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 186.47, + "new_cases_per_million": 3.084, + "new_cases_smoothed_per_million": 2.003, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1629.0, + "total_tests": 54278.0, + "total_tests_per_thousand": 7.61, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1307.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 91.49, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-20", + "total_cases": 1336.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 187.311, + "new_cases_per_million": 0.841, + "new_cases_smoothed_per_million": 1.642, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1549.0, + "total_tests": 55827.0, + "total_tests_per_thousand": 7.827, + "new_tests_per_thousand": 0.217, + "new_tests_smoothed": 1317.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 112.427, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-21", + "total_cases": 1362.0, + "new_cases": 26.0, + "new_cases_smoothed": 14.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 190.956, + "new_cases_per_million": 3.645, + "new_cases_smoothed_per_million": 2.023, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1165.0, + "total_tests": 56992.0, + "total_tests_per_thousand": 7.99, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1273.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 88.228, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-22", + "total_cases": 1379.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 193.34, + "new_cases_per_million": 2.383, + "new_cases_smoothed_per_million": 1.803, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 903.0, + "total_tests": 57895.0, + "total_tests_per_thousand": 8.117, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 1309.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 101.811, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-23", + "total_cases": 1392.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 195.162, + "new_cases_per_million": 1.823, + "new_cases_smoothed_per_million": 2.063, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 1559.0, + "total_tests": 59454.0, + "total_tests_per_thousand": 8.336, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 1354.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 92.01899999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-24", + "total_cases": 1422.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.368, + "new_cases_per_million": 4.206, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1357.0, + "total_tests": 60811.0, + "total_tests_per_thousand": 8.526, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 1376.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 80.941, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-06-25", + "total_cases": 1528.0, + "new_cases": 106.0, + "new_cases_smoothed": 31.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 214.23, + "new_cases_per_million": 14.861, + "new_cases_smoothed_per_million": 4.406, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1573.0, + "total_tests": 62384.0, + "total_tests_per_thousand": 8.746, + "new_tests_per_thousand": 0.221, + "new_tests_smoothed": 1391.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 44.25899999999999, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-26", + "total_cases": 1569.0, + "new_cases": 41.0, + "new_cases_smoothed": 34.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 219.978, + "new_cases_per_million": 5.748, + "new_cases_smoothed_per_million": 4.787, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1590.0, + "total_tests": 63974.0, + "total_tests_per_thousand": 8.969, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 1385.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 40.565, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-27", + "total_cases": 1711.0, + "new_cases": 142.0, + "new_cases_smoothed": 53.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 239.887, + "new_cases_per_million": 19.909, + "new_cases_smoothed_per_million": 7.511, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1631.0, + "total_tests": 65605.0, + "total_tests_per_thousand": 9.198, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 1397.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 26.076999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-28", + "total_cases": 1942.0, + "new_cases": 231.0, + "new_cases_smoothed": 82.857, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 272.274, + "new_cases_per_million": 32.387, + "new_cases_smoothed_per_million": 11.617, + "total_deaths_per_million": 2.103, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1361.0, + "total_tests": 66966.0, + "total_tests_per_thousand": 9.389, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 1425.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 17.198, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-29", + "total_cases": 2127.0, + "new_cases": 185.0, + "new_cases_smoothed": 106.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 298.211, + "new_cases_per_million": 25.938, + "new_cases_smoothed_per_million": 14.982, + "total_deaths_per_million": 2.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1061.0, + "total_tests": 68027.0, + "total_tests_per_thousand": 9.538, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 1447.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 13.540999999999999, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-06-30", + "total_cases": 2191.0, + "new_cases": 64.0, + "new_cases_smoothed": 114.143, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 307.184, + "new_cases_per_million": 8.973, + "new_cases_smoothed_per_million": 16.003, + "total_deaths_per_million": 2.243, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1316.0, + "total_tests": 69343.0, + "total_tests_per_thousand": 9.722, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 1413.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 12.379000000000001, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-01", + "total_cases": 2221.0, + "new_cases": 30.0, + "new_cases_smoothed": 114.143, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 311.39, + "new_cases_per_million": 4.206, + "new_cases_smoothed_per_million": 16.003, + "total_deaths_per_million": 2.383, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 1347.0, + "total_tests": 70690.0, + "total_tests_per_thousand": 9.911, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 1411.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 12.362, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-02", + "total_cases": 2260.0, + "new_cases": 39.0, + "new_cases_smoothed": 104.571, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 316.858, + "new_cases_per_million": 5.468, + "new_cases_smoothed_per_million": 14.661, + "total_deaths_per_million": 2.664, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 1629.0, + "total_tests": 72319.0, + "total_tests_per_thousand": 10.139, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 1419.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 13.57, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-03", + "total_cases": 2303.0, + "new_cases": 43.0, + "new_cases_smoothed": 104.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 322.887, + "new_cases_per_million": 6.029, + "new_cases_smoothed_per_million": 14.701, + "total_deaths_per_million": 2.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 1769.0, + "total_tests": 74088.0, + "total_tests_per_thousand": 10.387, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 1445.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 13.780999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-04", + "total_cases": 2349.0, + "new_cases": 46.0, + "new_cases_smoothed": 91.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 329.336, + "new_cases_per_million": 6.449, + "new_cases_smoothed_per_million": 12.778, + "total_deaths_per_million": 2.664, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 1989.0, + "total_tests": 76077.0, + "total_tests_per_thousand": 10.666, + "new_tests_per_thousand": 0.279, + "new_tests_smoothed": 1496.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 16.414, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-07-05", + "total_cases": 2385.0, + "new_cases": 36.0, + "new_cases_smoothed": 63.286, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 334.383, + "new_cases_per_million": 5.047, + "new_cases_smoothed_per_million": 8.873, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 1802.0, + "total_tests": 77879.0, + "total_tests_per_thousand": 10.919, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 1559.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 24.634, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-06", + "total_cases": 2427.0, + "new_cases": 42.0, + "new_cases_smoothed": 42.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 340.272, + "new_cases_per_million": 5.889, + "new_cases_smoothed_per_million": 6.009, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 1486.0, + "total_tests": 79365.0, + "total_tests_per_thousand": 11.127, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 1620.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 37.8, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-07", + "total_cases": 2456.0, + "new_cases": 29.0, + "new_cases_smoothed": 37.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 344.338, + "new_cases_per_million": 4.066, + "new_cases_smoothed_per_million": 5.308, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.08, + "new_tests": 2076.0, + "total_tests": 81441.0, + "total_tests_per_thousand": 11.418, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 1728.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 45.645, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-08", + "total_cases": 2502.0, + "new_cases": 46.0, + "new_cases_smoothed": 40.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 350.787, + "new_cases_per_million": 6.449, + "new_cases_smoothed_per_million": 5.628, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1533.0, + "total_tests": 82974.0, + "total_tests_per_thousand": 11.633, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 1755.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 43.718999999999994, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-09", + "total_cases": 2554.0, + "new_cases": 52.0, + "new_cases_smoothed": 42.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 358.078, + "new_cases_per_million": 7.291, + "new_cases_smoothed_per_million": 5.889, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 2017.0, + "total_tests": 84991.0, + "total_tests_per_thousand": 11.916, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 1810.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 43.095, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-10", + "total_cases": 2638.0, + "new_cases": 84.0, + "new_cases_smoothed": 47.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 369.855, + "new_cases_per_million": 11.777, + "new_cases_smoothed_per_million": 6.71, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 2212.0, + "total_tests": 87203.0, + "total_tests_per_thousand": 12.226, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 1874.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 39.158, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-11", + "total_cases": 2736.0, + "new_cases": 98.0, + "new_cases_smoothed": 55.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 383.595, + "new_cases_per_million": 13.74, + "new_cases_smoothed_per_million": 7.751, + "total_deaths_per_million": 2.804, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 2141.0, + "total_tests": 89344.0, + "total_tests_per_thousand": 12.526, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 1895.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 34.275999999999996, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-12", + "total_cases": 2820.0, + "new_cases": 84.0, + "new_cases_smoothed": 62.143, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 395.372, + "new_cases_per_million": 11.777, + "new_cases_smoothed_per_million": 8.713, + "total_deaths_per_million": 2.944, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 1937.0, + "total_tests": 91281.0, + "total_tests_per_thousand": 12.798, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 1915.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 30.816, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-13", + "total_cases": 2948.0, + "new_cases": 128.0, + "new_cases_smoothed": 74.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 413.318, + "new_cases_per_million": 17.946, + "new_cases_smoothed_per_million": 10.435, + "total_deaths_per_million": 3.084, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 1161.0, + "total_tests": 92442.0, + "total_tests_per_thousand": 12.961, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1868.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 25.098000000000003, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-14", + "total_cases": 2980.0, + "new_cases": 32.0, + "new_cases_smoothed": 74.857, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 417.804, + "new_cases_per_million": 4.486, + "new_cases_smoothed_per_million": 10.495, + "total_deaths_per_million": 3.505, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 1886.0, + "total_tests": 94328.0, + "total_tests_per_thousand": 13.225, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 1841.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 24.594, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-15", + "total_cases": 3074.0, + "new_cases": 94.0, + "new_cases_smoothed": 81.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 430.983, + "new_cases_per_million": 13.179, + "new_cases_smoothed_per_million": 11.457, + "total_deaths_per_million": 3.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 1732.0, + "total_tests": 96060.0, + "total_tests_per_thousand": 13.468, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 1869.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 22.872, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-16", + "total_cases": 3198.0, + "new_cases": 124.0, + "new_cases_smoothed": 92.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 448.368, + "new_cases_per_million": 17.385, + "new_cases_smoothed_per_million": 12.899, + "total_deaths_per_million": 3.505, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 2028.0, + "total_tests": 98088.0, + "total_tests_per_thousand": 13.752, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 1871.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 20.337, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-17", + "total_cases": 3342.0, + "new_cases": 144.0, + "new_cases_smoothed": 100.571, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 468.557, + "new_cases_per_million": 20.189, + "new_cases_smoothed_per_million": 14.1, + "total_deaths_per_million": 3.785, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 2227.0, + "total_tests": 100315.0, + "total_tests_per_thousand": 14.064, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 1873.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 18.624000000000002, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-18", + "total_cases": 3457.0, + "new_cases": 115.0, + "new_cases_smoothed": 103.0, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 484.681, + "new_cases_per_million": 16.123, + "new_cases_smoothed_per_million": 14.441, + "total_deaths_per_million": 3.926, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 2469.0, + "total_tests": 102784.0, + "total_tests_per_thousand": 14.411, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 1920.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 18.641, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-19", + "total_cases": 3629.0, + "new_cases": 172.0, + "new_cases_smoothed": 115.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 508.796, + "new_cases_per_million": 24.115, + "new_cases_smoothed_per_million": 16.203, + "total_deaths_per_million": 4.066, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 2338.0, + "total_tests": 105122.0, + "total_tests_per_thousand": 14.738, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 1977.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 17.105999999999998, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-07-20", + "total_cases": 3721.0, + "new_cases": 92.0, + "new_cases_smoothed": 110.429, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 521.694, + "new_cases_per_million": 12.899, + "new_cases_smoothed_per_million": 15.482, + "total_deaths_per_million": 4.346, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 1223.0, + "total_tests": 106345.0, + "total_tests_per_thousand": 14.91, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 1986.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 17.984, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-21", + "total_cases": 3748.0, + "new_cases": 27.0, + "new_cases_smoothed": 109.714, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 525.48, + "new_cases_per_million": 3.785, + "new_cases_smoothed_per_million": 15.382, + "total_deaths_per_million": 4.627, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.16, + "new_tests": 1688.0, + "total_tests": 108033.0, + "total_tests_per_thousand": 15.147, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 1958.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 17.846, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-22", + "total_cases": 3817.0, + "new_cases": 69.0, + "new_cases_smoothed": 106.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 535.154, + "new_cases_per_million": 9.674, + "new_cases_smoothed_per_million": 14.882, + "total_deaths_per_million": 4.907, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 1841.0, + "total_tests": 109874.0, + "total_tests_per_thousand": 15.405, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 1973.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 18.588, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-23", + "total_cases": 4000.0, + "new_cases": 183.0, + "new_cases_smoothed": 114.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 560.811, + "new_cases_per_million": 25.657, + "new_cases_smoothed_per_million": 16.063, + "total_deaths_per_million": 5.047, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2165.0, + "total_tests": 112039.0, + "total_tests_per_thousand": 15.708, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 1993.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 17.395, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-24", + "total_cases": 4113.0, + "new_cases": 113.0, + "new_cases_smoothed": 110.143, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 576.654, + "new_cases_per_million": 15.843, + "new_cases_smoothed_per_million": 15.442, + "total_deaths_per_million": 5.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.18, + "new_tests": 2006.0, + "total_tests": 114045.0, + "total_tests_per_thousand": 15.989, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 1961.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 17.804000000000002, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-25", + "total_cases": 4224.0, + "new_cases": 111.0, + "new_cases_smoothed": 109.571, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 592.216, + "new_cases_per_million": 15.563, + "new_cases_smoothed_per_million": 15.362, + "total_deaths_per_million": 5.328, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 1861.0, + "total_tests": 115906.0, + "total_tests_per_thousand": 16.25, + "new_tests_per_thousand": 0.261, + "new_tests_smoothed": 1875.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 17.112000000000002, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-26", + "total_cases": 4328.0, + "new_cases": 104.0, + "new_cases_smoothed": 99.857, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 606.797, + "new_cases_per_million": 14.581, + "new_cases_smoothed_per_million": 14.0, + "total_deaths_per_million": 5.608, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 1656.0, + "total_tests": 117562.0, + "total_tests_per_thousand": 16.483, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 1777.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 17.795, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-27", + "total_cases": 4444.0, + "new_cases": 116.0, + "new_cases_smoothed": 103.286, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 623.061, + "new_cases_per_million": 16.264, + "new_cases_smoothed_per_million": 14.481, + "total_deaths_per_million": 5.748, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 1694.0, + "total_tests": 119256.0, + "total_tests_per_thousand": 16.72, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 1844.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 17.852999999999998, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-28", + "total_cases": 4548.0, + "new_cases": 104.0, + "new_cases_smoothed": 114.286, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 637.642, + "new_cases_per_million": 14.581, + "new_cases_smoothed_per_million": 16.023, + "total_deaths_per_million": 6.029, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 1687.0, + "total_tests": 120943.0, + "total_tests_per_thousand": 16.957, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 1844.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 16.135, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-29", + "total_cases": 4674.0, + "new_cases": 126.0, + "new_cases_smoothed": 122.429, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 655.307, + "new_cases_per_million": 17.666, + "new_cases_smoothed_per_million": 17.165, + "total_deaths_per_million": 6.309, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 1886.0, + "total_tests": 122829.0, + "total_tests_per_thousand": 17.221, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 1851.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 15.119000000000002, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-30", + "total_cases": 4866.0, + "new_cases": 192.0, + "new_cases_smoothed": 123.714, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 682.226, + "new_cases_per_million": 26.919, + "new_cases_smoothed_per_million": 17.345, + "total_deaths_per_million": 6.449, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 2532.0, + "total_tests": 125361.0, + "total_tests_per_thousand": 17.576, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 1903.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 15.382, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-07-31", + "total_cases": 5207.0, + "new_cases": 341.0, + "new_cases_smoothed": 156.286, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 730.035, + "new_cases_per_million": 47.809, + "new_cases_smoothed_per_million": 21.912, + "total_deaths_per_million": 6.59, + "new_deaths_per_million": 0.14, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 2249.0, + "total_tests": 127610.0, + "total_tests_per_thousand": 17.891, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 1938.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 12.4, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-01", + "total_cases": 5338.0, + "new_cases": 131.0, + "new_cases_smoothed": 159.143, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 748.402, + "new_cases_per_million": 18.367, + "new_cases_smoothed_per_million": 22.312, + "total_deaths_per_million": 6.87, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 1099.0, + "total_tests": 128709.0, + "total_tests_per_thousand": 18.045, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 1829.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 11.493, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-02", + "total_cases": 5485.0, + "new_cases": 147.0, + "new_cases_smoothed": 165.286, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 769.012, + "new_cases_per_million": 20.61, + "new_cases_smoothed_per_million": 23.174, + "total_deaths_per_million": 7.291, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 1015.0, + "total_tests": 129724.0, + "total_tests_per_thousand": 18.188, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 1737.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 10.509, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-03", + "total_cases": 5644.0, + "new_cases": 159.0, + "new_cases_smoothed": 171.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 791.304, + "new_cases_per_million": 22.292, + "new_cases_smoothed_per_million": 24.035, + "total_deaths_per_million": 7.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 1062.0, + "total_tests": 130786.0, + "total_tests_per_thousand": 18.337, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 1647.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 9.607999999999999, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-04", + "total_cases": 5724.0, + "new_cases": 80.0, + "new_cases_smoothed": 168.0, + "total_deaths": 55.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 802.52, + "new_cases_per_million": 11.216, + "new_cases_smoothed_per_million": 23.554, + "total_deaths_per_million": 7.711, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 1325.0, + "total_tests": 132111.0, + "total_tests_per_thousand": 18.522, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 1595.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 9.494, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-05", + "total_cases": 5852.0, + "new_cases": 128.0, + "new_cases_smoothed": 168.286, + "total_deaths": 59.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 820.466, + "new_cases_per_million": 17.946, + "new_cases_smoothed_per_million": 23.594, + "total_deaths_per_million": 8.272, + "new_deaths_per_million": 0.561, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 1711.0, + "total_tests": 133822.0, + "total_tests_per_thousand": 18.762, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 1570.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 9.329, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-06", + "total_cases": 6060.0, + "new_cases": 208.0, + "new_cases_smoothed": 170.571, + "total_deaths": 61.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 849.628, + "new_cases_per_million": 29.162, + "new_cases_smoothed_per_million": 23.915, + "total_deaths_per_million": 8.552, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.3, + "new_tests": 1455.0, + "total_tests": 135277.0, + "total_tests_per_thousand": 18.966, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 1417.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 8.307, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-07", + "total_cases": 6375.0, + "new_cases": 315.0, + "new_cases_smoothed": 166.857, + "total_deaths": 66.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 893.792, + "new_cases_per_million": 44.164, + "new_cases_smoothed_per_million": 23.394, + "total_deaths_per_million": 9.253, + "new_deaths_per_million": 0.701, + "new_deaths_smoothed_per_million": 0.381, + "new_tests": 1002.0, + "total_tests": 136279.0, + "total_tests_per_thousand": 19.107, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 1238.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 7.42, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-08", + "total_cases": 6508.0, + "new_cases": 133.0, + "new_cases_smoothed": 167.143, + "total_deaths": 69.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 912.439, + "new_cases_per_million": 18.647, + "new_cases_smoothed_per_million": 23.434, + "total_deaths_per_million": 9.674, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.401, + "new_tests": 1021.0, + "total_tests": 137300.0, + "total_tests_per_thousand": 19.25, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 1227.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 7.341, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-09", + "total_cases": 6705.0, + "new_cases": 197.0, + "new_cases_smoothed": 174.286, + "total_deaths": 72.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 940.059, + "new_cases_per_million": 27.62, + "new_cases_smoothed_per_million": 24.435, + "total_deaths_per_million": 10.095, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.401, + "new_tests": 1115.0, + "total_tests": 138415.0, + "total_tests_per_thousand": 19.406, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1242.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 7.126, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-10", + "total_cases": 6907.0, + "new_cases": 202.0, + "new_cases_smoothed": 180.429, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 968.38, + "new_cases_per_million": 28.321, + "new_cases_smoothed_per_million": 25.297, + "total_deaths_per_million": 10.515, + "new_deaths_per_million": 0.421, + "new_deaths_smoothed_per_million": 0.461, + "new_tests": 1821.0, + "total_tests": 140236.0, + "total_tests_per_thousand": 19.661, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 1350.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 7.482, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-11", + "total_cases": 7234.0, + "new_cases": 327.0, + "new_cases_smoothed": 215.714, + "total_deaths": 82.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1014.226, + "new_cases_per_million": 45.846, + "new_cases_smoothed_per_million": 30.244, + "total_deaths_per_million": 11.497, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 0.541, + "new_tests": 2158.0, + "total_tests": 142394.0, + "total_tests_per_thousand": 19.964, + "new_tests_per_thousand": 0.303, + "new_tests_smoothed": 1469.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 6.81, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-12", + "total_cases": 7519.0, + "new_cases": 285.0, + "new_cases_smoothed": 238.143, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1054.184, + "new_cases_per_million": 39.958, + "new_cases_smoothed_per_million": 33.388, + "total_deaths_per_million": 12.057, + "new_deaths_per_million": 0.561, + "new_deaths_smoothed_per_million": 0.541, + "new_tests": 2123.0, + "total_tests": 144517.0, + "total_tests_per_thousand": 20.262, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 1528.0, + "new_tests_smoothed_per_thousand": 0.214, + "tests_per_case": 6.416, + "positive_rate": 0.156, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-13", + "total_cases": 8018.0, + "new_cases": 499.0, + "new_cases_smoothed": 279.714, + "total_deaths": 93.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1124.145, + "new_cases_per_million": 69.961, + "new_cases_smoothed_per_million": 39.217, + "total_deaths_per_million": 13.039, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 0.641, + "new_tests": 1767.0, + "total_tests": 146284.0, + "total_tests_per_thousand": 20.509, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 1572.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 5.62, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-14", + "total_cases": 8389.0, + "new_cases": 371.0, + "new_cases_smoothed": 287.714, + "total_deaths": 97.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1176.16, + "new_cases_per_million": 52.015, + "new_cases_smoothed_per_million": 40.338, + "total_deaths_per_million": 13.6, + "new_deaths_per_million": 0.561, + "new_deaths_smoothed_per_million": 0.621, + "new_tests": 3065.0, + "total_tests": 149349.0, + "total_tests_per_thousand": 20.939, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 1867.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 6.489, + "positive_rate": 0.154, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-15", + "total_cases": 9077.0, + "new_cases": 688.0, + "new_cases_smoothed": 367.0, + "total_deaths": 108.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1272.62, + "new_cases_per_million": 96.459, + "new_cases_smoothed_per_million": 51.454, + "total_deaths_per_million": 15.142, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 0.781, + "new_tests": 2078.0, + "total_tests": 151427.0, + "total_tests_per_thousand": 21.23, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 2018.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 5.499, + "positive_rate": 0.182, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-16", + "total_cases": 9381.0, + "new_cases": 304.0, + "new_cases_smoothed": 382.286, + "total_deaths": 127.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1315.242, + "new_cases_per_million": 42.622, + "new_cases_smoothed_per_million": 53.597, + "total_deaths_per_million": 17.806, + "new_deaths_per_million": 2.664, + "new_deaths_smoothed_per_million": 1.102, + "new_tests": 2965.0, + "total_tests": 154392.0, + "total_tests_per_thousand": 21.646, + "new_tests_per_thousand": 0.416, + "new_tests_smoothed": 2282.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 5.968999999999999, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-17", + "total_cases": 9791.0, + "new_cases": 410.0, + "new_cases_smoothed": 412.0, + "total_deaths": 138.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1372.725, + "new_cases_per_million": 57.483, + "new_cases_smoothed_per_million": 57.764, + "total_deaths_per_million": 19.348, + "new_deaths_per_million": 1.542, + "new_deaths_smoothed_per_million": 1.262, + "new_tests": 2219.0, + "total_tests": 156611.0, + "total_tests_per_thousand": 21.957, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 2339.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 5.6770000000000005, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-18", + "total_cases": 10135.0, + "new_cases": 344.0, + "new_cases_smoothed": 414.429, + "total_deaths": 145.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1420.954, + "new_cases_per_million": 48.23, + "new_cases_smoothed_per_million": 58.104, + "total_deaths_per_million": 20.329, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 1.262, + "new_tests": 3055.0, + "total_tests": 159666.0, + "total_tests_per_thousand": 22.386, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 2467.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 5.952999999999999, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-19", + "total_cases": 10606.0, + "new_cases": 471.0, + "new_cases_smoothed": 441.0, + "total_deaths": 161.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1486.99, + "new_cases_per_million": 66.035, + "new_cases_smoothed_per_million": 61.829, + "total_deaths_per_million": 22.573, + "new_deaths_per_million": 2.243, + "new_deaths_smoothed_per_million": 1.502, + "new_tests": 2657.0, + "total_tests": 162323.0, + "total_tests_per_thousand": 22.758, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 2544.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 5.769, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-20", + "total_cases": 11133.0, + "new_cases": 527.0, + "new_cases_smoothed": 445.0, + "total_deaths": 165.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1560.877, + "new_cases_per_million": 73.887, + "new_cases_smoothed_per_million": 62.39, + "total_deaths_per_million": 23.133, + "new_deaths_per_million": 0.561, + "new_deaths_smoothed_per_million": 1.442, + "new_tests": 3787.0, + "total_tests": 166110.0, + "total_tests_per_thousand": 23.289, + "new_tests_per_thousand": 0.531, + "new_tests_smoothed": 2832.0, + "new_tests_smoothed_per_thousand": 0.397, + "tests_per_case": 6.364, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-21", + "total_cases": 11817.0, + "new_cases": 684.0, + "new_cases_smoothed": 489.714, + "total_deaths": 170.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 1656.775, + "new_cases_per_million": 95.899, + "new_cases_smoothed_per_million": 68.659, + "total_deaths_per_million": 23.834, + "new_deaths_per_million": 0.701, + "new_deaths_smoothed_per_million": 1.462, + "new_tests": 3150.0, + "total_tests": 169260.0, + "total_tests_per_thousand": 23.731, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 2844.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 5.807, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-22", + "total_cases": 12536.0, + "new_cases": 719.0, + "new_cases_smoothed": 494.143, + "total_deaths": 182.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 1757.581, + "new_cases_per_million": 100.806, + "new_cases_smoothed_per_million": 69.28, + "total_deaths_per_million": 25.517, + "new_deaths_per_million": 1.682, + "new_deaths_smoothed_per_million": 1.482, + "new_tests": 2292.0, + "total_tests": 171552.0, + "total_tests_per_thousand": 24.052, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 2875.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 5.818, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-23", + "total_cases": 12974.0, + "new_cases": 438.0, + "new_cases_smoothed": 513.286, + "total_deaths": 192.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1818.99, + "new_cases_per_million": 61.409, + "new_cases_smoothed_per_million": 71.964, + "total_deaths_per_million": 26.919, + "new_deaths_per_million": 1.402, + "new_deaths_smoothed_per_million": 1.302, + "new_tests": 1788.0, + "total_tests": 173340.0, + "total_tests_per_thousand": 24.303, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 2707.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 5.274, + "positive_rate": 0.19, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-24", + "total_cases": 13233.0, + "new_cases": 259.0, + "new_cases_smoothed": 491.714, + "total_deaths": 205.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1855.302, + "new_cases_per_million": 36.313, + "new_cases_smoothed_per_million": 68.94, + "total_deaths_per_million": 28.742, + "new_deaths_per_million": 1.823, + "new_deaths_smoothed_per_million": 1.342, + "new_tests": 2312.0, + "total_tests": 175652.0, + "total_tests_per_thousand": 24.627, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 2720.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 5.532, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-08-25", + "total_cases": 13602.0, + "new_cases": 369.0, + "new_cases_smoothed": 495.286, + "total_deaths": 219.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 1907.037, + "new_cases_per_million": 51.735, + "new_cases_smoothed_per_million": 69.44, + "total_deaths_per_million": 30.704, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 1.482, + "new_tests": 2119.0, + "total_tests": 177771.0, + "total_tests_per_thousand": 24.924, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 2586.0, + "new_tests_smoothed_per_thousand": 0.363, + "tests_per_case": 5.221, + "positive_rate": 0.192, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-26", + "total_cases": 14228.0, + "new_cases": 626.0, + "new_cases_smoothed": 517.429, + "total_deaths": 231.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1994.804, + "new_cases_per_million": 87.767, + "new_cases_smoothed_per_million": 72.545, + "total_deaths_per_million": 32.387, + "new_deaths_per_million": 1.682, + "new_deaths_smoothed_per_million": 1.402, + "new_tests": 2835.0, + "total_tests": 180606.0, + "total_tests_per_thousand": 25.321, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 2612.0, + "new_tests_smoothed_per_thousand": 0.366, + "tests_per_case": 5.048, + "positive_rate": 0.198, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-27", + "total_cases": 14872.0, + "new_cases": 644.0, + "new_cases_smoothed": 534.143, + "total_deaths": 247.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 2085.095, + "new_cases_per_million": 90.291, + "new_cases_smoothed_per_million": 74.888, + "total_deaths_per_million": 34.63, + "new_deaths_per_million": 2.243, + "new_deaths_smoothed_per_million": 1.642, + "new_tests": 2185.0, + "total_tests": 182791.0, + "total_tests_per_thousand": 25.628, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 2383.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 4.461, + "positive_rate": 0.22399999999999998, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-28", + "total_cases": 15290.0, + "new_cases": 418.0, + "new_cases_smoothed": 496.143, + "total_deaths": 265.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 2143.699, + "new_cases_per_million": 58.605, + "new_cases_smoothed_per_million": 69.561, + "total_deaths_per_million": 37.154, + "new_deaths_per_million": 2.524, + "new_deaths_smoothed_per_million": 1.903, + "new_tests": 3130.0, + "total_tests": 185921.0, + "total_tests_per_thousand": 26.067, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 2380.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 4.797, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-29", + "total_cases": 15874.0, + "new_cases": 584.0, + "new_cases_smoothed": 476.857, + "total_deaths": 280.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 2225.578, + "new_cases_per_million": 81.878, + "new_cases_smoothed_per_million": 66.857, + "total_deaths_per_million": 39.257, + "new_deaths_per_million": 2.103, + "new_deaths_smoothed_per_million": 1.963, + "new_tests": 2638.0, + "total_tests": 188559.0, + "total_tests_per_thousand": 26.436, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 2430.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 5.096, + "positive_rate": 0.196, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-30", + "total_cases": 16474.0, + "new_cases": 600.0, + "new_cases_smoothed": 500.0, + "total_deaths": 294.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 2309.699, + "new_cases_per_million": 84.122, + "new_cases_smoothed_per_million": 70.101, + "total_deaths_per_million": 41.22, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 2.043, + "new_tests": 1610.0, + "total_tests": 190169.0, + "total_tests_per_thousand": 26.662, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 2404.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 4.808, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-08-31", + "total_cases": 17195.0, + "new_cases": 721.0, + "new_cases_smoothed": 566.0, + "total_deaths": 308.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 2410.786, + "new_cases_per_million": 101.086, + "new_cases_smoothed_per_million": 79.355, + "total_deaths_per_million": 43.182, + "new_deaths_per_million": 1.963, + "new_deaths_smoothed_per_million": 2.063, + "new_tests": 2296.0, + "total_tests": 192465.0, + "total_tests_per_thousand": 26.984, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 4.244, + "positive_rate": 0.23600000000000002, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-09-01", + "total_cases": 17662.0, + "new_cases": 467.0, + "new_cases_smoothed": 580.0, + "total_deaths": 326.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2476.26, + "new_cases_per_million": 65.475, + "new_cases_smoothed_per_million": 81.318, + "total_deaths_per_million": 45.706, + "new_deaths_per_million": 2.524, + "new_deaths_smoothed_per_million": 2.143, + "stringency_index": 81.48 + }, + { + "date": "2020-09-02", + "total_cases": 18338.0, + "new_cases": 676.0, + "new_cases_smoothed": 587.143, + "total_deaths": 348.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 2571.037, + "new_cases_per_million": 94.777, + "new_cases_smoothed_per_million": 82.319, + "total_deaths_per_million": 48.791, + "new_deaths_per_million": 3.084, + "new_deaths_smoothed_per_million": 2.343, + "stringency_index": 81.48 + }, + { + "date": "2020-09-03", + "total_cases": 19138.0, + "new_cases": 800.0, + "new_cases_smoothed": 609.429, + "total_deaths": 358.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2683.199, + "new_cases_per_million": 112.162, + "new_cases_smoothed_per_million": 85.444, + "total_deaths_per_million": 50.193, + "new_deaths_per_million": 1.402, + "new_deaths_smoothed_per_million": 2.223, + "stringency_index": 81.48 + }, + { + "date": "2020-09-04", + "total_cases": 19959.0, + "new_cases": 821.0, + "new_cases_smoothed": 667.0, + "total_deaths": 373.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 2798.306, + "new_cases_per_million": 115.106, + "new_cases_smoothed_per_million": 93.515, + "total_deaths_per_million": 52.296, + "new_deaths_per_million": 2.103, + "new_deaths_smoothed_per_million": 2.163 + }, + { + "date": "2020-09-05", + "total_cases": 20654.0, + "new_cases": 695.0, + "new_cases_smoothed": 682.857, + "total_deaths": 398.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 2895.747, + "new_cases_per_million": 97.441, + "new_cases_smoothed_per_million": 95.738, + "total_deaths_per_million": 55.801, + "new_deaths_per_million": 3.505, + "new_deaths_smoothed_per_million": 2.363 + } + ] + }, + "PER": { + "continent": "South America", + "location": "Peru", + "population": 32971846.0, + "population_density": 25.129, + "median_age": 29.1, + "aged_65_older": 7.151, + "aged_70_older": 4.455, + "gdp_per_capita": 12236.706, + "extreme_poverty": 3.5, + "cardiovasc_death_rate": 85.755, + "diabetes_prevalence": 5.95, + "female_smokers": 4.8, + "hospital_beds_per_thousand": 1.6, + "life_expectancy": 76.74, + "data": [ + { + "date": "2020-02-28", + "total_tests": 54.0, + "total_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "total_tests": 107.0, + "total_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_tests": 155.0, + "total_tests_per_thousand": 0.005, + "tests_units": "people tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_tests": 64.0, + "total_tests": 219.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.03, + "new_cases_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 250.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 26.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "new_tests": 68.0, + "total_tests": 318.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 34.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "total_cases": 7.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.212, + "new_cases_per_million": 0.182, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 346.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 36.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "total_cases": 9.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.273, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 310.0, + "total_tests": 656.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 78.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-11", + "total_cases": 11.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.334, + "new_cases_per_million": 0.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 102.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-12", + "total_cases": 17.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.516, + "new_cases_per_million": 0.182, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 126.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-03-13", + "total_cases": 22.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.667, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.095, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1232.0, + "total_tests_per_thousand": 0.037, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-03-14", + "total_cases": 38.0, + "new_cases": 16.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.152, + "new_cases_per_million": 0.485, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 590.0, + "total_tests": 1822.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 225.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-15", + "total_cases": 43.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.304, + "new_cases_per_million": 0.152, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 493.0, + "total_tests": 2315.0, + "total_tests_per_thousand": 0.07, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 285.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_units": "people tested", + "stringency_index": 74.07 + }, + { + "date": "2020-03-16", + "total_cases": 71.0, + "new_cases": 28.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.153, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.277, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 482.0, + "total_tests": 2797.0, + "total_tests_per_thousand": 0.085, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-17", + "total_cases": 86.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.608, + "new_cases_per_million": 0.455, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 278.0, + "total_tests": 3075.0, + "total_tests_per_thousand": 0.093, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_units": "people tested", + "stringency_index": 90.74 + }, + { + "date": "2020-03-18", + "total_cases": 117.0, + "new_cases": 31.0, + "new_cases_smoothed": 15.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.548, + "new_cases_per_million": 0.94, + "new_cases_smoothed_per_million": 0.459, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 766.0, + "total_tests": 3841.0, + "total_tests_per_thousand": 0.116, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 428.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-19", + "total_cases": 145.0, + "new_cases": 28.0, + "new_cases_smoothed": 18.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.398, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 457.0, + "total_tests": 4298.0, + "total_tests_per_thousand": 0.13, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 465.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-20", + "total_cases": 234.0, + "new_cases": 89.0, + "new_cases_smoothed": 30.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.097, + "new_cases_per_million": 2.699, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 0.061, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 1911.0, + "total_tests": 6209.0, + "total_tests_per_thousand": 0.188, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 711.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-21", + "total_cases": 263.0, + "new_cases": 29.0, + "new_cases_smoothed": 32.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.977, + "new_cases_per_million": 0.88, + "new_cases_smoothed_per_million": 0.975, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "new_tests": -25.0, + "total_tests": 6184.0, + "total_tests_per_thousand": 0.188, + "new_tests_per_thousand": -0.001, + "new_tests_smoothed": 623.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-22", + "total_cases": 318.0, + "new_cases": 55.0, + "new_cases_smoothed": 39.286, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9.645, + "new_cases_per_million": 1.668, + "new_cases_smoothed_per_million": 1.191, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 480.0, + "total_tests": 6664.0, + "total_tests_per_thousand": 0.202, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 621.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-23", + "total_cases": 363.0, + "new_cases": 45.0, + "new_cases_smoothed": 41.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11.009, + "new_cases_per_million": 1.365, + "new_cases_smoothed_per_million": 1.265, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 349.0, + "total_tests": 7013.0, + "total_tests_per_thousand": 0.213, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 602.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-24", + "total_cases": 395.0, + "new_cases": 32.0, + "new_cases_smoothed": 44.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11.98, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 1.339, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1027.0, + "total_tests": 8040.0, + "total_tests_per_thousand": 0.244, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 709.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-25", + "total_cases": 416.0, + "new_cases": 21.0, + "new_cases_smoothed": 42.714, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 12.617, + "new_cases_per_million": 0.637, + "new_cases_smoothed_per_million": 1.295, + "total_deaths_per_million": 0.212, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 1179.0, + "total_tests": 9219.0, + "total_tests_per_thousand": 0.28, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 768.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-26", + "total_cases": 558.0, + "new_cases": 142.0, + "new_cases_smoothed": 59.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 16.924, + "new_cases_per_million": 4.307, + "new_cases_smoothed_per_million": 1.789, + "total_deaths_per_million": 0.243, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 846.0, + "total_tests": 10065.0, + "total_tests_per_thousand": 0.305, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 824.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-27", + "total_cases": 580.0, + "new_cases": 22.0, + "new_cases_smoothed": 49.429, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 17.591, + "new_cases_per_million": 0.667, + "new_cases_smoothed_per_million": 1.499, + "total_deaths_per_million": 0.273, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.03, + "new_tests": 831.0, + "total_tests": 10896.0, + "total_tests_per_thousand": 0.33, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 670.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-28", + "total_cases": 635.0, + "new_cases": 55.0, + "new_cases_smoothed": 53.143, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 19.259, + "new_cases_per_million": 1.668, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 0.334, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 1773.0, + "total_tests": 12669.0, + "total_tests_per_thousand": 0.384, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 926.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-29", + "total_cases": 671.0, + "new_cases": 36.0, + "new_cases_smoothed": 50.429, + "total_deaths": 16.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 20.351, + "new_cases_per_million": 1.092, + "new_cases_smoothed_per_million": 1.529, + "total_deaths_per_million": 0.485, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 783.0, + "total_tests": 13452.0, + "total_tests_per_thousand": 0.408, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 970.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-30", + "total_cases": 852.0, + "new_cases": 181.0, + "new_cases_smoothed": 69.857, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 25.84, + "new_cases_per_million": 5.49, + "new_cases_smoothed_per_million": 2.119, + "total_deaths_per_million": 0.546, + "new_deaths_per_million": 0.061, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 1011.0, + "total_tests": 14463.0, + "total_tests_per_thousand": 0.439, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 1064.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-03-31", + "total_cases": 950.0, + "new_cases": 98.0, + "new_cases_smoothed": 79.286, + "total_deaths": 24.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 28.812, + "new_cases_per_million": 2.972, + "new_cases_smoothed_per_million": 2.405, + "total_deaths_per_million": 0.728, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1124.0, + "total_tests": 15587.0, + "total_tests_per_thousand": 0.473, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1078.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-01", + "total_cases": 1065.0, + "new_cases": 115.0, + "new_cases_smoothed": 92.714, + "total_deaths": 30.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 32.3, + "new_cases_per_million": 3.488, + "new_cases_smoothed_per_million": 2.812, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.1, + "new_tests": 931.0, + "total_tests": 16518.0, + "total_tests_per_thousand": 0.501, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1043.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-02", + "total_cases": 1323.0, + "new_cases": 258.0, + "new_cases_smoothed": 109.286, + "total_deaths": 47.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 40.125, + "new_cases_per_million": 7.825, + "new_cases_smoothed_per_million": 3.315, + "total_deaths_per_million": 1.425, + "new_deaths_per_million": 0.516, + "new_deaths_smoothed_per_million": 0.169, + "new_tests": 816.0, + "total_tests": 17334.0, + "total_tests_per_thousand": 0.526, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 1038.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-03", + "total_cases": 1414.0, + "new_cases": 91.0, + "new_cases_smoothed": 119.143, + "total_deaths": 55.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 42.885, + "new_cases_per_million": 2.76, + "new_cases_smoothed_per_million": 3.613, + "total_deaths_per_million": 1.668, + "new_deaths_per_million": 0.243, + "new_deaths_smoothed_per_million": 0.199, + "new_tests": 507.0, + "total_tests": 17841.0, + "total_tests_per_thousand": 0.541, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-04", + "total_cases": 1595.0, + "new_cases": 181.0, + "new_cases_smoothed": 137.143, + "total_deaths": 61.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 48.375, + "new_cases_per_million": 5.49, + "new_cases_smoothed_per_million": 4.159, + "total_deaths_per_million": 1.85, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 1569.0, + "total_tests": 19410.0, + "total_tests_per_thousand": 0.589, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 963.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-05", + "total_cases": 1746.0, + "new_cases": 151.0, + "new_cases_smoothed": 153.571, + "total_deaths": 73.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 52.954, + "new_cases_per_million": 4.58, + "new_cases_smoothed_per_million": 4.658, + "total_deaths_per_million": 2.214, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 1004.0, + "total_tests": 20414.0, + "total_tests_per_thousand": 0.619, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 995.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-06", + "total_cases": 2281.0, + "new_cases": 535.0, + "new_cases_smoothed": 204.143, + "total_deaths": 83.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 69.18, + "new_cases_per_million": 16.226, + "new_cases_smoothed_per_million": 6.191, + "total_deaths_per_million": 2.517, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.282, + "new_tests": 1141.0, + "total_tests": 21555.0, + "total_tests_per_thousand": 0.654, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1013.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-07", + "total_cases": 2561.0, + "new_cases": 280.0, + "new_cases_smoothed": 230.143, + "total_deaths": 92.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 77.672, + "new_cases_per_million": 8.492, + "new_cases_smoothed_per_million": 6.98, + "total_deaths_per_million": 2.79, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 1700.0, + "total_tests": 23255.0, + "total_tests_per_thousand": 0.705, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1095.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-08", + "total_cases": 2954.0, + "new_cases": 393.0, + "new_cases_smoothed": 269.857, + "total_deaths": 107.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 89.592, + "new_cases_per_million": 11.919, + "new_cases_smoothed_per_million": 8.184, + "total_deaths_per_million": 3.245, + "new_deaths_per_million": 0.455, + "new_deaths_smoothed_per_million": 0.334, + "new_tests": 1155.0, + "total_tests": 24410.0, + "total_tests_per_thousand": 0.74, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1127.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-09", + "total_cases": 4342.0, + "new_cases": 1388.0, + "new_cases_smoothed": 431.286, + "total_deaths": 121.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 131.688, + "new_cases_per_million": 42.097, + "new_cases_smoothed_per_million": 13.08, + "total_deaths_per_million": 3.67, + "new_deaths_per_million": 0.425, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 1233.0, + "total_tests": 25643.0, + "total_tests_per_thousand": 0.778, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1187.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-10", + "total_cases": 5256.0, + "new_cases": 914.0, + "new_cases_smoothed": 548.857, + "total_deaths": 138.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 159.409, + "new_cases_per_million": 27.721, + "new_cases_smoothed_per_million": 16.646, + "total_deaths_per_million": 4.185, + "new_deaths_per_million": 0.516, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 1876.0, + "total_tests": 27519.0, + "total_tests_per_thousand": 0.835, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 1383.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-11", + "total_cases": 5897.0, + "new_cases": 641.0, + "new_cases_smoothed": 614.571, + "total_deaths": 169.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 178.85, + "new_cases_per_million": 19.441, + "new_cases_smoothed_per_million": 18.639, + "total_deaths_per_million": 5.126, + "new_deaths_per_million": 0.94, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 3715.0, + "total_tests": 31234.0, + "total_tests_per_thousand": 0.947, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 1689.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-12", + "total_cases": 6848.0, + "new_cases": 951.0, + "new_cases_smoothed": 728.857, + "total_deaths": 181.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 207.692, + "new_cases_per_million": 28.843, + "new_cases_smoothed_per_million": 22.105, + "total_deaths_per_million": 5.49, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.468, + "new_tests": 1410.0, + "total_tests": 32644.0, + "total_tests_per_thousand": 0.99, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1747.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-13", + "total_cases": 7519.0, + "new_cases": 671.0, + "new_cases_smoothed": 748.286, + "total_deaths": 193.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 228.043, + "new_cases_per_million": 20.351, + "new_cases_smoothed_per_million": 22.695, + "total_deaths_per_million": 5.853, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 722.0, + "total_tests": 33366.0, + "total_tests_per_thousand": 1.012, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1687.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-14", + "total_cases": 7519.0, + "new_cases": 0.0, + "new_cases_smoothed": 708.286, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 228.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.482, + "total_deaths_per_million": 5.853, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.438, + "new_tests": 1535.0, + "total_tests": 34901.0, + "total_tests_per_thousand": 1.059, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 1664.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-15", + "total_cases": 10303.0, + "new_cases": 2784.0, + "new_cases_smoothed": 1049.857, + "total_deaths": 230.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 312.479, + "new_cases_per_million": 84.436, + "new_cases_smoothed_per_million": 31.841, + "total_deaths_per_million": 6.976, + "new_deaths_per_million": 1.122, + "new_deaths_smoothed_per_million": 0.533, + "new_tests": 1189.0, + "total_tests": 36090.0, + "total_tests_per_thousand": 1.095, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 1669.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-16", + "total_cases": 11475.0, + "new_cases": 1172.0, + "new_cases_smoothed": 1019.0, + "total_deaths": 254.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 348.024, + "new_cases_per_million": 35.545, + "new_cases_smoothed_per_million": 30.905, + "total_deaths_per_million": 7.704, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.576, + "new_tests": 1272.0, + "total_tests": 37362.0, + "total_tests_per_thousand": 1.133, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1674.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-17", + "total_cases": 12491.0, + "new_cases": 1016.0, + "new_cases_smoothed": 1033.571, + "total_deaths": 274.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 378.838, + "new_cases_per_million": 30.814, + "new_cases_smoothed_per_million": 31.347, + "total_deaths_per_million": 8.31, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.589, + "new_tests": 1100.0, + "total_tests": 38462.0, + "total_tests_per_thousand": 1.167, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1563.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-18", + "total_cases": 13489.0, + "new_cases": 998.0, + "new_cases_smoothed": 1084.571, + "total_deaths": 300.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 409.107, + "new_cases_per_million": 30.268, + "new_cases_smoothed_per_million": 32.894, + "total_deaths_per_million": 9.099, + "new_deaths_per_million": 0.789, + "new_deaths_smoothed_per_million": 0.568, + "new_tests": 1566.0, + "total_tests": 40028.0, + "total_tests_per_thousand": 1.214, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 1256.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-19", + "total_cases": 14420.0, + "new_cases": 931.0, + "new_cases_smoothed": 1081.714, + "total_deaths": 348.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 437.343, + "new_cases_per_million": 28.236, + "new_cases_smoothed_per_million": 32.807, + "total_deaths_per_million": 10.554, + "new_deaths_per_million": 1.456, + "new_deaths_smoothed_per_million": 0.724, + "new_tests": 1328.0, + "total_tests": 41356.0, + "total_tests_per_thousand": 1.254, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1245.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-20", + "total_cases": 15628.0, + "new_cases": 1208.0, + "new_cases_smoothed": 1158.429, + "total_deaths": 400.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 473.98, + "new_cases_per_million": 36.637, + "new_cases_smoothed_per_million": 35.134, + "total_deaths_per_million": 12.132, + "new_deaths_per_million": 1.577, + "new_deaths_smoothed_per_million": 0.897, + "new_tests": 1392.0, + "total_tests": 42748.0, + "total_tests_per_thousand": 1.297, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 1340.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-21", + "total_cases": 16325.0, + "new_cases": 697.0, + "new_cases_smoothed": 1258.0, + "total_deaths": 445.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 495.119, + "new_cases_per_million": 21.139, + "new_cases_smoothed_per_million": 38.154, + "total_deaths_per_million": 13.496, + "new_deaths_per_million": 1.365, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 1673.0, + "total_tests": 44421.0, + "total_tests_per_thousand": 1.347, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1360.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-22", + "total_cases": 17837.0, + "new_cases": 1512.0, + "new_cases_smoothed": 1076.286, + "total_deaths": 484.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 540.977, + "new_cases_per_million": 45.857, + "new_cases_smoothed_per_million": 32.643, + "total_deaths_per_million": 14.679, + "new_deaths_per_million": 1.183, + "new_deaths_smoothed_per_million": 1.101, + "new_tests": 1294.0, + "total_tests": 45715.0, + "total_tests_per_thousand": 1.386, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1375.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-23", + "total_cases": 19250.0, + "new_cases": 1413.0, + "new_cases_smoothed": 1110.714, + "total_deaths": 530.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 583.831, + "new_cases_per_million": 42.855, + "new_cases_smoothed_per_million": 33.687, + "total_deaths_per_million": 16.074, + "new_deaths_per_million": 1.395, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 1909.0, + "total_tests": 47624.0, + "total_tests_per_thousand": 1.444, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1466.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-24", + "total_cases": 20914.0, + "new_cases": 1664.0, + "new_cases_smoothed": 1203.286, + "total_deaths": 572.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 634.299, + "new_cases_per_million": 50.467, + "new_cases_smoothed_per_million": 36.494, + "total_deaths_per_million": 17.348, + "new_deaths_per_million": 1.274, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 1922.0, + "total_tests": 49546.0, + "total_tests_per_thousand": 1.503, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1583.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-25", + "total_cases": 21648.0, + "new_cases": 734.0, + "new_cases_smoothed": 1165.571, + "total_deaths": 634.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 47.714, + "total_cases_per_million": 656.56, + "new_cases_per_million": 22.261, + "new_cases_smoothed_per_million": 35.351, + "total_deaths_per_million": 19.229, + "new_deaths_per_million": 1.88, + "new_deaths_smoothed_per_million": 1.447, + "new_tests": 1770.0, + "total_tests": 51316.0, + "total_tests_per_thousand": 1.556, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1613.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-26", + "total_cases": 25331.0, + "new_cases": 3683.0, + "new_cases_smoothed": 1558.714, + "total_deaths": 700.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 50.286, + "total_cases_per_million": 768.262, + "new_cases_per_million": 111.701, + "new_cases_smoothed_per_million": 47.274, + "total_deaths_per_million": 21.23, + "new_deaths_per_million": 2.002, + "new_deaths_smoothed_per_million": 1.525, + "new_tests": 1356.0, + "total_tests": 52672.0, + "total_tests_per_thousand": 1.597, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 1617.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 27517.0, + "new_cases": 2186.0, + "new_cases_smoothed": 1698.429, + "total_deaths": 728.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 46.857, + "total_cases_per_million": 834.56, + "new_cases_per_million": 66.299, + "new_cases_smoothed_per_million": 51.511, + "total_deaths_per_million": 22.079, + "new_deaths_per_million": 0.849, + "new_deaths_smoothed_per_million": 1.421, + "new_tests": 1868.0, + "total_tests": 54540.0, + "total_tests_per_thousand": 1.654, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 1685.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 28699.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1767.714, + "total_deaths": 782.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 48.143, + "total_cases_per_million": 870.409, + "new_cases_per_million": 35.849, + "new_cases_smoothed_per_million": 53.613, + "total_deaths_per_million": 23.717, + "new_deaths_per_million": 1.638, + "new_deaths_smoothed_per_million": 1.46, + "new_tests": 1856.0, + "total_tests": 56396.0, + "total_tests_per_thousand": 1.71, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1711.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 31190.0, + "new_cases": 2491.0, + "new_cases_smoothed": 1907.571, + "total_deaths": 854.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 52.857, + "total_cases_per_million": 945.959, + "new_cases_per_million": 75.549, + "new_cases_smoothed_per_million": 57.855, + "total_deaths_per_million": 25.901, + "new_deaths_per_million": 2.184, + "new_deaths_smoothed_per_million": 1.603, + "new_tests": 1722.0, + "total_tests": 58118.0, + "total_tests_per_thousand": 1.763, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1772.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 33931.0, + "new_cases": 2741.0, + "new_cases_smoothed": 2097.286, + "total_deaths": 943.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 59.0, + "total_cases_per_million": 1029.09, + "new_cases_per_million": 83.132, + "new_cases_smoothed_per_million": 63.608, + "total_deaths_per_million": 28.6, + "new_deaths_per_million": 2.699, + "new_deaths_smoothed_per_million": 1.789, + "new_tests": 2263.0, + "total_tests": 60381.0, + "total_tests_per_thousand": 1.831, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1822.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_units": "people tested", + "stringency_index": 94.44 + }, + { + "date": "2020-05-01", + "total_cases": 36976.0, + "new_cases": 3045.0, + "new_cases_smoothed": 2294.571, + "total_deaths": 1051.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 68.429, + "total_cases_per_million": 1121.442, + "new_cases_per_million": 92.352, + "new_cases_smoothed_per_million": 69.592, + "total_deaths_per_million": 31.876, + "new_deaths_per_million": 3.276, + "new_deaths_smoothed_per_million": 2.075, + "new_tests": 2155.0, + "total_tests": 62536.0, + "total_tests_per_thousand": 1.897, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1856.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 40459.0, + "new_cases": 3483.0, + "new_cases_smoothed": 2687.286, + "total_deaths": 1124.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 70.0, + "total_cases_per_million": 1227.077, + "new_cases_per_million": 105.636, + "new_cases_smoothed_per_million": 81.502, + "total_deaths_per_million": 34.09, + "new_deaths_per_million": 2.214, + "new_deaths_smoothed_per_million": 2.123, + "new_tests": 1642.0, + "total_tests": 64178.0, + "total_tests_per_thousand": 1.946, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1837.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 42534.0, + "new_cases": 2075.0, + "new_cases_smoothed": 2457.571, + "total_deaths": 1200.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 71.429, + "total_cases_per_million": 1290.01, + "new_cases_per_million": 62.932, + "new_cases_smoothed_per_million": 74.535, + "total_deaths_per_million": 36.395, + "new_deaths_per_million": 2.305, + "new_deaths_smoothed_per_million": 2.166, + "new_tests": 1614.0, + "total_tests": 65792.0, + "total_tests_per_thousand": 1.995, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1874.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 45928.0, + "new_cases": 3394.0, + "new_cases_smoothed": 2630.143, + "total_deaths": 1286.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 79.714, + "total_cases_per_million": 1392.946, + "new_cases_per_million": 102.936, + "new_cases_smoothed_per_million": 79.769, + "total_deaths_per_million": 39.003, + "new_deaths_per_million": 2.608, + "new_deaths_smoothed_per_million": 2.418, + "new_tests": 1771.0, + "total_tests": 67563.0, + "total_tests_per_thousand": 2.049, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1860.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 47372.0, + "new_cases": 1444.0, + "new_cases_smoothed": 2667.571, + "total_deaths": 1344.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 80.286, + "total_cases_per_million": 1436.741, + "new_cases_per_million": 43.795, + "new_cases_smoothed_per_million": 80.905, + "total_deaths_per_million": 40.762, + "new_deaths_per_million": 1.759, + "new_deaths_smoothed_per_million": 2.435, + "new_tests": 2781.0, + "total_tests": 70344.0, + "total_tests_per_thousand": 2.133, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1993.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 51189.0, + "new_cases": 3817.0, + "new_cases_smoothed": 2857.0, + "total_deaths": 1444.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 84.286, + "total_cases_per_million": 1552.506, + "new_cases_per_million": 115.765, + "new_cases_smoothed_per_million": 86.65, + "total_deaths_per_million": 43.795, + "new_deaths_per_million": 3.033, + "new_deaths_smoothed_per_million": 2.556, + "new_tests": 2500.0, + "total_tests": 72844.0, + "total_tests_per_thousand": 2.209, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 2104.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 54817.0, + "new_cases": 3628.0, + "new_cases_smoothed": 2983.714, + "total_deaths": 1533.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 84.286, + "total_cases_per_million": 1662.54, + "new_cases_per_million": 110.033, + "new_cases_smoothed_per_million": 90.493, + "total_deaths_per_million": 46.494, + "new_deaths_per_million": 2.699, + "new_deaths_smoothed_per_million": 2.556, + "new_tests": 2058.0, + "total_tests": 74902.0, + "total_tests_per_thousand": 2.272, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 2074.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 58526.0, + "new_cases": 3709.0, + "new_cases_smoothed": 3078.571, + "total_deaths": 1627.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 82.286, + "total_cases_per_million": 1775.03, + "new_cases_per_million": 112.49, + "new_cases_smoothed_per_million": 93.37, + "total_deaths_per_million": 49.345, + "new_deaths_per_million": 2.851, + "new_deaths_smoothed_per_million": 2.496, + "new_tests": 891.0, + "total_tests": 75793.0, + "total_tests_per_thousand": 2.299, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1894.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 61847.0, + "new_cases": 3321.0, + "new_cases_smoothed": 3055.429, + "total_deaths": 1714.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 84.286, + "total_cases_per_million": 1875.752, + "new_cases_per_million": 100.722, + "new_cases_smoothed_per_million": 92.668, + "total_deaths_per_million": 51.984, + "new_deaths_per_million": 2.639, + "new_deaths_smoothed_per_million": 2.556, + "new_tests": 4113.0, + "total_tests": 79906.0, + "total_tests_per_thousand": 2.423, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 2247.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 65015.0, + "new_cases": 3168.0, + "new_cases_smoothed": 3211.571, + "total_deaths": 1814.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 87.714, + "total_cases_per_million": 1971.834, + "new_cases_per_million": 96.082, + "new_cases_smoothed_per_million": 97.403, + "total_deaths_per_million": 55.017, + "new_deaths_per_million": 3.033, + "new_deaths_smoothed_per_million": 2.66, + "new_tests": 3770.0, + "total_tests": 83676.0, + "total_tests_per_thousand": 2.538, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 2555.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 67307.0, + "new_cases": 2292.0, + "new_cases_smoothed": 3054.143, + "total_deaths": 1889.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 86.143, + "total_cases_per_million": 2041.348, + "new_cases_per_million": 69.514, + "new_cases_smoothed_per_million": 92.629, + "total_deaths_per_million": 57.291, + "new_deaths_per_million": 2.275, + "new_deaths_smoothed_per_million": 2.613, + "new_tests": 1918.0, + "total_tests": 85594.0, + "total_tests_per_thousand": 2.596, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 2576.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-12", + "total_cases": 68822.0, + "new_cases": 1515.0, + "new_cases_smoothed": 3064.286, + "total_deaths": 1961.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 88.143, + "total_cases_per_million": 2087.296, + "new_cases_per_million": 45.948, + "new_cases_smoothed_per_million": 92.936, + "total_deaths_per_million": 59.475, + "new_deaths_per_million": 2.184, + "new_deaths_smoothed_per_million": 2.673, + "new_tests": 2197.0, + "total_tests": 87791.0, + "total_tests_per_thousand": 2.663, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 2492.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-13", + "total_cases": 72059.0, + "new_cases": 3237.0, + "new_cases_smoothed": 2981.429, + "total_deaths": 2057.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 87.571, + "total_cases_per_million": 2185.471, + "new_cases_per_million": 98.175, + "new_cases_smoothed_per_million": 90.423, + "total_deaths_per_million": 62.387, + "new_deaths_per_million": 2.912, + "new_deaths_smoothed_per_million": 2.656, + "new_tests": 2307.0, + "total_tests": 90098.0, + "total_tests_per_thousand": 2.733, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 2465.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-14", + "total_cases": 76306.0, + "new_cases": 4247.0, + "new_cases_smoothed": 3069.857, + "total_deaths": 2169.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 90.857, + "total_cases_per_million": 2314.277, + "new_cases_per_million": 128.807, + "new_cases_smoothed_per_million": 93.105, + "total_deaths_per_million": 65.783, + "new_deaths_per_million": 3.397, + "new_deaths_smoothed_per_million": 2.756, + "new_tests": 2627.0, + "total_tests": 92725.0, + "total_tests_per_thousand": 2.812, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 2546.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-15", + "total_cases": 80604.0, + "new_cases": 4298.0, + "new_cases_smoothed": 3154.0, + "total_deaths": 2267.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 91.429, + "total_cases_per_million": 2444.631, + "new_cases_per_million": 130.354, + "new_cases_smoothed_per_million": 95.657, + "total_deaths_per_million": 68.756, + "new_deaths_per_million": 2.972, + "new_deaths_smoothed_per_million": 2.773, + "new_tests": 4022.0, + "total_tests": 96747.0, + "total_tests_per_thousand": 2.934, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 2993.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-16", + "total_cases": 84495.0, + "new_cases": 3891.0, + "new_cases_smoothed": 3235.429, + "total_deaths": 2393.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 97.0, + "total_cases_per_million": 2562.641, + "new_cases_per_million": 118.01, + "new_cases_smoothed_per_million": 98.127, + "total_deaths_per_million": 72.577, + "new_deaths_per_million": 3.821, + "new_deaths_smoothed_per_million": 2.942, + "new_tests": 3295.0, + "total_tests": 100042.0, + "total_tests_per_thousand": 3.034, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 2877.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-17", + "total_cases": 88541.0, + "new_cases": 4046.0, + "new_cases_smoothed": 3360.857, + "total_deaths": 2523.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 101.286, + "total_cases_per_million": 2685.352, + "new_cases_per_million": 122.711, + "new_cases_smoothed_per_million": 101.931, + "total_deaths_per_million": 76.52, + "new_deaths_per_million": 3.943, + "new_deaths_smoothed_per_million": 3.072, + "new_tests": 2797.0, + "total_tests": 102839.0, + "total_tests_per_thousand": 3.119, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 2738.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-18", + "total_cases": 92273.0, + "new_cases": 3732.0, + "new_cases_smoothed": 3566.571, + "total_deaths": 2648.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 108.429, + "total_cases_per_million": 2798.539, + "new_cases_per_million": 113.187, + "new_cases_smoothed_per_million": 108.17, + "total_deaths_per_million": 80.311, + "new_deaths_per_million": 3.791, + "new_deaths_smoothed_per_million": 3.289, + "new_tests": 2788.0, + "total_tests": 105627.0, + "total_tests_per_thousand": 3.204, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 2862.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-19", + "total_cases": 94933.0, + "new_cases": 2660.0, + "new_cases_smoothed": 3730.143, + "total_deaths": 2789.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 118.286, + "total_cases_per_million": 2879.214, + "new_cases_per_million": 80.675, + "new_cases_smoothed_per_million": 113.131, + "total_deaths_per_million": 84.587, + "new_deaths_per_million": 4.276, + "new_deaths_smoothed_per_million": 3.587, + "new_tests": 2854.0, + "total_tests": 108481.0, + "total_tests_per_thousand": 3.29, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 2956.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-20", + "total_cases": 99483.0, + "new_cases": 4550.0, + "new_cases_smoothed": 3917.714, + "total_deaths": 2914.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 122.429, + "total_cases_per_million": 3017.211, + "new_cases_per_million": 137.997, + "new_cases_smoothed_per_million": 118.82, + "total_deaths_per_million": 88.378, + "new_deaths_per_million": 3.791, + "new_deaths_smoothed_per_million": 3.713, + "new_tests": 3872.0, + "total_tests": 112353.0, + "total_tests_per_thousand": 3.408, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 3179.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-21", + "total_cases": 104020.0, + "new_cases": 4537.0, + "new_cases_smoothed": 3959.143, + "total_deaths": 3024.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 122.143, + "total_cases_per_million": 3154.813, + "new_cases_per_million": 137.602, + "new_cases_smoothed_per_million": 120.076, + "total_deaths_per_million": 91.715, + "new_deaths_per_million": 3.336, + "new_deaths_smoothed_per_million": 3.704, + "new_tests": 3128.0, + "total_tests": 115481.0, + "total_tests_per_thousand": 3.502, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 3251.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-22", + "total_cases": 108769.0, + "new_cases": 4749.0, + "new_cases_smoothed": 4023.571, + "total_deaths": 3148.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 125.857, + "total_cases_per_million": 3298.845, + "new_cases_per_million": 144.032, + "new_cases_smoothed_per_million": 122.031, + "total_deaths_per_million": 95.475, + "new_deaths_per_million": 3.761, + "new_deaths_smoothed_per_million": 3.817, + "new_tests": 7268.0, + "total_tests": 122749.0, + "total_tests_per_thousand": 3.723, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 3715.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-23", + "total_cases": 111698.0, + "new_cases": 2929.0, + "new_cases_smoothed": 3886.143, + "total_deaths": 3244.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 121.571, + "total_cases_per_million": 3387.678, + "new_cases_per_million": 88.833, + "new_cases_smoothed_per_million": 117.862, + "total_deaths_per_million": 98.387, + "new_deaths_per_million": 2.912, + "new_deaths_smoothed_per_million": 3.687, + "new_tests": 800.0, + "total_tests": 123549.0, + "total_tests_per_thousand": 3.747, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 3358.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-24", + "total_cases": 115754.0, + "new_cases": 4056.0, + "new_cases_smoothed": 3887.571, + "total_deaths": 3373.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 121.429, + "total_cases_per_million": 3510.692, + "new_cases_per_million": 123.014, + "new_cases_smoothed_per_million": 117.906, + "total_deaths_per_million": 102.299, + "new_deaths_per_million": 3.912, + "new_deaths_smoothed_per_million": 3.683, + "new_tests": 1342.0, + "total_tests": 124891.0, + "total_tests_per_thousand": 3.788, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 3150.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_units": "people tested", + "stringency_index": 92.59 + }, + { + "date": "2020-05-25", + "total_cases": 119959.0, + "new_cases": 4205.0, + "new_cases_smoothed": 3955.143, + "total_deaths": 3456.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 115.429, + "total_cases_per_million": 3638.225, + "new_cases_per_million": 127.533, + "new_cases_smoothed_per_million": 119.955, + "total_deaths_per_million": 104.817, + "new_deaths_per_million": 2.517, + "new_deaths_smoothed_per_million": 3.501, + "new_tests": 2563.0, + "total_tests": 127454.0, + "total_tests_per_thousand": 3.866, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 3118.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-26", + "total_cases": 123979.0, + "new_cases": 4020.0, + "new_cases_smoothed": 4149.429, + "total_deaths": 3629.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 120.0, + "total_cases_per_million": 3760.147, + "new_cases_per_million": 121.922, + "new_cases_smoothed_per_million": 125.848, + "total_deaths_per_million": 110.064, + "new_deaths_per_million": 5.247, + "new_deaths_smoothed_per_million": 3.639, + "new_tests": 3603.0, + "total_tests": 131057.0, + "total_tests_per_thousand": 3.975, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 3225.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-27", + "total_cases": 129751.0, + "new_cases": 5772.0, + "new_cases_smoothed": 4324.0, + "total_deaths": 3788.0, + "new_deaths": 159.0, + "new_deaths_smoothed": 124.857, + "total_cases_per_million": 3935.206, + "new_cases_per_million": 175.058, + "new_cases_smoothed_per_million": 131.142, + "total_deaths_per_million": 114.886, + "new_deaths_per_million": 4.822, + "new_deaths_smoothed_per_million": 3.787, + "new_tests": 2788.0, + "total_tests": 133845.0, + "total_tests_per_thousand": 4.059, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 3070.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-28", + "total_cases": 135905.0, + "new_cases": 6154.0, + "new_cases_smoothed": 4555.0, + "total_deaths": 3983.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 137.0, + "total_cases_per_million": 4121.85, + "new_cases_per_million": 186.644, + "new_cases_smoothed_per_million": 138.148, + "total_deaths_per_million": 120.8, + "new_deaths_per_million": 5.914, + "new_deaths_smoothed_per_million": 4.155, + "new_tests": 3718.0, + "total_tests": 137563.0, + "total_tests_per_thousand": 4.172, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 3155.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-29", + "total_cases": 141779.0, + "new_cases": 5874.0, + "new_cases_smoothed": 4715.714, + "total_deaths": 4099.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 135.857, + "total_cases_per_million": 4300.002, + "new_cases_per_million": 178.152, + "new_cases_smoothed_per_million": 143.022, + "total_deaths_per_million": 124.318, + "new_deaths_per_million": 3.518, + "new_deaths_smoothed_per_million": 4.12, + "new_tests": 3042.0, + "total_tests": 140605.0, + "total_tests_per_thousand": 4.264, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 2551.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-30", + "total_cases": 148285.0, + "new_cases": 6506.0, + "new_cases_smoothed": 5226.714, + "total_deaths": 4230.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 140.857, + "total_cases_per_million": 4497.322, + "new_cases_per_million": 197.32, + "new_cases_smoothed_per_million": 158.521, + "total_deaths_per_million": 128.291, + "new_deaths_per_million": 3.973, + "new_deaths_smoothed_per_million": 4.272, + "new_tests": 3562.0, + "total_tests": 144167.0, + "total_tests_per_thousand": 4.372, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 2945.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-05-31", + "total_cases": 155671.0, + "new_cases": 7386.0, + "new_cases_smoothed": 5702.429, + "total_deaths": 4371.0, + "new_deaths": 141.0, + "new_deaths_smoothed": 142.571, + "total_cases_per_million": 4721.331, + "new_cases_per_million": 224.009, + "new_cases_smoothed_per_million": 172.948, + "total_deaths_per_million": 132.568, + "new_deaths_per_million": 4.276, + "new_deaths_smoothed_per_million": 4.324, + "new_tests": 1458.0, + "total_tests": 145625.0, + "total_tests_per_thousand": 4.417, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 2962.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-01", + "total_cases": 164476.0, + "new_cases": 8805.0, + "new_cases_smoothed": 6359.571, + "total_deaths": 4506.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 150.0, + "total_cases_per_million": 4988.377, + "new_cases_per_million": 267.046, + "new_cases_smoothed_per_million": 192.879, + "total_deaths_per_million": 136.662, + "new_deaths_per_million": 4.094, + "new_deaths_smoothed_per_million": 4.549, + "new_tests": 3834.0, + "total_tests": 149459.0, + "total_tests_per_thousand": 4.533, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 3144.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-02", + "total_cases": 170039.0, + "new_cases": 5563.0, + "new_cases_smoothed": 6580.0, + "total_deaths": 4634.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 143.571, + "total_cases_per_million": 5157.097, + "new_cases_per_million": 168.72, + "new_cases_smoothed_per_million": 199.564, + "total_deaths_per_million": 140.544, + "new_deaths_per_million": 3.882, + "new_deaths_smoothed_per_million": 4.354, + "new_tests": 2769.0, + "total_tests": 152228.0, + "total_tests_per_thousand": 4.617, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 3024.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-03", + "total_cases": 170039.0, + "new_cases": 0.0, + "new_cases_smoothed": 5755.429, + "total_deaths": 4634.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 120.857, + "total_cases_per_million": 5157.097, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 174.556, + "total_deaths_per_million": 140.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.665, + "new_tests": 1545.0, + "total_tests": 153773.0, + "total_tests_per_thousand": 4.664, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 2847.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-04", + "total_cases": 178914.0, + "new_cases": 8875.0, + "new_cases_smoothed": 6144.143, + "total_deaths": 4894.0, + "new_deaths": 260.0, + "new_deaths_smoothed": 130.143, + "total_cases_per_million": 5426.266, + "new_cases_per_million": 269.169, + "new_cases_smoothed_per_million": 186.345, + "total_deaths_per_million": 148.43, + "new_deaths_per_million": 7.886, + "new_deaths_smoothed_per_million": 3.947, + "new_tests": 2410.0, + "total_tests": 156183.0, + "total_tests_per_thousand": 4.737, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 2660.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-05", + "total_cases": 183198.0, + "new_cases": 4284.0, + "new_cases_smoothed": 5917.0, + "total_deaths": 5031.0, + "new_deaths": 137.0, + "new_deaths_smoothed": 133.143, + "total_cases_per_million": 5556.195, + "new_cases_per_million": 129.929, + "new_cases_smoothed_per_million": 179.456, + "total_deaths_per_million": 152.585, + "new_deaths_per_million": 4.155, + "new_deaths_smoothed_per_million": 4.038, + "new_tests": 2986.0, + "total_tests": 159169.0, + "total_tests_per_thousand": 4.827, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 2652.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-06", + "total_cases": 187400.0, + "new_cases": 4202.0, + "new_cases_smoothed": 5587.857, + "total_deaths": 5162.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 133.143, + "total_cases_per_million": 5683.637, + "new_cases_per_million": 127.442, + "new_cases_smoothed_per_million": 169.474, + "total_deaths_per_million": 156.558, + "new_deaths_per_million": 3.973, + "new_deaths_smoothed_per_million": 4.038, + "new_tests": 4369.0, + "total_tests": 163538.0, + "total_tests_per_thousand": 4.96, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 2767.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-07", + "total_cases": 191758.0, + "new_cases": 4358.0, + "new_cases_smoothed": 5155.286, + "total_deaths": 5301.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 132.857, + "total_cases_per_million": 5815.81, + "new_cases_per_million": 132.173, + "new_cases_smoothed_per_million": 156.354, + "total_deaths_per_million": 160.774, + "new_deaths_per_million": 4.216, + "new_deaths_smoothed_per_million": 4.029, + "new_tests": 4750.0, + "total_tests": 168288.0, + "total_tests_per_thousand": 5.104, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 3238.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-08", + "total_cases": 196515.0, + "new_cases": 4757.0, + "new_cases_smoothed": 4577.0, + "total_deaths": 5465.0, + "new_deaths": 164.0, + "new_deaths_smoothed": 137.0, + "total_cases_per_million": 5960.085, + "new_cases_per_million": 144.275, + "new_cases_smoothed_per_million": 138.815, + "total_deaths_per_million": 165.747, + "new_deaths_per_million": 4.974, + "new_deaths_smoothed_per_million": 4.155, + "new_tests": 3431.0, + "total_tests": 171719.0, + "total_tests_per_thousand": 5.208, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 3180.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-09", + "total_cases": 199696.0, + "new_cases": 3181.0, + "new_cases_smoothed": 4236.714, + "total_deaths": 5571.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 133.857, + "total_cases_per_million": 6056.561, + "new_cases_per_million": 96.476, + "new_cases_smoothed_per_million": 128.495, + "total_deaths_per_million": 168.962, + "new_deaths_per_million": 3.215, + "new_deaths_smoothed_per_million": 4.06, + "new_tests": 4033.0, + "total_tests": 175752.0, + "total_tests_per_thousand": 5.33, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 3361.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-10", + "total_cases": 203736.0, + "new_cases": 4040.0, + "new_cases_smoothed": 4813.857, + "total_deaths": 5738.0, + "new_deaths": 167.0, + "new_deaths_smoothed": 157.714, + "total_cases_per_million": 6179.09, + "new_cases_per_million": 122.529, + "new_cases_smoothed_per_million": 145.999, + "total_deaths_per_million": 174.027, + "new_deaths_per_million": 5.065, + "new_deaths_smoothed_per_million": 4.783, + "new_tests": 3612.0, + "total_tests": 179364.0, + "total_tests_per_thousand": 5.44, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 3656.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-11", + "total_cases": 208823.0, + "new_cases": 5087.0, + "new_cases_smoothed": 4272.714, + "total_deaths": 5903.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 144.143, + "total_cases_per_million": 6333.373, + "new_cases_per_million": 154.283, + "new_cases_smoothed_per_million": 129.587, + "total_deaths_per_million": 179.032, + "new_deaths_per_million": 5.004, + "new_deaths_smoothed_per_million": 4.372, + "new_tests": 3779.0, + "total_tests": 183143.0, + "total_tests_per_thousand": 5.555, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 3851.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-12", + "total_cases": 214788.0, + "new_cases": 5965.0, + "new_cases_smoothed": 4512.857, + "total_deaths": 6109.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 154.0, + "total_cases_per_million": 6514.285, + "new_cases_per_million": 180.912, + "new_cases_smoothed_per_million": 136.87, + "total_deaths_per_million": 185.279, + "new_deaths_per_million": 6.248, + "new_deaths_smoothed_per_million": 4.671, + "new_tests": 4294.0, + "total_tests": 187437.0, + "total_tests_per_thousand": 5.685, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 4038.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-13", + "total_cases": 220749.0, + "new_cases": 5961.0, + "new_cases_smoothed": 4764.143, + "total_deaths": 6308.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 163.714, + "total_cases_per_million": 6695.076, + "new_cases_per_million": 180.791, + "new_cases_smoothed_per_million": 144.491, + "total_deaths_per_million": 191.315, + "new_deaths_per_million": 6.035, + "new_deaths_smoothed_per_million": 4.965, + "new_tests": 3635.0, + "total_tests": 191072.0, + "total_tests_per_thousand": 5.795, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 3933.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-14", + "total_cases": 225132.0, + "new_cases": 4383.0, + "new_cases_smoothed": 4767.714, + "total_deaths": 6498.0, + "new_deaths": 190.0, + "new_deaths_smoothed": 171.0, + "total_cases_per_million": 6828.007, + "new_cases_per_million": 132.932, + "new_cases_smoothed_per_million": 144.6, + "total_deaths_per_million": 197.077, + "new_deaths_per_million": 5.762, + "new_deaths_smoothed_per_million": 5.186, + "new_tests": 3523.0, + "total_tests": 194595.0, + "total_tests_per_thousand": 5.902, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 3758.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-15", + "total_cases": 229736.0, + "new_cases": 4604.0, + "new_cases_smoothed": 4745.857, + "total_deaths": 6688.0, + "new_deaths": 190.0, + "new_deaths_smoothed": 174.714, + "total_cases_per_million": 6967.641, + "new_cases_per_million": 139.634, + "new_cases_smoothed_per_million": 143.937, + "total_deaths_per_million": 202.84, + "new_deaths_per_million": 5.762, + "new_deaths_smoothed_per_million": 5.299, + "new_tests": 4222.0, + "total_tests": 198817.0, + "total_tests_per_thousand": 6.03, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 3871.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-16", + "total_cases": 232992.0, + "new_cases": 3256.0, + "new_cases_smoothed": 4756.571, + "total_deaths": 6860.0, + "new_deaths": 172.0, + "new_deaths_smoothed": 184.143, + "total_cases_per_million": 7066.392, + "new_cases_per_million": 98.751, + "new_cases_smoothed_per_million": 144.262, + "total_deaths_per_million": 208.056, + "new_deaths_per_million": 5.217, + "new_deaths_smoothed_per_million": 5.585, + "new_tests": 3435.0, + "total_tests": 202252.0, + "total_tests_per_thousand": 6.134, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 3786.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-17", + "total_cases": 237156.0, + "new_cases": 4164.0, + "new_cases_smoothed": 4774.286, + "total_deaths": 7056.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 188.286, + "total_cases_per_million": 7192.682, + "new_cases_per_million": 126.29, + "new_cases_smoothed_per_million": 144.799, + "total_deaths_per_million": 214.001, + "new_deaths_per_million": 5.944, + "new_deaths_smoothed_per_million": 5.71, + "new_tests": 4171.0, + "total_tests": 206423.0, + "total_tests_per_thousand": 6.261, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 3866.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-18", + "total_cases": 240908.0, + "new_cases": 3752.0, + "new_cases_smoothed": 4583.571, + "total_deaths": 7257.0, + "new_deaths": 201.0, + "new_deaths_smoothed": 193.429, + "total_cases_per_million": 7306.476, + "new_cases_per_million": 113.794, + "new_cases_smoothed_per_million": 139.015, + "total_deaths_per_million": 220.097, + "new_deaths_per_million": 6.096, + "new_deaths_smoothed_per_million": 5.866, + "new_tests": 3670.0, + "total_tests": 210093.0, + "total_tests_per_thousand": 6.372, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 3850.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-19", + "total_cases": 244388.0, + "new_cases": 3480.0, + "new_cases_smoothed": 4228.571, + "total_deaths": 7461.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 193.143, + "total_cases_per_million": 7412.021, + "new_cases_per_million": 105.545, + "new_cases_smoothed_per_million": 128.248, + "total_deaths_per_million": 226.284, + "new_deaths_per_million": 6.187, + "new_deaths_smoothed_per_million": 5.858, + "new_tests": 1904.0, + "total_tests": 211997.0, + "total_tests_per_thousand": 6.43, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 3509.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-20", + "total_cases": 247925.0, + "new_cases": 3537.0, + "new_cases_smoothed": 3882.286, + "total_deaths": 7660.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 193.143, + "total_cases_per_million": 7519.294, + "new_cases_per_million": 107.273, + "new_cases_smoothed_per_million": 117.745, + "total_deaths_per_million": 232.319, + "new_deaths_per_million": 6.035, + "new_deaths_smoothed_per_million": 5.858, + "new_tests": 3936.0, + "total_tests": 215933.0, + "total_tests_per_thousand": 6.549, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 3552.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-21", + "total_cases": 251338.0, + "new_cases": 3413.0, + "new_cases_smoothed": 3743.714, + "total_deaths": 7861.0, + "new_deaths": 201.0, + "new_deaths_smoothed": 194.714, + "total_cases_per_million": 7622.806, + "new_cases_per_million": 103.513, + "new_cases_smoothed_per_million": 113.543, + "total_deaths_per_million": 238.416, + "new_deaths_per_million": 6.096, + "new_deaths_smoothed_per_million": 5.905, + "new_tests": 2282.0, + "total_tests": 218215.0, + "total_tests_per_thousand": 6.618, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 3374.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-22", + "total_cases": 254936.0, + "new_cases": 3598.0, + "new_cases_smoothed": 3600.0, + "total_deaths": 8045.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 193.857, + "total_cases_per_million": 7731.93, + "new_cases_per_million": 109.123, + "new_cases_smoothed_per_million": 109.184, + "total_deaths_per_million": 243.996, + "new_deaths_per_million": 5.581, + "new_deaths_smoothed_per_million": 5.879, + "new_tests": 4025.0, + "total_tests": 222240.0, + "total_tests_per_thousand": 6.74, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 3346.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-23", + "total_cases": 254936.0, + "new_cases": 0.0, + "new_cases_smoothed": 3134.857, + "total_deaths": 8045.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 169.286, + "total_cases_per_million": 7731.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 95.077, + "total_deaths_per_million": 243.996, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.134, + "new_tests": 5153.0, + "total_tests": 227393.0, + "total_tests_per_thousand": 6.897, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 3592.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-24", + "total_cases": 260810.0, + "new_cases": 5874.0, + "new_cases_smoothed": 3379.143, + "total_deaths": 8404.0, + "new_deaths": 359.0, + "new_deaths_smoothed": 192.571, + "total_cases_per_million": 7910.082, + "new_cases_per_million": 178.152, + "new_cases_smoothed_per_million": 102.486, + "total_deaths_per_million": 254.884, + "new_deaths_per_million": 10.888, + "new_deaths_smoothed_per_million": 5.84, + "new_tests": 5337.0, + "total_tests": 232730.0, + "total_tests_per_thousand": 7.058, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 3758.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-25", + "total_cases": 264689.0, + "new_cases": 3879.0, + "new_cases_smoothed": 3397.286, + "total_deaths": 8586.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 189.857, + "total_cases_per_million": 8027.728, + "new_cases_per_million": 117.646, + "new_cases_smoothed_per_million": 103.036, + "total_deaths_per_million": 260.404, + "new_deaths_per_million": 5.52, + "new_deaths_smoothed_per_million": 5.758, + "new_tests": 5158.0, + "total_tests": 237888.0, + "total_tests_per_thousand": 7.215, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 3971.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-26", + "total_cases": 268602.0, + "new_cases": 3913.0, + "new_cases_smoothed": 3459.143, + "total_deaths": 8761.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 185.714, + "total_cases_per_million": 8146.405, + "new_cases_per_million": 118.677, + "new_cases_smoothed_per_million": 104.912, + "total_deaths_per_million": 265.712, + "new_deaths_per_million": 5.308, + "new_deaths_smoothed_per_million": 5.633, + "new_tests": 4921.0, + "total_tests": 242809.0, + "total_tests_per_thousand": 7.364, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 4402.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-27", + "total_cases": 272364.0, + "new_cases": 3762.0, + "new_cases_smoothed": 3491.286, + "total_deaths": 8939.0, + "new_deaths": 178.0, + "new_deaths_smoothed": 182.714, + "total_cases_per_million": 8260.502, + "new_cases_per_million": 114.097, + "new_cases_smoothed_per_million": 105.887, + "total_deaths_per_million": 271.11, + "new_deaths_per_million": 5.399, + "new_deaths_smoothed_per_million": 5.542, + "new_tests": 2506.0, + "total_tests": 245315.0, + "total_tests_per_thousand": 7.44, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 4197.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-28", + "total_cases": 275989.0, + "new_cases": 3625.0, + "new_cases_smoothed": 3521.571, + "total_deaths": 9135.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 182.0, + "total_cases_per_million": 8370.444, + "new_cases_per_million": 109.942, + "new_cases_smoothed_per_million": 106.805, + "total_deaths_per_million": 277.055, + "new_deaths_per_million": 5.944, + "new_deaths_smoothed_per_million": 5.52, + "new_tests": 2096.0, + "total_tests": 247411.0, + "total_tests_per_thousand": 7.504, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 4171.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-29", + "total_cases": 279419.0, + "new_cases": 3430.0, + "new_cases_smoothed": 3497.571, + "total_deaths": 9317.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 181.714, + "total_cases_per_million": 8474.472, + "new_cases_per_million": 104.028, + "new_cases_smoothed_per_million": 106.078, + "total_deaths_per_million": 282.574, + "new_deaths_per_million": 5.52, + "new_deaths_smoothed_per_million": 5.511, + "new_tests": 2863.0, + "total_tests": 250274.0, + "total_tests_per_thousand": 7.591, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 4005.0, + "new_tests_smoothed_per_thousand": 0.121, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-06-30", + "total_cases": 282365.0, + "new_cases": 2946.0, + "new_cases_smoothed": 3918.429, + "total_deaths": 9504.0, + "new_deaths": 187.0, + "new_deaths_smoothed": 208.429, + "total_cases_per_million": 8563.821, + "new_cases_per_million": 89.349, + "new_cases_smoothed_per_million": 118.842, + "total_deaths_per_million": 288.246, + "new_deaths_per_million": 5.672, + "new_deaths_smoothed_per_million": 6.321, + "new_tests": 2464.0, + "total_tests": 252738.0, + "total_tests_per_thousand": 7.665, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 3621.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 89.81 + }, + { + "date": "2020-07-01", + "total_cases": 285213.0, + "new_cases": 2848.0, + "new_cases_smoothed": 3486.143, + "total_deaths": 9677.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 181.857, + "total_cases_per_million": 8650.198, + "new_cases_per_million": 86.377, + "new_cases_smoothed_per_million": 105.731, + "total_deaths_per_million": 293.493, + "new_deaths_per_million": 5.247, + "new_deaths_smoothed_per_million": 5.516, + "new_tests": 3261.0, + "total_tests": 255999.0, + "total_tests_per_thousand": 7.764, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 3324.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 288477.0, + "new_cases": 3264.0, + "new_cases_smoothed": 3398.286, + "total_deaths": 9860.0, + "new_deaths": 183.0, + "new_deaths_smoothed": 182.0, + "total_cases_per_million": 8749.192, + "new_cases_per_million": 98.994, + "new_cases_smoothed_per_million": 103.066, + "total_deaths_per_million": 299.043, + "new_deaths_per_million": 5.55, + "new_deaths_smoothed_per_million": 5.52, + "new_tests": 3037.0, + "total_tests": 259036.0, + "total_tests_per_thousand": 7.856, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 3021.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 292004.0, + "new_cases": 3527.0, + "new_cases_smoothed": 3343.143, + "total_deaths": 10045.0, + "new_deaths": 185.0, + "new_deaths_smoothed": 183.429, + "total_cases_per_million": 8856.162, + "new_cases_per_million": 106.97, + "new_cases_smoothed_per_million": 101.394, + "total_deaths_per_million": 304.654, + "new_deaths_per_million": 5.611, + "new_deaths_smoothed_per_million": 5.563, + "new_tests": 2567.0, + "total_tests": 261603.0, + "total_tests_per_thousand": 7.934, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2685.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-04", + "total_cases": 295599.0, + "new_cases": 3595.0, + "new_cases_smoothed": 3319.286, + "total_deaths": 10226.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 183.857, + "total_cases_per_million": 8965.194, + "new_cases_per_million": 109.032, + "new_cases_smoothed_per_million": 100.67, + "total_deaths_per_million": 310.143, + "new_deaths_per_million": 5.49, + "new_deaths_smoothed_per_million": 5.576, + "new_tests": 3188.0, + "total_tests": 264791.0, + "total_tests_per_thousand": 8.031, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 2782.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-05", + "total_cases": 299080.0, + "new_cases": 3481.0, + "new_cases_smoothed": 3298.714, + "total_deaths": 10412.0, + "new_deaths": 186.0, + "new_deaths_smoothed": 182.429, + "total_cases_per_million": 9070.769, + "new_cases_per_million": 105.575, + "new_cases_smoothed_per_million": 100.046, + "total_deaths_per_million": 315.785, + "new_deaths_per_million": 5.641, + "new_deaths_smoothed_per_million": 5.533, + "new_tests": 3343.0, + "total_tests": 268134.0, + "total_tests_per_thousand": 8.132, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 2960.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-06", + "total_cases": 302718.0, + "new_cases": 3638.0, + "new_cases_smoothed": 3328.429, + "total_deaths": 10589.0, + "new_deaths": 177.0, + "new_deaths_smoothed": 181.714, + "total_cases_per_million": 9181.106, + "new_cases_per_million": 110.337, + "new_cases_smoothed_per_million": 100.948, + "total_deaths_per_million": 321.153, + "new_deaths_per_million": 5.368, + "new_deaths_smoothed_per_million": 5.511, + "new_tests": 3813.0, + "total_tests": 271947.0, + "total_tests_per_thousand": 8.248, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-07", + "total_cases": 305703.0, + "new_cases": 2985.0, + "new_cases_smoothed": 3334.0, + "total_deaths": 10772.0, + "new_deaths": 183.0, + "new_deaths_smoothed": 181.143, + "total_cases_per_million": 9271.637, + "new_cases_per_million": 90.532, + "new_cases_smoothed_per_million": 101.117, + "total_deaths_per_million": 326.703, + "new_deaths_per_million": 5.55, + "new_deaths_smoothed_per_million": 5.494, + "new_tests": 4673.0, + "total_tests": 276620.0, + "total_tests_per_thousand": 8.39, + "new_tests_per_thousand": 0.142, + "new_tests_smoothed": 3412.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-08", + "total_cases": 309278.0, + "new_cases": 3575.0, + "new_cases_smoothed": 3437.857, + "total_deaths": 10952.0, + "new_deaths": 180.0, + "new_deaths_smoothed": 182.143, + "total_cases_per_million": 9380.063, + "new_cases_per_million": 108.426, + "new_cases_smoothed_per_million": 104.266, + "total_deaths_per_million": 332.162, + "new_deaths_per_million": 5.459, + "new_deaths_smoothed_per_million": 5.524, + "new_tests": 3153.0, + "total_tests": 279773.0, + "total_tests_per_thousand": 8.485, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 3396.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-09", + "total_cases": 312911.0, + "new_cases": 3633.0, + "new_cases_smoothed": 3490.571, + "total_deaths": 11133.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 181.857, + "total_cases_per_million": 9490.248, + "new_cases_per_million": 110.185, + "new_cases_smoothed_per_million": 105.865, + "total_deaths_per_million": 337.652, + "new_deaths_per_million": 5.49, + "new_deaths_smoothed_per_million": 5.516, + "new_tests": 4113.0, + "total_tests": 283886.0, + "total_tests_per_thousand": 8.61, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 3550.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-10", + "total_cases": 316448.0, + "new_cases": 3537.0, + "new_cases_smoothed": 3492.0, + "total_deaths": 11314.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 181.286, + "total_cases_per_million": 9597.521, + "new_cases_per_million": 107.273, + "new_cases_smoothed_per_million": 105.909, + "total_deaths_per_million": 343.141, + "new_deaths_per_million": 5.49, + "new_deaths_smoothed_per_million": 5.498, + "new_tests": 3078.0, + "total_tests": 286964.0, + "total_tests_per_thousand": 8.703, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 3623.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-07-11", + "total_cases": 319646.0, + "new_cases": 3198.0, + "new_cases_smoothed": 3435.286, + "total_deaths": 11500.0, + "new_deaths": 186.0, + "new_deaths_smoothed": 182.0, + "total_cases_per_million": 9694.513, + "new_cases_per_million": 96.992, + "new_cases_smoothed_per_million": 104.188, + "total_deaths_per_million": 348.782, + "new_deaths_per_million": 5.641, + "new_deaths_smoothed_per_million": 5.52, + "new_tests": 3270.0, + "total_tests": 290234.0, + "total_tests_per_thousand": 8.802, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 3635.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-12", + "total_cases": 322710.0, + "new_cases": 3064.0, + "new_cases_smoothed": 3375.714, + "total_deaths": 11682.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 181.429, + "total_cases_per_million": 9787.441, + "new_cases_per_million": 92.928, + "new_cases_smoothed_per_million": 102.382, + "total_deaths_per_million": 354.302, + "new_deaths_per_million": 5.52, + "new_deaths_smoothed_per_million": 5.503, + "new_tests": 3261.0, + "total_tests": 293495.0, + "total_tests_per_thousand": 8.901, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 3623.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-13", + "total_cases": 326326.0, + "new_cases": 3616.0, + "new_cases_smoothed": 3372.571, + "total_deaths": 11870.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 183.0, + "total_cases_per_million": 9897.11, + "new_cases_per_million": 109.669, + "new_cases_smoothed_per_million": 102.286, + "total_deaths_per_million": 360.004, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 5.55, + "new_tests": 4274.0, + "total_tests": 297769.0, + "total_tests_per_thousand": 9.031, + "new_tests_per_thousand": 0.13, + "new_tests_smoothed": 3689.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-14", + "total_cases": 330123.0, + "new_cases": 3797.0, + "new_cases_smoothed": 3488.571, + "total_deaths": 12054.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 183.143, + "total_cases_per_million": 10012.269, + "new_cases_per_million": 115.159, + "new_cases_smoothed_per_million": 105.805, + "total_deaths_per_million": 365.585, + "new_deaths_per_million": 5.581, + "new_deaths_smoothed_per_million": 5.555, + "new_tests": 6555.0, + "total_tests": 304324.0, + "total_tests_per_thousand": 9.23, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 3958.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-15", + "total_cases": 333867.0, + "new_cases": 3744.0, + "new_cases_smoothed": 3512.714, + "total_deaths": 12229.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 182.429, + "total_cases_per_million": 10125.821, + "new_cases_per_million": 113.551, + "new_cases_smoothed_per_million": 106.537, + "total_deaths_per_million": 370.892, + "new_deaths_per_million": 5.308, + "new_deaths_smoothed_per_million": 5.533, + "new_tests": 5422.0, + "total_tests": 309746.0, + "total_tests_per_thousand": 9.394, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 4282.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-16", + "total_cases": 337724.0, + "new_cases": 3857.0, + "new_cases_smoothed": 3544.714, + "total_deaths": 12417.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 183.429, + "total_cases_per_million": 10242.799, + "new_cases_per_million": 116.979, + "new_cases_smoothed_per_million": 107.507, + "total_deaths_per_million": 376.594, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 5.563, + "new_tests": 6100.0, + "total_tests": 315846.0, + "total_tests_per_thousand": 9.579, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 4566.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-17", + "total_cases": 341586.0, + "new_cases": 3862.0, + "new_cases_smoothed": 3591.143, + "total_deaths": 12615.0, + "new_deaths": 198.0, + "new_deaths_smoothed": 185.857, + "total_cases_per_million": 10359.929, + "new_cases_per_million": 117.13, + "new_cases_smoothed_per_million": 108.915, + "total_deaths_per_million": 382.599, + "new_deaths_per_million": 6.005, + "new_deaths_smoothed_per_million": 5.637, + "new_tests": 5815.0, + "total_tests": 321661.0, + "total_tests_per_thousand": 9.756, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 4957.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-18", + "total_cases": 345537.0, + "new_cases": 3951.0, + "new_cases_smoothed": 3698.714, + "total_deaths": 12799.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 185.571, + "total_cases_per_million": 10479.759, + "new_cases_per_million": 119.83, + "new_cases_smoothed_per_million": 112.178, + "total_deaths_per_million": 388.18, + "new_deaths_per_million": 5.581, + "new_deaths_smoothed_per_million": 5.628, + "new_tests": 4849.0, + "total_tests": 326510.0, + "total_tests_per_thousand": 9.903, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 5182.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-19", + "total_cases": 349500.0, + "new_cases": 3963.0, + "new_cases_smoothed": 3827.143, + "total_deaths": 12998.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 188.0, + "total_cases_per_million": 10599.952, + "new_cases_per_million": 120.193, + "new_cases_smoothed_per_million": 116.073, + "total_deaths_per_million": 394.215, + "new_deaths_per_million": 6.035, + "new_deaths_smoothed_per_million": 5.702, + "new_tests": 3243.0, + "total_tests": 329753.0, + "total_tests_per_thousand": 10.001, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 5180.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-20", + "total_cases": 353590.0, + "new_cases": 4090.0, + "new_cases_smoothed": 3894.857, + "total_deaths": 13187.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 188.143, + "total_cases_per_million": 10723.998, + "new_cases_per_million": 124.045, + "new_cases_smoothed_per_million": 118.127, + "total_deaths_per_million": 399.947, + "new_deaths_per_million": 5.732, + "new_deaths_smoothed_per_million": 5.706, + "new_tests": 4758.0, + "total_tests": 334511.0, + "total_tests_per_thousand": 10.145, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 5249.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-21", + "total_cases": 357681.0, + "new_cases": 4091.0, + "new_cases_smoothed": 3936.857, + "total_deaths": 13384.0, + "new_deaths": 197.0, + "new_deaths_smoothed": 190.0, + "total_cases_per_million": 10848.073, + "new_cases_per_million": 124.076, + "new_cases_smoothed_per_million": 119.401, + "total_deaths_per_million": 405.922, + "new_deaths_per_million": 5.975, + "new_deaths_smoothed_per_million": 5.762, + "new_tests": 4587.0, + "total_tests": 339098.0, + "total_tests_per_thousand": 10.284, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 4968.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-22", + "total_cases": 362087.0, + "new_cases": 4406.0, + "new_cases_smoothed": 4031.429, + "total_deaths": 13579.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 192.857, + "total_cases_per_million": 10981.702, + "new_cases_per_million": 133.629, + "new_cases_smoothed_per_million": 122.269, + "total_deaths_per_million": 411.836, + "new_deaths_per_million": 5.914, + "new_deaths_smoothed_per_million": 5.849, + "new_tests": 5430.0, + "total_tests": 344528.0, + "total_tests_per_thousand": 10.449, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 4969.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-23", + "total_cases": 366550.0, + "new_cases": 4463.0, + "new_cases_smoothed": 4118.0, + "total_deaths": 13767.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 192.857, + "total_cases_per_million": 11117.06, + "new_cases_per_million": 135.358, + "new_cases_smoothed_per_million": 124.894, + "total_deaths_per_million": 417.538, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 5.849, + "new_tests": 4893.0, + "total_tests": 349421.0, + "total_tests_per_thousand": 10.598, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 4796.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-24", + "total_cases": 371096.0, + "new_cases": 4546.0, + "new_cases_smoothed": 4215.714, + "total_deaths": 17654.0, + "new_deaths": 3887.0, + "new_deaths_smoothed": 719.857, + "total_cases_per_million": 11254.935, + "new_cases_per_million": 137.875, + "new_cases_smoothed_per_million": 127.858, + "total_deaths_per_million": 535.426, + "new_deaths_per_million": 117.888, + "new_deaths_smoothed_per_million": 21.832, + "new_tests": 6245.0, + "total_tests": 355666.0, + "total_tests_per_thousand": 10.787, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 4858.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-25", + "total_cases": 375961.0, + "new_cases": 4865.0, + "new_cases_smoothed": 4346.286, + "total_deaths": 17843.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 720.571, + "total_cases_per_million": 11402.486, + "new_cases_per_million": 147.55, + "new_cases_smoothed_per_million": 131.818, + "total_deaths_per_million": 541.159, + "new_deaths_per_million": 5.732, + "new_deaths_smoothed_per_million": 21.854, + "new_tests": 4752.0, + "total_tests": 360418.0, + "total_tests_per_thousand": 10.931, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 4844.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-26", + "total_cases": 379884.0, + "new_cases": 3923.0, + "new_cases_smoothed": 4340.571, + "total_deaths": 18030.0, + "new_deaths": 187.0, + "new_deaths_smoothed": 718.857, + "total_cases_per_million": 11521.466, + "new_cases_per_million": 118.98, + "new_cases_smoothed_per_million": 131.645, + "total_deaths_per_million": 546.83, + "new_deaths_per_million": 5.672, + "new_deaths_smoothed_per_million": 21.802, + "new_tests": 3893.0, + "total_tests": 364311.0, + "total_tests_per_thousand": 11.049, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 4937.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-27", + "total_cases": 384797.0, + "new_cases": 4913.0, + "new_cases_smoothed": 4458.143, + "total_deaths": 18229.0, + "new_deaths": 199.0, + "new_deaths_smoothed": 720.286, + "total_cases_per_million": 11670.472, + "new_cases_per_million": 149.006, + "new_cases_smoothed_per_million": 135.211, + "total_deaths_per_million": 552.866, + "new_deaths_per_million": 6.035, + "new_deaths_smoothed_per_million": 21.845, + "new_tests": 4769.0, + "total_tests": 369080.0, + "total_tests_per_thousand": 11.194, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 4938.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-28", + "total_cases": 389717.0, + "new_cases": 4920.0, + "new_cases_smoothed": 4576.571, + "total_deaths": 18418.0, + "new_deaths": 189.0, + "new_deaths_smoothed": 719.143, + "total_cases_per_million": 11819.69, + "new_cases_per_million": 149.218, + "new_cases_smoothed_per_million": 138.802, + "total_deaths_per_million": 558.598, + "new_deaths_per_million": 5.732, + "new_deaths_smoothed_per_million": 21.811, + "new_tests": 3799.0, + "total_tests": 372879.0, + "total_tests_per_thousand": 11.309, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 4826.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-29", + "total_cases": 395005.0, + "new_cases": 5288.0, + "new_cases_smoothed": 4702.571, + "total_deaths": 18612.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 719.0, + "total_cases_per_million": 11980.069, + "new_cases_per_million": 160.379, + "new_cases_smoothed_per_million": 142.624, + "total_deaths_per_million": 564.482, + "new_deaths_per_million": 5.884, + "new_deaths_smoothed_per_million": 21.806, + "new_tests": 3870.0, + "total_tests": 376749.0, + "total_tests_per_thousand": 11.426, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 4603.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-30", + "total_cases": 400683.0, + "new_cases": 5678.0, + "new_cases_smoothed": 4876.143, + "total_deaths": 18816.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 721.286, + "total_cases_per_million": 12152.277, + "new_cases_per_million": 172.208, + "new_cases_smoothed_per_million": 147.888, + "total_deaths_per_million": 570.669, + "new_deaths_per_million": 6.187, + "new_deaths_smoothed_per_million": 21.876, + "new_tests": 5926.0, + "total_tests": 382675.0, + "total_tests_per_thousand": 11.606, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 4751.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-31", + "total_cases": 407492.0, + "new_cases": 6809.0, + "new_cases_smoothed": 5199.429, + "total_deaths": 19021.0, + "new_deaths": 205.0, + "new_deaths_smoothed": 195.286, + "total_cases_per_million": 12358.786, + "new_cases_per_million": 206.51, + "new_cases_smoothed_per_million": 157.693, + "total_deaths_per_million": 576.886, + "new_deaths_per_million": 6.217, + "new_deaths_smoothed_per_million": 5.923, + "new_tests": 5852.0, + "total_tests": 388527.0, + "total_tests_per_thousand": 11.784, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 4694.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-01", + "total_cases": 414735.0, + "new_cases": 7243.0, + "new_cases_smoothed": 5539.143, + "total_deaths": 19217.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 196.286, + "total_cases_per_million": 12578.459, + "new_cases_per_million": 219.672, + "new_cases_smoothed_per_million": 167.996, + "total_deaths_per_million": 582.831, + "new_deaths_per_million": 5.944, + "new_deaths_smoothed_per_million": 5.953, + "new_tests": 5845.0, + "total_tests": 394372.0, + "total_tests_per_thousand": 11.961, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 4851.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-02", + "total_cases": 422183.0, + "new_cases": 7448.0, + "new_cases_smoothed": 6042.714, + "total_deaths": 19408.0, + "new_deaths": 191.0, + "new_deaths_smoothed": 196.857, + "total_cases_per_million": 12804.348, + "new_cases_per_million": 225.89, + "new_cases_smoothed_per_million": 183.269, + "total_deaths_per_million": 588.623, + "new_deaths_per_million": 5.793, + "new_deaths_smoothed_per_million": 5.97, + "new_tests": 3670.0, + "total_tests": 398042.0, + "total_tests_per_thousand": 12.072, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 4819.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-03", + "total_cases": 428850.0, + "new_cases": 6667.0, + "new_cases_smoothed": 6293.286, + "total_deaths": 19614.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 197.857, + "total_cases_per_million": 13006.551, + "new_cases_per_million": 202.203, + "new_cases_smoothed_per_million": 190.868, + "total_deaths_per_million": 594.871, + "new_deaths_per_million": 6.248, + "new_deaths_smoothed_per_million": 6.001, + "new_tests": 4175.0, + "total_tests": 402217.0, + "total_tests_per_thousand": 12.199, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 4734.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-04", + "total_cases": 433100.0, + "new_cases": 4250.0, + "new_cases_smoothed": 6197.571, + "total_deaths": 19811.0, + "new_deaths": 197.0, + "new_deaths_smoothed": 199.0, + "total_cases_per_million": 13135.449, + "new_cases_per_million": 128.898, + "new_cases_smoothed_per_million": 187.966, + "total_deaths_per_million": 600.846, + "new_deaths_per_million": 5.975, + "new_deaths_smoothed_per_million": 6.035, + "new_tests": 5974.0, + "total_tests": 408191.0, + "total_tests_per_thousand": 12.38, + "new_tests_per_thousand": 0.181, + "new_tests_smoothed": 5045.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-05", + "total_cases": 439890.0, + "new_cases": 6790.0, + "new_cases_smoothed": 6412.143, + "total_deaths": 20007.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 199.286, + "total_cases_per_million": 13341.382, + "new_cases_per_million": 205.933, + "new_cases_smoothed_per_million": 194.473, + "total_deaths_per_million": 606.79, + "new_deaths_per_million": 5.944, + "new_deaths_smoothed_per_million": 6.044, + "new_tests": 4884.0, + "total_tests": 413075.0, + "total_tests_per_thousand": 12.528, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 5189.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-06", + "total_cases": 447624.0, + "new_cases": 7734.0, + "new_cases_smoothed": 6705.857, + "total_deaths": 20228.0, + "new_deaths": 221.0, + "new_deaths_smoothed": 201.714, + "total_cases_per_million": 13575.946, + "new_cases_per_million": 234.564, + "new_cases_smoothed_per_million": 203.381, + "total_deaths_per_million": 613.493, + "new_deaths_per_million": 6.703, + "new_deaths_smoothed_per_million": 6.118, + "new_tests": 6913.0, + "total_tests": 419988.0, + "total_tests_per_thousand": 12.738, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 5330.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-07", + "total_cases": 455409.0, + "new_cases": 7785.0, + "new_cases_smoothed": 6845.286, + "total_deaths": 20424.0, + "new_deaths": 196.0, + "new_deaths_smoothed": 200.429, + "total_cases_per_million": 13812.057, + "new_cases_per_million": 236.111, + "new_cases_smoothed_per_million": 207.61, + "total_deaths_per_million": 619.438, + "new_deaths_per_million": 5.944, + "new_deaths_smoothed_per_million": 6.079, + "new_tests": 4262.0, + "total_tests": 424250.0, + "total_tests_per_thousand": 12.867, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 5103.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-08", + "total_cases": 463875.0, + "new_cases": 8466.0, + "new_cases_smoothed": 7020.0, + "total_deaths": 20649.0, + "new_deaths": 225.0, + "new_deaths_smoothed": 204.571, + "total_cases_per_million": 14068.821, + "new_cases_per_million": 256.765, + "new_cases_smoothed_per_million": 212.909, + "total_deaths_per_million": 626.262, + "new_deaths_per_million": 6.824, + "new_deaths_smoothed_per_million": 6.204, + "new_tests": 6120.0, + "total_tests": 430370.0, + "total_tests_per_thousand": 13.053, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 5143.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-09", + "total_cases": 471012.0, + "new_cases": 7137.0, + "new_cases_smoothed": 6975.571, + "total_deaths": 20844.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 205.143, + "total_cases_per_million": 14285.278, + "new_cases_per_million": 216.457, + "new_cases_smoothed_per_million": 211.561, + "total_deaths_per_million": 632.176, + "new_deaths_per_million": 5.914, + "new_deaths_smoothed_per_million": 6.222, + "new_tests": 5006.0, + "total_tests": 435376.0, + "total_tests_per_thousand": 13.204, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 5333.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-10", + "total_cases": 478024.0, + "new_cases": 7012.0, + "new_cases_smoothed": 7024.857, + "total_deaths": 21072.0, + "new_deaths": 228.0, + "new_deaths_smoothed": 208.286, + "total_cases_per_million": 14497.945, + "new_cases_per_million": 212.666, + "new_cases_smoothed_per_million": 213.056, + "total_deaths_per_million": 639.091, + "new_deaths_per_million": 6.915, + "new_deaths_smoothed_per_million": 6.317, + "new_tests": 3728.0, + "total_tests": 439104.0, + "total_tests_per_thousand": 13.318, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 5270.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-11", + "total_cases": 483133.0, + "new_cases": 5109.0, + "new_cases_smoothed": 7147.571, + "total_deaths": 21276.0, + "new_deaths": 204.0, + "new_deaths_smoothed": 209.286, + "total_cases_per_million": 14652.895, + "new_cases_per_million": 154.95, + "new_cases_smoothed_per_million": 216.778, + "total_deaths_per_million": 645.278, + "new_deaths_per_million": 6.187, + "new_deaths_smoothed_per_million": 6.347, + "new_tests": 8033.0, + "total_tests": 447137.0, + "total_tests_per_thousand": 13.561, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 5564.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-12", + "total_cases": 489680.0, + "new_cases": 6547.0, + "new_cases_smoothed": 7112.857, + "total_deaths": 21501.0, + "new_deaths": 225.0, + "new_deaths_smoothed": 213.429, + "total_cases_per_million": 14851.458, + "new_cases_per_million": 198.563, + "new_cases_smoothed_per_million": 215.725, + "total_deaths_per_million": 652.102, + "new_deaths_per_million": 6.824, + "new_deaths_smoothed_per_million": 6.473, + "new_tests": 9322.0, + "total_tests": 456459.0, + "total_tests_per_thousand": 13.844, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 6198.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-13", + "total_cases": 498555.0, + "new_cases": 8875.0, + "new_cases_smoothed": 7275.857, + "total_deaths": 21713.0, + "new_deaths": 212.0, + "new_deaths_smoothed": 212.143, + "total_cases_per_million": 15120.627, + "new_cases_per_million": 269.169, + "new_cases_smoothed_per_million": 220.669, + "total_deaths_per_million": 658.532, + "new_deaths_per_million": 6.43, + "new_deaths_smoothed_per_million": 6.434, + "new_tests": 7736.0, + "total_tests": 464195.0, + "total_tests_per_thousand": 14.079, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 6315.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-14", + "total_cases": 507996.0, + "new_cases": 9441.0, + "new_cases_smoothed": 7512.429, + "total_deaths": 25648.0, + "new_deaths": 3935.0, + "new_deaths_smoothed": 746.286, + "total_cases_per_million": 15406.963, + "new_cases_per_million": 286.335, + "new_cases_smoothed_per_million": 227.844, + "total_deaths_per_million": 777.876, + "new_deaths_per_million": 119.344, + "new_deaths_smoothed_per_million": 22.634, + "new_tests": 8488.0, + "total_tests": 472683.0, + "total_tests_per_thousand": 14.336, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 6919.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-15", + "total_cases": 516296.0, + "new_cases": 8300.0, + "new_cases_smoothed": 7488.714, + "total_deaths": 25856.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 743.857, + "total_cases_per_million": 15658.693, + "new_cases_per_million": 251.73, + "new_cases_smoothed_per_million": 227.125, + "total_deaths_per_million": 784.184, + "new_deaths_per_million": 6.308, + "new_deaths_smoothed_per_million": 22.56, + "new_tests": 10411.0, + "total_tests": 483094.0, + "total_tests_per_thousand": 14.652, + "new_tests_per_thousand": 0.316, + "new_tests_smoothed": 7532.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-16", + "total_cases": 525803.0, + "new_cases": 9507.0, + "new_cases_smoothed": 7827.286, + "total_deaths": 26075.0, + "new_deaths": 219.0, + "new_deaths_smoothed": 747.286, + "total_cases_per_million": 15947.029, + "new_cases_per_million": 288.337, + "new_cases_smoothed_per_million": 237.393, + "total_deaths_per_million": 790.826, + "new_deaths_per_million": 6.642, + "new_deaths_smoothed_per_million": 22.664, + "new_tests": 6547.0, + "total_tests": 489641.0, + "total_tests_per_thousand": 14.85, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 7752.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-17", + "total_cases": 535946.0, + "new_cases": 10143.0, + "new_cases_smoothed": 8274.571, + "total_deaths": 26281.0, + "new_deaths": 206.0, + "new_deaths_smoothed": 744.143, + "total_cases_per_million": 16254.656, + "new_cases_per_million": 307.626, + "new_cases_smoothed_per_million": 250.959, + "total_deaths_per_million": 797.074, + "new_deaths_per_million": 6.248, + "new_deaths_smoothed_per_million": 22.569, + "new_tests": 8216.0, + "total_tests": 497857.0, + "total_tests_per_thousand": 15.099, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 8393.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-18", + "total_cases": 541493.0, + "new_cases": 5547.0, + "new_cases_smoothed": 8337.143, + "total_deaths": 26481.0, + "new_deaths": 200.0, + "new_deaths_smoothed": 743.571, + "total_cases_per_million": 16422.89, + "new_cases_per_million": 168.234, + "new_cases_smoothed_per_million": 252.856, + "total_deaths_per_million": 803.14, + "new_deaths_per_million": 6.066, + "new_deaths_smoothed_per_million": 22.552, + "new_tests": 9044.0, + "total_tests": 506901.0, + "total_tests_per_thousand": 15.374, + "new_tests_per_thousand": 0.274, + "new_tests_smoothed": 8538.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-19", + "total_cases": 549321.0, + "new_cases": 7828.0, + "new_cases_smoothed": 8520.143, + "total_deaths": 26658.0, + "new_deaths": 177.0, + "new_deaths_smoothed": 736.714, + "total_cases_per_million": 16660.305, + "new_cases_per_million": 237.415, + "new_cases_smoothed_per_million": 258.407, + "total_deaths_per_million": 808.508, + "new_deaths_per_million": 5.368, + "new_deaths_smoothed_per_million": 22.344, + "new_tests": 8459.0, + "total_tests": 515360.0, + "total_tests_per_thousand": 15.63, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 8414.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-20", + "total_cases": 558420.0, + "new_cases": 9099.0, + "new_cases_smoothed": 8552.143, + "total_deaths": 26834.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 731.571, + "total_cases_per_million": 16936.267, + "new_cases_per_million": 275.963, + "new_cases_smoothed_per_million": 259.377, + "total_deaths_per_million": 813.846, + "new_deaths_per_million": 5.338, + "new_deaths_smoothed_per_million": 22.188, + "new_tests": 8457.0, + "total_tests": 523817.0, + "total_tests_per_thousand": 15.887, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 8517.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-21", + "total_cases": 567059.0, + "new_cases": 8639.0, + "new_cases_smoothed": 8437.571, + "total_deaths": 27034.0, + "new_deaths": 200.0, + "new_deaths_smoothed": 198.0, + "total_cases_per_million": 17198.279, + "new_cases_per_million": 262.011, + "new_cases_smoothed_per_million": 255.902, + "total_deaths_per_million": 819.912, + "new_deaths_per_million": 6.066, + "new_deaths_smoothed_per_million": 6.005, + "new_tests": 8280.0, + "total_tests": 532097.0, + "total_tests_per_thousand": 16.138, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 8488.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-22", + "total_cases": 576067.0, + "new_cases": 9008.0, + "new_cases_smoothed": 8538.714, + "total_deaths": 27245.0, + "new_deaths": 211.0, + "new_deaths_smoothed": 198.429, + "total_cases_per_million": 17471.482, + "new_cases_per_million": 273.203, + "new_cases_smoothed_per_million": 258.97, + "total_deaths_per_million": 826.311, + "new_deaths_per_million": 6.399, + "new_deaths_smoothed_per_million": 6.018, + "new_tests": 6886.0, + "total_tests": 538983.0, + "total_tests_per_thousand": 16.347, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 7984.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-23", + "total_cases": 585236.0, + "new_cases": 9169.0, + "new_cases_smoothed": 8490.429, + "total_deaths": 27453.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 196.857, + "total_cases_per_million": 17749.567, + "new_cases_per_million": 278.086, + "new_cases_smoothed_per_million": 257.505, + "total_deaths_per_million": 832.619, + "new_deaths_per_million": 6.308, + "new_deaths_smoothed_per_million": 5.97, + "new_tests": 5249.0, + "total_tests": 544232.0, + "total_tests_per_thousand": 16.506, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 7799.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-24", + "total_cases": 594326.0, + "new_cases": 9090.0, + "new_cases_smoothed": 8340.0, + "total_deaths": 27663.0, + "new_deaths": 210.0, + "new_deaths_smoothed": 197.429, + "total_cases_per_million": 18025.257, + "new_cases_per_million": 275.69, + "new_cases_smoothed_per_million": 252.943, + "total_deaths_per_million": 838.989, + "new_deaths_per_million": 6.369, + "new_deaths_smoothed_per_million": 5.988, + "new_tests": 5127.0, + "total_tests": 549359.0, + "total_tests_per_thousand": 16.661, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 7357.0, + "new_tests_smoothed_per_thousand": 0.223, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-25", + "total_cases": 600438.0, + "new_cases": 6112.0, + "new_cases_smoothed": 8420.714, + "total_deaths": 27813.0, + "new_deaths": 150.0, + "new_deaths_smoothed": 190.286, + "total_cases_per_million": 18210.627, + "new_cases_per_million": 185.37, + "new_cases_smoothed_per_million": 255.391, + "total_deaths_per_million": 843.538, + "new_deaths_per_million": 4.549, + "new_deaths_smoothed_per_million": 5.771, + "new_tests": 3570.0, + "total_tests": 552929.0, + "total_tests_per_thousand": 16.77, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 6575.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-26", + "total_cases": 607382.0, + "new_cases": 6944.0, + "new_cases_smoothed": 8294.429, + "total_deaths": 28001.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 191.857, + "total_cases_per_million": 18421.231, + "new_cases_per_million": 210.604, + "new_cases_smoothed_per_million": 251.561, + "total_deaths_per_million": 849.24, + "new_deaths_per_million": 5.702, + "new_deaths_smoothed_per_million": 5.819, + "new_tests": 7776.0, + "total_tests": 560705.0, + "total_tests_per_thousand": 17.006, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 6478.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-08-27", + "total_cases": 613378.0, + "new_cases": 5996.0, + "new_cases_smoothed": 7851.143, + "total_deaths": 28124.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 184.286, + "total_cases_per_million": 18603.083, + "new_cases_per_million": 181.852, + "new_cases_smoothed_per_million": 238.117, + "total_deaths_per_million": 852.97, + "new_deaths_per_million": 3.73, + "new_deaths_smoothed_per_million": 5.589, + "new_tests": 7399.0, + "total_tests": 568104.0, + "total_tests_per_thousand": 17.23, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 6327.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_units": "people tested" + }, + { + "date": "2020-08-28", + "total_cases": 621997.0, + "new_cases": 8619.0, + "new_cases_smoothed": 7848.286, + "total_deaths": 28277.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 177.571, + "total_cases_per_million": 18864.488, + "new_cases_per_million": 261.405, + "new_cases_smoothed_per_million": 238.03, + "total_deaths_per_million": 857.61, + "new_deaths_per_million": 4.64, + "new_deaths_smoothed_per_million": 5.386, + "new_tests": 8457.0, + "total_tests": 576561.0, + "total_tests_per_thousand": 17.486, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 6352.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 629961.0, + "new_cases": 7964.0, + "new_cases_smoothed": 7699.143, + "total_deaths": 28471.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 175.143, + "total_cases_per_million": 19106.028, + "new_cases_per_million": 241.539, + "new_cases_smoothed_per_million": 233.507, + "total_deaths_per_million": 863.494, + "new_deaths_per_million": 5.884, + "new_deaths_smoothed_per_million": 5.312, + "new_tests": 7671.0, + "total_tests": 584232.0, + "total_tests_per_thousand": 17.719, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 6464.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 639435.0, + "new_cases": 9474.0, + "new_cases_smoothed": 7742.714, + "total_deaths": 28607.0, + "new_deaths": 136.0, + "new_deaths_smoothed": 164.857, + "total_cases_per_million": 19393.364, + "new_cases_per_million": 287.336, + "new_cases_smoothed_per_million": 234.828, + "total_deaths_per_million": 867.619, + "new_deaths_per_million": 4.125, + "new_deaths_smoothed_per_million": 5.0 + }, + { + "date": "2020-08-31", + "total_cases": 647166.0, + "new_cases": 7731.0, + "new_cases_smoothed": 7548.571, + "total_deaths": 28788.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 160.714, + "total_cases_per_million": 19627.836, + "new_cases_per_million": 234.473, + "new_cases_smoothed_per_million": 228.94, + "total_deaths_per_million": 873.109, + "new_deaths_per_million": 5.49, + "new_deaths_smoothed_per_million": 4.874 + }, + { + "date": "2020-09-01", + "total_cases": 652037.0, + "new_cases": 4871.0, + "new_cases_smoothed": 7371.286, + "total_deaths": 28944.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 161.571, + "total_cases_per_million": 19775.569, + "new_cases_per_million": 147.732, + "new_cases_smoothed_per_million": 223.563, + "total_deaths_per_million": 877.84, + "new_deaths_per_million": 4.731, + "new_deaths_smoothed_per_million": 4.9 + }, + { + "date": "2020-09-02", + "total_cases": 657129.0, + "new_cases": 5092.0, + "new_cases_smoothed": 7106.714, + "total_deaths": 29068.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 152.429, + "total_cases_per_million": 19930.003, + "new_cases_per_million": 154.435, + "new_cases_smoothed_per_million": 215.539, + "total_deaths_per_million": 881.601, + "new_deaths_per_million": 3.761, + "new_deaths_smoothed_per_million": 4.623 + }, + { + "date": "2020-09-03", + "total_cases": 663437.0, + "new_cases": 6308.0, + "new_cases_smoothed": 7151.286, + "total_deaths": 29259.0, + "new_deaths": 191.0, + "new_deaths_smoothed": 162.143, + "total_cases_per_million": 20121.318, + "new_cases_per_million": 191.315, + "new_cases_smoothed_per_million": 216.891, + "total_deaths_per_million": 887.393, + "new_deaths_per_million": 5.793, + "new_deaths_smoothed_per_million": 4.918 + }, + { + "date": "2020-09-04", + "total_cases": 670145.0, + "new_cases": 6708.0, + "new_cases_smoothed": 6878.286, + "total_deaths": 29405.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 161.143, + "total_cases_per_million": 20324.764, + "new_cases_per_million": 203.446, + "new_cases_smoothed_per_million": 208.611, + "total_deaths_per_million": 891.821, + "new_deaths_per_million": 4.428, + "new_deaths_smoothed_per_million": 4.887 + }, + { + "date": "2020-09-05", + "total_cases": 676848.0, + "new_cases": 6703.0, + "new_cases_smoothed": 6698.143, + "total_deaths": 29554.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 154.714, + "total_cases_per_million": 20528.059, + "new_cases_per_million": 203.295, + "new_cases_smoothed_per_million": 203.147, + "total_deaths_per_million": 896.34, + "new_deaths_per_million": 4.519, + "new_deaths_smoothed_per_million": 4.692 + } + ] + }, + "PHL": { + "continent": "Asia", + "location": "Philippines", + "population": 109581085.0, + "population_density": 351.873, + "median_age": 25.2, + "aged_65_older": 4.803, + "aged_70_older": 2.661, + "gdp_per_capita": 7599.188, + "cardiovasc_death_rate": 370.437, + "diabetes_prevalence": 7.07, + "female_smokers": 7.8, + "male_smokers": 40.8, + "handwashing_facilities": 78.463, + "hospital_beds_per_thousand": 1.0, + "life_expectancy": 71.23, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 25.0 + }, + { + "date": "2020-02-08", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 25.0 + }, + { + "date": "2020-02-09", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-10", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-11", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-12", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-13", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-14", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-15", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-17", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-18", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-19", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-20", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-21", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-22", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-23", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-24", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-07", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-08", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.055, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-09", + "total_cases": 10.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.091, + "new_cases_per_million": 0.037, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-10", + "total_cases": 33.0, + "new_cases": 23.0, + "new_cases_smoothed": 4.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.301, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-11", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.009, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-12", + "total_cases": 49.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.447, + "new_cases_per_million": 0.146, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 34.26 + }, + { + "date": "2020-03-13", + "total_cases": 52.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.475, + "new_cases_per_million": 0.027, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.001, + "stringency_index": 34.26 + }, + { + "date": "2020-03-14", + "total_cases": 64.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.429, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.584, + "new_cases_per_million": 0.11, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 34.26 + }, + { + "date": "2020-03-15", + "total_cases": 111.0, + "new_cases": 47.0, + "new_cases_smoothed": 15.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.013, + "new_cases_per_million": 0.429, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 75.0 + }, + { + "date": "2020-03-16", + "total_cases": 140.0, + "new_cases": 29.0, + "new_cases_smoothed": 18.571, + "total_deaths": 12.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1.278, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 75.0 + }, + { + "date": "2020-03-17", + "total_cases": 142.0, + "new_cases": 2.0, + "new_cases_smoothed": 15.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1.296, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 75.0 + }, + { + "date": "2020-03-18", + "total_cases": 187.0, + "new_cases": 45.0, + "new_cases_smoothed": 22.0, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1.706, + "new_cases_per_million": 0.411, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.128, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 97.22 + }, + { + "date": "2020-03-19", + "total_cases": 202.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.857, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1.843, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.199, + "total_deaths_per_million": 0.155, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 97.22 + }, + { + "date": "2020-03-20", + "total_cases": 230.0, + "new_cases": 28.0, + "new_cases_smoothed": 25.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2.099, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 0.164, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 97.22 + }, + { + "date": "2020-03-21", + "total_cases": 230.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.164, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 97.22 + }, + { + "date": "2020-03-22", + "total_cases": 380.0, + "new_cases": 150.0, + "new_cases_smoothed": 38.429, + "total_deaths": 25.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3.468, + "new_cases_per_million": 1.369, + "new_cases_smoothed_per_million": 0.351, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 100.0 + }, + { + "date": "2020-03-23", + "total_cases": 380.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3.468, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.313, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 462.0, + "new_cases": 82.0, + "new_cases_smoothed": 45.714, + "total_deaths": 33.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 4.216, + "new_cases_per_million": 0.748, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.301, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 552.0, + "new_cases": 90.0, + "new_cases_smoothed": 52.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5.037, + "new_cases_per_million": 0.821, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 0.319, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 636.0, + "new_cases": 84.0, + "new_cases_smoothed": 62.0, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5.804, + "new_cases_per_million": 0.767, + "new_cases_smoothed_per_million": 0.566, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 707.0, + "new_cases": 71.0, + "new_cases_smoothed": 68.143, + "total_deaths": 45.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 6.452, + "new_cases_per_million": 0.648, + "new_cases_smoothed_per_million": 0.622, + "total_deaths_per_million": 0.411, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 803.0, + "new_cases": 96.0, + "new_cases_smoothed": 81.857, + "total_deaths": 54.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 7.328, + "new_cases_per_million": 0.876, + "new_cases_smoothed_per_million": 0.747, + "total_deaths_per_million": 0.493, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 1075.0, + "new_cases": 272.0, + "new_cases_smoothed": 99.286, + "total_deaths": 68.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 9.81, + "new_cases_per_million": 2.482, + "new_cases_smoothed_per_million": 0.906, + "total_deaths_per_million": 0.621, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 1418.0, + "new_cases": 343.0, + "new_cases_smoothed": 148.286, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 12.94, + "new_cases_per_million": 3.13, + "new_cases_smoothed_per_million": 1.353, + "total_deaths_per_million": 0.648, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 2084.0, + "new_cases": 666.0, + "new_cases_smoothed": 231.714, + "total_deaths": 88.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 19.018, + "new_cases_per_million": 6.078, + "new_cases_smoothed_per_million": 2.115, + "total_deaths_per_million": 0.803, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 2084.0, + "new_cases": 0.0, + "new_cases_smoothed": 218.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 19.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.997, + "total_deaths_per_million": 0.803, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 2311.0, + "new_cases": 227.0, + "new_cases_smoothed": 239.286, + "total_deaths": 96.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 21.089, + "new_cases_per_million": 2.072, + "new_cases_smoothed_per_million": 2.184, + "total_deaths_per_million": 0.876, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.076, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 2633.0, + "new_cases": 322.0, + "new_cases_smoothed": 275.143, + "total_deaths": 107.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 24.028, + "new_cases_per_million": 2.938, + "new_cases_smoothed_per_million": 2.511, + "total_deaths_per_million": 0.976, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.081, + "total_tests": 20276.0, + "total_tests_per_thousand": 0.185, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 3018.0, + "new_cases": 385.0, + "new_cases_smoothed": 316.429, + "total_deaths": 136.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 27.541, + "new_cases_per_million": 3.513, + "new_cases_smoothed_per_million": 2.888, + "total_deaths_per_million": 1.241, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 2407.0, + "total_tests": 22683.0, + "total_tests_per_thousand": 0.207, + "new_tests_per_thousand": 0.022, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 3094.0, + "new_cases": 76.0, + "new_cases_smoothed": 288.429, + "total_deaths": 144.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 28.235, + "new_cases_per_million": 0.694, + "new_cases_smoothed_per_million": 2.632, + "total_deaths_per_million": 1.314, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 344.0, + "total_tests": 23027.0, + "total_tests_per_thousand": 0.21, + "new_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 3246.0, + "new_cases": 152.0, + "new_cases_smoothed": 261.143, + "total_deaths": 152.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 29.622, + "new_cases_per_million": 1.387, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 1.387, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 1700.0, + "total_tests": 24727.0, + "total_tests_per_thousand": 0.226, + "new_tests_per_thousand": 0.016, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 3660.0, + "new_cases": 414.0, + "new_cases_smoothed": 225.143, + "total_deaths": 163.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 33.4, + "new_cases_per_million": 3.778, + "new_cases_smoothed_per_million": 2.055, + "total_deaths_per_million": 1.487, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 1685.0, + "total_tests": 26412.0, + "total_tests_per_thousand": 0.241, + "new_tests_per_thousand": 0.015, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 3764.0, + "new_cases": 104.0, + "new_cases_smoothed": 240.0, + "total_deaths": 177.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 34.349, + "new_cases_per_million": 0.949, + "new_cases_smoothed_per_million": 2.19, + "total_deaths_per_million": 1.615, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 3125.0, + "total_tests": 29537.0, + "total_tests_per_thousand": 0.27, + "new_tests_per_thousand": 0.029, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 3870.0, + "new_cases": 106.0, + "new_cases_smoothed": 222.714, + "total_deaths": 182.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 35.316, + "new_cases_per_million": 0.967, + "new_cases_smoothed_per_million": 2.032, + "total_deaths_per_million": 1.661, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 1989.0, + "total_tests": 31526.0, + "total_tests_per_thousand": 0.288, + "new_tests_per_thousand": 0.018, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 4076.0, + "new_cases": 206.0, + "new_cases_smoothed": 206.143, + "total_deaths": 203.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 37.196, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.881, + "total_deaths_per_million": 1.853, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.125, + "new_tests": 1244.0, + "total_tests": 32770.0, + "total_tests_per_thousand": 0.299, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 1785.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 8.658999999999999, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 4076.0, + "new_cases": 0.0, + "new_cases_smoothed": 151.143, + "total_deaths": 203.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 37.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.379, + "total_deaths_per_million": 1.853, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 1302.0, + "total_tests": 34072.0, + "total_tests_per_thousand": 0.311, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1627.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 10.765, + "positive_rate": 0.09300000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 4428.0, + "new_cases": 352.0, + "new_cases_smoothed": 190.571, + "total_deaths": 247.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 40.408, + "new_cases_per_million": 3.212, + "new_cases_smoothed_per_million": 1.739, + "total_deaths_per_million": 2.254, + "new_deaths_per_million": 0.402, + "new_deaths_smoothed_per_million": 0.134, + "new_tests": 1710.0, + "total_tests": 35782.0, + "total_tests_per_thousand": 0.327, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1822.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 9.561, + "positive_rate": 0.105, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 4648.0, + "new_cases": 220.0, + "new_cases_smoothed": 200.286, + "total_deaths": 297.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 42.416, + "new_cases_per_million": 2.008, + "new_cases_smoothed_per_million": 1.828, + "total_deaths_per_million": 2.71, + "new_deaths_per_million": 0.456, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 2387.0, + "total_tests": 38169.0, + "total_tests_per_thousand": 0.348, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1920.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 9.586, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 4932.0, + "new_cases": 284.0, + "new_cases_smoothed": 181.714, + "total_deaths": 315.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 45.008, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 2.875, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 1829.0, + "total_tests": 39998.0, + "total_tests_per_thousand": 0.365, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1941.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 10.682, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 5223.0, + "new_cases": 291.0, + "new_cases_smoothed": 208.429, + "total_deaths": 335.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 47.663, + "new_cases_per_million": 2.656, + "new_cases_smoothed_per_million": 1.902, + "total_deaths_per_million": 3.057, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 2625.0, + "total_tests": 42623.0, + "total_tests_per_thousand": 0.389, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1869.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 8.967, + "positive_rate": 0.11199999999999999, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 5453.0, + "new_cases": 230.0, + "new_cases_smoothed": 226.143, + "total_deaths": 349.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 49.762, + "new_cases_per_million": 2.099, + "new_cases_smoothed_per_million": 2.064, + "total_deaths_per_million": 3.185, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.218, + "new_tests": 3490.0, + "total_tests": 46113.0, + "total_tests_per_thousand": 0.421, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 2084.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 9.215, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 5660.0, + "new_cases": 207.0, + "new_cases_smoothed": 226.286, + "total_deaths": 362.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 51.651, + "new_cases_per_million": 1.889, + "new_cases_smoothed_per_million": 2.065, + "total_deaths_per_million": 3.303, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 3421.0, + "total_tests": 49534.0, + "total_tests_per_thousand": 0.452, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 2395.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 10.584000000000001, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 5878.0, + "new_cases": 218.0, + "new_cases_smoothed": 257.429, + "total_deaths": 387.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 53.641, + "new_cases_per_million": 1.989, + "new_cases_smoothed_per_million": 2.349, + "total_deaths_per_million": 3.532, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 3657.0, + "total_tests": 53191.0, + "total_tests_per_thousand": 0.485, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 2731.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 10.609000000000002, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 6087.0, + "new_cases": 209.0, + "new_cases_smoothed": 237.0, + "total_deaths": 397.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 55.548, + "new_cases_per_million": 1.907, + "new_cases_smoothed_per_million": 2.163, + "total_deaths_per_million": 3.623, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 2317.0, + "total_tests": 55508.0, + "total_tests_per_thousand": 0.507, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2818.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 11.89, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 6259.0, + "new_cases": 172.0, + "new_cases_smoothed": 230.143, + "total_deaths": 409.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 57.118, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 2.1, + "total_deaths_per_million": 3.732, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 2323.0, + "total_tests": 57831.0, + "total_tests_per_thousand": 0.528, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2809.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 12.205, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 6459.0, + "new_cases": 200.0, + "new_cases_smoothed": 218.143, + "total_deaths": 428.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 58.943, + "new_cases_per_million": 1.825, + "new_cases_smoothed_per_million": 1.991, + "total_deaths_per_million": 3.906, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 2870.0, + "total_tests": 60701.0, + "total_tests_per_thousand": 0.554, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 2958.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 13.56, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-22", + "total_cases": 6599.0, + "new_cases": 140.0, + "new_cases_smoothed": 196.571, + "total_deaths": 437.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 60.22, + "new_cases_per_million": 1.278, + "new_cases_smoothed_per_million": 1.794, + "total_deaths_per_million": 3.988, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 3620.0, + "total_tests": 64321.0, + "total_tests_per_thousand": 0.587, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 3100.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 15.77, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-23", + "total_cases": 6710.0, + "new_cases": 111.0, + "new_cases_smoothed": 179.571, + "total_deaths": 446.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 61.233, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 1.639, + "total_deaths_per_million": 4.07, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 3726.0, + "total_tests": 68047.0, + "total_tests_per_thousand": 0.621, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 3133.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 17.447, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-24", + "total_cases": 6981.0, + "new_cases": 271.0, + "new_cases_smoothed": 188.714, + "total_deaths": 462.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 63.706, + "new_cases_per_million": 2.473, + "new_cases_smoothed_per_million": 1.722, + "total_deaths_per_million": 4.216, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 4167.0, + "total_tests": 72214.0, + "total_tests_per_thousand": 0.659, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 3240.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 17.169, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-25", + "total_cases": 7192.0, + "new_cases": 211.0, + "new_cases_smoothed": 187.714, + "total_deaths": 477.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 65.632, + "new_cases_per_million": 1.926, + "new_cases_smoothed_per_million": 1.713, + "total_deaths_per_million": 4.353, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.117, + "new_tests": 4417.0, + "total_tests": 76631.0, + "total_tests_per_thousand": 0.699, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 3349.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 17.840999999999998, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-26", + "total_cases": 7294.0, + "new_cases": 102.0, + "new_cases_smoothed": 172.429, + "total_deaths": 494.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 66.563, + "new_cases_per_million": 0.931, + "new_cases_smoothed_per_million": 1.574, + "total_deaths_per_million": 4.508, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 3876.0, + "total_tests": 80507.0, + "total_tests_per_thousand": 0.735, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 3571.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 20.71, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-27", + "total_cases": 7579.0, + "new_cases": 285.0, + "new_cases_smoothed": 188.571, + "total_deaths": 501.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 69.163, + "new_cases_per_million": 2.601, + "new_cases_smoothed_per_million": 1.721, + "total_deaths_per_million": 4.572, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 4428.0, + "total_tests": 84935.0, + "total_tests_per_thousand": 0.775, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 3872.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 20.533, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-28", + "total_cases": 7777.0, + "new_cases": 198.0, + "new_cases_smoothed": 188.286, + "total_deaths": 511.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 70.97, + "new_cases_per_million": 1.807, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 4.663, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 4434.0, + "total_tests": 89369.0, + "total_tests_per_thousand": 0.816, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 4095.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 21.749000000000002, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-29", + "total_cases": 7958.0, + "new_cases": 181.0, + "new_cases_smoothed": 194.143, + "total_deaths": 530.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 72.622, + "new_cases_per_million": 1.652, + "new_cases_smoothed_per_million": 1.772, + "total_deaths_per_million": 4.837, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 5019.0, + "total_tests": 94388.0, + "total_tests_per_thousand": 0.861, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 4295.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 22.123, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-30", + "total_cases": 8212.0, + "new_cases": 254.0, + "new_cases_smoothed": 214.571, + "total_deaths": 558.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 74.94, + "new_cases_per_million": 2.318, + "new_cases_smoothed_per_million": 1.958, + "total_deaths_per_million": 5.092, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 4802.0, + "total_tests": 99190.0, + "total_tests_per_thousand": 0.905, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 4449.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 20.734, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-05-01", + "total_cases": 8488.0, + "new_cases": 276.0, + "new_cases_smoothed": 215.286, + "total_deaths": 568.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 77.459, + "new_cases_per_million": 2.519, + "new_cases_smoothed_per_million": 1.965, + "total_deaths_per_million": 5.183, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.138, + "new_tests": 3932.0, + "total_tests": 103122.0, + "total_tests_per_thousand": 0.941, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 4415.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 20.508000000000003, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 8772.0, + "new_cases": 284.0, + "new_cases_smoothed": 225.714, + "total_deaths": 579.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 80.05, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 2.06, + "total_deaths_per_million": 5.284, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 5208.0, + "total_tests": 108330.0, + "total_tests_per_thousand": 0.989, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 4528.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 20.061, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 8928.0, + "new_cases": 156.0, + "new_cases_smoothed": 233.429, + "total_deaths": 603.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 81.474, + "new_cases_per_million": 1.424, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 5.503, + "new_deaths_per_million": 0.219, + "new_deaths_smoothed_per_million": 0.142, + "new_tests": 4487.0, + "total_tests": 112817.0, + "total_tests_per_thousand": 1.03, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 4616.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 19.775, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 9223.0, + "new_cases": 295.0, + "new_cases_smoothed": 234.857, + "total_deaths": 607.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 84.166, + "new_cases_per_million": 2.692, + "new_cases_smoothed_per_million": 2.143, + "total_deaths_per_million": 5.539, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.138, + "new_tests": 5464.0, + "total_tests": 118281.0, + "total_tests_per_thousand": 1.079, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 4764.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 20.285, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 9485.0, + "new_cases": 262.0, + "new_cases_smoothed": 244.0, + "total_deaths": 623.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 86.557, + "new_cases_per_million": 2.391, + "new_cases_smoothed_per_million": 2.227, + "total_deaths_per_million": 5.685, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 6555.0, + "total_tests": 124836.0, + "total_tests_per_thousand": 1.139, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 5067.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 20.766, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 9684.0, + "new_cases": 199.0, + "new_cases_smoothed": 246.571, + "total_deaths": 637.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 88.373, + "new_cases_per_million": 1.816, + "new_cases_smoothed_per_million": 2.25, + "total_deaths_per_million": 5.813, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.139, + "new_tests": 5137.0, + "total_tests": 129973.0, + "total_tests_per_thousand": 1.186, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 5084.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 20.619, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 10004.0, + "new_cases": 320.0, + "new_cases_smoothed": 256.0, + "total_deaths": 658.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 91.293, + "new_cases_per_million": 2.92, + "new_cases_smoothed_per_million": 2.336, + "total_deaths_per_million": 6.005, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 5401.0, + "total_tests": 135374.0, + "total_tests_per_thousand": 1.235, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 5169.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 20.191, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 10343.0, + "new_cases": 339.0, + "new_cases_smoothed": 265.0, + "total_deaths": 685.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 94.387, + "new_cases_per_million": 3.094, + "new_cases_smoothed_per_million": 2.418, + "total_deaths_per_million": 6.251, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 5532.0, + "total_tests": 140906.0, + "total_tests_per_thousand": 1.286, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 5398.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 20.37, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-09", + "total_cases": 10463.0, + "new_cases": 120.0, + "new_cases_smoothed": 241.571, + "total_deaths": 696.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 95.482, + "new_cases_per_million": 1.095, + "new_cases_smoothed_per_million": 2.204, + "total_deaths_per_million": 6.351, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 7130.0, + "total_tests": 148036.0, + "total_tests_per_thousand": 1.351, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 5672.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 23.48, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-10", + "total_cases": 10610.0, + "new_cases": 147.0, + "new_cases_smoothed": 240.286, + "total_deaths": 704.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 96.823, + "new_cases_per_million": 1.341, + "new_cases_smoothed_per_million": 2.193, + "total_deaths_per_million": 6.424, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 8757.0, + "total_tests": 156793.0, + "total_tests_per_thousand": 1.431, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 6282.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 26.144000000000002, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-11", + "total_cases": 10794.0, + "new_cases": 184.0, + "new_cases_smoothed": 224.429, + "total_deaths": 719.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 98.502, + "new_cases_per_million": 1.679, + "new_cases_smoothed_per_million": 2.048, + "total_deaths_per_million": 6.561, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 8514.0, + "total_tests": 165307.0, + "total_tests_per_thousand": 1.509, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 6718.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 29.934, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-12", + "total_cases": 11086.0, + "new_cases": 292.0, + "new_cases_smoothed": 228.714, + "total_deaths": 726.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 101.167, + "new_cases_per_million": 2.665, + "new_cases_smoothed_per_million": 2.087, + "total_deaths_per_million": 6.625, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.134, + "new_tests": 8512.0, + "total_tests": 173819.0, + "total_tests_per_thousand": 1.586, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 6998.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 30.596999999999998, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-13", + "total_cases": 11350.0, + "new_cases": 264.0, + "new_cases_smoothed": 238.0, + "total_deaths": 751.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 103.576, + "new_cases_per_million": 2.409, + "new_cases_smoothed_per_million": 2.172, + "total_deaths_per_million": 6.853, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 8766.0, + "total_tests": 182585.0, + "total_tests_per_thousand": 1.666, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 7516.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 31.58, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-14", + "total_cases": 11618.0, + "new_cases": 268.0, + "new_cases_smoothed": 230.571, + "total_deaths": 772.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 106.022, + "new_cases_per_million": 2.446, + "new_cases_smoothed_per_million": 2.104, + "total_deaths_per_million": 7.045, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 16620.0, + "total_tests": 199205.0, + "total_tests_per_thousand": 1.818, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 9119.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 39.55, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-15", + "total_cases": 11876.0, + "new_cases": 258.0, + "new_cases_smoothed": 219.0, + "total_deaths": 790.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 108.376, + "new_cases_per_million": 2.354, + "new_cases_smoothed_per_million": 1.999, + "total_deaths_per_million": 7.209, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 10529.0, + "total_tests": 209734.0, + "total_tests_per_thousand": 1.914, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 9833.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 44.9, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-16", + "total_cases": 12091.0, + "new_cases": 215.0, + "new_cases_smoothed": 232.571, + "total_deaths": 806.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 110.338, + "new_cases_per_million": 1.962, + "new_cases_smoothed_per_million": 2.122, + "total_deaths_per_million": 7.355, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 9490.0, + "total_tests": 219224.0, + "total_tests_per_thousand": 2.001, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 10170.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 43.729, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-17", + "total_cases": 12305.0, + "new_cases": 214.0, + "new_cases_smoothed": 242.143, + "total_deaths": 817.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 112.291, + "new_cases_per_million": 1.953, + "new_cases_smoothed_per_million": 2.21, + "total_deaths_per_million": 7.456, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 9095.0, + "total_tests": 228319.0, + "total_tests_per_thousand": 2.084, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 10218.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 42.198, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-18", + "total_cases": 12513.0, + "new_cases": 208.0, + "new_cases_smoothed": 245.571, + "total_deaths": 824.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 114.189, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 2.241, + "total_deaths_per_million": 7.52, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 5394.0, + "total_tests": 233713.0, + "total_tests_per_thousand": 2.133, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 9772.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 39.793, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-19", + "total_cases": 12718.0, + "new_cases": 205.0, + "new_cases_smoothed": 233.143, + "total_deaths": 831.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 116.06, + "new_cases_per_million": 1.871, + "new_cases_smoothed_per_million": 2.128, + "total_deaths_per_million": 7.583, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 7354.0, + "total_tests": 241067.0, + "total_tests_per_thousand": 2.2, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 9607.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 41.206, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-20", + "total_cases": 12942.0, + "new_cases": 224.0, + "new_cases_smoothed": 227.429, + "total_deaths": 837.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 118.104, + "new_cases_per_million": 2.044, + "new_cases_smoothed_per_million": 2.075, + "total_deaths_per_million": 7.638, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 8215.0, + "total_tests": 249282.0, + "total_tests_per_thousand": 2.275, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 9528.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 41.894, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-21", + "total_cases": 13221.0, + "new_cases": 279.0, + "new_cases_smoothed": 229.0, + "total_deaths": 842.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 120.65, + "new_cases_per_million": 2.546, + "new_cases_smoothed_per_million": 2.09, + "total_deaths_per_million": 7.684, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 8690.0, + "total_tests": 257972.0, + "total_tests_per_thousand": 2.354, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 8395.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 36.659, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-22", + "total_cases": 13434.0, + "new_cases": 213.0, + "new_cases_smoothed": 222.571, + "total_deaths": 846.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 122.594, + "new_cases_per_million": 1.944, + "new_cases_smoothed_per_million": 2.031, + "total_deaths_per_million": 7.72, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 8999.0, + "total_tests": 266971.0, + "total_tests_per_thousand": 2.436, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 8177.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 36.739000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-23", + "total_cases": 13597.0, + "new_cases": 163.0, + "new_cases_smoothed": 215.143, + "total_deaths": 857.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 124.082, + "new_cases_per_million": 1.487, + "new_cases_smoothed_per_million": 1.963, + "total_deaths_per_million": 7.821, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 7645.0, + "total_tests": 274616.0, + "total_tests_per_thousand": 2.506, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 7913.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 36.78, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-24", + "total_cases": 13777.0, + "new_cases": 180.0, + "new_cases_smoothed": 210.286, + "total_deaths": 863.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 125.724, + "new_cases_per_million": 1.643, + "new_cases_smoothed_per_million": 1.919, + "total_deaths_per_million": 7.875, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 5892.0, + "total_tests": 280508.0, + "total_tests_per_thousand": 2.56, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 7456.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 35.457, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-25", + "total_cases": 14035.0, + "new_cases": 258.0, + "new_cases_smoothed": 217.429, + "total_deaths": 868.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 128.079, + "new_cases_per_million": 2.354, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 7.921, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 5421.0, + "total_tests": 285929.0, + "total_tests_per_thousand": 2.609, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 7459.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 34.306, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-26", + "total_cases": 14319.0, + "new_cases": 284.0, + "new_cases_smoothed": 228.714, + "total_deaths": 873.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 130.67, + "new_cases_per_million": 2.592, + "new_cases_smoothed_per_million": 2.087, + "total_deaths_per_million": 7.967, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 7290.0, + "total_tests": 293219.0, + "total_tests_per_thousand": 2.676, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 7450.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 32.573, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-27", + "total_cases": 14669.0, + "new_cases": 350.0, + "new_cases_smoothed": 246.714, + "total_deaths": 886.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 133.864, + "new_cases_per_million": 3.194, + "new_cases_smoothed_per_million": 2.251, + "total_deaths_per_million": 8.085, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 7722.0, + "total_tests": 300941.0, + "total_tests_per_thousand": 2.746, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 7380.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 29.913, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-28", + "total_cases": 15049.0, + "new_cases": 380.0, + "new_cases_smoothed": 261.143, + "total_deaths": 904.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 137.332, + "new_cases_per_million": 3.468, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 8.25, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 9283.0, + "total_tests": 310224.0, + "total_tests_per_thousand": 2.831, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 7465.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 28.586, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-29", + "total_cases": 15588.0, + "new_cases": 539.0, + "new_cases_smoothed": 307.714, + "total_deaths": 921.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 142.251, + "new_cases_per_million": 4.919, + "new_cases_smoothed_per_million": 2.808, + "total_deaths_per_million": 8.405, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 8530.0, + "total_tests": 318754.0, + "total_tests_per_thousand": 2.909, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 7398.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 24.041999999999998, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-30", + "total_cases": 16634.0, + "new_cases": 1046.0, + "new_cases_smoothed": 433.857, + "total_deaths": 942.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 151.796, + "new_cases_per_million": 9.545, + "new_cases_smoothed_per_million": 3.959, + "total_deaths_per_million": 8.596, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 9390.0, + "total_tests": 328144.0, + "total_tests_per_thousand": 2.995, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 7647.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 17.625999999999998, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-05-31", + "total_cases": 17224.0, + "new_cases": 590.0, + "new_cases_smoothed": 492.429, + "total_deaths": 950.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 157.18, + "new_cases_per_million": 5.384, + "new_cases_smoothed_per_million": 4.494, + "total_deaths_per_million": 8.669, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 8973.0, + "total_tests": 337117.0, + "total_tests_per_thousand": 3.076, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 8087.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 16.423, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 18086.0, + "new_cases": 862.0, + "new_cases_smoothed": 578.714, + "total_deaths": 957.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 165.047, + "new_cases_per_million": 7.866, + "new_cases_smoothed_per_million": 5.281, + "total_deaths_per_million": 8.733, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 7453.0, + "total_tests": 344570.0, + "total_tests_per_thousand": 3.144, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 8377.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 14.475, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 18638.0, + "new_cases": 552.0, + "new_cases_smoothed": 617.0, + "total_deaths": 960.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 170.084, + "new_cases_per_million": 5.037, + "new_cases_smoothed_per_million": 5.631, + "total_deaths_per_million": 8.761, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 10655.0, + "total_tests": 355225.0, + "total_tests_per_thousand": 3.242, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 8858.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 14.357000000000001, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 18997.0, + "new_cases": 359.0, + "new_cases_smoothed": 618.286, + "total_deaths": 966.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 173.36, + "new_cases_per_million": 3.276, + "new_cases_smoothed_per_million": 5.642, + "total_deaths_per_million": 8.815, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 10743.0, + "total_tests": 365968.0, + "total_tests_per_thousand": 3.34, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 9290.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 15.025, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 19748.0, + "new_cases": 751.0, + "new_cases_smoothed": 671.286, + "total_deaths": 974.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 180.214, + "new_cases_per_million": 6.853, + "new_cases_smoothed_per_million": 6.126, + "total_deaths_per_million": 8.888, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.091, + "new_tests": 10358.0, + "total_tests": 376326.0, + "total_tests_per_thousand": 3.434, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 9443.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 14.067, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 20382.0, + "new_cases": 634.0, + "new_cases_smoothed": 684.857, + "total_deaths": 984.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 185.999, + "new_cases_per_million": 5.786, + "new_cases_smoothed_per_million": 6.25, + "total_deaths_per_million": 8.98, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 10449.0, + "total_tests": 386775.0, + "total_tests_per_thousand": 3.53, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 9717.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 14.187999999999999, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 20626.0, + "new_cases": 244.0, + "new_cases_smoothed": 570.286, + "total_deaths": 987.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 188.226, + "new_cases_per_million": 2.227, + "new_cases_smoothed_per_million": 5.204, + "total_deaths_per_million": 9.007, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 11932.0, + "total_tests": 398707.0, + "total_tests_per_thousand": 3.638, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 10080.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 17.675, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-07", + "total_cases": 21340.0, + "new_cases": 714.0, + "new_cases_smoothed": 588.0, + "total_deaths": 994.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 194.742, + "new_cases_per_million": 6.516, + "new_cases_smoothed_per_million": 5.366, + "total_deaths_per_million": 9.071, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 18744.0, + "total_tests": 417451.0, + "total_tests_per_thousand": 3.81, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 11476.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 19.517, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-08", + "total_cases": 21895.0, + "new_cases": 555.0, + "new_cases_smoothed": 544.143, + "total_deaths": 1003.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 199.806, + "new_cases_per_million": 5.065, + "new_cases_smoothed_per_million": 4.966, + "total_deaths_per_million": 9.153, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": -364.0, + "total_tests": 417087.0, + "total_tests_per_thousand": 3.806, + "new_tests_per_thousand": -0.003, + "new_tests_smoothed": 10360.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 19.039, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-09", + "total_cases": 22474.0, + "new_cases": 579.0, + "new_cases_smoothed": 548.0, + "total_deaths": 1011.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 205.09, + "new_cases_per_million": 5.284, + "new_cases_smoothed_per_million": 5.001, + "total_deaths_per_million": 9.226, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 11523.0, + "total_tests": 428610.0, + "total_tests_per_thousand": 3.911, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 10484.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 19.131, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 22992.0, + "new_cases": 518.0, + "new_cases_smoothed": 570.714, + "total_deaths": 1017.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 209.817, + "new_cases_per_million": 4.727, + "new_cases_smoothed_per_million": 5.208, + "total_deaths_per_million": 9.281, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9058.0, + "total_tests": 437668.0, + "total_tests_per_thousand": 3.994, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 10243.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 17.948, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 23732.0, + "new_cases": 740.0, + "new_cases_smoothed": 569.143, + "total_deaths": 1027.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 216.57, + "new_cases_per_million": 6.753, + "new_cases_smoothed_per_million": 5.194, + "total_deaths_per_million": 9.372, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 9927.0, + "total_tests": 447595.0, + "total_tests_per_thousand": 4.085, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 10181.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 17.887999999999998, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 24175.0, + "new_cases": 443.0, + "new_cases_smoothed": 541.857, + "total_deaths": 1036.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 220.613, + "new_cases_per_million": 4.043, + "new_cases_smoothed_per_million": 4.945, + "total_deaths_per_million": 9.454, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 11459.0, + "total_tests": 459054.0, + "total_tests_per_thousand": 4.189, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 10326.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 19.057000000000002, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-13", + "total_cases": 24787.0, + "new_cases": 612.0, + "new_cases_smoothed": 594.429, + "total_deaths": 1052.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 226.198, + "new_cases_per_million": 5.585, + "new_cases_smoothed_per_million": 5.425, + "total_deaths_per_million": 9.6, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 11631.0, + "total_tests": 470685.0, + "total_tests_per_thousand": 4.295, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 10283.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 17.299, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 25392.0, + "new_cases": 605.0, + "new_cases_smoothed": 578.857, + "total_deaths": 1074.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 231.719, + "new_cases_per_million": 5.521, + "new_cases_smoothed_per_million": 5.282, + "total_deaths_per_million": 9.801, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 8499.0, + "total_tests": 479184.0, + "total_tests_per_thousand": 4.373, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 8819.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 15.235, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-15", + "total_cases": 25930.0, + "new_cases": 538.0, + "new_cases_smoothed": 576.429, + "total_deaths": 1088.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 236.628, + "new_cases_per_million": 4.91, + "new_cases_smoothed_per_million": 5.26, + "total_deaths_per_million": 9.929, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 8648.0, + "total_tests": 487832.0, + "total_tests_per_thousand": 4.452, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 10106.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 17.532, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-16", + "total_cases": 26420.0, + "new_cases": 490.0, + "new_cases_smoothed": 563.714, + "total_deaths": 1098.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 241.1, + "new_cases_per_million": 4.472, + "new_cases_smoothed_per_million": 5.144, + "total_deaths_per_million": 10.02, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.113, + "new_tests": 9876.0, + "total_tests": 497708.0, + "total_tests_per_thousand": 4.542, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 9871.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 17.511, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-17", + "total_cases": 26781.0, + "new_cases": 361.0, + "new_cases_smoothed": 541.286, + "total_deaths": 1103.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 244.394, + "new_cases_per_million": 3.294, + "new_cases_smoothed_per_million": 4.94, + "total_deaths_per_million": 10.066, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 14715.0, + "total_tests": 512423.0, + "total_tests_per_thousand": 4.676, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 10679.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 19.729, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-18", + "total_cases": 27238.0, + "new_cases": 457.0, + "new_cases_smoothed": 500.857, + "total_deaths": 1108.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 248.565, + "new_cases_per_million": 4.17, + "new_cases_smoothed_per_million": 4.571, + "total_deaths_per_million": 10.111, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 11192.0, + "total_tests": 523615.0, + "total_tests_per_thousand": 4.778, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 10860.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 21.683000000000003, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-19", + "total_cases": 27799.0, + "new_cases": 561.0, + "new_cases_smoothed": 517.714, + "total_deaths": 1116.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 253.684, + "new_cases_per_million": 5.119, + "new_cases_smoothed_per_million": 4.724, + "total_deaths_per_million": 10.184, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 14933.0, + "total_tests": 538548.0, + "total_tests_per_thousand": 4.915, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 11356.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 21.935, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-20", + "total_cases": 28459.0, + "new_cases": 660.0, + "new_cases_smoothed": 524.571, + "total_deaths": 1130.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 259.707, + "new_cases_per_million": 6.023, + "new_cases_smoothed_per_million": 4.787, + "total_deaths_per_million": 10.312, + "new_deaths_per_million": 0.128, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 13205.0, + "total_tests": 551753.0, + "total_tests_per_thousand": 5.035, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 11581.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 22.076999999999998, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-21", + "total_cases": 29400.0, + "new_cases": 941.0, + "new_cases_smoothed": 572.571, + "total_deaths": 1150.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 268.294, + "new_cases_per_million": 8.587, + "new_cases_smoothed_per_million": 5.225, + "total_deaths_per_million": 10.495, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 11111.0, + "total_tests": 562864.0, + "total_tests_per_thousand": 5.137, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 11954.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 20.878, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-22", + "total_cases": 30052.0, + "new_cases": 652.0, + "new_cases_smoothed": 588.857, + "total_deaths": 1169.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 274.244, + "new_cases_per_million": 5.95, + "new_cases_smoothed_per_million": 5.374, + "total_deaths_per_million": 10.668, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 11731.0, + "total_tests": 574595.0, + "total_tests_per_thousand": 5.244, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 12395.0, + "new_tests_smoothed_per_thousand": 0.113, + "tests_per_case": 21.049, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-23", + "total_cases": 30682.0, + "new_cases": 630.0, + "new_cases_smoothed": 608.857, + "total_deaths": 1177.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 279.994, + "new_cases_per_million": 5.749, + "new_cases_smoothed_per_million": 5.556, + "total_deaths_per_million": 10.741, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 14993.0, + "total_tests": 589588.0, + "total_tests_per_thousand": 5.38, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 13126.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 21.558000000000003, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-24", + "total_cases": 31825.0, + "new_cases": 1143.0, + "new_cases_smoothed": 720.571, + "total_deaths": 1186.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 290.424, + "new_cases_per_million": 10.431, + "new_cases_smoothed_per_million": 6.576, + "total_deaths_per_million": 10.823, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.108, + "new_tests": 13063.0, + "total_tests": 602651.0, + "total_tests_per_thousand": 5.5, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 12890.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_per_case": 17.889, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-25", + "total_cases": 32295.0, + "new_cases": 470.0, + "new_cases_smoothed": 722.429, + "total_deaths": 1204.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 294.713, + "new_cases_per_million": 4.289, + "new_cases_smoothed_per_million": 6.593, + "total_deaths_per_million": 10.987, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.125, + "new_tests": 15004.0, + "total_tests": 617655.0, + "total_tests_per_thousand": 5.637, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 13434.0, + "new_tests_smoothed_per_thousand": 0.123, + "tests_per_case": 18.596, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-26", + "total_cases": 33069.0, + "new_cases": 774.0, + "new_cases_smoothed": 752.857, + "total_deaths": 1212.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 301.777, + "new_cases_per_million": 7.063, + "new_cases_smoothed_per_million": 6.87, + "total_deaths_per_million": 11.06, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.125, + "new_tests": 15918.0, + "total_tests": 633573.0, + "total_tests_per_thousand": 5.782, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 13575.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 18.031, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-27", + "total_cases": 34073.0, + "new_cases": 1004.0, + "new_cases_smoothed": 802.0, + "total_deaths": 1224.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 310.939, + "new_cases_per_million": 9.162, + "new_cases_smoothed_per_million": 7.319, + "total_deaths_per_million": 11.17, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 16747.0, + "total_tests": 650320.0, + "total_tests_per_thousand": 5.935, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 14081.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 17.557000000000002, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-28", + "total_cases": 34803.0, + "new_cases": 730.0, + "new_cases_smoothed": 771.857, + "total_deaths": 1236.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 317.6, + "new_cases_per_million": 6.662, + "new_cases_smoothed_per_million": 7.044, + "total_deaths_per_million": 11.279, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.112, + "new_tests": 14395.0, + "total_tests": 664715.0, + "total_tests_per_thousand": 6.066, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 14550.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 18.851, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-29", + "total_cases": 35455.0, + "new_cases": 652.0, + "new_cases_smoothed": 771.857, + "total_deaths": 1244.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 323.55, + "new_cases_per_million": 5.95, + "new_cases_smoothed_per_million": 7.044, + "total_deaths_per_million": 11.352, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 16904.0, + "total_tests": 681619.0, + "total_tests_per_thousand": 6.22, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 15289.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 19.808, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-30", + "total_cases": 36438.0, + "new_cases": 983.0, + "new_cases_smoothed": 822.286, + "total_deaths": 1255.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 332.521, + "new_cases_per_million": 8.971, + "new_cases_smoothed_per_million": 7.504, + "total_deaths_per_million": 11.453, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 14956.0, + "total_tests": 696575.0, + "total_tests_per_thousand": 6.357, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 15284.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 18.587, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-01", + "total_cases": 37514.0, + "new_cases": 1076.0, + "new_cases_smoothed": 812.714, + "total_deaths": 1266.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 342.34, + "new_cases_per_million": 9.819, + "new_cases_smoothed_per_million": 7.417, + "total_deaths_per_million": 11.553, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 18338.0, + "total_tests": 714913.0, + "total_tests_per_thousand": 6.524, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 16037.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_per_case": 19.733, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-02", + "total_cases": 38511.0, + "new_cases": 997.0, + "new_cases_smoothed": 888.0, + "total_deaths": 1270.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 351.438, + "new_cases_per_million": 9.098, + "new_cases_smoothed_per_million": 8.104, + "total_deaths_per_million": 11.59, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 17694.0, + "total_tests": 732607.0, + "total_tests_per_thousand": 6.686, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 16422.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 18.493, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-03", + "total_cases": 38805.0, + "new_cases": 294.0, + "new_cases_smoothed": 819.429, + "total_deaths": 1274.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 354.121, + "new_cases_per_million": 2.683, + "new_cases_smoothed_per_million": 7.478, + "total_deaths_per_million": 11.626, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 18820.0, + "total_tests": 751427.0, + "total_tests_per_thousand": 6.857, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 16836.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 20.546, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-04", + "total_cases": 40336.0, + "new_cases": 1531.0, + "new_cases_smoothed": 894.714, + "total_deaths": 1280.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 368.093, + "new_cases_per_million": 13.971, + "new_cases_smoothed_per_million": 8.165, + "total_deaths_per_million": 11.681, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 20868.0, + "total_tests": 772295.0, + "total_tests_per_thousand": 7.048, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 17425.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 19.475, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-05", + "total_cases": 41830.0, + "new_cases": 1494.0, + "new_cases_smoothed": 1003.857, + "total_deaths": 1290.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 381.726, + "new_cases_per_million": 13.634, + "new_cases_smoothed_per_million": 9.161, + "total_deaths_per_million": 11.772, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 15455.0, + "total_tests": 787750.0, + "total_tests_per_thousand": 7.189, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 17576.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 17.508, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-06", + "total_cases": 41830.0, + "new_cases": 0.0, + "new_cases_smoothed": 910.714, + "total_deaths": 1290.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 381.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.311, + "total_deaths_per_million": 11.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 17068.0, + "total_tests": 804818.0, + "total_tests_per_thousand": 7.344, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 17600.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 19.325, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-07-07", + "total_cases": 46333.0, + "new_cases": 4503.0, + "new_cases_smoothed": 1413.571, + "total_deaths": 1303.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 422.819, + "new_cases_per_million": 41.093, + "new_cases_smoothed_per_million": 12.9, + "total_deaths_per_million": 11.891, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 22319.0, + "total_tests": 827137.0, + "total_tests_per_thousand": 7.548, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 18652.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 13.195, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 47873.0, + "new_cases": 1540.0, + "new_cases_smoothed": 1479.857, + "total_deaths": 1309.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 436.873, + "new_cases_per_million": 14.054, + "new_cases_smoothed_per_million": 13.505, + "total_deaths_per_million": 11.945, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 21771.0, + "total_tests": 848908.0, + "total_tests_per_thousand": 7.747, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 19142.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 12.935, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 50359.0, + "new_cases": 2486.0, + "new_cases_smoothed": 1692.571, + "total_deaths": 1314.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 459.559, + "new_cases_per_million": 22.686, + "new_cases_smoothed_per_million": 15.446, + "total_deaths_per_million": 11.991, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 23876.0, + "total_tests": 872784.0, + "total_tests_per_thousand": 7.965, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 20025.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 11.831, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 51754.0, + "new_cases": 1395.0, + "new_cases_smoothed": 1849.857, + "total_deaths": 1318.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 472.29, + "new_cases_per_million": 12.73, + "new_cases_smoothed_per_million": 16.881, + "total_deaths_per_million": 12.028, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.057, + "new_tests": 22078.0, + "total_tests": 894862.0, + "total_tests_per_thousand": 8.166, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 20491.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 11.077, + "positive_rate": 0.09, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 52914.0, + "new_cases": 1160.0, + "new_cases_smoothed": 1796.857, + "total_deaths": 1360.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 482.875, + "new_cases_per_million": 10.586, + "new_cases_smoothed_per_million": 16.398, + "total_deaths_per_million": 12.411, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 24643.0, + "total_tests": 919505.0, + "total_tests_per_thousand": 8.391, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 21030.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 11.704, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 54222.0, + "new_cases": 1308.0, + "new_cases_smoothed": 1770.286, + "total_deaths": 1372.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 494.812, + "new_cases_per_million": 11.936, + "new_cases_smoothed_per_million": 16.155, + "total_deaths_per_million": 12.52, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.107, + "new_tests": 16293.0, + "total_tests": 935798.0, + "total_tests_per_thousand": 8.54, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 21150.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 11.947000000000001, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 56259.0, + "new_cases": 2037.0, + "new_cases_smoothed": 2061.286, + "total_deaths": 1534.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 34.857, + "total_cases_per_million": 513.401, + "new_cases_per_million": 18.589, + "new_cases_smoothed_per_million": 18.811, + "total_deaths_per_million": 13.999, + "new_deaths_per_million": 1.478, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 18463.0, + "total_tests": 954261.0, + "total_tests_per_thousand": 8.708, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 21349.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 10.357000000000001, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 57006.0, + "new_cases": 747.0, + "new_cases_smoothed": 1524.714, + "total_deaths": 1599.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 42.286, + "total_cases_per_million": 520.218, + "new_cases_per_million": 6.817, + "new_cases_smoothed_per_million": 13.914, + "total_deaths_per_million": 14.592, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.386, + "new_tests": 20320.0, + "total_tests": 974581.0, + "total_tests_per_thousand": 8.894, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 21063.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 13.814, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 57545.0, + "new_cases": 539.0, + "new_cases_smoothed": 1381.714, + "total_deaths": 1603.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 525.136, + "new_cases_per_million": 4.919, + "new_cases_smoothed_per_million": 12.609, + "total_deaths_per_million": 14.628, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.383, + "new_tests": 22280.0, + "total_tests": 996861.0, + "total_tests_per_thousand": 9.097, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 21136.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 15.297, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 58850.0, + "new_cases": 1305.0, + "new_cases_smoothed": 1213.0, + "total_deaths": 1614.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 537.045, + "new_cases_per_million": 11.909, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 14.729, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 26932.0, + "total_tests": 1023793.0, + "total_tests_per_thousand": 9.343, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 21573.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 17.785, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 61266.0, + "new_cases": 2416.0, + "new_cases_smoothed": 1358.857, + "total_deaths": 1643.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 46.429, + "total_cases_per_million": 559.093, + "new_cases_per_million": 22.048, + "new_cases_smoothed_per_million": 12.4, + "total_deaths_per_million": 14.993, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.424, + "new_tests": 26921.0, + "total_tests": 1050714.0, + "total_tests_per_thousand": 9.588, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 22265.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 16.385, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 63001.0, + "new_cases": 1735.0, + "new_cases_smoothed": 1441.0, + "total_deaths": 1660.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 574.926, + "new_cases_per_million": 15.833, + "new_cases_smoothed_per_million": 13.15, + "total_deaths_per_million": 15.149, + "new_deaths_per_million": 0.155, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 26696.0, + "total_tests": 1077410.0, + "total_tests_per_thousand": 9.832, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 22558.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 15.654000000000002, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 65304.0, + "new_cases": 2303.0, + "new_cases_smoothed": 1583.143, + "total_deaths": 1773.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 57.286, + "total_cases_per_million": 595.942, + "new_cases_per_million": 21.016, + "new_cases_smoothed_per_million": 14.447, + "total_deaths_per_million": 16.18, + "new_deaths_per_million": 1.031, + "new_deaths_smoothed_per_million": 0.523, + "new_tests": 21579.0, + "total_tests": 1098989.0, + "total_tests_per_thousand": 10.029, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 23313.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 14.725999999999999, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 67456.0, + "new_cases": 2152.0, + "new_cases_smoothed": 1599.571, + "total_deaths": 1831.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 615.581, + "new_cases_per_million": 19.638, + "new_cases_smoothed_per_million": 14.597, + "total_deaths_per_million": 16.709, + "new_deaths_per_million": 0.529, + "new_deaths_smoothed_per_million": 0.387, + "new_tests": 21774.0, + "total_tests": 1120763.0, + "total_tests_per_thousand": 10.228, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 23786.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 14.87, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 68898.0, + "new_cases": 1442.0, + "new_cases_smoothed": 1698.857, + "total_deaths": 1835.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 628.74, + "new_cases_per_million": 13.159, + "new_cases_smoothed_per_million": 15.503, + "total_deaths_per_million": 16.746, + "new_deaths_per_million": 0.037, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 26087.0, + "total_tests": 1146850.0, + "total_tests_per_thousand": 10.466, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 24610.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 14.485999999999999, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 70764.0, + "new_cases": 1866.0, + "new_cases_smoothed": 1888.429, + "total_deaths": 1837.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 645.768, + "new_cases_per_million": 17.028, + "new_cases_smoothed_per_million": 17.233, + "total_deaths_per_million": 16.764, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.305, + "new_tests": 29325.0, + "total_tests": 1176175.0, + "total_tests_per_thousand": 10.733, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 25616.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 13.565, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 72269.0, + "new_cases": 1505.0, + "new_cases_smoothed": 1917.0, + "total_deaths": 1843.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 659.503, + "new_cases_per_million": 13.734, + "new_cases_smoothed_per_million": 17.494, + "total_deaths_per_million": 16.819, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.299, + "new_tests": 30745.0, + "total_tests": 1206920.0, + "total_tests_per_thousand": 11.014, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 26161.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 13.647, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-24", + "total_cases": 74390.0, + "new_cases": 2121.0, + "new_cases_smoothed": 1874.857, + "total_deaths": 1871.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 32.571, + "total_cases_per_million": 678.858, + "new_cases_per_million": 19.356, + "new_cases_smoothed_per_million": 17.109, + "total_deaths_per_million": 17.074, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 31965.0, + "total_tests": 1238885.0, + "total_tests_per_thousand": 11.306, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 26882.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 14.338, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-25", + "total_cases": 76444.0, + "new_cases": 2054.0, + "new_cases_smoothed": 1920.429, + "total_deaths": 1879.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 697.602, + "new_cases_per_million": 18.744, + "new_cases_smoothed_per_million": 17.525, + "total_deaths_per_million": 17.147, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 36295.0, + "total_tests": 1275180.0, + "total_tests_per_thousand": 11.637, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 28253.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 14.712, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-26", + "total_cases": 78412.0, + "new_cases": 1968.0, + "new_cases_smoothed": 1872.571, + "total_deaths": 1897.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 715.561, + "new_cases_per_million": 17.959, + "new_cases_smoothed_per_million": 17.088, + "total_deaths_per_million": 17.311, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 26295.0, + "total_tests": 1301475.0, + "total_tests_per_thousand": 11.877, + "new_tests_per_thousand": 0.24, + "new_tests_smoothed": 28927.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 15.448, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-27", + "total_cases": 80448.0, + "new_cases": 2036.0, + "new_cases_smoothed": 1856.0, + "total_deaths": 1932.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 734.141, + "new_cases_per_million": 18.58, + "new_cases_smoothed_per_million": 16.937, + "total_deaths_per_million": 17.631, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 29357.0, + "total_tests": 1330832.0, + "total_tests_per_thousand": 12.145, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 30010.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 16.169, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-28", + "total_cases": 82040.0, + "new_cases": 1592.0, + "new_cases_smoothed": 1877.429, + "total_deaths": 1945.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 748.669, + "new_cases_per_million": 14.528, + "new_cases_smoothed_per_million": 17.133, + "total_deaths_per_million": 17.749, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 29318.0, + "total_tests": 1360150.0, + "total_tests_per_thousand": 12.412, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 30471.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 16.23, + "positive_rate": 0.062, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-29", + "total_cases": 83673.0, + "new_cases": 1633.0, + "new_cases_smoothed": 1844.143, + "total_deaths": 1947.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 763.572, + "new_cases_per_million": 14.902, + "new_cases_smoothed_per_million": 16.829, + "total_deaths_per_million": 17.768, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 35951.0, + "total_tests": 1396101.0, + "total_tests_per_thousand": 12.74, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 31418.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 17.037, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-30", + "total_cases": 85486.0, + "new_cases": 1813.0, + "new_cases_smoothed": 1888.143, + "total_deaths": 1962.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 780.116, + "new_cases_per_million": 16.545, + "new_cases_smoothed_per_million": 17.231, + "total_deaths_per_million": 17.905, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.155, + "new_tests": 35952.0, + "total_tests": 1432053.0, + "total_tests_per_thousand": 13.068, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 32162.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 17.034000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-31", + "total_cases": 89374.0, + "new_cases": 3888.0, + "new_cases_smoothed": 2140.571, + "total_deaths": 1983.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 815.597, + "new_cases_per_million": 35.481, + "new_cases_smoothed_per_million": 19.534, + "total_deaths_per_million": 18.096, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.146, + "new_tests": 32070.0, + "total_tests": 1464123.0, + "total_tests_per_thousand": 13.361, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 32177.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 15.032, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-01", + "total_cases": 93354.0, + "new_cases": 3980.0, + "new_cases_smoothed": 2415.714, + "total_deaths": 2023.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 851.917, + "new_cases_per_million": 36.32, + "new_cases_smoothed_per_million": 22.045, + "total_deaths_per_million": 18.461, + "new_deaths_per_million": 0.365, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 30260.0, + "total_tests": 1494383.0, + "total_tests_per_thousand": 13.637, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 31315.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 12.963, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-02", + "total_cases": 98232.0, + "new_cases": 4878.0, + "new_cases_smoothed": 2831.429, + "total_deaths": 2039.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 896.432, + "new_cases_per_million": 44.515, + "new_cases_smoothed_per_million": 25.839, + "total_deaths_per_million": 18.607, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 23668.0, + "total_tests": 1518051.0, + "total_tests_per_thousand": 13.853, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 30939.0, + "new_tests_smoothed_per_thousand": 0.282, + "tests_per_case": 10.927, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-03", + "total_cases": 103185.0, + "new_cases": 4953.0, + "new_cases_smoothed": 3248.143, + "total_deaths": 2059.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 941.631, + "new_cases_per_million": 45.199, + "new_cases_smoothed_per_million": 29.641, + "total_deaths_per_million": 18.79, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 29835.0, + "total_tests": 1547886.0, + "total_tests_per_thousand": 14.125, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 31008.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 9.546, + "positive_rate": 0.105, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-04", + "total_cases": 106330.0, + "new_cases": 3145.0, + "new_cases_smoothed": 3470.0, + "total_deaths": 2104.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 970.332, + "new_cases_per_million": 28.7, + "new_cases_smoothed_per_million": 31.666, + "total_deaths_per_million": 19.2, + "new_deaths_per_million": 0.411, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 26487.0, + "total_tests": 1574373.0, + "total_tests_per_thousand": 14.367, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 30603.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 8.818999999999999, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-05", + "total_cases": 112593.0, + "new_cases": 6263.0, + "new_cases_smoothed": 4131.429, + "total_deaths": 2115.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 1027.486, + "new_cases_per_million": 57.154, + "new_cases_smoothed_per_million": 37.702, + "total_deaths_per_million": 19.301, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.219, + "new_tests": 28331.0, + "total_tests": 1602704.0, + "total_tests_per_thousand": 14.626, + "new_tests_per_thousand": 0.259, + "new_tests_smoothed": 29515.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 7.144, + "positive_rate": 0.14, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-06", + "total_cases": 115980.0, + "new_cases": 3387.0, + "new_cases_smoothed": 4356.286, + "total_deaths": 2123.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 1058.394, + "new_cases_per_million": 30.909, + "new_cases_smoothed_per_million": 39.754, + "total_deaths_per_million": 19.374, + "new_deaths_per_million": 0.073, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 31835.0, + "total_tests": 1634539.0, + "total_tests_per_thousand": 14.916, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 28927.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 6.64, + "positive_rate": 0.151, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-07", + "total_cases": 119460.0, + "new_cases": 3480.0, + "new_cases_smoothed": 4298.0, + "total_deaths": 2150.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 1090.152, + "new_cases_per_million": 31.757, + "new_cases_smoothed_per_million": 39.222, + "total_deaths_per_million": 19.62, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.218, + "new_tests": 37788.0, + "total_tests": 1672327.0, + "total_tests_per_thousand": 15.261, + "new_tests_per_thousand": 0.345, + "new_tests_smoothed": 29743.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 6.92, + "positive_rate": 0.145, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-08", + "total_cases": 122754.0, + "new_cases": 3294.0, + "new_cases_smoothed": 4200.0, + "total_deaths": 2168.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 1120.212, + "new_cases_per_million": 30.06, + "new_cases_smoothed_per_million": 38.328, + "total_deaths_per_million": 19.784, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 35690.0, + "total_tests": 1708017.0, + "total_tests_per_thousand": 15.587, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 30519.0, + "new_tests_smoothed_per_thousand": 0.279, + "tests_per_case": 7.266, + "positive_rate": 0.138, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-09", + "total_cases": 126885.0, + "new_cases": 4131.0, + "new_cases_smoothed": 4093.286, + "total_deaths": 2209.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 1157.91, + "new_cases_per_million": 37.698, + "new_cases_smoothed_per_million": 37.354, + "total_deaths_per_million": 20.159, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 28776.0, + "total_tests": 1736793.0, + "total_tests_per_thousand": 15.849, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 31249.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 7.6339999999999995, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-10", + "total_cases": 129913.0, + "new_cases": 3028.0, + "new_cases_smoothed": 3818.286, + "total_deaths": 2270.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 1185.542, + "new_cases_per_million": 27.633, + "new_cases_smoothed_per_million": 34.844, + "total_deaths_per_million": 20.715, + "new_deaths_per_million": 0.557, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 34349.0, + "total_tests": 1771142.0, + "total_tests_per_thousand": 16.163, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 31894.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 8.353, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-11", + "total_cases": 136638.0, + "new_cases": 6725.0, + "new_cases_smoothed": 4329.714, + "total_deaths": 2293.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 1246.912, + "new_cases_per_million": 61.37, + "new_cases_smoothed_per_million": 39.512, + "total_deaths_per_million": 20.925, + "new_deaths_per_million": 0.21, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 26553.0, + "total_tests": 1797695.0, + "total_tests_per_thousand": 16.405, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 31903.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 7.367999999999999, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-12", + "total_cases": 139538.0, + "new_cases": 2900.0, + "new_cases_smoothed": 3849.286, + "total_deaths": 2312.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 1273.377, + "new_cases_per_million": 26.464, + "new_cases_smoothed_per_million": 35.127, + "total_deaths_per_million": 21.099, + "new_deaths_per_million": 0.173, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 31255.0, + "total_tests": 1828950.0, + "total_tests_per_thousand": 16.69, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 32321.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 8.397, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-13", + "total_cases": 143749.0, + "new_cases": 4211.0, + "new_cases_smoothed": 3967.0, + "total_deaths": 2404.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 1311.805, + "new_cases_per_million": 38.428, + "new_cases_smoothed_per_million": 36.202, + "total_deaths_per_million": 21.938, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.366, + "new_tests": 34159.0, + "total_tests": 1863109.0, + "total_tests_per_thousand": 17.002, + "new_tests_per_thousand": 0.312, + "new_tests_smoothed": 32653.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 8.231, + "positive_rate": 0.121, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-14", + "total_cases": 147526.0, + "new_cases": 3777.0, + "new_cases_smoothed": 4009.429, + "total_deaths": 2426.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 1346.272, + "new_cases_per_million": 34.468, + "new_cases_smoothed_per_million": 36.589, + "total_deaths_per_million": 22.139, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 36650.0, + "total_tests": 1899759.0, + "total_tests_per_thousand": 17.337, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 32490.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 8.103, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-15", + "total_cases": 153660.0, + "new_cases": 6134.0, + "new_cases_smoothed": 4415.143, + "total_deaths": 2442.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 1402.249, + "new_cases_per_million": 55.977, + "new_cases_smoothed_per_million": 40.291, + "total_deaths_per_million": 22.285, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.357, + "new_tests": 37499.0, + "total_tests": 1937258.0, + "total_tests_per_thousand": 17.679, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 32749.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 7.417000000000001, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-16", + "total_cases": 157918.0, + "new_cases": 4258.0, + "new_cases_smoothed": 4433.286, + "total_deaths": 2600.0, + "new_deaths": 158.0, + "new_deaths_smoothed": 55.857, + "total_cases_per_million": 1441.106, + "new_cases_per_million": 38.857, + "new_cases_smoothed_per_million": 40.457, + "total_deaths_per_million": 23.727, + "new_deaths_per_million": 1.442, + "new_deaths_smoothed_per_million": 0.51, + "new_tests": 29968.0, + "total_tests": 1967226.0, + "total_tests_per_thousand": 17.952, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 32919.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 7.425, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-17", + "total_cases": 161253.0, + "new_cases": 3335.0, + "new_cases_smoothed": 4477.143, + "total_deaths": 2665.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 56.429, + "total_cases_per_million": 1471.54, + "new_cases_per_million": 30.434, + "new_cases_smoothed_per_million": 40.857, + "total_deaths_per_million": 24.32, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.515, + "new_tests": 31447.0, + "total_tests": 1998673.0, + "total_tests_per_thousand": 18.239, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 32504.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 7.26, + "positive_rate": 0.138, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-18", + "total_cases": 164474.0, + "new_cases": 3221.0, + "new_cases_smoothed": 3976.571, + "total_deaths": 2681.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 55.429, + "total_cases_per_million": 1500.934, + "new_cases_per_million": 29.394, + "new_cases_smoothed_per_million": 36.289, + "total_deaths_per_million": 24.466, + "new_deaths_per_million": 0.146, + "new_deaths_smoothed_per_million": 0.506, + "new_tests": 31402.0, + "total_tests": 2030075.0, + "total_tests_per_thousand": 18.526, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 33197.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 8.347999999999999, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-08-19", + "total_cases": 169213.0, + "new_cases": 4739.0, + "new_cases_smoothed": 4239.286, + "total_deaths": 2687.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 53.571, + "total_cases_per_million": 1544.181, + "new_cases_per_million": 43.247, + "new_cases_smoothed_per_million": 38.686, + "total_deaths_per_million": 24.521, + "new_deaths_per_million": 0.055, + "new_deaths_smoothed_per_million": 0.489, + "new_tests": 35816.0, + "total_tests": 2065891.0, + "total_tests_per_thousand": 18.853, + "new_tests_per_thousand": 0.327, + "new_tests_smoothed": 33849.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 7.985, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-20", + "total_cases": 173774.0, + "new_cases": 4561.0, + "new_cases_smoothed": 4289.286, + "total_deaths": 2795.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 55.857, + "total_cases_per_million": 1585.803, + "new_cases_per_million": 41.622, + "new_cases_smoothed_per_million": 39.143, + "total_deaths_per_million": 25.506, + "new_deaths_per_million": 0.986, + "new_deaths_smoothed_per_million": 0.51, + "new_tests": 34798.0, + "total_tests": 2100689.0, + "total_tests_per_thousand": 19.17, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 33940.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 7.912999999999999, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-21", + "total_cases": 178022.0, + "new_cases": 4248.0, + "new_cases_smoothed": 4356.571, + "total_deaths": 2883.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 65.286, + "total_cases_per_million": 1624.569, + "new_cases_per_million": 38.766, + "new_cases_smoothed_per_million": 39.757, + "total_deaths_per_million": 26.309, + "new_deaths_per_million": 0.803, + "new_deaths_smoothed_per_million": 0.596, + "new_tests": 38088.0, + "total_tests": 2138777.0, + "total_tests_per_thousand": 19.518, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 34145.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 7.837999999999999, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 182365.0, + "new_cases": 4343.0, + "new_cases_smoothed": 4100.714, + "total_deaths": 2940.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 71.143, + "total_cases_per_million": 1664.201, + "new_cases_per_million": 39.633, + "new_cases_smoothed_per_million": 37.422, + "total_deaths_per_million": 26.829, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.649, + "new_tests": 36096.0, + "total_tests": 2174873.0, + "total_tests_per_thousand": 19.847, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 33945.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 8.277999999999999, + "positive_rate": 0.121, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 187249.0, + "new_cases": 4884.0, + "new_cases_smoothed": 4190.143, + "total_deaths": 2966.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 52.286, + "total_cases_per_million": 1708.771, + "new_cases_per_million": 44.57, + "new_cases_smoothed_per_million": 38.238, + "total_deaths_per_million": 27.067, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 26554.0, + "total_tests": 2201427.0, + "total_tests_per_thousand": 20.089, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 33457.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 7.985, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-24", + "total_cases": 189601.0, + "new_cases": 2352.0, + "new_cases_smoothed": 4049.714, + "total_deaths": 2998.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 47.571, + "total_cases_per_million": 1730.235, + "new_cases_per_million": 21.464, + "new_cases_smoothed_per_million": 36.956, + "total_deaths_per_million": 27.359, + "new_deaths_per_million": 0.292, + "new_deaths_smoothed_per_million": 0.434, + "new_tests": 28107.0, + "total_tests": 2229534.0, + "total_tests_per_thousand": 20.346, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 32980.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 8.144, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 194252.0, + "new_cases": 4651.0, + "new_cases_smoothed": 4254.0, + "total_deaths": 3010.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 47.0, + "total_cases_per_million": 1772.678, + "new_cases_per_million": 42.443, + "new_cases_smoothed_per_million": 38.821, + "total_deaths_per_million": 27.468, + "new_deaths_per_million": 0.11, + "new_deaths_smoothed_per_million": 0.429, + "new_tests": 27223.0, + "total_tests": 2256757.0, + "total_tests_per_thousand": 20.594, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 32383.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 7.612, + "positive_rate": 0.131, + "tests_units": "people tested" + }, + { + "date": "2020-08-26", + "total_cases": 197164.0, + "new_cases": 2912.0, + "new_cases_smoothed": 3993.0, + "total_deaths": 3038.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 50.143, + "total_cases_per_million": 1799.252, + "new_cases_per_million": 26.574, + "new_cases_smoothed_per_million": 36.439, + "total_deaths_per_million": 27.724, + "new_deaths_per_million": 0.256, + "new_deaths_smoothed_per_million": 0.458, + "new_tests": 37701.0, + "total_tests": 2294458.0, + "total_tests_per_thousand": 20.938, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 32652.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 8.177, + "positive_rate": 0.122, + "tests_units": "people tested" + }, + { + "date": "2020-08-27", + "total_cases": 202361.0, + "new_cases": 5197.0, + "new_cases_smoothed": 4083.857, + "total_deaths": 3137.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 48.857, + "total_cases_per_million": 1846.678, + "new_cases_per_million": 47.426, + "new_cases_smoothed_per_million": 37.268, + "total_deaths_per_million": 28.627, + "new_deaths_per_million": 0.903, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 38976.0, + "total_tests": 2333434.0, + "total_tests_per_thousand": 21.294, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 33249.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 8.142000000000001, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-08-28", + "total_cases": 205581.0, + "new_cases": 3220.0, + "new_cases_smoothed": 3937.0, + "total_deaths": 3234.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 50.143, + "total_cases_per_million": 1876.063, + "new_cases_per_million": 29.385, + "new_cases_smoothed_per_million": 35.928, + "total_deaths_per_million": 29.512, + "new_deaths_per_million": 0.885, + "new_deaths_smoothed_per_million": 0.458, + "new_tests": 36097.0, + "total_tests": 2369531.0, + "total_tests_per_thousand": 21.624, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 32965.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 8.373, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 209544.0, + "new_cases": 3963.0, + "new_cases_smoothed": 3882.714, + "total_deaths": 3325.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 55.0, + "total_cases_per_million": 1912.228, + "new_cases_per_million": 36.165, + "new_cases_smoothed_per_million": 35.432, + "total_deaths_per_million": 30.343, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.502, + "new_tests": 33979.0, + "total_tests": 2403510.0, + "total_tests_per_thousand": 21.934, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 32662.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 8.412, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 213131.0, + "new_cases": 3587.0, + "new_cases_smoothed": 3697.429, + "total_deaths": 3419.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 64.714, + "total_cases_per_million": 1944.962, + "new_cases_per_million": 32.734, + "new_cases_smoothed_per_million": 33.741, + "total_deaths_per_million": 31.201, + "new_deaths_per_million": 0.858, + "new_deaths_smoothed_per_million": 0.591 + }, + { + "date": "2020-08-31", + "total_cases": 217396.0, + "new_cases": 4265.0, + "new_cases_smoothed": 3970.714, + "total_deaths": 3520.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 74.571, + "total_cases_per_million": 1983.883, + "new_cases_per_million": 38.921, + "new_cases_smoothed_per_million": 36.235, + "total_deaths_per_million": 32.122, + "new_deaths_per_million": 0.922, + "new_deaths_smoothed_per_million": 0.681 + }, + { + "date": "2020-09-01", + "total_cases": 220819.0, + "new_cases": 3423.0, + "new_cases_smoothed": 3795.286, + "total_deaths": 3563.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 79.0, + "total_cases_per_million": 2015.12, + "new_cases_per_million": 31.237, + "new_cases_smoothed_per_million": 34.634, + "total_deaths_per_million": 32.515, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.721 + }, + { + "date": "2020-09-02", + "total_cases": 224264.0, + "new_cases": 3445.0, + "new_cases_smoothed": 3871.429, + "total_deaths": 3597.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 79.857, + "total_cases_per_million": 2046.558, + "new_cases_per_million": 31.438, + "new_cases_smoothed_per_million": 35.329, + "total_deaths_per_million": 32.825, + "new_deaths_per_million": 0.31, + "new_deaths_smoothed_per_million": 0.729 + }, + { + "date": "2020-09-03", + "total_cases": 226440.0, + "new_cases": 2176.0, + "new_cases_smoothed": 3439.857, + "total_deaths": 3623.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 69.429, + "total_cases_per_million": 2066.415, + "new_cases_per_million": 19.857, + "new_cases_smoothed_per_million": 31.391, + "total_deaths_per_million": 33.062, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.634 + }, + { + "date": "2020-09-04", + "total_cases": 228403.0, + "new_cases": 1963.0, + "new_cases_smoothed": 3260.286, + "total_deaths": 3688.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 64.857, + "total_cases_per_million": 2084.329, + "new_cases_per_million": 17.914, + "new_cases_smoothed_per_million": 29.752, + "total_deaths_per_million": 33.655, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.592 + }, + { + "date": "2020-09-05", + "total_cases": 228403.0, + "new_cases": 0.0, + "new_cases_smoothed": 2694.143, + "total_deaths": 3688.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 51.857, + "total_cases_per_million": 2084.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.586, + "total_deaths_per_million": 33.655, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.473 + } + ] + }, + "POL": { + "continent": "Europe", + "location": "Poland", + "population": 37846605.0, + "population_density": 124.027, + "median_age": 41.8, + "aged_65_older": 16.763, + "aged_70_older": 10.202, + "gdp_per_capita": 27216.445, + "cardiovasc_death_rate": 227.331, + "diabetes_prevalence": 5.91, + "female_smokers": 23.3, + "male_smokers": 33.1, + "hospital_beds_per_thousand": 6.62, + "life_expectancy": 78.73, + "data": [ + { + "date": "2020-03-04", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.026, + "new_cases_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.132, + "new_cases_per_million": 0.106, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 6.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.159, + "new_cases_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 11.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.291, + "new_cases_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "total_cases": 17.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.159, + "new_cases_smoothed_per_million": 0.064, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 22.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.581, + "new_cases_per_million": 0.132, + "new_cases_smoothed_per_million": 0.079, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 31.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.819, + "new_cases_per_million": 0.238, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-13", + "total_cases": 49.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.295, + "new_cases_per_million": 0.476, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.026, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 41.67 + }, + { + "date": "2020-03-14", + "total_cases": 68.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.797, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.238, + "total_deaths_per_million": 0.053, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 49.07 + }, + { + "date": "2020-03-15", + "total_cases": 104.0, + "new_cases": 36.0, + "new_cases_smoothed": 14.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2.748, + "new_cases_per_million": 0.951, + "new_cases_smoothed_per_million": 0.37, + "total_deaths_per_million": 0.079, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-03-16", + "total_cases": 125.0, + "new_cases": 21.0, + "new_cases_smoothed": 16.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.303, + "new_cases_per_million": 0.555, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.079, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-03-17", + "total_cases": 177.0, + "new_cases": 52.0, + "new_cases_smoothed": 22.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.677, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 0.604, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-03-18", + "total_cases": 238.0, + "new_cases": 61.0, + "new_cases_smoothed": 30.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6.289, + "new_cases_per_million": 1.612, + "new_cases_smoothed_per_million": 0.815, + "total_deaths_per_million": 0.132, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 57.41 + }, + { + "date": "2020-03-19", + "total_cases": 287.0, + "new_cases": 49.0, + "new_cases_smoothed": 36.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7.583, + "new_cases_per_million": 1.295, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 0.132, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 57.41 + }, + { + "date": "2020-03-20", + "total_cases": 355.0, + "new_cases": 68.0, + "new_cases_smoothed": 43.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9.38, + "new_cases_per_million": 1.797, + "new_cases_smoothed_per_million": 1.155, + "total_deaths_per_million": 0.132, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-03-21", + "total_cases": 425.0, + "new_cases": 70.0, + "new_cases_smoothed": 51.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.23, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 0.132, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 57.41 + }, + { + "date": "2020-03-22", + "total_cases": 536.0, + "new_cases": 111.0, + "new_cases_smoothed": 61.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.162, + "new_cases_per_million": 2.933, + "new_cases_smoothed_per_million": 1.631, + "total_deaths_per_million": 0.132, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 57.41 + }, + { + "date": "2020-03-23", + "total_cases": 634.0, + "new_cases": 98.0, + "new_cases_smoothed": 72.714, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 16.752, + "new_cases_per_million": 2.589, + "new_cases_smoothed_per_million": 1.921, + "total_deaths_per_million": 0.185, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-03-24", + "total_cases": 749.0, + "new_cases": 115.0, + "new_cases_smoothed": 81.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 19.79, + "new_cases_per_million": 3.039, + "new_cases_smoothed_per_million": 2.159, + "total_deaths_per_million": 0.211, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 57.41 + }, + { + "date": "2020-03-25", + "total_cases": 901.0, + "new_cases": 152.0, + "new_cases_smoothed": 94.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 23.807, + "new_cases_per_million": 4.016, + "new_cases_smoothed_per_million": 2.503, + "total_deaths_per_million": 0.264, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 57.41 + }, + { + "date": "2020-03-26", + "total_cases": 1051.0, + "new_cases": 150.0, + "new_cases_smoothed": 109.143, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.77, + "new_cases_per_million": 3.963, + "new_cases_smoothed_per_million": 2.884, + "total_deaths_per_million": 0.37, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 1221.0, + "new_cases": 170.0, + "new_cases_smoothed": 123.714, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 32.262, + "new_cases_per_million": 4.492, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 57.41 + }, + { + "date": "2020-03-28", + "total_cases": 1389.0, + "new_cases": 168.0, + "new_cases_smoothed": 137.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 36.701, + "new_cases_per_million": 4.439, + "new_cases_smoothed_per_million": 3.639, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 57.41 + }, + { + "date": "2020-03-29", + "total_cases": 1638.0, + "new_cases": 249.0, + "new_cases_smoothed": 157.429, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 43.28, + "new_cases_per_million": 6.579, + "new_cases_smoothed_per_million": 4.16, + "total_deaths_per_million": 0.476, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 57.41 + }, + { + "date": "2020-03-30", + "total_cases": 1862.0, + "new_cases": 224.0, + "new_cases_smoothed": 175.429, + "total_deaths": 22.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 49.199, + "new_cases_per_million": 5.919, + "new_cases_smoothed_per_million": 4.635, + "total_deaths_per_million": 0.581, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 57.41 + }, + { + "date": "2020-03-31", + "total_cases": 2055.0, + "new_cases": 193.0, + "new_cases_smoothed": 186.571, + "total_deaths": 31.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 54.298, + "new_cases_per_million": 5.1, + "new_cases_smoothed_per_million": 4.93, + "total_deaths_per_million": 0.819, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 81.48 + }, + { + "date": "2020-04-01", + "total_cases": 2311.0, + "new_cases": 256.0, + "new_cases_smoothed": 201.429, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 61.062, + "new_cases_per_million": 6.764, + "new_cases_smoothed_per_million": 5.322, + "total_deaths_per_million": 0.872, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.087, + "stringency_index": 81.48 + }, + { + "date": "2020-04-02", + "total_cases": 2554.0, + "new_cases": 243.0, + "new_cases_smoothed": 214.714, + "total_deaths": 43.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 67.483, + "new_cases_per_million": 6.421, + "new_cases_smoothed_per_million": 5.673, + "total_deaths_per_million": 1.136, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.109, + "stringency_index": 81.48 + }, + { + "date": "2020-04-03", + "total_cases": 2946.0, + "new_cases": 392.0, + "new_cases_smoothed": 246.429, + "total_deaths": 57.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 77.841, + "new_cases_per_million": 10.358, + "new_cases_smoothed_per_million": 6.511, + "total_deaths_per_million": 1.506, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 81.48 + }, + { + "date": "2020-04-04", + "total_cases": 3383.0, + "new_cases": 437.0, + "new_cases_smoothed": 284.857, + "total_deaths": 71.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 89.387, + "new_cases_per_million": 11.547, + "new_cases_smoothed_per_million": 7.527, + "total_deaths_per_million": 1.876, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.208, + "stringency_index": 81.48 + }, + { + "date": "2020-04-05", + "total_cases": 3627.0, + "new_cases": 244.0, + "new_cases_smoothed": 284.143, + "total_deaths": 79.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 95.834, + "new_cases_per_million": 6.447, + "new_cases_smoothed_per_million": 7.508, + "total_deaths_per_million": 2.087, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.23, + "stringency_index": 81.48 + }, + { + "date": "2020-04-06", + "total_cases": 4102.0, + "new_cases": 475.0, + "new_cases_smoothed": 320.0, + "total_deaths": 94.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 108.385, + "new_cases_per_million": 12.551, + "new_cases_smoothed_per_million": 8.455, + "total_deaths_per_million": 2.484, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 81.48 + }, + { + "date": "2020-04-07", + "total_cases": 4413.0, + "new_cases": 311.0, + "new_cases_smoothed": 336.857, + "total_deaths": 107.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 116.602, + "new_cases_per_million": 8.217, + "new_cases_smoothed_per_million": 8.901, + "total_deaths_per_million": 2.827, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.287, + "stringency_index": 81.48 + }, + { + "date": "2020-04-08", + "total_cases": 4848.0, + "new_cases": 435.0, + "new_cases_smoothed": 362.429, + "total_deaths": 129.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 128.096, + "new_cases_per_million": 11.494, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 3.408, + "new_deaths_per_million": 0.581, + "new_deaths_smoothed_per_million": 0.362, + "stringency_index": 81.48 + }, + { + "date": "2020-04-09", + "total_cases": 5205.0, + "new_cases": 357.0, + "new_cases_smoothed": 378.714, + "total_deaths": 159.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 137.529, + "new_cases_per_million": 9.433, + "new_cases_smoothed_per_million": 10.007, + "total_deaths_per_million": 4.201, + "new_deaths_per_million": 0.793, + "new_deaths_smoothed_per_million": 0.438, + "stringency_index": 83.33 + }, + { + "date": "2020-04-10", + "total_cases": 5575.0, + "new_cases": 370.0, + "new_cases_smoothed": 375.571, + "total_deaths": 174.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 147.305, + "new_cases_per_million": 9.776, + "new_cases_smoothed_per_million": 9.924, + "total_deaths_per_million": 4.598, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.442, + "stringency_index": 83.33 + }, + { + "date": "2020-04-11", + "total_cases": 5955.0, + "new_cases": 380.0, + "new_cases_smoothed": 367.429, + "total_deaths": 181.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 157.346, + "new_cases_per_million": 10.041, + "new_cases_smoothed_per_million": 9.708, + "total_deaths_per_million": 4.782, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.415, + "stringency_index": 83.33 + }, + { + "date": "2020-04-12", + "total_cases": 6356.0, + "new_cases": 401.0, + "new_cases_smoothed": 389.857, + "total_deaths": 208.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 167.941, + "new_cases_per_million": 10.595, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 5.496, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 83.33 + }, + { + "date": "2020-04-13", + "total_cases": 6674.0, + "new_cases": 318.0, + "new_cases_smoothed": 367.429, + "total_deaths": 232.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 176.343, + "new_cases_per_million": 8.402, + "new_cases_smoothed_per_million": 9.708, + "total_deaths_per_million": 6.13, + "new_deaths_per_million": 0.634, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 83.33 + }, + { + "date": "2020-04-14", + "total_cases": 6934.0, + "new_cases": 260.0, + "new_cases_smoothed": 360.143, + "total_deaths": 245.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 183.213, + "new_cases_per_million": 6.87, + "new_cases_smoothed_per_million": 9.516, + "total_deaths_per_million": 6.474, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 83.33 + }, + { + "date": "2020-04-15", + "total_cases": 7202.0, + "new_cases": 268.0, + "new_cases_smoothed": 336.286, + "total_deaths": 263.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 190.294, + "new_cases_per_million": 7.081, + "new_cases_smoothed_per_million": 8.885, + "total_deaths_per_million": 6.949, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.506, + "stringency_index": 83.33 + }, + { + "date": "2020-04-16", + "total_cases": 7582.0, + "new_cases": 380.0, + "new_cases_smoothed": 339.571, + "total_deaths": 286.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 200.335, + "new_cases_per_million": 10.041, + "new_cases_smoothed_per_million": 8.972, + "total_deaths_per_million": 7.557, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.479, + "stringency_index": 83.33 + }, + { + "date": "2020-04-17", + "total_cases": 7918.0, + "new_cases": 336.0, + "new_cases_smoothed": 334.714, + "total_deaths": 314.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 209.213, + "new_cases_per_million": 8.878, + "new_cases_smoothed_per_million": 8.844, + "total_deaths_per_million": 8.297, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.528, + "stringency_index": 83.33 + }, + { + "date": "2020-04-18", + "total_cases": 8379.0, + "new_cases": 461.0, + "new_cases_smoothed": 346.286, + "total_deaths": 332.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 221.394, + "new_cases_per_million": 12.181, + "new_cases_smoothed_per_million": 9.15, + "total_deaths_per_million": 8.772, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.57, + "stringency_index": 83.33 + }, + { + "date": "2020-04-19", + "total_cases": 8742.0, + "new_cases": 363.0, + "new_cases_smoothed": 340.857, + "total_deaths": 347.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 230.985, + "new_cases_per_million": 9.591, + "new_cases_smoothed_per_million": 9.006, + "total_deaths_per_million": 9.169, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.525, + "stringency_index": 83.33 + }, + { + "date": "2020-04-20", + "total_cases": 9287.0, + "new_cases": 545.0, + "new_cases_smoothed": 373.286, + "total_deaths": 360.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 245.385, + "new_cases_per_million": 14.4, + "new_cases_smoothed_per_million": 9.863, + "total_deaths_per_million": 9.512, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.483, + "stringency_index": 83.33 + }, + { + "date": "2020-04-21", + "total_cases": 9593.0, + "new_cases": 306.0, + "new_cases_smoothed": 379.857, + "total_deaths": 380.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 253.471, + "new_cases_per_million": 8.085, + "new_cases_smoothed_per_million": 10.037, + "total_deaths_per_million": 10.041, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.51, + "stringency_index": 83.33 + }, + { + "date": "2020-04-22", + "total_cases": 9856.0, + "new_cases": 263.0, + "new_cases_smoothed": 379.143, + "total_deaths": 401.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 260.42, + "new_cases_per_million": 6.949, + "new_cases_smoothed_per_million": 10.018, + "total_deaths_per_million": 10.595, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 83.33 + }, + { + "date": "2020-04-23", + "total_cases": 10169.0, + "new_cases": 313.0, + "new_cases_smoothed": 369.571, + "total_deaths": 426.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 268.69, + "new_cases_per_million": 8.27, + "new_cases_smoothed_per_million": 9.765, + "total_deaths_per_million": 11.256, + "new_deaths_per_million": 0.661, + "new_deaths_smoothed_per_million": 0.528, + "stringency_index": 83.33 + }, + { + "date": "2020-04-24", + "total_cases": 10511.0, + "new_cases": 342.0, + "new_cases_smoothed": 370.429, + "total_deaths": 454.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 277.726, + "new_cases_per_million": 9.036, + "new_cases_smoothed_per_million": 9.788, + "total_deaths_per_million": 11.996, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.528, + "stringency_index": 83.33 + }, + { + "date": "2020-04-25", + "total_cases": 10892.0, + "new_cases": 381.0, + "new_cases_smoothed": 359.0, + "total_deaths": 494.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 287.793, + "new_cases_per_million": 10.067, + "new_cases_smoothed_per_million": 9.486, + "total_deaths_per_million": 13.053, + "new_deaths_per_million": 1.057, + "new_deaths_smoothed_per_million": 0.611, + "stringency_index": 83.33 + }, + { + "date": "2020-04-26", + "total_cases": 11273.0, + "new_cases": 381.0, + "new_cases_smoothed": 361.571, + "total_deaths": 524.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 297.86, + "new_cases_per_million": 10.067, + "new_cases_smoothed_per_million": 9.554, + "total_deaths_per_million": 13.845, + "new_deaths_per_million": 0.793, + "new_deaths_smoothed_per_million": 0.668, + "stringency_index": 83.33 + }, + { + "date": "2020-04-27", + "total_cases": 11617.0, + "new_cases": 344.0, + "new_cases_smoothed": 332.857, + "total_deaths": 535.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 306.95, + "new_cases_per_million": 9.089, + "new_cases_smoothed_per_million": 8.795, + "total_deaths_per_million": 14.136, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.661, + "stringency_index": 83.33 + }, + { + "date": "2020-04-28", + "total_cases": 11902.0, + "new_cases": 285.0, + "new_cases_smoothed": 329.857, + "total_deaths": 562.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 26.0, + "total_cases_per_million": 314.48, + "new_cases_per_million": 7.53, + "new_cases_smoothed_per_million": 8.716, + "total_deaths_per_million": 14.849, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.687, + "total_tests": 281787.0, + "total_tests_per_thousand": 7.446, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-29", + "total_cases": 12218.0, + "new_cases": 316.0, + "new_cases_smoothed": 337.429, + "total_deaths": 596.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 322.829, + "new_cases_per_million": 8.349, + "new_cases_smoothed_per_million": 8.916, + "total_deaths_per_million": 15.748, + "new_deaths_per_million": 0.898, + "new_deaths_smoothed_per_million": 0.736, + "new_tests": 12802.0, + "total_tests": 294589.0, + "total_tests_per_thousand": 7.784, + "new_tests_per_thousand": 0.338, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-30", + "total_cases": 12640.0, + "new_cases": 422.0, + "new_cases_smoothed": 353.0, + "total_deaths": 624.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 333.98, + "new_cases_per_million": 11.15, + "new_cases_smoothed_per_million": 9.327, + "total_deaths_per_million": 16.488, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.747, + "new_tests": 12509.0, + "total_tests": 307098.0, + "total_tests_per_thousand": 8.114, + "new_tests_per_thousand": 0.331, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-01", + "total_cases": 12877.0, + "new_cases": 237.0, + "new_cases_smoothed": 338.0, + "total_deaths": 644.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 340.242, + "new_cases_per_million": 6.262, + "new_cases_smoothed_per_million": 8.931, + "total_deaths_per_million": 17.016, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.717, + "new_tests": 15651.0, + "total_tests": 322749.0, + "total_tests_per_thousand": 8.528, + "new_tests_per_thousand": 0.414, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-02", + "total_cases": 13105.0, + "new_cases": 228.0, + "new_cases_smoothed": 316.143, + "total_deaths": 651.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 22.429, + "total_cases_per_million": 346.266, + "new_cases_per_million": 6.024, + "new_cases_smoothed_per_million": 8.353, + "total_deaths_per_million": 17.201, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.593, + "new_tests": 10613.0, + "total_tests": 333362.0, + "total_tests_per_thousand": 8.808, + "new_tests_per_thousand": 0.28, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-03", + "total_cases": 13375.0, + "new_cases": 270.0, + "new_cases_smoothed": 300.286, + "total_deaths": 664.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 353.4, + "new_cases_per_million": 7.134, + "new_cases_smoothed_per_million": 7.934, + "total_deaths_per_million": 17.545, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.528, + "new_tests": 9382.0, + "total_tests": 342744.0, + "total_tests_per_thousand": 9.056, + "new_tests_per_thousand": 0.248, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-04", + "total_cases": 13693.0, + "new_cases": 318.0, + "new_cases_smoothed": 296.571, + "total_deaths": 678.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 361.803, + "new_cases_per_million": 8.402, + "new_cases_smoothed_per_million": 7.836, + "total_deaths_per_million": 17.914, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.54, + "new_tests": 7304.0, + "total_tests": 350048.0, + "total_tests_per_thousand": 9.249, + "new_tests_per_thousand": 0.193, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-05", + "total_cases": 14006.0, + "new_cases": 313.0, + "new_cases_smoothed": 300.571, + "total_deaths": 698.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 370.073, + "new_cases_per_million": 8.27, + "new_cases_smoothed_per_million": 7.942, + "total_deaths_per_million": 18.443, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.513, + "new_tests": 9642.0, + "total_tests": 359690.0, + "total_tests_per_thousand": 9.504, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 11129.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 37.025999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-06", + "total_cases": 14431.0, + "new_cases": 425.0, + "new_cases_smoothed": 316.143, + "total_deaths": 716.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 381.302, + "new_cases_per_million": 11.23, + "new_cases_smoothed_per_million": 8.353, + "total_deaths_per_million": 18.918, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.453, + "new_tests": 15004.0, + "total_tests": 374694.0, + "total_tests_per_thousand": 9.9, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 11444.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 36.199, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-07", + "total_cases": 14740.0, + "new_cases": 309.0, + "new_cases_smoothed": 300.0, + "total_deaths": 733.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 389.467, + "new_cases_per_million": 8.165, + "new_cases_smoothed_per_million": 7.927, + "total_deaths_per_million": 19.368, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 14382.0, + "total_tests": 389076.0, + "total_tests_per_thousand": 10.28, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 11711.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 39.037, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-08", + "total_cases": 15047.0, + "new_cases": 307.0, + "new_cases_smoothed": 310.0, + "total_deaths": 755.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 397.579, + "new_cases_per_million": 8.112, + "new_cases_smoothed_per_million": 8.191, + "total_deaths_per_million": 19.949, + "new_deaths_per_million": 0.581, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 16206.0, + "total_tests": 405282.0, + "total_tests_per_thousand": 10.709, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 11790.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 38.032, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-09", + "total_cases": 15366.0, + "new_cases": 319.0, + "new_cases_smoothed": 323.0, + "total_deaths": 776.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 406.007, + "new_cases_per_million": 8.429, + "new_cases_smoothed_per_million": 8.534, + "total_deaths_per_million": 20.504, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.472, + "new_tests": 15886.0, + "total_tests": 421168.0, + "total_tests_per_thousand": 11.128, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 12544.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 38.836, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-10", + "total_cases": 15651.0, + "new_cases": 285.0, + "new_cases_smoothed": 325.143, + "total_deaths": 785.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 413.538, + "new_cases_per_million": 7.53, + "new_cases_smoothed_per_million": 8.591, + "total_deaths_per_million": 20.742, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.457, + "new_tests": 15473.0, + "total_tests": 436641.0, + "total_tests_per_thousand": 11.537, + "new_tests_per_thousand": 0.409, + "new_tests_smoothed": 13414.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 41.256, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-11", + "total_cases": 15996.0, + "new_cases": 345.0, + "new_cases_smoothed": 329.0, + "total_deaths": 800.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 422.653, + "new_cases_per_million": 9.116, + "new_cases_smoothed_per_million": 8.693, + "total_deaths_per_million": 21.138, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.461, + "new_tests": 13613.0, + "total_tests": 450254.0, + "total_tests_per_thousand": 11.897, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 14315.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 43.511, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-12", + "total_cases": 16326.0, + "new_cases": 330.0, + "new_cases_smoothed": 331.429, + "total_deaths": 811.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 431.373, + "new_cases_per_million": 8.719, + "new_cases_smoothed_per_million": 8.757, + "total_deaths_per_million": 21.429, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.427, + "new_tests": 15722.0, + "total_tests": 465976.0, + "total_tests_per_thousand": 12.312, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 15184.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 45.81399999999999, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-13", + "total_cases": 16921.0, + "new_cases": 595.0, + "new_cases_smoothed": 355.714, + "total_deaths": 839.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 447.094, + "new_cases_per_million": 15.721, + "new_cases_smoothed_per_million": 9.399, + "total_deaths_per_million": 22.168, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.464, + "new_tests": 19193.0, + "total_tests": 485169.0, + "total_tests_per_thousand": 12.819, + "new_tests_per_thousand": 0.507, + "new_tests_smoothed": 15782.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 44.367, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-14", + "total_cases": 17204.0, + "new_cases": 283.0, + "new_cases_smoothed": 352.0, + "total_deaths": 861.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 454.572, + "new_cases_per_million": 7.478, + "new_cases_smoothed_per_million": 9.301, + "total_deaths_per_million": 22.75, + "new_deaths_per_million": 0.581, + "new_deaths_smoothed_per_million": 0.483, + "new_tests": 21564.0, + "total_tests": 506733.0, + "total_tests_per_thousand": 13.389, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 16808.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 47.75, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-15", + "total_cases": 17615.0, + "new_cases": 411.0, + "new_cases_smoothed": 366.857, + "total_deaths": 883.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 465.431, + "new_cases_per_million": 10.86, + "new_cases_smoothed_per_million": 9.693, + "total_deaths_per_million": 23.331, + "new_deaths_per_million": 0.581, + "new_deaths_smoothed_per_million": 0.483, + "new_tests": 20162.0, + "total_tests": 526895.0, + "total_tests_per_thousand": 13.922, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 17373.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 47.356, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-16", + "total_cases": 18016.0, + "new_cases": 401.0, + "new_cases_smoothed": 378.571, + "total_deaths": 907.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 476.027, + "new_cases_per_million": 10.595, + "new_cases_smoothed_per_million": 10.003, + "total_deaths_per_million": 23.965, + "new_deaths_per_million": 0.634, + "new_deaths_smoothed_per_million": 0.494, + "new_tests": 22897.0, + "total_tests": 549792.0, + "total_tests_per_thousand": 14.527, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 18375.0, + "new_tests_smoothed_per_thousand": 0.486, + "tests_per_case": 48.538000000000004, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-17", + "total_cases": 18257.0, + "new_cases": 241.0, + "new_cases_smoothed": 372.286, + "total_deaths": 915.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 482.395, + "new_cases_per_million": 6.368, + "new_cases_smoothed_per_million": 9.837, + "total_deaths_per_million": 24.177, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.491, + "new_tests": 17263.0, + "total_tests": 567055.0, + "total_tests_per_thousand": 14.983, + "new_tests_per_thousand": 0.456, + "new_tests_smoothed": 18631.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 50.045, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-18", + "total_cases": 18529.0, + "new_cases": 272.0, + "new_cases_smoothed": 361.857, + "total_deaths": 925.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 489.582, + "new_cases_per_million": 7.187, + "new_cases_smoothed_per_million": 9.561, + "total_deaths_per_million": 24.441, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.472, + "new_tests": 14416.0, + "total_tests": 581471.0, + "total_tests_per_thousand": 15.364, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 18745.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 51.802, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 18885.0, + "new_cases": 356.0, + "new_cases_smoothed": 365.571, + "total_deaths": 936.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 498.988, + "new_cases_per_million": 9.406, + "new_cases_smoothed_per_million": 9.659, + "total_deaths_per_million": 24.731, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.472, + "new_tests": 16254.0, + "total_tests": 597725.0, + "total_tests_per_thousand": 15.793, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 18821.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 51.483999999999995, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 19268.0, + "new_cases": 383.0, + "new_cases_smoothed": 335.286, + "total_deaths": 948.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 509.108, + "new_cases_per_million": 10.12, + "new_cases_smoothed_per_million": 8.859, + "total_deaths_per_million": 25.048, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 20242.0, + "total_tests": 617967.0, + "total_tests_per_thousand": 16.328, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 18971.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 56.582, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 19739.0, + "new_cases": 471.0, + "new_cases_smoothed": 362.143, + "total_deaths": 962.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 521.553, + "new_cases_per_million": 12.445, + "new_cases_smoothed_per_million": 9.569, + "total_deaths_per_million": 25.418, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.381, + "new_tests": 21556.0, + "total_tests": 639523.0, + "total_tests_per_thousand": 16.898, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 18970.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 52.383, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 20143.0, + "new_cases": 404.0, + "new_cases_smoothed": 361.143, + "total_deaths": 972.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 532.227, + "new_cases_per_million": 10.675, + "new_cases_smoothed_per_million": 9.542, + "total_deaths_per_million": 25.683, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 21277.0, + "total_tests": 660800.0, + "total_tests_per_thousand": 17.46, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 19129.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 52.968, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 20619.0, + "new_cases": 476.0, + "new_cases_smoothed": 371.857, + "total_deaths": 982.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 544.804, + "new_cases_per_million": 12.577, + "new_cases_smoothed_per_million": 9.825, + "total_deaths_per_million": 25.947, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 26280.0, + "total_tests": 687080.0, + "total_tests_per_thousand": 18.154, + "new_tests_per_thousand": 0.694, + "new_tests_smoothed": 19613.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 52.743, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 20931.0, + "new_cases": 312.0, + "new_cases_smoothed": 382.0, + "total_deaths": 993.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 553.048, + "new_cases_per_million": 8.244, + "new_cases_smoothed_per_million": 10.093, + "total_deaths_per_million": 26.237, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 14889.0, + "total_tests": 701969.0, + "total_tests_per_thousand": 18.548, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 19273.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 50.453, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 21326.0, + "new_cases": 395.0, + "new_cases_smoothed": 399.571, + "total_deaths": 996.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 563.485, + "new_cases_per_million": 10.437, + "new_cases_smoothed_per_million": 10.558, + "total_deaths_per_million": 26.317, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.268, + "new_tests": 10706.0, + "total_tests": 712675.0, + "total_tests_per_thousand": 18.831, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 18743.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 46.908, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-26", + "total_cases": 21631.0, + "new_cases": 305.0, + "new_cases_smoothed": 392.286, + "total_deaths": 1007.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 571.544, + "new_cases_per_million": 8.059, + "new_cases_smoothed_per_million": 10.365, + "total_deaths_per_million": 26.607, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.268, + "new_tests": 21026.0, + "total_tests": 733701.0, + "total_tests_per_thousand": 19.386, + "new_tests_per_thousand": 0.556, + "new_tests_smoothed": 19425.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 49.516999999999996, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-27", + "total_cases": 22074.0, + "new_cases": 443.0, + "new_cases_smoothed": 400.857, + "total_deaths": 1024.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 583.249, + "new_cases_per_million": 11.705, + "new_cases_smoothed_per_million": 10.592, + "total_deaths_per_million": 27.057, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 19974.0, + "total_tests": 753675.0, + "total_tests_per_thousand": 19.914, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 19387.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 48.364, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-28", + "total_cases": 22473.0, + "new_cases": 399.0, + "new_cases_smoothed": 390.571, + "total_deaths": 1028.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 593.792, + "new_cases_per_million": 10.543, + "new_cases_smoothed_per_million": 10.32, + "total_deaths_per_million": 27.162, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 19950.0, + "total_tests": 773625.0, + "total_tests_per_thousand": 20.441, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 19157.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 49.049, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-29", + "total_cases": 22825.0, + "new_cases": 352.0, + "new_cases_smoothed": 383.143, + "total_deaths": 1038.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 603.092, + "new_cases_per_million": 9.301, + "new_cases_smoothed_per_million": 10.124, + "total_deaths_per_million": 27.427, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 24851.0, + "total_tests": 798476.0, + "total_tests_per_thousand": 21.098, + "new_tests_per_thousand": 0.657, + "new_tests_smoothed": 19668.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 51.333, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-05-30", + "total_cases": 23155.0, + "new_cases": 330.0, + "new_cases_smoothed": 362.286, + "total_deaths": 1051.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 611.812, + "new_cases_per_million": 8.719, + "new_cases_smoothed_per_million": 9.572, + "total_deaths_per_million": 27.77, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 23335.0, + "total_tests": 821811.0, + "total_tests_per_thousand": 21.714, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 19247.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 53.126999999999995, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-05-31", + "total_cases": 23571.0, + "new_cases": 416.0, + "new_cases_smoothed": 377.143, + "total_deaths": 1061.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 622.804, + "new_cases_per_million": 10.992, + "new_cases_smoothed_per_million": 9.965, + "total_deaths_per_million": 28.034, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 14487.0, + "total_tests": 836298.0, + "total_tests_per_thousand": 22.097, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 19190.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 50.883, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-01", + "total_cases": 23786.0, + "new_cases": 215.0, + "new_cases_smoothed": 351.429, + "total_deaths": 1064.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 628.484, + "new_cases_per_million": 5.681, + "new_cases_smoothed_per_million": 9.286, + "total_deaths_per_million": 28.113, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 14119.0, + "total_tests": 850417.0, + "total_tests_per_thousand": 22.47, + "new_tests_per_thousand": 0.373, + "new_tests_smoothed": 19677.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 55.99100000000001, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-06-02", + "total_cases": 24165.0, + "new_cases": 379.0, + "new_cases_smoothed": 362.0, + "total_deaths": 1074.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 638.498, + "new_cases_per_million": 10.014, + "new_cases_smoothed_per_million": 9.565, + "total_deaths_per_million": 28.378, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.253, + "new_tests": 12466.0, + "total_tests": 862883.0, + "total_tests_per_thousand": 22.799, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 18455.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 50.981, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-03", + "total_cases": 24395.0, + "new_cases": 230.0, + "new_cases_smoothed": 331.571, + "total_deaths": 1092.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 644.576, + "new_cases_per_million": 6.077, + "new_cases_smoothed_per_million": 8.761, + "total_deaths_per_million": 28.853, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 19024.0, + "total_tests": 881907.0, + "total_tests_per_thousand": 23.302, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 18319.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 55.248999999999995, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-04", + "total_cases": 24687.0, + "new_cases": 292.0, + "new_cases_smoothed": 316.286, + "total_deaths": 1115.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 652.291, + "new_cases_per_million": 7.715, + "new_cases_smoothed_per_million": 8.357, + "total_deaths_per_million": 29.461, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 21579.0, + "total_tests": 903486.0, + "total_tests_per_thousand": 23.872, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 18552.0, + "new_tests_smoothed_per_thousand": 0.49, + "tests_per_case": 58.656000000000006, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-05", + "total_cases": 25048.0, + "new_cases": 361.0, + "new_cases_smoothed": 317.571, + "total_deaths": 1117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 661.83, + "new_cases_per_million": 9.539, + "new_cases_smoothed_per_million": 8.391, + "total_deaths_per_million": 29.514, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 21410.0, + "total_tests": 924896.0, + "total_tests_per_thousand": 24.438, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 18060.0, + "new_tests_smoothed_per_thousand": 0.477, + "tests_per_case": 56.869, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-06", + "total_cases": 25419.0, + "new_cases": 371.0, + "new_cases_smoothed": 323.429, + "total_deaths": 1137.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 671.632, + "new_cases_per_million": 9.803, + "new_cases_smoothed_per_million": 8.546, + "total_deaths_per_million": 30.042, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.325, + "new_tests": 20752.0, + "total_tests": 945648.0, + "total_tests_per_thousand": 24.986, + "new_tests_per_thousand": 0.548, + "new_tests_smoothed": 17691.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 54.698, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-07", + "total_cases": 25986.0, + "new_cases": 567.0, + "new_cases_smoothed": 345.0, + "total_deaths": 1153.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 686.614, + "new_cases_per_million": 14.982, + "new_cases_smoothed_per_million": 9.116, + "total_deaths_per_million": 30.465, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 15664.0, + "total_tests": 961312.0, + "total_tests_per_thousand": 25.4, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 17859.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 51.765, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-08", + "total_cases": 26561.0, + "new_cases": 575.0, + "new_cases_smoothed": 396.429, + "total_deaths": 1157.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 701.807, + "new_cases_per_million": 15.193, + "new_cases_smoothed_per_million": 10.475, + "total_deaths_per_million": 30.571, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.351, + "new_tests": 12241.0, + "total_tests": 973553.0, + "total_tests_per_thousand": 25.724, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 17591.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 44.373999999999995, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-09", + "total_cases": 27160.0, + "new_cases": 599.0, + "new_cases_smoothed": 427.857, + "total_deaths": 1166.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 717.634, + "new_cases_per_million": 15.827, + "new_cases_smoothed_per_million": 11.305, + "total_deaths_per_million": 30.809, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 14798.0, + "total_tests": 988351.0, + "total_tests_per_thousand": 26.115, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 17924.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 41.891999999999996, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-10", + "total_cases": 27560.0, + "new_cases": 400.0, + "new_cases_smoothed": 452.143, + "total_deaths": 1183.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 728.203, + "new_cases_per_million": 10.569, + "new_cases_smoothed_per_million": 11.947, + "total_deaths_per_million": 31.258, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 19368.0, + "total_tests": 1007719.0, + "total_tests_per_thousand": 26.626, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 17973.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 39.751, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-11", + "total_cases": 27757.0, + "new_cases": 197.0, + "new_cases_smoothed": 438.571, + "total_deaths": 1206.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 733.408, + "new_cases_per_million": 5.205, + "new_cases_smoothed_per_million": 11.588, + "total_deaths_per_million": 31.865, + "new_deaths_per_million": 0.608, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 16542.0, + "total_tests": 1024261.0, + "total_tests_per_thousand": 27.063, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 17254.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 39.341, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-12", + "total_cases": 28201.0, + "new_cases": 444.0, + "new_cases_smoothed": 450.429, + "total_deaths": 1215.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 745.139, + "new_cases_per_million": 11.732, + "new_cases_smoothed_per_million": 11.901, + "total_deaths_per_million": 32.103, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.37, + "new_tests": 19378.0, + "total_tests": 1043639.0, + "total_tests_per_thousand": 27.575, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 16963.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 37.66, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-13", + "total_cases": 28577.0, + "new_cases": 376.0, + "new_cases_smoothed": 451.143, + "total_deaths": 1222.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 755.074, + "new_cases_per_million": 9.935, + "new_cases_smoothed_per_million": 11.92, + "total_deaths_per_million": 32.288, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 15563.0, + "total_tests": 1059202.0, + "total_tests_per_thousand": 27.987, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 16222.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 35.958, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-14", + "total_cases": 29017.0, + "new_cases": 440.0, + "new_cases_smoothed": 433.0, + "total_deaths": 1237.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 766.7, + "new_cases_per_million": 11.626, + "new_cases_smoothed_per_million": 11.441, + "total_deaths_per_million": 32.685, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 17049.0, + "total_tests": 1076251.0, + "total_tests_per_thousand": 28.437, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 16420.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 37.921, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-15", + "total_cases": 29392.0, + "new_cases": 375.0, + "new_cases_smoothed": 404.429, + "total_deaths": 1247.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 776.609, + "new_cases_per_million": 9.908, + "new_cases_smoothed_per_million": 10.686, + "total_deaths_per_million": 32.949, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 10676.0, + "total_tests": 1086927.0, + "total_tests_per_thousand": 28.719, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 16196.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 40.047, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-16", + "total_cases": 29788.0, + "new_cases": 396.0, + "new_cases_smoothed": 375.429, + "total_deaths": 1256.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 787.072, + "new_cases_per_million": 10.463, + "new_cases_smoothed_per_million": 9.92, + "total_deaths_per_million": 33.187, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 16403.0, + "total_tests": 1103330.0, + "total_tests_per_thousand": 29.153, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 16426.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 43.753, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-17", + "total_cases": 30195.0, + "new_cases": 407.0, + "new_cases_smoothed": 376.429, + "total_deaths": 1272.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 797.826, + "new_cases_per_million": 10.754, + "new_cases_smoothed_per_million": 9.946, + "total_deaths_per_million": 33.609, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 22982.0, + "total_tests": 1126312.0, + "total_tests_per_thousand": 29.76, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 16942.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 45.007, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-18", + "total_cases": 30701.0, + "new_cases": 506.0, + "new_cases_smoothed": 420.571, + "total_deaths": 1286.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 811.196, + "new_cases_per_million": 13.37, + "new_cases_smoothed_per_million": 11.113, + "total_deaths_per_million": 33.979, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 20906.0, + "total_tests": 1147218.0, + "total_tests_per_thousand": 30.312, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 17565.0, + "new_tests_smoothed_per_thousand": 0.464, + "tests_per_case": 41.765, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-19", + "total_cases": 31015.0, + "new_cases": 314.0, + "new_cases_smoothed": 402.0, + "total_deaths": 1316.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 819.492, + "new_cases_per_million": 8.297, + "new_cases_smoothed_per_million": 10.622, + "total_deaths_per_million": 34.772, + "new_deaths_per_million": 0.793, + "new_deaths_smoothed_per_million": 0.381, + "new_tests": 23543.0, + "total_tests": 1170761.0, + "total_tests_per_thousand": 30.934, + "new_tests_per_thousand": 0.622, + "new_tests_smoothed": 18160.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 45.174, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-20", + "total_cases": 31316.0, + "new_cases": 301.0, + "new_cases_smoothed": 391.286, + "total_deaths": 1334.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 827.445, + "new_cases_per_million": 7.953, + "new_cases_smoothed_per_million": 10.339, + "total_deaths_per_million": 35.248, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.423, + "new_tests": 19640.0, + "total_tests": 1190401.0, + "total_tests_per_thousand": 31.453, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 18743.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 47.901, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-21", + "total_cases": 31620.0, + "new_cases": 304.0, + "new_cases_smoothed": 371.857, + "total_deaths": 1346.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 835.478, + "new_cases_per_million": 8.032, + "new_cases_smoothed_per_million": 9.825, + "total_deaths_per_million": 35.565, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 18231.0, + "total_tests": 1208632.0, + "total_tests_per_thousand": 31.935, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 18912.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 50.858000000000004, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-22", + "total_cases": 31931.0, + "new_cases": 311.0, + "new_cases_smoothed": 362.714, + "total_deaths": 1356.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 843.695, + "new_cases_per_million": 8.217, + "new_cases_smoothed_per_million": 9.584, + "total_deaths_per_million": 35.829, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.411, + "new_tests": 11041.0, + "total_tests": 1219673.0, + "total_tests_per_thousand": 32.227, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 18964.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 52.284, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-23", + "total_cases": 32227.0, + "new_cases": 296.0, + "new_cases_smoothed": 348.429, + "total_deaths": 1359.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 851.516, + "new_cases_per_million": 7.821, + "new_cases_smoothed_per_million": 9.206, + "total_deaths_per_million": 35.908, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.389, + "new_tests": 18077.0, + "total_tests": 1237750.0, + "total_tests_per_thousand": 32.704, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 19203.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 55.113, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-24", + "total_cases": 32527.0, + "new_cases": 300.0, + "new_cases_smoothed": 333.143, + "total_deaths": 1375.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 859.443, + "new_cases_per_million": 7.927, + "new_cases_smoothed_per_million": 8.802, + "total_deaths_per_million": 36.331, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.389, + "new_tests": 19251.0, + "total_tests": 1257001.0, + "total_tests_per_thousand": 33.213, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 18670.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 56.042, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-25", + "total_cases": 32821.0, + "new_cases": 294.0, + "new_cases_smoothed": 302.857, + "total_deaths": 1396.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 867.211, + "new_cases_per_million": 7.768, + "new_cases_smoothed_per_million": 8.002, + "total_deaths_per_million": 36.886, + "new_deaths_per_million": 0.555, + "new_deaths_smoothed_per_million": 0.415, + "new_tests": 21453.0, + "total_tests": 1278454.0, + "total_tests_per_thousand": 33.78, + "new_tests_per_thousand": 0.567, + "new_tests_smoothed": 18748.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 61.903999999999996, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-26", + "total_cases": 33119.0, + "new_cases": 298.0, + "new_cases_smoothed": 300.571, + "total_deaths": 1412.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 875.085, + "new_cases_per_million": 7.874, + "new_cases_smoothed_per_million": 7.942, + "total_deaths_per_million": 37.308, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.362, + "new_tests": 18336.0, + "total_tests": 1296790.0, + "total_tests_per_thousand": 34.264, + "new_tests_per_thousand": 0.484, + "new_tests_smoothed": 18004.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 59.898999999999994, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-27", + "total_cases": 33395.0, + "new_cases": 276.0, + "new_cases_smoothed": 297.0, + "total_deaths": 1429.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 882.378, + "new_cases_per_million": 7.293, + "new_cases_smoothed_per_million": 7.847, + "total_deaths_per_million": 37.758, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.359, + "new_tests": 19143.0, + "total_tests": 1315933.0, + "total_tests_per_thousand": 34.77, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 17933.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 60.38, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-28", + "total_cases": 33714.0, + "new_cases": 319.0, + "new_cases_smoothed": 299.143, + "total_deaths": 1435.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 890.806, + "new_cases_per_million": 8.429, + "new_cases_smoothed_per_million": 7.904, + "total_deaths_per_million": 37.916, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 14818.0, + "total_tests": 1330751.0, + "total_tests_per_thousand": 35.162, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 17446.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 58.32, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-29", + "total_cases": 33907.0, + "new_cases": 193.0, + "new_cases_smoothed": 282.286, + "total_deaths": 1438.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 895.906, + "new_cases_per_million": 5.1, + "new_cases_smoothed_per_million": 7.459, + "total_deaths_per_million": 37.995, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.31, + "new_tests": 7752.0, + "total_tests": 1338503.0, + "total_tests_per_thousand": 35.367, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 16976.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 60.138000000000005, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-06-30", + "total_cases": 34154.0, + "new_cases": 247.0, + "new_cases_smoothed": 275.286, + "total_deaths": 1444.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 902.432, + "new_cases_per_million": 6.526, + "new_cases_smoothed_per_million": 7.274, + "total_deaths_per_million": 38.154, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 17807.0, + "total_tests": 1356310.0, + "total_tests_per_thousand": 35.837, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 16937.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 61.525, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-01", + "total_cases": 34393.0, + "new_cases": 239.0, + "new_cases_smoothed": 266.571, + "total_deaths": 1463.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 908.747, + "new_cases_per_million": 6.315, + "new_cases_smoothed_per_million": 7.043, + "total_deaths_per_million": 38.656, + "new_deaths_per_million": 0.502, + "new_deaths_smoothed_per_million": 0.332, + "new_tests": 21064.0, + "total_tests": 1377374.0, + "total_tests_per_thousand": 36.394, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 17196.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 64.508, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-02", + "total_cases": 34775.0, + "new_cases": 382.0, + "new_cases_smoothed": 279.143, + "total_deaths": 1477.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 918.841, + "new_cases_per_million": 10.093, + "new_cases_smoothed_per_million": 7.376, + "total_deaths_per_million": 39.026, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 18803.0, + "total_tests": 1396177.0, + "total_tests_per_thousand": 36.89, + "new_tests_per_thousand": 0.497, + "new_tests_smoothed": 16818.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 60.248999999999995, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-03", + "total_cases": 35146.0, + "new_cases": 371.0, + "new_cases_smoothed": 289.571, + "total_deaths": 1492.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 928.643, + "new_cases_per_million": 9.803, + "new_cases_smoothed_per_million": 7.651, + "total_deaths_per_million": 39.422, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 23257.0, + "total_tests": 1419434.0, + "total_tests_per_thousand": 37.505, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 17521.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 60.507, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-04", + "total_cases": 35405.0, + "new_cases": 259.0, + "new_cases_smoothed": 287.143, + "total_deaths": 1507.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 935.487, + "new_cases_per_million": 6.843, + "new_cases_smoothed_per_million": 7.587, + "total_deaths_per_million": 39.819, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 18415.0, + "total_tests": 1437849.0, + "total_tests_per_thousand": 37.991, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 17417.0, + "new_tests_smoothed_per_thousand": 0.46, + "tests_per_case": 60.656000000000006, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-05", + "total_cases": 35719.0, + "new_cases": 314.0, + "new_cases_smoothed": 286.429, + "total_deaths": 1512.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 943.783, + "new_cases_per_million": 8.297, + "new_cases_smoothed_per_million": 7.568, + "total_deaths_per_million": 39.951, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 14938.0, + "total_tests": 1452787.0, + "total_tests_per_thousand": 38.386, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 17434.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 60.867, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-06", + "total_cases": 35950.0, + "new_cases": 231.0, + "new_cases_smoothed": 291.857, + "total_deaths": 1517.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 949.887, + "new_cases_per_million": 6.104, + "new_cases_smoothed_per_million": 7.712, + "total_deaths_per_million": 40.083, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 12125.0, + "total_tests": 1464912.0, + "total_tests_per_thousand": 38.707, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 18058.0, + "new_tests_smoothed_per_thousand": 0.477, + "tests_per_case": 61.873000000000005, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-07", + "total_cases": 36155.0, + "new_cases": 205.0, + "new_cases_smoothed": 285.857, + "total_deaths": 1521.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 955.304, + "new_cases_per_million": 5.417, + "new_cases_smoothed_per_million": 7.553, + "total_deaths_per_million": 40.189, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 16307.0, + "total_tests": 1481219.0, + "total_tests_per_thousand": 39.137, + "new_tests_per_thousand": 0.431, + "new_tests_smoothed": 17844.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 62.423, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-08", + "total_cases": 36412.0, + "new_cases": 257.0, + "new_cases_smoothed": 288.429, + "total_deaths": 1528.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 962.094, + "new_cases_per_million": 6.791, + "new_cases_smoothed_per_million": 7.621, + "total_deaths_per_million": 40.374, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 29354.0, + "total_tests": 1510573.0, + "total_tests_per_thousand": 39.913, + "new_tests_per_thousand": 0.776, + "new_tests_smoothed": 19028.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 65.971, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-07-09", + "total_cases": 36689.0, + "new_cases": 277.0, + "new_cases_smoothed": 273.429, + "total_deaths": 1542.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 969.413, + "new_cases_per_million": 7.319, + "new_cases_smoothed_per_million": 7.225, + "total_deaths_per_million": 40.743, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 18781.0, + "total_tests": 1529354.0, + "total_tests_per_thousand": 40.409, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 19025.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 69.579, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-10", + "total_cases": 36951.0, + "new_cases": 262.0, + "new_cases_smoothed": 257.857, + "total_deaths": 1551.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 976.336, + "new_cases_per_million": 6.923, + "new_cases_smoothed_per_million": 6.813, + "total_deaths_per_million": 40.981, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.223, + "new_tests": 19352.0, + "total_tests": 1548706.0, + "total_tests_per_thousand": 40.921, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 18467.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 71.617, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-11", + "total_cases": 37216.0, + "new_cases": 265.0, + "new_cases_smoothed": 258.714, + "total_deaths": 1562.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 983.338, + "new_cases_per_million": 7.002, + "new_cases_smoothed_per_million": 6.836, + "total_deaths_per_million": 41.272, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 32734.0, + "total_tests": 1581440.0, + "total_tests_per_thousand": 41.786, + "new_tests_per_thousand": 0.865, + "new_tests_smoothed": 20513.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 79.288, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-12", + "total_cases": 37521.0, + "new_cases": 305.0, + "new_cases_smoothed": 257.429, + "total_deaths": 1568.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 991.397, + "new_cases_per_million": 8.059, + "new_cases_smoothed_per_million": 6.802, + "total_deaths_per_million": 41.43, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 13195.0, + "total_tests": 1594635.0, + "total_tests_per_thousand": 42.134, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 20264.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 78.717, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-13", + "total_cases": 37891.0, + "new_cases": 370.0, + "new_cases_smoothed": 277.286, + "total_deaths": 1571.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1001.173, + "new_cases_per_million": 9.776, + "new_cases_smoothed_per_million": 7.327, + "total_deaths_per_million": 41.51, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.204, + "new_tests": 10709.0, + "total_tests": 1605344.0, + "total_tests_per_thousand": 42.417, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 20062.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 72.351, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-14", + "total_cases": 38190.0, + "new_cases": 299.0, + "new_cases_smoothed": 290.714, + "total_deaths": 1576.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1009.073, + "new_cases_per_million": 7.9, + "new_cases_smoothed_per_million": 7.681, + "total_deaths_per_million": 41.642, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 16628.0, + "total_tests": 1621972.0, + "total_tests_per_thousand": 42.856, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 20108.0, + "new_tests_smoothed_per_thousand": 0.531, + "tests_per_case": 69.168, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-15", + "total_cases": 38457.0, + "new_cases": 267.0, + "new_cases_smoothed": 292.143, + "total_deaths": 1588.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1016.128, + "new_cases_per_million": 7.055, + "new_cases_smoothed_per_million": 7.719, + "total_deaths_per_million": 41.959, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 19918.0, + "total_tests": 1641890.0, + "total_tests_per_thousand": 43.383, + "new_tests_per_thousand": 0.526, + "new_tests_smoothed": 18760.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 64.215, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-16", + "total_cases": 38780.0, + "new_cases": 323.0, + "new_cases_smoothed": 298.714, + "total_deaths": 1594.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1024.663, + "new_cases_per_million": 8.534, + "new_cases_smoothed_per_million": 7.893, + "total_deaths_per_million": 42.117, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 20016.0, + "total_tests": 1661906.0, + "total_tests_per_thousand": 43.912, + "new_tests_per_thousand": 0.529, + "new_tests_smoothed": 18936.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 63.391999999999996, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-17", + "total_cases": 39054.0, + "new_cases": 274.0, + "new_cases_smoothed": 300.429, + "total_deaths": 1605.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1031.902, + "new_cases_per_million": 7.24, + "new_cases_smoothed_per_million": 7.938, + "total_deaths_per_million": 42.408, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.204, + "new_tests": 20567.0, + "total_tests": 1682473.0, + "total_tests_per_thousand": 44.455, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 19110.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 63.608999999999995, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-18", + "total_cases": 39407.0, + "new_cases": 353.0, + "new_cases_smoothed": 313.0, + "total_deaths": 1612.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1041.229, + "new_cases_per_million": 9.327, + "new_cases_smoothed_per_million": 8.27, + "total_deaths_per_million": 42.593, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 18927.0, + "total_tests": 1701400.0, + "total_tests_per_thousand": 44.955, + "new_tests_per_thousand": 0.5, + "new_tests_smoothed": 17137.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 54.751000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-19", + "total_cases": 39746.0, + "new_cases": 339.0, + "new_cases_smoothed": 317.857, + "total_deaths": 1618.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1050.187, + "new_cases_per_million": 8.957, + "new_cases_smoothed_per_million": 8.399, + "total_deaths_per_million": 42.752, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 13956.0, + "total_tests": 1715356.0, + "total_tests_per_thousand": 45.324, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 17246.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 54.257, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-20", + "total_cases": 40104.0, + "new_cases": 358.0, + "new_cases_smoothed": 316.143, + "total_deaths": 1624.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 1059.646, + "new_cases_per_million": 9.459, + "new_cases_smoothed_per_million": 8.353, + "total_deaths_per_million": 42.91, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.2, + "new_tests": 10091.0, + "total_tests": 1725447.0, + "total_tests_per_thousand": 45.591, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 17158.0, + "new_tests_smoothed_per_thousand": 0.453, + "tests_per_case": 54.273, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-21", + "total_cases": 40383.0, + "new_cases": 279.0, + "new_cases_smoothed": 313.286, + "total_deaths": 1627.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1067.018, + "new_cases_per_million": 7.372, + "new_cases_smoothed_per_million": 8.278, + "total_deaths_per_million": 42.989, + "new_deaths_per_million": 0.079, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 16162.0, + "total_tests": 1741609.0, + "total_tests_per_thousand": 46.018, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 17091.0, + "new_tests_smoothed_per_thousand": 0.452, + "tests_per_case": 54.553999999999995, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-22", + "total_cases": 40782.0, + "new_cases": 399.0, + "new_cases_smoothed": 332.143, + "total_deaths": 1636.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1077.56, + "new_cases_per_million": 10.543, + "new_cases_smoothed_per_million": 8.776, + "total_deaths_per_million": 43.227, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 19656.0, + "total_tests": 1761265.0, + "total_tests_per_thousand": 46.537, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 17054.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 51.345, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-23", + "total_cases": 41162.0, + "new_cases": 380.0, + "new_cases_smoothed": 340.286, + "total_deaths": 1642.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1087.601, + "new_cases_per_million": 10.041, + "new_cases_smoothed_per_million": 8.991, + "total_deaths_per_million": 43.386, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 20985.0, + "total_tests": 1782250.0, + "total_tests_per_thousand": 47.091, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 17192.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 50.522, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-24", + "total_cases": 41580.0, + "new_cases": 418.0, + "new_cases_smoothed": 360.857, + "total_deaths": 1651.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1098.645, + "new_cases_per_million": 11.045, + "new_cases_smoothed_per_million": 9.535, + "total_deaths_per_million": 43.623, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 18098.0, + "total_tests": 1800348.0, + "total_tests_per_thousand": 47.57, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 16839.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 46.663999999999994, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-25", + "total_cases": 42038.0, + "new_cases": 458.0, + "new_cases_smoothed": 375.857, + "total_deaths": 1655.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1110.747, + "new_cases_per_million": 12.101, + "new_cases_smoothed_per_million": 9.931, + "total_deaths_per_million": 43.729, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 20010.0, + "total_tests": 1820358.0, + "total_tests_per_thousand": 48.098, + "new_tests_per_thousand": 0.529, + "new_tests_smoothed": 16994.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 45.214, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-26", + "total_cases": 42622.0, + "new_cases": 584.0, + "new_cases_smoothed": 410.857, + "total_deaths": 1664.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1126.178, + "new_cases_per_million": 15.431, + "new_cases_smoothed_per_million": 10.856, + "total_deaths_per_million": 43.967, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.174, + "new_tests_smoothed": 16951.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 41.258, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-27", + "total_cases": 43065.0, + "new_cases": 443.0, + "new_cases_smoothed": 423.0, + "total_deaths": 1671.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1137.883, + "new_cases_per_million": 11.705, + "new_cases_smoothed_per_million": 11.177, + "total_deaths_per_million": 44.152, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.177, + "total_tests": 1847663.0, + "total_tests_per_thousand": 48.82, + "new_tests_smoothed": 17459.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 41.273999999999994, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-28", + "total_cases": 43402.0, + "new_cases": 337.0, + "new_cases_smoothed": 431.286, + "total_deaths": 1676.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1146.787, + "new_cases_per_million": 8.904, + "new_cases_smoothed_per_million": 11.396, + "total_deaths_per_million": 44.284, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 16440.0, + "total_tests": 1864103.0, + "total_tests_per_thousand": 49.254, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 17499.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 40.574, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-29", + "total_cases": 43904.0, + "new_cases": 502.0, + "new_cases_smoothed": 446.0, + "total_deaths": 1682.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1160.051, + "new_cases_per_million": 13.264, + "new_cases_smoothed_per_million": 11.784, + "total_deaths_per_million": 44.443, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.174, + "new_tests": 22969.0, + "total_tests": 1887072.0, + "total_tests_per_thousand": 49.861, + "new_tests_per_thousand": 0.607, + "new_tests_smoothed": 17972.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 40.296, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-30", + "total_cases": 44416.0, + "new_cases": 512.0, + "new_cases_smoothed": 464.857, + "total_deaths": 1694.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1173.58, + "new_cases_per_million": 13.528, + "new_cases_smoothed_per_million": 12.283, + "total_deaths_per_million": 44.76, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 22108.0, + "total_tests": 1909180.0, + "total_tests_per_thousand": 50.445, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 18133.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 39.008, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-07-31", + "total_cases": 45031.0, + "new_cases": 615.0, + "new_cases_smoothed": 493.0, + "total_deaths": 1709.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1189.829, + "new_cases_per_million": 16.25, + "new_cases_smoothed_per_million": 13.026, + "total_deaths_per_million": 45.156, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.219, + "new_tests": 22394.0, + "total_tests": 1931574.0, + "total_tests_per_thousand": 51.037, + "new_tests_per_thousand": 0.592, + "new_tests_smoothed": 18747.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 38.025999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-01", + "total_cases": 45688.0, + "new_cases": 657.0, + "new_cases_smoothed": 521.429, + "total_deaths": 1716.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 1207.189, + "new_cases_per_million": 17.36, + "new_cases_smoothed_per_million": 13.777, + "total_deaths_per_million": 45.341, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.23, + "new_tests": 21262.0, + "total_tests": 1952836.0, + "total_tests_per_thousand": 51.599, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 18925.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 36.295, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-02", + "total_cases": 46346.0, + "new_cases": 658.0, + "new_cases_smoothed": 532.0, + "total_deaths": 1721.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1224.575, + "new_cases_per_million": 17.386, + "new_cases_smoothed_per_million": 14.057, + "total_deaths_per_million": 45.473, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 16734.0, + "total_tests": 1969570.0, + "total_tests_per_thousand": 52.041, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 19366.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 36.402, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-03", + "total_cases": 46894.0, + "new_cases": 548.0, + "new_cases_smoothed": 547.0, + "total_deaths": 1731.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1239.054, + "new_cases_per_million": 14.48, + "new_cases_smoothed_per_million": 14.453, + "total_deaths_per_million": 45.737, + "new_deaths_per_million": 0.264, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 11071.0, + "total_tests": 1980641.0, + "total_tests_per_thousand": 52.333, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 18997.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 34.729, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-04", + "total_cases": 47469.0, + "new_cases": 575.0, + "new_cases_smoothed": 581.0, + "total_deaths": 1732.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1254.247, + "new_cases_per_million": 15.193, + "new_cases_smoothed_per_million": 15.351, + "total_deaths_per_million": 45.764, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 18888.0, + "total_tests": 1999529.0, + "total_tests_per_thousand": 52.832, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 19347.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 33.299, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-05", + "total_cases": 48149.0, + "new_cases": 680.0, + "new_cases_smoothed": 606.429, + "total_deaths": 1738.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1272.215, + "new_cases_per_million": 17.967, + "new_cases_smoothed_per_million": 16.023, + "total_deaths_per_million": 45.922, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.211, + "new_tests": 28422.0, + "total_tests": 2027951.0, + "total_tests_per_thousand": 53.583, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 20126.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 33.188, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-06", + "total_cases": 48789.0, + "new_cases": 640.0, + "new_cases_smoothed": 624.714, + "total_deaths": 1756.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 1289.125, + "new_cases_per_million": 16.91, + "new_cases_smoothed_per_million": 16.506, + "total_deaths_per_million": 46.398, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 21278.0, + "total_tests": 2049229.0, + "total_tests_per_thousand": 54.146, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 20007.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 32.025999999999996, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-07", + "total_cases": 49515.0, + "new_cases": 726.0, + "new_cases_smoothed": 640.571, + "total_deaths": 1774.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1308.308, + "new_cases_per_million": 19.183, + "new_cases_smoothed_per_million": 16.925, + "total_deaths_per_million": 46.873, + "new_deaths_per_million": 0.476, + "new_deaths_smoothed_per_million": 0.245, + "new_tests": 25244.0, + "total_tests": 2074473.0, + "total_tests_per_thousand": 54.813, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 20414.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 31.868000000000002, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-08", + "total_cases": 50324.0, + "new_cases": 809.0, + "new_cases_smoothed": 662.286, + "total_deaths": 1787.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1329.683, + "new_cases_per_million": 21.376, + "new_cases_smoothed_per_million": 17.499, + "total_deaths_per_million": 47.217, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.268, + "new_tests": 28307.0, + "total_tests": 2102780.0, + "total_tests_per_thousand": 55.561, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 21421.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 32.344, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-09", + "total_cases": 51167.0, + "new_cases": 843.0, + "new_cases_smoothed": 688.714, + "total_deaths": 1800.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 1351.957, + "new_cases_per_million": 22.274, + "new_cases_smoothed_per_million": 18.198, + "total_deaths_per_million": 47.56, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 20842.0, + "total_tests": 2123622.0, + "total_tests_per_thousand": 56.111, + "new_tests_per_thousand": 0.551, + "new_tests_smoothed": 22007.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 31.954, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-10", + "total_cases": 51791.0, + "new_cases": 624.0, + "new_cases_smoothed": 699.571, + "total_deaths": 1807.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1368.445, + "new_cases_per_million": 16.488, + "new_cases_smoothed_per_million": 18.484, + "total_deaths_per_million": 47.745, + "new_deaths_per_million": 0.185, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 14399.0, + "total_tests": 2138021.0, + "total_tests_per_thousand": 56.492, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 22483.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 32.138000000000005, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-11", + "total_cases": 52410.0, + "new_cases": 619.0, + "new_cases_smoothed": 705.857, + "total_deaths": 1809.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 1384.801, + "new_cases_per_million": 16.355, + "new_cases_smoothed_per_million": 18.65, + "total_deaths_per_million": 47.798, + "new_deaths_per_million": 0.053, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 20511.0, + "total_tests": 2158532.0, + "total_tests_per_thousand": 57.034, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 22715.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 32.181, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-12", + "total_cases": 52961.0, + "new_cases": 551.0, + "new_cases_smoothed": 687.429, + "total_deaths": 1821.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 1399.359, + "new_cases_per_million": 14.559, + "new_cases_smoothed_per_million": 18.164, + "total_deaths_per_million": 48.115, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 23495.0, + "total_tests": 2182027.0, + "total_tests_per_thousand": 57.654, + "new_tests_per_thousand": 0.621, + "new_tests_smoothed": 22011.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 32.019, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-13", + "total_cases": 53676.0, + "new_cases": 715.0, + "new_cases_smoothed": 698.143, + "total_deaths": 1830.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 1418.251, + "new_cases_per_million": 18.892, + "new_cases_smoothed_per_million": 18.447, + "total_deaths_per_million": 48.353, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.279, + "new_tests": 25177.0, + "total_tests": 2207204.0, + "total_tests_per_thousand": 58.32, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 22568.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 32.326, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-14", + "total_cases": 54487.0, + "new_cases": 811.0, + "new_cases_smoothed": 710.286, + "total_deaths": 1844.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1439.68, + "new_cases_per_million": 21.429, + "new_cases_smoothed_per_million": 18.767, + "total_deaths_per_million": 48.723, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 25792.0, + "total_tests": 2232996.0, + "total_tests_per_thousand": 59.001, + "new_tests_per_thousand": 0.681, + "new_tests_smoothed": 22646.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 31.883000000000003, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-15", + "total_cases": 55319.0, + "new_cases": 832.0, + "new_cases_smoothed": 713.571, + "total_deaths": 1858.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 1461.663, + "new_cases_per_million": 21.983, + "new_cases_smoothed_per_million": 18.854, + "total_deaths_per_million": 49.093, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.268, + "new_tests": 23730.0, + "total_tests": 2256726.0, + "total_tests_per_thousand": 59.628, + "new_tests_per_thousand": 0.627, + "new_tests_smoothed": 21992.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 30.82, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-16", + "total_cases": 56090.0, + "new_cases": 771.0, + "new_cases_smoothed": 703.286, + "total_deaths": 1869.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 1482.035, + "new_cases_per_million": 20.372, + "new_cases_smoothed_per_million": 18.583, + "total_deaths_per_million": 49.384, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 16004.0, + "total_tests": 2272730.0, + "total_tests_per_thousand": 60.051, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 21301.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 30.288, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-17", + "total_cases": 56684.0, + "new_cases": 594.0, + "new_cases_smoothed": 699.0, + "total_deaths": 1877.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1497.73, + "new_cases_per_million": 15.695, + "new_cases_smoothed_per_million": 18.469, + "total_deaths_per_million": 49.595, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 12778.0, + "total_tests": 2285508.0, + "total_tests_per_thousand": 60.389, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 21070.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 30.143, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-18", + "total_cases": 57279.0, + "new_cases": 595.0, + "new_cases_smoothed": 695.571, + "total_deaths": 1885.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 1513.451, + "new_cases_per_million": 15.721, + "new_cases_smoothed_per_million": 18.379, + "total_deaths_per_million": 49.806, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 19884.0, + "total_tests": 2305392.0, + "total_tests_per_thousand": 60.914, + "new_tests_per_thousand": 0.525, + "new_tests_smoothed": 20980.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 30.162, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-19", + "total_cases": 57876.0, + "new_cases": 597.0, + "new_cases_smoothed": 702.143, + "total_deaths": 1896.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1529.226, + "new_cases_per_million": 15.774, + "new_cases_smoothed_per_million": 18.552, + "total_deaths_per_million": 50.097, + "new_deaths_per_million": 0.291, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 27734.0, + "total_tests": 2333126.0, + "total_tests_per_thousand": 61.647, + "new_tests_per_thousand": 0.733, + "new_tests_smoothed": 21586.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 30.743000000000002, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-20", + "total_cases": 58611.0, + "new_cases": 735.0, + "new_cases_smoothed": 705.0, + "total_deaths": 1913.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 1548.646, + "new_cases_per_million": 19.421, + "new_cases_smoothed_per_million": 18.628, + "total_deaths_per_million": 50.546, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.313, + "new_tests": 24646.0, + "total_tests": 2357772.0, + "total_tests_per_thousand": 62.298, + "new_tests_per_thousand": 0.651, + "new_tests_smoothed": 21510.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 30.511, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-21", + "total_cases": 59378.0, + "new_cases": 767.0, + "new_cases_smoothed": 698.714, + "total_deaths": 1925.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1568.912, + "new_cases_per_million": 20.266, + "new_cases_smoothed_per_million": 18.462, + "total_deaths_per_million": 50.863, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 28666.0, + "total_tests": 2386438.0, + "total_tests_per_thousand": 63.056, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 21920.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 31.372, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-22", + "total_cases": 60281.0, + "new_cases": 903.0, + "new_cases_smoothed": 708.857, + "total_deaths": 1938.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 1592.772, + "new_cases_per_million": 23.859, + "new_cases_smoothed_per_million": 18.73, + "total_deaths_per_million": 51.207, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 24793.0, + "total_tests": 2411231.0, + "total_tests_per_thousand": 63.711, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 22072.0, + "new_tests_smoothed_per_thousand": 0.583, + "tests_per_case": 31.136999999999997, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-23", + "total_cases": 61181.0, + "new_cases": 900.0, + "new_cases_smoothed": 727.286, + "total_deaths": 1951.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1616.552, + "new_cases_per_million": 23.78, + "new_cases_smoothed_per_million": 19.217, + "total_deaths_per_million": 51.55, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.31, + "new_tests": 18983.0, + "total_tests": 2430214.0, + "total_tests_per_thousand": 64.212, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 22498.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 30.934, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-24", + "total_cases": 61762.0, + "new_cases": 581.0, + "new_cases_smoothed": 725.429, + "total_deaths": 1955.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1631.903, + "new_cases_per_million": 15.351, + "new_cases_smoothed_per_million": 19.168, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 15332.0, + "total_tests": 2445546.0, + "total_tests_per_thousand": 64.617, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 22863.0, + "new_tests_smoothed_per_thousand": 0.604, + "tests_per_case": 31.517, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-25", + "total_cases": 62310.0, + "new_cases": 548.0, + "new_cases_smoothed": 718.714, + "total_deaths": 1960.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 1646.383, + "new_cases_per_million": 14.48, + "new_cases_smoothed_per_million": 18.99, + "total_deaths_per_million": 51.788, + "new_deaths_per_million": 0.132, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 21982.0, + "total_tests": 2467528.0, + "total_tests_per_thousand": 65.198, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 23162.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 32.227, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-26", + "total_cases": 63073.0, + "new_cases": 763.0, + "new_cases_smoothed": 742.429, + "total_deaths": 1977.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1666.543, + "new_cases_per_million": 20.16, + "new_cases_smoothed_per_million": 19.617, + "total_deaths_per_million": 52.237, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 28311.0, + "total_tests": 2495839.0, + "total_tests_per_thousand": 65.946, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 23245.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 31.309, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-27", + "total_cases": 63802.0, + "new_cases": 729.0, + "new_cases_smoothed": 741.571, + "total_deaths": 1994.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1685.805, + "new_cases_per_million": 19.262, + "new_cases_smoothed_per_million": 19.594, + "total_deaths_per_million": 52.686, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 27110.0, + "total_tests": 2522949.0, + "total_tests_per_thousand": 66.662, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 23597.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 31.82, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-28", + "total_cases": 64689.0, + "new_cases": 887.0, + "new_cases_smoothed": 758.714, + "total_deaths": 2010.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 1709.242, + "new_cases_per_million": 23.437, + "new_cases_smoothed_per_million": 20.047, + "total_deaths_per_million": 53.109, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.321, + "new_tests": 24782.0, + "total_tests": 2547731.0, + "total_tests_per_thousand": 67.317, + "new_tests_per_thousand": 0.655, + "new_tests_smoothed": 23042.0, + "new_tests_smoothed_per_thousand": 0.609, + "tests_per_case": 30.37, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-29", + "total_cases": 65480.0, + "new_cases": 791.0, + "new_cases_smoothed": 742.714, + "total_deaths": 2018.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 1730.142, + "new_cases_per_million": 20.9, + "new_cases_smoothed_per_million": 19.624, + "total_deaths_per_million": 53.321, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 21075.0, + "total_tests": 2568806.0, + "total_tests_per_thousand": 67.874, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 22511.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 30.309, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-30", + "total_cases": 66239.0, + "new_cases": 759.0, + "new_cases_smoothed": 722.571, + "total_deaths": 2032.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1750.197, + "new_cases_per_million": 20.055, + "new_cases_smoothed_per_million": 19.092, + "total_deaths_per_million": 53.69, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 18753.0, + "total_tests": 2587559.0, + "total_tests_per_thousand": 68.37, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 22478.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 31.108, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-08-31", + "total_cases": 66870.0, + "new_cases": 631.0, + "new_cases_smoothed": 729.714, + "total_deaths": 2033.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1766.869, + "new_cases_per_million": 16.673, + "new_cases_smoothed_per_million": 19.281, + "total_deaths_per_million": 53.717, + "new_deaths_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 12010.0, + "total_tests": 2599569.0, + "total_tests_per_thousand": 68.687, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 22003.0, + "new_tests_smoothed_per_thousand": 0.581, + "tests_per_case": 30.153000000000002, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-09-01", + "total_cases": 67372.0, + "new_cases": 502.0, + "new_cases_smoothed": 723.143, + "total_deaths": 2039.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 1780.133, + "new_cases_per_million": 13.264, + "new_cases_smoothed_per_million": 19.107, + "total_deaths_per_million": 53.875, + "new_deaths_per_million": 0.159, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 28703.0, + "total_tests": 2628272.0, + "total_tests_per_thousand": 69.445, + "new_tests_per_thousand": 0.758, + "new_tests_smoothed": 22963.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 31.754, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-09-02", + "total_cases": 67922.0, + "new_cases": 550.0, + "new_cases_smoothed": 692.714, + "total_deaths": 2058.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 1794.666, + "new_cases_per_million": 14.532, + "new_cases_smoothed_per_million": 18.303, + "total_deaths_per_million": 54.377, + "new_deaths_per_million": 0.502, + "new_deaths_smoothed_per_million": 0.306, + "new_tests": 24354.0, + "total_tests": 2652626.0, + "total_tests_per_thousand": 70.089, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 22398.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 32.334, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 37.96 + }, + { + "date": "2020-09-03", + "total_cases": 68517.0, + "new_cases": 595.0, + "new_cases_smoothed": 673.571, + "total_deaths": 2078.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 1810.387, + "new_cases_per_million": 15.721, + "new_cases_smoothed_per_million": 17.797, + "total_deaths_per_million": 54.906, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 23972.0, + "total_tests": 2676598.0, + "total_tests_per_thousand": 70.722, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 21950.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 32.586999999999996, + "positive_rate": 0.031, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 69129.0, + "new_cases": 612.0, + "new_cases_smoothed": 634.286, + "total_deaths": 2092.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1826.557, + "new_cases_per_million": 16.171, + "new_cases_smoothed_per_million": 16.759, + "total_deaths_per_million": 55.276, + "new_deaths_per_million": 0.37, + "new_deaths_smoothed_per_million": 0.31 + }, + { + "date": "2020-09-05", + "total_cases": 69820.0, + "new_cases": 691.0, + "new_cases_smoothed": 620.0, + "total_deaths": 2100.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1844.815, + "new_cases_per_million": 18.258, + "new_cases_smoothed_per_million": 16.382, + "total_deaths_per_million": 55.487, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.31 + } + ] + }, + "PRT": { + "continent": "Europe", + "location": "Portugal", + "population": 10196707.0, + "population_density": 112.371, + "median_age": 46.2, + "aged_65_older": 21.502, + "aged_70_older": 14.924, + "gdp_per_capita": 27936.896, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 127.842, + "diabetes_prevalence": 9.85, + "female_smokers": 16.3, + "male_smokers": 30.0, + "hospital_beds_per_thousand": 3.39, + "life_expectancy": 82.05, + "data": [ + { + "date": "2020-03-01", + "new_tests": 25.0, + "total_tests": 25.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.002, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "new_tests": 45.0, + "total_tests": 70.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.196, + "new_cases_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 61.0, + "total_tests": 131.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.006, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.392, + "new_cases_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 171.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.004, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.49, + "new_cases_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 80.0, + "total_tests": 251.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.008, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 9.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.883, + "new_cases_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 81.0, + "total_tests": 332.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.008, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 13.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.275, + "new_cases_per_million": 0.392, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 411.0, + "total_tests_per_thousand": 0.04, + "new_tests_per_thousand": 0.008, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 21.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.059, + "new_cases_per_million": 0.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 84.0, + "total_tests": 495.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 67.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_units": "samples tested", + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.942, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 175.0, + "total_tests": 670.0, + "total_tests_per_thousand": 0.066, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 86.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_units": "samples tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-10", + "total_cases": 39.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.825, + "new_cases_per_million": 0.883, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 306.0, + "total_tests": 976.0, + "total_tests_per_thousand": 0.096, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 121.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 22.892, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 41.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.021, + "new_cases_per_million": 0.196, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 580.0, + "total_tests": 1556.0, + "total_tests_per_thousand": 0.153, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 37.459, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 59.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.786, + "new_cases_per_million": 1.765, + "new_cases_smoothed_per_million": 0.757, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 938.0, + "total_tests": 2494.0, + "total_tests_per_thousand": 0.245, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 41.481, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-03-13", + "total_cases": 78.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.65, + "new_cases_per_million": 1.863, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1551.0, + "total_tests": 4045.0, + "total_tests_per_thousand": 0.397, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 530.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 53.768, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-03-14", + "total_cases": 112.0, + "new_cases": 34.0, + "new_cases_smoothed": 14.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.984, + "new_cases_per_million": 3.334, + "new_cases_smoothed_per_million": 1.387, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1253.0, + "total_tests": 5298.0, + "total_tests_per_thousand": 0.52, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 698.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 49.354, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-03-15", + "total_cases": 169.0, + "new_cases": 57.0, + "new_cases_smoothed": 21.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.574, + "new_cases_per_million": 5.59, + "new_cases_smoothed_per_million": 2.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 951.0, + "total_tests": 6249.0, + "total_tests_per_thousand": 0.613, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 822.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 38.878, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 32.41 + }, + { + "date": "2020-03-16", + "total_cases": 245.0, + "new_cases": 76.0, + "new_cases_smoothed": 30.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.027, + "new_cases_per_million": 7.453, + "new_cases_smoothed_per_million": 3.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1677.0, + "total_tests": 7926.0, + "total_tests_per_thousand": 0.777, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 33.763000000000005, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-03-17", + "total_cases": 331.0, + "new_cases": 86.0, + "new_cases_smoothed": 41.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.461, + "new_cases_per_million": 8.434, + "new_cases_smoothed_per_million": 4.091, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2304.0, + "total_tests": 10230.0, + "total_tests_per_thousand": 1.003, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 1322.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 31.691999999999997, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-03-18", + "total_cases": 448.0, + "new_cases": 117.0, + "new_cases_smoothed": 58.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.936, + "new_cases_per_million": 11.474, + "new_cases_smoothed_per_million": 5.702, + "total_deaths_per_million": 0.098, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2458.0, + "total_tests": 12688.0, + "total_tests_per_thousand": 1.244, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 1590.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 27.346, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 37.96 + }, + { + "date": "2020-03-19", + "total_cases": 642.0, + "new_cases": 194.0, + "new_cases_smoothed": 83.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 62.962, + "new_cases_per_million": 19.026, + "new_cases_smoothed_per_million": 8.168, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 2490.0, + "total_tests": 15178.0, + "total_tests_per_thousand": 1.489, + "new_tests_per_thousand": 0.244, + "new_tests_smoothed": 1812.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 21.756, + "positive_rate": 0.046, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-20", + "total_cases": 785.0, + "new_cases": 143.0, + "new_cases_smoothed": 101.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 76.986, + "new_cases_per_million": 14.024, + "new_cases_smoothed_per_million": 9.905, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 3215.0, + "total_tests": 18393.0, + "total_tests_per_thousand": 1.804, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 2050.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 20.297, + "positive_rate": 0.049, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-21", + "total_cases": 1020.0, + "new_cases": 235.0, + "new_cases_smoothed": 129.714, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 100.032, + "new_cases_per_million": 23.047, + "new_cases_smoothed_per_million": 12.721, + "total_deaths_per_million": 0.588, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2516.0, + "total_tests": 20909.0, + "total_tests_per_thousand": 2.051, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 2230.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 17.192, + "positive_rate": 0.057999999999999996, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-22", + "total_cases": 1280.0, + "new_cases": 260.0, + "new_cases_smoothed": 158.714, + "total_deaths": 12.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 125.531, + "new_cases_per_million": 25.498, + "new_cases_smoothed_per_million": 15.565, + "total_deaths_per_million": 1.177, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2109.0, + "total_tests": 23018.0, + "total_tests_per_thousand": 2.257, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 2396.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 15.095999999999998, + "positive_rate": 0.066, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-23", + "total_cases": 1600.0, + "new_cases": 320.0, + "new_cases_smoothed": 193.571, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 156.913, + "new_cases_per_million": 31.383, + "new_cases_smoothed_per_million": 18.984, + "total_deaths_per_million": 1.373, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 4181.0, + "total_tests": 27199.0, + "total_tests_per_thousand": 2.667, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 2753.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 14.222000000000001, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-24", + "total_cases": 2060.0, + "new_cases": 460.0, + "new_cases_smoothed": 247.0, + "total_deaths": 23.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 202.026, + "new_cases_per_million": 45.113, + "new_cases_smoothed_per_million": 24.224, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 5015.0, + "total_tests": 32214.0, + "total_tests_per_thousand": 3.159, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 3141.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 12.717, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-25", + "total_cases": 2362.0, + "new_cases": 302.0, + "new_cases_smoothed": 273.429, + "total_deaths": 33.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 231.643, + "new_cases_per_million": 29.617, + "new_cases_smoothed_per_million": 26.815, + "total_deaths_per_million": 3.236, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 5309.0, + "total_tests": 37523.0, + "total_tests_per_thousand": 3.68, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 3548.0, + "new_tests_smoothed_per_thousand": 0.348, + "tests_per_case": 12.975999999999999, + "positive_rate": 0.077, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-26", + "total_cases": 2995.0, + "new_cases": 633.0, + "new_cases_smoothed": 336.143, + "total_deaths": 43.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 293.722, + "new_cases_per_million": 62.079, + "new_cases_smoothed_per_million": 32.966, + "total_deaths_per_million": 4.217, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 0.574, + "new_tests": 6689.0, + "total_tests": 44212.0, + "total_tests_per_thousand": 4.336, + "new_tests_per_thousand": 0.656, + "new_tests_smoothed": 4148.0, + "new_tests_smoothed_per_thousand": 0.407, + "tests_per_case": 12.34, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-27", + "total_cases": 3544.0, + "new_cases": 549.0, + "new_cases_smoothed": 394.143, + "total_deaths": 60.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 347.563, + "new_cases_per_million": 53.841, + "new_cases_smoothed_per_million": 38.654, + "total_deaths_per_million": 5.884, + "new_deaths_per_million": 1.667, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 7877.0, + "total_tests": 52089.0, + "total_tests_per_thousand": 5.108, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 4814.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 12.214, + "positive_rate": 0.08199999999999999, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-28", + "total_cases": 4268.0, + "new_cases": 724.0, + "new_cases_smoothed": 464.0, + "total_deaths": 76.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 418.567, + "new_cases_per_million": 71.003, + "new_cases_smoothed_per_million": 45.505, + "total_deaths_per_million": 7.453, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 0.981, + "new_tests": 6893.0, + "total_tests": 58982.0, + "total_tests_per_thousand": 5.784, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 5439.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 11.722000000000001, + "positive_rate": 0.085, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-29", + "total_cases": 5170.0, + "new_cases": 902.0, + "new_cases_smoothed": 555.714, + "total_deaths": 100.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 507.026, + "new_cases_per_million": 88.46, + "new_cases_smoothed_per_million": 54.499, + "total_deaths_per_million": 9.807, + "new_deaths_per_million": 2.354, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 5032.0, + "total_tests": 64014.0, + "total_tests_per_thousand": 6.278, + "new_tests_per_thousand": 0.493, + "new_tests_smoothed": 5857.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 10.54, + "positive_rate": 0.095, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-30", + "total_cases": 5962.0, + "new_cases": 792.0, + "new_cases_smoothed": 623.143, + "total_deaths": 119.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 584.699, + "new_cases_per_million": 77.672, + "new_cases_smoothed_per_million": 61.112, + "total_deaths_per_million": 11.67, + "new_deaths_per_million": 1.863, + "new_deaths_smoothed_per_million": 1.471, + "new_tests": 7953.0, + "total_tests": 71967.0, + "total_tests_per_thousand": 7.058, + "new_tests_per_thousand": 0.78, + "new_tests_smoothed": 6395.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 10.262, + "positive_rate": 0.09699999999999999, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 6408.0, + "new_cases": 446.0, + "new_cases_smoothed": 621.143, + "total_deaths": 140.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 628.438, + "new_cases_per_million": 43.74, + "new_cases_smoothed_per_million": 60.916, + "total_deaths_per_million": 13.73, + "new_deaths_per_million": 2.059, + "new_deaths_smoothed_per_million": 1.639, + "new_tests": 7942.0, + "total_tests": 79909.0, + "total_tests_per_thousand": 7.837, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 6814.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 10.97, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 7443.0, + "new_cases": 1035.0, + "new_cases_smoothed": 725.857, + "total_deaths": 160.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 729.942, + "new_cases_per_million": 101.503, + "new_cases_smoothed_per_million": 71.185, + "total_deaths_per_million": 15.691, + "new_deaths_per_million": 1.961, + "new_deaths_smoothed_per_million": 1.779, + "new_tests": 8630.0, + "total_tests": 88539.0, + "total_tests_per_thousand": 8.683, + "new_tests_per_thousand": 0.846, + "new_tests_smoothed": 7288.0, + "new_tests_smoothed_per_thousand": 0.715, + "tests_per_case": 10.041, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 8251.0, + "new_cases": 808.0, + "new_cases_smoothed": 750.857, + "total_deaths": 187.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 809.183, + "new_cases_per_million": 79.241, + "new_cases_smoothed_per_million": 73.637, + "total_deaths_per_million": 18.339, + "new_deaths_per_million": 2.648, + "new_deaths_smoothed_per_million": 2.017, + "new_tests": 9257.0, + "total_tests": 97796.0, + "total_tests_per_thousand": 9.591, + "new_tests_per_thousand": 0.908, + "new_tests_smoothed": 7655.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 10.195, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-03", + "total_cases": 9034.0, + "new_cases": 783.0, + "new_cases_smoothed": 784.286, + "total_deaths": 209.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 885.972, + "new_cases_per_million": 76.789, + "new_cases_smoothed_per_million": 76.916, + "total_deaths_per_million": 20.497, + "new_deaths_per_million": 2.158, + "new_deaths_smoothed_per_million": 2.088, + "new_tests": 9438.0, + "total_tests": 107234.0, + "total_tests_per_thousand": 10.517, + "new_tests_per_thousand": 0.926, + "new_tests_smoothed": 7878.0, + "new_tests_smoothed_per_thousand": 0.773, + "tests_per_case": 10.045, + "positive_rate": 0.1, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-04", + "total_cases": 9886.0, + "new_cases": 852.0, + "new_cases_smoothed": 802.571, + "total_deaths": 246.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 969.529, + "new_cases_per_million": 83.556, + "new_cases_smoothed_per_million": 78.709, + "total_deaths_per_million": 24.125, + "new_deaths_per_million": 3.629, + "new_deaths_smoothed_per_million": 2.382, + "new_tests": 9055.0, + "total_tests": 116289.0, + "total_tests_per_thousand": 11.405, + "new_tests_per_thousand": 0.888, + "new_tests_smoothed": 8187.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 10.201, + "positive_rate": 0.098, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-05", + "total_cases": 10524.0, + "new_cases": 638.0, + "new_cases_smoothed": 764.857, + "total_deaths": 266.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 23.714, + "total_cases_per_million": 1032.098, + "new_cases_per_million": 62.569, + "new_cases_smoothed_per_million": 75.01, + "total_deaths_per_million": 26.087, + "new_deaths_per_million": 1.961, + "new_deaths_smoothed_per_million": 2.326, + "new_tests": 6716.0, + "total_tests": 123005.0, + "total_tests_per_thousand": 12.063, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 8427.0, + "new_tests_smoothed_per_thousand": 0.826, + "tests_per_case": 11.017999999999999, + "positive_rate": 0.091, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-06", + "total_cases": 11278.0, + "new_cases": 754.0, + "new_cases_smoothed": 759.429, + "total_deaths": 295.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 1106.043, + "new_cases_per_million": 73.945, + "new_cases_smoothed_per_million": 74.478, + "total_deaths_per_million": 28.931, + "new_deaths_per_million": 2.844, + "new_deaths_smoothed_per_million": 2.466, + "new_tests": 9186.0, + "total_tests": 132191.0, + "total_tests_per_thousand": 12.964, + "new_tests_per_thousand": 0.901, + "new_tests_smoothed": 8603.0, + "new_tests_smoothed_per_thousand": 0.844, + "tests_per_case": 11.328, + "positive_rate": 0.08800000000000001, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 11730.0, + "new_cases": 452.0, + "new_cases_smoothed": 760.286, + "total_deaths": 311.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 1150.371, + "new_cases_per_million": 44.328, + "new_cases_smoothed_per_million": 74.562, + "total_deaths_per_million": 30.5, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 2.396, + "new_tests": 10557.0, + "total_tests": 142748.0, + "total_tests_per_thousand": 13.999, + "new_tests_per_thousand": 1.035, + "new_tests_smoothed": 8977.0, + "new_tests_smoothed_per_thousand": 0.88, + "tests_per_case": 11.807, + "positive_rate": 0.085, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 12442.0, + "new_cases": 712.0, + "new_cases_smoothed": 714.143, + "total_deaths": 345.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 26.429, + "total_cases_per_million": 1220.198, + "new_cases_per_million": 69.826, + "new_cases_smoothed_per_million": 70.037, + "total_deaths_per_million": 33.834, + "new_deaths_per_million": 3.334, + "new_deaths_smoothed_per_million": 2.592, + "new_tests": 11402.0, + "total_tests": 154150.0, + "total_tests_per_thousand": 15.118, + "new_tests_per_thousand": 1.118, + "new_tests_smoothed": 9373.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 13.125, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 13141.0, + "new_cases": 699.0, + "new_cases_smoothed": 698.571, + "total_deaths": 380.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 27.571, + "total_cases_per_million": 1288.749, + "new_cases_per_million": 68.552, + "new_cases_smoothed_per_million": 68.51, + "total_deaths_per_million": 37.267, + "new_deaths_per_million": 3.432, + "new_deaths_smoothed_per_million": 2.704, + "new_tests": 12209.0, + "total_tests": 166359.0, + "total_tests_per_thousand": 16.315, + "new_tests_per_thousand": 1.197, + "new_tests_smoothed": 9795.0, + "new_tests_smoothed_per_thousand": 0.961, + "tests_per_case": 14.020999999999999, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-10", + "total_cases": 13956.0, + "new_cases": 815.0, + "new_cases_smoothed": 703.143, + "total_deaths": 409.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 1368.677, + "new_cases_per_million": 79.928, + "new_cases_smoothed_per_million": 68.958, + "total_deaths_per_million": 40.111, + "new_deaths_per_million": 2.844, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 10187.0, + "total_tests": 176546.0, + "total_tests_per_thousand": 17.314, + "new_tests_per_thousand": 0.999, + "new_tests_smoothed": 9902.0, + "new_tests_smoothed_per_thousand": 0.971, + "tests_per_case": 14.082, + "positive_rate": 0.071, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 15472.0, + "new_cases": 1516.0, + "new_cases_smoothed": 798.0, + "total_deaths": 435.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 1517.353, + "new_cases_per_million": 148.675, + "new_cases_smoothed_per_million": 78.261, + "total_deaths_per_million": 42.661, + "new_deaths_per_million": 2.55, + "new_deaths_smoothed_per_million": 2.648, + "new_tests": 9101.0, + "total_tests": 185647.0, + "total_tests_per_thousand": 18.207, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 9908.0, + "new_tests_smoothed_per_thousand": 0.972, + "tests_per_case": 12.415999999999999, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 15987.0, + "new_cases": 515.0, + "new_cases_smoothed": 780.429, + "total_deaths": 470.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 1567.859, + "new_cases_per_million": 50.507, + "new_cases_smoothed_per_million": 76.537, + "total_deaths_per_million": 46.093, + "new_deaths_per_million": 3.432, + "new_deaths_smoothed_per_million": 2.858, + "new_tests": 5210.0, + "total_tests": 190857.0, + "total_tests_per_thousand": 18.718, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 9693.0, + "new_tests_smoothed_per_thousand": 0.951, + "tests_per_case": 12.42, + "positive_rate": 0.081, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 16585.0, + "new_cases": 598.0, + "new_cases_smoothed": 758.143, + "total_deaths": 504.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 1626.505, + "new_cases_per_million": 58.646, + "new_cases_smoothed_per_million": 74.352, + "total_deaths_per_million": 49.428, + "new_deaths_per_million": 3.334, + "new_deaths_smoothed_per_million": 2.928, + "new_tests": 8887.0, + "total_tests": 199744.0, + "total_tests_per_thousand": 19.589, + "new_tests_per_thousand": 0.872, + "new_tests_smoothed": 9650.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 12.728, + "positive_rate": 0.079, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 16934.0, + "new_cases": 349.0, + "new_cases_smoothed": 743.429, + "total_deaths": 535.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 1660.732, + "new_cases_per_million": 34.227, + "new_cases_smoothed_per_million": 72.909, + "total_deaths_per_million": 52.468, + "new_deaths_per_million": 3.04, + "new_deaths_smoothed_per_million": 3.138, + "new_tests": 11920.0, + "total_tests": 211664.0, + "total_tests_per_thousand": 20.758, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 9845.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 13.243, + "positive_rate": 0.076, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 17448.0, + "new_cases": 514.0, + "new_cases_smoothed": 715.143, + "total_deaths": 567.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 1711.141, + "new_cases_per_million": 50.408, + "new_cases_smoothed_per_million": 70.135, + "total_deaths_per_million": 55.606, + "new_deaths_per_million": 3.138, + "new_deaths_smoothed_per_million": 3.11, + "new_tests": 13628.0, + "total_tests": 225292.0, + "total_tests_per_thousand": 22.095, + "new_tests_per_thousand": 1.337, + "new_tests_smoothed": 10163.0, + "new_tests_smoothed_per_thousand": 0.997, + "tests_per_case": 14.210999999999999, + "positive_rate": 0.07, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 18091.0, + "new_cases": 643.0, + "new_cases_smoothed": 707.143, + "total_deaths": 599.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 1774.2, + "new_cases_per_million": 63.06, + "new_cases_smoothed_per_million": 69.35, + "total_deaths_per_million": 58.744, + "new_deaths_per_million": 3.138, + "new_deaths_smoothed_per_million": 3.068, + "new_tests": 13400.0, + "total_tests": 238692.0, + "total_tests_per_thousand": 23.409, + "new_tests_per_thousand": 1.314, + "new_tests_smoothed": 10333.0, + "new_tests_smoothed_per_thousand": 1.013, + "tests_per_case": 14.612, + "positive_rate": 0.068, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 18841.0, + "new_cases": 750.0, + "new_cases_smoothed": 697.857, + "total_deaths": 629.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.429, + "total_cases_per_million": 1847.753, + "new_cases_per_million": 73.553, + "new_cases_smoothed_per_million": 68.439, + "total_deaths_per_million": 61.687, + "new_deaths_per_million": 2.942, + "new_deaths_smoothed_per_million": 3.082, + "new_tests": 14717.0, + "total_tests": 253409.0, + "total_tests_per_thousand": 24.852, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 10980.0, + "new_tests_smoothed_per_thousand": 1.077, + "tests_per_case": 15.734000000000002, + "positive_rate": 0.064, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 19022.0, + "new_cases": 181.0, + "new_cases_smoothed": 507.143, + "total_deaths": 657.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 1865.504, + "new_cases_per_million": 17.751, + "new_cases_smoothed_per_million": 49.736, + "total_deaths_per_million": 64.433, + "new_deaths_per_million": 2.746, + "new_deaths_smoothed_per_million": 3.11, + "new_tests": 12779.0, + "total_tests": 266188.0, + "total_tests_per_thousand": 26.105, + "new_tests_per_thousand": 1.253, + "new_tests_smoothed": 11506.0, + "new_tests_smoothed_per_thousand": 1.128, + "tests_per_case": 22.688000000000002, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 19685.0, + "new_cases": 663.0, + "new_cases_smoothed": 528.286, + "total_deaths": 687.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.0, + "total_cases_per_million": 1930.525, + "new_cases_per_million": 65.021, + "new_cases_smoothed_per_million": 51.809, + "total_deaths_per_million": 67.375, + "new_deaths_per_million": 2.942, + "new_deaths_smoothed_per_million": 3.04, + "new_tests": 9502.0, + "total_tests": 275690.0, + "total_tests_per_thousand": 27.037, + "new_tests_per_thousand": 0.932, + "new_tests_smoothed": 12119.0, + "new_tests_smoothed_per_thousand": 1.189, + "tests_per_case": 22.94, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 20206.0, + "new_cases": 521.0, + "new_cases_smoothed": 517.286, + "total_deaths": 714.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 1981.62, + "new_cases_per_million": 51.095, + "new_cases_smoothed_per_million": 50.731, + "total_deaths_per_million": 70.023, + "new_deaths_per_million": 2.648, + "new_deaths_smoothed_per_million": 2.942, + "new_tests": 11003.0, + "total_tests": 286693.0, + "total_tests_per_thousand": 28.116, + "new_tests_per_thousand": 1.079, + "new_tests_smoothed": 12421.0, + "new_tests_smoothed_per_thousand": 1.218, + "tests_per_case": 24.011999999999997, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 20863.0, + "new_cases": 657.0, + "new_cases_smoothed": 561.286, + "total_deaths": 735.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 2046.053, + "new_cases_per_million": 64.433, + "new_cases_smoothed_per_million": 55.046, + "total_deaths_per_million": 72.082, + "new_deaths_per_million": 2.059, + "new_deaths_smoothed_per_million": 2.802, + "new_tests": 14829.0, + "total_tests": 301522.0, + "total_tests_per_thousand": 29.571, + "new_tests_per_thousand": 1.454, + "new_tests_smoothed": 12837.0, + "new_tests_smoothed_per_thousand": 1.259, + "tests_per_case": 22.871, + "positive_rate": 0.044000000000000004, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 21379.0, + "new_cases": 516.0, + "new_cases_smoothed": 561.571, + "total_deaths": 762.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 2096.657, + "new_cases_per_million": 50.605, + "new_cases_smoothed_per_million": 55.074, + "total_deaths_per_million": 74.73, + "new_deaths_per_million": 2.648, + "new_deaths_smoothed_per_million": 2.732, + "new_tests": 15432.0, + "total_tests": 316954.0, + "total_tests_per_thousand": 31.084, + "new_tests_per_thousand": 1.513, + "new_tests_smoothed": 13095.0, + "new_tests_smoothed_per_thousand": 1.284, + "tests_per_case": 23.318, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-23", + "total_cases": 21982.0, + "new_cases": 603.0, + "new_cases_smoothed": 555.857, + "total_deaths": 785.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 26.571, + "total_cases_per_million": 2155.794, + "new_cases_per_million": 59.137, + "new_cases_smoothed_per_million": 54.513, + "total_deaths_per_million": 76.986, + "new_deaths_per_million": 2.256, + "new_deaths_smoothed_per_million": 2.606, + "new_tests": 15091.0, + "total_tests": 332045.0, + "total_tests_per_thousand": 32.564, + "new_tests_per_thousand": 1.48, + "new_tests_smoothed": 13336.0, + "new_tests_smoothed_per_thousand": 1.308, + "tests_per_case": 23.991999999999997, + "positive_rate": 0.042, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 22353.0, + "new_cases": 371.0, + "new_cases_smoothed": 501.714, + "total_deaths": 820.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 2192.178, + "new_cases_per_million": 36.384, + "new_cases_smoothed_per_million": 49.204, + "total_deaths_per_million": 80.418, + "new_deaths_per_million": 3.432, + "new_deaths_smoothed_per_million": 2.676, + "new_tests": 14725.0, + "total_tests": 346770.0, + "total_tests_per_thousand": 34.008, + "new_tests_per_thousand": 1.444, + "new_tests_smoothed": 13337.0, + "new_tests_smoothed_per_thousand": 1.308, + "tests_per_case": 26.583000000000002, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 23271.0, + "new_cases": 918.0, + "new_cases_smoothed": 607.0, + "total_deaths": 880.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 2282.207, + "new_cases_per_million": 90.029, + "new_cases_smoothed_per_million": 59.529, + "total_deaths_per_million": 86.302, + "new_deaths_per_million": 5.884, + "new_deaths_smoothed_per_million": 3.124, + "new_tests": 13440.0, + "total_tests": 360210.0, + "total_tests_per_thousand": 35.326, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 13432.0, + "new_tests_smoothed_per_thousand": 1.317, + "tests_per_case": 22.129, + "positive_rate": 0.045, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 23683.0, + "new_cases": 412.0, + "new_cases_smoothed": 571.143, + "total_deaths": 903.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 30.857, + "total_cases_per_million": 2322.613, + "new_cases_per_million": 40.405, + "new_cases_smoothed_per_million": 56.012, + "total_deaths_per_million": 88.558, + "new_deaths_per_million": 2.256, + "new_deaths_smoothed_per_million": 3.026, + "new_tests": 8235.0, + "total_tests": 368445.0, + "total_tests_per_thousand": 36.134, + "new_tests_per_thousand": 0.808, + "new_tests_smoothed": 13251.0, + "new_tests_smoothed_per_thousand": 1.3, + "tests_per_case": 23.201, + "positive_rate": 0.043, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 23846.0, + "new_cases": 163.0, + "new_cases_smoothed": 520.0, + "total_deaths": 928.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 2338.598, + "new_cases_per_million": 15.986, + "new_cases_smoothed_per_million": 50.997, + "total_deaths_per_million": 91.01, + "new_deaths_per_million": 2.452, + "new_deaths_smoothed_per_million": 2.998, + "new_tests": 12148.0, + "total_tests": 380593.0, + "total_tests_per_thousand": 37.325, + "new_tests_per_thousand": 1.191, + "new_tests_smoothed": 13414.0, + "new_tests_smoothed_per_thousand": 1.316, + "tests_per_case": 25.796, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 24144.0, + "new_cases": 298.0, + "new_cases_smoothed": 468.714, + "total_deaths": 948.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 2367.823, + "new_cases_per_million": 29.225, + "new_cases_smoothed_per_million": 45.967, + "total_deaths_per_million": 92.971, + "new_deaths_per_million": 1.961, + "new_deaths_smoothed_per_million": 2.984, + "new_tests": 15504.0, + "total_tests": 396097.0, + "total_tests_per_thousand": 38.846, + "new_tests_per_thousand": 1.52, + "new_tests_smoothed": 13511.0, + "new_tests_smoothed_per_thousand": 1.325, + "tests_per_case": 28.826, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 24324.0, + "new_cases": 180.0, + "new_cases_smoothed": 420.714, + "total_deaths": 973.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 2385.476, + "new_cases_per_million": 17.653, + "new_cases_smoothed_per_million": 41.26, + "total_deaths_per_million": 95.423, + "new_deaths_per_million": 2.452, + "new_deaths_smoothed_per_million": 2.956, + "new_tests": 14768.0, + "total_tests": 410865.0, + "total_tests_per_thousand": 40.294, + "new_tests_per_thousand": 1.448, + "new_tests_smoothed": 13416.0, + "new_tests_smoothed_per_thousand": 1.316, + "tests_per_case": 31.889, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 24692.0, + "new_cases": 368.0, + "new_cases_smoothed": 387.143, + "total_deaths": 989.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 2421.566, + "new_cases_per_million": 36.09, + "new_cases_smoothed_per_million": 37.967, + "total_deaths_per_million": 96.992, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 2.858, + "new_tests": 16373.0, + "total_tests": 427238.0, + "total_tests_per_thousand": 41.9, + "new_tests_per_thousand": 1.606, + "new_tests_smoothed": 13599.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 35.126999999999995, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 24987.0, + "new_cases": 295.0, + "new_cases_smoothed": 376.286, + "total_deaths": 1007.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 2450.497, + "new_cases_per_million": 28.931, + "new_cases_smoothed_per_million": 36.903, + "total_deaths_per_million": 98.757, + "new_deaths_per_million": 1.765, + "new_deaths_smoothed_per_million": 2.62, + "new_tests": 12652.0, + "total_tests": 439890.0, + "total_tests_per_thousand": 43.14, + "new_tests_per_thousand": 1.241, + "new_tests_smoothed": 13303.0, + "new_tests_smoothed_per_thousand": 1.305, + "tests_per_case": 35.353, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 25351.0, + "new_cases": 364.0, + "new_cases_smoothed": 297.143, + "total_deaths": 1007.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 2486.195, + "new_cases_per_million": 35.698, + "new_cases_smoothed_per_million": 29.141, + "total_deaths_per_million": 98.757, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.779, + "new_tests": 10533.0, + "total_tests": 450423.0, + "total_tests_per_thousand": 44.173, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 12888.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 43.373000000000005, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 25190.0, + "new_cases": -161.0, + "new_cases_smoothed": 215.286, + "total_deaths": 1023.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 2470.405, + "new_cases_per_million": -15.789, + "new_cases_smoothed_per_million": 21.113, + "total_deaths_per_million": 100.327, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 1.681, + "new_tests": 8399.0, + "total_tests": 458822.0, + "total_tests_per_thousand": 44.997, + "new_tests_per_thousand": 0.824, + "new_tests_smoothed": 12911.0, + "new_tests_smoothed_per_thousand": 1.266, + "tests_per_case": 59.971000000000004, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 25524.0, + "new_cases": 334.0, + "new_cases_smoothed": 239.714, + "total_deaths": 1063.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 2503.161, + "new_cases_per_million": 32.756, + "new_cases_smoothed_per_million": 23.509, + "total_deaths_per_million": 104.249, + "new_deaths_per_million": 3.923, + "new_deaths_smoothed_per_million": 1.891, + "new_tests": 11856.0, + "total_tests": 470678.0, + "total_tests_per_thousand": 46.16, + "new_tests_per_thousand": 1.163, + "new_tests_smoothed": 12869.0, + "new_tests_smoothed_per_thousand": 1.262, + "tests_per_case": 53.685, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-05", + "total_cases": 25524.0, + "new_cases": 0.0, + "new_cases_smoothed": 197.143, + "total_deaths": 1063.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2503.161, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.334, + "total_deaths_per_million": 104.249, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.611, + "new_tests": 16119.0, + "total_tests": 486797.0, + "total_tests_per_thousand": 47.741, + "new_tests_per_thousand": 1.581, + "new_tests_smoothed": 12957.0, + "new_tests_smoothed_per_thousand": 1.271, + "tests_per_case": 65.72399999999999, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-06", + "total_cases": 25702.0, + "new_cases": 178.0, + "new_cases_smoothed": 196.857, + "total_deaths": 1074.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 2520.618, + "new_cases_per_million": 17.457, + "new_cases_smoothed_per_million": 19.306, + "total_deaths_per_million": 105.328, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.415, + "new_tests": 15698.0, + "total_tests": 502495.0, + "total_tests_per_thousand": 49.28, + "new_tests_per_thousand": 1.54, + "new_tests_smoothed": 13090.0, + "new_tests_smoothed_per_thousand": 1.284, + "tests_per_case": 66.495, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-07", + "total_cases": 26182.0, + "new_cases": 480.0, + "new_cases_smoothed": 212.857, + "total_deaths": 1089.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 2567.692, + "new_cases_per_million": 47.074, + "new_cases_smoothed_per_million": 20.875, + "total_deaths_per_million": 106.799, + "new_deaths_per_million": 1.471, + "new_deaths_smoothed_per_million": 1.401, + "new_tests": 15946.0, + "total_tests": 518441.0, + "total_tests_per_thousand": 50.844, + "new_tests_per_thousand": 1.564, + "new_tests_smoothed": 13029.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 61.21, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-08", + "total_cases": 26715.0, + "new_cases": 533.0, + "new_cases_smoothed": 246.857, + "total_deaths": 1105.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 2619.963, + "new_cases_per_million": 52.272, + "new_cases_smoothed_per_million": 24.209, + "total_deaths_per_million": 108.368, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 1.373, + "new_tests": 15342.0, + "total_tests": 533783.0, + "total_tests_per_thousand": 52.349, + "new_tests_per_thousand": 1.505, + "new_tests_smoothed": 13413.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 54.335, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-09", + "total_cases": 27268.0, + "new_cases": 553.0, + "new_cases_smoothed": 273.857, + "total_deaths": 1114.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2674.197, + "new_cases_per_million": 54.233, + "new_cases_smoothed_per_million": 26.857, + "total_deaths_per_million": 109.251, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.499, + "new_tests": 13453.0, + "total_tests": 547236.0, + "total_tests_per_thousand": 53.668, + "new_tests_per_thousand": 1.319, + "new_tests_smoothed": 13830.0, + "new_tests_smoothed_per_thousand": 1.356, + "tests_per_case": 50.501000000000005, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-10", + "total_cases": 27406.0, + "new_cases": 138.0, + "new_cases_smoothed": 316.571, + "total_deaths": 1126.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 2687.73, + "new_cases_per_million": 13.534, + "new_cases_smoothed_per_million": 31.046, + "total_deaths_per_million": 110.428, + "new_deaths_per_million": 1.177, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 7482.0, + "total_tests": 554718.0, + "total_tests_per_thousand": 54.402, + "new_tests_per_thousand": 0.734, + "new_tests_smoothed": 13699.0, + "new_tests_smoothed_per_thousand": 1.343, + "tests_per_case": 43.273, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-11", + "total_cases": 27581.0, + "new_cases": 175.0, + "new_cases_smoothed": 293.857, + "total_deaths": 1135.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 2704.893, + "new_cases_per_million": 17.162, + "new_cases_smoothed_per_million": 28.819, + "total_deaths_per_million": 111.31, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.009, + "new_tests": 12689.0, + "total_tests": 567407.0, + "total_tests_per_thousand": 55.646, + "new_tests_per_thousand": 1.244, + "new_tests_smoothed": 13818.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 47.023, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 27679.0, + "new_cases": 98.0, + "new_cases_smoothed": 307.857, + "total_deaths": 1144.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 2714.504, + "new_cases_per_million": 9.611, + "new_cases_smoothed_per_million": 30.192, + "total_deaths_per_million": 112.193, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.135, + "new_tests": 16505.0, + "total_tests": 583912.0, + "total_tests_per_thousand": 57.265, + "new_tests_per_thousand": 1.619, + "new_tests_smoothed": 13874.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 45.066, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 27913.0, + "new_cases": 234.0, + "new_cases_smoothed": 315.857, + "total_deaths": 1163.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 2737.452, + "new_cases_per_million": 22.949, + "new_cases_smoothed_per_million": 30.976, + "total_deaths_per_million": 114.056, + "new_deaths_per_million": 1.863, + "new_deaths_smoothed_per_million": 1.247, + "new_tests": 18169.0, + "total_tests": 602081.0, + "total_tests_per_thousand": 59.047, + "new_tests_per_thousand": 1.782, + "new_tests_smoothed": 14227.0, + "new_tests_smoothed_per_thousand": 1.395, + "tests_per_case": 45.043, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 28132.0, + "new_cases": 219.0, + "new_cases_smoothed": 278.571, + "total_deaths": 1175.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 2758.93, + "new_cases_per_million": 21.478, + "new_cases_smoothed_per_million": 27.32, + "total_deaths_per_million": 115.233, + "new_deaths_per_million": 1.177, + "new_deaths_smoothed_per_million": 1.205, + "new_tests": 18282.0, + "total_tests": 620363.0, + "total_tests_per_thousand": 60.84, + "new_tests_per_thousand": 1.793, + "new_tests_smoothed": 14560.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 52.266999999999996, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-15", + "total_cases": 28319.0, + "new_cases": 187.0, + "new_cases_smoothed": 229.143, + "total_deaths": 1184.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 2777.269, + "new_cases_per_million": 18.339, + "new_cases_smoothed_per_million": 22.472, + "total_deaths_per_million": 116.116, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.107, + "new_tests": 20448.0, + "total_tests": 640811.0, + "total_tests_per_thousand": 62.845, + "new_tests_per_thousand": 2.005, + "new_tests_smoothed": 15290.0, + "new_tests_smoothed_per_thousand": 1.5, + "tests_per_case": 66.727, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 28583.0, + "new_cases": 264.0, + "new_cases_smoothed": 187.857, + "total_deaths": 1190.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2803.16, + "new_cases_per_million": 25.891, + "new_cases_smoothed_per_million": 18.423, + "total_deaths_per_million": 116.704, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 1.065, + "new_tests": 15963.0, + "total_tests": 656774.0, + "total_tests_per_thousand": 64.41, + "new_tests_per_thousand": 1.566, + "new_tests_smoothed": 15648.0, + "new_tests_smoothed_per_thousand": 1.535, + "tests_per_case": 83.29700000000001, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 28810.0, + "new_cases": 227.0, + "new_cases_smoothed": 200.571, + "total_deaths": 1203.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 2825.422, + "new_cases_per_million": 22.262, + "new_cases_smoothed_per_million": 19.67, + "total_deaths_per_million": 117.979, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 1.079, + "new_tests": 8945.0, + "total_tests": 665719.0, + "total_tests_per_thousand": 65.288, + "new_tests_per_thousand": 0.877, + "new_tests_smoothed": 15857.0, + "new_tests_smoothed_per_thousand": 1.555, + "tests_per_case": 79.059, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-18", + "total_cases": 29036.0, + "new_cases": 226.0, + "new_cases_smoothed": 207.857, + "total_deaths": 1218.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 2847.586, + "new_cases_per_million": 22.164, + "new_cases_smoothed_per_million": 20.385, + "total_deaths_per_million": 119.45, + "new_deaths_per_million": 1.471, + "new_deaths_smoothed_per_million": 1.163, + "new_tests": 12048.0, + "total_tests": 677767.0, + "total_tests_per_thousand": 66.469, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 15766.0, + "new_tests_smoothed_per_thousand": 1.546, + "tests_per_case": 75.85, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-19", + "total_cases": 29209.0, + "new_cases": 173.0, + "new_cases_smoothed": 218.571, + "total_deaths": 1231.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 2864.552, + "new_cases_per_million": 16.966, + "new_cases_smoothed_per_million": 21.435, + "total_deaths_per_million": 120.725, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 1.219, + "new_tests": 16121.0, + "total_tests": 693888.0, + "total_tests_per_thousand": 68.05, + "new_tests_per_thousand": 1.581, + "new_tests_smoothed": 15711.0, + "new_tests_smoothed_per_thousand": 1.541, + "tests_per_case": 71.88, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-20", + "total_cases": 29432.0, + "new_cases": 223.0, + "new_cases_smoothed": 217.0, + "total_deaths": 1247.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 2886.422, + "new_cases_per_million": 21.87, + "new_cases_smoothed_per_million": 21.281, + "total_deaths_per_million": 122.294, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 1.177, + "new_tests": 15390.0, + "total_tests": 709278.0, + "total_tests_per_thousand": 69.56, + "new_tests_per_thousand": 1.509, + "new_tests_smoothed": 15314.0, + "new_tests_smoothed_per_thousand": 1.502, + "tests_per_case": 70.571, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-21", + "total_cases": 29660.0, + "new_cases": 228.0, + "new_cases_smoothed": 218.286, + "total_deaths": 1263.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 2908.782, + "new_cases_per_million": 22.36, + "new_cases_smoothed_per_million": 21.407, + "total_deaths_per_million": 123.864, + "new_deaths_per_million": 1.569, + "new_deaths_smoothed_per_million": 1.233, + "new_tests": 15247.0, + "total_tests": 724525.0, + "total_tests_per_thousand": 71.055, + "new_tests_per_thousand": 1.495, + "new_tests_smoothed": 14880.0, + "new_tests_smoothed_per_thousand": 1.459, + "tests_per_case": 68.168, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-22", + "total_cases": 29912.0, + "new_cases": 252.0, + "new_cases_smoothed": 227.571, + "total_deaths": 1277.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 2933.496, + "new_cases_per_million": 24.714, + "new_cases_smoothed_per_million": 22.318, + "total_deaths_per_million": 125.237, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.303, + "new_tests": 15154.0, + "total_tests": 739679.0, + "total_tests_per_thousand": 72.541, + "new_tests_per_thousand": 1.486, + "new_tests_smoothed": 14124.0, + "new_tests_smoothed_per_thousand": 1.385, + "tests_per_case": 62.06399999999999, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-23", + "total_cases": 30200.0, + "new_cases": 288.0, + "new_cases_smoothed": 231.0, + "total_deaths": 1289.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 2961.74, + "new_cases_per_million": 28.244, + "new_cases_smoothed_per_million": 22.654, + "total_deaths_per_million": 126.413, + "new_deaths_per_million": 1.177, + "new_deaths_smoothed_per_million": 1.387, + "new_tests": 10735.0, + "total_tests": 750414.0, + "total_tests_per_thousand": 73.594, + "new_tests_per_thousand": 1.053, + "new_tests_smoothed": 13377.0, + "new_tests_smoothed_per_thousand": 1.312, + "tests_per_case": 57.909, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-24", + "total_cases": 30471.0, + "new_cases": 271.0, + "new_cases_smoothed": 237.286, + "total_deaths": 1302.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 2988.318, + "new_cases_per_million": 26.577, + "new_cases_smoothed_per_million": 23.271, + "total_deaths_per_million": 127.688, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 1.387, + "new_tests": 5710.0, + "total_tests": 756124.0, + "total_tests_per_thousand": 74.154, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 12915.0, + "new_tests_smoothed_per_thousand": 1.267, + "tests_per_case": 54.428000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-25", + "total_cases": 30623.0, + "new_cases": 152.0, + "new_cases_smoothed": 226.714, + "total_deaths": 1316.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 3003.224, + "new_cases_per_million": 14.907, + "new_cases_smoothed_per_million": 22.234, + "total_deaths_per_million": 129.061, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.373, + "new_tests": 11843.0, + "total_tests": 767967.0, + "total_tests_per_thousand": 75.315, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 12886.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 56.838, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-26", + "total_cases": 30788.0, + "new_cases": 165.0, + "new_cases_smoothed": 225.571, + "total_deaths": 1330.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 3019.406, + "new_cases_per_million": 16.182, + "new_cases_smoothed_per_million": 22.122, + "total_deaths_per_million": 130.434, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.387, + "new_tests": 15013.0, + "total_tests": 782980.0, + "total_tests_per_thousand": 76.788, + "new_tests_per_thousand": 1.472, + "new_tests_smoothed": 12727.0, + "new_tests_smoothed_per_thousand": 1.248, + "tests_per_case": 56.42100000000001, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-27", + "total_cases": 31007.0, + "new_cases": 219.0, + "new_cases_smoothed": 225.0, + "total_deaths": 1342.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 3040.884, + "new_cases_per_million": 21.478, + "new_cases_smoothed_per_million": 22.066, + "total_deaths_per_million": 131.611, + "new_deaths_per_million": 1.177, + "new_deaths_smoothed_per_million": 1.331, + "new_tests": 17164.0, + "total_tests": 800144.0, + "total_tests_per_thousand": 78.471, + "new_tests_per_thousand": 1.683, + "new_tests_smoothed": 12981.0, + "new_tests_smoothed_per_thousand": 1.273, + "tests_per_case": 57.693000000000005, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-28", + "total_cases": 31292.0, + "new_cases": 285.0, + "new_cases_smoothed": 233.143, + "total_deaths": 1356.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 3068.834, + "new_cases_per_million": 27.95, + "new_cases_smoothed_per_million": 22.865, + "total_deaths_per_million": 132.984, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.303, + "new_tests": 16869.0, + "total_tests": 817013.0, + "total_tests_per_thousand": 80.125, + "new_tests_per_thousand": 1.654, + "new_tests_smoothed": 13213.0, + "new_tests_smoothed_per_thousand": 1.296, + "tests_per_case": 56.673, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-29", + "total_cases": 31596.0, + "new_cases": 304.0, + "new_cases_smoothed": 240.571, + "total_deaths": 1369.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 3098.647, + "new_cases_per_million": 29.814, + "new_cases_smoothed_per_million": 23.593, + "total_deaths_per_million": 134.259, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 1.289, + "new_tests": 16029.0, + "total_tests": 833042.0, + "total_tests_per_thousand": 81.697, + "new_tests_per_thousand": 1.572, + "new_tests_smoothed": 13338.0, + "new_tests_smoothed_per_thousand": 1.308, + "tests_per_case": 55.443000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-30", + "total_cases": 31946.0, + "new_cases": 350.0, + "new_cases_smoothed": 249.429, + "total_deaths": 1383.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3132.972, + "new_cases_per_million": 34.325, + "new_cases_smoothed_per_million": 24.462, + "total_deaths_per_million": 135.632, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 12605.0, + "total_tests": 845647.0, + "total_tests_per_thousand": 82.933, + "new_tests_per_thousand": 1.236, + "new_tests_smoothed": 13605.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 54.545, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-05-31", + "total_cases": 32203.0, + "new_cases": 257.0, + "new_cases_smoothed": 247.429, + "total_deaths": 1396.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3158.176, + "new_cases_per_million": 25.204, + "new_cases_smoothed_per_million": 24.266, + "total_deaths_per_million": 136.907, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 6522.0, + "total_tests": 852169.0, + "total_tests_per_thousand": 83.573, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 13721.0, + "new_tests_smoothed_per_thousand": 1.346, + "tests_per_case": 55.45399999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-06-01", + "total_cases": 32500.0, + "new_cases": 297.0, + "new_cases_smoothed": 268.143, + "total_deaths": 1410.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3187.304, + "new_cases_per_million": 29.127, + "new_cases_smoothed_per_million": 26.297, + "total_deaths_per_million": 138.28, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 11523.0, + "total_tests": 863692.0, + "total_tests_per_thousand": 84.703, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 13675.0, + "new_tests_smoothed_per_thousand": 1.341, + "tests_per_case": 50.998999999999995, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-06-02", + "total_cases": 32700.0, + "new_cases": 200.0, + "new_cases_smoothed": 273.143, + "total_deaths": 1424.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3206.918, + "new_cases_per_million": 19.614, + "new_cases_smoothed_per_million": 26.787, + "total_deaths_per_million": 139.653, + "new_deaths_per_million": 1.373, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 15542.0, + "total_tests": 879234.0, + "total_tests_per_thousand": 86.227, + "new_tests_per_thousand": 1.524, + "new_tests_smoothed": 13751.0, + "new_tests_smoothed_per_thousand": 1.349, + "tests_per_case": 50.343999999999994, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-06-03", + "total_cases": 32895.0, + "new_cases": 195.0, + "new_cases_smoothed": 269.714, + "total_deaths": 1436.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 3226.042, + "new_cases_per_million": 19.124, + "new_cases_smoothed_per_million": 26.451, + "total_deaths_per_million": 140.83, + "new_deaths_per_million": 1.177, + "new_deaths_smoothed_per_million": 1.317, + "new_tests": 17079.0, + "total_tests": 896313.0, + "total_tests_per_thousand": 87.902, + "new_tests_per_thousand": 1.675, + "new_tests_smoothed": 13738.0, + "new_tests_smoothed_per_thousand": 1.347, + "tests_per_case": 50.935, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 71.3 + }, + { + "date": "2020-06-04", + "total_cases": 33261.0, + "new_cases": 366.0, + "new_cases_smoothed": 281.286, + "total_deaths": 1447.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 3261.935, + "new_cases_per_million": 35.894, + "new_cases_smoothed_per_million": 27.586, + "total_deaths_per_million": 141.909, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 1.275, + "new_tests": 17106.0, + "total_tests": 913419.0, + "total_tests_per_thousand": 89.58, + "new_tests_per_thousand": 1.678, + "new_tests_smoothed": 13772.0, + "new_tests_smoothed_per_thousand": 1.351, + "tests_per_case": 48.961000000000006, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-05", + "total_cases": 33592.0, + "new_cases": 331.0, + "new_cases_smoothed": 285.143, + "total_deaths": 1455.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 3294.397, + "new_cases_per_million": 32.461, + "new_cases_smoothed_per_million": 27.964, + "total_deaths_per_million": 142.693, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 1.205, + "new_tests": 15253.0, + "total_tests": 928672.0, + "total_tests_per_thousand": 91.076, + "new_tests_per_thousand": 1.496, + "new_tests_smoothed": 13661.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 47.909, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-06", + "total_cases": 33969.0, + "new_cases": 377.0, + "new_cases_smoothed": 289.0, + "total_deaths": 1465.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 3331.37, + "new_cases_per_million": 36.973, + "new_cases_smoothed_per_million": 28.342, + "total_deaths_per_million": 143.674, + "new_deaths_per_million": 0.981, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 11345.0, + "total_tests": 940017.0, + "total_tests_per_thousand": 92.188, + "new_tests_per_thousand": 1.113, + "new_tests_smoothed": 13481.0, + "new_tests_smoothed_per_thousand": 1.322, + "tests_per_case": 46.647, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-07", + "total_cases": 34351.0, + "new_cases": 382.0, + "new_cases_smoothed": 306.857, + "total_deaths": 1474.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 3368.833, + "new_cases_per_million": 37.463, + "new_cases_smoothed_per_million": 30.094, + "total_deaths_per_million": 144.556, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 1.093, + "new_tests": 6570.0, + "total_tests": 946587.0, + "total_tests_per_thousand": 92.833, + "new_tests_per_thousand": 0.644, + "new_tests_smoothed": 13488.0, + "new_tests_smoothed_per_thousand": 1.323, + "tests_per_case": 43.955, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-08", + "total_cases": 34493.0, + "new_cases": 142.0, + "new_cases_smoothed": 284.714, + "total_deaths": 1479.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 3382.759, + "new_cases_per_million": 13.926, + "new_cases_smoothed_per_million": 27.922, + "total_deaths_per_million": 145.047, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.967, + "new_tests": 11159.0, + "total_tests": 957746.0, + "total_tests_per_thousand": 93.927, + "new_tests_per_thousand": 1.094, + "new_tests_smoothed": 13436.0, + "new_tests_smoothed_per_thousand": 1.318, + "tests_per_case": 47.191, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-09", + "total_cases": 34885.0, + "new_cases": 392.0, + "new_cases_smoothed": 312.143, + "total_deaths": 1485.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 3421.203, + "new_cases_per_million": 38.444, + "new_cases_smoothed_per_million": 30.612, + "total_deaths_per_million": 145.635, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.855, + "new_tests": 13458.0, + "total_tests": 971204.0, + "total_tests_per_thousand": 95.247, + "new_tests_per_thousand": 1.32, + "new_tests_smoothed": 13139.0, + "new_tests_smoothed_per_thousand": 1.289, + "tests_per_case": 42.093, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-10", + "total_cases": 35306.0, + "new_cases": 421.0, + "new_cases_smoothed": 344.429, + "total_deaths": 1492.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3462.49, + "new_cases_per_million": 41.288, + "new_cases_smoothed_per_million": 33.778, + "total_deaths_per_million": 146.322, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.785, + "new_tests": 7678.0, + "total_tests": 978882.0, + "total_tests_per_thousand": 96.0, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 11796.0, + "new_tests_smoothed_per_thousand": 1.157, + "tests_per_case": 34.248000000000005, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-11", + "total_cases": 35600.0, + "new_cases": 294.0, + "new_cases_smoothed": 334.143, + "total_deaths": 1495.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 3491.323, + "new_cases_per_million": 28.833, + "new_cases_smoothed_per_million": 32.77, + "total_deaths_per_million": 146.616, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 4761.0, + "total_tests": 983643.0, + "total_tests_per_thousand": 96.467, + "new_tests_per_thousand": 0.467, + "new_tests_smoothed": 10032.0, + "new_tests_smoothed_per_thousand": 0.984, + "tests_per_case": 30.023000000000003, + "positive_rate": 0.033, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-12", + "total_cases": 35910.0, + "new_cases": 310.0, + "new_cases_smoothed": 331.143, + "total_deaths": 1504.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3521.725, + "new_cases_per_million": 30.402, + "new_cases_smoothed_per_million": 32.475, + "total_deaths_per_million": 147.499, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 0.686, + "new_tests": 10750.0, + "total_tests": 994393.0, + "total_tests_per_thousand": 97.521, + "new_tests_per_thousand": 1.054, + "new_tests_smoothed": 9389.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 28.353, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-13", + "total_cases": 36180.0, + "new_cases": 270.0, + "new_cases_smoothed": 315.857, + "total_deaths": 1505.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 3548.204, + "new_cases_per_million": 26.479, + "new_cases_smoothed_per_million": 30.976, + "total_deaths_per_million": 147.597, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.56, + "new_tests": 7886.0, + "total_tests": 1002279.0, + "total_tests_per_thousand": 98.294, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 8895.0, + "new_tests_smoothed_per_thousand": 0.872, + "tests_per_case": 28.160999999999998, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-14", + "total_cases": 36463.0, + "new_cases": 283.0, + "new_cases_smoothed": 301.714, + "total_deaths": 1512.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3575.958, + "new_cases_per_million": 27.754, + "new_cases_smoothed_per_million": 29.589, + "total_deaths_per_million": 148.283, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 4751.0, + "total_tests": 1007030.0, + "total_tests_per_thousand": 98.76, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 8635.0, + "new_tests_smoothed_per_thousand": 0.847, + "tests_per_case": 28.62, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-15", + "total_cases": 36690.0, + "new_cases": 227.0, + "new_cases_smoothed": 313.857, + "total_deaths": 1517.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 3598.22, + "new_cases_per_million": 22.262, + "new_cases_smoothed_per_million": 30.78, + "total_deaths_per_million": 148.774, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 11050.0, + "total_tests": 1018080.0, + "total_tests_per_thousand": 99.844, + "new_tests_per_thousand": 1.084, + "new_tests_smoothed": 8619.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 27.462, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-16", + "total_cases": 37036.0, + "new_cases": 346.0, + "new_cases_smoothed": 307.286, + "total_deaths": 1520.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 3632.153, + "new_cases_per_million": 33.933, + "new_cases_smoothed_per_million": 30.136, + "total_deaths_per_million": 149.068, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 14667.0, + "total_tests": 1032747.0, + "total_tests_per_thousand": 101.282, + "new_tests_per_thousand": 1.438, + "new_tests_smoothed": 8792.0, + "new_tests_smoothed_per_thousand": 0.862, + "tests_per_case": 28.612, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-17", + "total_cases": 37336.0, + "new_cases": 300.0, + "new_cases_smoothed": 290.0, + "total_deaths": 1522.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 3661.574, + "new_cases_per_million": 29.421, + "new_cases_smoothed_per_million": 28.441, + "total_deaths_per_million": 149.264, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 15007.0, + "total_tests": 1047754.0, + "total_tests_per_thousand": 102.754, + "new_tests_per_thousand": 1.472, + "new_tests_smoothed": 9839.0, + "new_tests_smoothed_per_thousand": 0.965, + "tests_per_case": 33.928000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-18", + "total_cases": 37672.0, + "new_cases": 336.0, + "new_cases_smoothed": 296.0, + "total_deaths": 1523.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 3694.526, + "new_cases_per_million": 32.952, + "new_cases_smoothed_per_million": 29.029, + "total_deaths_per_million": 149.362, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 13620.0, + "total_tests": 1061374.0, + "total_tests_per_thousand": 104.09, + "new_tests_per_thousand": 1.336, + "new_tests_smoothed": 11104.0, + "new_tests_smoothed_per_thousand": 1.089, + "tests_per_case": 37.514, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-19", + "total_cases": 38089.0, + "new_cases": 417.0, + "new_cases_smoothed": 311.286, + "total_deaths": 1524.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 3735.422, + "new_cases_per_million": 40.896, + "new_cases_smoothed_per_million": 30.528, + "total_deaths_per_million": 149.46, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 14594.0, + "total_tests": 1075968.0, + "total_tests_per_thousand": 105.521, + "new_tests_per_thousand": 1.431, + "new_tests_smoothed": 11654.0, + "new_tests_smoothed_per_thousand": 1.143, + "tests_per_case": 37.438, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-20", + "total_cases": 38464.0, + "new_cases": 375.0, + "new_cases_smoothed": 326.286, + "total_deaths": 1527.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3772.198, + "new_cases_per_million": 36.777, + "new_cases_smoothed_per_million": 31.999, + "total_deaths_per_million": 149.754, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 8978.0, + "total_tests": 1084946.0, + "total_tests_per_thousand": 106.402, + "new_tests_per_thousand": 0.88, + "new_tests_smoothed": 11810.0, + "new_tests_smoothed_per_thousand": 1.158, + "tests_per_case": 36.195, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-21", + "total_cases": 38841.0, + "new_cases": 377.0, + "new_cases_smoothed": 339.714, + "total_deaths": 1528.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3809.171, + "new_cases_per_million": 36.973, + "new_cases_smoothed_per_million": 33.316, + "total_deaths_per_million": 149.852, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 6593.0, + "total_tests": 1091539.0, + "total_tests_per_thousand": 107.048, + "new_tests_per_thousand": 0.647, + "new_tests_smoothed": 12073.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 35.539, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-22", + "total_cases": 39133.0, + "new_cases": 292.0, + "new_cases_smoothed": 349.0, + "total_deaths": 1530.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3837.808, + "new_cases_per_million": 28.637, + "new_cases_smoothed_per_million": 34.227, + "total_deaths_per_million": 150.048, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 11947.0, + "total_tests": 1103486.0, + "total_tests_per_thousand": 108.22, + "new_tests_per_thousand": 1.172, + "new_tests_smoothed": 12201.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 34.96, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-23", + "total_cases": 39392.0, + "new_cases": 259.0, + "new_cases_smoothed": 336.571, + "total_deaths": 1534.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3863.208, + "new_cases_per_million": 25.4, + "new_cases_smoothed_per_million": 33.008, + "total_deaths_per_million": 150.441, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 15805.0, + "total_tests": 1119291.0, + "total_tests_per_thousand": 109.77, + "new_tests_per_thousand": 1.55, + "new_tests_smoothed": 12363.0, + "new_tests_smoothed_per_thousand": 1.212, + "tests_per_case": 36.732, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-24", + "total_cases": 39737.0, + "new_cases": 345.0, + "new_cases_smoothed": 343.0, + "total_deaths": 1540.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3897.042, + "new_cases_per_million": 33.834, + "new_cases_smoothed_per_million": 33.638, + "total_deaths_per_million": 151.029, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 13808.0, + "total_tests": 1133099.0, + "total_tests_per_thousand": 111.124, + "new_tests_per_thousand": 1.354, + "new_tests_smoothed": 12192.0, + "new_tests_smoothed_per_thousand": 1.196, + "tests_per_case": 35.545, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 69.91 + }, + { + "date": "2020-06-25", + "total_cases": 40104.0, + "new_cases": 367.0, + "new_cases_smoothed": 347.429, + "total_deaths": 1543.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 3933.034, + "new_cases_per_million": 35.992, + "new_cases_smoothed_per_million": 34.073, + "total_deaths_per_million": 151.323, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 13454.0, + "total_tests": 1146553.0, + "total_tests_per_thousand": 112.443, + "new_tests_per_thousand": 1.319, + "new_tests_smoothed": 12168.0, + "new_tests_smoothed_per_thousand": 1.193, + "tests_per_case": 35.023, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-26", + "total_cases": 40415.0, + "new_cases": 311.0, + "new_cases_smoothed": 332.286, + "total_deaths": 1549.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 3963.535, + "new_cases_per_million": 30.5, + "new_cases_smoothed_per_million": 32.588, + "total_deaths_per_million": 151.912, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 15738.0, + "total_tests": 1162291.0, + "total_tests_per_thousand": 113.987, + "new_tests_per_thousand": 1.543, + "new_tests_smoothed": 12332.0, + "new_tests_smoothed_per_thousand": 1.209, + "tests_per_case": 37.113, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-27", + "total_cases": 40866.0, + "new_cases": 451.0, + "new_cases_smoothed": 343.143, + "total_deaths": 1555.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 4007.764, + "new_cases_per_million": 44.23, + "new_cases_smoothed_per_million": 33.652, + "total_deaths_per_million": 152.5, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 10254.0, + "total_tests": 1172545.0, + "total_tests_per_thousand": 114.993, + "new_tests_per_thousand": 1.006, + "new_tests_smoothed": 12514.0, + "new_tests_smoothed_per_thousand": 1.227, + "tests_per_case": 36.469, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-28", + "total_cases": 41189.0, + "new_cases": 323.0, + "new_cases_smoothed": 335.429, + "total_deaths": 1561.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 4039.441, + "new_cases_per_million": 31.677, + "new_cases_smoothed_per_million": 32.896, + "total_deaths_per_million": 153.089, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.462, + "new_tests": 6306.0, + "total_tests": 1178851.0, + "total_tests_per_thousand": 115.611, + "new_tests_per_thousand": 0.618, + "new_tests_smoothed": 12473.0, + "new_tests_smoothed_per_thousand": 1.223, + "tests_per_case": 37.185, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-29", + "total_cases": 41646.0, + "new_cases": 457.0, + "new_cases_smoothed": 359.0, + "total_deaths": 1564.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4084.26, + "new_cases_per_million": 44.818, + "new_cases_smoothed_per_million": 35.207, + "total_deaths_per_million": 153.383, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.476, + "new_tests": 12414.0, + "total_tests": 1191265.0, + "total_tests_per_thousand": 116.828, + "new_tests_per_thousand": 1.217, + "new_tests_smoothed": 12540.0, + "new_tests_smoothed_per_thousand": 1.23, + "tests_per_case": 34.93, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-06-30", + "total_cases": 41912.0, + "new_cases": 266.0, + "new_cases_smoothed": 360.0, + "total_deaths": 1568.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 4110.347, + "new_cases_per_million": 26.087, + "new_cases_smoothed_per_million": 35.306, + "total_deaths_per_million": 153.775, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.476, + "new_tests": 15787.0, + "total_tests": 1207052.0, + "total_tests_per_thousand": 118.377, + "new_tests_per_thousand": 1.548, + "new_tests_smoothed": 12537.0, + "new_tests_smoothed_per_thousand": 1.23, + "tests_per_case": 34.825, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 72.69 + }, + { + "date": "2020-07-01", + "total_cases": 42141.0, + "new_cases": 229.0, + "new_cases_smoothed": 343.429, + "total_deaths": 1576.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 4132.805, + "new_cases_per_million": 22.458, + "new_cases_smoothed_per_million": 33.68, + "total_deaths_per_million": 154.56, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 16285.0, + "total_tests": 1223337.0, + "total_tests_per_thousand": 119.974, + "new_tests_per_thousand": 1.597, + "new_tests_smoothed": 12891.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 37.536, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-02", + "total_cases": 42454.0, + "new_cases": 313.0, + "new_cases_smoothed": 335.714, + "total_deaths": 1579.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 4163.501, + "new_cases_per_million": 30.696, + "new_cases_smoothed_per_million": 32.924, + "total_deaths_per_million": 154.854, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 15396.0, + "total_tests": 1238733.0, + "total_tests_per_thousand": 121.484, + "new_tests_per_thousand": 1.51, + "new_tests_smoothed": 13169.0, + "new_tests_smoothed_per_thousand": 1.291, + "tests_per_case": 39.227, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-03", + "total_cases": 42782.0, + "new_cases": 328.0, + "new_cases_smoothed": 338.143, + "total_deaths": 1587.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 4195.668, + "new_cases_per_million": 32.167, + "new_cases_smoothed_per_million": 33.162, + "total_deaths_per_million": 155.638, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 14802.0, + "total_tests": 1253535.0, + "total_tests_per_thousand": 122.935, + "new_tests_per_thousand": 1.452, + "new_tests_smoothed": 13035.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 38.549, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-04", + "total_cases": 43156.0, + "new_cases": 374.0, + "new_cases_smoothed": 327.143, + "total_deaths": 1598.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 4232.347, + "new_cases_per_million": 36.679, + "new_cases_smoothed_per_million": 32.083, + "total_deaths_per_million": 156.717, + "new_deaths_per_million": 1.079, + "new_deaths_smoothed_per_million": 0.602, + "new_tests": 12801.0, + "total_tests": 1266336.0, + "total_tests_per_thousand": 124.191, + "new_tests_per_thousand": 1.255, + "new_tests_smoothed": 13399.0, + "new_tests_smoothed_per_thousand": 1.314, + "tests_per_case": 40.958, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-05", + "total_cases": 43569.0, + "new_cases": 413.0, + "new_cases_smoothed": 340.0, + "total_deaths": 1605.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4272.85, + "new_cases_per_million": 40.503, + "new_cases_smoothed_per_million": 33.344, + "total_deaths_per_million": 157.404, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.616, + "new_tests": 6997.0, + "total_tests": 1273333.0, + "total_tests_per_thousand": 124.877, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 13497.0, + "new_tests_smoothed_per_thousand": 1.324, + "tests_per_case": 39.696999999999996, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 67.13 + }, + { + "date": "2020-07-06", + "total_cases": 43897.0, + "new_cases": 328.0, + "new_cases_smoothed": 321.571, + "total_deaths": 1614.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4305.017, + "new_cases_per_million": 32.167, + "new_cases_smoothed_per_million": 31.537, + "total_deaths_per_million": 158.286, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 0.701, + "new_tests": 12125.0, + "total_tests": 1285458.0, + "total_tests_per_thousand": 126.066, + "new_tests_per_thousand": 1.189, + "new_tests_smoothed": 13456.0, + "new_tests_smoothed_per_thousand": 1.32, + "tests_per_case": 41.845, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-07", + "total_cases": 44129.0, + "new_cases": 232.0, + "new_cases_smoothed": 316.714, + "total_deaths": 1620.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 4327.77, + "new_cases_per_million": 22.752, + "new_cases_smoothed_per_million": 31.06, + "total_deaths_per_million": 158.875, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.729, + "new_tests": 16538.0, + "total_tests": 1301996.0, + "total_tests_per_thousand": 127.688, + "new_tests_per_thousand": 1.622, + "new_tests_smoothed": 13563.0, + "new_tests_smoothed_per_thousand": 1.33, + "tests_per_case": 42.824, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-08", + "total_cases": 44416.0, + "new_cases": 287.0, + "new_cases_smoothed": 325.0, + "total_deaths": 1629.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 4355.916, + "new_cases_per_million": 28.146, + "new_cases_smoothed_per_million": 31.873, + "total_deaths_per_million": 159.757, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 0.743, + "new_tests": 17031.0, + "total_tests": 1319027.0, + "total_tests_per_thousand": 129.358, + "new_tests_per_thousand": 1.67, + "new_tests_smoothed": 13670.0, + "new_tests_smoothed_per_thousand": 1.341, + "tests_per_case": 42.062, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-09", + "total_cases": 44859.0, + "new_cases": 443.0, + "new_cases_smoothed": 343.571, + "total_deaths": 1631.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 4399.361, + "new_cases_per_million": 43.445, + "new_cases_smoothed_per_million": 33.694, + "total_deaths_per_million": 159.954, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.729, + "new_tests": 15173.0, + "total_tests": 1334200.0, + "total_tests_per_thousand": 130.846, + "new_tests_per_thousand": 1.488, + "new_tests_smoothed": 13638.0, + "new_tests_smoothed_per_thousand": 1.337, + "tests_per_case": 39.695, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-10", + "total_cases": 45277.0, + "new_cases": 418.0, + "new_cases_smoothed": 356.429, + "total_deaths": 1644.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 4440.355, + "new_cases_per_million": 40.994, + "new_cases_smoothed_per_million": 34.955, + "total_deaths_per_million": 161.229, + "new_deaths_per_million": 1.275, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 15628.0, + "total_tests": 1349828.0, + "total_tests_per_thousand": 132.379, + "new_tests_per_thousand": 1.533, + "new_tests_smoothed": 13756.0, + "new_tests_smoothed_per_thousand": 1.349, + "tests_per_case": 38.594, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-11", + "total_cases": 45679.0, + "new_cases": 402.0, + "new_cases_smoothed": 360.429, + "total_deaths": 1646.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 4479.78, + "new_cases_per_million": 39.424, + "new_cases_smoothed_per_million": 35.348, + "total_deaths_per_million": 161.425, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 12113.0, + "total_tests": 1361941.0, + "total_tests_per_thousand": 133.567, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 13658.0, + "new_tests_smoothed_per_thousand": 1.339, + "tests_per_case": 37.894, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-12", + "total_cases": 46221.0, + "new_cases": 542.0, + "new_cases_smoothed": 378.857, + "total_deaths": 1654.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 4532.934, + "new_cases_per_million": 53.154, + "new_cases_smoothed_per_million": 37.155, + "total_deaths_per_million": 162.209, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.686, + "new_tests": 6579.0, + "total_tests": 1368520.0, + "total_tests_per_thousand": 134.212, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 13598.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 35.891999999999996, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-13", + "total_cases": 46512.0, + "new_cases": 291.0, + "new_cases_smoothed": 373.571, + "total_deaths": 1660.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 4561.473, + "new_cases_per_million": 28.539, + "new_cases_smoothed_per_million": 36.636, + "total_deaths_per_million": 162.798, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.644, + "new_tests": 13067.0, + "total_tests": 1381587.0, + "total_tests_per_thousand": 135.493, + "new_tests_per_thousand": 1.281, + "new_tests_smoothed": 13733.0, + "new_tests_smoothed_per_thousand": 1.347, + "tests_per_case": 36.760999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-14", + "total_cases": 46818.0, + "new_cases": 306.0, + "new_cases_smoothed": 384.143, + "total_deaths": 1662.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 4591.482, + "new_cases_per_million": 30.01, + "new_cases_smoothed_per_million": 37.673, + "total_deaths_per_million": 162.994, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 18109.0, + "total_tests": 1399696.0, + "total_tests_per_thousand": 137.269, + "new_tests_per_thousand": 1.776, + "new_tests_smoothed": 13957.0, + "new_tests_smoothed_per_thousand": 1.369, + "tests_per_case": 36.333, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-15", + "total_cases": 47051.0, + "new_cases": 233.0, + "new_cases_smoothed": 376.429, + "total_deaths": 1668.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4614.333, + "new_cases_per_million": 22.851, + "new_cases_smoothed_per_million": 36.917, + "total_deaths_per_million": 163.582, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.546, + "new_tests": 16076.0, + "total_tests": 1415772.0, + "total_tests_per_thousand": 138.846, + "new_tests_per_thousand": 1.577, + "new_tests_smoothed": 13821.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 36.716, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 65.74 + }, + { + "date": "2020-07-16", + "total_cases": 47426.0, + "new_cases": 375.0, + "new_cases_smoothed": 366.714, + "total_deaths": 1676.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 4651.109, + "new_cases_per_million": 36.777, + "new_cases_smoothed_per_million": 35.964, + "total_deaths_per_million": 164.367, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.63, + "new_tests": 15461.0, + "total_tests": 1431233.0, + "total_tests_per_thousand": 140.362, + "new_tests_per_thousand": 1.516, + "new_tests_smoothed": 13862.0, + "new_tests_smoothed_per_thousand": 1.359, + "tests_per_case": 37.801, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-17", + "total_cases": 47765.0, + "new_cases": 339.0, + "new_cases_smoothed": 355.429, + "total_deaths": 1679.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 4684.355, + "new_cases_per_million": 33.246, + "new_cases_smoothed_per_million": 34.857, + "total_deaths_per_million": 164.661, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 15977.0, + "total_tests": 1447210.0, + "total_tests_per_thousand": 141.929, + "new_tests_per_thousand": 1.567, + "new_tests_smoothed": 13912.0, + "new_tests_smoothed_per_thousand": 1.364, + "tests_per_case": 39.141, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-18", + "total_cases": 48077.0, + "new_cases": 312.0, + "new_cases_smoothed": 342.571, + "total_deaths": 1682.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 4714.954, + "new_cases_per_million": 30.598, + "new_cases_smoothed_per_million": 33.596, + "total_deaths_per_million": 164.955, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 12449.0, + "total_tests": 1459659.0, + "total_tests_per_thousand": 143.15, + "new_tests_per_thousand": 1.221, + "new_tests_smoothed": 13960.0, + "new_tests_smoothed_per_thousand": 1.369, + "tests_per_case": 40.751, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-19", + "total_cases": 48390.0, + "new_cases": 313.0, + "new_cases_smoothed": 309.857, + "total_deaths": 1684.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 4745.65, + "new_cases_per_million": 30.696, + "new_cases_smoothed_per_million": 30.388, + "total_deaths_per_million": 165.151, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 7391.0, + "total_tests": 1467050.0, + "total_tests_per_thousand": 143.875, + "new_tests_per_thousand": 0.725, + "new_tests_smoothed": 14076.0, + "new_tests_smoothed_per_thousand": 1.38, + "tests_per_case": 45.427, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-20", + "total_cases": 48636.0, + "new_cases": 246.0, + "new_cases_smoothed": 303.429, + "total_deaths": 1689.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4769.775, + "new_cases_per_million": 24.125, + "new_cases_smoothed_per_million": 29.758, + "total_deaths_per_million": 165.642, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.406, + "new_tests": 13525.0, + "total_tests": 1480575.0, + "total_tests_per_thousand": 145.201, + "new_tests_per_thousand": 1.326, + "new_tests_smoothed": 14141.0, + "new_tests_smoothed_per_thousand": 1.387, + "tests_per_case": 46.604, + "positive_rate": 0.021, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-21", + "total_cases": 48771.0, + "new_cases": 135.0, + "new_cases_smoothed": 279.0, + "total_deaths": 1691.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4783.015, + "new_cases_per_million": 13.24, + "new_cases_smoothed_per_million": 27.362, + "total_deaths_per_million": 165.838, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.406, + "new_tests": 17022.0, + "total_tests": 1497597.0, + "total_tests_per_thousand": 146.871, + "new_tests_per_thousand": 1.669, + "new_tests_smoothed": 13986.0, + "new_tests_smoothed_per_thousand": 1.372, + "tests_per_case": 50.129, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-22", + "total_cases": 48898.0, + "new_cases": 127.0, + "new_cases_smoothed": 263.857, + "total_deaths": 1697.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4795.47, + "new_cases_per_million": 12.455, + "new_cases_smoothed_per_million": 25.877, + "total_deaths_per_million": 166.426, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.406, + "new_tests": 15622.0, + "total_tests": 1513219.0, + "total_tests_per_thousand": 148.403, + "new_tests_per_thousand": 1.532, + "new_tests_smoothed": 13921.0, + "new_tests_smoothed_per_thousand": 1.365, + "tests_per_case": 52.76, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-23", + "total_cases": 49150.0, + "new_cases": 252.0, + "new_cases_smoothed": 246.286, + "total_deaths": 1702.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 4820.184, + "new_cases_per_million": 24.714, + "new_cases_smoothed_per_million": 24.153, + "total_deaths_per_million": 166.917, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.364, + "new_tests": 15601.0, + "total_tests": 1528820.0, + "total_tests_per_thousand": 149.933, + "new_tests_per_thousand": 1.53, + "new_tests_smoothed": 13941.0, + "new_tests_smoothed_per_thousand": 1.367, + "tests_per_case": 56.605, + "positive_rate": 0.018000000000000002, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-24", + "total_cases": 49379.0, + "new_cases": 229.0, + "new_cases_smoothed": 230.571, + "total_deaths": 1705.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 4842.642, + "new_cases_per_million": 22.458, + "new_cases_smoothed_per_million": 22.612, + "total_deaths_per_million": 167.211, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.364, + "new_tests": 15126.0, + "total_tests": 1543946.0, + "total_tests_per_thousand": 151.416, + "new_tests_per_thousand": 1.483, + "new_tests_smoothed": 13819.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 59.934, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-25", + "total_cases": 49692.0, + "new_cases": 313.0, + "new_cases_smoothed": 230.714, + "total_deaths": 1712.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 4873.338, + "new_cases_per_million": 30.696, + "new_cases_smoothed_per_million": 22.626, + "total_deaths_per_million": 167.897, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 11734.0, + "total_tests": 1555680.0, + "total_tests_per_thousand": 152.567, + "new_tests_per_thousand": 1.151, + "new_tests_smoothed": 13717.0, + "new_tests_smoothed_per_thousand": 1.345, + "tests_per_case": 59.45399999999999, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-26", + "total_cases": 49955.0, + "new_cases": 263.0, + "new_cases_smoothed": 223.571, + "total_deaths": 1716.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 4899.131, + "new_cases_per_million": 25.793, + "new_cases_smoothed_per_million": 21.926, + "total_deaths_per_million": 168.29, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 6252.0, + "total_tests": 1561932.0, + "total_tests_per_thousand": 153.18, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 13555.0, + "new_tests_smoothed_per_thousand": 1.329, + "tests_per_case": 60.629, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-27", + "total_cases": 50164.0, + "new_cases": 209.0, + "new_cases_smoothed": 218.286, + "total_deaths": 1717.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 4919.627, + "new_cases_per_million": 20.497, + "new_cases_smoothed_per_million": 21.407, + "total_deaths_per_million": 168.388, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 13196.0, + "total_tests": 1575128.0, + "total_tests_per_thousand": 154.474, + "new_tests_per_thousand": 1.294, + "new_tests_smoothed": 13508.0, + "new_tests_smoothed_per_thousand": 1.325, + "tests_per_case": 61.882, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 71.76 + }, + { + "date": "2020-07-28", + "total_cases": 50299.0, + "new_cases": 135.0, + "new_cases_smoothed": 218.286, + "total_deaths": 1719.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 4932.867, + "new_cases_per_million": 13.24, + "new_cases_smoothed_per_million": 21.407, + "total_deaths_per_million": 168.584, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 16726.0, + "total_tests": 1591854.0, + "total_tests_per_thousand": 156.115, + "new_tests_per_thousand": 1.64, + "new_tests_smoothed": 13465.0, + "new_tests_smoothed_per_thousand": 1.321, + "tests_per_case": 61.685, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-07-29", + "total_cases": 50410.0, + "new_cases": 111.0, + "new_cases_smoothed": 216.0, + "total_deaths": 1722.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 4943.753, + "new_cases_per_million": 10.886, + "new_cases_smoothed_per_million": 21.183, + "total_deaths_per_million": 168.878, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 16616.0, + "total_tests": 1608470.0, + "total_tests_per_thousand": 157.744, + "new_tests_per_thousand": 1.63, + "new_tests_smoothed": 13607.0, + "new_tests_smoothed_per_thousand": 1.334, + "tests_per_case": 62.995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-07-30", + "total_cases": 50613.0, + "new_cases": 203.0, + "new_cases_smoothed": 209.0, + "total_deaths": 1725.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 4963.661, + "new_cases_per_million": 19.908, + "new_cases_smoothed_per_million": 20.497, + "total_deaths_per_million": 169.172, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 14495.0, + "total_tests": 1622965.0, + "total_tests_per_thousand": 159.166, + "new_tests_per_thousand": 1.422, + "new_tests_smoothed": 13449.0, + "new_tests_smoothed_per_thousand": 1.319, + "tests_per_case": 64.34899999999999, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-07-31", + "total_cases": 50868.0, + "new_cases": 255.0, + "new_cases_smoothed": 212.714, + "total_deaths": 1727.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 4988.669, + "new_cases_per_million": 25.008, + "new_cases_smoothed_per_million": 20.861, + "total_deaths_per_million": 169.368, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 15274.0, + "total_tests": 1638239.0, + "total_tests_per_thousand": 160.664, + "new_tests_per_thousand": 1.498, + "new_tests_smoothed": 13470.0, + "new_tests_smoothed_per_thousand": 1.321, + "tests_per_case": 63.324, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-01", + "total_cases": 51072.0, + "new_cases": 204.0, + "new_cases_smoothed": 197.143, + "total_deaths": 1735.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5008.676, + "new_cases_per_million": 20.006, + "new_cases_smoothed_per_million": 19.334, + "total_deaths_per_million": 170.153, + "new_deaths_per_million": 0.785, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 12052.0, + "total_tests": 1650291.0, + "total_tests_per_thousand": 161.845, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 13516.0, + "new_tests_smoothed_per_thousand": 1.326, + "tests_per_case": 68.559, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-02", + "total_cases": 51310.0, + "new_cases": 238.0, + "new_cases_smoothed": 193.571, + "total_deaths": 1737.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5032.017, + "new_cases_per_million": 23.341, + "new_cases_smoothed_per_million": 18.984, + "total_deaths_per_million": 170.349, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 7017.0, + "total_tests": 1657308.0, + "total_tests_per_thousand": 162.534, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 13625.0, + "new_tests_smoothed_per_thousand": 1.336, + "tests_per_case": 70.387, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-03", + "total_cases": 51463.0, + "new_cases": 153.0, + "new_cases_smoothed": 185.571, + "total_deaths": 1738.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5047.022, + "new_cases_per_million": 15.005, + "new_cases_smoothed_per_million": 18.199, + "total_deaths_per_million": 170.447, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 14179.0, + "total_tests": 1671487.0, + "total_tests_per_thousand": 163.924, + "new_tests_per_thousand": 1.391, + "new_tests_smoothed": 13766.0, + "new_tests_smoothed_per_thousand": 1.35, + "tests_per_case": 74.182, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-04", + "total_cases": 51569.0, + "new_cases": 106.0, + "new_cases_smoothed": 181.429, + "total_deaths": 1738.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5057.417, + "new_cases_per_million": 10.396, + "new_cases_smoothed_per_million": 17.793, + "total_deaths_per_million": 170.447, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 17129.0, + "total_tests": 1688616.0, + "total_tests_per_thousand": 165.604, + "new_tests_per_thousand": 1.68, + "new_tests_smoothed": 13823.0, + "new_tests_smoothed_per_thousand": 1.356, + "tests_per_case": 76.19, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-05", + "total_cases": 51681.0, + "new_cases": 112.0, + "new_cases_smoothed": 181.571, + "total_deaths": 1739.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5068.401, + "new_cases_per_million": 10.984, + "new_cases_smoothed_per_million": 17.807, + "total_deaths_per_million": 170.545, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 16951.0, + "total_tests": 1705567.0, + "total_tests_per_thousand": 167.266, + "new_tests_per_thousand": 1.662, + "new_tests_smoothed": 13871.0, + "new_tests_smoothed_per_thousand": 1.36, + "tests_per_case": 76.39399999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-06", + "total_cases": 51848.0, + "new_cases": 167.0, + "new_cases_smoothed": 176.429, + "total_deaths": 1740.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5084.779, + "new_cases_per_million": 16.378, + "new_cases_smoothed_per_million": 17.303, + "total_deaths_per_million": 170.643, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 14363.0, + "total_tests": 1719930.0, + "total_tests_per_thousand": 168.675, + "new_tests_per_thousand": 1.409, + "new_tests_smoothed": 13852.0, + "new_tests_smoothed_per_thousand": 1.358, + "tests_per_case": 78.513, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-07", + "total_cases": 52061.0, + "new_cases": 213.0, + "new_cases_smoothed": 170.429, + "total_deaths": 1743.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5105.668, + "new_cases_per_million": 20.889, + "new_cases_smoothed_per_million": 16.714, + "total_deaths_per_million": 170.938, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.224, + "new_tests": 14747.0, + "total_tests": 1734677.0, + "total_tests_per_thousand": 170.121, + "new_tests_per_thousand": 1.446, + "new_tests_smoothed": 13777.0, + "new_tests_smoothed_per_thousand": 1.351, + "tests_per_case": 80.837, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-08", + "total_cases": 52351.0, + "new_cases": 290.0, + "new_cases_smoothed": 182.714, + "total_deaths": 1746.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5134.108, + "new_cases_per_million": 28.441, + "new_cases_smoothed_per_million": 17.919, + "total_deaths_per_million": 171.232, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 10646.0, + "total_tests": 1745323.0, + "total_tests_per_thousand": 171.165, + "new_tests_per_thousand": 1.044, + "new_tests_smoothed": 13576.0, + "new_tests_smoothed_per_thousand": 1.331, + "tests_per_case": 74.30199999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-09", + "total_cases": 52537.0, + "new_cases": 186.0, + "new_cases_smoothed": 175.286, + "total_deaths": 1750.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5152.35, + "new_cases_per_million": 18.241, + "new_cases_smoothed_per_million": 17.19, + "total_deaths_per_million": 171.624, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 8224.0, + "total_tests": 1753547.0, + "total_tests_per_thousand": 171.972, + "new_tests_per_thousand": 0.807, + "new_tests_smoothed": 13748.0, + "new_tests_smoothed_per_thousand": 1.348, + "tests_per_case": 78.432, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 65.28 + }, + { + "date": "2020-08-10", + "total_cases": 52668.0, + "new_cases": 131.0, + "new_cases_smoothed": 172.143, + "total_deaths": 1756.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5165.197, + "new_cases_per_million": 12.847, + "new_cases_smoothed_per_million": 16.882, + "total_deaths_per_million": 172.212, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 12934.0, + "total_tests": 1766481.0, + "total_tests_per_thousand": 173.24, + "new_tests_per_thousand": 1.268, + "new_tests_smoothed": 13571.0, + "new_tests_smoothed_per_thousand": 1.331, + "tests_per_case": 78.836, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-11", + "total_cases": 52825.0, + "new_cases": 157.0, + "new_cases_smoothed": 179.429, + "total_deaths": 1759.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5180.594, + "new_cases_per_million": 15.397, + "new_cases_smoothed_per_million": 17.597, + "total_deaths_per_million": 172.507, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 16842.0, + "total_tests": 1783323.0, + "total_tests_per_thousand": 174.892, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 13530.0, + "new_tests_smoothed_per_thousand": 1.327, + "tests_per_case": 75.406, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-12", + "total_cases": 52945.0, + "new_cases": 120.0, + "new_cases_smoothed": 180.571, + "total_deaths": 1761.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5192.363, + "new_cases_per_million": 11.769, + "new_cases_smoothed_per_million": 17.709, + "total_deaths_per_million": 172.703, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 16016.0, + "total_tests": 1799339.0, + "total_tests_per_thousand": 176.463, + "new_tests_per_thousand": 1.571, + "new_tests_smoothed": 13396.0, + "new_tests_smoothed_per_thousand": 1.314, + "tests_per_case": 74.187, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-13", + "total_cases": 53223.0, + "new_cases": 278.0, + "new_cases_smoothed": 196.429, + "total_deaths": 1764.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 5219.626, + "new_cases_per_million": 27.264, + "new_cases_smoothed_per_million": 19.264, + "total_deaths_per_million": 172.997, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 14484.0, + "total_tests": 1813823.0, + "total_tests_per_thousand": 177.883, + "new_tests_per_thousand": 1.42, + "new_tests_smoothed": 13413.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 68.28399999999999, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-14", + "total_cases": 53548.0, + "new_cases": 325.0, + "new_cases_smoothed": 212.429, + "total_deaths": 1770.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 5251.499, + "new_cases_per_million": 31.873, + "new_cases_smoothed_per_million": 20.833, + "total_deaths_per_million": 173.585, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 16225.0, + "total_tests": 1830048.0, + "total_tests_per_thousand": 179.474, + "new_tests_per_thousand": 1.591, + "new_tests_smoothed": 13624.0, + "new_tests_smoothed_per_thousand": 1.336, + "tests_per_case": 64.134, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-15", + "total_cases": 53783.0, + "new_cases": 235.0, + "new_cases_smoothed": 204.571, + "total_deaths": 1772.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5274.546, + "new_cases_per_million": 23.047, + "new_cases_smoothed_per_million": 20.062, + "total_deaths_per_million": 173.782, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.364, + "new_tests": 10424.0, + "total_tests": 1840472.0, + "total_tests_per_thousand": 180.497, + "new_tests_per_thousand": 1.022, + "new_tests_smoothed": 13593.0, + "new_tests_smoothed_per_thousand": 1.333, + "tests_per_case": 66.446, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-16", + "total_cases": 53981.0, + "new_cases": 198.0, + "new_cases_smoothed": 206.286, + "total_deaths": 1775.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 5293.964, + "new_cases_per_million": 19.418, + "new_cases_smoothed_per_million": 20.231, + "total_deaths_per_million": 174.076, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 7773.0, + "total_tests": 1848245.0, + "total_tests_per_thousand": 181.259, + "new_tests_per_thousand": 0.762, + "new_tests_smoothed": 13528.0, + "new_tests_smoothed_per_thousand": 1.327, + "tests_per_case": 65.579, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-17", + "total_cases": 54102.0, + "new_cases": 121.0, + "new_cases_smoothed": 204.857, + "total_deaths": 1778.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5305.831, + "new_cases_per_million": 11.867, + "new_cases_smoothed_per_million": 20.091, + "total_deaths_per_million": 174.37, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 14037.0, + "total_tests": 1862282.0, + "total_tests_per_thousand": 182.636, + "new_tests_per_thousand": 1.377, + "new_tests_smoothed": 13686.0, + "new_tests_smoothed_per_thousand": 1.342, + "tests_per_case": 66.808, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-18", + "total_cases": 54234.0, + "new_cases": 132.0, + "new_cases_smoothed": 201.286, + "total_deaths": 1779.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5318.776, + "new_cases_per_million": 12.945, + "new_cases_smoothed_per_million": 19.74, + "total_deaths_per_million": 174.468, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 18242.0, + "total_tests": 1880524.0, + "total_tests_per_thousand": 184.425, + "new_tests_per_thousand": 1.789, + "new_tests_smoothed": 13886.0, + "new_tests_smoothed_per_thousand": 1.362, + "tests_per_case": 68.987, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-19", + "total_cases": 54448.0, + "new_cases": 214.0, + "new_cases_smoothed": 214.714, + "total_deaths": 1784.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5339.763, + "new_cases_per_million": 20.987, + "new_cases_smoothed_per_million": 21.057, + "total_deaths_per_million": 174.958, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 16500.0, + "total_tests": 1897024.0, + "total_tests_per_thousand": 186.043, + "new_tests_per_thousand": 1.618, + "new_tests_smoothed": 13955.0, + "new_tests_smoothed_per_thousand": 1.369, + "tests_per_case": 64.993, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-20", + "total_cases": 54701.0, + "new_cases": 253.0, + "new_cases_smoothed": 211.143, + "total_deaths": 1786.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5364.575, + "new_cases_per_million": 24.812, + "new_cases_smoothed_per_million": 20.707, + "total_deaths_per_million": 175.155, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 14115.0, + "total_tests": 1911139.0, + "total_tests_per_thousand": 187.427, + "new_tests_per_thousand": 1.384, + "new_tests_smoothed": 13902.0, + "new_tests_smoothed_per_thousand": 1.363, + "tests_per_case": 65.842, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-21", + "total_cases": 54992.0, + "new_cases": 291.0, + "new_cases_smoothed": 206.286, + "total_deaths": 1788.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5393.114, + "new_cases_per_million": 28.539, + "new_cases_smoothed_per_million": 20.231, + "total_deaths_per_million": 175.351, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 14543.0, + "total_tests": 1925682.0, + "total_tests_per_thousand": 188.853, + "new_tests_per_thousand": 1.426, + "new_tests_smoothed": 13662.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 66.229, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-22", + "total_cases": 55211.0, + "new_cases": 219.0, + "new_cases_smoothed": 204.0, + "total_deaths": 1792.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5414.591, + "new_cases_per_million": 21.478, + "new_cases_smoothed_per_million": 20.006, + "total_deaths_per_million": 175.743, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 11144.0, + "total_tests": 1936826.0, + "total_tests_per_thousand": 189.946, + "new_tests_per_thousand": 1.093, + "new_tests_smoothed": 13765.0, + "new_tests_smoothed_per_thousand": 1.35, + "tests_per_case": 67.475, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-23", + "total_cases": 55452.0, + "new_cases": 241.0, + "new_cases_smoothed": 210.143, + "total_deaths": 1794.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5438.226, + "new_cases_per_million": 23.635, + "new_cases_smoothed_per_million": 20.609, + "total_deaths_per_million": 175.939, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.266, + "new_tests": 8269.0, + "total_tests": 1945095.0, + "total_tests_per_thousand": 190.757, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 13836.0, + "new_tests_smoothed_per_thousand": 1.357, + "tests_per_case": 65.84100000000001, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-24", + "total_cases": 55597.0, + "new_cases": 145.0, + "new_cases_smoothed": 213.571, + "total_deaths": 1796.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5452.447, + "new_cases_per_million": 14.22, + "new_cases_smoothed_per_million": 20.945, + "total_deaths_per_million": 176.135, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 13630.0, + "total_tests": 1958725.0, + "total_tests_per_thousand": 192.094, + "new_tests_per_thousand": 1.337, + "new_tests_smoothed": 13778.0, + "new_tests_smoothed_per_thousand": 1.351, + "tests_per_case": 64.512, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 66.2 + }, + { + "date": "2020-08-25", + "total_cases": 55720.0, + "new_cases": 123.0, + "new_cases_smoothed": 212.286, + "total_deaths": 1801.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5464.509, + "new_cases_per_million": 12.063, + "new_cases_smoothed_per_million": 20.819, + "total_deaths_per_million": 176.626, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 17674.0, + "total_tests": 1976399.0, + "total_tests_per_thousand": 193.827, + "new_tests_per_thousand": 1.733, + "new_tests_smoothed": 13696.0, + "new_tests_smoothed_per_thousand": 1.343, + "tests_per_case": 64.517, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-26", + "total_cases": 55912.0, + "new_cases": 192.0, + "new_cases_smoothed": 209.143, + "total_deaths": 1805.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5483.339, + "new_cases_per_million": 18.83, + "new_cases_smoothed_per_million": 20.511, + "total_deaths_per_million": 177.018, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 16075.0, + "total_tests": 1992474.0, + "total_tests_per_thousand": 195.404, + "new_tests_per_thousand": 1.576, + "new_tests_smoothed": 13636.0, + "new_tests_smoothed_per_thousand": 1.337, + "tests_per_case": 65.199, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-27", + "total_cases": 56274.0, + "new_cases": 362.0, + "new_cases_smoothed": 224.714, + "total_deaths": 1807.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5518.841, + "new_cases_per_million": 35.502, + "new_cases_smoothed_per_million": 22.038, + "total_deaths_per_million": 177.214, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 14657.0, + "total_tests": 2007131.0, + "total_tests_per_thousand": 196.841, + "new_tests_per_thousand": 1.437, + "new_tests_smoothed": 13713.0, + "new_tests_smoothed_per_thousand": 1.345, + "tests_per_case": 61.023999999999994, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-28", + "total_cases": 56673.0, + "new_cases": 399.0, + "new_cases_smoothed": 240.143, + "total_deaths": 1809.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5557.971, + "new_cases_per_million": 39.13, + "new_cases_smoothed_per_million": 23.551, + "total_deaths_per_million": 177.41, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 16309.0, + "total_tests": 2023440.0, + "total_tests_per_thousand": 198.441, + "new_tests_per_thousand": 1.599, + "new_tests_smoothed": 13965.0, + "new_tests_smoothed_per_thousand": 1.37, + "tests_per_case": 58.153, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-29", + "total_cases": 57074.0, + "new_cases": 401.0, + "new_cases_smoothed": 266.143, + "total_deaths": 1815.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5597.297, + "new_cases_per_million": 39.326, + "new_cases_smoothed_per_million": 26.101, + "total_deaths_per_million": 177.999, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 11721.0, + "total_tests": 2035161.0, + "total_tests_per_thousand": 199.59, + "new_tests_per_thousand": 1.149, + "new_tests_smoothed": 14048.0, + "new_tests_smoothed_per_thousand": 1.378, + "tests_per_case": 52.784, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-30", + "total_cases": 57448.0, + "new_cases": 374.0, + "new_cases_smoothed": 285.143, + "total_deaths": 1818.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 5633.976, + "new_cases_per_million": 36.679, + "new_cases_smoothed_per_million": 27.964, + "total_deaths_per_million": 178.293, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 8256.0, + "total_tests": 2043417.0, + "total_tests_per_thousand": 200.4, + "new_tests_per_thousand": 0.81, + "new_tests_smoothed": 14046.0, + "new_tests_smoothed_per_thousand": 1.378, + "tests_per_case": 49.26, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-08-31", + "total_cases": 57768.0, + "new_cases": 320.0, + "new_cases_smoothed": 310.143, + "total_deaths": 1819.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5665.358, + "new_cases_per_million": 31.383, + "new_cases_smoothed_per_million": 30.416, + "total_deaths_per_million": 178.391, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.322, + "new_tests": 15127.0, + "total_tests": 2058544.0, + "total_tests_per_thousand": 201.883, + "new_tests_per_thousand": 1.484, + "new_tests_smoothed": 14260.0, + "new_tests_smoothed_per_thousand": 1.398, + "tests_per_case": 45.979, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 55.09 + }, + { + "date": "2020-09-01", + "total_cases": 58012.0, + "new_cases": 244.0, + "new_cases_smoothed": 327.429, + "total_deaths": 1822.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5689.288, + "new_cases_per_million": 23.929, + "new_cases_smoothed_per_million": 32.111, + "total_deaths_per_million": 178.685, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.294, + "stringency_index": 55.09 + }, + { + "date": "2020-09-02", + "total_cases": 58243.0, + "new_cases": 231.0, + "new_cases_smoothed": 333.0, + "total_deaths": 1824.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5711.942, + "new_cases_per_million": 22.654, + "new_cases_smoothed_per_million": 32.658, + "total_deaths_per_million": 178.881, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.266, + "stringency_index": 55.09 + }, + { + "date": "2020-09-03", + "total_cases": 58633.0, + "new_cases": 390.0, + "new_cases_smoothed": 337.0, + "total_deaths": 1827.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5750.19, + "new_cases_per_million": 38.248, + "new_cases_smoothed_per_million": 33.05, + "total_deaths_per_million": 179.175, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 55.09 + }, + { + "date": "2020-09-04", + "total_cases": 59051.0, + "new_cases": 418.0, + "new_cases_smoothed": 339.714, + "total_deaths": 1829.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5791.183, + "new_cases_per_million": 40.994, + "new_cases_smoothed_per_million": 33.316, + "total_deaths_per_million": 179.372, + "new_deaths_per_million": 0.196, + "new_deaths_smoothed_per_million": 0.28 + }, + { + "date": "2020-09-05", + "total_cases": 59457.0, + "new_cases": 406.0, + "new_cases_smoothed": 340.429, + "total_deaths": 1833.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5831.0, + "new_cases_per_million": 39.817, + "new_cases_smoothed_per_million": 33.386, + "total_deaths_per_million": 179.764, + "new_deaths_per_million": 0.392, + "new_deaths_smoothed_per_million": 0.252 + } + ] + }, + "PRI": { + "continent": "North America", + "location": "Puerto Rico", + "population": 2860840.0, + "population_density": 376.232, + "median_age": 38.2, + "aged_65_older": 15.168, + "aged_70_older": 9.829, + "gdp_per_capita": 35044.67, + "cardiovasc_death_rate": 108.094, + "diabetes_prevalence": 12.9, + "life_expectancy": 80.1, + "data": [ + { + "date": "2020-03-28", + "total_cases": 64.0, + "new_cases": 64.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "total_cases_per_million": 22.371, + "new_cases_per_million": 22.371, + "total_deaths_per_million": 0.699, + "new_deaths_per_million": 0.699, + "stringency_index": 93.52 + }, + { + "date": "2020-03-29", + "total_cases": 100.0, + "new_cases": 36.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "total_cases_per_million": 34.955, + "new_cases_per_million": 12.584, + "total_deaths_per_million": 1.049, + "new_deaths_per_million": 0.35, + "stringency_index": 93.52 + }, + { + "date": "2020-03-30", + "total_cases": 127.0, + "new_cases": 27.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "total_cases_per_million": 44.393, + "new_cases_per_million": 9.438, + "total_deaths_per_million": 1.748, + "new_deaths_per_million": 0.699, + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 174.0, + "new_cases": 47.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "total_cases_per_million": 60.821, + "new_cases_per_million": 16.429, + "total_deaths_per_million": 2.097, + "new_deaths_per_million": 0.35, + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 239.0, + "new_cases": 65.0, + "total_deaths": 8.0, + "new_deaths": 2.0, + "total_cases_per_million": 83.542, + "new_cases_per_million": 22.721, + "total_deaths_per_million": 2.796, + "new_deaths_per_million": 0.699, + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 286.0, + "new_cases": 47.0, + "total_deaths": 11.0, + "new_deaths": 3.0, + "total_cases_per_million": 99.971, + "new_cases_per_million": 16.429, + "total_deaths_per_million": 3.845, + "new_deaths_per_million": 1.049, + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 316.0, + "new_cases": 30.0, + "new_cases_smoothed": 45.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 110.457, + "new_cases_per_million": 10.486, + "new_cases_smoothed_per_million": 15.78, + "total_deaths_per_million": 4.195, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 378.0, + "new_cases": 62.0, + "new_cases_smoothed": 44.857, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 132.129, + "new_cases_per_million": 21.672, + "new_cases_smoothed_per_million": 15.68, + "total_deaths_per_million": 5.243, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 452.0, + "new_cases": 74.0, + "new_cases_smoothed": 50.286, + "total_deaths": 18.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 157.996, + "new_cases_per_million": 25.867, + "new_cases_smoothed_per_million": 17.577, + "total_deaths_per_million": 6.292, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 475.0, + "new_cases": 23.0, + "new_cases_smoothed": 49.714, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 166.035, + "new_cases_per_million": 8.04, + "new_cases_smoothed_per_million": 17.378, + "total_deaths_per_million": 6.991, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 513.0, + "new_cases": 38.0, + "new_cases_smoothed": 48.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 179.318, + "new_cases_per_million": 13.283, + "new_cases_smoothed_per_million": 16.928, + "total_deaths_per_million": 7.341, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 573.0, + "new_cases": 60.0, + "new_cases_smoothed": 47.714, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 200.291, + "new_cases_per_million": 20.973, + "new_cases_smoothed_per_million": 16.678, + "total_deaths_per_million": 8.04, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 620.0, + "new_cases": 47.0, + "new_cases_smoothed": 47.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 216.72, + "new_cases_per_million": 16.429, + "new_cases_smoothed_per_million": 16.678, + "total_deaths_per_million": 8.389, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 683.0, + "new_cases": 63.0, + "new_cases_smoothed": 52.429, + "total_deaths": 33.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 238.741, + "new_cases_per_million": 22.022, + "new_cases_smoothed_per_million": 18.326, + "total_deaths_per_million": 11.535, + "new_deaths_per_million": 3.146, + "new_deaths_smoothed_per_million": 1.049, + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 725.0, + "new_cases": 42.0, + "new_cases_smoothed": 49.571, + "total_deaths": 39.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 253.422, + "new_cases_per_million": 14.681, + "new_cases_smoothed_per_million": 17.328, + "total_deaths_per_million": 13.632, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 788.0, + "new_cases": 63.0, + "new_cases_smoothed": 48.0, + "total_deaths": 42.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 275.444, + "new_cases_per_million": 22.022, + "new_cases_smoothed_per_million": 16.778, + "total_deaths_per_million": 14.681, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 897.0, + "new_cases": 109.0, + "new_cases_smoothed": 60.286, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 313.544, + "new_cases_per_million": 38.101, + "new_cases_smoothed_per_million": 21.073, + "total_deaths_per_million": 15.38, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 903.0, + "new_cases": 6.0, + "new_cases_smoothed": 55.714, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 315.642, + "new_cases_per_million": 2.097, + "new_cases_smoothed_per_million": 19.475, + "total_deaths_per_million": 15.73, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 923.0, + "new_cases": 20.0, + "new_cases_smoothed": 50.0, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 322.633, + "new_cases_per_million": 6.991, + "new_cases_smoothed_per_million": 17.477, + "total_deaths_per_million": 15.73, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.099, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 974.0, + "new_cases": 51.0, + "new_cases_smoothed": 50.571, + "total_deaths": 51.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 340.459, + "new_cases_per_million": 17.827, + "new_cases_smoothed_per_million": 17.677, + "total_deaths_per_million": 17.827, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.348, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 1043.0, + "new_cases": 69.0, + "new_cases_smoothed": 51.429, + "total_deaths": 56.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 364.578, + "new_cases_per_million": 24.119, + "new_cases_smoothed_per_million": 17.977, + "total_deaths_per_million": 19.575, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 1068.0, + "new_cases": 25.0, + "new_cases_smoothed": 49.0, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 373.317, + "new_cases_per_million": 8.739, + "new_cases_smoothed_per_million": 17.128, + "total_deaths_per_million": 20.274, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.949, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 1118.0, + "new_cases": 50.0, + "new_cases_smoothed": 47.143, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 390.794, + "new_cases_per_million": 17.477, + "new_cases_smoothed_per_million": 16.479, + "total_deaths_per_million": 20.973, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.899, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 1213.0, + "new_cases": 95.0, + "new_cases_smoothed": 45.143, + "total_deaths": 62.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 424.001, + "new_cases_per_million": 33.207, + "new_cases_smoothed_per_million": 15.78, + "total_deaths_per_million": 21.672, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.899, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 1252.0, + "new_cases": 39.0, + "new_cases_smoothed": 49.857, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 437.634, + "new_cases_per_million": 13.632, + "new_cases_smoothed_per_million": 17.427, + "total_deaths_per_million": 22.022, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.899, + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 437.634, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.429, + "total_deaths_per_million": 22.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.899, + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.714, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 437.634, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.882, + "total_deaths_per_million": 22.371, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.857, + "total_deaths": 69.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 437.634, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.436, + "total_deaths_per_million": 24.119, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 1276.0, + "new_cases": 24.0, + "new_cases_smoothed": 29.714, + "total_deaths": 77.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 446.023, + "new_cases_per_million": 8.389, + "new_cases_smoothed_per_million": 10.387, + "total_deaths_per_million": 26.915, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 0.949, + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 1307.0, + "new_cases": 31.0, + "new_cases_smoothed": 27.0, + "total_deaths": 83.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 456.859, + "new_cases_per_million": 10.836, + "new_cases_smoothed_per_million": 9.438, + "total_deaths_per_million": 29.012, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 1371.0, + "new_cases": 64.0, + "new_cases_smoothed": 22.571, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 479.23, + "new_cases_per_million": 22.371, + "new_cases_smoothed_per_million": 7.89, + "total_deaths_per_million": 29.362, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 1.099, + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 1389.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.571, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 485.522, + "new_cases_per_million": 6.292, + "new_cases_smoothed_per_million": 6.841, + "total_deaths_per_million": 29.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.049, + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 1400.0, + "new_cases": 11.0, + "new_cases_smoothed": 21.143, + "total_deaths": 86.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 489.367, + "new_cases_per_million": 3.845, + "new_cases_smoothed_per_million": 7.39, + "total_deaths_per_million": 30.061, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 1433.0, + "new_cases": 33.0, + "new_cases_smoothed": 25.857, + "total_deaths": 86.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 500.902, + "new_cases_per_million": 11.535, + "new_cases_smoothed_per_million": 9.038, + "total_deaths_per_million": 30.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.099, + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 1539.0, + "new_cases": 106.0, + "new_cases_smoothed": 41.0, + "total_deaths": 92.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 537.954, + "new_cases_per_million": 37.052, + "new_cases_smoothed_per_million": 14.331, + "total_deaths_per_million": 32.158, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 1575.0, + "new_cases": 36.0, + "new_cases_smoothed": 42.714, + "total_deaths": 94.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 550.538, + "new_cases_per_million": 12.584, + "new_cases_smoothed_per_million": 14.931, + "total_deaths_per_million": 32.857, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.849, + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 1757.0, + "new_cases": 182.0, + "new_cases_smoothed": 64.286, + "total_deaths": 95.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 614.155, + "new_cases_per_million": 63.618, + "new_cases_smoothed_per_million": 22.471, + "total_deaths_per_million": 33.207, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 1808.0, + "new_cases": 51.0, + "new_cases_smoothed": 62.429, + "total_deaths": 97.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 631.982, + "new_cases_per_million": 17.827, + "new_cases_smoothed_per_million": 21.822, + "total_deaths_per_million": 33.906, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-05", + "total_cases": 1843.0, + "new_cases": 35.0, + "new_cases_smoothed": 64.857, + "total_deaths": 97.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 644.216, + "new_cases_per_million": 12.234, + "new_cases_smoothed_per_million": 22.671, + "total_deaths_per_million": 33.906, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-06", + "total_cases": 1924.0, + "new_cases": 81.0, + "new_cases_smoothed": 74.857, + "total_deaths": 99.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 672.53, + "new_cases_per_million": 28.313, + "new_cases_smoothed_per_million": 26.166, + "total_deaths_per_million": 34.605, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 1968.0, + "new_cases": 44.0, + "new_cases_smoothed": 76.429, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 687.91, + "new_cases_per_million": 15.38, + "new_cases_smoothed_per_million": 26.715, + "total_deaths_per_million": 34.605, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 2031.0, + "new_cases": 63.0, + "new_cases_smoothed": 70.286, + "total_deaths": 102.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 709.931, + "new_cases_per_million": 22.022, + "new_cases_smoothed_per_million": 24.568, + "total_deaths_per_million": 35.654, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.499, + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 2156.0, + "new_cases": 125.0, + "new_cases_smoothed": 83.0, + "total_deaths": 107.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 753.625, + "new_cases_per_million": 43.693, + "new_cases_smoothed_per_million": 29.012, + "total_deaths_per_million": 37.402, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 2173.0, + "new_cases": 17.0, + "new_cases_smoothed": 59.429, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 759.567, + "new_cases_per_million": 5.942, + "new_cases_smoothed_per_million": 20.773, + "total_deaths_per_million": 37.751, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 2198.0, + "new_cases": 25.0, + "new_cases_smoothed": 55.714, + "total_deaths": 111.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 768.306, + "new_cases_per_million": 8.739, + "new_cases_smoothed_per_million": 19.475, + "total_deaths_per_million": 38.8, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.699, + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 2256.0, + "new_cases": 58.0, + "new_cases_smoothed": 59.0, + "total_deaths": 113.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 788.58, + "new_cases_per_million": 20.274, + "new_cases_smoothed_per_million": 20.623, + "total_deaths_per_million": 39.499, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.799, + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 2299.0, + "new_cases": 43.0, + "new_cases_smoothed": 53.571, + "total_deaths": 114.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 803.61, + "new_cases_per_million": 15.031, + "new_cases_smoothed_per_million": 18.726, + "total_deaths_per_million": 39.848, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 2329.0, + "new_cases": 30.0, + "new_cases_smoothed": 51.571, + "total_deaths": 115.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 814.097, + "new_cases_per_million": 10.486, + "new_cases_smoothed_per_million": 18.027, + "total_deaths_per_million": 40.198, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.799, + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 2427.0, + "new_cases": 98.0, + "new_cases_smoothed": 56.571, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 848.352, + "new_cases_per_million": 34.256, + "new_cases_smoothed_per_million": 19.774, + "total_deaths_per_million": 40.897, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 2542.0, + "new_cases": 115.0, + "new_cases_smoothed": 55.143, + "total_deaths": 122.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 888.55, + "new_cases_per_million": 40.198, + "new_cases_smoothed_per_million": 19.275, + "total_deaths_per_million": 42.645, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.749, + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 2589.0, + "new_cases": 47.0, + "new_cases_smoothed": 59.429, + "total_deaths": 122.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 904.979, + "new_cases_per_million": 16.429, + "new_cases_smoothed_per_million": 20.773, + "total_deaths_per_million": 42.645, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.699, + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 2646.0, + "new_cases": 57.0, + "new_cases_smoothed": 64.0, + "total_deaths": 123.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 924.903, + "new_cases_per_million": 19.924, + "new_cases_smoothed_per_million": 22.371, + "total_deaths_per_million": 42.994, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 89.81 + }, + { + "date": "2020-05-19", + "total_cases": 2710.0, + "new_cases": 64.0, + "new_cases_smoothed": 64.857, + "total_deaths": 124.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 947.274, + "new_cases_per_million": 22.371, + "new_cases_smoothed_per_million": 22.671, + "total_deaths_per_million": 43.344, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 89.81 + }, + { + "date": "2020-05-20", + "total_cases": 2805.0, + "new_cases": 95.0, + "new_cases_smoothed": 72.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 980.481, + "new_cases_per_million": 33.207, + "new_cases_smoothed_per_million": 25.267, + "total_deaths_per_million": 43.344, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.499, + "stringency_index": 89.81 + }, + { + "date": "2020-05-21", + "total_cases": 2866.0, + "new_cases": 61.0, + "new_cases_smoothed": 76.714, + "total_deaths": 125.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1001.804, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 26.815, + "total_deaths_per_million": 43.693, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.499, + "stringency_index": 89.81 + }, + { + "date": "2020-05-22", + "total_cases": 2913.0, + "new_cases": 47.0, + "new_cases_smoothed": 69.429, + "total_deaths": 126.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1018.232, + "new_cases_per_million": 16.429, + "new_cases_smoothed_per_million": 24.269, + "total_deaths_per_million": 44.043, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-05-23", + "total_cases": 3030.0, + "new_cases": 117.0, + "new_cases_smoothed": 69.714, + "total_deaths": 126.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1059.129, + "new_cases_per_million": 40.897, + "new_cases_smoothed_per_million": 24.368, + "total_deaths_per_million": 44.043, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-05-24", + "total_cases": 3100.0, + "new_cases": 70.0, + "new_cases_smoothed": 73.0, + "total_deaths": 127.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1083.598, + "new_cases_per_million": 24.468, + "new_cases_smoothed_per_million": 25.517, + "total_deaths_per_million": 44.393, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-05-25", + "total_cases": 3189.0, + "new_cases": 89.0, + "new_cases_smoothed": 77.571, + "total_deaths": 127.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1114.708, + "new_cases_per_million": 31.11, + "new_cases_smoothed_per_million": 27.115, + "total_deaths_per_million": 44.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-05-26", + "total_cases": 3260.0, + "new_cases": 71.0, + "new_cases_smoothed": 78.571, + "total_deaths": 129.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1139.525, + "new_cases_per_million": 24.818, + "new_cases_smoothed_per_million": 27.464, + "total_deaths_per_million": 45.092, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-05-27", + "total_cases": 3324.0, + "new_cases": 64.0, + "new_cases_smoothed": 74.143, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1161.897, + "new_cases_per_million": 22.371, + "new_cases_smoothed_per_million": 25.916, + "total_deaths_per_million": 45.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-05-28", + "total_cases": 3397.0, + "new_cases": 73.0, + "new_cases_smoothed": 75.857, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1187.413, + "new_cases_per_million": 25.517, + "new_cases_smoothed_per_million": 26.516, + "total_deaths_per_million": 45.092, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-05-29", + "total_cases": 3486.0, + "new_cases": 89.0, + "new_cases_smoothed": 81.857, + "total_deaths": 131.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1218.523, + "new_cases_per_million": 31.11, + "new_cases_smoothed_per_million": 28.613, + "total_deaths_per_million": 45.791, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-05-30", + "total_cases": 3647.0, + "new_cases": 161.0, + "new_cases_smoothed": 88.143, + "total_deaths": 132.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1274.8, + "new_cases_per_million": 56.277, + "new_cases_smoothed_per_million": 30.81, + "total_deaths_per_million": 46.14, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 89.81 + }, + { + "date": "2020-05-31", + "total_cases": 3718.0, + "new_cases": 71.0, + "new_cases_smoothed": 88.286, + "total_deaths": 133.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1299.618, + "new_cases_per_million": 24.818, + "new_cases_smoothed_per_million": 30.86, + "total_deaths_per_million": 46.49, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 89.81 + }, + { + "date": "2020-06-01", + "total_cases": 3776.0, + "new_cases": 58.0, + "new_cases_smoothed": 83.857, + "total_deaths": 136.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1319.892, + "new_cases_per_million": 20.274, + "new_cases_smoothed_per_million": 29.312, + "total_deaths_per_million": 47.538, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-06-02", + "total_cases": 3873.0, + "new_cases": 97.0, + "new_cases_smoothed": 87.571, + "total_deaths": 136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1353.798, + "new_cases_per_million": 33.906, + "new_cases_smoothed_per_million": 30.61, + "total_deaths_per_million": 47.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.35, + "stringency_index": 89.81 + }, + { + "date": "2020-06-03", + "total_cases": 3935.0, + "new_cases": 62.0, + "new_cases_smoothed": 87.286, + "total_deaths": 138.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1375.47, + "new_cases_per_million": 21.672, + "new_cases_smoothed_per_million": 30.511, + "total_deaths_per_million": 48.238, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-06-04", + "total_cases": 4023.0, + "new_cases": 88.0, + "new_cases_smoothed": 89.429, + "total_deaths": 140.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1406.23, + "new_cases_per_million": 30.76, + "new_cases_smoothed_per_million": 31.26, + "total_deaths_per_million": 48.937, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 89.81 + }, + { + "date": "2020-06-05", + "total_cases": 4508.0, + "new_cases": 485.0, + "new_cases_smoothed": 146.0, + "total_deaths": 140.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1575.761, + "new_cases_per_million": 169.531, + "new_cases_smoothed_per_million": 51.034, + "total_deaths_per_million": 48.937, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-06-06", + "total_cases": 4620.0, + "new_cases": 112.0, + "new_cases_smoothed": 139.0, + "total_deaths": 141.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1614.91, + "new_cases_per_million": 39.149, + "new_cases_smoothed_per_million": 48.587, + "total_deaths_per_million": 49.286, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-06-07", + "total_cases": 4915.0, + "new_cases": 295.0, + "new_cases_smoothed": 171.0, + "total_deaths": 142.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 1718.027, + "new_cases_per_million": 103.117, + "new_cases_smoothed_per_million": 59.773, + "total_deaths_per_million": 49.636, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.449, + "stringency_index": 89.81 + }, + { + "date": "2020-06-08", + "total_cases": 4985.0, + "new_cases": 70.0, + "new_cases_smoothed": 172.714, + "total_deaths": 142.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1742.495, + "new_cases_per_million": 24.468, + "new_cases_smoothed_per_million": 60.372, + "total_deaths_per_million": 49.636, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 89.81 + }, + { + "date": "2020-06-09", + "total_cases": 5046.0, + "new_cases": 61.0, + "new_cases_smoothed": 167.571, + "total_deaths": 142.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1763.818, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 58.574, + "total_deaths_per_million": 49.636, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 89.81 + }, + { + "date": "2020-06-10", + "total_cases": 5185.0, + "new_cases": 139.0, + "new_cases_smoothed": 178.571, + "total_deaths": 142.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1812.405, + "new_cases_per_million": 48.587, + "new_cases_smoothed_per_million": 62.419, + "total_deaths_per_million": 49.636, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-06-11", + "total_cases": 5329.0, + "new_cases": 144.0, + "new_cases_smoothed": 186.571, + "total_deaths": 143.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1862.74, + "new_cases_per_million": 50.335, + "new_cases_smoothed_per_million": 65.216, + "total_deaths_per_million": 49.985, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 89.81 + }, + { + "date": "2020-06-12", + "total_cases": 5352.0, + "new_cases": 23.0, + "new_cases_smoothed": 120.571, + "total_deaths": 144.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1870.779, + "new_cases_per_million": 8.04, + "new_cases_smoothed_per_million": 42.145, + "total_deaths_per_million": 50.335, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-06-13", + "total_cases": 5536.0, + "new_cases": 184.0, + "new_cases_smoothed": 130.857, + "total_deaths": 146.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1935.096, + "new_cases_per_million": 64.317, + "new_cases_smoothed_per_million": 45.741, + "total_deaths_per_million": 51.034, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-06-14", + "total_cases": 5690.0, + "new_cases": 154.0, + "new_cases_smoothed": 110.714, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1988.926, + "new_cases_per_million": 53.83, + "new_cases_smoothed_per_million": 38.7, + "total_deaths_per_million": 51.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 89.81 + }, + { + "date": "2020-06-15", + "total_cases": 5811.0, + "new_cases": 121.0, + "new_cases_smoothed": 118.0, + "total_deaths": 147.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2031.222, + "new_cases_per_million": 42.295, + "new_cases_smoothed_per_million": 41.247, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 89.81 + }, + { + "date": "2020-06-16", + "total_cases": 5890.0, + "new_cases": 79.0, + "new_cases_smoothed": 120.571, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2058.836, + "new_cases_per_million": 27.614, + "new_cases_smoothed_per_million": 42.145, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 65.74 + }, + { + "date": "2020-06-17", + "total_cases": 5951.0, + "new_cases": 61.0, + "new_cases_smoothed": 109.429, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2080.158, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 38.251, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 65.74 + }, + { + "date": "2020-06-18", + "total_cases": 6003.0, + "new_cases": 52.0, + "new_cases_smoothed": 96.286, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2098.335, + "new_cases_per_million": 18.176, + "new_cases_smoothed_per_million": 33.656, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-06-19", + "total_cases": 6111.0, + "new_cases": 108.0, + "new_cases_smoothed": 108.429, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2136.086, + "new_cases_per_million": 37.751, + "new_cases_smoothed_per_million": 37.901, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 65.74 + }, + { + "date": "2020-06-20", + "total_cases": 6111.0, + "new_cases": 0.0, + "new_cases_smoothed": 82.143, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2136.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.713, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 65.74 + }, + { + "date": "2020-06-21", + "total_cases": 6463.0, + "new_cases": 352.0, + "new_cases_smoothed": 110.429, + "total_deaths": 147.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2259.127, + "new_cases_per_million": 123.041, + "new_cases_smoothed_per_million": 38.6, + "total_deaths_per_million": 51.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "stringency_index": 65.74 + }, + { + "date": "2020-06-22", + "total_cases": 6525.0, + "new_cases": 62.0, + "new_cases_smoothed": 102.0, + "total_deaths": 149.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2280.799, + "new_cases_per_million": 21.672, + "new_cases_smoothed_per_million": 35.654, + "total_deaths_per_million": 52.083, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-06-23", + "total_cases": 6564.0, + "new_cases": 39.0, + "new_cases_smoothed": 96.286, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2294.431, + "new_cases_per_million": 13.632, + "new_cases_smoothed_per_million": 33.656, + "total_deaths_per_million": 52.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-06-24", + "total_cases": 6685.0, + "new_cases": 121.0, + "new_cases_smoothed": 104.857, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2336.726, + "new_cases_per_million": 42.295, + "new_cases_smoothed_per_million": 36.653, + "total_deaths_per_million": 52.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-06-25", + "total_cases": 6820.0, + "new_cases": 135.0, + "new_cases_smoothed": 116.714, + "total_deaths": 149.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2383.915, + "new_cases_per_million": 47.189, + "new_cases_smoothed_per_million": 40.797, + "total_deaths_per_million": 52.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-06-26", + "total_cases": 6877.0, + "new_cases": 57.0, + "new_cases_smoothed": 109.429, + "total_deaths": 151.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2403.839, + "new_cases_per_million": 19.924, + "new_cases_smoothed_per_million": 38.251, + "total_deaths_per_million": 52.782, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-06-27", + "total_cases": 6922.0, + "new_cases": 45.0, + "new_cases_smoothed": 115.857, + "total_deaths": 151.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2419.569, + "new_cases_per_million": 15.73, + "new_cases_smoothed_per_million": 40.498, + "total_deaths_per_million": 52.782, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-06-28", + "total_cases": 7066.0, + "new_cases": 144.0, + "new_cases_smoothed": 86.143, + "total_deaths": 152.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2469.904, + "new_cases_per_million": 50.335, + "new_cases_smoothed_per_million": 30.111, + "total_deaths_per_million": 53.131, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 65.74 + }, + { + "date": "2020-06-29", + "total_cases": 7189.0, + "new_cases": 123.0, + "new_cases_smoothed": 94.857, + "total_deaths": 153.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2512.898, + "new_cases_per_million": 42.994, + "new_cases_smoothed_per_million": 33.157, + "total_deaths_per_million": 53.481, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-06-30", + "total_cases": 7250.0, + "new_cases": 61.0, + "new_cases_smoothed": 98.0, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2534.221, + "new_cases_per_million": 21.322, + "new_cases_smoothed_per_million": 34.256, + "total_deaths_per_million": 53.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-07-01", + "total_cases": 7465.0, + "new_cases": 215.0, + "new_cases_smoothed": 111.429, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2609.373, + "new_cases_per_million": 75.153, + "new_cases_smoothed_per_million": 38.95, + "total_deaths_per_million": 53.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-07-02", + "total_cases": 7537.0, + "new_cases": 72.0, + "new_cases_smoothed": 102.429, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2634.541, + "new_cases_per_million": 25.167, + "new_cases_smoothed_per_million": 35.804, + "total_deaths_per_million": 53.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-07-03", + "total_cases": 7608.0, + "new_cases": 71.0, + "new_cases_smoothed": 104.429, + "total_deaths": 153.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2659.359, + "new_cases_per_million": 24.818, + "new_cases_smoothed_per_million": 36.503, + "total_deaths_per_million": 53.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-07-04", + "total_cases": 7683.0, + "new_cases": 75.0, + "new_cases_smoothed": 108.714, + "total_deaths": 154.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2685.575, + "new_cases_per_million": 26.216, + "new_cases_smoothed_per_million": 38.001, + "total_deaths_per_million": 53.83, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 65.74 + }, + { + "date": "2020-07-05", + "total_cases": 7687.0, + "new_cases": 4.0, + "new_cases_smoothed": 88.714, + "total_deaths": 155.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2686.973, + "new_cases_per_million": 1.398, + "new_cases_smoothed_per_million": 31.01, + "total_deaths_per_million": 54.18, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 65.74 + }, + { + "date": "2020-07-06", + "total_cases": 7916.0, + "new_cases": 229.0, + "new_cases_smoothed": 103.857, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2767.019, + "new_cases_per_million": 80.046, + "new_cases_smoothed_per_million": 36.303, + "total_deaths_per_million": 54.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-07-07", + "total_cases": 8585.0, + "new_cases": 669.0, + "new_cases_smoothed": 190.714, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3000.867, + "new_cases_per_million": 233.847, + "new_cases_smoothed_per_million": 66.664, + "total_deaths_per_million": 54.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 65.74 + }, + { + "date": "2020-07-08", + "total_cases": 8714.0, + "new_cases": 129.0, + "new_cases_smoothed": 178.429, + "total_deaths": 157.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3045.959, + "new_cases_per_million": 45.092, + "new_cases_smoothed_per_million": 62.369, + "total_deaths_per_million": 54.879, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.2, + "stringency_index": 65.74 + }, + { + "date": "2020-07-09", + "total_cases": 8904.0, + "new_cases": 190.0, + "new_cases_smoothed": 195.286, + "total_deaths": 159.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3112.373, + "new_cases_per_million": 66.414, + "new_cases_smoothed_per_million": 68.262, + "total_deaths_per_million": 55.578, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 65.74 + }, + { + "date": "2020-07-10", + "total_cases": 8904.0, + "new_cases": 0.0, + "new_cases_smoothed": 185.143, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3112.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 64.716, + "total_deaths_per_million": 55.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 65.74 + }, + { + "date": "2020-07-11", + "total_cases": 9296.0, + "new_cases": 392.0, + "new_cases_smoothed": 230.429, + "total_deaths": 159.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3249.395, + "new_cases_per_million": 137.023, + "new_cases_smoothed_per_million": 80.546, + "total_deaths_per_million": 55.578, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "stringency_index": 65.74 + }, + { + "date": "2020-07-12", + "total_cases": 9533.0, + "new_cases": 237.0, + "new_cases_smoothed": 263.714, + "total_deaths": 167.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3332.238, + "new_cases_per_million": 82.843, + "new_cases_smoothed_per_million": 92.181, + "total_deaths_per_million": 58.374, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 65.74 + }, + { + "date": "2020-07-13", + "total_cases": 9821.0, + "new_cases": 288.0, + "new_cases_smoothed": 272.143, + "total_deaths": 167.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3432.908, + "new_cases_per_million": 100.67, + "new_cases_smoothed_per_million": 95.127, + "total_deaths_per_million": 58.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 65.74 + }, + { + "date": "2020-07-14", + "total_cases": 10010.0, + "new_cases": 189.0, + "new_cases_smoothed": 203.571, + "total_deaths": 167.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3498.972, + "new_cases_per_million": 66.065, + "new_cases_smoothed_per_million": 71.158, + "total_deaths_per_million": 58.374, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 65.74 + }, + { + "date": "2020-07-15", + "total_cases": 10123.0, + "new_cases": 113.0, + "new_cases_smoothed": 201.286, + "total_deaths": 169.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3538.471, + "new_cases_per_million": 39.499, + "new_cases_smoothed_per_million": 70.359, + "total_deaths_per_million": 59.074, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 10379.0, + "new_cases": 256.0, + "new_cases_smoothed": 210.714, + "total_deaths": 171.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3627.955, + "new_cases_per_million": 89.484, + "new_cases_smoothed_per_million": 73.655, + "total_deaths_per_million": 59.773, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.599, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 10574.0, + "new_cases": 195.0, + "new_cases_smoothed": 238.571, + "total_deaths": 172.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3696.117, + "new_cases_per_million": 68.162, + "new_cases_smoothed_per_million": 83.392, + "total_deaths_per_million": 60.122, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 67.59 + }, + { + "date": "2020-07-18", + "total_cases": 11120.0, + "new_cases": 546.0, + "new_cases_smoothed": 260.571, + "total_deaths": 177.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3886.97, + "new_cases_per_million": 190.853, + "new_cases_smoothed_per_million": 91.082, + "total_deaths_per_million": 61.87, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.899, + "stringency_index": 67.59 + }, + { + "date": "2020-07-19", + "total_cases": 11453.0, + "new_cases": 333.0, + "new_cases_smoothed": 274.286, + "total_deaths": 178.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4003.37, + "new_cases_per_million": 116.399, + "new_cases_smoothed_per_million": 95.876, + "total_deaths_per_million": 62.219, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 67.59 + }, + { + "date": "2020-07-20", + "total_cases": 12063.0, + "new_cases": 610.0, + "new_cases_smoothed": 320.286, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4216.594, + "new_cases_per_million": 213.224, + "new_cases_smoothed_per_million": 111.955, + "total_deaths_per_million": 62.219, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 67.59 + }, + { + "date": "2020-07-21", + "total_cases": 12461.0, + "new_cases": 398.0, + "new_cases_smoothed": 350.143, + "total_deaths": 180.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4355.714, + "new_cases_per_million": 139.12, + "new_cases_smoothed_per_million": 122.392, + "total_deaths_per_million": 62.919, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.649, + "stringency_index": 67.59 + }, + { + "date": "2020-07-22", + "total_cases": 12940.0, + "new_cases": 479.0, + "new_cases_smoothed": 402.429, + "total_deaths": 180.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4523.147, + "new_cases_per_million": 167.433, + "new_cases_smoothed_per_million": 140.668, + "total_deaths_per_million": 62.919, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.549, + "stringency_index": 67.59 + }, + { + "date": "2020-07-23", + "total_cases": 13038.0, + "new_cases": 98.0, + "new_cases_smoothed": 379.857, + "total_deaths": 185.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 4557.403, + "new_cases_per_million": 34.256, + "new_cases_smoothed_per_million": 132.778, + "total_deaths_per_million": 64.666, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 0.699, + "stringency_index": 67.59 + }, + { + "date": "2020-07-24", + "total_cases": 13473.0, + "new_cases": 435.0, + "new_cases_smoothed": 414.143, + "total_deaths": 188.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 4709.456, + "new_cases_per_million": 152.053, + "new_cases_smoothed_per_million": 144.763, + "total_deaths_per_million": 65.715, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.799, + "stringency_index": 67.59 + }, + { + "date": "2020-07-25", + "total_cases": 13967.0, + "new_cases": 494.0, + "new_cases_smoothed": 406.714, + "total_deaths": 191.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 4882.133, + "new_cases_per_million": 172.677, + "new_cases_smoothed_per_million": 142.166, + "total_deaths_per_million": 66.764, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 0.699, + "stringency_index": 67.59 + }, + { + "date": "2020-07-26", + "total_cases": 14540.0, + "new_cases": 573.0, + "new_cases_smoothed": 441.0, + "total_deaths": 201.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5082.423, + "new_cases_per_million": 200.291, + "new_cases_smoothed_per_million": 154.151, + "total_deaths_per_million": 70.259, + "new_deaths_per_million": 3.495, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 67.59 + }, + { + "date": "2020-07-27", + "total_cases": 15143.0, + "new_cases": 603.0, + "new_cases_smoothed": 440.0, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5293.201, + "new_cases_per_million": 210.777, + "new_cases_smoothed_per_million": 153.801, + "total_deaths_per_million": 70.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.149, + "stringency_index": 67.59 + }, + { + "date": "2020-07-28", + "total_cases": 15441.0, + "new_cases": 298.0, + "new_cases_smoothed": 425.714, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 5397.366, + "new_cases_per_million": 104.165, + "new_cases_smoothed_per_million": 148.807, + "total_deaths_per_million": 70.259, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.049, + "stringency_index": 67.59 + }, + { + "date": "2020-07-29", + "total_cases": 15840.0, + "new_cases": 399.0, + "new_cases_smoothed": 414.286, + "total_deaths": 209.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 5536.835, + "new_cases_per_million": 139.47, + "new_cases_smoothed_per_million": 144.813, + "total_deaths_per_million": 73.055, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 1.448, + "stringency_index": 67.59 + }, + { + "date": "2020-07-30", + "total_cases": 16061.0, + "new_cases": 221.0, + "new_cases_smoothed": 431.857, + "total_deaths": 211.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5614.085, + "new_cases_per_million": 77.25, + "new_cases_smoothed_per_million": 150.955, + "total_deaths_per_million": 73.755, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 1.298, + "stringency_index": 67.59 + }, + { + "date": "2020-07-31", + "total_cases": 16572.0, + "new_cases": 511.0, + "new_cases_smoothed": 442.714, + "total_deaths": 214.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 5792.704, + "new_cases_per_million": 178.619, + "new_cases_smoothed_per_million": 154.75, + "total_deaths_per_million": 74.803, + "new_deaths_per_million": 1.049, + "new_deaths_smoothed_per_million": 1.298, + "stringency_index": 67.59 + }, + { + "date": "2020-08-01", + "total_cases": 16781.0, + "new_cases": 209.0, + "new_cases_smoothed": 402.0, + "total_deaths": 219.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5865.76, + "new_cases_per_million": 73.055, + "new_cases_smoothed_per_million": 140.518, + "total_deaths_per_million": 76.551, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 1.398, + "stringency_index": 67.59 + }, + { + "date": "2020-08-02", + "total_cases": 17872.0, + "new_cases": 1091.0, + "new_cases_smoothed": 476.0, + "total_deaths": 225.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 6247.116, + "new_cases_per_million": 381.357, + "new_cases_smoothed_per_million": 166.385, + "total_deaths_per_million": 78.648, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.198, + "stringency_index": 67.59 + }, + { + "date": "2020-08-03", + "total_cases": 18411.0, + "new_cases": 539.0, + "new_cases_smoothed": 466.857, + "total_deaths": 230.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 6435.522, + "new_cases_per_million": 188.406, + "new_cases_smoothed_per_million": 163.189, + "total_deaths_per_million": 80.396, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 1.448, + "stringency_index": 67.59 + }, + { + "date": "2020-08-04", + "total_cases": 18791.0, + "new_cases": 380.0, + "new_cases_smoothed": 478.571, + "total_deaths": 230.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 6568.351, + "new_cases_per_million": 132.828, + "new_cases_smoothed_per_million": 167.284, + "total_deaths_per_million": 80.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.448, + "stringency_index": 67.59 + }, + { + "date": "2020-08-05", + "total_cases": 19324.0, + "new_cases": 533.0, + "new_cases_smoothed": 497.714, + "total_deaths": 237.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 6754.659, + "new_cases_per_million": 186.309, + "new_cases_smoothed_per_million": 173.975, + "total_deaths_per_million": 82.843, + "new_deaths_per_million": 2.447, + "new_deaths_smoothed_per_million": 1.398, + "stringency_index": 67.59 + }, + { + "date": "2020-08-06", + "total_cases": 19651.0, + "new_cases": 327.0, + "new_cases_smoothed": 512.857, + "total_deaths": 246.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 6868.962, + "new_cases_per_million": 114.302, + "new_cases_smoothed_per_million": 179.268, + "total_deaths_per_million": 85.989, + "new_deaths_per_million": 3.146, + "new_deaths_smoothed_per_million": 1.748, + "stringency_index": 67.59 + }, + { + "date": "2020-08-07", + "total_cases": 19934.0, + "new_cases": 283.0, + "new_cases_smoothed": 480.286, + "total_deaths": 258.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 6967.884, + "new_cases_per_million": 98.922, + "new_cases_smoothed_per_million": 167.883, + "total_deaths_per_million": 90.183, + "new_deaths_per_million": 4.195, + "new_deaths_smoothed_per_million": 2.197, + "stringency_index": 67.59 + }, + { + "date": "2020-08-08", + "total_cases": 20686.0, + "new_cases": 752.0, + "new_cases_smoothed": 557.857, + "total_deaths": 265.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 7230.743, + "new_cases_per_million": 262.86, + "new_cases_smoothed_per_million": 194.998, + "total_deaths_per_million": 92.63, + "new_deaths_per_million": 2.447, + "new_deaths_smoothed_per_million": 2.297, + "stringency_index": 67.59 + }, + { + "date": "2020-08-09", + "total_cases": 21424.0, + "new_cases": 738.0, + "new_cases_smoothed": 507.429, + "total_deaths": 274.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7488.71, + "new_cases_per_million": 257.966, + "new_cases_smoothed_per_million": 177.37, + "total_deaths_per_million": 95.776, + "new_deaths_per_million": 3.146, + "new_deaths_smoothed_per_million": 2.447, + "stringency_index": 67.59 + }, + { + "date": "2020-08-10", + "total_cases": 22121.0, + "new_cases": 697.0, + "new_cases_smoothed": 530.0, + "total_deaths": 279.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7732.344, + "new_cases_per_million": 243.635, + "new_cases_smoothed_per_million": 185.26, + "total_deaths_per_million": 97.524, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 2.447, + "stringency_index": 67.59 + }, + { + "date": "2020-08-11", + "total_cases": 22818.0, + "new_cases": 697.0, + "new_cases_smoothed": 575.286, + "total_deaths": 279.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 7975.979, + "new_cases_per_million": 243.635, + "new_cases_smoothed_per_million": 201.09, + "total_deaths_per_million": 97.524, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.447, + "stringency_index": 67.59 + }, + { + "date": "2020-08-12", + "total_cases": 23403.0, + "new_cases": 585.0, + "new_cases_smoothed": 582.714, + "total_deaths": 287.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 8180.464, + "new_cases_per_million": 204.485, + "new_cases_smoothed_per_million": 203.686, + "total_deaths_per_million": 100.32, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 2.497, + "stringency_index": 67.59 + }, + { + "date": "2020-08-13", + "total_cases": 24074.0, + "new_cases": 671.0, + "new_cases_smoothed": 631.857, + "total_deaths": 295.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 8415.011, + "new_cases_per_million": 234.546, + "new_cases_smoothed_per_million": 220.864, + "total_deaths_per_million": 103.117, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 2.447, + "stringency_index": 67.59 + }, + { + "date": "2020-08-14", + "total_cases": 24446.0, + "new_cases": 372.0, + "new_cases_smoothed": 644.571, + "total_deaths": 306.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 8545.043, + "new_cases_per_million": 130.032, + "new_cases_smoothed_per_million": 225.308, + "total_deaths_per_million": 106.962, + "new_deaths_per_million": 3.845, + "new_deaths_smoothed_per_million": 2.397, + "stringency_index": 67.59 + }, + { + "date": "2020-08-15", + "total_cases": 25128.0, + "new_cases": 682.0, + "new_cases_smoothed": 634.571, + "total_deaths": 311.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 8783.434, + "new_cases_per_million": 238.392, + "new_cases_smoothed_per_million": 221.813, + "total_deaths_per_million": 108.709, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 2.297, + "stringency_index": 67.59 + }, + { + "date": "2020-08-16", + "total_cases": 25695.0, + "new_cases": 567.0, + "new_cases_smoothed": 610.143, + "total_deaths": 329.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 8981.628, + "new_cases_per_million": 198.194, + "new_cases_smoothed_per_million": 213.274, + "total_deaths_per_million": 115.001, + "new_deaths_per_million": 6.292, + "new_deaths_smoothed_per_million": 2.746, + "stringency_index": 67.59 + }, + { + "date": "2020-08-17", + "total_cases": 26006.0, + "new_cases": 311.0, + "new_cases_smoothed": 555.0, + "total_deaths": 335.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 9090.337, + "new_cases_per_million": 108.709, + "new_cases_smoothed_per_million": 193.999, + "total_deaths_per_million": 117.098, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 2.796, + "stringency_index": 67.59 + }, + { + "date": "2020-08-18", + "total_cases": 26760.0, + "new_cases": 754.0, + "new_cases_smoothed": 563.143, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 9353.896, + "new_cases_per_million": 263.559, + "new_cases_smoothed_per_million": 196.845, + "total_deaths_per_million": 117.098, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.796, + "stringency_index": 67.59 + }, + { + "date": "2020-08-19", + "total_cases": 27713.0, + "new_cases": 953.0, + "new_cases_smoothed": 615.714, + "total_deaths": 346.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 9687.015, + "new_cases_per_million": 333.119, + "new_cases_smoothed_per_million": 215.222, + "total_deaths_per_million": 120.943, + "new_deaths_per_million": 3.845, + "new_deaths_smoothed_per_million": 2.946, + "stringency_index": 67.59 + }, + { + "date": "2020-08-20", + "total_cases": 27934.0, + "new_cases": 221.0, + "new_cases_smoothed": 551.429, + "total_deaths": 356.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 9764.265, + "new_cases_per_million": 77.25, + "new_cases_smoothed_per_million": 192.751, + "total_deaths_per_million": 124.439, + "new_deaths_per_million": 3.495, + "new_deaths_smoothed_per_million": 3.046, + "stringency_index": 70.37 + }, + { + "date": "2020-08-21", + "total_cases": 28143.0, + "new_cases": 209.0, + "new_cases_smoothed": 528.143, + "total_deaths": 367.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 9837.321, + "new_cases_per_million": 73.055, + "new_cases_smoothed_per_million": 184.611, + "total_deaths_per_million": 128.284, + "new_deaths_per_million": 3.845, + "new_deaths_smoothed_per_million": 3.046, + "stringency_index": 70.37 + }, + { + "date": "2020-08-22", + "total_cases": 28849.0, + "new_cases": 706.0, + "new_cases_smoothed": 531.571, + "total_deaths": 374.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 10084.101, + "new_cases_per_million": 246.781, + "new_cases_smoothed_per_million": 185.81, + "total_deaths_per_million": 130.731, + "new_deaths_per_million": 2.447, + "new_deaths_smoothed_per_million": 3.146, + "stringency_index": 70.37 + }, + { + "date": "2020-08-23", + "total_cases": 29577.0, + "new_cases": 728.0, + "new_cases_smoothed": 554.571, + "total_deaths": 381.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 10338.572, + "new_cases_per_million": 254.471, + "new_cases_smoothed_per_million": 193.849, + "total_deaths_per_million": 133.178, + "new_deaths_per_million": 2.447, + "new_deaths_smoothed_per_million": 2.597, + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 29896.0, + "new_cases": 319.0, + "new_cases_smoothed": 555.714, + "total_deaths": 390.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 10450.078, + "new_cases_per_million": 111.506, + "new_cases_smoothed_per_million": 194.249, + "total_deaths_per_million": 136.324, + "new_deaths_per_million": 3.146, + "new_deaths_smoothed_per_million": 2.746, + "stringency_index": 70.37 + }, + { + "date": "2020-08-25", + "total_cases": 30618.0, + "new_cases": 722.0, + "new_cases_smoothed": 551.143, + "total_deaths": 390.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 10702.451, + "new_cases_per_million": 252.373, + "new_cases_smoothed_per_million": 192.651, + "total_deaths_per_million": 136.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.746, + "stringency_index": 70.37 + }, + { + "date": "2020-08-26", + "total_cases": 30720.0, + "new_cases": 102.0, + "new_cases_smoothed": 429.571, + "total_deaths": 395.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 10738.105, + "new_cases_per_million": 35.654, + "new_cases_smoothed_per_million": 150.156, + "total_deaths_per_million": 138.071, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 2.447, + "stringency_index": 70.37 + }, + { + "date": "2020-08-27", + "total_cases": 30744.0, + "new_cases": 24.0, + "new_cases_smoothed": 401.429, + "total_deaths": 404.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 10746.494, + "new_cases_per_million": 8.389, + "new_cases_smoothed_per_million": 140.318, + "total_deaths_per_million": 141.217, + "new_deaths_per_million": 3.146, + "new_deaths_smoothed_per_million": 2.397, + "stringency_index": 70.37 + }, + { + "date": "2020-08-28", + "total_cases": 31383.0, + "new_cases": 639.0, + "new_cases_smoothed": 462.857, + "total_deaths": 412.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 10969.855, + "new_cases_per_million": 223.361, + "new_cases_smoothed_per_million": 161.791, + "total_deaths_per_million": 144.014, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 2.247, + "stringency_index": 70.37 + }, + { + "date": "2020-08-29", + "total_cases": 31988.0, + "new_cases": 605.0, + "new_cases_smoothed": 448.429, + "total_deaths": 424.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 11181.331, + "new_cases_per_million": 211.476, + "new_cases_smoothed_per_million": 156.747, + "total_deaths_per_million": 148.208, + "new_deaths_per_million": 4.195, + "new_deaths_smoothed_per_million": 2.497, + "stringency_index": 70.37 + }, + { + "date": "2020-08-30", + "total_cases": 32550.0, + "new_cases": 562.0, + "new_cases_smoothed": 424.714, + "total_deaths": 428.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 11377.777, + "new_cases_per_million": 196.446, + "new_cases_smoothed_per_million": 148.458, + "total_deaths_per_million": 149.606, + "new_deaths_per_million": 1.398, + "new_deaths_smoothed_per_million": 2.347, + "stringency_index": 77.78 + }, + { + "date": "2020-08-31", + "total_cases": 32848.0, + "new_cases": 298.0, + "new_cases_smoothed": 421.714, + "total_deaths": 434.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 11481.942, + "new_cases_per_million": 104.165, + "new_cases_smoothed_per_million": 147.409, + "total_deaths_per_million": 151.704, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 2.197, + "stringency_index": 70.37 + }, + { + "date": "2020-09-01", + "total_cases": 33199.0, + "new_cases": 351.0, + "new_cases_smoothed": 368.714, + "total_deaths": 434.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 11604.634, + "new_cases_per_million": 122.691, + "new_cases_smoothed_per_million": 128.883, + "total_deaths_per_million": 151.704, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.197 + }, + { + "date": "2020-09-02", + "total_cases": 33421.0, + "new_cases": 222.0, + "new_cases_smoothed": 385.857, + "total_deaths": 435.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 11682.233, + "new_cases_per_million": 77.6, + "new_cases_smoothed_per_million": 134.875, + "total_deaths_per_million": 152.053, + "new_deaths_per_million": 0.35, + "new_deaths_smoothed_per_million": 1.997 + }, + { + "date": "2020-09-03", + "total_cases": 34003.0, + "new_cases": 582.0, + "new_cases_smoothed": 465.571, + "total_deaths": 443.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 11885.67, + "new_cases_per_million": 203.437, + "new_cases_smoothed_per_million": 162.739, + "total_deaths_per_million": 154.85, + "new_deaths_per_million": 2.796, + "new_deaths_smoothed_per_million": 1.947 + }, + { + "date": "2020-09-04", + "total_cases": 34198.0, + "new_cases": 195.0, + "new_cases_smoothed": 402.143, + "total_deaths": 448.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 11953.832, + "new_cases_per_million": 68.162, + "new_cases_smoothed_per_million": 140.568, + "total_deaths_per_million": 156.597, + "new_deaths_per_million": 1.748, + "new_deaths_smoothed_per_million": 1.798 + }, + { + "date": "2020-09-05", + "total_cases": 34241.0, + "new_cases": 43.0, + "new_cases_smoothed": 321.857, + "total_deaths": 455.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 11968.862, + "new_cases_per_million": 15.031, + "new_cases_smoothed_per_million": 112.504, + "total_deaths_per_million": 159.044, + "new_deaths_per_million": 2.447, + "new_deaths_smoothed_per_million": 1.548 + } + ] + }, + "QAT": { + "continent": "Asia", + "location": "Qatar", + "population": 2881060.0, + "population_density": 227.322, + "median_age": 31.9, + "aged_65_older": 1.307, + "aged_70_older": 0.617, + "gdp_per_capita": 116935.6, + "cardiovasc_death_rate": 176.69, + "diabetes_prevalence": 16.52, + "female_smokers": 0.8, + "male_smokers": 26.9, + "hospital_beds_per_thousand": 1.2, + "life_expectancy": 80.23, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.347, + "new_cases_per_million": 0.347, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.041, + "new_cases_per_million": 0.694, + "new_cases_smoothed_per_million": 0.149, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-04", + "total_cases": 8.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.777, + "new_cases_per_million": 1.735, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.818, + "new_cases_per_million": 1.041, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.165, + "new_cases_per_million": 0.347, + "new_cases_smoothed_per_million": 0.545, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.206, + "new_cases_per_million": 1.041, + "new_cases_smoothed_per_million": 0.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.248, + "new_cases_per_million": 1.041, + "new_cases_smoothed_per_million": 0.744, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.33, + "new_cases_per_million": 2.083, + "new_cases_smoothed_per_million": 0.793, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 262.0, + "new_cases": 238.0, + "new_cases_smoothed": 36.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.939, + "new_cases_per_million": 82.608, + "new_cases_smoothed_per_million": 12.595, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 36.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 12.595, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-14", + "total_cases": 320.0, + "new_cases": 58.0, + "new_cases_smoothed": 44.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.07, + "new_cases_per_million": 20.131, + "new_cases_smoothed_per_million": 15.322, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6788.0, + "total_tests_per_thousand": 2.356, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-03-15", + "total_cases": 337.0, + "new_cases": 17.0, + "new_cases_smoothed": 46.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.971, + "new_cases_per_million": 5.901, + "new_cases_smoothed_per_million": 16.115, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1162.0, + "total_tests": 7950.0, + "total_tests_per_thousand": 2.759, + "new_tests_per_thousand": 0.403, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-16", + "total_cases": 401.0, + "new_cases": 64.0, + "new_cases_smoothed": 55.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.185, + "new_cases_per_million": 22.214, + "new_cases_smoothed_per_million": 19.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 41.67 + }, + { + "date": "2020-03-17", + "total_cases": 439.0, + "new_cases": 38.0, + "new_cases_smoothed": 60.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.374, + "new_cases_per_million": 13.19, + "new_cases_smoothed_per_million": 20.875, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 61.11 + }, + { + "date": "2020-03-18", + "total_cases": 442.0, + "new_cases": 3.0, + "new_cases_smoothed": 59.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.416, + "new_cases_per_million": 1.041, + "new_cases_smoothed_per_million": 20.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 8873.0, + "total_tests_per_thousand": 3.08, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-19", + "total_cases": 452.0, + "new_cases": 10.0, + "new_cases_smoothed": 27.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.887, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 9.421, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 587.0, + "total_tests": 9460.0, + "total_tests_per_thousand": 3.284, + "new_tests_per_thousand": 0.204, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-20", + "total_cases": 460.0, + "new_cases": 8.0, + "new_cases_smoothed": 28.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.663, + "new_cases_per_million": 2.777, + "new_cases_smoothed_per_million": 9.818, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-21", + "total_cases": 470.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 163.134, + "new_cases_per_million": 3.471, + "new_cases_smoothed_per_million": 7.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 10358.0, + "total_tests_per_thousand": 3.595, + "new_tests_smoothed": 510.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 23.8, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 63.89 + }, + { + "date": "2020-03-22", + "total_cases": 481.0, + "new_cases": 11.0, + "new_cases_smoothed": 20.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 166.952, + "new_cases_per_million": 3.818, + "new_cases_smoothed_per_million": 7.14, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 499.0, + "total_tests": 10857.0, + "total_tests_per_thousand": 3.768, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 415.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 20.174, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-23", + "total_cases": 494.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 171.465, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 4.611, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 674.0, + "total_tests": 11531.0, + "total_tests_per_thousand": 4.002, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 468.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 35.226, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-24", + "total_cases": 501.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 173.894, + "new_cases_per_million": 2.43, + "new_cases_smoothed_per_million": 3.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 476.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 53.742, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-25", + "total_cases": 526.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.572, + "new_cases_per_million": 8.677, + "new_cases_smoothed_per_million": 4.165, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 12258.0, + "total_tests_per_thousand": 4.255, + "new_tests_smoothed": 484.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 40.333, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-26", + "total_cases": 537.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 186.39, + "new_cases_per_million": 3.818, + "new_cases_smoothed_per_million": 4.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1423.0, + "total_tests": 13681.0, + "total_tests_per_thousand": 4.749, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 603.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 49.659, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-27", + "total_cases": 549.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 190.555, + "new_cases_per_million": 4.165, + "new_cases_smoothed_per_million": 4.413, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1164.0, + "total_tests": 14845.0, + "total_tests_per_thousand": 5.153, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 705.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 55.449, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-03-28", + "total_cases": 562.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 195.067, + "new_cases_per_million": 4.512, + "new_cases_smoothed_per_million": 4.562, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1737.0, + "total_tests": 16582.0, + "total_tests_per_thousand": 5.756, + "new_tests_per_thousand": 0.603, + "new_tests_smoothed": 889.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 67.641, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-03-29", + "total_cases": 590.0, + "new_cases": 28.0, + "new_cases_smoothed": 15.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.786, + "new_cases_per_million": 9.719, + "new_cases_smoothed_per_million": 5.405, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2295.0, + "total_tests": 18877.0, + "total_tests_per_thousand": 6.552, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 73.596, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-03-30", + "total_cases": 634.0, + "new_cases": 44.0, + "new_cases_smoothed": 20.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.058, + "new_cases_per_million": 15.272, + "new_cases_smoothed_per_million": 6.942, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1181.0, + "total_tests": 20058.0, + "total_tests_per_thousand": 6.962, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 1218.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 60.9, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-03-31", + "total_cases": 693.0, + "new_cases": 59.0, + "new_cases_smoothed": 27.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 240.536, + "new_cases_per_million": 20.479, + "new_cases_smoothed_per_million": 9.52, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2336.0, + "total_tests": 22394.0, + "total_tests_per_thousand": 7.773, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 1500.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 54.688, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-01", + "total_cases": 781.0, + "new_cases": 88.0, + "new_cases_smoothed": 36.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 271.081, + "new_cases_per_million": 30.544, + "new_cases_smoothed_per_million": 12.644, + "total_deaths_per_million": 0.694, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2431.0, + "total_tests": 24825.0, + "total_tests_per_thousand": 8.617, + "new_tests_per_thousand": 0.844, + "new_tests_smoothed": 1795.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 49.275, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-02", + "total_cases": 835.0, + "new_cases": 54.0, + "new_cases_smoothed": 42.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 289.824, + "new_cases_per_million": 18.743, + "new_cases_smoothed_per_million": 14.776, + "total_deaths_per_million": 0.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 1435.0, + "total_tests": 26260.0, + "total_tests_per_thousand": 9.115, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 1797.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 42.211000000000006, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-03", + "total_cases": 949.0, + "new_cases": 114.0, + "new_cases_smoothed": 57.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 329.393, + "new_cases_per_million": 39.569, + "new_cases_smoothed_per_million": 19.834, + "total_deaths_per_million": 1.041, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 2171.0, + "total_tests": 28431.0, + "total_tests_per_thousand": 9.868, + "new_tests_per_thousand": 0.754, + "new_tests_smoothed": 1941.0, + "new_tests_smoothed_per_thousand": 0.674, + "tests_per_case": 33.968, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-04", + "total_cases": 949.0, + "new_cases": 0.0, + "new_cases_smoothed": 55.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 329.393, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.189, + "total_deaths_per_million": 1.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 3520.0, + "total_tests": 31951.0, + "total_tests_per_thousand": 11.09, + "new_tests_per_thousand": 1.222, + "new_tests_smoothed": 2196.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 39.721, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-05", + "total_cases": 1325.0, + "new_cases": 376.0, + "new_cases_smoothed": 105.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 459.9, + "new_cases_per_million": 130.508, + "new_cases_smoothed_per_million": 36.445, + "total_deaths_per_million": 1.041, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3806.0, + "total_tests": 35757.0, + "total_tests_per_thousand": 12.411, + "new_tests_per_thousand": 1.321, + "new_tests_smoothed": 2411.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 22.962, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-06", + "total_cases": 1604.0, + "new_cases": 279.0, + "new_cases_smoothed": 138.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 556.74, + "new_cases_per_million": 96.839, + "new_cases_smoothed_per_million": 48.097, + "total_deaths_per_million": 1.388, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 2351.0, + "total_tests": 38108.0, + "total_tests_per_thousand": 13.227, + "new_tests_per_thousand": 0.816, + "new_tests_smoothed": 2579.0, + "new_tests_smoothed_per_thousand": 0.895, + "tests_per_case": 18.611, + "positive_rate": 0.054000000000000006, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-07", + "total_cases": 1832.0, + "new_cases": 228.0, + "new_cases_smoothed": 162.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 635.877, + "new_cases_per_million": 79.138, + "new_cases_smoothed_per_million": 56.477, + "total_deaths_per_million": 1.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 3710.0, + "total_tests": 41818.0, + "total_tests_per_thousand": 14.515, + "new_tests_per_thousand": 1.288, + "new_tests_smoothed": 2775.0, + "new_tests_smoothed_per_thousand": 0.963, + "tests_per_case": 17.054000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-08", + "total_cases": 2057.0, + "new_cases": 225.0, + "new_cases_smoothed": 182.286, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 713.973, + "new_cases_per_million": 78.096, + "new_cases_smoothed_per_million": 63.27, + "total_deaths_per_million": 2.083, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.198, + "new_tests_smoothed": 2522.0, + "new_tests_smoothed_per_thousand": 0.875, + "tests_per_case": 13.835, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-09", + "total_cases": 2210.0, + "new_cases": 153.0, + "new_cases_smoothed": 196.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 767.079, + "new_cases_per_million": 53.105, + "new_cases_smoothed_per_million": 68.179, + "total_deaths_per_million": 2.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.198, + "total_tests": 43144.0, + "total_tests_per_thousand": 14.975, + "new_tests_smoothed": 2412.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 12.279000000000002, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-10", + "total_cases": 2376.0, + "new_cases": 166.0, + "new_cases_smoothed": 203.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 824.696, + "new_cases_per_million": 57.618, + "new_cases_smoothed_per_million": 70.758, + "total_deaths_per_million": 2.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 2195.0, + "total_tests": 45339.0, + "total_tests_per_thousand": 15.737, + "new_tests_per_thousand": 0.762, + "new_tests_smoothed": 2415.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 11.847000000000001, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-11", + "total_cases": 2512.0, + "new_cases": 136.0, + "new_cases_smoothed": 223.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 871.901, + "new_cases_per_million": 47.205, + "new_cases_smoothed_per_million": 77.501, + "total_deaths_per_million": 2.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 2412.0, + "total_tests": 47751.0, + "total_tests_per_thousand": 16.574, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 10.107999999999999, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-12", + "total_cases": 2728.0, + "new_cases": 216.0, + "new_cases_smoothed": 200.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 946.874, + "new_cases_per_million": 74.972, + "new_cases_smoothed_per_million": 69.568, + "total_deaths_per_million": 2.083, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 1351.0, + "total_tests": 49102.0, + "total_tests_per_thousand": 17.043, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 1906.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 9.51, + "positive_rate": 0.105, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-13", + "total_cases": 2979.0, + "new_cases": 251.0, + "new_cases_smoothed": 196.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1033.994, + "new_cases_per_million": 87.121, + "new_cases_smoothed_per_million": 68.179, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 1726.0, + "total_tests": 50828.0, + "total_tests_per_thousand": 17.642, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 1817.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 9.25, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-14", + "total_cases": 3231.0, + "new_cases": 252.0, + "new_cases_smoothed": 199.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1121.462, + "new_cases_per_million": 87.468, + "new_cases_smoothed_per_million": 69.369, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 1794.0, + "total_tests": 52622.0, + "total_tests_per_thousand": 18.265, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 1543.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 7.721, + "positive_rate": 0.13, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-15", + "total_cases": 3428.0, + "new_cases": 197.0, + "new_cases_smoothed": 195.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1189.84, + "new_cases_per_million": 68.378, + "new_cases_smoothed_per_million": 67.981, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1862.0, + "total_tests": 54484.0, + "total_tests_per_thousand": 18.911, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 1715.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 8.756, + "positive_rate": 0.114, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-16", + "total_cases": 3711.0, + "new_cases": 283.0, + "new_cases_smoothed": 214.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1288.068, + "new_cases_per_million": 98.228, + "new_cases_smoothed_per_million": 74.427, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1897.0, + "total_tests": 56381.0, + "total_tests_per_thousand": 19.57, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 1891.0, + "new_tests_smoothed_per_thousand": 0.656, + "tests_per_case": 8.818999999999999, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-17", + "total_cases": 4103.0, + "new_cases": 392.0, + "new_cases_smoothed": 246.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1424.129, + "new_cases_per_million": 136.061, + "new_cases_smoothed_per_million": 85.633, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1947.0, + "total_tests": 58328.0, + "total_tests_per_thousand": 20.245, + "new_tests_per_thousand": 0.676, + "new_tests_smoothed": 1856.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 7.523, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-18", + "total_cases": 4663.0, + "new_cases": 560.0, + "new_cases_smoothed": 307.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1618.502, + "new_cases_per_million": 194.373, + "new_cases_smoothed_per_million": 106.657, + "total_deaths_per_million": 2.43, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 1811.0, + "total_tests": 60139.0, + "total_tests_per_thousand": 20.874, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 1770.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 5.76, + "positive_rate": 0.174, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-19", + "total_cases": 5008.0, + "new_cases": 345.0, + "new_cases_smoothed": 325.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1738.249, + "new_cases_per_million": 119.748, + "new_cases_smoothed_per_million": 113.054, + "total_deaths_per_million": 2.777, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2399.0, + "total_tests": 62538.0, + "total_tests_per_thousand": 21.707, + "new_tests_per_thousand": 0.833, + "new_tests_smoothed": 1919.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 5.892, + "positive_rate": 0.17, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-20", + "total_cases": 5448.0, + "new_cases": 440.0, + "new_cases_smoothed": 352.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1890.971, + "new_cases_per_million": 152.722, + "new_cases_smoothed_per_million": 122.425, + "total_deaths_per_million": 2.777, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2082.0, + "total_tests": 64620.0, + "total_tests_per_thousand": 22.429, + "new_tests_per_thousand": 0.723, + "new_tests_smoothed": 1970.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 5.585, + "positive_rate": 0.179, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 6015.0, + "new_cases": 567.0, + "new_cases_smoothed": 397.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2087.773, + "new_cases_per_million": 196.803, + "new_cases_smoothed_per_million": 138.044, + "total_deaths_per_million": 3.124, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2105.0, + "total_tests": 66725.0, + "total_tests_per_thousand": 23.16, + "new_tests_per_thousand": 0.731, + "new_tests_smoothed": 2015.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 5.066, + "positive_rate": 0.19699999999999998, + "tests_units": "people tested", + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 6533.0, + "new_cases": 518.0, + "new_cases_smoothed": 443.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2267.568, + "new_cases_per_million": 179.795, + "new_cases_smoothed_per_million": 153.961, + "total_deaths_per_million": 3.124, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3287.0, + "total_tests": 70012.0, + "total_tests_per_thousand": 24.301, + "new_tests_per_thousand": 1.141, + "new_tests_smoothed": 2218.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 5.0, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-23", + "total_cases": 7141.0, + "new_cases": 608.0, + "new_cases_smoothed": 490.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2478.602, + "new_cases_per_million": 211.033, + "new_cases_smoothed_per_million": 170.076, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 3445.0, + "total_tests": 73457.0, + "total_tests_per_thousand": 25.497, + "new_tests_per_thousand": 1.196, + "new_tests_smoothed": 2439.0, + "new_tests_smoothed_per_thousand": 0.847, + "tests_per_case": 4.978, + "positive_rate": 0.201, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-24", + "total_cases": 7764.0, + "new_cases": 623.0, + "new_cases_smoothed": 523.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2694.841, + "new_cases_per_million": 216.24, + "new_cases_smoothed_per_million": 181.53, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 2431.0, + "total_tests": 75888.0, + "total_tests_per_thousand": 26.34, + "new_tests_per_thousand": 0.844, + "new_tests_smoothed": 2509.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 4.797, + "positive_rate": 0.20800000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-25", + "total_cases": 8525.0, + "new_cases": 761.0, + "new_cases_smoothed": 551.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2958.98, + "new_cases_per_million": 264.139, + "new_cases_smoothed_per_million": 191.497, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 3817.0, + "total_tests": 79705.0, + "total_tests_per_thousand": 27.665, + "new_tests_per_thousand": 1.325, + "new_tests_smoothed": 2795.0, + "new_tests_smoothed_per_thousand": 0.97, + "tests_per_case": 5.066, + "positive_rate": 0.19699999999999998, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-26", + "total_cases": 9358.0, + "new_cases": 833.0, + "new_cases_smoothed": 621.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3248.11, + "new_cases_per_million": 289.13, + "new_cases_smoothed_per_million": 215.694, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2584.0, + "total_tests": 82289.0, + "total_tests_per_thousand": 28.562, + "new_tests_per_thousand": 0.897, + "new_tests_smoothed": 2822.0, + "new_tests_smoothed_per_thousand": 0.98, + "tests_per_case": 4.541, + "positive_rate": 0.22, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-27", + "total_cases": 10287.0, + "new_cases": 929.0, + "new_cases_smoothed": 691.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3570.561, + "new_cases_per_million": 322.451, + "new_cases_smoothed_per_million": 239.941, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3420.0, + "total_tests": 85709.0, + "total_tests_per_thousand": 29.749, + "new_tests_per_thousand": 1.187, + "new_tests_smoothed": 3013.0, + "new_tests_smoothed_per_thousand": 1.046, + "tests_per_case": 4.359, + "positive_rate": 0.22899999999999998, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-28", + "total_cases": 11244.0, + "new_cases": 957.0, + "new_cases_smoothed": 747.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3902.73, + "new_cases_per_million": 332.169, + "new_cases_smoothed_per_million": 259.28, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2898.0, + "total_tests": 88607.0, + "total_tests_per_thousand": 30.755, + "new_tests_per_thousand": 1.006, + "new_tests_smoothed": 3126.0, + "new_tests_smoothed_per_thousand": 1.085, + "tests_per_case": 4.185, + "positive_rate": 0.239, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-29", + "total_cases": 11921.0, + "new_cases": 677.0, + "new_cases_smoothed": 769.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4137.713, + "new_cases_per_million": 234.983, + "new_cases_smoothed_per_million": 267.164, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2808.0, + "total_tests": 91415.0, + "total_tests_per_thousand": 31.73, + "new_tests_per_thousand": 0.975, + "new_tests_smoothed": 3058.0, + "new_tests_smoothed_per_thousand": 1.061, + "tests_per_case": 3.9730000000000003, + "positive_rate": 0.252, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-30", + "total_cases": 12564.0, + "new_cases": 643.0, + "new_cases_smoothed": 774.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4360.895, + "new_cases_per_million": 223.182, + "new_cases_smoothed_per_million": 268.899, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3085.0, + "total_tests": 94500.0, + "total_tests_per_thousand": 32.8, + "new_tests_per_thousand": 1.071, + "new_tests_smoothed": 3006.0, + "new_tests_smoothed_per_thousand": 1.043, + "tests_per_case": 3.88, + "positive_rate": 0.258, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-01", + "total_cases": 13409.0, + "new_cases": 845.0, + "new_cases_smoothed": 806.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4654.19, + "new_cases_per_million": 293.295, + "new_cases_smoothed_per_million": 279.907, + "total_deaths_per_million": 3.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3226.0, + "total_tests": 97726.0, + "total_tests_per_thousand": 33.92, + "new_tests_per_thousand": 1.12, + "new_tests_smoothed": 3120.0, + "new_tests_smoothed_per_thousand": 1.083, + "tests_per_case": 3.8689999999999998, + "positive_rate": 0.258, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-02", + "total_cases": 14096.0, + "new_cases": 687.0, + "new_cases_smoothed": 795.857, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4892.644, + "new_cases_per_million": 238.454, + "new_cases_smoothed_per_million": 276.238, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4002.0, + "total_tests": 101728.0, + "total_tests_per_thousand": 35.309, + "new_tests_per_thousand": 1.389, + "new_tests_smoothed": 3146.0, + "new_tests_smoothed_per_thousand": 1.092, + "tests_per_case": 3.9530000000000003, + "positive_rate": 0.253, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-03", + "total_cases": 14872.0, + "new_cases": 776.0, + "new_cases_smoothed": 787.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5161.989, + "new_cases_per_million": 269.345, + "new_cases_smoothed_per_million": 273.411, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2707.0, + "total_tests": 104435.0, + "total_tests_per_thousand": 36.249, + "new_tests_per_thousand": 0.94, + "new_tests_smoothed": 3164.0, + "new_tests_smoothed_per_thousand": 1.098, + "tests_per_case": 4.0169999999999995, + "positive_rate": 0.249, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-04", + "total_cases": 15551.0, + "new_cases": 679.0, + "new_cases_smoothed": 752.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5397.666, + "new_cases_per_million": 235.677, + "new_cases_smoothed_per_million": 261.015, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2360.0, + "total_tests": 106795.0, + "total_tests_per_thousand": 37.068, + "new_tests_per_thousand": 0.819, + "new_tests_smoothed": 3012.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 4.005, + "positive_rate": 0.25, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-05", + "total_cases": 16191.0, + "new_cases": 640.0, + "new_cases_smoothed": 706.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5619.807, + "new_cases_per_million": 222.14, + "new_cases_smoothed_per_million": 245.297, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2967.0, + "total_tests": 109762.0, + "total_tests_per_thousand": 38.098, + "new_tests_per_thousand": 1.03, + "new_tests_smoothed": 3022.0, + "new_tests_smoothed_per_thousand": 1.049, + "tests_per_case": 4.276, + "positive_rate": 0.23399999999999999, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-06", + "total_cases": 17142.0, + "new_cases": 951.0, + "new_cases_smoothed": 745.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5949.893, + "new_cases_per_million": 330.087, + "new_cases_smoothed_per_million": 258.883, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3201.0, + "total_tests": 112963.0, + "total_tests_per_thousand": 39.209, + "new_tests_per_thousand": 1.111, + "new_tests_smoothed": 3078.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 4.127, + "positive_rate": 0.242, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-07", + "total_cases": 17972.0, + "new_cases": 830.0, + "new_cases_smoothed": 772.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6237.982, + "new_cases_per_million": 288.088, + "new_cases_smoothed_per_million": 268.155, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3532.0, + "total_tests": 116495.0, + "total_tests_per_thousand": 40.435, + "new_tests_per_thousand": 1.226, + "new_tests_smoothed": 3142.0, + "new_tests_smoothed_per_thousand": 1.091, + "tests_per_case": 4.067, + "positive_rate": 0.24600000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-08", + "total_cases": 18890.0, + "new_cases": 918.0, + "new_cases_smoothed": 783.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6556.615, + "new_cases_per_million": 318.633, + "new_cases_smoothed_per_million": 271.775, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3963.0, + "total_tests": 120458.0, + "total_tests_per_thousand": 41.81, + "new_tests_per_thousand": 1.376, + "new_tests_smoothed": 3247.0, + "new_tests_smoothed_per_thousand": 1.127, + "tests_per_case": 4.147, + "positive_rate": 0.24100000000000002, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-09", + "total_cases": 20201.0, + "new_cases": 1311.0, + "new_cases_smoothed": 872.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7011.655, + "new_cases_per_million": 455.041, + "new_cases_smoothed_per_million": 302.716, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4096.0, + "total_tests": 124554.0, + "total_tests_per_thousand": 43.232, + "new_tests_per_thousand": 1.422, + "new_tests_smoothed": 3261.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 3.739, + "positive_rate": 0.267, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-10", + "total_cases": 21331.0, + "new_cases": 1130.0, + "new_cases_smoothed": 922.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7403.872, + "new_cases_per_million": 392.217, + "new_cases_smoothed_per_million": 320.269, + "total_deaths_per_million": 4.512, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3215.0, + "total_tests": 127769.0, + "total_tests_per_thousand": 44.348, + "new_tests_per_thousand": 1.116, + "new_tests_smoothed": 3333.0, + "new_tests_smoothed_per_thousand": 1.157, + "tests_per_case": 3.612, + "positive_rate": 0.27699999999999997, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-11", + "total_cases": 22520.0, + "new_cases": 1189.0, + "new_cases_smoothed": 995.571, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7816.568, + "new_cases_per_million": 412.695, + "new_cases_smoothed_per_million": 345.557, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3275.0, + "total_tests": 131044.0, + "total_tests_per_thousand": 45.485, + "new_tests_per_thousand": 1.137, + "new_tests_smoothed": 3464.0, + "new_tests_smoothed_per_thousand": 1.202, + "tests_per_case": 3.4789999999999996, + "positive_rate": 0.287, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-12", + "total_cases": 23623.0, + "new_cases": 1103.0, + "new_cases_smoothed": 1061.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8199.413, + "new_cases_per_million": 382.845, + "new_cases_smoothed_per_million": 368.515, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4250.0, + "total_tests": 135294.0, + "total_tests_per_thousand": 46.96, + "new_tests_per_thousand": 1.475, + "new_tests_smoothed": 3647.0, + "new_tests_smoothed_per_thousand": 1.266, + "tests_per_case": 3.435, + "positive_rate": 0.29100000000000004, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-13", + "total_cases": 25149.0, + "new_cases": 1526.0, + "new_cases_smoothed": 1143.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8729.079, + "new_cases_per_million": 529.666, + "new_cases_smoothed_per_million": 397.026, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 3833.0, + "total_tests": 139127.0, + "total_tests_per_thousand": 48.29, + "new_tests_per_thousand": 1.33, + "new_tests_smoothed": 3738.0, + "new_tests_smoothed_per_thousand": 1.297, + "tests_per_case": 3.2680000000000002, + "positive_rate": 0.306, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-14", + "total_cases": 26539.0, + "new_cases": 1390.0, + "new_cases_smoothed": 1223.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9211.54, + "new_cases_per_million": 482.461, + "new_cases_smoothed_per_million": 424.794, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4811.0, + "total_tests": 143938.0, + "total_tests_per_thousand": 49.96, + "new_tests_per_thousand": 1.67, + "new_tests_smoothed": 3920.0, + "new_tests_smoothed_per_thousand": 1.361, + "tests_per_case": 3.2030000000000003, + "positive_rate": 0.312, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-15", + "total_cases": 28272.0, + "new_cases": 1733.0, + "new_cases_smoothed": 1340.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9813.055, + "new_cases_per_million": 601.515, + "new_cases_smoothed_per_million": 465.206, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4235.0, + "total_tests": 148173.0, + "total_tests_per_thousand": 51.43, + "new_tests_per_thousand": 1.47, + "new_tests_smoothed": 3959.0, + "new_tests_smoothed_per_thousand": 1.374, + "tests_per_case": 2.9539999999999997, + "positive_rate": 0.33899999999999997, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-16", + "total_cases": 29425.0, + "new_cases": 1153.0, + "new_cases_smoothed": 1317.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10213.255, + "new_cases_per_million": 400.2, + "new_cases_smoothed_per_million": 457.371, + "total_deaths_per_million": 4.859, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4531.0, + "total_tests": 152704.0, + "total_tests_per_thousand": 53.003, + "new_tests_per_thousand": 1.573, + "new_tests_smoothed": 4021.0, + "new_tests_smoothed_per_thousand": 1.396, + "tests_per_case": 3.051, + "positive_rate": 0.32799999999999996, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-17", + "total_cases": 30972.0, + "new_cases": 1547.0, + "new_cases_smoothed": 1377.286, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10750.21, + "new_cases_per_million": 536.955, + "new_cases_smoothed_per_million": 478.048, + "total_deaths_per_million": 5.206, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 4866.0, + "total_tests": 157570.0, + "total_tests_per_thousand": 54.692, + "new_tests_per_thousand": 1.689, + "new_tests_smoothed": 4257.0, + "new_tests_smoothed_per_thousand": 1.478, + "tests_per_case": 3.091, + "positive_rate": 0.324, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-18", + "total_cases": 32604.0, + "new_cases": 1632.0, + "new_cases_smoothed": 1440.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11316.668, + "new_cases_per_million": 566.458, + "new_cases_smoothed_per_million": 500.014, + "total_deaths_per_million": 5.206, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4125.0, + "total_tests": 161695.0, + "total_tests_per_thousand": 56.123, + "new_tests_per_thousand": 1.432, + "new_tests_smoothed": 4379.0, + "new_tests_smoothed_per_thousand": 1.52, + "tests_per_case": 3.04, + "positive_rate": 0.32899999999999996, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 33969.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1478.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11790.452, + "new_cases_per_million": 473.784, + "new_cases_smoothed_per_million": 513.006, + "total_deaths_per_million": 5.206, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4487.0, + "total_tests": 166182.0, + "total_tests_per_thousand": 57.681, + "new_tests_per_thousand": 1.557, + "new_tests_smoothed": 4413.0, + "new_tests_smoothed_per_thousand": 1.532, + "tests_per_case": 2.986, + "positive_rate": 0.335, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 35606.0, + "new_cases": 1637.0, + "new_cases_smoothed": 1493.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12358.646, + "new_cases_per_million": 568.194, + "new_cases_smoothed_per_million": 518.51, + "total_deaths_per_million": 5.206, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4255.0, + "total_tests": 170437.0, + "total_tests_per_thousand": 59.158, + "new_tests_per_thousand": 1.477, + "new_tests_smoothed": 4473.0, + "new_tests_smoothed_per_thousand": 1.553, + "tests_per_case": 2.9939999999999998, + "positive_rate": 0.33399999999999996, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 37097.0, + "new_cases": 1491.0, + "new_cases_smoothed": 1508.286, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 12876.164, + "new_cases_per_million": 517.518, + "new_cases_smoothed_per_million": 523.518, + "total_deaths_per_million": 5.554, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 5045.0, + "total_tests": 175482.0, + "total_tests_per_thousand": 60.909, + "new_tests_per_thousand": 1.751, + "new_tests_smoothed": 4506.0, + "new_tests_smoothed_per_thousand": 1.564, + "tests_per_case": 2.987, + "positive_rate": 0.335, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 38651.0, + "new_cases": 1554.0, + "new_cases_smoothed": 1482.714, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13415.548, + "new_cases_per_million": 539.385, + "new_cases_smoothed_per_million": 514.642, + "total_deaths_per_million": 5.901, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 5160.0, + "total_tests": 180642.0, + "total_tests_per_thousand": 62.7, + "new_tests_per_thousand": 1.791, + "new_tests_smoothed": 4638.0, + "new_tests_smoothed_per_thousand": 1.61, + "tests_per_case": 3.128, + "positive_rate": 0.32, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 40481.0, + "new_cases": 1830.0, + "new_cases_smoothed": 1579.429, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 14050.731, + "new_cases_per_million": 635.183, + "new_cases_smoothed_per_million": 548.211, + "total_deaths_per_million": 6.595, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 4152.0, + "total_tests": 184794.0, + "total_tests_per_thousand": 64.141, + "new_tests_per_thousand": 1.441, + "new_tests_smoothed": 4584.0, + "new_tests_smoothed_per_thousand": 1.591, + "tests_per_case": 2.9019999999999997, + "positive_rate": 0.345, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 42213.0, + "new_cases": 1732.0, + "new_cases_smoothed": 1605.857, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 14651.899, + "new_cases_per_million": 601.168, + "new_cases_smoothed_per_million": 557.384, + "total_deaths_per_million": 7.289, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 3349.0, + "total_tests": 188143.0, + "total_tests_per_thousand": 65.303, + "new_tests_per_thousand": 1.162, + "new_tests_smoothed": 4368.0, + "new_tests_smoothed_per_thousand": 1.516, + "tests_per_case": 2.72, + "positive_rate": 0.368, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 43714.0, + "new_cases": 1501.0, + "new_cases_smoothed": 1587.143, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 15172.888, + "new_cases_per_million": 520.989, + "new_cases_smoothed_per_million": 550.889, + "total_deaths_per_million": 7.983, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 4341.0, + "total_tests": 192484.0, + "total_tests_per_thousand": 66.81, + "new_tests_per_thousand": 1.507, + "new_tests_smoothed": 4398.0, + "new_tests_smoothed_per_thousand": 1.527, + "tests_per_case": 2.7710000000000004, + "positive_rate": 0.361, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-26", + "total_cases": 45465.0, + "new_cases": 1751.0, + "new_cases_smoothed": 1642.286, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 15780.65, + "new_cases_per_million": 607.762, + "new_cases_smoothed_per_million": 570.028, + "total_deaths_per_million": 9.024, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 3927.0, + "total_tests": 196411.0, + "total_tests_per_thousand": 68.173, + "new_tests_per_thousand": 1.363, + "new_tests_smoothed": 4318.0, + "new_tests_smoothed_per_thousand": 1.499, + "tests_per_case": 2.6289999999999996, + "positive_rate": 0.38, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-27", + "total_cases": 47207.0, + "new_cases": 1742.0, + "new_cases_smoothed": 1657.286, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 16385.289, + "new_cases_per_million": 604.639, + "new_cases_smoothed_per_million": 575.235, + "total_deaths_per_million": 9.719, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.645, + "new_tests": 4769.0, + "total_tests": 201180.0, + "total_tests_per_thousand": 69.828, + "new_tests_per_thousand": 1.655, + "new_tests_smoothed": 4392.0, + "new_tests_smoothed_per_thousand": 1.524, + "tests_per_case": 2.65, + "positive_rate": 0.377, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-28", + "total_cases": 48947.0, + "new_cases": 1740.0, + "new_cases_smoothed": 1692.857, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 16989.233, + "new_cases_per_million": 603.944, + "new_cases_smoothed_per_million": 587.581, + "total_deaths_per_million": 10.413, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.694, + "new_tests": 5853.0, + "total_tests": 207033.0, + "total_tests_per_thousand": 71.86, + "new_tests_per_thousand": 2.032, + "new_tests_smoothed": 4507.0, + "new_tests_smoothed_per_thousand": 1.564, + "tests_per_case": 2.662, + "positive_rate": 0.376, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-29", + "total_cases": 50914.0, + "new_cases": 1967.0, + "new_cases_smoothed": 1751.857, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 17671.968, + "new_cases_per_million": 682.735, + "new_cases_smoothed_per_million": 608.06, + "total_deaths_per_million": 11.454, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 5864.0, + "total_tests": 212897.0, + "total_tests_per_thousand": 73.895, + "new_tests_per_thousand": 2.035, + "new_tests_smoothed": 4608.0, + "new_tests_smoothed_per_thousand": 1.599, + "tests_per_case": 2.63, + "positive_rate": 0.38, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-30", + "total_cases": 52907.0, + "new_cases": 1993.0, + "new_cases_smoothed": 1775.143, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 18363.727, + "new_cases_per_million": 691.759, + "new_cases_smoothed_per_million": 616.142, + "total_deaths_per_million": 12.495, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 5091.0, + "total_tests": 217988.0, + "total_tests_per_thousand": 75.662, + "new_tests_per_thousand": 1.767, + "new_tests_smoothed": 4742.0, + "new_tests_smoothed_per_thousand": 1.646, + "tests_per_case": 2.6710000000000003, + "positive_rate": 0.374, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-05-31", + "total_cases": 55262.0, + "new_cases": 2355.0, + "new_cases_smoothed": 1864.143, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 19181.135, + "new_cases_per_million": 817.407, + "new_cases_smoothed_per_million": 647.034, + "total_deaths_per_million": 12.495, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 4081.0, + "total_tests": 222069.0, + "total_tests_per_thousand": 77.079, + "new_tests_per_thousand": 1.416, + "new_tests_smoothed": 4847.0, + "new_tests_smoothed_per_thousand": 1.682, + "tests_per_case": 2.6, + "positive_rate": 0.385, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-01", + "total_cases": 56910.0, + "new_cases": 1648.0, + "new_cases_smoothed": 1885.143, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 19753.146, + "new_cases_per_million": 572.012, + "new_cases_smoothed_per_million": 654.323, + "total_deaths_per_million": 13.19, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 3850.0, + "total_tests": 225919.0, + "total_tests_per_thousand": 78.415, + "new_tests_per_thousand": 1.336, + "new_tests_smoothed": 4776.0, + "new_tests_smoothed_per_thousand": 1.658, + "tests_per_case": 2.533, + "positive_rate": 0.395, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-02", + "total_cases": 58433.0, + "new_cases": 1523.0, + "new_cases_smoothed": 1852.571, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 20281.771, + "new_cases_per_million": 528.625, + "new_cases_smoothed_per_million": 643.017, + "total_deaths_per_million": 13.884, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.694, + "new_tests": 5179.0, + "total_tests": 231098.0, + "total_tests_per_thousand": 80.213, + "new_tests_per_thousand": 1.798, + "new_tests_smoothed": 4955.0, + "new_tests_smoothed_per_thousand": 1.72, + "tests_per_case": 2.675, + "positive_rate": 0.374, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-03", + "total_cases": 60259.0, + "new_cases": 1826.0, + "new_cases_smoothed": 1864.571, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 20915.566, + "new_cases_per_million": 633.795, + "new_cases_smoothed_per_million": 647.182, + "total_deaths_per_million": 14.925, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 5339.0, + "total_tests": 236437.0, + "total_tests_per_thousand": 82.066, + "new_tests_per_thousand": 1.853, + "new_tests_smoothed": 5037.0, + "new_tests_smoothed_per_thousand": 1.748, + "tests_per_case": 2.701, + "positive_rate": 0.37, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-04", + "total_cases": 62160.0, + "new_cases": 1901.0, + "new_cases_smoothed": 1887.571, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 21575.392, + "new_cases_per_million": 659.827, + "new_cases_smoothed_per_million": 655.166, + "total_deaths_per_million": 15.619, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 4649.0, + "total_tests": 241086.0, + "total_tests_per_thousand": 83.68, + "new_tests_per_thousand": 1.614, + "new_tests_smoothed": 4865.0, + "new_tests_smoothed_per_thousand": 1.689, + "tests_per_case": 2.577, + "positive_rate": 0.38799999999999996, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-05", + "total_cases": 63741.0, + "new_cases": 1581.0, + "new_cases_smoothed": 1832.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 22124.149, + "new_cases_per_million": 548.756, + "new_cases_smoothed_per_million": 636.026, + "total_deaths_per_million": 15.619, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 5276.0, + "total_tests": 246362.0, + "total_tests_per_thousand": 85.511, + "new_tests_per_thousand": 1.831, + "new_tests_smoothed": 4781.0, + "new_tests_smoothed_per_thousand": 1.659, + "tests_per_case": 2.609, + "positive_rate": 0.38299999999999995, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-06", + "total_cases": 65495.0, + "new_cases": 1754.0, + "new_cases_smoothed": 1798.286, + "total_deaths": 49.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 22732.952, + "new_cases_per_million": 608.804, + "new_cases_smoothed_per_million": 624.175, + "total_deaths_per_million": 17.008, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 0.645, + "new_tests": 5029.0, + "total_tests": 251391.0, + "total_tests_per_thousand": 87.256, + "new_tests_per_thousand": 1.746, + "new_tests_smoothed": 4772.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 2.654, + "positive_rate": 0.377, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-07", + "total_cases": 67195.0, + "new_cases": 1700.0, + "new_cases_smoothed": 1704.714, + "total_deaths": 51.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 23323.013, + "new_cases_per_million": 590.061, + "new_cases_smoothed_per_million": 591.697, + "total_deaths_per_million": 17.702, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.744, + "new_tests_smoothed": 4778.0, + "new_tests_smoothed_per_thousand": 1.658, + "tests_per_case": 2.803, + "positive_rate": 0.35700000000000004, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-08", + "total_cases": 68790.0, + "new_cases": 1595.0, + "new_cases_smoothed": 1697.143, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 23876.629, + "new_cases_per_million": 553.616, + "new_cases_smoothed_per_million": 589.069, + "total_deaths_per_million": 18.743, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.793, + "total_tests": 259646.0, + "total_tests_per_thousand": 90.122, + "new_tests_smoothed": 4818.0, + "new_tests_smoothed_per_thousand": 1.672, + "tests_per_case": 2.839, + "positive_rate": 0.35200000000000004, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 70158.0, + "new_cases": 1368.0, + "new_cases_smoothed": 1675.0, + "total_deaths": 57.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 24351.454, + "new_cases_per_million": 474.825, + "new_cases_smoothed_per_million": 581.383, + "total_deaths_per_million": 19.784, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 5389.0, + "total_tests": 265035.0, + "total_tests_per_thousand": 91.992, + "new_tests_per_thousand": 1.87, + "new_tests_smoothed": 4848.0, + "new_tests_smoothed_per_thousand": 1.683, + "tests_per_case": 2.8939999999999997, + "positive_rate": 0.34600000000000003, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-10", + "total_cases": 71879.0, + "new_cases": 1721.0, + "new_cases_smoothed": 1660.0, + "total_deaths": 62.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 24948.804, + "new_cases_per_million": 597.35, + "new_cases_smoothed_per_million": 576.177, + "total_deaths_per_million": 21.52, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 4929.0, + "total_tests": 269964.0, + "total_tests_per_thousand": 93.703, + "new_tests_per_thousand": 1.711, + "new_tests_smoothed": 4790.0, + "new_tests_smoothed_per_thousand": 1.663, + "tests_per_case": 2.886, + "positive_rate": 0.34700000000000003, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-11", + "total_cases": 73595.0, + "new_cases": 1716.0, + "new_cases_smoothed": 1633.571, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 25544.418, + "new_cases_per_million": 595.614, + "new_cases_smoothed_per_million": 567.004, + "total_deaths_per_million": 22.908, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.041, + "new_tests": 4829.0, + "total_tests": 274793.0, + "total_tests_per_thousand": 95.379, + "new_tests_per_thousand": 1.676, + "new_tests_smoothed": 4815.0, + "new_tests_smoothed_per_thousand": 1.671, + "tests_per_case": 2.948, + "positive_rate": 0.33899999999999997, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-12", + "total_cases": 75071.0, + "new_cases": 1476.0, + "new_cases_smoothed": 1618.571, + "total_deaths": 69.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 26056.729, + "new_cases_per_million": 512.311, + "new_cases_smoothed_per_million": 561.797, + "total_deaths_per_million": 23.95, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 1.19, + "new_tests": 5872.0, + "total_tests": 280665.0, + "total_tests_per_thousand": 97.417, + "new_tests_per_thousand": 2.038, + "new_tests_smoothed": 4900.0, + "new_tests_smoothed_per_thousand": 1.701, + "tests_per_case": 3.0269999999999997, + "positive_rate": 0.33, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-13", + "total_cases": 76588.0, + "new_cases": 1517.0, + "new_cases_smoothed": 1584.714, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 26583.271, + "new_cases_per_million": 526.542, + "new_cases_smoothed_per_million": 550.046, + "total_deaths_per_million": 24.297, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.041, + "new_tests": 6165.0, + "total_tests": 286830.0, + "total_tests_per_thousand": 99.557, + "new_tests_per_thousand": 2.14, + "new_tests_smoothed": 5063.0, + "new_tests_smoothed_per_thousand": 1.757, + "tests_per_case": 3.195, + "positive_rate": 0.313, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-14", + "total_cases": 78416.0, + "new_cases": 1828.0, + "new_cases_smoothed": 1603.0, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 27217.76, + "new_cases_per_million": 634.489, + "new_cases_smoothed_per_million": 556.392, + "total_deaths_per_million": 24.297, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 3884.0, + "total_tests": 290714.0, + "total_tests_per_thousand": 100.905, + "new_tests_per_thousand": 1.348, + "new_tests_smoothed": 5028.0, + "new_tests_smoothed_per_thousand": 1.745, + "tests_per_case": 3.137, + "positive_rate": 0.319, + "tests_units": "people tested", + "stringency_index": 83.33 + }, + { + "date": "2020-06-15", + "total_cases": 79602.0, + "new_cases": 1186.0, + "new_cases_smoothed": 1544.571, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 27629.414, + "new_cases_per_million": 411.654, + "new_cases_smoothed_per_million": 536.112, + "total_deaths_per_million": 25.338, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 4624.0, + "total_tests": 295338.0, + "total_tests_per_thousand": 102.51, + "new_tests_per_thousand": 1.605, + "new_tests_smoothed": 5099.0, + "new_tests_smoothed_per_thousand": 1.77, + "tests_per_case": 3.301, + "positive_rate": 0.303, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-16", + "total_cases": 80876.0, + "new_cases": 1274.0, + "new_cases_smoothed": 1531.143, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 28071.613, + "new_cases_per_million": 442.198, + "new_cases_smoothed_per_million": 531.451, + "total_deaths_per_million": 26.379, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 5161.0, + "total_tests": 300499.0, + "total_tests_per_thousand": 104.302, + "new_tests_per_thousand": 1.791, + "new_tests_smoothed": 5066.0, + "new_tests_smoothed_per_thousand": 1.758, + "tests_per_case": 3.3089999999999997, + "positive_rate": 0.302, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-17", + "total_cases": 82077.0, + "new_cases": 1201.0, + "new_cases_smoothed": 1456.857, + "total_deaths": 80.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 28488.473, + "new_cases_per_million": 416.86, + "new_cases_smoothed_per_million": 505.667, + "total_deaths_per_million": 27.768, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 4302.0, + "total_tests": 304801.0, + "total_tests_per_thousand": 105.795, + "new_tests_per_thousand": 1.493, + "new_tests_smoothed": 4977.0, + "new_tests_smoothed_per_thousand": 1.727, + "tests_per_case": 3.4160000000000004, + "positive_rate": 0.293, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-18", + "total_cases": 83174.0, + "new_cases": 1097.0, + "new_cases_smoothed": 1368.429, + "total_deaths": 82.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 28869.236, + "new_cases_per_million": 380.763, + "new_cases_smoothed_per_million": 474.974, + "total_deaths_per_million": 28.462, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 4869.0, + "total_tests": 309670.0, + "total_tests_per_thousand": 107.485, + "new_tests_per_thousand": 1.69, + "new_tests_smoothed": 4982.0, + "new_tests_smoothed_per_thousand": 1.729, + "tests_per_case": 3.641, + "positive_rate": 0.275, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-19", + "total_cases": 84441.0, + "new_cases": 1267.0, + "new_cases_smoothed": 1338.571, + "total_deaths": 86.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 29309.004, + "new_cases_per_million": 439.769, + "new_cases_smoothed_per_million": 464.611, + "total_deaths_per_million": 29.85, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 0.843, + "new_tests": 3831.0, + "total_tests": 313501.0, + "total_tests_per_thousand": 108.814, + "new_tests_per_thousand": 1.33, + "new_tests_smoothed": 4691.0, + "new_tests_smoothed_per_thousand": 1.628, + "tests_per_case": 3.5039999999999996, + "positive_rate": 0.285, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-20", + "total_cases": 85462.0, + "new_cases": 1021.0, + "new_cases_smoothed": 1267.714, + "total_deaths": 93.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 29663.388, + "new_cases_per_million": 354.383, + "new_cases_smoothed_per_million": 440.017, + "total_deaths_per_million": 32.28, + "new_deaths_per_million": 2.43, + "new_deaths_smoothed_per_million": 1.14, + "new_tests": 4193.0, + "total_tests": 317694.0, + "total_tests_per_thousand": 110.27, + "new_tests_per_thousand": 1.455, + "new_tests_smoothed": 4409.0, + "new_tests_smoothed_per_thousand": 1.53, + "tests_per_case": 3.478, + "positive_rate": 0.28800000000000003, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-21", + "total_cases": 86488.0, + "new_cases": 1026.0, + "new_cases_smoothed": 1153.143, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 30019.507, + "new_cases_per_million": 356.119, + "new_cases_smoothed_per_million": 400.25, + "total_deaths_per_million": 32.627, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.19, + "new_tests": 3098.0, + "total_tests": 320792.0, + "total_tests_per_thousand": 111.345, + "new_tests_per_thousand": 1.075, + "new_tests_smoothed": 4297.0, + "new_tests_smoothed_per_thousand": 1.491, + "tests_per_case": 3.7260000000000004, + "positive_rate": 0.268, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-22", + "total_cases": 87369.0, + "new_cases": 881.0, + "new_cases_smoothed": 1109.571, + "total_deaths": 98.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 30325.297, + "new_cases_per_million": 305.79, + "new_cases_smoothed_per_million": 385.126, + "total_deaths_per_million": 34.015, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.24, + "new_tests": 3778.0, + "total_tests": 324570.0, + "total_tests_per_thousand": 112.656, + "new_tests_per_thousand": 1.311, + "new_tests_smoothed": 4176.0, + "new_tests_smoothed_per_thousand": 1.449, + "tests_per_case": 3.764, + "positive_rate": 0.266, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-23", + "total_cases": 88403.0, + "new_cases": 1034.0, + "new_cases_smoothed": 1075.286, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 30684.193, + "new_cases_per_million": 358.896, + "new_cases_smoothed_per_million": 373.226, + "total_deaths_per_million": 34.362, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.14, + "new_tests": 4371.0, + "total_tests": 328941.0, + "total_tests_per_thousand": 114.174, + "new_tests_per_thousand": 1.517, + "new_tests_smoothed": 4063.0, + "new_tests_smoothed_per_thousand": 1.41, + "tests_per_case": 3.779, + "positive_rate": 0.265, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-24", + "total_cases": 89579.0, + "new_cases": 1176.0, + "new_cases_smoothed": 1071.714, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 31092.376, + "new_cases_per_million": 408.183, + "new_cases_smoothed_per_million": 371.986, + "total_deaths_per_million": 34.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 4231.0, + "total_tests": 333172.0, + "total_tests_per_thousand": 115.642, + "new_tests_per_thousand": 1.469, + "new_tests_smoothed": 4053.0, + "new_tests_smoothed_per_thousand": 1.407, + "tests_per_case": 3.782, + "positive_rate": 0.264, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-25", + "total_cases": 90778.0, + "new_cases": 1199.0, + "new_cases_smoothed": 1086.286, + "total_deaths": 104.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 31508.542, + "new_cases_per_million": 416.166, + "new_cases_smoothed_per_million": 377.044, + "total_deaths_per_million": 36.098, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 4324.0, + "total_tests": 337496.0, + "total_tests_per_thousand": 117.143, + "new_tests_per_thousand": 1.501, + "new_tests_smoothed": 3975.0, + "new_tests_smoothed_per_thousand": 1.38, + "tests_per_case": 3.659, + "positive_rate": 0.273, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-26", + "total_cases": 91838.0, + "new_cases": 1060.0, + "new_cases_smoothed": 1056.714, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 31876.462, + "new_cases_per_million": 367.92, + "new_cases_smoothed_per_million": 366.78, + "total_deaths_per_million": 36.792, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.992, + "new_tests": 4418.0, + "total_tests": 341914.0, + "total_tests_per_thousand": 118.676, + "new_tests_per_thousand": 1.533, + "new_tests_smoothed": 4059.0, + "new_tests_smoothed_per_thousand": 1.409, + "tests_per_case": 3.841, + "positive_rate": 0.26, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-27", + "total_cases": 92784.0, + "new_cases": 946.0, + "new_cases_smoothed": 1046.0, + "total_deaths": 109.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 32204.814, + "new_cases_per_million": 328.351, + "new_cases_smoothed_per_million": 363.061, + "total_deaths_per_million": 37.833, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 3777.0, + "total_tests": 345691.0, + "total_tests_per_thousand": 119.987, + "new_tests_per_thousand": 1.311, + "new_tests_smoothed": 4000.0, + "new_tests_smoothed_per_thousand": 1.388, + "tests_per_case": 3.824, + "positive_rate": 0.262, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-28", + "total_cases": 93663.0, + "new_cases": 879.0, + "new_cases_smoothed": 1025.0, + "total_deaths": 110.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 32509.91, + "new_cases_per_million": 305.096, + "new_cases_smoothed_per_million": 355.772, + "total_deaths_per_million": 38.18, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 3462.0, + "total_tests": 349153.0, + "total_tests_per_thousand": 121.189, + "new_tests_per_thousand": 1.202, + "new_tests_smoothed": 4052.0, + "new_tests_smoothed_per_thousand": 1.406, + "tests_per_case": 3.9530000000000003, + "positive_rate": 0.253, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-29", + "total_cases": 94413.0, + "new_cases": 750.0, + "new_cases_smoothed": 1006.286, + "total_deaths": 110.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 32770.23, + "new_cases_per_million": 260.321, + "new_cases_smoothed_per_million": 349.276, + "total_deaths_per_million": 38.18, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 3506.0, + "total_tests": 352659.0, + "total_tests_per_thousand": 122.406, + "new_tests_per_thousand": 1.217, + "new_tests_smoothed": 4013.0, + "new_tests_smoothed_per_thousand": 1.393, + "tests_per_case": 3.988, + "positive_rate": 0.251, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-30", + "total_cases": 95106.0, + "new_cases": 693.0, + "new_cases_smoothed": 957.571, + "total_deaths": 113.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 33010.767, + "new_cases_per_million": 240.536, + "new_cases_smoothed_per_million": 332.368, + "total_deaths_per_million": 39.222, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.694, + "new_tests": 4173.0, + "total_tests": 356832.0, + "total_tests_per_thousand": 123.854, + "new_tests_per_thousand": 1.448, + "new_tests_smoothed": 3984.0, + "new_tests_smoothed_per_thousand": 1.383, + "tests_per_case": 4.1610000000000005, + "positive_rate": 0.24, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-01", + "total_cases": 96088.0, + "new_cases": 982.0, + "new_cases_smoothed": 929.857, + "total_deaths": 113.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 33351.614, + "new_cases_per_million": 340.847, + "new_cases_smoothed_per_million": 322.748, + "total_deaths_per_million": 39.222, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.694, + "new_tests": 3670.0, + "total_tests": 360502.0, + "total_tests_per_thousand": 125.128, + "new_tests_per_thousand": 1.274, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 1.355, + "tests_per_case": 4.198, + "positive_rate": 0.23800000000000002, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-02", + "total_cases": 97003.0, + "new_cases": 915.0, + "new_cases_smoothed": 889.286, + "total_deaths": 115.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 33669.205, + "new_cases_per_million": 317.591, + "new_cases_smoothed_per_million": 308.666, + "total_deaths_per_million": 39.916, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 5593.0, + "total_tests": 366095.0, + "total_tests_per_thousand": 127.07, + "new_tests_per_thousand": 1.941, + "new_tests_smoothed": 4086.0, + "new_tests_smoothed_per_thousand": 1.418, + "tests_per_case": 4.595, + "positive_rate": 0.218, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-03", + "total_cases": 97897.0, + "new_cases": 894.0, + "new_cases_smoothed": 865.571, + "total_deaths": 118.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 33979.508, + "new_cases_per_million": 310.302, + "new_cases_smoothed_per_million": 300.435, + "total_deaths_per_million": 40.957, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 5910.0, + "total_tests": 372005.0, + "total_tests_per_thousand": 129.121, + "new_tests_per_thousand": 2.051, + "new_tests_smoothed": 4299.0, + "new_tests_smoothed_per_thousand": 1.492, + "tests_per_case": 4.967, + "positive_rate": 0.201, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-04", + "total_cases": 98653.0, + "new_cases": 756.0, + "new_cases_smoothed": 838.429, + "total_deaths": 121.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 34241.911, + "new_cases_per_million": 262.403, + "new_cases_smoothed_per_million": 291.014, + "total_deaths_per_million": 41.998, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 4876.0, + "total_tests": 376881.0, + "total_tests_per_thousand": 130.813, + "new_tests_per_thousand": 1.692, + "new_tests_smoothed": 4456.0, + "new_tests_smoothed_per_thousand": 1.547, + "tests_per_case": 5.315, + "positive_rate": 0.188, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-05", + "total_cases": 99183.0, + "new_cases": 530.0, + "new_cases_smoothed": 788.571, + "total_deaths": 123.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 34425.871, + "new_cases_per_million": 183.96, + "new_cases_smoothed_per_million": 273.709, + "total_deaths_per_million": 42.693, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.645, + "new_tests": 4553.0, + "total_tests": 381434.0, + "total_tests_per_thousand": 132.394, + "new_tests_per_thousand": 1.58, + "new_tests_smoothed": 4612.0, + "new_tests_smoothed_per_thousand": 1.601, + "tests_per_case": 5.849, + "positive_rate": 0.171, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-06", + "total_cases": 99799.0, + "new_cases": 616.0, + "new_cases_smoothed": 769.429, + "total_deaths": 128.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 34639.681, + "new_cases_per_million": 213.81, + "new_cases_smoothed_per_million": 267.064, + "total_deaths_per_million": 44.428, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 4677.0, + "total_tests": 386111.0, + "total_tests_per_thousand": 134.017, + "new_tests_per_thousand": 1.623, + "new_tests_smoothed": 4779.0, + "new_tests_smoothed_per_thousand": 1.659, + "tests_per_case": 6.211, + "positive_rate": 0.161, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-07", + "total_cases": 100345.0, + "new_cases": 546.0, + "new_cases_smoothed": 748.429, + "total_deaths": 133.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 34829.195, + "new_cases_per_million": 189.514, + "new_cases_smoothed_per_million": 259.775, + "total_deaths_per_million": 46.164, + "new_deaths_per_million": 1.735, + "new_deaths_smoothed_per_million": 0.992, + "new_tests": 4886.0, + "total_tests": 390997.0, + "total_tests_per_thousand": 135.713, + "new_tests_per_thousand": 1.696, + "new_tests_smoothed": 4881.0, + "new_tests_smoothed_per_thousand": 1.694, + "tests_per_case": 6.522, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-08", + "total_cases": 100945.0, + "new_cases": 600.0, + "new_cases_smoothed": 693.857, + "total_deaths": 134.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 35037.451, + "new_cases_per_million": 208.257, + "new_cases_smoothed_per_million": 240.834, + "total_deaths_per_million": 46.511, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 1.041, + "new_tests": 5202.0, + "total_tests": 396199.0, + "total_tests_per_thousand": 137.518, + "new_tests_per_thousand": 1.806, + "new_tests_smoothed": 5100.0, + "new_tests_smoothed_per_thousand": 1.77, + "tests_per_case": 7.35, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 101553.0, + "new_cases": 608.0, + "new_cases_smoothed": 650.0, + "total_deaths": 138.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 35248.485, + "new_cases_per_million": 211.033, + "new_cases_smoothed_per_million": 225.611, + "total_deaths_per_million": 47.899, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.14, + "new_tests": 4568.0, + "total_tests": 400767.0, + "total_tests_per_thousand": 139.104, + "new_tests_per_thousand": 1.586, + "new_tests_smoothed": 4953.0, + "new_tests_smoothed_per_thousand": 1.719, + "tests_per_case": 7.62, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 102110.0, + "new_cases": 557.0, + "new_cases_smoothed": 601.857, + "total_deaths": 142.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 35441.817, + "new_cases_per_million": 193.332, + "new_cases_smoothed_per_million": 208.901, + "total_deaths_per_million": 49.287, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.19, + "new_tests": 4101.0, + "total_tests": 404868.0, + "total_tests_per_thousand": 140.527, + "new_tests_per_thousand": 1.423, + "new_tests_smoothed": 4695.0, + "new_tests_smoothed_per_thousand": 1.63, + "tests_per_case": 7.801, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 102630.0, + "new_cases": 520.0, + "new_cases_smoothed": 568.143, + "total_deaths": 146.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 35622.306, + "new_cases_per_million": 180.489, + "new_cases_smoothed_per_million": 197.199, + "total_deaths_per_million": 50.676, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 1.24, + "new_tests": 4331.0, + "total_tests": 409199.0, + "total_tests_per_thousand": 142.031, + "new_tests_per_thousand": 1.503, + "new_tests_smoothed": 4617.0, + "new_tests_smoothed_per_thousand": 1.603, + "tests_per_case": 8.126, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 103128.0, + "new_cases": 498.0, + "new_cases_smoothed": 563.571, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 35795.159, + "new_cases_per_million": 172.853, + "new_cases_smoothed_per_million": 195.613, + "total_deaths_per_million": 50.676, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.14, + "new_tests": 3483.0, + "total_tests": 412682.0, + "total_tests_per_thousand": 143.24, + "new_tests_per_thousand": 1.209, + "new_tests_smoothed": 4464.0, + "new_tests_smoothed_per_thousand": 1.549, + "tests_per_case": 7.921, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 103598.0, + "new_cases": 470.0, + "new_cases_smoothed": 542.714, + "total_deaths": 147.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 35958.293, + "new_cases_per_million": 163.134, + "new_cases_smoothed_per_million": 188.373, + "total_deaths_per_million": 51.023, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.942, + "new_tests_smoothed": 4365.0, + "new_tests_smoothed_per_thousand": 1.515, + "tests_per_case": 8.043, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 104016.0, + "new_cases": 418.0, + "new_cases_smoothed": 524.429, + "total_deaths": 149.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 36103.379, + "new_cases_per_million": 145.085, + "new_cases_smoothed_per_million": 182.026, + "total_deaths_per_million": 51.717, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.793, + "total_tests": 420649.0, + "total_tests_per_thousand": 146.005, + "new_tests_smoothed": 4236.0, + "new_tests_smoothed_per_thousand": 1.47, + "tests_per_case": 8.077, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 104533.0, + "new_cases": 517.0, + "new_cases_smoothed": 512.571, + "total_deaths": 150.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 36282.826, + "new_cases_per_million": 179.448, + "new_cases_smoothed_per_million": 177.911, + "total_deaths_per_million": 52.064, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.793, + "new_tests": 4209.0, + "total_tests": 424858.0, + "total_tests_per_thousand": 147.466, + "new_tests_per_thousand": 1.461, + "new_tests_smoothed": 4094.0, + "new_tests_smoothed_per_thousand": 1.421, + "tests_per_case": 7.987, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 104983.0, + "new_cases": 450.0, + "new_cases_smoothed": 490.0, + "total_deaths": 151.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 36439.019, + "new_cases_per_million": 156.193, + "new_cases_smoothed_per_million": 170.076, + "total_deaths_per_million": 52.411, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.645, + "new_tests": 5803.0, + "total_tests": 430661.0, + "total_tests_per_thousand": 149.48, + "new_tests_per_thousand": 2.014, + "new_tests_smoothed": 4271.0, + "new_tests_smoothed_per_thousand": 1.482, + "tests_per_case": 8.716000000000001, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 105447.0, + "new_cases": 464.0, + "new_cases_smoothed": 476.714, + "total_deaths": 152.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 36600.071, + "new_cases_per_million": 161.052, + "new_cases_smoothed_per_million": 165.465, + "total_deaths_per_million": 52.758, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 4923.0, + "total_tests": 435584.0, + "total_tests_per_thousand": 151.189, + "new_tests_per_thousand": 1.709, + "new_tests_smoothed": 4388.0, + "new_tests_smoothed_per_thousand": 1.523, + "tests_per_case": 9.205, + "positive_rate": 0.109, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 105898.0, + "new_cases": 451.0, + "new_cases_smoothed": 466.857, + "total_deaths": 153.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 36756.61, + "new_cases_per_million": 156.54, + "new_cases_smoothed_per_million": 162.044, + "total_deaths_per_million": 53.105, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 3406.0, + "total_tests": 438990.0, + "total_tests_per_thousand": 152.371, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 4256.0, + "new_tests_smoothed_per_thousand": 1.477, + "tests_per_case": 9.116, + "positive_rate": 0.11, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 106308.0, + "new_cases": 410.0, + "new_cases_smoothed": 454.286, + "total_deaths": 154.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 36898.919, + "new_cases_per_million": 142.309, + "new_cases_smoothed_per_million": 157.68, + "total_deaths_per_million": 53.453, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 2710.0, + "total_tests": 441700.0, + "total_tests_per_thousand": 153.312, + "new_tests_per_thousand": 0.941, + "new_tests_smoothed": 4145.0, + "new_tests_smoothed_per_thousand": 1.439, + "tests_per_case": 9.124, + "positive_rate": 0.11, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 106648.0, + "new_cases": 340.0, + "new_cases_smoothed": 435.714, + "total_deaths": 157.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 37016.931, + "new_cases_per_million": 118.012, + "new_cases_smoothed_per_million": 151.234, + "total_deaths_per_million": 54.494, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 4336.0, + "total_tests": 446036.0, + "total_tests_per_thousand": 154.817, + "new_tests_per_thousand": 1.505, + "new_tests_smoothed": 4196.0, + "new_tests_smoothed_per_thousand": 1.456, + "tests_per_case": 9.63, + "positive_rate": 0.10400000000000001, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 107037.0, + "new_cases": 389.0, + "new_cases_smoothed": 431.571, + "total_deaths": 159.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 37151.951, + "new_cases_per_million": 135.02, + "new_cases_smoothed_per_million": 149.796, + "total_deaths_per_million": 55.188, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 5132.0, + "total_tests": 451168.0, + "total_tests_per_thousand": 156.598, + "new_tests_per_thousand": 1.781, + "new_tests_smoothed": 4360.0, + "new_tests_smoothed_per_thousand": 1.513, + "tests_per_case": 10.103, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 107430.0, + "new_cases": 393.0, + "new_cases_smoothed": 413.857, + "total_deaths": 160.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 37288.359, + "new_cases_per_million": 136.408, + "new_cases_smoothed_per_million": 143.648, + "total_deaths_per_million": 55.535, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 4630.0, + "total_tests": 455798.0, + "total_tests_per_thousand": 158.205, + "new_tests_per_thousand": 1.607, + "new_tests_smoothed": 4420.0, + "new_tests_smoothed_per_thousand": 1.534, + "tests_per_case": 10.68, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 107871.0, + "new_cases": 441.0, + "new_cases_smoothed": 412.571, + "total_deaths": 163.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 37441.428, + "new_cases_per_million": 153.069, + "new_cases_smoothed_per_million": 143.201, + "total_deaths_per_million": 56.576, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 3525.0, + "total_tests": 459323.0, + "total_tests_per_thousand": 159.428, + "new_tests_per_thousand": 1.224, + "new_tests_smoothed": 4095.0, + "new_tests_smoothed_per_thousand": 1.421, + "tests_per_case": 9.926, + "positive_rate": 0.10099999999999999, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 108244.0, + "new_cases": 373.0, + "new_cases_smoothed": 399.571, + "total_deaths": 164.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 37570.894, + "new_cases_per_million": 129.466, + "new_cases_smoothed_per_million": 138.689, + "total_deaths_per_million": 56.923, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 5351.0, + "total_tests": 464674.0, + "total_tests_per_thousand": 161.286, + "new_tests_per_thousand": 1.857, + "new_tests_smoothed": 4156.0, + "new_tests_smoothed_per_thousand": 1.443, + "tests_per_case": 10.401, + "positive_rate": 0.096, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 108638.0, + "new_cases": 394.0, + "new_cases_smoothed": 391.429, + "total_deaths": 164.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 37707.649, + "new_cases_per_million": 136.755, + "new_cases_smoothed_per_million": 135.863, + "total_deaths_per_million": 56.923, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 4326.0, + "total_tests": 469000.0, + "total_tests_per_thousand": 162.787, + "new_tests_per_thousand": 1.502, + "new_tests_smoothed": 4287.0, + "new_tests_smoothed_per_thousand": 1.488, + "tests_per_case": 10.952, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 109036.0, + "new_cases": 398.0, + "new_cases_smoothed": 389.714, + "total_deaths": 164.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 37845.793, + "new_cases_per_million": 138.144, + "new_cases_smoothed_per_million": 135.268, + "total_deaths_per_million": 56.923, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 3442.0, + "total_tests": 472442.0, + "total_tests_per_thousand": 163.982, + "new_tests_per_thousand": 1.195, + "new_tests_smoothed": 4392.0, + "new_tests_smoothed_per_thousand": 1.524, + "tests_per_case": 11.27, + "positive_rate": 0.08900000000000001, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 109305.0, + "new_cases": 269.0, + "new_cases_smoothed": 379.571, + "total_deaths": 165.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 37939.161, + "new_cases_per_million": 93.368, + "new_cases_smoothed_per_million": 131.747, + "total_deaths_per_million": 57.271, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 4752.0, + "total_tests": 477194.0, + "total_tests_per_thousand": 165.631, + "new_tests_per_thousand": 1.649, + "new_tests_smoothed": 4451.0, + "new_tests_smoothed_per_thousand": 1.545, + "tests_per_case": 11.725999999999999, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 109597.0, + "new_cases": 292.0, + "new_cases_smoothed": 365.714, + "total_deaths": 165.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 38040.513, + "new_cases_per_million": 101.352, + "new_cases_smoothed_per_million": 126.937, + "total_deaths_per_million": 57.271, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 4736.0, + "total_tests": 481930.0, + "total_tests_per_thousand": 167.275, + "new_tests_per_thousand": 1.644, + "new_tests_smoothed": 4395.0, + "new_tests_smoothed_per_thousand": 1.525, + "tests_per_case": 12.017999999999999, + "positive_rate": 0.083, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-29", + "total_cases": 109880.0, + "new_cases": 283.0, + "new_cases_smoothed": 350.0, + "total_deaths": 167.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 38138.741, + "new_cases_per_million": 98.228, + "new_cases_smoothed_per_million": 121.483, + "total_deaths_per_million": 57.965, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 5505.0, + "total_tests": 487435.0, + "total_tests_per_thousand": 169.186, + "new_tests_per_thousand": 1.911, + "new_tests_smoothed": 4520.0, + "new_tests_smoothed_per_thousand": 1.569, + "tests_per_case": 12.914000000000001, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-30", + "total_cases": 110153.0, + "new_cases": 273.0, + "new_cases_smoothed": 326.0, + "total_deaths": 169.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 38233.497, + "new_cases_per_million": 94.757, + "new_cases_smoothed_per_million": 113.153, + "total_deaths_per_million": 58.659, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 5134.0, + "total_tests": 492569.0, + "total_tests_per_thousand": 170.968, + "new_tests_per_thousand": 1.782, + "new_tests_smoothed": 4749.0, + "new_tests_smoothed_per_thousand": 1.648, + "tests_per_case": 14.567, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-07-31", + "total_cases": 110460.0, + "new_cases": 307.0, + "new_cases_smoothed": 316.571, + "total_deaths": 171.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 38340.055, + "new_cases_per_million": 106.558, + "new_cases_smoothed_per_million": 109.88, + "total_deaths_per_million": 59.353, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 2808.0, + "total_tests": 495377.0, + "total_tests_per_thousand": 171.943, + "new_tests_per_thousand": 0.975, + "new_tests_smoothed": 4386.0, + "new_tests_smoothed_per_thousand": 1.522, + "tests_per_case": 13.855, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-01", + "total_cases": 110695.0, + "new_cases": 235.0, + "new_cases_smoothed": 293.857, + "total_deaths": 174.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38421.623, + "new_cases_per_million": 81.567, + "new_cases_smoothed_per_million": 101.996, + "total_deaths_per_million": 60.394, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 3289.0, + "total_tests": 498666.0, + "total_tests_per_thousand": 173.084, + "new_tests_per_thousand": 1.142, + "new_tests_smoothed": 4238.0, + "new_tests_smoothed_per_thousand": 1.471, + "tests_per_case": 14.422, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-02", + "total_cases": 110911.0, + "new_cases": 216.0, + "new_cases_smoothed": 267.857, + "total_deaths": 174.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38496.595, + "new_cases_per_million": 74.972, + "new_cases_smoothed_per_million": 92.972, + "total_deaths_per_million": 60.394, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 1870.0, + "total_tests": 500536.0, + "total_tests_per_thousand": 173.733, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 4013.0, + "new_tests_smoothed_per_thousand": 1.393, + "tests_per_case": 14.982000000000001, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-03", + "total_cases": 111107.0, + "new_cases": 196.0, + "new_cases_smoothed": 257.429, + "total_deaths": 177.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 38564.626, + "new_cases_per_million": 68.031, + "new_cases_smoothed_per_million": 89.352, + "total_deaths_per_million": 61.436, + "new_deaths_per_million": 1.041, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 2256.0, + "total_tests": 502792.0, + "total_tests_per_thousand": 174.516, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 3657.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 14.206, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-04", + "total_cases": 111322.0, + "new_cases": 215.0, + "new_cases_smoothed": 246.429, + "total_deaths": 177.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 38639.251, + "new_cases_per_million": 74.625, + "new_cases_smoothed_per_million": 85.534, + "total_deaths_per_million": 61.436, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 2356.0, + "total_tests": 505148.0, + "total_tests_per_thousand": 175.334, + "new_tests_per_thousand": 0.818, + "new_tests_smoothed": 3317.0, + "new_tests_smoothed_per_thousand": 1.151, + "tests_per_case": 13.46, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-05", + "total_cases": 111538.0, + "new_cases": 216.0, + "new_cases_smoothed": 236.857, + "total_deaths": 177.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38714.223, + "new_cases_per_million": 74.972, + "new_cases_smoothed_per_million": 82.212, + "total_deaths_per_million": 61.436, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 2931.0, + "total_tests": 508079.0, + "total_tests_per_thousand": 176.351, + "new_tests_per_thousand": 1.017, + "new_tests_smoothed": 2949.0, + "new_tests_smoothed_per_thousand": 1.024, + "tests_per_case": 12.450999999999999, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-06", + "total_cases": 111805.0, + "new_cases": 267.0, + "new_cases_smoothed": 236.0, + "total_deaths": 178.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 38806.897, + "new_cases_per_million": 92.674, + "new_cases_smoothed_per_million": 81.914, + "total_deaths_per_million": 61.783, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 2921.0, + "total_tests": 511000.0, + "total_tests_per_thousand": 177.365, + "new_tests_per_thousand": 1.014, + "new_tests_smoothed": 2633.0, + "new_tests_smoothed_per_thousand": 0.914, + "tests_per_case": 11.157, + "positive_rate": 0.09, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-07", + "total_cases": 112092.0, + "new_cases": 287.0, + "new_cases_smoothed": 233.143, + "total_deaths": 178.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 38906.514, + "new_cases_per_million": 99.616, + "new_cases_smoothed_per_million": 80.923, + "total_deaths_per_million": 61.783, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 2930.0, + "total_tests": 513930.0, + "total_tests_per_thousand": 178.382, + "new_tests_per_thousand": 1.017, + "new_tests_smoothed": 2650.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 11.366, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-08", + "total_cases": 112383.0, + "new_cases": 291.0, + "new_cases_smoothed": 241.143, + "total_deaths": 180.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 39007.518, + "new_cases_per_million": 101.004, + "new_cases_smoothed_per_million": 83.699, + "total_deaths_per_million": 62.477, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 2895.0, + "total_tests": 516825.0, + "total_tests_per_thousand": 179.387, + "new_tests_per_thousand": 1.005, + "new_tests_smoothed": 2594.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 10.757, + "positive_rate": 0.09300000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-09", + "total_cases": 112650.0, + "new_cases": 267.0, + "new_cases_smoothed": 248.429, + "total_deaths": 182.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 39100.192, + "new_cases_per_million": 92.674, + "new_cases_smoothed_per_million": 86.228, + "total_deaths_per_million": 63.171, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 3535.0, + "total_tests": 520360.0, + "total_tests_per_thousand": 180.614, + "new_tests_per_thousand": 1.227, + "new_tests_smoothed": 2832.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 11.4, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-10", + "total_cases": 112947.0, + "new_cases": 297.0, + "new_cases_smoothed": 262.857, + "total_deaths": 184.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 39203.279, + "new_cases_per_million": 103.087, + "new_cases_smoothed_per_million": 91.236, + "total_deaths_per_million": 63.865, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 4106.0, + "total_tests": 524466.0, + "total_tests_per_thousand": 182.039, + "new_tests_per_thousand": 1.425, + "new_tests_smoothed": 3096.0, + "new_tests_smoothed_per_thousand": 1.075, + "tests_per_case": 11.777999999999999, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-11", + "total_cases": 113262.0, + "new_cases": 315.0, + "new_cases_smoothed": 277.143, + "total_deaths": 188.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 39312.614, + "new_cases_per_million": 109.335, + "new_cases_smoothed_per_million": 96.195, + "total_deaths_per_million": 65.254, + "new_deaths_per_million": 1.388, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 4823.0, + "total_tests": 529289.0, + "total_tests_per_thousand": 183.713, + "new_tests_per_thousand": 1.674, + "new_tests_smoothed": 3449.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 12.445, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-12", + "total_cases": 113646.0, + "new_cases": 384.0, + "new_cases_smoothed": 301.143, + "total_deaths": 188.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 39445.898, + "new_cases_per_million": 133.284, + "new_cases_smoothed_per_million": 104.525, + "total_deaths_per_million": 65.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.545, + "new_tests": 4706.0, + "total_tests": 533995.0, + "total_tests_per_thousand": 185.347, + "new_tests_per_thousand": 1.633, + "new_tests_smoothed": 3702.0, + "new_tests_smoothed_per_thousand": 1.285, + "tests_per_case": 12.293, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-13", + "total_cases": 113938.0, + "new_cases": 292.0, + "new_cases_smoothed": 304.714, + "total_deaths": 190.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 39547.25, + "new_cases_per_million": 101.352, + "new_cases_smoothed_per_million": 105.765, + "total_deaths_per_million": 65.948, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 4607.0, + "total_tests": 538602.0, + "total_tests_per_thousand": 186.946, + "new_tests_per_thousand": 1.599, + "new_tests_smoothed": 3943.0, + "new_tests_smoothed_per_thousand": 1.369, + "tests_per_case": 12.94, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-14", + "total_cases": 114281.0, + "new_cases": 343.0, + "new_cases_smoothed": 312.714, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 39666.303, + "new_cases_per_million": 119.053, + "new_cases_smoothed_per_million": 108.541, + "total_deaths_per_million": 65.948, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 3916.0, + "total_tests": 542518.0, + "total_tests_per_thousand": 188.305, + "new_tests_per_thousand": 1.359, + "new_tests_smoothed": 4084.0, + "new_tests_smoothed_per_thousand": 1.418, + "tests_per_case": 13.06, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-15", + "total_cases": 114532.0, + "new_cases": 251.0, + "new_cases_smoothed": 307.0, + "total_deaths": 190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 39753.424, + "new_cases_per_million": 87.121, + "new_cases_smoothed_per_million": 106.558, + "total_deaths_per_million": 65.948, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 3767.0, + "total_tests": 546285.0, + "total_tests_per_thousand": 189.613, + "new_tests_per_thousand": 1.308, + "new_tests_smoothed": 4209.0, + "new_tests_smoothed_per_thousand": 1.461, + "tests_per_case": 13.71, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-16", + "total_cases": 114809.0, + "new_cases": 277.0, + "new_cases_smoothed": 308.429, + "total_deaths": 192.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 39849.569, + "new_cases_per_million": 96.145, + "new_cases_smoothed_per_million": 107.054, + "total_deaths_per_million": 66.642, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.496, + "new_tests": 4988.0, + "total_tests": 551273.0, + "total_tests_per_thousand": 191.344, + "new_tests_per_thousand": 1.731, + "new_tests_smoothed": 4416.0, + "new_tests_smoothed_per_thousand": 1.533, + "tests_per_case": 14.318, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-17", + "total_cases": 115080.0, + "new_cases": 271.0, + "new_cases_smoothed": 304.714, + "total_deaths": 193.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 39943.632, + "new_cases_per_million": 94.063, + "new_cases_smoothed_per_million": 105.765, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 4697.0, + "total_tests": 555970.0, + "total_tests_per_thousand": 192.974, + "new_tests_per_thousand": 1.63, + "new_tests_smoothed": 4501.0, + "new_tests_smoothed_per_thousand": 1.562, + "tests_per_case": 14.770999999999999, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-18", + "total_cases": 115368.0, + "new_cases": 288.0, + "new_cases_smoothed": 300.857, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 40043.595, + "new_cases_per_million": 99.963, + "new_cases_smoothed_per_million": 104.426, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 5020.0, + "total_tests": 560990.0, + "total_tests_per_thousand": 194.717, + "new_tests_per_thousand": 1.742, + "new_tests_smoothed": 4529.0, + "new_tests_smoothed_per_thousand": 1.572, + "tests_per_case": 15.054, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-19", + "total_cases": 115661.0, + "new_cases": 293.0, + "new_cases_smoothed": 287.857, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 40145.294, + "new_cases_per_million": 101.699, + "new_cases_smoothed_per_million": 99.914, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 5023.0, + "total_tests": 566013.0, + "total_tests_per_thousand": 196.46, + "new_tests_per_thousand": 1.743, + "new_tests_smoothed": 4574.0, + "new_tests_smoothed_per_thousand": 1.588, + "tests_per_case": 15.89, + "positive_rate": 0.063, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 115956.0, + "new_cases": 295.0, + "new_cases_smoothed": 288.286, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40247.687, + "new_cases_per_million": 102.393, + "new_cases_smoothed_per_million": 100.062, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 6260.0, + "total_tests": 572273.0, + "total_tests_per_thousand": 198.633, + "new_tests_per_thousand": 2.173, + "new_tests_smoothed": 4810.0, + "new_tests_smoothed_per_thousand": 1.67, + "tests_per_case": 16.685, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 116224.0, + "new_cases": 268.0, + "new_cases_smoothed": 277.571, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40340.708, + "new_cases_per_million": 93.021, + "new_cases_smoothed_per_million": 96.344, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 4849.0, + "total_tests": 577122.0, + "total_tests_per_thousand": 200.316, + "new_tests_per_thousand": 1.683, + "new_tests_smoothed": 4943.0, + "new_tests_smoothed_per_thousand": 1.716, + "tests_per_case": 17.808, + "positive_rate": 0.055999999999999994, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 116481.0, + "new_cases": 257.0, + "new_cases_smoothed": 278.429, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40429.911, + "new_cases_per_million": 89.203, + "new_cases_smoothed_per_million": 96.641, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 7001.0, + "total_tests": 584123.0, + "total_tests_per_thousand": 202.746, + "new_tests_per_thousand": 2.43, + "new_tests_smoothed": 5405.0, + "new_tests_smoothed_per_thousand": 1.876, + "tests_per_case": 19.413, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 116765.0, + "new_cases": 284.0, + "new_cases_smoothed": 279.429, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40528.486, + "new_cases_per_million": 98.575, + "new_cases_smoothed_per_million": 96.988, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5797.0, + "total_tests": 589920.0, + "total_tests_per_thousand": 204.758, + "new_tests_per_thousand": 2.012, + "new_tests_smoothed": 5521.0, + "new_tests_smoothed_per_thousand": 1.916, + "tests_per_case": 19.758, + "positive_rate": 0.051, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 117008.0, + "new_cases": 243.0, + "new_cases_smoothed": 275.429, + "total_deaths": 193.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40612.83, + "new_cases_per_million": 84.344, + "new_cases_smoothed_per_million": 95.6, + "total_deaths_per_million": 66.989, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4295.0, + "total_tests": 594215.0, + "total_tests_per_thousand": 206.249, + "new_tests_per_thousand": 1.491, + "new_tests_smoothed": 5464.0, + "new_tests_smoothed_per_thousand": 1.897, + "tests_per_case": 19.838, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 117266.0, + "new_cases": 258.0, + "new_cases_smoothed": 271.143, + "total_deaths": 194.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40702.38, + "new_cases_per_million": 89.55, + "new_cases_smoothed_per_million": 94.112, + "total_deaths_per_million": 67.336, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "new_tests_smoothed": 5453.0, + "new_tests_smoothed_per_thousand": 1.893, + "tests_per_case": 20.111, + "positive_rate": 0.05, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 117498.0, + "new_cases": 232.0, + "new_cases_smoothed": 262.429, + "total_deaths": 194.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40782.906, + "new_cases_per_million": 80.526, + "new_cases_smoothed_per_million": 91.088, + "total_deaths_per_million": 67.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "total_tests": 604112.0, + "total_tests_per_thousand": 209.684, + "new_tests_smoothed": 5443.0, + "new_tests_smoothed_per_thousand": 1.889, + "tests_per_case": 20.741, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 117742.0, + "new_cases": 244.0, + "new_cases_smoothed": 255.143, + "total_deaths": 194.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40867.597, + "new_cases_per_million": 84.691, + "new_cases_smoothed_per_million": 88.559, + "total_deaths_per_million": 67.336, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 5146.0, + "total_tests": 609258.0, + "total_tests_per_thousand": 211.47, + "new_tests_per_thousand": 1.786, + "new_tests_smoothed": 5284.0, + "new_tests_smoothed_per_thousand": 1.834, + "tests_per_case": 20.71, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-28", + "total_cases": 117988.0, + "new_cases": 246.0, + "new_cases_smoothed": 252.0, + "total_deaths": 195.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 40952.983, + "new_cases_per_million": 85.385, + "new_cases_smoothed_per_million": 87.468, + "total_deaths_per_million": 67.683, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 5096.0, + "total_tests": 614354.0, + "total_tests_per_thousand": 213.239, + "new_tests_per_thousand": 1.769, + "new_tests_smoothed": 5319.0, + "new_tests_smoothed_per_thousand": 1.846, + "tests_per_case": 21.107, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-29", + "total_cases": 118196.0, + "new_cases": 208.0, + "new_cases_smoothed": 245.0, + "total_deaths": 196.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41025.178, + "new_cases_per_million": 72.196, + "new_cases_smoothed_per_million": 85.038, + "total_deaths_per_million": 68.031, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 5774.0, + "total_tests": 620128.0, + "total_tests_per_thousand": 215.243, + "new_tests_per_thousand": 2.004, + "new_tests_smoothed": 5144.0, + "new_tests_smoothed_per_thousand": 1.785, + "tests_per_case": 20.996, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-30", + "total_cases": 118407.0, + "new_cases": 211.0, + "new_cases_smoothed": 234.571, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41098.415, + "new_cases_per_million": 73.237, + "new_cases_smoothed_per_million": 81.418, + "total_deaths_per_million": 68.031, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 4481.0, + "total_tests": 624609.0, + "total_tests_per_thousand": 216.798, + "new_tests_per_thousand": 1.555, + "new_tests_smoothed": 4956.0, + "new_tests_smoothed_per_thousand": 1.72, + "tests_per_case": 21.128, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-31", + "total_cases": 118575.0, + "new_cases": 168.0, + "new_cases_smoothed": 223.857, + "total_deaths": 197.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41156.727, + "new_cases_per_million": 58.312, + "new_cases_smoothed_per_million": 77.7, + "total_deaths_per_million": 68.378, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 5222.0, + "total_tests": 629831.0, + "total_tests_per_thousand": 218.611, + "new_tests_per_thousand": 1.813, + "new_tests_smoothed": 5088.0, + "new_tests_smoothed_per_thousand": 1.766, + "tests_per_case": 22.729, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-09-01", + "total_cases": 118778.0, + "new_cases": 203.0, + "new_cases_smoothed": 216.0, + "total_deaths": 197.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 41227.187, + "new_cases_per_million": 70.46, + "new_cases_smoothed_per_million": 74.972, + "total_deaths_per_million": 68.378, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 4914.0, + "total_tests": 634745.0, + "total_tests_per_thousand": 220.316, + "new_tests_per_thousand": 1.706, + "new_tests_smoothed": 5083.0, + "new_tests_smoothed_per_thousand": 1.764, + "tests_per_case": 23.531999999999996, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-09-02", + "total_cases": 118994.0, + "new_cases": 216.0, + "new_cases_smoothed": 213.714, + "total_deaths": 198.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41302.16, + "new_cases_per_million": 74.972, + "new_cases_smoothed_per_million": 74.179, + "total_deaths_per_million": 68.725, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 4997.0, + "total_tests": 639742.0, + "total_tests_per_thousand": 222.051, + "new_tests_per_thousand": 1.734, + "new_tests_smoothed": 5090.0, + "new_tests_smoothed_per_thousand": 1.767, + "tests_per_case": 23.816999999999997, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 64.81 + }, + { + "date": "2020-09-03", + "total_cases": 119206.0, + "new_cases": 212.0, + "new_cases_smoothed": 209.143, + "total_deaths": 199.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 41375.744, + "new_cases_per_million": 73.584, + "new_cases_smoothed_per_million": 72.592, + "total_deaths_per_million": 69.072, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 5162.0, + "total_tests": 644904.0, + "total_tests_per_thousand": 223.843, + "new_tests_per_thousand": 1.792, + "new_tests_smoothed": 5092.0, + "new_tests_smoothed_per_thousand": 1.767, + "tests_per_case": 24.346999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 119420.0, + "new_cases": 214.0, + "new_cases_smoothed": 204.571, + "total_deaths": 201.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 41450.022, + "new_cases_per_million": 74.278, + "new_cases_smoothed_per_million": 71.006, + "total_deaths_per_million": 69.766, + "new_deaths_per_million": 0.694, + "new_deaths_smoothed_per_million": 0.298 + }, + { + "date": "2020-09-05", + "total_cases": 119637.0, + "new_cases": 217.0, + "new_cases_smoothed": 205.857, + "total_deaths": 201.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 41525.341, + "new_cases_per_million": 75.32, + "new_cases_smoothed_per_million": 71.452, + "total_deaths_per_million": 69.766, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248 + } + ] + }, + "ROU": { + "continent": "Europe", + "location": "Romania", + "population": 19237682.0, + "population_density": 85.129, + "median_age": 43.0, + "aged_65_older": 17.85, + "aged_70_older": 11.69, + "gdp_per_capita": 23313.199, + "extreme_poverty": 5.7, + "cardiovasc_death_rate": 370.946, + "diabetes_prevalence": 9.74, + "female_smokers": 22.9, + "male_smokers": 37.1, + "hospital_beds_per_thousand": 6.892, + "life_expectancy": 76.05, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.052, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-29", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-02", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.156, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-04", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.208, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-06", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.312, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-07", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.364, + "new_cases_per_million": 0.052, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-08", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.676, + "new_cases_per_million": 0.312, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-09", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.78, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-10", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.884, + "new_cases_per_million": 0.104, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-11", + "total_cases": 25.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.3, + "new_cases_per_million": 0.416, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-12", + "total_cases": 45.0, + "new_cases": 20.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.339, + "new_cases_per_million": 1.04, + "new_cases_smoothed_per_million": 0.304, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1921.0, + "total_tests_per_thousand": 0.1, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-13", + "total_cases": 64.0, + "new_cases": 19.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.327, + "new_cases_per_million": 0.988, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 624.0, + "total_tests": 2545.0, + "total_tests_per_thousand": 0.132, + "new_tests_per_thousand": 0.032, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-14", + "total_cases": 89.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.626, + "new_cases_per_million": 1.3, + "new_cases_smoothed_per_million": 0.609, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 384.0, + "total_tests": 2929.0, + "total_tests_per_thousand": 0.152, + "new_tests_per_thousand": 0.02, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-15", + "total_cases": 113.0, + "new_cases": 24.0, + "new_cases_smoothed": 14.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.874, + "new_cases_per_million": 1.248, + "new_cases_smoothed_per_million": 0.743, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 276.0, + "total_tests": 3205.0, + "total_tests_per_thousand": 0.167, + "new_tests_per_thousand": 0.014, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-16", + "total_cases": 139.0, + "new_cases": 26.0, + "new_cases_smoothed": 17.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.225, + "new_cases_per_million": 1.352, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 503.0, + "total_tests": 3708.0, + "total_tests_per_thousand": 0.193, + "new_tests_per_thousand": 0.026, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-17", + "total_cases": 184.0, + "new_cases": 45.0, + "new_cases_smoothed": 23.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.565, + "new_cases_per_million": 2.339, + "new_cases_smoothed_per_million": 1.24, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 442.0, + "total_tests": 4150.0, + "total_tests_per_thousand": 0.216, + "new_tests_per_thousand": 0.023, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-18", + "total_cases": 217.0, + "new_cases": 33.0, + "new_cases_smoothed": 27.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.28, + "new_cases_per_million": 1.715, + "new_cases_smoothed_per_million": 1.426, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 520.0, + "total_tests": 4670.0, + "total_tests_per_thousand": 0.243, + "new_tests_per_thousand": 0.027, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-19", + "total_cases": 260.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.515, + "new_cases_per_million": 2.235, + "new_cases_smoothed_per_million": 1.597, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 303.0, + "total_tests": 4973.0, + "total_tests_per_thousand": 0.259, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 436.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 14.195, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-20", + "total_cases": 277.0, + "new_cases": 17.0, + "new_cases_smoothed": 30.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.399, + "new_cases_per_million": 0.884, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3311.0, + "total_tests": 8284.0, + "total_tests_per_thousand": 0.431, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 26.948, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-21", + "total_cases": 308.0, + "new_cases": 31.0, + "new_cases_smoothed": 31.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.01, + "new_cases_per_million": 1.611, + "new_cases_smoothed_per_million": 1.626, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 631.0, + "total_tests": 8915.0, + "total_tests_per_thousand": 0.463, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 855.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 27.329, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-22", + "total_cases": 367.0, + "new_cases": 59.0, + "new_cases_smoothed": 36.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.077, + "new_cases_per_million": 3.067, + "new_cases_smoothed_per_million": 1.886, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1052.0, + "total_tests": 9967.0, + "total_tests_per_thousand": 0.518, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 966.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 26.622, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-23", + "total_cases": 433.0, + "new_cases": 66.0, + "new_cases_smoothed": 42.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 22.508, + "new_cases_per_million": 3.431, + "new_cases_smoothed_per_million": 2.183, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 1256.0, + "total_tests": 11223.0, + "total_tests_per_thousand": 0.583, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1074.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 25.570999999999998, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-24", + "total_cases": 576.0, + "new_cases": 143.0, + "new_cases_smoothed": 56.0, + "total_deaths": 7.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 29.941, + "new_cases_per_million": 7.433, + "new_cases_smoothed_per_million": 2.911, + "total_deaths_per_million": 0.364, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1401.0, + "total_tests": 12624.0, + "total_tests_per_thousand": 0.656, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 1211.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 21.625, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-25", + "total_cases": 762.0, + "new_cases": 186.0, + "new_cases_smoothed": 77.857, + "total_deaths": 11.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 39.61, + "new_cases_per_million": 9.669, + "new_cases_smoothed_per_million": 4.047, + "total_deaths_per_million": 0.572, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1842.0, + "total_tests": 14466.0, + "total_tests_per_thousand": 0.752, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 1399.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 17.969, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-26", + "total_cases": 906.0, + "new_cases": 144.0, + "new_cases_smoothed": 92.286, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 47.095, + "new_cases_per_million": 7.485, + "new_cases_smoothed_per_million": 4.797, + "total_deaths_per_million": 0.676, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 1532.0, + "total_tests": 15998.0, + "total_tests_per_thousand": 0.832, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1575.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 17.067, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-27", + "total_cases": 1029.0, + "new_cases": 123.0, + "new_cases_smoothed": 107.429, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 53.489, + "new_cases_per_million": 6.394, + "new_cases_smoothed_per_million": 5.584, + "total_deaths_per_million": 0.884, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 1455.0, + "total_tests": 17453.0, + "total_tests_per_thousand": 0.907, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1310.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 12.194, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-28", + "total_cases": 1292.0, + "new_cases": 263.0, + "new_cases_smoothed": 140.571, + "total_deaths": 24.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 67.16, + "new_cases_per_million": 13.671, + "new_cases_smoothed_per_million": 7.307, + "total_deaths_per_million": 1.248, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.178, + "new_tests": 2210.0, + "total_tests": 19663.0, + "total_tests_per_thousand": 1.022, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 1535.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 10.92, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-29", + "total_cases": 1452.0, + "new_cases": 160.0, + "new_cases_smoothed": 155.0, + "total_deaths": 29.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 75.477, + "new_cases_per_million": 8.317, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 1.507, + "new_deaths_per_million": 0.26, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 1797.0, + "total_tests": 21460.0, + "total_tests_per_thousand": 1.116, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1642.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 10.594000000000001, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-30", + "total_cases": 1760.0, + "new_cases": 308.0, + "new_cases_smoothed": 189.571, + "total_deaths": 40.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 91.487, + "new_cases_per_million": 16.01, + "new_cases_smoothed_per_million": 9.854, + "total_deaths_per_million": 2.079, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.282, + "new_tests": 1643.0, + "total_tests": 23103.0, + "total_tests_per_thousand": 1.201, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 1697.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 8.952, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-03-31", + "total_cases": 1952.0, + "new_cases": 192.0, + "new_cases_smoothed": 196.571, + "total_deaths": 44.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 101.468, + "new_cases_per_million": 9.98, + "new_cases_smoothed_per_million": 10.218, + "total_deaths_per_million": 2.287, + "new_deaths_per_million": 0.208, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1551.0, + "total_tests": 24654.0, + "total_tests_per_thousand": 1.282, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 1719.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 8.745, + "positive_rate": 0.114, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-01", + "total_cases": 2245.0, + "new_cases": 293.0, + "new_cases_smoothed": 211.857, + "total_deaths": 69.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 116.698, + "new_cases_per_million": 15.231, + "new_cases_smoothed_per_million": 11.013, + "total_deaths_per_million": 3.587, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 0.431, + "new_tests": 1955.0, + "total_tests": 26609.0, + "total_tests_per_thousand": 1.383, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1735.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 8.189, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-02", + "total_cases": 2460.0, + "new_cases": 215.0, + "new_cases_smoothed": 222.0, + "total_deaths": 85.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 127.874, + "new_cases_per_million": 11.176, + "new_cases_smoothed_per_million": 11.54, + "total_deaths_per_million": 4.418, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 0.535, + "new_tests": 1874.0, + "total_tests": 28483.0, + "total_tests_per_thousand": 1.481, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 1784.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 8.036, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-03", + "total_cases": 2738.0, + "new_cases": 278.0, + "new_cases_smoothed": 244.143, + "total_deaths": 94.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 142.325, + "new_cases_per_million": 14.451, + "new_cases_smoothed_per_million": 12.691, + "total_deaths_per_million": 4.886, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.572, + "new_tests": 3174.0, + "total_tests": 31657.0, + "total_tests_per_thousand": 1.646, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 2029.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 8.311, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-04", + "total_cases": 3183.0, + "new_cases": 445.0, + "new_cases_smoothed": 270.143, + "total_deaths": 133.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 165.457, + "new_cases_per_million": 23.132, + "new_cases_smoothed_per_million": 14.042, + "total_deaths_per_million": 6.914, + "new_deaths_per_million": 2.027, + "new_deaths_smoothed_per_million": 0.809, + "new_tests": 4435.0, + "total_tests": 36092.0, + "total_tests_per_thousand": 1.876, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 2347.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 8.687999999999999, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-05", + "total_cases": 3613.0, + "new_cases": 430.0, + "new_cases_smoothed": 308.714, + "total_deaths": 141.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 187.808, + "new_cases_per_million": 22.352, + "new_cases_smoothed_per_million": 16.047, + "total_deaths_per_million": 7.329, + "new_deaths_per_million": 0.416, + "new_deaths_smoothed_per_million": 0.832, + "new_tests": 2531.0, + "total_tests": 38623.0, + "total_tests_per_thousand": 2.008, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 2452.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 7.943, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-06", + "total_cases": 3864.0, + "new_cases": 251.0, + "new_cases_smoothed": 300.571, + "total_deaths": 148.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 200.856, + "new_cases_per_million": 13.047, + "new_cases_smoothed_per_million": 15.624, + "total_deaths_per_million": 7.693, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.802, + "new_tests": 2364.0, + "total_tests": 40987.0, + "total_tests_per_thousand": 2.131, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 2555.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 8.5, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-07", + "total_cases": 4057.0, + "new_cases": 193.0, + "new_cases_smoothed": 300.714, + "total_deaths": 157.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 210.888, + "new_cases_per_million": 10.032, + "new_cases_smoothed_per_million": 15.632, + "total_deaths_per_million": 8.161, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 2591.0, + "total_tests": 43578.0, + "total_tests_per_thousand": 2.265, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 2703.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 8.988999999999999, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-08", + "total_cases": 4417.0, + "new_cases": 360.0, + "new_cases_smoothed": 310.286, + "total_deaths": 182.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 229.601, + "new_cases_per_million": 18.713, + "new_cases_smoothed_per_million": 16.129, + "total_deaths_per_million": 9.461, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 0.839, + "new_tests": 3629.0, + "total_tests": 47207.0, + "total_tests_per_thousand": 2.454, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 2943.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 9.485, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-09", + "total_cases": 4761.0, + "new_cases": 344.0, + "new_cases_smoothed": 328.714, + "total_deaths": 209.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 247.483, + "new_cases_per_million": 17.882, + "new_cases_smoothed_per_million": 17.087, + "total_deaths_per_million": 10.864, + "new_deaths_per_million": 1.403, + "new_deaths_smoothed_per_million": 0.921, + "new_tests": 4595.0, + "total_tests": 51802.0, + "total_tests_per_thousand": 2.693, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 3331.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 10.133, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-10", + "total_cases": 5202.0, + "new_cases": 441.0, + "new_cases_smoothed": 352.0, + "total_deaths": 229.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 270.407, + "new_cases_per_million": 22.924, + "new_cases_smoothed_per_million": 18.297, + "total_deaths_per_million": 11.904, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.002, + "new_tests": 3628.0, + "total_tests": 55430.0, + "total_tests_per_thousand": 2.881, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 3396.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 9.648, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 5467.0, + "new_cases": 265.0, + "new_cases_smoothed": 326.286, + "total_deaths": 257.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 284.182, + "new_cases_per_million": 13.775, + "new_cases_smoothed_per_million": 16.961, + "total_deaths_per_million": 13.359, + "new_deaths_per_million": 1.455, + "new_deaths_smoothed_per_million": 0.921, + "new_tests": 3842.0, + "total_tests": 59272.0, + "total_tests_per_thousand": 3.081, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 3311.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 10.148, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 5990.0, + "new_cases": 523.0, + "new_cases_smoothed": 339.571, + "total_deaths": 282.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 311.368, + "new_cases_per_million": 27.186, + "new_cases_smoothed_per_million": 17.651, + "total_deaths_per_million": 14.659, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.047, + "new_tests": 3056.0, + "total_tests": 62328.0, + "total_tests_per_thousand": 3.24, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 3386.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 9.971, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 6300.0, + "new_cases": 310.0, + "new_cases_smoothed": 348.0, + "total_deaths": 306.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 327.482, + "new_cases_per_million": 16.114, + "new_cases_smoothed_per_million": 18.089, + "total_deaths_per_million": 15.906, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 1.173, + "new_tests": 4876.0, + "total_tests": 67204.0, + "total_tests_per_thousand": 3.493, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 3745.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 10.761, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 6633.0, + "new_cases": 333.0, + "new_cases_smoothed": 368.0, + "total_deaths": 318.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 344.792, + "new_cases_per_million": 17.31, + "new_cases_smoothed_per_million": 19.129, + "total_deaths_per_million": 16.53, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 2893.0, + "total_tests": 70097.0, + "total_tests_per_thousand": 3.644, + "new_tests_per_thousand": 0.15, + "new_tests_smoothed": 3788.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 10.293, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-15", + "total_cases": 6879.0, + "new_cases": 246.0, + "new_cases_smoothed": 351.714, + "total_deaths": 344.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 357.579, + "new_cases_per_million": 12.787, + "new_cases_smoothed_per_million": 18.283, + "total_deaths_per_million": 17.882, + "new_deaths_per_million": 1.352, + "new_deaths_smoothed_per_million": 1.203, + "new_tests": 4730.0, + "total_tests": 74827.0, + "total_tests_per_thousand": 3.89, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 3946.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 11.219000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-16", + "total_cases": 7216.0, + "new_cases": 337.0, + "new_cases_smoothed": 350.714, + "total_deaths": 372.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 375.097, + "new_cases_per_million": 17.518, + "new_cases_smoothed_per_million": 18.231, + "total_deaths_per_million": 19.337, + "new_deaths_per_million": 1.455, + "new_deaths_smoothed_per_million": 1.21, + "new_tests": 4802.0, + "total_tests": 79629.0, + "total_tests_per_thousand": 4.139, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 3975.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 11.334000000000001, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-17", + "total_cases": 7707.0, + "new_cases": 491.0, + "new_cases_smoothed": 357.857, + "total_deaths": 387.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 400.62, + "new_cases_per_million": 25.523, + "new_cases_smoothed_per_million": 18.602, + "total_deaths_per_million": 20.117, + "new_deaths_per_million": 0.78, + "new_deaths_smoothed_per_million": 1.173, + "new_tests": 6176.0, + "total_tests": 85805.0, + "total_tests_per_thousand": 4.46, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 4339.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 12.125, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-18", + "total_cases": 8067.0, + "new_cases": 360.0, + "new_cases_smoothed": 371.429, + "total_deaths": 400.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 419.333, + "new_cases_per_million": 18.713, + "new_cases_smoothed_per_million": 19.307, + "total_deaths_per_million": 20.793, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 1.062, + "new_tests": 5186.0, + "total_tests": 90991.0, + "total_tests_per_thousand": 4.73, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 4531.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 12.199000000000002, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-19", + "total_cases": 8418.0, + "new_cases": 351.0, + "new_cases_smoothed": 346.857, + "total_deaths": 417.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 437.579, + "new_cases_per_million": 18.245, + "new_cases_smoothed_per_million": 18.03, + "total_deaths_per_million": 21.676, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 1.002, + "new_tests": 2620.0, + "total_tests": 93611.0, + "total_tests_per_thousand": 4.866, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 4469.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 12.884, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-20", + "total_cases": 8746.0, + "new_cases": 328.0, + "new_cases_smoothed": 349.429, + "total_deaths": 434.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 454.629, + "new_cases_per_million": 17.05, + "new_cases_smoothed_per_million": 18.164, + "total_deaths_per_million": 22.56, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.951, + "new_tests": 4880.0, + "total_tests": 98491.0, + "total_tests_per_thousand": 5.12, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 4470.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 12.792, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-21", + "total_cases": 8936.0, + "new_cases": 190.0, + "new_cases_smoothed": 329.0, + "total_deaths": 451.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 464.505, + "new_cases_per_million": 9.876, + "new_cases_smoothed_per_million": 17.102, + "total_deaths_per_million": 23.444, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.988, + "new_tests": 3061.0, + "total_tests": 101552.0, + "total_tests_per_thousand": 5.279, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 4494.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 13.66, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-22", + "total_cases": 9242.0, + "new_cases": 306.0, + "new_cases_smoothed": 337.571, + "total_deaths": 483.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 480.411, + "new_cases_per_million": 15.906, + "new_cases_smoothed_per_million": 17.547, + "total_deaths_per_million": 25.107, + "new_deaths_per_million": 1.663, + "new_deaths_smoothed_per_million": 1.032, + "new_tests": 4805.0, + "total_tests": 106357.0, + "total_tests_per_thousand": 5.529, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 4504.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 13.342, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-23", + "total_cases": 9710.0, + "new_cases": 468.0, + "new_cases_smoothed": 356.286, + "total_deaths": 508.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 504.739, + "new_cases_per_million": 24.327, + "new_cases_smoothed_per_million": 18.52, + "total_deaths_per_million": 26.407, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.01, + "new_tests": 6979.0, + "total_tests": 113336.0, + "total_tests_per_thousand": 5.891, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 4815.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 13.514000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-24", + "total_cases": 10096.0, + "new_cases": 386.0, + "new_cases_smoothed": 341.286, + "total_deaths": 527.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 524.803, + "new_cases_per_million": 20.065, + "new_cases_smoothed_per_million": 17.74, + "total_deaths_per_million": 27.394, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.04, + "new_tests": 8266.0, + "total_tests": 121602.0, + "total_tests_per_thousand": 6.321, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 5114.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 14.985, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 10417.0, + "new_cases": 321.0, + "new_cases_smoothed": 335.714, + "total_deaths": 552.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 541.489, + "new_cases_per_million": 16.686, + "new_cases_smoothed_per_million": 17.451, + "total_deaths_per_million": 28.694, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.129, + "new_tests": 5043.0, + "total_tests": 126645.0, + "total_tests_per_thousand": 6.583, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 5093.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 15.171, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 10635.0, + "new_cases": 218.0, + "new_cases_smoothed": 316.714, + "total_deaths": 575.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 552.821, + "new_cases_per_million": 11.332, + "new_cases_smoothed_per_million": 16.463, + "total_deaths_per_million": 29.889, + "new_deaths_per_million": 1.196, + "new_deaths_smoothed_per_million": 1.173, + "new_tests": 9873.0, + "total_tests": 136518.0, + "total_tests_per_thousand": 7.096, + "new_tests_per_thousand": 0.513, + "new_tests_smoothed": 6130.0, + "new_tests_smoothed_per_thousand": 0.319, + "tests_per_case": 19.355, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 11036.0, + "new_cases": 401.0, + "new_cases_smoothed": 327.143, + "total_deaths": 608.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 573.666, + "new_cases_per_million": 20.845, + "new_cases_smoothed_per_million": 17.005, + "total_deaths_per_million": 31.605, + "new_deaths_per_million": 1.715, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 7316.0, + "total_tests": 143834.0, + "total_tests_per_thousand": 7.477, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 6478.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 19.802, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-28", + "total_cases": 11339.0, + "new_cases": 303.0, + "new_cases_smoothed": 343.286, + "total_deaths": 631.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 25.714, + "total_cases_per_million": 589.416, + "new_cases_per_million": 15.75, + "new_cases_smoothed_per_million": 17.844, + "total_deaths_per_million": 32.8, + "new_deaths_per_million": 1.196, + "new_deaths_smoothed_per_million": 1.337, + "new_tests": 6475.0, + "total_tests": 150309.0, + "total_tests_per_thousand": 7.813, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 6965.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 20.289, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 11616.0, + "new_cases": 277.0, + "new_cases_smoothed": 339.143, + "total_deaths": 650.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 603.815, + "new_cases_per_million": 14.399, + "new_cases_smoothed_per_million": 17.629, + "total_deaths_per_million": 33.788, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.24, + "new_tests": 16684.0, + "total_tests": 166993.0, + "total_tests_per_thousand": 8.681, + "new_tests_per_thousand": 0.867, + "new_tests_smoothed": 8662.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 25.541, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-30", + "total_cases": 11978.0, + "new_cases": 362.0, + "new_cases_smoothed": 324.0, + "total_deaths": 675.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 622.632, + "new_cases_per_million": 18.817, + "new_cases_smoothed_per_million": 16.842, + "total_deaths_per_million": 35.087, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.24, + "new_tests": 8381.0, + "total_tests": 175374.0, + "total_tests_per_thousand": 9.116, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 8863.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 27.355, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-01", + "total_cases": 12240.0, + "new_cases": 262.0, + "new_cases_smoothed": 306.286, + "total_deaths": 717.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 636.251, + "new_cases_per_million": 13.619, + "new_cases_smoothed_per_million": 15.921, + "total_deaths_per_million": 37.271, + "new_deaths_per_million": 2.183, + "new_deaths_smoothed_per_million": 1.411, + "new_tests": 8314.0, + "total_tests": 183688.0, + "total_tests_per_thousand": 9.548, + "new_tests_per_thousand": 0.432, + "new_tests_smoothed": 8869.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 28.956999999999997, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-02", + "total_cases": 12567.0, + "new_cases": 327.0, + "new_cases_smoothed": 307.143, + "total_deaths": 744.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 27.429, + "total_cases_per_million": 653.249, + "new_cases_per_million": 16.998, + "new_cases_smoothed_per_million": 15.966, + "total_deaths_per_million": 38.674, + "new_deaths_per_million": 1.403, + "new_deaths_smoothed_per_million": 1.426, + "new_tests": 6852.0, + "total_tests": 190540.0, + "total_tests_per_thousand": 9.905, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 9128.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 29.719, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-03", + "total_cases": 12732.0, + "new_cases": 165.0, + "new_cases_smoothed": 299.571, + "total_deaths": 771.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 661.826, + "new_cases_per_million": 8.577, + "new_cases_smoothed_per_million": 15.572, + "total_deaths_per_million": 40.078, + "new_deaths_per_million": 1.403, + "new_deaths_smoothed_per_million": 1.455, + "new_tests": 4968.0, + "total_tests": 195508.0, + "total_tests_per_thousand": 10.163, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 8427.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 28.13, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-04", + "total_cases": 13163.0, + "new_cases": 431.0, + "new_cases_smoothed": 303.857, + "total_deaths": 780.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 684.23, + "new_cases_per_million": 22.404, + "new_cases_smoothed_per_million": 15.795, + "total_deaths_per_million": 40.545, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 3560.0, + "total_tests": 199068.0, + "total_tests_per_thousand": 10.348, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 7891.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 25.969, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 13512.0, + "new_cases": 349.0, + "new_cases_smoothed": 310.429, + "total_deaths": 803.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 702.372, + "new_cases_per_million": 18.141, + "new_cases_smoothed_per_million": 16.136, + "total_deaths_per_million": 41.741, + "new_deaths_per_million": 1.196, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 6774.0, + "total_tests": 205842.0, + "total_tests_per_thousand": 10.7, + "new_tests_per_thousand": 0.352, + "new_tests_smoothed": 7933.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 25.555, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 13837.0, + "new_cases": 325.0, + "new_cases_smoothed": 317.286, + "total_deaths": 827.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 719.265, + "new_cases_per_million": 16.894, + "new_cases_smoothed_per_million": 16.493, + "total_deaths_per_million": 42.989, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 1.314, + "new_tests": 11297.0, + "total_tests": 217139.0, + "total_tests_per_thousand": 11.287, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 7164.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 22.579, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 14107.0, + "new_cases": 270.0, + "new_cases_smoothed": 304.143, + "total_deaths": 858.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 26.143, + "total_cases_per_million": 733.3, + "new_cases_per_million": 14.035, + "new_cases_smoothed_per_million": 15.81, + "total_deaths_per_million": 44.6, + "new_deaths_per_million": 1.611, + "new_deaths_smoothed_per_million": 1.359, + "new_tests": 9474.0, + "total_tests": 226613.0, + "total_tests_per_thousand": 11.78, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 7320.0, + "new_tests_smoothed_per_thousand": 0.381, + "tests_per_case": 24.068, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 14499.0, + "new_cases": 392.0, + "new_cases_smoothed": 322.714, + "total_deaths": 876.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 753.677, + "new_cases_per_million": 20.377, + "new_cases_smoothed_per_million": 16.775, + "total_deaths_per_million": 45.536, + "new_deaths_per_million": 0.936, + "new_deaths_smoothed_per_million": 1.181, + "new_tests": 10667.0, + "total_tests": 237280.0, + "total_tests_per_thousand": 12.334, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 7656.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 23.724, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 14811.0, + "new_cases": 312.0, + "new_cases_smoothed": 320.571, + "total_deaths": 898.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 769.895, + "new_cases_per_million": 16.218, + "new_cases_smoothed_per_million": 16.664, + "total_deaths_per_million": 46.679, + "new_deaths_per_million": 1.144, + "new_deaths_smoothed_per_million": 1.144, + "new_tests": 10776.0, + "total_tests": 248056.0, + "total_tests_per_thousand": 12.894, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 8217.0, + "new_tests_smoothed_per_thousand": 0.427, + "tests_per_case": 25.631999999999998, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 15131.0, + "new_cases": 320.0, + "new_cases_smoothed": 342.714, + "total_deaths": 926.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 786.529, + "new_cases_per_million": 16.634, + "new_cases_smoothed_per_million": 17.815, + "total_deaths_per_million": 48.135, + "new_deaths_per_million": 1.455, + "new_deaths_smoothed_per_million": 1.151, + "new_tests": 8693.0, + "total_tests": 256749.0, + "total_tests_per_thousand": 13.346, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 8749.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 25.529, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 15362.0, + "new_cases": 231.0, + "new_cases_smoothed": 314.143, + "total_deaths": 952.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 24.571, + "total_cases_per_million": 798.537, + "new_cases_per_million": 12.008, + "new_cases_smoothed_per_million": 16.33, + "total_deaths_per_million": 49.486, + "new_deaths_per_million": 1.352, + "new_deaths_smoothed_per_million": 1.277, + "new_tests": 5470.0, + "total_tests": 262219.0, + "total_tests_per_thousand": 13.63, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 9022.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 28.719, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-12", + "total_cases": 15588.0, + "new_cases": 226.0, + "new_cases_smoothed": 296.571, + "total_deaths": 972.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 810.285, + "new_cases_per_million": 11.748, + "new_cases_smoothed_per_million": 15.416, + "total_deaths_per_million": 50.526, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 1.255, + "new_tests": 6964.0, + "total_tests": 269183.0, + "total_tests_per_thousand": 13.992, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 9049.0, + "new_tests_smoothed_per_thousand": 0.47, + "tests_per_case": 30.511999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-13", + "total_cases": 15778.0, + "new_cases": 190.0, + "new_cases_smoothed": 277.286, + "total_deaths": 1002.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 25.0, + "total_cases_per_million": 820.161, + "new_cases_per_million": 9.876, + "new_cases_smoothed_per_million": 14.414, + "total_deaths_per_million": 52.085, + "new_deaths_per_million": 1.559, + "new_deaths_smoothed_per_million": 1.3, + "new_tests": 8621.0, + "total_tests": 277804.0, + "total_tests_per_thousand": 14.441, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 8666.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 31.253, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-14", + "total_cases": 16002.0, + "new_cases": 224.0, + "new_cases_smoothed": 270.714, + "total_deaths": 1016.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 831.805, + "new_cases_per_million": 11.644, + "new_cases_smoothed_per_million": 14.072, + "total_deaths_per_million": 52.813, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 1.173, + "new_tests": 8413.0, + "total_tests": 286217.0, + "total_tests_per_thousand": 14.878, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 8515.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 31.454, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-05-15", + "total_cases": 16247.0, + "new_cases": 245.0, + "new_cases_smoothed": 249.714, + "total_deaths": 1046.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 844.54, + "new_cases_per_million": 12.735, + "new_cases_smoothed_per_million": 12.98, + "total_deaths_per_million": 54.372, + "new_deaths_per_million": 1.559, + "new_deaths_smoothed_per_million": 1.262, + "new_tests": 8384.0, + "total_tests": 294601.0, + "total_tests_per_thousand": 15.314, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 8189.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 32.793, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 16437.0, + "new_cases": 190.0, + "new_cases_smoothed": 232.286, + "total_deaths": 1056.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 22.571, + "total_cases_per_million": 854.417, + "new_cases_per_million": 9.876, + "new_cases_smoothed_per_million": 12.075, + "total_deaths_per_million": 54.892, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 1.173, + "new_tests": 9133.0, + "total_tests": 303734.0, + "total_tests_per_thousand": 15.788, + "new_tests_per_thousand": 0.475, + "new_tests_smoothed": 7954.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 34.242, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 16704.0, + "new_cases": 267.0, + "new_cases_smoothed": 224.714, + "total_deaths": 1081.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 868.296, + "new_cases_per_million": 13.879, + "new_cases_smoothed_per_million": 11.681, + "total_deaths_per_million": 56.192, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.151, + "new_tests": 6673.0, + "total_tests": 310407.0, + "total_tests_per_thousand": 16.135, + "new_tests_per_thousand": 0.347, + "new_tests_smoothed": 7665.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 34.11, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-18", + "total_cases": 16871.0, + "new_cases": 167.0, + "new_cases_smoothed": 215.571, + "total_deaths": 1097.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 876.977, + "new_cases_per_million": 8.681, + "new_cases_smoothed_per_million": 11.206, + "total_deaths_per_million": 57.024, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 3214.0, + "total_tests": 313621.0, + "total_tests_per_thousand": 16.302, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 7343.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 34.063, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-19", + "total_cases": 17036.0, + "new_cases": 165.0, + "new_cases_smoothed": 206.857, + "total_deaths": 1107.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 885.554, + "new_cases_per_million": 8.577, + "new_cases_smoothed_per_million": 10.753, + "total_deaths_per_million": 57.543, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 1.002, + "new_tests": 8453.0, + "total_tests": 322074.0, + "total_tests_per_thousand": 16.742, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 7556.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 36.528, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-20", + "total_cases": 17191.0, + "new_cases": 155.0, + "new_cases_smoothed": 201.857, + "total_deaths": 1126.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 893.611, + "new_cases_per_million": 8.057, + "new_cases_smoothed_per_million": 10.493, + "total_deaths_per_million": 58.531, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 0.921, + "new_tests": 10413.0, + "total_tests": 332487.0, + "total_tests_per_thousand": 17.283, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 7812.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 38.701, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-21", + "total_cases": 17387.0, + "new_cases": 196.0, + "new_cases_smoothed": 197.857, + "total_deaths": 1141.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 903.799, + "new_cases_per_million": 10.188, + "new_cases_smoothed_per_million": 10.285, + "total_deaths_per_million": 59.311, + "new_deaths_per_million": 0.78, + "new_deaths_smoothed_per_million": 0.928, + "new_tests": 9979.0, + "total_tests": 342466.0, + "total_tests_per_thousand": 17.802, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 8036.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 40.615, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-22", + "total_cases": 17585.0, + "new_cases": 198.0, + "new_cases_smoothed": 191.143, + "total_deaths": 1151.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 914.091, + "new_cases_per_million": 10.292, + "new_cases_smoothed_per_million": 9.936, + "total_deaths_per_million": 59.83, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.78, + "new_tests": 10181.0, + "total_tests": 352647.0, + "total_tests_per_thousand": 18.331, + "new_tests_per_thousand": 0.529, + "new_tests_smoothed": 8292.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 43.381, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-23", + "total_cases": 17712.0, + "new_cases": 127.0, + "new_cases_smoothed": 182.143, + "total_deaths": 1159.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 920.693, + "new_cases_per_million": 6.602, + "new_cases_smoothed_per_million": 9.468, + "total_deaths_per_million": 60.246, + "new_deaths_per_million": 0.416, + "new_deaths_smoothed_per_million": 0.765, + "new_tests": 8919.0, + "total_tests": 361566.0, + "total_tests_per_thousand": 18.795, + "new_tests_per_thousand": 0.464, + "new_tests_smoothed": 8262.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 45.36, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 17857.0, + "new_cases": 145.0, + "new_cases_smoothed": 164.714, + "total_deaths": 1170.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 928.23, + "new_cases_per_million": 7.537, + "new_cases_smoothed_per_million": 8.562, + "total_deaths_per_million": 60.818, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.661, + "new_tests": 6916.0, + "total_tests": 368482.0, + "total_tests_per_thousand": 19.154, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 8296.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 50.36600000000001, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 18070.0, + "new_cases": 213.0, + "new_cases_smoothed": 171.286, + "total_deaths": 1179.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 939.302, + "new_cases_per_million": 11.072, + "new_cases_smoothed_per_million": 8.904, + "total_deaths_per_million": 61.286, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.609, + "new_tests": 8709.0, + "total_tests": 377191.0, + "total_tests_per_thousand": 19.607, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 9081.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 53.016999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 18283.0, + "new_cases": 213.0, + "new_cases_smoothed": 178.143, + "total_deaths": 1197.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 950.374, + "new_cases_per_million": 11.072, + "new_cases_smoothed_per_million": 9.26, + "total_deaths_per_million": 62.222, + "new_deaths_per_million": 0.936, + "new_deaths_smoothed_per_million": 0.668, + "new_tests": 8537.0, + "total_tests": 385728.0, + "total_tests_per_thousand": 20.051, + "new_tests_per_thousand": 0.444, + "new_tests_smoothed": 9093.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 51.043, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 18429.0, + "new_cases": 146.0, + "new_cases_smoothed": 176.857, + "total_deaths": 1210.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 957.964, + "new_cases_per_million": 7.589, + "new_cases_smoothed_per_million": 9.193, + "total_deaths_per_million": 62.897, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 0.624, + "new_tests": 11835.0, + "total_tests": 397563.0, + "total_tests_per_thousand": 20.666, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 9297.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 52.568000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 18594.0, + "new_cases": 165.0, + "new_cases_smoothed": 172.429, + "total_deaths": 1219.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 966.541, + "new_cases_per_million": 8.577, + "new_cases_smoothed_per_million": 8.963, + "total_deaths_per_million": 63.365, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 12437.0, + "total_tests": 410000.0, + "total_tests_per_thousand": 21.312, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 9648.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 55.95399999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 18791.0, + "new_cases": 197.0, + "new_cases_smoothed": 172.286, + "total_deaths": 1229.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 976.781, + "new_cases_per_million": 10.24, + "new_cases_smoothed_per_million": 8.956, + "total_deaths_per_million": 63.885, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.579, + "new_tests": 11451.0, + "total_tests": 421451.0, + "total_tests_per_thousand": 21.908, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 9829.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 57.051, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 18982.0, + "new_cases": 191.0, + "new_cases_smoothed": 181.429, + "total_deaths": 1240.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 986.709, + "new_cases_per_million": 9.928, + "new_cases_smoothed_per_million": 9.431, + "total_deaths_per_million": 64.457, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.601, + "new_tests": 4368.0, + "total_tests": 425819.0, + "total_tests_per_thousand": 22.135, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 9179.0, + "new_tests_smoothed_per_thousand": 0.477, + "tests_per_case": 50.593, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 19133.0, + "new_cases": 151.0, + "new_cases_smoothed": 182.286, + "total_deaths": 1253.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 994.558, + "new_cases_per_million": 7.849, + "new_cases_smoothed_per_million": 9.475, + "total_deaths_per_million": 65.133, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 0.616, + "new_tests": 13378.0, + "total_tests": 439197.0, + "total_tests_per_thousand": 22.83, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 10102.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 55.418, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 19257.0, + "new_cases": 124.0, + "new_cases_smoothed": 169.571, + "total_deaths": 1262.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 1001.004, + "new_cases_per_million": 6.446, + "new_cases_smoothed_per_million": 8.815, + "total_deaths_per_million": 65.6, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.616, + "new_tests": 4055.0, + "total_tests": 443252.0, + "total_tests_per_thousand": 23.041, + "new_tests_per_thousand": 0.211, + "new_tests_smoothed": 9437.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 55.652, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 19398.0, + "new_cases": 141.0, + "new_cases_smoothed": 159.286, + "total_deaths": 1279.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 1008.334, + "new_cases_per_million": 7.329, + "new_cases_smoothed_per_million": 8.28, + "total_deaths_per_million": 66.484, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.609, + "new_tests_smoothed": 9372.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 58.838, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 19517.0, + "new_cases": 119.0, + "new_cases_smoothed": 155.429, + "total_deaths": 1279.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 1014.519, + "new_cases_per_million": 6.186, + "new_cases_smoothed_per_million": 8.079, + "total_deaths_per_million": 66.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.512, + "total_tests": 459405.0, + "total_tests_per_thousand": 23.88, + "new_tests_smoothed": 8835.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 56.843, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 19669.0, + "new_cases": 152.0, + "new_cases_smoothed": 153.571, + "total_deaths": 1288.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 1022.42, + "new_cases_per_million": 7.901, + "new_cases_smoothed_per_million": 7.983, + "total_deaths_per_million": 66.952, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.512, + "new_tests": 13445.0, + "total_tests": 472850.0, + "total_tests_per_thousand": 24.579, + "new_tests_per_thousand": 0.699, + "new_tests_smoothed": 8979.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 58.468, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 19907.0, + "new_cases": 238.0, + "new_cases_smoothed": 159.429, + "total_deaths": 1299.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1034.792, + "new_cases_per_million": 12.372, + "new_cases_smoothed_per_million": 8.287, + "total_deaths_per_million": 67.524, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.52, + "new_tests": 11932.0, + "total_tests": 484782.0, + "total_tests_per_thousand": 25.2, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 9047.0, + "new_tests_smoothed_per_thousand": 0.47, + "tests_per_case": 56.746, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 20103.0, + "new_cases": 196.0, + "new_cases_smoothed": 160.143, + "total_deaths": 1308.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 1044.98, + "new_cases_per_million": 10.188, + "new_cases_smoothed_per_million": 8.324, + "total_deaths_per_million": 67.992, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.505, + "new_tests": 11626.0, + "total_tests": 496408.0, + "total_tests_per_thousand": 25.804, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 10084.0, + "new_tests_smoothed_per_thousand": 0.524, + "tests_per_case": 62.968999999999994, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 20290.0, + "new_cases": 187.0, + "new_cases_smoothed": 165.286, + "total_deaths": 1318.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1054.701, + "new_cases_per_million": 9.721, + "new_cases_smoothed_per_million": 8.592, + "total_deaths_per_million": 68.511, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.483, + "new_tests": 6792.0, + "total_tests": 503200.0, + "total_tests_per_thousand": 26.157, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 9143.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 55.316, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 20479.0, + "new_cases": 189.0, + "new_cases_smoothed": 174.571, + "total_deaths": 1326.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1064.525, + "new_cases_per_million": 9.824, + "new_cases_smoothed_per_million": 9.074, + "total_deaths_per_million": 68.927, + "new_deaths_per_million": 0.416, + "new_deaths_smoothed_per_million": 0.475, + "new_tests": 2915.0, + "total_tests": 506115.0, + "total_tests_per_thousand": 26.309, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 8980.0, + "new_tests_smoothed_per_thousand": 0.467, + "tests_per_case": 51.44, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 20604.0, + "new_cases": 125.0, + "new_cases_smoothed": 172.286, + "total_deaths": 1334.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1071.023, + "new_cases_per_million": 6.498, + "new_cases_smoothed_per_million": 8.956, + "total_deaths_per_million": 69.343, + "new_deaths_per_million": 0.416, + "new_deaths_smoothed_per_million": 0.408, + "new_tests": 5180.0, + "total_tests": 511295.0, + "total_tests_per_thousand": 26.578, + "new_tests_per_thousand": 0.269, + "new_tests_smoothed": 8567.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 49.726000000000006, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 20749.0, + "new_cases": 145.0, + "new_cases_smoothed": 176.0, + "total_deaths": 1345.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1078.56, + "new_cases_per_million": 7.537, + "new_cases_smoothed_per_million": 9.149, + "total_deaths_per_million": 69.915, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.49, + "new_tests": 9269.0, + "total_tests": 520564.0, + "total_tests_per_thousand": 27.06, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 8737.0, + "new_tests_smoothed_per_thousand": 0.454, + "tests_per_case": 49.641999999999996, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 20945.0, + "new_cases": 196.0, + "new_cases_smoothed": 182.286, + "total_deaths": 1360.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1088.749, + "new_cases_per_million": 10.188, + "new_cases_smoothed_per_million": 9.475, + "total_deaths_per_million": 70.695, + "new_deaths_per_million": 0.78, + "new_deaths_smoothed_per_million": 0.535, + "new_tests": 11055.0, + "total_tests": 531619.0, + "total_tests_per_thousand": 27.634, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 8396.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 46.06, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 21182.0, + "new_cases": 237.0, + "new_cases_smoothed": 182.143, + "total_deaths": 1369.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 1101.068, + "new_cases_per_million": 12.32, + "new_cases_smoothed_per_million": 9.468, + "total_deaths_per_million": 71.162, + "new_deaths_per_million": 0.468, + "new_deaths_smoothed_per_million": 0.52, + "new_tests_smoothed": 8195.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 44.992, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 21404.0, + "new_cases": 222.0, + "new_cases_smoothed": 185.857, + "total_deaths": 1380.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1112.608, + "new_cases_per_million": 11.54, + "new_cases_smoothed_per_million": 9.661, + "total_deaths_per_million": 71.734, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.535, + "total_tests": 552670.0, + "total_tests_per_thousand": 28.729, + "new_tests_smoothed": 8037.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 43.243, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 21679.0, + "new_cases": 275.0, + "new_cases_smoothed": 198.429, + "total_deaths": 1391.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 1126.903, + "new_cases_per_million": 14.295, + "new_cases_smoothed_per_million": 10.315, + "total_deaths_per_million": 72.306, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.542, + "new_tests": 7926.0, + "total_tests": 560596.0, + "total_tests_per_thousand": 29.141, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 8199.0, + "new_tests_smoothed_per_thousand": 0.426, + "tests_per_case": 41.32, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 21999.0, + "new_cases": 320.0, + "new_cases_smoothed": 217.143, + "total_deaths": 1410.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 12.0, + "total_cases_per_million": 1143.537, + "new_cases_per_million": 16.634, + "new_cases_smoothed_per_million": 11.287, + "total_deaths_per_million": 73.294, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 0.624, + "new_tests": 3682.0, + "total_tests": 564278.0, + "total_tests_per_thousand": 29.332, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 8309.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 38.265, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-06-16", + "total_cases": 22165.0, + "new_cases": 166.0, + "new_cases_smoothed": 223.0, + "total_deaths": 1427.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.286, + "total_cases_per_million": 1152.166, + "new_cases_per_million": 8.629, + "new_cases_smoothed_per_million": 11.592, + "total_deaths_per_million": 74.177, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.691, + "new_tests": 9360.0, + "total_tests": 573638.0, + "total_tests_per_thousand": 29.818, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 8906.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 39.937, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-06-17", + "total_cases": 22415.0, + "new_cases": 250.0, + "new_cases_smoothed": 238.0, + "total_deaths": 1437.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 1165.161, + "new_cases_per_million": 12.995, + "new_cases_smoothed_per_million": 12.372, + "total_deaths_per_million": 74.697, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 11715.0, + "total_tests": 585353.0, + "total_tests_per_thousand": 30.427, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 9256.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 38.891, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-18", + "total_cases": 22760.0, + "new_cases": 345.0, + "new_cases_smoothed": 259.286, + "total_deaths": 1451.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 1183.095, + "new_cases_per_million": 17.934, + "new_cases_smoothed_per_million": 13.478, + "total_deaths_per_million": 75.425, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.676, + "new_tests": 12343.0, + "total_tests": 597696.0, + "total_tests_per_thousand": 31.069, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 9440.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 36.408, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-19", + "total_cases": 23080.0, + "new_cases": 320.0, + "new_cases_smoothed": 271.143, + "total_deaths": 1473.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 1199.729, + "new_cases_per_million": 16.634, + "new_cases_smoothed_per_million": 14.094, + "total_deaths_per_million": 76.568, + "new_deaths_per_million": 1.144, + "new_deaths_smoothed_per_million": 0.772, + "new_tests": 11075.0, + "total_tests": 608771.0, + "total_tests_per_thousand": 31.645, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 9518.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 35.103, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-20", + "total_cases": 23400.0, + "new_cases": 320.0, + "new_cases_smoothed": 285.143, + "total_deaths": 1484.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 1216.363, + "new_cases_per_million": 16.634, + "new_cases_smoothed_per_million": 14.822, + "total_deaths_per_million": 77.14, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.772, + "new_tests": 11226.0, + "total_tests": 619997.0, + "total_tests_per_thousand": 32.228, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 9618.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 33.73, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-21", + "total_cases": 23730.0, + "new_cases": 330.0, + "new_cases_smoothed": 293.0, + "total_deaths": 1500.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 1233.517, + "new_cases_per_million": 17.154, + "new_cases_smoothed_per_million": 15.231, + "total_deaths_per_million": 77.972, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 0.809, + "new_tests": 6333.0, + "total_tests": 626330.0, + "total_tests_per_thousand": 32.557, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 9391.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 32.051, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-22", + "total_cases": 24045.0, + "new_cases": 315.0, + "new_cases_smoothed": 292.286, + "total_deaths": 1512.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 1249.891, + "new_cases_per_million": 16.374, + "new_cases_smoothed_per_million": 15.193, + "total_deaths_per_million": 78.596, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 0.757, + "new_tests": 4044.0, + "total_tests": 630374.0, + "total_tests_per_thousand": 32.768, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 9442.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 32.304, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-23", + "total_cases": 24291.0, + "new_cases": 246.0, + "new_cases_smoothed": 303.714, + "total_deaths": 1523.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 1262.678, + "new_cases_per_million": 12.787, + "new_cases_smoothed_per_million": 15.787, + "total_deaths_per_million": 79.168, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.713, + "new_tests": 8948.0, + "total_tests": 639322.0, + "total_tests_per_thousand": 33.233, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 9383.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 30.894000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-24", + "total_cases": 24505.0, + "new_cases": 214.0, + "new_cases_smoothed": 298.571, + "total_deaths": 1539.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 1273.802, + "new_cases_per_million": 11.124, + "new_cases_smoothed_per_million": 15.52, + "total_deaths_per_million": 79.999, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 0.757, + "new_tests_smoothed": 9441.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 31.621, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-25", + "total_cases": 24826.0, + "new_cases": 321.0, + "new_cases_smoothed": 295.143, + "total_deaths": 1555.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 1290.488, + "new_cases_per_million": 16.686, + "new_cases_smoothed_per_million": 15.342, + "total_deaths_per_million": 80.831, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 0.772, + "total_tests": 663558.0, + "total_tests_per_thousand": 34.493, + "new_tests_smoothed": 9409.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 31.879, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-26", + "total_cases": 25286.0, + "new_cases": 460.0, + "new_cases_smoothed": 315.143, + "total_deaths": 1565.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 1314.4, + "new_cases_per_million": 23.911, + "new_cases_smoothed_per_million": 16.382, + "total_deaths_per_million": 81.351, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 11824.0, + "total_tests": 675382.0, + "total_tests_per_thousand": 35.107, + "new_tests_per_thousand": 0.615, + "new_tests_smoothed": 9516.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 30.195999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-27", + "total_cases": 25697.0, + "new_cases": 411.0, + "new_cases_smoothed": 328.143, + "total_deaths": 1579.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 1335.764, + "new_cases_per_million": 21.364, + "new_cases_smoothed_per_million": 17.057, + "total_deaths_per_million": 82.078, + "new_deaths_per_million": 0.728, + "new_deaths_smoothed_per_million": 0.705, + "new_tests": 1877.0, + "total_tests": 677259.0, + "total_tests_per_thousand": 35.205, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 8180.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 24.928, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-28", + "total_cases": 26022.0, + "new_cases": 325.0, + "new_cases_smoothed": 327.429, + "total_deaths": 1589.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 1352.658, + "new_cases_per_million": 16.894, + "new_cases_smoothed_per_million": 17.02, + "total_deaths_per_million": 82.598, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.661, + "new_tests": 17650.0, + "total_tests": 694909.0, + "total_tests_per_thousand": 36.122, + "new_tests_per_thousand": 0.917, + "new_tests_smoothed": 9797.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 29.921, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-29", + "total_cases": 26313.0, + "new_cases": 291.0, + "new_cases_smoothed": 324.0, + "total_deaths": 1612.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 1367.784, + "new_cases_per_million": 15.127, + "new_cases_smoothed_per_million": 16.842, + "total_deaths_per_million": 83.794, + "new_deaths_per_million": 1.196, + "new_deaths_smoothed_per_million": 0.743, + "new_tests": 4779.0, + "total_tests": 699688.0, + "total_tests_per_thousand": 36.371, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 9902.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 30.561999999999998, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-06-30", + "total_cases": 26582.0, + "new_cases": 269.0, + "new_cases_smoothed": 327.286, + "total_deaths": 1634.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 1381.767, + "new_cases_per_million": 13.983, + "new_cases_smoothed_per_million": 17.013, + "total_deaths_per_million": 84.937, + "new_deaths_per_million": 1.144, + "new_deaths_smoothed_per_million": 0.824, + "new_tests": 10424.0, + "total_tests": 710112.0, + "total_tests_per_thousand": 36.913, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 10113.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 30.9, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-01", + "total_cases": 26970.0, + "new_cases": 388.0, + "new_cases_smoothed": 352.143, + "total_deaths": 1651.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1401.936, + "new_cases_per_million": 20.169, + "new_cases_smoothed_per_million": 18.305, + "total_deaths_per_million": 85.821, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.832, + "new_tests": 12585.0, + "total_tests": 722697.0, + "total_tests_per_thousand": 37.567, + "new_tests_per_thousand": 0.654, + "new_tests_smoothed": 10180.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 28.909000000000002, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-02", + "total_cases": 27296.0, + "new_cases": 326.0, + "new_cases_smoothed": 352.857, + "total_deaths": 1667.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 1418.882, + "new_cases_per_million": 16.946, + "new_cases_smoothed_per_million": 18.342, + "total_deaths_per_million": 86.653, + "new_deaths_per_million": 0.832, + "new_deaths_smoothed_per_million": 0.832, + "new_tests": 12524.0, + "total_tests": 735221.0, + "total_tests_per_thousand": 38.218, + "new_tests_per_thousand": 0.651, + "new_tests_smoothed": 10238.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 29.015, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-03", + "total_cases": 27746.0, + "new_cases": 450.0, + "new_cases_smoothed": 351.429, + "total_deaths": 1687.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1442.274, + "new_cases_per_million": 23.392, + "new_cases_smoothed_per_million": 18.268, + "total_deaths_per_million": 87.692, + "new_deaths_per_million": 1.04, + "new_deaths_smoothed_per_million": 0.906, + "new_tests": 12371.0, + "total_tests": 747592.0, + "total_tests_per_thousand": 38.861, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 10316.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 29.354, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-04", + "total_cases": 28166.0, + "new_cases": 420.0, + "new_cases_smoothed": 352.714, + "total_deaths": 1708.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 1464.106, + "new_cases_per_million": 21.832, + "new_cases_smoothed_per_million": 18.335, + "total_deaths_per_million": 88.784, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 0.958, + "new_tests": 11445.0, + "total_tests": 759037.0, + "total_tests_per_thousand": 39.456, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 11683.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 33.123000000000005, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-05", + "total_cases": 28582.0, + "new_cases": 416.0, + "new_cases_smoothed": 365.714, + "total_deaths": 1731.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 1485.73, + "new_cases_per_million": 21.624, + "new_cases_smoothed_per_million": 19.01, + "total_deaths_per_million": 89.98, + "new_deaths_per_million": 1.196, + "new_deaths_smoothed_per_million": 1.054, + "new_tests_smoothed": 9720.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 26.578000000000003, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-06", + "total_cases": 28973.0, + "new_cases": 391.0, + "new_cases_smoothed": 380.0, + "total_deaths": 1750.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 1506.055, + "new_cases_per_million": 20.325, + "new_cases_smoothed_per_million": 19.753, + "total_deaths_per_million": 90.967, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.025, + "total_tests": 766868.0, + "total_tests_per_thousand": 39.863, + "new_tests_smoothed": 9597.0, + "new_tests_smoothed_per_thousand": 0.499, + "tests_per_case": 25.255, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-07", + "total_cases": 29223.0, + "new_cases": 250.0, + "new_cases_smoothed": 377.286, + "total_deaths": 1768.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 1519.05, + "new_cases_per_million": 12.995, + "new_cases_smoothed_per_million": 19.612, + "total_deaths_per_million": 91.903, + "new_deaths_per_million": 0.936, + "new_deaths_smoothed_per_million": 0.995, + "new_tests": 16469.0, + "total_tests": 783337.0, + "total_tests_per_thousand": 40.719, + "new_tests_per_thousand": 0.856, + "new_tests_smoothed": 10461.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 27.726999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-07-08", + "total_cases": 29620.0, + "new_cases": 397.0, + "new_cases_smoothed": 378.571, + "total_deaths": 1799.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 1539.687, + "new_cases_per_million": 20.637, + "new_cases_smoothed_per_million": 19.679, + "total_deaths_per_million": 93.514, + "new_deaths_per_million": 1.611, + "new_deaths_smoothed_per_million": 1.099, + "new_tests": 13147.0, + "total_tests": 796484.0, + "total_tests_per_thousand": 41.402, + "new_tests_per_thousand": 0.683, + "new_tests_smoothed": 10541.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 27.844, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-09", + "total_cases": 30175.0, + "new_cases": 555.0, + "new_cases_smoothed": 411.286, + "total_deaths": 1817.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 1568.536, + "new_cases_per_million": 28.85, + "new_cases_smoothed_per_million": 21.379, + "total_deaths_per_million": 94.45, + "new_deaths_per_million": 0.936, + "new_deaths_smoothed_per_million": 1.114, + "new_tests": 13179.0, + "total_tests": 809663.0, + "total_tests_per_thousand": 42.087, + "new_tests_per_thousand": 0.685, + "new_tests_smoothed": 10635.0, + "new_tests_smoothed_per_thousand": 0.553, + "tests_per_case": 25.858, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-10", + "total_cases": 30789.0, + "new_cases": 614.0, + "new_cases_smoothed": 434.714, + "total_deaths": 1834.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 1600.453, + "new_cases_per_million": 31.917, + "new_cases_smoothed_per_million": 22.597, + "total_deaths_per_million": 95.334, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 14680.0, + "total_tests": 824343.0, + "total_tests_per_thousand": 42.85, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 10964.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 25.221, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-11", + "total_cases": 31381.0, + "new_cases": 592.0, + "new_cases_smoothed": 459.286, + "total_deaths": 1847.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 1631.226, + "new_cases_per_million": 30.773, + "new_cases_smoothed_per_million": 23.874, + "total_deaths_per_million": 96.009, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 1.032, + "new_tests": 14610.0, + "total_tests": 838953.0, + "total_tests_per_thousand": 43.61, + "new_tests_per_thousand": 0.759, + "new_tests_smoothed": 11417.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 24.858, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-12", + "total_cases": 32079.0, + "new_cases": 698.0, + "new_cases_smoothed": 499.571, + "total_deaths": 1871.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 1667.509, + "new_cases_per_million": 36.283, + "new_cases_smoothed_per_million": 25.968, + "total_deaths_per_million": 97.257, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 1.04, + "new_tests": 8633.0, + "total_tests": 847586.0, + "total_tests_per_thousand": 44.059, + "new_tests_per_thousand": 0.449, + "new_tests_smoothed": 12090.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 24.201, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-13", + "total_cases": 32535.0, + "new_cases": 456.0, + "new_cases_smoothed": 508.857, + "total_deaths": 1884.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 1691.212, + "new_cases_per_million": 23.703, + "new_cases_smoothed_per_million": 26.451, + "total_deaths_per_million": 97.933, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 0.995, + "new_tests": 6655.0, + "total_tests": 854241.0, + "total_tests_per_thousand": 44.405, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 12482.0, + "new_tests_smoothed_per_thousand": 0.649, + "tests_per_case": 24.529, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-14", + "total_cases": 32948.0, + "new_cases": 413.0, + "new_cases_smoothed": 532.143, + "total_deaths": 1901.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 1712.68, + "new_cases_per_million": 21.468, + "new_cases_smoothed_per_million": 27.661, + "total_deaths_per_million": 98.816, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.988, + "new_tests_smoothed": 12463.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 23.42, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-15", + "total_cases": 33585.0, + "new_cases": 637.0, + "new_cases_smoothed": 566.429, + "total_deaths": 1931.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 1745.792, + "new_cases_per_million": 33.112, + "new_cases_smoothed_per_million": 29.444, + "total_deaths_per_million": 100.376, + "new_deaths_per_million": 1.559, + "new_deaths_smoothed_per_million": 0.98, + "total_tests": 886918.0, + "total_tests_per_thousand": 46.103, + "new_tests_smoothed": 12919.0, + "new_tests_smoothed_per_thousand": 0.672, + "tests_per_case": 22.808000000000003, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-16", + "total_cases": 34226.0, + "new_cases": 641.0, + "new_cases_smoothed": 578.714, + "total_deaths": 1952.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 1779.112, + "new_cases_per_million": 33.32, + "new_cases_smoothed_per_million": 30.082, + "total_deaths_per_million": 101.468, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 1.002, + "new_tests": 19097.0, + "total_tests": 906015.0, + "total_tests_per_thousand": 47.096, + "new_tests_per_thousand": 0.993, + "new_tests_smoothed": 13765.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 23.785, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-17", + "total_cases": 35003.0, + "new_cases": 777.0, + "new_cases_smoothed": 602.0, + "total_deaths": 1971.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 1819.502, + "new_cases_per_million": 40.389, + "new_cases_smoothed_per_million": 31.293, + "total_deaths_per_million": 102.455, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.017, + "new_tests": 18986.0, + "total_tests": 925001.0, + "total_tests_per_thousand": 48.083, + "new_tests_per_thousand": 0.987, + "new_tests_smoothed": 14380.0, + "new_tests_smoothed_per_thousand": 0.747, + "tests_per_case": 23.886999999999997, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-18", + "total_cases": 35802.0, + "new_cases": 799.0, + "new_cases_smoothed": 631.571, + "total_deaths": 1988.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 1861.035, + "new_cases_per_million": 41.533, + "new_cases_smoothed_per_million": 32.83, + "total_deaths_per_million": 103.339, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 1.047, + "new_tests": 18732.0, + "total_tests": 943733.0, + "total_tests_per_thousand": 49.056, + "new_tests_per_thousand": 0.974, + "new_tests_smoothed": 14969.0, + "new_tests_smoothed_per_thousand": 0.778, + "tests_per_case": 23.701, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-19", + "total_cases": 36691.0, + "new_cases": 889.0, + "new_cases_smoothed": 658.857, + "total_deaths": 2009.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 1907.246, + "new_cases_per_million": 46.211, + "new_cases_smoothed_per_million": 34.248, + "total_deaths_per_million": 104.43, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 1.025, + "new_tests": 14889.0, + "total_tests": 958622.0, + "total_tests_per_thousand": 49.83, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 15862.0, + "new_tests_smoothed_per_thousand": 0.825, + "tests_per_case": 24.075, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-20", + "total_cases": 37458.0, + "new_cases": 767.0, + "new_cases_smoothed": 703.286, + "total_deaths": 2026.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 1947.116, + "new_cases_per_million": 39.87, + "new_cases_smoothed_per_million": 36.558, + "total_deaths_per_million": 105.314, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 1.054, + "new_tests": 8570.0, + "total_tests": 967192.0, + "total_tests_per_thousand": 50.276, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 16136.0, + "new_tests_smoothed_per_thousand": 0.839, + "tests_per_case": 22.944000000000003, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-21", + "total_cases": 38139.0, + "new_cases": 681.0, + "new_cases_smoothed": 741.571, + "total_deaths": 2038.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 1982.515, + "new_cases_per_million": 35.399, + "new_cases_smoothed_per_million": 38.548, + "total_deaths_per_million": 105.938, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 1.017, + "new_tests": 17204.0, + "total_tests": 984396.0, + "total_tests_per_thousand": 51.17, + "new_tests_per_thousand": 0.894, + "new_tests_smoothed": 16260.0, + "new_tests_smoothed_per_thousand": 0.845, + "tests_per_case": 21.926, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-22", + "total_cases": 39133.0, + "new_cases": 994.0, + "new_cases_smoothed": 792.571, + "total_deaths": 2074.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 2034.185, + "new_cases_per_million": 51.669, + "new_cases_smoothed_per_million": 41.199, + "total_deaths_per_million": 107.809, + "new_deaths_per_million": 1.871, + "new_deaths_smoothed_per_million": 1.062, + "new_tests": 24877.0, + "total_tests": 1009273.0, + "total_tests_per_thousand": 52.463, + "new_tests_per_thousand": 1.293, + "new_tests_smoothed": 17479.0, + "new_tests_smoothed_per_thousand": 0.909, + "tests_per_case": 22.054000000000002, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-23", + "total_cases": 40163.0, + "new_cases": 1030.0, + "new_cases_smoothed": 848.143, + "total_deaths": 2101.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 2087.726, + "new_cases_per_million": 53.541, + "new_cases_smoothed_per_million": 44.088, + "total_deaths_per_million": 109.213, + "new_deaths_per_million": 1.403, + "new_deaths_smoothed_per_million": 1.106, + "new_tests": 21419.0, + "total_tests": 1030692.0, + "total_tests_per_thousand": 53.577, + "new_tests_per_thousand": 1.113, + "new_tests_smoothed": 17811.0, + "new_tests_smoothed_per_thousand": 0.926, + "tests_per_case": 21.0, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-24", + "total_cases": 41275.0, + "new_cases": 1112.0, + "new_cases_smoothed": 896.0, + "total_deaths": 2126.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2145.529, + "new_cases_per_million": 57.803, + "new_cases_smoothed_per_million": 46.575, + "total_deaths_per_million": 110.512, + "new_deaths_per_million": 1.3, + "new_deaths_smoothed_per_million": 1.151, + "new_tests": 22964.0, + "total_tests": 1053656.0, + "total_tests_per_thousand": 54.77, + "new_tests_per_thousand": 1.194, + "new_tests_smoothed": 18379.0, + "new_tests_smoothed_per_thousand": 0.955, + "tests_per_case": 20.511999999999997, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-25", + "total_cases": 42394.0, + "new_cases": 1119.0, + "new_cases_smoothed": 941.714, + "total_deaths": 2150.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.143, + "total_cases_per_million": 2203.696, + "new_cases_per_million": 58.167, + "new_cases_smoothed_per_million": 48.952, + "total_deaths_per_million": 111.76, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 1.203, + "new_tests": 34127.0, + "total_tests": 1087783.0, + "total_tests_per_thousand": 56.544, + "new_tests_per_thousand": 1.774, + "new_tests_smoothed": 20579.0, + "new_tests_smoothed_per_thousand": 1.07, + "tests_per_case": 21.853, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-26", + "total_cases": 43678.0, + "new_cases": 1284.0, + "new_cases_smoothed": 998.143, + "total_deaths": 2165.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 2270.44, + "new_cases_per_million": 66.744, + "new_cases_smoothed_per_million": 51.885, + "total_deaths_per_million": 112.54, + "new_deaths_per_million": 0.78, + "new_deaths_smoothed_per_million": 1.158, + "new_tests": 15118.0, + "total_tests": 1102901.0, + "total_tests_per_thousand": 57.33, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 20611.0, + "new_tests_smoothed_per_thousand": 1.071, + "tests_per_case": 20.649, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-27", + "total_cases": 44798.0, + "new_cases": 1120.0, + "new_cases_smoothed": 1048.571, + "total_deaths": 2187.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.0, + "total_cases_per_million": 2328.659, + "new_cases_per_million": 58.219, + "new_cases_smoothed_per_million": 54.506, + "total_deaths_per_million": 113.683, + "new_deaths_per_million": 1.144, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 28798.0, + "total_tests": 1131699.0, + "total_tests_per_thousand": 58.827, + "new_tests_per_thousand": 1.497, + "new_tests_smoothed": 23501.0, + "new_tests_smoothed_per_thousand": 1.222, + "tests_per_case": 22.412, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-28", + "total_cases": 45902.0, + "new_cases": 1104.0, + "new_cases_smoothed": 1109.0, + "total_deaths": 2206.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 2386.046, + "new_cases_per_million": 57.387, + "new_cases_smoothed_per_million": 57.647, + "total_deaths_per_million": 114.671, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.248, + "new_tests": 22529.0, + "total_tests": 1154228.0, + "total_tests_per_thousand": 59.998, + "new_tests_per_thousand": 1.171, + "new_tests_smoothed": 24262.0, + "new_tests_smoothed_per_thousand": 1.261, + "tests_per_case": 21.877, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-29", + "total_cases": 47053.0, + "new_cases": 1151.0, + "new_cases_smoothed": 1131.429, + "total_deaths": 2239.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 2445.877, + "new_cases_per_million": 59.83, + "new_cases_smoothed_per_million": 58.813, + "total_deaths_per_million": 116.386, + "new_deaths_per_million": 1.715, + "new_deaths_smoothed_per_million": 1.225, + "new_tests": 23402.0, + "total_tests": 1177630.0, + "total_tests_per_thousand": 61.215, + "new_tests_per_thousand": 1.216, + "new_tests_smoothed": 24051.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 21.256999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-30", + "total_cases": 48235.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1153.143, + "total_deaths": 2269.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 24.0, + "total_cases_per_million": 2507.319, + "new_cases_per_million": 61.442, + "new_cases_smoothed_per_million": 59.942, + "total_deaths_per_million": 117.946, + "new_deaths_per_million": 1.559, + "new_deaths_smoothed_per_million": 1.248, + "new_tests": 24977.0, + "total_tests": 1202607.0, + "total_tests_per_thousand": 62.513, + "new_tests_per_thousand": 1.298, + "new_tests_smoothed": 24559.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 21.296999999999997, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-07-31", + "total_cases": 49591.0, + "new_cases": 1356.0, + "new_cases_smoothed": 1188.0, + "total_deaths": 2304.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 2577.805, + "new_cases_per_million": 70.487, + "new_cases_smoothed_per_million": 61.754, + "total_deaths_per_million": 119.765, + "new_deaths_per_million": 1.819, + "new_deaths_smoothed_per_million": 1.322, + "new_tests": 23451.0, + "total_tests": 1226058.0, + "total_tests_per_thousand": 63.732, + "new_tests_per_thousand": 1.219, + "new_tests_smoothed": 24629.0, + "new_tests_smoothed_per_thousand": 1.28, + "tests_per_case": 20.730999999999998, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-01", + "total_cases": 50886.0, + "new_cases": 1295.0, + "new_cases_smoothed": 1213.143, + "total_deaths": 2343.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 27.571, + "total_cases_per_million": 2645.121, + "new_cases_per_million": 67.316, + "new_cases_smoothed_per_million": 63.061, + "total_deaths_per_million": 121.792, + "new_deaths_per_million": 2.027, + "new_deaths_smoothed_per_million": 1.433, + "new_tests": 14215.0, + "total_tests": 1240273.0, + "total_tests_per_thousand": 64.471, + "new_tests_per_thousand": 0.739, + "new_tests_smoothed": 21784.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 17.957, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-02", + "total_cases": 52111.0, + "new_cases": 1225.0, + "new_cases_smoothed": 1204.714, + "total_deaths": 2379.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 2708.798, + "new_cases_per_million": 63.677, + "new_cases_smoothed_per_million": 62.623, + "total_deaths_per_million": 123.664, + "new_deaths_per_million": 1.871, + "new_deaths_smoothed_per_million": 1.589, + "new_tests": 8045.0, + "total_tests": 1248318.0, + "total_tests_per_thousand": 64.889, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 20774.0, + "new_tests_smoothed_per_thousand": 1.08, + "tests_per_case": 17.244, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-03", + "total_cases": 53186.0, + "new_cases": 1075.0, + "new_cases_smoothed": 1198.286, + "total_deaths": 2413.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 2764.678, + "new_cases_per_million": 55.88, + "new_cases_smoothed_per_million": 62.288, + "total_deaths_per_million": 125.431, + "new_deaths_per_million": 1.767, + "new_deaths_smoothed_per_million": 1.678, + "new_tests": 20581.0, + "total_tests": 1268899.0, + "total_tests_per_thousand": 65.959, + "new_tests_per_thousand": 1.07, + "new_tests_smoothed": 19600.0, + "new_tests_smoothed_per_thousand": 1.019, + "tests_per_case": 16.357, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-04", + "total_cases": 54009.0, + "new_cases": 823.0, + "new_cases_smoothed": 1158.143, + "total_deaths": 2432.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 2807.459, + "new_cases_per_million": 42.781, + "new_cases_smoothed_per_million": 60.202, + "total_deaths_per_million": 126.419, + "new_deaths_per_million": 0.988, + "new_deaths_smoothed_per_million": 1.678, + "new_tests_smoothed": 18262.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 15.767999999999999, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-05", + "total_cases": 55241.0, + "new_cases": 1232.0, + "new_cases_smoothed": 1169.714, + "total_deaths": 2480.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 2871.5, + "new_cases_per_million": 64.041, + "new_cases_smoothed_per_million": 60.803, + "total_deaths_per_million": 128.914, + "new_deaths_per_million": 2.495, + "new_deaths_smoothed_per_million": 1.79, + "total_tests": 1295222.0, + "total_tests_per_thousand": 67.327, + "new_tests_smoothed": 16799.0, + "new_tests_smoothed_per_thousand": 0.873, + "tests_per_case": 14.362, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-06", + "total_cases": 56550.0, + "new_cases": 1309.0, + "new_cases_smoothed": 1187.857, + "total_deaths": 2521.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 2939.543, + "new_cases_per_million": 68.044, + "new_cases_smoothed_per_million": 61.746, + "total_deaths_per_million": 131.045, + "new_deaths_per_million": 2.131, + "new_deaths_smoothed_per_million": 1.871, + "new_tests": 24147.0, + "total_tests": 1319369.0, + "total_tests_per_thousand": 68.583, + "new_tests_per_thousand": 1.255, + "new_tests_smoothed": 16680.0, + "new_tests_smoothed_per_thousand": 0.867, + "tests_per_case": 14.042, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-07", + "total_cases": 57895.0, + "new_cases": 1345.0, + "new_cases_smoothed": 1186.286, + "total_deaths": 2566.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 3009.458, + "new_cases_per_million": 69.915, + "new_cases_smoothed_per_million": 61.665, + "total_deaths_per_million": 133.384, + "new_deaths_per_million": 2.339, + "new_deaths_smoothed_per_million": 1.946, + "new_tests": 23946.0, + "total_tests": 1343315.0, + "total_tests_per_thousand": 69.827, + "new_tests_per_thousand": 1.245, + "new_tests_smoothed": 16751.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 14.120999999999999, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-08", + "total_cases": 59273.0, + "new_cases": 1378.0, + "new_cases_smoothed": 1198.143, + "total_deaths": 2616.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 3081.088, + "new_cases_per_million": 71.63, + "new_cases_smoothed_per_million": 62.281, + "total_deaths_per_million": 135.983, + "new_deaths_per_million": 2.599, + "new_deaths_smoothed_per_million": 2.027, + "new_tests": 21444.0, + "total_tests": 1364759.0, + "total_tests_per_thousand": 70.942, + "new_tests_per_thousand": 1.115, + "new_tests_smoothed": 17784.0, + "new_tests_smoothed_per_thousand": 0.924, + "tests_per_case": 14.843, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-09", + "total_cases": 60623.0, + "new_cases": 1350.0, + "new_cases_smoothed": 1216.0, + "total_deaths": 2659.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 3151.263, + "new_cases_per_million": 70.175, + "new_cases_smoothed_per_million": 63.209, + "total_deaths_per_million": 138.218, + "new_deaths_per_million": 2.235, + "new_deaths_smoothed_per_million": 2.079, + "new_tests": 13968.0, + "total_tests": 1378727.0, + "total_tests_per_thousand": 71.668, + "new_tests_per_thousand": 0.726, + "new_tests_smoothed": 18630.0, + "new_tests_smoothed_per_thousand": 0.968, + "tests_per_case": 15.321, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-10", + "total_cases": 61768.0, + "new_cases": 1145.0, + "new_cases_smoothed": 1226.0, + "total_deaths": 2700.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 3210.782, + "new_cases_per_million": 59.519, + "new_cases_smoothed_per_million": 63.729, + "total_deaths_per_million": 140.35, + "new_deaths_per_million": 2.131, + "new_deaths_smoothed_per_million": 2.131, + "new_tests": 6607.0, + "total_tests": 1385334.0, + "total_tests_per_thousand": 72.011, + "new_tests_per_thousand": 0.343, + "new_tests_smoothed": 16634.0, + "new_tests_smoothed_per_thousand": 0.865, + "tests_per_case": 13.568, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-11", + "total_cases": 62547.0, + "new_cases": 779.0, + "new_cases_smoothed": 1219.714, + "total_deaths": 2729.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 3251.275, + "new_cases_per_million": 40.493, + "new_cases_smoothed_per_million": 63.402, + "total_deaths_per_million": 141.857, + "new_deaths_per_million": 1.507, + "new_deaths_smoothed_per_million": 2.205, + "new_tests": 19511.0, + "total_tests": 1404845.0, + "total_tests_per_thousand": 73.026, + "new_tests_per_thousand": 1.014, + "new_tests_smoothed": 17541.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 14.380999999999998, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-12", + "total_cases": 63762.0, + "new_cases": 1215.0, + "new_cases_smoothed": 1217.286, + "total_deaths": 2764.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 3314.433, + "new_cases_per_million": 63.157, + "new_cases_smoothed_per_million": 63.276, + "total_deaths_per_million": 143.676, + "new_deaths_per_million": 1.819, + "new_deaths_smoothed_per_million": 2.109, + "new_tests": 22781.0, + "total_tests": 1427626.0, + "total_tests_per_thousand": 74.21, + "new_tests_per_thousand": 1.184, + "new_tests_smoothed": 18915.0, + "new_tests_smoothed_per_thousand": 0.983, + "tests_per_case": 15.539000000000001, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-13", + "total_cases": 65177.0, + "new_cases": 1415.0, + "new_cases_smoothed": 1232.429, + "total_deaths": 2807.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 3387.986, + "new_cases_per_million": 73.554, + "new_cases_smoothed_per_million": 64.063, + "total_deaths_per_million": 145.912, + "new_deaths_per_million": 2.235, + "new_deaths_smoothed_per_million": 2.124, + "new_tests": 22643.0, + "total_tests": 1450269.0, + "total_tests_per_thousand": 75.387, + "new_tests_per_thousand": 1.177, + "new_tests_smoothed": 18700.0, + "new_tests_smoothed_per_thousand": 0.972, + "tests_per_case": 15.173, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-14", + "total_cases": 66631.0, + "new_cases": 1454.0, + "new_cases_smoothed": 1248.0, + "total_deaths": 2860.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 3463.567, + "new_cases_per_million": 75.581, + "new_cases_smoothed_per_million": 64.873, + "total_deaths_per_million": 148.667, + "new_deaths_per_million": 2.755, + "new_deaths_smoothed_per_million": 2.183, + "new_tests": 27787.0, + "total_tests": 1478056.0, + "total_tests_per_thousand": 76.831, + "new_tests_per_thousand": 1.444, + "new_tests_smoothed": 19249.0, + "new_tests_smoothed_per_thousand": 1.001, + "tests_per_case": 15.424000000000001, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-15", + "total_cases": 68046.0, + "new_cases": 1415.0, + "new_cases_smoothed": 1253.286, + "total_deaths": 2904.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 41.143, + "total_cases_per_million": 3537.121, + "new_cases_per_million": 73.554, + "new_cases_smoothed_per_million": 65.147, + "total_deaths_per_million": 150.954, + "new_deaths_per_million": 2.287, + "new_deaths_smoothed_per_million": 2.139, + "new_tests": 23986.0, + "total_tests": 1502042.0, + "total_tests_per_thousand": 78.078, + "new_tests_per_thousand": 1.247, + "new_tests_smoothed": 19612.0, + "new_tests_smoothed_per_thousand": 1.019, + "tests_per_case": 15.648, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-16", + "total_cases": 69374.0, + "new_cases": 1328.0, + "new_cases_smoothed": 1250.143, + "total_deaths": 2954.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 3606.152, + "new_cases_per_million": 69.031, + "new_cases_smoothed_per_million": 64.984, + "total_deaths_per_million": 153.553, + "new_deaths_per_million": 2.599, + "new_deaths_smoothed_per_million": 2.191, + "new_tests": 11846.0, + "total_tests": 1513888.0, + "total_tests_per_thousand": 78.694, + "new_tests_per_thousand": 0.616, + "new_tests_smoothed": 19309.0, + "new_tests_smoothed_per_thousand": 1.004, + "tests_per_case": 15.445, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-17", + "total_cases": 70461.0, + "new_cases": 1087.0, + "new_cases_smoothed": 1241.857, + "total_deaths": 2991.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 3662.655, + "new_cases_per_million": 56.504, + "new_cases_smoothed_per_million": 64.553, + "total_deaths_per_million": 155.476, + "new_deaths_per_million": 1.923, + "new_deaths_smoothed_per_million": 2.161, + "new_tests": 6862.0, + "total_tests": 1520750.0, + "total_tests_per_thousand": 79.051, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 19345.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 15.577, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-18", + "total_cases": 71194.0, + "new_cases": 733.0, + "new_cases_smoothed": 1235.286, + "total_deaths": 3029.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 3700.758, + "new_cases_per_million": 38.102, + "new_cases_smoothed_per_million": 64.212, + "total_deaths_per_million": 157.451, + "new_deaths_per_million": 1.975, + "new_deaths_smoothed_per_million": 2.228, + "new_tests": 21344.0, + "total_tests": 1542094.0, + "total_tests_per_thousand": 80.16, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 19607.0, + "new_tests_smoothed_per_thousand": 1.019, + "tests_per_case": 15.872, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-19", + "total_cases": 72208.0, + "new_cases": 1014.0, + "new_cases_smoothed": 1206.571, + "total_deaths": 3074.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 44.286, + "total_cases_per_million": 3753.467, + "new_cases_per_million": 52.709, + "new_cases_smoothed_per_million": 62.719, + "total_deaths_per_million": 159.791, + "new_deaths_per_million": 2.339, + "new_deaths_smoothed_per_million": 2.302, + "new_tests": 24538.0, + "total_tests": 1566632.0, + "total_tests_per_thousand": 81.436, + "new_tests_per_thousand": 1.276, + "new_tests_smoothed": 19858.0, + "new_tests_smoothed_per_thousand": 1.032, + "tests_per_case": 16.458, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-20", + "total_cases": 73617.0, + "new_cases": 1409.0, + "new_cases_smoothed": 1205.714, + "total_deaths": 3106.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 42.714, + "total_cases_per_million": 3826.708, + "new_cases_per_million": 73.242, + "new_cases_smoothed_per_million": 62.675, + "total_deaths_per_million": 161.454, + "new_deaths_per_million": 1.663, + "new_deaths_smoothed_per_million": 2.22, + "new_tests": 24383.0, + "total_tests": 1591015.0, + "total_tests_per_thousand": 82.703, + "new_tests_per_thousand": 1.267, + "new_tests_smoothed": 20107.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 16.676, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-21", + "total_cases": 74963.0, + "new_cases": 1346.0, + "new_cases_smoothed": 1190.286, + "total_deaths": 3154.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 3896.675, + "new_cases_per_million": 69.967, + "new_cases_smoothed_per_million": 61.873, + "total_deaths_per_million": 163.949, + "new_deaths_per_million": 2.495, + "new_deaths_smoothed_per_million": 2.183, + "new_tests": 25363.0, + "total_tests": 1616378.0, + "total_tests_per_thousand": 84.021, + "new_tests_per_thousand": 1.318, + "new_tests_smoothed": 19760.0, + "new_tests_smoothed_per_thousand": 1.027, + "tests_per_case": 16.601, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-22", + "total_cases": 76355.0, + "new_cases": 1392.0, + "new_cases_smoothed": 1187.0, + "total_deaths": 3196.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 41.714, + "total_cases_per_million": 3969.033, + "new_cases_per_million": 72.358, + "new_cases_smoothed_per_million": 61.702, + "total_deaths_per_million": 166.132, + "new_deaths_per_million": 2.183, + "new_deaths_smoothed_per_million": 2.168, + "new_tests": 22992.0, + "total_tests": 1639370.0, + "total_tests_per_thousand": 85.217, + "new_tests_per_thousand": 1.195, + "new_tests_smoothed": 19618.0, + "new_tests_smoothed_per_thousand": 1.02, + "tests_per_case": 16.527, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-23", + "total_cases": 77544.0, + "new_cases": 1189.0, + "new_cases_smoothed": 1167.143, + "total_deaths": 3233.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 4030.839, + "new_cases_per_million": 61.806, + "new_cases_smoothed_per_million": 60.67, + "total_deaths_per_million": 168.056, + "new_deaths_per_million": 1.923, + "new_deaths_smoothed_per_million": 2.072, + "new_tests": 13274.0, + "total_tests": 1652644.0, + "total_tests_per_thousand": 85.907, + "new_tests_per_thousand": 0.69, + "new_tests_smoothed": 19822.0, + "new_tests_smoothed_per_thousand": 1.03, + "tests_per_case": 16.983, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-24", + "total_cases": 78525.0, + "new_cases": 981.0, + "new_cases_smoothed": 1152.0, + "total_deaths": 3272.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 4081.833, + "new_cases_per_million": 50.994, + "new_cases_smoothed_per_million": 59.882, + "total_deaths_per_million": 170.083, + "new_deaths_per_million": 2.027, + "new_deaths_smoothed_per_million": 2.087, + "new_tests": 6491.0, + "total_tests": 1659135.0, + "total_tests_per_thousand": 86.244, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 19769.0, + "new_tests_smoothed_per_thousand": 1.028, + "tests_per_case": 17.160999999999998, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-25", + "total_cases": 79330.0, + "new_cases": 805.0, + "new_cases_smoothed": 1162.286, + "total_deaths": 3309.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 4123.678, + "new_cases_per_million": 41.845, + "new_cases_smoothed_per_million": 60.417, + "total_deaths_per_million": 172.006, + "new_deaths_per_million": 1.923, + "new_deaths_smoothed_per_million": 2.079, + "new_tests": 20479.0, + "total_tests": 1679614.0, + "total_tests_per_thousand": 87.309, + "new_tests_per_thousand": 1.065, + "new_tests_smoothed": 19646.0, + "new_tests_smoothed_per_thousand": 1.021, + "tests_per_case": 16.903, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-26", + "total_cases": 80390.0, + "new_cases": 1060.0, + "new_cases_smoothed": 1168.857, + "total_deaths": 3367.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 4178.778, + "new_cases_per_million": 55.1, + "new_cases_smoothed_per_million": 60.759, + "total_deaths_per_million": 175.021, + "new_deaths_per_million": 3.015, + "new_deaths_smoothed_per_million": 2.176, + "new_tests": 25754.0, + "total_tests": 1705368.0, + "total_tests_per_thousand": 88.647, + "new_tests_per_thousand": 1.339, + "new_tests_smoothed": 19819.0, + "new_tests_smoothed_per_thousand": 1.03, + "tests_per_case": 16.956, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-27", + "total_cases": 81646.0, + "new_cases": 1256.0, + "new_cases_smoothed": 1147.0, + "total_deaths": 3421.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 4244.066, + "new_cases_per_million": 65.289, + "new_cases_smoothed_per_million": 59.623, + "total_deaths_per_million": 177.828, + "new_deaths_per_million": 2.807, + "new_deaths_smoothed_per_million": 2.339, + "new_tests": 25052.0, + "total_tests": 1730420.0, + "total_tests_per_thousand": 89.95, + "new_tests_per_thousand": 1.302, + "new_tests_smoothed": 19915.0, + "new_tests_smoothed_per_thousand": 1.035, + "tests_per_case": 17.363, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-28", + "total_cases": 83150.0, + "new_cases": 1504.0, + "new_cases_smoothed": 1169.571, + "total_deaths": 3459.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 4322.246, + "new_cases_per_million": 78.18, + "new_cases_smoothed_per_million": 60.796, + "total_deaths_per_million": 179.803, + "new_deaths_per_million": 1.975, + "new_deaths_smoothed_per_million": 2.265, + "new_tests": 26500.0, + "total_tests": 1756920.0, + "total_tests_per_thousand": 91.327, + "new_tests_per_thousand": 1.378, + "new_tests_smoothed": 20077.0, + "new_tests_smoothed_per_thousand": 1.044, + "tests_per_case": 17.166, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-29", + "total_cases": 84468.0, + "new_cases": 1318.0, + "new_cases_smoothed": 1159.0, + "total_deaths": 3507.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 44.429, + "total_cases_per_million": 4390.758, + "new_cases_per_million": 68.511, + "new_cases_smoothed_per_million": 60.246, + "total_deaths_per_million": 182.298, + "new_deaths_per_million": 2.495, + "new_deaths_smoothed_per_million": 2.309, + "new_tests": 24043.0, + "total_tests": 1780963.0, + "total_tests_per_thousand": 92.577, + "new_tests_per_thousand": 1.25, + "new_tests_smoothed": 20228.0, + "new_tests_smoothed_per_thousand": 1.051, + "tests_per_case": 17.453, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-30", + "total_cases": 85833.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1184.143, + "total_deaths": 3539.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 43.714, + "total_cases_per_million": 4461.712, + "new_cases_per_million": 70.954, + "new_cases_smoothed_per_million": 61.553, + "total_deaths_per_million": 183.962, + "new_deaths_per_million": 1.663, + "new_deaths_smoothed_per_million": 2.272, + "new_tests": 14670.0, + "total_tests": 1795633.0, + "total_tests_per_thousand": 93.339, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 20427.0, + "new_tests_smoothed_per_thousand": 1.062, + "tests_per_case": 17.25, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-31", + "total_cases": 86785.0, + "new_cases": 952.0, + "new_cases_smoothed": 1180.0, + "total_deaths": 3578.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 43.714, + "total_cases_per_million": 4511.198, + "new_cases_per_million": 49.486, + "new_cases_smoothed_per_million": 61.338, + "total_deaths_per_million": 185.989, + "new_deaths_per_million": 2.027, + "new_deaths_smoothed_per_million": 2.272, + "new_tests": 7313.0, + "total_tests": 1802946.0, + "total_tests_per_thousand": 93.72, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 20544.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 17.41, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-09-01", + "total_cases": 87540.0, + "new_cases": 755.0, + "new_cases_smoothed": 1172.857, + "total_deaths": 3621.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 44.571, + "total_cases_per_million": 4550.444, + "new_cases_per_million": 39.246, + "new_cases_smoothed_per_million": 60.967, + "total_deaths_per_million": 188.224, + "new_deaths_per_million": 2.235, + "new_deaths_smoothed_per_million": 2.317, + "new_tests": 22326.0, + "total_tests": 1825272.0, + "total_tests_per_thousand": 94.88, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 20808.0, + "new_tests_smoothed_per_thousand": 1.082, + "tests_per_case": 17.741, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-09-02", + "total_cases": 88593.0, + "new_cases": 1053.0, + "new_cases_smoothed": 1171.857, + "total_deaths": 3681.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 44.857, + "total_cases_per_million": 4605.181, + "new_cases_per_million": 54.736, + "new_cases_smoothed_per_million": 60.915, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 3.119, + "new_deaths_smoothed_per_million": 2.332, + "new_tests": 26816.0, + "total_tests": 1852088.0, + "total_tests_per_thousand": 96.274, + "new_tests_per_thousand": 1.394, + "new_tests_smoothed": 20960.0, + "new_tests_smoothed_per_thousand": 1.09, + "tests_per_case": 17.886, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-09-03", + "total_cases": 89891.0, + "new_cases": 1298.0, + "new_cases_smoothed": 1177.857, + "total_deaths": 3721.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 42.857, + "total_cases_per_million": 4672.652, + "new_cases_per_million": 67.472, + "new_cases_smoothed_per_million": 61.227, + "total_deaths_per_million": 193.422, + "new_deaths_per_million": 2.079, + "new_deaths_smoothed_per_million": 2.228, + "new_tests": 23975.0, + "total_tests": 1876063.0, + "total_tests_per_thousand": 97.52, + "new_tests_per_thousand": 1.246, + "new_tests_smoothed": 20806.0, + "new_tests_smoothed_per_thousand": 1.082, + "tests_per_case": 17.664, + "positive_rate": 0.057, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 91256.0, + "new_cases": 1365.0, + "new_cases_smoothed": 1158.0, + "total_deaths": 3765.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 43.714, + "total_cases_per_million": 4743.607, + "new_cases_per_million": 70.954, + "new_cases_smoothed_per_million": 60.194, + "total_deaths_per_million": 195.71, + "new_deaths_per_million": 2.287, + "new_deaths_smoothed_per_million": 2.272 + }, + { + "date": "2020-09-05", + "total_cases": 92595.0, + "new_cases": 1339.0, + "new_cases_smoothed": 1161.0, + "total_deaths": 3812.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 4813.21, + "new_cases_per_million": 69.603, + "new_cases_smoothed_per_million": 60.35, + "total_deaths_per_million": 198.153, + "new_deaths_per_million": 2.443, + "new_deaths_smoothed_per_million": 2.265 + } + ] + }, + "RUS": { + "continent": "Europe", + "location": "Russia", + "population": 145934460.0, + "population_density": 8.823, + "median_age": 39.6, + "aged_65_older": 14.178, + "aged_70_older": 9.393, + "gdp_per_capita": 24765.954, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 431.297, + "diabetes_prevalence": 6.18, + "female_smokers": 23.4, + "male_smokers": 58.3, + "hospital_beds_per_thousand": 8.05, + "life_expectancy": 72.58, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-01", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-04", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-05", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-06", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-07", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-08", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-09", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-10", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-11", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-12", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-13", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-14", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-15", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-16", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-17", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-18", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-19", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-20", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-29", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-01", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-03", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-04", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.007, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 46414.0, + "total_tests_per_thousand": 0.318, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-05", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4952.0, + "total_tests": 51366.0, + "total_tests_per_thousand": 0.352, + "new_tests_per_thousand": 0.034, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-06", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4322.0, + "total_tests": 55688.0, + "total_tests_per_thousand": 0.382, + "new_tests_per_thousand": 0.03, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-07", + "total_cases": 10.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4272.0, + "total_tests": 59960.0, + "total_tests_per_thousand": 0.411, + "new_tests_per_thousand": 0.029, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3231.0, + "total_tests": 63191.0, + "total_tests_per_thousand": 0.433, + "new_tests_per_thousand": 0.022, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-09", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-10", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 70601.0, + "total_tests_per_thousand": 0.484, + "tests_units": "tests performed", + "stringency_index": 31.94 + }, + { + "date": "2020-03-11", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6362.0, + "total_tests": 76963.0, + "total_tests_per_thousand": 0.527, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 4364.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 5091.333, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 31.94 + }, + { + "date": "2020-03-12", + "total_cases": 25.0, + "new_cases": 15.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.171, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4934.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 1644.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 31.94 + }, + { + "date": "2020-03-13", + "total_cases": 30.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.206, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 94852.0, + "total_tests_per_thousand": 0.65, + "new_tests_smoothed": 5595.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 1506.346, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 31.94 + }, + { + "date": "2020-03-14", + "total_cases": 45.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.308, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10031.0, + "total_tests": 104883.0, + "total_tests_per_thousand": 0.719, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 6418.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 1283.6, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 35.65 + }, + { + "date": "2020-03-15", + "total_cases": 59.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.096, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5056.0, + "total_tests": 109939.0, + "total_tests_per_thousand": 0.753, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 6678.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 954.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 35.65 + }, + { + "date": "2020-03-16", + "total_cases": 63.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.432, + "new_cases_per_million": 0.027, + "new_cases_smoothed_per_million": 0.052, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6122.0, + "total_tests": 116061.0, + "total_tests_per_thousand": 0.795, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 7024.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 927.698, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-03-17", + "total_cases": 93.0, + "new_cases": 30.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.637, + "new_cases_per_million": 0.206, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6793.0, + "total_tests": 122854.0, + "total_tests_per_thousand": 0.842, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 7465.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 629.578, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-03-18", + "total_cases": 114.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.781, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10247.0, + "total_tests": 133101.0, + "total_tests_per_thousand": 0.912, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 8020.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 539.808, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-03-19", + "total_cases": 147.0, + "new_cases": 33.0, + "new_cases_smoothed": 17.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.007, + "new_cases_per_million": 0.226, + "new_cases_smoothed_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10418.0, + "total_tests": 143519.0, + "total_tests_per_thousand": 0.983, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 8230.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 472.213, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-03-20", + "total_cases": 199.0, + "new_cases": 52.0, + "new_cases_smoothed": 24.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.364, + "new_cases_per_million": 0.356, + "new_cases_smoothed_per_million": 0.165, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12497.0, + "total_tests": 156016.0, + "total_tests_per_thousand": 1.069, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 8738.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 361.92900000000003, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-03-21", + "total_cases": 253.0, + "new_cases": 54.0, + "new_cases_smoothed": 29.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.734, + "new_cases_per_million": 0.37, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7513.0, + "total_tests": 163529.0, + "total_tests_per_thousand": 1.121, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 8378.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 281.952, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-22", + "total_cases": 306.0, + "new_cases": 53.0, + "new_cases_smoothed": 35.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.097, + "new_cases_per_million": 0.363, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2243.0, + "total_tests": 165772.0, + "total_tests_per_thousand": 1.136, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 7976.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 226.04, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-23", + "total_cases": 438.0, + "new_cases": 132.0, + "new_cases_smoothed": 53.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.001, + "new_cases_per_million": 0.905, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20146.0, + "total_tests": 185918.0, + "total_tests_per_thousand": 1.274, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 9980.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 186.293, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-24", + "total_cases": 438.0, + "new_cases": 0.0, + "new_cases_smoothed": 49.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.001, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6906.0, + "total_tests": 192824.0, + "total_tests_per_thousand": 1.321, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 9996.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 202.817, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-25", + "total_cases": 495.0, + "new_cases": 57.0, + "new_cases_smoothed": 54.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.392, + "new_cases_per_million": 0.391, + "new_cases_smoothed_per_million": 0.373, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4427.0, + "total_tests": 197251.0, + "total_tests_per_thousand": 1.352, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 9164.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 168.36700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-26", + "total_cases": 658.0, + "new_cases": 163.0, + "new_cases_smoothed": 73.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.509, + "new_cases_per_million": 1.117, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26258.0, + "total_tests": 223509.0, + "total_tests_per_thousand": 1.532, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 11427.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 156.534, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-27", + "total_cases": 840.0, + "new_cases": 182.0, + "new_cases_smoothed": 91.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.756, + "new_cases_per_million": 1.247, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 19868.0, + "total_tests": 243377.0, + "total_tests_per_thousand": 1.668, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 12480.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 136.287, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-03-28", + "total_cases": 1036.0, + "new_cases": 196.0, + "new_cases_smoothed": 111.857, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.099, + "new_cases_per_million": 1.343, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 20511.0, + "total_tests": 263888.0, + "total_tests_per_thousand": 1.808, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 14337.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 128.172, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-03-29", + "total_cases": 1264.0, + "new_cases": 228.0, + "new_cases_smoothed": 136.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.661, + "new_cases_per_million": 1.562, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 79635.0, + "total_tests": 343523.0, + "total_tests_per_thousand": 2.354, + "new_tests_per_thousand": 0.546, + "new_tests_smoothed": 25393.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 185.544, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-03-30", + "total_cases": 1534.0, + "new_cases": 270.0, + "new_cases_smoothed": 156.571, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.512, + "new_cases_per_million": 1.85, + "new_cases_smoothed_per_million": 1.073, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 27013.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 172.528, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-03-31", + "total_cases": 1836.0, + "new_cases": 302.0, + "new_cases_smoothed": 199.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 12.581, + "new_cases_per_million": 2.069, + "new_cases_smoothed_per_million": 1.369, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.01, + "total_tests": 406500.0, + "total_tests_per_thousand": 2.785, + "new_tests_smoothed": 30525.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 152.843, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-01", + "total_cases": 2337.0, + "new_cases": 501.0, + "new_cases_smoothed": 263.143, + "total_deaths": 17.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 16.014, + "new_cases_per_million": 3.433, + "new_cases_smoothed_per_million": 1.803, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 129500.0, + "total_tests": 536000.0, + "total_tests_per_thousand": 3.673, + "new_tests_per_thousand": 0.887, + "new_tests_smoothed": 48393.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 183.90400000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-02", + "total_cases": 2777.0, + "new_cases": 440.0, + "new_cases_smoothed": 302.714, + "total_deaths": 24.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 19.029, + "new_cases_per_million": 3.015, + "new_cases_smoothed_per_million": 2.074, + "total_deaths_per_million": 0.164, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.023, + "new_tests": 39103.0, + "total_tests": 575103.0, + "total_tests_per_thousand": 3.941, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 50228.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 165.925, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-03", + "total_cases": 3548.0, + "new_cases": 771.0, + "new_cases_smoothed": 386.857, + "total_deaths": 30.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 24.312, + "new_cases_per_million": 5.283, + "new_cases_smoothed_per_million": 2.651, + "total_deaths_per_million": 0.206, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 64503.0, + "total_tests": 639606.0, + "total_tests_per_thousand": 4.383, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 56604.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 146.31799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-04", + "total_cases": 4149.0, + "new_cases": 601.0, + "new_cases_smoothed": 444.714, + "total_deaths": 34.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 28.431, + "new_cases_per_million": 4.118, + "new_cases_smoothed_per_million": 3.047, + "total_deaths_per_million": 0.233, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 57398.0, + "total_tests": 697004.0, + "total_tests_per_thousand": 4.776, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 61874.0, + "new_tests_smoothed_per_thousand": 0.424, + "tests_per_case": 139.132, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-05", + "total_cases": 4731.0, + "new_cases": 582.0, + "new_cases_smoothed": 495.286, + "total_deaths": 43.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 32.419, + "new_cases_per_million": 3.988, + "new_cases_smoothed_per_million": 3.394, + "total_deaths_per_million": 0.295, + "new_deaths_per_million": 0.062, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 61397.0, + "total_tests": 758401.0, + "total_tests_per_thousand": 5.197, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 59268.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 119.664, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-06", + "total_cases": 5389.0, + "new_cases": 658.0, + "new_cases_smoothed": 550.714, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 36.928, + "new_cases_per_million": 4.509, + "new_cases_smoothed_per_million": 3.774, + "total_deaths_per_million": 0.308, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 37122.0, + "total_tests": 795523.0, + "total_tests_per_thousand": 5.451, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 60073.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 109.08200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 6343.0, + "new_cases": 954.0, + "new_cases_smoothed": 643.857, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 43.465, + "new_cases_per_million": 6.537, + "new_cases_smoothed_per_million": 4.412, + "total_deaths_per_million": 0.322, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 114698.0, + "total_tests": 910221.0, + "total_tests_per_thousand": 6.237, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 71960.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 111.764, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 7497.0, + "new_cases": 1154.0, + "new_cases_smoothed": 737.143, + "total_deaths": 58.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 51.372, + "new_cases_per_million": 7.908, + "new_cases_smoothed_per_million": 5.051, + "total_deaths_per_million": 0.397, + "new_deaths_per_million": 0.075, + "new_deaths_smoothed_per_million": 0.04, + "new_tests": 94498.0, + "total_tests": 1004719.0, + "total_tests_per_thousand": 6.885, + "new_tests_per_thousand": 0.648, + "new_tests_smoothed": 66960.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 90.837, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 8672.0, + "new_cases": 1175.0, + "new_cases_smoothed": 842.143, + "total_deaths": 63.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 59.424, + "new_cases_per_million": 8.052, + "new_cases_smoothed_per_million": 5.771, + "total_deaths_per_million": 0.432, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.038, + "new_tests": 88092.0, + "total_tests": 1092811.0, + "total_tests_per_thousand": 7.488, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 73958.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 87.821, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 10131.0, + "new_cases": 1459.0, + "new_cases_smoothed": 940.429, + "total_deaths": 76.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 69.422, + "new_cases_per_million": 9.998, + "new_cases_smoothed_per_million": 6.444, + "total_deaths_per_million": 0.521, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 91631.0, + "total_tests": 1184442.0, + "total_tests_per_thousand": 8.116, + "new_tests_per_thousand": 0.628, + "new_tests_smoothed": 77834.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 82.764, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-11", + "total_cases": 11917.0, + "new_cases": 1786.0, + "new_cases_smoothed": 1109.714, + "total_deaths": 94.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 81.66, + "new_cases_per_million": 12.238, + "new_cases_smoothed_per_million": 7.604, + "total_deaths_per_million": 0.644, + "new_deaths_per_million": 0.123, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 94305.0, + "total_tests": 1278747.0, + "total_tests_per_thousand": 8.762, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 83106.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 74.89, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-12", + "total_cases": 13584.0, + "new_cases": 1667.0, + "new_cases_smoothed": 1264.714, + "total_deaths": 106.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 93.083, + "new_cases_per_million": 11.423, + "new_cases_smoothed_per_million": 8.666, + "total_deaths_per_million": 0.726, + "new_deaths_per_million": 0.082, + "new_deaths_smoothed_per_million": 0.062, + "new_tests": 81246.0, + "total_tests": 1359993.0, + "total_tests_per_thousand": 9.319, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 85942.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 67.954, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-13", + "total_cases": 15770.0, + "new_cases": 2186.0, + "new_cases_smoothed": 1483.0, + "total_deaths": 130.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 108.062, + "new_cases_per_million": 14.979, + "new_cases_smoothed_per_million": 10.162, + "total_deaths_per_million": 0.891, + "new_deaths_per_million": 0.164, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 66021.0, + "total_tests": 1426014.0, + "total_tests_per_thousand": 9.772, + "new_tests_per_thousand": 0.452, + "new_tests_smoothed": 90070.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 60.735, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-14", + "total_cases": 18328.0, + "new_cases": 2558.0, + "new_cases_smoothed": 1712.143, + "total_deaths": 148.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 125.591, + "new_cases_per_million": 17.528, + "new_cases_smoothed_per_million": 11.732, + "total_deaths_per_million": 1.014, + "new_deaths_per_million": 0.123, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 91978.0, + "total_tests": 1517992.0, + "total_tests_per_thousand": 10.402, + "new_tests_per_thousand": 0.63, + "new_tests_smoothed": 86824.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 50.711000000000006, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-15", + "total_cases": 21102.0, + "new_cases": 2774.0, + "new_cases_smoothed": 1943.571, + "total_deaths": 170.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 144.599, + "new_cases_per_million": 19.009, + "new_cases_smoothed_per_million": 13.318, + "total_deaths_per_million": 1.165, + "new_deaths_per_million": 0.151, + "new_deaths_smoothed_per_million": 0.11, + "new_tests": 95421.0, + "total_tests": 1613413.0, + "total_tests_per_thousand": 11.056, + "new_tests_per_thousand": 0.654, + "new_tests_smoothed": 86956.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 44.74, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-16", + "total_cases": 24490.0, + "new_cases": 3388.0, + "new_cases_smoothed": 2259.714, + "total_deaths": 198.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 167.815, + "new_cases_per_million": 23.216, + "new_cases_smoothed_per_million": 15.484, + "total_deaths_per_million": 1.357, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 104606.0, + "total_tests": 1718019.0, + "total_tests_per_thousand": 11.773, + "new_tests_per_thousand": 0.717, + "new_tests_smoothed": 89315.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 39.525, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-17", + "total_cases": 27938.0, + "new_cases": 3448.0, + "new_cases_smoothed": 2543.857, + "total_deaths": 232.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 191.442, + "new_cases_per_million": 23.627, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 1.59, + "new_deaths_per_million": 0.233, + "new_deaths_smoothed_per_million": 0.153, + "new_tests": 113873.0, + "total_tests": 1831892.0, + "total_tests_per_thousand": 12.553, + "new_tests_per_thousand": 0.78, + "new_tests_smoothed": 92493.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 36.359, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-18", + "total_cases": 32008.0, + "new_cases": 4070.0, + "new_cases_smoothed": 2870.143, + "total_deaths": 273.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 25.571, + "total_cases_per_million": 219.331, + "new_cases_per_million": 27.889, + "new_cases_smoothed_per_million": 19.667, + "total_deaths_per_million": 1.871, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 117921.0, + "total_tests": 1949813.0, + "total_tests_per_thousand": 13.361, + "new_tests_per_thousand": 0.808, + "new_tests_smoothed": 95867.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 33.400999999999996, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-19", + "total_cases": 36793.0, + "new_cases": 4785.0, + "new_cases_smoothed": 3315.571, + "total_deaths": 313.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 252.12, + "new_cases_per_million": 32.789, + "new_cases_smoothed_per_million": 22.72, + "total_deaths_per_million": 2.145, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.203, + "new_tests": 103506.0, + "total_tests": 2053319.0, + "total_tests_per_thousand": 14.07, + "new_tests_per_thousand": 0.709, + "new_tests_smoothed": 99047.0, + "new_tests_smoothed_per_thousand": 0.679, + "tests_per_case": 29.873, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-20", + "total_cases": 42853.0, + "new_cases": 6060.0, + "new_cases_smoothed": 3869.0, + "total_deaths": 361.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 293.646, + "new_cases_per_million": 41.525, + "new_cases_smoothed_per_million": 26.512, + "total_deaths_per_million": 2.474, + "new_deaths_per_million": 0.329, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 89285.0, + "total_tests": 2142604.0, + "total_tests_per_thousand": 14.682, + "new_tests_per_thousand": 0.612, + "new_tests_smoothed": 102370.0, + "new_tests_smoothed_per_thousand": 0.701, + "tests_per_case": 26.459, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-21", + "total_cases": 47121.0, + "new_cases": 4268.0, + "new_cases_smoothed": 4113.286, + "total_deaths": 405.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 36.714, + "total_cases_per_million": 322.892, + "new_cases_per_million": 29.246, + "new_cases_smoothed_per_million": 28.186, + "total_deaths_per_million": 2.775, + "new_deaths_per_million": 0.302, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 109935.0, + "total_tests": 2252539.0, + "total_tests_per_thousand": 15.435, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 104935.0, + "new_tests_smoothed_per_thousand": 0.719, + "tests_per_case": 25.511, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 52763.0, + "new_cases": 5642.0, + "new_cases_smoothed": 4523.0, + "total_deaths": 456.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 361.553, + "new_cases_per_million": 38.661, + "new_cases_smoothed_per_million": 30.993, + "total_deaths_per_million": 3.125, + "new_deaths_per_million": 0.349, + "new_deaths_smoothed_per_million": 0.28, + "new_tests": 149077.0, + "total_tests": 2401616.0, + "total_tests_per_thousand": 16.457, + "new_tests_per_thousand": 1.022, + "new_tests_smoothed": 112600.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 24.895, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 57999.0, + "new_cases": 5236.0, + "new_cases_smoothed": 4787.0, + "total_deaths": 513.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 397.432, + "new_cases_per_million": 35.879, + "new_cases_smoothed_per_million": 32.802, + "total_deaths_per_million": 3.515, + "new_deaths_per_million": 0.391, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 150384.0, + "total_tests": 2552000.0, + "total_tests_per_thousand": 17.487, + "new_tests_per_thousand": 1.03, + "new_tests_smoothed": 119140.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 24.888, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 62773.0, + "new_cases": 4774.0, + "new_cases_smoothed": 4976.429, + "total_deaths": 555.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 46.143, + "total_cases_per_million": 430.145, + "new_cases_per_million": 32.713, + "new_cases_smoothed_per_million": 34.1, + "total_deaths_per_million": 3.803, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.316, + "new_tests": 169500.0, + "total_tests": 2721500.0, + "total_tests_per_thousand": 18.649, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 127087.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 25.538, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 68622.0, + "new_cases": 5849.0, + "new_cases_smoothed": 5230.571, + "total_deaths": 615.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 48.857, + "total_cases_per_million": 470.225, + "new_cases_per_million": 40.08, + "new_cases_smoothed_per_million": 35.842, + "total_deaths_per_million": 4.214, + "new_deaths_per_million": 0.411, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 156199.0, + "total_tests": 2877699.0, + "total_tests_per_thousand": 19.719, + "new_tests_per_thousand": 1.07, + "new_tests_smoothed": 132555.0, + "new_tests_smoothed_per_thousand": 0.908, + "tests_per_case": 25.342, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 74588.0, + "new_cases": 5966.0, + "new_cases_smoothed": 5399.286, + "total_deaths": 681.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 511.106, + "new_cases_per_million": 40.881, + "new_cases_smoothed_per_million": 36.998, + "total_deaths_per_million": 4.666, + "new_deaths_per_million": 0.452, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 141735.0, + "total_tests": 3019434.0, + "total_tests_per_thousand": 20.69, + "new_tests_per_thousand": 0.971, + "new_tests_smoothed": 138016.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 25.561999999999998, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 80949.0, + "new_cases": 6361.0, + "new_cases_smoothed": 5442.286, + "total_deaths": 747.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 55.143, + "total_cases_per_million": 554.694, + "new_cases_per_million": 43.588, + "new_cases_smoothed_per_million": 37.293, + "total_deaths_per_million": 5.119, + "new_deaths_per_million": 0.452, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 119824.0, + "total_tests": 3139258.0, + "total_tests_per_thousand": 21.511, + "new_tests_per_thousand": 0.821, + "new_tests_smoothed": 142379.0, + "new_tests_smoothed_per_thousand": 0.976, + "tests_per_case": 26.162, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-28", + "total_cases": 87147.0, + "new_cases": 6198.0, + "new_cases_smoothed": 5718.0, + "total_deaths": 795.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 55.714, + "total_cases_per_million": 597.165, + "new_cases_per_million": 42.471, + "new_cases_smoothed_per_million": 39.182, + "total_deaths_per_million": 5.448, + "new_deaths_per_million": 0.329, + "new_deaths_smoothed_per_million": 0.382, + "new_tests": 164459.0, + "total_tests": 3303717.0, + "total_tests_per_thousand": 22.638, + "new_tests_per_thousand": 1.127, + "new_tests_smoothed": 150168.0, + "new_tests_smoothed_per_thousand": 1.029, + "tests_per_case": 26.261999999999997, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-29", + "total_cases": 93558.0, + "new_cases": 6411.0, + "new_cases_smoothed": 5827.857, + "total_deaths": 867.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 58.714, + "total_cases_per_million": 641.096, + "new_cases_per_million": 43.931, + "new_cases_smoothed_per_million": 39.935, + "total_deaths_per_million": 5.941, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.402, + "new_tests": 194591.0, + "total_tests": 3498308.0, + "total_tests_per_thousand": 23.972, + "new_tests_per_thousand": 1.333, + "new_tests_smoothed": 156670.0, + "new_tests_smoothed_per_thousand": 1.074, + "tests_per_case": 26.883000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-30", + "total_cases": 99399.0, + "new_cases": 5841.0, + "new_cases_smoothed": 5914.286, + "total_deaths": 972.0, + "new_deaths": 105.0, + "new_deaths_smoothed": 65.571, + "total_cases_per_million": 681.121, + "new_cases_per_million": 40.025, + "new_cases_smoothed_per_million": 40.527, + "total_deaths_per_million": 6.661, + "new_deaths_per_million": 0.72, + "new_deaths_smoothed_per_million": 0.449, + "new_tests": 225499.0, + "total_tests": 3723807.0, + "total_tests_per_thousand": 25.517, + "new_tests_per_thousand": 1.545, + "new_tests_smoothed": 167401.0, + "new_tests_smoothed_per_thousand": 1.147, + "tests_per_case": 28.305, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-01", + "total_cases": 106498.0, + "new_cases": 7099.0, + "new_cases_smoothed": 6246.429, + "total_deaths": 1073.0, + "new_deaths": 101.0, + "new_deaths_smoothed": 74.0, + "total_cases_per_million": 729.766, + "new_cases_per_million": 48.645, + "new_cases_smoothed_per_million": 42.803, + "total_deaths_per_million": 7.353, + "new_deaths_per_million": 0.692, + "new_deaths_smoothed_per_million": 0.507, + "new_tests": 221711.0, + "total_tests": 3945518.0, + "total_tests_per_thousand": 27.036, + "new_tests_per_thousand": 1.519, + "new_tests_smoothed": 174860.0, + "new_tests_smoothed_per_thousand": 1.198, + "tests_per_case": 27.994, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-02", + "total_cases": 114431.0, + "new_cases": 7933.0, + "new_cases_smoothed": 6544.143, + "total_deaths": 1169.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 784.126, + "new_cases_per_million": 54.36, + "new_cases_smoothed_per_million": 44.843, + "total_deaths_per_million": 8.01, + "new_deaths_per_million": 0.658, + "new_deaths_smoothed_per_million": 0.542, + "new_tests": 154481.0, + "total_tests": 4099999.0, + "total_tests_per_thousand": 28.095, + "new_tests_per_thousand": 1.059, + "new_tests_smoothed": 174614.0, + "new_tests_smoothed_per_thousand": 1.197, + "tests_per_case": 26.682, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-03", + "total_cases": 124054.0, + "new_cases": 9623.0, + "new_cases_smoothed": 7066.571, + "total_deaths": 1222.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 77.286, + "total_cases_per_million": 850.067, + "new_cases_per_million": 65.941, + "new_cases_smoothed_per_million": 48.423, + "total_deaths_per_million": 8.374, + "new_deaths_per_million": 0.363, + "new_deaths_smoothed_per_million": 0.53, + "new_tests": 203244.0, + "total_tests": 4303243.0, + "total_tests_per_thousand": 29.488, + "new_tests_per_thousand": 1.393, + "new_tests_smoothed": 183401.0, + "new_tests_smoothed_per_thousand": 1.257, + "tests_per_case": 25.953000000000003, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-04", + "total_cases": 134687.0, + "new_cases": 10633.0, + "new_cases_smoothed": 7676.857, + "total_deaths": 1280.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 76.143, + "total_cases_per_million": 922.928, + "new_cases_per_million": 72.861, + "new_cases_smoothed_per_million": 52.605, + "total_deaths_per_million": 8.771, + "new_deaths_per_million": 0.397, + "new_deaths_smoothed_per_million": 0.522, + "new_tests": 157114.0, + "total_tests": 4460357.0, + "total_tests_per_thousand": 30.564, + "new_tests_per_thousand": 1.077, + "new_tests_smoothed": 188728.0, + "new_tests_smoothed_per_thousand": 1.293, + "tests_per_case": 24.584, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-05", + "total_cases": 145268.0, + "new_cases": 10581.0, + "new_cases_smoothed": 8303.0, + "total_deaths": 1356.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 80.143, + "total_cases_per_million": 995.433, + "new_cases_per_million": 72.505, + "new_cases_smoothed_per_million": 56.895, + "total_deaths_per_million": 9.292, + "new_deaths_per_million": 0.521, + "new_deaths_smoothed_per_million": 0.549, + "new_tests": 173374.0, + "total_tests": 4633731.0, + "total_tests_per_thousand": 31.752, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 190002.0, + "new_tests_smoothed_per_thousand": 1.302, + "tests_per_case": 22.884, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-06", + "total_cases": 155370.0, + "new_cases": 10102.0, + "new_cases_smoothed": 8830.286, + "total_deaths": 1451.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 83.429, + "total_cases_per_million": 1064.656, + "new_cases_per_million": 69.223, + "new_cases_smoothed_per_million": 60.509, + "total_deaths_per_million": 9.943, + "new_deaths_per_million": 0.651, + "new_deaths_smoothed_per_million": 0.572, + "new_tests": 169461.0, + "total_tests": 4803192.0, + "total_tests_per_thousand": 32.913, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 186412.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 21.111, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-07", + "total_cases": 165929.0, + "new_cases": 10559.0, + "new_cases_smoothed": 9504.286, + "total_deaths": 1537.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 80.714, + "total_cases_per_million": 1137.01, + "new_cases_per_million": 72.354, + "new_cases_smoothed_per_million": 65.127, + "total_deaths_per_million": 10.532, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 0.553, + "new_tests": 184276.0, + "total_tests": 4987468.0, + "total_tests_per_thousand": 34.176, + "new_tests_per_thousand": 1.263, + "new_tests_smoothed": 180523.0, + "new_tests_smoothed_per_thousand": 1.237, + "tests_per_case": 18.994, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-08", + "total_cases": 177160.0, + "new_cases": 11231.0, + "new_cases_smoothed": 10094.571, + "total_deaths": 1625.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 78.857, + "total_cases_per_million": 1213.97, + "new_cases_per_million": 76.959, + "new_cases_smoothed_per_million": 69.172, + "total_deaths_per_million": 11.135, + "new_deaths_per_million": 0.603, + "new_deaths_smoothed_per_million": 0.54, + "new_tests": 234496.0, + "total_tests": 5221964.0, + "total_tests_per_thousand": 35.783, + "new_tests_per_thousand": 1.607, + "new_tests_smoothed": 182349.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 18.064, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-09", + "total_cases": 187859.0, + "new_cases": 10699.0, + "new_cases_smoothed": 10489.714, + "total_deaths": 1723.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 1287.283, + "new_cases_per_million": 73.314, + "new_cases_smoothed_per_million": 71.88, + "total_deaths_per_million": 11.807, + "new_deaths_per_million": 0.672, + "new_deaths_smoothed_per_million": 0.542, + "new_tests": 226499.0, + "total_tests": 5448463.0, + "total_tests_per_thousand": 37.335, + "new_tests_per_thousand": 1.552, + "new_tests_smoothed": 192638.0, + "new_tests_smoothed_per_thousand": 1.32, + "tests_per_case": 18.364, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-10", + "total_cases": 198676.0, + "new_cases": 10817.0, + "new_cases_smoothed": 10660.286, + "total_deaths": 1827.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 86.429, + "total_cases_per_million": 1361.406, + "new_cases_per_million": 74.122, + "new_cases_smoothed_per_million": 73.048, + "total_deaths_per_million": 12.519, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.592, + "new_tests": 188300.0, + "total_tests": 5636763.0, + "total_tests_per_thousand": 38.625, + "new_tests_per_thousand": 1.29, + "new_tests_smoothed": 190503.0, + "new_tests_smoothed_per_thousand": 1.305, + "tests_per_case": 17.87, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-11", + "total_cases": 209688.0, + "new_cases": 11012.0, + "new_cases_smoothed": 10714.429, + "total_deaths": 1915.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 90.714, + "total_cases_per_million": 1436.864, + "new_cases_per_million": 75.459, + "new_cases_smoothed_per_million": 73.419, + "total_deaths_per_million": 13.122, + "new_deaths_per_million": 0.603, + "new_deaths_smoothed_per_million": 0.622, + "new_tests": 168641.0, + "total_tests": 5805404.0, + "total_tests_per_thousand": 39.781, + "new_tests_per_thousand": 1.156, + "new_tests_smoothed": 192150.0, + "new_tests_smoothed_per_thousand": 1.317, + "tests_per_case": 17.934, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-12", + "total_cases": 221344.0, + "new_cases": 11656.0, + "new_cases_smoothed": 10868.0, + "total_deaths": 2009.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 93.286, + "total_cases_per_million": 1516.736, + "new_cases_per_million": 79.871, + "new_cases_smoothed_per_million": 74.472, + "total_deaths_per_million": 13.766, + "new_deaths_per_million": 0.644, + "new_deaths_smoothed_per_million": 0.639, + "new_tests": 177154.0, + "total_tests": 5982558.0, + "total_tests_per_thousand": 40.995, + "new_tests_per_thousand": 1.214, + "new_tests_smoothed": 192690.0, + "new_tests_smoothed_per_thousand": 1.32, + "tests_per_case": 17.73, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-13", + "total_cases": 232243.0, + "new_cases": 10899.0, + "new_cases_smoothed": 10981.857, + "total_deaths": 2116.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 95.0, + "total_cases_per_million": 1591.42, + "new_cases_per_million": 74.684, + "new_cases_smoothed_per_million": 75.252, + "total_deaths_per_million": 14.5, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.651, + "new_tests": 205544.0, + "total_tests": 6188102.0, + "total_tests_per_thousand": 42.403, + "new_tests_per_thousand": 1.408, + "new_tests_smoothed": 197844.0, + "new_tests_smoothed_per_thousand": 1.356, + "tests_per_case": 18.016, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-14", + "total_cases": 242271.0, + "new_cases": 10028.0, + "new_cases_smoothed": 10906.0, + "total_deaths": 2212.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 96.429, + "total_cases_per_million": 1660.136, + "new_cases_per_million": 68.716, + "new_cases_smoothed_per_million": 74.732, + "total_deaths_per_million": 15.157, + "new_deaths_per_million": 0.658, + "new_deaths_smoothed_per_million": 0.661, + "new_tests": 225846.0, + "total_tests": 6413948.0, + "total_tests_per_thousand": 43.951, + "new_tests_per_thousand": 1.548, + "new_tests_smoothed": 203783.0, + "new_tests_smoothed_per_thousand": 1.396, + "tests_per_case": 18.685, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-15", + "total_cases": 252245.0, + "new_cases": 9974.0, + "new_cases_smoothed": 10726.429, + "total_deaths": 2305.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 97.143, + "total_cases_per_million": 1728.481, + "new_cases_per_million": 68.346, + "new_cases_smoothed_per_million": 73.502, + "total_deaths_per_million": 15.795, + "new_deaths_per_million": 0.637, + "new_deaths_smoothed_per_million": 0.666, + "new_tests": 242392.0, + "total_tests": 6656340.0, + "total_tests_per_thousand": 45.612, + "new_tests_per_thousand": 1.661, + "new_tests_smoothed": 204911.0, + "new_tests_smoothed_per_thousand": 1.404, + "tests_per_case": 19.102999999999998, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-16", + "total_cases": 262843.0, + "new_cases": 10598.0, + "new_cases_smoothed": 10712.0, + "total_deaths": 2418.0, + "new_deaths": 113.0, + "new_deaths_smoothed": 99.286, + "total_cases_per_million": 1801.103, + "new_cases_per_million": 72.622, + "new_cases_smoothed_per_million": 73.403, + "total_deaths_per_million": 16.569, + "new_deaths_per_million": 0.774, + "new_deaths_smoothed_per_million": 0.68, + "new_tests": 259748.0, + "total_tests": 6916088.0, + "total_tests_per_thousand": 47.392, + "new_tests_per_thousand": 1.78, + "new_tests_smoothed": 209661.0, + "new_tests_smoothed_per_thousand": 1.437, + "tests_per_case": 19.573, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-17", + "total_cases": 272043.0, + "new_cases": 9200.0, + "new_cases_smoothed": 10481.0, + "total_deaths": 2537.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 101.429, + "total_cases_per_million": 1864.145, + "new_cases_per_million": 63.042, + "new_cases_smoothed_per_million": 71.82, + "total_deaths_per_million": 17.385, + "new_deaths_per_million": 0.815, + "new_deaths_smoothed_per_million": 0.695, + "new_tests": 230926.0, + "total_tests": 7147014.0, + "total_tests_per_thousand": 48.974, + "new_tests_per_thousand": 1.582, + "new_tests_smoothed": 215750.0, + "new_tests_smoothed_per_thousand": 1.478, + "tests_per_case": 20.585, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-18", + "total_cases": 281752.0, + "new_cases": 9709.0, + "new_cases_smoothed": 10294.857, + "total_deaths": 2631.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 102.286, + "total_cases_per_million": 1930.675, + "new_cases_per_million": 66.53, + "new_cases_smoothed_per_million": 70.544, + "total_deaths_per_million": 18.029, + "new_deaths_per_million": 0.644, + "new_deaths_smoothed_per_million": 0.701, + "new_tests": 205302.0, + "total_tests": 7352316.0, + "total_tests_per_thousand": 50.381, + "new_tests_per_thousand": 1.407, + "new_tests_smoothed": 220987.0, + "new_tests_smoothed_per_thousand": 1.514, + "tests_per_case": 21.465999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-19", + "total_cases": 290678.0, + "new_cases": 8926.0, + "new_cases_smoothed": 9904.857, + "total_deaths": 2722.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 101.857, + "total_cases_per_million": 1991.839, + "new_cases_per_million": 61.164, + "new_cases_smoothed_per_million": 67.872, + "total_deaths_per_million": 18.652, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 0.698, + "new_tests": 225713.0, + "total_tests": 7578029.0, + "total_tests_per_thousand": 51.928, + "new_tests_per_thousand": 1.547, + "new_tests_smoothed": 227924.0, + "new_tests_smoothed_per_thousand": 1.562, + "tests_per_case": 23.011, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-20", + "total_cases": 299941.0, + "new_cases": 9263.0, + "new_cases_smoothed": 9671.143, + "total_deaths": 2837.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 103.0, + "total_cases_per_million": 2055.313, + "new_cases_per_million": 63.474, + "new_cases_smoothed_per_million": 66.27, + "total_deaths_per_million": 19.44, + "new_deaths_per_million": 0.788, + "new_deaths_smoothed_per_million": 0.706, + "new_tests": 262851.0, + "total_tests": 7840880.0, + "total_tests_per_thousand": 53.729, + "new_tests_per_thousand": 1.801, + "new_tests_smoothed": 236111.0, + "new_tests_smoothed_per_thousand": 1.618, + "tests_per_case": 24.414, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-21", + "total_cases": 308705.0, + "new_cases": 8764.0, + "new_cases_smoothed": 9490.571, + "total_deaths": 2972.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 108.571, + "total_cases_per_million": 2115.367, + "new_cases_per_million": 60.054, + "new_cases_smoothed_per_million": 65.033, + "total_deaths_per_million": 20.365, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 285746.0, + "total_tests": 8126626.0, + "total_tests_per_thousand": 55.687, + "new_tests_per_thousand": 1.958, + "new_tests_smoothed": 244668.0, + "new_tests_smoothed_per_thousand": 1.677, + "tests_per_case": 25.78, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-22", + "total_cases": 317554.0, + "new_cases": 8849.0, + "new_cases_smoothed": 9329.857, + "total_deaths": 3099.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 113.429, + "total_cases_per_million": 2176.004, + "new_cases_per_million": 60.637, + "new_cases_smoothed_per_million": 63.932, + "total_deaths_per_million": 21.236, + "new_deaths_per_million": 0.87, + "new_deaths_smoothed_per_million": 0.777, + "new_tests": 276121.0, + "total_tests": 8402747.0, + "total_tests_per_thousand": 57.579, + "new_tests_per_thousand": 1.892, + "new_tests_smoothed": 249487.0, + "new_tests_smoothed_per_thousand": 1.71, + "tests_per_case": 26.741, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-23", + "total_cases": 326448.0, + "new_cases": 8894.0, + "new_cases_smoothed": 9086.429, + "total_deaths": 3249.0, + "new_deaths": 150.0, + "new_deaths_smoothed": 118.714, + "total_cases_per_million": 2236.949, + "new_cases_per_million": 60.945, + "new_cases_smoothed_per_million": 62.264, + "total_deaths_per_million": 22.263, + "new_deaths_per_million": 1.028, + "new_deaths_smoothed_per_million": 0.813, + "new_tests": 282558.0, + "total_tests": 8685305.0, + "total_tests_per_thousand": 59.515, + "new_tests_per_thousand": 1.936, + "new_tests_smoothed": 252745.0, + "new_tests_smoothed_per_thousand": 1.732, + "tests_per_case": 27.816, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-24", + "total_cases": 335882.0, + "new_cases": 9434.0, + "new_cases_smoothed": 9119.857, + "total_deaths": 3388.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 121.571, + "total_cases_per_million": 2301.595, + "new_cases_per_million": 64.645, + "new_cases_smoothed_per_million": 62.493, + "total_deaths_per_million": 23.216, + "new_deaths_per_million": 0.952, + "new_deaths_smoothed_per_million": 0.833, + "new_tests": 260079.0, + "total_tests": 8945384.0, + "total_tests_per_thousand": 61.297, + "new_tests_per_thousand": 1.782, + "new_tests_smoothed": 256910.0, + "new_tests_smoothed_per_thousand": 1.76, + "tests_per_case": 28.17, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-25", + "total_cases": 344481.0, + "new_cases": 8599.0, + "new_cases_smoothed": 8961.286, + "total_deaths": 3541.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 130.0, + "total_cases_per_million": 2360.519, + "new_cases_per_million": 58.924, + "new_cases_smoothed_per_million": 61.406, + "total_deaths_per_million": 24.264, + "new_deaths_per_million": 1.048, + "new_deaths_smoothed_per_million": 0.891, + "new_tests": 215206.0, + "total_tests": 9160590.0, + "total_tests_per_thousand": 62.772, + "new_tests_per_thousand": 1.475, + "new_tests_smoothed": 258325.0, + "new_tests_smoothed_per_thousand": 1.77, + "tests_per_case": 28.826999999999998, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-26", + "total_cases": 353427.0, + "new_cases": 8946.0, + "new_cases_smoothed": 8964.143, + "total_deaths": 3633.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 130.143, + "total_cases_per_million": 2421.82, + "new_cases_per_million": 61.301, + "new_cases_smoothed_per_million": 61.426, + "total_deaths_per_million": 24.895, + "new_deaths_per_million": 0.63, + "new_deaths_smoothed_per_million": 0.892, + "new_tests": 255402.0, + "total_tests": 9415992.0, + "total_tests_per_thousand": 64.522, + "new_tests_per_thousand": 1.75, + "new_tests_smoothed": 262566.0, + "new_tests_smoothed_per_thousand": 1.799, + "tests_per_case": 29.291, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-27", + "total_cases": 362342.0, + "new_cases": 8915.0, + "new_cases_smoothed": 8914.429, + "total_deaths": 3807.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 138.571, + "total_cases_per_million": 2482.909, + "new_cases_per_million": 61.089, + "new_cases_smoothed_per_million": 61.085, + "total_deaths_per_million": 26.087, + "new_deaths_per_million": 1.192, + "new_deaths_smoothed_per_million": 0.95, + "new_tests": 285288.0, + "total_tests": 9701280.0, + "total_tests_per_thousand": 66.477, + "new_tests_per_thousand": 1.955, + "new_tests_smoothed": 265771.0, + "new_tests_smoothed_per_thousand": 1.821, + "tests_per_case": 29.814, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-28", + "total_cases": 370680.0, + "new_cases": 8338.0, + "new_cases_smoothed": 8853.571, + "total_deaths": 3968.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 142.286, + "total_cases_per_million": 2540.044, + "new_cases_per_million": 57.135, + "new_cases_smoothed_per_million": 60.668, + "total_deaths_per_million": 27.19, + "new_deaths_per_million": 1.103, + "new_deaths_smoothed_per_million": 0.975, + "new_tests": 298781.0, + "total_tests": 10000061.0, + "total_tests_per_thousand": 68.524, + "new_tests_per_thousand": 2.047, + "new_tests_smoothed": 267634.0, + "new_tests_smoothed_per_thousand": 1.834, + "tests_per_case": 30.229, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-29", + "total_cases": 379051.0, + "new_cases": 8371.0, + "new_cases_smoothed": 8785.286, + "total_deaths": 4142.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 149.0, + "total_cases_per_million": 2597.406, + "new_cases_per_million": 57.361, + "new_cases_smoothed_per_million": 60.2, + "total_deaths_per_million": 28.383, + "new_deaths_per_million": 1.192, + "new_deaths_smoothed_per_million": 1.021, + "new_tests": 316139.0, + "total_tests": 10316200.0, + "total_tests_per_thousand": 70.691, + "new_tests_per_thousand": 2.166, + "new_tests_smoothed": 273350.0, + "new_tests_smoothed_per_thousand": 1.873, + "tests_per_case": 31.115, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-30", + "total_cases": 387623.0, + "new_cases": 8572.0, + "new_cases_smoothed": 8739.286, + "total_deaths": 4374.0, + "new_deaths": 232.0, + "new_deaths_smoothed": 160.714, + "total_cases_per_million": 2656.144, + "new_cases_per_million": 58.739, + "new_cases_smoothed_per_million": 59.885, + "total_deaths_per_million": 29.972, + "new_deaths_per_million": 1.59, + "new_deaths_smoothed_per_million": 1.101, + "new_tests": 326924.0, + "total_tests": 10643124.0, + "total_tests_per_thousand": 72.931, + "new_tests_per_thousand": 2.24, + "new_tests_smoothed": 279688.0, + "new_tests_smoothed_per_thousand": 1.917, + "tests_per_case": 32.004, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-05-31", + "total_cases": 396575.0, + "new_cases": 8952.0, + "new_cases_smoothed": 8670.429, + "total_deaths": 4555.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 166.714, + "total_cases_per_million": 2717.487, + "new_cases_per_million": 61.343, + "new_cases_smoothed_per_million": 59.413, + "total_deaths_per_million": 31.213, + "new_deaths_per_million": 1.24, + "new_deaths_smoothed_per_million": 1.142, + "new_tests": 279984.0, + "total_tests": 10923108.0, + "total_tests_per_thousand": 74.849, + "new_tests_per_thousand": 1.919, + "new_tests_smoothed": 282532.0, + "new_tests_smoothed_per_thousand": 1.936, + "tests_per_case": 32.586, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 78.24 + }, + { + "date": "2020-06-01", + "total_cases": 405843.0, + "new_cases": 9268.0, + "new_cases_smoothed": 8766.0, + "total_deaths": 4693.0, + "new_deaths": 138.0, + "new_deaths_smoothed": 164.571, + "total_cases_per_million": 2780.995, + "new_cases_per_million": 63.508, + "new_cases_smoothed_per_million": 60.068, + "total_deaths_per_million": 32.158, + "new_deaths_per_million": 0.946, + "new_deaths_smoothed_per_million": 1.128, + "new_tests": 228514.0, + "total_tests": 11151622.0, + "total_tests_per_thousand": 76.415, + "new_tests_per_thousand": 1.566, + "new_tests_smoothed": 284433.0, + "new_tests_smoothed_per_thousand": 1.949, + "tests_per_case": 32.446999999999996, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-02", + "total_cases": 414878.0, + "new_cases": 9035.0, + "new_cases_smoothed": 8778.714, + "total_deaths": 4855.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 174.571, + "total_cases_per_million": 2842.906, + "new_cases_per_million": 61.911, + "new_cases_smoothed_per_million": 60.155, + "total_deaths_per_million": 33.268, + "new_deaths_per_million": 1.11, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 274423.0, + "total_tests": 11426045.0, + "total_tests_per_thousand": 78.296, + "new_tests_per_thousand": 1.88, + "new_tests_smoothed": 287150.0, + "new_tests_smoothed_per_thousand": 1.968, + "tests_per_case": 32.71, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-03", + "total_cases": 423741.0, + "new_cases": 8863.0, + "new_cases_smoothed": 8771.286, + "total_deaths": 5037.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 175.714, + "total_cases_per_million": 2903.639, + "new_cases_per_million": 60.733, + "new_cases_smoothed_per_million": 60.104, + "total_deaths_per_million": 34.515, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 1.204, + "new_tests": 307006.0, + "total_tests": 11733051.0, + "total_tests_per_thousand": 80.399, + "new_tests_per_thousand": 2.104, + "new_tests_smoothed": 290253.0, + "new_tests_smoothed_per_thousand": 1.989, + "tests_per_case": 33.091, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-04", + "total_cases": 432277.0, + "new_cases": 8536.0, + "new_cases_smoothed": 8799.571, + "total_deaths": 5215.0, + "new_deaths": 178.0, + "new_deaths_smoothed": 178.143, + "total_cases_per_million": 2962.131, + "new_cases_per_million": 58.492, + "new_cases_smoothed_per_million": 60.298, + "total_deaths_per_million": 35.735, + "new_deaths_per_million": 1.22, + "new_deaths_smoothed_per_million": 1.221, + "new_tests": 320612.0, + "total_tests": 12053663.0, + "total_tests_per_thousand": 82.596, + "new_tests_per_thousand": 2.197, + "new_tests_smoothed": 293372.0, + "new_tests_smoothed_per_thousand": 2.01, + "tests_per_case": 33.339, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-05", + "total_cases": 441108.0, + "new_cases": 8831.0, + "new_cases_smoothed": 8865.286, + "total_deaths": 5384.0, + "new_deaths": 169.0, + "new_deaths_smoothed": 177.429, + "total_cases_per_million": 3022.645, + "new_cases_per_million": 60.513, + "new_cases_smoothed_per_million": 60.748, + "total_deaths_per_million": 36.893, + "new_deaths_per_million": 1.158, + "new_deaths_smoothed_per_million": 1.216, + "new_tests": 335305.0, + "total_tests": 12388968.0, + "total_tests_per_thousand": 84.894, + "new_tests_per_thousand": 2.298, + "new_tests_smoothed": 296110.0, + "new_tests_smoothed_per_thousand": 2.029, + "tests_per_case": 33.400999999999996, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-06", + "total_cases": 449834.0, + "new_cases": 8726.0, + "new_cases_smoothed": 8887.286, + "total_deaths": 5528.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 164.857, + "total_cases_per_million": 3082.439, + "new_cases_per_million": 59.794, + "new_cases_smoothed_per_million": 60.899, + "total_deaths_per_million": 37.88, + "new_deaths_per_million": 0.987, + "new_deaths_smoothed_per_million": 1.13, + "new_tests": 332581.0, + "total_tests": 12721549.0, + "total_tests_per_thousand": 87.173, + "new_tests_per_thousand": 2.279, + "new_tests_smoothed": 296918.0, + "new_tests_smoothed_per_thousand": 2.035, + "tests_per_case": 33.409, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-07", + "total_cases": 458689.0, + "new_cases": 8855.0, + "new_cases_smoothed": 8873.429, + "total_deaths": 5725.0, + "new_deaths": 197.0, + "new_deaths_smoothed": 167.143, + "total_cases_per_million": 3143.116, + "new_cases_per_million": 60.678, + "new_cases_smoothed_per_million": 60.804, + "total_deaths_per_million": 39.23, + "new_deaths_per_million": 1.35, + "new_deaths_smoothed_per_million": 1.145, + "new_tests": 294474.0, + "total_tests": 13016023.0, + "total_tests_per_thousand": 89.191, + "new_tests_per_thousand": 2.018, + "new_tests_smoothed": 298988.0, + "new_tests_smoothed_per_thousand": 2.049, + "tests_per_case": 33.695, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-08", + "total_cases": 467673.0, + "new_cases": 8984.0, + "new_cases_smoothed": 8832.857, + "total_deaths": 5859.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 166.571, + "total_cases_per_million": 3204.678, + "new_cases_per_million": 61.562, + "new_cases_smoothed_per_million": 60.526, + "total_deaths_per_million": 40.148, + "new_deaths_per_million": 0.918, + "new_deaths_smoothed_per_million": 1.141, + "new_tests": 238655.0, + "total_tests": 13254678.0, + "total_tests_per_thousand": 90.826, + "new_tests_per_thousand": 1.635, + "new_tests_smoothed": 300437.0, + "new_tests_smoothed_per_thousand": 2.059, + "tests_per_case": 34.014, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-09", + "total_cases": 476658.0, + "new_cases": 8985.0, + "new_cases_smoothed": 8825.714, + "total_deaths": 5971.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 159.429, + "total_cases_per_million": 3266.247, + "new_cases_per_million": 61.569, + "new_cases_smoothed_per_million": 60.477, + "total_deaths_per_million": 40.916, + "new_deaths_per_million": 0.767, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 290625.0, + "total_tests": 13545303.0, + "total_tests_per_thousand": 92.818, + "new_tests_per_thousand": 1.991, + "new_tests_smoothed": 302751.0, + "new_tests_smoothed_per_thousand": 2.075, + "tests_per_case": 34.303000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-10", + "total_cases": 485253.0, + "new_cases": 8595.0, + "new_cases_smoothed": 8787.429, + "total_deaths": 6141.0, + "new_deaths": 170.0, + "new_deaths_smoothed": 157.714, + "total_cases_per_million": 3325.143, + "new_cases_per_million": 58.896, + "new_cases_smoothed_per_million": 60.215, + "total_deaths_per_million": 42.081, + "new_deaths_per_million": 1.165, + "new_deaths_smoothed_per_million": 1.081, + "new_tests": 329794.0, + "total_tests": 13875097.0, + "total_tests_per_thousand": 95.078, + "new_tests_per_thousand": 2.26, + "new_tests_smoothed": 306007.0, + "new_tests_smoothed_per_thousand": 2.097, + "tests_per_case": 34.823, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-11", + "total_cases": 493657.0, + "new_cases": 8404.0, + "new_cases_smoothed": 8768.571, + "total_deaths": 6358.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 163.286, + "total_cases_per_million": 3382.731, + "new_cases_per_million": 57.587, + "new_cases_smoothed_per_million": 60.086, + "total_deaths_per_million": 43.568, + "new_deaths_per_million": 1.487, + "new_deaths_smoothed_per_million": 1.119, + "new_tests": 343577.0, + "total_tests": 14218674.0, + "total_tests_per_thousand": 97.432, + "new_tests_per_thousand": 2.354, + "new_tests_smoothed": 309287.0, + "new_tests_smoothed_per_thousand": 2.119, + "tests_per_case": 35.272, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-12", + "total_cases": 502436.0, + "new_cases": 8779.0, + "new_cases_smoothed": 8761.143, + "total_deaths": 6532.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 164.0, + "total_cases_per_million": 3442.888, + "new_cases_per_million": 60.157, + "new_cases_smoothed_per_million": 60.035, + "total_deaths_per_million": 44.76, + "new_deaths_per_million": 1.192, + "new_deaths_smoothed_per_million": 1.124, + "new_tests": 355443.0, + "total_tests": 14574117.0, + "total_tests_per_thousand": 99.868, + "new_tests_per_thousand": 2.436, + "new_tests_smoothed": 312164.0, + "new_tests_smoothed_per_thousand": 2.139, + "tests_per_case": 35.631, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-13", + "total_cases": 511423.0, + "new_cases": 8987.0, + "new_cases_smoothed": 8798.429, + "total_deaths": 6715.0, + "new_deaths": 183.0, + "new_deaths_smoothed": 169.571, + "total_cases_per_million": 3504.47, + "new_cases_per_million": 61.582, + "new_cases_smoothed_per_million": 60.29, + "total_deaths_per_million": 46.014, + "new_deaths_per_million": 1.254, + "new_deaths_smoothed_per_million": 1.162, + "new_tests": 306055.0, + "total_tests": 14880172.0, + "total_tests_per_thousand": 101.965, + "new_tests_per_thousand": 2.097, + "new_tests_smoothed": 308375.0, + "new_tests_smoothed_per_thousand": 2.113, + "tests_per_case": 35.049, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-14", + "total_cases": 520129.0, + "new_cases": 8706.0, + "new_cases_smoothed": 8777.143, + "total_deaths": 6829.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 157.714, + "total_cases_per_million": 3564.127, + "new_cases_per_million": 59.657, + "new_cases_smoothed_per_million": 60.144, + "total_deaths_per_million": 46.795, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 1.081, + "new_tests": 280980.0, + "total_tests": 15161152.0, + "total_tests_per_thousand": 103.89, + "new_tests_per_thousand": 1.925, + "new_tests_smoothed": 306447.0, + "new_tests_smoothed_per_thousand": 2.1, + "tests_per_case": 34.914, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-15", + "total_cases": 528964.0, + "new_cases": 8835.0, + "new_cases_smoothed": 8755.857, + "total_deaths": 6948.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 155.571, + "total_cases_per_million": 3624.668, + "new_cases_per_million": 60.541, + "new_cases_smoothed_per_million": 59.999, + "total_deaths_per_million": 47.61, + "new_deaths_per_million": 0.815, + "new_deaths_smoothed_per_million": 1.066, + "new_tests": 234265.0, + "total_tests": 15395417.0, + "total_tests_per_thousand": 105.495, + "new_tests_per_thousand": 1.605, + "new_tests_smoothed": 305820.0, + "new_tests_smoothed_per_thousand": 2.096, + "tests_per_case": 34.927, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-16", + "total_cases": 537210.0, + "new_cases": 8246.0, + "new_cases_smoothed": 8650.286, + "total_deaths": 7091.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 160.0, + "total_cases_per_million": 3681.173, + "new_cases_per_million": 56.505, + "new_cases_smoothed_per_million": 59.275, + "total_deaths_per_million": 48.59, + "new_deaths_per_million": 0.98, + "new_deaths_smoothed_per_million": 1.096, + "new_tests": 284307.0, + "total_tests": 15679724.0, + "total_tests_per_thousand": 107.444, + "new_tests_per_thousand": 1.948, + "new_tests_smoothed": 304917.0, + "new_tests_smoothed_per_thousand": 2.089, + "tests_per_case": 35.249, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-17", + "total_cases": 545458.0, + "new_cases": 8248.0, + "new_cases_smoothed": 8600.714, + "total_deaths": 7284.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 163.286, + "total_cases_per_million": 3737.692, + "new_cases_per_million": 56.519, + "new_cases_smoothed_per_million": 58.935, + "total_deaths_per_million": 49.913, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.119, + "new_tests": 311973.0, + "total_tests": 15991697.0, + "total_tests_per_thousand": 109.581, + "new_tests_per_thousand": 2.138, + "new_tests_smoothed": 302371.0, + "new_tests_smoothed_per_thousand": 2.072, + "tests_per_case": 35.156, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-18", + "total_cases": 553301.0, + "new_cases": 7843.0, + "new_cases_smoothed": 8520.571, + "total_deaths": 7478.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 160.0, + "total_cases_per_million": 3791.435, + "new_cases_per_million": 53.743, + "new_cases_smoothed_per_million": 58.386, + "total_deaths_per_million": 51.242, + "new_deaths_per_million": 1.329, + "new_deaths_smoothed_per_million": 1.096, + "new_tests": 330267.0, + "total_tests": 16321964.0, + "total_tests_per_thousand": 111.844, + "new_tests_per_thousand": 2.263, + "new_tests_smoothed": 300470.0, + "new_tests_smoothed_per_thousand": 2.059, + "tests_per_case": 35.264, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-19", + "total_cases": 561091.0, + "new_cases": 7790.0, + "new_cases_smoothed": 8379.286, + "total_deaths": 7790.0, + "new_deaths": 312.0, + "new_deaths_smoothed": 179.714, + "total_cases_per_million": 3844.815, + "new_cases_per_million": 53.38, + "new_cases_smoothed_per_million": 57.418, + "total_deaths_per_million": 53.38, + "new_deaths_per_million": 2.138, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 339323.0, + "total_tests": 16661287.0, + "total_tests_per_thousand": 114.17, + "new_tests_per_thousand": 2.325, + "new_tests_smoothed": 298167.0, + "new_tests_smoothed_per_thousand": 2.043, + "tests_per_case": 35.584, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-20", + "total_cases": 569063.0, + "new_cases": 7972.0, + "new_cases_smoothed": 8234.286, + "total_deaths": 7972.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 179.571, + "total_cases_per_million": 3899.442, + "new_cases_per_million": 54.627, + "new_cases_smoothed_per_million": 56.425, + "total_deaths_per_million": 54.627, + "new_deaths_per_million": 1.247, + "new_deaths_smoothed_per_million": 1.23, + "new_tests": 337166.0, + "total_tests": 16998453.0, + "total_tests_per_thousand": 116.48, + "new_tests_per_thousand": 2.31, + "new_tests_smoothed": 302612.0, + "new_tests_smoothed_per_thousand": 2.074, + "tests_per_case": 36.75, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-21", + "total_cases": 576952.0, + "new_cases": 7889.0, + "new_cases_smoothed": 8117.571, + "total_deaths": 8002.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 167.571, + "total_cases_per_million": 3953.501, + "new_cases_per_million": 54.059, + "new_cases_smoothed_per_million": 55.625, + "total_deaths_per_million": 54.833, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 1.148, + "new_tests": 291238.0, + "total_tests": 17289691.0, + "total_tests_per_thousand": 118.476, + "new_tests_per_thousand": 1.996, + "new_tests_smoothed": 304077.0, + "new_tests_smoothed_per_thousand": 2.084, + "tests_per_case": 37.459, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-22", + "total_cases": 584680.0, + "new_cases": 7728.0, + "new_cases_smoothed": 7959.429, + "total_deaths": 8111.0, + "new_deaths": 109.0, + "new_deaths_smoothed": 166.143, + "total_cases_per_million": 4006.456, + "new_cases_per_million": 52.955, + "new_cases_smoothed_per_million": 54.541, + "total_deaths_per_million": 55.58, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 1.138, + "new_tests": 233061.0, + "total_tests": 17522752.0, + "total_tests_per_thousand": 120.073, + "new_tests_per_thousand": 1.597, + "new_tests_smoothed": 303905.0, + "new_tests_smoothed_per_thousand": 2.082, + "tests_per_case": 38.181999999999995, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 74.54 + }, + { + "date": "2020-06-23", + "total_cases": 592280.0, + "new_cases": 7600.0, + "new_cases_smoothed": 7867.143, + "total_deaths": 8206.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 159.286, + "total_cases_per_million": 4058.534, + "new_cases_per_million": 52.078, + "new_cases_smoothed_per_million": 53.909, + "total_deaths_per_million": 56.231, + "new_deaths_per_million": 0.651, + "new_deaths_smoothed_per_million": 1.091, + "new_tests": 281203.0, + "total_tests": 17803955.0, + "total_tests_per_thousand": 122.0, + "new_tests_per_thousand": 1.927, + "new_tests_smoothed": 303462.0, + "new_tests_smoothed_per_thousand": 2.079, + "tests_per_case": 38.573, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-24", + "total_cases": 599705.0, + "new_cases": 7425.0, + "new_cases_smoothed": 7749.571, + "total_deaths": 8359.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 153.571, + "total_cases_per_million": 4109.413, + "new_cases_per_million": 50.879, + "new_cases_smoothed_per_million": 53.103, + "total_deaths_per_million": 57.279, + "new_deaths_per_million": 1.048, + "new_deaths_smoothed_per_million": 1.052, + "new_tests": 311875.0, + "total_tests": 18115830.0, + "total_tests_per_thousand": 124.137, + "new_tests_per_thousand": 2.137, + "new_tests_smoothed": 303448.0, + "new_tests_smoothed_per_thousand": 2.079, + "tests_per_case": 39.157, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-25", + "total_cases": 606881.0, + "new_cases": 7176.0, + "new_cases_smoothed": 7654.286, + "total_deaths": 8513.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 147.857, + "total_cases_per_million": 4158.586, + "new_cases_per_million": 49.173, + "new_cases_smoothed_per_million": 52.45, + "total_deaths_per_million": 58.334, + "new_deaths_per_million": 1.055, + "new_deaths_smoothed_per_million": 1.013, + "new_tests": 286889.0, + "total_tests": 18402719.0, + "total_tests_per_thousand": 126.103, + "new_tests_per_thousand": 1.966, + "new_tests_smoothed": 297251.0, + "new_tests_smoothed_per_thousand": 2.037, + "tests_per_case": 38.835, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-26", + "total_cases": 613994.0, + "new_cases": 7113.0, + "new_cases_smoothed": 7557.571, + "total_deaths": 8605.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 116.429, + "total_cases_per_million": 4207.327, + "new_cases_per_million": 48.741, + "new_cases_smoothed_per_million": 51.787, + "total_deaths_per_million": 58.965, + "new_deaths_per_million": 0.63, + "new_deaths_smoothed_per_million": 0.798, + "new_tests": 305227.0, + "total_tests": 18707946.0, + "total_tests_per_thousand": 128.194, + "new_tests_per_thousand": 2.092, + "new_tests_smoothed": 292380.0, + "new_tests_smoothed_per_thousand": 2.004, + "tests_per_case": 38.687, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-27", + "total_cases": 620794.0, + "new_cases": 6800.0, + "new_cases_smoothed": 7390.143, + "total_deaths": 8781.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 115.571, + "total_cases_per_million": 4253.923, + "new_cases_per_million": 46.596, + "new_cases_smoothed_per_million": 50.64, + "total_deaths_per_million": 60.171, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 0.792, + "new_tests": 337008.0, + "total_tests": 19044954.0, + "total_tests_per_thousand": 130.503, + "new_tests_per_thousand": 2.309, + "new_tests_smoothed": 292357.0, + "new_tests_smoothed_per_thousand": 2.003, + "tests_per_case": 39.56, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-28", + "total_cases": 627646.0, + "new_cases": 6852.0, + "new_cases_smoothed": 7242.0, + "total_deaths": 8969.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 138.143, + "total_cases_per_million": 4300.876, + "new_cases_per_million": 46.953, + "new_cases_smoothed_per_million": 49.625, + "total_deaths_per_million": 61.459, + "new_deaths_per_million": 1.288, + "new_deaths_smoothed_per_million": 0.947, + "new_tests": 289488.0, + "total_tests": 19334442.0, + "total_tests_per_thousand": 132.487, + "new_tests_per_thousand": 1.984, + "new_tests_smoothed": 292107.0, + "new_tests_smoothed_per_thousand": 2.002, + "tests_per_case": 40.335, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-29", + "total_cases": 634437.0, + "new_cases": 6791.0, + "new_cases_smoothed": 7108.143, + "total_deaths": 9073.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 137.429, + "total_cases_per_million": 4347.41, + "new_cases_per_million": 46.535, + "new_cases_smoothed_per_million": 48.708, + "total_deaths_per_million": 62.172, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 0.942, + "new_tests": 227998.0, + "total_tests": 19562440.0, + "total_tests_per_thousand": 134.049, + "new_tests_per_thousand": 1.562, + "new_tests_smoothed": 291384.0, + "new_tests_smoothed_per_thousand": 1.997, + "tests_per_case": 40.993, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-30", + "total_cases": 641156.0, + "new_cases": 6719.0, + "new_cases_smoothed": 6982.286, + "total_deaths": 9166.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 137.143, + "total_cases_per_million": 4393.452, + "new_cases_per_million": 46.041, + "new_cases_smoothed_per_million": 47.845, + "total_deaths_per_million": 62.809, + "new_deaths_per_million": 0.637, + "new_deaths_smoothed_per_million": 0.94, + "new_tests": 289727.0, + "total_tests": 19852167.0, + "total_tests_per_thousand": 136.035, + "new_tests_per_thousand": 1.985, + "new_tests_smoothed": 292602.0, + "new_tests_smoothed_per_thousand": 2.005, + "tests_per_case": 41.906000000000006, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-01", + "total_cases": 647849.0, + "new_cases": 6693.0, + "new_cases_smoothed": 6877.714, + "total_deaths": 9320.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 137.286, + "total_cases_per_million": 4439.315, + "new_cases_per_million": 45.863, + "new_cases_smoothed_per_million": 47.129, + "total_deaths_per_million": 63.864, + "new_deaths_per_million": 1.055, + "new_deaths_smoothed_per_million": 0.941, + "new_tests": 316737.0, + "total_tests": 20168904.0, + "total_tests_per_thousand": 138.205, + "new_tests_per_thousand": 2.17, + "new_tests_smoothed": 293296.0, + "new_tests_smoothed_per_thousand": 2.01, + "tests_per_case": 42.644, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-02", + "total_cases": 654405.0, + "new_cases": 6556.0, + "new_cases_smoothed": 6789.143, + "total_deaths": 9536.0, + "new_deaths": 216.0, + "new_deaths_smoothed": 146.143, + "total_cases_per_million": 4484.239, + "new_cases_per_million": 44.924, + "new_cases_smoothed_per_million": 46.522, + "total_deaths_per_million": 65.344, + "new_deaths_per_million": 1.48, + "new_deaths_smoothed_per_million": 1.001, + "new_tests": 282206.0, + "total_tests": 20451110.0, + "total_tests_per_thousand": 140.139, + "new_tests_per_thousand": 1.934, + "new_tests_smoothed": 292627.0, + "new_tests_smoothed_per_thousand": 2.005, + "tests_per_case": 43.102, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-03", + "total_cases": 661165.0, + "new_cases": 6760.0, + "new_cases_smoothed": 6738.714, + "total_deaths": 9683.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 154.0, + "total_cases_per_million": 4530.561, + "new_cases_per_million": 46.322, + "new_cases_smoothed_per_million": 46.176, + "total_deaths_per_million": 66.352, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 1.055, + "new_tests": 301296.0, + "total_tests": 20752406.0, + "total_tests_per_thousand": 142.204, + "new_tests_per_thousand": 2.065, + "new_tests_smoothed": 292066.0, + "new_tests_smoothed_per_thousand": 2.001, + "tests_per_case": 43.342, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-04", + "total_cases": 667883.0, + "new_cases": 6718.0, + "new_cases_smoothed": 6727.0, + "total_deaths": 9859.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 154.0, + "total_cases_per_million": 4576.596, + "new_cases_per_million": 46.034, + "new_cases_smoothed_per_million": 46.096, + "total_deaths_per_million": 67.558, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.055, + "new_tests_smoothed": 285564.0, + "new_tests_smoothed_per_thousand": 1.957, + "tests_per_case": 42.45, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-05", + "total_cases": 674515.0, + "new_cases": 6632.0, + "new_cases_smoothed": 6695.571, + "total_deaths": 10027.0, + "new_deaths": 168.0, + "new_deaths_smoothed": 151.143, + "total_cases_per_million": 4622.041, + "new_cases_per_million": 45.445, + "new_cases_smoothed_per_million": 45.881, + "total_deaths_per_million": 68.709, + "new_deaths_per_million": 1.151, + "new_deaths_smoothed_per_million": 1.036, + "total_tests": 21335394.0, + "total_tests_per_thousand": 146.198, + "new_tests_smoothed": 285850.0, + "new_tests_smoothed_per_thousand": 1.959, + "tests_per_case": 42.692, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-06", + "total_cases": 681251.0, + "new_cases": 6736.0, + "new_cases_smoothed": 6687.714, + "total_deaths": 10161.0, + "new_deaths": 134.0, + "new_deaths_smoothed": 155.429, + "total_cases_per_million": 4668.198, + "new_cases_per_million": 46.158, + "new_cases_smoothed_per_million": 45.827, + "total_deaths_per_million": 69.627, + "new_deaths_per_million": 0.918, + "new_deaths_smoothed_per_million": 1.065, + "new_tests": 202377.0, + "total_tests": 21537771.0, + "total_tests_per_thousand": 147.585, + "new_tests_per_thousand": 1.387, + "new_tests_smoothed": 282190.0, + "new_tests_smoothed_per_thousand": 1.934, + "tests_per_case": 42.195, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-07", + "total_cases": 687862.0, + "new_cases": 6611.0, + "new_cases_smoothed": 6672.286, + "total_deaths": 10296.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 161.429, + "total_cases_per_million": 4713.499, + "new_cases_per_million": 45.301, + "new_cases_smoothed_per_million": 45.721, + "total_deaths_per_million": 70.552, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.106, + "new_tests": 252934.0, + "total_tests": 21790705.0, + "total_tests_per_thousand": 149.318, + "new_tests_per_thousand": 1.733, + "new_tests_smoothed": 276934.0, + "new_tests_smoothed_per_thousand": 1.898, + "tests_per_case": 41.505, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-08", + "total_cases": 694230.0, + "new_cases": 6368.0, + "new_cases_smoothed": 6625.857, + "total_deaths": 10494.0, + "new_deaths": 198.0, + "new_deaths_smoothed": 167.714, + "total_cases_per_million": 4757.135, + "new_cases_per_million": 43.636, + "new_cases_smoothed_per_million": 45.403, + "total_deaths_per_million": 71.909, + "new_deaths_per_million": 1.357, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 288589.0, + "total_tests": 22079294.0, + "total_tests_per_thousand": 151.296, + "new_tests_per_thousand": 1.978, + "new_tests_smoothed": 272913.0, + "new_tests_smoothed_per_thousand": 1.87, + "tests_per_case": 41.18899999999999, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-09", + "total_cases": 700792.0, + "new_cases": 6562.0, + "new_cases_smoothed": 6626.714, + "total_deaths": 10667.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 161.571, + "total_cases_per_million": 4802.101, + "new_cases_per_million": 44.965, + "new_cases_smoothed_per_million": 45.409, + "total_deaths_per_million": 73.094, + "new_deaths_per_million": 1.185, + "new_deaths_smoothed_per_million": 1.107, + "new_tests": 308901.0, + "total_tests": 22388195.0, + "total_tests_per_thousand": 153.413, + "new_tests_per_thousand": 2.117, + "new_tests_smoothed": 276726.0, + "new_tests_smoothed_per_thousand": 1.896, + "tests_per_case": 41.75899999999999, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-10", + "total_cases": 707301.0, + "new_cases": 6509.0, + "new_cases_smoothed": 6590.857, + "total_deaths": 10843.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 165.714, + "total_cases_per_million": 4846.703, + "new_cases_per_million": 44.602, + "new_cases_smoothed_per_million": 45.163, + "total_deaths_per_million": 74.3, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.136, + "new_tests": 320221.0, + "total_tests": 22708416.0, + "total_tests_per_thousand": 155.607, + "new_tests_per_thousand": 2.194, + "new_tests_smoothed": 279430.0, + "new_tests_smoothed_per_thousand": 1.915, + "tests_per_case": 42.397, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-11", + "total_cases": 713936.0, + "new_cases": 6635.0, + "new_cases_smoothed": 6579.0, + "total_deaths": 11017.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 165.429, + "total_cases_per_million": 4892.169, + "new_cases_per_million": 45.466, + "new_cases_smoothed_per_million": 45.082, + "total_deaths_per_million": 75.493, + "new_deaths_per_million": 1.192, + "new_deaths_smoothed_per_million": 1.134, + "new_tests": 322640.0, + "total_tests": 23031056.0, + "total_tests_per_thousand": 157.818, + "new_tests_per_thousand": 2.211, + "new_tests_smoothed": 283879.0, + "new_tests_smoothed_per_thousand": 1.945, + "tests_per_case": 43.148999999999994, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-12", + "total_cases": 720547.0, + "new_cases": 6611.0, + "new_cases_smoothed": 6576.0, + "total_deaths": 11205.0, + "new_deaths": 188.0, + "new_deaths_smoothed": 168.286, + "total_cases_per_million": 4937.47, + "new_cases_per_million": 45.301, + "new_cases_smoothed_per_million": 45.061, + "total_deaths_per_million": 76.781, + "new_deaths_per_million": 1.288, + "new_deaths_smoothed_per_million": 1.153, + "new_tests": 261574.0, + "total_tests": 23292630.0, + "total_tests_per_thousand": 159.61, + "new_tests_per_thousand": 1.792, + "new_tests_smoothed": 279605.0, + "new_tests_smoothed_per_thousand": 1.916, + "tests_per_case": 42.519, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-07-13", + "total_cases": 727162.0, + "new_cases": 6615.0, + "new_cases_smoothed": 6558.714, + "total_deaths": 11335.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 167.714, + "total_cases_per_million": 4982.798, + "new_cases_per_million": 45.329, + "new_cases_smoothed_per_million": 44.943, + "total_deaths_per_million": 77.672, + "new_deaths_per_million": 0.891, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 203122.0, + "total_tests": 23495752.0, + "total_tests_per_thousand": 161.002, + "new_tests_per_thousand": 1.392, + "new_tests_smoothed": 279712.0, + "new_tests_smoothed_per_thousand": 1.917, + "tests_per_case": 42.647, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-07-14", + "total_cases": 733699.0, + "new_cases": 6537.0, + "new_cases_smoothed": 6548.143, + "total_deaths": 11439.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 163.286, + "total_cases_per_million": 5027.593, + "new_cases_per_million": 44.794, + "new_cases_smoothed_per_million": 44.87, + "total_deaths_per_million": 78.385, + "new_deaths_per_million": 0.713, + "new_deaths_smoothed_per_million": 1.119, + "new_tests": 258893.0, + "total_tests": 23754645.0, + "total_tests_per_thousand": 162.776, + "new_tests_per_thousand": 1.774, + "new_tests_smoothed": 280563.0, + "new_tests_smoothed_per_thousand": 1.923, + "tests_per_case": 42.846000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 70.83 + }, + { + "date": "2020-07-15", + "total_cases": 739947.0, + "new_cases": 6248.0, + "new_cases_smoothed": 6531.0, + "total_deaths": 11614.0, + "new_deaths": 175.0, + "new_deaths_smoothed": 160.0, + "total_cases_per_million": 5070.406, + "new_cases_per_million": 42.814, + "new_cases_smoothed_per_million": 44.753, + "total_deaths_per_million": 79.584, + "new_deaths_per_million": 1.199, + "new_deaths_smoothed_per_million": 1.096, + "new_tests": 298871.0, + "total_tests": 24053516.0, + "total_tests_per_thousand": 164.824, + "new_tests_per_thousand": 2.048, + "new_tests_smoothed": 282032.0, + "new_tests_smoothed_per_thousand": 1.933, + "tests_per_case": 43.184, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-16", + "total_cases": 746369.0, + "new_cases": 6422.0, + "new_cases_smoothed": 6511.0, + "total_deaths": 11770.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 157.571, + "total_cases_per_million": 5114.412, + "new_cases_per_million": 44.006, + "new_cases_smoothed_per_million": 44.616, + "total_deaths_per_million": 80.653, + "new_deaths_per_million": 1.069, + "new_deaths_smoothed_per_million": 1.08, + "new_tests": 311052.0, + "total_tests": 24364568.0, + "total_tests_per_thousand": 166.956, + "new_tests_per_thousand": 2.131, + "new_tests_smoothed": 282339.0, + "new_tests_smoothed_per_thousand": 1.935, + "tests_per_case": 43.363, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-17", + "total_cases": 752797.0, + "new_cases": 6428.0, + "new_cases_smoothed": 6499.429, + "total_deaths": 11937.0, + "new_deaths": 167.0, + "new_deaths_smoothed": 156.286, + "total_cases_per_million": 5158.459, + "new_cases_per_million": 44.047, + "new_cases_smoothed_per_million": 44.537, + "total_deaths_per_million": 81.797, + "new_deaths_per_million": 1.144, + "new_deaths_smoothed_per_million": 1.071, + "new_tests": 312362.0, + "total_tests": 24676930.0, + "total_tests_per_thousand": 169.096, + "new_tests_per_thousand": 2.14, + "new_tests_smoothed": 281216.0, + "new_tests_smoothed_per_thousand": 1.927, + "tests_per_case": 43.268, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-18", + "total_cases": 765437.0, + "new_cases": 12640.0, + "new_cases_smoothed": 7357.286, + "total_deaths": 12247.0, + "new_deaths": 310.0, + "new_deaths_smoothed": 175.714, + "total_cases_per_million": 5245.074, + "new_cases_per_million": 86.614, + "new_cases_smoothed_per_million": 50.415, + "total_deaths_per_million": 83.921, + "new_deaths_per_million": 2.124, + "new_deaths_smoothed_per_million": 1.204, + "new_tests": 314810.0, + "total_tests": 24991740.0, + "total_tests_per_thousand": 171.253, + "new_tests_per_thousand": 2.157, + "new_tests_smoothed": 280098.0, + "new_tests_smoothed_per_thousand": 1.919, + "tests_per_case": 38.071, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-19", + "total_cases": 771546.0, + "new_cases": 6109.0, + "new_cases_smoothed": 7285.571, + "total_deaths": 12342.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 162.429, + "total_cases_per_million": 5286.935, + "new_cases_per_million": 41.861, + "new_cases_smoothed_per_million": 49.924, + "total_deaths_per_million": 84.572, + "new_deaths_per_million": 0.651, + "new_deaths_smoothed_per_million": 1.113, + "new_tests": 259874.0, + "total_tests": 25251614.0, + "total_tests_per_thousand": 173.034, + "new_tests_per_thousand": 1.781, + "new_tests_smoothed": 279855.0, + "new_tests_smoothed_per_thousand": 1.918, + "tests_per_case": 38.412, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-20", + "total_cases": 771546.0, + "new_cases": 0.0, + "new_cases_smoothed": 6340.571, + "total_deaths": 12342.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 143.857, + "total_cases_per_million": 5286.935, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.448, + "total_deaths_per_million": 84.572, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.986, + "new_tests": 197553.0, + "total_tests": 25449167.0, + "total_tests_per_thousand": 174.388, + "new_tests_per_thousand": 1.354, + "new_tests_smoothed": 279059.0, + "new_tests_smoothed_per_thousand": 1.912, + "tests_per_case": 44.012, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-21", + "total_cases": 777486.0, + "new_cases": 5940.0, + "new_cases_smoothed": 6255.286, + "total_deaths": 12427.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 141.143, + "total_cases_per_million": 5327.638, + "new_cases_per_million": 40.703, + "new_cases_smoothed_per_million": 42.864, + "total_deaths_per_million": 85.155, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.967, + "new_tests": 255205.0, + "total_tests": 25704372.0, + "total_tests_per_thousand": 176.136, + "new_tests_per_thousand": 1.749, + "new_tests_smoothed": 278532.0, + "new_tests_smoothed_per_thousand": 1.909, + "tests_per_case": 44.527, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-22", + "total_cases": 783328.0, + "new_cases": 5842.0, + "new_cases_smoothed": 6197.286, + "total_deaths": 12580.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 138.0, + "total_cases_per_million": 5367.67, + "new_cases_per_million": 40.032, + "new_cases_smoothed_per_million": 42.466, + "total_deaths_per_million": 86.203, + "new_deaths_per_million": 1.048, + "new_deaths_smoothed_per_million": 0.946, + "new_tests": 296536.0, + "total_tests": 26000908.0, + "total_tests_per_thousand": 178.168, + "new_tests_per_thousand": 2.032, + "new_tests_smoothed": 278199.0, + "new_tests_smoothed_per_thousand": 1.906, + "tests_per_case": 44.89, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-23", + "total_cases": 789190.0, + "new_cases": 5862.0, + "new_cases_smoothed": 6117.286, + "total_deaths": 12745.0, + "new_deaths": 165.0, + "new_deaths_smoothed": 139.286, + "total_cases_per_million": 5407.839, + "new_cases_per_million": 40.169, + "new_cases_smoothed_per_million": 41.918, + "total_deaths_per_million": 87.334, + "new_deaths_per_million": 1.131, + "new_deaths_smoothed_per_million": 0.954, + "new_tests": 299744.0, + "total_tests": 26300652.0, + "total_tests_per_thousand": 180.222, + "new_tests_per_thousand": 2.054, + "new_tests_smoothed": 276583.0, + "new_tests_smoothed_per_thousand": 1.895, + "tests_per_case": 45.213, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-24", + "total_cases": 795038.0, + "new_cases": 5848.0, + "new_cases_smoothed": 6034.429, + "total_deaths": 12892.0, + "new_deaths": 147.0, + "new_deaths_smoothed": 136.429, + "total_cases_per_million": 5447.911, + "new_cases_per_million": 40.073, + "new_cases_smoothed_per_million": 41.35, + "total_deaths_per_million": 88.341, + "new_deaths_per_million": 1.007, + "new_deaths_smoothed_per_million": 0.935, + "new_tests": 309971.0, + "total_tests": 26610623.0, + "total_tests_per_thousand": 182.346, + "new_tests_per_thousand": 2.124, + "new_tests_smoothed": 276242.0, + "new_tests_smoothed_per_thousand": 1.893, + "tests_per_case": 45.778, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-25", + "total_cases": 800849.0, + "new_cases": 5811.0, + "new_cases_smoothed": 5058.857, + "total_deaths": 13046.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 114.143, + "total_cases_per_million": 5487.731, + "new_cases_per_million": 39.819, + "new_cases_smoothed_per_million": 34.665, + "total_deaths_per_million": 89.396, + "new_deaths_per_million": 1.055, + "new_deaths_smoothed_per_million": 0.782, + "new_tests": 291668.0, + "total_tests": 26902291.0, + "total_tests_per_thousand": 184.345, + "new_tests_per_thousand": 1.999, + "new_tests_smoothed": 272936.0, + "new_tests_smoothed_per_thousand": 1.87, + "tests_per_case": 53.952, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-26", + "total_cases": 806720.0, + "new_cases": 5871.0, + "new_cases_smoothed": 5024.857, + "total_deaths": 13192.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 121.429, + "total_cases_per_million": 5527.961, + "new_cases_per_million": 40.23, + "new_cases_smoothed_per_million": 34.432, + "total_deaths_per_million": 90.397, + "new_deaths_per_million": 1.0, + "new_deaths_smoothed_per_million": 0.832, + "new_tests": 239675.0, + "total_tests": 27141966.0, + "total_tests_per_thousand": 185.987, + "new_tests_per_thousand": 1.642, + "new_tests_smoothed": 270050.0, + "new_tests_smoothed_per_thousand": 1.85, + "tests_per_case": 53.743, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-27", + "total_cases": 812485.0, + "new_cases": 5765.0, + "new_cases_smoothed": 5848.429, + "total_deaths": 13269.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 132.429, + "total_cases_per_million": 5567.465, + "new_cases_per_million": 39.504, + "new_cases_smoothed_per_million": 40.076, + "total_deaths_per_million": 90.924, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 185604.0, + "total_tests": 27327570.0, + "total_tests_per_thousand": 187.259, + "new_tests_per_thousand": 1.272, + "new_tests_smoothed": 268343.0, + "new_tests_smoothed_per_thousand": 1.839, + "tests_per_case": 45.883, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-28", + "total_cases": 818120.0, + "new_cases": 5635.0, + "new_cases_smoothed": 5804.857, + "total_deaths": 13354.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 132.429, + "total_cases_per_million": 5606.078, + "new_cases_per_million": 38.613, + "new_cases_smoothed_per_million": 39.777, + "total_deaths_per_million": 91.507, + "new_deaths_per_million": 0.582, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 242076.0, + "total_tests": 27569646.0, + "total_tests_per_thousand": 188.918, + "new_tests_per_thousand": 1.659, + "new_tests_smoothed": 266468.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 45.903999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-29", + "total_cases": 823515.0, + "new_cases": 5395.0, + "new_cases_smoothed": 5741.0, + "total_deaths": 13504.0, + "new_deaths": 150.0, + "new_deaths_smoothed": 132.0, + "total_cases_per_million": 5643.047, + "new_cases_per_million": 36.969, + "new_cases_smoothed_per_million": 39.34, + "total_deaths_per_million": 92.535, + "new_deaths_per_million": 1.028, + "new_deaths_smoothed_per_million": 0.905, + "new_tests": 288204.0, + "total_tests": 27857850.0, + "total_tests_per_thousand": 190.893, + "new_tests_per_thousand": 1.975, + "new_tests_smoothed": 265277.0, + "new_tests_smoothed_per_thousand": 1.818, + "tests_per_case": 46.207, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-30", + "total_cases": 828990.0, + "new_cases": 5475.0, + "new_cases_smoothed": 5685.714, + "total_deaths": 13673.0, + "new_deaths": 169.0, + "new_deaths_smoothed": 132.571, + "total_cases_per_million": 5680.564, + "new_cases_per_million": 37.517, + "new_cases_smoothed_per_million": 38.961, + "total_deaths_per_million": 93.693, + "new_deaths_per_million": 1.158, + "new_deaths_smoothed_per_million": 0.908, + "new_tests": 303611.0, + "total_tests": 28161461.0, + "total_tests_per_thousand": 192.973, + "new_tests_per_thousand": 2.08, + "new_tests_smoothed": 265830.0, + "new_tests_smoothed_per_thousand": 1.822, + "tests_per_case": 46.754, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-07-31", + "total_cases": 834499.0, + "new_cases": 5509.0, + "new_cases_smoothed": 5637.286, + "total_deaths": 13802.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 130.0, + "total_cases_per_million": 5718.314, + "new_cases_per_million": 37.75, + "new_cases_smoothed_per_million": 38.629, + "total_deaths_per_million": 94.577, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.891, + "new_tests": 316551.0, + "total_tests": 28478012.0, + "total_tests_per_thousand": 195.142, + "new_tests_per_thousand": 2.169, + "new_tests_smoothed": 266770.0, + "new_tests_smoothed_per_thousand": 1.828, + "tests_per_case": 47.321999999999996, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-01", + "total_cases": 839981.0, + "new_cases": 5482.0, + "new_cases_smoothed": 5590.286, + "total_deaths": 13963.0, + "new_deaths": 161.0, + "new_deaths_smoothed": 131.0, + "total_cases_per_million": 5755.878, + "new_cases_per_million": 37.565, + "new_cases_smoothed_per_million": 38.307, + "total_deaths_per_million": 95.68, + "new_deaths_per_million": 1.103, + "new_deaths_smoothed_per_million": 0.898, + "new_tests": 315248.0, + "total_tests": 28793260.0, + "total_tests_per_thousand": 197.303, + "new_tests_per_thousand": 2.16, + "new_tests_smoothed": 270138.0, + "new_tests_smoothed_per_thousand": 1.851, + "tests_per_case": 48.323, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-02", + "total_cases": 845443.0, + "new_cases": 5462.0, + "new_cases_smoothed": 5531.857, + "total_deaths": 14058.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 123.714, + "total_cases_per_million": 5793.306, + "new_cases_per_million": 37.428, + "new_cases_smoothed_per_million": 37.906, + "total_deaths_per_million": 96.331, + "new_deaths_per_million": 0.651, + "new_deaths_smoothed_per_million": 0.848, + "new_tests": 236640.0, + "total_tests": 29029900.0, + "total_tests_per_thousand": 198.924, + "new_tests_per_thousand": 1.622, + "new_tests_smoothed": 269705.0, + "new_tests_smoothed_per_thousand": 1.848, + "tests_per_case": 48.755, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-03", + "total_cases": 850870.0, + "new_cases": 5427.0, + "new_cases_smoothed": 5483.571, + "total_deaths": 14128.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 122.714, + "total_cases_per_million": 5830.494, + "new_cases_per_million": 37.188, + "new_cases_smoothed_per_million": 37.576, + "total_deaths_per_million": 96.811, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.841, + "new_tests": 171962.0, + "total_tests": 29201862.0, + "total_tests_per_thousand": 200.103, + "new_tests_per_thousand": 1.178, + "new_tests_smoothed": 267756.0, + "new_tests_smoothed_per_thousand": 1.835, + "tests_per_case": 48.82899999999999, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-04", + "total_cases": 856264.0, + "new_cases": 5394.0, + "new_cases_smoothed": 5449.143, + "total_deaths": 14207.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 121.857, + "total_cases_per_million": 5867.456, + "new_cases_per_million": 36.962, + "new_cases_smoothed_per_million": 37.34, + "total_deaths_per_million": 97.352, + "new_deaths_per_million": 0.541, + "new_deaths_smoothed_per_million": 0.835, + "new_tests": 232028.0, + "total_tests": 29433890.0, + "total_tests_per_thousand": 201.693, + "new_tests_per_thousand": 1.59, + "new_tests_smoothed": 266321.0, + "new_tests_smoothed_per_thousand": 1.825, + "tests_per_case": 48.873999999999995, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-05", + "total_cases": 861423.0, + "new_cases": 5159.0, + "new_cases_smoothed": 5415.429, + "total_deaths": 14351.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 121.0, + "total_cases_per_million": 5902.807, + "new_cases_per_million": 35.351, + "new_cases_smoothed_per_million": 37.109, + "total_deaths_per_million": 98.339, + "new_deaths_per_million": 0.987, + "new_deaths_smoothed_per_million": 0.829, + "new_tests": 283017.0, + "total_tests": 29716907.0, + "total_tests_per_thousand": 203.632, + "new_tests_per_thousand": 1.939, + "new_tests_smoothed": 265580.0, + "new_tests_smoothed_per_thousand": 1.82, + "tests_per_case": 49.041000000000004, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-06", + "total_cases": 867343.0, + "new_cases": 5920.0, + "new_cases_smoothed": 5479.0, + "total_deaths": 14532.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 122.714, + "total_cases_per_million": 5943.373, + "new_cases_per_million": 40.566, + "new_cases_smoothed_per_million": 37.544, + "total_deaths_per_million": 99.579, + "new_deaths_per_million": 1.24, + "new_deaths_smoothed_per_million": 0.841, + "new_tests": 321216.0, + "total_tests": 30038123.0, + "total_tests_per_thousand": 205.833, + "new_tests_per_thousand": 2.201, + "new_tests_smoothed": 268095.0, + "new_tests_smoothed_per_thousand": 1.837, + "tests_per_case": 48.931000000000004, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-07", + "total_cases": 871894.0, + "new_cases": 4551.0, + "new_cases_smoothed": 5342.143, + "total_deaths": 14606.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 114.857, + "total_cases_per_million": 5974.559, + "new_cases_per_million": 31.185, + "new_cases_smoothed_per_million": 36.606, + "total_deaths_per_million": 100.086, + "new_deaths_per_million": 0.507, + "new_deaths_smoothed_per_million": 0.787, + "new_tests": 303221.0, + "total_tests": 30341344.0, + "total_tests_per_thousand": 207.911, + "new_tests_per_thousand": 2.078, + "new_tests_smoothed": 266190.0, + "new_tests_smoothed_per_thousand": 1.824, + "tests_per_case": 49.828, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-08", + "total_cases": 877135.0, + "new_cases": 5241.0, + "new_cases_smoothed": 5307.714, + "total_deaths": 14725.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 108.857, + "total_cases_per_million": 6010.472, + "new_cases_per_million": 35.913, + "new_cases_smoothed_per_million": 36.371, + "total_deaths_per_million": 100.901, + "new_deaths_per_million": 0.815, + "new_deaths_smoothed_per_million": 0.746, + "new_tests": 298676.0, + "total_tests": 30640020.0, + "total_tests_per_thousand": 209.957, + "new_tests_per_thousand": 2.047, + "new_tests_smoothed": 263823.0, + "new_tests_smoothed_per_thousand": 1.808, + "tests_per_case": 49.706, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-09", + "total_cases": 882347.0, + "new_cases": 5212.0, + "new_cases_smoothed": 5272.0, + "total_deaths": 14854.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 113.714, + "total_cases_per_million": 6046.187, + "new_cases_per_million": 35.715, + "new_cases_smoothed_per_million": 36.126, + "total_deaths_per_million": 101.785, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.779, + "new_tests": 246140.0, + "total_tests": 30886160.0, + "total_tests_per_thousand": 211.644, + "new_tests_per_thousand": 1.687, + "new_tests_smoothed": 265180.0, + "new_tests_smoothed_per_thousand": 1.817, + "tests_per_case": 50.3, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-10", + "total_cases": 887536.0, + "new_cases": 5189.0, + "new_cases_smoothed": 5238.0, + "total_deaths": 14931.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 114.714, + "total_cases_per_million": 6081.744, + "new_cases_per_million": 35.557, + "new_cases_smoothed_per_million": 35.893, + "total_deaths_per_million": 102.313, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.786, + "new_tests": 177027.0, + "total_tests": 31063187.0, + "total_tests_per_thousand": 212.857, + "new_tests_per_thousand": 1.213, + "new_tests_smoothed": 265904.0, + "new_tests_smoothed_per_thousand": 1.822, + "tests_per_case": 50.763999999999996, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-11", + "total_cases": 892654.0, + "new_cases": 5118.0, + "new_cases_smoothed": 5198.571, + "total_deaths": 15061.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 122.0, + "total_cases_per_million": 6116.814, + "new_cases_per_million": 35.071, + "new_cases_smoothed_per_million": 35.623, + "total_deaths_per_million": 103.204, + "new_deaths_per_million": 0.891, + "new_deaths_smoothed_per_million": 0.836, + "new_tests": 244577.0, + "total_tests": 31307764.0, + "total_tests_per_thousand": 214.533, + "new_tests_per_thousand": 1.676, + "new_tests_smoothed": 267696.0, + "new_tests_smoothed_per_thousand": 1.834, + "tests_per_case": 51.494, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-12", + "total_cases": 897599.0, + "new_cases": 4945.0, + "new_cases_smoothed": 5168.0, + "total_deaths": 15131.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 111.429, + "total_cases_per_million": 6150.699, + "new_cases_per_million": 33.885, + "new_cases_smoothed_per_million": 35.413, + "total_deaths_per_million": 103.684, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.764, + "new_tests": 290538.0, + "total_tests": 31598302.0, + "total_tests_per_thousand": 216.524, + "new_tests_per_thousand": 1.991, + "new_tests_smoothed": 268771.0, + "new_tests_smoothed_per_thousand": 1.842, + "tests_per_case": 52.007, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-13", + "total_cases": 902701.0, + "new_cases": 5102.0, + "new_cases_smoothed": 5051.143, + "total_deaths": 15260.0, + "new_deaths": 129.0, + "new_deaths_smoothed": 104.0, + "total_cases_per_million": 6185.66, + "new_cases_per_million": 34.961, + "new_cases_smoothed_per_million": 34.612, + "total_deaths_per_million": 104.567, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.713, + "new_tests": 304753.0, + "total_tests": 31903055.0, + "total_tests_per_thousand": 218.612, + "new_tests_per_thousand": 2.088, + "new_tests_smoothed": 266419.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 52.744, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-14", + "total_cases": 907758.0, + "new_cases": 5057.0, + "new_cases_smoothed": 5123.429, + "total_deaths": 15384.0, + "new_deaths": 124.0, + "new_deaths_smoothed": 111.143, + "total_cases_per_million": 6220.313, + "new_cases_per_million": 34.653, + "new_cases_smoothed_per_million": 35.108, + "total_deaths_per_million": 105.417, + "new_deaths_per_million": 0.85, + "new_deaths_smoothed_per_million": 0.762, + "new_tests": 318491.0, + "total_tests": 32221546.0, + "total_tests_per_thousand": 220.795, + "new_tests_per_thousand": 2.182, + "new_tests_smoothed": 268600.0, + "new_tests_smoothed_per_thousand": 1.841, + "tests_per_case": 52.426, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-15", + "total_cases": 912823.0, + "new_cases": 5065.0, + "new_cases_smoothed": 5098.286, + "total_deaths": 15498.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 110.429, + "total_cases_per_million": 6255.02, + "new_cases_per_million": 34.707, + "new_cases_smoothed_per_million": 34.935, + "total_deaths_per_million": 106.198, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.757, + "new_tests": 312272.0, + "total_tests": 32533818.0, + "total_tests_per_thousand": 222.934, + "new_tests_per_thousand": 2.14, + "new_tests_smoothed": 270543.0, + "new_tests_smoothed_per_thousand": 1.854, + "tests_per_case": 53.065, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-16", + "total_cases": 917884.0, + "new_cases": 5061.0, + "new_cases_smoothed": 5076.714, + "total_deaths": 15617.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 6289.7, + "new_cases_per_million": 34.68, + "new_cases_smoothed_per_million": 34.788, + "total_deaths_per_million": 107.014, + "new_deaths_per_million": 0.815, + "new_deaths_smoothed_per_million": 0.747, + "new_tests": 250660.0, + "total_tests": 32784478.0, + "total_tests_per_thousand": 224.652, + "new_tests_per_thousand": 1.718, + "new_tests_smoothed": 271188.0, + "new_tests_smoothed_per_thousand": 1.858, + "tests_per_case": 53.418, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-17", + "total_cases": 922853.0, + "new_cases": 4969.0, + "new_cases_smoothed": 5045.286, + "total_deaths": 15685.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 107.714, + "total_cases_per_million": 6323.75, + "new_cases_per_million": 34.05, + "new_cases_smoothed_per_million": 34.572, + "total_deaths_per_million": 107.48, + "new_deaths_per_million": 0.466, + "new_deaths_smoothed_per_million": 0.738, + "new_tests": 184281.0, + "total_tests": 32968759.0, + "total_tests_per_thousand": 225.915, + "new_tests_per_thousand": 1.263, + "new_tests_smoothed": 272225.0, + "new_tests_smoothed_per_thousand": 1.865, + "tests_per_case": 53.956, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-18", + "total_cases": 927745.0, + "new_cases": 4892.0, + "new_cases_smoothed": 5013.0, + "total_deaths": 15740.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 97.0, + "total_cases_per_million": 6357.272, + "new_cases_per_million": 33.522, + "new_cases_smoothed_per_million": 34.351, + "total_deaths_per_million": 107.857, + "new_deaths_per_million": 0.377, + "new_deaths_smoothed_per_million": 0.665, + "new_tests": 248709.0, + "total_tests": 33217468.0, + "total_tests_per_thousand": 227.619, + "new_tests_per_thousand": 1.704, + "new_tests_smoothed": 272815.0, + "new_tests_smoothed_per_thousand": 1.869, + "tests_per_case": 54.422, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-19", + "total_cases": 932493.0, + "new_cases": 4748.0, + "new_cases_smoothed": 4984.857, + "total_deaths": 15872.0, + "new_deaths": 132.0, + "new_deaths_smoothed": 105.857, + "total_cases_per_million": 6389.807, + "new_cases_per_million": 32.535, + "new_cases_smoothed_per_million": 34.158, + "total_deaths_per_million": 108.761, + "new_deaths_per_million": 0.905, + "new_deaths_smoothed_per_million": 0.725, + "new_tests": 291805.0, + "total_tests": 33509273.0, + "total_tests_per_thousand": 229.619, + "new_tests_per_thousand": 2.0, + "new_tests_smoothed": 272996.0, + "new_tests_smoothed_per_thousand": 1.871, + "tests_per_case": 54.765, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-20", + "total_cases": 937321.0, + "new_cases": 4828.0, + "new_cases_smoothed": 4945.714, + "total_deaths": 15989.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 104.143, + "total_cases_per_million": 6422.89, + "new_cases_per_million": 33.083, + "new_cases_smoothed_per_million": 33.89, + "total_deaths_per_million": 109.563, + "new_deaths_per_million": 0.802, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 304832.0, + "total_tests": 33814105.0, + "total_tests_per_thousand": 231.707, + "new_tests_per_thousand": 2.089, + "new_tests_smoothed": 273007.0, + "new_tests_smoothed_per_thousand": 1.871, + "tests_per_case": 55.201, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-21", + "total_cases": 942106.0, + "new_cases": 4785.0, + "new_cases_smoothed": 4906.857, + "total_deaths": 16099.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 102.143, + "total_cases_per_million": 6455.679, + "new_cases_per_million": 32.789, + "new_cases_smoothed_per_million": 33.624, + "total_deaths_per_million": 110.317, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.7, + "new_tests_smoothed": 272755.0, + "new_tests_smoothed_per_thousand": 1.869, + "tests_per_case": 55.586000000000006, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-22", + "total_cases": 946976.0, + "new_cases": 4870.0, + "new_cases_smoothed": 4879.0, + "total_deaths": 16189.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 98.714, + "total_cases_per_million": 6489.05, + "new_cases_per_million": 33.371, + "new_cases_smoothed_per_million": 33.433, + "total_deaths_per_million": 110.933, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.676, + "total_tests": 34447560.0, + "total_tests_per_thousand": 236.048, + "new_tests_smoothed": 273392.0, + "new_tests_smoothed_per_thousand": 1.873, + "tests_per_case": 56.034, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-23", + "total_cases": 951897.0, + "new_cases": 4921.0, + "new_cases_smoothed": 4859.0, + "total_deaths": 16310.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 99.0, + "total_cases_per_million": 6522.771, + "new_cases_per_million": 33.721, + "new_cases_smoothed_per_million": 33.296, + "total_deaths_per_million": 111.762, + "new_deaths_per_million": 0.829, + "new_deaths_smoothed_per_million": 0.678, + "new_tests": 247846.0, + "total_tests": 34695406.0, + "total_tests_per_thousand": 237.746, + "new_tests_per_thousand": 1.698, + "new_tests_smoothed": 272990.0, + "new_tests_smoothed_per_thousand": 1.871, + "tests_per_case": 56.181999999999995, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-24", + "total_cases": 956749.0, + "new_cases": 4852.0, + "new_cases_smoothed": 4842.286, + "total_deaths": 16383.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 99.714, + "total_cases_per_million": 6556.018, + "new_cases_per_million": 33.248, + "new_cases_smoothed_per_million": 33.181, + "total_deaths_per_million": 112.263, + "new_deaths_per_million": 0.5, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 187814.0, + "total_tests": 34883220.0, + "total_tests_per_thousand": 239.033, + "new_tests_per_thousand": 1.287, + "new_tests_smoothed": 273494.0, + "new_tests_smoothed_per_thousand": 1.874, + "tests_per_case": 56.48, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-25", + "total_cases": 961493.0, + "new_cases": 4744.0, + "new_cases_smoothed": 4821.143, + "total_deaths": 16448.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 101.143, + "total_cases_per_million": 6588.526, + "new_cases_per_million": 32.508, + "new_cases_smoothed_per_million": 33.036, + "total_deaths_per_million": 112.708, + "new_deaths_per_million": 0.445, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 245441.0, + "total_tests": 35128661.0, + "total_tests_per_thousand": 240.715, + "new_tests_per_thousand": 1.682, + "new_tests_smoothed": 273028.0, + "new_tests_smoothed_per_thousand": 1.871, + "tests_per_case": 56.631, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-26", + "total_cases": 966189.0, + "new_cases": 4696.0, + "new_cases_smoothed": 4813.714, + "total_deaths": 16568.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 99.429, + "total_cases_per_million": 6620.705, + "new_cases_per_million": 32.179, + "new_cases_smoothed_per_million": 32.985, + "total_deaths_per_million": 113.53, + "new_deaths_per_million": 0.822, + "new_deaths_smoothed_per_million": 0.681, + "new_tests": 295122.0, + "total_tests": 35423783.0, + "total_tests_per_thousand": 242.738, + "new_tests_per_thousand": 2.022, + "new_tests_smoothed": 273501.0, + "new_tests_smoothed_per_thousand": 1.874, + "tests_per_case": 56.817, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-27", + "total_cases": 970865.0, + "new_cases": 4676.0, + "new_cases_smoothed": 4792.0, + "total_deaths": 16683.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 99.143, + "total_cases_per_million": 6652.747, + "new_cases_per_million": 32.042, + "new_cases_smoothed_per_million": 32.837, + "total_deaths_per_million": 114.318, + "new_deaths_per_million": 0.788, + "new_deaths_smoothed_per_million": 0.679, + "new_tests": 327964.0, + "total_tests": 35751747.0, + "total_tests_per_thousand": 244.985, + "new_tests_per_thousand": 2.247, + "new_tests_smoothed": 276806.0, + "new_tests_smoothed_per_thousand": 1.897, + "tests_per_case": 57.763999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-28", + "total_cases": 975576.0, + "new_cases": 4711.0, + "new_cases_smoothed": 4781.429, + "total_deaths": 16804.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 100.714, + "total_cases_per_million": 6685.028, + "new_cases_per_million": 32.282, + "new_cases_smoothed_per_million": 32.764, + "total_deaths_per_million": 115.148, + "new_deaths_per_million": 0.829, + "new_deaths_smoothed_per_million": 0.69, + "new_tests": 334435.0, + "total_tests": 36086182.0, + "total_tests_per_thousand": 247.277, + "new_tests_per_thousand": 2.292, + "new_tests_smoothed": 279336.0, + "new_tests_smoothed_per_thousand": 1.914, + "tests_per_case": 58.42100000000001, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-29", + "total_cases": 980405.0, + "new_cases": 4829.0, + "new_cases_smoothed": 4775.571, + "total_deaths": 16914.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 103.571, + "total_cases_per_million": 6718.119, + "new_cases_per_million": 33.09, + "new_cases_smoothed_per_million": 32.724, + "total_deaths_per_million": 115.901, + "new_deaths_per_million": 0.754, + "new_deaths_smoothed_per_million": 0.71, + "new_tests": 340668.0, + "total_tests": 36426850.0, + "total_tests_per_thousand": 249.611, + "new_tests_per_thousand": 2.334, + "new_tests_smoothed": 282756.0, + "new_tests_smoothed_per_thousand": 1.938, + "tests_per_case": 59.208999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-30", + "total_cases": 985346.0, + "new_cases": 4941.0, + "new_cases_smoothed": 4778.429, + "total_deaths": 17025.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 102.143, + "total_cases_per_million": 6751.976, + "new_cases_per_million": 33.858, + "new_cases_smoothed_per_million": 32.744, + "total_deaths_per_million": 116.662, + "new_deaths_per_million": 0.761, + "new_deaths_smoothed_per_million": 0.7, + "new_tests": 269532.0, + "total_tests": 36696382.0, + "total_tests_per_thousand": 251.458, + "new_tests_per_thousand": 1.847, + "new_tests_smoothed": 285854.0, + "new_tests_smoothed_per_thousand": 1.959, + "tests_per_case": 59.821999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-31", + "total_cases": 990326.0, + "new_cases": 4980.0, + "new_cases_smoothed": 4796.714, + "total_deaths": 17093.0, + "new_deaths": 68.0, + "new_deaths_smoothed": 101.429, + "total_cases_per_million": 6786.101, + "new_cases_per_million": 34.125, + "new_cases_smoothed_per_million": 32.869, + "total_deaths_per_million": 117.128, + "new_deaths_per_million": 0.466, + "new_deaths_smoothed_per_million": 0.695, + "new_tests": 204833.0, + "total_tests": 36901215.0, + "total_tests_per_thousand": 252.862, + "new_tests_per_thousand": 1.404, + "new_tests_smoothed": 288285.0, + "new_tests_smoothed_per_thousand": 1.975, + "tests_per_case": 60.101000000000006, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-09-01", + "total_cases": 995319.0, + "new_cases": 4993.0, + "new_cases_smoothed": 4832.286, + "total_deaths": 17176.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 104.0, + "total_cases_per_million": 6820.315, + "new_cases_per_million": 34.214, + "new_cases_smoothed_per_million": 33.113, + "total_deaths_per_million": 117.697, + "new_deaths_per_million": 0.569, + "new_deaths_smoothed_per_million": 0.713, + "new_tests": 275612.0, + "total_tests": 37176827.0, + "total_tests_per_thousand": 254.75, + "new_tests_per_thousand": 1.889, + "new_tests_smoothed": 292595.0, + "new_tests_smoothed_per_thousand": 2.005, + "tests_per_case": 60.55, + "positive_rate": 0.017, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 1000048.0, + "new_cases": 4729.0, + "new_cases_smoothed": 4837.0, + "total_deaths": 17299.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 104.429, + "total_cases_per_million": 6852.72, + "new_cases_per_million": 32.405, + "new_cases_smoothed_per_million": 33.145, + "total_deaths_per_million": 118.54, + "new_deaths_per_million": 0.843, + "new_deaths_smoothed_per_million": 0.716, + "new_tests": 307319.0, + "total_tests": 37484146.0, + "total_tests_per_thousand": 256.856, + "new_tests_per_thousand": 2.106, + "new_tests_smoothed": 294338.0, + "new_tests_smoothed_per_thousand": 2.017, + "tests_per_case": 60.851000000000006, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 1005000.0, + "new_cases": 4952.0, + "new_cases_smoothed": 4876.429, + "total_deaths": 17414.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 104.429, + "total_cases_per_million": 6886.653, + "new_cases_per_million": 33.933, + "new_cases_smoothed_per_million": 33.415, + "total_deaths_per_million": 119.328, + "new_deaths_per_million": 0.788, + "new_deaths_smoothed_per_million": 0.716, + "new_tests": 334220.0, + "total_tests": 37818366.0, + "total_tests_per_thousand": 259.146, + "new_tests_per_thousand": 2.29, + "new_tests_smoothed": 295231.0, + "new_tests_smoothed_per_thousand": 2.023, + "tests_per_case": 60.542, + "positive_rate": 0.017, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 1009995.0, + "new_cases": 4995.0, + "new_cases_smoothed": 4917.0, + "total_deaths": 17528.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 103.429, + "total_cases_per_million": 6920.881, + "new_cases_per_million": 34.228, + "new_cases_smoothed_per_million": 33.693, + "total_deaths_per_million": 120.109, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.709 + }, + { + "date": "2020-09-05", + "total_cases": 1015105.0, + "new_cases": 5110.0, + "new_cases_smoothed": 4957.143, + "total_deaths": 17649.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 105.0, + "total_cases_per_million": 6955.897, + "new_cases_per_million": 35.016, + "new_cases_smoothed_per_million": 33.968, + "total_deaths_per_million": 120.938, + "new_deaths_per_million": 0.829, + "new_deaths_smoothed_per_million": 0.72 + } + ] + }, + "RWA": { + "continent": "Africa", + "location": "Rwanda", + "population": 12952209.0, + "population_density": 494.869, + "median_age": 20.3, + "aged_65_older": 2.974, + "aged_70_older": 1.642, + "gdp_per_capita": 1854.211, + "extreme_poverty": 56.0, + "cardiovasc_death_rate": 191.375, + "diabetes_prevalence": 4.28, + "female_smokers": 4.7, + "male_smokers": 21.0, + "handwashing_facilities": 4.617, + "life_expectancy": 69.02, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.077, + "new_cases_per_million": 0.077, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.09 + }, + { + "date": "2020-03-16", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.386, + "new_cases_per_million": 0.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.2 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.386, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.2 + }, + { + "date": "2020-03-18", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.54, + "new_cases_per_million": 0.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.2 + }, + { + "date": "2020-03-19", + "total_cases": 11.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.849, + "new_cases_per_million": 0.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.2 + }, + { + "date": "2020-03-20", + "total_cases": 11.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.849, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 42.59 + }, + { + "date": "2020-03-21", + "total_cases": 17.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.313, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-22", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.313, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-23", + "total_cases": 19.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.467, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-24", + "total_cases": 36.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.779, + "new_cases_per_million": 1.313, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-25", + "total_cases": 40.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.088, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-26", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.165, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.331, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-27", + "total_cases": 50.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.86, + "new_cases_per_million": 0.695, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 54.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.169, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 60.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.632, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.474, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 70.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.404, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 75.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.791, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.386, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 82.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.331, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.452, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.331, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.353, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 89.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.871, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.386, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 102.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.875, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.463, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 104.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.03, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5701.0, + "total_tests_per_thousand": 0.44, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 105.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.107, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.386, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 806.0, + "total_tests": 6507.0, + "total_tests_per_thousand": 0.502, + "new_tests_per_thousand": 0.062, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 105.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.107, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.331, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 772.0, + "total_tests": 7279.0, + "total_tests_per_thousand": 0.562, + "new_tests_per_thousand": 0.06, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 110.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.493, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 720.0, + "total_tests": 7999.0, + "total_tests_per_thousand": 0.618, + "new_tests_per_thousand": 0.056, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 113.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.724, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1036.0, + "total_tests": 9035.0, + "total_tests_per_thousand": 0.698, + "new_tests_per_thousand": 0.08, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 118.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.11, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 842.0, + "total_tests": 9877.0, + "total_tests_per_thousand": 0.763, + "new_tests_per_thousand": 0.065, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 120.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.265, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.199, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1160.0, + "total_tests": 11037.0, + "total_tests_per_thousand": 0.852, + "new_tests_per_thousand": 0.09, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 126.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.728, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 901.0, + "total_tests": 11938.0, + "total_tests_per_thousand": 0.922, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 891.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 283.5, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 127.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.805, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 983.0, + "total_tests": 12921.0, + "total_tests_per_thousand": 0.998, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 916.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 291.455, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 134.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.346, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 923.0, + "total_tests": 13844.0, + "total_tests_per_thousand": 1.069, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 226.41400000000002, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 136.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.5, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 664.0, + "total_tests": 14508.0, + "total_tests_per_thousand": 1.12, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 930.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 250.385, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 138.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.655, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 760.0, + "total_tests": 15268.0, + "total_tests_per_thousand": 1.179, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 890.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 249.2, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 143.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.041, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 712.0, + "total_tests": 15980.0, + "total_tests_per_thousand": 1.234, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 872.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 244.16, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 144.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.118, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 722.0, + "total_tests": 16702.0, + "total_tests_per_thousand": 1.29, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 809.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 235.958, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-20", + "total_cases": 147.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.349, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.232, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1299.0, + "total_tests": 18001.0, + "total_tests_per_thousand": 1.39, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 866.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 288.66700000000003, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-21", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.349, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1449.0, + "total_tests": 19450.0, + "total_tests_per_thousand": 1.502, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 326.55, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-22", + "total_cases": 150.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.581, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1038.0, + "total_tests": 20488.0, + "total_tests_per_thousand": 1.582, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 949.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 415.18800000000005, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-23", + "total_cases": 153.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.813, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1343.0, + "total_tests": 21831.0, + "total_tests_per_thousand": 1.686, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1046.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 430.70599999999996, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-24", + "total_cases": 154.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.89, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1046.0, + "total_tests": 22877.0, + "total_tests_per_thousand": 1.766, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 1087.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 475.56199999999995, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-25", + "total_cases": 176.0, + "new_cases": 22.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.588, + "new_cases_per_million": 1.699, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1275.0, + "total_tests": 24152.0, + "total_tests_per_thousand": 1.865, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 1167.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 247.545, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-26", + "total_cases": 183.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.129, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1025.0, + "total_tests": 25177.0, + "total_tests_per_thousand": 1.944, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1211.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 217.359, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-27", + "total_cases": 191.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.747, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.485, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1214.0, + "total_tests": 26391.0, + "total_tests_per_thousand": 2.038, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 1199.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 190.75, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 207.0, + "new_cases": 16.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.982, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 0.662, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1505.0, + "total_tests": 27896.0, + "total_tests_per_thousand": 2.154, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 1207.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 140.817, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 212.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.368, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.684, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1705.0, + "total_tests": 29601.0, + "total_tests_per_thousand": 2.285, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 1302.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 147.0, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 225.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.372, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1140.0, + "total_tests": 30741.0, + "total_tests_per_thousand": 2.373, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 1273.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 123.764, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 243.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.761, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1365.0, + "total_tests": 32106.0, + "total_tests_per_thousand": 2.479, + "new_tests_per_thousand": 0.105, + "new_tests_smoothed": 1318.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 103.663, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 249.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.225, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.805, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1197.0, + "total_tests": 33303.0, + "total_tests_per_thousand": 2.571, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 1307.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 125.329, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 255.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.688, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1047.0, + "total_tests": 34350.0, + "total_tests_per_thousand": 2.652, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 1310.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 127.361, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 259.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.997, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.75, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 746.0, + "total_tests": 35096.0, + "total_tests_per_thousand": 2.71, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1244.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 128.059, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-05", + "total_cases": 261.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.151, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 896.0, + "total_tests": 35992.0, + "total_tests_per_thousand": 2.779, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1157.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 149.981, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-06", + "total_cases": 261.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.151, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.54, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1323.0, + "total_tests": 37315.0, + "total_tests_per_thousand": 2.881, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1102.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 157.429, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-07", + "total_cases": 268.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.691, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.474, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1519.0, + "total_tests": 38834.0, + "total_tests_per_thousand": 2.998, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1156.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 188.18599999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-08", + "total_cases": 271.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.923, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.309, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1353.0, + "total_tests": 40187.0, + "total_tests_per_thousand": 3.103, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 288.5, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-09", + "total_cases": 273.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.077, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1198.0, + "total_tests": 41385.0, + "total_tests_per_thousand": 3.195, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 1155.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 336.875, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-10", + "total_cases": 280.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.618, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1040.0, + "total_tests": 42425.0, + "total_tests_per_thousand": 3.276, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 323.12, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-11", + "total_cases": 284.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.927, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 380.0, + "total_tests": 42805.0, + "total_tests_per_thousand": 3.305, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 308.28, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-12", + "total_cases": 285.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.004, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.265, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 574.0, + "total_tests": 43379.0, + "total_tests_per_thousand": 3.349, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 1055.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 307.70799999999997, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-13", + "total_cases": 286.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.081, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 866.0, + "total_tests": 44245.0, + "total_tests_per_thousand": 3.416, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 990.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 277.2, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-14", + "total_cases": 287.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.158, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 895.0, + "total_tests": 45140.0, + "total_tests_per_thousand": 3.485, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 901.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 331.94699999999995, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-15", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1058.0, + "total_tests": 46198.0, + "total_tests_per_thousand": 3.567, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 859.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 375.81199999999995, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-16", + "total_cases": 287.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.158, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.154, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2041.0, + "total_tests": 48239.0, + "total_tests_per_thousand": 3.724, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 489.5, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-17", + "total_cases": 289.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.313, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.099, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1135.0, + "total_tests": 49374.0, + "total_tests_per_thousand": 3.812, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 993.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 772.3330000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-18", + "total_cases": 292.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.544, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.088, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1744.0, + "total_tests": 51118.0, + "total_tests_per_thousand": 3.947, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 1039.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-19", + "total_cases": 297.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.93, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1217.0, + "total_tests": 52335.0, + "total_tests_per_thousand": 4.041, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 1279.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 746.0830000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-20", + "total_cases": 308.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.78, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.243, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 982.0, + "total_tests": 53317.0, + "total_tests_per_thousand": 4.116, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1296.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 412.36400000000003, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-21", + "total_cases": 314.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.243, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.298, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1083.0, + "total_tests": 54400.0, + "total_tests_per_thousand": 4.2, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1323.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 343.0, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-22", + "total_cases": 320.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.706, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1568.0, + "total_tests": 55968.0, + "total_tests_per_thousand": 4.321, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 1396.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 296.121, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-23", + "total_cases": 321.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.783, + "new_cases_per_million": 0.077, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1109.0, + "total_tests": 57077.0, + "total_tests_per_thousand": 4.407, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 1263.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 260.029, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-24", + "total_cases": 325.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.092, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1400.0, + "total_tests": 58477.0, + "total_tests_per_thousand": 4.515, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 1300.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 252.778, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-25", + "total_cases": 327.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.247, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.386, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 892.0, + "total_tests": 59369.0, + "total_tests_per_thousand": 4.584, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1179.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 235.8, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-26", + "total_cases": 336.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.942, + "new_cases_per_million": 0.695, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1074.0, + "total_tests": 60443.0, + "total_tests_per_thousand": 4.667, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1158.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 207.84599999999998, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-27", + "total_cases": 339.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.173, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2059.0, + "total_tests": 62502.0, + "total_tests_per_thousand": 4.826, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 1312.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 296.258, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-28", + "total_cases": 346.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.714, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.353, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1766.0, + "total_tests": 64268.0, + "total_tests_per_thousand": 4.962, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 1410.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 308.438, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-29", + "total_cases": 349.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.945, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1340.0, + "total_tests": 65608.0, + "total_tests_per_thousand": 5.065, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 1377.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 332.379, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-30", + "total_cases": 355.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.408, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1368.0, + "total_tests": 66976.0, + "total_tests_per_thousand": 5.171, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1414.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 291.118, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-05-31", + "total_cases": 359.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.717, + "new_cases_per_million": 0.309, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.077, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1092.0, + "total_tests": 68068.0, + "total_tests_per_thousand": 5.255, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1370.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 282.059, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-06-01", + "total_cases": 370.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 28.567, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.474, + "total_deaths_per_million": 0.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1083.0, + "total_tests": 69151.0, + "total_tests_per_thousand": 5.339, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1397.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 227.419, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 69.44 + }, + { + "date": "2020-06-02", + "total_cases": 377.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 29.107, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.452, + "total_deaths_per_million": 0.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 957.0, + "total_tests": 70108.0, + "total_tests_per_thousand": 5.413, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1381.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 235.78, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-03", + "total_cases": 384.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 29.647, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 0.496, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1033.0, + "total_tests": 71141.0, + "total_tests_per_thousand": 5.493, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1234.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 191.956, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-04", + "total_cases": 397.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.651, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1369.0, + "total_tests": 72510.0, + "total_tests_per_thousand": 5.598, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1177.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 161.549, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-05", + "total_cases": 410.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 31.655, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1558.0, + "total_tests": 74068.0, + "total_tests_per_thousand": 5.719, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 1209.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 138.738, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-06", + "total_cases": 420.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.427, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 0.717, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 945.0, + "total_tests": 75013.0, + "total_tests_per_thousand": 5.792, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 1148.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 123.631, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-07", + "total_cases": 431.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.276, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1318.0, + "total_tests": 76331.0, + "total_tests_per_thousand": 5.893, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1180.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 114.72200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-08", + "total_cases": 439.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 33.894, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1928.0, + "total_tests": 78259.0, + "total_tests_per_thousand": 6.042, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 1301.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 131.986, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-09", + "total_cases": 451.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 34.82, + "new_cases_per_million": 0.926, + "new_cases_smoothed_per_million": 0.816, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 1870.0, + "total_tests": 80129.0, + "total_tests_per_thousand": 6.187, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 135.459, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-10", + "total_cases": 463.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.747, + "new_cases_per_million": 0.926, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2110.0, + "total_tests": 82239.0, + "total_tests_per_thousand": 6.349, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 1585.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 140.44299999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-11", + "total_cases": 476.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.75, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 0.871, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1790.0, + "total_tests": 84029.0, + "total_tests_per_thousand": 6.488, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 1646.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 145.84799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-12", + "total_cases": 494.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.14, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1584.0, + "total_tests": 85613.0, + "total_tests_per_thousand": 6.61, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1649.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 137.417, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-13", + "total_cases": 510.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.376, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 0.993, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2043.0, + "total_tests": 87656.0, + "total_tests_per_thousand": 6.768, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 1806.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 140.467, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-14", + "total_cases": 541.0, + "new_cases": 31.0, + "new_cases_smoothed": 15.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.769, + "new_cases_per_million": 2.393, + "new_cases_smoothed_per_million": 1.213, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3495.0, + "total_tests": 91151.0, + "total_tests_per_thousand": 7.037, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 2117.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 134.718, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-15", + "total_cases": 582.0, + "new_cases": 41.0, + "new_cases_smoothed": 20.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.934, + "new_cases_per_million": 3.165, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2908.0, + "total_tests": 94059.0, + "total_tests_per_thousand": 7.262, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 110.48299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-16", + "total_cases": 612.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.251, + "new_cases_per_million": 2.316, + "new_cases_smoothed_per_million": 1.776, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2742.0, + "total_tests": 96801.0, + "total_tests_per_thousand": 7.474, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 2382.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 103.565, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-17", + "total_cases": 636.0, + "new_cases": 24.0, + "new_cases_smoothed": 24.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.104, + "new_cases_per_million": 1.853, + "new_cases_smoothed_per_million": 1.908, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2508.0, + "total_tests": 99309.0, + "total_tests_per_thousand": 7.667, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 2439.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 98.68799999999999, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-18", + "total_cases": 639.0, + "new_cases": 3.0, + "new_cases_smoothed": 23.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.335, + "new_cases_per_million": 0.232, + "new_cases_smoothed_per_million": 1.798, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2547.0, + "total_tests": 101856.0, + "total_tests_per_thousand": 7.864, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 2547.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 109.38, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-19", + "total_cases": 646.0, + "new_cases": 7.0, + "new_cases_smoothed": 21.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.876, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 1.676, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3033.0, + "total_tests": 104889.0, + "total_tests_per_thousand": 8.098, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 2754.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 126.829, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-20", + "total_cases": 661.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 51.034, + "new_cases_per_million": 1.158, + "new_cases_smoothed_per_million": 1.665, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3116.0, + "total_tests": 108005.0, + "total_tests_per_thousand": 8.339, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 2907.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 134.762, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-21", + "total_cases": 702.0, + "new_cases": 41.0, + "new_cases_smoothed": 23.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.199, + "new_cases_per_million": 3.165, + "new_cases_smoothed_per_million": 1.776, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3252.0, + "total_tests": 111257.0, + "total_tests_per_thousand": 8.59, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 2872.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 124.87, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-22", + "total_cases": 728.0, + "new_cases": 26.0, + "new_cases_smoothed": 20.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.207, + "new_cases_per_million": 2.007, + "new_cases_smoothed_per_million": 1.61, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2287.0, + "total_tests": 113544.0, + "total_tests_per_thousand": 8.766, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 2784.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 133.47899999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-23", + "total_cases": 787.0, + "new_cases": 59.0, + "new_cases_smoothed": 25.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.762, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 1.93, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4568.0, + "total_tests": 118112.0, + "total_tests_per_thousand": 9.119, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 3044.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 121.76, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 56.48 + }, + { + "date": "2020-06-24", + "total_cases": 798.0, + "new_cases": 11.0, + "new_cases_smoothed": 23.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.611, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 1.787, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3415.0, + "total_tests": 121527.0, + "total_tests_per_thousand": 9.383, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 3174.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 137.148, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-25", + "total_cases": 830.0, + "new_cases": 32.0, + "new_cases_smoothed": 27.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.082, + "new_cases_per_million": 2.471, + "new_cases_smoothed_per_million": 2.107, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4757.0, + "total_tests": 126284.0, + "total_tests_per_thousand": 9.75, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 3490.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 127.906, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-26", + "total_cases": 850.0, + "new_cases": 20.0, + "new_cases_smoothed": 29.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.626, + "new_cases_per_million": 1.544, + "new_cases_smoothed_per_million": 2.25, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3763.0, + "total_tests": 130047.0, + "total_tests_per_thousand": 10.041, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 3594.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 123.324, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-27", + "total_cases": 858.0, + "new_cases": 8.0, + "new_cases_smoothed": 28.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.244, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 2.173, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4702.0, + "total_tests": 134749.0, + "total_tests_per_thousand": 10.404, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 3821.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 135.77200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-28", + "total_cases": 878.0, + "new_cases": 20.0, + "new_cases_smoothed": 25.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.788, + "new_cases_per_million": 1.544, + "new_cases_smoothed_per_million": 1.941, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3002.0, + "total_tests": 137751.0, + "total_tests_per_thousand": 10.635, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 3785.0, + "new_tests_smoothed_per_thousand": 0.292, + "tests_per_case": 150.54, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-29", + "total_cases": 900.0, + "new_cases": 22.0, + "new_cases_smoothed": 24.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.486, + "new_cases_per_million": 1.699, + "new_cases_smoothed_per_million": 1.897, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2498.0, + "total_tests": 140249.0, + "total_tests_per_thousand": 10.828, + "new_tests_per_thousand": 0.193, + "new_tests_smoothed": 3815.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 155.262, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-06-30", + "total_cases": 1001.0, + "new_cases": 101.0, + "new_cases_smoothed": 30.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.284, + "new_cases_per_million": 7.798, + "new_cases_smoothed_per_million": 2.36, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3694.0, + "total_tests": 143943.0, + "total_tests_per_thousand": 11.113, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 3690.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 120.70100000000001, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-01", + "total_cases": 1025.0, + "new_cases": 24.0, + "new_cases_smoothed": 32.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.137, + "new_cases_per_million": 1.853, + "new_cases_smoothed_per_million": 2.504, + "total_deaths_per_million": 0.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3961.0, + "total_tests": 147904.0, + "total_tests_per_thousand": 11.419, + "new_tests_per_thousand": 0.306, + "new_tests_smoothed": 3768.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 116.194, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-02", + "total_cases": 1042.0, + "new_cases": 17.0, + "new_cases_smoothed": 30.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 80.45, + "new_cases_per_million": 1.313, + "new_cases_smoothed_per_million": 2.338, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3737.0, + "total_tests": 151641.0, + "total_tests_per_thousand": 11.708, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 3622.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 119.594, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-03", + "total_cases": 1063.0, + "new_cases": 21.0, + "new_cases_smoothed": 30.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.071, + "new_cases_per_million": 1.621, + "new_cases_smoothed_per_million": 2.349, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2216.0, + "total_tests": 153857.0, + "total_tests_per_thousand": 11.879, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 3401.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 111.77, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-04", + "total_cases": 1081.0, + "new_cases": 18.0, + "new_cases_smoothed": 31.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 83.461, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 2.46, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3414.0, + "total_tests": 157271.0, + "total_tests_per_thousand": 12.142, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 3217.0, + "new_tests_smoothed_per_thousand": 0.248, + "tests_per_case": 100.98200000000001, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-05", + "total_cases": 1092.0, + "new_cases": 11.0, + "new_cases_smoothed": 30.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.31, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 2.36, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3279.0, + "total_tests": 160550.0, + "total_tests_per_thousand": 12.396, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 3257.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 106.537, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-06", + "total_cases": 1105.0, + "new_cases": 13.0, + "new_cases_smoothed": 29.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.314, + "new_cases_per_million": 1.004, + "new_cases_smoothed_per_million": 2.261, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2834.0, + "total_tests": 163384.0, + "total_tests_per_thousand": 12.614, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 3305.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 112.854, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-07", + "total_cases": 1113.0, + "new_cases": 8.0, + "new_cases_smoothed": 16.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.931, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 1.235, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2871.0, + "total_tests": 166255.0, + "total_tests_per_thousand": 12.836, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 3187.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 199.188, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-07-08", + "total_cases": 1172.0, + "new_cases": 59.0, + "new_cases_smoothed": 21.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 90.486, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 1.621, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2644.0, + "total_tests": 168899.0, + "total_tests_per_thousand": 13.04, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 2999.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 142.81, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-09", + "total_cases": 1194.0, + "new_cases": 22.0, + "new_cases_smoothed": 21.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.185, + "new_cases_per_million": 1.699, + "new_cases_smoothed_per_million": 1.676, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3463.0, + "total_tests": 172362.0, + "total_tests_per_thousand": 13.308, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 2960.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 136.316, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-10", + "total_cases": 1210.0, + "new_cases": 16.0, + "new_cases_smoothed": 21.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.42, + "new_cases_per_million": 1.235, + "new_cases_smoothed_per_million": 1.621, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3898.0, + "total_tests": 176260.0, + "total_tests_per_thousand": 13.608, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 3200.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 152.381, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-11", + "total_cases": 1252.0, + "new_cases": 42.0, + "new_cases_smoothed": 24.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.663, + "new_cases_per_million": 3.243, + "new_cases_smoothed_per_million": 1.886, + "total_deaths_per_million": 0.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4060.0, + "total_tests": 180320.0, + "total_tests_per_thousand": 13.922, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 3293.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 134.80100000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-12", + "total_cases": 1299.0, + "new_cases": 47.0, + "new_cases_smoothed": 29.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.292, + "new_cases_per_million": 3.629, + "new_cases_smoothed_per_million": 2.283, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3021.0, + "total_tests": 183341.0, + "total_tests_per_thousand": 14.155, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 3256.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 110.10600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-13", + "total_cases": 1337.0, + "new_cases": 38.0, + "new_cases_smoothed": 33.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 103.226, + "new_cases_per_million": 2.934, + "new_cases_smoothed_per_million": 2.559, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3333.0, + "total_tests": 186674.0, + "total_tests_per_thousand": 14.413, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 3327.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_per_case": 100.384, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-14", + "total_cases": 1378.0, + "new_cases": 41.0, + "new_cases_smoothed": 37.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.391, + "new_cases_per_million": 3.165, + "new_cases_smoothed_per_million": 2.923, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 5705.0, + "total_tests": 192379.0, + "total_tests_per_thousand": 14.853, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 3732.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 98.581, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-15", + "total_cases": 1416.0, + "new_cases": 38.0, + "new_cases_smoothed": 34.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 109.325, + "new_cases_per_million": 2.934, + "new_cases_smoothed_per_million": 2.691, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2423.0, + "total_tests": 194802.0, + "total_tests_per_thousand": 15.04, + "new_tests_per_thousand": 0.187, + "new_tests_smoothed": 3700.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 106.148, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-16", + "total_cases": 1435.0, + "new_cases": 19.0, + "new_cases_smoothed": 34.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 110.792, + "new_cases_per_million": 1.467, + "new_cases_smoothed_per_million": 2.658, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 5556.0, + "total_tests": 200358.0, + "total_tests_per_thousand": 15.469, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 3999.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 116.154, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-17", + "total_cases": 1473.0, + "new_cases": 38.0, + "new_cases_smoothed": 37.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 113.726, + "new_cases_per_million": 2.934, + "new_cases_smoothed_per_million": 2.901, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3432.0, + "total_tests": 203790.0, + "total_tests_per_thousand": 15.734, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 3933.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 104.681, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-18", + "total_cases": 1485.0, + "new_cases": 12.0, + "new_cases_smoothed": 33.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 114.652, + "new_cases_per_million": 0.926, + "new_cases_smoothed_per_million": 2.57, + "total_deaths_per_million": 0.309, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3232.0, + "total_tests": 207022.0, + "total_tests_per_thousand": 15.984, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 3815.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 114.61399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-19", + "total_cases": 1539.0, + "new_cases": 54.0, + "new_cases_smoothed": 34.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 118.821, + "new_cases_per_million": 4.169, + "new_cases_smoothed_per_million": 2.647, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3214.0, + "total_tests": 210236.0, + "total_tests_per_thousand": 16.232, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 3842.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 112.05799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-20", + "total_cases": 1582.0, + "new_cases": 43.0, + "new_cases_smoothed": 35.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 122.141, + "new_cases_per_million": 3.32, + "new_cases_smoothed_per_million": 2.702, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3764.0, + "total_tests": 214000.0, + "total_tests_per_thousand": 16.522, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 3904.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 111.54299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-21", + "total_cases": 1629.0, + "new_cases": 47.0, + "new_cases_smoothed": 35.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 125.77, + "new_cases_per_million": 3.629, + "new_cases_smoothed_per_million": 2.768, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 7039.0, + "total_tests": 221039.0, + "total_tests_per_thousand": 17.066, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 4094.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 114.175, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-22", + "total_cases": 1655.0, + "new_cases": 26.0, + "new_cases_smoothed": 34.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 127.777, + "new_cases_per_million": 2.007, + "new_cases_smoothed_per_million": 2.636, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 4613.0, + "total_tests": 225652.0, + "total_tests_per_thousand": 17.422, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 4407.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 129.075, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-23", + "total_cases": 1689.0, + "new_cases": 34.0, + "new_cases_smoothed": 36.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 130.402, + "new_cases_per_million": 2.625, + "new_cases_smoothed_per_million": 2.802, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 5534.0, + "total_tests": 231186.0, + "total_tests_per_thousand": 17.849, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 4404.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 121.37, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-24", + "total_cases": 1710.0, + "new_cases": 21.0, + "new_cases_smoothed": 33.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.024, + "new_cases_per_million": 1.621, + "new_cases_smoothed_per_million": 2.614, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 2491.0, + "total_tests": 233677.0, + "total_tests_per_thousand": 18.041, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 4270.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 126.118, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-25", + "total_cases": 1729.0, + "new_cases": 19.0, + "new_cases_smoothed": 34.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 133.491, + "new_cases_per_million": 1.467, + "new_cases_smoothed_per_million": 2.691, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 4330.0, + "total_tests": 238007.0, + "total_tests_per_thousand": 18.376, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 4426.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 126.975, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-26", + "total_cases": 1752.0, + "new_cases": 23.0, + "new_cases_smoothed": 30.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.267, + "new_cases_per_million": 1.776, + "new_cases_smoothed_per_million": 2.349, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4122.0, + "total_tests": 242129.0, + "total_tests_per_thousand": 18.694, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 4556.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 149.72799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-27", + "total_cases": 1821.0, + "new_cases": 69.0, + "new_cases_smoothed": 34.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.594, + "new_cases_per_million": 5.327, + "new_cases_smoothed_per_million": 2.636, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6165.0, + "total_tests": 248294.0, + "total_tests_per_thousand": 19.17, + "new_tests_per_thousand": 0.476, + "new_tests_smoothed": 4899.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 143.485, + "positive_rate": 0.006999999999999999, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-07-28", + "total_cases": 1879.0, + "new_cases": 58.0, + "new_cases_smoothed": 35.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.072, + "new_cases_per_million": 4.478, + "new_cases_smoothed_per_million": 2.757, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3521.0, + "total_tests": 251815.0, + "total_tests_per_thousand": 19.442, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 4397.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 123.116, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-29", + "total_cases": 1926.0, + "new_cases": 47.0, + "new_cases_smoothed": 38.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 148.701, + "new_cases_per_million": 3.629, + "new_cases_smoothed_per_million": 2.989, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4144.0, + "total_tests": 255959.0, + "total_tests_per_thousand": 19.762, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 4330.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 111.845, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-30", + "total_cases": 1936.0, + "new_cases": 10.0, + "new_cases_smoothed": 35.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 149.473, + "new_cases_per_million": 0.772, + "new_cases_smoothed_per_million": 2.724, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4066.0, + "total_tests": 260025.0, + "total_tests_per_thousand": 20.076, + "new_tests_per_thousand": 0.314, + "new_tests_smoothed": 4120.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 116.76100000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-07-31", + "total_cases": 1994.0, + "new_cases": 58.0, + "new_cases_smoothed": 40.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.951, + "new_cases_per_million": 4.478, + "new_cases_smoothed_per_million": 3.132, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3374.0, + "total_tests": 263399.0, + "total_tests_per_thousand": 20.336, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 4246.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 104.655, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-01", + "total_cases": 2022.0, + "new_cases": 28.0, + "new_cases_smoothed": 41.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.112, + "new_cases_per_million": 2.162, + "new_cases_smoothed_per_million": 3.232, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5862.0, + "total_tests": 269261.0, + "total_tests_per_thousand": 20.789, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 4465.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 106.67200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-02", + "total_cases": 2042.0, + "new_cases": 20.0, + "new_cases_smoothed": 41.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 157.657, + "new_cases_per_million": 1.544, + "new_cases_smoothed_per_million": 3.199, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2633.0, + "total_tests": 271894.0, + "total_tests_per_thousand": 20.992, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 4252.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 102.634, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-03", + "total_cases": 2062.0, + "new_cases": 20.0, + "new_cases_smoothed": 34.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 159.201, + "new_cases_per_million": 1.544, + "new_cases_smoothed_per_million": 2.658, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3491.0, + "total_tests": 275385.0, + "total_tests_per_thousand": 21.262, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 3870.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 112.40700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-04", + "total_cases": 2092.0, + "new_cases": 30.0, + "new_cases_smoothed": 30.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.517, + "new_cases_per_million": 2.316, + "new_cases_smoothed_per_million": 2.349, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3072.0, + "total_tests": 278457.0, + "total_tests_per_thousand": 21.499, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 3806.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 125.08, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-05", + "total_cases": 2099.0, + "new_cases": 7.0, + "new_cases_smoothed": 24.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.057, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 1.908, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4598.0, + "total_tests": 283055.0, + "total_tests_per_thousand": 21.854, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 3871.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 156.63, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-06", + "total_cases": 2104.0, + "new_cases": 5.0, + "new_cases_smoothed": 24.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.443, + "new_cases_per_million": 0.386, + "new_cases_smoothed_per_million": 1.853, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3196.0, + "total_tests": 286251.0, + "total_tests_per_thousand": 22.101, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 3747.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 156.125, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-07", + "total_cases": 2111.0, + "new_cases": 7.0, + "new_cases_smoothed": 16.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.984, + "new_cases_per_million": 0.54, + "new_cases_smoothed_per_million": 1.29, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2902.0, + "total_tests": 289153.0, + "total_tests_per_thousand": 22.325, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 3679.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 220.111, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-08", + "total_cases": 2128.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 164.296, + "new_cases_per_million": 1.313, + "new_cases_smoothed_per_million": 1.169, + "total_deaths_per_million": 0.386, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4452.0, + "total_tests": 293605.0, + "total_tests_per_thousand": 22.668, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 3478.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 229.679, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-09", + "total_cases": 2134.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 164.76, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 1.015, + "total_deaths_per_million": 0.463, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 5175.0, + "total_tests": 298780.0, + "total_tests_per_thousand": 23.068, + "new_tests_per_thousand": 0.4, + "new_tests_smoothed": 3841.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 292.25, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-10", + "total_cases": 2140.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 165.223, + "new_cases_per_million": 0.463, + "new_cases_smoothed_per_million": 0.86, + "total_deaths_per_million": 0.54, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5720.0, + "total_tests": 304500.0, + "total_tests_per_thousand": 23.51, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 4159.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 373.244, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-11", + "total_cases": 2152.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 166.149, + "new_cases_per_million": 0.926, + "new_cases_smoothed_per_million": 0.662, + "total_deaths_per_million": 0.54, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5153.0, + "total_tests": 309653.0, + "total_tests_per_thousand": 23.907, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 4457.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 519.9830000000001, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-12", + "total_cases": 2171.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 167.616, + "new_cases_per_million": 1.467, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.54, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 4886.0, + "total_tests": 314539.0, + "total_tests_per_thousand": 24.285, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 4498.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 437.306, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-13", + "total_cases": 2189.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 169.006, + "new_cases_per_million": 1.39, + "new_cases_smoothed_per_million": 0.938, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 4756.0, + "total_tests": 319295.0, + "total_tests_per_thousand": 24.652, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 4721.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 388.788, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-14", + "total_cases": 2200.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 169.855, + "new_cases_per_million": 0.849, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 4610.0, + "total_tests": 323905.0, + "total_tests_per_thousand": 25.008, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 4965.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 390.506, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-15", + "total_cases": 2293.0, + "new_cases": 93.0, + "new_cases_smoothed": 23.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 177.035, + "new_cases_per_million": 7.18, + "new_cases_smoothed_per_million": 1.82, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 5569.0, + "total_tests": 329474.0, + "total_tests_per_thousand": 25.438, + "new_tests_per_thousand": 0.43, + "new_tests_smoothed": 5124.0, + "new_tests_smoothed_per_thousand": 0.396, + "tests_per_case": 217.382, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-16", + "total_cases": 2352.0, + "new_cases": 59.0, + "new_cases_smoothed": 31.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.591, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 2.404, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 4796.0, + "total_tests": 334270.0, + "total_tests_per_thousand": 25.808, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 5070.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 162.798, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-17", + "total_cases": 2453.0, + "new_cases": 101.0, + "new_cases_smoothed": 44.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 189.389, + "new_cases_per_million": 7.798, + "new_cases_smoothed_per_million": 3.452, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 4018.0, + "total_tests": 338288.0, + "total_tests_per_thousand": 26.118, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 4827.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 107.95200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-18", + "total_cases": 2540.0, + "new_cases": 87.0, + "new_cases_smoothed": 55.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 196.106, + "new_cases_per_million": 6.717, + "new_cases_smoothed_per_million": 4.279, + "total_deaths_per_million": 0.618, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 4326.0, + "total_tests": 342614.0, + "total_tests_per_thousand": 26.452, + "new_tests_per_thousand": 0.334, + "new_tests_smoothed": 4709.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 84.956, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-19", + "total_cases": 2577.0, + "new_cases": 37.0, + "new_cases_smoothed": 58.0, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 198.962, + "new_cases_per_million": 2.857, + "new_cases_smoothed_per_million": 4.478, + "total_deaths_per_million": 0.772, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 3306.0, + "total_tests": 345920.0, + "total_tests_per_thousand": 26.707, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 4483.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 77.293, + "positive_rate": 0.013000000000000001, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-20", + "total_cases": 2644.0, + "new_cases": 67.0, + "new_cases_smoothed": 65.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 204.135, + "new_cases_per_million": 5.173, + "new_cases_smoothed_per_million": 5.018, + "total_deaths_per_million": 0.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5463.0, + "total_tests": 351383.0, + "total_tests_per_thousand": 27.129, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 4584.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 70.523, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-21", + "total_cases": 2717.0, + "new_cases": 73.0, + "new_cases_smoothed": 73.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 209.771, + "new_cases_per_million": 5.636, + "new_cases_smoothed_per_million": 5.702, + "total_deaths_per_million": 0.849, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 5700.0, + "total_tests": 357083.0, + "total_tests_per_thousand": 27.569, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 4740.0, + "new_tests_smoothed_per_thousand": 0.366, + "tests_per_case": 64.178, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-22", + "total_cases": 2780.0, + "new_cases": 63.0, + "new_cases_smoothed": 69.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 214.635, + "new_cases_per_million": 4.864, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.849, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 4759.0, + "total_tests": 361842.0, + "total_tests_per_thousand": 27.937, + "new_tests_per_thousand": 0.367, + "new_tests_smoothed": 4624.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 66.464, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-23", + "total_cases": 2889.0, + "new_cases": 109.0, + "new_cases_smoothed": 76.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 223.051, + "new_cases_per_million": 8.416, + "new_cases_smoothed_per_million": 5.923, + "total_deaths_per_million": 0.849, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 6402.0, + "total_tests": 368244.0, + "total_tests_per_thousand": 28.431, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 4853.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 63.261, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-24", + "total_cases": 3089.0, + "new_cases": 200.0, + "new_cases_smoothed": 90.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 238.492, + "new_cases_per_million": 15.441, + "new_cases_smoothed_per_million": 7.015, + "total_deaths_per_million": 0.926, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 3642.0, + "total_tests": 371886.0, + "total_tests_per_thousand": 28.712, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 4800.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 52.83, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-25", + "total_cases": 3306.0, + "new_cases": 217.0, + "new_cases_smoothed": 109.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 255.246, + "new_cases_per_million": 16.754, + "new_cases_smoothed_per_million": 8.449, + "total_deaths_per_million": 1.081, + "new_deaths_per_million": 0.154, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6128.0, + "total_tests": 378014.0, + "total_tests_per_thousand": 29.185, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 5057.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 46.213, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 75.93 + }, + { + "date": "2020-08-26", + "total_cases": 3537.0, + "new_cases": 231.0, + "new_cases_smoothed": 137.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 273.081, + "new_cases_per_million": 17.835, + "new_cases_smoothed_per_million": 10.588, + "total_deaths_per_million": 1.158, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 5467.0, + "total_tests": 383481.0, + "total_tests_per_thousand": 29.607, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 5366.0, + "new_tests_smoothed_per_thousand": 0.414, + "tests_per_case": 39.126999999999995, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-27", + "total_cases": 3625.0, + "new_cases": 88.0, + "new_cases_smoothed": 140.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 279.875, + "new_cases_per_million": 6.794, + "new_cases_smoothed_per_million": 10.82, + "total_deaths_per_million": 1.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 4597.0, + "total_tests": 388078.0, + "total_tests_per_thousand": 29.962, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 5242.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 37.405, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-28", + "total_cases": 3672.0, + "new_cases": 47.0, + "new_cases_smoothed": 136.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 283.504, + "new_cases_per_million": 3.629, + "new_cases_smoothed_per_million": 10.533, + "total_deaths_per_million": 1.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 5159.0, + "total_tests": 393237.0, + "total_tests_per_thousand": 30.361, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 5165.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 37.859, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-29", + "total_cases": 3742.0, + "new_cases": 70.0, + "new_cases_smoothed": 137.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 288.908, + "new_cases_per_million": 5.404, + "new_cases_smoothed_per_million": 10.61, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 6163.0, + "total_tests": 399400.0, + "total_tests_per_thousand": 30.836, + "new_tests_per_thousand": 0.476, + "new_tests_smoothed": 5365.0, + "new_tests_smoothed_per_thousand": 0.414, + "tests_per_case": 39.038000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-30", + "total_cases": 3843.0, + "new_cases": 101.0, + "new_cases_smoothed": 136.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 296.706, + "new_cases_per_million": 7.798, + "new_cases_smoothed_per_million": 10.522, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests": 5544.0, + "total_tests": 404944.0, + "total_tests_per_thousand": 31.264, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 5243.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 38.471, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-08-31", + "total_cases": 4020.0, + "new_cases": 177.0, + "new_cases_smoothed": 133.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 310.372, + "new_cases_per_million": 13.666, + "new_cases_smoothed_per_million": 10.269, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.044, + "new_tests": 4763.0, + "total_tests": 409707.0, + "total_tests_per_thousand": 31.632, + "new_tests_per_thousand": 0.368, + "new_tests_smoothed": 5403.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 40.624, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-09-01", + "total_cases": 4063.0, + "new_cases": 43.0, + "new_cases_smoothed": 108.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 313.692, + "new_cases_per_million": 3.32, + "new_cases_smoothed_per_million": 8.349, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5622.0, + "total_tests": 415329.0, + "total_tests_per_thousand": 32.066, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 5331.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 49.29600000000001, + "positive_rate": 0.02, + "tests_units": "samples tested", + "stringency_index": 70.37 + }, + { + "date": "2020-09-02", + "total_cases": 4142.0, + "new_cases": 79.0, + "new_cases_smoothed": 86.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 319.791, + "new_cases_per_million": 6.099, + "new_cases_smoothed_per_million": 6.673, + "total_deaths_per_million": 1.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "stringency_index": 70.37 + }, + { + "date": "2020-09-03", + "total_cases": 4218.0, + "new_cases": 76.0, + "new_cases_smoothed": 84.714, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 325.659, + "new_cases_per_million": 5.868, + "new_cases_smoothed_per_million": 6.541, + "total_deaths_per_million": 1.313, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.022, + "stringency_index": 70.37 + }, + { + "date": "2020-09-04", + "total_cases": 4255.0, + "new_cases": 37.0, + "new_cases_smoothed": 83.286, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 328.515, + "new_cases_per_million": 2.857, + "new_cases_smoothed_per_million": 6.43, + "total_deaths_per_million": 1.39, + "new_deaths_per_million": 0.077, + "new_deaths_smoothed_per_million": 0.033 + }, + { + "date": "2020-09-05", + "total_cases": 4304.0, + "new_cases": 49.0, + "new_cases_smoothed": 80.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 332.299, + "new_cases_per_million": 3.783, + "new_cases_smoothed_per_million": 6.199, + "total_deaths_per_million": 1.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022 + } + ] + }, + "KNA": { + "continent": "North America", + "location": "Saint Kitts and Nevis", + "population": 53192.0, + "population_density": 212.865, + "gdp_per_capita": 24654.385, + "diabetes_prevalence": 12.84, + "hospital_beds_per_thousand": 2.3, + "life_expectancy": 76.23, + "data": [ + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 37.6, + "new_cases_per_million": 37.6, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 37.6, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 37.6, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 37.6, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 7.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 131.599, + "new_cases_per_million": 93.999, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 131.599, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.399, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 21.486, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.114, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.399, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.114, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 169.198, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 18.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.998, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 21.486, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.998, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.798, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 10.743, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 206.798, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.598, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.598, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.197, + "new_cases_per_million": 37.6, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 263.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 281.997, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.797, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 18.8, + "new_cases_smoothed_per_million": 5.371, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.597, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "LCA": { + "continent": "North America", + "location": "Saint Lucia", + "population": 183629.0, + "population_density": 293.187, + "median_age": 34.9, + "aged_65_older": 9.721, + "aged_70_older": 6.405, + "gdp_per_capita": 12951.839, + "cardiovasc_death_rate": 204.62, + "diabetes_prevalence": 11.62, + "handwashing_facilities": 87.202, + "hospital_beds_per_thousand": 1.3, + "life_expectancy": 76.2, + "data": [ + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 10.892, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.337, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.337, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.783, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 9.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.012, + "new_cases_per_million": 27.229, + "new_cases_smoothed_per_million": 5.446, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.012, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.446, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 13.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.795, + "new_cases_per_million": 21.783, + "new_cases_smoothed_per_million": 8.558, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.78, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.78, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.795, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.78, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 7.78, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.89, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.89, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 17.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.578, + "new_cases_per_million": 10.892, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.578, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.556, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.469, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 22.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 16.337, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 119.807, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.253, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.698, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 5.446, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.59, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "VCT": { + "continent": "North America", + "location": "Saint Vincent and the Grenadines", + "population": 110947.0, + "population_density": 281.787, + "median_age": 31.8, + "aged_65_older": 7.724, + "aged_70_older": 4.832, + "gdp_per_capita": 10727.146, + "cardiovasc_death_rate": 252.675, + "diabetes_prevalence": 11.62, + "hospital_beds_per_thousand": 2.6, + "life_expectancy": 72.53, + "data": [ + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 9.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-19", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 1.288, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.027, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.027, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 7.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.093, + "new_cases_per_million": 45.067, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.093, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.093, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.093, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.107, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 9.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.107, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 36.053, + "new_cases_smoothed_per_million": 12.876, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 108.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.173, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.186, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.186, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.186, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.2, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.213, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 5.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 153.226, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 162.24, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 25.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.333, + "new_cases_per_million": 63.093, + "new_cases_smoothed_per_million": 9.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 29.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 18.027, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 261.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.466, + "new_cases_per_million": 54.08, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.726, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 38.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 342.506, + "new_cases_per_million": 27.04, + "new_cases_smoothed_per_million": 11.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 44.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 396.586, + "new_cases_per_million": 54.08, + "new_cases_smoothed_per_million": 19.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 50.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 450.666, + "new_cases_per_million": 54.08, + "new_cases_smoothed_per_million": 19.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 450.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 450.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 450.666, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 52.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 18.027, + "new_cases_smoothed_per_million": 21.889, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.301, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 468.692, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 54.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 486.719, + "new_cases_per_million": 18.027, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 55.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.732, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 495.732, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 504.746, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 5.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 504.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.15, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 504.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 504.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 57.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.759, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 58.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 60.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 540.799, + "new_cases_per_million": 18.027, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 540.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 540.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 540.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 540.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 61.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 549.812, + "new_cases_per_million": 9.013, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 549.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.863, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 549.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 549.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SMR": { + "continent": "Europe", + "location": "San Marino", + "population": 33938.0, + "population_density": 556.667, + "gdp_per_capita": 56861.47, + "diabetes_prevalence": 5.64, + "hospital_beds_per_thousand": 3.8, + "life_expectancy": 84.97, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.465, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.465, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 29.465, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-02", + "total_cases": 8.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.724, + "new_cases_per_million": 206.258, + "new_cases_smoothed_per_million": 33.675, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 33.675, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-04", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 294.655, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 42.094, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-05", + "total_cases": 15.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 441.982, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 63.14, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-06", + "total_cases": 22.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 648.241, + "new_cases_per_million": 206.258, + "new_cases_smoothed_per_million": 88.396, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-07", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 677.706, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 92.606, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 33.33 + }, + { + "date": "2020-03-08", + "total_cases": 26.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 766.103, + "new_cases_per_million": 88.396, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 68.52 + }, + { + "date": "2020-03-09", + "total_cases": 37.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1090.223, + "new_cases_per_million": 324.12, + "new_cases_smoothed_per_million": 122.071, + "total_deaths_per_million": 29.465, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-10", + "total_cases": 49.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1443.809, + "new_cases_per_million": 353.586, + "new_cases_smoothed_per_million": 172.584, + "total_deaths_per_million": 58.931, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 68.52 + }, + { + "date": "2020-03-11", + "total_cases": 62.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1826.861, + "new_cases_per_million": 383.051, + "new_cases_smoothed_per_million": 218.887, + "total_deaths_per_million": 58.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 68.52 + }, + { + "date": "2020-03-12", + "total_cases": 66.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1944.723, + "new_cases_per_million": 117.862, + "new_cases_smoothed_per_million": 214.677, + "total_deaths_per_million": 88.396, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 68.52 + }, + { + "date": "2020-03-13", + "total_cases": 67.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1974.188, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 189.421, + "total_deaths_per_million": 147.327, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 68.52 + }, + { + "date": "2020-03-14", + "total_cases": 73.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2150.981, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 210.468, + "total_deaths_per_million": 147.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 68.52 + }, + { + "date": "2020-03-15", + "total_cases": 92.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2710.826, + "new_cases_per_million": 559.844, + "new_cases_smoothed_per_million": 277.818, + "total_deaths_per_million": 147.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 79.63 + }, + { + "date": "2020-03-16", + "total_cases": 98.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.714, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 2887.619, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 256.771, + "total_deaths_per_million": 206.258, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 25.256, + "stringency_index": 79.63 + }, + { + "date": "2020-03-17", + "total_cases": 102.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 3005.481, + "new_cases_per_million": 117.862, + "new_cases_smoothed_per_million": 223.096, + "total_deaths_per_million": 265.189, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 29.465, + "stringency_index": 79.63 + }, + { + "date": "2020-03-18", + "total_cases": 104.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3064.412, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 176.793, + "total_deaths_per_million": 324.12, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 37.884, + "stringency_index": 79.63 + }, + { + "date": "2020-03-19", + "total_cases": 109.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3211.739, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 181.002, + "total_deaths_per_million": 412.517, + "new_deaths_per_million": 88.396, + "new_deaths_smoothed_per_million": 46.303, + "stringency_index": 79.63 + }, + { + "date": "2020-03-20", + "total_cases": 126.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3712.652, + "new_cases_per_million": 500.913, + "new_cases_smoothed_per_million": 248.352, + "total_deaths_per_million": 412.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 37.884, + "stringency_index": 83.33 + }, + { + "date": "2020-03-21", + "total_cases": 151.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4449.29, + "new_cases_per_million": 736.637, + "new_cases_smoothed_per_million": 328.33, + "total_deaths_per_million": 412.517, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 37.884, + "stringency_index": 83.33 + }, + { + "date": "2020-03-22", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 20.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4449.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 248.352, + "total_deaths_per_million": 589.31, + "new_deaths_per_million": 176.793, + "new_deaths_smoothed_per_million": 63.14, + "stringency_index": 83.33 + }, + { + "date": "2020-03-23", + "total_cases": 151.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4449.29, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 223.096, + "total_deaths_per_million": 589.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 54.722, + "stringency_index": 83.33 + }, + { + "date": "2020-03-24", + "total_cases": 187.0, + "new_cases": 36.0, + "new_cases_smoothed": 12.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5510.048, + "new_cases_per_million": 1060.758, + "new_cases_smoothed_per_million": 357.795, + "total_deaths_per_million": 589.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 46.303, + "stringency_index": 83.33 + }, + { + "date": "2020-03-25", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5510.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 349.377, + "total_deaths_per_million": 618.775, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 42.094, + "stringency_index": 83.33 + }, + { + "date": "2020-03-26", + "total_cases": 208.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6128.823, + "new_cases_per_million": 618.775, + "new_cases_smoothed_per_million": 416.726, + "total_deaths_per_million": 618.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 29.465, + "stringency_index": 83.33 + }, + { + "date": "2020-03-27", + "total_cases": 218.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6423.478, + "new_cases_per_million": 294.655, + "new_cases_smoothed_per_million": 387.261, + "total_deaths_per_million": 618.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 29.465, + "stringency_index": 83.33 + }, + { + "date": "2020-03-28", + "total_cases": 223.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.286, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6570.806, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 303.074, + "total_deaths_per_million": 618.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 29.465, + "stringency_index": 83.33 + }, + { + "date": "2020-03-29", + "total_cases": 224.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6600.271, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 307.283, + "total_deaths_per_million": 648.241, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 83.33 + }, + { + "date": "2020-03-30", + "total_cases": 229.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.143, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6747.599, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 328.33, + "total_deaths_per_million": 707.172, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 83.33 + }, + { + "date": "2020-03-31", + "total_cases": 229.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6747.599, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.793, + "total_deaths_per_million": 736.637, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 21.047, + "stringency_index": 83.33 + }, + { + "date": "2020-04-01", + "total_cases": 230.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6777.064, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 181.002, + "total_deaths_per_million": 766.103, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 21.047, + "stringency_index": 83.33 + }, + { + "date": "2020-04-02", + "total_cases": 236.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6953.857, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 117.862, + "total_deaths_per_million": 766.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 21.047, + "stringency_index": 83.33 + }, + { + "date": "2020-04-03", + "total_cases": 245.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.857, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7219.046, + "new_cases_per_million": 265.189, + "new_cases_smoothed_per_million": 113.653, + "total_deaths_per_million": 883.965, + "new_deaths_per_million": 117.862, + "new_deaths_smoothed_per_million": 37.884, + "stringency_index": 83.33 + }, + { + "date": "2020-04-04", + "total_cases": 251.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 7395.839, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 117.862, + "total_deaths_per_million": 942.896, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 46.303, + "stringency_index": 83.33 + }, + { + "date": "2020-04-05", + "total_cases": 259.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7631.563, + "new_cases_per_million": 235.724, + "new_cases_smoothed_per_million": 147.327, + "total_deaths_per_million": 942.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 42.094, + "stringency_index": 83.33 + }, + { + "date": "2020-04-06", + "total_cases": 266.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7837.822, + "new_cases_per_million": 206.258, + "new_cases_smoothed_per_million": 155.746, + "total_deaths_per_million": 942.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 33.675, + "stringency_index": 83.33 + }, + { + "date": "2020-04-07", + "total_cases": 277.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.857, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8161.942, + "new_cases_per_million": 324.12, + "new_cases_smoothed_per_million": 202.049, + "total_deaths_per_million": 942.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 29.465, + "stringency_index": 83.33 + }, + { + "date": "2020-04-08", + "total_cases": 279.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8220.873, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 206.258, + "total_deaths_per_million": 1001.827, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 33.675, + "stringency_index": 83.33 + }, + { + "date": "2020-04-09", + "total_cases": 308.0, + "new_cases": 29.0, + "new_cases_smoothed": 10.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 9075.373, + "new_cases_per_million": 854.499, + "new_cases_smoothed_per_million": 303.074, + "total_deaths_per_million": 1001.827, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 33.675, + "stringency_index": 83.33 + }, + { + "date": "2020-04-10", + "total_cases": 333.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 9812.01, + "new_cases_per_million": 736.637, + "new_cases_smoothed_per_million": 370.423, + "total_deaths_per_million": 1001.827, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 344.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.286, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10136.131, + "new_cases_per_million": 324.12, + "new_cases_smoothed_per_million": 391.47, + "total_deaths_per_million": 1001.827, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 356.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.857, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10489.717, + "new_cases_per_million": 353.586, + "new_cases_smoothed_per_million": 408.308, + "total_deaths_per_million": 1031.292, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 12.628, + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10489.717, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 378.842, + "total_deaths_per_million": 1031.292, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 12.628, + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 356.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10489.717, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 332.539, + "total_deaths_per_million": 1060.758, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 87.04 + }, + { + "date": "2020-04-15", + "total_cases": 372.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10961.164, + "new_cases_per_million": 471.448, + "new_cases_smoothed_per_million": 391.47, + "total_deaths_per_million": 1060.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 87.04 + }, + { + "date": "2020-04-16", + "total_cases": 392.0, + "new_cases": 20.0, + "new_cases_smoothed": 12.0, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11550.474, + "new_cases_per_million": 589.31, + "new_cases_smoothed_per_million": 353.586, + "total_deaths_per_million": 1060.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 87.04 + }, + { + "date": "2020-04-17", + "total_cases": 426.0, + "new_cases": 34.0, + "new_cases_smoothed": 13.286, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12552.301, + "new_cases_per_million": 1001.827, + "new_cases_smoothed_per_million": 391.47, + "total_deaths_per_million": 1119.689, + "new_deaths_per_million": 58.931, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 92.59 + }, + { + "date": "2020-04-18", + "total_cases": 435.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.0, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 12817.491, + "new_cases_per_million": 265.189, + "new_cases_smoothed_per_million": 383.051, + "total_deaths_per_million": 1149.154, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 21.047, + "stringency_index": 92.59 + }, + { + "date": "2020-04-19", + "total_cases": 455.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13406.801, + "new_cases_per_million": 589.31, + "new_cases_smoothed_per_million": 416.726, + "total_deaths_per_million": 1149.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 92.59 + }, + { + "date": "2020-04-20", + "total_cases": 461.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.0, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13583.594, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 441.982, + "total_deaths_per_million": 1149.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 92.59 + }, + { + "date": "2020-04-21", + "total_cases": 462.0, + "new_cases": 1.0, + "new_cases_smoothed": 15.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13613.059, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 446.192, + "total_deaths_per_million": 1149.154, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 12.628, + "stringency_index": 92.59 + }, + { + "date": "2020-04-22", + "total_cases": 476.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.857, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14025.576, + "new_cases_per_million": 412.517, + "new_cases_smoothed_per_million": 437.773, + "total_deaths_per_million": 1178.62, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 92.59 + }, + { + "date": "2020-04-23", + "total_cases": 488.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14379.162, + "new_cases_per_million": 353.586, + "new_cases_smoothed_per_million": 404.098, + "total_deaths_per_million": 1178.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.837, + "stringency_index": 92.59 + }, + { + "date": "2020-04-24", + "total_cases": 501.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.714, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14762.213, + "new_cases_per_million": 383.051, + "new_cases_smoothed_per_million": 315.702, + "total_deaths_per_million": 1178.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 92.59 + }, + { + "date": "2020-04-25", + "total_cases": 513.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15115.799, + "new_cases_per_million": 353.586, + "new_cases_smoothed_per_million": 328.33, + "total_deaths_per_million": 1178.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-04-26", + "total_cases": 513.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15115.799, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 244.143, + "total_deaths_per_million": 1178.62, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-04-27", + "total_cases": 538.0, + "new_cases": 25.0, + "new_cases_smoothed": 11.0, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15852.437, + "new_cases_per_million": 736.637, + "new_cases_smoothed_per_million": 324.12, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 92.59 + }, + { + "date": "2020-04-28", + "total_cases": 538.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15852.437, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 319.911, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 8.419, + "stringency_index": 92.59 + }, + { + "date": "2020-04-29", + "total_cases": 553.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16294.419, + "new_cases_per_million": 441.982, + "new_cases_smoothed_per_million": 324.12, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-04-30", + "total_cases": 563.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16589.074, + "new_cases_per_million": 294.655, + "new_cases_smoothed_per_million": 315.702, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-05-01", + "total_cases": 569.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16765.867, + "new_cases_per_million": 176.793, + "new_cases_smoothed_per_million": 286.236, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-05-02", + "total_cases": 580.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17089.988, + "new_cases_per_million": 324.12, + "new_cases_smoothed_per_million": 282.027, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 92.59 + }, + { + "date": "2020-05-03", + "total_cases": 580.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17089.988, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 282.027, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 582.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17148.919, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 185.212, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-05", + "total_cases": 582.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17148.919, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 185.212, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-06", + "total_cases": 589.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17355.177, + "new_cases_per_million": 206.258, + "new_cases_smoothed_per_million": 151.537, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-07", + "total_cases": 608.0, + "new_cases": 19.0, + "new_cases_smoothed": 6.429, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17915.022, + "new_cases_per_million": 559.844, + "new_cases_smoothed_per_million": 189.421, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-08", + "total_cases": 622.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18327.538, + "new_cases_per_million": 412.517, + "new_cases_smoothed_per_million": 223.096, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-09", + "total_cases": 623.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18357.004, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 181.002, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-10", + "total_cases": 637.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18769.521, + "new_cases_per_million": 412.517, + "new_cases_smoothed_per_million": 239.933, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-11", + "total_cases": 628.0, + "new_cases": -9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18504.331, + "new_cases_per_million": -265.189, + "new_cases_smoothed_per_million": 193.63, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-12", + "total_cases": 628.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18504.331, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 193.63, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-13", + "total_cases": 638.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18798.986, + "new_cases_per_million": 294.655, + "new_cases_smoothed_per_million": 206.258, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-14", + "total_cases": 643.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18946.314, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 147.327, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-15", + "total_cases": 648.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19093.641, + "new_cases_per_million": 147.327, + "new_cases_smoothed_per_million": 109.443, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-16", + "total_cases": 652.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19211.503, + "new_cases_per_million": 117.862, + "new_cases_smoothed_per_million": 122.071, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-17", + "total_cases": 653.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19240.969, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 67.35, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-18", + "total_cases": 654.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19270.434, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 109.443, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-19", + "total_cases": 654.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19270.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 109.443, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-20", + "total_cases": 655.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19299.9, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 71.559, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-21", + "total_cases": 656.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19329.365, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 54.722, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-22", + "total_cases": 658.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19388.296, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 42.094, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-23", + "total_cases": 661.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19476.693, + "new_cases_per_million": 88.396, + "new_cases_smoothed_per_million": 37.884, + "total_deaths_per_million": 1208.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-24", + "total_cases": 665.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19594.555, + "new_cases_per_million": 117.862, + "new_cases_smoothed_per_million": 50.512, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 29.465, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-25", + "total_cases": 665.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19594.555, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-26", + "total_cases": 666.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19624.02, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 50.512, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-27", + "total_cases": 666.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19624.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-28", + "total_cases": 667.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19653.486, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-29", + "total_cases": 670.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19741.882, + "new_cases_per_million": 88.396, + "new_cases_smoothed_per_million": 50.512, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-30", + "total_cases": 671.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19771.348, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 42.094, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.209, + "stringency_index": 66.67 + }, + { + "date": "2020-05-31", + "total_cases": 671.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19771.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.256, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-06-01", + "total_cases": 671.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19771.348, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.256, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 687.0, + "new_cases": 16.0, + "new_cases_smoothed": 3.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 471.448, + "new_cases_smoothed_per_million": 88.396, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 88.396, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.187, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 71.559, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.35, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.35, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.35, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 687.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20242.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 688.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20272.261, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 691.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20360.658, + "new_cases_per_million": 88.396, + "new_cases_smoothed_per_million": 16.837, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 691.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20360.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.837, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 694.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20449.054, + "new_cases_per_million": 88.396, + "new_cases_smoothed_per_million": 29.465, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 694.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20449.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.465, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 694.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20449.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.465, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-16", + "total_cases": 694.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20449.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.465, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-17", + "total_cases": 694.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20449.054, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 25.256, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-18", + "total_cases": 696.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20507.985, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 21.047, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-19", + "total_cases": 696.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20507.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.047, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-20", + "total_cases": 696.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20507.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-21", + "total_cases": 696.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20507.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-22", + "total_cases": 696.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20507.985, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-23", + "total_cases": 698.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 58.931, + "new_cases_smoothed_per_million": 16.837, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-24", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.837, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.419, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-02", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-03", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-04", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-05", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-06", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-07", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-08", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20566.916, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-09", + "total_cases": 699.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 29.465, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-10", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-11", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-12", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-13", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-14", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-15", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.209, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-16", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-17", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-18", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-19", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-20", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-21", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-22", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-23", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-24", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-25", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-26", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-27", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-28", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-29", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-30", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-31", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-01", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-02", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-03", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-04", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-05", + "total_cases": 699.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20596.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-06", + "total_cases": 710.0, + "new_cases": 11.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 324.12, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-07", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-08", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-09", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-10", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-11", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-12", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 46.303, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-13", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-14", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-15", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-16", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-17", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-18", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-19", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-20", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-21", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-22", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-23", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-24", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-25", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-26", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-27", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-28", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-29", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-30", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-31", + "total_cases": 710.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20920.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-09-01", + "total_cases": 735.0, + "new_cases": 25.0, + "new_cases_smoothed": 3.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21657.139, + "new_cases_per_million": 736.637, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-09-02", + "total_cases": 735.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21657.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-09-03", + "total_cases": 735.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21657.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 735.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21657.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 735.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21657.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 105.234, + "total_deaths_per_million": 1237.551, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "STP": { + "continent": "Africa", + "location": "Sao Tome and Principe", + "population": 219161.0, + "population_density": 212.841, + "median_age": 18.7, + "aged_65_older": 2.886, + "aged_70_older": 2.162, + "gdp_per_capita": 3052.714, + "extreme_poverty": 32.3, + "cardiovasc_death_rate": 270.113, + "diabetes_prevalence": 2.42, + "handwashing_facilities": 41.34, + "hospital_beds_per_thousand": 2.9, + "life_expectancy": 70.39, + "data": [ + { + "date": "2020-04-09", + "total_cases": 4.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 18.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.251, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.94, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.503, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.191, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 14.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.88, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 73.006, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 4.563, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-02", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.131, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 4.563, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 4.563, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.131, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 4.563, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-05", + "total_cases": 174.0, + "new_cases": 156.0, + "new_cases_smoothed": 23.714, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 793.937, + "new_cases_per_million": 711.805, + "new_cases_smoothed_per_million": 108.205, + "total_deaths_per_million": 13.689, + "new_deaths_per_million": 9.126, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-06", + "total_cases": 174.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 793.937, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 106.249, + "total_deaths_per_million": 13.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-07", + "total_cases": 174.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 793.937, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 104.294, + "total_deaths_per_million": 13.689, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-08", + "total_cases": 187.0, + "new_cases": 13.0, + "new_cases_smoothed": 24.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 853.254, + "new_cases_per_million": 59.317, + "new_cases_smoothed_per_million": 111.464, + "total_deaths_per_million": 18.251, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-09", + "total_cases": 208.0, + "new_cases": 21.0, + "new_cases_smoothed": 27.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 949.074, + "new_cases_per_million": 95.82, + "new_cases_smoothed_per_million": 123.849, + "total_deaths_per_million": 22.814, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-10", + "total_cases": 208.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 949.074, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.849, + "total_deaths_per_million": 22.814, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-11", + "total_cases": 208.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 949.074, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 123.849, + "total_deaths_per_million": 22.814, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-12", + "total_cases": 212.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 967.325, + "new_cases_per_million": 18.251, + "new_cases_smoothed_per_million": 24.77, + "total_deaths_per_million": 22.814, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-13", + "total_cases": 220.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1003.828, + "new_cases_per_million": 36.503, + "new_cases_smoothed_per_million": 29.984, + "total_deaths_per_million": 27.377, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-14", + "total_cases": 235.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1072.271, + "new_cases_per_million": 68.443, + "new_cases_smoothed_per_million": 39.762, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-15", + "total_cases": 235.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1072.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.288, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-05-16", + "total_cases": 235.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1072.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.6, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-17", + "total_cases": 235.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1072.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.6, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-18", + "total_cases": 235.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1072.271, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.6, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-19", + "total_cases": 246.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1122.462, + "new_cases_per_million": 50.191, + "new_cases_smoothed_per_million": 22.162, + "total_deaths_per_million": 31.94, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-20", + "total_cases": 251.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1145.277, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 20.207, + "total_deaths_per_million": 36.503, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-21", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1145.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.429, + "total_deaths_per_million": 36.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-22", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1145.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.429, + "total_deaths_per_million": 36.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-23", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1145.277, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.429, + "total_deaths_per_million": 36.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-24", + "total_cases": 291.0, + "new_cases": 40.0, + "new_cases_smoothed": 8.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1327.791, + "new_cases_per_million": 182.514, + "new_cases_smoothed_per_million": 36.503, + "total_deaths_per_million": 36.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-05-25", + "total_cases": 299.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.143, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1364.294, + "new_cases_per_million": 36.503, + "new_cases_smoothed_per_million": 41.718, + "total_deaths_per_million": 41.066, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 1.304 + }, + { + "date": "2020-05-26", + "total_cases": 299.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1364.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 34.547, + "total_deaths_per_million": 50.191, + "new_deaths_per_million": 9.126, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-27", + "total_cases": 441.0, + "new_cases": 142.0, + "new_cases_smoothed": 27.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2012.219, + "new_cases_per_million": 647.925, + "new_cases_smoothed_per_million": 123.849, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-28", + "total_cases": 443.0, + "new_cases": 2.0, + "new_cases_smoothed": 27.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2021.345, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 125.153, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-29", + "total_cases": 458.0, + "new_cases": 15.0, + "new_cases_smoothed": 29.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2089.788, + "new_cases_per_million": 68.443, + "new_cases_smoothed_per_million": 134.93, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-30", + "total_cases": 463.0, + "new_cases": 5.0, + "new_cases_smoothed": 30.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2112.602, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 138.189, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-05-31", + "total_cases": 479.0, + "new_cases": 16.0, + "new_cases_smoothed": 26.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2185.608, + "new_cases_per_million": 73.006, + "new_cases_smoothed_per_million": 122.545, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.607 + }, + { + "date": "2020-06-01", + "total_cases": 483.0, + "new_cases": 4.0, + "new_cases_smoothed": 26.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2203.859, + "new_cases_per_million": 18.251, + "new_cases_smoothed_per_million": 119.938, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.956 + }, + { + "date": "2020-06-02", + "total_cases": 484.0, + "new_cases": 1.0, + "new_cases_smoothed": 26.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2208.422, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 120.59, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-03", + "total_cases": 484.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2208.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.029, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 484.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2208.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 26.725, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 499.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2276.865, + "new_cases_per_million": 68.443, + "new_cases_smoothed_per_million": 26.725, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 509.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2322.494, + "new_cases_per_million": 45.629, + "new_cases_smoothed_per_million": 29.984, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 513.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2340.745, + "new_cases_per_million": 18.251, + "new_cases_smoothed_per_million": 22.162, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 514.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2345.308, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 20.207, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 514.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2345.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.555, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 514.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2345.308, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.555, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 632.0, + "new_cases": 118.0, + "new_cases_smoothed": 21.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2883.725, + "new_cases_per_million": 538.417, + "new_cases_smoothed_per_million": 96.472, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 639.0, + "new_cases": 7.0, + "new_cases_smoothed": 20.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2915.665, + "new_cases_per_million": 31.94, + "new_cases_smoothed_per_million": 91.257, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 650.0, + "new_cases": 11.0, + "new_cases_smoothed": 20.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2965.856, + "new_cases_per_million": 50.191, + "new_cases_smoothed_per_million": 91.909, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 659.0, + "new_cases": 9.0, + "new_cases_smoothed": 20.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3006.922, + "new_cases_per_million": 41.066, + "new_cases_smoothed_per_million": 95.168, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 661.0, + "new_cases": 2.0, + "new_cases_smoothed": 21.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3016.048, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 95.82, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 661.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3016.048, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 95.82, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 671.0, + "new_cases": 10.0, + "new_cases_smoothed": 22.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3061.676, + "new_cases_per_million": 45.629, + "new_cases_smoothed_per_million": 102.338, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 683.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3116.43, + "new_cases_per_million": 54.754, + "new_cases_smoothed_per_million": 33.244, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 688.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3139.245, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 31.94, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 693.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3162.059, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 28.029, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 698.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3184.873, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 25.422, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 698.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3184.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.118, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 702.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3203.125, + "new_cases_per_million": 18.251, + "new_cases_smoothed_per_million": 26.725, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 707.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3225.939, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 23.466, + "total_deaths_per_million": 54.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 710.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3239.627, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 17.6, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-26", + "total_cases": 711.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3244.19, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 14.992, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-27", + "total_cases": 712.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3248.753, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 12.385, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-28", + "total_cases": 713.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3253.316, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 9.778, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-29", + "total_cases": 713.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3253.316, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.778, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-06-30", + "total_cases": 713.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3253.316, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.17, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-01", + "total_cases": 714.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3257.879, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-02", + "total_cases": 715.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3262.442, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 3.259, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 717.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3271.567, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 3.911, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 719.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3280.693, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 719.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3280.693, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.911, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 720.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3285.256, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 721.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3289.819, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 724.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3303.507, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 724.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3303.507, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 59.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 726.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3312.633, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-11", + "total_cases": 727.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3317.196, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-12", + "total_cases": 727.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3317.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-13", + "total_cases": 729.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3326.322, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-14", + "total_cases": 732.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3340.01, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 7.17, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-15", + "total_cases": 732.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3340.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-16", + "total_cases": 737.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3362.825, + "new_cases_per_million": 22.814, + "new_cases_smoothed_per_million": 8.474, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-17", + "total_cases": 740.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3376.513, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 9.126, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 741.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3381.076, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 9.126, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 743.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3390.202, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 10.429, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 746.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3403.89, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 11.081, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 746.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3403.89, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.126, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 746.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3403.89, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.126, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 747.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3408.453, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 749.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3417.579, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 860.0, + "new_cases": 111.0, + "new_cases_smoothed": 17.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3924.056, + "new_cases_per_million": 506.477, + "new_cases_smoothed_per_million": 77.569, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 862.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3933.182, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 77.569, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 863.0, + "new_cases": 1.0, + "new_cases_smoothed": 16.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3937.744, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 76.265, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 865.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3946.87, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 77.569, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 867.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3955.996, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 78.872, + "total_deaths_per_million": 63.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 868.0, + "new_cases": 1.0, + "new_cases_smoothed": 17.286, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3960.559, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 78.872, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 4.563, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-07-31", + "total_cases": 870.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3969.684, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 78.872, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-01", + "total_cases": 871.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3974.247, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 7.17, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-02", + "total_cases": 874.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3987.936, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 7.822, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-03", + "total_cases": 874.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3987.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.17, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-04", + "total_cases": 874.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3987.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-05", + "total_cases": 875.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3992.499, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.652 + }, + { + "date": "2020-08-06", + "total_cases": 878.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 6.518, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 878.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.215, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 878.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 878.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 878.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 878.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4006.187, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 881.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4019.876, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 3.911, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 882.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4024.439, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 882.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4024.439, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 883.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4029.002, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 3.259, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 885.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 885.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 885.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 885.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 885.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 885.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4038.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 888.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4051.816, + "new_cases_per_million": 13.689, + "new_cases_smoothed_per_million": 3.259, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 892.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4070.067, + "new_cases_per_million": 18.251, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 892.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4070.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 892.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4070.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 892.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4070.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 892.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4070.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 894.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4079.193, + "new_cases_per_million": 9.126, + "new_cases_smoothed_per_million": 5.867, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 895.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4083.756, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 4.563, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 895.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4083.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 896.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4088.319, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 896.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4088.319, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 896.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4088.319, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 896.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4088.319, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 897.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4092.881, + "new_cases_per_million": 4.563, + "new_cases_smoothed_per_million": 1.956, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 897.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4092.881, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.304, + "total_deaths_per_million": 68.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SAU": { + "continent": "Asia", + "location": "Saudi Arabia", + "population": 34813867.0, + "population_density": 15.322, + "median_age": 31.9, + "aged_65_older": 3.295, + "aged_70_older": 1.845, + "gdp_per_capita": 49045.411, + "cardiovasc_death_rate": 259.538, + "diabetes_prevalence": 17.72, + "female_smokers": 1.8, + "male_smokers": 25.4, + "hospital_beds_per_thousand": 2.7, + "life_expectancy": 75.13, + "data": [ + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.144, + "new_cases_per_million": 0.115, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-09", + "total_cases": 11.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.316, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-10", + "total_cases": 15.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.431, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-11", + "total_cases": 20.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.574, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-12", + "total_cases": 45.0, + "new_cases": 25.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.293, + "new_cases_per_million": 0.718, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-13", + "total_cases": 62.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.781, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 0.234, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-14", + "total_cases": 86.0, + "new_cases": 24.0, + "new_cases_smoothed": 11.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.47, + "new_cases_per_million": 0.689, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-15", + "total_cases": 86.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.47, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-16", + "total_cases": 118.0, + "new_cases": 32.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.389, + "new_cases_per_million": 0.919, + "new_cases_smoothed_per_million": 0.439, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-17", + "total_cases": 133.0, + "new_cases": 15.0, + "new_cases_smoothed": 16.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.82, + "new_cases_per_million": 0.431, + "new_cases_smoothed_per_million": 0.484, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-18", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.82, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-19", + "total_cases": 171.0, + "new_cases": 38.0, + "new_cases_smoothed": 18.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.912, + "new_cases_per_million": 1.092, + "new_cases_smoothed_per_million": 0.517, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-20", + "total_cases": 238.0, + "new_cases": 67.0, + "new_cases_smoothed": 25.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.836, + "new_cases_per_million": 1.925, + "new_cases_smoothed_per_million": 0.722, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-03-21", + "total_cases": 274.0, + "new_cases": 36.0, + "new_cases_smoothed": 26.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.87, + "new_cases_per_million": 1.034, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-22", + "total_cases": 392.0, + "new_cases": 118.0, + "new_cases_smoothed": 43.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.26, + "new_cases_per_million": 3.389, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-23", + "total_cases": 511.0, + "new_cases": 119.0, + "new_cases_smoothed": 56.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.678, + "new_cases_per_million": 3.418, + "new_cases_smoothed_per_million": 1.613, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-03-24", + "total_cases": 562.0, + "new_cases": 51.0, + "new_cases_smoothed": 61.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.143, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-03-25", + "total_cases": 767.0, + "new_cases": 205.0, + "new_cases_smoothed": 90.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 22.031, + "new_cases_per_million": 5.888, + "new_cases_smoothed_per_million": 2.602, + "total_deaths_per_million": 0.029, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 89.81 + }, + { + "date": "2020-03-26", + "total_cases": 900.0, + "new_cases": 133.0, + "new_cases_smoothed": 104.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.852, + "new_cases_per_million": 3.82, + "new_cases_smoothed_per_million": 2.991, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 89.81 + }, + { + "date": "2020-03-27", + "total_cases": 1012.0, + "new_cases": 112.0, + "new_cases_smoothed": 110.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 29.069, + "new_cases_per_million": 3.217, + "new_cases_smoothed_per_million": 3.176, + "total_deaths_per_million": 0.086, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 89.81 + }, + { + "date": "2020-03-28", + "total_cases": 1104.0, + "new_cases": 92.0, + "new_cases_smoothed": 118.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 31.712, + "new_cases_per_million": 2.643, + "new_cases_smoothed_per_million": 3.406, + "total_deaths_per_million": 0.086, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 89.81 + }, + { + "date": "2020-03-29", + "total_cases": 1203.0, + "new_cases": 99.0, + "new_cases_smoothed": 115.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 34.555, + "new_cases_per_million": 2.844, + "new_cases_smoothed_per_million": 3.328, + "total_deaths_per_million": 0.115, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 89.81 + }, + { + "date": "2020-03-30", + "total_cases": 1229.0, + "new_cases": 26.0, + "new_cases_smoothed": 102.571, + "total_deaths": 8.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 35.302, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 2.946, + "total_deaths_per_million": 0.23, + "new_deaths_per_million": 0.115, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 89.81 + }, + { + "date": "2020-03-31", + "total_cases": 1453.0, + "new_cases": 224.0, + "new_cases_smoothed": 127.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 41.736, + "new_cases_per_million": 6.434, + "new_cases_smoothed_per_million": 3.656, + "total_deaths_per_million": 0.23, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 89.81 + }, + { + "date": "2020-04-01", + "total_cases": 1563.0, + "new_cases": 110.0, + "new_cases_smoothed": 113.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 44.896, + "new_cases_per_million": 3.16, + "new_cases_smoothed_per_million": 3.266, + "total_deaths_per_million": 0.287, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.037, + "stringency_index": 89.81 + }, + { + "date": "2020-04-02", + "total_cases": 1720.0, + "new_cases": 157.0, + "new_cases_smoothed": 117.143, + "total_deaths": 16.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 49.406, + "new_cases_per_million": 4.51, + "new_cases_smoothed_per_million": 3.365, + "total_deaths_per_million": 0.46, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 89.81 + }, + { + "date": "2020-04-03", + "total_cases": 1885.0, + "new_cases": 165.0, + "new_cases_smoothed": 124.714, + "total_deaths": 21.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 54.145, + "new_cases_per_million": 4.739, + "new_cases_smoothed_per_million": 3.582, + "total_deaths_per_million": 0.603, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 89.81 + }, + { + "date": "2020-04-04", + "total_cases": 1885.0, + "new_cases": 0.0, + "new_cases_smoothed": 111.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 54.145, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.205, + "total_deaths_per_million": 0.603, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.074, + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 2179.0, + "new_cases": 294.0, + "new_cases_smoothed": 139.429, + "total_deaths": 29.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 62.59, + "new_cases_per_million": 8.445, + "new_cases_smoothed_per_million": 4.005, + "total_deaths_per_million": 0.833, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 2385.0, + "new_cases": 206.0, + "new_cases_smoothed": 165.143, + "total_deaths": 34.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 68.507, + "new_cases_per_million": 5.917, + "new_cases_smoothed_per_million": 4.744, + "total_deaths_per_million": 0.977, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 91.67 + }, + { + "date": "2020-04-07", + "total_cases": 2523.0, + "new_cases": 138.0, + "new_cases_smoothed": 152.857, + "total_deaths": 38.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 72.471, + "new_cases_per_million": 3.964, + "new_cases_smoothed_per_million": 4.391, + "total_deaths_per_million": 1.092, + "new_deaths_per_million": 0.115, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 91.67 + }, + { + "date": "2020-04-08", + "total_cases": 2795.0, + "new_cases": 272.0, + "new_cases_smoothed": 176.0, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 80.284, + "new_cases_per_million": 7.813, + "new_cases_smoothed_per_million": 5.055, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 91.67 + }, + { + "date": "2020-04-09", + "total_cases": 2932.0, + "new_cases": 137.0, + "new_cases_smoothed": 173.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 84.219, + "new_cases_per_million": 3.935, + "new_cases_smoothed_per_million": 4.973, + "total_deaths_per_million": 1.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 91.67 + }, + { + "date": "2020-04-10", + "total_cases": 3287.0, + "new_cases": 355.0, + "new_cases_smoothed": 200.286, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 94.416, + "new_cases_per_million": 10.197, + "new_cases_smoothed_per_million": 5.753, + "total_deaths_per_million": 1.264, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 91.67 + }, + { + "date": "2020-04-11", + "total_cases": 3651.0, + "new_cases": 364.0, + "new_cases_smoothed": 252.286, + "total_deaths": 47.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 104.872, + "new_cases_per_million": 10.456, + "new_cases_smoothed_per_million": 7.247, + "total_deaths_per_million": 1.35, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 91.67 + }, + { + "date": "2020-04-12", + "total_cases": 4033.0, + "new_cases": 382.0, + "new_cases_smoothed": 264.857, + "total_deaths": 52.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 115.845, + "new_cases_per_million": 10.973, + "new_cases_smoothed_per_million": 7.608, + "total_deaths_per_million": 1.494, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 91.67 + }, + { + "date": "2020-04-13", + "total_cases": 4462.0, + "new_cases": 429.0, + "new_cases_smoothed": 296.714, + "total_deaths": 59.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 128.167, + "new_cases_per_million": 12.323, + "new_cases_smoothed_per_million": 8.523, + "total_deaths_per_million": 1.695, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.103, + "stringency_index": 91.67 + }, + { + "date": "2020-04-14", + "total_cases": 4934.0, + "new_cases": 472.0, + "new_cases_smoothed": 344.429, + "total_deaths": 65.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 141.725, + "new_cases_per_million": 13.558, + "new_cases_smoothed_per_million": 9.893, + "total_deaths_per_million": 1.867, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 91.67 + }, + { + "date": "2020-04-15", + "total_cases": 5369.0, + "new_cases": 435.0, + "new_cases_smoothed": 367.714, + "total_deaths": 73.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 154.22, + "new_cases_per_million": 12.495, + "new_cases_smoothed_per_million": 10.562, + "total_deaths_per_million": 2.097, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 91.67 + }, + { + "date": "2020-04-16", + "total_cases": 5862.0, + "new_cases": 493.0, + "new_cases_smoothed": 418.571, + "total_deaths": 79.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 168.381, + "new_cases_per_million": 14.161, + "new_cases_smoothed_per_million": 12.023, + "total_deaths_per_million": 2.269, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 91.67 + }, + { + "date": "2020-04-17", + "total_cases": 6380.0, + "new_cases": 518.0, + "new_cases_smoothed": 441.857, + "total_deaths": 83.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 183.26, + "new_cases_per_million": 14.879, + "new_cases_smoothed_per_million": 12.692, + "total_deaths_per_million": 2.384, + "new_deaths_per_million": 0.115, + "new_deaths_smoothed_per_million": 0.16, + "stringency_index": 91.67 + }, + { + "date": "2020-04-18", + "total_cases": 7142.0, + "new_cases": 762.0, + "new_cases_smoothed": 498.714, + "total_deaths": 87.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 205.148, + "new_cases_per_million": 21.888, + "new_cases_smoothed_per_million": 14.325, + "total_deaths_per_million": 2.499, + "new_deaths_per_million": 0.115, + "new_deaths_smoothed_per_million": 0.164, + "stringency_index": 91.67 + }, + { + "date": "2020-04-19", + "total_cases": 8274.0, + "new_cases": 1132.0, + "new_cases_smoothed": 605.857, + "total_deaths": 92.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 237.664, + "new_cases_per_million": 32.516, + "new_cases_smoothed_per_million": 17.403, + "total_deaths_per_million": 2.643, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.164, + "stringency_index": 91.67 + }, + { + "date": "2020-04-20", + "total_cases": 9362.0, + "new_cases": 1088.0, + "new_cases_smoothed": 700.0, + "total_deaths": 97.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 268.916, + "new_cases_per_million": 31.252, + "new_cases_smoothed_per_million": 20.107, + "total_deaths_per_million": 2.786, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 91.67 + }, + { + "date": "2020-04-21", + "total_cases": 10484.0, + "new_cases": 1122.0, + "new_cases_smoothed": 792.857, + "total_deaths": 103.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 301.144, + "new_cases_per_million": 32.229, + "new_cases_smoothed_per_million": 22.774, + "total_deaths_per_million": 2.959, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 91.67 + }, + { + "date": "2020-04-22", + "total_cases": 11631.0, + "new_cases": 1147.0, + "new_cases_smoothed": 894.571, + "total_deaths": 109.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 334.091, + "new_cases_per_million": 32.947, + "new_cases_smoothed_per_million": 25.696, + "total_deaths_per_million": 3.131, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 91.67 + }, + { + "date": "2020-04-23", + "total_cases": 12772.0, + "new_cases": 1141.0, + "new_cases_smoothed": 987.143, + "total_deaths": 114.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 366.865, + "new_cases_per_million": 32.774, + "new_cases_smoothed_per_million": 28.355, + "total_deaths_per_million": 3.275, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 91.67 + }, + { + "date": "2020-04-24", + "total_cases": 13930.0, + "new_cases": 1158.0, + "new_cases_smoothed": 1078.571, + "total_deaths": 121.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 400.128, + "new_cases_per_million": 33.263, + "new_cases_smoothed_per_million": 30.981, + "total_deaths_per_million": 3.476, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 91.67 + }, + { + "date": "2020-04-25", + "total_cases": 15102.0, + "new_cases": 1172.0, + "new_cases_smoothed": 1137.143, + "total_deaths": 127.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 433.793, + "new_cases_per_million": 33.665, + "new_cases_smoothed_per_million": 32.664, + "total_deaths_per_million": 3.648, + "new_deaths_per_million": 0.172, + "new_deaths_smoothed_per_million": 0.164, + "stringency_index": 91.67 + }, + { + "date": "2020-04-26", + "total_cases": 16299.0, + "new_cases": 1197.0, + "new_cases_smoothed": 1146.429, + "total_deaths": 136.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 468.176, + "new_cases_per_million": 34.383, + "new_cases_smoothed_per_million": 32.93, + "total_deaths_per_million": 3.906, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.181, + "stringency_index": 94.44 + }, + { + "date": "2020-04-27", + "total_cases": 17522.0, + "new_cases": 1223.0, + "new_cases_smoothed": 1165.714, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 503.305, + "new_cases_per_million": 35.13, + "new_cases_smoothed_per_million": 33.484, + "total_deaths_per_million": 3.993, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 94.44 + }, + { + "date": "2020-04-28", + "total_cases": 18811.0, + "new_cases": 1289.0, + "new_cases_smoothed": 1189.571, + "total_deaths": 144.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 540.331, + "new_cases_per_million": 37.025, + "new_cases_smoothed_per_million": 34.169, + "total_deaths_per_million": 4.136, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 94.44 + }, + { + "date": "2020-04-29", + "total_cases": 20077.0, + "new_cases": 1266.0, + "new_cases_smoothed": 1206.571, + "total_deaths": 152.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 576.695, + "new_cases_per_million": 36.365, + "new_cases_smoothed_per_million": 34.658, + "total_deaths_per_million": 4.366, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 94.44 + }, + { + "date": "2020-04-30", + "total_cases": 21402.0, + "new_cases": 1325.0, + "new_cases_smoothed": 1232.857, + "total_deaths": 157.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 614.755, + "new_cases_per_million": 38.06, + "new_cases_smoothed_per_million": 35.413, + "total_deaths_per_million": 4.51, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 91.67 + }, + { + "date": "2020-05-01", + "total_cases": 22753.0, + "new_cases": 1351.0, + "new_cases_smoothed": 1260.429, + "total_deaths": 162.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 653.561, + "new_cases_per_million": 38.806, + "new_cases_smoothed_per_million": 36.205, + "total_deaths_per_million": 4.653, + "new_deaths_per_million": 0.144, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 91.67 + }, + { + "date": "2020-05-02", + "total_cases": 24097.0, + "new_cases": 1344.0, + "new_cases_smoothed": 1285.0, + "total_deaths": 169.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 692.167, + "new_cases_per_million": 38.605, + "new_cases_smoothed_per_million": 36.911, + "total_deaths_per_million": 4.854, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 91.67 + }, + { + "date": "2020-05-03", + "total_cases": 25459.0, + "new_cases": 1362.0, + "new_cases_smoothed": 1308.571, + "total_deaths": 176.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 731.289, + "new_cases_per_million": 39.122, + "new_cases_smoothed_per_million": 37.588, + "total_deaths_per_million": 5.055, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.164, + "stringency_index": 91.67 + }, + { + "date": "2020-05-04", + "total_cases": 27011.0, + "new_cases": 1552.0, + "new_cases_smoothed": 1355.571, + "total_deaths": 184.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 775.869, + "new_cases_per_million": 44.58, + "new_cases_smoothed_per_million": 38.938, + "total_deaths_per_million": 5.285, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.185, + "stringency_index": 91.67 + }, + { + "date": "2020-05-05", + "total_cases": 28656.0, + "new_cases": 1645.0, + "new_cases_smoothed": 1406.429, + "total_deaths": 191.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 823.12, + "new_cases_per_million": 47.251, + "new_cases_smoothed_per_million": 40.399, + "total_deaths_per_million": 5.486, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.193, + "stringency_index": 91.67 + }, + { + "date": "2020-05-06", + "total_cases": 30251.0, + "new_cases": 1595.0, + "new_cases_smoothed": 1453.429, + "total_deaths": 200.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 868.935, + "new_cases_per_million": 45.815, + "new_cases_smoothed_per_million": 41.749, + "total_deaths_per_million": 5.745, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.197, + "total_tests": 389659.0, + "total_tests_per_thousand": 11.193, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-07", + "total_cases": 31938.0, + "new_cases": 1687.0, + "new_cases_smoothed": 1505.143, + "total_deaths": 209.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 917.393, + "new_cases_per_million": 48.458, + "new_cases_smoothed_per_million": 43.234, + "total_deaths_per_million": 6.003, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 16026.0, + "total_tests": 405685.0, + "total_tests_per_thousand": 11.653, + "new_tests_per_thousand": 0.46, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 33731.0, + "new_cases": 1793.0, + "new_cases_smoothed": 1568.286, + "total_deaths": 219.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 968.896, + "new_cases_per_million": 51.502, + "new_cases_smoothed_per_million": 45.048, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 13037.0, + "total_tests": 418722.0, + "total_tests_per_thousand": 12.027, + "new_tests_per_thousand": 0.374, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 35432.0, + "new_cases": 1701.0, + "new_cases_smoothed": 1619.286, + "total_deaths": 229.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1017.755, + "new_cases_per_million": 48.86, + "new_cases_smoothed_per_million": 46.513, + "total_deaths_per_million": 6.578, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 14778.0, + "total_tests": 433500.0, + "total_tests_per_thousand": 12.452, + "new_tests_per_thousand": 0.424, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 37136.0, + "new_cases": 1704.0, + "new_cases_smoothed": 1668.143, + "total_deaths": 239.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1066.701, + "new_cases_per_million": 48.946, + "new_cases_smoothed_per_million": 47.916, + "total_deaths_per_million": 6.865, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 16144.0, + "total_tests": 449644.0, + "total_tests_per_thousand": 12.916, + "new_tests_per_thousand": 0.464, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 39048.0, + "new_cases": 1912.0, + "new_cases_smoothed": 1719.571, + "total_deaths": 246.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 1121.622, + "new_cases_per_million": 54.921, + "new_cases_smoothed_per_million": 49.393, + "total_deaths_per_million": 7.066, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.254, + "new_tests": 17725.0, + "total_tests": 467369.0, + "total_tests_per_thousand": 13.425, + "new_tests_per_thousand": 0.509, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 41014.0, + "new_cases": 1966.0, + "new_cases_smoothed": 1765.429, + "total_deaths": 255.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1178.094, + "new_cases_per_million": 56.472, + "new_cases_smoothed_per_million": 50.71, + "total_deaths_per_million": 7.325, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.263, + "new_tests": 15005.0, + "total_tests": 482374.0, + "total_tests_per_thousand": 13.856, + "new_tests_per_thousand": 0.431, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 42925.0, + "new_cases": 1911.0, + "new_cases_smoothed": 1810.571, + "total_deaths": 264.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1232.986, + "new_cases_per_million": 54.892, + "new_cases_smoothed_per_million": 52.007, + "total_deaths_per_million": 7.583, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.263, + "new_tests": 14574.0, + "total_tests": 496948.0, + "total_tests_per_thousand": 14.274, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 15327.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 8.465, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 44830.0, + "new_cases": 1905.0, + "new_cases_smoothed": 1841.714, + "total_deaths": 273.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1287.705, + "new_cases_per_million": 54.72, + "new_cases_smoothed_per_million": 52.902, + "total_deaths_per_million": 7.842, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.263, + "new_tests": 16639.0, + "total_tests": 513587.0, + "total_tests_per_thousand": 14.752, + "new_tests_per_thousand": 0.478, + "new_tests_smoothed": 15415.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 8.37, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 46869.0, + "new_cases": 2039.0, + "new_cases_smoothed": 1876.857, + "total_deaths": 283.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1346.274, + "new_cases_per_million": 58.569, + "new_cases_smoothed_per_million": 53.911, + "total_deaths_per_million": 8.129, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.263, + "new_tests": 16678.0, + "total_tests": 530265.0, + "total_tests_per_thousand": 15.231, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 15935.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 8.49, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 49176.0, + "new_cases": 2307.0, + "new_cases_smoothed": 1963.429, + "total_deaths": 292.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1412.541, + "new_cases_per_million": 66.267, + "new_cases_smoothed_per_million": 56.398, + "total_deaths_per_million": 8.387, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 17758.0, + "total_tests": 548023.0, + "total_tests_per_thousand": 15.742, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 16360.0, + "new_tests_smoothed_per_thousand": 0.47, + "tests_per_case": 8.332, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 52016.0, + "new_cases": 2840.0, + "new_cases_smoothed": 2125.714, + "total_deaths": 302.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1494.117, + "new_cases_per_million": 81.577, + "new_cases_smoothed_per_million": 61.059, + "total_deaths_per_million": 8.675, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.259, + "new_tests": 38382.0, + "total_tests": 586405.0, + "total_tests_per_thousand": 16.844, + "new_tests_per_thousand": 1.102, + "new_tests_smoothed": 19537.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 9.191, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 54752.0, + "new_cases": 2736.0, + "new_cases_smoothed": 2243.429, + "total_deaths": 312.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1572.707, + "new_cases_per_million": 78.589, + "new_cases_smoothed_per_million": 64.441, + "total_deaths_per_million": 8.962, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 15549.0, + "total_tests": 601954.0, + "total_tests_per_thousand": 17.291, + "new_tests_per_thousand": 0.447, + "new_tests_smoothed": 19226.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 8.57, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-19", + "total_cases": 57345.0, + "new_cases": 2593.0, + "new_cases_smoothed": 2333.0, + "total_deaths": 320.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1647.188, + "new_cases_per_million": 74.482, + "new_cases_smoothed_per_million": 67.014, + "total_deaths_per_million": 9.192, + "new_deaths_per_million": 0.23, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 16130.0, + "total_tests": 618084.0, + "total_tests_per_thousand": 17.754, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 19387.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 8.31, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-20", + "total_cases": 59854.0, + "new_cases": 2509.0, + "new_cases_smoothed": 2418.429, + "total_deaths": 329.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1719.257, + "new_cases_per_million": 72.069, + "new_cases_smoothed_per_million": 69.467, + "total_deaths_per_million": 9.45, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.267, + "new_tests": 33074.0, + "total_tests": 651158.0, + "total_tests_per_thousand": 18.704, + "new_tests_per_thousand": 0.95, + "new_tests_smoothed": 22030.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 9.109, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-21", + "total_cases": 62545.0, + "new_cases": 2691.0, + "new_cases_smoothed": 2530.714, + "total_deaths": 339.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1796.554, + "new_cases_per_million": 77.297, + "new_cases_smoothed_per_million": 72.693, + "total_deaths_per_million": 9.737, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.271, + "new_tests_smoothed": 20789.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 8.215, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-22", + "total_cases": 65077.0, + "new_cases": 2532.0, + "new_cases_smoothed": 2601.143, + "total_deaths": 351.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 1869.284, + "new_cases_per_million": 72.73, + "new_cases_smoothed_per_million": 74.716, + "total_deaths_per_million": 10.082, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.279, + "total_tests": 667057.0, + "total_tests_per_thousand": 19.161, + "new_tests_smoothed": 19542.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 7.513, + "positive_rate": 0.133, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-05-23", + "total_cases": 67719.0, + "new_cases": 2642.0, + "new_cases_smoothed": 2649.0, + "total_deaths": 364.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1945.173, + "new_cases_per_million": 75.889, + "new_cases_smoothed_per_million": 76.09, + "total_deaths_per_million": 10.456, + "new_deaths_per_million": 0.373, + "new_deaths_smoothed_per_million": 0.295, + "new_tests": 17558.0, + "total_tests": 684615.0, + "total_tests_per_thousand": 19.665, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 19513.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 7.3660000000000005, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-24", + "total_cases": 70161.0, + "new_cases": 2442.0, + "new_cases_smoothed": 2592.143, + "total_deaths": 379.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 2015.318, + "new_cases_per_million": 70.144, + "new_cases_smoothed_per_million": 74.457, + "total_deaths_per_million": 10.886, + "new_deaths_per_million": 0.431, + "new_deaths_smoothed_per_million": 0.316, + "new_tests": 18919.0, + "total_tests": 703534.0, + "total_tests_per_thousand": 20.208, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 16733.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 6.455, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-25", + "total_cases": 72560.0, + "new_cases": 2399.0, + "new_cases_smoothed": 2544.0, + "total_deaths": 390.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 2084.227, + "new_cases_per_million": 68.909, + "new_cases_smoothed_per_million": 73.074, + "total_deaths_per_million": 11.202, + "new_deaths_per_million": 0.316, + "new_deaths_smoothed_per_million": 0.32, + "new_tests": 18545.0, + "total_tests": 722079.0, + "total_tests_per_thousand": 20.741, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 17161.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 6.746, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-26", + "total_cases": 74795.0, + "new_cases": 2235.0, + "new_cases_smoothed": 2492.857, + "total_deaths": 399.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 2148.426, + "new_cases_per_million": 64.199, + "new_cases_smoothed_per_million": 71.605, + "total_deaths_per_million": 11.461, + "new_deaths_per_million": 0.259, + "new_deaths_smoothed_per_million": 0.324, + "new_tests": 16664.0, + "total_tests": 738743.0, + "total_tests_per_thousand": 21.22, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 17237.0, + "new_tests_smoothed_per_thousand": 0.495, + "tests_per_case": 6.915, + "positive_rate": 0.145, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-27", + "total_cases": 76726.0, + "new_cases": 1931.0, + "new_cases_smoothed": 2410.286, + "total_deaths": 411.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 2203.892, + "new_cases_per_million": 55.466, + "new_cases_smoothed_per_million": 69.233, + "total_deaths_per_million": 11.806, + "new_deaths_per_million": 0.345, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 15525.0, + "total_tests": 754268.0, + "total_tests_per_thousand": 21.666, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 14730.0, + "new_tests_smoothed_per_thousand": 0.423, + "tests_per_case": 6.111000000000001, + "positive_rate": 0.16399999999999998, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-28", + "total_cases": 78541.0, + "new_cases": 1815.0, + "new_cases_smoothed": 2285.143, + "total_deaths": 425.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 2256.026, + "new_cases_per_million": 52.134, + "new_cases_smoothed_per_million": 65.639, + "total_deaths_per_million": 12.208, + "new_deaths_per_million": 0.402, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 16428.0, + "total_tests": 770696.0, + "total_tests_per_thousand": 22.138, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 15941.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 6.976, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-29", + "total_cases": 80185.0, + "new_cases": 1644.0, + "new_cases_smoothed": 2158.286, + "total_deaths": 441.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 2303.249, + "new_cases_per_million": 47.223, + "new_cases_smoothed_per_million": 61.995, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 16769.0, + "total_tests": 787465.0, + "total_tests_per_thousand": 22.619, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 17201.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 7.97, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-30", + "total_cases": 81766.0, + "new_cases": 1581.0, + "new_cases_smoothed": 2006.714, + "total_deaths": 458.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 2348.662, + "new_cases_per_million": 45.413, + "new_cases_smoothed_per_million": 57.641, + "total_deaths_per_million": 13.156, + "new_deaths_per_million": 0.488, + "new_deaths_smoothed_per_million": 0.386, + "new_tests": 19104.0, + "total_tests": 806569.0, + "total_tests_per_thousand": 23.168, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 17422.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 8.682, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 91.67 + }, + { + "date": "2020-05-31", + "total_cases": 83384.0, + "new_cases": 1618.0, + "new_cases_smoothed": 1889.0, + "total_deaths": 480.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 2395.138, + "new_cases_per_million": 46.476, + "new_cases_smoothed_per_million": 54.26, + "total_deaths_per_million": 13.788, + "new_deaths_per_million": 0.632, + "new_deaths_smoothed_per_million": 0.414, + "new_tests": 16200.0, + "total_tests": 822769.0, + "total_tests_per_thousand": 23.633, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 17034.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 9.017000000000001, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-01", + "total_cases": 85261.0, + "new_cases": 1877.0, + "new_cases_smoothed": 1814.429, + "total_deaths": 503.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 2449.053, + "new_cases_per_million": 53.915, + "new_cases_smoothed_per_million": 52.118, + "total_deaths_per_million": 14.448, + "new_deaths_per_million": 0.661, + "new_deaths_smoothed_per_million": 0.464, + "new_tests": 15854.0, + "total_tests": 838623.0, + "total_tests_per_thousand": 24.089, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 16649.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 9.176, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-02", + "total_cases": 87142.0, + "new_cases": 1881.0, + "new_cases_smoothed": 1763.857, + "total_deaths": 525.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 2503.083, + "new_cases_per_million": 54.03, + "new_cases_smoothed_per_million": 50.665, + "total_deaths_per_million": 15.08, + "new_deaths_per_million": 0.632, + "new_deaths_smoothed_per_million": 0.517, + "new_tests": 15364.0, + "total_tests": 853987.0, + "total_tests_per_thousand": 24.53, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 16463.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 9.334, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-03", + "total_cases": 89011.0, + "new_cases": 1869.0, + "new_cases_smoothed": 1755.0, + "total_deaths": 549.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2556.769, + "new_cases_per_million": 53.686, + "new_cases_smoothed_per_million": 50.411, + "total_deaths_per_million": 15.77, + "new_deaths_per_million": 0.689, + "new_deaths_smoothed_per_million": 0.566, + "new_tests": 16976.0, + "total_tests": 870963.0, + "total_tests_per_thousand": 25.018, + "new_tests_per_thousand": 0.488, + "new_tests_smoothed": 16671.0, + "new_tests_smoothed_per_thousand": 0.479, + "tests_per_case": 9.499, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-04", + "total_cases": 91182.0, + "new_cases": 2171.0, + "new_cases_smoothed": 1805.857, + "total_deaths": 579.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 2619.129, + "new_cases_per_million": 62.36, + "new_cases_smoothed_per_million": 51.872, + "total_deaths_per_million": 16.631, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.632, + "new_tests": 16246.0, + "total_tests": 887209.0, + "total_tests_per_thousand": 25.484, + "new_tests_per_thousand": 0.467, + "new_tests_smoothed": 16645.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 9.217, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-05", + "total_cases": 93157.0, + "new_cases": 1975.0, + "new_cases_smoothed": 1853.143, + "total_deaths": 611.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 2675.859, + "new_cases_per_million": 56.73, + "new_cases_smoothed_per_million": 53.23, + "total_deaths_per_million": 17.55, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 0.698, + "new_tests": 21763.0, + "total_tests": 908972.0, + "total_tests_per_thousand": 26.109, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 17358.0, + "new_tests_smoothed_per_thousand": 0.499, + "tests_per_case": 9.367, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-06-06", + "total_cases": 95748.0, + "new_cases": 2591.0, + "new_cases_smoothed": 1997.429, + "total_deaths": 642.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 2750.283, + "new_cases_per_million": 74.424, + "new_cases_smoothed_per_million": 57.375, + "total_deaths_per_million": 18.441, + "new_deaths_per_million": 0.89, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 24229.0, + "total_tests": 933201.0, + "total_tests_per_thousand": 26.805, + "new_tests_per_thousand": 0.696, + "new_tests_smoothed": 18090.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 9.057, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-07", + "total_cases": 98869.0, + "new_cases": 3121.0, + "new_cases_smoothed": 2212.143, + "total_deaths": 676.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 2839.932, + "new_cases_per_million": 89.648, + "new_cases_smoothed_per_million": 63.542, + "total_deaths_per_million": 19.418, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 0.804, + "new_tests_smoothed": 18891.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 8.54, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-08", + "total_cases": 101914.0, + "new_cases": 3045.0, + "new_cases_smoothed": 2379.0, + "total_deaths": 712.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 2927.397, + "new_cases_per_million": 87.465, + "new_cases_smoothed_per_million": 68.335, + "total_deaths_per_million": 20.452, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 0.858, + "total_tests": 976815.0, + "total_tests_per_thousand": 28.058, + "new_tests_smoothed": 19742.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 8.298, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-09", + "total_cases": 105283.0, + "new_cases": 3369.0, + "new_cases_smoothed": 2591.571, + "total_deaths": 746.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 3024.169, + "new_cases_per_million": 96.772, + "new_cases_smoothed_per_million": 74.441, + "total_deaths_per_million": 21.428, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 20858.0, + "total_tests": 997673.0, + "total_tests_per_thousand": 28.657, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 20527.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 7.921, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-10", + "total_cases": 108571.0, + "new_cases": 3288.0, + "new_cases_smoothed": 2794.286, + "total_deaths": 783.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 33.429, + "total_cases_per_million": 3118.614, + "new_cases_per_million": 94.445, + "new_cases_smoothed_per_million": 80.264, + "total_deaths_per_million": 22.491, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 0.96, + "new_tests": 22139.0, + "total_tests": 1019812.0, + "total_tests_per_thousand": 29.293, + "new_tests_per_thousand": 0.636, + "new_tests_smoothed": 21264.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 7.61, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-11", + "total_cases": 112288.0, + "new_cases": 3717.0, + "new_cases_smoothed": 3015.143, + "total_deaths": 819.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 3225.381, + "new_cases_per_million": 106.768, + "new_cases_smoothed_per_million": 86.608, + "total_deaths_per_million": 23.525, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 0.985, + "new_tests": 22500.0, + "total_tests": 1042312.0, + "total_tests_per_thousand": 29.94, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 22158.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 7.349, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-12", + "total_cases": 116021.0, + "new_cases": 3733.0, + "new_cases_smoothed": 3266.286, + "total_deaths": 857.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 35.143, + "total_cases_per_million": 3332.609, + "new_cases_per_million": 107.227, + "new_cases_smoothed_per_million": 93.821, + "total_deaths_per_million": 24.617, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 1.009, + "new_tests": 27324.0, + "total_tests": 1069636.0, + "total_tests_per_thousand": 30.724, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 22952.0, + "new_tests_smoothed_per_thousand": 0.659, + "tests_per_case": 7.027, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-13", + "total_cases": 119942.0, + "new_cases": 3921.0, + "new_cases_smoothed": 3456.286, + "total_deaths": 893.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 3445.236, + "new_cases_per_million": 112.628, + "new_cases_smoothed_per_million": 99.279, + "total_deaths_per_million": 25.651, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 1.03, + "new_tests": 17385.0, + "total_tests": 1087021.0, + "total_tests_per_thousand": 31.224, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 21974.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 6.358, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-14", + "total_cases": 123308.0, + "new_cases": 3366.0, + "new_cases_smoothed": 3491.286, + "total_deaths": 932.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 3541.922, + "new_cases_per_million": 96.686, + "new_cases_smoothed_per_million": 100.284, + "total_deaths_per_million": 26.771, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 19377.0, + "total_tests": 1106398.0, + "total_tests_per_thousand": 31.78, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 21627.0, + "new_tests_smoothed_per_thousand": 0.621, + "tests_per_case": 6.195, + "positive_rate": 0.161, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-15", + "total_cases": 127541.0, + "new_cases": 4233.0, + "new_cases_smoothed": 3661.0, + "total_deaths": 972.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 3663.511, + "new_cases_per_million": 121.589, + "new_cases_smoothed_per_million": 105.159, + "total_deaths_per_million": 27.92, + "new_deaths_per_million": 1.149, + "new_deaths_smoothed_per_million": 1.067, + "new_tests": 20255.0, + "total_tests": 1126653.0, + "total_tests_per_thousand": 32.362, + "new_tests_per_thousand": 0.582, + "new_tests_smoothed": 21405.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 5.847, + "positive_rate": 0.171, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-16", + "total_cases": 132048.0, + "new_cases": 4507.0, + "new_cases_smoothed": 3823.571, + "total_deaths": 1011.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 3792.971, + "new_cases_per_million": 129.46, + "new_cases_smoothed_per_million": 109.829, + "total_deaths_per_million": 29.04, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.087, + "new_tests": 17629.0, + "total_tests": 1144282.0, + "total_tests_per_thousand": 32.869, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 20944.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 5.478, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-17", + "total_cases": 136315.0, + "new_cases": 4267.0, + "new_cases_smoothed": 3963.429, + "total_deaths": 1052.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 38.429, + "total_cases_per_million": 3915.537, + "new_cases_per_million": 122.566, + "new_cases_smoothed_per_million": 113.846, + "total_deaths_per_million": 30.218, + "new_deaths_per_million": 1.178, + "new_deaths_smoothed_per_million": 1.104, + "new_tests": 23484.0, + "total_tests": 1167766.0, + "total_tests_per_thousand": 33.543, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 21136.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 5.332999999999999, + "positive_rate": 0.188, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-18", + "total_cases": 141234.0, + "new_cases": 4919.0, + "new_cases_smoothed": 4135.143, + "total_deaths": 1091.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 4056.832, + "new_cases_per_million": 141.294, + "new_cases_smoothed_per_million": 118.779, + "total_deaths_per_million": 31.338, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.116, + "new_tests": 30507.0, + "total_tests": 1198273.0, + "total_tests_per_thousand": 34.419, + "new_tests_per_thousand": 0.876, + "new_tests_smoothed": 22280.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 5.388, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-19", + "total_cases": 145991.0, + "new_cases": 4757.0, + "new_cases_smoothed": 4281.429, + "total_deaths": 1139.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 40.286, + "total_cases_per_million": 4193.473, + "new_cases_per_million": 136.641, + "new_cases_smoothed_per_million": 122.981, + "total_deaths_per_million": 32.717, + "new_deaths_per_million": 1.379, + "new_deaths_smoothed_per_million": 1.157, + "new_tests": 26016.0, + "total_tests": 1224289.0, + "total_tests_per_thousand": 35.167, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 22093.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 5.16, + "positive_rate": 0.19399999999999998, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-20", + "total_cases": 150292.0, + "new_cases": 4301.0, + "new_cases_smoothed": 4335.714, + "total_deaths": 1184.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 4317.015, + "new_cases_per_million": 123.543, + "new_cases_smoothed_per_million": 124.54, + "total_deaths_per_million": 34.009, + "new_deaths_per_million": 1.293, + "new_deaths_smoothed_per_million": 1.194, + "new_tests": 24708.0, + "total_tests": 1248997.0, + "total_tests_per_thousand": 35.876, + "new_tests_per_thousand": 0.71, + "new_tests_smoothed": 23139.0, + "new_tests_smoothed_per_thousand": 0.665, + "tests_per_case": 5.337000000000001, + "positive_rate": 0.187, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-06-21", + "total_cases": 154233.0, + "new_cases": 3941.0, + "new_cases_smoothed": 4417.857, + "total_deaths": 1230.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 42.571, + "total_cases_per_million": 4430.217, + "new_cases_per_million": 113.202, + "new_cases_smoothed_per_million": 126.899, + "total_deaths_per_million": 35.331, + "new_deaths_per_million": 1.321, + "new_deaths_smoothed_per_million": 1.223, + "new_tests": 35656.0, + "total_tests": 1284653.0, + "total_tests_per_thousand": 36.901, + "new_tests_per_thousand": 1.024, + "new_tests_smoothed": 25465.0, + "new_tests_smoothed_per_thousand": 0.731, + "tests_per_case": 5.763999999999999, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-22", + "total_cases": 157612.0, + "new_cases": 3379.0, + "new_cases_smoothed": 4295.857, + "total_deaths": 1267.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 42.143, + "total_cases_per_million": 4527.276, + "new_cases_per_million": 97.059, + "new_cases_smoothed_per_million": 123.395, + "total_deaths_per_million": 36.394, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.211, + "new_tests": 33614.0, + "total_tests": 1318267.0, + "total_tests_per_thousand": 37.866, + "new_tests_per_thousand": 0.966, + "new_tests_smoothed": 27373.0, + "new_tests_smoothed_per_thousand": 0.786, + "tests_per_case": 6.372000000000001, + "positive_rate": 0.157, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-23", + "total_cases": 161005.0, + "new_cases": 3393.0, + "new_cases_smoothed": 4136.714, + "total_deaths": 1307.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 42.286, + "total_cases_per_million": 4624.738, + "new_cases_per_million": 97.461, + "new_cases_smoothed_per_million": 118.824, + "total_deaths_per_million": 37.543, + "new_deaths_per_million": 1.149, + "new_deaths_smoothed_per_million": 1.215, + "new_tests": 27253.0, + "total_tests": 1345520.0, + "total_tests_per_thousand": 38.649, + "new_tests_per_thousand": 0.783, + "new_tests_smoothed": 28748.0, + "new_tests_smoothed_per_thousand": 0.826, + "tests_per_case": 6.949, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-24", + "total_cases": 164144.0, + "new_cases": 3139.0, + "new_cases_smoothed": 3975.571, + "total_deaths": 1346.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 42.0, + "total_cases_per_million": 4714.903, + "new_cases_per_million": 90.165, + "new_cases_smoothed_per_million": 114.195, + "total_deaths_per_million": 38.663, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.206, + "new_tests": 34511.0, + "total_tests": 1380031.0, + "total_tests_per_thousand": 39.64, + "new_tests_per_thousand": 0.991, + "new_tests_smoothed": 30324.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 7.627999999999999, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-25", + "total_cases": 167267.0, + "new_cases": 3123.0, + "new_cases_smoothed": 3719.0, + "total_deaths": 1387.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 42.286, + "total_cases_per_million": 4804.608, + "new_cases_per_million": 89.706, + "new_cases_smoothed_per_million": 106.825, + "total_deaths_per_million": 39.84, + "new_deaths_per_million": 1.178, + "new_deaths_smoothed_per_million": 1.215, + "new_tests": 37740.0, + "total_tests": 1417771.0, + "total_tests_per_thousand": 40.724, + "new_tests_per_thousand": 1.084, + "new_tests_smoothed": 31357.0, + "new_tests_smoothed_per_thousand": 0.901, + "tests_per_case": 8.432, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-26", + "total_cases": 170639.0, + "new_cases": 3372.0, + "new_cases_smoothed": 3521.143, + "total_deaths": 1428.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 4901.466, + "new_cases_per_million": 96.858, + "new_cases_smoothed_per_million": 101.142, + "total_deaths_per_million": 41.018, + "new_deaths_per_million": 1.178, + "new_deaths_smoothed_per_million": 1.186, + "new_tests": 38470.0, + "total_tests": 1456241.0, + "total_tests_per_thousand": 41.829, + "new_tests_per_thousand": 1.105, + "new_tests_smoothed": 33136.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 9.411, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-27", + "total_cases": 174577.0, + "new_cases": 3938.0, + "new_cases_smoothed": 3469.286, + "total_deaths": 1474.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 41.429, + "total_cases_per_million": 5014.582, + "new_cases_per_million": 113.116, + "new_cases_smoothed_per_million": 99.652, + "total_deaths_per_million": 42.339, + "new_deaths_per_million": 1.321, + "new_deaths_smoothed_per_million": 1.19, + "new_tests": 44275.0, + "total_tests": 1500516.0, + "total_tests_per_thousand": 43.101, + "new_tests_per_thousand": 1.272, + "new_tests_smoothed": 35931.0, + "new_tests_smoothed_per_thousand": 1.032, + "tests_per_case": 10.357000000000001, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-28", + "total_cases": 178504.0, + "new_cases": 3927.0, + "new_cases_smoothed": 3467.286, + "total_deaths": 1511.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 5127.382, + "new_cases_per_million": 112.8, + "new_cases_smoothed_per_million": 99.595, + "total_deaths_per_million": 43.402, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.153, + "new_tests": 45521.0, + "total_tests": 1546037.0, + "total_tests_per_thousand": 44.409, + "new_tests_per_thousand": 1.308, + "new_tests_smoothed": 37341.0, + "new_tests_smoothed_per_thousand": 1.073, + "tests_per_case": 10.77, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-29", + "total_cases": 182493.0, + "new_cases": 3989.0, + "new_cases_smoothed": 3554.429, + "total_deaths": 1551.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 40.571, + "total_cases_per_million": 5241.963, + "new_cases_per_million": 114.581, + "new_cases_smoothed_per_million": 102.098, + "total_deaths_per_million": 44.551, + "new_deaths_per_million": 1.149, + "new_deaths_smoothed_per_million": 1.165, + "new_tests": 45104.0, + "total_tests": 1591141.0, + "total_tests_per_thousand": 45.704, + "new_tests_per_thousand": 1.296, + "new_tests_smoothed": 38982.0, + "new_tests_smoothed_per_thousand": 1.12, + "tests_per_case": 10.967, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-30", + "total_cases": 186436.0, + "new_cases": 3943.0, + "new_cases_smoothed": 3633.0, + "total_deaths": 1599.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 41.714, + "total_cases_per_million": 5355.222, + "new_cases_per_million": 113.259, + "new_cases_smoothed_per_million": 104.355, + "total_deaths_per_million": 45.93, + "new_deaths_per_million": 1.379, + "new_deaths_smoothed_per_million": 1.198, + "new_tests": 48173.0, + "total_tests": 1639314.0, + "total_tests_per_thousand": 47.088, + "new_tests_per_thousand": 1.384, + "new_tests_smoothed": 41971.0, + "new_tests_smoothed_per_thousand": 1.206, + "tests_per_case": 11.552999999999999, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-01", + "total_cases": 190823.0, + "new_cases": 4387.0, + "new_cases_smoothed": 3811.286, + "total_deaths": 1649.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 43.286, + "total_cases_per_million": 5481.235, + "new_cases_per_million": 126.013, + "new_cases_smoothed_per_million": 109.476, + "total_deaths_per_million": 47.366, + "new_deaths_per_million": 1.436, + "new_deaths_smoothed_per_million": 1.243, + "new_tests": 35173.0, + "total_tests": 1674487.0, + "total_tests_per_thousand": 48.098, + "new_tests_per_thousand": 1.01, + "new_tests_smoothed": 42065.0, + "new_tests_smoothed_per_thousand": 1.208, + "tests_per_case": 11.037, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-02", + "total_cases": 194225.0, + "new_cases": 3402.0, + "new_cases_smoothed": 3851.143, + "total_deaths": 1698.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 44.429, + "total_cases_per_million": 5578.955, + "new_cases_per_million": 97.72, + "new_cases_smoothed_per_million": 110.621, + "total_deaths_per_million": 48.774, + "new_deaths_per_million": 1.407, + "new_deaths_smoothed_per_million": 1.276, + "new_tests": 53214.0, + "total_tests": 1727701.0, + "total_tests_per_thousand": 49.627, + "new_tests_per_thousand": 1.529, + "new_tests_smoothed": 44276.0, + "new_tests_smoothed_per_thousand": 1.272, + "tests_per_case": 11.497, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-03", + "total_cases": 197608.0, + "new_cases": 3383.0, + "new_cases_smoothed": 3852.714, + "total_deaths": 1752.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 5676.129, + "new_cases_per_million": 97.174, + "new_cases_smoothed_per_million": 110.666, + "total_deaths_per_million": 50.325, + "new_deaths_per_million": 1.551, + "new_deaths_smoothed_per_million": 1.33, + "new_tests": 43927.0, + "total_tests": 1771628.0, + "total_tests_per_thousand": 50.889, + "new_tests_per_thousand": 1.262, + "new_tests_smoothed": 45055.0, + "new_tests_smoothed_per_thousand": 1.294, + "tests_per_case": 11.694, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-04", + "total_cases": 201801.0, + "new_cases": 4193.0, + "new_cases_smoothed": 3889.143, + "total_deaths": 1802.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 46.857, + "total_cases_per_million": 5796.57, + "new_cases_per_million": 120.441, + "new_cases_smoothed_per_million": 111.712, + "total_deaths_per_million": 51.761, + "new_deaths_per_million": 1.436, + "new_deaths_smoothed_per_million": 1.346, + "new_tests": 52135.0, + "total_tests": 1823763.0, + "total_tests_per_thousand": 52.386, + "new_tests_per_thousand": 1.498, + "new_tests_smoothed": 46178.0, + "new_tests_smoothed_per_thousand": 1.326, + "tests_per_case": 11.874, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-05", + "total_cases": 205929.0, + "new_cases": 4128.0, + "new_cases_smoothed": 3917.857, + "total_deaths": 1858.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 49.571, + "total_cases_per_million": 5915.143, + "new_cases_per_million": 118.573, + "new_cases_smoothed_per_million": 112.537, + "total_deaths_per_million": 53.37, + "new_deaths_per_million": 1.609, + "new_deaths_smoothed_per_million": 1.424, + "new_tests": 50564.0, + "total_tests": 1874327.0, + "total_tests_per_thousand": 53.839, + "new_tests_per_thousand": 1.452, + "new_tests_smoothed": 46899.0, + "new_tests_smoothed_per_thousand": 1.347, + "tests_per_case": 11.970999999999998, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-06", + "total_cases": 209509.0, + "new_cases": 3580.0, + "new_cases_smoothed": 3859.429, + "total_deaths": 1916.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 52.143, + "total_cases_per_million": 6017.976, + "new_cases_per_million": 102.833, + "new_cases_smoothed_per_million": 110.859, + "total_deaths_per_million": 55.036, + "new_deaths_per_million": 1.666, + "new_deaths_smoothed_per_million": 1.498, + "new_tests": 60064.0, + "total_tests": 1934391.0, + "total_tests_per_thousand": 55.564, + "new_tests_per_thousand": 1.725, + "new_tests_smoothed": 49036.0, + "new_tests_smoothed_per_thousand": 1.409, + "tests_per_case": 12.706, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-07", + "total_cases": 213716.0, + "new_cases": 4207.0, + "new_cases_smoothed": 3897.143, + "total_deaths": 1968.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 52.714, + "total_cases_per_million": 6138.818, + "new_cases_per_million": 120.843, + "new_cases_smoothed_per_million": 111.942, + "total_deaths_per_million": 56.529, + "new_deaths_per_million": 1.494, + "new_deaths_smoothed_per_million": 1.514, + "new_tests": 84266.0, + "total_tests": 2018657.0, + "total_tests_per_thousand": 57.984, + "new_tests_per_thousand": 2.42, + "new_tests_smoothed": 54192.0, + "new_tests_smoothed_per_thousand": 1.557, + "tests_per_case": 13.905999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-08", + "total_cases": 217108.0, + "new_cases": 3392.0, + "new_cases_smoothed": 3755.0, + "total_deaths": 2017.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 6236.251, + "new_cases_per_million": 97.432, + "new_cases_smoothed_per_million": 107.859, + "total_deaths_per_million": 57.937, + "new_deaths_per_million": 1.407, + "new_deaths_smoothed_per_million": 1.51, + "new_tests": 43878.0, + "total_tests": 2062535.0, + "total_tests_per_thousand": 59.245, + "new_tests_per_thousand": 1.26, + "new_tests_smoothed": 55435.0, + "new_tests_smoothed_per_thousand": 1.592, + "tests_per_case": 14.763, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-09", + "total_cases": 220144.0, + "new_cases": 3036.0, + "new_cases_smoothed": 3702.714, + "total_deaths": 2059.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 6323.457, + "new_cases_per_million": 87.207, + "new_cases_smoothed_per_million": 106.357, + "total_deaths_per_million": 59.143, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.481, + "new_tests": 53153.0, + "total_tests": 2115688.0, + "total_tests_per_thousand": 60.771, + "new_tests_per_thousand": 1.527, + "new_tests_smoothed": 55427.0, + "new_tests_smoothed_per_thousand": 1.592, + "tests_per_case": 14.969000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-10", + "total_cases": 223327.0, + "new_cases": 3183.0, + "new_cases_smoothed": 3674.143, + "total_deaths": 2100.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 49.714, + "total_cases_per_million": 6414.886, + "new_cases_per_million": 91.429, + "new_cases_smoothed_per_million": 105.537, + "total_deaths_per_million": 60.321, + "new_deaths_per_million": 1.178, + "new_deaths_smoothed_per_million": 1.428, + "new_tests": 54472.0, + "total_tests": 2170160.0, + "total_tests_per_thousand": 62.336, + "new_tests_per_thousand": 1.565, + "new_tests_smoothed": 56933.0, + "new_tests_smoothed_per_thousand": 1.635, + "tests_per_case": 15.495999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-11", + "total_cases": 226486.0, + "new_cases": 3159.0, + "new_cases_smoothed": 3526.429, + "total_deaths": 2151.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 49.857, + "total_cases_per_million": 6505.626, + "new_cases_per_million": 90.74, + "new_cases_smoothed_per_million": 101.294, + "total_deaths_per_million": 61.786, + "new_deaths_per_million": 1.465, + "new_deaths_smoothed_per_million": 1.432, + "new_tests": 46842.0, + "total_tests": 2217002.0, + "total_tests_per_thousand": 63.682, + "new_tests_per_thousand": 1.345, + "new_tests_smoothed": 56177.0, + "new_tests_smoothed_per_thousand": 1.614, + "tests_per_case": 15.93, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-12", + "total_cases": 229480.0, + "new_cases": 2994.0, + "new_cases_smoothed": 3364.429, + "total_deaths": 2181.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 46.143, + "total_cases_per_million": 6591.626, + "new_cases_per_million": 86.0, + "new_cases_smoothed_per_million": 96.64, + "total_deaths_per_million": 62.647, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.325, + "new_tests": 44429.0, + "total_tests": 2261431.0, + "total_tests_per_thousand": 64.958, + "new_tests_per_thousand": 1.276, + "new_tests_smoothed": 55301.0, + "new_tests_smoothed_per_thousand": 1.588, + "tests_per_case": 16.437, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-13", + "total_cases": 232259.0, + "new_cases": 2779.0, + "new_cases_smoothed": 3250.0, + "total_deaths": 2223.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 6671.451, + "new_cases_per_million": 79.825, + "new_cases_smoothed_per_million": 93.354, + "total_deaths_per_million": 63.854, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.26, + "new_tests": 66155.0, + "total_tests": 2327586.0, + "total_tests_per_thousand": 66.858, + "new_tests_per_thousand": 1.9, + "new_tests_smoothed": 56171.0, + "new_tests_smoothed_per_thousand": 1.613, + "tests_per_case": 17.283, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-14", + "total_cases": 235111.0, + "new_cases": 2852.0, + "new_cases_smoothed": 3056.429, + "total_deaths": 2243.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 6753.372, + "new_cases_per_million": 81.921, + "new_cases_smoothed_per_million": 87.793, + "total_deaths_per_million": 64.428, + "new_deaths_per_million": 0.574, + "new_deaths_smoothed_per_million": 1.128, + "new_tests": 40799.0, + "total_tests": 2368385.0, + "total_tests_per_thousand": 68.03, + "new_tests_per_thousand": 1.172, + "new_tests_smoothed": 49961.0, + "new_tests_smoothed_per_thousand": 1.435, + "tests_per_case": 16.346, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-15", + "total_cases": 237803.0, + "new_cases": 2692.0, + "new_cases_smoothed": 2956.429, + "total_deaths": 2283.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 6830.698, + "new_cases_per_million": 77.326, + "new_cases_smoothed_per_million": 84.921, + "total_deaths_per_million": 65.577, + "new_deaths_per_million": 1.149, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 59010.0, + "total_tests": 2427395.0, + "total_tests_per_thousand": 69.725, + "new_tests_per_thousand": 1.695, + "new_tests_smoothed": 52123.0, + "new_tests_smoothed_per_thousand": 1.497, + "tests_per_case": 17.63, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-16", + "total_cases": 240474.0, + "new_cases": 2671.0, + "new_cases_smoothed": 2904.286, + "total_deaths": 2325.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 6907.42, + "new_cases_per_million": 76.722, + "new_cases_smoothed_per_million": 83.423, + "total_deaths_per_million": 66.784, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 58190.0, + "total_tests": 2485585.0, + "total_tests_per_thousand": 71.396, + "new_tests_per_thousand": 1.671, + "new_tests_smoothed": 52842.0, + "new_tests_smoothed_per_thousand": 1.518, + "tests_per_case": 18.194000000000003, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-17", + "total_cases": 243238.0, + "new_cases": 2764.0, + "new_cases_smoothed": 2844.429, + "total_deaths": 2370.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 6986.814, + "new_cases_per_million": 79.394, + "new_cases_smoothed_per_million": 81.704, + "total_deaths_per_million": 68.076, + "new_deaths_per_million": 1.293, + "new_deaths_smoothed_per_million": 1.108, + "new_tests": 65549.0, + "total_tests": 2551134.0, + "total_tests_per_thousand": 73.279, + "new_tests_per_thousand": 1.883, + "new_tests_smoothed": 54425.0, + "new_tests_smoothed_per_thousand": 1.563, + "tests_per_case": 19.134, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-18", + "total_cases": 245851.0, + "new_cases": 2613.0, + "new_cases_smoothed": 2766.429, + "total_deaths": 2407.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 7061.87, + "new_cases_per_million": 75.056, + "new_cases_smoothed_per_million": 79.463, + "total_deaths_per_million": 69.139, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 62364.0, + "total_tests": 2613498.0, + "total_tests_per_thousand": 75.071, + "new_tests_per_thousand": 1.791, + "new_tests_smoothed": 56642.0, + "new_tests_smoothed_per_thousand": 1.627, + "tests_per_case": 20.475, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-19", + "total_cases": 248416.0, + "new_cases": 2565.0, + "new_cases_smoothed": 2705.143, + "total_deaths": 2447.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 38.0, + "total_cases_per_million": 7135.547, + "new_cases_per_million": 73.678, + "new_cases_smoothed_per_million": 77.703, + "total_deaths_per_million": 70.288, + "new_deaths_per_million": 1.149, + "new_deaths_smoothed_per_million": 1.092, + "new_tests": 48140.0, + "total_tests": 2661638.0, + "total_tests_per_thousand": 76.453, + "new_tests_per_thousand": 1.383, + "new_tests_smoothed": 57172.0, + "new_tests_smoothed_per_thousand": 1.642, + "tests_per_case": 21.135, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-20", + "total_cases": 250920.0, + "new_cases": 2504.0, + "new_cases_smoothed": 2665.857, + "total_deaths": 2486.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 7207.473, + "new_cases_per_million": 71.925, + "new_cases_smoothed_per_million": 76.575, + "total_deaths_per_million": 71.408, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.079, + "new_tests": 57498.0, + "total_tests": 2719136.0, + "total_tests_per_thousand": 78.105, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 55936.0, + "new_tests_smoothed_per_thousand": 1.607, + "tests_per_case": 20.982, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-21", + "total_cases": 253349.0, + "new_cases": 2429.0, + "new_cases_smoothed": 2605.429, + "total_deaths": 2523.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 7277.244, + "new_cases_per_million": 69.771, + "new_cases_smoothed_per_million": 74.839, + "total_deaths_per_million": 72.471, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 56450.0, + "total_tests": 2775586.0, + "total_tests_per_thousand": 79.726, + "new_tests_per_thousand": 1.621, + "new_tests_smoothed": 58172.0, + "new_tests_smoothed_per_thousand": 1.671, + "tests_per_case": 22.326999999999998, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-22", + "total_cases": 255825.0, + "new_cases": 2476.0, + "new_cases_smoothed": 2574.571, + "total_deaths": 2557.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 7348.365, + "new_cases_per_million": 71.121, + "new_cases_smoothed_per_million": 73.952, + "total_deaths_per_million": 73.448, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 1.124, + "new_tests": 52180.0, + "total_tests": 2827766.0, + "total_tests_per_thousand": 81.225, + "new_tests_per_thousand": 1.499, + "new_tests_smoothed": 57196.0, + "new_tests_smoothed_per_thousand": 1.643, + "tests_per_case": 22.215999999999998, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-23", + "total_cases": 258156.0, + "new_cases": 2331.0, + "new_cases_smoothed": 2526.0, + "total_deaths": 2601.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 7415.321, + "new_cases_per_million": 66.956, + "new_cases_smoothed_per_million": 72.557, + "total_deaths_per_million": 74.712, + "new_deaths_per_million": 1.264, + "new_deaths_smoothed_per_million": 1.133, + "new_tests": 57372.0, + "total_tests": 2885138.0, + "total_tests_per_thousand": 82.873, + "new_tests_per_thousand": 1.648, + "new_tests_smoothed": 57079.0, + "new_tests_smoothed_per_thousand": 1.64, + "tests_per_case": 22.596999999999998, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-24", + "total_cases": 260394.0, + "new_cases": 2238.0, + "new_cases_smoothed": 2450.857, + "total_deaths": 2635.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 7479.606, + "new_cases_per_million": 64.285, + "new_cases_smoothed_per_million": 70.399, + "total_deaths_per_million": 75.688, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 1.087, + "new_tests": 52502.0, + "total_tests": 2937640.0, + "total_tests_per_thousand": 84.381, + "new_tests_per_thousand": 1.508, + "new_tests_smoothed": 55215.0, + "new_tests_smoothed_per_thousand": 1.586, + "tests_per_case": 22.529, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-25", + "total_cases": 262772.0, + "new_cases": 2378.0, + "new_cases_smoothed": 2417.286, + "total_deaths": 2672.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 37.857, + "total_cases_per_million": 7547.912, + "new_cases_per_million": 68.306, + "new_cases_smoothed_per_million": 69.435, + "total_deaths_per_million": 76.751, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.087, + "new_tests": 52812.0, + "total_tests": 2990452.0, + "total_tests_per_thousand": 85.898, + "new_tests_per_thousand": 1.517, + "new_tests_smoothed": 53851.0, + "new_tests_smoothed_per_thousand": 1.547, + "tests_per_case": 22.276999999999997, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-26", + "total_cases": 264973.0, + "new_cases": 2201.0, + "new_cases_smoothed": 2365.286, + "total_deaths": 2703.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 7611.134, + "new_cases_per_million": 63.222, + "new_cases_smoothed_per_million": 67.941, + "total_deaths_per_million": 77.641, + "new_deaths_per_million": 0.89, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 57216.0, + "total_tests": 3047668.0, + "total_tests_per_thousand": 87.542, + "new_tests_per_thousand": 1.643, + "new_tests_smoothed": 55147.0, + "new_tests_smoothed_per_thousand": 1.584, + "tests_per_case": 23.315, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-27", + "total_cases": 266941.0, + "new_cases": 1968.0, + "new_cases_smoothed": 2288.714, + "total_deaths": 2733.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 35.286, + "total_cases_per_million": 7667.663, + "new_cases_per_million": 56.529, + "new_cases_smoothed_per_million": 65.741, + "total_deaths_per_million": 78.503, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.014, + "new_tests": 53793.0, + "total_tests": 3101461.0, + "total_tests_per_thousand": 89.087, + "new_tests_per_thousand": 1.545, + "new_tests_smoothed": 54618.0, + "new_tests_smoothed_per_thousand": 1.569, + "tests_per_case": 23.864, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-28", + "total_cases": 268934.0, + "new_cases": 1993.0, + "new_cases_smoothed": 2226.429, + "total_deaths": 2760.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 7724.91, + "new_cases_per_million": 57.247, + "new_cases_smoothed_per_million": 63.952, + "total_deaths_per_million": 79.279, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.973, + "new_tests": 64137.0, + "total_tests": 3165598.0, + "total_tests_per_thousand": 90.929, + "new_tests_per_thousand": 1.842, + "new_tests_smoothed": 55716.0, + "new_tests_smoothed_per_thousand": 1.6, + "tests_per_case": 25.025, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-07-29", + "total_cases": 270831.0, + "new_cases": 1897.0, + "new_cases_smoothed": 2143.714, + "total_deaths": 2789.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 33.143, + "total_cases_per_million": 7779.4, + "new_cases_per_million": 54.49, + "new_cases_smoothed_per_million": 61.576, + "total_deaths_per_million": 80.112, + "new_deaths_per_million": 0.833, + "new_deaths_smoothed_per_million": 0.952, + "new_tests": 62845.0, + "total_tests": 3228443.0, + "total_tests_per_thousand": 92.734, + "new_tests_per_thousand": 1.805, + "new_tests_smoothed": 57240.0, + "new_tests_smoothed_per_thousand": 1.644, + "tests_per_case": 26.701, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-07-30", + "total_cases": 272590.0, + "new_cases": 1759.0, + "new_cases_smoothed": 2062.0, + "total_deaths": 2816.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 30.714, + "total_cases_per_million": 7829.926, + "new_cases_per_million": 50.526, + "new_cases_smoothed_per_million": 59.229, + "total_deaths_per_million": 80.887, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.882, + "new_tests": 51961.0, + "total_tests": 3280404.0, + "total_tests_per_thousand": 94.227, + "new_tests_per_thousand": 1.493, + "new_tests_smoothed": 56467.0, + "new_tests_smoothed_per_thousand": 1.622, + "tests_per_case": 27.385, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-07-31", + "total_cases": 274219.0, + "new_cases": 1629.0, + "new_cases_smoothed": 1975.0, + "total_deaths": 2866.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 7876.718, + "new_cases_per_million": 46.792, + "new_cases_smoothed_per_million": 56.73, + "total_deaths_per_million": 82.324, + "new_deaths_per_million": 1.436, + "new_deaths_smoothed_per_million": 0.948, + "new_tests": 60849.0, + "total_tests": 3341253.0, + "total_tests_per_thousand": 95.975, + "new_tests_per_thousand": 1.748, + "new_tests_smoothed": 57659.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 29.194000000000003, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-01", + "total_cases": 275905.0, + "new_cases": 1686.0, + "new_cases_smoothed": 1876.143, + "total_deaths": 2866.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 7925.147, + "new_cases_per_million": 48.429, + "new_cases_smoothed_per_million": 53.891, + "total_deaths_per_million": 82.324, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.796, + "new_tests": 45147.0, + "total_tests": 3386400.0, + "total_tests_per_thousand": 97.272, + "new_tests_per_thousand": 1.297, + "new_tests_smoothed": 56564.0, + "new_tests_smoothed_per_thousand": 1.625, + "tests_per_case": 30.149, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-02", + "total_cases": 277478.0, + "new_cases": 1573.0, + "new_cases_smoothed": 1786.429, + "total_deaths": 2867.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 7970.33, + "new_cases_per_million": 45.183, + "new_cases_smoothed_per_million": 51.314, + "total_deaths_per_million": 82.352, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.673, + "new_tests": 36666.0, + "total_tests": 3423066.0, + "total_tests_per_thousand": 98.325, + "new_tests_per_thousand": 1.053, + "new_tests_smoothed": 53628.0, + "new_tests_smoothed_per_thousand": 1.54, + "tests_per_case": 30.02, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-08-03", + "total_cases": 278835.0, + "new_cases": 1357.0, + "new_cases_smoothed": 1699.143, + "total_deaths": 2917.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 8009.308, + "new_cases_per_million": 38.979, + "new_cases_smoothed_per_million": 48.806, + "total_deaths_per_million": 83.788, + "new_deaths_per_million": 1.436, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 41361.0, + "total_tests": 3464427.0, + "total_tests_per_thousand": 99.513, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 51852.0, + "new_tests_smoothed_per_thousand": 1.489, + "tests_per_case": 30.517, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-04", + "total_cases": 280093.0, + "new_cases": 1258.0, + "new_cases_smoothed": 1594.143, + "total_deaths": 2949.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 8045.444, + "new_cases_per_million": 36.135, + "new_cases_smoothed_per_million": 45.79, + "total_deaths_per_million": 84.708, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 0.776, + "new_tests": 54325.0, + "total_tests": 3518752.0, + "total_tests_per_thousand": 101.073, + "new_tests_per_thousand": 1.56, + "new_tests_smoothed": 50451.0, + "new_tests_smoothed_per_thousand": 1.449, + "tests_per_case": 31.648000000000003, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-05", + "total_cases": 281435.0, + "new_cases": 1342.0, + "new_cases_smoothed": 1514.857, + "total_deaths": 2984.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 8083.991, + "new_cases_per_million": 38.548, + "new_cases_smoothed_per_million": 43.513, + "total_deaths_per_million": 85.713, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 0.8, + "new_tests": 52099.0, + "total_tests": 3570851.0, + "total_tests_per_thousand": 102.57, + "new_tests_per_thousand": 1.497, + "new_tests_smoothed": 48915.0, + "new_tests_smoothed_per_thousand": 1.405, + "tests_per_case": 32.29, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-06", + "total_cases": 282824.0, + "new_cases": 1389.0, + "new_cases_smoothed": 1462.0, + "total_deaths": 3020.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 8123.889, + "new_cases_per_million": 39.898, + "new_cases_smoothed_per_million": 41.995, + "total_deaths_per_million": 86.747, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 0.837, + "new_tests": 55566.0, + "total_tests": 3626417.0, + "total_tests_per_thousand": 104.166, + "new_tests_per_thousand": 1.596, + "new_tests_smoothed": 49430.0, + "new_tests_smoothed_per_thousand": 1.42, + "tests_per_case": 33.81, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-07", + "total_cases": 284226.0, + "new_cases": 1402.0, + "new_cases_smoothed": 1429.571, + "total_deaths": 3055.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 27.0, + "total_cases_per_million": 8164.161, + "new_cases_per_million": 40.271, + "new_cases_smoothed_per_million": 41.063, + "total_deaths_per_million": 87.752, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 0.776, + "new_tests": 58299.0, + "total_tests": 3684716.0, + "total_tests_per_thousand": 105.84, + "new_tests_per_thousand": 1.675, + "new_tests_smoothed": 49066.0, + "new_tests_smoothed_per_thousand": 1.409, + "tests_per_case": 34.321999999999996, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-08", + "total_cases": 285793.0, + "new_cases": 1567.0, + "new_cases_smoothed": 1412.571, + "total_deaths": 3093.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 32.429, + "total_cases_per_million": 8209.171, + "new_cases_per_million": 45.011, + "new_cases_smoothed_per_million": 40.575, + "total_deaths_per_million": 88.844, + "new_deaths_per_million": 1.092, + "new_deaths_smoothed_per_million": 0.931, + "new_tests": 60846.0, + "total_tests": 3745562.0, + "total_tests_per_thousand": 107.588, + "new_tests_per_thousand": 1.748, + "new_tests_smoothed": 51309.0, + "new_tests_smoothed_per_thousand": 1.474, + "tests_per_case": 36.323, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-09", + "total_cases": 287262.0, + "new_cases": 1469.0, + "new_cases_smoothed": 1397.714, + "total_deaths": 3130.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 8251.367, + "new_cases_per_million": 42.196, + "new_cases_smoothed_per_million": 40.148, + "total_deaths_per_million": 89.907, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.079, + "new_tests": 58424.0, + "total_tests": 3803986.0, + "total_tests_per_thousand": 109.266, + "new_tests_per_thousand": 1.678, + "new_tests_smoothed": 54417.0, + "new_tests_smoothed_per_thousand": 1.563, + "tests_per_case": 38.933, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-10", + "total_cases": 288690.0, + "new_cases": 1428.0, + "new_cases_smoothed": 1407.857, + "total_deaths": 3167.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 8292.385, + "new_cases_per_million": 41.018, + "new_cases_smoothed_per_million": 40.44, + "total_deaths_per_million": 90.969, + "new_deaths_per_million": 1.063, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 68613.0, + "total_tests": 3872599.0, + "total_tests_per_thousand": 111.237, + "new_tests_per_thousand": 1.971, + "new_tests_smoothed": 58310.0, + "new_tests_smoothed_per_thousand": 1.675, + "tests_per_case": 41.418, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-08-11", + "total_cases": 289947.0, + "new_cases": 1257.0, + "new_cases_smoothed": 1407.714, + "total_deaths": 3199.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 8328.492, + "new_cases_per_million": 36.106, + "new_cases_smoothed_per_million": 40.435, + "total_deaths_per_million": 91.889, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 1.026, + "new_tests": 60828.0, + "total_tests": 3933427.0, + "total_tests_per_thousand": 112.984, + "new_tests_per_thousand": 1.747, + "new_tests_smoothed": 59239.0, + "new_tests_smoothed_per_thousand": 1.702, + "tests_per_case": 42.082, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-12", + "total_cases": 291468.0, + "new_cases": 1521.0, + "new_cases_smoothed": 1433.286, + "total_deaths": 3233.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 8372.181, + "new_cases_per_million": 43.689, + "new_cases_smoothed_per_million": 41.17, + "total_deaths_per_million": 92.865, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 1.022, + "new_tests": 67676.0, + "total_tests": 4001103.0, + "total_tests_per_thousand": 114.928, + "new_tests_per_thousand": 1.944, + "new_tests_smoothed": 61465.0, + "new_tests_smoothed_per_thousand": 1.766, + "tests_per_case": 42.88399999999999, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-13", + "total_cases": 293037.0, + "new_cases": 1569.0, + "new_cases_smoothed": 1459.0, + "total_deaths": 3269.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 8417.249, + "new_cases_per_million": 45.068, + "new_cases_smoothed_per_million": 41.909, + "total_deaths_per_million": 93.899, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 1.022, + "new_tests": 70754.0, + "total_tests": 4071857.0, + "total_tests_per_thousand": 116.961, + "new_tests_per_thousand": 2.032, + "new_tests_smoothed": 63634.0, + "new_tests_smoothed_per_thousand": 1.828, + "tests_per_case": 43.615, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-14", + "total_cases": 294519.0, + "new_cases": 1482.0, + "new_cases_smoothed": 1470.429, + "total_deaths": 3303.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 8459.819, + "new_cases_per_million": 42.569, + "new_cases_smoothed_per_million": 42.237, + "total_deaths_per_million": 94.876, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 1.018, + "new_tests": 66347.0, + "total_tests": 4138204.0, + "total_tests_per_thousand": 118.867, + "new_tests_per_thousand": 1.906, + "new_tests_smoothed": 64784.0, + "new_tests_smoothed_per_thousand": 1.861, + "tests_per_case": 44.058, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-15", + "total_cases": 295902.0, + "new_cases": 1383.0, + "new_cases_smoothed": 1444.143, + "total_deaths": 3338.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 8499.544, + "new_cases_per_million": 39.726, + "new_cases_smoothed_per_million": 41.482, + "total_deaths_per_million": 95.881, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 1.005, + "new_tests": 63872.0, + "total_tests": 4202076.0, + "total_tests_per_thousand": 120.701, + "new_tests_per_thousand": 1.835, + "new_tests_smoothed": 65216.0, + "new_tests_smoothed_per_thousand": 1.873, + "tests_per_case": 45.159, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-16", + "total_cases": 297315.0, + "new_cases": 1413.0, + "new_cases_smoothed": 1436.143, + "total_deaths": 3369.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 34.143, + "total_cases_per_million": 8540.131, + "new_cases_per_million": 40.587, + "new_cases_smoothed_per_million": 41.252, + "total_deaths_per_million": 96.772, + "new_deaths_per_million": 0.89, + "new_deaths_smoothed_per_million": 0.981, + "new_tests": 60016.0, + "total_tests": 4262092.0, + "total_tests_per_thousand": 122.425, + "new_tests_per_thousand": 1.724, + "new_tests_smoothed": 65444.0, + "new_tests_smoothed_per_thousand": 1.88, + "tests_per_case": 45.568999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-17", + "total_cases": 298542.0, + "new_cases": 1227.0, + "new_cases_smoothed": 1407.429, + "total_deaths": 3408.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 8575.376, + "new_cases_per_million": 35.245, + "new_cases_smoothed_per_million": 40.427, + "total_deaths_per_million": 97.892, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 0.989, + "new_tests": 55613.0, + "total_tests": 4317705.0, + "total_tests_per_thousand": 124.023, + "new_tests_per_thousand": 1.597, + "new_tests_smoothed": 63587.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 45.18, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-18", + "total_cases": 299914.0, + "new_cases": 1372.0, + "new_cases_smoothed": 1423.857, + "total_deaths": 3436.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 8614.786, + "new_cases_per_million": 39.41, + "new_cases_smoothed_per_million": 40.899, + "total_deaths_per_million": 98.696, + "new_deaths_per_million": 0.804, + "new_deaths_smoothed_per_million": 0.973, + "new_tests": 60712.0, + "total_tests": 4378417.0, + "total_tests_per_thousand": 125.766, + "new_tests_per_thousand": 1.744, + "new_tests_smoothed": 63570.0, + "new_tests_smoothed_per_thousand": 1.826, + "tests_per_case": 44.646, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-19", + "total_cases": 301333.0, + "new_cases": 1419.0, + "new_cases_smoothed": 1409.286, + "total_deaths": 3470.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 8655.545, + "new_cases_per_million": 40.76, + "new_cases_smoothed_per_million": 40.481, + "total_deaths_per_million": 99.673, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 0.973, + "new_tests": 61067.0, + "total_tests": 4439484.0, + "total_tests_per_thousand": 127.521, + "new_tests_per_thousand": 1.754, + "new_tests_smoothed": 62626.0, + "new_tests_smoothed_per_thousand": 1.799, + "tests_per_case": 44.438, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-20", + "total_cases": 302686.0, + "new_cases": 1353.0, + "new_cases_smoothed": 1378.429, + "total_deaths": 3506.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 8694.409, + "new_cases_per_million": 38.864, + "new_cases_smoothed_per_million": 39.594, + "total_deaths_per_million": 100.707, + "new_deaths_per_million": 1.034, + "new_deaths_smoothed_per_million": 0.973, + "new_tests": 61620.0, + "total_tests": 4501104.0, + "total_tests_per_thousand": 129.291, + "new_tests_per_thousand": 1.77, + "new_tests_smoothed": 61321.0, + "new_tests_smoothed_per_thousand": 1.761, + "tests_per_case": 44.486000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-21", + "total_cases": 303973.0, + "new_cases": 1287.0, + "new_cases_smoothed": 1350.571, + "total_deaths": 3548.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 8731.377, + "new_cases_per_million": 36.968, + "new_cases_smoothed_per_million": 38.794, + "total_deaths_per_million": 101.913, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.005, + "new_tests": 62413.0, + "total_tests": 4563517.0, + "total_tests_per_thousand": 131.083, + "new_tests_per_thousand": 1.793, + "new_tests_smoothed": 60759.0, + "new_tests_smoothed_per_thousand": 1.745, + "tests_per_case": 44.988, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-22", + "total_cases": 305186.0, + "new_cases": 1213.0, + "new_cases_smoothed": 1326.286, + "total_deaths": 3580.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 8766.22, + "new_cases_per_million": 34.842, + "new_cases_smoothed_per_million": 38.096, + "total_deaths_per_million": 102.833, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 0.993, + "new_tests": 59120.0, + "total_tests": 4622637.0, + "total_tests_per_thousand": 132.781, + "new_tests_per_thousand": 1.698, + "new_tests_smoothed": 60080.0, + "new_tests_smoothed_per_thousand": 1.726, + "tests_per_case": 45.299, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-23", + "total_cases": 306370.0, + "new_cases": 1184.0, + "new_cases_smoothed": 1293.571, + "total_deaths": 3619.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 8800.229, + "new_cases_per_million": 34.009, + "new_cases_smoothed_per_million": 37.157, + "total_deaths_per_million": 103.953, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.026, + "new_tests_smoothed": 59424.0, + "new_tests_smoothed_per_thousand": 1.707, + "tests_per_case": 45.938, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-24", + "total_cases": 307479.0, + "new_cases": 1109.0, + "new_cases_smoothed": 1276.714, + "total_deaths": 3649.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 8832.084, + "new_cases_per_million": 31.855, + "new_cases_smoothed_per_million": 36.673, + "total_deaths_per_million": 104.815, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.989, + "total_tests": 4733485.0, + "total_tests_per_thousand": 135.966, + "new_tests_smoothed": 59397.0, + "new_tests_smoothed_per_thousand": 1.706, + "tests_per_case": 46.523, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-25", + "total_cases": 308654.0, + "new_cases": 1175.0, + "new_cases_smoothed": 1248.571, + "total_deaths": 3691.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 36.429, + "total_cases_per_million": 8865.835, + "new_cases_per_million": 33.751, + "new_cases_smoothed_per_million": 35.864, + "total_deaths_per_million": 106.021, + "new_deaths_per_million": 1.206, + "new_deaths_smoothed_per_million": 1.046, + "new_tests": 58707.0, + "total_tests": 4792192.0, + "total_tests_per_thousand": 137.652, + "new_tests_per_thousand": 1.686, + "new_tests_smoothed": 59111.0, + "new_tests_smoothed_per_thousand": 1.698, + "tests_per_case": 47.343, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-26", + "total_cases": 309768.0, + "new_cases": 1114.0, + "new_cases_smoothed": 1205.0, + "total_deaths": 3722.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 36.0, + "total_cases_per_million": 8897.834, + "new_cases_per_million": 31.999, + "new_cases_smoothed_per_million": 34.613, + "total_deaths_per_million": 106.911, + "new_deaths_per_million": 0.89, + "new_deaths_smoothed_per_million": 1.034, + "new_tests": 58467.0, + "total_tests": 4850659.0, + "total_tests_per_thousand": 139.331, + "new_tests_per_thousand": 1.679, + "new_tests_smoothed": 58739.0, + "new_tests_smoothed_per_thousand": 1.687, + "tests_per_case": 48.746, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-27", + "total_cases": 310836.0, + "new_cases": 1068.0, + "new_cases_smoothed": 1164.286, + "total_deaths": 3755.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 8928.511, + "new_cases_per_million": 30.677, + "new_cases_smoothed_per_million": 33.443, + "total_deaths_per_million": 107.859, + "new_deaths_per_million": 0.948, + "new_deaths_smoothed_per_million": 1.022, + "new_tests": 63265.0, + "total_tests": 4913924.0, + "total_tests_per_thousand": 141.148, + "new_tests_per_thousand": 1.817, + "new_tests_smoothed": 58974.0, + "new_tests_smoothed_per_thousand": 1.694, + "tests_per_case": 50.653, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-28", + "total_cases": 311855.0, + "new_cases": 1019.0, + "new_cases_smoothed": 1126.0, + "total_deaths": 3785.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 8957.781, + "new_cases_per_million": 29.27, + "new_cases_smoothed_per_million": 32.343, + "total_deaths_per_million": 108.721, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.973, + "new_tests": 60195.0, + "total_tests": 4974119.0, + "total_tests_per_thousand": 142.878, + "new_tests_per_thousand": 1.729, + "new_tests_smoothed": 58657.0, + "new_tests_smoothed_per_thousand": 1.685, + "tests_per_case": 52.093, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-29", + "total_cases": 312924.0, + "new_cases": 1069.0, + "new_cases_smoothed": 1105.429, + "total_deaths": 3813.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 33.286, + "total_cases_per_million": 8988.487, + "new_cases_per_million": 30.706, + "new_cases_smoothed_per_million": 31.753, + "total_deaths_per_million": 109.525, + "new_deaths_per_million": 0.804, + "new_deaths_smoothed_per_million": 0.956, + "new_tests": 52008.0, + "total_tests": 5026127.0, + "total_tests_per_thousand": 144.371, + "new_tests_per_thousand": 1.494, + "new_tests_smoothed": 57641.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 52.144, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-30", + "total_cases": 313911.0, + "new_cases": 987.0, + "new_cases_smoothed": 1077.286, + "total_deaths": 3840.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 9016.838, + "new_cases_per_million": 28.351, + "new_cases_smoothed_per_million": 30.944, + "total_deaths_per_million": 110.301, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 37466.0, + "total_tests": 5063593.0, + "total_tests_per_thousand": 145.448, + "new_tests_per_thousand": 1.076, + "new_tests_smoothed": 55076.0, + "new_tests_smoothed_per_thousand": 1.582, + "tests_per_case": 51.125, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-08-31", + "total_cases": 314821.0, + "new_cases": 910.0, + "new_cases_smoothed": 1048.857, + "total_deaths": 3870.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 9042.977, + "new_cases_per_million": 26.139, + "new_cases_smoothed_per_million": 30.128, + "total_deaths_per_million": 111.163, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.907, + "new_tests": 46936.0, + "total_tests": 5110529.0, + "total_tests_per_thousand": 146.796, + "new_tests_per_thousand": 1.348, + "new_tests_smoothed": 53863.0, + "new_tests_smoothed_per_thousand": 1.547, + "tests_per_case": 51.354, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 60.19 + }, + { + "date": "2020-09-01", + "total_cases": 315772.0, + "new_cases": 951.0, + "new_cases_smoothed": 1016.857, + "total_deaths": 3897.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 9070.294, + "new_cases_per_million": 27.317, + "new_cases_smoothed_per_million": 29.208, + "total_deaths_per_million": 111.938, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.845, + "new_tests": 49989.0, + "total_tests": 5160518.0, + "total_tests_per_thousand": 148.232, + "new_tests_per_thousand": 1.436, + "new_tests_smoothed": 52618.0, + "new_tests_smoothed_per_thousand": 1.511, + "tests_per_case": 51.746, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 316670.0, + "new_cases": 898.0, + "new_cases_smoothed": 986.0, + "total_deaths": 3929.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 9096.088, + "new_cases_per_million": 25.794, + "new_cases_smoothed_per_million": 28.322, + "total_deaths_per_million": 112.857, + "new_deaths_per_million": 0.919, + "new_deaths_smoothed_per_million": 0.849, + "new_tests": 52643.0, + "total_tests": 5213161.0, + "total_tests_per_thousand": 149.744, + "new_tests_per_thousand": 1.512, + "new_tests_smoothed": 51786.0, + "new_tests_smoothed_per_thousand": 1.488, + "tests_per_case": 52.521, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 317486.0, + "new_cases": 816.0, + "new_cases_smoothed": 950.0, + "total_deaths": 3956.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 28.714, + "total_cases_per_million": 9119.527, + "new_cases_per_million": 23.439, + "new_cases_smoothed_per_million": 27.288, + "total_deaths_per_million": 113.633, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 48653.0, + "total_tests": 5261814.0, + "total_tests_per_thousand": 151.141, + "new_tests_per_thousand": 1.398, + "new_tests_smoothed": 49699.0, + "new_tests_smoothed_per_thousand": 1.428, + "tests_per_case": 52.315, + "positive_rate": 0.019, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 318319.0, + "new_cases": 833.0, + "new_cases_smoothed": 923.429, + "total_deaths": 3982.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 9143.454, + "new_cases_per_million": 23.927, + "new_cases_smoothed_per_million": 26.525, + "total_deaths_per_million": 114.38, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.808 + }, + { + "date": "2020-09-05", + "total_cases": 319141.0, + "new_cases": 822.0, + "new_cases_smoothed": 888.143, + "total_deaths": 4015.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 9167.066, + "new_cases_per_million": 23.611, + "new_cases_smoothed_per_million": 25.511, + "total_deaths_per_million": 115.328, + "new_deaths_per_million": 0.948, + "new_deaths_smoothed_per_million": 0.829 + } + ] + }, + "SEN": { + "continent": "Africa", + "location": "Senegal", + "population": 16743930.0, + "population_density": 82.328, + "median_age": 18.7, + "aged_65_older": 3.008, + "aged_70_older": 1.796, + "gdp_per_capita": 2470.58, + "extreme_poverty": 38.0, + "cardiovasc_death_rate": 241.219, + "diabetes_prevalence": 2.42, + "female_smokers": 0.4, + "male_smokers": 16.6, + "handwashing_facilities": 20.859, + "life_expectancy": 67.94, + "data": [ + { + "date": "2020-03-02", + "new_tests": 1.0, + "total_tests": 1.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.06, + "new_cases_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 3.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_tests": 11.0, + "total_tests": 14.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.239, + "new_cases_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 16.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "new_tests": 2.0, + "total_tests": 18.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "new_tests": 2.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.571, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 26.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 27.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.026, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8.0, + "total_tests": 35.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 7.0, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6.0, + "total_tests": 41.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 28.0, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.358, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 52.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 17.5, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-14", + "total_cases": 19.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.135, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 55.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 2.333, + "positive_rate": 0.429, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-03-15", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.254, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 57.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 2.059, + "positive_rate": 0.486, + "tests_units": "tests performed", + "stringency_index": 30.56 + }, + { + "date": "2020-03-16", + "total_cases": 26.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.553, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 66.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 1.909, + "positive_rate": 0.524, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-03-17", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.613, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 110.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.6519999999999997, + "positive_rate": 0.27399999999999997, + "tests_units": "tests performed", + "stringency_index": 41.67 + }, + { + "date": "2020-03-18", + "total_cases": 31.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.851, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 27.0, + "total_tests": 137.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.889, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-19", + "total_cases": 36.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.15, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.273, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 159.0, + "total_tests_per_thousand": 0.009, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 17.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 3.719, + "positive_rate": 0.26899999999999996, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-03-20", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.15, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 56.0, + "total_tests": 215.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 5.367000000000001, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-21", + "total_cases": 47.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.807, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 0.239, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 246.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 6.75, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-22", + "total_cases": 56.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.344, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.299, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 85.0, + "total_tests": 331.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 39.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 7.8, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 67.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.001, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 0.35, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 60.0, + "total_tests": 391.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 7.854, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-24", + "total_cases": 79.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.718, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.444, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 59.0, + "total_tests": 450.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 6.596, + "positive_rate": 0.152, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-03-25", + "total_cases": 86.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.136, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 142.0, + "total_tests": 592.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 65.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 8.273, + "positive_rate": 0.121, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-26", + "total_cases": 99.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.913, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 0.538, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 130.0, + "total_tests": 722.0, + "total_tests_per_thousand": 0.043, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 80.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 8.889, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-27", + "total_cases": 105.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.271, + "new_cases_per_million": 0.358, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 144.0, + "total_tests": 866.0, + "total_tests_per_thousand": 0.052, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 93.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 9.435, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-28", + "total_cases": 119.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.107, + "new_cases_per_million": 0.836, + "new_cases_smoothed_per_million": 0.614, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 98.0, + "total_tests": 964.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 103.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 10.014, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-29", + "total_cases": 130.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.764, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 0.631, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 151.0, + "total_tests": 1115.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 112.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 10.595, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-30", + "total_cases": 142.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.481, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 87.0, + "total_tests": 1202.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 116.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 10.827, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-31", + "total_cases": 162.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.675, + "new_cases_per_million": 1.194, + "new_cases_smoothed_per_million": 0.708, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 97.0, + "total_tests": 1299.0, + "total_tests_per_thousand": 0.078, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 121.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 10.205, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-01", + "total_cases": 175.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.452, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 195.0, + "total_tests": 1494.0, + "total_tests_per_thousand": 0.089, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 129.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 10.146, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-02", + "total_cases": 190.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.347, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.776, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 127.0, + "total_tests": 1621.0, + "total_tests_per_thousand": 0.097, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 128.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 9.846, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-03", + "total_cases": 195.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.646, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.768, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 153.0, + "total_tests": 1774.0, + "total_tests_per_thousand": 0.106, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 130.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 10.111, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-04", + "total_cases": 207.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.363, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.751, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 177.0, + "total_tests": 1951.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 11.216, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-05", + "total_cases": 219.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.079, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 92.0, + "total_tests": 2043.0, + "total_tests_per_thousand": 0.122, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 133.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 10.460999999999999, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-06", + "total_cases": 222.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.259, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.683, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 95.0, + "total_tests": 2138.0, + "total_tests_per_thousand": 0.128, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 134.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 11.725, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-07", + "total_cases": 226.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13.497, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 110.0, + "total_tests": 2248.0, + "total_tests_per_thousand": 0.134, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 136.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 14.875, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-08", + "total_cases": 237.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.154, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 108.0, + "total_tests": 2356.0, + "total_tests_per_thousand": 0.141, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 123.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 13.887, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-09", + "total_cases": 244.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.572, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.461, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 199.0, + "total_tests": 2555.0, + "total_tests_per_thousand": 0.153, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 133.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 17.241, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-10", + "total_cases": 250.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.931, + "new_cases_per_million": 0.358, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 195.0, + "total_tests": 2750.0, + "total_tests_per_thousand": 0.164, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 139.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 17.691, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-11", + "total_cases": 265.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 15.827, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.495, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 173.0, + "total_tests": 2923.0, + "total_tests_per_thousand": 0.175, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 139.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 16.776, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 278.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.603, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 0.503, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 104.0, + "total_tests": 3027.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 16.729, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 280.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.722, + "new_cases_per_million": 0.119, + "new_cases_smoothed_per_million": 0.495, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 144.0, + "total_tests": 3171.0, + "total_tests_per_thousand": 0.189, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 148.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 17.862000000000002, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-14", + "total_cases": 291.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.379, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 272.0, + "total_tests": 3443.0, + "total_tests_per_thousand": 0.206, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 171.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 18.415, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-15", + "total_cases": 299.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.857, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 227.0, + "total_tests": 3670.0, + "total_tests_per_thousand": 0.219, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 21.226, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-16", + "total_cases": 314.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.753, + "new_cases_per_million": 0.896, + "new_cases_smoothed_per_million": 0.597, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 435.0, + "total_tests": 4105.0, + "total_tests_per_thousand": 0.245, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 221.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 22.1, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-17", + "total_cases": 335.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.007, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 0.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 297.0, + "total_tests": 4402.0, + "total_tests_per_thousand": 0.263, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 236.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 19.435, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-18", + "total_cases": 342.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.425, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.657, + "total_deaths_per_million": 0.179, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 226.0, + "total_tests": 4628.0, + "total_tests_per_thousand": 0.276, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 244.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 22.182, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-19", + "total_cases": 350.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.903, + "new_cases_per_million": 0.478, + "new_cases_smoothed_per_million": 0.614, + "total_deaths_per_million": 0.179, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 313.0, + "total_tests": 4941.0, + "total_tests_per_thousand": 0.295, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 273.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 26.541999999999998, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-20", + "total_cases": 367.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.918, + "new_cases_per_million": 1.015, + "new_cases_smoothed_per_million": 0.742, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 281.0, + "total_tests": 5222.0, + "total_tests_per_thousand": 0.312, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 293.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 23.575, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-21", + "total_cases": 377.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.516, + "new_cases_per_million": 0.597, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 466.0, + "total_tests": 5688.0, + "total_tests_per_thousand": 0.34, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 321.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 26.128, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-22", + "total_cases": 412.0, + "new_cases": 35.0, + "new_cases_smoothed": 16.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.606, + "new_cases_per_million": 2.09, + "new_cases_smoothed_per_million": 0.964, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 482.0, + "total_tests": 6170.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 357.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 22.115, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 442.0, + "new_cases": 30.0, + "new_cases_smoothed": 18.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 26.398, + "new_cases_per_million": 1.792, + "new_cases_smoothed_per_million": 1.092, + "total_deaths_per_million": 0.358, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 387.0, + "total_tests": 6557.0, + "total_tests_per_thousand": 0.392, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 350.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 19.141, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 479.0, + "new_cases": 37.0, + "new_cases_smoothed": 20.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 28.607, + "new_cases_per_million": 2.21, + "new_cases_smoothed_per_million": 1.229, + "total_deaths_per_million": 0.358, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 528.0, + "total_tests": 7085.0, + "total_tests_per_thousand": 0.423, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 383.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 18.618, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-25", + "total_cases": 545.0, + "new_cases": 66.0, + "new_cases_smoothed": 29.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 32.549, + "new_cases_per_million": 3.942, + "new_cases_smoothed_per_million": 1.732, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 703.0, + "total_tests": 7788.0, + "total_tests_per_thousand": 0.465, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 15.552, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-26", + "total_cases": 614.0, + "new_cases": 69.0, + "new_cases_smoothed": 37.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 36.67, + "new_cases_per_million": 4.121, + "new_cases_smoothed_per_million": 2.252, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 579.0, + "total_tests": 8367.0, + "total_tests_per_thousand": 0.5, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 489.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 12.966, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-27", + "total_cases": 671.0, + "new_cases": 57.0, + "new_cases_smoothed": 43.429, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 40.074, + "new_cases_per_million": 3.404, + "new_cases_smoothed_per_million": 2.594, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 677.0, + "total_tests": 9044.0, + "total_tests_per_thousand": 0.54, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 546.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 12.572000000000001, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-28", + "total_cases": 735.0, + "new_cases": 64.0, + "new_cases_smoothed": 51.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 43.897, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 3.054, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 873.0, + "total_tests": 9917.0, + "total_tests_per_thousand": 0.592, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 604.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 11.81, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-29", + "total_cases": 823.0, + "new_cases": 88.0, + "new_cases_smoothed": 58.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 49.152, + "new_cases_per_million": 5.256, + "new_cases_smoothed_per_million": 3.507, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 800.0, + "total_tests": 10717.0, + "total_tests_per_thousand": 0.64, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 650.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 11.071, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-30", + "total_cases": 882.0, + "new_cases": 59.0, + "new_cases_smoothed": 62.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 52.676, + "new_cases_per_million": 3.524, + "new_cases_smoothed_per_million": 3.754, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1161.0, + "total_tests": 11878.0, + "total_tests_per_thousand": 0.709, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 760.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 12.091, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-01", + "total_cases": 933.0, + "new_cases": 51.0, + "new_cases_smoothed": 64.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 55.722, + "new_cases_per_million": 3.046, + "new_cases_smoothed_per_million": 3.873, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 901.0, + "total_tests": 12779.0, + "total_tests_per_thousand": 0.763, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 813.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 12.535, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-02", + "total_cases": 1024.0, + "new_cases": 91.0, + "new_cases_smoothed": 68.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 61.156, + "new_cases_per_million": 5.435, + "new_cases_smoothed_per_million": 4.087, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 1190.0, + "total_tests": 13969.0, + "total_tests_per_thousand": 0.834, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 12.904000000000002, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-03", + "total_cases": 1115.0, + "new_cases": 91.0, + "new_cases_smoothed": 71.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 66.591, + "new_cases_per_million": 5.435, + "new_cases_smoothed_per_million": 4.274, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 810.0, + "total_tests": 14779.0, + "total_tests_per_thousand": 0.883, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 916.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 12.798, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 1182.0, + "new_cases": 67.0, + "new_cases_smoothed": 73.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 70.593, + "new_cases_per_million": 4.001, + "new_cases_smoothed_per_million": 4.36, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 807.0, + "total_tests": 15586.0, + "total_tests_per_thousand": 0.931, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 935.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 12.808, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-05", + "total_cases": 1271.0, + "new_cases": 89.0, + "new_cases_smoothed": 76.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 75.908, + "new_cases_per_million": 5.315, + "new_cases_smoothed_per_million": 4.573, + "total_deaths_per_million": 0.597, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 702.0, + "total_tests": 16288.0, + "total_tests_per_thousand": 0.973, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 910.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 11.884, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 1329.0, + "new_cases": 58.0, + "new_cases_smoothed": 72.286, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 79.372, + "new_cases_per_million": 3.464, + "new_cases_smoothed_per_million": 4.317, + "total_deaths_per_million": 0.657, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 1182.0, + "total_tests": 17470.0, + "total_tests_per_thousand": 1.043, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 965.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 13.35, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-07", + "total_cases": 1433.0, + "new_cases": 104.0, + "new_cases_smoothed": 78.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 85.583, + "new_cases_per_million": 6.211, + "new_cases_smoothed_per_million": 4.701, + "total_deaths_per_million": 0.717, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1027.0, + "total_tests": 18497.0, + "total_tests_per_thousand": 1.105, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 946.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 12.017999999999999, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-08", + "total_cases": 1492.0, + "new_cases": 59.0, + "new_cases_smoothed": 79.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 89.107, + "new_cases_per_million": 3.524, + "new_cases_smoothed_per_million": 4.769, + "total_deaths_per_million": 0.776, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 872.0, + "total_tests": 19369.0, + "total_tests_per_thousand": 1.157, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 941.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 11.784, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-09", + "total_cases": 1551.0, + "new_cases": 59.0, + "new_cases_smoothed": 75.286, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 92.631, + "new_cases_per_million": 3.524, + "new_cases_smoothed_per_million": 4.496, + "total_deaths_per_million": 0.836, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 848.0, + "total_tests": 20217.0, + "total_tests_per_thousand": 1.207, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 893.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 11.860999999999999, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-10", + "total_cases": 1634.0, + "new_cases": 83.0, + "new_cases_smoothed": 74.143, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 97.588, + "new_cases_per_million": 4.957, + "new_cases_smoothed_per_million": 4.428, + "total_deaths_per_million": 1.015, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 1356.0, + "total_tests": 21573.0, + "total_tests_per_thousand": 1.288, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 971.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 13.095999999999998, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-11", + "total_cases": 1709.0, + "new_cases": 75.0, + "new_cases_smoothed": 75.286, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 102.067, + "new_cases_per_million": 4.479, + "new_cases_smoothed_per_million": 4.496, + "total_deaths_per_million": 1.135, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 917.0, + "total_tests": 22490.0, + "total_tests_per_thousand": 1.343, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 986.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 13.097000000000001, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-12", + "total_cases": 1886.0, + "new_cases": 177.0, + "new_cases_smoothed": 87.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 112.638, + "new_cases_per_million": 10.571, + "new_cases_smoothed_per_million": 5.247, + "total_deaths_per_million": 1.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1099.0, + "total_tests": 23589.0, + "total_tests_per_thousand": 1.409, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1043.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 11.872, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-13", + "total_cases": 1995.0, + "new_cases": 109.0, + "new_cases_smoothed": 95.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 119.148, + "new_cases_per_million": 6.51, + "new_cases_smoothed_per_million": 5.682, + "total_deaths_per_million": 1.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 920.0, + "total_tests": 24509.0, + "total_tests_per_thousand": 1.464, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1006.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 10.574000000000002, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-14", + "total_cases": 2105.0, + "new_cases": 110.0, + "new_cases_smoothed": 96.0, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 125.717, + "new_cases_per_million": 6.57, + "new_cases_smoothed_per_million": 5.733, + "total_deaths_per_million": 1.314, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 992.0, + "total_tests": 25501.0, + "total_tests_per_thousand": 1.523, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1001.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 10.427, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-15", + "total_cases": 2189.0, + "new_cases": 84.0, + "new_cases_smoothed": 99.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 130.734, + "new_cases_per_million": 5.017, + "new_cases_smoothed_per_million": 5.947, + "total_deaths_per_million": 1.374, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 1128.0, + "total_tests": 26629.0, + "total_tests_per_thousand": 1.59, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 10.415, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-16", + "total_cases": 2310.0, + "new_cases": 121.0, + "new_cases_smoothed": 108.429, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 137.96, + "new_cases_per_million": 7.226, + "new_cases_smoothed_per_million": 6.476, + "total_deaths_per_million": 1.493, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 989.0, + "total_tests": 27618.0, + "total_tests_per_thousand": 1.649, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1057.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 9.748, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-17", + "total_cases": 2429.0, + "new_cases": 119.0, + "new_cases_smoothed": 113.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 145.067, + "new_cases_per_million": 7.107, + "new_cases_smoothed_per_million": 6.783, + "total_deaths_per_million": 1.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 816.0, + "total_tests": 28434.0, + "total_tests_per_thousand": 1.698, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 980.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 8.629, + "positive_rate": 0.11599999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-18", + "total_cases": 2480.0, + "new_cases": 51.0, + "new_cases_smoothed": 110.143, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 148.113, + "new_cases_per_million": 3.046, + "new_cases_smoothed_per_million": 6.578, + "total_deaths_per_million": 1.553, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1072.0, + "total_tests": 29506.0, + "total_tests_per_thousand": 1.762, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1002.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 9.097000000000001, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-19", + "total_cases": 2544.0, + "new_cases": 64.0, + "new_cases_smoothed": 94.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 151.936, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 5.614, + "total_deaths_per_million": 1.553, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 930.0, + "total_tests": 30436.0, + "total_tests_per_thousand": 1.818, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 978.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 10.404000000000002, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-20", + "total_cases": 2617.0, + "new_cases": 73.0, + "new_cases_smoothed": 88.857, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 156.295, + "new_cases_per_million": 4.36, + "new_cases_smoothed_per_million": 5.307, + "total_deaths_per_million": 1.792, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 1042.0, + "total_tests": 31478.0, + "total_tests_per_thousand": 1.88, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 996.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 11.209000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-21", + "total_cases": 2714.0, + "new_cases": 97.0, + "new_cases_smoothed": 87.0, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 162.089, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 5.196, + "total_deaths_per_million": 1.792, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 1215.0, + "total_tests": 32693.0, + "total_tests_per_thousand": 1.953, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 1027.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 11.805, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-22", + "total_cases": 2812.0, + "new_cases": 98.0, + "new_cases_smoothed": 89.0, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 167.941, + "new_cases_per_million": 5.853, + "new_cases_smoothed_per_million": 5.315, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 1199.0, + "total_tests": 33892.0, + "total_tests_per_thousand": 2.024, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 1038.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 11.663, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-23", + "total_cases": 2909.0, + "new_cases": 97.0, + "new_cases_smoothed": 85.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 173.735, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 5.111, + "total_deaths_per_million": 1.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 934.0, + "total_tests": 34826.0, + "total_tests_per_thousand": 2.08, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1030.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.037, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-24", + "total_cases": 2976.0, + "new_cases": 67.0, + "new_cases_smoothed": 78.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 177.736, + "new_cases_per_million": 4.001, + "new_cases_smoothed_per_million": 4.667, + "total_deaths_per_million": 2.09, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 889.0, + "total_tests": 35715.0, + "total_tests_per_thousand": 2.133, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 1040.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 13.309000000000001, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-25", + "total_cases": 3047.0, + "new_cases": 71.0, + "new_cases_smoothed": 81.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 181.976, + "new_cases_per_million": 4.24, + "new_cases_smoothed_per_million": 4.838, + "total_deaths_per_million": 2.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1091.0, + "total_tests": 36806.0, + "total_tests_per_thousand": 2.198, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1043.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.877, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-26", + "total_cases": 3130.0, + "new_cases": 83.0, + "new_cases_smoothed": 83.714, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 186.933, + "new_cases_per_million": 4.957, + "new_cases_smoothed_per_million": 5.0, + "total_deaths_per_million": 2.15, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 551.0, + "total_tests": 37357.0, + "total_tests_per_thousand": 2.231, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 11.814, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 3161.0, + "new_cases": 31.0, + "new_cases_smoothed": 77.714, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 188.785, + "new_cases_per_million": 1.851, + "new_cases_smoothed_per_million": 4.641, + "total_deaths_per_million": 2.21, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 961.0, + "total_tests": 38318.0, + "total_tests_per_thousand": 2.288, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 977.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 12.572000000000001, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 3253.0, + "new_cases": 92.0, + "new_cases_smoothed": 77.0, + "total_deaths": 39.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 194.279, + "new_cases_per_million": 5.495, + "new_cases_smoothed_per_million": 4.599, + "total_deaths_per_million": 2.329, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 991.0, + "total_tests": 39309.0, + "total_tests_per_thousand": 2.348, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 945.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 12.273, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 3348.0, + "new_cases": 95.0, + "new_cases_smoothed": 76.571, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 199.953, + "new_cases_per_million": 5.674, + "new_cases_smoothed_per_million": 4.573, + "total_deaths_per_million": 2.449, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 1236.0, + "total_tests": 40545.0, + "total_tests_per_thousand": 2.421, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 950.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 12.407, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 3429.0, + "new_cases": 81.0, + "new_cases_smoothed": 74.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 204.791, + "new_cases_per_million": 4.838, + "new_cases_smoothed_per_million": 4.437, + "total_deaths_per_million": 2.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "new_tests": 1370.0, + "total_tests": 41915.0, + "total_tests_per_thousand": 2.503, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1013.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 13.637, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-31", + "total_cases": 3535.0, + "new_cases": 106.0, + "new_cases_smoothed": 79.857, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 211.121, + "new_cases_per_million": 6.331, + "new_cases_smoothed_per_million": 4.769, + "total_deaths_per_million": 2.508, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1024.0, + "total_tests": 42939.0, + "total_tests_per_thousand": 2.564, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 12.923, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-01", + "total_cases": 3645.0, + "new_cases": 110.0, + "new_cases_smoothed": 85.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 217.691, + "new_cases_per_million": 6.57, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 2.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1820.0, + "total_tests": 44759.0, + "total_tests_per_thousand": 2.673, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1136.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 13.298, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-02", + "total_cases": 3739.0, + "new_cases": 94.0, + "new_cases_smoothed": 87.0, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 223.305, + "new_cases_per_million": 5.614, + "new_cases_smoothed_per_million": 5.196, + "total_deaths_per_million": 2.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 1339.0, + "total_tests": 46098.0, + "total_tests_per_thousand": 2.753, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1249.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 14.356, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 3836.0, + "new_cases": 97.0, + "new_cases_smoothed": 96.429, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 229.098, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 5.759, + "total_deaths_per_million": 2.568, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 1549.0, + "total_tests": 47647.0, + "total_tests_per_thousand": 2.846, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1333.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 13.824000000000002, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 3932.0, + "new_cases": 96.0, + "new_cases_smoothed": 97.0, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 234.831, + "new_cases_per_million": 5.733, + "new_cases_smoothed_per_million": 5.793, + "total_deaths_per_million": 2.688, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 1343.0, + "total_tests": 48990.0, + "total_tests_per_thousand": 2.926, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1383.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 14.258, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 4021.0, + "new_cases": 89.0, + "new_cases_smoothed": 96.143, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 240.147, + "new_cases_per_million": 5.315, + "new_cases_smoothed_per_million": 5.742, + "total_deaths_per_million": 2.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 1700.0, + "total_tests": 50690.0, + "total_tests_per_thousand": 3.027, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 15.071, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 4155.0, + "new_cases": 134.0, + "new_cases_smoothed": 103.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 248.15, + "new_cases_per_million": 8.003, + "new_cases_smoothed_per_million": 6.194, + "total_deaths_per_million": 2.688, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 1166.0, + "total_tests": 51856.0, + "total_tests_per_thousand": 3.097, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1420.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 13.690999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 4249.0, + "new_cases": 94.0, + "new_cases_smoothed": 102.0, + "total_deaths": 47.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 253.764, + "new_cases_per_million": 5.614, + "new_cases_smoothed_per_million": 6.092, + "total_deaths_per_million": 2.807, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 1266.0, + "total_tests": 53122.0, + "total_tests_per_thousand": 3.173, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1455.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 14.265, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-08", + "total_cases": 4328.0, + "new_cases": 79.0, + "new_cases_smoothed": 97.571, + "total_deaths": 49.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 258.482, + "new_cases_per_million": 4.718, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 2.926, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 1010.0, + "total_tests": 54132.0, + "total_tests_per_thousand": 3.233, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1339.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 13.722999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-09", + "total_cases": 4427.0, + "new_cases": 99.0, + "new_cases_smoothed": 98.286, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 264.394, + "new_cases_per_million": 5.913, + "new_cases_smoothed_per_million": 5.87, + "total_deaths_per_million": 3.106, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 1402.0, + "total_tests": 55534.0, + "total_tests_per_thousand": 3.317, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1348.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 13.715, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-10", + "total_cases": 4516.0, + "new_cases": 89.0, + "new_cases_smoothed": 97.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 269.71, + "new_cases_per_million": 5.315, + "new_cases_smoothed_per_million": 5.802, + "total_deaths_per_million": 3.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1205.0, + "total_tests": 56739.0, + "total_tests_per_thousand": 3.389, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 1299.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 13.372, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-11", + "total_cases": 4640.0, + "new_cases": 124.0, + "new_cases_smoothed": 101.143, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 277.115, + "new_cases_per_million": 7.406, + "new_cases_smoothed_per_million": 6.041, + "total_deaths_per_million": 3.225, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 1164.0, + "total_tests": 57903.0, + "total_tests_per_thousand": 3.458, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1273.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 12.585999999999999, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-12", + "total_cases": 4759.0, + "new_cases": 119.0, + "new_cases_smoothed": 105.429, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 284.222, + "new_cases_per_million": 7.107, + "new_cases_smoothed_per_million": 6.297, + "total_deaths_per_million": 3.344, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 1005.0, + "total_tests": 58908.0, + "total_tests_per_thousand": 3.518, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1174.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 11.136, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-13", + "total_cases": 4851.0, + "new_cases": 92.0, + "new_cases_smoothed": 99.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 289.717, + "new_cases_per_million": 5.495, + "new_cases_smoothed_per_million": 5.938, + "total_deaths_per_million": 3.344, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 1378.0, + "total_tests": 60286.0, + "total_tests_per_thousand": 3.6, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1204.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 12.109000000000002, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-14", + "total_cases": 4996.0, + "new_cases": 145.0, + "new_cases_smoothed": 106.714, + "total_deaths": 60.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 298.377, + "new_cases_per_million": 8.66, + "new_cases_smoothed_per_million": 6.373, + "total_deaths_per_million": 3.583, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 1223.0, + "total_tests": 61509.0, + "total_tests_per_thousand": 3.674, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 1198.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 11.225999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-15", + "total_cases": 5090.0, + "new_cases": 94.0, + "new_cases_smoothed": 108.857, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 303.991, + "new_cases_per_million": 5.614, + "new_cases_smoothed_per_million": 6.501, + "total_deaths_per_million": 3.583, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.094, + "new_tests": 1254.0, + "total_tests": 62763.0, + "total_tests_per_thousand": 3.748, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1233.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 11.327, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-16", + "total_cases": 5173.0, + "new_cases": 83.0, + "new_cases_smoothed": 106.571, + "total_deaths": 64.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 308.948, + "new_cases_per_million": 4.957, + "new_cases_smoothed_per_million": 6.365, + "total_deaths_per_million": 3.822, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 999.0, + "total_tests": 63762.0, + "total_tests_per_thousand": 3.808, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1175.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 11.025, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-17", + "total_cases": 5247.0, + "new_cases": 74.0, + "new_cases_smoothed": 104.429, + "total_deaths": 70.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 313.367, + "new_cases_per_million": 4.42, + "new_cases_smoothed_per_million": 6.237, + "total_deaths_per_million": 4.181, + "new_deaths_per_million": 0.358, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 970.0, + "total_tests": 64732.0, + "total_tests_per_thousand": 3.866, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1142.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 10.936, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-18", + "total_cases": 5369.0, + "new_cases": 122.0, + "new_cases_smoothed": 104.143, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 320.654, + "new_cases_per_million": 7.286, + "new_cases_smoothed_per_million": 6.22, + "total_deaths_per_million": 4.36, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 1406.0, + "total_tests": 66138.0, + "total_tests_per_thousand": 3.95, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1176.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 11.292, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-19", + "total_cases": 5475.0, + "new_cases": 106.0, + "new_cases_smoothed": 102.286, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 326.984, + "new_cases_per_million": 6.331, + "new_cases_smoothed_per_million": 6.109, + "total_deaths_per_million": 4.539, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 1617.0, + "total_tests": 67755.0, + "total_tests_per_thousand": 4.047, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 1264.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 12.357999999999999, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-20", + "total_cases": 5639.0, + "new_cases": 164.0, + "new_cases_smoothed": 112.571, + "total_deaths": 79.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 336.779, + "new_cases_per_million": 9.795, + "new_cases_smoothed_per_million": 6.723, + "total_deaths_per_million": 4.718, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1247.0, + "total_tests": 69002.0, + "total_tests_per_thousand": 4.121, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1245.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 11.06, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-21", + "total_cases": 5738.0, + "new_cases": 99.0, + "new_cases_smoothed": 106.0, + "total_deaths": 82.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 342.691, + "new_cases_per_million": 5.913, + "new_cases_smoothed_per_million": 6.331, + "total_deaths_per_million": 4.897, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 978.0, + "total_tests": 69980.0, + "total_tests_per_thousand": 4.179, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1210.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 11.415, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-22", + "total_cases": 5888.0, + "new_cases": 150.0, + "new_cases_smoothed": 114.0, + "total_deaths": 84.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 351.65, + "new_cases_per_million": 8.958, + "new_cases_smoothed_per_million": 6.808, + "total_deaths_per_million": 5.017, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1040.0, + "total_tests": 71020.0, + "total_tests_per_thousand": 4.242, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1180.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 10.350999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-23", + "total_cases": 5970.0, + "new_cases": 82.0, + "new_cases_smoothed": 113.857, + "total_deaths": 86.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 356.547, + "new_cases_per_million": 4.897, + "new_cases_smoothed_per_million": 6.8, + "total_deaths_per_million": 5.136, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 1045.0, + "total_tests": 72065.0, + "total_tests_per_thousand": 4.304, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1186.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 10.417, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-24", + "total_cases": 6034.0, + "new_cases": 64.0, + "new_cases_smoothed": 112.429, + "total_deaths": 89.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 360.369, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 6.715, + "total_deaths_per_million": 5.315, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 987.0, + "total_tests": 73052.0, + "total_tests_per_thousand": 4.363, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1189.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 10.575999999999999, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-25", + "total_cases": 6129.0, + "new_cases": 95.0, + "new_cases_smoothed": 108.571, + "total_deaths": 93.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 366.043, + "new_cases_per_million": 5.674, + "new_cases_smoothed_per_million": 6.484, + "total_deaths_per_million": 5.554, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 985.0, + "total_tests": 74037.0, + "total_tests_per_thousand": 4.422, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1128.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 10.389000000000001, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 6233.0, + "new_cases": 104.0, + "new_cases_smoothed": 108.286, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 372.254, + "new_cases_per_million": 6.211, + "new_cases_smoothed_per_million": 6.467, + "total_deaths_per_million": 5.614, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 1057.0, + "total_tests": 75094.0, + "total_tests_per_thousand": 4.485, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 9.677999999999999, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-27", + "total_cases": 6354.0, + "new_cases": 121.0, + "new_cases_smoothed": 102.143, + "total_deaths": 98.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 379.481, + "new_cases_per_million": 7.226, + "new_cases_smoothed_per_million": 6.1, + "total_deaths_per_million": 5.853, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 1009.0, + "total_tests": 76103.0, + "total_tests_per_thousand": 4.545, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1014.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 9.927, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-28", + "total_cases": 6459.0, + "new_cases": 105.0, + "new_cases_smoothed": 103.0, + "total_deaths": 102.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 385.752, + "new_cases_per_million": 6.271, + "new_cases_smoothed_per_million": 6.151, + "total_deaths_per_million": 6.092, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 1179.0, + "total_tests": 77282.0, + "total_tests_per_thousand": 4.616, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 1043.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 10.126, + "positive_rate": 0.099, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-29", + "total_cases": 6586.0, + "new_cases": 127.0, + "new_cases_smoothed": 99.714, + "total_deaths": 105.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 393.337, + "new_cases_per_million": 7.585, + "new_cases_smoothed_per_million": 5.955, + "total_deaths_per_million": 6.271, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.179, + "new_tests": 956.0, + "total_tests": 78238.0, + "total_tests_per_thousand": 4.673, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 1031.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 10.34, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-30", + "total_cases": 6698.0, + "new_cases": 112.0, + "new_cases_smoothed": 104.0, + "total_deaths": 108.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 400.026, + "new_cases_per_million": 6.689, + "new_cases_smoothed_per_million": 6.211, + "total_deaths_per_million": 6.45, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 1274.0, + "total_tests": 79512.0, + "total_tests_per_thousand": 4.749, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1064.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 10.231, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-01", + "total_cases": 6793.0, + "new_cases": 95.0, + "new_cases_smoothed": 108.429, + "total_deaths": 112.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 405.699, + "new_cases_per_million": 5.674, + "new_cases_smoothed_per_million": 6.476, + "total_deaths_per_million": 6.689, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 907.0, + "total_tests": 80419.0, + "total_tests_per_thousand": 4.803, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1052.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 9.702, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-02", + "total_cases": 6925.0, + "new_cases": 132.0, + "new_cases_smoothed": 113.714, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 413.583, + "new_cases_per_million": 7.883, + "new_cases_smoothed_per_million": 6.791, + "total_deaths_per_million": 6.928, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1160.0, + "total_tests": 81579.0, + "total_tests_per_thousand": 4.872, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 1077.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 9.471, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-03", + "total_cases": 7054.0, + "new_cases": 129.0, + "new_cases_smoothed": 117.286, + "total_deaths": 121.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 421.287, + "new_cases_per_million": 7.704, + "new_cases_smoothed_per_million": 7.005, + "total_deaths_per_million": 7.226, + "new_deaths_per_million": 0.299, + "new_deaths_smoothed_per_million": 0.23, + "new_tests": 1078.0, + "total_tests": 82657.0, + "total_tests_per_thousand": 4.937, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 9.208, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-04", + "total_cases": 7164.0, + "new_cases": 110.0, + "new_cases_smoothed": 115.714, + "total_deaths": 125.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 427.857, + "new_cases_per_million": 6.57, + "new_cases_smoothed_per_million": 6.911, + "total_deaths_per_million": 7.465, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.23, + "new_tests": 959.0, + "total_tests": 83616.0, + "total_tests_per_thousand": 4.994, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 1073.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 9.273, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-05", + "total_cases": 7272.0, + "new_cases": 108.0, + "new_cases_smoothed": 116.143, + "total_deaths": 129.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 434.307, + "new_cases_per_million": 6.45, + "new_cases_smoothed_per_million": 6.936, + "total_deaths_per_million": 7.704, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.23, + "new_tests": 756.0, + "total_tests": 84372.0, + "total_tests_per_thousand": 5.039, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 1013.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 8.722000000000001, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-06", + "total_cases": 7400.0, + "new_cases": 128.0, + "new_cases_smoothed": 116.286, + "total_deaths": 133.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 441.951, + "new_cases_per_million": 7.645, + "new_cases_smoothed_per_million": 6.945, + "total_deaths_per_million": 7.943, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 838.0, + "total_tests": 85210.0, + "total_tests_per_thousand": 5.089, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 996.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 8.565, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-07", + "total_cases": 7478.0, + "new_cases": 78.0, + "new_cases_smoothed": 111.429, + "total_deaths": 136.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 446.61, + "new_cases_per_million": 4.658, + "new_cases_smoothed_per_million": 6.655, + "total_deaths_per_million": 8.122, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 693.0, + "total_tests": 85903.0, + "total_tests_per_thousand": 5.13, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 8.193999999999999, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-08", + "total_cases": 7547.0, + "new_cases": 69.0, + "new_cases_smoothed": 107.714, + "total_deaths": 137.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 450.731, + "new_cases_per_million": 4.121, + "new_cases_smoothed_per_million": 6.433, + "total_deaths_per_million": 8.182, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 788.0, + "total_tests": 86691.0, + "total_tests_per_thousand": 5.177, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 896.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 8.318, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-09", + "total_cases": 7657.0, + "new_cases": 110.0, + "new_cases_smoothed": 104.571, + "total_deaths": 141.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 457.3, + "new_cases_per_million": 6.57, + "new_cases_smoothed_per_million": 6.245, + "total_deaths_per_million": 8.421, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 970.0, + "total_tests": 87661.0, + "total_tests_per_thousand": 5.235, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 869.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 8.31, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-10", + "total_cases": 7784.0, + "new_cases": 127.0, + "new_cases_smoothed": 104.286, + "total_deaths": 143.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 464.885, + "new_cases_per_million": 7.585, + "new_cases_smoothed_per_million": 6.228, + "total_deaths_per_million": 8.54, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 868.0, + "total_tests": 88529.0, + "total_tests_per_thousand": 5.287, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 839.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 8.045, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-11", + "total_cases": 7882.0, + "new_cases": 98.0, + "new_cases_smoothed": 102.571, + "total_deaths": 145.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 470.738, + "new_cases_per_million": 5.853, + "new_cases_smoothed_per_million": 6.126, + "total_deaths_per_million": 8.66, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 700.0, + "total_tests": 89229.0, + "total_tests_per_thousand": 5.329, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 802.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 7.819, + "positive_rate": 0.128, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-12", + "total_cases": 8014.0, + "new_cases": 132.0, + "new_cases_smoothed": 106.0, + "total_deaths": 145.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 478.621, + "new_cases_per_million": 7.883, + "new_cases_smoothed_per_million": 6.331, + "total_deaths_per_million": 8.66, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1108.0, + "total_tests": 90337.0, + "total_tests_per_thousand": 5.395, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 852.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 8.038, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-13", + "total_cases": 8135.0, + "new_cases": 121.0, + "new_cases_smoothed": 105.0, + "total_deaths": 148.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 485.848, + "new_cases_per_million": 7.226, + "new_cases_smoothed_per_million": 6.271, + "total_deaths_per_million": 8.839, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 710.0, + "total_tests": 91047.0, + "total_tests_per_thousand": 5.438, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 834.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 7.943, + "positive_rate": 0.126, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-14", + "total_cases": 8198.0, + "new_cases": 63.0, + "new_cases_smoothed": 102.857, + "total_deaths": 150.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 489.61, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 6.143, + "total_deaths_per_million": 8.958, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 764.0, + "total_tests": 91811.0, + "total_tests_per_thousand": 5.483, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 844.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 8.206, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-15", + "total_cases": 8243.0, + "new_cases": 45.0, + "new_cases_smoothed": 99.429, + "total_deaths": 150.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 492.298, + "new_cases_per_million": 2.688, + "new_cases_smoothed_per_million": 5.938, + "total_deaths_per_million": 8.958, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 804.0, + "total_tests": 92615.0, + "total_tests_per_thousand": 5.531, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 846.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 8.509, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-16", + "total_cases": 8369.0, + "new_cases": 126.0, + "new_cases_smoothed": 101.714, + "total_deaths": 153.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 499.823, + "new_cases_per_million": 7.525, + "new_cases_smoothed_per_million": 6.075, + "total_deaths_per_million": 9.138, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 1173.0, + "total_tests": 93788.0, + "total_tests_per_thousand": 5.601, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 875.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 8.603, + "positive_rate": 0.11599999999999999, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-17", + "total_cases": 8481.0, + "new_cases": 112.0, + "new_cases_smoothed": 99.571, + "total_deaths": 156.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 506.512, + "new_cases_per_million": 6.689, + "new_cases_smoothed_per_million": 5.947, + "total_deaths_per_million": 9.317, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 1074.0, + "total_tests": 94862.0, + "total_tests_per_thousand": 5.665, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 905.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 9.089, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-18", + "total_cases": 8544.0, + "new_cases": 63.0, + "new_cases_smoothed": 94.571, + "total_deaths": 160.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 510.274, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 5.648, + "total_deaths_per_million": 9.556, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 790.0, + "total_tests": 95652.0, + "total_tests_per_thousand": 5.713, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 918.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 9.707, + "positive_rate": 0.10300000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-19", + "total_cases": 8669.0, + "new_cases": 125.0, + "new_cases_smoothed": 93.571, + "total_deaths": 163.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 517.74, + "new_cases_per_million": 7.465, + "new_cases_smoothed_per_million": 5.588, + "total_deaths_per_million": 9.735, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 712.0, + "total_tests": 96364.0, + "total_tests_per_thousand": 5.755, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 861.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 9.202, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-20", + "total_cases": 8810.0, + "new_cases": 141.0, + "new_cases_smoothed": 96.429, + "total_deaths": 167.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 526.161, + "new_cases_per_million": 8.421, + "new_cases_smoothed_per_million": 5.759, + "total_deaths_per_million": 9.974, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 639.0, + "total_tests": 97003.0, + "total_tests_per_thousand": 5.793, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 851.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 8.825, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-21", + "total_cases": 8948.0, + "new_cases": 138.0, + "new_cases_smoothed": 107.143, + "total_deaths": 170.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 534.403, + "new_cases_per_million": 8.242, + "new_cases_smoothed_per_million": 6.399, + "total_deaths_per_million": 10.153, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 369.0, + "total_tests": 97372.0, + "total_tests_per_thousand": 5.815, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 794.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 7.4110000000000005, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-22", + "total_cases": 8985.0, + "new_cases": 37.0, + "new_cases_smoothed": 106.0, + "total_deaths": 174.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 536.612, + "new_cases_per_million": 2.21, + "new_cases_smoothed_per_million": 6.331, + "total_deaths_per_million": 10.392, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1244.0, + "total_tests": 98616.0, + "total_tests_per_thousand": 5.89, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 857.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 8.085, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-23", + "total_cases": 9121.0, + "new_cases": 136.0, + "new_cases_smoothed": 107.429, + "total_deaths": 177.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 544.735, + "new_cases_per_million": 8.122, + "new_cases_smoothed_per_million": 6.416, + "total_deaths_per_million": 10.571, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1170.0, + "total_tests": 99786.0, + "total_tests_per_thousand": 5.96, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 857.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 7.977, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-24", + "total_cases": 9266.0, + "new_cases": 145.0, + "new_cases_smoothed": 112.143, + "total_deaths": 178.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 553.395, + "new_cases_per_million": 8.66, + "new_cases_smoothed_per_million": 6.698, + "total_deaths_per_million": 10.631, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 1602.0, + "total_tests": 101388.0, + "total_tests_per_thousand": 6.055, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 932.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 8.311, + "positive_rate": 0.12, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-25", + "total_cases": 9422.0, + "new_cases": 156.0, + "new_cases_smoothed": 125.429, + "total_deaths": 182.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 562.711, + "new_cases_per_million": 9.317, + "new_cases_smoothed_per_million": 7.491, + "total_deaths_per_million": 10.87, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 1315.0, + "total_tests": 102703.0, + "total_tests_per_thousand": 6.134, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1007.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 8.027999999999999, + "positive_rate": 0.125, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-26", + "total_cases": 9552.0, + "new_cases": 130.0, + "new_cases_smoothed": 126.143, + "total_deaths": 187.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 570.475, + "new_cases_per_million": 7.764, + "new_cases_smoothed_per_million": 7.534, + "total_deaths_per_million": 11.168, + "new_deaths_per_million": 0.299, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1367.0, + "total_tests": 104070.0, + "total_tests_per_thousand": 6.215, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 8.728, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-27", + "total_cases": 9681.0, + "new_cases": 129.0, + "new_cases_smoothed": 124.429, + "total_deaths": 191.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 578.18, + "new_cases_per_million": 7.704, + "new_cases_smoothed_per_million": 7.431, + "total_deaths_per_million": 11.407, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1083.0, + "total_tests": 105153.0, + "total_tests_per_thousand": 6.28, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1164.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 9.355, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-28", + "total_cases": 9764.0, + "new_cases": 83.0, + "new_cases_smoothed": 116.571, + "total_deaths": 194.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 583.137, + "new_cases_per_million": 4.957, + "new_cases_smoothed_per_million": 6.962, + "total_deaths_per_million": 11.586, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 824.0, + "total_tests": 105977.0, + "total_tests_per_thousand": 6.329, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 10.543, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-29", + "total_cases": 9805.0, + "new_cases": 41.0, + "new_cases_smoothed": 117.143, + "total_deaths": 198.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 585.585, + "new_cases_per_million": 2.449, + "new_cases_smoothed_per_million": 6.996, + "total_deaths_per_million": 11.825, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1963.0, + "total_tests": 107940.0, + "total_tests_per_thousand": 6.447, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1332.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 11.370999999999999, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-30", + "total_cases": 9961.0, + "new_cases": 156.0, + "new_cases_smoothed": 120.0, + "total_deaths": 200.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 594.902, + "new_cases_per_million": 9.317, + "new_cases_smoothed_per_million": 7.167, + "total_deaths_per_million": 11.945, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1547.0, + "total_tests": 109487.0, + "total_tests_per_thousand": 6.539, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 1386.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 11.55, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-31", + "total_cases": 10106.0, + "new_cases": 145.0, + "new_cases_smoothed": 120.0, + "total_deaths": 204.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 603.562, + "new_cases_per_million": 8.66, + "new_cases_smoothed_per_million": 7.167, + "total_deaths_per_million": 12.184, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 1374.0, + "total_tests": 110861.0, + "total_tests_per_thousand": 6.621, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1353.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 11.275, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-01", + "total_cases": 10232.0, + "new_cases": 126.0, + "new_cases_smoothed": 115.714, + "total_deaths": 205.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 611.087, + "new_cases_per_million": 7.525, + "new_cases_smoothed_per_million": 6.911, + "total_deaths_per_million": 12.243, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 850.0, + "total_tests": 111711.0, + "total_tests_per_thousand": 6.672, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1287.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 11.122, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-02", + "total_cases": 10284.0, + "new_cases": 52.0, + "new_cases_smoothed": 104.571, + "total_deaths": 209.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 614.193, + "new_cases_per_million": 3.106, + "new_cases_smoothed_per_million": 6.245, + "total_deaths_per_million": 12.482, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 915.0, + "total_tests": 112626.0, + "total_tests_per_thousand": 6.726, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1222.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 11.686, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-03", + "total_cases": 10344.0, + "new_cases": 60.0, + "new_cases_smoothed": 94.714, + "total_deaths": 209.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 617.776, + "new_cases_per_million": 3.583, + "new_cases_smoothed_per_million": 5.657, + "total_deaths_per_million": 12.482, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 946.0, + "total_tests": 113572.0, + "total_tests_per_thousand": 6.783, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1203.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 12.700999999999999, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-04", + "total_cases": 10386.0, + "new_cases": 42.0, + "new_cases_smoothed": 88.857, + "total_deaths": 211.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 620.284, + "new_cases_per_million": 2.508, + "new_cases_smoothed_per_million": 5.307, + "total_deaths_per_million": 12.602, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1078.0, + "total_tests": 114650.0, + "total_tests_per_thousand": 6.847, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 13.944, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-05", + "total_cases": 10432.0, + "new_cases": 46.0, + "new_cases_smoothed": 89.571, + "total_deaths": 214.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 623.032, + "new_cases_per_million": 2.747, + "new_cases_smoothed_per_million": 5.349, + "total_deaths_per_million": 12.781, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1241.0, + "total_tests": 115891.0, + "total_tests_per_thousand": 6.921, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1136.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 12.683, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-06", + "total_cases": 10538.0, + "new_cases": 106.0, + "new_cases_smoothed": 82.429, + "total_deaths": 214.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 629.362, + "new_cases_per_million": 6.331, + "new_cases_smoothed_per_million": 4.923, + "total_deaths_per_million": 12.781, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.119, + "new_tests": 1917.0, + "total_tests": 117808.0, + "total_tests_per_thousand": 7.036, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 1189.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 14.425, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-07", + "total_cases": 10715.0, + "new_cases": 177.0, + "new_cases_smoothed": 87.0, + "total_deaths": 223.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 639.933, + "new_cases_per_million": 10.571, + "new_cases_smoothed_per_million": 5.196, + "total_deaths_per_million": 13.318, + "new_deaths_per_million": 0.538, + "new_deaths_smoothed_per_million": 0.162, + "new_tests": 1711.0, + "total_tests": 119519.0, + "total_tests_per_thousand": 7.138, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 14.218, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-08", + "total_cases": 10887.0, + "new_cases": 172.0, + "new_cases_smoothed": 93.571, + "total_deaths": 225.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 650.206, + "new_cases_per_million": 10.272, + "new_cases_smoothed_per_million": 5.588, + "total_deaths_per_million": 13.438, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 1576.0, + "total_tests": 121095.0, + "total_tests_per_thousand": 7.232, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 1341.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 14.331, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-09", + "total_cases": 11033.0, + "new_cases": 146.0, + "new_cases_smoothed": 107.0, + "total_deaths": 229.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 658.925, + "new_cases_per_million": 8.72, + "new_cases_smoothed_per_million": 6.39, + "total_deaths_per_million": 13.677, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 1656.0, + "total_tests": 122751.0, + "total_tests_per_thousand": 7.331, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 1446.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 13.514000000000001, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-10", + "total_cases": 11175.0, + "new_cases": 142.0, + "new_cases_smoothed": 118.714, + "total_deaths": 232.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 667.406, + "new_cases_per_million": 8.481, + "new_cases_smoothed_per_million": 7.09, + "total_deaths_per_million": 13.856, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 1402.0, + "total_tests": 124153.0, + "total_tests_per_thousand": 7.415, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 1512.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 12.735999999999999, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-11", + "total_cases": 11312.0, + "new_cases": 137.0, + "new_cases_smoothed": 132.286, + "total_deaths": 236.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 675.588, + "new_cases_per_million": 8.182, + "new_cases_smoothed_per_million": 7.901, + "total_deaths_per_million": 14.095, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 876.0, + "total_tests": 125029.0, + "total_tests_per_thousand": 7.467, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1483.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 11.210999999999999, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-12", + "total_cases": 11380.0, + "new_cases": 68.0, + "new_cases_smoothed": 135.429, + "total_deaths": 238.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 679.649, + "new_cases_per_million": 4.061, + "new_cases_smoothed_per_million": 8.088, + "total_deaths_per_million": 14.214, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1842.0, + "total_tests": 126871.0, + "total_tests_per_thousand": 7.577, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 1569.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 11.585, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-13", + "total_cases": 11587.0, + "new_cases": 207.0, + "new_cases_smoothed": 149.857, + "total_deaths": 242.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 692.012, + "new_cases_per_million": 12.363, + "new_cases_smoothed_per_million": 8.95, + "total_deaths_per_million": 14.453, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 1730.0, + "total_tests": 128601.0, + "total_tests_per_thousand": 7.68, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 1542.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 10.29, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-14", + "total_cases": 11740.0, + "new_cases": 153.0, + "new_cases_smoothed": 146.429, + "total_deaths": 244.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 701.15, + "new_cases_per_million": 9.138, + "new_cases_smoothed_per_million": 8.745, + "total_deaths_per_million": 14.572, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.179, + "new_tests": 1952.0, + "total_tests": 130553.0, + "total_tests_per_thousand": 7.797, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1576.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 10.763, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-15", + "total_cases": 11872.0, + "new_cases": 132.0, + "new_cases_smoothed": 140.714, + "total_deaths": 249.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 709.033, + "new_cases_per_million": 7.883, + "new_cases_smoothed_per_million": 8.404, + "total_deaths_per_million": 14.871, + "new_deaths_per_million": 0.299, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 1886.0, + "total_tests": 132439.0, + "total_tests_per_thousand": 7.91, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 1621.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 11.52, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-16", + "total_cases": 12032.0, + "new_cases": 160.0, + "new_cases_smoothed": 142.714, + "total_deaths": 251.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 718.589, + "new_cases_per_million": 9.556, + "new_cases_smoothed_per_million": 8.523, + "total_deaths_per_million": 14.991, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 1317.0, + "total_tests": 133756.0, + "total_tests_per_thousand": 7.988, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1572.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 11.015, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-17", + "total_cases": 12162.0, + "new_cases": 130.0, + "new_cases_smoothed": 141.0, + "total_deaths": 253.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 726.353, + "new_cases_per_million": 7.764, + "new_cases_smoothed_per_million": 8.421, + "total_deaths_per_million": 15.11, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.179, + "new_tests": 1049.0, + "total_tests": 134805.0, + "total_tests_per_thousand": 8.051, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 1522.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 10.794, + "positive_rate": 0.09300000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-18", + "total_cases": 12237.0, + "new_cases": 75.0, + "new_cases_smoothed": 132.143, + "total_deaths": 256.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 730.832, + "new_cases_per_million": 4.479, + "new_cases_smoothed_per_million": 7.892, + "total_deaths_per_million": 15.289, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 926.0, + "total_tests": 135731.0, + "total_tests_per_thousand": 8.106, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1529.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 11.571, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-19", + "total_cases": 12305.0, + "new_cases": 68.0, + "new_cases_smoothed": 132.143, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 734.893, + "new_cases_per_million": 4.061, + "new_cases_smoothed_per_million": 7.892, + "total_deaths_per_million": 15.289, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 1463.0, + "total_tests": 137194.0, + "total_tests_per_thousand": 8.194, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 1475.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 11.162, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-20", + "total_cases": 12446.0, + "new_cases": 141.0, + "new_cases_smoothed": 122.714, + "total_deaths": 258.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 743.314, + "new_cases_per_million": 8.421, + "new_cases_smoothed_per_million": 7.329, + "total_deaths_per_million": 15.409, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1519.0, + "total_tests": 138713.0, + "total_tests_per_thousand": 8.284, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 1445.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 11.775, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-21", + "total_cases": 12559.0, + "new_cases": 113.0, + "new_cases_smoothed": 117.0, + "total_deaths": 261.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 750.063, + "new_cases_per_million": 6.749, + "new_cases_smoothed_per_million": 6.988, + "total_deaths_per_million": 15.588, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1421.0, + "total_tests": 140134.0, + "total_tests_per_thousand": 8.369, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 1369.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 11.700999999999999, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-22", + "total_cases": 12689.0, + "new_cases": 130.0, + "new_cases_smoothed": 116.714, + "total_deaths": 262.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 757.827, + "new_cases_per_million": 7.764, + "new_cases_smoothed_per_million": 6.971, + "total_deaths_per_million": 15.647, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 1552.0, + "total_tests": 141686.0, + "total_tests_per_thousand": 8.462, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1321.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 11.318, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-23", + "total_cases": 12850.0, + "new_cases": 161.0, + "new_cases_smoothed": 116.857, + "total_deaths": 266.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 767.442, + "new_cases_per_million": 9.615, + "new_cases_smoothed_per_million": 6.979, + "total_deaths_per_million": 15.886, + "new_deaths_per_million": 0.239, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 1250.0, + "total_tests": 142936.0, + "total_tests_per_thousand": 8.537, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1311.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 11.219000000000001, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-24", + "total_cases": 12949.0, + "new_cases": 99.0, + "new_cases_smoothed": 112.429, + "total_deaths": 269.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 773.355, + "new_cases_per_million": 5.913, + "new_cases_smoothed_per_million": 6.715, + "total_deaths_per_million": 16.066, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 812.0, + "total_tests": 143748.0, + "total_tests_per_thousand": 8.585, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1278.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 11.367, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-25", + "total_cases": 13013.0, + "new_cases": 64.0, + "new_cases_smoothed": 110.857, + "total_deaths": 272.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 777.177, + "new_cases_per_million": 3.822, + "new_cases_smoothed_per_million": 6.621, + "total_deaths_per_million": 16.245, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 816.0, + "total_tests": 144564.0, + "total_tests_per_thousand": 8.634, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 1262.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 11.384, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-26", + "total_cases": 13056.0, + "new_cases": 43.0, + "new_cases_smoothed": 107.286, + "total_deaths": 274.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 779.745, + "new_cases_per_million": 2.568, + "new_cases_smoothed_per_million": 6.407, + "total_deaths_per_million": 16.364, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 1384.0, + "total_tests": 145948.0, + "total_tests_per_thousand": 8.716, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1251.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 11.66, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-27", + "total_cases": 13186.0, + "new_cases": 130.0, + "new_cases_smoothed": 105.714, + "total_deaths": 275.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 787.509, + "new_cases_per_million": 7.764, + "new_cases_smoothed_per_million": 6.314, + "total_deaths_per_million": 16.424, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1242.0, + "total_tests": 147190.0, + "total_tests_per_thousand": 8.791, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1211.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 11.455, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-28", + "total_cases": 13294.0, + "new_cases": 108.0, + "new_cases_smoothed": 105.0, + "total_deaths": 277.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 793.959, + "new_cases_per_million": 6.45, + "new_cases_smoothed_per_million": 6.271, + "total_deaths_per_million": 16.543, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1250.0, + "total_tests": 148440.0, + "total_tests_per_thousand": 8.865, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1187.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 11.305, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-29", + "total_cases": 13384.0, + "new_cases": 90.0, + "new_cases_smoothed": 99.286, + "total_deaths": 279.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 799.334, + "new_cases_per_million": 5.375, + "new_cases_smoothed_per_million": 5.93, + "total_deaths_per_million": 16.663, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 1328.0, + "total_tests": 149768.0, + "total_tests_per_thousand": 8.945, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1155.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 11.633, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-30", + "total_cases": 13456.0, + "new_cases": 72.0, + "new_cases_smoothed": 86.571, + "total_deaths": 282.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 803.635, + "new_cases_per_million": 4.3, + "new_cases_smoothed_per_million": 5.17, + "total_deaths_per_million": 16.842, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1276.0, + "total_tests": 151044.0, + "total_tests_per_thousand": 9.021, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1158.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 13.376, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-31", + "total_cases": 13556.0, + "new_cases": 100.0, + "new_cases_smoothed": 86.714, + "total_deaths": 284.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 809.607, + "new_cases_per_million": 5.972, + "new_cases_smoothed_per_million": 5.179, + "total_deaths_per_million": 16.961, + "new_deaths_per_million": 0.119, + "new_deaths_smoothed_per_million": 0.128, + "new_tests": 1090.0, + "total_tests": 152134.0, + "total_tests_per_thousand": 9.086, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1198.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 13.815, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-09-01", + "total_cases": 13611.0, + "new_cases": 55.0, + "new_cases_smoothed": 85.429, + "total_deaths": 284.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 812.892, + "new_cases_per_million": 3.285, + "new_cases_smoothed_per_million": 5.102, + "total_deaths_per_million": 16.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 944.0, + "total_tests": 153078.0, + "total_tests_per_thousand": 9.142, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1216.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 14.234000000000002, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-09-02", + "total_cases": 13668.0, + "new_cases": 57.0, + "new_cases_smoothed": 87.429, + "total_deaths": 284.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 816.296, + "new_cases_per_million": 3.404, + "new_cases_smoothed_per_million": 5.222, + "total_deaths_per_million": 16.961, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 1187.0, + "total_tests": 154265.0, + "total_tests_per_thousand": 9.213, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 13.588, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-09-03", + "total_cases": 13743.0, + "new_cases": 75.0, + "new_cases_smoothed": 79.571, + "total_deaths": 287.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 820.775, + "new_cases_per_million": 4.479, + "new_cases_smoothed_per_million": 4.752, + "total_deaths_per_million": 17.141, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.102, + "new_tests": 1032.0, + "total_tests": 155297.0, + "total_tests_per_thousand": 9.275, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 1158.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 14.552999999999999, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-09-04", + "total_cases": 13826.0, + "new_cases": 83.0, + "new_cases_smoothed": 76.0, + "total_deaths": 287.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 825.732, + "new_cases_per_million": 4.957, + "new_cases_smoothed_per_million": 4.539, + "total_deaths_per_million": 17.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085 + }, + { + "date": "2020-09-05", + "total_cases": 13881.0, + "new_cases": 55.0, + "new_cases_smoothed": 71.0, + "total_deaths": 287.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 829.017, + "new_cases_per_million": 3.285, + "new_cases_smoothed_per_million": 4.24, + "total_deaths_per_million": 17.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068 + } + ] + }, + "SRB": { + "continent": "Europe", + "location": "Serbia", + "population": 6804596.0, + "population_density": 80.291, + "median_age": 41.2, + "aged_65_older": 17.366, + "gdp_per_capita": 14048.881, + "cardiovasc_death_rate": 439.415, + "diabetes_prevalence": 10.08, + "female_smokers": 37.7, + "male_smokers": 40.2, + "handwashing_facilities": 97.719, + "hospital_beds_per_thousand": 5.609, + "life_expectancy": 76.0, + "data": [ + { + "date": "2020-02-26", + "total_tests": 16.0, + "total_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-27", + "new_tests": 9.0, + "total_tests": 25.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "new_tests": 5.0, + "total_tests": 30.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-29", + "new_tests": 3.0, + "total_tests": 33.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-01", + "new_tests": 3.0, + "total_tests": 36.0, + "total_tests_per_thousand": 0.005, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-02", + "new_tests": 9.0, + "total_tests": 45.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-03", + "new_tests": 1.0, + "total_tests": 46.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-04", + "new_tests": 4.0, + "total_tests": 50.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-05", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "total_tests": 67.0, + "total_tests_per_thousand": 0.01, + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.147, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 91.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "new_tests": 3.0, + "total_tests": 94.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "new_tests": 7.0, + "total_tests": 101.0, + "total_tests_per_thousand": 0.015, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "new_tests": 16.0, + "total_tests": 117.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 10.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-11", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.735, + "new_cases_per_million": 0.588, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 151.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 18.0, + "new_cases": 13.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.645, + "new_cases_per_million": 1.91, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 34.0, + "total_tests": 185.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.527, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 54.0, + "total_tests": 239.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 41.0, + "new_cases": 17.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.025, + "new_cases_per_million": 2.498, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 268.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 4.375, + "positive_rate": 0.22899999999999998, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-15", + "total_cases": 46.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.76, + "new_cases_per_million": 0.735, + "new_cases_smoothed_per_million": 0.945, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 283.0, + "total_tests_per_thousand": 0.042, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 4.2, + "positive_rate": 0.23800000000000002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-03-16", + "total_cases": 55.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.083, + "new_cases_per_million": 1.323, + "new_cases_smoothed_per_million": 1.134, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 316.0, + "total_tests_per_thousand": 0.046, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 4.019, + "positive_rate": 0.249, + "tests_units": "people tested", + "stringency_index": 66.67 + }, + { + "date": "2020-03-17", + "total_cases": 57.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.377, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 1.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 58.0, + "total_tests": 374.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 37.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 4.625, + "positive_rate": 0.21600000000000003, + "tests_units": "people tested", + "stringency_index": 66.67 + }, + { + "date": "2020-03-18", + "total_cases": 72.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.581, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 1.407, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 440.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 41.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 4.284, + "positive_rate": 0.233, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-19", + "total_cases": 94.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.814, + "new_cases_per_million": 3.233, + "new_cases_smoothed_per_million": 1.596, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 66.0, + "total_tests": 506.0, + "total_tests_per_thousand": 0.074, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 46.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 4.237, + "positive_rate": 0.23600000000000002, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-20", + "total_cases": 126.0, + "new_cases": 32.0, + "new_cases_smoothed": 14.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.517, + "new_cases_per_million": 4.703, + "new_cases_smoothed_per_million": 2.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 585.0, + "total_tests_per_thousand": 0.086, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 49.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 3.363, + "positive_rate": 0.297, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-03-21", + "total_cases": 135.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.84, + "new_cases_per_million": 1.323, + "new_cases_smoothed_per_million": 1.973, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 87.0, + "total_tests": 672.0, + "total_tests_per_thousand": 0.099, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 58.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 4.319, + "positive_rate": 0.23199999999999998, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-22", + "total_cases": 149.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 21.897, + "new_cases_per_million": 2.057, + "new_cases_smoothed_per_million": 2.162, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 89.0, + "total_tests": 761.0, + "total_tests_per_thousand": 0.112, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 4.621, + "positive_rate": 0.21600000000000003, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-23", + "total_cases": 188.0, + "new_cases": 39.0, + "new_cases_smoothed": 19.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.628, + "new_cases_per_million": 5.731, + "new_cases_smoothed_per_million": 2.792, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 61.0, + "total_tests": 822.0, + "total_tests_per_thousand": 0.121, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 72.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.7889999999999997, + "positive_rate": 0.264, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-24", + "total_cases": 222.0, + "new_cases": 34.0, + "new_cases_smoothed": 23.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 32.625, + "new_cases_per_million": 4.997, + "new_cases_smoothed_per_million": 3.464, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 94.0, + "total_tests": 916.0, + "total_tests_per_thousand": 0.135, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 77.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 3.267, + "positive_rate": 0.306, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-25", + "total_cases": 249.0, + "new_cases": 27.0, + "new_cases_smoothed": 25.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 36.593, + "new_cases_per_million": 3.968, + "new_cases_smoothed_per_million": 3.716, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 245.0, + "total_tests": 1161.0, + "total_tests_per_thousand": 0.171, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 103.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 4.073, + "positive_rate": 0.245, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-26", + "total_cases": 303.0, + "new_cases": 54.0, + "new_cases_smoothed": 29.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 44.529, + "new_cases_per_million": 7.936, + "new_cases_smoothed_per_million": 4.388, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 295.0, + "total_tests": 1456.0, + "total_tests_per_thousand": 0.214, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 136.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 4.555, + "positive_rate": 0.22, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-27", + "total_cases": 384.0, + "new_cases": 81.0, + "new_cases_smoothed": 36.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 56.432, + "new_cases_per_million": 11.904, + "new_cases_smoothed_per_million": 5.417, + "total_deaths_per_million": 0.441, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 259.0, + "total_tests": 1715.0, + "total_tests_per_thousand": 0.252, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 161.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 4.368, + "positive_rate": 0.22899999999999998, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 457.0, + "new_cases": 73.0, + "new_cases_smoothed": 46.0, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 67.16, + "new_cases_per_million": 10.728, + "new_cases_smoothed_per_million": 6.76, + "total_deaths_per_million": 0.882, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 371.0, + "total_tests": 2086.0, + "total_tests_per_thousand": 0.307, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 4.391, + "positive_rate": 0.228, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 659.0, + "new_cases": 202.0, + "new_cases_smoothed": 72.857, + "total_deaths": 10.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 96.846, + "new_cases_per_million": 29.686, + "new_cases_smoothed_per_million": 10.707, + "total_deaths_per_million": 1.47, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 376.0, + "total_tests": 2462.0, + "total_tests_per_thousand": 0.362, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 243.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 3.335, + "positive_rate": 0.3, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 741.0, + "new_cases": 82.0, + "new_cases_smoothed": 79.0, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 108.897, + "new_cases_per_million": 12.051, + "new_cases_smoothed_per_million": 11.61, + "total_deaths_per_million": 1.91, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 622.0, + "total_tests": 3084.0, + "total_tests_per_thousand": 0.453, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 323.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 4.0889999999999995, + "positive_rate": 0.245, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 785.0, + "new_cases": 44.0, + "new_cases_smoothed": 80.429, + "total_deaths": 16.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 115.363, + "new_cases_per_million": 6.466, + "new_cases_smoothed_per_million": 11.82, + "total_deaths_per_million": 2.351, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 477.0, + "total_tests": 3561.0, + "total_tests_per_thousand": 0.523, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 378.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 4.7, + "positive_rate": 0.213, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 900.0, + "new_cases": 115.0, + "new_cases_smoothed": 93.0, + "total_deaths": 23.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 132.264, + "new_cases_per_million": 16.9, + "new_cases_smoothed_per_million": 13.667, + "total_deaths_per_million": 3.38, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.462, + "new_tests": 810.0, + "total_tests": 4371.0, + "total_tests_per_thousand": 0.642, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 4.935, + "positive_rate": 0.203, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 1060.0, + "new_cases": 160.0, + "new_cases_smoothed": 108.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 155.777, + "new_cases_per_million": 23.514, + "new_cases_smoothed_per_million": 15.893, + "total_deaths_per_million": 3.38, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.441, + "new_tests": 637.0, + "total_tests": 5008.0, + "total_tests_per_thousand": 0.736, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 507.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 4.688, + "positive_rate": 0.213, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 1171.0, + "new_cases": 111.0, + "new_cases_smoothed": 112.429, + "total_deaths": 31.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 172.09, + "new_cases_per_million": 16.313, + "new_cases_smoothed_per_million": 16.522, + "total_deaths_per_million": 4.556, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 748.0, + "total_tests": 5756.0, + "total_tests_per_thousand": 0.846, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 577.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 5.132000000000001, + "positive_rate": 0.195, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 1476.0, + "new_cases": 305.0, + "new_cases_smoothed": 145.571, + "total_deaths": 39.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 216.912, + "new_cases_per_million": 44.823, + "new_cases_smoothed_per_million": 21.393, + "total_deaths_per_million": 5.731, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 645.0, + "total_tests": 6401.0, + "total_tests_per_thousand": 0.941, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 4.232, + "positive_rate": 0.23600000000000002, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 1624.0, + "new_cases": 148.0, + "new_cases_smoothed": 137.857, + "total_deaths": 44.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 238.662, + "new_cases_per_million": 21.75, + "new_cases_smoothed_per_million": 20.259, + "total_deaths_per_million": 6.466, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 959.0, + "total_tests": 7360.0, + "total_tests_per_thousand": 1.082, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 700.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 5.078, + "positive_rate": 0.19699999999999998, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 1908.0, + "new_cases": 284.0, + "new_cases_smoothed": 166.714, + "total_deaths": 51.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 280.399, + "new_cases_per_million": 41.736, + "new_cases_smoothed_per_million": 24.5, + "total_deaths_per_million": 7.495, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.798, + "new_tests": 1192.0, + "total_tests": 8552.0, + "total_tests_per_thousand": 1.257, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 781.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 4.685, + "positive_rate": 0.213, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 2200.0, + "new_cases": 292.0, + "new_cases_smoothed": 202.143, + "total_deaths": 58.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 323.311, + "new_cases_per_million": 42.912, + "new_cases_smoothed_per_million": 29.707, + "total_deaths_per_million": 8.524, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.882, + "new_tests": 1074.0, + "total_tests": 9626.0, + "total_tests_per_thousand": 1.415, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 866.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 4.284, + "positive_rate": 0.233, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 2447.0, + "new_cases": 247.0, + "new_cases_smoothed": 221.0, + "total_deaths": 61.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 359.61, + "new_cases_per_million": 36.299, + "new_cases_smoothed_per_million": 32.478, + "total_deaths_per_million": 8.965, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.798, + "new_tests": 1135.0, + "total_tests": 10761.0, + "total_tests_per_thousand": 1.581, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 4.131, + "positive_rate": 0.242, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 2666.0, + "new_cases": 219.0, + "new_cases_smoothed": 229.429, + "total_deaths": 65.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 391.794, + "new_cases_per_million": 32.184, + "new_cases_smoothed_per_million": 33.717, + "total_deaths_per_million": 9.552, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.882, + "new_tests": 1586.0, + "total_tests": 12347.0, + "total_tests_per_thousand": 1.815, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 4.5680000000000005, + "positive_rate": 0.21899999999999997, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 2867.0, + "new_cases": 201.0, + "new_cases_smoothed": 242.286, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 421.333, + "new_cases_per_million": 29.539, + "new_cases_smoothed_per_million": 35.606, + "total_deaths_per_million": 9.699, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.735, + "new_tests": 1893.0, + "total_tests": 14240.0, + "total_tests_per_thousand": 2.093, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 1212.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 5.002, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 3105.0, + "new_cases": 238.0, + "new_cases_smoothed": 232.714, + "total_deaths": 71.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 456.309, + "new_cases_per_million": 34.976, + "new_cases_smoothed_per_million": 34.2, + "total_deaths_per_million": 10.434, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 2159.0, + "total_tests": 16399.0, + "total_tests_per_thousand": 2.41, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 1428.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 6.136, + "positive_rate": 0.163, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 3380.0, + "new_cases": 275.0, + "new_cases_smoothed": 250.857, + "total_deaths": 74.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 496.723, + "new_cases_per_million": 40.414, + "new_cases_smoothed_per_million": 36.866, + "total_deaths_per_million": 10.875, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.63, + "new_tests": 1913.0, + "total_tests": 18312.0, + "total_tests_per_thousand": 2.691, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 1565.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 6.239, + "positive_rate": 0.16, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 3630.0, + "new_cases": 250.0, + "new_cases_smoothed": 246.0, + "total_deaths": 80.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 533.463, + "new_cases_per_million": 36.74, + "new_cases_smoothed_per_million": 36.152, + "total_deaths_per_million": 11.757, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.609, + "new_tests": 2646.0, + "total_tests": 20958.0, + "total_tests_per_thousand": 3.08, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 1772.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 7.202999999999999, + "positive_rate": 0.139, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 4054.0, + "new_cases": 424.0, + "new_cases_smoothed": 264.857, + "total_deaths": 85.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 595.774, + "new_cases_per_million": 62.311, + "new_cases_smoothed_per_million": 38.923, + "total_deaths_per_million": 12.492, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 2440.0, + "total_tests": 23398.0, + "total_tests_per_thousand": 3.439, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 1967.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 7.4270000000000005, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 4465.0, + "new_cases": 411.0, + "new_cases_smoothed": 288.286, + "total_deaths": 94.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 656.174, + "new_cases_per_million": 60.4, + "new_cases_smoothed_per_million": 42.366, + "total_deaths_per_million": 13.814, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 2880.0, + "total_tests": 26278.0, + "total_tests_per_thousand": 3.862, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 2217.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 7.69, + "positive_rate": 0.13, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 4873.0, + "new_cases": 408.0, + "new_cases_smoothed": 315.286, + "total_deaths": 99.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 716.134, + "new_cases_per_million": 59.959, + "new_cases_smoothed_per_million": 46.334, + "total_deaths_per_million": 14.549, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 3194.0, + "total_tests": 29472.0, + "total_tests_per_thousand": 4.331, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 2446.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 7.757999999999999, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 5318.0, + "new_cases": 445.0, + "new_cases_smoothed": 350.143, + "total_deaths": 103.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 781.531, + "new_cases_per_million": 65.397, + "new_cases_smoothed_per_million": 51.457, + "total_deaths_per_million": 15.137, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.777, + "new_tests": 3094.0, + "total_tests": 32566.0, + "total_tests_per_thousand": 4.786, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 2618.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 7.477, + "positive_rate": 0.134, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 5690.0, + "new_cases": 372.0, + "new_cases_smoothed": 369.286, + "total_deaths": 110.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 836.2, + "new_cases_per_million": 54.669, + "new_cases_smoothed_per_million": 54.27, + "total_deaths_per_million": 16.166, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.819, + "new_tests": 3462.0, + "total_tests": 36028.0, + "total_tests_per_thousand": 5.295, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 2804.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 7.593, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-19", + "total_cases": 5994.0, + "new_cases": 304.0, + "new_cases_smoothed": 373.429, + "total_deaths": 117.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 880.875, + "new_cases_per_million": 44.676, + "new_cases_smoothed_per_million": 54.879, + "total_deaths_per_million": 17.194, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.903, + "new_tests": 2673.0, + "total_tests": 38701.0, + "total_tests_per_thousand": 5.687, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 2913.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 7.801, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-20", + "total_cases": 6318.0, + "new_cases": 324.0, + "new_cases_smoothed": 384.0, + "total_deaths": 122.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 928.49, + "new_cases_per_million": 47.615, + "new_cases_smoothed_per_million": 56.432, + "total_deaths_per_million": 17.929, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.882, + "new_tests": 3111.0, + "total_tests": 41812.0, + "total_tests_per_thousand": 6.145, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 2979.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 7.757999999999999, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 100.0 + }, + { + "date": "2020-04-21", + "total_cases": 6630.0, + "new_cases": 312.0, + "new_cases_smoothed": 368.0, + "total_deaths": 125.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 974.341, + "new_cases_per_million": 45.851, + "new_cases_smoothed_per_million": 54.081, + "total_deaths_per_million": 18.37, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 3543.0, + "total_tests": 45355.0, + "total_tests_per_thousand": 6.665, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 3137.0, + "new_tests_smoothed_per_thousand": 0.461, + "tests_per_case": 8.524, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-22", + "total_cases": 6890.0, + "new_cases": 260.0, + "new_cases_smoothed": 346.429, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 1012.551, + "new_cases_per_million": 38.209, + "new_cases_smoothed_per_million": 50.911, + "total_deaths_per_million": 18.37, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.651, + "new_tests": 3281.0, + "total_tests": 48636.0, + "total_tests_per_thousand": 7.148, + "new_tests_per_thousand": 0.482, + "new_tests_smoothed": 3194.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 9.22, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-23", + "total_cases": 7114.0, + "new_cases": 224.0, + "new_cases_smoothed": 320.143, + "total_deaths": 134.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1045.47, + "new_cases_per_million": 32.919, + "new_cases_smoothed_per_million": 47.048, + "total_deaths_per_million": 19.693, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 0.735, + "new_tests": 2688.0, + "total_tests": 51324.0, + "total_tests_per_thousand": 7.543, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 3122.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 9.752, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-24", + "total_cases": 7276.0, + "new_cases": 162.0, + "new_cases_smoothed": 279.714, + "total_deaths": 139.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1069.277, + "new_cases_per_million": 23.807, + "new_cases_smoothed_per_million": 41.107, + "total_deaths_per_million": 20.427, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 3563.0, + "total_tests": 54887.0, + "total_tests_per_thousand": 8.066, + "new_tests_per_thousand": 0.524, + "new_tests_smoothed": 3189.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 11.401, + "positive_rate": 0.08800000000000001, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-25", + "total_cases": 7483.0, + "new_cases": 207.0, + "new_cases_smoothed": 256.143, + "total_deaths": 144.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1099.698, + "new_cases_per_million": 30.421, + "new_cases_smoothed_per_million": 37.643, + "total_deaths_per_million": 21.162, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 5051.0, + "total_tests": 59938.0, + "total_tests_per_thousand": 8.808, + "new_tests_per_thousand": 0.742, + "new_tests_smoothed": 3416.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 13.335999999999999, + "positive_rate": 0.075, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-26", + "total_cases": 7779.0, + "new_cases": 296.0, + "new_cases_smoothed": 255.0, + "total_deaths": 151.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1143.198, + "new_cases_per_million": 43.5, + "new_cases_smoothed_per_million": 37.475, + "total_deaths_per_million": 22.191, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 4365.0, + "total_tests": 64303.0, + "total_tests_per_thousand": 9.45, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 3657.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 14.341, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-27", + "total_cases": 8042.0, + "new_cases": 263.0, + "new_cases_smoothed": 246.286, + "total_deaths": 156.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1181.848, + "new_cases_per_million": 38.65, + "new_cases_smoothed_per_million": 36.194, + "total_deaths_per_million": 22.926, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.714, + "new_tests": 3614.0, + "total_tests": 67917.0, + "total_tests_per_thousand": 9.981, + "new_tests_per_thousand": 0.531, + "new_tests_smoothed": 3729.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 15.140999999999998, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 8275.0, + "new_cases": 233.0, + "new_cases_smoothed": 235.0, + "total_deaths": 162.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1216.09, + "new_cases_per_million": 34.242, + "new_cases_smoothed_per_million": 34.535, + "total_deaths_per_million": 23.807, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.777, + "new_tests": 5446.0, + "total_tests": 73363.0, + "total_tests_per_thousand": 10.781, + "new_tests_per_thousand": 0.8, + "new_tests_smoothed": 4001.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 17.026, + "positive_rate": 0.059000000000000004, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 8497.0, + "new_cases": 222.0, + "new_cases_smoothed": 229.571, + "total_deaths": 168.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1248.715, + "new_cases_per_million": 32.625, + "new_cases_smoothed_per_million": 33.738, + "total_deaths_per_million": 24.689, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.903, + "new_tests": 5579.0, + "total_tests": 78942.0, + "total_tests_per_thousand": 11.601, + "new_tests_per_thousand": 0.82, + "new_tests_smoothed": 4329.0, + "new_tests_smoothed_per_thousand": 0.636, + "tests_per_case": 18.857, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 8724.0, + "new_cases": 227.0, + "new_cases_smoothed": 230.0, + "total_deaths": 173.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1282.075, + "new_cases_per_million": 33.36, + "new_cases_smoothed_per_million": 33.801, + "total_deaths_per_million": 25.424, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.819, + "new_tests": 6703.0, + "total_tests": 85645.0, + "total_tests_per_thousand": 12.586, + "new_tests_per_thousand": 0.985, + "new_tests_smoothed": 4903.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 21.316999999999997, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 9009.0, + "new_cases": 285.0, + "new_cases_smoothed": 247.571, + "total_deaths": 179.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1323.958, + "new_cases_per_million": 41.883, + "new_cases_smoothed_per_million": 36.383, + "total_deaths_per_million": 26.306, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 5906.0, + "total_tests": 91551.0, + "total_tests_per_thousand": 13.454, + "new_tests_per_thousand": 0.868, + "new_tests_smoothed": 5238.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 21.158, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 9205.0, + "new_cases": 196.0, + "new_cases_smoothed": 246.0, + "total_deaths": 185.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1352.762, + "new_cases_per_million": 28.804, + "new_cases_smoothed_per_million": 36.152, + "total_deaths_per_million": 27.188, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.861, + "new_tests": 5086.0, + "total_tests": 96637.0, + "total_tests_per_thousand": 14.202, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 5243.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 21.313000000000002, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 9362.0, + "new_cases": 157.0, + "new_cases_smoothed": 226.143, + "total_deaths": 189.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1375.835, + "new_cases_per_million": 23.073, + "new_cases_smoothed_per_million": 33.234, + "total_deaths_per_million": 27.775, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.798, + "new_tests": 5274.0, + "total_tests": 101911.0, + "total_tests_per_thousand": 14.977, + "new_tests_per_thousand": 0.775, + "new_tests_smoothed": 5373.0, + "new_tests_smoothed_per_thousand": 0.79, + "tests_per_case": 23.759, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 9464.0, + "new_cases": 102.0, + "new_cases_smoothed": 203.143, + "total_deaths": 193.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1390.825, + "new_cases_per_million": 14.99, + "new_cases_smoothed_per_million": 29.854, + "total_deaths_per_million": 28.363, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.777, + "new_tests": 4550.0, + "total_tests": 106461.0, + "total_tests_per_thousand": 15.645, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 5506.0, + "new_tests_smoothed_per_thousand": 0.809, + "tests_per_case": 27.104, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 9557.0, + "new_cases": 93.0, + "new_cases_smoothed": 183.143, + "total_deaths": 197.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1404.492, + "new_cases_per_million": 13.667, + "new_cases_smoothed_per_million": 26.915, + "total_deaths_per_million": 28.951, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.735, + "new_tests": 4817.0, + "total_tests": 111278.0, + "total_tests_per_thousand": 16.353, + "new_tests_per_thousand": 0.708, + "new_tests_smoothed": 5416.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 29.573, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-06", + "total_cases": 9677.0, + "new_cases": 120.0, + "new_cases_smoothed": 168.571, + "total_deaths": 200.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1422.127, + "new_cases_per_million": 17.635, + "new_cases_smoothed_per_million": 24.773, + "total_deaths_per_million": 29.392, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.672, + "new_tests": 6196.0, + "total_tests": 117474.0, + "total_tests_per_thousand": 17.264, + "new_tests_per_thousand": 0.911, + "new_tests_smoothed": 5505.0, + "new_tests_smoothed_per_thousand": 0.809, + "tests_per_case": 32.657, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-07", + "total_cases": 9791.0, + "new_cases": 114.0, + "new_cases_smoothed": 152.429, + "total_deaths": 203.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 1438.88, + "new_cases_per_million": 16.753, + "new_cases_smoothed_per_million": 22.401, + "total_deaths_per_million": 29.833, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.63, + "new_tests": 5521.0, + "total_tests": 122995.0, + "total_tests_per_thousand": 18.075, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 5336.0, + "new_tests_smoothed_per_thousand": 0.784, + "tests_per_case": 35.007, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-08", + "total_cases": 9848.0, + "new_cases": 57.0, + "new_cases_smoothed": 119.857, + "total_deaths": 206.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 1447.257, + "new_cases_per_million": 8.377, + "new_cases_smoothed_per_million": 17.614, + "total_deaths_per_million": 30.274, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 5810.0, + "total_tests": 128805.0, + "total_tests_per_thousand": 18.929, + "new_tests_per_thousand": 0.854, + "new_tests_smoothed": 5322.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 44.403, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-09", + "total_cases": 9943.0, + "new_cases": 95.0, + "new_cases_smoothed": 105.429, + "total_deaths": 209.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1461.218, + "new_cases_per_million": 13.961, + "new_cases_smoothed_per_million": 15.494, + "total_deaths_per_million": 30.715, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 5728.0, + "total_tests": 134533.0, + "total_tests_per_thousand": 19.771, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 5414.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 51.352, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-10", + "total_cases": 10032.0, + "new_cases": 89.0, + "new_cases_smoothed": 95.714, + "total_deaths": 213.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 1474.298, + "new_cases_per_million": 13.079, + "new_cases_smoothed_per_million": 14.066, + "total_deaths_per_million": 31.302, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 6059.0, + "total_tests": 140592.0, + "total_tests_per_thousand": 20.661, + "new_tests_per_thousand": 0.89, + "new_tests_smoothed": 5526.0, + "new_tests_smoothed_per_thousand": 0.812, + "tests_per_case": 57.733999999999995, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-11", + "total_cases": 10114.0, + "new_cases": 82.0, + "new_cases_smoothed": 92.857, + "total_deaths": 215.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 1486.348, + "new_cases_per_million": 12.051, + "new_cases_smoothed_per_million": 13.646, + "total_deaths_per_million": 31.596, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.462, + "new_tests": 5012.0, + "total_tests": 145604.0, + "total_tests_per_thousand": 21.398, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 5592.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 60.222, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-12", + "total_cases": 10176.0, + "new_cases": 62.0, + "new_cases_smoothed": 88.429, + "total_deaths": 218.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 1495.46, + "new_cases_per_million": 9.111, + "new_cases_smoothed_per_million": 12.995, + "total_deaths_per_million": 32.037, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.441, + "new_tests": 5700.0, + "total_tests": 151304.0, + "total_tests_per_thousand": 22.236, + "new_tests_per_thousand": 0.838, + "new_tests_smoothed": 5718.0, + "new_tests_smoothed_per_thousand": 0.84, + "tests_per_case": 64.66199999999999, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-13", + "total_cases": 10243.0, + "new_cases": 67.0, + "new_cases_smoothed": 80.857, + "total_deaths": 220.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 1505.306, + "new_cases_per_million": 9.846, + "new_cases_smoothed_per_million": 11.883, + "total_deaths_per_million": 32.331, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.42, + "new_tests": 5299.0, + "total_tests": 156603.0, + "total_tests_per_thousand": 23.014, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 5590.0, + "new_tests_smoothed_per_thousand": 0.822, + "tests_per_case": 69.134, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-14", + "total_cases": 10295.0, + "new_cases": 52.0, + "new_cases_smoothed": 72.0, + "total_deaths": 222.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1512.948, + "new_cases_per_million": 7.642, + "new_cases_smoothed_per_million": 10.581, + "total_deaths_per_million": 32.625, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 6194.0, + "total_tests": 162797.0, + "total_tests_per_thousand": 23.925, + "new_tests_per_thousand": 0.91, + "new_tests_smoothed": 5686.0, + "new_tests_smoothed_per_thousand": 0.836, + "tests_per_case": 78.972, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-15", + "total_cases": 10374.0, + "new_cases": 79.0, + "new_cases_smoothed": 75.143, + "total_deaths": 224.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 1524.558, + "new_cases_per_million": 11.61, + "new_cases_smoothed_per_million": 11.043, + "total_deaths_per_million": 32.919, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 5873.0, + "total_tests": 168670.0, + "total_tests_per_thousand": 24.788, + "new_tests_per_thousand": 0.863, + "new_tests_smoothed": 5695.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 75.789, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-16", + "total_cases": 10438.0, + "new_cases": 64.0, + "new_cases_smoothed": 70.714, + "total_deaths": 225.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1533.963, + "new_cases_per_million": 9.405, + "new_cases_smoothed_per_million": 10.392, + "total_deaths_per_million": 33.066, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 6076.0, + "total_tests": 174746.0, + "total_tests_per_thousand": 25.681, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 5745.0, + "new_tests_smoothed_per_thousand": 0.844, + "tests_per_case": 81.242, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 93.52 + }, + { + "date": "2020-05-17", + "total_cases": 10496.0, + "new_cases": 58.0, + "new_cases_smoothed": 66.286, + "total_deaths": 228.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1542.487, + "new_cases_per_million": 8.524, + "new_cases_smoothed_per_million": 9.741, + "total_deaths_per_million": 33.507, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 6526.0, + "total_tests": 181272.0, + "total_tests_per_thousand": 26.64, + "new_tests_per_thousand": 0.959, + "new_tests_smoothed": 5811.0, + "new_tests_smoothed_per_thousand": 0.854, + "tests_per_case": 87.666, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-05-18", + "total_cases": 10610.0, + "new_cases": 114.0, + "new_cases_smoothed": 70.857, + "total_deaths": 230.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 1559.24, + "new_cases_per_million": 16.753, + "new_cases_smoothed_per_million": 10.413, + "total_deaths_per_million": 33.801, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 4113.0, + "total_tests": 185385.0, + "total_tests_per_thousand": 27.244, + "new_tests_per_thousand": 0.604, + "new_tests_smoothed": 5683.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 80.204, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-05-19", + "total_cases": 10699.0, + "new_cases": 89.0, + "new_cases_smoothed": 74.714, + "total_deaths": 231.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1572.32, + "new_cases_per_million": 13.079, + "new_cases_smoothed_per_million": 10.98, + "total_deaths_per_million": 33.948, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.273, + "new_tests": 5298.0, + "total_tests": 190683.0, + "total_tests_per_thousand": 28.023, + "new_tests_per_thousand": 0.779, + "new_tests_smoothed": 5626.0, + "new_tests_smoothed_per_thousand": 0.827, + "tests_per_case": 75.3, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-05-20", + "total_cases": 10733.0, + "new_cases": 34.0, + "new_cases_smoothed": 70.0, + "total_deaths": 234.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1577.316, + "new_cases_per_million": 4.997, + "new_cases_smoothed_per_million": 10.287, + "total_deaths_per_million": 34.389, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 6198.0, + "total_tests": 196881.0, + "total_tests_per_thousand": 28.934, + "new_tests_per_thousand": 0.911, + "new_tests_smoothed": 5754.0, + "new_tests_smoothed_per_thousand": 0.846, + "tests_per_case": 82.2, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-05-21", + "total_cases": 10833.0, + "new_cases": 100.0, + "new_cases_smoothed": 76.857, + "total_deaths": 235.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1592.012, + "new_cases_per_million": 14.696, + "new_cases_smoothed_per_million": 11.295, + "total_deaths_per_million": 34.535, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.273, + "new_tests": 6918.0, + "total_tests": 203799.0, + "total_tests_per_thousand": 29.95, + "new_tests_per_thousand": 1.017, + "new_tests_smoothed": 5857.0, + "new_tests_smoothed_per_thousand": 0.861, + "tests_per_case": 76.206, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-05-22", + "total_cases": 10919.0, + "new_cases": 86.0, + "new_cases_smoothed": 77.857, + "total_deaths": 237.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1604.651, + "new_cases_per_million": 12.639, + "new_cases_smoothed_per_million": 11.442, + "total_deaths_per_million": 34.829, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.273, + "new_tests": 5998.0, + "total_tests": 209797.0, + "total_tests_per_thousand": 30.832, + "new_tests_per_thousand": 0.881, + "new_tests_smoothed": 5875.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 75.459, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-23", + "total_cases": 11024.0, + "new_cases": 105.0, + "new_cases_smoothed": 83.714, + "total_deaths": 237.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1620.081, + "new_cases_per_million": 15.431, + "new_cases_smoothed_per_million": 12.303, + "total_deaths_per_million": 34.829, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 4415.0, + "total_tests": 214212.0, + "total_tests_per_thousand": 31.48, + "new_tests_per_thousand": 0.649, + "new_tests_smoothed": 5638.0, + "new_tests_smoothed_per_thousand": 0.829, + "tests_per_case": 67.348, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-24", + "total_cases": 11092.0, + "new_cases": 68.0, + "new_cases_smoothed": 85.143, + "total_deaths": 238.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 1630.075, + "new_cases_per_million": 9.993, + "new_cases_smoothed_per_million": 12.513, + "total_deaths_per_million": 34.976, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 3644.0, + "total_tests": 217856.0, + "total_tests_per_thousand": 32.016, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 5226.0, + "new_tests_smoothed_per_thousand": 0.768, + "tests_per_case": 61.379, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-25", + "total_cases": 11159.0, + "new_cases": 67.0, + "new_cases_smoothed": 78.429, + "total_deaths": 238.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1639.921, + "new_cases_per_million": 9.846, + "new_cases_smoothed_per_million": 11.526, + "total_deaths_per_million": 34.976, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 2488.0, + "total_tests": 220344.0, + "total_tests_per_thousand": 32.382, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 4994.0, + "new_tests_smoothed_per_thousand": 0.734, + "tests_per_case": 63.676, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-26", + "total_cases": 11193.0, + "new_cases": 34.0, + "new_cases_smoothed": 70.571, + "total_deaths": 239.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1644.918, + "new_cases_per_million": 4.997, + "new_cases_smoothed_per_million": 10.371, + "total_deaths_per_million": 35.123, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.168, + "new_tests": 3427.0, + "total_tests": 223771.0, + "total_tests_per_thousand": 32.885, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 4727.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 66.982, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-27", + "total_cases": 11227.0, + "new_cases": 34.0, + "new_cases_smoothed": 70.571, + "total_deaths": 239.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1649.914, + "new_cases_per_million": 4.997, + "new_cases_smoothed_per_million": 10.371, + "total_deaths_per_million": 35.123, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5714.0, + "total_tests": 229485.0, + "total_tests_per_thousand": 33.725, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 4658.0, + "new_tests_smoothed_per_thousand": 0.685, + "tests_per_case": 66.00399999999999, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-28", + "total_cases": 11275.0, + "new_cases": 48.0, + "new_cases_smoothed": 63.143, + "total_deaths": 240.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1656.968, + "new_cases_per_million": 7.054, + "new_cases_smoothed_per_million": 9.279, + "total_deaths_per_million": 35.27, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4534.0, + "total_tests": 234019.0, + "total_tests_per_thousand": 34.391, + "new_tests_per_thousand": 0.666, + "new_tests_smoothed": 4317.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 68.369, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-29", + "total_cases": 11300.0, + "new_cases": 25.0, + "new_cases_smoothed": 54.429, + "total_deaths": 241.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1660.642, + "new_cases_per_million": 3.674, + "new_cases_smoothed_per_million": 7.999, + "total_deaths_per_million": 35.417, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 5215.0, + "total_tests": 239234.0, + "total_tests_per_thousand": 35.158, + "new_tests_per_thousand": 0.766, + "new_tests_smoothed": 4205.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 77.257, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-30", + "total_cases": 11354.0, + "new_cases": 54.0, + "new_cases_smoothed": 47.143, + "total_deaths": 242.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1668.578, + "new_cases_per_million": 7.936, + "new_cases_smoothed_per_million": 6.928, + "total_deaths_per_million": 35.564, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3548.0, + "total_tests": 242782.0, + "total_tests_per_thousand": 35.679, + "new_tests_per_thousand": 0.521, + "new_tests_smoothed": 4081.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 86.56700000000001, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-05-31", + "total_cases": 11381.0, + "new_cases": 27.0, + "new_cases_smoothed": 41.286, + "total_deaths": 242.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1672.546, + "new_cases_per_million": 3.968, + "new_cases_smoothed_per_million": 6.067, + "total_deaths_per_million": 35.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 2663.0, + "total_tests": 245445.0, + "total_tests_per_thousand": 36.07, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 3941.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 95.45700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-06-01", + "total_cases": 11412.0, + "new_cases": 31.0, + "new_cases_smoothed": 36.143, + "total_deaths": 243.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1677.102, + "new_cases_per_million": 4.556, + "new_cases_smoothed_per_million": 5.312, + "total_deaths_per_million": 35.711, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 2315.0, + "total_tests": 247760.0, + "total_tests_per_thousand": 36.411, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 3917.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 108.375, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-02", + "total_cases": 11430.0, + "new_cases": 18.0, + "new_cases_smoothed": 33.857, + "total_deaths": 244.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1679.747, + "new_cases_per_million": 2.645, + "new_cases_smoothed_per_million": 4.976, + "total_deaths_per_million": 35.858, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4372.0, + "total_tests": 252132.0, + "total_tests_per_thousand": 37.053, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 4052.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 119.679, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-03", + "total_cases": 11454.0, + "new_cases": 24.0, + "new_cases_smoothed": 32.429, + "total_deaths": 245.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1683.274, + "new_cases_per_million": 3.527, + "new_cases_smoothed_per_million": 4.766, + "total_deaths_per_million": 36.005, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 5110.0, + "total_tests": 257242.0, + "total_tests_per_thousand": 37.804, + "new_tests_per_thousand": 0.751, + "new_tests_smoothed": 3965.0, + "new_tests_smoothed_per_thousand": 0.583, + "tests_per_case": 122.26899999999999, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-04", + "total_cases": 11523.0, + "new_cases": 69.0, + "new_cases_smoothed": 35.429, + "total_deaths": 245.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1693.414, + "new_cases_per_million": 10.14, + "new_cases_smoothed_per_million": 5.207, + "total_deaths_per_million": 36.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4024.0, + "total_tests": 261266.0, + "total_tests_per_thousand": 38.396, + "new_tests_per_thousand": 0.591, + "new_tests_smoothed": 3892.0, + "new_tests_smoothed_per_thousand": 0.572, + "tests_per_case": 109.855, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-05", + "total_cases": 11571.0, + "new_cases": 48.0, + "new_cases_smoothed": 38.714, + "total_deaths": 246.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1700.468, + "new_cases_per_million": 7.054, + "new_cases_smoothed_per_million": 5.689, + "total_deaths_per_million": 36.152, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4795.0, + "total_tests": 266061.0, + "total_tests_per_thousand": 39.1, + "new_tests_per_thousand": 0.705, + "new_tests_smoothed": 3832.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 98.98200000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-06-06", + "total_cases": 11667.0, + "new_cases": 96.0, + "new_cases_smoothed": 44.714, + "total_deaths": 247.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1714.576, + "new_cases_per_million": 14.108, + "new_cases_smoothed_per_million": 6.571, + "total_deaths_per_million": 36.299, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3124.0, + "total_tests": 269185.0, + "total_tests_per_thousand": 39.559, + "new_tests_per_thousand": 0.459, + "new_tests_smoothed": 3772.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 84.35799999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-07", + "total_cases": 11741.0, + "new_cases": 74.0, + "new_cases_smoothed": 51.429, + "total_deaths": 248.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1725.451, + "new_cases_per_million": 10.875, + "new_cases_smoothed_per_million": 7.558, + "total_deaths_per_million": 36.446, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 3317.0, + "total_tests": 272502.0, + "total_tests_per_thousand": 40.047, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 3865.0, + "new_tests_smoothed_per_thousand": 0.568, + "tests_per_case": 75.153, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-08", + "total_cases": 11823.0, + "new_cases": 82.0, + "new_cases_smoothed": 58.714, + "total_deaths": 249.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1737.502, + "new_cases_per_million": 12.051, + "new_cases_smoothed_per_million": 8.629, + "total_deaths_per_million": 36.593, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 4308.0, + "total_tests": 276810.0, + "total_tests_per_thousand": 40.68, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 4150.0, + "new_tests_smoothed_per_thousand": 0.61, + "tests_per_case": 70.681, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-09", + "total_cases": 11896.0, + "new_cases": 73.0, + "new_cases_smoothed": 66.571, + "total_deaths": 250.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1748.23, + "new_cases_per_million": 10.728, + "new_cases_smoothed_per_million": 9.783, + "total_deaths_per_million": 36.74, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 5239.0, + "total_tests": 282049.0, + "total_tests_per_thousand": 41.45, + "new_tests_per_thousand": 0.77, + "new_tests_smoothed": 4274.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 64.202, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-10", + "total_cases": 11965.0, + "new_cases": 69.0, + "new_cases_smoothed": 73.0, + "total_deaths": 250.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1758.37, + "new_cases_per_million": 10.14, + "new_cases_smoothed_per_million": 10.728, + "total_deaths_per_million": 36.74, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5015.0, + "total_tests": 287064.0, + "total_tests_per_thousand": 42.187, + "new_tests_per_thousand": 0.737, + "new_tests_smoothed": 4260.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 58.356, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-11", + "total_cases": 12031.0, + "new_cases": 66.0, + "new_cases_smoothed": 72.571, + "total_deaths": 251.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1768.07, + "new_cases_per_million": 9.699, + "new_cases_smoothed_per_million": 10.665, + "total_deaths_per_million": 36.887, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 4932.0, + "total_tests": 291996.0, + "total_tests_per_thousand": 42.912, + "new_tests_per_thousand": 0.725, + "new_tests_smoothed": 4390.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 60.492, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-12", + "total_cases": 12102.0, + "new_cases": 71.0, + "new_cases_smoothed": 75.857, + "total_deaths": 252.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1778.504, + "new_cases_per_million": 10.434, + "new_cases_smoothed_per_million": 11.148, + "total_deaths_per_million": 37.034, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 5793.0, + "total_tests": 297789.0, + "total_tests_per_thousand": 43.763, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 4533.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 59.757, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-13", + "total_cases": 12175.0, + "new_cases": 73.0, + "new_cases_smoothed": 72.571, + "total_deaths": 252.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1789.232, + "new_cases_per_million": 10.728, + "new_cases_smoothed_per_million": 10.665, + "total_deaths_per_million": 37.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3337.0, + "total_tests": 301126.0, + "total_tests_per_thousand": 44.253, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 4563.0, + "new_tests_smoothed_per_thousand": 0.671, + "tests_per_case": 62.876000000000005, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-14", + "total_cases": 12251.0, + "new_cases": 76.0, + "new_cases_smoothed": 72.857, + "total_deaths": 253.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1800.401, + "new_cases_per_million": 11.169, + "new_cases_smoothed_per_million": 10.707, + "total_deaths_per_million": 37.181, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 1802.0, + "total_tests": 302928.0, + "total_tests_per_thousand": 44.518, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 4347.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 59.665, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-15", + "total_cases": 12310.0, + "new_cases": 59.0, + "new_cases_smoothed": 69.571, + "total_deaths": 254.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1809.071, + "new_cases_per_million": 8.671, + "new_cases_smoothed_per_million": 10.224, + "total_deaths_per_million": 37.328, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5085.0, + "total_tests": 308013.0, + "total_tests_per_thousand": 45.265, + "new_tests_per_thousand": 0.747, + "new_tests_smoothed": 4458.0, + "new_tests_smoothed_per_thousand": 0.655, + "tests_per_case": 64.078, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-16", + "total_cases": 12367.0, + "new_cases": 57.0, + "new_cases_smoothed": 67.286, + "total_deaths": 255.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1817.448, + "new_cases_per_million": 8.377, + "new_cases_smoothed_per_million": 9.888, + "total_deaths_per_million": 37.475, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 5470.0, + "total_tests": 313483.0, + "total_tests_per_thousand": 46.069, + "new_tests_per_thousand": 0.804, + "new_tests_smoothed": 4491.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 66.745, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-17", + "total_cases": 12426.0, + "new_cases": 59.0, + "new_cases_smoothed": 65.857, + "total_deaths": 256.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1826.119, + "new_cases_per_million": 8.671, + "new_cases_smoothed_per_million": 9.678, + "total_deaths_per_million": 37.622, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 6098.0, + "total_tests": 319581.0, + "total_tests_per_thousand": 46.965, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 4645.0, + "new_tests_smoothed_per_thousand": 0.683, + "tests_per_case": 70.531, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-18", + "total_cases": 12522.0, + "new_cases": 96.0, + "new_cases_smoothed": 70.143, + "total_deaths": 257.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1840.227, + "new_cases_per_million": 14.108, + "new_cases_smoothed_per_million": 10.308, + "total_deaths_per_million": 37.769, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 6032.0, + "total_tests": 325613.0, + "total_tests_per_thousand": 47.852, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 4802.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 68.46, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-19", + "total_cases": 12616.0, + "new_cases": 94.0, + "new_cases_smoothed": 73.429, + "total_deaths": 258.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1854.041, + "new_cases_per_million": 13.814, + "new_cases_smoothed_per_million": 10.791, + "total_deaths_per_million": 37.916, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 6729.0, + "total_tests": 332342.0, + "total_tests_per_thousand": 48.841, + "new_tests_per_thousand": 0.989, + "new_tests_smoothed": 4936.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 67.222, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-20", + "total_cases": 12709.0, + "new_cases": 93.0, + "new_cases_smoothed": 76.286, + "total_deaths": 259.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1867.708, + "new_cases_per_million": 13.667, + "new_cases_smoothed_per_million": 11.211, + "total_deaths_per_million": 38.063, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 4211.0, + "total_tests": 336553.0, + "total_tests_per_thousand": 49.46, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 5061.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 66.343, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-21", + "total_cases": 12803.0, + "new_cases": 94.0, + "new_cases_smoothed": 78.857, + "total_deaths": 260.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1881.522, + "new_cases_per_million": 13.814, + "new_cases_smoothed_per_million": 11.589, + "total_deaths_per_million": 38.209, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 3269.0, + "total_tests": 339822.0, + "total_tests_per_thousand": 49.94, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 5271.0, + "new_tests_smoothed_per_thousand": 0.775, + "tests_per_case": 66.842, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-22", + "total_cases": 12894.0, + "new_cases": 91.0, + "new_cases_smoothed": 83.429, + "total_deaths": 261.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1894.896, + "new_cases_per_million": 13.373, + "new_cases_smoothed_per_million": 12.261, + "total_deaths_per_million": 38.356, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 5438.0, + "total_tests": 345260.0, + "total_tests_per_thousand": 50.739, + "new_tests_per_thousand": 0.799, + "new_tests_smoothed": 5321.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 63.778999999999996, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-23", + "total_cases": 12990.0, + "new_cases": 96.0, + "new_cases_smoothed": 89.0, + "total_deaths": 262.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1909.004, + "new_cases_per_million": 14.108, + "new_cases_smoothed_per_million": 13.079, + "total_deaths_per_million": 38.503, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 6025.0, + "total_tests": 351285.0, + "total_tests_per_thousand": 51.625, + "new_tests_per_thousand": 0.885, + "new_tests_smoothed": 5400.0, + "new_tests_smoothed_per_thousand": 0.794, + "tests_per_case": 60.674, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-24", + "total_cases": 13092.0, + "new_cases": 102.0, + "new_cases_smoothed": 95.143, + "total_deaths": 263.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1923.994, + "new_cases_per_million": 14.99, + "new_cases_smoothed_per_million": 13.982, + "total_deaths_per_million": 38.65, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 7784.0, + "total_tests": 359069.0, + "total_tests_per_thousand": 52.769, + "new_tests_per_thousand": 1.144, + "new_tests_smoothed": 5641.0, + "new_tests_smoothed_per_thousand": 0.829, + "tests_per_case": 59.29, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-25", + "total_cases": 13235.0, + "new_cases": 143.0, + "new_cases_smoothed": 101.857, + "total_deaths": 263.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1945.009, + "new_cases_per_million": 21.015, + "new_cases_smoothed_per_million": 14.969, + "total_deaths_per_million": 38.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 7311.0, + "total_tests": 366380.0, + "total_tests_per_thousand": 53.843, + "new_tests_per_thousand": 1.074, + "new_tests_smoothed": 5824.0, + "new_tests_smoothed_per_thousand": 0.856, + "tests_per_case": 57.178000000000004, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-26", + "total_cases": 13372.0, + "new_cases": 137.0, + "new_cases_smoothed": 108.0, + "total_deaths": 264.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1965.142, + "new_cases_per_million": 20.133, + "new_cases_smoothed_per_million": 15.872, + "total_deaths_per_million": 38.797, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 8495.0, + "total_tests": 374875.0, + "total_tests_per_thousand": 55.091, + "new_tests_per_thousand": 1.248, + "new_tests_smoothed": 6076.0, + "new_tests_smoothed_per_thousand": 0.893, + "tests_per_case": 56.25899999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-27", + "total_cases": 13565.0, + "new_cases": 193.0, + "new_cases_smoothed": 122.286, + "total_deaths": 265.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1993.506, + "new_cases_per_million": 28.363, + "new_cases_smoothed_per_million": 17.971, + "total_deaths_per_million": 38.944, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.126, + "new_tests": 5933.0, + "total_tests": 380808.0, + "total_tests_per_thousand": 55.963, + "new_tests_per_thousand": 0.872, + "new_tests_smoothed": 6322.0, + "new_tests_smoothed_per_thousand": 0.929, + "tests_per_case": 51.699, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-28", + "total_cases": 13792.0, + "new_cases": 227.0, + "new_cases_smoothed": 141.286, + "total_deaths": 267.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2026.865, + "new_cases_per_million": 33.36, + "new_cases_smoothed_per_million": 20.763, + "total_deaths_per_million": 39.238, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 4905.0, + "total_tests": 385713.0, + "total_tests_per_thousand": 56.684, + "new_tests_per_thousand": 0.721, + "new_tests_smoothed": 6556.0, + "new_tests_smoothed_per_thousand": 0.963, + "tests_per_case": 46.402, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 24.07 + }, + { + "date": "2020-06-29", + "total_cases": 14046.0, + "new_cases": 254.0, + "new_cases_smoothed": 164.571, + "total_deaths": 270.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 2064.193, + "new_cases_per_million": 37.328, + "new_cases_smoothed_per_million": 24.185, + "total_deaths_per_million": 39.679, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 7150.0, + "total_tests": 392863.0, + "total_tests_per_thousand": 57.735, + "new_tests_per_thousand": 1.051, + "new_tests_smoothed": 6800.0, + "new_tests_smoothed_per_thousand": 0.999, + "tests_per_case": 41.318999999999996, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 25.93 + }, + { + "date": "2020-06-30", + "total_cases": 14288.0, + "new_cases": 242.0, + "new_cases_smoothed": 185.429, + "total_deaths": 274.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2099.757, + "new_cases_per_million": 35.564, + "new_cases_smoothed_per_million": 27.25, + "total_deaths_per_million": 40.267, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 8377.0, + "total_tests": 401240.0, + "total_tests_per_thousand": 58.966, + "new_tests_per_thousand": 1.231, + "new_tests_smoothed": 7136.0, + "new_tests_smoothed_per_thousand": 1.049, + "tests_per_case": 38.484, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 25.93 + }, + { + "date": "2020-07-01", + "total_cases": 14564.0, + "new_cases": 276.0, + "new_cases_smoothed": 210.286, + "total_deaths": 277.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2140.318, + "new_cases_per_million": 40.561, + "new_cases_smoothed_per_million": 30.903, + "total_deaths_per_million": 40.708, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 8626.0, + "total_tests": 409866.0, + "total_tests_per_thousand": 60.234, + "new_tests_per_thousand": 1.268, + "new_tests_smoothed": 7257.0, + "new_tests_smoothed_per_thousand": 1.066, + "tests_per_case": 34.51, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-02", + "total_cases": 14836.0, + "new_cases": 272.0, + "new_cases_smoothed": 228.714, + "total_deaths": 281.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 2180.291, + "new_cases_per_million": 39.973, + "new_cases_smoothed_per_million": 33.612, + "total_deaths_per_million": 41.296, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 9013.0, + "total_tests": 418879.0, + "total_tests_per_thousand": 61.558, + "new_tests_per_thousand": 1.325, + "new_tests_smoothed": 7500.0, + "new_tests_smoothed_per_thousand": 1.102, + "tests_per_case": 32.792, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-03", + "total_cases": 15195.0, + "new_cases": 359.0, + "new_cases_smoothed": 260.429, + "total_deaths": 287.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2233.05, + "new_cases_per_million": 52.758, + "new_cases_smoothed_per_million": 38.272, + "total_deaths_per_million": 42.177, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.483, + "new_tests": 8102.0, + "total_tests": 426981.0, + "total_tests_per_thousand": 62.749, + "new_tests_per_thousand": 1.191, + "new_tests_smoothed": 7444.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 28.584, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-04", + "total_cases": 15504.0, + "new_cases": 309.0, + "new_cases_smoothed": 277.0, + "total_deaths": 298.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 2278.46, + "new_cases_per_million": 45.41, + "new_cases_smoothed_per_million": 40.708, + "total_deaths_per_million": 43.794, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 7434.0, + "total_tests": 434415.0, + "total_tests_per_thousand": 63.841, + "new_tests_per_thousand": 1.092, + "new_tests_smoothed": 7658.0, + "new_tests_smoothed_per_thousand": 1.125, + "tests_per_case": 27.646, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-05", + "total_cases": 15829.0, + "new_cases": 325.0, + "new_cases_smoothed": 291.0, + "total_deaths": 306.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 2326.222, + "new_cases_per_million": 47.762, + "new_cases_smoothed_per_million": 42.765, + "total_deaths_per_million": 44.97, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 0.819, + "new_tests": 5030.0, + "total_tests": 439445.0, + "total_tests_per_thousand": 64.581, + "new_tests_per_thousand": 0.739, + "new_tests_smoothed": 7676.0, + "new_tests_smoothed_per_thousand": 1.128, + "tests_per_case": 26.378, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-06", + "total_cases": 16131.0, + "new_cases": 302.0, + "new_cases_smoothed": 297.857, + "total_deaths": 311.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 2370.604, + "new_cases_per_million": 44.382, + "new_cases_smoothed_per_million": 43.773, + "total_deaths_per_million": 45.704, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.861, + "new_tests": 7872.0, + "total_tests": 447317.0, + "total_tests_per_thousand": 65.737, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 7779.0, + "new_tests_smoothed_per_thousand": 1.143, + "tests_per_case": 26.116999999999997, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-07", + "total_cases": 16420.0, + "new_cases": 289.0, + "new_cases_smoothed": 304.571, + "total_deaths": 317.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 2413.075, + "new_cases_per_million": 42.471, + "new_cases_smoothed_per_million": 44.76, + "total_deaths_per_million": 46.586, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.903, + "new_tests": 8287.0, + "total_tests": 455604.0, + "total_tests_per_thousand": 66.955, + "new_tests_per_thousand": 1.218, + "new_tests_smoothed": 7766.0, + "new_tests_smoothed_per_thousand": 1.141, + "tests_per_case": 25.498, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-08", + "total_cases": 16719.0, + "new_cases": 299.0, + "new_cases_smoothed": 307.857, + "total_deaths": 330.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 2457.016, + "new_cases_per_million": 43.941, + "new_cases_smoothed_per_million": 45.243, + "total_deaths_per_million": 48.497, + "new_deaths_per_million": 1.91, + "new_deaths_smoothed_per_million": 1.113, + "new_tests": 8567.0, + "total_tests": 464171.0, + "total_tests_per_thousand": 68.214, + "new_tests_per_thousand": 1.259, + "new_tests_smoothed": 7758.0, + "new_tests_smoothed_per_thousand": 1.14, + "tests_per_case": 25.2, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-09", + "total_cases": 17076.0, + "new_cases": 357.0, + "new_cases_smoothed": 320.0, + "total_deaths": 341.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 2509.48, + "new_cases_per_million": 52.465, + "new_cases_smoothed_per_million": 47.027, + "total_deaths_per_million": 50.113, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.26, + "new_tests": 7529.0, + "total_tests": 471700.0, + "total_tests_per_thousand": 69.321, + "new_tests_per_thousand": 1.106, + "new_tests_smoothed": 7546.0, + "new_tests_smoothed_per_thousand": 1.109, + "tests_per_case": 23.581, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-10", + "total_cases": 17342.0, + "new_cases": 266.0, + "new_cases_smoothed": 306.714, + "total_deaths": 352.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 2548.572, + "new_cases_per_million": 39.091, + "new_cases_smoothed_per_million": 45.075, + "total_deaths_per_million": 51.73, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.365, + "new_tests": 8646.0, + "total_tests": 480346.0, + "total_tests_per_thousand": 70.591, + "new_tests_per_thousand": 1.271, + "new_tests_smoothed": 7624.0, + "new_tests_smoothed_per_thousand": 1.12, + "tests_per_case": 24.857, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-11", + "total_cases": 17728.0, + "new_cases": 386.0, + "new_cases_smoothed": 317.714, + "total_deaths": 370.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 2605.298, + "new_cases_per_million": 56.726, + "new_cases_smoothed_per_million": 46.691, + "total_deaths_per_million": 54.375, + "new_deaths_per_million": 2.645, + "new_deaths_smoothed_per_million": 1.512, + "new_tests": 7032.0, + "total_tests": 487378.0, + "total_tests_per_thousand": 71.625, + "new_tests_per_thousand": 1.033, + "new_tests_smoothed": 7566.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 23.814, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-12", + "total_cases": 18073.0, + "new_cases": 345.0, + "new_cases_smoothed": 320.571, + "total_deaths": 382.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 2655.999, + "new_cases_per_million": 50.701, + "new_cases_smoothed_per_million": 47.111, + "total_deaths_per_million": 56.139, + "new_deaths_per_million": 1.764, + "new_deaths_smoothed_per_million": 1.596, + "new_tests": 4050.0, + "total_tests": 491428.0, + "total_tests_per_thousand": 72.22, + "new_tests_per_thousand": 0.595, + "new_tests_smoothed": 7426.0, + "new_tests_smoothed_per_thousand": 1.091, + "tests_per_case": 23.165, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-13", + "total_cases": 18360.0, + "new_cases": 287.0, + "new_cases_smoothed": 318.429, + "total_deaths": 393.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 2698.176, + "new_cases_per_million": 42.177, + "new_cases_smoothed_per_million": 46.796, + "total_deaths_per_million": 57.755, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.722, + "new_tests": 6915.0, + "total_tests": 498343.0, + "total_tests_per_thousand": 73.236, + "new_tests_per_thousand": 1.016, + "new_tests_smoothed": 7289.0, + "new_tests_smoothed_per_thousand": 1.071, + "tests_per_case": 22.891, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-14", + "total_cases": 18639.0, + "new_cases": 279.0, + "new_cases_smoothed": 317.0, + "total_deaths": 405.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 2739.178, + "new_cases_per_million": 41.002, + "new_cases_smoothed_per_million": 46.586, + "total_deaths_per_million": 59.519, + "new_deaths_per_million": 1.764, + "new_deaths_smoothed_per_million": 1.847, + "new_tests": 8659.0, + "total_tests": 507002.0, + "total_tests_per_thousand": 74.509, + "new_tests_per_thousand": 1.273, + "new_tests_smoothed": 7343.0, + "new_tests_smoothed_per_thousand": 1.079, + "tests_per_case": 23.164, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-15", + "total_cases": 18983.0, + "new_cases": 344.0, + "new_cases_smoothed": 323.429, + "total_deaths": 418.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 2789.732, + "new_cases_per_million": 50.554, + "new_cases_smoothed_per_million": 47.531, + "total_deaths_per_million": 61.429, + "new_deaths_per_million": 1.91, + "new_deaths_smoothed_per_million": 1.847, + "new_tests": 8393.0, + "total_tests": 515395.0, + "total_tests_per_thousand": 75.742, + "new_tests_per_thousand": 1.233, + "new_tests_smoothed": 7318.0, + "new_tests_smoothed_per_thousand": 1.075, + "tests_per_case": 22.625999999999998, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-16", + "total_cases": 19334.0, + "new_cases": 351.0, + "new_cases_smoothed": 322.571, + "total_deaths": 429.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 2841.315, + "new_cases_per_million": 51.583, + "new_cases_smoothed_per_million": 47.405, + "total_deaths_per_million": 63.046, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.847, + "new_tests": 9183.0, + "total_tests": 524578.0, + "total_tests_per_thousand": 77.092, + "new_tests_per_thousand": 1.35, + "new_tests_smoothed": 7554.0, + "new_tests_smoothed_per_thousand": 1.11, + "tests_per_case": 23.418000000000003, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 44.44 + }, + { + "date": "2020-07-17", + "total_cases": 19717.0, + "new_cases": 383.0, + "new_cases_smoothed": 339.286, + "total_deaths": 442.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 2897.6, + "new_cases_per_million": 56.285, + "new_cases_smoothed_per_million": 49.861, + "total_deaths_per_million": 64.956, + "new_deaths_per_million": 1.91, + "new_deaths_smoothed_per_million": 1.889, + "new_tests": 9910.0, + "total_tests": 534488.0, + "total_tests_per_thousand": 78.548, + "new_tests_per_thousand": 1.456, + "new_tests_smoothed": 7735.0, + "new_tests_smoothed_per_thousand": 1.137, + "tests_per_case": 22.798000000000002, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-18", + "total_cases": 20109.0, + "new_cases": 392.0, + "new_cases_smoothed": 340.143, + "total_deaths": 452.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 2955.209, + "new_cases_per_million": 57.608, + "new_cases_smoothed_per_million": 49.987, + "total_deaths_per_million": 66.426, + "new_deaths_per_million": 1.47, + "new_deaths_smoothed_per_million": 1.722, + "new_tests": 7648.0, + "total_tests": 542136.0, + "total_tests_per_thousand": 79.672, + "new_tests_per_thousand": 1.124, + "new_tests_smoothed": 7823.0, + "new_tests_smoothed_per_thousand": 1.15, + "tests_per_case": 22.999000000000002, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-19", + "total_cases": 20498.0, + "new_cases": 389.0, + "new_cases_smoothed": 346.429, + "total_deaths": 461.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 3012.376, + "new_cases_per_million": 57.167, + "new_cases_smoothed_per_million": 50.911, + "total_deaths_per_million": 67.748, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.659, + "new_tests": 7955.0, + "total_tests": 550091.0, + "total_tests_per_thousand": 80.841, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 8380.0, + "new_tests_smoothed_per_thousand": 1.232, + "tests_per_case": 24.19, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-20", + "total_cases": 20894.0, + "new_cases": 396.0, + "new_cases_smoothed": 362.0, + "total_deaths": 472.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 3070.572, + "new_cases_per_million": 58.196, + "new_cases_smoothed_per_million": 53.199, + "total_deaths_per_million": 69.365, + "new_deaths_per_million": 1.617, + "new_deaths_smoothed_per_million": 1.659, + "new_tests": 8349.0, + "total_tests": 558440.0, + "total_tests_per_thousand": 82.068, + "new_tests_per_thousand": 1.227, + "new_tests_smoothed": 8585.0, + "new_tests_smoothed_per_thousand": 1.262, + "tests_per_case": 23.715, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-21", + "total_cases": 21253.0, + "new_cases": 359.0, + "new_cases_smoothed": 373.429, + "total_deaths": 482.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 3123.33, + "new_cases_per_million": 52.758, + "new_cases_smoothed_per_million": 54.879, + "total_deaths_per_million": 70.834, + "new_deaths_per_million": 1.47, + "new_deaths_smoothed_per_million": 1.617, + "new_tests": 10310.0, + "total_tests": 568750.0, + "total_tests_per_thousand": 83.583, + "new_tests_per_thousand": 1.515, + "new_tests_smoothed": 8821.0, + "new_tests_smoothed_per_thousand": 1.296, + "tests_per_case": 23.622, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-22", + "total_cases": 21605.0, + "new_cases": 352.0, + "new_cases_smoothed": 374.571, + "total_deaths": 491.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 3175.06, + "new_cases_per_million": 51.73, + "new_cases_smoothed_per_million": 55.047, + "total_deaths_per_million": 72.157, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.533, + "new_tests": 11521.0, + "total_tests": 580271.0, + "total_tests_per_thousand": 85.276, + "new_tests_per_thousand": 1.693, + "new_tests_smoothed": 9268.0, + "new_tests_smoothed_per_thousand": 1.362, + "tests_per_case": 24.743000000000002, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-23", + "total_cases": 22031.0, + "new_cases": 426.0, + "new_cases_smoothed": 385.286, + "total_deaths": 499.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 3237.665, + "new_cases_per_million": 62.605, + "new_cases_smoothed_per_million": 56.621, + "total_deaths_per_million": 73.333, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.47, + "new_tests": 11079.0, + "total_tests": 591350.0, + "total_tests_per_thousand": 86.904, + "new_tests_per_thousand": 1.628, + "new_tests_smoothed": 9539.0, + "new_tests_smoothed_per_thousand": 1.402, + "tests_per_case": 24.758000000000003, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-24", + "total_cases": 22443.0, + "new_cases": 412.0, + "new_cases_smoothed": 389.429, + "total_deaths": 508.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3298.212, + "new_cases_per_million": 60.547, + "new_cases_smoothed_per_million": 57.23, + "total_deaths_per_million": 74.655, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.386, + "new_tests": 10634.0, + "total_tests": 601984.0, + "total_tests_per_thousand": 88.467, + "new_tests_per_thousand": 1.563, + "new_tests_smoothed": 9642.0, + "new_tests_smoothed_per_thousand": 1.417, + "tests_per_case": 24.759, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-25", + "total_cases": 22852.0, + "new_cases": 409.0, + "new_cases_smoothed": 391.857, + "total_deaths": 518.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3358.318, + "new_cases_per_million": 60.106, + "new_cases_smoothed_per_million": 57.587, + "total_deaths_per_million": 76.125, + "new_deaths_per_million": 1.47, + "new_deaths_smoothed_per_million": 1.386, + "new_tests": 9349.0, + "total_tests": 611333.0, + "total_tests_per_thousand": 89.841, + "new_tests_per_thousand": 1.374, + "new_tests_smoothed": 9885.0, + "new_tests_smoothed_per_thousand": 1.453, + "tests_per_case": 25.226, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-26", + "total_cases": 23263.0, + "new_cases": 411.0, + "new_cases_smoothed": 395.0, + "total_deaths": 526.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3418.719, + "new_cases_per_million": 60.4, + "new_cases_smoothed_per_million": 58.049, + "total_deaths_per_million": 77.301, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.365, + "new_tests": 10381.0, + "total_tests": 621714.0, + "total_tests_per_thousand": 91.367, + "new_tests_per_thousand": 1.526, + "new_tests_smoothed": 10232.0, + "new_tests_smoothed_per_thousand": 1.504, + "tests_per_case": 25.904, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-27", + "total_cases": 23730.0, + "new_cases": 467.0, + "new_cases_smoothed": 405.143, + "total_deaths": 534.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 3487.349, + "new_cases_per_million": 68.63, + "new_cases_smoothed_per_million": 59.54, + "total_deaths_per_million": 78.476, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.302, + "new_tests": 9560.0, + "total_tests": 631274.0, + "total_tests_per_thousand": 92.772, + "new_tests_per_thousand": 1.405, + "new_tests_smoothed": 10405.0, + "new_tests_smoothed_per_thousand": 1.529, + "tests_per_case": 25.682, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-28", + "total_cases": 24141.0, + "new_cases": 411.0, + "new_cases_smoothed": 412.571, + "total_deaths": 543.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 3547.749, + "new_cases_per_million": 60.4, + "new_cases_smoothed_per_million": 60.631, + "total_deaths_per_million": 79.799, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.281, + "new_tests": 9817.0, + "total_tests": 641091.0, + "total_tests_per_thousand": 94.214, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 10334.0, + "new_tests_smoothed_per_thousand": 1.519, + "tests_per_case": 25.048000000000002, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-29", + "total_cases": 24520.0, + "new_cases": 379.0, + "new_cases_smoothed": 416.429, + "total_deaths": 551.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3603.447, + "new_cases_per_million": 55.698, + "new_cases_smoothed_per_million": 61.198, + "total_deaths_per_million": 80.975, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.26, + "new_tests": 9653.0, + "total_tests": 650744.0, + "total_tests_per_thousand": 95.633, + "new_tests_per_thousand": 1.419, + "new_tests_smoothed": 10068.0, + "new_tests_smoothed_per_thousand": 1.48, + "tests_per_case": 24.177, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-30", + "total_cases": 24892.0, + "new_cases": 372.0, + "new_cases_smoothed": 408.714, + "total_deaths": 558.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3658.116, + "new_cases_per_million": 54.669, + "new_cases_smoothed_per_million": 60.064, + "total_deaths_per_million": 82.003, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 1.239, + "new_tests": 8804.0, + "total_tests": 659548.0, + "total_tests_per_thousand": 96.927, + "new_tests_per_thousand": 1.294, + "new_tests_smoothed": 9743.0, + "new_tests_smoothed_per_thousand": 1.432, + "tests_per_case": 23.838, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-07-31", + "total_cases": 25213.0, + "new_cases": 321.0, + "new_cases_smoothed": 395.714, + "total_deaths": 565.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 3705.29, + "new_cases_per_million": 47.174, + "new_cases_smoothed_per_million": 58.154, + "total_deaths_per_million": 83.032, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 1.197, + "new_tests": 9436.0, + "total_tests": 668984.0, + "total_tests_per_thousand": 98.314, + "new_tests_per_thousand": 1.387, + "new_tests_smoothed": 9571.0, + "new_tests_smoothed_per_thousand": 1.407, + "tests_per_case": 24.186999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-01", + "total_cases": 25552.0, + "new_cases": 339.0, + "new_cases_smoothed": 385.714, + "total_deaths": 573.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3755.109, + "new_cases_per_million": 49.819, + "new_cases_smoothed_per_million": 56.684, + "total_deaths_per_million": 84.208, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 9109.0, + "total_tests": 678093.0, + "total_tests_per_thousand": 99.652, + "new_tests_per_thousand": 1.339, + "new_tests_smoothed": 9537.0, + "new_tests_smoothed_per_thousand": 1.402, + "tests_per_case": 24.726, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-02", + "total_cases": 25882.0, + "new_cases": 330.0, + "new_cases_smoothed": 374.143, + "total_deaths": 582.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3803.606, + "new_cases_per_million": 48.497, + "new_cases_smoothed_per_million": 54.984, + "total_deaths_per_million": 85.53, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.176, + "new_tests": 8395.0, + "total_tests": 686488.0, + "total_tests_per_thousand": 100.886, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 9253.0, + "new_tests_smoothed_per_thousand": 1.36, + "tests_per_case": 24.730999999999998, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-03", + "total_cases": 26193.0, + "new_cases": 311.0, + "new_cases_smoothed": 351.857, + "total_deaths": 590.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3849.31, + "new_cases_per_million": 45.704, + "new_cases_smoothed_per_million": 51.709, + "total_deaths_per_million": 86.706, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.176, + "new_tests": 7168.0, + "total_tests": 693656.0, + "total_tests_per_thousand": 101.939, + "new_tests_per_thousand": 1.053, + "new_tests_smoothed": 8912.0, + "new_tests_smoothed_per_thousand": 1.31, + "tests_per_case": 25.328000000000003, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-04", + "total_cases": 26451.0, + "new_cases": 258.0, + "new_cases_smoothed": 330.0, + "total_deaths": 598.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 3887.226, + "new_cases_per_million": 37.916, + "new_cases_smoothed_per_million": 48.497, + "total_deaths_per_million": 87.882, + "new_deaths_per_million": 1.176, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 9590.0, + "total_tests": 703246.0, + "total_tests_per_thousand": 103.349, + "new_tests_per_thousand": 1.409, + "new_tests_smoothed": 8879.0, + "new_tests_smoothed_per_thousand": 1.305, + "tests_per_case": 26.906, + "positive_rate": 0.037000000000000005, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-05", + "total_cases": 26738.0, + "new_cases": 287.0, + "new_cases_smoothed": 316.857, + "total_deaths": 605.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 3929.403, + "new_cases_per_million": 42.177, + "new_cases_smoothed_per_million": 46.565, + "total_deaths_per_million": 88.91, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 1.134, + "new_tests": 9858.0, + "total_tests": 713104.0, + "total_tests_per_thousand": 104.797, + "new_tests_per_thousand": 1.449, + "new_tests_smoothed": 8909.0, + "new_tests_smoothed_per_thousand": 1.309, + "tests_per_case": 28.116999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-06", + "total_cases": 27033.0, + "new_cases": 295.0, + "new_cases_smoothed": 305.857, + "total_deaths": 614.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 3972.756, + "new_cases_per_million": 43.353, + "new_cases_smoothed_per_million": 44.949, + "total_deaths_per_million": 90.233, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.176, + "new_tests": 10033.0, + "total_tests": 723137.0, + "total_tests_per_thousand": 106.272, + "new_tests_per_thousand": 1.474, + "new_tests_smoothed": 9084.0, + "new_tests_smoothed_per_thousand": 1.335, + "tests_per_case": 29.7, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-07", + "total_cases": 27332.0, + "new_cases": 299.0, + "new_cases_smoothed": 302.714, + "total_deaths": 621.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 4016.697, + "new_cases_per_million": 43.941, + "new_cases_smoothed_per_million": 44.487, + "total_deaths_per_million": 91.262, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 1.176, + "new_tests": 9922.0, + "total_tests": 733059.0, + "total_tests_per_thousand": 107.73, + "new_tests_per_thousand": 1.458, + "new_tests_smoothed": 9154.0, + "new_tests_smoothed_per_thousand": 1.345, + "tests_per_case": 30.24, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-08", + "total_cases": 27608.0, + "new_cases": 276.0, + "new_cases_smoothed": 293.714, + "total_deaths": 626.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 4057.258, + "new_cases_per_million": 40.561, + "new_cases_smoothed_per_million": 43.164, + "total_deaths_per_million": 91.997, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 1.113, + "new_tests": 8014.0, + "total_tests": 741073.0, + "total_tests_per_thousand": 108.908, + "new_tests_per_thousand": 1.178, + "new_tests_smoothed": 8997.0, + "new_tests_smoothed_per_thousand": 1.322, + "tests_per_case": 30.631999999999998, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-09", + "total_cases": 27863.0, + "new_cases": 255.0, + "new_cases_smoothed": 283.0, + "total_deaths": 632.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 4094.732, + "new_cases_per_million": 37.475, + "new_cases_smoothed_per_million": 41.59, + "total_deaths_per_million": 92.878, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 1.05, + "new_tests": 6251.0, + "total_tests": 747324.0, + "total_tests_per_thousand": 109.826, + "new_tests_per_thousand": 0.919, + "new_tests_smoothed": 8691.0, + "new_tests_smoothed_per_thousand": 1.277, + "tests_per_case": 30.71, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-10", + "total_cases": 28099.0, + "new_cases": 236.0, + "new_cases_smoothed": 272.286, + "total_deaths": 641.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 4129.415, + "new_cases_per_million": 34.682, + "new_cases_smoothed_per_million": 40.015, + "total_deaths_per_million": 94.201, + "new_deaths_per_million": 1.323, + "new_deaths_smoothed_per_million": 1.071, + "new_tests": 6819.0, + "total_tests": 754143.0, + "total_tests_per_thousand": 110.828, + "new_tests_per_thousand": 1.002, + "new_tests_smoothed": 8641.0, + "new_tests_smoothed_per_thousand": 1.27, + "tests_per_case": 31.735, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-11", + "total_cases": 28262.0, + "new_cases": 163.0, + "new_cases_smoothed": 258.714, + "total_deaths": 646.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 4153.369, + "new_cases_per_million": 23.954, + "new_cases_smoothed_per_million": 38.021, + "total_deaths_per_million": 94.936, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 1.008, + "new_tests": 8086.0, + "total_tests": 762229.0, + "total_tests_per_thousand": 112.017, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 8426.0, + "new_tests_smoothed_per_thousand": 1.238, + "tests_per_case": 32.569, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-12", + "total_cases": 28497.0, + "new_cases": 235.0, + "new_cases_smoothed": 251.286, + "total_deaths": 652.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 4187.905, + "new_cases_per_million": 34.535, + "new_cases_smoothed_per_million": 36.929, + "total_deaths_per_million": 95.818, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.987, + "new_tests": 8768.0, + "total_tests": 770997.0, + "total_tests_per_thousand": 113.305, + "new_tests_per_thousand": 1.289, + "new_tests_smoothed": 8270.0, + "new_tests_smoothed_per_thousand": 1.215, + "tests_per_case": 32.911, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-13", + "total_cases": 28751.0, + "new_cases": 254.0, + "new_cases_smoothed": 245.429, + "total_deaths": 658.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 4225.232, + "new_cases_per_million": 37.328, + "new_cases_smoothed_per_million": 36.068, + "total_deaths_per_million": 96.699, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 9100.0, + "total_tests": 780097.0, + "total_tests_per_thousand": 114.643, + "new_tests_per_thousand": 1.337, + "new_tests_smoothed": 8137.0, + "new_tests_smoothed_per_thousand": 1.196, + "tests_per_case": 33.154, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-14", + "total_cases": 28998.0, + "new_cases": 247.0, + "new_cases_smoothed": 238.0, + "total_deaths": 661.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 4261.531, + "new_cases_per_million": 36.299, + "new_cases_smoothed_per_million": 34.976, + "total_deaths_per_million": 97.14, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.84, + "new_tests": 9383.0, + "total_tests": 789480.0, + "total_tests_per_thousand": 116.022, + "new_tests_per_thousand": 1.379, + "new_tests_smoothed": 8060.0, + "new_tests_smoothed_per_thousand": 1.184, + "tests_per_case": 33.866, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-08-15", + "total_cases": 29233.0, + "new_cases": 235.0, + "new_cases_smoothed": 232.143, + "total_deaths": 665.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 4296.067, + "new_cases_per_million": 34.535, + "new_cases_smoothed_per_million": 34.116, + "total_deaths_per_million": 97.728, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.819, + "new_tests": 8529.0, + "total_tests": 798009.0, + "total_tests_per_thousand": 117.275, + "new_tests_per_thousand": 1.253, + "new_tests_smoothed": 8134.0, + "new_tests_smoothed_per_thousand": 1.195, + "tests_per_case": 35.039, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-16", + "total_cases": 29471.0, + "new_cases": 238.0, + "new_cases_smoothed": 229.714, + "total_deaths": 670.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 4331.043, + "new_cases_per_million": 34.976, + "new_cases_smoothed_per_million": 33.759, + "total_deaths_per_million": 98.463, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.798, + "new_tests": 6559.0, + "total_tests": 804568.0, + "total_tests_per_thousand": 118.239, + "new_tests_per_thousand": 0.964, + "new_tests_smoothed": 8178.0, + "new_tests_smoothed_per_thousand": 1.202, + "tests_per_case": 35.601, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-17", + "total_cases": 29682.0, + "new_cases": 211.0, + "new_cases_smoothed": 226.143, + "total_deaths": 674.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 4362.052, + "new_cases_per_million": 31.008, + "new_cases_smoothed_per_million": 33.234, + "total_deaths_per_million": 99.051, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 7352.0, + "total_tests": 811920.0, + "total_tests_per_thousand": 119.319, + "new_tests_per_thousand": 1.08, + "new_tests_smoothed": 8254.0, + "new_tests_smoothed_per_thousand": 1.213, + "tests_per_case": 36.499, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-18", + "total_cases": 29782.0, + "new_cases": 100.0, + "new_cases_smoothed": 217.143, + "total_deaths": 677.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 4376.748, + "new_cases_per_million": 14.696, + "new_cases_smoothed_per_million": 31.911, + "total_deaths_per_million": 99.492, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.651, + "new_tests": 9186.0, + "total_tests": 821106.0, + "total_tests_per_thousand": 120.669, + "new_tests_per_thousand": 1.35, + "new_tests_smoothed": 8411.0, + "new_tests_smoothed_per_thousand": 1.236, + "tests_per_case": 38.735, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-19", + "total_cases": 29890.0, + "new_cases": 108.0, + "new_cases_smoothed": 199.0, + "total_deaths": 681.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 4392.619, + "new_cases_per_million": 15.872, + "new_cases_smoothed_per_million": 29.245, + "total_deaths_per_million": 100.079, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.609, + "new_tests": 10571.0, + "total_tests": 831677.0, + "total_tests_per_thousand": 122.223, + "new_tests_per_thousand": 1.554, + "new_tests_smoothed": 8669.0, + "new_tests_smoothed_per_thousand": 1.274, + "tests_per_case": 43.563, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-20", + "total_cases": 30048.0, + "new_cases": 158.0, + "new_cases_smoothed": 185.286, + "total_deaths": 684.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 4415.839, + "new_cases_per_million": 23.22, + "new_cases_smoothed_per_million": 27.229, + "total_deaths_per_million": 100.52, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.546, + "new_tests": 10764.0, + "total_tests": 842441.0, + "total_tests_per_thousand": 123.805, + "new_tests_per_thousand": 1.582, + "new_tests_smoothed": 8906.0, + "new_tests_smoothed_per_thousand": 1.309, + "tests_per_case": 48.066, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-21", + "total_cases": 30209.0, + "new_cases": 161.0, + "new_cases_smoothed": 173.0, + "total_deaths": 689.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 4439.499, + "new_cases_per_million": 23.66, + "new_cases_smoothed_per_million": 25.424, + "total_deaths_per_million": 101.255, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.588, + "new_tests": 11618.0, + "total_tests": 854059.0, + "total_tests_per_thousand": 125.512, + "new_tests_per_thousand": 1.707, + "new_tests_smoothed": 9226.0, + "new_tests_smoothed_per_thousand": 1.356, + "tests_per_case": 53.32899999999999, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-22", + "total_cases": 30378.0, + "new_cases": 169.0, + "new_cases_smoothed": 163.571, + "total_deaths": 692.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 4464.336, + "new_cases_per_million": 24.836, + "new_cases_smoothed_per_million": 24.038, + "total_deaths_per_million": 101.696, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.567, + "new_tests": 8670.0, + "total_tests": 862729.0, + "total_tests_per_thousand": 126.786, + "new_tests_per_thousand": 1.274, + "new_tests_smoothed": 9246.0, + "new_tests_smoothed_per_thousand": 1.359, + "tests_per_case": 56.526, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-23", + "total_cases": 30548.0, + "new_cases": 170.0, + "new_cases_smoothed": 153.857, + "total_deaths": 695.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 4489.319, + "new_cases_per_million": 24.983, + "new_cases_smoothed_per_million": 22.611, + "total_deaths_per_million": 102.137, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.525, + "new_tests": 6939.0, + "total_tests": 869668.0, + "total_tests_per_thousand": 127.806, + "new_tests_per_thousand": 1.02, + "new_tests_smoothed": 9300.0, + "new_tests_smoothed_per_thousand": 1.367, + "tests_per_case": 60.446000000000005, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-24", + "total_cases": 30657.0, + "new_cases": 109.0, + "new_cases_smoothed": 139.286, + "total_deaths": 698.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4505.337, + "new_cases_per_million": 16.019, + "new_cases_smoothed_per_million": 20.469, + "total_deaths_per_million": 102.578, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 7261.0, + "total_tests": 876929.0, + "total_tests_per_thousand": 128.873, + "new_tests_per_thousand": 1.067, + "new_tests_smoothed": 9287.0, + "new_tests_smoothed_per_thousand": 1.365, + "tests_per_case": 66.676, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-25", + "total_cases": 30714.0, + "new_cases": 57.0, + "new_cases_smoothed": 133.143, + "total_deaths": 701.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4513.714, + "new_cases_per_million": 8.377, + "new_cases_smoothed_per_million": 19.567, + "total_deaths_per_million": 103.019, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 8646.0, + "total_tests": 885575.0, + "total_tests_per_thousand": 130.144, + "new_tests_per_thousand": 1.271, + "new_tests_smoothed": 9210.0, + "new_tests_smoothed_per_thousand": 1.353, + "tests_per_case": 69.17399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-26", + "total_cases": 30820.0, + "new_cases": 106.0, + "new_cases_smoothed": 132.857, + "total_deaths": 705.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 4529.292, + "new_cases_per_million": 15.578, + "new_cases_smoothed_per_million": 19.525, + "total_deaths_per_million": 103.606, + "new_deaths_per_million": 0.588, + "new_deaths_smoothed_per_million": 0.504, + "new_tests": 9932.0, + "total_tests": 895507.0, + "total_tests_per_thousand": 131.603, + "new_tests_per_thousand": 1.46, + "new_tests_smoothed": 9119.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 68.638, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-27", + "total_cases": 30974.0, + "new_cases": 154.0, + "new_cases_smoothed": 132.286, + "total_deaths": 707.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 4551.923, + "new_cases_per_million": 22.632, + "new_cases_smoothed_per_million": 19.441, + "total_deaths_per_million": 103.9, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.483, + "new_tests": 8836.0, + "total_tests": 904343.0, + "total_tests_per_thousand": 132.902, + "new_tests_per_thousand": 1.299, + "new_tests_smoothed": 8843.0, + "new_tests_smoothed_per_thousand": 1.3, + "tests_per_case": 66.848, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-28", + "total_cases": 31099.0, + "new_cases": 125.0, + "new_cases_smoothed": 127.143, + "total_deaths": 707.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 4570.293, + "new_cases_per_million": 18.37, + "new_cases_smoothed_per_million": 18.685, + "total_deaths_per_million": 103.9, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.378, + "new_tests": 9513.0, + "total_tests": 913856.0, + "total_tests_per_thousand": 134.3, + "new_tests_per_thousand": 1.398, + "new_tests_smoothed": 8542.0, + "new_tests_smoothed_per_thousand": 1.255, + "tests_per_case": 67.184, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-29", + "total_cases": 31207.0, + "new_cases": 108.0, + "new_cases_smoothed": 118.429, + "total_deaths": 709.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 4586.165, + "new_cases_per_million": 15.872, + "new_cases_smoothed_per_million": 17.404, + "total_deaths_per_million": 104.194, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.357, + "new_tests": 6996.0, + "total_tests": 920852.0, + "total_tests_per_thousand": 135.328, + "new_tests_per_thousand": 1.028, + "new_tests_smoothed": 8303.0, + "new_tests_smoothed_per_thousand": 1.22, + "tests_per_case": 70.11, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-30", + "total_cases": 31282.0, + "new_cases": 75.0, + "new_cases_smoothed": 104.857, + "total_deaths": 710.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 4597.187, + "new_cases_per_million": 11.022, + "new_cases_smoothed_per_million": 15.41, + "total_deaths_per_million": 104.341, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.315, + "new_tests": 4356.0, + "total_tests": 925208.0, + "total_tests_per_thousand": 135.968, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 7934.0, + "new_tests_smoothed_per_thousand": 1.166, + "tests_per_case": 75.665, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-08-31", + "total_cases": 31365.0, + "new_cases": 83.0, + "new_cases_smoothed": 101.143, + "total_deaths": 711.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4609.385, + "new_cases_per_million": 12.198, + "new_cases_smoothed_per_million": 14.864, + "total_deaths_per_million": 104.488, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.273, + "new_tests": 5829.0, + "total_tests": 931037.0, + "total_tests_per_thousand": 136.825, + "new_tests_per_thousand": 0.857, + "new_tests_smoothed": 7730.0, + "new_tests_smoothed_per_thousand": 1.136, + "tests_per_case": 76.42699999999999, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 58.33 + }, + { + "date": "2020-09-01", + "total_cases": 31406.0, + "new_cases": 41.0, + "new_cases_smoothed": 98.857, + "total_deaths": 713.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4615.41, + "new_cases_per_million": 6.025, + "new_cases_smoothed_per_million": 14.528, + "total_deaths_per_million": 104.782, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 7509.0, + "total_tests": 938546.0, + "total_tests_per_thousand": 137.928, + "new_tests_per_thousand": 1.104, + "new_tests_smoothed": 7567.0, + "new_tests_smoothed_per_thousand": 1.112, + "tests_per_case": 76.545, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-09-02", + "total_cases": 31482.0, + "new_cases": 76.0, + "new_cases_smoothed": 94.571, + "total_deaths": 715.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4626.579, + "new_cases_per_million": 11.169, + "new_cases_smoothed_per_million": 13.898, + "total_deaths_per_million": 105.076, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 8752.0, + "total_tests": 947298.0, + "total_tests_per_thousand": 139.214, + "new_tests_per_thousand": 1.286, + "new_tests_smoothed": 7399.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 78.237, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-09-03", + "total_cases": 31581.0, + "new_cases": 99.0, + "new_cases_smoothed": 86.714, + "total_deaths": 716.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4641.128, + "new_cases_per_million": 14.549, + "new_cases_smoothed_per_million": 12.743, + "total_deaths_per_million": 105.223, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.189, + "new_tests": 8432.0, + "total_tests": 955730.0, + "total_tests_per_thousand": 140.454, + "new_tests_per_thousand": 1.239, + "new_tests_smoothed": 7341.0, + "new_tests_smoothed_per_thousand": 1.079, + "tests_per_case": 84.65700000000001, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 50.93 + }, + { + "date": "2020-09-04", + "total_cases": 31676.0, + "new_cases": 95.0, + "new_cases_smoothed": 82.429, + "total_deaths": 718.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4655.089, + "new_cases_per_million": 13.961, + "new_cases_smoothed_per_million": 12.114, + "total_deaths_per_million": 105.517, + "new_deaths_per_million": 0.294, + "new_deaths_smoothed_per_million": 0.231 + }, + { + "date": "2020-09-05", + "total_cases": 31772.0, + "new_cases": 96.0, + "new_cases_smoothed": 80.714, + "total_deaths": 721.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4669.197, + "new_cases_per_million": 14.108, + "new_cases_smoothed_per_million": 11.862, + "total_deaths_per_million": 105.958, + "new_deaths_per_million": 0.441, + "new_deaths_smoothed_per_million": 0.252 + } + ] + }, + "SYC": { + "continent": "Africa", + "location": "Seychelles", + "population": 98340.0, + "population_density": 208.354, + "median_age": 36.2, + "aged_65_older": 8.606, + "aged_70_older": 5.586, + "gdp_per_capita": 26382.287, + "extreme_poverty": 1.1, + "cardiovasc_death_rate": 242.648, + "diabetes_prevalence": 10.55, + "female_smokers": 7.1, + "male_smokers": 35.7, + "hospital_beds_per_thousand": 3.6, + "life_expectancy": 73.4, + "data": [ + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 20.338, + "new_cases_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-16", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 30.506, + "new_cases_per_million": 10.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-17", + "total_cases": 4.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 40.675, + "new_cases_per_million": 10.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-18", + "total_cases": 4.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 40.675, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-19", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.013, + "new_cases_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-20", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 61.013, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-21", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 10.169, + "new_cases_smoothed_per_million": 10.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 34.26 + }, + { + "date": "2020-03-22", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-03-23", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-24", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-25", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-26", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-27", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-28", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-29", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 71.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.35, + "new_cases_per_million": 10.169, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-31", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 20.338, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-01", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.905, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-07", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.688, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 10.169, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-05-31", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-07", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-08", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-09", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-12", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-13", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-14", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-16", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-07", + "total_cases": 81.0, + "new_cases": 70.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 823.673, + "new_cases_per_million": 711.816, + "new_cases_smoothed_per_million": 101.688, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-08", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 823.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 101.688, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-09", + "total_cases": 91.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 925.361, + "new_cases_per_million": 101.688, + "new_cases_smoothed_per_million": 116.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-10", + "total_cases": 94.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 955.867, + "new_cases_per_million": 30.506, + "new_cases_smoothed_per_million": 120.573, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-11", + "total_cases": 100.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 61.013, + "new_cases_smoothed_per_million": 129.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-12", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 129.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-13", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 129.289, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-14", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.601, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-15", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.601, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-16", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-17", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.716, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-18", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-19", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-20", + "total_cases": 100.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1016.88, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-21", + "total_cases": 108.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1098.231, + "new_cases_per_million": 81.35, + "new_cases_smoothed_per_million": 11.621, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-22", + "total_cases": 114.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 61.013, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-23", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-24", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-25", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-26", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-27", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.338, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-28", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.716, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-29", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-30", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-07-31", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-01", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-02", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-03", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-04", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1159.243, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-05", + "total_cases": 126.0, + "new_cases": 12.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 122.026, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-06", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-07", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-08", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-09", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-10", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-11", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1281.269, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.432, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-12", + "total_cases": 127.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 10.169, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-13", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-14", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-15", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-16", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-17", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-18", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.453, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-19", + "total_cases": 127.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1291.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-20", + "total_cases": 132.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 50.844, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-21", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-22", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-23", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-08-24", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-25", + "total_cases": 132.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1342.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.263, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-26", + "total_cases": 136.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 40.675, + "new_cases_smoothed_per_million": 13.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-27", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-28", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-29", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-30", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-08-31", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-01", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.811, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-02", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-03", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-09-04", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 136.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1382.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SLE": { + "continent": "Africa", + "location": "Sierra Leone", + "population": 7976985.0, + "population_density": 104.7, + "median_age": 19.1, + "aged_65_older": 2.538, + "aged_70_older": 1.285, + "gdp_per_capita": 1390.3, + "extreme_poverty": 52.2, + "cardiovasc_death_rate": 325.721, + "diabetes_prevalence": 2.42, + "female_smokers": 8.8, + "male_smokers": 41.3, + "handwashing_facilities": 19.275, + "life_expectancy": 54.7, + "data": [ + { + "date": "2020-04-01", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.125, + "new_cases_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-04-02", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.125, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-04-03", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.251, + "new_cases_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-04-04", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.251, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-04-05", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-06", + "total_cases": 6.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-09", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.878, + "new_cases_per_million": 0.125, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-11", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.003, + "new_cases_per_million": 0.125, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-12", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.254, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-13", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.254, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-14", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.379, + "new_cases_per_million": 0.125, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-15", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.379, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-16", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.63, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-17", + "total_cases": 15.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.88, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.143, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-04-18", + "total_cases": 26.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.259, + "new_cases_per_million": 1.379, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 30.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.761, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.358, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 35.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.388, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 43.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.391, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.573, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 50.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.268, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 0.698, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 61.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.647, + "new_cases_per_million": 1.379, + "new_cases_smoothed_per_million": 0.86, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 64.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.023, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 0.878, + "total_deaths_per_million": 0.125, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 82.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.0, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.28, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 0.376, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.28, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 0.376, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 80.56 + }, + { + "date": "2020-04-27", + "total_cases": 93.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 11.659, + "new_cases_per_million": 1.379, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 80.56 + }, + { + "date": "2020-04-28", + "total_cases": 99.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 12.411, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 80.56 + }, + { + "date": "2020-04-29", + "total_cases": 104.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13.038, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 80.56 + }, + { + "date": "2020-04-30", + "total_cases": 116.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14.542, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 80.56 + }, + { + "date": "2020-05-01", + "total_cases": 124.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.571, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 15.545, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.075, + "total_deaths_per_million": 0.878, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 80.56 + }, + { + "date": "2020-05-02", + "total_cases": 136.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 17.049, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 80.56 + }, + { + "date": "2020-05-03", + "total_cases": 155.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 19.431, + "new_cases_per_million": 2.382, + "new_cases_smoothed_per_million": 1.307, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 94.44 + }, + { + "date": "2020-05-04", + "total_cases": 157.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 19.682, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 1.146, + "total_deaths_per_million": 1.003, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 94.44 + }, + { + "date": "2020-05-05", + "total_cases": 178.0, + "new_cases": 21.0, + "new_cases_smoothed": 11.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 22.314, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 1.415, + "total_deaths_per_million": 1.128, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 94.44 + }, + { + "date": "2020-05-06", + "total_cases": 199.0, + "new_cases": 21.0, + "new_cases_smoothed": 13.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 24.947, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 1.701, + "total_deaths_per_million": 1.379, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 225.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.571, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 28.206, + "new_cases_per_million": 3.259, + "new_cases_smoothed_per_million": 1.952, + "total_deaths_per_million": 1.755, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 231.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.286, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.958, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 1.916, + "total_deaths_per_million": 2.006, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 73.15 + }, + { + "date": "2020-05-09", + "total_cases": 257.0, + "new_cases": 26.0, + "new_cases_smoothed": 17.286, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 32.218, + "new_cases_per_million": 3.259, + "new_cases_smoothed_per_million": 2.167, + "total_deaths_per_million": 2.131, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-10", + "total_cases": 291.0, + "new_cases": 34.0, + "new_cases_smoothed": 19.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 36.48, + "new_cases_per_million": 4.262, + "new_cases_smoothed_per_million": 2.436, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-11", + "total_cases": 307.0, + "new_cases": 16.0, + "new_cases_smoothed": 21.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 38.486, + "new_cases_per_million": 2.006, + "new_cases_smoothed_per_million": 2.686, + "total_deaths_per_million": 2.256, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-12", + "total_cases": 338.0, + "new_cases": 31.0, + "new_cases_smoothed": 22.857, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 42.372, + "new_cases_per_million": 3.886, + "new_cases_smoothed_per_million": 2.865, + "total_deaths_per_million": 2.382, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-13", + "total_cases": 338.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.857, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 42.372, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.489, + "total_deaths_per_million": 2.507, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 73.15 + }, + { + "date": "2020-05-14", + "total_cases": 387.0, + "new_cases": 49.0, + "new_cases_smoothed": 23.143, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 48.515, + "new_cases_per_million": 6.143, + "new_cases_smoothed_per_million": 2.901, + "total_deaths_per_million": 2.633, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 73.15 + }, + { + "date": "2020-05-15", + "total_cases": 408.0, + "new_cases": 21.0, + "new_cases_smoothed": 25.286, + "total_deaths": 26.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 51.147, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 3.17, + "total_deaths_per_million": 3.259, + "new_deaths_per_million": 0.627, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-16", + "total_cases": 447.0, + "new_cases": 39.0, + "new_cases_smoothed": 27.143, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 56.036, + "new_cases_per_million": 4.889, + "new_cases_smoothed_per_million": 3.403, + "total_deaths_per_million": 3.385, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-17", + "total_cases": 462.0, + "new_cases": 15.0, + "new_cases_smoothed": 24.429, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 57.917, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 3.062, + "total_deaths_per_million": 3.635, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 73.15 + }, + { + "date": "2020-05-18", + "total_cases": 505.0, + "new_cases": 43.0, + "new_cases_smoothed": 28.286, + "total_deaths": 32.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 63.307, + "new_cases_per_million": 5.391, + "new_cases_smoothed_per_million": 3.546, + "total_deaths_per_million": 4.012, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 73.15 + }, + { + "date": "2020-05-19", + "total_cases": 519.0, + "new_cases": 14.0, + "new_cases_smoothed": 25.857, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 65.062, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 3.241, + "total_deaths_per_million": 4.137, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.251, + "stringency_index": 73.15 + }, + { + "date": "2020-05-20", + "total_cases": 534.0, + "new_cases": 15.0, + "new_cases_smoothed": 28.0, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 66.943, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 3.51, + "total_deaths_per_million": 4.137, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.233, + "stringency_index": 73.15 + }, + { + "date": "2020-05-21", + "total_cases": 570.0, + "new_cases": 36.0, + "new_cases_smoothed": 26.143, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 71.456, + "new_cases_per_million": 4.513, + "new_cases_smoothed_per_million": 3.277, + "total_deaths_per_million": 4.262, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.233, + "stringency_index": 73.15 + }, + { + "date": "2020-05-22", + "total_cases": 585.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.286, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 73.336, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 3.17, + "total_deaths_per_million": 4.388, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 73.15 + }, + { + "date": "2020-05-23", + "total_cases": 606.0, + "new_cases": 21.0, + "new_cases_smoothed": 22.714, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 75.969, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 2.847, + "total_deaths_per_million": 4.764, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 73.15 + }, + { + "date": "2020-05-24", + "total_cases": 621.0, + "new_cases": 15.0, + "new_cases_smoothed": 22.714, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 77.849, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 2.847, + "total_deaths_per_million": 4.889, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-25", + "total_cases": 707.0, + "new_cases": 86.0, + "new_cases_smoothed": 28.857, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 88.63, + "new_cases_per_million": 10.781, + "new_cases_smoothed_per_million": 3.618, + "total_deaths_per_million": 5.014, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.143, + "stringency_index": 73.15 + }, + { + "date": "2020-05-26", + "total_cases": 735.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.857, + "total_deaths": 42.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 92.14, + "new_cases_per_million": 3.51, + "new_cases_smoothed_per_million": 3.868, + "total_deaths_per_million": 5.265, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 73.15 + }, + { + "date": "2020-05-27", + "total_cases": 754.0, + "new_cases": 19.0, + "new_cases_smoothed": 31.429, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 94.522, + "new_cases_per_million": 2.382, + "new_cases_smoothed_per_million": 3.94, + "total_deaths_per_million": 5.516, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 73.15 + }, + { + "date": "2020-05-28", + "total_cases": 782.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.286, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 98.032, + "new_cases_per_million": 3.51, + "new_cases_smoothed_per_million": 3.797, + "total_deaths_per_million": 5.641, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.197, + "stringency_index": 73.15 + }, + { + "date": "2020-05-29", + "total_cases": 812.0, + "new_cases": 30.0, + "new_cases_smoothed": 32.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 101.793, + "new_cases_per_million": 3.761, + "new_cases_smoothed_per_million": 4.065, + "total_deaths_per_million": 5.641, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 73.15 + }, + { + "date": "2020-05-30", + "total_cases": 829.0, + "new_cases": 17.0, + "new_cases_smoothed": 31.857, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 103.924, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 3.994, + "total_deaths_per_million": 5.641, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 73.15 + }, + { + "date": "2020-05-31", + "total_cases": 852.0, + "new_cases": 23.0, + "new_cases_smoothed": 33.0, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 106.807, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 4.137, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 73.15 + }, + { + "date": "2020-06-01", + "total_cases": 861.0, + "new_cases": 9.0, + "new_cases_smoothed": 22.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 107.936, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 2.758, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 73.15 + }, + { + "date": "2020-06-02", + "total_cases": 861.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 107.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.256, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 73.15 + }, + { + "date": "2020-06-03", + "total_cases": 896.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 112.323, + "new_cases_per_million": 4.388, + "new_cases_smoothed_per_million": 2.543, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 73.15 + }, + { + "date": "2020-06-04", + "total_cases": 909.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.143, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 113.953, + "new_cases_per_million": 1.63, + "new_cases_smoothed_per_million": 2.274, + "total_deaths_per_million": 5.892, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 73.15 + }, + { + "date": "2020-06-05", + "total_cases": 914.0, + "new_cases": 5.0, + "new_cases_smoothed": 14.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 114.58, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 1.827, + "total_deaths_per_million": 5.892, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 929.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 116.46, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.791, + "total_deaths_per_million": 5.892, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 946.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.429, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 118.591, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.683, + "total_deaths_per_million": 6.017, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 969.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.429, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 121.474, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 6.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 56.48 + }, + { + "date": "2020-06-09", + "total_cases": 1001.0, + "new_cases": 32.0, + "new_cases_smoothed": 20.0, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 125.486, + "new_cases_per_million": 4.012, + "new_cases_smoothed_per_million": 2.507, + "total_deaths_per_million": 6.143, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 56.48 + }, + { + "date": "2020-06-10", + "total_cases": 1025.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.429, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 128.495, + "new_cases_per_million": 3.009, + "new_cases_smoothed_per_million": 2.31, + "total_deaths_per_million": 6.268, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 56.48 + }, + { + "date": "2020-06-11", + "total_cases": 1062.0, + "new_cases": 37.0, + "new_cases_smoothed": 21.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 133.133, + "new_cases_per_million": 4.638, + "new_cases_smoothed_per_million": 2.74, + "total_deaths_per_million": 6.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 56.48 + }, + { + "date": "2020-06-12", + "total_cases": 1085.0, + "new_cases": 23.0, + "new_cases_smoothed": 24.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 136.016, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 3.062, + "total_deaths_per_million": 6.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 56.48 + }, + { + "date": "2020-06-13", + "total_cases": 1103.0, + "new_cases": 18.0, + "new_cases_smoothed": 24.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 138.273, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 3.116, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 56.48 + }, + { + "date": "2020-06-14", + "total_cases": 1132.0, + "new_cases": 29.0, + "new_cases_smoothed": 26.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 141.908, + "new_cases_per_million": 3.635, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 56.48 + }, + { + "date": "2020-06-15", + "total_cases": 1169.0, + "new_cases": 37.0, + "new_cases_smoothed": 28.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 146.547, + "new_cases_per_million": 4.638, + "new_cases_smoothed_per_million": 3.582, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 56.48 + }, + { + "date": "2020-06-16", + "total_cases": 1176.0, + "new_cases": 7.0, + "new_cases_smoothed": 25.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 147.424, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 3.134, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 56.48 + }, + { + "date": "2020-06-17", + "total_cases": 1225.0, + "new_cases": 49.0, + "new_cases_smoothed": 28.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 153.567, + "new_cases_per_million": 6.143, + "new_cases_smoothed_per_million": 3.582, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 56.48 + }, + { + "date": "2020-06-18", + "total_cases": 1249.0, + "new_cases": 24.0, + "new_cases_smoothed": 26.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 156.575, + "new_cases_per_million": 3.009, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 56.48 + }, + { + "date": "2020-06-19", + "total_cases": 1272.0, + "new_cases": 23.0, + "new_cases_smoothed": 26.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 159.459, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 3.349, + "total_deaths_per_million": 6.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 56.48 + }, + { + "date": "2020-06-20", + "total_cases": 1298.0, + "new_cases": 26.0, + "new_cases_smoothed": 27.857, + "total_deaths": 53.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 162.718, + "new_cases_per_million": 3.259, + "new_cases_smoothed_per_million": 3.492, + "total_deaths_per_million": 6.644, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 56.48 + }, + { + "date": "2020-06-21", + "total_cases": 1309.0, + "new_cases": 11.0, + "new_cases_smoothed": 25.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 164.097, + "new_cases_per_million": 1.379, + "new_cases_smoothed_per_million": 3.17, + "total_deaths_per_million": 6.644, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 56.48 + }, + { + "date": "2020-06-22", + "total_cases": 1327.0, + "new_cases": 18.0, + "new_cases_smoothed": 22.571, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 166.354, + "new_cases_per_million": 2.256, + "new_cases_smoothed_per_million": 2.83, + "total_deaths_per_million": 6.895, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 56.48 + }, + { + "date": "2020-06-23", + "total_cases": 1340.0, + "new_cases": 13.0, + "new_cases_smoothed": 23.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 167.983, + "new_cases_per_million": 1.63, + "new_cases_smoothed_per_million": 2.937, + "total_deaths_per_million": 6.895, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 56.48 + }, + { + "date": "2020-06-24", + "total_cases": 1347.0, + "new_cases": 7.0, + "new_cases_smoothed": 17.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 168.861, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 2.185, + "total_deaths_per_million": 6.895, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 56.48 + }, + { + "date": "2020-06-25", + "total_cases": 1354.0, + "new_cases": 7.0, + "new_cases_smoothed": 15.0, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 169.738, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.88, + "total_deaths_per_million": 7.02, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 56.48 + }, + { + "date": "2020-06-26", + "total_cases": 1381.0, + "new_cases": 27.0, + "new_cases_smoothed": 15.571, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 173.123, + "new_cases_per_million": 3.385, + "new_cases_smoothed_per_million": 1.952, + "total_deaths_per_million": 7.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 56.48 + }, + { + "date": "2020-06-27", + "total_cases": 1394.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.714, + "total_deaths": 59.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 174.753, + "new_cases_per_million": 1.63, + "new_cases_smoothed_per_million": 1.719, + "total_deaths_per_million": 7.396, + "new_deaths_per_million": 0.376, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 56.48 + }, + { + "date": "2020-06-28", + "total_cases": 1410.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.429, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 176.759, + "new_cases_per_million": 2.006, + "new_cases_smoothed_per_million": 1.809, + "total_deaths_per_million": 7.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 56.48 + }, + { + "date": "2020-06-29", + "total_cases": 1427.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.286, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 178.89, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.791, + "total_deaths_per_million": 7.522, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 56.48 + }, + { + "date": "2020-06-30", + "total_cases": 1450.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.714, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 181.773, + "new_cases_per_million": 2.883, + "new_cases_smoothed_per_million": 1.97, + "total_deaths_per_million": 7.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 56.48 + }, + { + "date": "2020-07-01", + "total_cases": 1462.0, + "new_cases": 12.0, + "new_cases_smoothed": 16.429, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 183.277, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 2.059, + "total_deaths_per_million": 7.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 52.78 + }, + { + "date": "2020-07-02", + "total_cases": 1498.0, + "new_cases": 36.0, + "new_cases_smoothed": 20.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 187.79, + "new_cases_per_million": 4.513, + "new_cases_smoothed_per_million": 2.579, + "total_deaths_per_million": 7.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 52.78 + }, + { + "date": "2020-07-03", + "total_cases": 1518.0, + "new_cases": 20.0, + "new_cases_smoothed": 19.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 190.297, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 2.453, + "total_deaths_per_million": 7.522, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 46.3 + }, + { + "date": "2020-07-04", + "total_cases": 1524.0, + "new_cases": 6.0, + "new_cases_smoothed": 18.571, + "total_deaths": 62.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 191.05, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 2.328, + "total_deaths_per_million": 7.772, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 46.3 + }, + { + "date": "2020-07-05", + "total_cases": 1533.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.571, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 192.178, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 2.203, + "total_deaths_per_million": 7.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 46.3 + }, + { + "date": "2020-07-06", + "total_cases": 1542.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.429, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 193.306, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 2.059, + "total_deaths_per_million": 7.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 46.3 + }, + { + "date": "2020-07-07", + "total_cases": 1542.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 193.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.648, + "total_deaths_per_million": 7.772, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 46.3 + }, + { + "date": "2020-07-08", + "total_cases": 1572.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.714, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 197.067, + "new_cases_per_million": 3.761, + "new_cases_smoothed_per_million": 1.97, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 46.3 + }, + { + "date": "2020-07-09", + "total_cases": 1584.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 198.571, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 1.54, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 46.3 + }, + { + "date": "2020-07-10", + "total_cases": 1598.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 200.326, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 1.433, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 46.3 + }, + { + "date": "2020-07-11", + "total_cases": 1613.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.207, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.594, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 46.3 + }, + { + "date": "2020-07-12", + "total_cases": 1618.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.143, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.834, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 1.522, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 46.3 + }, + { + "date": "2020-07-13", + "total_cases": 1635.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 204.965, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 40.74 + }, + { + "date": "2020-07-14", + "total_cases": 1642.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.286, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 205.842, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.791, + "total_deaths_per_million": 7.898, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 40.74 + }, + { + "date": "2020-07-15", + "total_cases": 1651.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.286, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.97, + "new_cases_per_million": 1.128, + "new_cases_smoothed_per_million": 1.415, + "total_deaths_per_million": 8.023, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 40.74 + }, + { + "date": "2020-07-16", + "total_cases": 1668.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.0, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 209.102, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.504, + "total_deaths_per_million": 8.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 40.74 + }, + { + "date": "2020-07-17", + "total_cases": 1678.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.429, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 210.355, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 1.433, + "total_deaths_per_million": 8.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 40.74 + }, + { + "date": "2020-07-18", + "total_cases": 1688.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.714, + "total_deaths": 65.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 211.609, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 1.343, + "total_deaths_per_million": 8.148, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 40.74 + }, + { + "date": "2020-07-19", + "total_cases": 1701.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.857, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 213.238, + "new_cases_per_million": 1.63, + "new_cases_smoothed_per_million": 1.486, + "total_deaths_per_million": 8.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 40.74 + }, + { + "date": "2020-07-20", + "total_cases": 1711.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 214.492, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 8.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 40.74 + }, + { + "date": "2020-07-21", + "total_cases": 1711.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 214.492, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 40.74 + }, + { + "date": "2020-07-22", + "total_cases": 1727.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.857, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 216.498, + "new_cases_per_million": 2.006, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-07-23", + "total_cases": 1731.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 216.999, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 1.128, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-07-24", + "total_cases": 1752.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.571, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 219.632, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 1.325, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-07-25", + "total_cases": 1752.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 219.632, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.146, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-07-26", + "total_cases": 1768.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.571, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 221.638, + "new_cases_per_million": 2.006, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-07-27", + "total_cases": 1783.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.286, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 223.518, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-07-28", + "total_cases": 1783.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.518, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-29", + "total_cases": 1786.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.429, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.894, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 8.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-07-30", + "total_cases": 1803.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.286, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 226.025, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-07-31", + "total_cases": 1818.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 227.906, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-01", + "total_cases": 1818.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 227.906, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.182, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-02", + "total_cases": 1823.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.857, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 228.532, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-03", + "total_cases": 1843.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.571, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 231.04, + "new_cases_per_million": 2.507, + "new_cases_smoothed_per_million": 1.075, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-04", + "total_cases": 1848.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 231.666, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 1.164, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-05", + "total_cases": 1855.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.857, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.544, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-06", + "total_cases": 1860.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.143, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 233.171, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 1.021, + "total_deaths_per_million": 8.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-07", + "total_cases": 1877.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.429, + "total_deaths": 68.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 235.302, + "new_cases_per_million": 2.131, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 8.525, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-08", + "total_cases": 1887.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 236.556, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 8.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-09", + "total_cases": 1895.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.286, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.558, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 8.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-10", + "total_cases": 1916.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.429, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 240.191, + "new_cases_per_million": 2.633, + "new_cases_smoothed_per_million": 1.307, + "total_deaths_per_million": 8.525, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-11", + "total_cases": 1917.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.857, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 240.316, + "new_cases_per_million": 0.125, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-08-12", + "total_cases": 1932.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 242.197, + "new_cases_per_million": 1.88, + "new_cases_smoothed_per_million": 1.379, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-08-13", + "total_cases": 1937.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 242.824, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 1.379, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 32.41 + }, + { + "date": "2020-08-14", + "total_cases": 1940.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 243.2, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 1.128, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-15", + "total_cases": 1947.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.077, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.075, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-16", + "total_cases": 1954.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.955, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.057, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-17", + "total_cases": 1956.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.205, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.716, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-18", + "total_cases": 1956.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.205, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.698, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-19", + "total_cases": 1959.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.582, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 0.484, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-20", + "total_cases": 1961.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.832, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-21", + "total_cases": 1969.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 246.835, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.519, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-22", + "total_cases": 1972.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 247.211, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 0.448, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-23", + "total_cases": 1980.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 248.214, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-24", + "total_cases": 1992.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.143, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 249.718, + "new_cases_per_million": 1.504, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-25", + "total_cases": 1997.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.345, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-26", + "total_cases": 2001.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 250.847, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.752, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-27", + "total_cases": 2003.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.097, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.752, + "total_deaths_per_million": 8.65, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-08-28", + "total_cases": 2013.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.286, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 252.351, + "new_cases_per_million": 1.254, + "new_cases_smoothed_per_million": 0.788, + "total_deaths_per_million": 8.775, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-29", + "total_cases": 2013.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 252.351, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 8.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-30", + "total_cases": 2019.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 253.103, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.698, + "total_deaths_per_million": 8.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-08-31", + "total_cases": 2022.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 253.479, + "new_cases_per_million": 0.376, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 8.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 32.41 + }, + { + "date": "2020-09-01", + "total_cases": 2026.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 70.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 253.981, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.519, + "total_deaths_per_million": 8.775, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018 + }, + { + "date": "2020-09-02", + "total_cases": 2028.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 71.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.231, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.484, + "total_deaths_per_million": 8.901, + "new_deaths_per_million": 0.125, + "new_deaths_smoothed_per_million": 0.036 + }, + { + "date": "2020-09-03", + "total_cases": 2029.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 254.357, + "new_cases_per_million": 0.125, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 8.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036 + }, + { + "date": "2020-09-04", + "total_cases": 2035.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.143, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 255.109, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 8.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018 + }, + { + "date": "2020-09-05", + "total_cases": 2041.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.0, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 255.861, + "new_cases_per_million": 0.752, + "new_cases_smoothed_per_million": 0.501, + "total_deaths_per_million": 8.901, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018 + } + ] + }, + "SGP": { + "continent": "Asia", + "location": "Singapore", + "population": 5850343.0, + "population_density": 7915.731, + "median_age": 42.4, + "aged_65_older": 12.922, + "aged_70_older": 7.049, + "gdp_per_capita": 85535.383, + "cardiovasc_death_rate": 92.243, + "diabetes_prevalence": 10.99, + "female_smokers": 5.2, + "male_smokers": 28.3, + "hospital_beds_per_thousand": 2.4, + "life_expectancy": 83.62, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-24", + "total_cases": 3.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.513, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-26", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.684, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-27", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.098, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-28", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.855, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-29", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.197, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.171, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-30", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.709, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-01-31", + "total_cases": 13.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.222, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.735, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.077, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-03", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.077, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.077, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-05", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.102, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-06", + "total_cases": 28.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.786, + "new_cases_per_million": 0.684, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-02-07", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.128, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-08", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.641, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-09", + "total_cases": 40.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.837, + "new_cases_per_million": 1.197, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-10", + "total_cases": 43.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.35, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.61, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-11", + "total_cases": 45.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.692, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.659, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-12", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.034, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-13", + "total_cases": 50.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.547, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-14", + "total_cases": 58.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.914, + "new_cases_per_million": 1.367, + "new_cases_smoothed_per_million": 0.684, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-15", + "total_cases": 67.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.452, + "new_cases_per_million": 1.538, + "new_cases_smoothed_per_million": 0.83, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-16", + "total_cases": 72.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.307, + "new_cases_per_million": 0.855, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-17", + "total_cases": 75.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.82, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-18", + "total_cases": 77.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.162, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-19", + "total_cases": 81.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.845, + "new_cases_per_million": 0.684, + "new_cases_smoothed_per_million": 0.83, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-20", + "total_cases": 84.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.358, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.83, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-21", + "total_cases": 85.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.529, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.659, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-22", + "total_cases": 86.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.7, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-23", + "total_cases": 89.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.213, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-24", + "total_cases": 89.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-25", + "total_cases": 90.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.384, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-26", + "total_cases": 91.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.555, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-27", + "total_cases": 93.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.897, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-28", + "total_cases": 96.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.409, + "new_cases_per_million": 0.513, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-02-29", + "total_cases": 98.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.751, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.293, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-01", + "total_cases": 102.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.435, + "new_cases_per_million": 0.684, + "new_cases_smoothed_per_million": 0.317, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-02", + "total_cases": 106.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.119, + "new_cases_per_million": 0.684, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-03", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.46, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-04", + "total_cases": 110.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.802, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-05", + "total_cases": 112.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.144, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.464, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "total_cases": 117.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.999, + "new_cases_per_million": 0.855, + "new_cases_smoothed_per_million": 0.513, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-07", + "total_cases": 130.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.221, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-08", + "total_cases": 138.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.588, + "new_cases_per_million": 1.367, + "new_cases_smoothed_per_million": 0.879, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-09", + "total_cases": 150.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.64, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 1.074, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-10", + "total_cases": 160.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.349, + "new_cases_per_million": 1.709, + "new_cases_smoothed_per_million": 1.27, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 166.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.374, + "new_cases_per_million": 1.026, + "new_cases_smoothed_per_million": 1.367, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 178.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.426, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 1.612, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 187.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.964, + "new_cases_per_million": 1.538, + "new_cases_smoothed_per_million": 1.709, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-14", + "total_cases": 200.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.186, + "new_cases_per_million": 2.222, + "new_cases_smoothed_per_million": 1.709, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-15", + "total_cases": 214.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.579, + "new_cases_per_million": 2.393, + "new_cases_smoothed_per_million": 1.856, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-16", + "total_cases": 226.0, + "new_cases": 12.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.63, + "new_cases_per_million": 2.051, + "new_cases_smoothed_per_million": 1.856, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-17", + "total_cases": 243.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.536, + "new_cases_per_million": 2.906, + "new_cases_smoothed_per_million": 2.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-18", + "total_cases": 266.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.467, + "new_cases_per_million": 3.931, + "new_cases_smoothed_per_million": 2.442, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-19", + "total_cases": 313.0, + "new_cases": 47.0, + "new_cases_smoothed": 19.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.501, + "new_cases_per_million": 8.034, + "new_cases_smoothed_per_million": 3.297, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-20", + "total_cases": 345.0, + "new_cases": 32.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.971, + "new_cases_per_million": 5.47, + "new_cases_smoothed_per_million": 3.858, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-21", + "total_cases": 385.0, + "new_cases": 40.0, + "new_cases_smoothed": 26.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.808, + "new_cases_per_million": 6.837, + "new_cases_smoothed_per_million": 4.517, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-22", + "total_cases": 432.0, + "new_cases": 47.0, + "new_cases_smoothed": 31.143, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 73.842, + "new_cases_per_million": 8.034, + "new_cases_smoothed_per_million": 5.323, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 36.11 + }, + { + "date": "2020-03-23", + "total_cases": 455.0, + "new_cases": 23.0, + "new_cases_smoothed": 32.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 77.773, + "new_cases_per_million": 3.931, + "new_cases_smoothed_per_million": 5.592, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 36.11 + }, + { + "date": "2020-03-24", + "total_cases": 509.0, + "new_cases": 54.0, + "new_cases_smoothed": 38.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.003, + "new_cases_per_million": 9.23, + "new_cases_smoothed_per_million": 6.495, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 36.11 + }, + { + "date": "2020-03-25", + "total_cases": 558.0, + "new_cases": 49.0, + "new_cases_smoothed": 41.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 95.379, + "new_cases_per_million": 8.376, + "new_cases_smoothed_per_million": 7.13, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 36.11 + }, + { + "date": "2020-03-26", + "total_cases": 568.0, + "new_cases": 10.0, + "new_cases_smoothed": 36.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 97.088, + "new_cases_per_million": 1.709, + "new_cases_smoothed_per_million": 6.227, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 36.11 + }, + { + "date": "2020-03-27", + "total_cases": 594.0, + "new_cases": 26.0, + "new_cases_smoothed": 35.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 101.533, + "new_cases_per_million": 4.444, + "new_cases_smoothed_per_million": 6.08, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 38.89 + }, + { + "date": "2020-03-28", + "total_cases": 732.0, + "new_cases": 138.0, + "new_cases_smoothed": 49.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 125.121, + "new_cases_per_million": 23.588, + "new_cases_smoothed_per_million": 8.473, + "total_deaths_per_million": 0.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 38.89 + }, + { + "date": "2020-03-29", + "total_cases": 803.0, + "new_cases": 71.0, + "new_cases_smoothed": 53.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.257, + "new_cases_per_million": 12.136, + "new_cases_smoothed_per_million": 9.059, + "total_deaths_per_million": 0.513, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 38.89 + }, + { + "date": "2020-03-30", + "total_cases": 844.0, + "new_cases": 41.0, + "new_cases_smoothed": 55.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 144.265, + "new_cases_per_million": 7.008, + "new_cases_smoothed_per_million": 9.499, + "total_deaths_per_million": 0.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 38.89 + }, + { + "date": "2020-03-31", + "total_cases": 844.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 144.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.18, + "total_deaths_per_million": 0.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 38.89 + }, + { + "date": "2020-04-01", + "total_cases": 879.0, + "new_cases": 35.0, + "new_cases_smoothed": 45.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 150.248, + "new_cases_per_million": 5.983, + "new_cases_smoothed_per_million": 7.838, + "total_deaths_per_million": 0.513, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 38.89 + }, + { + "date": "2020-04-02", + "total_cases": 1000.0, + "new_cases": 121.0, + "new_cases_smoothed": 61.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 170.93, + "new_cases_per_million": 20.683, + "new_cases_smoothed_per_million": 10.549, + "total_deaths_per_million": 0.684, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 38.89 + }, + { + "date": "2020-04-03", + "total_cases": 1049.0, + "new_cases": 49.0, + "new_cases_smoothed": 65.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 179.306, + "new_cases_per_million": 8.376, + "new_cases_smoothed_per_million": 11.11, + "total_deaths_per_million": 0.855, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 48.15 + }, + { + "date": "2020-04-04", + "total_cases": 1114.0, + "new_cases": 65.0, + "new_cases_smoothed": 54.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 190.416, + "new_cases_per_million": 11.11, + "new_cases_smoothed_per_million": 9.328, + "total_deaths_per_million": 0.855, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 48.15 + }, + { + "date": "2020-04-05", + "total_cases": 1189.0, + "new_cases": 75.0, + "new_cases_smoothed": 55.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 203.236, + "new_cases_per_million": 12.82, + "new_cases_smoothed_per_million": 9.426, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 48.15 + }, + { + "date": "2020-04-06", + "total_cases": 1309.0, + "new_cases": 120.0, + "new_cases_smoothed": 66.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 223.748, + "new_cases_per_million": 20.512, + "new_cases_smoothed_per_million": 11.355, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 48.15 + }, + { + "date": "2020-04-07", + "total_cases": 1375.0, + "new_cases": 66.0, + "new_cases_smoothed": 75.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 235.029, + "new_cases_per_million": 11.281, + "new_cases_smoothed_per_million": 12.966, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "total_tests": 47486.0, + "total_tests_per_thousand": 8.117, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-04-08", + "total_cases": 1481.0, + "new_cases": 106.0, + "new_cases_smoothed": 86.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 253.148, + "new_cases_per_million": 18.119, + "new_cases_smoothed_per_million": 14.7, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 1623.0, + "new_cases": 142.0, + "new_cases_smoothed": 89.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.42, + "new_cases_per_million": 24.272, + "new_cases_smoothed_per_million": 15.213, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 1909.0, + "new_cases": 286.0, + "new_cases_smoothed": 122.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 326.306, + "new_cases_per_million": 48.886, + "new_cases_smoothed_per_million": 21.0, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 1909.0, + "new_cases": 0.0, + "new_cases_smoothed": 113.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 326.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.413, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 2299.0, + "new_cases": 390.0, + "new_cases_smoothed": 158.571, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 392.968, + "new_cases_per_million": 66.663, + "new_cases_smoothed_per_million": 27.105, + "total_deaths_per_million": 1.367, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.049, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 2532.0, + "new_cases": 233.0, + "new_cases_smoothed": 174.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 432.795, + "new_cases_per_million": 39.827, + "new_cases_smoothed_per_million": 29.864, + "total_deaths_per_million": 1.367, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "tests_units": "people tested", + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 2918.0, + "new_cases": 386.0, + "new_cases_smoothed": 220.429, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 498.774, + "new_cases_per_million": 65.979, + "new_cases_smoothed_per_million": 37.678, + "total_deaths_per_million": 1.538, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "total_tests": 59737.0, + "total_tests_per_thousand": 10.211, + "new_tests_smoothed": 1750.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 7.939, + "positive_rate": 0.126, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-15", + "total_cases": 3252.0, + "new_cases": 334.0, + "new_cases_smoothed": 253.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 555.865, + "new_cases_per_million": 57.091, + "new_cases_smoothed_per_million": 43.245, + "total_deaths_per_million": 1.709, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 2046.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 8.087, + "positive_rate": 0.124, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-16", + "total_cases": 3699.0, + "new_cases": 447.0, + "new_cases_smoothed": 296.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 632.271, + "new_cases_per_million": 76.406, + "new_cases_smoothed_per_million": 50.693, + "total_deaths_per_million": 1.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 2341.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 7.894, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-17", + "total_cases": 4427.0, + "new_cases": 728.0, + "new_cases_smoothed": 359.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 756.708, + "new_cases_per_million": 124.437, + "new_cases_smoothed_per_million": 61.486, + "total_deaths_per_million": 1.709, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 2636.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 7.327999999999999, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-18", + "total_cases": 5050.0, + "new_cases": 623.0, + "new_cases_smoothed": 448.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 863.197, + "new_cases_per_million": 106.489, + "new_cases_smoothed_per_million": 76.699, + "total_deaths_per_million": 1.88, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.122, + "new_tests_smoothed": 2932.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 6.534, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-19", + "total_cases": 5992.0, + "new_cases": 942.0, + "new_cases_smoothed": 527.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1024.213, + "new_cases_per_million": 161.016, + "new_cases_smoothed_per_million": 90.178, + "total_deaths_per_million": 1.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 3227.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 6.117000000000001, + "positive_rate": 0.163, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-20", + "total_cases": 6588.0, + "new_cases": 596.0, + "new_cases_smoothed": 579.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1126.088, + "new_cases_per_million": 101.874, + "new_cases_smoothed_per_million": 99.042, + "total_deaths_per_million": 1.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "total_tests": 82644.0, + "total_tests_per_thousand": 14.126, + "new_tests_smoothed": 3522.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 6.077999999999999, + "positive_rate": 0.165, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-21", + "total_cases": 8014.0, + "new_cases": 1426.0, + "new_cases_smoothed": 728.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1369.834, + "new_cases_per_million": 243.746, + "new_cases_smoothed_per_million": 124.437, + "total_deaths_per_million": 1.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 3625.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 4.979, + "positive_rate": 0.201, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 9125.0, + "new_cases": 1111.0, + "new_cases_smoothed": 839.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1559.738, + "new_cases_per_million": 189.903, + "new_cases_smoothed_per_million": 143.41, + "total_deaths_per_million": 1.88, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 3433.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 4.092, + "positive_rate": 0.244, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 10141.0, + "new_cases": 1016.0, + "new_cases_smoothed": 920.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1733.403, + "new_cases_per_million": 173.665, + "new_cases_smoothed_per_million": 157.305, + "total_deaths_per_million": 2.051, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 3240.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 3.5210000000000004, + "positive_rate": 0.284, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 11178.0, + "new_cases": 1037.0, + "new_cases_smoothed": 964.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1910.657, + "new_cases_per_million": 177.255, + "new_cases_smoothed_per_million": 164.85, + "total_deaths_per_million": 2.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 3047.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 3.159, + "positive_rate": 0.317, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 12075.0, + "new_cases": 897.0, + "new_cases_smoothed": 1003.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2063.982, + "new_cases_per_million": 153.324, + "new_cases_smoothed_per_million": 171.541, + "total_deaths_per_million": 2.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 2855.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 2.845, + "positive_rate": 0.35200000000000004, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 12693.0, + "new_cases": 618.0, + "new_cases_smoothed": 957.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2169.616, + "new_cases_per_million": 105.635, + "new_cases_smoothed_per_million": 163.629, + "total_deaths_per_million": 2.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 2662.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 2.781, + "positive_rate": 0.36, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 13624.0, + "new_cases": 931.0, + "new_cases_smoothed": 1005.143, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2328.752, + "new_cases_per_million": 159.136, + "new_cases_smoothed_per_million": 171.809, + "total_deaths_per_million": 2.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 99929.0, + "total_tests_per_thousand": 17.081, + "new_tests_smoothed": 2469.0, + "new_tests_smoothed_per_thousand": 0.422, + "tests_per_case": 2.456, + "positive_rate": 0.40700000000000003, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-28", + "total_cases": 14423.0, + "new_cases": 799.0, + "new_cases_smoothed": 915.571, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2465.326, + "new_cases_per_million": 136.573, + "new_cases_smoothed_per_million": 156.499, + "total_deaths_per_million": 2.393, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 2598.0, + "new_tests_smoothed_per_thousand": 0.444, + "tests_per_case": 2.838, + "positive_rate": 0.35200000000000004, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-29", + "total_cases": 14951.0, + "new_cases": 528.0, + "new_cases_smoothed": 832.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2555.577, + "new_cases_per_million": 90.251, + "new_cases_smoothed_per_million": 142.263, + "total_deaths_per_million": 2.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 2727.0, + "new_tests_smoothed_per_thousand": 0.466, + "tests_per_case": 3.2769999999999997, + "positive_rate": 0.305, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-04-30", + "total_cases": 15641.0, + "new_cases": 690.0, + "new_cases_smoothed": 785.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2673.518, + "new_cases_per_million": 117.942, + "new_cases_smoothed_per_million": 134.302, + "total_deaths_per_million": 2.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 2856.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 3.635, + "positive_rate": 0.275, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-01", + "total_cases": 16169.0, + "new_cases": 528.0, + "new_cases_smoothed": 713.0, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2763.77, + "new_cases_per_million": 90.251, + "new_cases_smoothed_per_million": 121.873, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 2984.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 4.185, + "positive_rate": 0.239, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-02", + "total_cases": 17101.0, + "new_cases": 932.0, + "new_cases_smoothed": 718.0, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2923.076, + "new_cases_per_million": 159.307, + "new_cases_smoothed_per_million": 122.728, + "total_deaths_per_million": 2.735, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 3113.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 4.336, + "positive_rate": 0.231, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-03", + "total_cases": 17548.0, + "new_cases": 447.0, + "new_cases_smoothed": 693.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2999.482, + "new_cases_per_million": 76.406, + "new_cases_smoothed_per_million": 118.552, + "total_deaths_per_million": 2.906, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.122, + "new_tests_smoothed": 3242.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 4.6739999999999995, + "positive_rate": 0.214, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-04", + "total_cases": 18205.0, + "new_cases": 657.0, + "new_cases_smoothed": 654.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3111.783, + "new_cases_per_million": 112.301, + "new_cases_smoothed_per_million": 111.862, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.147, + "total_tests": 123525.0, + "total_tests_per_thousand": 21.114, + "new_tests_smoothed": 3371.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 5.151, + "positive_rate": 0.19399999999999998, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-05", + "total_cases": 18778.0, + "new_cases": 573.0, + "new_cases_smoothed": 622.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3209.726, + "new_cases_per_million": 97.943, + "new_cases_smoothed_per_million": 106.343, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 4381.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 7.042000000000001, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-06", + "total_cases": 19410.0, + "new_cases": 632.0, + "new_cases_smoothed": 637.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3317.754, + "new_cases_per_million": 108.028, + "new_cases_smoothed_per_million": 108.883, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 5391.0, + "new_tests_smoothed_per_thousand": 0.921, + "tests_per_case": 8.463, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-07", + "total_cases": 20198.0, + "new_cases": 788.0, + "new_cases_smoothed": 651.0, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3452.447, + "new_cases_per_million": 134.693, + "new_cases_smoothed_per_million": 111.276, + "total_deaths_per_million": 3.419, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.147, + "new_tests_smoothed": 6402.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 9.834, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-08", + "total_cases": 20939.0, + "new_cases": 741.0, + "new_cases_smoothed": 681.429, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3579.106, + "new_cases_per_million": 126.659, + "new_cases_smoothed_per_million": 116.477, + "total_deaths_per_million": 3.419, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.122, + "new_tests_smoothed": 7412.0, + "new_tests_smoothed_per_thousand": 1.267, + "tests_per_case": 10.877, + "positive_rate": 0.092, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-09", + "total_cases": 21707.0, + "new_cases": 768.0, + "new_cases_smoothed": 658.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3710.381, + "new_cases_per_million": 131.274, + "new_cases_smoothed_per_million": 112.472, + "total_deaths_per_million": 3.419, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.098, + "new_tests_smoothed": 8422.0, + "new_tests_smoothed_per_thousand": 1.44, + "tests_per_case": 12.799000000000001, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-10", + "total_cases": 22460.0, + "new_cases": 753.0, + "new_cases_smoothed": 701.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3839.091, + "new_cases_per_million": 128.71, + "new_cases_smoothed_per_million": 119.944, + "total_deaths_per_million": 3.419, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "total_tests": 186183.0, + "total_tests_per_thousand": 31.824, + "new_tests_smoothed": 9433.0, + "new_tests_smoothed_per_thousand": 1.612, + "tests_per_case": 13.443, + "positive_rate": 0.07400000000000001, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-11", + "total_cases": 23336.0, + "new_cases": 876.0, + "new_cases_smoothed": 733.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3988.826, + "new_cases_per_million": 149.735, + "new_cases_smoothed_per_million": 125.292, + "total_deaths_per_million": 3.419, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 9042.0, + "new_tests_smoothed_per_thousand": 1.546, + "tests_per_case": 12.335999999999999, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 85.19 + }, + { + "date": "2020-05-12", + "total_cases": 23787.0, + "new_cases": 451.0, + "new_cases_smoothed": 715.571, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4065.915, + "new_cases_per_million": 77.089, + "new_cases_smoothed_per_million": 122.313, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 7641.0, + "new_tests_smoothed_per_thousand": 1.306, + "tests_per_case": 10.677999999999999, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-13", + "total_cases": 24671.0, + "new_cases": 884.0, + "new_cases_smoothed": 751.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4217.018, + "new_cases_per_million": 151.102, + "new_cases_smoothed_per_million": 128.466, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "new_tests_smoothed": 6239.0, + "new_tests_smoothed_per_thousand": 1.066, + "tests_per_case": 8.301, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-14", + "total_cases": 25346.0, + "new_cases": 675.0, + "new_cases_smoothed": 735.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4332.396, + "new_cases_per_million": 115.378, + "new_cases_smoothed_per_million": 125.707, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4838.0, + "new_tests_smoothed_per_thousand": 0.827, + "tests_per_case": 6.577999999999999, + "positive_rate": 0.152, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-15", + "total_cases": 26098.0, + "new_cases": 752.0, + "new_cases_smoothed": 737.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4460.935, + "new_cases_per_million": 128.539, + "new_cases_smoothed_per_million": 125.976, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 3437.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 4.664, + "positive_rate": 0.214, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-16", + "total_cases": 26891.0, + "new_cases": 793.0, + "new_cases_smoothed": 740.571, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4596.483, + "new_cases_per_million": 135.548, + "new_cases_smoothed_per_million": 126.586, + "total_deaths_per_million": 3.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 2036.0, + "new_tests_smoothed_per_thousand": 0.348, + "tests_per_case": 2.7489999999999997, + "positive_rate": 0.364, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-17", + "total_cases": 27356.0, + "new_cases": 465.0, + "new_cases_smoothed": 699.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4675.965, + "new_cases_per_million": 79.483, + "new_cases_smoothed_per_million": 119.553, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 635.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-18", + "total_cases": 28038.0, + "new_cases": 682.0, + "new_cases_smoothed": 671.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4792.54, + "new_cases_per_million": 116.574, + "new_cases_smoothed_per_million": 114.816, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "total_tests": 191260.0, + "total_tests_per_thousand": 32.692, + "new_tests_smoothed": 635.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-19", + "total_cases": 28343.0, + "new_cases": 305.0, + "new_cases_smoothed": 650.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4844.673, + "new_cases_per_million": 52.134, + "new_cases_smoothed_per_million": 111.251, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 1110.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 1.705, + "positive_rate": 0.586, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-20", + "total_cases": 28794.0, + "new_cases": 451.0, + "new_cases_smoothed": 589.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4921.763, + "new_cases_per_million": 77.089, + "new_cases_smoothed_per_million": 100.678, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 1585.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 2.6910000000000003, + "positive_rate": 0.37200000000000005, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-21", + "total_cases": 29364.0, + "new_cases": 570.0, + "new_cases_smoothed": 574.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5019.193, + "new_cases_per_million": 97.43, + "new_cases_smoothed_per_million": 98.114, + "total_deaths_per_million": 3.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 2061.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 3.591, + "positive_rate": 0.27899999999999997, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-22", + "total_cases": 29812.0, + "new_cases": 448.0, + "new_cases_smoothed": 530.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5095.77, + "new_cases_per_million": 76.577, + "new_cases_smoothed_per_million": 90.691, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 2536.0, + "new_tests_smoothed_per_thousand": 0.433, + "tests_per_case": 4.78, + "positive_rate": 0.209, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-23", + "total_cases": 30426.0, + "new_cases": 614.0, + "new_cases_smoothed": 505.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5200.721, + "new_cases_per_million": 104.951, + "new_cases_smoothed_per_million": 86.32, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 3012.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 5.9639999999999995, + "positive_rate": 0.168, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-24", + "total_cases": 31068.0, + "new_cases": 642.0, + "new_cases_smoothed": 530.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5310.458, + "new_cases_per_million": 109.737, + "new_cases_smoothed_per_million": 90.642, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 3487.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 6.5760000000000005, + "positive_rate": 0.152, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-25", + "total_cases": 31616.0, + "new_cases": 548.0, + "new_cases_smoothed": 511.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5404.128, + "new_cases_per_million": 93.67, + "new_cases_smoothed_per_million": 87.37, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 218996.0, + "total_tests_per_thousand": 37.433, + "new_tests_smoothed": 3962.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 7.751, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-26", + "total_cases": 31960.0, + "new_cases": 344.0, + "new_cases_smoothed": 516.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5462.928, + "new_cases_per_million": 58.8, + "new_cases_smoothed_per_million": 88.322, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4323.0, + "new_tests_smoothed_per_thousand": 0.739, + "tests_per_case": 8.366, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-27", + "total_cases": 32343.0, + "new_cases": 383.0, + "new_cases_smoothed": 507.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5528.394, + "new_cases_per_million": 65.466, + "new_cases_smoothed_per_million": 86.662, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4683.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 9.237, + "positive_rate": 0.10800000000000001, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-28", + "total_cases": 32876.0, + "new_cases": 533.0, + "new_cases_smoothed": 501.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5619.5, + "new_cases_per_million": 91.106, + "new_cases_smoothed_per_million": 85.758, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5044.0, + "new_tests_smoothed_per_thousand": 0.862, + "tests_per_case": 10.054, + "positive_rate": 0.099, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-29", + "total_cases": 33249.0, + "new_cases": 373.0, + "new_cases_smoothed": 491.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5683.257, + "new_cases_per_million": 63.757, + "new_cases_smoothed_per_million": 83.927, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5404.0, + "new_tests_smoothed_per_thousand": 0.924, + "tests_per_case": 11.005999999999998, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-30", + "total_cases": 33860.0, + "new_cases": 611.0, + "new_cases_smoothed": 490.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5787.695, + "new_cases_per_million": 104.438, + "new_cases_smoothed_per_million": 83.853, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5764.0, + "new_tests_smoothed_per_thousand": 0.985, + "tests_per_case": 11.75, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-05-31", + "total_cases": 34366.0, + "new_cases": 506.0, + "new_cases_smoothed": 471.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5874.185, + "new_cases_per_million": 86.491, + "new_cases_smoothed_per_million": 80.533, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6125.0, + "new_tests_smoothed_per_thousand": 1.047, + "tests_per_case": 13.0, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-06-01", + "total_cases": 34884.0, + "new_cases": 518.0, + "new_cases_smoothed": 466.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5962.727, + "new_cases_per_million": 88.542, + "new_cases_smoothed_per_million": 79.8, + "total_deaths_per_million": 3.931, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 264393.0, + "total_tests_per_thousand": 45.193, + "new_tests_smoothed": 6485.0, + "new_tests_smoothed_per_thousand": 1.108, + "tests_per_case": 13.890999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 81.48 + }, + { + "date": "2020-06-02", + "total_cases": 35292.0, + "new_cases": 408.0, + "new_cases_smoothed": 476.0, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6032.467, + "new_cases_per_million": 69.74, + "new_cases_smoothed_per_million": 81.363, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5979.0, + "new_tests_smoothed_per_thousand": 1.022, + "tests_per_case": 12.561, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 35836.0, + "new_cases": 544.0, + "new_cases_smoothed": 499.0, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6125.453, + "new_cases_per_million": 92.986, + "new_cases_smoothed_per_million": 85.294, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5472.0, + "new_tests_smoothed_per_thousand": 0.935, + "tests_per_case": 10.966, + "positive_rate": 0.091, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 36405.0, + "new_cases": 569.0, + "new_cases_smoothed": 504.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6222.712, + "new_cases_per_million": 97.259, + "new_cases_smoothed_per_million": 86.173, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4965.0, + "new_tests_smoothed_per_thousand": 0.849, + "tests_per_case": 9.847999999999999, + "positive_rate": 0.102, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 36922.0, + "new_cases": 517.0, + "new_cases_smoothed": 524.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6311.083, + "new_cases_per_million": 88.371, + "new_cases_smoothed_per_million": 89.689, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4459.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 8.498, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 37183.0, + "new_cases": 261.0, + "new_cases_smoothed": 474.714, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6355.696, + "new_cases_per_million": 44.613, + "new_cases_smoothed_per_million": 81.143, + "total_deaths_per_million": 4.102, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 3952.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 8.325, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-07", + "total_cases": 37527.0, + "new_cases": 344.0, + "new_cases_smoothed": 451.571, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6414.496, + "new_cases_per_million": 58.8, + "new_cases_smoothed_per_million": 77.187, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 3445.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 7.629, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-08", + "total_cases": 37910.0, + "new_cases": 383.0, + "new_cases_smoothed": 432.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6479.962, + "new_cases_per_million": 65.466, + "new_cases_smoothed_per_million": 73.891, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "total_tests": 284963.0, + "total_tests_per_thousand": 48.709, + "new_tests_smoothed": 2939.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 6.7989999999999995, + "positive_rate": 0.147, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-09", + "total_cases": 38296.0, + "new_cases": 386.0, + "new_cases_smoothed": 429.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6545.941, + "new_cases_per_million": 65.979, + "new_cases_smoothed_per_million": 73.353, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 3660.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 8.529, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 38514.0, + "new_cases": 218.0, + "new_cases_smoothed": 382.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6583.204, + "new_cases_per_million": 37.263, + "new_cases_smoothed_per_million": 65.393, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 4382.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 11.454, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 38965.0, + "new_cases": 451.0, + "new_cases_smoothed": 365.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6660.293, + "new_cases_per_million": 77.089, + "new_cases_smoothed_per_million": 62.512, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5104.0, + "new_tests_smoothed_per_thousand": 0.872, + "tests_per_case": 13.956, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 39387.0, + "new_cases": 422.0, + "new_cases_smoothed": 352.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6732.426, + "new_cases_per_million": 72.133, + "new_cases_smoothed_per_million": 60.192, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5825.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 16.542, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-13", + "total_cases": 39850.0, + "new_cases": 463.0, + "new_cases_smoothed": 381.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6811.566, + "new_cases_per_million": 79.141, + "new_cases_smoothed_per_million": 65.124, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 6547.0, + "new_tests_smoothed_per_thousand": 1.119, + "tests_per_case": 17.184, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 40197.0, + "new_cases": 347.0, + "new_cases_smoothed": 381.429, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6870.879, + "new_cases_per_million": 59.313, + "new_cases_smoothed_per_million": 65.198, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7268.0, + "new_tests_smoothed_per_thousand": 1.242, + "tests_per_case": 19.055, + "positive_rate": 0.052000000000000005, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-15", + "total_cases": 40604.0, + "new_cases": 407.0, + "new_cases_smoothed": 384.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6940.448, + "new_cases_per_million": 69.569, + "new_cases_smoothed_per_million": 65.784, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 340894.0, + "total_tests_per_thousand": 58.269, + "new_tests_smoothed": 7990.0, + "new_tests_smoothed_per_thousand": 1.366, + "tests_per_case": 20.761, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-16", + "total_cases": 40818.0, + "new_cases": 214.0, + "new_cases_smoothed": 360.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6977.027, + "new_cases_per_million": 36.579, + "new_cases_smoothed_per_million": 61.584, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7580.0, + "new_tests_smoothed_per_thousand": 1.296, + "tests_per_case": 21.039, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-17", + "total_cases": 40969.0, + "new_cases": 151.0, + "new_cases_smoothed": 350.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7002.837, + "new_cases_per_million": 25.81, + "new_cases_smoothed_per_million": 59.948, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7171.0, + "new_tests_smoothed_per_thousand": 1.226, + "tests_per_case": 20.447, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-18", + "total_cases": 41216.0, + "new_cases": 247.0, + "new_cases_smoothed": 321.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7045.057, + "new_cases_per_million": 42.22, + "new_cases_smoothed_per_million": 54.966, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 6761.0, + "new_tests_smoothed_per_thousand": 1.156, + "tests_per_case": 21.025, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-06-19", + "total_cases": 41473.0, + "new_cases": 257.0, + "new_cases_smoothed": 298.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7088.986, + "new_cases_per_million": 43.929, + "new_cases_smoothed_per_million": 50.937, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 6351.0, + "new_tests_smoothed_per_thousand": 1.086, + "tests_per_case": 21.311999999999998, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-20", + "total_cases": 41615.0, + "new_cases": 142.0, + "new_cases_smoothed": 252.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7113.258, + "new_cases_per_million": 24.272, + "new_cases_smoothed_per_million": 43.099, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 5942.0, + "new_tests_smoothed_per_thousand": 1.016, + "tests_per_case": 23.566, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-21", + "total_cases": 41833.0, + "new_cases": 218.0, + "new_cases_smoothed": 233.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7150.521, + "new_cases_per_million": 37.263, + "new_cases_smoothed_per_million": 39.949, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5532.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 23.67, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-22", + "total_cases": 42095.0, + "new_cases": 262.0, + "new_cases_smoothed": 213.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7195.305, + "new_cases_per_million": 44.784, + "new_cases_smoothed_per_million": 36.408, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 376749.0, + "total_tests_per_thousand": 64.398, + "new_tests_smoothed": 5122.0, + "new_tests_smoothed_per_thousand": 0.876, + "tests_per_case": 24.046999999999997, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-23", + "total_cases": 42313.0, + "new_cases": 218.0, + "new_cases_smoothed": 213.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7232.567, + "new_cases_per_million": 37.263, + "new_cases_smoothed_per_million": 36.506, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5159.0, + "new_tests_smoothed_per_thousand": 0.882, + "tests_per_case": 24.156, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-24", + "total_cases": 42432.0, + "new_cases": 119.0, + "new_cases_smoothed": 209.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7252.908, + "new_cases_per_million": 20.341, + "new_cases_smoothed_per_million": 35.724, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5195.0, + "new_tests_smoothed_per_thousand": 0.888, + "tests_per_case": 24.855999999999998, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-25", + "total_cases": 42623.0, + "new_cases": 191.0, + "new_cases_smoothed": 201.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7285.556, + "new_cases_per_million": 32.648, + "new_cases_smoothed_per_million": 34.357, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5232.0, + "new_tests_smoothed_per_thousand": 0.894, + "tests_per_case": 26.03, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-26", + "total_cases": 42736.0, + "new_cases": 113.0, + "new_cases_smoothed": 180.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7304.871, + "new_cases_per_million": 19.315, + "new_cases_smoothed_per_million": 30.841, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5268.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 29.197, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-27", + "total_cases": 42955.0, + "new_cases": 219.0, + "new_cases_smoothed": 191.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7342.305, + "new_cases_per_million": 37.434, + "new_cases_smoothed_per_million": 32.721, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5305.0, + "new_tests_smoothed_per_thousand": 0.907, + "tests_per_case": 27.713, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-28", + "total_cases": 43246.0, + "new_cases": 291.0, + "new_cases_smoothed": 201.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7392.045, + "new_cases_per_million": 49.741, + "new_cases_smoothed_per_million": 34.503, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5342.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 26.464000000000002, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-29", + "total_cases": 43459.0, + "new_cases": 213.0, + "new_cases_smoothed": 194.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7428.453, + "new_cases_per_million": 36.408, + "new_cases_smoothed_per_million": 33.307, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 414396.0, + "total_tests_per_thousand": 70.833, + "new_tests_smoothed": 5378.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 27.6, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-06-30", + "total_cases": 43661.0, + "new_cases": 202.0, + "new_cases_smoothed": 192.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7462.981, + "new_cases_per_million": 34.528, + "new_cases_smoothed_per_million": 32.916, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5684.0, + "new_tests_smoothed_per_thousand": 0.972, + "tests_per_case": 29.516, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-01", + "total_cases": 43907.0, + "new_cases": 246.0, + "new_cases_smoothed": 210.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7505.03, + "new_cases_per_million": 42.049, + "new_cases_smoothed_per_million": 36.017, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5989.0, + "new_tests_smoothed_per_thousand": 1.024, + "tests_per_case": 28.421999999999997, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-02", + "total_cases": 44122.0, + "new_cases": 215.0, + "new_cases_smoothed": 214.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7541.78, + "new_cases_per_million": 36.75, + "new_cases_smoothed_per_million": 36.603, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6294.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 29.392, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-03", + "total_cases": 44310.0, + "new_cases": 188.0, + "new_cases_smoothed": 224.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7573.915, + "new_cases_per_million": 32.135, + "new_cases_smoothed_per_million": 38.435, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6600.0, + "new_tests_smoothed_per_thousand": 1.128, + "tests_per_case": 29.351999999999997, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-04", + "total_cases": 44479.0, + "new_cases": 169.0, + "new_cases_smoothed": 217.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7602.802, + "new_cases_per_million": 28.887, + "new_cases_smoothed_per_million": 37.214, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6905.0, + "new_tests_smoothed_per_thousand": 1.18, + "tests_per_case": 31.715999999999998, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-05", + "total_cases": 44664.0, + "new_cases": 185.0, + "new_cases_smoothed": 202.571, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7634.424, + "new_cases_per_million": 31.622, + "new_cases_smoothed_per_million": 34.626, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7211.0, + "new_tests_smoothed_per_thousand": 1.233, + "tests_per_case": 35.597, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-06", + "total_cases": 44664.0, + "new_cases": 0.0, + "new_cases_smoothed": 172.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7634.424, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.424, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 467008.0, + "total_tests_per_thousand": 79.826, + "new_tests_smoothed": 7516.0, + "new_tests_smoothed_per_thousand": 1.285, + "tests_per_case": 43.661, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-07", + "total_cases": 44983.0, + "new_cases": 319.0, + "new_cases_smoothed": 188.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7688.951, + "new_cases_per_million": 54.527, + "new_cases_smoothed_per_million": 32.281, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7522.0, + "new_tests_smoothed_per_thousand": 1.286, + "tests_per_case": 39.829, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-08", + "total_cases": 45140.0, + "new_cases": 157.0, + "new_cases_smoothed": 176.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7715.787, + "new_cases_per_million": 26.836, + "new_cases_smoothed_per_million": 30.108, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7528.0, + "new_tests_smoothed_per_thousand": 1.287, + "tests_per_case": 42.738, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-09", + "total_cases": 45298.0, + "new_cases": 158.0, + "new_cases_smoothed": 168.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7742.794, + "new_cases_per_million": 27.007, + "new_cases_smoothed_per_million": 28.716, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7534.0, + "new_tests_smoothed_per_thousand": 1.288, + "tests_per_case": 44.845, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-10", + "total_cases": 45422.0, + "new_cases": 124.0, + "new_cases_smoothed": 158.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7763.989, + "new_cases_per_million": 21.195, + "new_cases_smoothed_per_million": 27.153, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7540.0, + "new_tests_smoothed_per_thousand": 1.289, + "tests_per_case": 47.464, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-11", + "total_cases": 45613.0, + "new_cases": 191.0, + "new_cases_smoothed": 162.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7796.637, + "new_cases_per_million": 32.648, + "new_cases_smoothed_per_million": 27.691, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7546.0, + "new_tests_smoothed_per_thousand": 1.29, + "tests_per_case": 46.58, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-12", + "total_cases": 45783.0, + "new_cases": 170.0, + "new_cases_smoothed": 159.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7825.695, + "new_cases_per_million": 29.058, + "new_cases_smoothed_per_million": 27.324, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7552.0, + "new_tests_smoothed_per_thousand": 1.291, + "tests_per_case": 47.242, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-13", + "total_cases": 45961.0, + "new_cases": 178.0, + "new_cases_smoothed": 185.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7856.121, + "new_cases_per_million": 30.426, + "new_cases_smoothed_per_million": 31.671, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 519911.0, + "total_tests_per_thousand": 88.868, + "new_tests_smoothed": 7558.0, + "new_tests_smoothed_per_thousand": 1.292, + "tests_per_case": 40.791, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-14", + "total_cases": 46283.0, + "new_cases": 322.0, + "new_cases_smoothed": 185.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7911.16, + "new_cases_per_million": 55.04, + "new_cases_smoothed_per_million": 31.744, + "total_deaths_per_million": 4.444, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7531.0, + "new_tests_smoothed_per_thousand": 1.287, + "tests_per_case": 40.552, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 46629.0, + "new_cases": 346.0, + "new_cases_smoothed": 212.714, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7970.302, + "new_cases_per_million": 59.142, + "new_cases_smoothed_per_million": 36.359, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7504.0, + "new_tests_smoothed_per_thousand": 1.283, + "tests_per_case": 35.277, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 46878.0, + "new_cases": 249.0, + "new_cases_smoothed": 225.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8012.864, + "new_cases_per_million": 42.562, + "new_cases_smoothed_per_million": 38.581, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7477.0, + "new_tests_smoothed_per_thousand": 1.278, + "tests_per_case": 33.126, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 47126.0, + "new_cases": 248.0, + "new_cases_smoothed": 243.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8055.254, + "new_cases_per_million": 42.391, + "new_cases_smoothed_per_million": 41.609, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7450.0, + "new_tests_smoothed_per_thousand": 1.273, + "tests_per_case": 30.604, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-18", + "total_cases": 47453.0, + "new_cases": 327.0, + "new_cases_smoothed": 262.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8111.148, + "new_cases_per_million": 55.894, + "new_cases_smoothed_per_million": 44.93, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7423.0, + "new_tests_smoothed_per_thousand": 1.269, + "tests_per_case": 28.24, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-19", + "total_cases": 47655.0, + "new_cases": 202.0, + "new_cases_smoothed": 267.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8145.676, + "new_cases_per_million": 34.528, + "new_cases_smoothed_per_million": 45.712, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7396.0, + "new_tests_smoothed_per_thousand": 1.264, + "tests_per_case": 27.656, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-20", + "total_cases": 47912.0, + "new_cases": 257.0, + "new_cases_smoothed": 278.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8189.605, + "new_cases_per_million": 43.929, + "new_cases_smoothed_per_million": 47.641, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "total_tests": 571496.0, + "total_tests_per_thousand": 97.686, + "new_tests_smoothed": 7369.0, + "new_tests_smoothed_per_thousand": 1.26, + "tests_per_case": 26.439, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-21", + "total_cases": 48035.0, + "new_cases": 123.0, + "new_cases_smoothed": 250.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8210.63, + "new_cases_per_million": 21.024, + "new_cases_smoothed_per_million": 42.781, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 7231.0, + "new_tests_smoothed_per_thousand": 1.236, + "tests_per_case": 28.891, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-22", + "total_cases": 48434.0, + "new_cases": 399.0, + "new_cases_smoothed": 257.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8278.831, + "new_cases_per_million": 68.201, + "new_cases_smoothed_per_million": 44.076, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7093.0, + "new_tests_smoothed_per_thousand": 1.212, + "tests_per_case": 27.506999999999998, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 53.7 + }, + { + "date": "2020-07-23", + "total_cases": 48744.0, + "new_cases": 310.0, + "new_cases_smoothed": 266.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8331.819, + "new_cases_per_million": 52.988, + "new_cases_smoothed_per_million": 45.565, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6955.0, + "new_tests_smoothed_per_thousand": 1.189, + "tests_per_case": 26.090999999999998, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-24", + "total_cases": 49098.0, + "new_cases": 354.0, + "new_cases_smoothed": 281.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8392.328, + "new_cases_per_million": 60.509, + "new_cases_smoothed_per_million": 48.153, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6817.0, + "new_tests_smoothed_per_thousand": 1.165, + "tests_per_case": 24.198, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-25", + "total_cases": 49375.0, + "new_cases": 277.0, + "new_cases_smoothed": 274.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8439.676, + "new_cases_per_million": 47.348, + "new_cases_smoothed_per_million": 46.933, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6678.0, + "new_tests_smoothed_per_thousand": 1.141, + "tests_per_case": 24.322, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-26", + "total_cases": 49888.0, + "new_cases": 513.0, + "new_cases_smoothed": 319.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8527.363, + "new_cases_per_million": 87.687, + "new_cases_smoothed_per_million": 54.527, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6540.0, + "new_tests_smoothed_per_thousand": 1.118, + "tests_per_case": 20.502, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-27", + "total_cases": 50369.0, + "new_cases": 481.0, + "new_cases_smoothed": 351.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8609.581, + "new_cases_per_million": 82.217, + "new_cases_smoothed_per_million": 59.996, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 616310.0, + "total_tests_per_thousand": 105.346, + "new_tests_smoothed": 6402.0, + "new_tests_smoothed_per_thousand": 1.094, + "tests_per_case": 18.239, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-28", + "total_cases": 50838.0, + "new_cases": 469.0, + "new_cases_smoothed": 400.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8689.747, + "new_cases_per_million": 80.166, + "new_cases_smoothed_per_million": 68.445, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6189.0, + "new_tests_smoothed_per_thousand": 1.058, + "tests_per_case": 15.456, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-29", + "total_cases": 51197.0, + "new_cases": 359.0, + "new_cases_smoothed": 394.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8751.111, + "new_cases_per_million": 61.364, + "new_cases_smoothed_per_million": 67.469, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5977.0, + "new_tests_smoothed_per_thousand": 1.022, + "tests_per_case": 15.142999999999999, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-30", + "total_cases": 51531.0, + "new_cases": 334.0, + "new_cases_smoothed": 398.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8808.202, + "new_cases_per_million": 57.091, + "new_cases_smoothed_per_million": 68.055, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5764.0, + "new_tests_smoothed_per_thousand": 0.985, + "tests_per_case": 14.477, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-07-31", + "total_cases": 51809.0, + "new_cases": 278.0, + "new_cases_smoothed": 387.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8855.72, + "new_cases_per_million": 47.519, + "new_cases_smoothed_per_million": 66.199, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5551.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 14.333, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-01", + "total_cases": 52205.0, + "new_cases": 396.0, + "new_cases_smoothed": 404.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8923.408, + "new_cases_per_million": 67.688, + "new_cases_smoothed_per_million": 69.105, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5339.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 13.206, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-02", + "total_cases": 52512.0, + "new_cases": 307.0, + "new_cases_smoothed": 374.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8975.884, + "new_cases_per_million": 52.476, + "new_cases_smoothed_per_million": 64.074, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5126.0, + "new_tests_smoothed_per_thousand": 0.876, + "tests_per_case": 13.675, + "positive_rate": 0.073, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-03", + "total_cases": 52825.0, + "new_cases": 313.0, + "new_cases_smoothed": 350.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9029.385, + "new_cases_per_million": 53.501, + "new_cases_smoothed_per_million": 59.972, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 650702.0, + "total_tests_per_thousand": 111.225, + "new_tests_smoothed": 4913.0, + "new_tests_smoothed_per_thousand": 0.84, + "tests_per_case": 14.003, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-04", + "total_cases": 53051.0, + "new_cases": 226.0, + "new_cases_smoothed": 316.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9068.015, + "new_cases_per_million": 38.63, + "new_cases_smoothed_per_million": 54.038, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4855.0, + "new_tests_smoothed_per_thousand": 0.83, + "tests_per_case": 15.357000000000001, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-05", + "total_cases": 53346.0, + "new_cases": 295.0, + "new_cases_smoothed": 307.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9118.44, + "new_cases_per_million": 50.424, + "new_cases_smoothed_per_million": 52.476, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4796.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 15.622, + "positive_rate": 0.064, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-06", + "total_cases": 54254.0, + "new_cases": 908.0, + "new_cases_smoothed": 389.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9273.644, + "new_cases_per_million": 155.205, + "new_cases_smoothed_per_million": 66.492, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4738.0, + "new_tests_smoothed_per_thousand": 0.81, + "tests_per_case": 12.18, + "positive_rate": 0.08199999999999999, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-07", + "total_cases": 54555.0, + "new_cases": 301.0, + "new_cases_smoothed": 392.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9325.094, + "new_cases_per_million": 51.45, + "new_cases_smoothed_per_million": 67.053, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4680.0, + "new_tests_smoothed_per_thousand": 0.8, + "tests_per_case": 11.93, + "positive_rate": 0.084, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-08", + "total_cases": 54797.0, + "new_cases": 242.0, + "new_cases_smoothed": 370.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9366.459, + "new_cases_per_million": 41.365, + "new_cases_smoothed_per_million": 63.293, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4621.0, + "new_tests_smoothed_per_thousand": 0.79, + "tests_per_case": 12.48, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-09", + "total_cases": 54929.0, + "new_cases": 132.0, + "new_cases_smoothed": 345.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9389.022, + "new_cases_per_million": 22.563, + "new_cases_smoothed_per_million": 59.02, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4563.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 13.215, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-10", + "total_cases": 55104.0, + "new_cases": 175.0, + "new_cases_smoothed": 325.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9418.935, + "new_cases_per_million": 29.913, + "new_cases_smoothed_per_million": 55.65, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4504.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 13.834000000000001, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-11", + "total_cases": 55292.0, + "new_cases": 188.0, + "new_cases_smoothed": 320.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9451.07, + "new_cases_per_million": 32.135, + "new_cases_smoothed_per_million": 54.722, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 686738.0, + "total_tests_per_thousand": 117.384, + "new_tests_smoothed": 4504.0, + "new_tests_smoothed_per_thousand": 0.77, + "tests_per_case": 14.069, + "positive_rate": 0.071, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-12", + "total_cases": 55353.0, + "new_cases": 61.0, + "new_cases_smoothed": 286.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9461.497, + "new_cases_per_million": 10.427, + "new_cases_smoothed_per_million": 49.008, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4771.0, + "new_tests_smoothed_per_thousand": 0.816, + "tests_per_case": 16.64, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-13", + "total_cases": 55395.0, + "new_cases": 42.0, + "new_cases_smoothed": 163.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9468.676, + "new_cases_per_million": 7.179, + "new_cases_smoothed_per_million": 27.862, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5037.0, + "new_tests_smoothed_per_thousand": 0.861, + "tests_per_case": 30.901999999999997, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-14", + "total_cases": 55497.0, + "new_cases": 102.0, + "new_cases_smoothed": 134.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9486.11, + "new_cases_per_million": 17.435, + "new_cases_smoothed_per_million": 23.002, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5303.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 39.407, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-15", + "total_cases": 55580.0, + "new_cases": 83.0, + "new_cases_smoothed": 111.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9500.298, + "new_cases_per_million": 14.187, + "new_cases_smoothed_per_million": 19.12, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5569.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 49.787, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-16", + "total_cases": 55661.0, + "new_cases": 81.0, + "new_cases_smoothed": 104.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9514.143, + "new_cases_per_million": 13.845, + "new_cases_smoothed_per_million": 17.874, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5835.0, + "new_tests_smoothed_per_thousand": 0.997, + "tests_per_case": 55.799, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-17", + "total_cases": 55747.0, + "new_cases": 86.0, + "new_cases_smoothed": 91.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9528.843, + "new_cases_per_million": 14.7, + "new_cases_smoothed_per_million": 15.701, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6102.0, + "new_tests_smoothed_per_thousand": 1.043, + "tests_per_case": 66.429, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-18", + "total_cases": 55838.0, + "new_cases": 91.0, + "new_cases_smoothed": 78.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9544.398, + "new_cases_per_million": 15.555, + "new_cases_smoothed_per_million": 13.333, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 731313.0, + "total_tests_per_thousand": 125.003, + "new_tests_smoothed": 6368.0, + "new_tests_smoothed_per_thousand": 1.088, + "tests_per_case": 81.641, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-19", + "total_cases": 55938.0, + "new_cases": 100.0, + "new_cases_smoothed": 83.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9561.491, + "new_cases_per_million": 17.093, + "new_cases_smoothed_per_million": 14.285, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6107.0, + "new_tests_smoothed_per_thousand": 1.044, + "tests_per_case": 73.075, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-20", + "total_cases": 56031.0, + "new_cases": 93.0, + "new_cases_smoothed": 90.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9577.387, + "new_cases_per_million": 15.897, + "new_cases_smoothed_per_million": 15.53, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5846.0, + "new_tests_smoothed_per_thousand": 0.999, + "tests_per_case": 64.343, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-21", + "total_cases": 56099.0, + "new_cases": 68.0, + "new_cases_smoothed": 86.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9589.01, + "new_cases_per_million": 11.623, + "new_cases_smoothed_per_million": 14.7, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5586.0, + "new_tests_smoothed_per_thousand": 0.955, + "tests_per_case": 64.953, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-22", + "total_cases": 56216.0, + "new_cases": 117.0, + "new_cases_smoothed": 90.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9609.009, + "new_cases_per_million": 19.999, + "new_cases_smoothed_per_million": 15.53, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5325.0, + "new_tests_smoothed_per_thousand": 0.91, + "tests_per_case": 58.608000000000004, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-23", + "total_cases": 56266.0, + "new_cases": 50.0, + "new_cases_smoothed": 86.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9617.556, + "new_cases_per_million": 8.547, + "new_cases_smoothed_per_million": 14.773, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5064.0, + "new_tests_smoothed_per_thousand": 0.866, + "tests_per_case": 58.592, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-24", + "total_cases": 56353.0, + "new_cases": 87.0, + "new_cases_smoothed": 86.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9632.427, + "new_cases_per_million": 14.871, + "new_cases_smoothed_per_million": 14.798, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 758569.0, + "total_tests_per_thousand": 129.662, + "new_tests_smoothed": 4803.0, + "new_tests_smoothed_per_thousand": 0.821, + "tests_per_case": 55.48, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-25", + "total_cases": 56404.0, + "new_cases": 51.0, + "new_cases_smoothed": 80.857, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9641.144, + "new_cases_per_million": 8.717, + "new_cases_smoothed_per_million": 13.821, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4846.0, + "new_tests_smoothed_per_thousand": 0.828, + "tests_per_case": 59.933, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-26", + "total_cases": 56435.0, + "new_cases": 31.0, + "new_cases_smoothed": 71.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9646.443, + "new_cases_per_million": 5.299, + "new_cases_smoothed_per_million": 12.136, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5149.0, + "new_tests_smoothed_per_thousand": 0.88, + "tests_per_case": 72.521, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-27", + "total_cases": 56495.0, + "new_cases": 60.0, + "new_cases_smoothed": 66.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9656.699, + "new_cases_per_million": 10.256, + "new_cases_smoothed_per_million": 11.33, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5452.0, + "new_tests_smoothed_per_thousand": 0.932, + "tests_per_case": 82.25, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-28", + "total_cases": 56572.0, + "new_cases": 77.0, + "new_cases_smoothed": 67.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9669.86, + "new_cases_per_million": 13.162, + "new_cases_smoothed_per_million": 11.55, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5755.0, + "new_tests_smoothed_per_thousand": 0.984, + "tests_per_case": 85.169, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-29", + "total_cases": 56666.0, + "new_cases": 94.0, + "new_cases_smoothed": 64.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9685.928, + "new_cases_per_million": 16.067, + "new_cases_smoothed_per_million": 10.988, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6058.0, + "new_tests_smoothed_per_thousand": 1.035, + "tests_per_case": 94.236, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-30", + "total_cases": 56717.0, + "new_cases": 51.0, + "new_cases_smoothed": 64.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9694.645, + "new_cases_per_million": 8.717, + "new_cases_smoothed_per_million": 11.013, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6361.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 98.729, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-08-31", + "total_cases": 56771.0, + "new_cases": 54.0, + "new_cases_smoothed": 59.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9703.875, + "new_cases_per_million": 9.23, + "new_cases_smoothed_per_million": 10.207, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 805214.0, + "total_tests_per_thousand": 137.635, + "new_tests_smoothed": 6664.0, + "new_tests_smoothed_per_thousand": 1.139, + "tests_per_case": 111.598, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 51.85 + }, + { + "date": "2020-09-01", + "total_cases": 56812.0, + "new_cases": 41.0, + "new_cases_smoothed": 58.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9710.884, + "new_cases_per_million": 7.008, + "new_cases_smoothed_per_million": 9.963, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-09-02", + "total_cases": 56852.0, + "new_cases": 40.0, + "new_cases_smoothed": 59.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9717.721, + "new_cases_per_million": 6.837, + "new_cases_smoothed_per_million": 10.183, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 56860.0, + "new_cases": 8.0, + "new_cases_smoothed": 52.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9719.088, + "new_cases_per_million": 1.367, + "new_cases_smoothed_per_million": 8.913, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 56908.0, + "new_cases": 48.0, + "new_cases_smoothed": 48.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9727.293, + "new_cases_per_million": 8.205, + "new_cases_smoothed_per_million": 8.205, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 56908.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9727.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.909, + "total_deaths_per_million": 4.615, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SXM": { + "continent": "North America", + "location": "Sint Maarten (Dutch part)", + "population": 42882.0, + "population_density": 1209.088, + "gdp_per_capita": 36327.232, + "life_expectancy": 78.95, + "data": [ + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 23.32, + "new_cases_per_million": 23.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 3.331, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.64, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.959, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 6.663, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.663, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.663, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 6.663, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.919, + "new_cases_per_million": 69.959, + "new_cases_smoothed_per_million": 16.657, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 16.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 373.117, + "new_cases_per_million": 233.198, + "new_cases_smoothed_per_million": 46.64, + "total_deaths_per_million": 23.32, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-03", + "total_cases": 23.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 536.356, + "new_cases_per_million": 163.239, + "new_cases_smoothed_per_million": 69.959, + "total_deaths_per_million": 46.64, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-04-04", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 536.356, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.628, + "total_deaths_per_million": 46.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-04-05", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 536.356, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.628, + "total_deaths_per_million": 46.64, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-04-06", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 582.995, + "new_cases_per_million": 46.64, + "new_cases_smoothed_per_million": 73.291, + "total_deaths_per_million": 93.279, + "new_deaths_per_million": 46.64, + "new_deaths_smoothed_per_million": 13.326 + }, + { + "date": "2020-04-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 582.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 73.291, + "total_deaths_per_million": 93.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 13.326 + }, + { + "date": "2020-04-08", + "total_cases": 40.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.857, + "total_deaths": 8.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 932.792, + "new_cases_per_million": 349.797, + "new_cases_smoothed_per_million": 113.268, + "total_deaths_per_million": 186.558, + "new_deaths_per_million": 93.279, + "new_deaths_smoothed_per_million": 26.651 + }, + { + "date": "2020-04-09", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 932.792, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 79.954, + "total_deaths_per_million": 186.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 23.32 + }, + { + "date": "2020-04-10", + "total_cases": 50.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1165.99, + "new_cases_per_million": 233.198, + "new_cases_smoothed_per_million": 89.948, + "total_deaths_per_million": 186.558, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 19.988 + }, + { + "date": "2020-04-11", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1165.99, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 89.948, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 23.32 + }, + { + "date": "2020-04-12", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1165.99, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 89.948, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 23.32 + }, + { + "date": "2020-04-13", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1165.99, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 83.285, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.657 + }, + { + "date": "2020-04-14", + "total_cases": 52.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1212.63, + "new_cases_per_million": 46.64, + "new_cases_smoothed_per_million": 89.948, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 16.657 + }, + { + "date": "2020-04-15", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1212.63, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 39.977, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-16", + "total_cases": 57.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1329.229, + "new_cases_per_million": 116.599, + "new_cases_smoothed_per_million": 56.634, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-17", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1329.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.32, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-18", + "total_cases": 57.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1329.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.32, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 64.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1492.468, + "new_cases_per_million": 163.239, + "new_cases_smoothed_per_million": 46.64, + "total_deaths_per_million": 209.878, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 67.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1562.427, + "new_cases_per_million": 69.959, + "new_cases_smoothed_per_million": 56.634, + "total_deaths_per_million": 233.198, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-21", + "total_cases": 68.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1585.747, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 233.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-22", + "total_cases": 68.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1585.747, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 233.198, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-04-23", + "total_cases": 73.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.286, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1702.346, + "new_cases_per_million": 116.599, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 279.838, + "new_deaths_per_million": 46.64, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-24", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1702.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 279.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-25", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1702.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 53.302, + "total_deaths_per_million": 279.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-26", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1702.346, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.983, + "total_deaths_per_million": 279.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-27", + "total_cases": 74.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1725.666, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 23.32, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-28", + "total_cases": 75.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1748.986, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 23.32, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-29", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1748.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.32, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 9.994 + }, + { + "date": "2020-04-30", + "total_cases": 76.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 9.994, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-01", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.994, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-02", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.994, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-03", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.994, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-04", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.663, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 303.158, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 326.477, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-07", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 326.477, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-08", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 326.477, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-09", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-05-10", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-05-11", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-05-12", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1772.305, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-05-13", + "total_cases": 77.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-14", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-15", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-05-16", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1795.625, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 78.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 78.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1818.945, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 79.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1842.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 81.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1888.904, + "new_cases_per_million": 46.64, + "new_cases_smoothed_per_million": 9.994, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 84.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1958.864, + "new_cases_per_million": 69.959, + "new_cases_smoothed_per_million": 16.657, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 94.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2192.062, + "new_cases_per_million": 233.198, + "new_cases_smoothed_per_million": 49.971, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2192.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.971, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 94.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2192.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.971, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 114.0, + "new_cases": 20.0, + "new_cases_smoothed": 5.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2658.458, + "new_cases_per_million": 466.396, + "new_cases_smoothed_per_million": 116.599, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 121.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2821.697, + "new_cases_per_million": 163.239, + "new_cases_smoothed_per_million": 139.919, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2821.697, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 133.256, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 128.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2984.935, + "new_cases_per_million": 163.239, + "new_cases_smoothed_per_million": 146.582, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2984.935, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 113.268, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2984.935, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 113.268, + "total_deaths_per_million": 349.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 146.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3404.692, + "new_cases_per_million": 419.757, + "new_cases_smoothed_per_million": 173.233, + "total_deaths_per_million": 373.117, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-04", + "total_cases": 150.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3497.971, + "new_cases_per_million": 93.279, + "new_cases_smoothed_per_million": 119.93, + "total_deaths_per_million": 373.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-05", + "total_cases": 156.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3637.89, + "new_cases_per_million": 139.919, + "new_cases_smoothed_per_million": 116.599, + "total_deaths_per_million": 373.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-06", + "total_cases": 160.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3731.169, + "new_cases_per_million": 93.279, + "new_cases_smoothed_per_million": 129.925, + "total_deaths_per_million": 373.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-07", + "total_cases": 176.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4104.286, + "new_cases_per_million": 373.117, + "new_cases_smoothed_per_million": 159.907, + "total_deaths_per_million": 373.117, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-08", + "total_cases": 177.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.0, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4127.606, + "new_cases_per_million": 23.32, + "new_cases_smoothed_per_million": 163.239, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 23.32, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-08-09", + "total_cases": 189.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4407.444, + "new_cases_per_million": 279.838, + "new_cases_smoothed_per_million": 203.215, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-08-10", + "total_cases": 189.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4407.444, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 143.25, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-11", + "total_cases": 189.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4407.444, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 129.925, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-12", + "total_cases": 219.0, + "new_cases": 30.0, + "new_cases_smoothed": 9.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5107.038, + "new_cases_per_million": 699.594, + "new_cases_smoothed_per_million": 209.878, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-13", + "total_cases": 248.0, + "new_cases": 29.0, + "new_cases_smoothed": 12.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5783.312, + "new_cases_per_million": 676.274, + "new_cases_smoothed_per_million": 293.163, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-14", + "total_cases": 263.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6133.109, + "new_cases_per_million": 349.797, + "new_cases_smoothed_per_million": 289.832, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.331 + }, + { + "date": "2020-08-15", + "total_cases": 269.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6273.028, + "new_cases_per_million": 139.919, + "new_cases_smoothed_per_million": 306.489, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 300.0, + "new_cases": 31.0, + "new_cases_smoothed": 15.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6995.942, + "new_cases_per_million": 722.914, + "new_cases_smoothed_per_million": 369.786, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 317.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7392.379, + "new_cases_per_million": 396.437, + "new_cases_smoothed_per_million": 426.419, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 326.0, + "new_cases": 9.0, + "new_cases_smoothed": 19.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7602.257, + "new_cases_per_million": 209.878, + "new_cases_smoothed_per_million": 456.402, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 326.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7602.257, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 356.46, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 348.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8115.293, + "new_cases_per_million": 513.036, + "new_cases_smoothed_per_million": 333.14, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 353.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8231.892, + "new_cases_per_million": 116.599, + "new_cases_smoothed_per_million": 299.826, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 353.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8231.892, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 279.838, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 368.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8581.689, + "new_cases_per_million": 349.797, + "new_cases_smoothed_per_million": 226.535, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 396.0, + "new_cases": 28.0, + "new_cases_smoothed": 11.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9234.644, + "new_cases_per_million": 652.955, + "new_cases_smoothed_per_million": 263.181, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 408.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9514.482, + "new_cases_per_million": 279.838, + "new_cases_smoothed_per_million": 273.175, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 418.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9747.68, + "new_cases_per_million": 233.198, + "new_cases_smoothed_per_million": 306.489, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 442.0, + "new_cases": 24.0, + "new_cases_smoothed": 13.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10307.355, + "new_cases_per_million": 559.675, + "new_cases_smoothed_per_million": 313.152, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 444.0, + "new_cases": 2.0, + "new_cases_smoothed": 13.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10353.995, + "new_cases_per_million": 46.64, + "new_cases_smoothed_per_million": 303.158, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 444.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10353.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 303.158, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 460.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10727.112, + "new_cases_per_million": 373.117, + "new_cases_smoothed_per_million": 306.489, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 463.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10797.071, + "new_cases_per_million": 69.959, + "new_cases_smoothed_per_million": 223.204, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 476.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.714, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11100.229, + "new_cases_per_million": 303.158, + "new_cases_smoothed_per_million": 226.535, + "total_deaths_per_million": 396.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 482.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.143, + "total_deaths": 19.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11240.147, + "new_cases_per_million": 139.919, + "new_cases_smoothed_per_million": 213.21, + "total_deaths_per_million": 443.076, + "new_deaths_per_million": 46.64, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-09-03", + "total_cases": 482.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11240.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 133.256, + "total_deaths_per_million": 443.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-09-04", + "total_cases": 504.0, + "new_cases": 22.0, + "new_cases_smoothed": 8.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11753.183, + "new_cases_per_million": 513.036, + "new_cases_smoothed_per_million": 199.884, + "total_deaths_per_million": 443.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + }, + { + "date": "2020-09-05", + "total_cases": 511.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11916.422, + "new_cases_per_million": 163.239, + "new_cases_smoothed_per_million": 223.204, + "total_deaths_per_million": 443.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.663 + } + ] + }, + "SVK": { + "continent": "Europe", + "location": "Slovakia", + "population": 5459643.0, + "population_density": 113.128, + "median_age": 41.2, + "aged_65_older": 15.07, + "aged_70_older": 9.167, + "gdp_per_capita": 30155.152, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 287.959, + "diabetes_prevalence": 7.29, + "female_smokers": 23.1, + "male_smokers": 37.7, + "hospital_beds_per_thousand": 5.82, + "life_expectancy": 77.54, + "data": [ + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.183, + "new_cases_per_million": 0.183, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-08", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.549, + "new_cases_per_million": 0.366, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-09", + "total_cases": 5.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.916, + "new_cases_per_million": 0.366, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-03-11", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.282, + "new_cases_per_million": 0.366, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-03-12", + "total_cases": 10.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.832, + "new_cases_per_million": 0.549, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-13", + "total_cases": 21.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.846, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.04 + }, + { + "date": "2020-03-14", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.495, + "new_cases_per_million": 1.648, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.59 + }, + { + "date": "2020-03-15", + "total_cases": 44.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.059, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 1.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1545.0, + "total_tests_per_thousand": 0.283, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-16", + "total_cases": 61.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.173, + "new_cases_per_million": 3.114, + "new_cases_smoothed_per_million": 1.465, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 368.0, + "total_tests": 1913.0, + "total_tests_per_thousand": 0.35, + "new_tests_per_thousand": 0.067, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-17", + "total_cases": 84.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.386, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 2.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-18", + "total_cases": 97.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.767, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 2.355, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1991.0, + "total_tests_per_thousand": 0.365, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-19", + "total_cases": 107.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.598, + "new_cases_per_million": 1.832, + "new_cases_smoothed_per_million": 2.538, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 448.0, + "total_tests": 2439.0, + "total_tests_per_thousand": 0.447, + "new_tests_per_thousand": 0.082, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-20", + "total_cases": 123.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.529, + "new_cases_per_million": 2.931, + "new_cases_smoothed_per_million": 2.669, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 268.0, + "total_tests": 2707.0, + "total_tests_per_thousand": 0.496, + "new_tests_per_thousand": 0.049, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-21", + "total_cases": 137.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.093, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 2.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 540.0, + "total_tests": 3247.0, + "total_tests_per_thousand": 0.595, + "new_tests_per_thousand": 0.099, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-22", + "total_cases": 178.0, + "new_cases": 41.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.603, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 3.506, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 242.0, + "total_tests": 3489.0, + "total_tests_per_thousand": 0.639, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 278.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 14.522, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-23", + "total_cases": 185.0, + "new_cases": 7.0, + "new_cases_smoothed": 17.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.885, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 3.245, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 3518.0, + "total_tests_per_thousand": 0.644, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 229.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 12.927, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-24", + "total_cases": 191.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.984, + "new_cases_per_million": 1.099, + "new_cases_smoothed_per_million": 2.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 326.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 21.326999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-25", + "total_cases": 204.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 37.365, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 2.8, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 423.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 27.673000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-26", + "total_cases": 216.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.563, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 2.852, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 5664.0, + "total_tests_per_thousand": 1.037, + "new_tests_smoothed": 461.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 29.605999999999998, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-27", + "total_cases": 226.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.395, + "new_cases_per_million": 1.832, + "new_cases_smoothed_per_million": 2.695, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 527.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 35.816, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-28", + "total_cases": 295.0, + "new_cases": 69.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.033, + "new_cases_per_million": 12.638, + "new_cases_smoothed_per_million": 4.134, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 7131.0, + "total_tests_per_thousand": 1.306, + "new_tests_smoothed": 555.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 24.589000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-29", + "total_cases": 295.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.061, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 652.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 39.009, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-30", + "total_cases": 336.0, + "new_cases": 41.0, + "new_cases_smoothed": 21.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.542, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 3.951, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 780.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 36.159, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-03-31", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.542, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.794, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 809.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 39.055, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-01", + "total_cases": 363.0, + "new_cases": 27.0, + "new_cases_smoothed": 22.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.488, + "new_cases_per_million": 4.945, + "new_cases_smoothed_per_million": 4.16, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 839.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 36.937, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-02", + "total_cases": 400.0, + "new_cases": 37.0, + "new_cases_smoothed": 26.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 73.265, + "new_cases_per_million": 6.777, + "new_cases_smoothed_per_million": 4.815, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 11742.0, + "total_tests_per_thousand": 2.151, + "new_tests_smoothed": 868.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 33.022, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-03", + "total_cases": 426.0, + "new_cases": 26.0, + "new_cases_smoothed": 28.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.027, + "new_cases_per_million": 4.762, + "new_cases_smoothed_per_million": 5.233, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1889.0, + "total_tests": 13631.0, + "total_tests_per_thousand": 2.497, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 36.155, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-04", + "total_cases": 450.0, + "new_cases": 24.0, + "new_cases_smoothed": 22.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.423, + "new_cases_per_million": 4.396, + "new_cases_smoothed_per_million": 4.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1524.0, + "total_tests": 15155.0, + "total_tests_per_thousand": 2.776, + "new_tests_per_thousand": 0.279, + "new_tests_smoothed": 1146.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 51.755, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-05", + "total_cases": 471.0, + "new_cases": 21.0, + "new_cases_smoothed": 25.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.269, + "new_cases_per_million": 3.846, + "new_cases_smoothed_per_million": 4.605, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 49.199, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-06", + "total_cases": 485.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.834, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 3.899, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1327.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 62.342, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-07", + "total_cases": 534.0, + "new_cases": 49.0, + "new_cases_smoothed": 28.286, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 97.809, + "new_cases_per_million": 8.975, + "new_cases_smoothed_per_million": 5.181, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 1417.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 50.096000000000004, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-08", + "total_cases": 581.0, + "new_cases": 47.0, + "new_cases_smoothed": 31.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 106.417, + "new_cases_per_million": 8.609, + "new_cases_smoothed_per_million": 5.704, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 21371.0, + "total_tests_per_thousand": 3.914, + "new_tests_smoothed": 1507.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 48.39, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-09", + "total_cases": 682.0, + "new_cases": 101.0, + "new_cases_smoothed": 40.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 124.917, + "new_cases_per_million": 18.499, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2301.0, + "total_tests": 23672.0, + "total_tests_per_thousand": 4.336, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 1704.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 42.298, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-10", + "total_cases": 701.0, + "new_cases": 19.0, + "new_cases_smoothed": 39.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 128.397, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 7.196, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2174.0, + "total_tests": 25846.0, + "total_tests_per_thousand": 4.734, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 1745.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 44.418, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-11", + "total_cases": 715.0, + "new_cases": 14.0, + "new_cases_smoothed": 37.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 130.961, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 6.934, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1580.0, + "total_tests": 27426.0, + "total_tests_per_thousand": 5.023, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 1753.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 46.306000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-12", + "total_cases": 728.0, + "new_cases": 13.0, + "new_cases_smoothed": 36.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 133.342, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 6.725, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1324.0, + "total_tests": 28750.0, + "total_tests_per_thousand": 5.266, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 1720.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 46.848, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-13", + "total_cases": 742.0, + "new_cases": 14.0, + "new_cases_smoothed": 36.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 135.906, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 6.725, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1302.0, + "total_tests": 30052.0, + "total_tests_per_thousand": 5.504, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 1684.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 45.868, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-14", + "total_cases": 769.0, + "new_cases": 27.0, + "new_cases_smoothed": 33.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.852, + "new_cases_per_million": 4.945, + "new_cases_smoothed_per_million": 6.149, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1439.0, + "total_tests": 31491.0, + "total_tests_per_thousand": 5.768, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 1668.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 49.685, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-15", + "total_cases": 835.0, + "new_cases": 66.0, + "new_cases_smoothed": 36.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 152.94, + "new_cases_per_million": 12.089, + "new_cases_smoothed_per_million": 6.646, + "total_deaths_per_million": 0.366, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2967.0, + "total_tests": 34458.0, + "total_tests_per_thousand": 6.311, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 1870.0, + "new_tests_smoothed_per_thousand": 0.343, + "tests_per_case": 51.535, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-16", + "total_cases": 863.0, + "new_cases": 28.0, + "new_cases_smoothed": 25.857, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 158.069, + "new_cases_per_million": 5.129, + "new_cases_smoothed_per_million": 4.736, + "total_deaths_per_million": 1.099, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 3351.0, + "total_tests": 37809.0, + "total_tests_per_thousand": 6.925, + "new_tests_per_thousand": 0.614, + "new_tests_smoothed": 2020.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 78.122, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-17", + "total_cases": 977.0, + "new_cases": 114.0, + "new_cases_smoothed": 39.429, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 178.949, + "new_cases_per_million": 20.88, + "new_cases_smoothed_per_million": 7.222, + "total_deaths_per_million": 1.465, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 3144.0, + "total_tests": 40953.0, + "total_tests_per_thousand": 7.501, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 2158.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 54.732, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-18", + "total_cases": 1049.0, + "new_cases": 72.0, + "new_cases_smoothed": 47.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 192.137, + "new_cases_per_million": 13.188, + "new_cases_smoothed_per_million": 8.739, + "total_deaths_per_million": 1.648, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 3323.0, + "total_tests": 44276.0, + "total_tests_per_thousand": 8.11, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 2407.0, + "new_tests_smoothed_per_thousand": 0.441, + "tests_per_case": 50.446000000000005, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-19", + "total_cases": 1089.0, + "new_cases": 40.0, + "new_cases_smoothed": 51.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 199.464, + "new_cases_per_million": 7.326, + "new_cases_smoothed_per_million": 9.446, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.235, + "new_tests": 2458.0, + "total_tests": 46734.0, + "total_tests_per_thousand": 8.56, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 2569.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 49.81399999999999, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-20", + "total_cases": 1161.0, + "new_cases": 72.0, + "new_cases_smoothed": 59.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 212.651, + "new_cases_per_million": 13.188, + "new_cases_smoothed_per_million": 10.964, + "total_deaths_per_million": 2.198, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.262, + "new_tests": 2694.0, + "total_tests": 49428.0, + "total_tests_per_thousand": 9.053, + "new_tests_per_thousand": 0.493, + "new_tests_smoothed": 2768.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 46.243, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-21", + "total_cases": 1173.0, + "new_cases": 12.0, + "new_cases_smoothed": 57.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 214.849, + "new_cases_per_million": 2.198, + "new_cases_smoothed_per_million": 10.571, + "total_deaths_per_million": 2.381, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 4465.0, + "total_tests": 53893.0, + "total_tests_per_thousand": 9.871, + "new_tests_per_thousand": 0.818, + "new_tests_smoothed": 3200.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 55.446000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-04-22", + "total_cases": 1199.0, + "new_cases": 26.0, + "new_cases_smoothed": 52.0, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 219.611, + "new_cases_per_million": 4.762, + "new_cases_smoothed_per_million": 9.524, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.314, + "new_tests_smoothed": 3028.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 58.231, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 1244.0, + "new_cases": 45.0, + "new_cases_smoothed": 54.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 227.854, + "new_cases_per_million": 8.242, + "new_cases_smoothed_per_million": 9.969, + "total_deaths_per_million": 2.564, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.209, + "total_tests": 57421.0, + "total_tests_per_thousand": 10.517, + "new_tests_smoothed": 2802.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 51.48, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 1325.0, + "new_cases": 81.0, + "new_cases_smoothed": 49.714, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 242.69, + "new_cases_per_million": 14.836, + "new_cases_smoothed_per_million": 9.106, + "total_deaths_per_million": 2.747, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 3840.0, + "total_tests": 61261.0, + "total_tests_per_thousand": 11.221, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 2901.0, + "new_tests_smoothed_per_thousand": 0.531, + "tests_per_case": 58.353, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 1360.0, + "new_cases": 35.0, + "new_cases_smoothed": 44.429, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 249.101, + "new_cases_per_million": 6.411, + "new_cases_smoothed_per_million": 8.138, + "total_deaths_per_million": 3.114, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 4828.0, + "total_tests": 66089.0, + "total_tests_per_thousand": 12.105, + "new_tests_per_thousand": 0.884, + "new_tests_smoothed": 3116.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 70.135, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 1373.0, + "new_cases": 13.0, + "new_cases_smoothed": 40.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 251.482, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 7.431, + "total_deaths_per_million": 3.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 4839.0, + "total_tests": 70928.0, + "total_tests_per_thousand": 12.991, + "new_tests_per_thousand": 0.886, + "new_tests_smoothed": 3456.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 85.18299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 1379.0, + "new_cases": 6.0, + "new_cases_smoothed": 31.143, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 252.581, + "new_cases_per_million": 1.099, + "new_cases_smoothed_per_million": 5.704, + "total_deaths_per_million": 3.297, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 3171.0, + "total_tests": 74099.0, + "total_tests_per_thousand": 13.572, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 3524.0, + "new_tests_smoothed_per_thousand": 0.645, + "tests_per_case": 113.156, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 1381.0, + "new_cases": 2.0, + "new_cases_smoothed": 29.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 252.947, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 5.443, + "total_deaths_per_million": 3.297, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 1767.0, + "total_tests": 75866.0, + "total_tests_per_thousand": 13.896, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 3139.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 105.639, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 1384.0, + "new_cases": 3.0, + "new_cases_smoothed": 26.429, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 253.496, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 4.841, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 5472.0, + "total_tests": 81338.0, + "total_tests_per_thousand": 14.898, + "new_tests_per_thousand": 1.002, + "new_tests_smoothed": 3669.0, + "new_tests_smoothed_per_thousand": 0.672, + "tests_per_case": 138.827, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 1391.0, + "new_cases": 7.0, + "new_cases_smoothed": 21.0, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 254.779, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 3.846, + "total_deaths_per_million": 4.03, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 4584.0, + "total_tests": 85922.0, + "total_tests_per_thousand": 15.738, + "new_tests_per_thousand": 0.84, + "new_tests_smoothed": 4072.0, + "new_tests_smoothed_per_thousand": 0.746, + "tests_per_case": 193.905, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 1396.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.143, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 255.694, + "new_cases_per_million": 0.916, + "new_cases_smoothed_per_million": 1.858, + "total_deaths_per_million": 4.213, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.209, + "new_tests": 5150.0, + "total_tests": 91072.0, + "total_tests_per_thousand": 16.681, + "new_tests_per_thousand": 0.943, + "new_tests_smoothed": 4259.0, + "new_tests_smoothed_per_thousand": 0.78, + "tests_per_case": 419.901, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 1403.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 256.977, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 1.125, + "total_deaths_per_million": 4.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 3698.0, + "total_tests": 94770.0, + "total_tests_per_thousand": 17.358, + "new_tests_per_thousand": 0.677, + "new_tests_smoothed": 4097.0, + "new_tests_smoothed_per_thousand": 0.75, + "tests_per_case": 666.953, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 1407.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 257.709, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 0.89, + "total_deaths_per_million": 4.396, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 1450.0, + "total_tests": 96220.0, + "total_tests_per_thousand": 17.624, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 3613.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 743.8530000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 1408.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 257.892, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 4.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 1584.0, + "total_tests": 97804.0, + "total_tests_per_thousand": 17.914, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 3386.0, + "new_tests_smoothed_per_thousand": 0.62, + "tests_per_case": 817.31, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 1413.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 258.808, + "new_cases_per_million": 0.916, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 4.579, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 2060.0, + "total_tests": 99864.0, + "total_tests_per_thousand": 18.291, + "new_tests_per_thousand": 0.377, + "new_tests_smoothed": 3428.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 749.875, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-06", + "total_cases": 1421.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 260.273, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 0.968, + "total_deaths_per_million": 4.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.131, + "new_tests": 4742.0, + "total_tests": 104606.0, + "total_tests_per_thousand": 19.16, + "new_tests_per_thousand": 0.869, + "new_tests_smoothed": 3324.0, + "new_tests_smoothed_per_thousand": 0.609, + "tests_per_case": 628.865, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 1429.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 261.739, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 4.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 5161.0, + "total_tests": 109767.0, + "total_tests_per_thousand": 20.105, + "new_tests_per_thousand": 0.945, + "new_tests_smoothed": 3406.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 627.4209999999999, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 1445.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.0, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 264.669, + "new_cases_per_million": 2.931, + "new_cases_smoothed_per_million": 1.282, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 4694.0, + "total_tests": 114461.0, + "total_tests_per_thousand": 20.965, + "new_tests_per_thousand": 0.86, + "new_tests_smoothed": 3341.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 477.286, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-09", + "total_cases": 1455.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 266.501, + "new_cases_per_million": 1.832, + "new_cases_smoothed_per_million": 1.361, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 3910.0, + "total_tests": 118371.0, + "total_tests_per_thousand": 21.681, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 3372.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 453.923, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-10", + "total_cases": 1455.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 266.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.256, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1488.0, + "total_tests": 119859.0, + "total_tests_per_thousand": 21.954, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 3377.0, + "new_tests_smoothed_per_thousand": 0.619, + "tests_per_case": 492.47900000000004, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-11", + "total_cases": 1457.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 266.867, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 1.282, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 786.0, + "total_tests": 120645.0, + "total_tests_per_thousand": 22.098, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 3263.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 466.14300000000003, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-12", + "total_cases": 1457.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 266.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.151, + "total_deaths_per_million": 4.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2063.0, + "total_tests": 122708.0, + "total_tests_per_thousand": 22.475, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 3263.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 519.114, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-13", + "total_cases": 1465.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 268.333, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 1.151, + "total_deaths_per_million": 4.945, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4326.0, + "total_tests": 127034.0, + "total_tests_per_thousand": 23.268, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 3204.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 509.727, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-14", + "total_cases": 1469.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 269.065, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 1.047, + "total_deaths_per_million": 4.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4876.0, + "total_tests": 131910.0, + "total_tests_per_thousand": 24.161, + "new_tests_per_thousand": 0.893, + "new_tests_smoothed": 3163.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 553.525, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-15", + "total_cases": 1477.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 270.531, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 0.837, + "total_deaths_per_million": 4.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3992.0, + "total_tests": 135902.0, + "total_tests_per_thousand": 24.892, + "new_tests_per_thousand": 0.731, + "new_tests_smoothed": 3063.0, + "new_tests_smoothed_per_thousand": 0.561, + "tests_per_case": 670.0310000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-16", + "total_cases": 1480.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 271.08, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 4.945, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 4084.0, + "total_tests": 139986.0, + "total_tests_per_thousand": 25.64, + "new_tests_per_thousand": 0.748, + "new_tests_smoothed": 3088.0, + "new_tests_smoothed_per_thousand": 0.566, + "tests_per_case": 864.64, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-17", + "total_cases": 1493.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.429, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 273.461, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2476.0, + "total_tests": 142462.0, + "total_tests_per_thousand": 26.094, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 3229.0, + "new_tests_smoothed_per_thousand": 0.591, + "tests_per_case": 594.816, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-18", + "total_cases": 1494.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 273.644, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.968, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 971.0, + "total_tests": 143433.0, + "total_tests_per_thousand": 26.271, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 3255.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 615.811, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-19", + "total_cases": 1495.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 273.827, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.994, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2041.0, + "total_tests": 145474.0, + "total_tests_per_thousand": 26.645, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 3252.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 599.053, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-20", + "total_cases": 1495.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 273.827, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 3371.0, + "total_tests": 148845.0, + "total_tests_per_thousand": 27.263, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 3116.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 727.067, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-21", + "total_cases": 1496.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 274.011, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests_smoothed": 2825.0, + "new_tests_smoothed_per_thousand": 0.517, + "tests_per_case": 732.4069999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-22", + "total_cases": 1502.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.11, + "new_cases_per_million": 1.099, + "new_cases_smoothed_per_million": 0.654, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "total_tests": 154529.0, + "total_tests_per_thousand": 28.304, + "new_tests_smoothed": 2661.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 745.08, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-23", + "total_cases": 1503.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.293, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2236.0, + "total_tests": 156765.0, + "total_tests_per_thousand": 28.713, + "new_tests_per_thousand": 0.41, + "new_tests_smoothed": 2397.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 729.5219999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-24", + "total_cases": 1504.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 275.476, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.288, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1649.0, + "total_tests": 158414.0, + "total_tests_per_thousand": 29.015, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 2279.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 1450.273, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-25", + "total_cases": 1509.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 276.392, + "new_cases_per_million": 0.916, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 645.0, + "total_tests": 159059.0, + "total_tests_per_thousand": 29.134, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 2232.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 1041.6, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-26", + "total_cases": 1511.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 276.758, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1464.0, + "total_tests": 160523.0, + "total_tests_per_thousand": 29.402, + "new_tests_per_thousand": 0.268, + "new_tests_smoothed": 2150.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 940.625, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-27", + "total_cases": 1513.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.124, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2839.0, + "total_tests": 163362.0, + "total_tests_per_thousand": 29.922, + "new_tests_per_thousand": 0.52, + "new_tests_smoothed": 2074.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 806.556, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-28", + "total_cases": 1515.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 277.491, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2352.0, + "total_tests": 165714.0, + "total_tests_per_thousand": 30.353, + "new_tests_per_thousand": 0.431, + "new_tests_smoothed": 2004.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 738.316, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-29", + "total_cases": 1520.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.406, + "new_cases_per_million": 0.916, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1848.0, + "total_tests": 167562.0, + "total_tests_per_thousand": 30.691, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 1862.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 724.1110000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-30", + "total_cases": 1520.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.406, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.445, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3433.0, + "total_tests": 170995.0, + "total_tests_per_thousand": 31.32, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 2033.0, + "new_tests_smoothed_per_thousand": 0.372, + "tests_per_case": 837.118, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-31", + "total_cases": 1521.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.59, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.445, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1606.0, + "total_tests": 172601.0, + "total_tests_per_thousand": 31.614, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 2027.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 834.6469999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-01", + "total_cases": 1522.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.773, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 274.0, + "total_tests": 172875.0, + "total_tests_per_thousand": 31.664, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 1974.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 1062.923, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-02", + "total_cases": 1522.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.288, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6418.0, + "total_tests": 179293.0, + "total_tests_per_thousand": 32.84, + "new_tests_per_thousand": 1.176, + "new_tests_smoothed": 2681.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 1706.0910000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-03", + "total_cases": 1522.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 278.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.235, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2336.0, + "total_tests": 181629.0, + "total_tests_per_thousand": 33.268, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 2610.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 2030.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-04", + "total_cases": 1525.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.322, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.262, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2135.0, + "total_tests": 183764.0, + "total_tests_per_thousand": 33.659, + "new_tests_per_thousand": 0.391, + "new_tests_smoothed": 2579.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 1805.3, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-06-05", + "total_cases": 1526.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.505, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1832.0, + "total_tests": 185596.0, + "total_tests_per_thousand": 33.994, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 2576.0, + "new_tests_smoothed_per_thousand": 0.472, + "tests_per_case": 3005.333, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-06", + "total_cases": 1526.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2639.0, + "total_tests": 188235.0, + "total_tests_per_thousand": 34.478, + "new_tests_per_thousand": 0.483, + "new_tests_smoothed": 2463.0, + "new_tests_smoothed_per_thousand": 0.451, + "tests_per_case": 2873.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-07", + "total_cases": 1528.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.872, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.183, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1180.0, + "total_tests": 189415.0, + "total_tests_per_thousand": 34.694, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 2402.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 2402.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-08", + "total_cases": 1528.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 279.872, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 160.0, + "total_tests": 189575.0, + "total_tests_per_thousand": 34.723, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 2386.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 2783.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-09", + "total_cases": 1530.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.238, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 851.0, + "total_tests": 190426.0, + "total_tests_per_thousand": 34.879, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 1590.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 1391.25, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 47.22 + }, + { + "date": "2020-06-10", + "total_cases": 1531.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.421, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.235, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1545.0, + "total_tests": 191971.0, + "total_tests_per_thousand": 35.162, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 1477.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 1148.778, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-11", + "total_cases": 1533.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 280.788, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1500.0, + "total_tests": 193471.0, + "total_tests_per_thousand": 35.437, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 1387.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 1213.625, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-12", + "total_cases": 1541.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.253, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1262.0, + "total_tests": 194733.0, + "total_tests_per_thousand": 35.668, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 1305.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 609.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-13", + "total_cases": 1542.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.436, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1511.0, + "total_tests": 196244.0, + "total_tests_per_thousand": 35.944, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 1144.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 500.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-06-14", + "total_cases": 1545.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 282.986, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.445, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 479.0, + "total_tests": 196723.0, + "total_tests_per_thousand": 36.032, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 429.88199999999995, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-15", + "total_cases": 1548.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 283.535, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 47.0, + "total_tests": 196770.0, + "total_tests_per_thousand": 36.041, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 1028.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 359.8, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-16", + "total_cases": 1552.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.268, + "new_cases_per_million": 0.733, + "new_cases_smoothed_per_million": 0.576, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 847.0, + "total_tests": 197617.0, + "total_tests_per_thousand": 36.196, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 1027.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 326.77299999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-17", + "total_cases": 1552.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.268, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1163.0, + "total_tests": 198780.0, + "total_tests_per_thousand": 36.409, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 973.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 324.33299999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-18", + "total_cases": 1561.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 285.916, + "new_cases_per_million": 1.648, + "new_cases_smoothed_per_million": 0.733, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 787.0, + "total_tests": 199567.0, + "total_tests_per_thousand": 36.553, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 871.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 217.75, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-19", + "total_cases": 1562.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 286.099, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 806.0, + "total_tests": 200373.0, + "total_tests_per_thousand": 36.701, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 806.0, + "new_tests_smoothed_per_thousand": 0.148, + "tests_per_case": 268.66700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-20", + "total_cases": 1576.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.664, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 0.89, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1278.0, + "total_tests": 201651.0, + "total_tests_per_thousand": 36.935, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 772.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 158.941, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-21", + "total_cases": 1586.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.495, + "new_cases_per_million": 1.832, + "new_cases_smoothed_per_million": 1.073, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 301.0, + "total_tests": 201952.0, + "total_tests_per_thousand": 36.99, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 747.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 127.537, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-22", + "total_cases": 1587.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.678, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 1.02, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 41.0, + "total_tests": 201993.0, + "total_tests_per_thousand": 36.997, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 746.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 133.89700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-23", + "total_cases": 1588.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 290.862, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.942, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 661.0, + "total_tests": 202654.0, + "total_tests_per_thousand": 37.119, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 720.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 140.0, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-24", + "total_cases": 1589.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 291.045, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 0.968, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1257.0, + "total_tests": 203911.0, + "total_tests_per_thousand": 37.349, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 733.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 138.67600000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-25", + "total_cases": 1607.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.342, + "new_cases_per_million": 3.297, + "new_cases_smoothed_per_million": 1.204, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 936.0, + "total_tests": 204847.0, + "total_tests_per_thousand": 37.52, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 754.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 114.73899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-26", + "total_cases": 1630.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 298.554, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 1.779, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1515.0, + "total_tests": 206362.0, + "total_tests_per_thousand": 37.798, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 88.118, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-27", + "total_cases": 1643.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.935, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 1.753, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1611.0, + "total_tests": 207973.0, + "total_tests_per_thousand": 38.093, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 94.34299999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-28", + "total_cases": 1657.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 303.5, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 1.858, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 931.0, + "total_tests": 208904.0, + "total_tests_per_thousand": 38.263, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 993.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 97.90100000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-29", + "total_cases": 1664.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 304.782, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 2.015, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 62.0, + "total_tests": 208966.0, + "total_tests_per_thousand": 38.275, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 996.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 90.545, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-30", + "total_cases": 1665.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 304.965, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 2.015, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 784.0, + "total_tests": 209750.0, + "total_tests_per_thousand": 38.418, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 1014.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 92.182, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-01", + "total_cases": 1667.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 305.331, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2063.0, + "total_tests": 211813.0, + "total_tests_per_thousand": 38.796, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 1129.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 101.321, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-02", + "total_cases": 1687.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 308.995, + "new_cases_per_million": 3.663, + "new_cases_smoothed_per_million": 2.093, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1708.0, + "total_tests": 213521.0, + "total_tests_per_thousand": 39.109, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 1239.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 108.412, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-03", + "total_cases": 1700.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 311.376, + "new_cases_per_million": 2.381, + "new_cases_smoothed_per_million": 1.832, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1801.0, + "total_tests": 215322.0, + "total_tests_per_thousand": 39.439, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 1280.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 128.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-04", + "total_cases": 1720.0, + "new_cases": 20.0, + "new_cases_smoothed": 11.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 315.039, + "new_cases_per_million": 3.663, + "new_cases_smoothed_per_million": 2.015, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2216.0, + "total_tests": 217538.0, + "total_tests_per_thousand": 39.845, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 1366.0, + "new_tests_smoothed_per_thousand": 0.25, + "tests_per_case": 124.182, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-05", + "total_cases": 1749.0, + "new_cases": 29.0, + "new_cases_smoothed": 13.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 320.351, + "new_cases_per_million": 5.312, + "new_cases_smoothed_per_million": 2.407, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 808.0, + "total_tests": 218346.0, + "total_tests_per_thousand": 39.993, + "new_tests_per_thousand": 0.148, + "new_tests_smoothed": 1349.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 102.641, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-06", + "total_cases": 1764.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 323.098, + "new_cases_per_million": 2.747, + "new_cases_smoothed_per_million": 2.617, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 50.0, + "total_tests": 218396.0, + "total_tests_per_thousand": 40.002, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 1347.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 94.29, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-07", + "total_cases": 1765.0, + "new_cases": 1.0, + "new_cases_smoothed": 14.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 323.281, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 2.617, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 873.0, + "total_tests": 219269.0, + "total_tests_per_thousand": 40.162, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 1360.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 95.2, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-08", + "total_cases": 1767.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 323.648, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 2.617, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2225.0, + "total_tests": 221494.0, + "total_tests_per_thousand": 40.569, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 1383.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 96.81, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-09", + "total_cases": 1798.0, + "new_cases": 31.0, + "new_cases_smoothed": 15.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 329.326, + "new_cases_per_million": 5.678, + "new_cases_smoothed_per_million": 2.904, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2284.0, + "total_tests": 223778.0, + "total_tests_per_thousand": 40.988, + "new_tests_per_thousand": 0.418, + "new_tests_smoothed": 1465.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 92.387, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-10", + "total_cases": 1851.0, + "new_cases": 53.0, + "new_cases_smoothed": 21.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 339.033, + "new_cases_per_million": 9.708, + "new_cases_smoothed_per_million": 3.951, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2172.0, + "total_tests": 225950.0, + "total_tests_per_thousand": 41.385, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 1518.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 70.37100000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-11", + "total_cases": 1870.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 342.513, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 3.925, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2879.0, + "total_tests": 228829.0, + "total_tests_per_thousand": 41.913, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 1613.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 75.273, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-12", + "total_cases": 1893.0, + "new_cases": 23.0, + "new_cases_smoothed": 20.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 346.726, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 3.768, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 960.0, + "total_tests": 229789.0, + "total_tests_per_thousand": 42.089, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 1635.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 79.479, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-13", + "total_cases": 1901.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.191, + "new_cases_per_million": 1.465, + "new_cases_smoothed_per_million": 3.585, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 279.0, + "total_tests": 230068.0, + "total_tests_per_thousand": 42.14, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1667.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 85.175, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-14", + "total_cases": 1902.0, + "new_cases": 1.0, + "new_cases_smoothed": 19.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.374, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 3.585, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1163.0, + "total_tests": 231231.0, + "total_tests_per_thousand": 42.353, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 1709.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 87.321, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-15", + "total_cases": 1908.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 349.473, + "new_cases_per_million": 1.099, + "new_cases_smoothed_per_million": 3.689, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2205.0, + "total_tests": 233436.0, + "total_tests_per_thousand": 42.757, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 1706.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 84.695, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-16", + "total_cases": 1927.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 352.953, + "new_cases_per_million": 3.48, + "new_cases_smoothed_per_million": 3.375, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2336.0, + "total_tests": 235772.0, + "total_tests_per_thousand": 43.185, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 1713.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 92.95299999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-17", + "total_cases": 1951.0, + "new_cases": 24.0, + "new_cases_smoothed": 14.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 357.349, + "new_cases_per_million": 4.396, + "new_cases_smoothed_per_million": 2.617, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1862.0, + "total_tests": 237634.0, + "total_tests_per_thousand": 43.526, + "new_tests_per_thousand": 0.341, + "new_tests_smoothed": 1669.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 116.83, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-18", + "total_cases": 1965.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 359.914, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 2.486, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2161.0, + "total_tests": 239795.0, + "total_tests_per_thousand": 43.921, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 1567.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 115.463, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-19", + "total_cases": 1976.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.928, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.172, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 410.0, + "total_tests": 240205.0, + "total_tests_per_thousand": 43.996, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1488.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 125.494, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-20", + "total_cases": 1979.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 362.478, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 24.0, + "total_tests": 240229.0, + "total_tests_per_thousand": 44.001, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 1452.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 130.308, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-21", + "total_cases": 1980.0, + "new_cases": 1.0, + "new_cases_smoothed": 11.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 362.661, + "new_cases_per_million": 0.183, + "new_cases_smoothed_per_million": 2.041, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3333.0, + "total_tests": 243562.0, + "total_tests_per_thousand": 44.611, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 1762.0, + "new_tests_smoothed_per_thousand": 0.323, + "tests_per_case": 158.128, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-22", + "total_cases": 2021.0, + "new_cases": 41.0, + "new_cases_smoothed": 16.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 370.171, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 2.957, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2571.0, + "total_tests": 246133.0, + "total_tests_per_thousand": 45.082, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 1814.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 112.37200000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-23", + "total_cases": 2058.0, + "new_cases": 37.0, + "new_cases_smoothed": 18.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 376.948, + "new_cases_per_million": 6.777, + "new_cases_smoothed_per_million": 3.428, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2251.0, + "total_tests": 248384.0, + "total_tests_per_thousand": 45.495, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 1802.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 96.29, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-24", + "total_cases": 2089.0, + "new_cases": 31.0, + "new_cases_smoothed": 19.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 382.626, + "new_cases_per_million": 5.678, + "new_cases_smoothed_per_million": 3.611, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2049.0, + "total_tests": 250433.0, + "total_tests_per_thousand": 45.87, + "new_tests_per_thousand": 0.375, + "new_tests_smoothed": 1828.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 92.725, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-25", + "total_cases": 2118.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.937, + "new_cases_per_million": 5.312, + "new_cases_smoothed_per_million": 4.003, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2275.0, + "total_tests": 252708.0, + "total_tests_per_thousand": 46.287, + "new_tests_per_thousand": 0.417, + "new_tests_smoothed": 1845.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_per_case": 84.412, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-26", + "total_cases": 2141.0, + "new_cases": 23.0, + "new_cases_smoothed": 23.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 392.15, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 4.317, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 767.0, + "total_tests": 253475.0, + "total_tests_per_thousand": 46.427, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 1896.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 80.436, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-27", + "total_cases": 2179.0, + "new_cases": 38.0, + "new_cases_smoothed": 28.571, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 399.11, + "new_cases_per_million": 6.96, + "new_cases_smoothed_per_million": 5.233, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 216.0, + "total_tests": 253691.0, + "total_tests_per_thousand": 46.467, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1923.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 67.305, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-07-28", + "total_cases": 2181.0, + "new_cases": 2.0, + "new_cases_smoothed": 28.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 399.477, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 5.259, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1548.0, + "total_tests": 255239.0, + "total_tests_per_thousand": 46.75, + "new_tests_per_thousand": 0.284, + "new_tests_smoothed": 1668.0, + "new_tests_smoothed_per_thousand": 0.306, + "tests_per_case": 58.09, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-07-29", + "total_cases": 2204.0, + "new_cases": 23.0, + "new_cases_smoothed": 26.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 403.689, + "new_cases_per_million": 4.213, + "new_cases_smoothed_per_million": 4.788, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2296.0, + "total_tests": 257535.0, + "total_tests_per_thousand": 47.171, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 1629.0, + "new_tests_smoothed_per_thousand": 0.298, + "tests_per_case": 62.31100000000001, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-07-30", + "total_cases": 2245.0, + "new_cases": 41.0, + "new_cases_smoothed": 26.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 411.199, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 4.893, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1851.0, + "total_tests": 259386.0, + "total_tests_per_thousand": 47.51, + "new_tests_per_thousand": 0.339, + "new_tests_smoothed": 1572.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 58.845, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-07-31", + "total_cases": 2265.0, + "new_cases": 20.0, + "new_cases_smoothed": 25.143, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 414.862, + "new_cases_per_million": 3.663, + "new_cases_smoothed_per_million": 4.605, + "total_deaths_per_million": 5.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2176.0, + "total_tests": 261562.0, + "total_tests_per_thousand": 47.908, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 1590.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 63.239, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-01", + "total_cases": 2292.0, + "new_cases": 27.0, + "new_cases_smoothed": 24.857, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 419.808, + "new_cases_per_million": 4.945, + "new_cases_smoothed_per_million": 4.553, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2884.0, + "total_tests": 264446.0, + "total_tests_per_thousand": 48.437, + "new_tests_per_thousand": 0.528, + "new_tests_smoothed": 1677.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 67.46600000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-02", + "total_cases": 2337.0, + "new_cases": 45.0, + "new_cases_smoothed": 28.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 428.05, + "new_cases_per_million": 8.242, + "new_cases_smoothed_per_million": 5.129, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 585.0, + "total_tests": 265031.0, + "total_tests_per_thousand": 48.544, + "new_tests_per_thousand": 0.107, + "new_tests_smoothed": 1651.0, + "new_tests_smoothed_per_thousand": 0.302, + "tests_per_case": 58.964, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-03", + "total_cases": 2344.0, + "new_cases": 7.0, + "new_cases_smoothed": 23.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 429.332, + "new_cases_per_million": 1.282, + "new_cases_smoothed_per_million": 4.317, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 766.0, + "total_tests": 265797.0, + "total_tests_per_thousand": 48.684, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 1729.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 73.352, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-04", + "total_cases": 2354.0, + "new_cases": 10.0, + "new_cases_smoothed": 24.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 431.164, + "new_cases_per_million": 1.832, + "new_cases_smoothed_per_million": 4.527, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 1320.0, + "total_tests": 267117.0, + "total_tests_per_thousand": 48.926, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 1697.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 68.665, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-05", + "total_cases": 2368.0, + "new_cases": 14.0, + "new_cases_smoothed": 23.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 433.728, + "new_cases_per_million": 2.564, + "new_cases_smoothed_per_million": 4.291, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2538.0, + "total_tests": 269655.0, + "total_tests_per_thousand": 49.391, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.317, + "tests_per_case": 73.884, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-06", + "total_cases": 2417.0, + "new_cases": 49.0, + "new_cases_smoothed": 24.571, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 442.703, + "new_cases_per_million": 8.975, + "new_cases_smoothed_per_million": 4.501, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2667.0, + "total_tests": 272322.0, + "total_tests_per_thousand": 49.879, + "new_tests_per_thousand": 0.488, + "new_tests_smoothed": 1848.0, + "new_tests_smoothed_per_thousand": 0.338, + "tests_per_case": 75.209, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-07", + "total_cases": 2480.0, + "new_cases": 63.0, + "new_cases_smoothed": 30.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 454.242, + "new_cases_per_million": 11.539, + "new_cases_smoothed_per_million": 5.626, + "total_deaths_per_million": 5.312, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "new_tests": 2473.0, + "total_tests": 274795.0, + "total_tests_per_thousand": 50.332, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 1890.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 61.535, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-08", + "total_cases": 2523.0, + "new_cases": 43.0, + "new_cases_smoothed": 33.0, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 462.118, + "new_cases_per_million": 7.876, + "new_cases_smoothed_per_million": 6.044, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3099.0, + "total_tests": 277894.0, + "total_tests_per_thousand": 50.9, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 1921.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 58.211999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-09", + "total_cases": 2566.0, + "new_cases": 43.0, + "new_cases_smoothed": 32.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 469.994, + "new_cases_per_million": 7.876, + "new_cases_smoothed_per_million": 5.992, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1068.0, + "total_tests": 278962.0, + "total_tests_per_thousand": 51.095, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 1990.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 60.83, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-10", + "total_cases": 2596.0, + "new_cases": 30.0, + "new_cases_smoothed": 36.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 475.489, + "new_cases_per_million": 5.495, + "new_cases_smoothed_per_million": 6.594, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 564.0, + "total_tests": 279526.0, + "total_tests_per_thousand": 51.199, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 1961.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 54.472, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-11", + "total_cases": 2599.0, + "new_cases": 3.0, + "new_cases_smoothed": 35.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 476.038, + "new_cases_per_million": 0.549, + "new_cases_smoothed_per_million": 6.411, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1454.0, + "total_tests": 280980.0, + "total_tests_per_thousand": 51.465, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 1980.0, + "new_tests_smoothed_per_thousand": 0.363, + "tests_per_case": 56.571000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-12", + "total_cases": 2615.0, + "new_cases": 16.0, + "new_cases_smoothed": 35.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 478.969, + "new_cases_per_million": 2.931, + "new_cases_smoothed_per_million": 6.463, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3131.0, + "total_tests": 284111.0, + "total_tests_per_thousand": 52.038, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 2065.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 58.522, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-13", + "total_cases": 2690.0, + "new_cases": 75.0, + "new_cases_smoothed": 39.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 492.706, + "new_cases_per_million": 13.737, + "new_cases_smoothed_per_million": 7.143, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2741.0, + "total_tests": 286852.0, + "total_tests_per_thousand": 52.54, + "new_tests_per_thousand": 0.502, + "new_tests_smoothed": 2076.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 53.231, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-14", + "total_cases": 2739.0, + "new_cases": 49.0, + "new_cases_smoothed": 37.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 501.681, + "new_cases_per_million": 8.975, + "new_cases_smoothed_per_million": 6.777, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 2738.0, + "total_tests": 289590.0, + "total_tests_per_thousand": 53.042, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 2114.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 57.135, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-15", + "total_cases": 2801.0, + "new_cases": 62.0, + "new_cases_smoothed": 39.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 513.037, + "new_cases_per_million": 11.356, + "new_cases_smoothed_per_million": 7.274, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3235.0, + "total_tests": 292825.0, + "total_tests_per_thousand": 53.634, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 2133.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 53.708999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 35.19 + }, + { + "date": "2020-08-16", + "total_cases": 2855.0, + "new_cases": 54.0, + "new_cases_smoothed": 41.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 522.928, + "new_cases_per_million": 9.891, + "new_cases_smoothed_per_million": 7.562, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2013.0, + "total_tests": 294838.0, + "total_tests_per_thousand": 54.003, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 2268.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 54.934, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-17", + "total_cases": 2902.0, + "new_cases": 47.0, + "new_cases_smoothed": 43.714, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 531.537, + "new_cases_per_million": 8.609, + "new_cases_smoothed_per_million": 8.007, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 481.0, + "total_tests": 295319.0, + "total_tests_per_thousand": 54.091, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 2256.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 51.608000000000004, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-18", + "total_cases": 2907.0, + "new_cases": 5.0, + "new_cases_smoothed": 44.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 532.452, + "new_cases_per_million": 0.916, + "new_cases_smoothed_per_million": 8.059, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1583.0, + "total_tests": 296902.0, + "total_tests_per_thousand": 54.381, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 2275.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 51.705, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-19", + "total_cases": 2922.0, + "new_cases": 15.0, + "new_cases_smoothed": 43.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 535.2, + "new_cases_per_million": 2.747, + "new_cases_smoothed_per_million": 8.033, + "total_deaths_per_million": 5.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3684.0, + "total_tests": 300586.0, + "total_tests_per_thousand": 55.056, + "new_tests_per_thousand": 0.675, + "new_tests_smoothed": 2354.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 53.674, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-20", + "total_cases": 3022.0, + "new_cases": 100.0, + "new_cases_smoothed": 47.429, + "total_deaths": 33.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 553.516, + "new_cases_per_million": 18.316, + "new_cases_smoothed_per_million": 8.687, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 3435.0, + "total_tests": 304021.0, + "total_tests_per_thousand": 55.685, + "new_tests_per_thousand": 0.629, + "new_tests_smoothed": 2453.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 51.72, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-21", + "total_cases": 3102.0, + "new_cases": 80.0, + "new_cases_smoothed": 51.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 568.169, + "new_cases_per_million": 14.653, + "new_cases_smoothed_per_million": 9.498, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 65.0, + "total_tests": 304086.0, + "total_tests_per_thousand": 55.697, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 2071.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 39.937, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-22", + "total_cases": 3225.0, + "new_cases": 123.0, + "new_cases_smoothed": 60.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 590.698, + "new_cases_per_million": 22.529, + "new_cases_smoothed_per_million": 11.094, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 7013.0, + "total_tests": 311099.0, + "total_tests_per_thousand": 56.982, + "new_tests_per_thousand": 1.285, + "new_tests_smoothed": 2611.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 43.106, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-23", + "total_cases": 3316.0, + "new_cases": 91.0, + "new_cases_smoothed": 65.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 607.366, + "new_cases_per_million": 16.668, + "new_cases_smoothed_per_million": 12.063, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1723.0, + "total_tests": 312822.0, + "total_tests_per_thousand": 57.297, + "new_tests_per_thousand": 0.316, + "new_tests_smoothed": 2569.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 39.009, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-24", + "total_cases": 3356.0, + "new_cases": 40.0, + "new_cases_smoothed": 64.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 614.692, + "new_cases_per_million": 7.326, + "new_cases_smoothed_per_million": 11.879, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 2717.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 41.891999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-08-25", + "total_cases": 3424.0, + "new_cases": 68.0, + "new_cases_smoothed": 73.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 627.147, + "new_cases_per_million": 12.455, + "new_cases_smoothed_per_million": 13.528, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "total_tests": 315854.0, + "total_tests_per_thousand": 57.853, + "new_tests_smoothed": 2707.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 36.652, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-26", + "total_cases": 3452.0, + "new_cases": 28.0, + "new_cases_smoothed": 75.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 632.276, + "new_cases_per_million": 5.129, + "new_cases_smoothed_per_million": 13.868, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 4090.0, + "total_tests": 319944.0, + "total_tests_per_thousand": 58.602, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 2765.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 36.519, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-27", + "total_cases": 3536.0, + "new_cases": 84.0, + "new_cases_smoothed": 73.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 647.661, + "new_cases_per_million": 15.386, + "new_cases_smoothed_per_million": 13.449, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7996.0, + "total_tests": 327940.0, + "total_tests_per_thousand": 60.066, + "new_tests_per_thousand": 1.465, + "new_tests_smoothed": 3417.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 46.535, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-28", + "total_cases": 3626.0, + "new_cases": 90.0, + "new_cases_smoothed": 74.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 664.146, + "new_cases_per_million": 16.485, + "new_cases_smoothed_per_million": 13.711, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3726.0, + "new_tests_smoothed_per_thousand": 0.682, + "tests_per_case": 49.775, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-29", + "total_cases": 3728.0, + "new_cases": 102.0, + "new_cases_smoothed": 71.857, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 682.829, + "new_cases_per_million": 18.683, + "new_cases_smoothed_per_million": 13.162, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 332393.0, + "total_tests_per_thousand": 60.882, + "new_tests_smoothed": 3042.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 42.333999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-30", + "total_cases": 3842.0, + "new_cases": 114.0, + "new_cases_smoothed": 75.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 703.709, + "new_cases_per_million": 20.88, + "new_cases_smoothed_per_million": 13.763, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1951.0, + "total_tests": 334344.0, + "total_tests_per_thousand": 61.239, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 3075.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 40.922, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-08-31", + "total_cases": 3876.0, + "new_cases": 34.0, + "new_cases_smoothed": 74.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 709.937, + "new_cases_per_million": 6.228, + "new_cases_smoothed_per_million": 13.606, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 588.0, + "total_tests": 334932.0, + "total_tests_per_thousand": 61.347, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 2942.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 39.604, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-09-01", + "total_cases": 3917.0, + "new_cases": 41.0, + "new_cases_smoothed": 70.429, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 717.446, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 12.9, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2763.0, + "total_tests": 337695.0, + "total_tests_per_thousand": 61.853, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 3120.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 44.3, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-09-02", + "total_cases": 3989.0, + "new_cases": 72.0, + "new_cases_smoothed": 76.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 730.634, + "new_cases_per_million": 13.188, + "new_cases_smoothed_per_million": 14.051, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2428.0, + "total_tests": 340123.0, + "total_tests_per_thousand": 62.298, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 2883.0, + "new_tests_smoothed_per_thousand": 0.528, + "tests_per_case": 37.580999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-09-03", + "total_cases": 4042.0, + "new_cases": 53.0, + "new_cases_smoothed": 72.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 740.341, + "new_cases_per_million": 9.708, + "new_cases_smoothed_per_million": 13.24, + "total_deaths_per_million": 6.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3519.0, + "total_tests": 343642.0, + "total_tests_per_thousand": 62.942, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 2243.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 31.03, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-09-04", + "total_cases": 4163.0, + "new_cases": 121.0, + "new_cases_smoothed": 76.714, + "total_deaths": 37.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 762.504, + "new_cases_per_million": 22.163, + "new_cases_smoothed_per_million": 14.051, + "total_deaths_per_million": 6.777, + "new_deaths_per_million": 0.733, + "new_deaths_smoothed_per_million": 0.105, + "new_tests": 4772.0, + "total_tests": 348414.0, + "total_tests_per_thousand": 63.816, + "new_tests_per_thousand": 0.874, + "new_tests_smoothed": 2607.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 33.983000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 4300.0, + "new_cases": 137.0, + "new_cases_smoothed": 81.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 787.597, + "new_cases_per_million": 25.093, + "new_cases_smoothed_per_million": 14.967, + "total_deaths_per_million": 6.777, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.105 + } + ] + }, + "SVN": { + "continent": "Europe", + "location": "Slovenia", + "population": 2078932.0, + "population_density": 102.619, + "median_age": 44.5, + "aged_65_older": 19.062, + "aged_70_older": 12.93, + "gdp_per_capita": 31400.84, + "cardiovasc_death_rate": 153.493, + "diabetes_prevalence": 7.25, + "female_smokers": 20.1, + "male_smokers": 25.0, + "hospital_beds_per_thousand": 4.5, + "life_expectancy": 81.32, + "data": [ + { + "date": "2020-03-05", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.481, + "new_cases_per_million": 0.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 6.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.886, + "new_cases_per_million": 2.405, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 9.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 4.329, + "new_cases_per_million": 1.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-08", + "total_cases": 12.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.772, + "new_cases_per_million": 1.443, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-09", + "total_cases": 16.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 7.696, + "new_cases_per_million": 1.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-11", + "total_cases": 31.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.912, + "new_cases_per_million": 7.215, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 57.0, + "new_cases": 26.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.418, + "new_cases_per_million": 12.506, + "new_cases_smoothed_per_million": 3.848, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3863.0, + "total_tests_per_thousand": 1.858, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 96.0, + "new_cases": 39.0, + "new_cases_smoothed": 12.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.178, + "new_cases_per_million": 18.76, + "new_cases_smoothed_per_million": 6.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1197.0, + "total_tests": 5060.0, + "total_tests_per_thousand": 2.434, + "new_tests_per_thousand": 0.576, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 141.0, + "new_cases": 45.0, + "new_cases_smoothed": 18.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.823, + "new_cases_per_million": 21.646, + "new_cases_smoothed_per_million": 9.071, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 916.0, + "total_tests": 5976.0, + "total_tests_per_thousand": 2.875, + "new_tests_per_thousand": 0.441, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-03-15", + "total_cases": 181.0, + "new_cases": 40.0, + "new_cases_smoothed": 24.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.064, + "new_cases_per_million": 19.241, + "new_cases_smoothed_per_million": 11.613, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 590.0, + "total_tests": 6566.0, + "total_tests_per_thousand": 3.158, + "new_tests_per_thousand": 0.284, + "tests_units": "tests performed", + "stringency_index": 28.7 + }, + { + "date": "2020-03-16", + "total_cases": 219.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.343, + "new_cases_per_million": 18.279, + "new_cases_smoothed_per_million": 13.949, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 871.0, + "total_tests": 7437.0, + "total_tests_per_thousand": 3.577, + "new_tests_per_thousand": 0.419, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-17", + "total_cases": 253.0, + "new_cases": 34.0, + "new_cases_smoothed": 33.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 121.697, + "new_cases_per_million": 16.355, + "new_cases_smoothed_per_million": 16.286, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1121.0, + "total_tests": 8558.0, + "total_tests_per_thousand": 4.117, + "new_tests_per_thousand": 0.539, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-18", + "total_cases": 275.0, + "new_cases": 22.0, + "new_cases_smoothed": 34.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.279, + "new_cases_per_million": 10.582, + "new_cases_smoothed_per_million": 16.767, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1026.0, + "total_tests": 9584.0, + "total_tests_per_thousand": 4.61, + "new_tests_per_thousand": 0.494, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-03-19", + "total_cases": 286.0, + "new_cases": 11.0, + "new_cases_smoothed": 32.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.571, + "new_cases_per_million": 5.291, + "new_cases_smoothed_per_million": 15.736, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1184.0, + "total_tests": 10768.0, + "total_tests_per_thousand": 5.18, + "new_tests_per_thousand": 0.57, + "new_tests_smoothed": 986.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 30.14, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-20", + "total_cases": 319.0, + "new_cases": 33.0, + "new_cases_smoothed": 31.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 153.444, + "new_cases_per_million": 15.874, + "new_cases_smoothed_per_million": 15.324, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1242.0, + "total_tests": 12010.0, + "total_tests_per_thousand": 5.777, + "new_tests_per_thousand": 0.597, + "new_tests_smoothed": 993.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 31.17, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-21", + "total_cases": 341.0, + "new_cases": 22.0, + "new_cases_smoothed": 28.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 164.027, + "new_cases_per_million": 10.582, + "new_cases_smoothed_per_million": 13.743, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 872.0, + "total_tests": 12882.0, + "total_tests_per_thousand": 6.196, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 987.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 34.545, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-22", + "total_cases": 383.0, + "new_cases": 42.0, + "new_cases_smoothed": 28.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 184.229, + "new_cases_per_million": 20.203, + "new_cases_smoothed_per_million": 13.881, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 731.0, + "total_tests": 13613.0, + "total_tests_per_thousand": 6.548, + "new_tests_per_thousand": 0.352, + "new_tests_smoothed": 1007.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 34.896, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-23", + "total_cases": 414.0, + "new_cases": 31.0, + "new_cases_smoothed": 27.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.141, + "new_cases_per_million": 14.912, + "new_cases_smoothed_per_million": 13.4, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1257.0, + "total_tests": 14870.0, + "total_tests_per_thousand": 7.153, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 1062.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 38.123000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-24", + "total_cases": 442.0, + "new_cases": 28.0, + "new_cases_smoothed": 27.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 212.609, + "new_cases_per_million": 13.468, + "new_cases_smoothed_per_million": 12.987, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1243.0, + "total_tests": 16113.0, + "total_tests_per_thousand": 7.751, + "new_tests_per_thousand": 0.598, + "new_tests_smoothed": 1079.0, + "new_tests_smoothed_per_thousand": 0.519, + "tests_per_case": 39.963, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-25", + "total_cases": 480.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.286, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 230.888, + "new_cases_per_million": 18.279, + "new_cases_smoothed_per_million": 14.087, + "total_deaths_per_million": 1.443, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1181.0, + "total_tests": 17294.0, + "total_tests_per_thousand": 8.319, + "new_tests_per_thousand": 0.568, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 37.595, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-26", + "total_cases": 528.0, + "new_cases": 48.0, + "new_cases_smoothed": 34.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 253.977, + "new_cases_per_million": 23.089, + "new_cases_smoothed_per_million": 16.629, + "total_deaths_per_million": 1.924, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1075.0, + "total_tests": 18369.0, + "total_tests_per_thousand": 8.836, + "new_tests_per_thousand": 0.517, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 31.413, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-27", + "total_cases": 577.0, + "new_cases": 49.0, + "new_cases_smoothed": 36.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 277.546, + "new_cases_per_million": 23.57, + "new_cases_smoothed_per_million": 17.729, + "total_deaths_per_million": 2.405, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1387.0, + "total_tests": 19756.0, + "total_tests_per_thousand": 9.503, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 1107.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 30.035, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-28", + "total_cases": 632.0, + "new_cases": 55.0, + "new_cases_smoothed": 41.571, + "total_deaths": 9.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 304.002, + "new_cases_per_million": 26.456, + "new_cases_smoothed_per_million": 19.997, + "total_deaths_per_million": 4.329, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 997.0, + "total_tests": 20753.0, + "total_tests_per_thousand": 9.983, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 1124.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 27.038, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-29", + "total_cases": 691.0, + "new_cases": 59.0, + "new_cases_smoothed": 44.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 332.382, + "new_cases_per_million": 28.38, + "new_cases_smoothed_per_million": 21.165, + "total_deaths_per_million": 4.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 596.0, + "total_tests": 21349.0, + "total_tests_per_thousand": 10.269, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 1105.0, + "new_tests_smoothed_per_thousand": 0.532, + "tests_per_case": 25.114, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 78.7 + }, + { + "date": "2020-03-30", + "total_cases": 730.0, + "new_cases": 39.0, + "new_cases_smoothed": 45.143, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 351.142, + "new_cases_per_million": 18.76, + "new_cases_smoothed_per_million": 21.714, + "total_deaths_per_million": 5.291, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.687, + "new_tests": 1125.0, + "total_tests": 22474.0, + "total_tests_per_thousand": 10.81, + "new_tests_per_thousand": 0.541, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 24.057, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-03-31", + "total_cases": 763.0, + "new_cases": 33.0, + "new_cases_smoothed": 45.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 367.015, + "new_cases_per_million": 15.874, + "new_cases_smoothed_per_million": 22.058, + "total_deaths_per_million": 5.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.687, + "new_tests": 1288.0, + "total_tests": 23762.0, + "total_tests_per_thousand": 11.43, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 23.835, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-01", + "total_cases": 814.0, + "new_cases": 51.0, + "new_cases_smoothed": 47.714, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 391.547, + "new_cases_per_million": 24.532, + "new_cases_smoothed_per_million": 22.951, + "total_deaths_per_million": 6.253, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.687, + "new_tests": 1095.0, + "total_tests": 24857.0, + "total_tests_per_thousand": 11.957, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 1080.0, + "new_tests_smoothed_per_thousand": 0.519, + "tests_per_case": 22.635, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-02", + "total_cases": 841.0, + "new_cases": 27.0, + "new_cases_smoothed": 44.714, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 404.535, + "new_cases_per_million": 12.987, + "new_cases_smoothed_per_million": 21.508, + "total_deaths_per_million": 7.215, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 1064.0, + "total_tests": 25921.0, + "total_tests_per_thousand": 12.468, + "new_tests_per_thousand": 0.512, + "new_tests_smoothed": 1079.0, + "new_tests_smoothed_per_thousand": 0.519, + "tests_per_case": 24.131, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-03", + "total_cases": 897.0, + "new_cases": 56.0, + "new_cases_smoothed": 45.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 431.472, + "new_cases_per_million": 26.937, + "new_cases_smoothed_per_million": 21.989, + "total_deaths_per_million": 7.696, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 1188.0, + "total_tests": 27109.0, + "total_tests_per_thousand": 13.04, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 1050.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 22.969, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-04", + "total_cases": 934.0, + "new_cases": 37.0, + "new_cases_smoothed": 43.143, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 449.269, + "new_cases_per_million": 17.798, + "new_cases_smoothed_per_million": 20.752, + "total_deaths_per_million": 9.62, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 655.0, + "total_tests": 27764.0, + "total_tests_per_thousand": 13.355, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 1002.0, + "new_tests_smoothed_per_thousand": 0.482, + "tests_per_case": 23.225, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 977.0, + "new_cases": 43.0, + "new_cases_smoothed": 40.857, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 469.953, + "new_cases_per_million": 20.684, + "new_cases_smoothed_per_million": 19.653, + "total_deaths_per_million": 10.582, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 489.0, + "total_tests": 28253.0, + "total_tests_per_thousand": 13.59, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 986.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 24.133000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 997.0, + "new_cases": 20.0, + "new_cases_smoothed": 38.143, + "total_deaths": 28.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 479.573, + "new_cases_per_million": 9.62, + "new_cases_smoothed_per_million": 18.347, + "total_deaths_per_million": 13.468, + "new_deaths_per_million": 2.886, + "new_deaths_smoothed_per_million": 1.168, + "new_tests": 1202.0, + "total_tests": 29455.0, + "total_tests_per_thousand": 14.168, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 997.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 26.139, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-07", + "total_cases": 1021.0, + "new_cases": 24.0, + "new_cases_smoothed": 36.857, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 491.118, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 17.729, + "total_deaths_per_million": 14.43, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 1.306, + "new_tests": 1214.0, + "total_tests": 30669.0, + "total_tests_per_thousand": 14.752, + "new_tests_per_thousand": 0.584, + "new_tests_smoothed": 987.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 26.779, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-08", + "total_cases": 1055.0, + "new_cases": 34.0, + "new_cases_smoothed": 34.429, + "total_deaths": 36.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 507.472, + "new_cases_per_million": 16.355, + "new_cases_smoothed_per_million": 16.561, + "total_deaths_per_million": 17.317, + "new_deaths_per_million": 2.886, + "new_deaths_smoothed_per_million": 1.58, + "new_tests": 1144.0, + "total_tests": 31813.0, + "total_tests_per_thousand": 15.303, + "new_tests_per_thousand": 0.55, + "new_tests_smoothed": 994.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 28.871, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-09", + "total_cases": 1091.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.714, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 524.789, + "new_cases_per_million": 17.317, + "new_cases_smoothed_per_million": 17.179, + "total_deaths_per_million": 19.241, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 1234.0, + "total_tests": 33047.0, + "total_tests_per_thousand": 15.896, + "new_tests_per_thousand": 0.594, + "new_tests_smoothed": 1018.0, + "new_tests_smoothed_per_thousand": 0.49, + "tests_per_case": 28.504, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-10", + "total_cases": 1124.0, + "new_cases": 33.0, + "new_cases_smoothed": 32.429, + "total_deaths": 43.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 540.662, + "new_cases_per_million": 15.874, + "new_cases_smoothed_per_million": 15.599, + "total_deaths_per_million": 20.684, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 1.855, + "new_tests": 1232.0, + "total_tests": 34279.0, + "total_tests_per_thousand": 16.489, + "new_tests_per_thousand": 0.593, + "new_tests_smoothed": 1024.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 31.576999999999998, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-11", + "total_cases": 1160.0, + "new_cases": 36.0, + "new_cases_smoothed": 32.286, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 557.979, + "new_cases_per_million": 17.317, + "new_cases_smoothed_per_million": 15.53, + "total_deaths_per_million": 21.646, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 572.0, + "total_tests": 34851.0, + "total_tests_per_thousand": 16.764, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 1012.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 31.345, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-12", + "total_cases": 1188.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.143, + "total_deaths": 50.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 571.447, + "new_cases_per_million": 13.468, + "new_cases_smoothed_per_million": 14.499, + "total_deaths_per_million": 24.051, + "new_deaths_per_million": 2.405, + "new_deaths_smoothed_per_million": 1.924, + "new_tests": 554.0, + "total_tests": 35405.0, + "total_tests_per_thousand": 17.03, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 1022.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 33.905, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-13", + "total_cases": 1205.0, + "new_cases": 17.0, + "new_cases_smoothed": 29.714, + "total_deaths": 53.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 579.625, + "new_cases_per_million": 8.177, + "new_cases_smoothed_per_million": 14.293, + "total_deaths_per_million": 25.494, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 541.0, + "total_tests": 35946.0, + "total_tests_per_thousand": 17.291, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 927.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 31.197, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-14", + "total_cases": 1212.0, + "new_cases": 7.0, + "new_cases_smoothed": 27.286, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 582.992, + "new_cases_per_million": 3.367, + "new_cases_smoothed_per_million": 13.125, + "total_deaths_per_million": 26.456, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 1.718, + "new_tests": 1168.0, + "total_tests": 37114.0, + "total_tests_per_thousand": 17.852, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 921.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 33.754, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-15", + "total_cases": 1220.0, + "new_cases": 8.0, + "new_cases_smoothed": 23.571, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 586.84, + "new_cases_per_million": 3.848, + "new_cases_smoothed_per_million": 11.338, + "total_deaths_per_million": 26.937, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 1.374, + "new_tests": 1023.0, + "total_tests": 38137.0, + "total_tests_per_thousand": 18.345, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 38.309, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-16", + "total_cases": 1248.0, + "new_cases": 28.0, + "new_cases_smoothed": 22.429, + "total_deaths": 61.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 600.308, + "new_cases_per_million": 13.468, + "new_cases_smoothed_per_million": 10.789, + "total_deaths_per_million": 29.342, + "new_deaths_per_million": 2.405, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 1193.0, + "total_tests": 39330.0, + "total_tests_per_thousand": 18.918, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 898.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 40.038000000000004, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-17", + "total_cases": 1268.0, + "new_cases": 20.0, + "new_cases_smoothed": 20.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 609.929, + "new_cases_per_million": 9.62, + "new_cases_smoothed_per_million": 9.895, + "total_deaths_per_million": 29.342, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.237, + "new_tests": 1250.0, + "total_tests": 40580.0, + "total_tests_per_thousand": 19.52, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 900.0, + "new_tests_smoothed_per_thousand": 0.433, + "tests_per_case": 43.75, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-18", + "total_cases": 1304.0, + "new_cases": 36.0, + "new_cases_smoothed": 20.571, + "total_deaths": 66.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 627.245, + "new_cases_per_million": 17.317, + "new_cases_smoothed_per_million": 9.895, + "total_deaths_per_million": 31.747, + "new_deaths_per_million": 2.405, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 685.0, + "total_tests": 41265.0, + "total_tests_per_thousand": 19.849, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 916.0, + "new_tests_smoothed_per_thousand": 0.441, + "tests_per_case": 44.528, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-19", + "total_cases": 1317.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.429, + "total_deaths": 70.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 633.498, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 8.864, + "total_deaths_per_million": 33.671, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 1.374, + "new_tests": 537.0, + "total_tests": 41802.0, + "total_tests_per_thousand": 20.107, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 914.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 49.597, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-20", + "total_cases": 1330.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.857, + "total_deaths": 74.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 639.752, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 8.59, + "total_deaths_per_million": 35.595, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 1174.0, + "total_tests": 42976.0, + "total_tests_per_thousand": 20.672, + "new_tests_per_thousand": 0.565, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 56.224, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 1335.0, + "new_cases": 5.0, + "new_cases_smoothed": 17.571, + "total_deaths": 74.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 642.157, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 8.452, + "total_deaths_per_million": 35.595, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.306, + "new_tests": 1459.0, + "total_tests": 44435.0, + "total_tests_per_thousand": 21.374, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 1046.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 59.528, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 1340.0, + "new_cases": 5.0, + "new_cases_smoothed": 17.143, + "total_deaths": 77.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 644.562, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 8.246, + "total_deaths_per_million": 37.038, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 1268.0, + "total_tests": 45703.0, + "total_tests_per_thousand": 21.984, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 1081.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 63.058, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-23", + "total_cases": 1353.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.0, + "total_deaths": 79.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 650.815, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 7.215, + "total_deaths_per_million": 38.0, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 1.237, + "new_tests": 1315.0, + "total_tests": 47018.0, + "total_tests_per_thousand": 22.616, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 1098.0, + "new_tests_smoothed_per_thousand": 0.528, + "tests_per_case": 73.2, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-24", + "total_cases": 1366.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.0, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 657.068, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 6.734, + "total_deaths_per_million": 38.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.237, + "new_tests": 1161.0, + "total_tests": 48179.0, + "total_tests_per_thousand": 23.175, + "new_tests_per_thousand": 0.558, + "new_tests_smoothed": 1086.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 77.571, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-25", + "total_cases": 1373.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.857, + "total_deaths": 80.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 660.435, + "new_cases_per_million": 3.367, + "new_cases_smoothed_per_million": 4.741, + "total_deaths_per_million": 38.481, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.962, + "new_tests": 794.0, + "total_tests": 48973.0, + "total_tests_per_thousand": 23.557, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 111.696, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-26", + "total_cases": 1388.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.143, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 667.651, + "new_cases_per_million": 7.215, + "new_cases_smoothed_per_million": 4.879, + "total_deaths_per_million": 38.962, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.756, + "new_tests": 634.0, + "total_tests": 49607.0, + "total_tests_per_thousand": 23.862, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 1115.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 109.93, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-27", + "total_cases": 1407.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.0, + "total_deaths": 82.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 676.79, + "new_cases_per_million": 9.139, + "new_cases_smoothed_per_million": 5.291, + "total_deaths_per_million": 39.443, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 683.0, + "total_tests": 50290.0, + "total_tests_per_thousand": 24.19, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 95.0, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-28", + "total_cases": 1407.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 676.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.948, + "total_deaths_per_million": 39.924, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.618, + "new_tests": 1317.0, + "total_tests": 51607.0, + "total_tests_per_thousand": 24.824, + "new_tests_per_thousand": 0.633, + "new_tests_smoothed": 1025.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 99.65299999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-29", + "total_cases": 1408.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.714, + "total_deaths": 86.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 677.271, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 4.673, + "total_deaths_per_million": 41.367, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 0.618, + "new_tests": 1341.0, + "total_tests": 52948.0, + "total_tests_per_thousand": 25.469, + "new_tests_per_thousand": 0.645, + "new_tests_smoothed": 1035.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 106.544, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 86.11 + }, + { + "date": "2020-04-30", + "total_cases": 1418.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.286, + "total_deaths": 89.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 682.081, + "new_cases_per_million": 4.81, + "new_cases_smoothed_per_million": 4.467, + "total_deaths_per_million": 42.81, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 0.687, + "new_tests": 1352.0, + "total_tests": 54300.0, + "total_tests_per_thousand": 26.119, + "new_tests_per_thousand": 0.65, + "new_tests_smoothed": 1040.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 112.0, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-01", + "total_cases": 1429.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 91.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 687.372, + "new_cases_per_million": 5.291, + "new_cases_smoothed_per_million": 4.329, + "total_deaths_per_million": 43.772, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 720.0, + "total_tests": 55020.0, + "total_tests_per_thousand": 26.466, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 977.0, + "new_tests_smoothed_per_thousand": 0.47, + "tests_per_case": 108.556, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-02", + "total_cases": 1434.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.714, + "total_deaths": 93.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 689.777, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 4.192, + "total_deaths_per_million": 44.735, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 500.0, + "total_tests": 55520.0, + "total_tests_per_thousand": 26.706, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 935.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 107.295, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-03", + "total_cases": 1439.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.286, + "total_deaths": 94.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 692.182, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 3.505, + "total_deaths_per_million": 45.216, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.893, + "new_tests": 616.0, + "total_tests": 56136.0, + "total_tests_per_thousand": 27.002, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 128.059, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-04", + "total_cases": 1439.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 96.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 692.182, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.199, + "total_deaths_per_million": 46.178, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.962, + "new_tests": 1338.0, + "total_tests": 57474.0, + "total_tests_per_thousand": 27.646, + "new_tests_per_thousand": 0.644, + "new_tests_smoothed": 1026.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 224.438, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-05", + "total_cases": 1445.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 97.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 695.068, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 2.611, + "total_deaths_per_million": 46.659, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.962, + "new_tests": 1449.0, + "total_tests": 58923.0, + "total_tests_per_thousand": 28.343, + "new_tests_per_thousand": 0.697, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 192.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-06", + "total_cases": 1448.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 98.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 696.511, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 2.749, + "total_deaths_per_million": 47.14, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.825, + "new_tests": 1055.0, + "total_tests": 59978.0, + "total_tests_per_thousand": 28.85, + "new_tests_per_thousand": 0.507, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 175.7, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-07", + "total_cases": 1449.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 99.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 696.992, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 47.621, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.687, + "new_tests": 1049.0, + "total_tests": 61027.0, + "total_tests_per_thousand": 29.355, + "new_tests_per_thousand": 0.505, + "new_tests_smoothed": 961.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 217.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-08", + "total_cases": 1450.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 99.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 697.474, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.443, + "total_deaths_per_million": 47.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.55, + "new_tests": 1176.0, + "total_tests": 62203.0, + "total_tests_per_thousand": 29.921, + "new_tests_per_thousand": 0.566, + "new_tests_smoothed": 1026.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 342.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-09", + "total_cases": 1454.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 100.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 699.398, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 1.374, + "total_deaths_per_million": 48.102, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 625.0, + "total_tests": 62828.0, + "total_tests_per_thousand": 30.221, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 365.4, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-10", + "total_cases": 1457.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 101.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 700.841, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 1.237, + "total_deaths_per_million": 48.583, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.481, + "new_tests": 537.0, + "total_tests": 63365.0, + "total_tests_per_thousand": 30.48, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 401.722, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 75.0 + }, + { + "date": "2020-05-11", + "total_cases": 1460.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 102.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 702.284, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 1.443, + "total_deaths_per_million": 49.064, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.412, + "new_tests": 1182.0, + "total_tests": 64547.0, + "total_tests_per_thousand": 31.048, + "new_tests_per_thousand": 0.569, + "new_tests_smoothed": 1010.0, + "new_tests_smoothed_per_thousand": 0.486, + "tests_per_case": 336.667, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-05-12", + "total_cases": 1461.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 702.765, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.099, + "total_deaths_per_million": 49.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 1147.0, + "total_tests": 65694.0, + "total_tests_per_thousand": 31.6, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 967.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 423.06199999999995, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-05-13", + "total_cases": 1463.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 703.727, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 1.031, + "total_deaths_per_million": 49.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 984.0, + "total_tests": 66678.0, + "total_tests_per_thousand": 32.073, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 957.0, + "new_tests_smoothed_per_thousand": 0.46, + "tests_per_case": 446.6, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-05-14", + "total_cases": 1464.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 103.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 704.208, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.031, + "total_deaths_per_million": 49.545, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1023.0, + "total_tests": 67701.0, + "total_tests_per_thousand": 32.565, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 953.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 444.733, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.24 + }, + { + "date": "2020-05-15", + "total_cases": 1465.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 704.689, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.031, + "total_deaths_per_million": 49.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1151.0, + "total_tests": 68852.0, + "total_tests_per_thousand": 33.119, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 950.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 443.333, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.24 + }, + { + "date": "2020-05-16", + "total_cases": 1465.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 704.689, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 49.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 511.0, + "total_tests": 69363.0, + "total_tests_per_thousand": 33.365, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 934.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 594.364, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 53.24 + }, + { + "date": "2020-05-17", + "total_cases": 1466.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 705.17, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.618, + "total_deaths_per_million": 49.545, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 479.0, + "total_tests": 69842.0, + "total_tests_per_thousand": 33.595, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 925.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 719.444, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 53.24 + }, + { + "date": "2020-05-18", + "total_cases": 1466.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 705.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 50.026, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1128.0, + "total_tests": 70970.0, + "total_tests_per_thousand": 34.138, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 918.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 1071.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-19", + "total_cases": 1467.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 705.651, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 50.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 981.0, + "total_tests": 71951.0, + "total_tests_per_thousand": 34.61, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 894.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 1043.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-20", + "total_cases": 1468.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 706.132, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 50.026, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 909.0, + "total_tests": 72860.0, + "total_tests_per_thousand": 35.047, + "new_tests_per_thousand": 0.437, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 1236.2, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-21", + "total_cases": 1468.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 106.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 706.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.275, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 882.0, + "total_tests": 73742.0, + "total_tests_per_thousand": 35.471, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 863.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 1510.25, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-22", + "total_cases": 1468.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 706.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 677.0, + "total_tests": 74419.0, + "total_tests_per_thousand": 35.797, + "new_tests_per_thousand": 0.326, + "new_tests_smoothed": 795.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 1855.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-23", + "total_cases": 1468.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 706.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 341.0, + "total_tests": 74760.0, + "total_tests_per_thousand": 35.961, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 771.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 1799.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-24", + "total_cases": 1468.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 706.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 256.0, + "total_tests": 75016.0, + "total_tests_per_thousand": 36.084, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 739.0, + "new_tests_smoothed_per_thousand": 0.355, + "tests_per_case": 2586.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-25", + "total_cases": 1469.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 706.613, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 754.0, + "total_tests": 75770.0, + "total_tests_per_thousand": 36.447, + "new_tests_per_thousand": 0.363, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 1600.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-26", + "total_cases": 1469.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 706.613, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.137, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 809.0, + "total_tests": 76579.0, + "total_tests_per_thousand": 36.836, + "new_tests_per_thousand": 0.389, + "new_tests_smoothed": 661.0, + "new_tests_smoothed_per_thousand": 0.318, + "tests_per_case": 2313.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-27", + "total_cases": 1469.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 106.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 706.613, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 50.988, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 631.0, + "total_tests": 77210.0, + "total_tests_per_thousand": 37.139, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 621.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 4347.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-28", + "total_cases": 1471.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 107.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 707.575, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 51.469, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 706.0, + "total_tests": 77916.0, + "total_tests_per_thousand": 37.479, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 596.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 1390.6670000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-29", + "total_cases": 1473.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 108.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 708.537, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 613.0, + "total_tests": 78529.0, + "total_tests_per_thousand": 37.774, + "new_tests_per_thousand": 0.295, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.282, + "tests_per_case": 821.8, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-30", + "total_cases": 1473.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 708.537, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 264.0, + "total_tests": 78793.0, + "total_tests_per_thousand": 37.901, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 576.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 806.4, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-05-31", + "total_cases": 1473.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 708.537, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 246.0, + "total_tests": 79039.0, + "total_tests_per_thousand": 38.019, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 575.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 805.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-06-01", + "total_cases": 1473.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 708.537, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.275, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 659.0, + "total_tests": 79698.0, + "total_tests_per_thousand": 38.336, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 561.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 981.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 42.13 + }, + { + "date": "2020-06-02", + "total_cases": 1475.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 709.499, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 807.0, + "total_tests": 80505.0, + "total_tests_per_thousand": 38.724, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 561.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 654.5, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-06-03", + "total_cases": 1475.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 709.499, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 828.0, + "total_tests": 81333.0, + "total_tests_per_thousand": 39.122, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 589.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 687.1669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-04", + "total_cases": 1477.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 710.461, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 828.0, + "total_tests": 82161.0, + "total_tests_per_thousand": 39.521, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 606.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 707.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-05", + "total_cases": 1479.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 711.423, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 715.0, + "total_tests": 82876.0, + "total_tests_per_thousand": 39.865, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 621.0, + "new_tests_smoothed_per_thousand": 0.299, + "tests_per_case": 724.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-06", + "total_cases": 1484.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.571, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 713.828, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 229.0, + "total_tests": 83105.0, + "total_tests_per_thousand": 39.975, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 392.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-07", + "total_cases": 1485.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.309, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.825, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 211.0, + "total_tests": 83316.0, + "total_tests_per_thousand": 40.076, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 611.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 356.417, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-08", + "total_cases": 1485.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.825, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 814.0, + "total_tests": 84130.0, + "total_tests_per_thousand": 40.468, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 633.0, + "new_tests_smoothed_per_thousand": 0.304, + "tests_per_case": 369.25, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-09", + "total_cases": 1485.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.309, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.687, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 738.0, + "total_tests": 84868.0, + "total_tests_per_thousand": 40.823, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 623.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 436.1, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-10", + "total_cases": 1486.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 108.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 714.79, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 51.95, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 758.0, + "total_tests": 85626.0, + "total_tests_per_thousand": 41.187, + "new_tests_per_thousand": 0.365, + "new_tests_smoothed": 613.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 390.091, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-11", + "total_cases": 1488.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 109.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 715.752, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 702.0, + "total_tests": 86328.0, + "total_tests_per_thousand": 41.525, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 595.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 378.63599999999997, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-12", + "total_cases": 1488.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 715.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.618, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 767.0, + "total_tests": 87095.0, + "total_tests_per_thousand": 41.894, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 603.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 469.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-13", + "total_cases": 1490.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 716.714, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 291.0, + "total_tests": 87386.0, + "total_tests_per_thousand": 42.034, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 714.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-14", + "total_cases": 1492.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 717.676, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 212.0, + "total_tests": 87598.0, + "total_tests_per_thousand": 42.136, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 612.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-15", + "total_cases": 1495.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 719.119, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 0.687, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 567.0, + "total_tests": 88165.0, + "total_tests_per_thousand": 42.409, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 576.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 403.2, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-16", + "total_cases": 1496.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 719.6, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.756, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 986.0, + "total_tests": 89151.0, + "total_tests_per_thousand": 42.883, + "new_tests_per_thousand": 0.474, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.294, + "tests_per_case": 389.455, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-17", + "total_cases": 1499.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 721.043, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 0.893, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 952.0, + "total_tests": 90103.0, + "total_tests_per_thousand": 43.341, + "new_tests_per_thousand": 0.458, + "new_tests_smoothed": 640.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 344.615, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-18", + "total_cases": 1503.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.143, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 722.967, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 1.031, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 902.0, + "total_tests": 91005.0, + "total_tests_per_thousand": 43.775, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 311.733, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-19", + "total_cases": 1511.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 726.815, + "new_cases_per_million": 3.848, + "new_cases_smoothed_per_million": 1.58, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1147.0, + "total_tests": 92152.0, + "total_tests_per_thousand": 44.327, + "new_tests_per_thousand": 0.552, + "new_tests_smoothed": 722.0, + "new_tests_smoothed_per_thousand": 0.347, + "tests_per_case": 219.739, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-20", + "total_cases": 1513.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 727.778, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 1.58, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 767.0, + "total_tests": 92919.0, + "total_tests_per_thousand": 44.696, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 790.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 240.435, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-21", + "total_cases": 1519.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 730.664, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 1.855, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 262.0, + "total_tests": 93181.0, + "total_tests_per_thousand": 44.822, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 798.0, + "new_tests_smoothed_per_thousand": 0.384, + "tests_per_case": 206.889, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-22", + "total_cases": 1520.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 731.145, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 984.0, + "total_tests": 94165.0, + "total_tests_per_thousand": 45.295, + "new_tests_per_thousand": 0.473, + "new_tests_smoothed": 857.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 239.96, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-23", + "total_cases": 1521.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 731.626, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 1.718, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1222.0, + "total_tests": 95387.0, + "total_tests_per_thousand": 45.883, + "new_tests_per_thousand": 0.588, + "new_tests_smoothed": 891.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 249.48, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-24", + "total_cases": 1534.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.0, + "total_deaths": 111.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 737.879, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 2.405, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1212.0, + "total_tests": 96599.0, + "total_tests_per_thousand": 46.466, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 928.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 185.6, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-25", + "total_cases": 1541.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 741.246, + "new_cases_per_million": 3.367, + "new_cases_smoothed_per_million": 2.611, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 843.0, + "total_tests": 97442.0, + "total_tests_per_thousand": 46.871, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 920.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 169.47400000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-26", + "total_cases": 1547.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 744.132, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 2.474, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 878.0, + "total_tests": 98320.0, + "total_tests_per_thousand": 47.294, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 881.0, + "new_tests_smoothed_per_thousand": 0.424, + "tests_per_case": 171.30599999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-27", + "total_cases": 1558.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 749.423, + "new_cases_per_million": 5.291, + "new_cases_smoothed_per_million": 3.092, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 625.0, + "total_tests": 98945.0, + "total_tests_per_thousand": 47.594, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 861.0, + "new_tests_smoothed_per_thousand": 0.414, + "tests_per_case": 133.933, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-28", + "total_cases": 1572.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 756.157, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 3.642, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 300.0, + "total_tests": 99245.0, + "total_tests_per_thousand": 47.738, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 866.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 114.37700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-29", + "total_cases": 1581.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.714, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 760.487, + "new_cases_per_million": 4.329, + "new_cases_smoothed_per_million": 4.192, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1085.0, + "total_tests": 100330.0, + "total_tests_per_thousand": 48.26, + "new_tests_per_thousand": 0.522, + "new_tests_smoothed": 881.0, + "new_tests_smoothed_per_thousand": 0.424, + "tests_per_case": 101.098, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-06-30", + "total_cases": 1585.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 762.411, + "new_cases_per_million": 1.924, + "new_cases_smoothed_per_million": 4.398, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1399.0, + "total_tests": 101729.0, + "total_tests_per_thousand": 48.933, + "new_tests_per_thousand": 0.673, + "new_tests_smoothed": 906.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 99.094, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-01", + "total_cases": 1600.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 769.626, + "new_cases_per_million": 7.215, + "new_cases_smoothed_per_million": 4.535, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1198.0, + "total_tests": 102927.0, + "total_tests_per_thousand": 49.51, + "new_tests_per_thousand": 0.576, + "new_tests_smoothed": 904.0, + "new_tests_smoothed_per_thousand": 0.435, + "tests_per_case": 95.87899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-02", + "total_cases": 1613.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.286, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.879, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 4.948, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1274.0, + "total_tests": 104201.0, + "total_tests_per_thousand": 50.122, + "new_tests_per_thousand": 0.613, + "new_tests_smoothed": 966.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 93.917, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-03", + "total_cases": 1633.0, + "new_cases": 20.0, + "new_cases_smoothed": 12.286, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 785.499, + "new_cases_per_million": 9.62, + "new_cases_smoothed_per_million": 5.91, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1451.0, + "total_tests": 105652.0, + "total_tests_per_thousand": 50.82, + "new_tests_per_thousand": 0.698, + "new_tests_smoothed": 1047.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 85.221, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-04", + "total_cases": 1649.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 793.196, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 6.253, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 716.0, + "total_tests": 106368.0, + "total_tests_per_thousand": 51.165, + "new_tests_per_thousand": 0.344, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 81.538, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-05", + "total_cases": 1679.0, + "new_cases": 30.0, + "new_cases_smoothed": 15.286, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 807.626, + "new_cases_per_million": 14.43, + "new_cases_smoothed_per_million": 7.353, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 530.0, + "total_tests": 106898.0, + "total_tests_per_thousand": 51.42, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 71.505, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-06", + "total_cases": 1700.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 817.728, + "new_cases_per_million": 10.101, + "new_cases_smoothed_per_million": 8.177, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1330.0, + "total_tests": 108228.0, + "total_tests_per_thousand": 52.059, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 1128.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 66.35300000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-07", + "total_cases": 1716.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.714, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 825.424, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 9.002, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1607.0, + "total_tests": 109835.0, + "total_tests_per_thousand": 52.832, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 1158.0, + "new_tests_smoothed_per_thousand": 0.557, + "tests_per_case": 61.878, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-08", + "total_cases": 1739.0, + "new_cases": 23.0, + "new_cases_smoothed": 19.857, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 836.487, + "new_cases_per_million": 11.063, + "new_cases_smoothed_per_million": 9.552, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1271.0, + "total_tests": 111106.0, + "total_tests_per_thousand": 53.444, + "new_tests_per_thousand": 0.611, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.562, + "tests_per_case": 58.82, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-09", + "total_cases": 1763.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 848.032, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 10.307, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1390.0, + "total_tests": 112496.0, + "total_tests_per_thousand": 54.112, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 1185.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 55.3, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-10", + "total_cases": 1776.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 854.285, + "new_cases_per_million": 6.253, + "new_cases_smoothed_per_million": 9.826, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1169.0, + "total_tests": 113665.0, + "total_tests_per_thousand": 54.675, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 1145.0, + "new_tests_smoothed_per_thousand": 0.551, + "tests_per_case": 56.049, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-11", + "total_cases": 1793.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 862.462, + "new_cases_per_million": 8.177, + "new_cases_smoothed_per_million": 9.895, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 550.0, + "total_tests": 114215.0, + "total_tests_per_thousand": 54.939, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 1121.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 54.493, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-12", + "total_cases": 1827.0, + "new_cases": 34.0, + "new_cases_smoothed": 21.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 878.817, + "new_cases_per_million": 16.355, + "new_cases_smoothed_per_million": 10.17, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 450.0, + "total_tests": 114665.0, + "total_tests_per_thousand": 55.156, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 1110.0, + "new_tests_smoothed_per_thousand": 0.534, + "tests_per_case": 52.5, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-13", + "total_cases": 1841.0, + "new_cases": 14.0, + "new_cases_smoothed": 20.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 885.551, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 9.689, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1208.0, + "total_tests": 115873.0, + "total_tests_per_thousand": 55.737, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 1092.0, + "new_tests_smoothed_per_thousand": 0.525, + "tests_per_case": 54.213, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-14", + "total_cases": 1849.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 889.399, + "new_cases_per_million": 3.848, + "new_cases_smoothed_per_million": 9.139, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1112.0, + "total_tests": 116985.0, + "total_tests_per_thousand": 56.272, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 1021.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 53.736999999999995, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-15", + "total_cases": 1859.0, + "new_cases": 10.0, + "new_cases_smoothed": 17.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 894.209, + "new_cases_per_million": 4.81, + "new_cases_smoothed_per_million": 8.246, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1032.0, + "total_tests": 118017.0, + "total_tests_per_thousand": 56.768, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 987.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 57.575, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-16", + "total_cases": 1878.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.429, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 903.348, + "new_cases_per_million": 9.139, + "new_cases_smoothed_per_million": 7.902, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1012.0, + "total_tests": 119029.0, + "total_tests_per_thousand": 57.255, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 56.791000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-17", + "total_cases": 1897.0, + "new_cases": 19.0, + "new_cases_smoothed": 17.286, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 912.488, + "new_cases_per_million": 9.139, + "new_cases_smoothed_per_million": 8.315, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1027.0, + "total_tests": 120056.0, + "total_tests_per_thousand": 57.749, + "new_tests_per_thousand": 0.494, + "new_tests_smoothed": 913.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 52.818000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-18", + "total_cases": 1916.0, + "new_cases": 19.0, + "new_cases_smoothed": 17.571, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 921.627, + "new_cases_per_million": 9.139, + "new_cases_smoothed_per_million": 8.452, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 480.0, + "total_tests": 120536.0, + "total_tests_per_thousand": 57.98, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 51.39, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-19", + "total_cases": 1940.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.143, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 933.171, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 371.0, + "total_tests": 120907.0, + "total_tests_per_thousand": 58.158, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 892.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 55.257, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-07-20", + "total_cases": 1946.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.0, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 936.058, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 7.215, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 914.0, + "total_tests": 121821.0, + "total_tests_per_thousand": 58.598, + "new_tests_per_thousand": 0.44, + "new_tests_smoothed": 850.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 56.667, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-21", + "total_cases": 1953.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.857, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 939.425, + "new_cases_per_million": 3.367, + "new_cases_smoothed_per_million": 7.147, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1150.0, + "total_tests": 122971.0, + "total_tests_per_thousand": 59.151, + "new_tests_per_thousand": 0.553, + "new_tests_smoothed": 855.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 57.548, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-22", + "total_cases": 1977.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.857, + "total_deaths": 111.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 950.969, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 8.109, + "total_deaths_per_million": 53.393, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 935.0, + "total_tests": 123906.0, + "total_tests_per_thousand": 59.601, + "new_tests_per_thousand": 0.45, + "new_tests_smoothed": 841.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 49.89, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-23", + "total_cases": 2015.0, + "new_cases": 38.0, + "new_cases_smoothed": 19.571, + "total_deaths": 115.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 969.248, + "new_cases_per_million": 18.279, + "new_cases_smoothed_per_million": 9.414, + "total_deaths_per_million": 55.317, + "new_deaths_per_million": 1.924, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 848.0, + "total_tests": 124754.0, + "total_tests_per_thousand": 60.009, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 818.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 41.79600000000001, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-24", + "total_cases": 2033.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 977.906, + "new_cases_per_million": 8.658, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 55.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 918.0, + "total_tests": 125672.0, + "total_tests_per_thousand": 60.45, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 802.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 41.278999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-25", + "total_cases": 2052.0, + "new_cases": 19.0, + "new_cases_smoothed": 19.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 987.045, + "new_cases_per_million": 9.139, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 55.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 565.0, + "total_tests": 126237.0, + "total_tests_per_thousand": 60.722, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 814.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 41.897, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-26", + "total_cases": 2066.0, + "new_cases": 14.0, + "new_cases_smoothed": 18.0, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 993.779, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 8.658, + "total_deaths_per_million": 55.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 335.0, + "total_tests": 126572.0, + "total_tests_per_thousand": 60.883, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 809.0, + "new_tests_smoothed_per_thousand": 0.389, + "tests_per_case": 44.943999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-27", + "total_cases": 2082.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.429, + "total_deaths": 115.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1001.476, + "new_cases_per_million": 7.696, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 55.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 874.0, + "total_tests": 127446.0, + "total_tests_per_thousand": 61.304, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 804.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 41.382, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-28", + "total_cases": 2087.0, + "new_cases": 5.0, + "new_cases_smoothed": 19.143, + "total_deaths": 117.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1003.881, + "new_cases_per_million": 2.405, + "new_cases_smoothed_per_million": 9.208, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.412, + "new_tests": 919.0, + "total_tests": 128365.0, + "total_tests_per_thousand": 61.746, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 771.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 40.275999999999996, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-29", + "total_cases": 2101.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.714, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1010.615, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 8.521, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.412, + "new_tests": 879.0, + "total_tests": 129244.0, + "total_tests_per_thousand": 62.168, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 763.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 43.073, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-30", + "total_cases": 2115.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.286, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1017.349, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 6.872, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 917.0, + "total_tests": 130161.0, + "total_tests_per_thousand": 62.61, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 772.0, + "new_tests_smoothed_per_thousand": 0.371, + "tests_per_case": 54.04, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-31", + "total_cases": 2139.0, + "new_cases": 24.0, + "new_cases_smoothed": 15.143, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1028.894, + "new_cases_per_million": 11.544, + "new_cases_smoothed_per_million": 7.284, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 892.0, + "total_tests": 131053.0, + "total_tests_per_thousand": 63.039, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 769.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 50.783, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-01", + "total_cases": 2165.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.143, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1041.4, + "new_cases_per_million": 12.506, + "new_cases_smoothed_per_million": 7.765, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 374.0, + "total_tests": 131427.0, + "total_tests_per_thousand": 63.219, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 741.0, + "new_tests_smoothed_per_thousand": 0.356, + "tests_per_case": 45.903, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-02", + "total_cases": 2171.0, + "new_cases": 6.0, + "new_cases_smoothed": 15.0, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1044.286, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 7.215, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 272.0, + "total_tests": 131699.0, + "total_tests_per_thousand": 63.349, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 732.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 48.8, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-03", + "total_cases": 2180.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.0, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1048.615, + "new_cases_per_million": 4.329, + "new_cases_smoothed_per_million": 6.734, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 890.0, + "total_tests": 132589.0, + "total_tests_per_thousand": 63.777, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 735.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 52.5, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-04", + "total_cases": 2181.0, + "new_cases": 1.0, + "new_cases_smoothed": 13.429, + "total_deaths": 117.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1049.096, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 6.459, + "total_deaths_per_million": 56.279, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 974.0, + "total_tests": 133563.0, + "total_tests_per_thousand": 64.246, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 743.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 55.33, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-05", + "total_cases": 2190.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.714, + "total_deaths": 118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1053.426, + "new_cases_per_million": 4.329, + "new_cases_smoothed_per_million": 6.116, + "total_deaths_per_million": 56.76, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 771.0, + "total_tests": 134334.0, + "total_tests_per_thousand": 64.617, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 727.0, + "new_tests_smoothed_per_thousand": 0.35, + "tests_per_case": 57.18, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-06", + "total_cases": 2208.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.286, + "total_deaths": 118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1062.084, + "new_cases_per_million": 8.658, + "new_cases_smoothed_per_million": 6.391, + "total_deaths_per_million": 56.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 753.0, + "total_tests": 135087.0, + "total_tests_per_thousand": 64.979, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 704.0, + "new_tests_smoothed_per_thousand": 0.339, + "tests_per_case": 52.989, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-07", + "total_cases": 2223.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.0, + "total_deaths": 118.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1069.299, + "new_cases_per_million": 7.215, + "new_cases_smoothed_per_million": 5.772, + "total_deaths_per_million": 56.76, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 829.0, + "total_tests": 135916.0, + "total_tests_per_thousand": 65.378, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 695.0, + "new_tests_smoothed_per_thousand": 0.334, + "tests_per_case": 57.917, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-08", + "total_cases": 2233.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.714, + "total_deaths": 119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1074.109, + "new_cases_per_million": 4.81, + "new_cases_smoothed_per_million": 4.673, + "total_deaths_per_million": 57.241, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 304.0, + "total_tests": 136220.0, + "total_tests_per_thousand": 65.524, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 685.0, + "new_tests_smoothed_per_thousand": 0.329, + "tests_per_case": 70.515, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-09", + "total_cases": 2247.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 120.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1080.843, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 5.222, + "total_deaths_per_million": 57.722, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 322.0, + "total_tests": 136542.0, + "total_tests_per_thousand": 65.679, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 692.0, + "new_tests_smoothed_per_thousand": 0.333, + "tests_per_case": 63.736999999999995, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-10", + "total_cases": 2249.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.857, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1081.805, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 4.741, + "total_deaths_per_million": 57.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1058.0, + "total_tests": 137600.0, + "total_tests_per_thousand": 66.188, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 716.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 72.638, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-11", + "total_cases": 2255.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.571, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1084.692, + "new_cases_per_million": 2.886, + "new_cases_smoothed_per_million": 5.085, + "total_deaths_per_million": 57.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1118.0, + "total_tests": 138718.0, + "total_tests_per_thousand": 66.726, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 736.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 69.622, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-12", + "total_cases": 2272.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.714, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1092.869, + "new_cases_per_million": 8.177, + "new_cases_smoothed_per_million": 5.635, + "total_deaths_per_million": 57.722, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 856.0, + "total_tests": 139574.0, + "total_tests_per_thousand": 67.137, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 749.0, + "new_tests_smoothed_per_thousand": 0.36, + "tests_per_case": 63.93899999999999, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-13", + "total_cases": 2303.0, + "new_cases": 31.0, + "new_cases_smoothed": 13.571, + "total_deaths": 123.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1107.78, + "new_cases_per_million": 14.912, + "new_cases_smoothed_per_million": 6.528, + "total_deaths_per_million": 59.165, + "new_deaths_per_million": 1.443, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 937.0, + "total_tests": 140511.0, + "total_tests_per_thousand": 67.588, + "new_tests_per_thousand": 0.451, + "new_tests_smoothed": 775.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 57.105, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-14", + "total_cases": 2332.0, + "new_cases": 29.0, + "new_cases_smoothed": 15.571, + "total_deaths": 124.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1121.73, + "new_cases_per_million": 13.949, + "new_cases_smoothed_per_million": 7.49, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.412, + "new_tests": 1034.0, + "total_tests": 141545.0, + "total_tests_per_thousand": 68.085, + "new_tests_per_thousand": 0.497, + "new_tests_smoothed": 804.0, + "new_tests_smoothed_per_thousand": 0.387, + "tests_per_case": 51.633, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-15", + "total_cases": 2369.0, + "new_cases": 37.0, + "new_cases_smoothed": 19.429, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1139.527, + "new_cases_per_million": 17.798, + "new_cases_smoothed_per_million": 9.345, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.344, + "new_tests": 382.0, + "total_tests": 141927.0, + "total_tests_per_thousand": 68.269, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 815.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 41.949, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-16", + "total_cases": 2401.0, + "new_cases": 32.0, + "new_cases_smoothed": 22.0, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1154.92, + "new_cases_per_million": 15.393, + "new_cases_smoothed_per_million": 10.582, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 393.0, + "total_tests": 142320.0, + "total_tests_per_thousand": 68.458, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 825.0, + "new_tests_smoothed_per_thousand": 0.397, + "tests_per_case": 37.5, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-17", + "total_cases": 2416.0, + "new_cases": 15.0, + "new_cases_smoothed": 23.857, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1162.135, + "new_cases_per_million": 7.215, + "new_cases_smoothed_per_million": 11.476, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1143.0, + "total_tests": 143463.0, + "total_tests_per_thousand": 69.008, + "new_tests_per_thousand": 0.55, + "new_tests_smoothed": 838.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 35.126, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-18", + "total_cases": 2438.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.143, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1172.718, + "new_cases_per_million": 10.582, + "new_cases_smoothed_per_million": 12.575, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1092.0, + "total_tests": 144555.0, + "total_tests_per_thousand": 69.533, + "new_tests_per_thousand": 0.525, + "new_tests_smoothed": 834.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 31.901999999999997, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-19", + "total_cases": 2456.0, + "new_cases": 18.0, + "new_cases_smoothed": 26.286, + "total_deaths": 124.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1181.376, + "new_cases_per_million": 8.658, + "new_cases_smoothed_per_million": 12.644, + "total_deaths_per_million": 59.646, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1168.0, + "total_tests": 145723.0, + "total_tests_per_thousand": 70.095, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 878.0, + "new_tests_smoothed_per_thousand": 0.422, + "tests_per_case": 33.402, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-20", + "total_cases": 2493.0, + "new_cases": 37.0, + "new_cases_smoothed": 27.143, + "total_deaths": 125.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1199.173, + "new_cases_per_million": 17.798, + "new_cases_smoothed_per_million": 13.056, + "total_deaths_per_million": 60.127, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.137, + "new_tests": 1096.0, + "total_tests": 146819.0, + "total_tests_per_thousand": 70.622, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 901.0, + "new_tests_smoothed_per_thousand": 0.433, + "tests_per_case": 33.195, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-21", + "total_cases": 2536.0, + "new_cases": 43.0, + "new_cases_smoothed": 29.143, + "total_deaths": 125.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1219.857, + "new_cases_per_million": 20.684, + "new_cases_smoothed_per_million": 14.018, + "total_deaths_per_million": 60.127, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1203.0, + "total_tests": 148022.0, + "total_tests_per_thousand": 71.201, + "new_tests_per_thousand": 0.579, + "new_tests_smoothed": 925.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 31.74, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-22", + "total_cases": 2574.0, + "new_cases": 38.0, + "new_cases_smoothed": 29.286, + "total_deaths": 127.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1238.136, + "new_cases_per_million": 18.279, + "new_cases_smoothed_per_million": 14.087, + "total_deaths_per_million": 61.089, + "new_deaths_per_million": 0.962, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 760.0, + "total_tests": 148782.0, + "total_tests_per_thousand": 71.567, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 33.429, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-23", + "total_cases": 2617.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.857, + "total_deaths": 127.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1258.819, + "new_cases_per_million": 20.684, + "new_cases_smoothed_per_million": 14.843, + "total_deaths_per_million": 61.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 453.0, + "total_tests": 149235.0, + "total_tests_per_thousand": 71.784, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 988.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 32.019, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-24", + "total_cases": 2651.0, + "new_cases": 34.0, + "new_cases_smoothed": 33.571, + "total_deaths": 127.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1275.174, + "new_cases_per_million": 16.355, + "new_cases_smoothed_per_million": 16.148, + "total_deaths_per_million": 61.089, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1460.0, + "total_tests": 150695.0, + "total_tests_per_thousand": 72.487, + "new_tests_per_thousand": 0.702, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 30.77, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-25", + "total_cases": 2665.0, + "new_cases": 14.0, + "new_cases_smoothed": 32.429, + "total_deaths": 128.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1281.908, + "new_cases_per_million": 6.734, + "new_cases_smoothed_per_million": 15.599, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1439.0, + "total_tests": 152134.0, + "total_tests_per_thousand": 73.179, + "new_tests_per_thousand": 0.692, + "new_tests_smoothed": 1083.0, + "new_tests_smoothed_per_thousand": 0.521, + "tests_per_case": 33.396, + "positive_rate": 0.03, + "tests_units": "tests performed" + }, + { + "date": "2020-08-26", + "total_cases": 2686.0, + "new_cases": 21.0, + "new_cases_smoothed": 32.857, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1292.01, + "new_cases_per_million": 10.101, + "new_cases_smoothed_per_million": 15.805, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.275, + "new_tests": 1299.0, + "total_tests": 153433.0, + "total_tests_per_thousand": 73.804, + "new_tests_per_thousand": 0.625, + "new_tests_smoothed": 1101.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 33.509, + "positive_rate": 0.03, + "tests_units": "tests performed" + }, + { + "date": "2020-08-27", + "total_cases": 2722.0, + "new_cases": 36.0, + "new_cases_smoothed": 32.714, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1309.326, + "new_cases_per_million": 17.317, + "new_cases_smoothed_per_million": 15.736, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1338.0, + "total_tests": 154771.0, + "total_tests_per_thousand": 74.447, + "new_tests_per_thousand": 0.644, + "new_tests_smoothed": 1136.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 34.725, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed" + }, + { + "date": "2020-08-28", + "total_cases": 2755.0, + "new_cases": 33.0, + "new_cases_smoothed": 31.286, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1325.2, + "new_cases_per_million": 15.874, + "new_cases_smoothed_per_million": 15.049, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 1328.0, + "total_tests": 156099.0, + "total_tests_per_thousand": 75.086, + "new_tests_per_thousand": 0.639, + "new_tests_smoothed": 1154.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 36.885999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 2797.0, + "new_cases": 42.0, + "new_cases_smoothed": 31.857, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1345.402, + "new_cases_per_million": 20.203, + "new_cases_smoothed_per_million": 15.324, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 769.0, + "total_tests": 156868.0, + "total_tests_per_thousand": 75.456, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 1155.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 36.256, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 2834.0, + "new_cases": 37.0, + "new_cases_smoothed": 31.0, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1363.2, + "new_cases_per_million": 17.798, + "new_cases_smoothed_per_million": 14.912, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 588.0, + "total_tests": 157456.0, + "total_tests_per_thousand": 75.739, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 1174.0, + "new_tests_smoothed_per_thousand": 0.565, + "tests_per_case": 37.871, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 2865.0, + "new_cases": 31.0, + "new_cases_smoothed": 30.571, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1378.111, + "new_cases_per_million": 14.912, + "new_cases_smoothed_per_million": 14.705, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 1415.0, + "total_tests": 158871.0, + "total_tests_per_thousand": 76.42, + "new_tests_per_thousand": 0.681, + "new_tests_smoothed": 1168.0, + "new_tests_smoothed_per_thousand": 0.562, + "tests_per_case": 38.205999999999996, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 2892.0, + "new_cases": 27.0, + "new_cases_smoothed": 32.429, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1391.099, + "new_cases_per_million": 12.987, + "new_cases_smoothed_per_million": 15.599, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1608.0, + "total_tests": 160479.0, + "total_tests_per_thousand": 77.193, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 1192.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 36.758, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 2933.0, + "new_cases": 41.0, + "new_cases_smoothed": 35.286, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1410.821, + "new_cases_per_million": 19.722, + "new_cases_smoothed_per_million": 16.973, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1653.0, + "total_tests": 162132.0, + "total_tests_per_thousand": 77.988, + "new_tests_per_thousand": 0.795, + "new_tests_smoothed": 1243.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 35.227, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 2988.0, + "new_cases": 55.0, + "new_cases_smoothed": 38.0, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1437.276, + "new_cases_per_million": 26.456, + "new_cases_smoothed_per_million": 18.279, + "total_deaths_per_million": 61.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1733.0, + "total_tests": 163865.0, + "total_tests_per_thousand": 78.822, + "new_tests_per_thousand": 0.834, + "new_tests_smoothed": 1299.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 34.184, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 3041.0, + "new_cases": 53.0, + "new_cases_smoothed": 40.857, + "total_deaths": 129.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1462.77, + "new_cases_per_million": 25.494, + "new_cases_smoothed_per_million": 19.653, + "total_deaths_per_million": 62.051, + "new_deaths_per_million": 0.481, + "new_deaths_smoothed_per_million": 0.069 + }, + { + "date": "2020-09-05", + "total_cases": 3088.0, + "new_cases": 47.0, + "new_cases_smoothed": 41.571, + "total_deaths": 129.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1485.378, + "new_cases_per_million": 22.608, + "new_cases_smoothed_per_million": 19.997, + "total_deaths_per_million": 62.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069 + } + ] + }, + "SOM": { + "continent": "Africa", + "location": "Somalia", + "population": 15893219.0, + "population_density": 23.5, + "median_age": 16.8, + "aged_65_older": 2.731, + "aged_70_older": 1.496, + "cardiovasc_death_rate": 365.769, + "diabetes_prevalence": 6.05, + "handwashing_facilities": 9.831, + "hospital_beds_per_thousand": 0.9, + "life_expectancy": 57.4, + "data": [ + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.063, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.126, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.189, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-29", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-30", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-31", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-01", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.189, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.315, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.315, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.315, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-05", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.44, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.44, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-08", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.503, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-04-10", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.755, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 52.78 + }, + { + "date": "2020-04-11", + "total_cases": 21.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.321, + "new_cases_per_million": 0.566, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 60.19 + }, + { + "date": "2020-04-12", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.321, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.126, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 60.19 + }, + { + "date": "2020-04-13", + "total_cases": 25.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.573, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.126, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 60.19 + }, + { + "date": "2020-04-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 0.126, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 60.19 + }, + { + "date": "2020-04-15", + "total_cases": 60.0, + "new_cases": 35.0, + "new_cases_smoothed": 7.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3.775, + "new_cases_per_million": 2.202, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 0.126, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 60.19 + }, + { + "date": "2020-04-16", + "total_cases": 80.0, + "new_cases": 20.0, + "new_cases_smoothed": 10.286, + "total_deaths": 5.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.034, + "new_cases_per_million": 1.258, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 0.315, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 60.19 + }, + { + "date": "2020-04-17", + "total_cases": 80.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.611, + "total_deaths_per_million": 0.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-04-18", + "total_cases": 116.0, + "new_cases": 36.0, + "new_cases_smoothed": 13.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.299, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.854, + "total_deaths_per_million": 0.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 60.19 + }, + { + "date": "2020-04-19", + "total_cases": 135.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.286, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.494, + "new_cases_per_million": 1.195, + "new_cases_smoothed_per_million": 1.025, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-04-20", + "total_cases": 164.0, + "new_cases": 29.0, + "new_cases_smoothed": 19.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.319, + "new_cases_per_million": 1.825, + "new_cases_smoothed_per_million": 1.249, + "total_deaths_per_million": 0.44, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 60.19 + }, + { + "date": "2020-04-21", + "total_cases": 237.0, + "new_cases": 73.0, + "new_cases_smoothed": 30.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 14.912, + "new_cases_per_million": 4.593, + "new_cases_smoothed_per_million": 1.906, + "total_deaths_per_million": 0.503, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-04-22", + "total_cases": 286.0, + "new_cases": 49.0, + "new_cases_smoothed": 32.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 17.995, + "new_cases_per_million": 3.083, + "new_cases_smoothed_per_million": 2.031, + "total_deaths_per_million": 0.503, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-04-23", + "total_cases": 286.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.429, + "total_deaths": 14.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 17.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.852, + "total_deaths_per_million": 0.881, + "new_deaths_per_million": 0.378, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-04-24", + "total_cases": 328.0, + "new_cases": 42.0, + "new_cases_smoothed": 35.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 20.638, + "new_cases_per_million": 2.643, + "new_cases_smoothed_per_million": 2.229, + "total_deaths_per_million": 0.881, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-04-25", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.286, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 20.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.906, + "total_deaths_per_million": 1.007, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 60.19 + }, + { + "date": "2020-04-26", + "total_cases": 390.0, + "new_cases": 62.0, + "new_cases_smoothed": 36.429, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 24.539, + "new_cases_per_million": 3.901, + "new_cases_smoothed_per_million": 2.292, + "total_deaths_per_million": 1.133, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 60.19 + }, + { + "date": "2020-04-27", + "total_cases": 436.0, + "new_cases": 46.0, + "new_cases_smoothed": 38.857, + "total_deaths": 23.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 27.433, + "new_cases_per_million": 2.894, + "new_cases_smoothed_per_million": 2.445, + "total_deaths_per_million": 1.447, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 60.19 + }, + { + "date": "2020-04-28", + "total_cases": 480.0, + "new_cases": 44.0, + "new_cases_smoothed": 34.714, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 30.202, + "new_cases_per_million": 2.768, + "new_cases_smoothed_per_million": 2.184, + "total_deaths_per_million": 1.636, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 60.19 + }, + { + "date": "2020-04-29", + "total_cases": 528.0, + "new_cases": 48.0, + "new_cases_smoothed": 34.571, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 33.222, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 2.175, + "total_deaths_per_million": 1.762, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.18, + "stringency_index": 60.19 + }, + { + "date": "2020-04-30", + "total_cases": 582.0, + "new_cases": 54.0, + "new_cases_smoothed": 42.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 36.619, + "new_cases_per_million": 3.398, + "new_cases_smoothed_per_million": 2.661, + "total_deaths_per_million": 1.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 60.19 + }, + { + "date": "2020-05-01", + "total_cases": 601.0, + "new_cases": 19.0, + "new_cases_smoothed": 39.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 37.815, + "new_cases_per_million": 1.195, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 1.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 60.19 + }, + { + "date": "2020-05-02", + "total_cases": 601.0, + "new_cases": 0.0, + "new_cases_smoothed": 39.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 37.815, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 1.762, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 60.19 + }, + { + "date": "2020-05-03", + "total_cases": 671.0, + "new_cases": 70.0, + "new_cases_smoothed": 40.143, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 42.219, + "new_cases_per_million": 4.404, + "new_cases_smoothed_per_million": 2.526, + "total_deaths_per_million": 1.951, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 60.19 + }, + { + "date": "2020-05-04", + "total_cases": 722.0, + "new_cases": 51.0, + "new_cases_smoothed": 40.857, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 45.428, + "new_cases_per_million": 3.209, + "new_cases_smoothed_per_million": 2.571, + "total_deaths_per_million": 2.013, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-05", + "total_cases": 756.0, + "new_cases": 34.0, + "new_cases_smoothed": 39.429, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 47.567, + "new_cases_per_million": 2.139, + "new_cases_smoothed_per_million": 2.481, + "total_deaths_per_million": 2.202, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-06", + "total_cases": 835.0, + "new_cases": 79.0, + "new_cases_smoothed": 43.857, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 52.538, + "new_cases_per_million": 4.971, + "new_cases_smoothed_per_million": 2.759, + "total_deaths_per_million": 2.391, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 60.19 + }, + { + "date": "2020-05-07", + "total_cases": 873.0, + "new_cases": 38.0, + "new_cases_smoothed": 41.571, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 54.929, + "new_cases_per_million": 2.391, + "new_cases_smoothed_per_million": 2.616, + "total_deaths_per_million": 2.454, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 60.19 + }, + { + "date": "2020-05-08", + "total_cases": 928.0, + "new_cases": 55.0, + "new_cases_smoothed": 46.714, + "total_deaths": 44.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 58.39, + "new_cases_per_million": 3.461, + "new_cases_smoothed_per_million": 2.939, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 60.19 + }, + { + "date": "2020-05-09", + "total_cases": 928.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.714, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 58.39, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.939, + "total_deaths_per_million": 2.768, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 60.19 + }, + { + "date": "2020-05-10", + "total_cases": 997.0, + "new_cases": 69.0, + "new_cases_smoothed": 46.571, + "total_deaths": 48.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 62.731, + "new_cases_per_million": 4.341, + "new_cases_smoothed_per_million": 2.93, + "total_deaths_per_million": 3.02, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 60.19 + }, + { + "date": "2020-05-11", + "total_cases": 1054.0, + "new_cases": 57.0, + "new_cases_smoothed": 47.429, + "total_deaths": 51.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 66.318, + "new_cases_per_million": 3.586, + "new_cases_smoothed_per_million": 2.984, + "total_deaths_per_million": 3.209, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.171, + "stringency_index": 60.19 + }, + { + "date": "2020-05-12", + "total_cases": 1089.0, + "new_cases": 35.0, + "new_cases_smoothed": 47.571, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 68.52, + "new_cases_per_million": 2.202, + "new_cases_smoothed_per_million": 2.993, + "total_deaths_per_million": 3.272, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 60.19 + }, + { + "date": "2020-05-13", + "total_cases": 1170.0, + "new_cases": 81.0, + "new_cases_smoothed": 47.857, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 73.616, + "new_cases_per_million": 5.097, + "new_cases_smoothed_per_million": 3.011, + "total_deaths_per_million": 3.272, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 60.19 + }, + { + "date": "2020-05-14", + "total_cases": 1219.0, + "new_cases": 49.0, + "new_cases_smoothed": 49.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 76.699, + "new_cases_per_million": 3.083, + "new_cases_smoothed_per_million": 3.11, + "total_deaths_per_million": 3.272, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 60.19 + }, + { + "date": "2020-05-15", + "total_cases": 1284.0, + "new_cases": 65.0, + "new_cases_smoothed": 50.857, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 80.789, + "new_cases_per_million": 4.09, + "new_cases_smoothed_per_million": 3.2, + "total_deaths_per_million": 3.335, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-16", + "total_cases": 1284.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.857, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 80.789, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.2, + "total_deaths_per_million": 3.335, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-17", + "total_cases": 1357.0, + "new_cases": 73.0, + "new_cases_smoothed": 51.429, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 85.382, + "new_cases_per_million": 4.593, + "new_cases_smoothed_per_million": 3.236, + "total_deaths_per_million": 3.461, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 60.19 + }, + { + "date": "2020-05-18", + "total_cases": 1421.0, + "new_cases": 64.0, + "new_cases_smoothed": 52.429, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 89.409, + "new_cases_per_million": 4.027, + "new_cases_smoothed_per_million": 3.299, + "total_deaths_per_million": 3.524, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 60.19 + }, + { + "date": "2020-05-19", + "total_cases": 1455.0, + "new_cases": 34.0, + "new_cases_smoothed": 52.286, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 91.548, + "new_cases_per_million": 2.139, + "new_cases_smoothed_per_million": 3.29, + "total_deaths_per_million": 3.586, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 60.19 + }, + { + "date": "2020-05-20", + "total_cases": 1502.0, + "new_cases": 47.0, + "new_cases_smoothed": 47.429, + "total_deaths": 59.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 94.506, + "new_cases_per_million": 2.957, + "new_cases_smoothed_per_million": 2.984, + "total_deaths_per_million": 3.712, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 60.19 + }, + { + "date": "2020-05-21", + "total_cases": 1573.0, + "new_cases": 71.0, + "new_cases_smoothed": 50.571, + "total_deaths": 61.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 98.973, + "new_cases_per_million": 4.467, + "new_cases_smoothed_per_million": 3.182, + "total_deaths_per_million": 3.838, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-22", + "total_cases": 1594.0, + "new_cases": 21.0, + "new_cases_smoothed": 44.286, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 100.294, + "new_cases_per_million": 1.321, + "new_cases_smoothed_per_million": 2.786, + "total_deaths_per_million": 3.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 60.19 + }, + { + "date": "2020-05-23", + "total_cases": 1594.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.286, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 100.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.786, + "total_deaths_per_million": 3.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 60.19 + }, + { + "date": "2020-05-24", + "total_cases": 1594.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 100.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.13, + "total_deaths_per_million": 3.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-05-25", + "total_cases": 1594.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.714, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 100.294, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.555, + "total_deaths_per_million": 3.838, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 60.19 + }, + { + "date": "2020-05-26", + "total_cases": 1689.0, + "new_cases": 95.0, + "new_cases_smoothed": 33.429, + "total_deaths": 66.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 106.272, + "new_cases_per_million": 5.977, + "new_cases_smoothed_per_million": 2.103, + "total_deaths_per_million": 4.153, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 60.19 + }, + { + "date": "2020-05-27", + "total_cases": 1711.0, + "new_cases": 22.0, + "new_cases_smoothed": 29.857, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 107.656, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 1.879, + "total_deaths_per_million": 4.216, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 60.19 + }, + { + "date": "2020-05-28", + "total_cases": 1731.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.571, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 108.914, + "new_cases_per_million": 1.258, + "new_cases_smoothed_per_million": 1.42, + "total_deaths_per_million": 4.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 60.19 + }, + { + "date": "2020-05-29", + "total_cases": 1828.0, + "new_cases": 97.0, + "new_cases_smoothed": 33.429, + "total_deaths": 72.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 115.018, + "new_cases_per_million": 6.103, + "new_cases_smoothed_per_million": 2.103, + "total_deaths_per_million": 4.53, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 48.15 + }, + { + "date": "2020-05-30", + "total_cases": 1828.0, + "new_cases": 0.0, + "new_cases_smoothed": 33.429, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 115.018, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.103, + "total_deaths_per_million": 4.53, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 48.15 + }, + { + "date": "2020-05-31", + "total_cases": 1916.0, + "new_cases": 88.0, + "new_cases_smoothed": 46.0, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 120.555, + "new_cases_per_million": 5.537, + "new_cases_smoothed_per_million": 2.894, + "total_deaths_per_million": 4.593, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 48.15 + }, + { + "date": "2020-06-01", + "total_cases": 1976.0, + "new_cases": 60.0, + "new_cases_smoothed": 54.571, + "total_deaths": 78.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 124.33, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.434, + "total_deaths_per_million": 4.908, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 48.15 + }, + { + "date": "2020-06-02", + "total_cases": 2023.0, + "new_cases": 47.0, + "new_cases_smoothed": 47.714, + "total_deaths": 79.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 127.287, + "new_cases_per_million": 2.957, + "new_cases_smoothed_per_million": 3.002, + "total_deaths_per_million": 4.971, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 48.15 + }, + { + "date": "2020-06-03", + "total_cases": 2089.0, + "new_cases": 66.0, + "new_cases_smoothed": 54.0, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 131.44, + "new_cases_per_million": 4.153, + "new_cases_smoothed_per_million": 3.398, + "total_deaths_per_million": 4.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 48.15 + }, + { + "date": "2020-06-04", + "total_cases": 2146.0, + "new_cases": 57.0, + "new_cases_smoothed": 59.286, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 135.026, + "new_cases_per_million": 3.586, + "new_cases_smoothed_per_million": 3.73, + "total_deaths_per_million": 4.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 48.15 + }, + { + "date": "2020-06-05", + "total_cases": 2204.0, + "new_cases": 58.0, + "new_cases_smoothed": 53.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 138.675, + "new_cases_per_million": 3.649, + "new_cases_smoothed_per_million": 3.38, + "total_deaths_per_million": 4.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 48.15 + }, + { + "date": "2020-06-06", + "total_cases": 2204.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.714, + "total_deaths": 79.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 138.675, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.38, + "total_deaths_per_million": 4.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.063, + "stringency_index": 48.15 + }, + { + "date": "2020-06-07", + "total_cases": 2289.0, + "new_cases": 85.0, + "new_cases_smoothed": 53.286, + "total_deaths": 82.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 144.024, + "new_cases_per_million": 5.348, + "new_cases_smoothed_per_million": 3.353, + "total_deaths_per_million": 5.159, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 48.15 + }, + { + "date": "2020-06-08", + "total_cases": 2334.0, + "new_cases": 45.0, + "new_cases_smoothed": 51.143, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 146.855, + "new_cases_per_million": 2.831, + "new_cases_smoothed_per_million": 3.218, + "total_deaths_per_million": 5.222, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 48.15 + }, + { + "date": "2020-06-09", + "total_cases": 2368.0, + "new_cases": 34.0, + "new_cases_smoothed": 49.286, + "total_deaths": 84.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 148.994, + "new_cases_per_million": 2.139, + "new_cases_smoothed_per_million": 3.101, + "total_deaths_per_million": 5.285, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 48.15 + }, + { + "date": "2020-06-10", + "total_cases": 2416.0, + "new_cases": 48.0, + "new_cases_smoothed": 46.714, + "total_deaths": 85.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 152.015, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 2.939, + "total_deaths_per_million": 5.348, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 48.15 + }, + { + "date": "2020-06-11", + "total_cases": 2452.0, + "new_cases": 36.0, + "new_cases_smoothed": 43.714, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 154.28, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 2.75, + "total_deaths_per_million": 5.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 48.15 + }, + { + "date": "2020-06-12", + "total_cases": 2513.0, + "new_cases": 61.0, + "new_cases_smoothed": 44.143, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 158.118, + "new_cases_per_million": 3.838, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 5.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 48.15 + }, + { + "date": "2020-06-13", + "total_cases": 2513.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.143, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 158.118, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.777, + "total_deaths_per_million": 5.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 48.15 + }, + { + "date": "2020-06-14", + "total_cases": 2579.0, + "new_cases": 66.0, + "new_cases_smoothed": 41.429, + "total_deaths": 87.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 162.27, + "new_cases_per_million": 4.153, + "new_cases_smoothed_per_million": 2.607, + "total_deaths_per_million": 5.474, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 48.15 + }, + { + "date": "2020-06-15", + "total_cases": 2603.0, + "new_cases": 24.0, + "new_cases_smoothed": 38.429, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 163.781, + "new_cases_per_million": 1.51, + "new_cases_smoothed_per_million": 2.418, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 48.15 + }, + { + "date": "2020-06-16", + "total_cases": 2642.0, + "new_cases": 39.0, + "new_cases_smoothed": 39.143, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 166.234, + "new_cases_per_million": 2.454, + "new_cases_smoothed_per_million": 2.463, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 48.15 + }, + { + "date": "2020-06-17", + "total_cases": 2658.0, + "new_cases": 16.0, + "new_cases_smoothed": 34.571, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 167.241, + "new_cases_per_million": 1.007, + "new_cases_smoothed_per_million": 2.175, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 48.15 + }, + { + "date": "2020-06-18", + "total_cases": 2696.0, + "new_cases": 38.0, + "new_cases_smoothed": 34.857, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 169.632, + "new_cases_per_million": 2.391, + "new_cases_smoothed_per_million": 2.193, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 48.15 + }, + { + "date": "2020-06-19", + "total_cases": 2719.0, + "new_cases": 23.0, + "new_cases_smoothed": 29.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.079, + "new_cases_per_million": 1.447, + "new_cases_smoothed_per_million": 1.852, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 48.15 + }, + { + "date": "2020-06-20", + "total_cases": 2719.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.429, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.852, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 48.15 + }, + { + "date": "2020-06-21", + "total_cases": 2755.0, + "new_cases": 36.0, + "new_cases_smoothed": 25.143, + "total_deaths": 88.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 173.344, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 5.537, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 48.15 + }, + { + "date": "2020-06-22", + "total_cases": 2779.0, + "new_cases": 24.0, + "new_cases_smoothed": 25.143, + "total_deaths": 90.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 174.854, + "new_cases_per_million": 1.51, + "new_cases_smoothed_per_million": 1.582, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 48.15 + }, + { + "date": "2020-06-23", + "total_cases": 2812.0, + "new_cases": 33.0, + "new_cases_smoothed": 24.286, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 176.931, + "new_cases_per_million": 2.076, + "new_cases_smoothed_per_million": 1.528, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-24", + "total_cases": 2835.0, + "new_cases": 23.0, + "new_cases_smoothed": 25.286, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 178.378, + "new_cases_per_million": 1.447, + "new_cases_smoothed_per_million": 1.591, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-25", + "total_cases": 2860.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.429, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 179.951, + "new_cases_per_million": 1.573, + "new_cases_smoothed_per_million": 1.474, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-26", + "total_cases": 2878.0, + "new_cases": 18.0, + "new_cases_smoothed": 22.714, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.084, + "new_cases_per_million": 1.133, + "new_cases_smoothed_per_million": 1.429, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-27", + "total_cases": 2878.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.714, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.084, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.429, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-28", + "total_cases": 2878.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.571, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.084, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.106, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 45.83 + }, + { + "date": "2020-06-29", + "total_cases": 2894.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.429, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.09, + "new_cases_per_million": 1.007, + "new_cases_smoothed_per_million": 1.034, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.83 + }, + { + "date": "2020-06-30", + "total_cases": 2904.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.143, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 182.719, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.827, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.83 + }, + { + "date": "2020-07-01", + "total_cases": 2924.0, + "new_cases": 20.0, + "new_cases_smoothed": 12.714, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.978, + "new_cases_per_million": 1.258, + "new_cases_smoothed_per_million": 0.8, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-02", + "total_cases": 2924.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 183.978, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.575, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-03", + "total_cases": 2944.0, + "new_cases": 20.0, + "new_cases_smoothed": 9.429, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 185.236, + "new_cases_per_million": 1.258, + "new_cases_smoothed_per_million": 0.593, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-04", + "total_cases": 2944.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 90.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 185.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.593, + "total_deaths_per_million": 5.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-05", + "total_cases": 2961.0, + "new_cases": 17.0, + "new_cases_smoothed": 11.857, + "total_deaths": 92.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 186.306, + "new_cases_per_million": 1.07, + "new_cases_smoothed_per_million": 0.746, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-06", + "total_cases": 2997.0, + "new_cases": 36.0, + "new_cases_smoothed": 14.714, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 188.571, + "new_cases_per_million": 2.265, + "new_cases_smoothed_per_million": 0.926, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-07", + "total_cases": 3006.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.571, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 189.137, + "new_cases_per_million": 0.566, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-08", + "total_cases": 3015.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.0, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 189.704, + "new_cases_per_million": 0.566, + "new_cases_smoothed_per_million": 0.818, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-09", + "total_cases": 3028.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.857, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 190.522, + "new_cases_per_million": 0.818, + "new_cases_smoothed_per_million": 0.935, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-10", + "total_cases": 3038.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 191.151, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.845, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-11", + "total_cases": 3038.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.429, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 191.151, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.845, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 31.48 + }, + { + "date": "2020-07-12", + "total_cases": 3051.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.857, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 191.969, + "new_cases_per_million": 0.818, + "new_cases_smoothed_per_million": 0.809, + "total_deaths_per_million": 5.789, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-13", + "total_cases": 3059.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.857, + "total_deaths": 93.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 192.472, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.557, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.063, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-14", + "total_cases": 3059.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 192.472, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.476, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-15", + "total_cases": 3076.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 193.542, + "new_cases_per_million": 1.07, + "new_cases_smoothed_per_million": 0.548, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-16", + "total_cases": 3083.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 193.982, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.494, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-17", + "total_cases": 3083.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 193.982, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.404, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-18", + "total_cases": 3106.0, + "new_cases": 23.0, + "new_cases_smoothed": 9.714, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 195.429, + "new_cases_per_million": 1.447, + "new_cases_smoothed_per_million": 0.611, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-19", + "total_cases": 3111.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 195.744, + "new_cases_per_million": 0.315, + "new_cases_smoothed_per_million": 0.539, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 31.48 + }, + { + "date": "2020-07-20", + "total_cases": 3119.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.247, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.539, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-21", + "total_cases": 3130.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.939, + "new_cases_per_million": 0.692, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-22", + "total_cases": 3135.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 197.254, + "new_cases_per_million": 0.315, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-23", + "total_cases": 3161.0, + "new_cases": 26.0, + "new_cases_smoothed": 11.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 198.89, + "new_cases_per_million": 1.636, + "new_cases_smoothed_per_million": 0.701, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-24", + "total_cases": 3171.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.519, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-25", + "total_cases": 3171.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.519, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.584, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-26", + "total_cases": 3178.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.571, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.959, + "new_cases_per_million": 0.44, + "new_cases_smoothed_per_million": 0.602, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-27", + "total_cases": 3178.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.53, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-28", + "total_cases": 3178.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-29", + "total_cases": 3196.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.714, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 201.092, + "new_cases_per_million": 1.133, + "new_cases_smoothed_per_million": 0.548, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-30", + "total_cases": 3212.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.099, + "new_cases_per_million": 1.007, + "new_cases_smoothed_per_million": 0.458, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-07-31", + "total_cases": 3212.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-08-01", + "total_cases": 3212.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-08-02", + "total_cases": 3212.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-08-03", + "total_cases": 3212.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-04", + "total_cases": 3220.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.602, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.378, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-05", + "total_cases": 3220.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-06", + "total_cases": 3221.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 202.665, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.081, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-07", + "total_cases": 3227.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.378, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-08", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-09", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-10", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-11", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-12", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-13", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-14", + "total_cases": 3227.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 203.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-08-15", + "total_cases": 3250.0, + "new_cases": 23.0, + "new_cases_smoothed": 3.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.49, + "new_cases_per_million": 1.447, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-16", + "total_cases": 3256.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.867, + "new_cases_per_million": 0.378, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-17", + "total_cases": 3256.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.867, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-18", + "total_cases": 3257.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.93, + "new_cases_per_million": 0.063, + "new_cases_smoothed_per_million": 0.27, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-19", + "total_cases": 3257.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 204.93, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.27, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-20", + "total_cases": 3265.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.434, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-21", + "total_cases": 3265.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-22", + "total_cases": 3265.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.434, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-23", + "total_cases": 3269.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.685, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-24", + "total_cases": 3269.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-25", + "total_cases": 3269.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 93.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 5.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-08-26", + "total_cases": 3275.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 95.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.063, + "new_cases_per_million": 0.378, + "new_cases_smoothed_per_million": 0.162, + "total_deaths_per_million": 5.977, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 13.89 + }, + { + "date": "2020-08-27", + "total_cases": 3275.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 5.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 13.89 + }, + { + "date": "2020-08-28", + "total_cases": 3275.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 5.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 13.89 + }, + { + "date": "2020-08-29", + "total_cases": 3275.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 95.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.063, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 5.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 13.89 + }, + { + "date": "2020-08-30", + "total_cases": 3310.0, + "new_cases": 35.0, + "new_cases_smoothed": 5.857, + "total_deaths": 98.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 208.265, + "new_cases_per_million": 2.202, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.189, + "new_deaths_smoothed_per_million": 0.045 + }, + { + "date": "2020-08-31", + "total_cases": 3310.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 208.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045 + }, + { + "date": "2020-09-01", + "total_cases": 3310.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 208.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045 + }, + { + "date": "2020-09-02", + "total_cases": 3310.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 208.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027 + }, + { + "date": "2020-09-03", + "total_cases": 3310.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 208.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027 + }, + { + "date": "2020-09-04", + "total_cases": 3310.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 208.265, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027 + }, + { + "date": "2020-09-05", + "total_cases": 3332.0, + "new_cases": 22.0, + "new_cases_smoothed": 8.143, + "total_deaths": 98.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 209.649, + "new_cases_per_million": 1.384, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 6.166, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027 + } + ] + }, + "ZAF": { + "continent": "Africa", + "location": "South Africa", + "population": 59308690.0, + "population_density": 46.754, + "median_age": 27.3, + "aged_65_older": 5.344, + "aged_70_older": 3.053, + "gdp_per_capita": 12294.876, + "extreme_poverty": 18.9, + "cardiovasc_death_rate": 200.38, + "diabetes_prevalence": 5.52, + "female_smokers": 8.1, + "male_smokers": 33.2, + "handwashing_facilities": 43.993, + "hospital_beds_per_thousand": 2.32, + "life_expectancy": 64.13, + "data": [ + { + "date": "2020-02-07", + "total_tests": 42.0, + "total_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-08", + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-09", + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-10", + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-11", + "total_tests": 61.0, + "total_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-12", + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-13", + "total_tests": 67.0, + "total_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-14", + "new_tests": 4.0, + "total_tests": 71.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-15", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-16", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-17", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-18", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-19", + "total_tests": 95.0, + "total_tests_per_thousand": 0.002, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "new_tests": 11.0, + "total_tests": 106.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-22", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-23", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-24", + "total_tests": 116.0, + "total_tests_per_thousand": 0.002, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-25", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-26", + "total_tests": 121.0, + "total_tests_per_thousand": 0.002, + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-27", + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-28", + "new_tests_smoothed": 4.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-29", + "new_tests_smoothed": 5.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-01", + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-02", + "total_tests": 160.0, + "total_tests_per_thousand": 0.003, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-03", + "new_tests": 4.0, + "total_tests": 164.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-04", + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-03-05", + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-06", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.017, + "new_cases_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "total_tests": 200.0, + "total_tests_per_thousand": 0.003, + "new_tests_smoothed": 9.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-07", + "new_tests": 41.0, + "total_tests": 241.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-08", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-09", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.051, + "new_cases_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-10", + "total_cases": 7.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.118, + "new_cases_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-11", + "total_tests": 645.0, + "total_tests_per_thousand": 0.011, + "new_tests_smoothed": 67.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-12", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.219, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 203.0, + "total_tests": 848.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 94.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-13", + "total_cases": 17.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.287, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 76.0, + "total_tests": 924.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 103.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 45.062, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-14", + "total_cases": 24.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.405, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 93.0, + "total_tests": 1017.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 111.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 33.783, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-03-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.405, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 459.0, + "total_tests": 1476.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 162.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 51.545, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "total_cases": 51.0, + "new_cases": 27.0, + "new_cases_smoothed": 6.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.86, + "new_cases_per_million": 0.455, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 929.0, + "total_tests": 2405.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 280.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 40.833, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-03-17", + "total_cases": 62.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.045, + "new_cases_per_million": 0.185, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 506.0, + "total_tests": 2911.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 43.018, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 38.89 + }, + { + "date": "2020-03-18", + "total_cases": 85.0, + "new_cases": 23.0, + "new_cases_smoothed": 11.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.433, + "new_cases_per_million": 0.388, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 159.0, + "total_tests": 3070.0, + "total_tests_per_thousand": 0.052, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 31.051, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 116.0, + "new_cases": 31.0, + "new_cases_smoothed": 14.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.956, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1762.0, + "total_tests": 4832.0, + "total_tests_per_thousand": 0.081, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 569.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 38.67, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 150.0, + "new_cases": 34.0, + "new_cases_smoothed": 19.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.529, + "new_cases_per_million": 0.573, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1606.0, + "total_tests": 6438.0, + "total_tests_per_thousand": 0.109, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 788.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 41.474, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-21", + "total_cases": 205.0, + "new_cases": 55.0, + "new_cases_smoothed": 25.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.456, + "new_cases_per_million": 0.927, + "new_cases_smoothed_per_million": 0.436, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 987.0, + "total_tests": 7425.0, + "total_tests_per_thousand": 0.125, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 915.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 35.387, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-22", + "total_cases": 240.0, + "new_cases": 35.0, + "new_cases_smoothed": 30.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.047, + "new_cases_per_million": 0.59, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1890.0, + "total_tests": 9315.0, + "total_tests_per_thousand": 0.157, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 36.296, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-23", + "total_cases": 274.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.62, + "new_cases_per_million": 0.573, + "new_cases_smoothed_per_million": 0.537, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3500.0, + "total_tests": 12815.0, + "total_tests_per_thousand": 0.216, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1487.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 46.677, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-24", + "total_cases": 402.0, + "new_cases": 128.0, + "new_cases_smoothed": 48.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.778, + "new_cases_per_million": 2.158, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2714.0, + "total_tests": 15529.0, + "total_tests_per_thousand": 0.262, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1803.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 37.121, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-25", + "total_cases": 557.0, + "new_cases": 155.0, + "new_cases_smoothed": 67.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.392, + "new_cases_per_million": 2.613, + "new_cases_smoothed_per_million": 1.137, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2133.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 31.633000000000003, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-26", + "total_cases": 709.0, + "new_cases": 152.0, + "new_cases_smoothed": 84.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.954, + "new_cases_per_million": 2.563, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 20471.0, + "total_tests_per_thousand": 0.345, + "new_tests_smoothed": 2234.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 26.371, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-27", + "total_cases": 927.0, + "new_cases": 218.0, + "new_cases_smoothed": 111.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.63, + "new_cases_per_million": 3.676, + "new_cases_smoothed_per_million": 1.872, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 8066.0, + "total_tests": 28537.0, + "total_tests_per_thousand": 0.481, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 3157.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 28.441, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-28", + "total_cases": 1170.0, + "new_cases": 243.0, + "new_cases_smoothed": 137.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 19.727, + "new_cases_per_million": 4.097, + "new_cases_smoothed_per_million": 2.324, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 3426.0, + "total_tests": 31963.0, + "total_tests_per_thousand": 0.539, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 3505.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 25.425, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-29", + "total_cases": 1187.0, + "new_cases": 17.0, + "new_cases_smoothed": 135.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.014, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 2.281, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 3630.0, + "total_tests": 35593.0, + "total_tests_per_thousand": 0.6, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 3754.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 27.749000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-30", + "total_cases": 1280.0, + "new_cases": 93.0, + "new_cases_smoothed": 143.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.582, + "new_cases_per_million": 1.568, + "new_cases_smoothed_per_million": 2.423, + "total_deaths_per_million": 0.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 2816.0, + "total_tests": 38409.0, + "total_tests_per_thousand": 0.648, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 3656.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 25.439, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-03-31", + "total_cases": 1326.0, + "new_cases": 46.0, + "new_cases_smoothed": 132.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.358, + "new_cases_per_million": 0.776, + "new_cases_smoothed_per_million": 2.226, + "total_deaths_per_million": 0.051, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.007, + "new_tests": 2663.0, + "total_tests": 41072.0, + "total_tests_per_thousand": 0.693, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 3649.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 27.644000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-01", + "total_cases": 1353.0, + "new_cases": 27.0, + "new_cases_smoothed": 113.714, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 22.813, + "new_cases_per_million": 0.455, + "new_cases_smoothed_per_million": 1.917, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 3220.0, + "total_tests": 44292.0, + "total_tests_per_thousand": 0.747, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 3756.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 33.03, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-02", + "total_cases": 1380.0, + "new_cases": 27.0, + "new_cases_smoothed": 95.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 23.268, + "new_cases_per_million": 0.455, + "new_cases_smoothed_per_million": 1.616, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 3673.0, + "total_tests": 47965.0, + "total_tests_per_thousand": 0.809, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 3928.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 40.978, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-03", + "total_cases": 1462.0, + "new_cases": 82.0, + "new_cases_smoothed": 76.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.651, + "new_cases_per_million": 1.383, + "new_cases_smoothed_per_million": 1.289, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "new_tests": 2396.0, + "total_tests": 50361.0, + "total_tests_per_thousand": 0.849, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 3118.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 40.796, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-04", + "total_cases": 1505.0, + "new_cases": 43.0, + "new_cases_smoothed": 47.857, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 25.376, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.807, + "total_deaths_per_million": 0.118, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 3576.0, + "total_tests": 53937.0, + "total_tests_per_thousand": 0.909, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 3139.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 65.59100000000001, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-05", + "total_cases": 1585.0, + "new_cases": 80.0, + "new_cases_smoothed": 56.857, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 26.725, + "new_cases_per_million": 1.349, + "new_cases_smoothed_per_million": 0.959, + "total_deaths_per_million": 0.152, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 2936.0, + "total_tests": 56873.0, + "total_tests_per_thousand": 0.959, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 3040.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 53.467, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-06", + "total_cases": 1655.0, + "new_cases": 70.0, + "new_cases_smoothed": 53.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 27.905, + "new_cases_per_million": 1.18, + "new_cases_smoothed_per_million": 0.903, + "total_deaths_per_million": 0.185, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 1225.0, + "total_tests": 58098.0, + "total_tests_per_thousand": 0.98, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2813.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 52.50899999999999, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-07", + "total_cases": 1686.0, + "new_cases": 31.0, + "new_cases_smoothed": 51.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.428, + "new_cases_per_million": 0.523, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.022, + "new_tests_smoothed": 2838.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 55.183, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-08", + "total_cases": 1749.0, + "new_cases": 63.0, + "new_cases_smoothed": 56.571, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 29.49, + "new_cases_per_million": 1.062, + "new_cases_smoothed_per_million": 0.954, + "total_deaths_per_million": 0.219, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.019, + "total_tests": 63776.0, + "total_tests_per_thousand": 1.075, + "new_tests_smoothed": 2783.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 49.193999999999996, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-09", + "total_cases": 1845.0, + "new_cases": 96.0, + "new_cases_smoothed": 66.429, + "total_deaths": 18.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 31.108, + "new_cases_per_million": 1.619, + "new_cases_smoothed_per_million": 1.12, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 5098.0, + "total_tests": 68874.0, + "total_tests_per_thousand": 1.161, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 2987.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 44.966, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-10", + "total_cases": 1934.0, + "new_cases": 89.0, + "new_cases_smoothed": 67.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 32.609, + "new_cases_per_million": 1.501, + "new_cases_smoothed_per_million": 1.137, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 4154.0, + "total_tests": 73028.0, + "total_tests_per_thousand": 1.231, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 3238.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 48.021, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 2003.0, + "new_cases": 69.0, + "new_cases_smoothed": 71.143, + "total_deaths": 24.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 33.772, + "new_cases_per_million": 1.163, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 0.405, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2025.0, + "total_tests": 75053.0, + "total_tests_per_thousand": 1.265, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 3017.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 42.408, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 2028.0, + "new_cases": 25.0, + "new_cases_smoothed": 63.286, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 34.194, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 1.067, + "total_deaths_per_million": 0.422, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 5032.0, + "total_tests": 80085.0, + "total_tests_per_thousand": 1.35, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 3316.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 52.397, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 2173.0, + "new_cases": 145.0, + "new_cases_smoothed": 74.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 36.639, + "new_cases_per_million": 2.445, + "new_cases_smoothed_per_million": 1.248, + "total_deaths_per_million": 0.422, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 3578.0, + "total_tests": 83663.0, + "total_tests_per_thousand": 1.411, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 3652.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 49.351000000000006, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 2272.0, + "new_cases": 99.0, + "new_cases_smoothed": 83.714, + "total_deaths": 27.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 38.308, + "new_cases_per_million": 1.669, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 0.455, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 3359.0, + "total_tests": 87022.0, + "total_tests_per_thousand": 1.467, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 3726.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 44.50899999999999, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-15", + "total_cases": 2415.0, + "new_cases": 143.0, + "new_cases_smoothed": 95.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 40.719, + "new_cases_per_million": 2.411, + "new_cases_smoothed_per_million": 1.604, + "total_deaths_per_million": 0.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 3493.0, + "total_tests": 90515.0, + "total_tests_per_thousand": 1.526, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 3820.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 40.15, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-16", + "total_cases": 2506.0, + "new_cases": 91.0, + "new_cases_smoothed": 94.429, + "total_deaths": 34.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 42.254, + "new_cases_per_million": 1.534, + "new_cases_smoothed_per_million": 1.592, + "total_deaths_per_million": 0.573, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 4545.0, + "total_tests": 95060.0, + "total_tests_per_thousand": 1.603, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 3741.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 39.617, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-17", + "total_cases": 2605.0, + "new_cases": 99.0, + "new_cases_smoothed": 95.857, + "total_deaths": 48.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 43.923, + "new_cases_per_million": 1.669, + "new_cases_smoothed_per_million": 1.616, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 5767.0, + "total_tests": 100827.0, + "total_tests_per_thousand": 1.7, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 3971.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 41.426, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-18", + "total_cases": 2783.0, + "new_cases": 178.0, + "new_cases_smoothed": 111.429, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 46.924, + "new_cases_per_million": 3.001, + "new_cases_smoothed_per_million": 1.879, + "total_deaths_per_million": 0.843, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 7374.0, + "total_tests": 108201.0, + "total_tests_per_thousand": 1.824, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 4735.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 42.494, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-19", + "total_cases": 3034.0, + "new_cases": 251.0, + "new_cases_smoothed": 143.714, + "total_deaths": 52.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 51.156, + "new_cases_per_million": 4.232, + "new_cases_smoothed_per_million": 2.423, + "total_deaths_per_million": 0.877, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 6510.0, + "total_tests": 114711.0, + "total_tests_per_thousand": 1.934, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 4947.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 34.422, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-20", + "total_cases": 3158.0, + "new_cases": 124.0, + "new_cases_smoothed": 140.714, + "total_deaths": 54.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 53.247, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 2.373, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 6799.0, + "total_tests": 121510.0, + "total_tests_per_thousand": 2.049, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 5407.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 38.425, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-21", + "total_cases": 3300.0, + "new_cases": 142.0, + "new_cases_smoothed": 146.857, + "total_deaths": 58.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 55.641, + "new_cases_per_million": 2.394, + "new_cases_smoothed_per_million": 2.476, + "total_deaths_per_million": 0.978, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 5427.0, + "total_tests": 126937.0, + "total_tests_per_thousand": 2.14, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 5702.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 38.827, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-22", + "total_cases": 3465.0, + "new_cases": 165.0, + "new_cases_smoothed": 150.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 58.423, + "new_cases_per_million": 2.782, + "new_cases_smoothed_per_million": 2.529, + "total_deaths_per_million": 0.978, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 6837.0, + "total_tests": 133774.0, + "total_tests_per_thousand": 2.256, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 6180.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 41.2, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-23", + "total_cases": 3635.0, + "new_cases": 170.0, + "new_cases_smoothed": 161.286, + "total_deaths": 65.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 61.29, + "new_cases_per_million": 2.866, + "new_cases_smoothed_per_million": 2.719, + "total_deaths_per_million": 1.096, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 9796.0, + "total_tests": 143570.0, + "total_tests_per_thousand": 2.421, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 6930.0, + "new_tests_smoothed_per_thousand": 0.117, + "tests_per_case": 42.967, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-24", + "total_cases": 3953.0, + "new_cases": 318.0, + "new_cases_smoothed": 192.571, + "total_deaths": 75.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 66.651, + "new_cases_per_million": 5.362, + "new_cases_smoothed_per_million": 3.247, + "total_deaths_per_million": 1.265, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.065, + "new_tests": 8820.0, + "total_tests": 152390.0, + "total_tests_per_thousand": 2.569, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 7366.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 38.251, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-25", + "total_cases": 4220.0, + "new_cases": 267.0, + "new_cases_smoothed": 205.286, + "total_deaths": 79.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 71.153, + "new_cases_per_million": 4.502, + "new_cases_smoothed_per_million": 3.461, + "total_deaths_per_million": 1.332, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 8614.0, + "total_tests": 161004.0, + "total_tests_per_thousand": 2.715, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 7543.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 36.744, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-26", + "total_cases": 4361.0, + "new_cases": 141.0, + "new_cases_smoothed": 189.571, + "total_deaths": 86.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 73.531, + "new_cases_per_million": 2.377, + "new_cases_smoothed_per_million": 3.196, + "total_deaths_per_million": 1.45, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 7639.0, + "total_tests": 168643.0, + "total_tests_per_thousand": 2.843, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 7705.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 40.644, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-27", + "total_cases": 4546.0, + "new_cases": 185.0, + "new_cases_smoothed": 198.286, + "total_deaths": 87.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 76.65, + "new_cases_per_million": 3.119, + "new_cases_smoothed_per_million": 3.343, + "total_deaths_per_million": 1.467, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.079, + "new_tests": 9827.0, + "total_tests": 178470.0, + "total_tests_per_thousand": 3.009, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 8137.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 41.037, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-28", + "total_cases": 4793.0, + "new_cases": 247.0, + "new_cases_smoothed": 213.286, + "total_deaths": 90.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 80.814, + "new_cases_per_million": 4.165, + "new_cases_smoothed_per_million": 3.596, + "total_deaths_per_million": 1.517, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 7027.0, + "total_tests": 185497.0, + "total_tests_per_thousand": 3.128, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 8366.0, + "new_tests_smoothed_per_thousand": 0.141, + "tests_per_case": 39.224000000000004, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-29", + "total_cases": 4996.0, + "new_cases": 203.0, + "new_cases_smoothed": 218.714, + "total_deaths": 93.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 84.237, + "new_cases_per_million": 3.423, + "new_cases_smoothed_per_million": 3.688, + "total_deaths_per_million": 1.568, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 11630.0, + "total_tests": 197127.0, + "total_tests_per_thousand": 3.324, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 9050.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 41.378, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-04-30", + "total_cases": 5350.0, + "new_cases": 354.0, + "new_cases_smoothed": 245.0, + "total_deaths": 103.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 90.206, + "new_cases_per_million": 5.969, + "new_cases_smoothed_per_million": 4.131, + "total_deaths_per_million": 1.737, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 10403.0, + "total_tests": 207530.0, + "total_tests_per_thousand": 3.499, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 9137.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 37.294000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 5647.0, + "new_cases": 297.0, + "new_cases_smoothed": 242.0, + "total_deaths": 103.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 95.214, + "new_cases_per_million": 5.008, + "new_cases_smoothed_per_million": 4.08, + "total_deaths_per_million": 1.737, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 9992.0, + "total_tests": 217522.0, + "total_tests_per_thousand": 3.668, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 9305.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 38.45, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 5951.0, + "new_cases": 304.0, + "new_cases_smoothed": 247.286, + "total_deaths": 116.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 100.339, + "new_cases_per_million": 5.126, + "new_cases_smoothed_per_million": 4.169, + "total_deaths_per_million": 1.956, + "new_deaths_per_million": 0.219, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 13164.0, + "total_tests": 230686.0, + "total_tests_per_thousand": 3.89, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 9955.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 40.257, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 6336.0, + "new_cases": 385.0, + "new_cases_smoothed": 282.143, + "total_deaths": 123.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 106.831, + "new_cases_per_million": 6.491, + "new_cases_smoothed_per_million": 4.757, + "total_deaths_per_million": 2.074, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.089, + "new_tests": 15061.0, + "total_tests": 245747.0, + "total_tests_per_thousand": 4.144, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 11015.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 39.041, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 6783.0, + "new_cases": 447.0, + "new_cases_smoothed": 319.571, + "total_deaths": 131.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 114.368, + "new_cases_per_million": 7.537, + "new_cases_smoothed_per_million": 5.388, + "total_deaths_per_million": 2.209, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 11794.0, + "total_tests": 257541.0, + "total_tests_per_thousand": 4.342, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 11296.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 35.347, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 7220.0, + "new_cases": 437.0, + "new_cases_smoothed": 346.714, + "total_deaths": 138.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 121.736, + "new_cases_per_million": 7.368, + "new_cases_smoothed_per_million": 5.846, + "total_deaths_per_million": 2.327, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 10523.0, + "total_tests": 268064.0, + "total_tests_per_thousand": 4.52, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 11795.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 34.019, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 7572.0, + "new_cases": 352.0, + "new_cases_smoothed": 368.0, + "total_deaths": 148.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 127.671, + "new_cases_per_million": 5.935, + "new_cases_smoothed_per_million": 6.205, + "total_deaths_per_million": 2.495, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 11315.0, + "total_tests": 279379.0, + "total_tests_per_thousand": 4.711, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 11750.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 31.929000000000002, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 7808.0, + "new_cases": 236.0, + "new_cases_smoothed": 351.143, + "total_deaths": 153.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 131.65, + "new_cases_per_million": 3.979, + "new_cases_smoothed_per_million": 5.921, + "total_deaths_per_million": 2.58, + "new_deaths_per_million": 0.084, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 12774.0, + "total_tests": 292153.0, + "total_tests_per_thousand": 4.926, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 12089.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 34.428000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 8232.0, + "new_cases": 424.0, + "new_cases_smoothed": 369.286, + "total_deaths": 161.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 138.799, + "new_cases_per_million": 7.149, + "new_cases_smoothed_per_million": 6.227, + "total_deaths_per_million": 2.715, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 15599.0, + "total_tests": 307752.0, + "total_tests_per_thousand": 5.189, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 12890.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 34.905, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 8895.0, + "new_cases": 663.0, + "new_cases_smoothed": 420.571, + "total_deaths": 178.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 149.978, + "new_cases_per_million": 11.179, + "new_cases_smoothed_per_million": 7.091, + "total_deaths_per_million": 3.001, + "new_deaths_per_million": 0.287, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 16327.0, + "total_tests": 324079.0, + "total_tests_per_thousand": 5.464, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 13342.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 31.724, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 9420.0, + "new_cases": 525.0, + "new_cases_smoothed": 440.571, + "total_deaths": 186.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 158.83, + "new_cases_per_million": 8.852, + "new_cases_smoothed_per_million": 7.428, + "total_deaths_per_million": 3.136, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 17257.0, + "total_tests": 341336.0, + "total_tests_per_thousand": 5.755, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 13656.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 30.996, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 10015.0, + "new_cases": 595.0, + "new_cases_smoothed": 461.714, + "total_deaths": 194.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 168.862, + "new_cases_per_million": 10.032, + "new_cases_smoothed_per_million": 7.785, + "total_deaths_per_million": 3.271, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 14731.0, + "total_tests": 356067.0, + "total_tests_per_thousand": 6.004, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 14075.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 30.484, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 10652.0, + "new_cases": 637.0, + "new_cases_smoothed": 490.286, + "total_deaths": 206.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 179.603, + "new_cases_per_million": 10.74, + "new_cases_smoothed_per_million": 8.267, + "total_deaths_per_million": 3.473, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.164, + "new_tests": 13630.0, + "total_tests": 369697.0, + "total_tests_per_thousand": 6.233, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 14519.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 29.613000000000003, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 11350.0, + "new_cases": 698.0, + "new_cases_smoothed": 539.714, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 191.372, + "new_cases_per_million": 11.769, + "new_cases_smoothed_per_million": 9.1, + "total_deaths_per_million": 3.473, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "new_tests": 16655.0, + "total_tests": 386352.0, + "total_tests_per_thousand": 6.514, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 15282.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 28.315, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 12074.0, + "new_cases": 724.0, + "new_cases_smoothed": 609.429, + "total_deaths": 219.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 203.579, + "new_cases_per_million": 12.207, + "new_cases_smoothed_per_million": 10.276, + "total_deaths_per_million": 3.693, + "new_deaths_per_million": 0.219, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 16666.0, + "total_tests": 403018.0, + "total_tests_per_thousand": 6.795, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 15838.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 25.988000000000003, + "positive_rate": 0.038, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-15", + "total_cases": 12739.0, + "new_cases": 665.0, + "new_cases_smoothed": 643.857, + "total_deaths": 238.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 214.791, + "new_cases_per_million": 11.213, + "new_cases_smoothed_per_million": 10.856, + "total_deaths_per_million": 4.013, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 18537.0, + "total_tests": 421555.0, + "total_tests_per_thousand": 7.108, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 16258.0, + "new_tests_smoothed_per_thousand": 0.274, + "tests_per_case": 25.250999999999998, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-16", + "total_cases": 13524.0, + "new_cases": 785.0, + "new_cases_smoothed": 661.286, + "total_deaths": 247.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 228.027, + "new_cases_per_million": 13.236, + "new_cases_smoothed_per_million": 11.15, + "total_deaths_per_million": 4.165, + "new_deaths_per_million": 0.152, + "new_deaths_smoothed_per_million": 0.166, + "new_tests": 18004.0, + "total_tests": 439559.0, + "total_tests_per_thousand": 7.411, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 16497.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 24.947, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-17", + "total_cases": 14355.0, + "new_cases": 831.0, + "new_cases_smoothed": 705.0, + "total_deaths": 261.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 242.039, + "new_cases_per_million": 14.011, + "new_cases_smoothed_per_million": 11.887, + "total_deaths_per_million": 4.401, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 21314.0, + "total_tests": 460873.0, + "total_tests_per_thousand": 7.771, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 17077.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 24.223000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-18", + "total_cases": 15515.0, + "new_cases": 1160.0, + "new_cases_smoothed": 785.714, + "total_deaths": 264.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 261.597, + "new_cases_per_million": 19.559, + "new_cases_smoothed_per_million": 13.248, + "total_deaths_per_million": 4.451, + "new_deaths_per_million": 0.051, + "new_deaths_smoothed_per_million": 0.169, + "new_tests": 14198.0, + "total_tests": 475071.0, + "total_tests_per_thousand": 8.01, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 17001.0, + "new_tests_smoothed_per_thousand": 0.287, + "tests_per_case": 21.638, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-19", + "total_cases": 16433.0, + "new_cases": 918.0, + "new_cases_smoothed": 825.857, + "total_deaths": 286.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 277.076, + "new_cases_per_million": 15.478, + "new_cases_smoothed_per_million": 13.925, + "total_deaths_per_million": 4.822, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 13538.0, + "total_tests": 488609.0, + "total_tests_per_thousand": 8.238, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 16987.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 20.569000000000003, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-20", + "total_cases": 17200.0, + "new_cases": 767.0, + "new_cases_smoothed": 835.714, + "total_deaths": 312.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 290.008, + "new_cases_per_million": 12.932, + "new_cases_smoothed_per_million": 14.091, + "total_deaths_per_million": 5.261, + "new_deaths_per_million": 0.438, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 17252.0, + "total_tests": 505861.0, + "total_tests_per_thousand": 8.529, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 17073.0, + "new_tests_smoothed_per_thousand": 0.288, + "tests_per_case": 20.429000000000002, + "positive_rate": 0.049, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-21", + "total_cases": 18003.0, + "new_cases": 803.0, + "new_cases_smoothed": 847.0, + "total_deaths": 339.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 303.547, + "new_cases_per_million": 13.539, + "new_cases_smoothed_per_million": 14.281, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.455, + "new_deaths_smoothed_per_million": 0.289, + "new_tests": 19572.0, + "total_tests": 525433.0, + "total_tests_per_thousand": 8.859, + "new_tests_per_thousand": 0.33, + "new_tests_smoothed": 17488.0, + "new_tests_smoothed_per_thousand": 0.295, + "tests_per_case": 20.647, + "positive_rate": 0.048, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-22", + "total_cases": 19137.0, + "new_cases": 1134.0, + "new_cases_smoothed": 914.0, + "total_deaths": 369.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 322.668, + "new_cases_per_million": 19.12, + "new_cases_smoothed_per_million": 15.411, + "total_deaths_per_million": 6.222, + "new_deaths_per_million": 0.506, + "new_deaths_smoothed_per_million": 0.316, + "new_tests": 17599.0, + "total_tests": 543032.0, + "total_tests_per_thousand": 9.156, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 17354.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 18.987000000000002, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-23", + "total_cases": 20125.0, + "new_cases": 988.0, + "new_cases_smoothed": 943.0, + "total_deaths": 397.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 339.326, + "new_cases_per_million": 16.659, + "new_cases_smoothed_per_million": 15.9, + "total_deaths_per_million": 6.694, + "new_deaths_per_million": 0.472, + "new_deaths_smoothed_per_million": 0.361, + "new_tests": 21338.0, + "total_tests": 564370.0, + "total_tests_per_thousand": 9.516, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 17830.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 18.908, + "positive_rate": 0.053, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 21343.0, + "new_cases": 1218.0, + "new_cases_smoothed": 998.286, + "total_deaths": 407.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 359.863, + "new_cases_per_million": 20.537, + "new_cases_smoothed_per_million": 16.832, + "total_deaths_per_million": 6.862, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.352, + "new_tests": 19485.0, + "total_tests": 583855.0, + "total_tests_per_thousand": 9.844, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 17569.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 17.599, + "positive_rate": 0.057, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 22583.0, + "new_cases": 1240.0, + "new_cases_smoothed": 1009.714, + "total_deaths": 429.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 380.771, + "new_cases_per_million": 20.908, + "new_cases_smoothed_per_million": 17.025, + "total_deaths_per_million": 7.233, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.397, + "new_tests": 12922.0, + "total_tests": 596777.0, + "total_tests_per_thousand": 10.062, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 17387.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 17.22, + "positive_rate": 0.057999999999999996, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 23615.0, + "new_cases": 1032.0, + "new_cases_smoothed": 1026.0, + "total_deaths": 481.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 27.857, + "total_cases_per_million": 398.171, + "new_cases_per_million": 17.4, + "new_cases_smoothed_per_million": 17.299, + "total_deaths_per_million": 8.11, + "new_deaths_per_million": 0.877, + "new_deaths_smoothed_per_million": 0.47, + "new_tests": 9214.0, + "total_tests": 605991.0, + "total_tests_per_thousand": 10.218, + "new_tests_per_thousand": 0.155, + "new_tests_smoothed": 16769.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 16.344, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 24264.0, + "new_cases": 649.0, + "new_cases_smoothed": 1009.143, + "total_deaths": 524.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 409.114, + "new_cases_per_million": 10.943, + "new_cases_smoothed_per_million": 17.015, + "total_deaths_per_million": 8.835, + "new_deaths_per_million": 0.725, + "new_deaths_smoothed_per_million": 0.511, + "new_tests": 29005.0, + "total_tests": 634996.0, + "total_tests_per_thousand": 10.707, + "new_tests_per_thousand": 0.489, + "new_tests_smoothed": 18448.0, + "new_tests_smoothed_per_thousand": 0.311, + "tests_per_case": 18.281, + "positive_rate": 0.055, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 25937.0, + "new_cases": 1673.0, + "new_cases_smoothed": 1133.429, + "total_deaths": 552.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 437.322, + "new_cases_per_million": 28.208, + "new_cases_smoothed_per_million": 19.111, + "total_deaths_per_million": 9.307, + "new_deaths_per_million": 0.472, + "new_deaths_smoothed_per_million": 0.513, + "new_tests": 20727.0, + "total_tests": 655723.0, + "total_tests_per_thousand": 11.056, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 18613.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 16.422, + "positive_rate": 0.061, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 27403.0, + "new_cases": 1466.0, + "new_cases_smoothed": 1180.857, + "total_deaths": 577.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 462.04, + "new_cases_per_million": 24.718, + "new_cases_smoothed_per_million": 19.91, + "total_deaths_per_million": 9.729, + "new_deaths_per_million": 0.422, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 24452.0, + "total_tests": 680175.0, + "total_tests_per_thousand": 11.468, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 19592.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 16.590999999999998, + "positive_rate": 0.06, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 29240.0, + "new_cases": 1837.0, + "new_cases_smoothed": 1302.143, + "total_deaths": 611.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 30.571, + "total_cases_per_million": 493.014, + "new_cases_per_million": 30.974, + "new_cases_smoothed_per_million": 21.955, + "total_deaths_per_million": 10.302, + "new_deaths_per_million": 0.573, + "new_deaths_smoothed_per_million": 0.515, + "new_tests": 21708.0, + "total_tests": 701883.0, + "total_tests_per_thousand": 11.834, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 19645.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 15.087, + "positive_rate": 0.066, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 30967.0, + "new_cases": 1727.0, + "new_cases_smoothed": 1374.857, + "total_deaths": 643.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 33.714, + "total_cases_per_million": 522.133, + "new_cases_per_million": 29.119, + "new_cases_smoothed_per_million": 23.181, + "total_deaths_per_million": 10.842, + "new_deaths_per_million": 0.54, + "new_deaths_smoothed_per_million": 0.568, + "new_tests": 23242.0, + "total_tests": 725125.0, + "total_tests_per_thousand": 12.226, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 20181.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 14.679, + "positive_rate": 0.068, + "tests_units": "people tested", + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 32683.0, + "new_cases": 1716.0, + "new_cases_smoothed": 1442.857, + "total_deaths": 683.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 551.066, + "new_cases_per_million": 28.933, + "new_cases_smoothed_per_million": 24.328, + "total_deaths_per_million": 11.516, + "new_deaths_per_million": 0.674, + "new_deaths_smoothed_per_million": 0.612, + "new_tests": 17617.0, + "total_tests": 742742.0, + "total_tests_per_thousand": 12.523, + "new_tests_per_thousand": 0.297, + "new_tests_smoothed": 20852.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 14.452, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 34357.0, + "new_cases": 1674.0, + "new_cases_smoothed": 1534.571, + "total_deaths": 705.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 579.291, + "new_cases_per_million": 28.225, + "new_cases_smoothed_per_million": 25.874, + "total_deaths_per_million": 11.887, + "new_deaths_per_million": 0.371, + "new_deaths_smoothed_per_million": 0.54, + "new_tests": 18792.0, + "total_tests": 761534.0, + "total_tests_per_thousand": 12.84, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 22220.0, + "new_tests_smoothed_per_thousand": 0.375, + "tests_per_case": 14.48, + "positive_rate": 0.069, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 35812.0, + "new_cases": 1455.0, + "new_cases_smoothed": 1649.714, + "total_deaths": 755.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 603.824, + "new_cases_per_million": 24.533, + "new_cases_smoothed_per_million": 27.816, + "total_deaths_per_million": 12.73, + "new_deaths_per_million": 0.843, + "new_deaths_smoothed_per_million": 0.556, + "new_tests": 24445.0, + "total_tests": 785979.0, + "total_tests_per_thousand": 13.252, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 21569.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 13.074000000000002, + "positive_rate": 0.076, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 37525.0, + "new_cases": 1713.0, + "new_cases_smoothed": 1655.429, + "total_deaths": 792.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 34.286, + "total_cases_per_million": 632.707, + "new_cases_per_million": 28.883, + "new_cases_smoothed_per_million": 27.912, + "total_deaths_per_million": 13.354, + "new_deaths_per_million": 0.624, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 34696.0, + "total_tests": 820675.0, + "total_tests_per_thousand": 13.837, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 23565.0, + "new_tests_smoothed_per_thousand": 0.397, + "tests_per_case": 14.235, + "positive_rate": 0.07, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-05", + "total_cases": 40792.0, + "new_cases": 3267.0, + "new_cases_smoothed": 1912.714, + "total_deaths": 848.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 38.714, + "total_cases_per_million": 687.791, + "new_cases_per_million": 55.085, + "new_cases_smoothed_per_million": 32.25, + "total_deaths_per_million": 14.298, + "new_deaths_per_million": 0.944, + "new_deaths_smoothed_per_million": 0.653, + "new_tests": 30196.0, + "total_tests": 850871.0, + "total_tests_per_thousand": 14.346, + "new_tests_per_thousand": 0.509, + "new_tests_smoothed": 24385.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 12.749, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-06", + "total_cases": 43434.0, + "new_cases": 2642.0, + "new_cases_smoothed": 2027.714, + "total_deaths": 908.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 42.429, + "total_cases_per_million": 732.338, + "new_cases_per_million": 44.547, + "new_cases_smoothed_per_million": 34.189, + "total_deaths_per_million": 15.31, + "new_deaths_per_million": 1.012, + "new_deaths_smoothed_per_million": 0.715, + "new_tests": 40797.0, + "total_tests": 891668.0, + "total_tests_per_thousand": 15.034, + "new_tests_per_thousand": 0.688, + "new_tests_smoothed": 27112.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 13.370999999999999, + "positive_rate": 0.075, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-07", + "total_cases": 45973.0, + "new_cases": 2539.0, + "new_cases_smoothed": 2143.714, + "total_deaths": 952.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 44.143, + "total_cases_per_million": 775.148, + "new_cases_per_million": 42.81, + "new_cases_smoothed_per_million": 36.145, + "total_deaths_per_million": 16.052, + "new_deaths_per_million": 0.742, + "new_deaths_smoothed_per_million": 0.744, + "new_tests": 28396.0, + "total_tests": 920064.0, + "total_tests_per_thousand": 15.513, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 27848.0, + "new_tests_smoothed_per_thousand": 0.47, + "tests_per_case": 12.991, + "positive_rate": 0.077, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-06-08", + "total_cases": 48285.0, + "new_cases": 2312.0, + "new_cases_smoothed": 2228.857, + "total_deaths": 998.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 45.0, + "total_cases_per_million": 814.13, + "new_cases_per_million": 38.982, + "new_cases_smoothed_per_million": 37.581, + "total_deaths_per_million": 16.827, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 0.759, + "new_tests": 22995.0, + "total_tests": 943059.0, + "total_tests_per_thousand": 15.901, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 28617.0, + "new_tests_smoothed_per_thousand": 0.483, + "tests_per_case": 12.839, + "positive_rate": 0.078, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-09", + "total_cases": 50879.0, + "new_cases": 2594.0, + "new_cases_smoothed": 2360.286, + "total_deaths": 1080.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 53.571, + "total_cases_per_million": 857.868, + "new_cases_per_million": 43.737, + "new_cases_smoothed_per_million": 39.797, + "total_deaths_per_million": 18.21, + "new_deaths_per_million": 1.383, + "new_deaths_smoothed_per_million": 0.903, + "new_tests": 25011.0, + "total_tests": 968070.0, + "total_tests_per_thousand": 16.323, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 29505.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 12.501, + "positive_rate": 0.08, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-10", + "total_cases": 52991.0, + "new_cases": 2112.0, + "new_cases_smoothed": 2454.143, + "total_deaths": 1162.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 58.143, + "total_cases_per_million": 893.478, + "new_cases_per_million": 35.61, + "new_cases_smoothed_per_million": 41.379, + "total_deaths_per_million": 19.592, + "new_deaths_per_million": 1.383, + "new_deaths_smoothed_per_million": 0.98, + "new_tests": 30330.0, + "total_tests": 998400.0, + "total_tests_per_thousand": 16.834, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 30346.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 12.365, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-11", + "total_cases": 55421.0, + "new_cases": 2430.0, + "new_cases_smoothed": 2556.571, + "total_deaths": 1210.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 59.714, + "total_cases_per_million": 934.45, + "new_cases_per_million": 40.972, + "new_cases_smoothed_per_million": 43.106, + "total_deaths_per_million": 20.402, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.007, + "new_tests": 29999.0, + "total_tests": 1028399.0, + "total_tests_per_thousand": 17.34, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 29675.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 11.607000000000001, + "positive_rate": 0.086, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-12", + "total_cases": 58568.0, + "new_cases": 3147.0, + "new_cases_smoothed": 2539.429, + "total_deaths": 1289.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 63.0, + "total_cases_per_million": 987.511, + "new_cases_per_million": 53.061, + "new_cases_smoothed_per_million": 42.817, + "total_deaths_per_million": 21.734, + "new_deaths_per_million": 1.332, + "new_deaths_smoothed_per_million": 1.062, + "new_tests": 32026.0, + "total_tests": 1060425.0, + "total_tests_per_thousand": 17.88, + "new_tests_per_thousand": 0.54, + "new_tests_smoothed": 29936.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 11.788, + "positive_rate": 0.085, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-13", + "total_cases": 61927.0, + "new_cases": 3359.0, + "new_cases_smoothed": 2641.857, + "total_deaths": 1354.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 63.714, + "total_cases_per_million": 1044.147, + "new_cases_per_million": 56.636, + "new_cases_smoothed_per_million": 44.544, + "total_deaths_per_million": 22.83, + "new_deaths_per_million": 1.096, + "new_deaths_smoothed_per_million": 1.074, + "new_tests": 27462.0, + "total_tests": 1087887.0, + "total_tests_per_thousand": 18.343, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 28031.0, + "new_tests_smoothed_per_thousand": 0.473, + "tests_per_case": 10.61, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-14", + "total_cases": 65736.0, + "new_cases": 3809.0, + "new_cases_smoothed": 2823.286, + "total_deaths": 1423.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 67.286, + "total_cases_per_million": 1108.37, + "new_cases_per_million": 64.223, + "new_cases_smoothed_per_million": 47.603, + "total_deaths_per_million": 23.993, + "new_deaths_per_million": 1.163, + "new_deaths_smoothed_per_million": 1.135, + "new_tests": 34071.0, + "total_tests": 1121958.0, + "total_tests_per_thousand": 18.917, + "new_tests_per_thousand": 0.574, + "new_tests_smoothed": 28842.0, + "new_tests_smoothed_per_thousand": 0.486, + "tests_per_case": 10.216000000000001, + "positive_rate": 0.098, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-15", + "total_cases": 70038.0, + "new_cases": 4302.0, + "new_cases_smoothed": 3107.571, + "total_deaths": 1480.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 1180.906, + "new_cases_per_million": 72.536, + "new_cases_smoothed_per_million": 52.397, + "total_deaths_per_million": 24.954, + "new_deaths_per_million": 0.961, + "new_deaths_smoothed_per_million": 1.161, + "new_tests": 26975.0, + "total_tests": 1148933.0, + "total_tests_per_thousand": 19.372, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 29411.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 9.464, + "positive_rate": 0.106, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-16", + "total_cases": 73533.0, + "new_cases": 3495.0, + "new_cases_smoothed": 3236.286, + "total_deaths": 1568.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 69.714, + "total_cases_per_million": 1239.835, + "new_cases_per_million": 58.929, + "new_cases_smoothed_per_million": 54.567, + "total_deaths_per_million": 26.438, + "new_deaths_per_million": 1.484, + "new_deaths_smoothed_per_million": 1.175, + "new_tests": 23580.0, + "total_tests": 1172513.0, + "total_tests_per_thousand": 19.77, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 29206.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 9.025, + "positive_rate": 0.111, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-17", + "total_cases": 76334.0, + "new_cases": 2801.0, + "new_cases_smoothed": 3334.714, + "total_deaths": 1625.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 66.143, + "total_cases_per_million": 1287.063, + "new_cases_per_million": 47.227, + "new_cases_smoothed_per_million": 56.226, + "total_deaths_per_million": 27.399, + "new_deaths_per_million": 0.961, + "new_deaths_smoothed_per_million": 1.115, + "new_tests": 34847.0, + "total_tests": 1207360.0, + "total_tests_per_thousand": 20.357, + "new_tests_per_thousand": 0.588, + "new_tests_smoothed": 29851.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 8.952, + "positive_rate": 0.11199999999999999, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-18", + "total_cases": 80412.0, + "new_cases": 4078.0, + "new_cases_smoothed": 3570.143, + "total_deaths": 1674.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 66.286, + "total_cases_per_million": 1355.822, + "new_cases_per_million": 68.759, + "new_cases_smoothed_per_million": 60.196, + "total_deaths_per_million": 28.225, + "new_deaths_per_million": 0.826, + "new_deaths_smoothed_per_million": 1.118, + "new_tests": 20738.0, + "total_tests": 1228098.0, + "total_tests_per_thousand": 20.707, + "new_tests_per_thousand": 0.35, + "new_tests_smoothed": 28528.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 7.9910000000000005, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-19", + "total_cases": 83890.0, + "new_cases": 3478.0, + "new_cases_smoothed": 3617.429, + "total_deaths": 1737.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 64.0, + "total_cases_per_million": 1414.464, + "new_cases_per_million": 58.642, + "new_cases_smoothed_per_million": 60.993, + "total_deaths_per_million": 29.287, + "new_deaths_per_million": 1.062, + "new_deaths_smoothed_per_million": 1.079, + "new_tests": 32336.0, + "total_tests": 1260434.0, + "total_tests_per_thousand": 21.252, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 28573.0, + "new_tests_smoothed_per_thousand": 0.482, + "tests_per_case": 7.899, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-20", + "total_cases": 87715.0, + "new_cases": 3825.0, + "new_cases_smoothed": 3684.0, + "total_deaths": 1831.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 1478.957, + "new_cases_per_million": 64.493, + "new_cases_smoothed_per_million": 62.116, + "total_deaths_per_million": 30.872, + "new_deaths_per_million": 1.585, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 33174.0, + "total_tests": 1293608.0, + "total_tests_per_thousand": 21.811, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 29389.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 7.977, + "positive_rate": 0.125, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-21", + "total_cases": 92681.0, + "new_cases": 4966.0, + "new_cases_smoothed": 3849.286, + "total_deaths": 1877.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 64.857, + "total_cases_per_million": 1562.688, + "new_cases_per_million": 83.731, + "new_cases_smoothed_per_million": 64.903, + "total_deaths_per_million": 31.648, + "new_deaths_per_million": 0.776, + "new_deaths_smoothed_per_million": 1.094, + "new_tests": 34452.0, + "total_tests": 1328060.0, + "total_tests_per_thousand": 22.392, + "new_tests_per_thousand": 0.581, + "new_tests_smoothed": 29443.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 7.649, + "positive_rate": 0.131, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-22", + "total_cases": 97302.0, + "new_cases": 4621.0, + "new_cases_smoothed": 3894.857, + "total_deaths": 1930.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 64.286, + "total_cases_per_million": 1640.603, + "new_cases_per_million": 77.914, + "new_cases_smoothed_per_million": 65.671, + "total_deaths_per_million": 32.542, + "new_deaths_per_million": 0.894, + "new_deaths_smoothed_per_million": 1.084, + "new_tests": 25116.0, + "total_tests": 1353176.0, + "total_tests_per_thousand": 22.816, + "new_tests_per_thousand": 0.423, + "new_tests_smoothed": 29178.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 7.4910000000000005, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-23", + "total_cases": 101590.0, + "new_cases": 4288.0, + "new_cases_smoothed": 4008.143, + "total_deaths": 1991.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 60.429, + "total_cases_per_million": 1712.902, + "new_cases_per_million": 72.3, + "new_cases_smoothed_per_million": 67.581, + "total_deaths_per_million": 33.57, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 1.019, + "new_tests": 29596.0, + "total_tests": 1382772.0, + "total_tests_per_thousand": 23.315, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 30037.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 7.494, + "positive_rate": 0.133, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-24", + "total_cases": 106108.0, + "new_cases": 4518.0, + "new_cases_smoothed": 4253.429, + "total_deaths": 2102.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 68.143, + "total_cases_per_million": 1789.08, + "new_cases_per_million": 76.178, + "new_cases_smoothed_per_million": 71.717, + "total_deaths_per_million": 35.442, + "new_deaths_per_million": 1.872, + "new_deaths_smoothed_per_million": 1.149, + "new_tests": 34122.0, + "total_tests": 1416894.0, + "total_tests_per_thousand": 23.89, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 29933.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 7.037000000000001, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-25", + "total_cases": 111796.0, + "new_cases": 5688.0, + "new_cases_smoothed": 4483.429, + "total_deaths": 2205.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 75.857, + "total_cases_per_million": 1884.985, + "new_cases_per_million": 95.905, + "new_cases_smoothed_per_million": 75.595, + "total_deaths_per_million": 37.178, + "new_deaths_per_million": 1.737, + "new_deaths_smoothed_per_million": 1.279, + "new_tests": 43118.0, + "total_tests": 1460012.0, + "total_tests_per_thousand": 24.617, + "new_tests_per_thousand": 0.727, + "new_tests_smoothed": 33131.0, + "new_tests_smoothed_per_thousand": 0.559, + "tests_per_case": 7.39, + "positive_rate": 0.135, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-26", + "total_cases": 118375.0, + "new_cases": 6579.0, + "new_cases_smoothed": 4926.429, + "total_deaths": 2292.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 79.286, + "total_cases_per_million": 1995.913, + "new_cases_per_million": 110.928, + "new_cases_smoothed_per_million": 83.064, + "total_deaths_per_million": 38.645, + "new_deaths_per_million": 1.467, + "new_deaths_smoothed_per_million": 1.337, + "new_tests": 33092.0, + "total_tests": 1493104.0, + "total_tests_per_thousand": 25.175, + "new_tests_per_thousand": 0.558, + "new_tests_smoothed": 33239.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 6.747000000000001, + "positive_rate": 0.14800000000000002, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-27", + "total_cases": 124590.0, + "new_cases": 6215.0, + "new_cases_smoothed": 5267.857, + "total_deaths": 2340.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 72.714, + "total_cases_per_million": 2100.704, + "new_cases_per_million": 104.791, + "new_cases_smoothed_per_million": 88.821, + "total_deaths_per_million": 39.455, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.226, + "new_tests": 35905.0, + "total_tests": 1529009.0, + "total_tests_per_thousand": 25.781, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 33629.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 6.3839999999999995, + "positive_rate": 0.157, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-28", + "total_cases": 131800.0, + "new_cases": 7210.0, + "new_cases_smoothed": 5588.429, + "total_deaths": 2413.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 76.571, + "total_cases_per_million": 2222.271, + "new_cases_per_million": 121.567, + "new_cases_smoothed_per_million": 94.226, + "total_deaths_per_million": 40.685, + "new_deaths_per_million": 1.231, + "new_deaths_smoothed_per_million": 1.291, + "new_tests": 38075.0, + "total_tests": 1567084.0, + "total_tests_per_thousand": 26.423, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 34146.0, + "new_tests_smoothed_per_thousand": 0.576, + "tests_per_case": 6.11, + "positive_rate": 0.16399999999999998, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-29", + "total_cases": 138134.0, + "new_cases": 6334.0, + "new_cases_smoothed": 5833.143, + "total_deaths": 2456.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 75.143, + "total_cases_per_million": 2329.068, + "new_cases_per_million": 106.797, + "new_cases_smoothed_per_million": 98.352, + "total_deaths_per_million": 41.41, + "new_deaths_per_million": 0.725, + "new_deaths_smoothed_per_million": 1.267, + "new_tests": 29911.0, + "total_tests": 1596995.0, + "total_tests_per_thousand": 26.927, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 34831.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 5.971, + "positive_rate": 0.16699999999999998, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-06-30", + "total_cases": 144264.0, + "new_cases": 6130.0, + "new_cases_smoothed": 6096.286, + "total_deaths": 2529.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 76.857, + "total_cases_per_million": 2432.426, + "new_cases_per_million": 103.358, + "new_cases_smoothed_per_million": 102.789, + "total_deaths_per_million": 42.641, + "new_deaths_per_million": 1.231, + "new_deaths_smoothed_per_million": 1.296, + "new_tests": 33013.0, + "total_tests": 1630008.0, + "total_tests_per_thousand": 27.483, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 35319.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 5.794, + "positive_rate": 0.17300000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-01", + "total_cases": 151209.0, + "new_cases": 6945.0, + "new_cases_smoothed": 6443.0, + "total_deaths": 2657.0, + "new_deaths": 128.0, + "new_deaths_smoothed": 79.286, + "total_cases_per_million": 2549.525, + "new_cases_per_million": 117.099, + "new_cases_smoothed_per_million": 108.635, + "total_deaths_per_million": 44.8, + "new_deaths_per_million": 2.158, + "new_deaths_smoothed_per_million": 1.337, + "new_tests": 36931.0, + "total_tests": 1666939.0, + "total_tests_per_thousand": 28.106, + "new_tests_per_thousand": 0.623, + "new_tests_smoothed": 35721.0, + "new_tests_smoothed_per_thousand": 0.602, + "tests_per_case": 5.544, + "positive_rate": 0.18, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-02", + "total_cases": 159333.0, + "new_cases": 8124.0, + "new_cases_smoothed": 6791.0, + "total_deaths": 2749.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 77.714, + "total_cases_per_million": 2686.503, + "new_cases_per_million": 136.978, + "new_cases_smoothed_per_million": 114.503, + "total_deaths_per_million": 46.351, + "new_deaths_per_million": 1.551, + "new_deaths_smoothed_per_million": 1.31, + "new_tests": 39188.0, + "total_tests": 1706127.0, + "total_tests_per_thousand": 28.767, + "new_tests_per_thousand": 0.661, + "new_tests_smoothed": 35159.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 5.1770000000000005, + "positive_rate": 0.193, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-03", + "total_cases": 168061.0, + "new_cases": 8728.0, + "new_cases_smoothed": 7098.0, + "total_deaths": 2844.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 78.857, + "total_cases_per_million": 2833.666, + "new_cases_per_million": 147.162, + "new_cases_smoothed_per_million": 119.679, + "total_deaths_per_million": 47.953, + "new_deaths_per_million": 1.602, + "new_deaths_smoothed_per_million": 1.33, + "new_tests": 39026.0, + "total_tests": 1745153.0, + "total_tests_per_thousand": 29.425, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 36007.0, + "new_tests_smoothed_per_thousand": 0.607, + "tests_per_case": 5.073, + "positive_rate": 0.19699999999999998, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-04", + "total_cases": 177124.0, + "new_cases": 9063.0, + "new_cases_smoothed": 7504.857, + "total_deaths": 2952.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 87.429, + "total_cases_per_million": 2986.476, + "new_cases_per_million": 152.811, + "new_cases_smoothed_per_million": 126.539, + "total_deaths_per_million": 49.773, + "new_deaths_per_million": 1.821, + "new_deaths_smoothed_per_million": 1.474, + "new_tests": 46925.0, + "total_tests": 1792078.0, + "total_tests_per_thousand": 30.216, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 37581.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 5.008, + "positive_rate": 0.2, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-05", + "total_cases": 187977.0, + "new_cases": 10853.0, + "new_cases_smoothed": 8025.286, + "total_deaths": 3026.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 87.571, + "total_cases_per_million": 3169.468, + "new_cases_per_million": 182.992, + "new_cases_smoothed_per_million": 135.314, + "total_deaths_per_million": 51.021, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 1.477, + "new_tests": 38083.0, + "total_tests": 1830161.0, + "total_tests_per_thousand": 30.858, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 37582.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 4.683, + "positive_rate": 0.214, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-06", + "total_cases": 196750.0, + "new_cases": 8773.0, + "new_cases_smoothed": 8373.714, + "total_deaths": 3199.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 106.143, + "total_cases_per_million": 3317.389, + "new_cases_per_million": 147.921, + "new_cases_smoothed_per_million": 141.189, + "total_deaths_per_million": 53.938, + "new_deaths_per_million": 2.917, + "new_deaths_smoothed_per_million": 1.79, + "new_tests": 33950.0, + "total_tests": 1864111.0, + "total_tests_per_thousand": 31.431, + "new_tests_per_thousand": 0.572, + "new_tests_smoothed": 38159.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 4.5569999999999995, + "positive_rate": 0.21899999999999997, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-07", + "total_cases": 205721.0, + "new_cases": 8971.0, + "new_cases_smoothed": 8779.571, + "total_deaths": 3310.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 111.571, + "total_cases_per_million": 3468.649, + "new_cases_per_million": 151.259, + "new_cases_smoothed_per_million": 148.032, + "total_deaths_per_million": 55.81, + "new_deaths_per_million": 1.872, + "new_deaths_smoothed_per_million": 1.881, + "new_tests": 43421.0, + "total_tests": 1907532.0, + "total_tests_per_thousand": 32.163, + "new_tests_per_thousand": 0.732, + "new_tests_smoothed": 39646.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 4.516, + "positive_rate": 0.221, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-08", + "total_cases": 215855.0, + "new_cases": 10134.0, + "new_cases_smoothed": 9235.143, + "total_deaths": 3502.0, + "new_deaths": 192.0, + "new_deaths_smoothed": 120.714, + "total_cases_per_million": 3639.517, + "new_cases_per_million": 170.869, + "new_cases_smoothed_per_million": 155.713, + "total_deaths_per_million": 59.047, + "new_deaths_per_million": 3.237, + "new_deaths_smoothed_per_million": 2.035, + "new_tests": 36867.0, + "total_tests": 1944399.0, + "total_tests_per_thousand": 32.784, + "new_tests_per_thousand": 0.622, + "new_tests_smoothed": 39637.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 4.292, + "positive_rate": 0.233, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-09", + "total_cases": 224665.0, + "new_cases": 8810.0, + "new_cases_smoothed": 9333.143, + "total_deaths": 3602.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 121.857, + "total_cases_per_million": 3788.062, + "new_cases_per_million": 148.545, + "new_cases_smoothed_per_million": 157.366, + "total_deaths_per_million": 60.733, + "new_deaths_per_million": 1.686, + "new_deaths_smoothed_per_million": 2.055, + "new_tests": 56170.0, + "total_tests": 2000569.0, + "total_tests_per_thousand": 33.731, + "new_tests_per_thousand": 0.947, + "new_tests_smoothed": 42063.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 4.507, + "positive_rate": 0.222, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-10", + "total_cases": 238339.0, + "new_cases": 13674.0, + "new_cases_smoothed": 10039.714, + "total_deaths": 3720.0, + "new_deaths": 118.0, + "new_deaths_smoothed": 125.143, + "total_cases_per_million": 4018.619, + "new_cases_per_million": 230.556, + "new_cases_smoothed_per_million": 169.279, + "total_deaths_per_million": 62.723, + "new_deaths_per_million": 1.99, + "new_deaths_smoothed_per_million": 2.11, + "new_tests": 56663.0, + "total_tests": 2057232.0, + "total_tests_per_thousand": 34.687, + "new_tests_per_thousand": 0.955, + "new_tests_smoothed": 44583.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 4.441, + "positive_rate": 0.225, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-11", + "total_cases": 250687.0, + "new_cases": 12348.0, + "new_cases_smoothed": 10509.0, + "total_deaths": 3860.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 129.714, + "total_cases_per_million": 4226.817, + "new_cases_per_million": 208.199, + "new_cases_smoothed_per_million": 177.192, + "total_deaths_per_million": 65.083, + "new_deaths_per_million": 2.361, + "new_deaths_smoothed_per_million": 2.187, + "new_tests": 51338.0, + "total_tests": 2108570.0, + "total_tests_per_thousand": 35.552, + "new_tests_per_thousand": 0.866, + "new_tests_smoothed": 45213.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 4.302, + "positive_rate": 0.23199999999999998, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-12", + "total_cases": 264184.0, + "new_cases": 13497.0, + "new_cases_smoothed": 10886.714, + "total_deaths": 3971.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 135.0, + "total_cases_per_million": 4454.389, + "new_cases_per_million": 227.572, + "new_cases_smoothed_per_million": 183.56, + "total_deaths_per_million": 66.955, + "new_deaths_per_million": 1.872, + "new_deaths_smoothed_per_million": 2.276, + "new_tests": 45821.0, + "total_tests": 2154391.0, + "total_tests_per_thousand": 36.325, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 46319.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 4.255, + "positive_rate": 0.235, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 276242.0, + "new_cases": 12058.0, + "new_cases_smoothed": 11356.0, + "total_deaths": 4079.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 125.714, + "total_cases_per_million": 4657.699, + "new_cases_per_million": 203.309, + "new_cases_smoothed_per_million": 191.473, + "total_deaths_per_million": 68.776, + "new_deaths_per_million": 1.821, + "new_deaths_smoothed_per_million": 2.12, + "new_tests": 40233.0, + "total_tests": 2194624.0, + "total_tests_per_thousand": 37.003, + "new_tests_per_thousand": 0.678, + "new_tests_smoothed": 47216.0, + "new_tests_smoothed_per_thousand": 0.796, + "tests_per_case": 4.158, + "positive_rate": 0.24100000000000002, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 287796.0, + "new_cases": 11554.0, + "new_cases_smoothed": 11725.0, + "total_deaths": 4172.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 123.143, + "total_cases_per_million": 4852.51, + "new_cases_per_million": 194.811, + "new_cases_smoothed_per_million": 197.694, + "total_deaths_per_million": 70.344, + "new_deaths_per_million": 1.568, + "new_deaths_smoothed_per_million": 2.076, + "new_tests": 38114.0, + "total_tests": 2232738.0, + "total_tests_per_thousand": 37.646, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 46458.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 3.9619999999999997, + "positive_rate": 0.252, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 298292.0, + "new_cases": 10496.0, + "new_cases_smoothed": 11776.714, + "total_deaths": 4346.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 120.571, + "total_cases_per_million": 5029.482, + "new_cases_per_million": 176.972, + "new_cases_smoothed_per_million": 198.566, + "total_deaths_per_million": 73.278, + "new_deaths_per_million": 2.934, + "new_deaths_smoothed_per_million": 2.033, + "new_tests": 45389.0, + "total_tests": 2278127.0, + "total_tests_per_thousand": 38.411, + "new_tests_per_thousand": 0.765, + "new_tests_smoothed": 47675.0, + "new_tests_smoothed_per_thousand": 0.804, + "tests_per_case": 4.048, + "positive_rate": 0.247, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 311049.0, + "new_cases": 12757.0, + "new_cases_smoothed": 12340.571, + "total_deaths": 4453.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 121.571, + "total_cases_per_million": 5244.577, + "new_cases_per_million": 215.095, + "new_cases_smoothed_per_million": 208.074, + "total_deaths_per_million": 75.082, + "new_deaths_per_million": 1.804, + "new_deaths_smoothed_per_million": 2.05, + "new_tests": 46796.0, + "total_tests": 2324923.0, + "total_tests_per_thousand": 39.2, + "new_tests_per_thousand": 0.789, + "new_tests_smoothed": 46336.0, + "new_tests_smoothed_per_thousand": 0.781, + "tests_per_case": 3.755, + "positive_rate": 0.266, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 324221.0, + "new_cases": 13172.0, + "new_cases_smoothed": 12268.857, + "total_deaths": 4669.0, + "new_deaths": 216.0, + "new_deaths_smoothed": 135.571, + "total_cases_per_million": 5466.669, + "new_cases_per_million": 222.092, + "new_cases_smoothed_per_million": 206.864, + "total_deaths_per_million": 78.724, + "new_deaths_per_million": 3.642, + "new_deaths_smoothed_per_million": 2.286, + "new_tests": 48130.0, + "total_tests": 2373053.0, + "total_tests_per_thousand": 40.012, + "new_tests_per_thousand": 0.812, + "new_tests_smoothed": 45117.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 3.677, + "positive_rate": 0.272, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 337594.0, + "new_cases": 13373.0, + "new_cases_smoothed": 12415.286, + "total_deaths": 4804.0, + "new_deaths": 135.0, + "new_deaths_smoothed": 134.857, + "total_cases_per_million": 5692.151, + "new_cases_per_million": 225.481, + "new_cases_smoothed_per_million": 209.333, + "total_deaths_per_million": 81.0, + "new_deaths_per_million": 2.276, + "new_deaths_smoothed_per_million": 2.274, + "new_tests": 49688.0, + "total_tests": 2422741.0, + "total_tests_per_thousand": 40.85, + "new_tests_per_thousand": 0.838, + "new_tests_smoothed": 44882.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 3.615, + "positive_rate": 0.27699999999999997, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 350879.0, + "new_cases": 13285.0, + "new_cases_smoothed": 12385.0, + "total_deaths": 4948.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 139.571, + "total_cases_per_million": 5916.148, + "new_cases_per_million": 223.998, + "new_cases_smoothed_per_million": 208.823, + "total_deaths_per_million": 83.428, + "new_deaths_per_million": 2.428, + "new_deaths_smoothed_per_million": 2.353, + "new_tests": 49006.0, + "total_tests": 2471747.0, + "total_tests_per_thousand": 41.676, + "new_tests_per_thousand": 0.826, + "new_tests_smoothed": 45337.0, + "new_tests_smoothed_per_thousand": 0.764, + "tests_per_case": 3.661, + "positive_rate": 0.273, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 364328.0, + "new_cases": 13449.0, + "new_cases_smoothed": 12583.714, + "total_deaths": 5033.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 136.286, + "total_cases_per_million": 6142.911, + "new_cases_per_million": 226.763, + "new_cases_smoothed_per_million": 212.173, + "total_deaths_per_million": 84.861, + "new_deaths_per_million": 1.433, + "new_deaths_smoothed_per_million": 2.298, + "new_tests": 33899.0, + "total_tests": 2505646.0, + "total_tests_per_thousand": 42.248, + "new_tests_per_thousand": 0.572, + "new_tests_smoothed": 44432.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 3.531, + "positive_rate": 0.28300000000000003, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 373628.0, + "new_cases": 9300.0, + "new_cases_smoothed": 12261.714, + "total_deaths": 5173.0, + "new_deaths": 140.0, + "new_deaths_smoothed": 143.0, + "total_cases_per_million": 6299.718, + "new_cases_per_million": 156.807, + "new_cases_smoothed_per_million": 206.744, + "total_deaths_per_million": 87.222, + "new_deaths_per_million": 2.361, + "new_deaths_smoothed_per_million": 2.411, + "new_tests": 31275.0, + "total_tests": 2536921.0, + "total_tests_per_thousand": 42.775, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 43455.0, + "new_tests_smoothed_per_thousand": 0.733, + "tests_per_case": 3.5439999999999996, + "positive_rate": 0.282, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 381798.0, + "new_cases": 8170.0, + "new_cases_smoothed": 11929.429, + "total_deaths": 5368.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 146.0, + "total_cases_per_million": 6437.471, + "new_cases_per_million": 137.754, + "new_cases_smoothed_per_million": 201.141, + "total_deaths_per_million": 90.51, + "new_deaths_per_million": 3.288, + "new_deaths_smoothed_per_million": 2.462, + "new_tests": 48553.0, + "total_tests": 2585474.0, + "total_tests_per_thousand": 43.594, + "new_tests_per_thousand": 0.819, + "new_tests_smoothed": 43907.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 3.681, + "positive_rate": 0.272, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 394948.0, + "new_cases": 13150.0, + "new_cases_smoothed": 11985.571, + "total_deaths": 5940.0, + "new_deaths": 572.0, + "new_deaths_smoothed": 212.429, + "total_cases_per_million": 6659.193, + "new_cases_per_million": 221.721, + "new_cases_smoothed_per_million": 202.088, + "total_deaths_per_million": 100.154, + "new_deaths_per_million": 9.644, + "new_deaths_smoothed_per_million": 3.582, + "new_tests": 46632.0, + "total_tests": 2632106.0, + "total_tests_per_thousand": 44.38, + "new_tests_per_thousand": 0.786, + "new_tests_smoothed": 43883.0, + "new_tests_smoothed_per_thousand": 0.74, + "tests_per_case": 3.661, + "positive_rate": 0.273, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 408052.0, + "new_cases": 13104.0, + "new_cases_smoothed": 11975.857, + "total_deaths": 6093.0, + "new_deaths": 153.0, + "new_deaths_smoothed": 203.429, + "total_cases_per_million": 6880.138, + "new_cases_per_million": 220.946, + "new_cases_smoothed_per_million": 201.924, + "total_deaths_per_million": 102.734, + "new_deaths_per_million": 2.58, + "new_deaths_smoothed_per_million": 3.43, + "new_tests": 52382.0, + "total_tests": 2684488.0, + "total_tests_per_thousand": 45.263, + "new_tests_per_thousand": 0.883, + "new_tests_smoothed": 44491.0, + "new_tests_smoothed_per_thousand": 0.75, + "tests_per_case": 3.715, + "positive_rate": 0.26899999999999996, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 421996.0, + "new_cases": 13944.0, + "new_cases_smoothed": 12057.429, + "total_deaths": 6343.0, + "new_deaths": 250.0, + "new_deaths_smoothed": 219.857, + "total_cases_per_million": 7115.247, + "new_cases_per_million": 235.109, + "new_cases_smoothed_per_million": 203.3, + "total_deaths_per_million": 106.949, + "new_deaths_per_million": 4.215, + "new_deaths_smoothed_per_million": 3.707, + "new_tests": 46324.0, + "total_tests": 2730812.0, + "total_tests_per_thousand": 46.044, + "new_tests_per_thousand": 0.781, + "new_tests_smoothed": 44010.0, + "new_tests_smoothed_per_thousand": 0.742, + "tests_per_case": 3.65, + "positive_rate": 0.27399999999999997, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 434200.0, + "new_cases": 12204.0, + "new_cases_smoothed": 11903.0, + "total_deaths": 6655.0, + "new_deaths": 312.0, + "new_deaths_smoothed": 243.857, + "total_cases_per_million": 7321.018, + "new_cases_per_million": 205.771, + "new_cases_smoothed_per_million": 200.696, + "total_deaths_per_million": 112.21, + "new_deaths_per_million": 5.261, + "new_deaths_smoothed_per_million": 4.112, + "new_tests": 42966.0, + "total_tests": 2773778.0, + "total_tests_per_thousand": 46.768, + "new_tests_per_thousand": 0.724, + "new_tests_smoothed": 43147.0, + "new_tests_smoothed_per_thousand": 0.727, + "tests_per_case": 3.625, + "positive_rate": 0.276, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 445433.0, + "new_cases": 11233.0, + "new_cases_smoothed": 11586.429, + "total_deaths": 6769.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 248.0, + "total_cases_per_million": 7510.417, + "new_cases_per_million": 189.399, + "new_cases_smoothed_per_million": 195.358, + "total_deaths_per_million": 114.132, + "new_deaths_per_million": 1.922, + "new_deaths_smoothed_per_million": 4.182, + "new_tests": 28433.0, + "total_tests": 2802211.0, + "total_tests_per_thousand": 47.248, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 42366.0, + "new_tests_smoothed_per_thousand": 0.714, + "tests_per_case": 3.657, + "positive_rate": 0.273, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 452529.0, + "new_cases": 7096.0, + "new_cases_smoothed": 11271.571, + "total_deaths": 7067.0, + "new_deaths": 298.0, + "new_deaths_smoothed": 270.571, + "total_cases_per_million": 7630.062, + "new_cases_per_million": 119.645, + "new_cases_smoothed_per_million": 190.049, + "total_deaths_per_million": 119.156, + "new_deaths_per_million": 5.025, + "new_deaths_smoothed_per_million": 4.562, + "new_tests": 28424.0, + "total_tests": 2830635.0, + "total_tests_per_thousand": 47.727, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 41959.0, + "new_tests_smoothed_per_thousand": 0.707, + "tests_per_case": 3.7230000000000003, + "positive_rate": 0.26899999999999996, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 459761.0, + "new_cases": 7232.0, + "new_cases_smoothed": 11137.571, + "total_deaths": 7257.0, + "new_deaths": 190.0, + "new_deaths_smoothed": 269.857, + "total_cases_per_million": 7752.001, + "new_cases_per_million": 121.938, + "new_cases_smoothed_per_million": 187.79, + "total_deaths_per_million": 122.36, + "new_deaths_per_million": 3.204, + "new_deaths_smoothed_per_million": 4.55, + "new_tests": 42528.0, + "total_tests": 2873163.0, + "total_tests_per_thousand": 48.444, + "new_tests_per_thousand": 0.717, + "new_tests_smoothed": 41098.0, + "new_tests_smoothed_per_thousand": 0.693, + "tests_per_case": 3.69, + "positive_rate": 0.271, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 471123.0, + "new_cases": 11362.0, + "new_cases_smoothed": 10882.143, + "total_deaths": 7497.0, + "new_deaths": 240.0, + "new_deaths_smoothed": 222.429, + "total_cases_per_million": 7943.575, + "new_cases_per_million": 191.574, + "new_cases_smoothed_per_million": 183.483, + "total_deaths_per_million": 126.406, + "new_deaths_per_million": 4.047, + "new_deaths_smoothed_per_million": 3.75, + "new_tests": 44886.0, + "total_tests": 2918049.0, + "total_tests_per_thousand": 49.201, + "new_tests_per_thousand": 0.757, + "new_tests_smoothed": 40849.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 3.7539999999999996, + "positive_rate": 0.266, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 482169.0, + "new_cases": 11046.0, + "new_cases_smoothed": 10588.143, + "total_deaths": 7812.0, + "new_deaths": 315.0, + "new_deaths_smoothed": 245.571, + "total_cases_per_million": 8129.82, + "new_cases_per_million": 186.246, + "new_cases_smoothed_per_million": 178.526, + "total_deaths_per_million": 131.718, + "new_deaths_per_million": 5.311, + "new_deaths_smoothed_per_million": 4.141, + "new_tests": 41486.0, + "total_tests": 2959535.0, + "total_tests_per_thousand": 49.901, + "new_tests_per_thousand": 0.699, + "new_tests_smoothed": 39292.0, + "new_tests_smoothed_per_thousand": 0.662, + "tests_per_case": 3.7110000000000003, + "positive_rate": 0.26899999999999996, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 493183.0, + "new_cases": 11014.0, + "new_cases_smoothed": 10169.571, + "total_deaths": 8005.0, + "new_deaths": 193.0, + "new_deaths_smoothed": 237.429, + "total_cases_per_million": 8315.527, + "new_cases_per_million": 185.706, + "new_cases_smoothed_per_million": 171.468, + "total_deaths_per_million": 134.972, + "new_deaths_per_million": 3.254, + "new_deaths_smoothed_per_million": 4.003, + "new_tests": 42450.0, + "total_tests": 3001985.0, + "total_tests_per_thousand": 50.616, + "new_tests_per_thousand": 0.716, + "new_tests_smoothed": 38739.0, + "new_tests_smoothed_per_thousand": 0.653, + "tests_per_case": 3.8089999999999997, + "positive_rate": 0.263, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 503290.0, + "new_cases": 10107.0, + "new_cases_smoothed": 9870.0, + "total_deaths": 8153.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 214.0, + "total_cases_per_million": 8485.94, + "new_cases_per_million": 170.413, + "new_cases_smoothed_per_million": 166.417, + "total_deaths_per_million": 137.467, + "new_deaths_per_million": 2.495, + "new_deaths_smoothed_per_million": 3.608, + "new_tests": 34794.0, + "total_tests": 3036779.0, + "total_tests_per_thousand": 51.203, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 37572.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 3.807, + "positive_rate": 0.263, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 511485.0, + "new_cases": 8195.0, + "new_cases_smoothed": 9436.0, + "total_deaths": 8366.0, + "new_deaths": 213.0, + "new_deaths_smoothed": 228.143, + "total_cases_per_million": 8624.116, + "new_cases_per_million": 138.175, + "new_cases_smoothed_per_million": 159.1, + "total_deaths_per_million": 141.059, + "new_deaths_per_million": 3.591, + "new_deaths_smoothed_per_million": 3.847, + "new_tests": 21916.0, + "total_tests": 3058695.0, + "total_tests_per_thousand": 51.572, + "new_tests_per_thousand": 0.37, + "new_tests_smoothed": 36641.0, + "new_tests_smoothed_per_thousand": 0.618, + "tests_per_case": 3.883, + "positive_rate": 0.258, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 516862.0, + "new_cases": 5377.0, + "new_cases_smoothed": 9190.429, + "total_deaths": 8539.0, + "new_deaths": 173.0, + "new_deaths_smoothed": 210.286, + "total_cases_per_million": 8714.777, + "new_cases_per_million": 90.661, + "new_cases_smoothed_per_million": 154.959, + "total_deaths_per_million": 143.976, + "new_deaths_per_million": 2.917, + "new_deaths_smoothed_per_million": 3.546, + "new_tests": 19507.0, + "total_tests": 3078202.0, + "total_tests_per_thousand": 51.901, + "new_tests_per_thousand": 0.329, + "new_tests_smoothed": 35367.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 3.8480000000000003, + "positive_rate": 0.26, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 521318.0, + "new_cases": 4456.0, + "new_cases_smoothed": 8793.857, + "total_deaths": 8884.0, + "new_deaths": 345.0, + "new_deaths_smoothed": 232.429, + "total_cases_per_million": 8789.909, + "new_cases_per_million": 75.132, + "new_cases_smoothed_per_million": 148.273, + "total_deaths_per_million": 149.793, + "new_deaths_per_million": 5.817, + "new_deaths_smoothed_per_million": 3.919, + "new_tests": 34989.0, + "total_tests": 3113191.0, + "total_tests_per_thousand": 52.491, + "new_tests_per_thousand": 0.59, + "new_tests_smoothed": 34290.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 3.8989999999999996, + "positive_rate": 0.256, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 529877.0, + "new_cases": 8559.0, + "new_cases_smoothed": 8393.429, + "total_deaths": 9298.0, + "new_deaths": 414.0, + "new_deaths_smoothed": 257.286, + "total_cases_per_million": 8934.222, + "new_cases_per_million": 144.313, + "new_cases_smoothed_per_million": 141.521, + "total_deaths_per_million": 156.773, + "new_deaths_per_million": 6.98, + "new_deaths_smoothed_per_million": 4.338, + "new_tests": 36616.0, + "total_tests": 3149807.0, + "total_tests_per_thousand": 53.109, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 33108.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 3.945, + "positive_rate": 0.254, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-07", + "total_cases": 538184.0, + "new_cases": 8307.0, + "new_cases_smoothed": 8002.143, + "total_deaths": 9604.0, + "new_deaths": 306.0, + "new_deaths_smoothed": 256.0, + "total_cases_per_million": 9074.286, + "new_cases_per_million": 140.064, + "new_cases_smoothed_per_million": 134.924, + "total_deaths_per_million": 161.932, + "new_deaths_per_million": 5.159, + "new_deaths_smoothed_per_million": 4.316, + "new_tests": 33851.0, + "total_tests": 3183658.0, + "total_tests_per_thousand": 53.679, + "new_tests_per_thousand": 0.571, + "new_tests_smoothed": 32018.0, + "new_tests_smoothed_per_thousand": 0.54, + "tests_per_case": 4.001, + "positive_rate": 0.25, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 545476.0, + "new_cases": 7292.0, + "new_cases_smoothed": 7470.429, + "total_deaths": 9909.0, + "new_deaths": 305.0, + "new_deaths_smoothed": 272.0, + "total_cases_per_million": 9197.236, + "new_cases_per_million": 122.95, + "new_cases_smoothed_per_million": 125.958, + "total_deaths_per_million": 167.075, + "new_deaths_per_million": 5.143, + "new_deaths_smoothed_per_million": 4.586, + "new_tests": 36607.0, + "total_tests": 3220265.0, + "total_tests_per_thousand": 54.297, + "new_tests_per_thousand": 0.617, + "new_tests_smoothed": 31183.0, + "new_tests_smoothed_per_thousand": 0.526, + "tests_per_case": 4.1739999999999995, + "positive_rate": 0.24, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 553188.0, + "new_cases": 7712.0, + "new_cases_smoothed": 7128.286, + "total_deaths": 10210.0, + "new_deaths": 301.0, + "new_deaths_smoothed": 293.857, + "total_cases_per_million": 9327.267, + "new_cases_per_million": 130.032, + "new_cases_smoothed_per_million": 120.19, + "total_deaths_per_million": 172.15, + "new_deaths_per_million": 5.075, + "new_deaths_smoothed_per_million": 4.955, + "new_tests": 30318.0, + "total_tests": 3250583.0, + "total_tests_per_thousand": 54.808, + "new_tests_per_thousand": 0.511, + "new_tests_smoothed": 30543.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 4.285, + "positive_rate": 0.233, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 559858.0, + "new_cases": 6670.0, + "new_cases_smoothed": 6910.429, + "total_deaths": 10408.0, + "new_deaths": 198.0, + "new_deaths_smoothed": 291.714, + "total_cases_per_million": 9439.73, + "new_cases_per_million": 112.462, + "new_cases_smoothed_per_million": 116.516, + "total_deaths_per_million": 175.489, + "new_deaths_per_million": 3.338, + "new_deaths_smoothed_per_million": 4.919, + "new_tests": 16911.0, + "total_tests": 3267494.0, + "total_tests_per_thousand": 55.093, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 29828.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 4.316, + "positive_rate": 0.23199999999999998, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 563598.0, + "new_cases": 3740.0, + "new_cases_smoothed": 6676.571, + "total_deaths": 10621.0, + "new_deaths": 213.0, + "new_deaths_smoothed": 297.429, + "total_cases_per_million": 9502.79, + "new_cases_per_million": 63.06, + "new_cases_smoothed_per_million": 112.573, + "total_deaths_per_million": 179.08, + "new_deaths_per_million": 3.591, + "new_deaths_smoothed_per_million": 5.015, + "new_tests": 11483.0, + "total_tests": 3278977.0, + "total_tests_per_thousand": 55.287, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 28682.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 4.296, + "positive_rate": 0.233, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-12", + "total_cases": 566109.0, + "new_cases": 2511.0, + "new_cases_smoothed": 6398.714, + "total_deaths": 10751.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 266.714, + "total_cases_per_million": 9545.127, + "new_cases_per_million": 42.338, + "new_cases_smoothed_per_million": 107.888, + "total_deaths_per_million": 181.272, + "new_deaths_per_million": 2.192, + "new_deaths_smoothed_per_million": 4.497, + "new_tests": 16457.0, + "total_tests": 3295434.0, + "total_tests_per_thousand": 55.564, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 26035.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 4.069, + "positive_rate": 0.24600000000000002, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-13", + "total_cases": 568919.0, + "new_cases": 2810.0, + "new_cases_smoothed": 5577.429, + "total_deaths": 11010.0, + "new_deaths": 259.0, + "new_deaths_smoothed": 244.571, + "total_cases_per_million": 9592.507, + "new_cases_per_million": 47.379, + "new_cases_smoothed_per_million": 94.041, + "total_deaths_per_million": 185.639, + "new_deaths_per_million": 4.367, + "new_deaths_smoothed_per_million": 4.124, + "new_tests": 20063.0, + "total_tests": 3315497.0, + "total_tests_per_thousand": 55.902, + "new_tests_per_thousand": 0.338, + "new_tests_smoothed": 23670.0, + "new_tests_smoothed_per_thousand": 0.399, + "tests_per_case": 4.244, + "positive_rate": 0.23600000000000002, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-14", + "total_cases": 572865.0, + "new_cases": 3946.0, + "new_cases_smoothed": 4954.429, + "total_deaths": 11270.0, + "new_deaths": 260.0, + "new_deaths_smoothed": 238.0, + "total_cases_per_million": 9659.04, + "new_cases_per_million": 66.533, + "new_cases_smoothed_per_million": 83.536, + "total_deaths_per_million": 190.023, + "new_deaths_per_million": 4.384, + "new_deaths_smoothed_per_million": 4.013, + "new_tests": 35614.0, + "total_tests": 3351111.0, + "total_tests_per_thousand": 56.503, + "new_tests_per_thousand": 0.6, + "new_tests_smoothed": 23922.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 4.828, + "positive_rate": 0.207, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-15", + "total_cases": 579140.0, + "new_cases": 6275.0, + "new_cases_smoothed": 4809.143, + "total_deaths": 11556.0, + "new_deaths": 286.0, + "new_deaths_smoothed": 235.286, + "total_cases_per_million": 9764.842, + "new_cases_per_million": 105.802, + "new_cases_smoothed_per_million": 81.087, + "total_deaths_per_million": 194.845, + "new_deaths_per_million": 4.822, + "new_deaths_smoothed_per_million": 3.967, + "new_tests": 26918.0, + "total_tests": 3378029.0, + "total_tests_per_thousand": 56.957, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 22538.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 4.686, + "positive_rate": 0.213, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-16", + "total_cases": 583653.0, + "new_cases": 4513.0, + "new_cases_smoothed": 4352.143, + "total_deaths": 11677.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 209.571, + "total_cases_per_million": 9840.936, + "new_cases_per_million": 76.093, + "new_cases_smoothed_per_million": 73.381, + "total_deaths_per_million": 196.885, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 3.534, + "new_tests": 22609.0, + "total_tests": 3400638.0, + "total_tests_per_thousand": 57.338, + "new_tests_per_thousand": 0.381, + "new_tests_smoothed": 21436.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 4.925, + "positive_rate": 0.203, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-17", + "total_cases": 587345.0, + "new_cases": 3692.0, + "new_cases_smoothed": 3926.714, + "total_deaths": 11839.0, + "new_deaths": 162.0, + "new_deaths_smoothed": 204.429, + "total_cases_per_million": 9903.186, + "new_cases_per_million": 62.251, + "new_cases_smoothed_per_million": 66.208, + "total_deaths_per_million": 199.617, + "new_deaths_per_million": 2.731, + "new_deaths_smoothed_per_million": 3.447, + "new_tests": 15032.0, + "total_tests": 3415670.0, + "total_tests_per_thousand": 57.591, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 21168.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 5.391, + "positive_rate": 0.18600000000000003, + "tests_units": "people tested", + "stringency_index": 80.56 + }, + { + "date": "2020-08-18", + "total_cases": 589886.0, + "new_cases": 2541.0, + "new_cases_smoothed": 3755.429, + "total_deaths": 11982.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 194.429, + "total_cases_per_million": 9946.03, + "new_cases_per_million": 42.844, + "new_cases_smoothed_per_million": 63.32, + "total_deaths_per_million": 202.028, + "new_deaths_per_million": 2.411, + "new_deaths_smoothed_per_million": 3.278, + "new_tests": 14677.0, + "total_tests": 3430347.0, + "total_tests_per_thousand": 57.839, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 21624.0, + "new_tests_smoothed_per_thousand": 0.365, + "tests_per_case": 5.757999999999999, + "positive_rate": 0.174, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-19", + "total_cases": 592144.0, + "new_cases": 2258.0, + "new_cases_smoothed": 3719.286, + "total_deaths": 12264.0, + "new_deaths": 282.0, + "new_deaths_smoothed": 216.143, + "total_cases_per_million": 9984.102, + "new_cases_per_million": 38.072, + "new_cases_smoothed_per_million": 62.711, + "total_deaths_per_million": 206.783, + "new_deaths_per_million": 4.755, + "new_deaths_smoothed_per_million": 3.644, + "new_tests": 25324.0, + "total_tests": 3455671.0, + "total_tests_per_thousand": 58.266, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 22891.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 6.155, + "positive_rate": 0.162, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 596060.0, + "new_cases": 3916.0, + "new_cases_smoothed": 3877.286, + "total_deaths": 12423.0, + "new_deaths": 159.0, + "new_deaths_smoothed": 201.857, + "total_cases_per_million": 10050.129, + "new_cases_per_million": 66.027, + "new_cases_smoothed_per_million": 65.375, + "total_deaths_per_million": 209.463, + "new_deaths_per_million": 2.681, + "new_deaths_smoothed_per_million": 3.404, + "new_tests": 24612.0, + "total_tests": 3480283.0, + "total_tests_per_thousand": 58.681, + "new_tests_per_thousand": 0.415, + "new_tests_smoothed": 23541.0, + "new_tests_smoothed_per_thousand": 0.397, + "tests_per_case": 6.072, + "positive_rate": 0.165, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 599940.0, + "new_cases": 3880.0, + "new_cases_smoothed": 3867.857, + "total_deaths": 12618.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 192.571, + "total_cases_per_million": 10115.55, + "new_cases_per_million": 65.42, + "new_cases_smoothed_per_million": 65.216, + "total_deaths_per_million": 212.751, + "new_deaths_per_million": 3.288, + "new_deaths_smoothed_per_million": 3.247, + "new_tests": 24224.0, + "total_tests": 3504507.0, + "total_tests_per_thousand": 59.089, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 21914.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 5.666, + "positive_rate": 0.177, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 603338.0, + "new_cases": 3398.0, + "new_cases_smoothed": 3456.857, + "total_deaths": 12843.0, + "new_deaths": 225.0, + "new_deaths_smoothed": 183.857, + "total_cases_per_million": 10172.843, + "new_cases_per_million": 57.293, + "new_cases_smoothed_per_million": 58.286, + "total_deaths_per_million": 216.545, + "new_deaths_per_million": 3.794, + "new_deaths_smoothed_per_million": 3.1, + "new_tests": 30560.0, + "total_tests": 3535067.0, + "total_tests_per_thousand": 59.605, + "new_tests_per_thousand": 0.515, + "new_tests_smoothed": 22434.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 6.49, + "positive_rate": 0.154, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 607045.0, + "new_cases": 3707.0, + "new_cases_smoothed": 3341.714, + "total_deaths": 12987.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 187.143, + "total_cases_per_million": 10235.347, + "new_cases_per_million": 62.503, + "new_cases_smoothed_per_million": 56.344, + "total_deaths_per_million": 218.973, + "new_deaths_per_million": 2.428, + "new_deaths_smoothed_per_million": 3.155, + "new_tests": 18358.0, + "total_tests": 3553425.0, + "total_tests_per_thousand": 59.914, + "new_tests_per_thousand": 0.31, + "new_tests_smoothed": 21827.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 6.532, + "positive_rate": 0.153, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 609773.0, + "new_cases": 2728.0, + "new_cases_smoothed": 3204.0, + "total_deaths": 13059.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 174.286, + "total_cases_per_million": 10281.343, + "new_cases_per_million": 45.997, + "new_cases_smoothed_per_million": 54.022, + "total_deaths_per_million": 220.187, + "new_deaths_per_million": 1.214, + "new_deaths_smoothed_per_million": 2.939, + "new_tests": 10640.0, + "total_tests": 3564065.0, + "total_tests_per_thousand": 60.093, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 21199.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 6.6160000000000005, + "positive_rate": 0.151, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 611450.0, + "new_cases": 1677.0, + "new_cases_smoothed": 3080.571, + "total_deaths": 13159.0, + "new_deaths": 100.0, + "new_deaths_smoothed": 168.143, + "total_cases_per_million": 10309.619, + "new_cases_per_million": 28.276, + "new_cases_smoothed_per_million": 51.941, + "total_deaths_per_million": 221.873, + "new_deaths_per_million": 1.686, + "new_deaths_smoothed_per_million": 2.835, + "new_tests": 14771.0, + "total_tests": 3578836.0, + "total_tests_per_thousand": 60.343, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 21213.0, + "new_tests_smoothed_per_thousand": 0.358, + "tests_per_case": 6.886, + "positive_rate": 0.145, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 613017.0, + "new_cases": 1567.0, + "new_cases_smoothed": 2981.857, + "total_deaths": 13308.0, + "new_deaths": 149.0, + "new_deaths_smoothed": 149.143, + "total_cases_per_million": 10336.04, + "new_cases_per_million": 26.421, + "new_cases_smoothed_per_million": 50.277, + "total_deaths_per_million": 224.385, + "new_deaths_per_million": 2.512, + "new_deaths_smoothed_per_million": 2.515, + "new_tests": 20137.0, + "total_tests": 3598973.0, + "total_tests_per_thousand": 60.682, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 20472.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 6.8660000000000005, + "positive_rate": 0.146, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 615701.0, + "new_cases": 2684.0, + "new_cases_smoothed": 2805.857, + "total_deaths": 13502.0, + "new_deaths": 194.0, + "new_deaths_smoothed": 154.143, + "total_cases_per_million": 10381.295, + "new_cases_per_million": 45.255, + "new_cases_smoothed_per_million": 47.309, + "total_deaths_per_million": 227.656, + "new_deaths_per_million": 3.271, + "new_deaths_smoothed_per_million": 2.599, + "new_tests": 19009.0, + "total_tests": 3617982.0, + "total_tests_per_thousand": 61.003, + "new_tests_per_thousand": 0.321, + "new_tests_smoothed": 19671.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 7.011, + "positive_rate": 0.14300000000000002, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-28", + "total_cases": 618286.0, + "new_cases": 2585.0, + "new_cases_smoothed": 2620.857, + "total_deaths": 13628.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 144.286, + "total_cases_per_million": 10424.88, + "new_cases_per_million": 43.586, + "new_cases_smoothed_per_million": 44.19, + "total_deaths_per_million": 229.781, + "new_deaths_per_million": 2.124, + "new_deaths_smoothed_per_million": 2.433, + "new_tests": 14329.0, + "total_tests": 3632311.0, + "total_tests_per_thousand": 61.244, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 18258.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 6.966, + "positive_rate": 0.14400000000000002, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-29", + "total_cases": 620123.0, + "new_cases": 1837.0, + "new_cases_smoothed": 2397.857, + "total_deaths": 13743.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 128.571, + "total_cases_per_million": 10455.854, + "new_cases_per_million": 30.974, + "new_cases_smoothed_per_million": 40.43, + "total_deaths_per_million": 231.72, + "new_deaths_per_million": 1.939, + "new_deaths_smoothed_per_million": 2.168, + "new_tests": 20659.0, + "total_tests": 3652970.0, + "total_tests_per_thousand": 61.592, + "new_tests_per_thousand": 0.348, + "new_tests_smoothed": 16843.0, + "new_tests_smoothed_per_thousand": 0.284, + "tests_per_case": 7.024, + "positive_rate": 0.142, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-30", + "total_cases": 622551.0, + "new_cases": 2428.0, + "new_cases_smoothed": 2215.143, + "total_deaths": 13981.0, + "new_deaths": 238.0, + "new_deaths_smoothed": 142.0, + "total_cases_per_million": 10496.792, + "new_cases_per_million": 40.938, + "new_cases_smoothed_per_million": 37.349, + "total_deaths_per_million": 235.733, + "new_deaths_per_million": 4.013, + "new_deaths_smoothed_per_million": 2.394, + "new_tests": 21902.0, + "total_tests": 3674872.0, + "total_tests_per_thousand": 61.962, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 17350.0, + "new_tests_smoothed_per_thousand": 0.293, + "tests_per_case": 7.832000000000001, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-08-31", + "total_cases": 625056.0, + "new_cases": 2505.0, + "new_cases_smoothed": 2183.286, + "total_deaths": 14028.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 138.429, + "total_cases_per_million": 10539.029, + "new_cases_per_million": 42.237, + "new_cases_smoothed_per_million": 36.812, + "total_deaths_per_million": 236.525, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 2.334, + "new_tests": 18849.0, + "total_tests": 3693721.0, + "total_tests_per_thousand": 62.28, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 18522.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 8.484, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-09-01", + "total_cases": 627041.0, + "new_cases": 1985.0, + "new_cases_smoothed": 2227.286, + "total_deaths": 14149.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 141.429, + "total_cases_per_million": 10572.498, + "new_cases_per_million": 33.469, + "new_cases_smoothed_per_million": 37.554, + "total_deaths_per_million": 238.565, + "new_deaths_per_million": 2.04, + "new_deaths_smoothed_per_million": 2.385, + "new_tests": 11687.0, + "total_tests": 3705408.0, + "total_tests_per_thousand": 62.477, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 18082.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 8.118, + "positive_rate": 0.12300000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-09-02", + "total_cases": 628259.0, + "new_cases": 1218.0, + "new_cases_smoothed": 2177.429, + "total_deaths": 14263.0, + "new_deaths": 114.0, + "new_deaths_smoothed": 136.429, + "total_cases_per_million": 10593.035, + "new_cases_per_million": 20.537, + "new_cases_smoothed_per_million": 36.713, + "total_deaths_per_million": 240.488, + "new_deaths_per_million": 1.922, + "new_deaths_smoothed_per_million": 2.3, + "new_tests": 21313.0, + "total_tests": 3726721.0, + "total_tests_per_thousand": 62.836, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 18250.0, + "new_tests_smoothed_per_thousand": 0.308, + "tests_per_case": 8.381, + "positive_rate": 0.11900000000000001, + "tests_units": "people tested", + "stringency_index": 77.78 + }, + { + "date": "2020-09-03", + "total_cases": 630595.0, + "new_cases": 2336.0, + "new_cases_smoothed": 2127.714, + "total_deaths": 14389.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 126.714, + "total_cases_per_million": 10632.422, + "new_cases_per_million": 39.387, + "new_cases_smoothed_per_million": 35.875, + "total_deaths_per_million": 242.612, + "new_deaths_per_million": 2.124, + "new_deaths_smoothed_per_million": 2.137, + "stringency_index": 77.78 + }, + { + "date": "2020-09-04", + "total_cases": 633015.0, + "new_cases": 2420.0, + "new_cases_smoothed": 2104.143, + "total_deaths": 14563.0, + "new_deaths": 174.0, + "new_deaths_smoothed": 133.571, + "total_cases_per_million": 10673.225, + "new_cases_per_million": 40.803, + "new_cases_smoothed_per_million": 35.478, + "total_deaths_per_million": 245.546, + "new_deaths_per_million": 2.934, + "new_deaths_smoothed_per_million": 2.252 + }, + { + "date": "2020-09-05", + "total_cases": 635078.0, + "new_cases": 2063.0, + "new_cases_smoothed": 2136.429, + "total_deaths": 14678.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 133.571, + "total_cases_per_million": 10708.009, + "new_cases_per_million": 34.784, + "new_cases_smoothed_per_million": 36.022, + "total_deaths_per_million": 247.485, + "new_deaths_per_million": 1.939, + "new_deaths_smoothed_per_million": 2.252 + } + ] + }, + "KOR": { + "continent": "Asia", + "location": "South Korea", + "population": 51269183.0, + "population_density": 527.967, + "median_age": 43.4, + "aged_65_older": 13.914, + "aged_70_older": 8.622, + "gdp_per_capita": 35938.374, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 85.998, + "diabetes_prevalence": 6.8, + "female_smokers": 6.2, + "male_smokers": 40.9, + "hospital_beds_per_thousand": 12.27, + "life_expectancy": 83.03, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 11.0, + "total_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 16.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 25.0, + "total_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.059, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 48.0, + "total_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 57.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 130.0, + "total_tests": 187.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_per_case": 58.333, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 65.333, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.078, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 244.0, + "total_tests_per_thousand": 0.005, + "new_tests_smoothed": 32.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 74.667, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 7.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.137, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 56.0, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 12.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.234, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 371.0, + "total_tests_per_thousand": 0.007, + "new_tests_smoothed": 48.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 33.6, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-02", + "total_cases": 15.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.293, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 58.0, + "total_tests": 429.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 54.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 31.5, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-02-03", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 66.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 42.0, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-04", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.312, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 607.0, + "total_tests_per_thousand": 0.012, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 35.0, + "positive_rate": 0.028999999999999998, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-02-05", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.351, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 107.0, + "total_tests": 714.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 71.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 35.5, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-02-06", + "total_cases": 23.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.449, + "new_cases_per_million": 0.098, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 171.0, + "total_tests": 885.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 92.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 33.895, + "positive_rate": 0.03, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-07", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.468, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 245.0, + "total_tests": 1130.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 118.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 48.588, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.468, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 571.0, + "total_tests": 1701.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 110.833, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-09", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.488, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 639.0, + "total_tests": 2340.0, + "total_tests_per_thousand": 0.046, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 273.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 191.1, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-10", + "total_cases": 27.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.527, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 436.0, + "total_tests": 2776.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 323.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 188.417, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-11", + "total_cases": 28.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.546, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 853.0, + "total_tests": 3629.0, + "total_tests_per_thousand": 0.071, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 432.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-12", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1445.0, + "total_tests": 5074.0, + "total_tests_per_thousand": 0.099, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 623.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 436.1, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-13", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 723.0, + "total_tests": 5797.0, + "total_tests_per_thousand": 0.113, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 702.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 982.8, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-14", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1057.0, + "total_tests": 6854.0, + "total_tests_per_thousand": 0.134, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 818.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 1431.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-15", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 665.0, + "total_tests": 7519.0, + "total_tests_per_thousand": 0.147, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 1454.25, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-16", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.566, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.011, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 400.0, + "total_tests": 7919.0, + "total_tests_per_thousand": 0.154, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 797.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 1394.75, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-17", + "total_cases": 30.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.585, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 252.0, + "total_tests": 8171.0, + "total_tests_per_thousand": 0.159, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 771.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 1799.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-18", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.605, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1094.0, + "total_tests": 9265.0, + "total_tests_per_thousand": 0.181, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 805.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 1878.3329999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-19", + "total_cases": 46.0, + "new_cases": 15.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.897, + "new_cases_per_million": 0.293, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1146.0, + "total_tests": 10411.0, + "total_tests_per_thousand": 0.203, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 762.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 296.33299999999997, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-20", + "total_cases": 80.0, + "new_cases": 34.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.56, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1750.0, + "total_tests": 12161.0, + "total_tests_per_thousand": 0.237, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 909.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 122.365, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 31.48 + }, + { + "date": "2020-02-21", + "total_cases": 155.0, + "new_cases": 75.0, + "new_cases_smoothed": 18.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.023, + "new_cases_per_million": 1.463, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.02, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 2655.0, + "total_tests": 14816.0, + "total_tests_per_thousand": 0.289, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1137.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 62.669, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-02-22", + "total_cases": 345.0, + "new_cases": 190.0, + "new_cases_smoothed": 45.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.729, + "new_cases_per_million": 3.706, + "new_cases_smoothed_per_million": 0.883, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 4805.0, + "total_tests": 19621.0, + "total_tests_per_thousand": 0.383, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 1729.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 38.18, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 45.37 + }, + { + "date": "2020-02-23", + "total_cases": 601.0, + "new_cases": 256.0, + "new_cases_smoothed": 81.714, + "total_deaths": 5.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 11.722, + "new_cases_per_million": 4.993, + "new_cases_smoothed_per_million": 1.594, + "total_deaths_per_million": 0.098, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 3012.0, + "total_tests": 22633.0, + "total_tests_per_thousand": 0.441, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2102.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 25.724, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 50.0 + }, + { + "date": "2020-02-24", + "total_cases": 762.0, + "new_cases": 161.0, + "new_cases_smoothed": 104.571, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 14.863, + "new_cases_per_million": 3.14, + "new_cases_smoothed_per_million": 2.04, + "total_deaths_per_million": 0.137, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 5982.0, + "total_tests": 28615.0, + "total_tests_per_thousand": 0.558, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 2921.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 27.933000000000003, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-02-25", + "total_cases": 892.0, + "new_cases": 130.0, + "new_cases_smoothed": 123.0, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 17.398, + "new_cases_per_million": 2.536, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 0.156, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 8101.0, + "total_tests": 36716.0, + "total_tests_per_thousand": 0.716, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 3922.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 31.886, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-02-26", + "total_cases": 1146.0, + "new_cases": 254.0, + "new_cases_smoothed": 157.143, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 22.353, + "new_cases_per_million": 4.954, + "new_cases_smoothed_per_million": 3.065, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 9411.0, + "total_tests": 46127.0, + "total_tests_per_thousand": 0.9, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 5102.0, + "new_tests_smoothed_per_thousand": 0.1, + "tests_per_case": 32.467, + "positive_rate": 0.031, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-02-27", + "total_cases": 1595.0, + "new_cases": 449.0, + "new_cases_smoothed": 216.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 31.11, + "new_cases_per_million": 8.758, + "new_cases_smoothed_per_million": 4.221, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 11863.0, + "total_tests": 57990.0, + "total_tests_per_thousand": 1.131, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 6547.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 30.25, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-02-28", + "total_cases": 2022.0, + "new_cases": 427.0, + "new_cases_smoothed": 266.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 39.439, + "new_cases_per_million": 8.329, + "new_cases_smoothed_per_million": 5.202, + "total_deaths_per_million": 0.254, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 12950.0, + "total_tests": 70940.0, + "total_tests_per_thousand": 1.384, + "new_tests_per_thousand": 0.253, + "new_tests_smoothed": 8018.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 30.061999999999998, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-02-29", + "total_cases": 2931.0, + "new_cases": 909.0, + "new_cases_smoothed": 369.429, + "total_deaths": 16.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 57.169, + "new_cases_per_million": 17.73, + "new_cases_smoothed_per_million": 7.206, + "total_deaths_per_million": 0.312, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 14753.0, + "total_tests": 85693.0, + "total_tests_per_thousand": 1.671, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 9439.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 25.55, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-01", + "total_cases": 3526.0, + "new_cases": 595.0, + "new_cases_smoothed": 417.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 68.774, + "new_cases_per_million": 11.605, + "new_cases_smoothed_per_million": 8.15, + "total_deaths_per_million": 0.332, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 11292.0, + "total_tests": 96985.0, + "total_tests_per_thousand": 1.892, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 10622.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 25.42, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-02", + "total_cases": 4212.0, + "new_cases": 686.0, + "new_cases_smoothed": 492.857, + "total_deaths": 22.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 82.155, + "new_cases_per_million": 13.38, + "new_cases_smoothed_per_million": 9.613, + "total_deaths_per_million": 0.429, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 12606.0, + "total_tests": 109591.0, + "total_tests_per_thousand": 2.138, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 11568.0, + "new_tests_smoothed_per_thousand": 0.226, + "tests_per_case": 23.471, + "positive_rate": 0.043, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-03", + "total_cases": 4812.0, + "new_cases": 600.0, + "new_cases_smoothed": 560.0, + "total_deaths": 28.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 93.858, + "new_cases_per_million": 11.703, + "new_cases_smoothed_per_million": 10.923, + "total_deaths_per_million": 0.546, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.056, + "new_tests": 16260.0, + "total_tests": 125851.0, + "total_tests_per_thousand": 2.455, + "new_tests_per_thousand": 0.317, + "new_tests_smoothed": 12734.0, + "new_tests_smoothed_per_thousand": 0.248, + "tests_per_case": 22.739, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-04", + "total_cases": 5328.0, + "new_cases": 516.0, + "new_cases_smoothed": 597.429, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 103.922, + "new_cases_per_million": 10.065, + "new_cases_smoothed_per_million": 11.653, + "total_deaths_per_million": 0.624, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.059, + "new_tests": 10856.0, + "total_tests": 136707.0, + "total_tests_per_thousand": 2.666, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 12940.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 21.659000000000002, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-05", + "total_cases": 5766.0, + "new_cases": 438.0, + "new_cases_smoothed": 595.857, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 112.465, + "new_cases_per_million": 8.543, + "new_cases_smoothed_per_million": 11.622, + "total_deaths_per_million": 0.683, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.064, + "new_tests": 9834.0, + "total_tests": 146541.0, + "total_tests_per_thousand": 2.858, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 12650.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 21.23, + "positive_rate": 0.047, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-06", + "total_cases": 6284.0, + "new_cases": 518.0, + "new_cases_smoothed": 608.857, + "total_deaths": 42.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 122.569, + "new_cases_per_million": 10.104, + "new_cases_smoothed_per_million": 11.876, + "total_deaths_per_million": 0.819, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 18199.0, + "total_tests": 164740.0, + "total_tests_per_thousand": 3.213, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 13400.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 22.008000000000003, + "positive_rate": 0.045, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-07", + "total_cases": 6767.0, + "new_cases": 483.0, + "new_cases_smoothed": 548.0, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 131.99, + "new_cases_per_million": 9.421, + "new_cases_smoothed_per_million": 10.689, + "total_deaths_per_million": 0.858, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 13449.0, + "total_tests": 178189.0, + "total_tests_per_thousand": 3.476, + "new_tests_per_thousand": 0.262, + "new_tests_smoothed": 13214.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 24.113000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-08", + "total_cases": 7134.0, + "new_cases": 367.0, + "new_cases_smoothed": 515.429, + "total_deaths": 50.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 139.148, + "new_cases_per_million": 7.158, + "new_cases_smoothed_per_million": 10.053, + "total_deaths_per_million": 0.975, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 10329.0, + "total_tests": 188518.0, + "total_tests_per_thousand": 3.677, + "new_tests_per_thousand": 0.201, + "new_tests_smoothed": 13076.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 25.369, + "positive_rate": 0.039, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-09", + "total_cases": 7382.0, + "new_cases": 248.0, + "new_cases_smoothed": 452.857, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 143.985, + "new_cases_per_million": 4.837, + "new_cases_smoothed_per_million": 8.833, + "total_deaths_per_million": 0.995, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 8100.0, + "total_tests": 196618.0, + "total_tests_per_thousand": 3.835, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 12432.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 27.451999999999998, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-10", + "total_cases": 7513.0, + "new_cases": 131.0, + "new_cases_smoothed": 385.857, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 146.54, + "new_cases_per_million": 2.555, + "new_cases_smoothed_per_million": 7.526, + "total_deaths_per_million": 1.053, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 13526.0, + "total_tests": 210144.0, + "total_tests_per_thousand": 4.099, + "new_tests_per_thousand": 0.264, + "new_tests_smoothed": 12042.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 31.208000000000002, + "positive_rate": 0.032, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-11", + "total_cases": 7755.0, + "new_cases": 242.0, + "new_cases_smoothed": 346.714, + "total_deaths": 60.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 151.26, + "new_cases_per_million": 4.72, + "new_cases_smoothed_per_million": 6.763, + "total_deaths_per_million": 1.17, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 12251.0, + "total_tests": 222395.0, + "total_tests_per_thousand": 4.338, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 12241.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 35.306, + "positive_rate": 0.027999999999999997, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-12", + "total_cases": 7869.0, + "new_cases": 114.0, + "new_cases_smoothed": 300.429, + "total_deaths": 66.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 153.484, + "new_cases_per_million": 2.224, + "new_cases_smoothed_per_million": 5.86, + "total_deaths_per_million": 1.287, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.086, + "new_tests_smoothed": 11430.0, + "new_tests_smoothed_per_thousand": 0.223, + "tests_per_case": 38.046, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-13", + "total_cases": 7979.0, + "new_cases": 110.0, + "new_cases_smoothed": 242.143, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 155.63, + "new_cases_per_million": 2.146, + "new_cases_smoothed_per_million": 4.723, + "total_deaths_per_million": 1.307, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.07, + "total_tests": 230707.0, + "total_tests_per_thousand": 4.5, + "new_tests_smoothed": 9424.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 38.919000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-14", + "total_cases": 8086.0, + "new_cases": 107.0, + "new_cases_smoothed": 188.429, + "total_deaths": 72.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 157.717, + "new_cases_per_million": 2.087, + "new_cases_smoothed_per_million": 3.675, + "total_deaths_per_million": 1.404, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.078, + "new_tests_smoothed": 8875.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 47.1, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-15", + "total_cases": 8162.0, + "new_cases": 76.0, + "new_cases_smoothed": 146.857, + "total_deaths": 75.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 159.199, + "new_cases_per_million": 1.482, + "new_cases_smoothed_per_million": 2.864, + "total_deaths_per_million": 1.463, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 8772.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 59.732, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-16", + "total_cases": 8236.0, + "new_cases": 74.0, + "new_cases_smoothed": 122.0, + "total_deaths": 75.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 160.642, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 2.38, + "total_deaths_per_million": 1.463, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "total_tests": 259533.0, + "total_tests_per_thousand": 5.062, + "new_tests_smoothed": 8988.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 73.672, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-17", + "total_cases": 8320.0, + "new_cases": 84.0, + "new_cases_smoothed": 115.286, + "total_deaths": 81.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 162.281, + "new_cases_per_million": 1.638, + "new_cases_smoothed_per_million": 2.249, + "total_deaths_per_million": 1.58, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.075, + "new_tests_smoothed": 8560.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 74.25, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-18", + "total_cases": 8413.0, + "new_cases": 93.0, + "new_cases_smoothed": 94.0, + "total_deaths": 86.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 164.095, + "new_cases_per_million": 1.814, + "new_cases_smoothed_per_million": 1.833, + "total_deaths_per_million": 1.677, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.072, + "new_tests_smoothed": 8314.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 88.447, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 8565.0, + "new_cases": 152.0, + "new_cases_smoothed": 99.429, + "total_deaths": 91.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 167.059, + "new_cases_per_million": 2.965, + "new_cases_smoothed_per_million": 1.939, + "total_deaths_per_million": 1.775, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.07, + "total_tests": 291120.0, + "total_tests_per_thousand": 5.678, + "new_tests_smoothed": 9224.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 92.77, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 8652.0, + "new_cases": 87.0, + "new_cases_smoothed": 96.143, + "total_deaths": 100.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 168.756, + "new_cases_per_million": 1.697, + "new_cases_smoothed_per_million": 1.875, + "total_deaths_per_million": 1.95, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 10019.0, + "total_tests": 301139.0, + "total_tests_per_thousand": 5.874, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 10062.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 104.65700000000001, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-21", + "total_cases": 8799.0, + "new_cases": 147.0, + "new_cases_smoothed": 101.857, + "total_deaths": 103.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 171.624, + "new_cases_per_million": 2.867, + "new_cases_smoothed_per_million": 1.987, + "total_deaths_per_million": 2.009, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 10666.0, + "total_tests": 311805.0, + "total_tests_per_thousand": 6.082, + "new_tests_per_thousand": 0.208, + "new_tests_smoothed": 10213.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 100.26799999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 69.44 + }, + { + "date": "2020-03-22", + "total_cases": 8897.0, + "new_cases": 98.0, + "new_cases_smoothed": 105.0, + "total_deaths": 104.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 173.535, + "new_cases_per_million": 1.911, + "new_cases_smoothed_per_million": 2.048, + "total_deaths_per_million": 2.029, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 5435.0, + "total_tests": 317240.0, + "total_tests_per_thousand": 6.188, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 9617.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 91.59, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-23", + "total_cases": 8961.0, + "new_cases": 64.0, + "new_cases_smoothed": 103.571, + "total_deaths": 113.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 174.783, + "new_cases_per_million": 1.248, + "new_cases_smoothed_per_million": 2.02, + "total_deaths_per_million": 2.204, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 7168.0, + "total_tests": 324408.0, + "total_tests_per_thousand": 6.328, + "new_tests_per_thousand": 0.14, + "new_tests_smoothed": 9268.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 89.484, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-24", + "total_cases": 9037.0, + "new_cases": 76.0, + "new_cases_smoothed": 102.429, + "total_deaths": 120.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 176.266, + "new_cases_per_million": 1.482, + "new_cases_smoothed_per_million": 1.998, + "total_deaths_per_million": 2.341, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 8734.0, + "total_tests": 333142.0, + "total_tests_per_thousand": 6.498, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 9011.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 87.97399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-25", + "total_cases": 9137.0, + "new_cases": 100.0, + "new_cases_smoothed": 103.429, + "total_deaths": 126.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 178.216, + "new_cases_per_million": 1.95, + "new_cases_smoothed_per_million": 2.017, + "total_deaths_per_million": 2.458, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 10476.0, + "total_tests": 343618.0, + "total_tests_per_thousand": 6.702, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 9004.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 87.055, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-26", + "total_cases": 9241.0, + "new_cases": 104.0, + "new_cases_smoothed": 96.571, + "total_deaths": 131.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 180.245, + "new_cases_per_million": 2.029, + "new_cases_smoothed_per_million": 1.884, + "total_deaths_per_million": 2.555, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.111, + "new_tests": 6955.0, + "total_tests": 350573.0, + "total_tests_per_thousand": 6.838, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 8493.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 87.945, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-27", + "total_cases": 9332.0, + "new_cases": 91.0, + "new_cases_smoothed": 97.143, + "total_deaths": 139.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 182.02, + "new_cases_per_million": 1.775, + "new_cases_smoothed_per_million": 1.895, + "total_deaths_per_million": 2.711, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 11169.0, + "total_tests": 361742.0, + "total_tests_per_thousand": 7.056, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 8658.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 89.126, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-28", + "total_cases": 9478.0, + "new_cases": 146.0, + "new_cases_smoothed": 97.0, + "total_deaths": 144.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 184.867, + "new_cases_per_million": 2.848, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 2.809, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 9619.0, + "total_tests": 371361.0, + "total_tests_per_thousand": 7.243, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 8508.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 87.711, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-29", + "total_cases": 9583.0, + "new_cases": 105.0, + "new_cases_smoothed": 98.0, + "total_deaths": 152.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 186.915, + "new_cases_per_million": 2.048, + "new_cases_smoothed_per_million": 1.911, + "total_deaths_per_million": 2.965, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.134, + "new_tests_smoothed": 8467.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 86.398, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-30", + "total_cases": 9661.0, + "new_cases": 78.0, + "new_cases_smoothed": 100.0, + "total_deaths": 158.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 188.437, + "new_cases_per_million": 1.521, + "new_cases_smoothed_per_million": 1.95, + "total_deaths_per_million": 3.082, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.125, + "total_tests": 381663.0, + "total_tests_per_thousand": 7.444, + "new_tests_smoothed": 8179.0, + "new_tests_smoothed_per_thousand": 0.16, + "tests_per_case": 81.79, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-03-31", + "total_cases": 9786.0, + "new_cases": 125.0, + "new_cases_smoothed": 107.0, + "total_deaths": 163.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 190.875, + "new_cases_per_million": 2.438, + "new_cases_smoothed_per_million": 2.087, + "total_deaths_per_million": 3.179, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 12009.0, + "total_tests": 393672.0, + "total_tests_per_thousand": 7.679, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 8647.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 80.813, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-04-01", + "total_cases": 9786.0, + "new_cases": 0.0, + "new_cases_smoothed": 92.714, + "total_deaths": 163.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 190.875, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.808, + "total_deaths_per_million": 3.179, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 11290.0, + "total_tests": 404962.0, + "total_tests_per_thousand": 7.899, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 8763.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 94.516, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-04-02", + "total_cases": 9976.0, + "new_cases": 190.0, + "new_cases_smoothed": 105.0, + "total_deaths": 169.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 194.581, + "new_cases_per_million": 3.706, + "new_cases_smoothed_per_million": 2.048, + "total_deaths_per_million": 3.296, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 8896.0, + "total_tests": 413858.0, + "total_tests_per_thousand": 8.072, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 9041.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 86.105, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-04-03", + "total_cases": 10062.0, + "new_cases": 86.0, + "new_cases_smoothed": 104.286, + "total_deaths": 174.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 196.258, + "new_cases_per_million": 1.677, + "new_cases_smoothed_per_million": 2.034, + "total_deaths_per_million": 3.394, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 10507.0, + "total_tests": 424365.0, + "total_tests_per_thousand": 8.277, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 8946.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 85.78399999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 75.93 + }, + { + "date": "2020-04-04", + "total_cases": 10156.0, + "new_cases": 94.0, + "new_cases_smoothed": 96.857, + "total_deaths": 177.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 198.092, + "new_cases_per_million": 1.833, + "new_cases_smoothed_per_million": 1.889, + "total_deaths_per_million": 3.452, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.092, + "new_tests_smoothed": 8808.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 90.93799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-04-05", + "total_cases": 10237.0, + "new_cases": 81.0, + "new_cases_smoothed": 93.429, + "total_deaths": 183.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 199.672, + "new_cases_per_million": 1.58, + "new_cases_smoothed_per_million": 1.822, + "total_deaths_per_million": 3.569, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.086, + "total_tests": 441662.0, + "total_tests_per_thousand": 8.615, + "new_tests_smoothed": 9307.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 99.616, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 78.7 + }, + { + "date": "2020-04-06", + "total_cases": 10284.0, + "new_cases": 47.0, + "new_cases_smoothed": 89.0, + "total_deaths": 186.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 200.588, + "new_cases_per_million": 0.917, + "new_cases_smoothed_per_million": 1.736, + "total_deaths_per_million": 3.628, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.078, + "new_tests": 5847.0, + "total_tests": 447509.0, + "total_tests_per_thousand": 8.729, + "new_tests_per_thousand": 0.114, + "new_tests_smoothed": 9407.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 105.697, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 10331.0, + "new_cases": 47.0, + "new_cases_smoothed": 77.857, + "total_deaths": 192.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 201.505, + "new_cases_per_million": 0.917, + "new_cases_smoothed_per_million": 1.519, + "total_deaths_per_million": 3.745, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.081, + "new_tests": 9145.0, + "total_tests": 456654.0, + "total_tests_per_thousand": 8.907, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 8997.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 115.55799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 10384.0, + "new_cases": 53.0, + "new_cases_smoothed": 85.429, + "total_deaths": 200.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 202.539, + "new_cases_per_million": 1.034, + "new_cases_smoothed_per_million": 1.666, + "total_deaths_per_million": 3.901, + "new_deaths_per_million": 0.156, + "new_deaths_smoothed_per_million": 0.103, + "new_tests": 11491.0, + "total_tests": 468145.0, + "total_tests_per_thousand": 9.131, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 9026.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 105.656, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 10423.0, + "new_cases": 39.0, + "new_cases_smoothed": 63.857, + "total_deaths": 204.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 203.3, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 1.246, + "total_deaths_per_million": 3.979, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 11057.0, + "total_tests": 479202.0, + "total_tests_per_thousand": 9.347, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 9335.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 146.186, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 10450.0, + "new_cases": 27.0, + "new_cases_smoothed": 55.429, + "total_deaths": 208.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 203.826, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 1.081, + "total_deaths_per_million": 4.057, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.095, + "new_tests": 8551.0, + "total_tests": 487753.0, + "total_tests_per_thousand": 9.514, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 9055.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 163.363, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 10450.0, + "new_cases": 0.0, + "new_cases_smoothed": 42.0, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 203.826, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 4.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 8656.0, + "total_tests": 496409.0, + "total_tests_per_thousand": 9.682, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 9056.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 215.61900000000003, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 10512.0, + "new_cases": 62.0, + "new_cases_smoothed": 39.286, + "total_deaths": 214.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 205.035, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 4.174, + "new_deaths_per_million": 0.117, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 4424.0, + "total_tests": 500833.0, + "total_tests_per_thousand": 9.769, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 8453.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 215.167, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 10537.0, + "new_cases": 25.0, + "new_cases_smoothed": 36.143, + "total_deaths": 217.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 205.523, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 0.705, + "total_deaths_per_million": 4.233, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 4519.0, + "total_tests": 505352.0, + "total_tests_per_thousand": 9.857, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 8263.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 228.62099999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 10564.0, + "new_cases": 27.0, + "new_cases_smoothed": 33.286, + "total_deaths": 222.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 206.05, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 0.649, + "total_deaths_per_million": 4.33, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.084, + "new_tests": 7435.0, + "total_tests": 512787.0, + "total_tests_per_thousand": 10.002, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 8019.0, + "new_tests_smoothed_per_thousand": 0.156, + "tests_per_case": 240.91400000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 10591.0, + "new_cases": 27.0, + "new_cases_smoothed": 29.571, + "total_deaths": 225.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 206.576, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 4.389, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 6739.0, + "total_tests": 519526.0, + "total_tests_per_thousand": 10.133, + "new_tests_per_thousand": 0.131, + "new_tests_smoothed": 7340.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 248.213, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 10613.0, + "new_cases": 22.0, + "new_cases_smoothed": 27.143, + "total_deaths": 229.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 207.005, + "new_cases_per_million": 0.429, + "new_cases_smoothed_per_million": 0.529, + "total_deaths_per_million": 4.467, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.07, + "new_tests": 4981.0, + "total_tests": 524507.0, + "total_tests_per_thousand": 10.23, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 6472.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 238.442, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 10635.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.429, + "total_deaths": 230.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 207.435, + "new_cases_per_million": 0.429, + "new_cases_smoothed_per_million": 0.515, + "total_deaths_per_million": 4.486, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.061, + "new_tests": 7770.0, + "total_tests": 532277.0, + "total_tests_per_thousand": 10.382, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 6361.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 240.68599999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 10653.0, + "new_cases": 18.0, + "new_cases_smoothed": 29.0, + "total_deaths": 232.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 207.786, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.566, + "total_deaths_per_million": 4.525, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 6166.0, + "new_tests_smoothed_per_thousand": 0.12, + "tests_per_case": 212.62099999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 10661.0, + "new_cases": 8.0, + "new_cases_smoothed": 21.286, + "total_deaths": 234.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 207.942, + "new_cases_per_million": 0.156, + "new_cases_smoothed_per_million": 0.415, + "total_deaths_per_million": 4.564, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.056, + "total_tests": 546866.0, + "total_tests_per_thousand": 10.667, + "new_tests_smoothed": 6576.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 308.94, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 10674.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.571, + "total_deaths": 236.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 208.195, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.382, + "total_deaths_per_million": 4.603, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.053, + "new_tests": 4188.0, + "total_tests": 551054.0, + "total_tests_per_thousand": 10.748, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 6529.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 333.599, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-21", + "total_cases": 10683.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.0, + "total_deaths": 237.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 208.371, + "new_cases_per_million": 0.176, + "new_cases_smoothed_per_million": 0.332, + "total_deaths_per_million": 4.623, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 7239.0, + "total_tests": 558293.0, + "total_tests_per_thousand": 10.889, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 6501.0, + "new_tests_smoothed_per_thousand": 0.127, + "tests_per_case": 382.412, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-22", + "total_cases": 10694.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.714, + "total_deaths": 238.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 208.585, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 4.642, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 7545.0, + "total_tests": 565838.0, + "total_tests_per_thousand": 11.037, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 6616.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 449.631, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-23", + "total_cases": 10702.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.714, + "total_deaths": 240.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 208.741, + "new_cases_per_million": 0.156, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 4.681, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 7994.0, + "total_tests": 573832.0, + "total_tests_per_thousand": 11.193, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 7046.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 554.18, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-24", + "total_cases": 10708.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.429, + "total_deaths": 240.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 208.858, + "new_cases_per_million": 0.117, + "new_cases_smoothed_per_million": 0.203, + "total_deaths_per_million": 4.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 6088.0, + "total_tests": 579920.0, + "total_tests_per_thousand": 11.311, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 6806.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 652.63, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-25", + "total_cases": 10718.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.286, + "total_deaths": 240.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 209.053, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 4.681, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests_smoothed": 6376.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 686.6460000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-26", + "total_cases": 10728.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 242.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 209.249, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 4.72, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.022, + "new_tests_smoothed": 5945.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 621.119, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-27", + "total_cases": 10738.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.143, + "total_deaths": 243.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 209.444, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.178, + "total_deaths_per_million": 4.74, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.02, + "total_tests": 592765.0, + "total_tests_per_thousand": 11.562, + "new_tests_smoothed": 5959.0, + "new_tests_smoothed_per_thousand": 0.116, + "tests_per_case": 651.766, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-28", + "total_cases": 10752.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.857, + "total_deaths": 244.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 209.717, + "new_cases_per_million": 0.273, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 4.759, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 6546.0, + "total_tests": 599311.0, + "total_tests_per_thousand": 11.689, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 5860.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 594.493, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-29", + "total_cases": 10761.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.571, + "total_deaths": 246.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 209.892, + "new_cases_per_million": 0.176, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 4.798, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 6579.0, + "total_tests": 605890.0, + "total_tests_per_thousand": 11.818, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 5722.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 597.821, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-04-30", + "total_cases": 10765.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.0, + "total_deaths": 247.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 209.97, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 4.818, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.02, + "new_tests_smoothed": 5186.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 576.222, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-01", + "total_cases": 10774.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.429, + "total_deaths": 248.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 210.146, + "new_cases_per_million": 0.176, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 4.837, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.022, + "total_tests": 614384.0, + "total_tests_per_thousand": 11.983, + "new_tests_smoothed": 4923.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 522.136, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-02", + "total_cases": 10780.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.857, + "total_deaths": 250.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 210.263, + "new_cases_per_million": 0.117, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 4.876, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 4682.0, + "total_tests": 619066.0, + "total_tests_per_thousand": 12.075, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 4981.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 562.371, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-03", + "total_cases": 10793.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.286, + "total_deaths": 250.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 210.516, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 4.876, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 3319.0, + "total_tests": 622385.0, + "total_tests_per_thousand": 12.14, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 4843.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 521.554, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-04", + "total_cases": 10801.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.0, + "total_deaths": 252.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 210.672, + "new_cases_per_million": 0.156, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 4.915, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3360.0, + "total_tests": 625745.0, + "total_tests_per_thousand": 12.205, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 4711.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 523.444, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-05", + "total_cases": 10804.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.429, + "total_deaths": 254.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 210.731, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 4.954, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.028, + "new_tests": 5634.0, + "total_tests": 631379.0, + "total_tests_per_thousand": 12.315, + "new_tests_per_thousand": 0.11, + "new_tests_smoothed": 4581.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 616.673, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-06", + "total_cases": 10806.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.429, + "total_deaths": 255.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 210.77, + "new_cases_per_million": 0.039, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 4.974, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 3707.0, + "total_tests": 635086.0, + "total_tests_per_thousand": 12.387, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 4171.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 648.822, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-07", + "total_cases": 10810.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 256.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 210.848, + "new_cases_per_million": 0.078, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 4.993, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 5873.0, + "total_tests": 640959.0, + "total_tests_per_thousand": 12.502, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 4403.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 684.9110000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-08", + "total_cases": 10822.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.857, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 211.082, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.134, + "total_deaths_per_million": 4.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5037.0, + "total_tests": 645996.0, + "total_tests_per_thousand": 12.6, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 4516.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 658.5830000000001, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-09", + "total_cases": 10840.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.571, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 211.433, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.167, + "total_deaths_per_million": 4.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 4881.0, + "total_tests": 650877.0, + "total_tests_per_thousand": 12.695, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 4544.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 530.133, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-10", + "total_cases": 10874.0, + "new_cases": 34.0, + "new_cases_smoothed": 11.571, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 212.096, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 4.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 4548.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 393.037, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-11", + "total_cases": 10909.0, + "new_cases": 35.0, + "new_cases_smoothed": 15.429, + "total_deaths": 256.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 212.779, + "new_cases_per_million": 0.683, + "new_cases_smoothed_per_million": 0.301, + "total_deaths_per_million": 4.993, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 657570.0, + "total_tests_per_thousand": 12.826, + "new_tests_smoothed": 4546.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 294.64799999999997, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-12", + "total_cases": 10936.0, + "new_cases": 27.0, + "new_cases_smoothed": 18.857, + "total_deaths": 258.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 213.306, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 0.368, + "total_deaths_per_million": 5.032, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 6990.0, + "total_tests": 664560.0, + "total_tests_per_thousand": 12.962, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 4740.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 251.364, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-13", + "total_cases": 10962.0, + "new_cases": 26.0, + "new_cases_smoothed": 22.286, + "total_deaths": 259.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 213.813, + "new_cases_per_million": 0.507, + "new_cases_smoothed_per_million": 0.435, + "total_deaths_per_million": 5.052, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 11781.0, + "total_tests": 676341.0, + "total_tests_per_thousand": 13.192, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 5894.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 264.474, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-14", + "total_cases": 10991.0, + "new_cases": 29.0, + "new_cases_smoothed": 25.857, + "total_deaths": 260.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 214.378, + "new_cases_per_million": 0.566, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 5.071, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 14421.0, + "total_tests": 690762.0, + "total_tests_per_thousand": 13.473, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 7115.0, + "new_tests_smoothed_per_thousand": 0.139, + "tests_per_case": 275.166, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-15", + "total_cases": 11018.0, + "new_cases": 27.0, + "new_cases_smoothed": 28.0, + "total_deaths": 260.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 214.905, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 5.071, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 16110.0, + "total_tests": 706872.0, + "total_tests_per_thousand": 13.787, + "new_tests_per_thousand": 0.314, + "new_tests_smoothed": 8697.0, + "new_tests_smoothed_per_thousand": 0.17, + "tests_per_case": 310.607, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-16", + "total_cases": 11037.0, + "new_cases": 19.0, + "new_cases_smoothed": 28.143, + "total_deaths": 262.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 215.276, + "new_cases_per_million": 0.371, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 5.11, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests_smoothed": 9651.0, + "new_tests_smoothed_per_thousand": 0.188, + "tests_per_case": 342.92900000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-17", + "total_cases": 11050.0, + "new_cases": 13.0, + "new_cases_smoothed": 25.143, + "total_deaths": 262.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 215.529, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 5.11, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "total_tests": 729993.0, + "total_tests_per_thousand": 14.238, + "new_tests_smoothed": 10824.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 430.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-18", + "total_cases": 11065.0, + "new_cases": 15.0, + "new_cases_smoothed": 22.286, + "total_deaths": 263.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 215.822, + "new_cases_per_million": 0.293, + "new_cases_smoothed_per_million": 0.435, + "total_deaths_per_million": 5.13, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 7125.0, + "total_tests": 737118.0, + "total_tests_per_thousand": 14.377, + "new_tests_per_thousand": 0.139, + "new_tests_smoothed": 11364.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 509.923, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-19", + "total_cases": 11078.0, + "new_cases": 13.0, + "new_cases_smoothed": 20.286, + "total_deaths": 263.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 216.075, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 5.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 11531.0, + "total_tests": 748649.0, + "total_tests_per_thousand": 14.602, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 12013.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 592.19, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 43.52 + }, + { + "date": "2020-05-20", + "total_cases": 11110.0, + "new_cases": 32.0, + "new_cases_smoothed": 21.143, + "total_deaths": 263.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 216.699, + "new_cases_per_million": 0.624, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 5.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 11433.0, + "total_tests": 760082.0, + "total_tests_per_thousand": 14.825, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 11963.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 565.818, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-21", + "total_cases": 11122.0, + "new_cases": 12.0, + "new_cases_smoothed": 18.714, + "total_deaths": 264.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 216.933, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.365, + "total_deaths_per_million": 5.149, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 10513.0, + "total_tests": 770595.0, + "total_tests_per_thousand": 15.03, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 11405.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 609.427, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-22", + "total_cases": 11142.0, + "new_cases": 20.0, + "new_cases_smoothed": 17.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 217.324, + "new_cases_per_million": 0.39, + "new_cases_smoothed_per_million": 0.346, + "total_deaths_per_million": 5.149, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 11537.0, + "total_tests": 782132.0, + "total_tests_per_thousand": 15.255, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 10751.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 606.911, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-23", + "total_cases": 11165.0, + "new_cases": 23.0, + "new_cases_smoothed": 18.286, + "total_deaths": 266.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 217.772, + "new_cases_per_million": 0.449, + "new_cases_smoothed_per_million": 0.357, + "total_deaths_per_million": 5.188, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 10719.0, + "total_tests": 792851.0, + "total_tests_per_thousand": 15.464, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 10631.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 581.383, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-24", + "total_cases": 11190.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.0, + "total_deaths": 266.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 218.26, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 0.39, + "total_deaths_per_million": 5.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests_smoothed": 10015.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 500.75, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-25", + "total_cases": 11206.0, + "new_cases": 16.0, + "new_cases_smoothed": 20.143, + "total_deaths": 267.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 218.572, + "new_cases_per_million": 0.312, + "new_cases_smoothed_per_million": 0.393, + "total_deaths_per_million": 5.208, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "total_tests": 807348.0, + "total_tests_per_thousand": 15.747, + "new_tests_smoothed": 10033.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 498.092, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-26", + "total_cases": 11225.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.0, + "total_deaths": 269.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 218.942, + "new_cases_per_million": 0.371, + "new_cases_smoothed_per_million": 0.41, + "total_deaths_per_million": 5.247, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 10083.0, + "total_tests": 817431.0, + "total_tests_per_thousand": 15.944, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 9826.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 467.905, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-27", + "total_cases": 11265.0, + "new_cases": 40.0, + "new_cases_smoothed": 22.143, + "total_deaths": 269.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 219.723, + "new_cases_per_million": 0.78, + "new_cases_smoothed_per_million": 0.432, + "total_deaths_per_million": 5.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 14384.0, + "total_tests": 831815.0, + "total_tests_per_thousand": 16.224, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 10248.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 462.81300000000005, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-28", + "total_cases": 11344.0, + "new_cases": 79.0, + "new_cases_smoothed": 31.714, + "total_deaths": 269.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 221.264, + "new_cases_per_million": 1.541, + "new_cases_smoothed_per_million": 0.619, + "total_deaths_per_million": 5.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 14481.0, + "total_tests": 846296.0, + "total_tests_per_thousand": 16.507, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 10814.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 340.98199999999997, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 39.81 + }, + { + "date": "2020-05-29", + "total_cases": 11402.0, + "new_cases": 58.0, + "new_cases_smoothed": 37.143, + "total_deaths": 269.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 222.395, + "new_cases_per_million": 1.131, + "new_cases_smoothed_per_million": 0.724, + "total_deaths_per_million": 5.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 14267.0, + "total_tests": 860563.0, + "total_tests_per_thousand": 16.785, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 11204.0, + "new_tests_smoothed_per_thousand": 0.219, + "tests_per_case": 301.64599999999996, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-05-30", + "total_cases": 11441.0, + "new_cases": 39.0, + "new_cases_smoothed": 39.429, + "total_deaths": 269.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 223.155, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.769, + "total_deaths_per_million": 5.247, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 16040.0, + "total_tests": 876603.0, + "total_tests_per_thousand": 17.098, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 11965.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 303.46, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-05-31", + "total_cases": 11468.0, + "new_cases": 27.0, + "new_cases_smoothed": 39.714, + "total_deaths": 270.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 223.682, + "new_cases_per_million": 0.527, + "new_cases_smoothed_per_million": 0.775, + "total_deaths_per_million": 5.266, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 10925.0, + "total_tests": 887528.0, + "total_tests_per_thousand": 17.311, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 12490.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 314.496, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-01", + "total_cases": 11503.0, + "new_cases": 35.0, + "new_cases_smoothed": 42.429, + "total_deaths": 271.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 224.365, + "new_cases_per_million": 0.683, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 5.286, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 9805.0, + "total_tests": 897333.0, + "total_tests_per_thousand": 17.502, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 12855.0, + "new_tests_smoothed_per_thousand": 0.251, + "tests_per_case": 302.98, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-02", + "total_cases": 11541.0, + "new_cases": 38.0, + "new_cases_smoothed": 45.143, + "total_deaths": 272.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 225.106, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 0.881, + "total_deaths_per_million": 5.305, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 13596.0, + "total_tests": 910929.0, + "total_tests_per_thousand": 17.768, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 13357.0, + "new_tests_smoothed_per_thousand": 0.261, + "tests_per_case": 295.883, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-03", + "total_cases": 11590.0, + "new_cases": 49.0, + "new_cases_smoothed": 46.429, + "total_deaths": 273.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 226.062, + "new_cases_per_million": 0.956, + "new_cases_smoothed_per_million": 0.906, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 18058.0, + "total_tests": 928987.0, + "total_tests_per_thousand": 18.12, + "new_tests_per_thousand": 0.352, + "new_tests_smoothed": 13882.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 298.997, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-04", + "total_cases": 11629.0, + "new_cases": 39.0, + "new_cases_smoothed": 40.714, + "total_deaths": 273.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 226.822, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 16672.0, + "total_tests": 945659.0, + "total_tests_per_thousand": 18.445, + "new_tests_per_thousand": 0.325, + "new_tests_smoothed": 14195.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 348.649, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-05", + "total_cases": 11668.0, + "new_cases": 39.0, + "new_cases_smoothed": 38.0, + "total_deaths": 273.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 227.583, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.741, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 16535.0, + "total_tests": 962194.0, + "total_tests_per_thousand": 18.767, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 14519.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 382.079, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-06", + "total_cases": 11719.0, + "new_cases": 51.0, + "new_cases_smoothed": 39.714, + "total_deaths": 273.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 228.578, + "new_cases_per_million": 0.995, + "new_cases_smoothed_per_million": 0.775, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 15157.0, + "total_tests": 977351.0, + "total_tests_per_thousand": 19.063, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 14393.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 362.414, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-07", + "total_cases": 11776.0, + "new_cases": 57.0, + "new_cases_smoothed": 44.0, + "total_deaths": 273.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 229.69, + "new_cases_per_million": 1.112, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 8937.0, + "total_tests": 986288.0, + "total_tests_per_thousand": 19.237, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 14109.0, + "new_tests_smoothed_per_thousand": 0.275, + "tests_per_case": 320.659, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-08", + "total_cases": 11814.0, + "new_cases": 38.0, + "new_cases_smoothed": 44.429, + "total_deaths": 273.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 230.431, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 5.325, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 7552.0, + "total_tests": 993840.0, + "total_tests_per_thousand": 19.385, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 13787.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 310.318, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-09", + "total_cases": 11852.0, + "new_cases": 38.0, + "new_cases_smoothed": 44.429, + "total_deaths": 274.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 231.172, + "new_cases_per_million": 0.741, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 5.344, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 14698.0, + "total_tests": 1008538.0, + "total_tests_per_thousand": 19.671, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 13944.0, + "new_tests_smoothed_per_thousand": 0.272, + "tests_per_case": 313.85200000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-10", + "total_cases": 11902.0, + "new_cases": 50.0, + "new_cases_smoothed": 44.571, + "total_deaths": 276.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 232.147, + "new_cases_per_million": 0.975, + "new_cases_smoothed_per_million": 0.869, + "total_deaths_per_million": 5.383, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 17211.0, + "total_tests": 1025749.0, + "total_tests_per_thousand": 20.007, + "new_tests_per_thousand": 0.336, + "new_tests_smoothed": 13823.0, + "new_tests_smoothed_per_thousand": 0.27, + "tests_per_case": 310.131, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-11", + "total_cases": 11947.0, + "new_cases": 45.0, + "new_cases_smoothed": 45.429, + "total_deaths": 276.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 233.025, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 0.886, + "total_deaths_per_million": 5.383, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 15645.0, + "total_tests": 1041394.0, + "total_tests_per_thousand": 20.312, + "new_tests_per_thousand": 0.305, + "new_tests_smoothed": 13676.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 301.04400000000004, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-12", + "total_cases": 12003.0, + "new_cases": 56.0, + "new_cases_smoothed": 47.857, + "total_deaths": 277.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 234.117, + "new_cases_per_million": 1.092, + "new_cases_smoothed_per_million": 0.933, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 15849.0, + "total_tests": 1057243.0, + "total_tests_per_thousand": 20.621, + "new_tests_per_thousand": 0.309, + "new_tests_smoothed": 13578.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 283.719, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-13", + "total_cases": 12051.0, + "new_cases": 48.0, + "new_cases_smoothed": 47.429, + "total_deaths": 277.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 235.053, + "new_cases_per_million": 0.936, + "new_cases_smoothed_per_million": 0.925, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 14109.0, + "total_tests": 1071352.0, + "total_tests_per_thousand": 20.897, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 13429.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 283.142, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-14", + "total_cases": 12084.0, + "new_cases": 33.0, + "new_cases_smoothed": 44.0, + "total_deaths": 277.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 235.697, + "new_cases_per_million": 0.644, + "new_cases_smoothed_per_million": 0.858, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 7620.0, + "total_tests": 1078972.0, + "total_tests_per_thousand": 21.045, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 13241.0, + "new_tests_smoothed_per_thousand": 0.258, + "tests_per_case": 300.932, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-15", + "total_cases": 12121.0, + "new_cases": 37.0, + "new_cases_smoothed": 43.857, + "total_deaths": 277.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 236.419, + "new_cases_per_million": 0.722, + "new_cases_smoothed_per_million": 0.855, + "total_deaths_per_million": 5.403, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 5954.0, + "total_tests": 1084926.0, + "total_tests_per_thousand": 21.161, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 13012.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 296.691, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-16", + "total_cases": 12155.0, + "new_cases": 34.0, + "new_cases_smoothed": 43.286, + "total_deaths": 278.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 237.082, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.844, + "total_deaths_per_million": 5.422, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 12209.0, + "total_tests": 1097135.0, + "total_tests_per_thousand": 21.4, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 12657.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 292.406, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-17", + "total_cases": 12198.0, + "new_cases": 43.0, + "new_cases_smoothed": 42.286, + "total_deaths": 279.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 237.921, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.825, + "total_deaths_per_million": 5.442, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 14199.0, + "total_tests": 1111334.0, + "total_tests_per_thousand": 21.676, + "new_tests_per_thousand": 0.277, + "new_tests_smoothed": 12226.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 289.128, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-18", + "total_cases": 12257.0, + "new_cases": 59.0, + "new_cases_smoothed": 44.286, + "total_deaths": 280.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 239.071, + "new_cases_per_million": 1.151, + "new_cases_smoothed_per_million": 0.864, + "total_deaths_per_million": 5.461, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 12664.0, + "total_tests": 1123998.0, + "total_tests_per_thousand": 21.923, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 11801.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 266.474, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-19", + "total_cases": 12306.0, + "new_cases": 49.0, + "new_cases_smoothed": 43.286, + "total_deaths": 280.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 240.027, + "new_cases_per_million": 0.956, + "new_cases_smoothed_per_million": 0.844, + "total_deaths_per_million": 5.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 12875.0, + "total_tests": 1136873.0, + "total_tests_per_thousand": 22.175, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 11376.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 262.812, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-20", + "total_cases": 12373.0, + "new_cases": 67.0, + "new_cases_smoothed": 46.0, + "total_deaths": 280.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 241.334, + "new_cases_per_million": 1.307, + "new_cases_smoothed_per_million": 0.897, + "total_deaths_per_million": 5.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 12558.0, + "total_tests": 1149431.0, + "total_tests_per_thousand": 22.42, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 11154.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 242.47799999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-21", + "total_cases": 12421.0, + "new_cases": 48.0, + "new_cases_smoothed": 48.143, + "total_deaths": 280.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 242.27, + "new_cases_per_million": 0.936, + "new_cases_smoothed_per_million": 0.939, + "total_deaths_per_million": 5.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 6961.0, + "total_tests": 1156392.0, + "total_tests_per_thousand": 22.555, + "new_tests_per_thousand": 0.136, + "new_tests_smoothed": 11060.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 229.733, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-22", + "total_cases": 12438.0, + "new_cases": 17.0, + "new_cases_smoothed": 45.286, + "total_deaths": 280.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 242.602, + "new_cases_per_million": 0.332, + "new_cases_smoothed_per_million": 0.883, + "total_deaths_per_million": 5.461, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 6271.0, + "total_tests": 1162663.0, + "total_tests_per_thousand": 22.678, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 11105.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 245.22099999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-23", + "total_cases": 12484.0, + "new_cases": 46.0, + "new_cases_smoothed": 47.0, + "total_deaths": 281.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 243.499, + "new_cases_per_million": 0.897, + "new_cases_smoothed_per_million": 0.917, + "total_deaths_per_million": 5.481, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 11071.0, + "total_tests": 1173734.0, + "total_tests_per_thousand": 22.894, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 10943.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 232.83, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-24", + "total_cases": 12535.0, + "new_cases": 51.0, + "new_cases_smoothed": 48.143, + "total_deaths": 281.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 244.494, + "new_cases_per_million": 0.995, + "new_cases_smoothed_per_million": 0.939, + "total_deaths_per_million": 5.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 14618.0, + "total_tests": 1188352.0, + "total_tests_per_thousand": 23.179, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 11003.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 228.549, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-25", + "total_cases": 12563.0, + "new_cases": 28.0, + "new_cases_smoothed": 43.714, + "total_deaths": 282.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 245.04, + "new_cases_per_million": 0.546, + "new_cases_smoothed_per_million": 0.853, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 13226.0, + "total_tests": 1201578.0, + "total_tests_per_thousand": 23.437, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 11083.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 253.533, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-26", + "total_cases": 12602.0, + "new_cases": 39.0, + "new_cases_smoothed": 42.286, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 245.801, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.825, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 11909.0, + "total_tests": 1213487.0, + "total_tests_per_thousand": 23.669, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 10945.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 258.834, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-27", + "total_cases": 12653.0, + "new_cases": 51.0, + "new_cases_smoothed": 40.0, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 246.795, + "new_cases_per_million": 0.995, + "new_cases_smoothed_per_million": 0.78, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 10427.0, + "total_tests": 1223914.0, + "total_tests_per_thousand": 23.872, + "new_tests_per_thousand": 0.203, + "new_tests_smoothed": 10640.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-28", + "total_cases": 12715.0, + "new_cases": 62.0, + "new_cases_smoothed": 42.0, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 248.005, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 0.819, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 8776.0, + "total_tests": 1232690.0, + "total_tests_per_thousand": 24.043, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 10900.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 259.524, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-29", + "total_cases": 12757.0, + "new_cases": 42.0, + "new_cases_smoothed": 45.571, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 248.824, + "new_cases_per_million": 0.819, + "new_cases_smoothed_per_million": 0.889, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 8765.0, + "total_tests": 1241455.0, + "total_tests_per_thousand": 24.214, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 11256.0, + "new_tests_smoothed_per_thousand": 0.22, + "tests_per_case": 246.997, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-06-30", + "total_cases": 12800.0, + "new_cases": 43.0, + "new_cases_smoothed": 45.143, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 249.663, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.881, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 11502.0, + "total_tests": 1252957.0, + "total_tests_per_thousand": 24.439, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 11318.0, + "new_tests_smoothed_per_thousand": 0.221, + "tests_per_case": 250.715, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-07-01", + "total_cases": 12850.0, + "new_cases": 50.0, + "new_cases_smoothed": 45.0, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 250.638, + "new_cases_per_million": 0.975, + "new_cases_smoothed_per_million": 0.878, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 12748.0, + "total_tests": 1265705.0, + "total_tests_per_thousand": 24.687, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 11050.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 245.55599999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-07-02", + "total_cases": 12904.0, + "new_cases": 54.0, + "new_cases_smoothed": 48.714, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 251.691, + "new_cases_per_million": 1.053, + "new_cases_smoothed_per_million": 0.95, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10475.0, + "total_tests": 1276180.0, + "total_tests_per_thousand": 24.892, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 10657.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 218.765, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-07-03", + "total_cases": 12967.0, + "new_cases": 63.0, + "new_cases_smoothed": 52.143, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 252.92, + "new_cases_per_million": 1.229, + "new_cases_smoothed_per_million": 1.017, + "total_deaths_per_million": 5.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10021.0, + "total_tests": 1286201.0, + "total_tests_per_thousand": 25.087, + "new_tests_per_thousand": 0.195, + "new_tests_smoothed": 10388.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 199.222, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 56.94 + }, + { + "date": "2020-07-04", + "total_cases": 13030.0, + "new_cases": 63.0, + "new_cases_smoothed": 53.857, + "total_deaths": 283.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 254.149, + "new_cases_per_million": 1.229, + "new_cases_smoothed_per_million": 1.05, + "total_deaths_per_million": 5.52, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 11001.0, + "total_tests": 1297202.0, + "total_tests_per_thousand": 25.302, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 10470.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 194.403, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-05", + "total_cases": 13091.0, + "new_cases": 61.0, + "new_cases_smoothed": 53.714, + "total_deaths": 283.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 255.339, + "new_cases_per_million": 1.19, + "new_cases_smoothed_per_million": 1.048, + "total_deaths_per_million": 5.52, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 10166.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 189.261, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-06", + "total_cases": 13091.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.714, + "total_deaths": 283.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 255.339, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 5.52, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "total_tests": 1310504.0, + "total_tests_per_thousand": 25.561, + "new_tests_smoothed": 9864.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 206.731, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-07", + "total_cases": 13181.0, + "new_cases": 90.0, + "new_cases_smoothed": 54.429, + "total_deaths": 285.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 257.094, + "new_cases_per_million": 1.755, + "new_cases_smoothed_per_million": 1.062, + "total_deaths_per_million": 5.559, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 12015.0, + "total_tests": 1322519.0, + "total_tests_per_thousand": 25.796, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 9937.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 182.57, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-08", + "total_cases": 13244.0, + "new_cases": 63.0, + "new_cases_smoothed": 56.286, + "total_deaths": 285.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 258.323, + "new_cases_per_million": 1.229, + "new_cases_smoothed_per_million": 1.098, + "total_deaths_per_million": 5.559, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 13204.0, + "total_tests": 1335723.0, + "total_tests_per_thousand": 26.053, + "new_tests_per_thousand": 0.258, + "new_tests_smoothed": 10003.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 177.718, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-09", + "total_cases": 13293.0, + "new_cases": 49.0, + "new_cases_smoothed": 55.571, + "total_deaths": 287.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 259.279, + "new_cases_per_million": 0.956, + "new_cases_smoothed_per_million": 1.084, + "total_deaths_per_million": 5.598, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 12136.0, + "total_tests": 1347859.0, + "total_tests_per_thousand": 26.29, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 10240.0, + "new_tests_smoothed_per_thousand": 0.2, + "tests_per_case": 184.267, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-10", + "total_cases": 13338.0, + "new_cases": 45.0, + "new_cases_smoothed": 53.0, + "total_deaths": 288.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 260.156, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 1.034, + "total_deaths_per_million": 5.617, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 13504.0, + "total_tests": 1361363.0, + "total_tests_per_thousand": 26.553, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 10737.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 202.585, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-07-11", + "total_cases": 13373.0, + "new_cases": 35.0, + "new_cases_smoothed": 49.0, + "total_deaths": 288.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 260.839, + "new_cases_per_million": 0.683, + "new_cases_smoothed_per_million": 0.956, + "total_deaths_per_million": 5.617, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests_smoothed": 10520.0, + "new_tests_smoothed_per_thousand": 0.205, + "tests_per_case": 214.69400000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-12", + "total_cases": 13417.0, + "new_cases": 44.0, + "new_cases_smoothed": 46.571, + "total_deaths": 289.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 261.697, + "new_cases_per_million": 0.858, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 5.637, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.017, + "total_tests": 1380314.0, + "total_tests_per_thousand": 26.923, + "new_tests_smoothed": 10923.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 234.543, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-13", + "total_cases": 13479.0, + "new_cases": 62.0, + "new_cases_smoothed": 55.429, + "total_deaths": 289.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 262.906, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 1.081, + "total_deaths_per_million": 5.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 6153.0, + "total_tests": 1386467.0, + "total_tests_per_thousand": 27.043, + "new_tests_per_thousand": 0.12, + "new_tests_smoothed": 10852.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 195.78400000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-14", + "total_cases": 13512.0, + "new_cases": 33.0, + "new_cases_smoothed": 47.286, + "total_deaths": 289.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 263.55, + "new_cases_per_million": 0.644, + "new_cases_smoothed_per_million": 0.922, + "total_deaths_per_million": 5.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 9860.0, + "total_tests": 1396327.0, + "total_tests_per_thousand": 27.235, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 10544.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 222.985, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-15", + "total_cases": 13551.0, + "new_cases": 39.0, + "new_cases_smoothed": 43.857, + "total_deaths": 289.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 264.311, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.855, + "total_deaths_per_million": 5.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 11692.0, + "total_tests": 1408019.0, + "total_tests_per_thousand": 27.463, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 10328.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 235.49200000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-16", + "total_cases": 13612.0, + "new_cases": 61.0, + "new_cases_smoothed": 45.571, + "total_deaths": 291.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 265.501, + "new_cases_per_million": 1.19, + "new_cases_smoothed_per_million": 0.889, + "total_deaths_per_million": 5.676, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 9925.0, + "total_tests": 1417944.0, + "total_tests_per_thousand": 27.657, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 10012.0, + "new_tests_smoothed_per_thousand": 0.195, + "tests_per_case": 219.699, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-17", + "total_cases": 13672.0, + "new_cases": 60.0, + "new_cases_smoothed": 47.714, + "total_deaths": 293.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 266.671, + "new_cases_per_million": 1.17, + "new_cases_smoothed_per_million": 0.931, + "total_deaths_per_million": 5.715, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 9963.0, + "total_tests": 1427907.0, + "total_tests_per_thousand": 27.851, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 9506.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 199.22799999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-18", + "total_cases": 13711.0, + "new_cases": 39.0, + "new_cases_smoothed": 48.286, + "total_deaths": 294.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 267.432, + "new_cases_per_million": 0.761, + "new_cases_smoothed_per_million": 0.942, + "total_deaths_per_million": 5.734, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 9374.0, + "total_tests": 1437281.0, + "total_tests_per_thousand": 28.034, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 9492.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 196.58, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-19", + "total_cases": 13745.0, + "new_cases": 34.0, + "new_cases_smoothed": 46.857, + "total_deaths": 295.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 268.095, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.914, + "total_deaths_per_million": 5.754, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 6065.0, + "total_tests": 1443346.0, + "total_tests_per_thousand": 28.152, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 9005.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 192.18, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-20", + "total_cases": 13771.0, + "new_cases": 26.0, + "new_cases_smoothed": 41.714, + "total_deaths": 296.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 268.602, + "new_cases_per_million": 0.507, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 5.773, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 5545.0, + "total_tests": 1448891.0, + "total_tests_per_thousand": 28.26, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 8918.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 213.78799999999998, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-21", + "total_cases": 13816.0, + "new_cases": 45.0, + "new_cases_smoothed": 43.429, + "total_deaths": 296.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 269.48, + "new_cases_per_million": 0.878, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 5.773, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 9635.0, + "total_tests": 1458526.0, + "total_tests_per_thousand": 28.448, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 8886.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 204.612, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-22", + "total_cases": 13879.0, + "new_cases": 63.0, + "new_cases_smoothed": 46.857, + "total_deaths": 297.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 270.708, + "new_cases_per_million": 1.229, + "new_cases_smoothed_per_million": 0.914, + "total_deaths_per_million": 5.793, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 11794.0, + "total_tests": 1470320.0, + "total_tests_per_thousand": 28.678, + "new_tests_per_thousand": 0.23, + "new_tests_smoothed": 8900.0, + "new_tests_smoothed_per_thousand": 0.174, + "tests_per_case": 189.93900000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-23", + "total_cases": 13938.0, + "new_cases": 59.0, + "new_cases_smoothed": 46.571, + "total_deaths": 297.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 271.859, + "new_cases_per_million": 1.151, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 5.793, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 9116.0, + "total_tests": 1479436.0, + "total_tests_per_thousand": 28.856, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 8785.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 188.635, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-24", + "total_cases": 13979.0, + "new_cases": 41.0, + "new_cases_smoothed": 43.857, + "total_deaths": 298.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 272.659, + "new_cases_per_million": 0.8, + "new_cases_smoothed_per_million": 0.855, + "total_deaths_per_million": 5.812, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 10332.0, + "total_tests": 1489768.0, + "total_tests_per_thousand": 29.058, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 8837.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 201.495, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-25", + "total_cases": 14092.0, + "new_cases": 113.0, + "new_cases_smoothed": 54.429, + "total_deaths": 298.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 274.863, + "new_cases_per_million": 2.204, + "new_cases_smoothed_per_million": 1.062, + "total_deaths_per_million": 5.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 9185.0, + "total_tests": 1498953.0, + "total_tests_per_thousand": 29.237, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 8810.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 161.864, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-26", + "total_cases": 14150.0, + "new_cases": 58.0, + "new_cases_smoothed": 57.857, + "total_deaths": 298.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 275.994, + "new_cases_per_million": 1.131, + "new_cases_smoothed_per_million": 1.128, + "total_deaths_per_million": 5.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 4759.0, + "total_tests": 1503712.0, + "total_tests_per_thousand": 29.33, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 8624.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 149.05700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-27", + "total_cases": 14175.0, + "new_cases": 25.0, + "new_cases_smoothed": 57.714, + "total_deaths": 299.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 276.482, + "new_cases_per_million": 0.488, + "new_cases_smoothed_per_million": 1.126, + "total_deaths_per_million": 5.832, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 4492.0, + "total_tests": 1508204.0, + "total_tests_per_thousand": 29.417, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 8473.0, + "new_tests_smoothed_per_thousand": 0.165, + "tests_per_case": 146.809, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-28", + "total_cases": 14203.0, + "new_cases": 28.0, + "new_cases_smoothed": 55.286, + "total_deaths": 300.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 277.028, + "new_cases_per_million": 0.546, + "new_cases_smoothed_per_million": 1.078, + "total_deaths_per_million": 5.851, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 9056.0, + "total_tests": 1517260.0, + "total_tests_per_thousand": 29.594, + "new_tests_per_thousand": 0.177, + "new_tests_smoothed": 8391.0, + "new_tests_smoothed_per_thousand": 0.164, + "tests_per_case": 151.775, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-29", + "total_cases": 14251.0, + "new_cases": 48.0, + "new_cases_smoothed": 53.143, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 277.964, + "new_cases_per_million": 0.936, + "new_cases_smoothed_per_million": 1.037, + "total_deaths_per_million": 5.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 10721.0, + "total_tests": 1527981.0, + "total_tests_per_thousand": 29.803, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 8237.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 154.997, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-30", + "total_cases": 14269.0, + "new_cases": 18.0, + "new_cases_smoothed": 47.286, + "total_deaths": 300.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 278.315, + "new_cases_per_million": 0.351, + "new_cases_smoothed_per_million": 0.922, + "total_deaths_per_million": 5.851, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 9216.0, + "total_tests": 1537197.0, + "total_tests_per_thousand": 29.983, + "new_tests_per_thousand": 0.18, + "new_tests_smoothed": 8252.0, + "new_tests_smoothed_per_thousand": 0.161, + "tests_per_case": 174.514, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-07-31", + "total_cases": 14305.0, + "new_cases": 36.0, + "new_cases_smoothed": 46.571, + "total_deaths": 301.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.018, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.908, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 8269.0, + "total_tests": 1545466.0, + "total_tests_per_thousand": 30.144, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 7957.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 170.856, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-01", + "total_cases": 14336.0, + "new_cases": 31.0, + "new_cases_smoothed": 34.857, + "total_deaths": 301.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.622, + "new_cases_per_million": 0.605, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 8086.0, + "total_tests": 1553552.0, + "total_tests_per_thousand": 30.302, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 7800.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 223.77, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-02", + "total_cases": 14336.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.571, + "total_deaths": 301.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 279.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 4926.0, + "total_tests": 1558478.0, + "total_tests_per_thousand": 30.398, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 7824.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 294.452, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-03", + "total_cases": 14389.0, + "new_cases": 53.0, + "new_cases_smoothed": 30.571, + "total_deaths": 301.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 280.656, + "new_cases_per_million": 1.034, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 3878.0, + "total_tests": 1562356.0, + "total_tests_per_thousand": 30.474, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 7736.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 253.047, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-04", + "total_cases": 14423.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.429, + "total_deaths": 301.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.319, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 8700.0, + "total_tests": 1571056.0, + "total_tests_per_thousand": 30.643, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 7685.0, + "new_tests_smoothed_per_thousand": 0.15, + "tests_per_case": 244.523, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-05", + "total_cases": 14456.0, + "new_cases": 33.0, + "new_cases_smoothed": 29.286, + "total_deaths": 302.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 281.963, + "new_cases_per_million": 0.644, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 5.89, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 8641.0, + "total_tests": 1579697.0, + "total_tests_per_thousand": 30.812, + "new_tests_per_thousand": 0.169, + "new_tests_smoothed": 7388.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 252.273, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-06", + "total_cases": 14499.0, + "new_cases": 43.0, + "new_cases_smoothed": 32.857, + "total_deaths": 302.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 282.801, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.641, + "total_deaths_per_million": 5.89, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 8759.0, + "total_tests": 1588456.0, + "total_tests_per_thousand": 30.983, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 7323.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 222.87400000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-07", + "total_cases": 14519.0, + "new_cases": 20.0, + "new_cases_smoothed": 30.571, + "total_deaths": 303.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 283.192, + "new_cases_per_million": 0.39, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 5.91, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 8128.0, + "total_tests": 1596584.0, + "total_tests_per_thousand": 31.141, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 7303.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 238.88299999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-08", + "total_cases": 14562.0, + "new_cases": 43.0, + "new_cases_smoothed": 32.286, + "total_deaths": 304.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 284.03, + "new_cases_per_million": 0.839, + "new_cases_smoothed_per_million": 0.63, + "total_deaths_per_million": 5.929, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 7825.0, + "total_tests": 1604409.0, + "total_tests_per_thousand": 31.294, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 7265.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 225.02200000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-09", + "total_cases": 14598.0, + "new_cases": 36.0, + "new_cases_smoothed": 37.429, + "total_deaths": 305.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 284.732, + "new_cases_per_million": 0.702, + "new_cases_smoothed_per_million": 0.73, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 3438.0, + "total_tests": 1607847.0, + "total_tests_per_thousand": 31.361, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 7053.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 188.43900000000002, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-10", + "total_cases": 14626.0, + "new_cases": 28.0, + "new_cases_smoothed": 33.857, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 285.279, + "new_cases_per_million": 0.546, + "new_cases_smoothed_per_million": 0.66, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 4060.0, + "total_tests": 1611907.0, + "total_tests_per_thousand": 31.44, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 7079.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 209.084, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-11", + "total_cases": 14660.0, + "new_cases": 34.0, + "new_cases_smoothed": 33.857, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 285.942, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.66, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 8448.0, + "total_tests": 1620355.0, + "total_tests_per_thousand": 31.605, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 7043.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 208.021, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-12", + "total_cases": 14714.0, + "new_cases": 54.0, + "new_cases_smoothed": 36.857, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 286.995, + "new_cases_per_million": 1.053, + "new_cases_smoothed_per_million": 0.719, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 8922.0, + "total_tests": 1629277.0, + "total_tests_per_thousand": 31.779, + "new_tests_per_thousand": 0.174, + "new_tests_smoothed": 7083.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 192.174, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-13", + "total_cases": 14770.0, + "new_cases": 56.0, + "new_cases_smoothed": 38.714, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 288.087, + "new_cases_per_million": 1.092, + "new_cases_smoothed_per_million": 0.755, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 7823.0, + "total_tests": 1637100.0, + "total_tests_per_thousand": 31.931, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 6949.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 179.49400000000003, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-14", + "total_cases": 14873.0, + "new_cases": 103.0, + "new_cases_smoothed": 50.571, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 290.096, + "new_cases_per_million": 2.009, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 7852.0, + "total_tests": 1644952.0, + "total_tests_per_thousand": 32.085, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 6910.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 136.638, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-15", + "total_cases": 15039.0, + "new_cases": 166.0, + "new_cases_smoothed": 68.143, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 293.334, + "new_cases_per_million": 3.238, + "new_cases_smoothed_per_million": 1.329, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 8726.0, + "total_tests": 1653678.0, + "total_tests_per_thousand": 32.255, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 7038.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 103.28299999999999, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-08-16", + "total_cases": 15318.0, + "new_cases": 279.0, + "new_cases_smoothed": 102.857, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 298.776, + "new_cases_per_million": 5.442, + "new_cases_smoothed_per_million": 2.006, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6104.0, + "total_tests": 1659782.0, + "total_tests_per_thousand": 32.374, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 7419.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 72.12899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-17", + "total_cases": 15515.0, + "new_cases": 197.0, + "new_cases_smoothed": 127.0, + "total_deaths": 305.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 302.618, + "new_cases_per_million": 3.842, + "new_cases_smoothed_per_million": 2.477, + "total_deaths_per_million": 5.949, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5724.0, + "total_tests": 1665506.0, + "total_tests_per_thousand": 32.486, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 7657.0, + "new_tests_smoothed_per_thousand": 0.149, + "tests_per_case": 60.291000000000004, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-18", + "total_cases": 15761.0, + "new_cases": 246.0, + "new_cases_smoothed": 157.286, + "total_deaths": 306.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 307.417, + "new_cases_per_million": 4.798, + "new_cases_smoothed_per_million": 3.068, + "total_deaths_per_million": 5.968, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 6317.0, + "total_tests": 1671823.0, + "total_tests_per_thousand": 32.609, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 7353.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 46.748999999999995, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-19", + "total_cases": 16058.0, + "new_cases": 297.0, + "new_cases_smoothed": 192.0, + "total_deaths": 306.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 313.21, + "new_cases_per_million": 5.793, + "new_cases_smoothed_per_million": 3.745, + "total_deaths_per_million": 5.968, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 12219.0, + "total_tests": 1684042.0, + "total_tests_per_thousand": 32.847, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 7824.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 40.75, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-20", + "total_cases": 16346.0, + "new_cases": 288.0, + "new_cases_smoothed": 225.143, + "total_deaths": 307.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 318.827, + "new_cases_per_million": 5.617, + "new_cases_smoothed_per_million": 4.391, + "total_deaths_per_million": 5.988, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 15043.0, + "total_tests": 1699085.0, + "total_tests_per_thousand": 33.14, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 8855.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 39.330999999999996, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-21", + "total_cases": 16670.0, + "new_cases": 324.0, + "new_cases_smoothed": 256.714, + "total_deaths": 309.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 325.147, + "new_cases_per_million": 6.32, + "new_cases_smoothed_per_million": 5.007, + "total_deaths_per_million": 6.027, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 16993.0, + "total_tests": 1716078.0, + "total_tests_per_thousand": 33.472, + "new_tests_per_thousand": 0.331, + "new_tests_smoothed": 10161.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 39.580999999999996, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-22", + "total_cases": 17002.0, + "new_cases": 332.0, + "new_cases_smoothed": 280.429, + "total_deaths": 309.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 331.622, + "new_cases_per_million": 6.476, + "new_cases_smoothed_per_million": 5.47, + "total_deaths_per_million": 6.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 17295.0, + "total_tests": 1733373.0, + "total_tests_per_thousand": 33.809, + "new_tests_per_thousand": 0.337, + "new_tests_smoothed": 11385.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 40.599000000000004, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-23", + "total_cases": 17399.0, + "new_cases": 397.0, + "new_cases_smoothed": 297.286, + "total_deaths": 309.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 339.366, + "new_cases_per_million": 7.743, + "new_cases_smoothed_per_million": 5.799, + "total_deaths_per_million": 6.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 10249.0, + "total_tests": 1743622.0, + "total_tests_per_thousand": 34.009, + "new_tests_per_thousand": 0.2, + "new_tests_smoothed": 11977.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 40.288000000000004, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-24", + "total_cases": 17665.0, + "new_cases": 266.0, + "new_cases_smoothed": 307.143, + "total_deaths": 309.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 344.554, + "new_cases_per_million": 5.188, + "new_cases_smoothed_per_million": 5.991, + "total_deaths_per_million": 6.027, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 12805.0, + "total_tests": 1756427.0, + "total_tests_per_thousand": 34.259, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 12989.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 42.29, + "positive_rate": 0.024, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-25", + "total_cases": 17945.0, + "new_cases": 280.0, + "new_cases_smoothed": 312.0, + "total_deaths": 310.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 350.015, + "new_cases_per_million": 5.461, + "new_cases_smoothed_per_million": 6.086, + "total_deaths_per_million": 6.047, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.011, + "new_tests": 19048.0, + "total_tests": 1775475.0, + "total_tests_per_thousand": 34.63, + "new_tests_per_thousand": 0.372, + "new_tests_smoothed": 14807.0, + "new_tests_smoothed_per_thousand": 0.289, + "tests_per_case": 47.458, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-26", + "total_cases": 18265.0, + "new_cases": 320.0, + "new_cases_smoothed": 315.286, + "total_deaths": 312.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 356.257, + "new_cases_per_million": 6.242, + "new_cases_smoothed_per_million": 6.15, + "total_deaths_per_million": 6.086, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 21236.0, + "total_tests": 1796711.0, + "total_tests_per_thousand": 35.045, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 16096.0, + "new_tests_smoothed_per_thousand": 0.314, + "tests_per_case": 51.052, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-27", + "total_cases": 18706.0, + "new_cases": 441.0, + "new_cases_smoothed": 337.143, + "total_deaths": 313.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 364.859, + "new_cases_per_million": 8.602, + "new_cases_smoothed_per_million": 6.576, + "total_deaths_per_million": 6.105, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 20827.0, + "total_tests": 1817538.0, + "total_tests_per_thousand": 35.451, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 16922.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 50.192, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-28", + "total_cases": 19077.0, + "new_cases": 371.0, + "new_cases_smoothed": 343.857, + "total_deaths": 316.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 372.095, + "new_cases_per_million": 7.236, + "new_cases_smoothed_per_million": 6.707, + "total_deaths_per_million": 6.164, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 19468.0, + "total_tests": 1837006.0, + "total_tests_per_thousand": 35.831, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 17275.0, + "new_tests_smoothed_per_thousand": 0.337, + "tests_per_case": 50.239, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-29", + "total_cases": 19400.0, + "new_cases": 323.0, + "new_cases_smoothed": 342.571, + "total_deaths": 321.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 378.395, + "new_cases_per_million": 6.3, + "new_cases_smoothed_per_million": 6.682, + "total_deaths_per_million": 6.261, + "new_deaths_per_million": 0.098, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 18277.0, + "total_tests": 1855283.0, + "total_tests_per_thousand": 36.187, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 17416.0, + "new_tests_smoothed_per_thousand": 0.34, + "tests_per_case": 50.839, + "positive_rate": 0.02, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-30", + "total_cases": 19699.0, + "new_cases": 299.0, + "new_cases_smoothed": 328.571, + "total_deaths": 323.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 384.227, + "new_cases_per_million": 5.832, + "new_cases_smoothed_per_million": 6.409, + "total_deaths_per_million": 6.3, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 10866.0, + "total_tests": 1866149.0, + "total_tests_per_thousand": 36.399, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 17504.0, + "new_tests_smoothed_per_thousand": 0.341, + "tests_per_case": 53.273, + "positive_rate": 0.019, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-08-31", + "total_cases": 19947.0, + "new_cases": 248.0, + "new_cases_smoothed": 326.0, + "total_deaths": 324.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 389.064, + "new_cases_per_million": 4.837, + "new_cases_smoothed_per_million": 6.359, + "total_deaths_per_million": 6.32, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.042, + "new_tests": 13664.0, + "total_tests": 1879813.0, + "total_tests_per_thousand": 36.666, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 17627.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 54.071000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-09-01", + "total_cases": 20182.0, + "new_cases": 235.0, + "new_cases_smoothed": 319.571, + "total_deaths": 324.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 393.648, + "new_cases_per_million": 4.584, + "new_cases_smoothed_per_million": 6.233, + "total_deaths_per_million": 6.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 22524.0, + "total_tests": 1902337.0, + "total_tests_per_thousand": 37.105, + "new_tests_per_thousand": 0.439, + "new_tests_smoothed": 18123.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 56.71, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-09-02", + "total_cases": 20449.0, + "new_cases": 267.0, + "new_cases_smoothed": 312.0, + "total_deaths": 326.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 398.856, + "new_cases_per_million": 5.208, + "new_cases_smoothed_per_million": 6.086, + "total_deaths_per_million": 6.359, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 21210.0, + "total_tests": 1923547.0, + "total_tests_per_thousand": 37.519, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 18119.0, + "new_tests_smoothed_per_thousand": 0.353, + "tests_per_case": 58.074, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 54.17 + }, + { + "date": "2020-09-03", + "total_cases": 20644.0, + "new_cases": 195.0, + "new_cases_smoothed": 276.857, + "total_deaths": 329.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 402.659, + "new_cases_per_million": 3.803, + "new_cases_smoothed_per_million": 5.4, + "total_deaths_per_million": 6.417, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.045, + "new_tests": 21481.0, + "total_tests": 1945028.0, + "total_tests_per_thousand": 37.938, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 18213.0, + "new_tests_smoothed_per_thousand": 0.355, + "tests_per_case": 65.785, + "positive_rate": 0.015, + "tests_units": "people tested" + }, + { + "date": "2020-09-04", + "total_cases": 20842.0, + "new_cases": 198.0, + "new_cases_smoothed": 252.143, + "total_deaths": 331.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 406.521, + "new_cases_per_million": 3.862, + "new_cases_smoothed_per_million": 4.918, + "total_deaths_per_million": 6.456, + "new_deaths_per_million": 0.039, + "new_deaths_smoothed_per_million": 0.042 + }, + { + "date": "2020-09-05", + "total_cases": 20842.0, + "new_cases": 0.0, + "new_cases_smoothed": 206.0, + "total_deaths": 331.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 406.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.018, + "total_deaths_per_million": 6.456, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028 + } + ] + }, + "SSD": { + "continent": "Africa", + "location": "South Sudan", + "population": 11193729.0, + "median_age": 19.2, + "aged_65_older": 3.441, + "aged_70_older": 2.032, + "gdp_per_capita": 1569.888, + "cardiovasc_death_rate": 280.775, + "diabetes_prevalence": 10.43, + "life_expectancy": 57.85, + "data": [ + { + "date": "2020-04-06", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.089, + "new_cases_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.089, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.089, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.268, + "new_cases_per_million": 0.089, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-13", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-14", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-15", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-16", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-19", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-20", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-23", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.357, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-25", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.447, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-26", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.447, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-27", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.536, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-29", + "total_cases": 34.0, + "new_cases": 28.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.037, + "new_cases_per_million": 2.501, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-30", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-01", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.127, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-02", + "total_cases": 45.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.02, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-03", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.02, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-04", + "total_cases": 46.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.109, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-05", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.109, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-06", + "total_cases": 52.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.645, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-07", + "total_cases": 74.0, + "new_cases": 22.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.611, + "new_cases_per_million": 1.965, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 90.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.04, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-09", + "total_cases": 120.0, + "new_cases": 30.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.72, + "new_cases_per_million": 2.68, + "new_cases_smoothed_per_million": 0.957, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-10", + "total_cases": 143.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.775, + "new_cases_per_million": 2.055, + "new_cases_smoothed_per_million": 1.251, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-11", + "total_cases": 156.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.936, + "new_cases_per_million": 1.161, + "new_cases_smoothed_per_million": 1.404, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 78.7 + }, + { + "date": "2020-05-12", + "total_cases": 156.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.404, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-13", + "total_cases": 194.0, + "new_cases": 38.0, + "new_cases_smoothed": 20.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.331, + "new_cases_per_million": 3.395, + "new_cases_smoothed_per_million": 1.812, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-14", + "total_cases": 203.0, + "new_cases": 9.0, + "new_cases_smoothed": 18.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.135, + "new_cases_per_million": 0.804, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-15", + "total_cases": 231.0, + "new_cases": 28.0, + "new_cases_smoothed": 20.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.637, + "new_cases_per_million": 2.501, + "new_cases_smoothed_per_million": 1.799, + "total_deaths_per_million": 0.089, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 73.15 + }, + { + "date": "2020-05-16", + "total_cases": 236.0, + "new_cases": 5.0, + "new_cases_smoothed": 16.571, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 21.083, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 1.48, + "total_deaths_per_million": 0.357, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 73.15 + }, + { + "date": "2020-05-17", + "total_cases": 236.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 21.083, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.187, + "total_deaths_per_million": 0.357, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 73.15 + }, + { + "date": "2020-05-18", + "total_cases": 282.0, + "new_cases": 46.0, + "new_cases_smoothed": 18.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 25.193, + "new_cases_per_million": 4.109, + "new_cases_smoothed_per_million": 1.608, + "total_deaths_per_million": 0.357, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 73.15 + }, + { + "date": "2020-05-19", + "total_cases": 282.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 25.193, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.608, + "total_deaths_per_million": 0.357, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 73.15 + }, + { + "date": "2020-05-20", + "total_cases": 285.0, + "new_cases": 3.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 25.461, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 1.161, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 73.15 + }, + { + "date": "2020-05-21", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 25.461, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.047, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 73.15 + }, + { + "date": "2020-05-22", + "total_cases": 339.0, + "new_cases": 54.0, + "new_cases_smoothed": 15.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 30.285, + "new_cases_per_million": 4.824, + "new_cases_smoothed_per_million": 1.378, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 73.15 + }, + { + "date": "2020-05-23", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 30.285, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.315, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-05-24", + "total_cases": 563.0, + "new_cases": 224.0, + "new_cases_smoothed": 46.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.296, + "new_cases_per_million": 20.011, + "new_cases_smoothed_per_million": 4.173, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-05-25", + "total_cases": 563.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.296, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.586, + "total_deaths_per_million": 0.536, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-05-26", + "total_cases": 655.0, + "new_cases": 92.0, + "new_cases_smoothed": 53.286, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 58.515, + "new_cases_per_million": 8.219, + "new_cases_smoothed_per_million": 4.76, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 73.15 + }, + { + "date": "2020-05-27", + "total_cases": 806.0, + "new_cases": 151.0, + "new_cases_smoothed": 74.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 72.005, + "new_cases_per_million": 13.49, + "new_cases_smoothed_per_million": 6.649, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-05-28", + "total_cases": 806.0, + "new_cases": 0.0, + "new_cases_smoothed": 74.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 72.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.649, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 73.15 + }, + { + "date": "2020-05-29", + "total_cases": 806.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 72.005, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.96, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-05-30", + "total_cases": 994.0, + "new_cases": 188.0, + "new_cases_smoothed": 93.571, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 88.8, + "new_cases_per_million": 16.795, + "new_cases_smoothed_per_million": 8.359, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-05-31", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 88.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.501, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-01", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 88.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.501, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-02", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.326, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-06-03", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-06-04", + "total_cases": 994.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.8, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 0.893, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-06-05", + "total_cases": 1317.0, + "new_cases": 323.0, + "new_cases_smoothed": 73.0, + "total_deaths": 14.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 117.655, + "new_cases_per_million": 28.855, + "new_cases_smoothed_per_million": 6.522, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.357, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 85.19 + }, + { + "date": "2020-06-06", + "total_cases": 1317.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 117.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.122, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-07", + "total_cases": 1317.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 117.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.122, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-08", + "total_cases": 1317.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 117.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.122, + "total_deaths_per_million": 1.251, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-09", + "total_cases": 1604.0, + "new_cases": 287.0, + "new_cases_smoothed": 87.143, + "total_deaths": 19.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 143.295, + "new_cases_per_million": 25.639, + "new_cases_smoothed_per_million": 7.785, + "total_deaths_per_million": 1.697, + "new_deaths_per_million": 0.447, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 85.19 + }, + { + "date": "2020-06-10", + "total_cases": 1604.0, + "new_cases": 0.0, + "new_cases_smoothed": 87.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 143.295, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.785, + "total_deaths_per_million": 1.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 85.19 + }, + { + "date": "2020-06-11", + "total_cases": 1604.0, + "new_cases": 0.0, + "new_cases_smoothed": 87.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 143.295, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.785, + "total_deaths_per_million": 1.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 85.19 + }, + { + "date": "2020-06-12", + "total_cases": 1604.0, + "new_cases": 0.0, + "new_cases_smoothed": 41.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 143.295, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.663, + "total_deaths_per_million": 1.697, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 85.19 + }, + { + "date": "2020-06-13", + "total_cases": 1670.0, + "new_cases": 66.0, + "new_cases_smoothed": 50.429, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 149.191, + "new_cases_per_million": 5.896, + "new_cases_smoothed_per_million": 4.505, + "total_deaths_per_million": 1.965, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 85.19 + }, + { + "date": "2020-06-14", + "total_cases": 1693.0, + "new_cases": 23.0, + "new_cases_smoothed": 53.714, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 151.245, + "new_cases_per_million": 2.055, + "new_cases_smoothed_per_million": 4.799, + "total_deaths_per_million": 2.412, + "new_deaths_per_million": 0.447, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 85.19 + }, + { + "date": "2020-06-15", + "total_cases": 1693.0, + "new_cases": 0.0, + "new_cases_smoothed": 53.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 151.245, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.799, + "total_deaths_per_million": 2.412, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 85.19 + }, + { + "date": "2020-06-16", + "total_cases": 1755.0, + "new_cases": 62.0, + "new_cases_smoothed": 21.571, + "total_deaths": 30.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 156.784, + "new_cases_per_million": 5.539, + "new_cases_smoothed_per_million": 1.927, + "total_deaths_per_million": 2.68, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 85.19 + }, + { + "date": "2020-06-17", + "total_cases": 1776.0, + "new_cases": 21.0, + "new_cases_smoothed": 24.571, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 158.66, + "new_cases_per_million": 1.876, + "new_cases_smoothed_per_million": 2.195, + "total_deaths_per_million": 2.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 85.19 + }, + { + "date": "2020-06-18", + "total_cases": 1807.0, + "new_cases": 31.0, + "new_cases_smoothed": 29.0, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 161.43, + "new_cases_per_million": 2.769, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 2.769, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 85.19 + }, + { + "date": "2020-06-19", + "total_cases": 1813.0, + "new_cases": 6.0, + "new_cases_smoothed": 29.857, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 161.966, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 2.667, + "total_deaths_per_million": 2.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 85.19 + }, + { + "date": "2020-06-20", + "total_cases": 1813.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.429, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 161.966, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.825, + "total_deaths_per_million": 2.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 85.19 + }, + { + "date": "2020-06-21", + "total_cases": 1864.0, + "new_cases": 51.0, + "new_cases_smoothed": 24.429, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 166.522, + "new_cases_per_million": 4.556, + "new_cases_smoothed_per_million": 2.182, + "total_deaths_per_million": 3.037, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 85.19 + }, + { + "date": "2020-06-22", + "total_cases": 1882.0, + "new_cases": 18.0, + "new_cases_smoothed": 27.0, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 168.13, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 2.412, + "total_deaths_per_million": 3.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.089, + "stringency_index": 85.19 + }, + { + "date": "2020-06-23", + "total_cases": 1892.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 169.023, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 3.037, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 85.19 + }, + { + "date": "2020-06-24", + "total_cases": 1916.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.0, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 171.167, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 1.787, + "total_deaths_per_million": 3.127, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 85.19 + }, + { + "date": "2020-06-25", + "total_cases": 1930.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.571, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 172.418, + "new_cases_per_million": 1.251, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 3.216, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 85.19 + }, + { + "date": "2020-06-26", + "total_cases": 1942.0, + "new_cases": 12.0, + "new_cases_smoothed": 18.429, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 173.49, + "new_cases_per_million": 1.072, + "new_cases_smoothed_per_million": 1.646, + "total_deaths_per_million": 3.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 85.19 + }, + { + "date": "2020-06-27", + "total_cases": 1952.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.857, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 174.383, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 1.774, + "total_deaths_per_million": 3.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 85.19 + }, + { + "date": "2020-06-28", + "total_cases": 1958.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.429, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 174.919, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 3.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-06-29", + "total_cases": 1989.0, + "new_cases": 31.0, + "new_cases_smoothed": 15.286, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 177.689, + "new_cases_per_million": 2.769, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 3.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-06-30", + "total_cases": 2006.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.286, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 179.207, + "new_cases_per_million": 1.519, + "new_cases_smoothed_per_million": 1.455, + "total_deaths_per_million": 3.305, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 85.19 + }, + { + "date": "2020-07-01", + "total_cases": 2006.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 179.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.149, + "total_deaths_per_million": 3.305, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-07-02", + "total_cases": 2006.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.857, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 179.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.97, + "total_deaths_per_million": 3.305, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 85.19 + }, + { + "date": "2020-07-03", + "total_cases": 2036.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.429, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.888, + "new_cases_per_million": 2.68, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 3.395, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-07-04", + "total_cases": 2036.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.0, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.072, + "total_deaths_per_million": 3.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-07-05", + "total_cases": 2036.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.995, + "total_deaths_per_million": 3.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-07-06", + "total_cases": 2036.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 181.888, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 3.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 85.19 + }, + { + "date": "2020-07-07", + "total_cases": 2093.0, + "new_cases": 57.0, + "new_cases_smoothed": 12.429, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 186.98, + "new_cases_per_million": 5.092, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 3.573, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 85.19 + }, + { + "date": "2020-07-08", + "total_cases": 2098.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.143, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 187.426, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 1.174, + "total_deaths_per_million": 3.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 2106.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 188.141, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 1.276, + "total_deaths_per_million": 3.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 2113.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 188.766, + "new_cases_per_million": 0.625, + "new_cases_smoothed_per_million": 0.983, + "total_deaths_per_million": 3.573, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 2129.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.286, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 190.196, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 1.187, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 2129.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 190.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.187, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 2139.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 191.089, + "new_cases_per_million": 0.893, + "new_cases_smoothed_per_million": 1.315, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 2148.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.893, + "new_cases_per_million": 0.804, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 2148.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.143, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 191.893, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 2153.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 192.34, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 2171.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.286, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 193.948, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 0.74, + "total_deaths_per_million": 3.663, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 2191.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.857, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 195.735, + "new_cases_per_million": 1.787, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 3.841, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 2191.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.857, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 195.735, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 3.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 2200.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.714, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 196.539, + "new_cases_per_million": 0.804, + "new_cases_smoothed_per_million": 0.778, + "total_deaths_per_million": 3.841, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 2211.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 197.521, + "new_cases_per_million": 0.983, + "new_cases_smoothed_per_million": 0.804, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 2211.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 197.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.804, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 2211.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 197.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.74, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 2239.0, + "new_cases": 28.0, + "new_cases_smoothed": 9.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 200.023, + "new_cases_per_million": 2.501, + "new_cases_smoothed_per_million": 0.868, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.051, + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 2258.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.571, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 201.72, + "new_cases_per_million": 1.697, + "new_cases_smoothed_per_million": 0.855, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 2258.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 201.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.855, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 2262.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.857, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 202.077, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.791, + "total_deaths_per_million": 4.02, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 2305.0, + "new_cases": 43.0, + "new_cases_smoothed": 13.429, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 205.919, + "new_cases_per_million": 3.841, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 2322.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.438, + "new_cases_per_million": 1.519, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 2322.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 2322.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.059, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 2322.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 207.438, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.817, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 2352.0, + "new_cases": 30.0, + "new_cases_smoothed": 13.429, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 210.118, + "new_cases_per_million": 2.68, + "new_cases_smoothed_per_million": 1.2, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 2429.0, + "new_cases": 77.0, + "new_cases_smoothed": 23.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 216.996, + "new_cases_per_million": 6.879, + "new_cases_smoothed_per_million": 2.131, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 2429.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 216.996, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.583, + "total_deaths_per_million": 4.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 2437.0, + "new_cases": 8.0, + "new_cases_smoothed": 16.429, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 217.711, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 1.468, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.089, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 2450.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 218.873, + "new_cases_per_million": 1.161, + "new_cases_smoothed_per_million": 1.634, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-07", + "total_cases": 2458.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 219.587, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 1.736, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-08", + "total_cases": 2463.0, + "new_cases": 5.0, + "new_cases_smoothed": 20.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.034, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 1.799, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-09", + "total_cases": 2463.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.417, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-10", + "total_cases": 2470.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.659, + "new_cases_per_million": 0.625, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-11", + "total_cases": 2470.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 220.659, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.523, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 81.48 + }, + { + "date": "2020-08-12", + "total_cases": 2472.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.838, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.447, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-13", + "total_cases": 2477.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.285, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.345, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-14", + "total_cases": 2478.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.374, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-15", + "total_cases": 2482.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 221.731, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-16", + "total_cases": 2488.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.267, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-17", + "total_cases": 2489.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.357, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-18", + "total_cases": 2490.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.446, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-08-19", + "total_cases": 2490.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.446, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-20", + "total_cases": 2494.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.803, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-21", + "total_cases": 2494.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 222.803, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-22", + "total_cases": 2497.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.071, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-23", + "total_cases": 2497.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.071, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-24", + "total_cases": 2499.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.25, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-25", + "total_cases": 2504.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.697, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-26", + "total_cases": 2507.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 223.965, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-27", + "total_cases": 2510.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.233, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-28", + "total_cases": 2514.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.59, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-29", + "total_cases": 2518.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.947, + "new_cases_per_million": 0.357, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-30", + "total_cases": 2519.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.037, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-08-31", + "total_cases": 2519.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.037, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-09-01", + "total_cases": 2527.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.751, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 2527.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 225.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 2532.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 226.198, + "new_cases_per_million": 0.447, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 2533.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 226.287, + "new_cases_per_million": 0.089, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 2536.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 226.555, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 4.199, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "ESP": { + "continent": "Europe", + "location": "Spain", + "population": 46754783.0, + "population_density": 93.105, + "median_age": 45.5, + "aged_65_older": 19.436, + "aged_70_older": 13.799, + "gdp_per_capita": 34272.36, + "extreme_poverty": 1.0, + "cardiovasc_death_rate": 99.403, + "diabetes_prevalence": 7.17, + "female_smokers": 27.4, + "male_smokers": 31.4, + "hospital_beds_per_thousand": 2.97, + "life_expectancy": 83.56, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.043, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.064, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 9.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.192, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 17.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.364, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.046, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 35.0, + "new_cases": 18.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.749, + "new_cases_per_million": 0.385, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 54.0, + "new_cases": 19.0, + "new_cases_smoothed": 7.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.155, + "new_cases_per_million": 0.406, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 82.0, + "new_cases": 28.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.754, + "new_cases_per_million": 0.599, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 136.0, + "new_cases": 54.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.909, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 0.409, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 192.0, + "new_cases": 56.0, + "new_cases_smoothed": 27.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.107, + "new_cases_per_million": 1.198, + "new_cases_smoothed_per_million": 0.577, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 267.0, + "new_cases": 75.0, + "new_cases_smoothed": 36.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.711, + "new_cases_per_million": 1.604, + "new_cases_smoothed_per_million": 0.788, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 348.0, + "new_cases": 81.0, + "new_cases_smoothed": 47.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.443, + "new_cases_per_million": 1.732, + "new_cases_smoothed_per_million": 1.011, + "total_deaths_per_million": 0.021, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 531.0, + "new_cases": 183.0, + "new_cases_smoothed": 70.857, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.357, + "new_cases_per_million": 3.914, + "new_cases_smoothed_per_million": 1.516, + "total_deaths_per_million": 0.064, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 764.0, + "new_cases": 233.0, + "new_cases_smoothed": 101.429, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 16.341, + "new_cases_per_million": 4.983, + "new_cases_smoothed_per_million": 2.169, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 1094.0, + "new_cases": 330.0, + "new_cases_smoothed": 144.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 23.399, + "new_cases_per_million": 7.058, + "new_cases_smoothed_per_million": 3.092, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 1527.0, + "new_cases": 433.0, + "new_cases_smoothed": 198.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 32.66, + "new_cases_per_million": 9.261, + "new_cases_smoothed_per_million": 4.25, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 25.0 + }, + { + "date": "2020-03-10", + "total_cases": 2299.0, + "new_cases": 772.0, + "new_cases_smoothed": 301.0, + "total_deaths": 28.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 49.171, + "new_cases_per_million": 16.512, + "new_cases_smoothed_per_million": 6.438, + "total_deaths_per_million": 0.599, + "new_deaths_per_million": 0.492, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 45.83 + }, + { + "date": "2020-03-11", + "total_cases": 3274.0, + "new_cases": 975.0, + "new_cases_smoothed": 429.571, + "total_deaths": 35.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 70.025, + "new_cases_per_million": 20.853, + "new_cases_smoothed_per_million": 9.188, + "total_deaths_per_million": 0.749, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 45.83 + }, + { + "date": "2020-03-12", + "total_cases": 4427.0, + "new_cases": 1153.0, + "new_cases_smoothed": 582.714, + "total_deaths": 47.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 94.685, + "new_cases_per_million": 24.661, + "new_cases_smoothed_per_million": 12.463, + "total_deaths_per_million": 1.005, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 45.83 + }, + { + "date": "2020-03-13", + "total_cases": 5958.0, + "new_cases": 1531.0, + "new_cases_smoothed": 775.286, + "total_deaths": 84.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 127.431, + "new_cases_per_million": 32.745, + "new_cases_smoothed_per_million": 16.582, + "total_deaths_per_million": 1.797, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.247, + "stringency_index": 45.83 + }, + { + "date": "2020-03-14", + "total_cases": 7641.0, + "new_cases": 1683.0, + "new_cases_smoothed": 982.429, + "total_deaths": 121.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 163.427, + "new_cases_per_million": 35.996, + "new_cases_smoothed_per_million": 21.012, + "total_deaths_per_million": 2.588, + "new_deaths_per_million": 0.791, + "new_deaths_smoothed_per_million": 0.354, + "stringency_index": 67.13 + }, + { + "date": "2020-03-15", + "total_cases": 9785.0, + "new_cases": 2144.0, + "new_cases_smoothed": 1241.571, + "total_deaths": 136.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 209.283, + "new_cases_per_million": 45.856, + "new_cases_smoothed_per_million": 26.555, + "total_deaths_per_million": 2.909, + "new_deaths_per_million": 0.321, + "new_deaths_smoothed_per_million": 0.4, + "stringency_index": 67.13 + }, + { + "date": "2020-03-16", + "total_cases": 11491.0, + "new_cases": 1706.0, + "new_cases_smoothed": 1423.429, + "total_deaths": 288.0, + "new_deaths": 152.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 245.772, + "new_cases_per_million": 36.488, + "new_cases_smoothed_per_million": 30.445, + "total_deaths_per_million": 6.16, + "new_deaths_per_million": 3.251, + "new_deaths_smoothed_per_million": 0.865, + "stringency_index": 68.98 + }, + { + "date": "2020-03-17", + "total_cases": 13994.0, + "new_cases": 2503.0, + "new_cases_smoothed": 1670.714, + "total_deaths": 309.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 299.306, + "new_cases_per_million": 53.535, + "new_cases_smoothed_per_million": 35.734, + "total_deaths_per_million": 6.609, + "new_deaths_per_million": 0.449, + "new_deaths_smoothed_per_million": 0.859, + "stringency_index": 71.76 + }, + { + "date": "2020-03-18", + "total_cases": 17688.0, + "new_cases": 3694.0, + "new_cases_smoothed": 2059.143, + "total_deaths": 491.0, + "new_deaths": 182.0, + "new_deaths_smoothed": 65.143, + "total_cases_per_million": 378.314, + "new_cases_per_million": 79.008, + "new_cases_smoothed_per_million": 44.041, + "total_deaths_per_million": 10.502, + "new_deaths_per_million": 3.893, + "new_deaths_smoothed_per_million": 1.393, + "stringency_index": 71.76 + }, + { + "date": "2020-03-19", + "total_cases": 21735.0, + "new_cases": 4047.0, + "new_cases_smoothed": 2472.571, + "total_deaths": 598.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 78.714, + "total_cases_per_million": 464.872, + "new_cases_per_million": 86.558, + "new_cases_smoothed_per_million": 52.884, + "total_deaths_per_million": 12.79, + "new_deaths_per_million": 2.289, + "new_deaths_smoothed_per_million": 1.684, + "stringency_index": 71.76 + }, + { + "date": "2020-03-20", + "total_cases": 26304.0, + "new_cases": 4569.0, + "new_cases_smoothed": 2906.571, + "total_deaths": 767.0, + "new_deaths": 169.0, + "new_deaths_smoothed": 97.571, + "total_cases_per_million": 562.595, + "new_cases_per_million": 97.723, + "new_cases_smoothed_per_million": 62.166, + "total_deaths_per_million": 16.405, + "new_deaths_per_million": 3.615, + "new_deaths_smoothed_per_million": 2.087, + "stringency_index": 71.76 + }, + { + "date": "2020-03-21", + "total_cases": 31750.0, + "new_cases": 5446.0, + "new_cases_smoothed": 3444.143, + "total_deaths": 1002.0, + "new_deaths": 235.0, + "new_deaths_smoothed": 125.857, + "total_cases_per_million": 679.075, + "new_cases_per_million": 116.48, + "new_cases_smoothed_per_million": 73.664, + "total_deaths_per_million": 21.431, + "new_deaths_per_million": 5.026, + "new_deaths_smoothed_per_million": 2.692, + "stringency_index": 71.76 + }, + { + "date": "2020-03-22", + "total_cases": 36616.0, + "new_cases": 4866.0, + "new_cases_smoothed": 3833.0, + "total_deaths": 1326.0, + "new_deaths": 324.0, + "new_deaths_smoothed": 170.0, + "total_cases_per_million": 783.15, + "new_cases_per_million": 104.075, + "new_cases_smoothed_per_million": 81.981, + "total_deaths_per_million": 28.361, + "new_deaths_per_million": 6.93, + "new_deaths_smoothed_per_million": 3.636, + "stringency_index": 71.76 + }, + { + "date": "2020-03-23", + "total_cases": 41262.0, + "new_cases": 4646.0, + "new_cases_smoothed": 4253.0, + "total_deaths": 1720.0, + "new_deaths": 394.0, + "new_deaths_smoothed": 204.571, + "total_cases_per_million": 882.519, + "new_cases_per_million": 99.37, + "new_cases_smoothed_per_million": 90.964, + "total_deaths_per_million": 36.788, + "new_deaths_per_million": 8.427, + "new_deaths_smoothed_per_million": 4.375, + "stringency_index": 71.76 + }, + { + "date": "2020-03-24", + "total_cases": 48953.0, + "new_cases": 7691.0, + "new_cases_smoothed": 4994.143, + "total_deaths": 2182.0, + "new_deaths": 462.0, + "new_deaths_smoothed": 267.571, + "total_cases_per_million": 1047.016, + "new_cases_per_million": 164.497, + "new_cases_smoothed_per_million": 106.816, + "total_deaths_per_million": 46.669, + "new_deaths_per_million": 9.881, + "new_deaths_smoothed_per_million": 5.723, + "stringency_index": 71.76 + }, + { + "date": "2020-03-25", + "total_cases": 57506.0, + "new_cases": 8553.0, + "new_cases_smoothed": 5688.286, + "total_deaths": 2696.0, + "new_deaths": 514.0, + "new_deaths_smoothed": 315.0, + "total_cases_per_million": 1229.949, + "new_cases_per_million": 182.933, + "new_cases_smoothed_per_million": 121.662, + "total_deaths_per_million": 57.663, + "new_deaths_per_million": 10.994, + "new_deaths_smoothed_per_million": 6.737, + "stringency_index": 71.76 + }, + { + "date": "2020-03-26", + "total_cases": 66460.0, + "new_cases": 8954.0, + "new_cases_smoothed": 6389.286, + "total_deaths": 3434.0, + "new_deaths": 738.0, + "new_deaths_smoothed": 405.143, + "total_cases_per_million": 1421.459, + "new_cases_per_million": 191.51, + "new_cases_smoothed_per_million": 136.655, + "total_deaths_per_million": 73.447, + "new_deaths_per_million": 15.784, + "new_deaths_smoothed_per_million": 8.665, + "stringency_index": 71.76 + }, + { + "date": "2020-03-27", + "total_cases": 75641.0, + "new_cases": 9181.0, + "new_cases_smoothed": 7048.143, + "total_deaths": 4089.0, + "new_deaths": 655.0, + "new_deaths_smoothed": 474.571, + "total_cases_per_million": 1617.824, + "new_cases_per_million": 196.365, + "new_cases_smoothed_per_million": 150.747, + "total_deaths_per_million": 87.456, + "new_deaths_per_million": 14.009, + "new_deaths_smoothed_per_million": 10.15, + "stringency_index": 71.76 + }, + { + "date": "2020-03-28", + "total_cases": 83885.0, + "new_cases": 8244.0, + "new_cases_smoothed": 7447.857, + "total_deaths": 4858.0, + "new_deaths": 769.0, + "new_deaths_smoothed": 550.857, + "total_cases_per_million": 1794.148, + "new_cases_per_million": 176.324, + "new_cases_smoothed_per_million": 159.296, + "total_deaths_per_million": 103.904, + "new_deaths_per_million": 16.448, + "new_deaths_smoothed_per_million": 11.782, + "stringency_index": 71.76 + }, + { + "date": "2020-03-29", + "total_cases": 90309.0, + "new_cases": 6424.0, + "new_cases_smoothed": 7670.429, + "total_deaths": 5690.0, + "new_deaths": 832.0, + "new_deaths_smoothed": 623.429, + "total_cases_per_million": 1931.546, + "new_cases_per_million": 137.398, + "new_cases_smoothed_per_million": 164.057, + "total_deaths_per_million": 121.699, + "new_deaths_per_million": 17.795, + "new_deaths_smoothed_per_million": 13.334, + "stringency_index": 71.76 + }, + { + "date": "2020-03-30", + "total_cases": 96122.0, + "new_cases": 5813.0, + "new_cases_smoothed": 7837.143, + "total_deaths": 6528.0, + "new_deaths": 838.0, + "new_deaths_smoothed": 686.857, + "total_cases_per_million": 2055.875, + "new_cases_per_million": 124.33, + "new_cases_smoothed_per_million": 167.622, + "total_deaths_per_million": 139.622, + "new_deaths_per_million": 17.923, + "new_deaths_smoothed_per_million": 14.691, + "stringency_index": 85.19 + }, + { + "date": "2020-03-31", + "total_cases": 104267.0, + "new_cases": 8145.0, + "new_cases_smoothed": 7902.0, + "total_deaths": 7340.0, + "new_deaths": 812.0, + "new_deaths_smoothed": 736.857, + "total_cases_per_million": 2230.082, + "new_cases_per_million": 174.207, + "new_cases_smoothed_per_million": 169.009, + "total_deaths_per_million": 156.989, + "new_deaths_per_million": 17.367, + "new_deaths_smoothed_per_million": 15.76, + "stringency_index": 85.19 + }, + { + "date": "2020-04-01", + "total_cases": 111680.0, + "new_cases": 7413.0, + "new_cases_smoothed": 7739.143, + "total_deaths": 8189.0, + "new_deaths": 849.0, + "new_deaths_smoothed": 784.714, + "total_cases_per_million": 2388.633, + "new_cases_per_million": 158.551, + "new_cases_smoothed_per_million": 165.526, + "total_deaths_per_million": 175.148, + "new_deaths_per_million": 18.159, + "new_deaths_smoothed_per_million": 16.784, + "stringency_index": 85.19 + }, + { + "date": "2020-04-02", + "total_cases": 119263.0, + "new_cases": 7583.0, + "new_cases_smoothed": 7543.286, + "total_deaths": 9053.0, + "new_deaths": 864.0, + "new_deaths_smoothed": 802.714, + "total_cases_per_million": 2550.819, + "new_cases_per_million": 162.187, + "new_cases_smoothed_per_million": 161.337, + "total_deaths_per_million": 193.627, + "new_deaths_per_million": 18.479, + "new_deaths_smoothed_per_million": 17.169, + "stringency_index": 85.19 + }, + { + "date": "2020-04-03", + "total_cases": 126535.0, + "new_cases": 7272.0, + "new_cases_smoothed": 7270.571, + "total_deaths": 10003.0, + "new_deaths": 950.0, + "new_deaths_smoothed": 844.857, + "total_cases_per_million": 2706.354, + "new_cases_per_million": 155.535, + "new_cases_smoothed_per_million": 155.504, + "total_deaths_per_million": 213.946, + "new_deaths_per_million": 20.319, + "new_deaths_smoothed_per_million": 18.07, + "stringency_index": 85.19 + }, + { + "date": "2020-04-04", + "total_cases": 133198.0, + "new_cases": 6663.0, + "new_cases_smoothed": 7044.714, + "total_deaths": 10935.0, + "new_deaths": 932.0, + "new_deaths_smoothed": 868.143, + "total_cases_per_million": 2848.864, + "new_cases_per_million": 142.509, + "new_cases_smoothed_per_million": 150.674, + "total_deaths_per_million": 233.88, + "new_deaths_per_million": 19.934, + "new_deaths_smoothed_per_million": 18.568, + "stringency_index": 85.19 + }, + { + "date": "2020-04-05", + "total_cases": 138731.0, + "new_cases": 5533.0, + "new_cases_smoothed": 6917.429, + "total_deaths": 11744.0, + "new_deaths": 809.0, + "new_deaths_smoothed": 864.857, + "total_cases_per_million": 2967.204, + "new_cases_per_million": 118.341, + "new_cases_smoothed_per_million": 147.951, + "total_deaths_per_million": 251.183, + "new_deaths_per_million": 17.303, + "new_deaths_smoothed_per_million": 18.498, + "stringency_index": 85.19 + }, + { + "date": "2020-04-06", + "total_cases": 142398.0, + "new_cases": 3667.0, + "new_cases_smoothed": 6610.857, + "total_deaths": 12418.0, + "new_deaths": 674.0, + "new_deaths_smoothed": 841.429, + "total_cases_per_million": 3045.635, + "new_cases_per_million": 78.43, + "new_cases_smoothed_per_million": 141.394, + "total_deaths_per_million": 265.598, + "new_deaths_per_million": 14.416, + "new_deaths_smoothed_per_million": 17.997, + "stringency_index": 85.19 + }, + { + "date": "2020-04-07", + "total_cases": 147607.0, + "new_cases": 5209.0, + "new_cases_smoothed": 6191.429, + "total_deaths": 13055.0, + "new_deaths": 637.0, + "new_deaths_smoothed": 816.429, + "total_cases_per_million": 3157.046, + "new_cases_per_million": 111.411, + "new_cases_smoothed_per_million": 132.423, + "total_deaths_per_million": 279.223, + "new_deaths_per_million": 13.624, + "new_deaths_smoothed_per_million": 17.462, + "stringency_index": 85.19 + }, + { + "date": "2020-04-08", + "total_cases": 153190.0, + "new_cases": 5583.0, + "new_cases_smoothed": 5930.0, + "total_deaths": 13798.0, + "new_deaths": 743.0, + "new_deaths_smoothed": 801.286, + "total_cases_per_million": 3276.456, + "new_cases_per_million": 119.41, + "new_cases_smoothed_per_million": 126.832, + "total_deaths_per_million": 295.114, + "new_deaths_per_million": 15.891, + "new_deaths_smoothed_per_million": 17.138, + "stringency_index": 85.19 + }, + { + "date": "2020-04-09", + "total_cases": 158935.0, + "new_cases": 5745.0, + "new_cases_smoothed": 5667.429, + "total_deaths": 14555.0, + "new_deaths": 757.0, + "new_deaths_smoothed": 786.0, + "total_cases_per_million": 3399.331, + "new_cases_per_million": 122.875, + "new_cases_smoothed_per_million": 121.216, + "total_deaths_per_million": 311.305, + "new_deaths_per_million": 16.191, + "new_deaths_smoothed_per_million": 16.811, + "stringency_index": 85.19 + }, + { + "date": "2020-04-10", + "total_cases": 163472.0, + "new_cases": 4537.0, + "new_cases_smoothed": 5276.714, + "total_deaths": 15238.0, + "new_deaths": 683.0, + "new_deaths_smoothed": 747.857, + "total_cases_per_million": 3496.37, + "new_cases_per_million": 97.038, + "new_cases_smoothed_per_million": 112.859, + "total_deaths_per_million": 325.913, + "new_deaths_per_million": 14.608, + "new_deaths_smoothed_per_million": 15.995, + "stringency_index": 85.19 + }, + { + "date": "2020-04-11", + "total_cases": 168022.0, + "new_cases": 4550.0, + "new_cases_smoothed": 4974.857, + "total_deaths": 15843.0, + "new_deaths": 605.0, + "new_deaths_smoothed": 701.143, + "total_cases_per_million": 3593.686, + "new_cases_per_million": 97.316, + "new_cases_smoothed_per_million": 106.403, + "total_deaths_per_million": 338.853, + "new_deaths_per_million": 12.94, + "new_deaths_smoothed_per_million": 14.996, + "stringency_index": 85.19 + }, + { + "date": "2020-04-12", + "total_cases": 171921.0, + "new_cases": 3899.0, + "new_cases_smoothed": 4741.429, + "total_deaths": 16353.0, + "new_deaths": 510.0, + "new_deaths_smoothed": 658.429, + "total_cases_per_million": 3677.078, + "new_cases_per_million": 83.393, + "new_cases_smoothed_per_million": 101.411, + "total_deaths_per_million": 349.761, + "new_deaths_per_million": 10.908, + "new_deaths_smoothed_per_million": 14.083, + "stringency_index": 85.19 + }, + { + "date": "2020-04-13", + "total_cases": 174951.0, + "new_cases": 3030.0, + "new_cases_smoothed": 4650.429, + "total_deaths": 16972.0, + "new_deaths": 619.0, + "new_deaths_smoothed": 650.571, + "total_cases_per_million": 3741.885, + "new_cases_per_million": 64.806, + "new_cases_smoothed_per_million": 99.464, + "total_deaths_per_million": 363.0, + "new_deaths_per_million": 13.239, + "new_deaths_smoothed_per_million": 13.915, + "total_tests": 930230.0, + "total_tests_per_thousand": 19.896, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-14", + "total_cases": 178067.0, + "new_cases": 3116.0, + "new_cases_smoothed": 4351.429, + "total_deaths": 17489.0, + "new_deaths": 517.0, + "new_deaths_smoothed": 633.429, + "total_cases_per_million": 3808.53, + "new_cases_per_million": 66.646, + "new_cases_smoothed_per_million": 93.069, + "total_deaths_per_million": 374.058, + "new_deaths_per_million": 11.058, + "new_deaths_smoothed_per_million": 13.548, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-15", + "total_cases": 182491.0, + "new_cases": 4424.0, + "new_cases_smoothed": 4185.857, + "total_deaths": 18276.0, + "new_deaths": 787.0, + "new_deaths_smoothed": 639.714, + "total_cases_per_million": 3903.151, + "new_cases_per_million": 94.621, + "new_cases_smoothed_per_million": 89.528, + "total_deaths_per_million": 390.89, + "new_deaths_per_million": 16.833, + "new_deaths_smoothed_per_million": 13.682, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-16", + "total_cases": 186311.0, + "new_cases": 3820.0, + "new_cases_smoothed": 3910.857, + "total_deaths": 18893.0, + "new_deaths": 617.0, + "new_deaths_smoothed": 619.714, + "total_cases_per_million": 3984.854, + "new_cases_per_million": 81.703, + "new_cases_smoothed_per_million": 83.646, + "total_deaths_per_million": 404.087, + "new_deaths_per_million": 13.197, + "new_deaths_smoothed_per_million": 13.255, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-17", + "total_cases": 190129.0, + "new_cases": 3818.0, + "new_cases_smoothed": 3808.143, + "total_deaths": 19478.0, + "new_deaths": 585.0, + "new_deaths_smoothed": 605.714, + "total_cases_per_million": 4066.514, + "new_cases_per_million": 81.66, + "new_cases_smoothed_per_million": 81.449, + "total_deaths_per_million": 416.599, + "new_deaths_per_million": 12.512, + "new_deaths_smoothed_per_million": 12.955, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-18", + "total_cases": 193965.0, + "new_cases": 3836.0, + "new_cases_smoothed": 3706.143, + "total_deaths": 20043.0, + "new_deaths": 565.0, + "new_deaths_smoothed": 600.0, + "total_cases_per_million": 4148.56, + "new_cases_per_million": 82.045, + "new_cases_smoothed_per_million": 79.268, + "total_deaths_per_million": 428.683, + "new_deaths_per_million": 12.084, + "new_deaths_smoothed_per_million": 12.833, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-19", + "total_cases": 193252.0, + "new_cases": -713.0, + "new_cases_smoothed": 3047.286, + "total_deaths": 20453.0, + "new_deaths": 410.0, + "new_deaths_smoothed": 585.714, + "total_cases_per_million": 4133.31, + "new_cases_per_million": -15.25, + "new_cases_smoothed_per_million": 65.176, + "total_deaths_per_million": 437.453, + "new_deaths_per_million": 8.769, + "new_deaths_smoothed_per_million": 12.527, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-20", + "total_cases": 195470.0, + "new_cases": 2218.0, + "new_cases_smoothed": 2931.286, + "total_deaths": 20852.0, + "new_deaths": 399.0, + "new_deaths_smoothed": 554.286, + "total_cases_per_million": 4180.749, + "new_cases_per_million": 47.439, + "new_cases_smoothed_per_million": 62.695, + "total_deaths_per_million": 445.986, + "new_deaths_per_million": 8.534, + "new_deaths_smoothed_per_million": 11.855, + "new_tests_smoothed": 10529.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 3.592, + "positive_rate": 0.278, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-21", + "total_cases": 198421.0, + "new_cases": 2951.0, + "new_cases_smoothed": 2907.714, + "total_deaths": 21282.0, + "new_deaths": 430.0, + "new_deaths_smoothed": 541.857, + "total_cases_per_million": 4243.865, + "new_cases_per_million": 63.117, + "new_cases_smoothed_per_million": 62.191, + "total_deaths_per_million": 455.183, + "new_deaths_per_million": 9.197, + "new_deaths_smoothed_per_million": 11.589, + "new_tests_smoothed": 10529.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 3.6210000000000004, + "positive_rate": 0.276, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-22", + "total_cases": 200733.0, + "new_cases": 2312.0, + "new_cases_smoothed": 2606.0, + "total_deaths": 21717.0, + "new_deaths": 435.0, + "new_deaths_smoothed": 491.571, + "total_cases_per_million": 4293.315, + "new_cases_per_million": 49.449, + "new_cases_smoothed_per_million": 55.738, + "total_deaths_per_million": 464.487, + "new_deaths_per_million": 9.304, + "new_deaths_smoothed_per_million": 10.514, + "new_tests_smoothed": 10529.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 4.04, + "positive_rate": 0.248, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-23", + "total_cases": 203649.0, + "new_cases": 2916.0, + "new_cases_smoothed": 2476.857, + "total_deaths": 22157.0, + "new_deaths": 440.0, + "new_deaths_smoothed": 466.286, + "total_cases_per_million": 4355.683, + "new_cases_per_million": 62.368, + "new_cases_smoothed_per_million": 52.975, + "total_deaths_per_million": 473.898, + "new_deaths_per_million": 9.411, + "new_deaths_smoothed_per_million": 9.973, + "total_tests": 1035522.0, + "total_tests_per_thousand": 22.148, + "new_tests_smoothed": 10529.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 4.251, + "positive_rate": 0.235, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-24", + "total_cases": 205763.0, + "new_cases": 2114.0, + "new_cases_smoothed": 2233.429, + "total_deaths": 22524.0, + "new_deaths": 367.0, + "new_deaths_smoothed": 435.143, + "total_cases_per_million": 4400.897, + "new_cases_per_million": 45.215, + "new_cases_smoothed_per_million": 47.769, + "total_deaths_per_million": 481.748, + "new_deaths_per_million": 7.849, + "new_deaths_smoothed_per_million": 9.307, + "new_tests_smoothed": 15466.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 6.925, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-25", + "total_cases": 208269.0, + "new_cases": 2506.0, + "new_cases_smoothed": 2043.429, + "total_deaths": 22902.0, + "new_deaths": 378.0, + "new_deaths_smoothed": 408.429, + "total_cases_per_million": 4454.496, + "new_cases_per_million": 53.599, + "new_cases_smoothed_per_million": 43.705, + "total_deaths_per_million": 489.832, + "new_deaths_per_million": 8.085, + "new_deaths_smoothed_per_million": 8.736, + "new_tests_smoothed": 20403.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 9.985, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-26", + "total_cases": 209910.0, + "new_cases": 1641.0, + "new_cases_smoothed": 2379.714, + "total_deaths": 23190.0, + "new_deaths": 288.0, + "new_deaths_smoothed": 391.0, + "total_cases_per_million": 4489.594, + "new_cases_per_million": 35.098, + "new_cases_smoothed_per_million": 50.898, + "total_deaths_per_million": 495.992, + "new_deaths_per_million": 6.16, + "new_deaths_smoothed_per_million": 8.363, + "new_tests_smoothed": 25340.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 10.648, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-27", + "total_cases": 211570.0, + "new_cases": 1660.0, + "new_cases_smoothed": 2300.0, + "total_deaths": 23190.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 334.0, + "total_cases_per_million": 4525.099, + "new_cases_per_million": 35.504, + "new_cases_smoothed_per_million": 49.193, + "total_deaths_per_million": 495.992, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.144, + "new_tests_smoothed": 30276.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 13.163, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-28", + "total_cases": 213095.0, + "new_cases": 1525.0, + "new_cases_smoothed": 2096.286, + "total_deaths": 23822.0, + "new_deaths": 632.0, + "new_deaths_smoothed": 362.857, + "total_cases_per_million": 4557.716, + "new_cases_per_million": 32.617, + "new_cases_smoothed_per_million": 44.836, + "total_deaths_per_million": 509.509, + "new_deaths_per_million": 13.517, + "new_deaths_smoothed_per_million": 7.761, + "new_tests_smoothed": 35213.0, + "new_tests_smoothed_per_thousand": 0.753, + "tests_per_case": 16.798, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-29", + "total_cases": 213942.0, + "new_cases": 847.0, + "new_cases_smoothed": 1887.0, + "total_deaths": 24275.0, + "new_deaths": 453.0, + "new_deaths_smoothed": 365.429, + "total_cases_per_million": 4575.831, + "new_cases_per_million": 18.116, + "new_cases_smoothed_per_million": 40.36, + "total_deaths_per_million": 519.198, + "new_deaths_per_million": 9.689, + "new_deaths_smoothed_per_million": 7.816, + "new_tests_smoothed": 40150.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 21.276999999999997, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-04-30", + "total_cases": 215183.0, + "new_cases": 1241.0, + "new_cases_smoothed": 1647.714, + "total_deaths": 24543.0, + "new_deaths": 268.0, + "new_deaths_smoothed": 340.857, + "total_cases_per_million": 4602.374, + "new_cases_per_million": 26.543, + "new_cases_smoothed_per_million": 35.242, + "total_deaths_per_million": 524.93, + "new_deaths_per_million": 5.732, + "new_deaths_smoothed_per_million": 7.29, + "total_tests": 1351130.0, + "total_tests_per_thousand": 28.898, + "new_tests_smoothed": 45087.0, + "new_tests_smoothed_per_thousand": 0.964, + "tests_per_case": 27.363000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-01", + "total_cases": 216570.0, + "new_cases": 1387.0, + "new_cases_smoothed": 1543.857, + "total_deaths": 24824.0, + "new_deaths": 281.0, + "new_deaths_smoothed": 328.571, + "total_cases_per_million": 4632.039, + "new_cases_per_million": 29.665, + "new_cases_smoothed_per_million": 33.02, + "total_deaths_per_million": 530.94, + "new_deaths_per_million": 6.01, + "new_deaths_smoothed_per_million": 7.028, + "new_tests_smoothed": 44239.0, + "new_tests_smoothed_per_thousand": 0.946, + "tests_per_case": 28.655, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-02", + "total_cases": 217804.0, + "new_cases": 1234.0, + "new_cases_smoothed": 1362.143, + "total_deaths": 25100.0, + "new_deaths": 276.0, + "new_deaths_smoothed": 314.0, + "total_cases_per_million": 4658.432, + "new_cases_per_million": 26.393, + "new_cases_smoothed_per_million": 29.134, + "total_deaths_per_million": 536.843, + "new_deaths_per_million": 5.903, + "new_deaths_smoothed_per_million": 6.716, + "new_tests_smoothed": 43392.0, + "new_tests_smoothed_per_thousand": 0.928, + "tests_per_case": 31.855999999999998, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-03", + "total_cases": 218739.0, + "new_cases": 935.0, + "new_cases_smoothed": 1261.286, + "total_deaths": 25264.0, + "new_deaths": 164.0, + "new_deaths_smoothed": 296.286, + "total_cases_per_million": 4678.43, + "new_cases_per_million": 19.998, + "new_cases_smoothed_per_million": 26.977, + "total_deaths_per_million": 540.351, + "new_deaths_per_million": 3.508, + "new_deaths_smoothed_per_million": 6.337, + "new_tests_smoothed": 42544.0, + "new_tests_smoothed_per_thousand": 0.91, + "tests_per_case": 33.731, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 85.19 + }, + { + "date": "2020-05-04", + "total_cases": 219205.0, + "new_cases": 466.0, + "new_cases_smoothed": 1090.714, + "total_deaths": 25428.0, + "new_deaths": 164.0, + "new_deaths_smoothed": 319.714, + "total_cases_per_million": 4688.397, + "new_cases_per_million": 9.967, + "new_cases_smoothed_per_million": 23.328, + "total_deaths_per_million": 543.859, + "new_deaths_per_million": 3.508, + "new_deaths_smoothed_per_million": 6.838, + "new_tests_smoothed": 41697.0, + "new_tests_smoothed_per_thousand": 0.892, + "tests_per_case": 38.229, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-05", + "total_cases": 220244.0, + "new_cases": 1039.0, + "new_cases_smoothed": 1021.286, + "total_deaths": 25613.0, + "new_deaths": 185.0, + "new_deaths_smoothed": 255.857, + "total_cases_per_million": 4710.62, + "new_cases_per_million": 22.222, + "new_cases_smoothed_per_million": 21.843, + "total_deaths_per_million": 547.816, + "new_deaths_per_million": 3.957, + "new_deaths_smoothed_per_million": 5.472, + "new_tests_smoothed": 40849.0, + "new_tests_smoothed_per_thousand": 0.874, + "tests_per_case": 39.998000000000005, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-06", + "total_cases": 221124.0, + "new_cases": 880.0, + "new_cases_smoothed": 1026.0, + "total_deaths": 25857.0, + "new_deaths": 244.0, + "new_deaths_smoothed": 226.0, + "total_cases_per_million": 4729.441, + "new_cases_per_million": 18.822, + "new_cases_smoothed_per_million": 21.944, + "total_deaths_per_million": 553.034, + "new_deaths_per_million": 5.219, + "new_deaths_smoothed_per_million": 4.834, + "new_tests_smoothed": 40002.0, + "new_tests_smoothed_per_thousand": 0.856, + "tests_per_case": 38.988, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-07", + "total_cases": 222045.0, + "new_cases": 921.0, + "new_cases_smoothed": 980.286, + "total_deaths": 26070.0, + "new_deaths": 213.0, + "new_deaths_smoothed": 218.143, + "total_cases_per_million": 4749.14, + "new_cases_per_million": 19.699, + "new_cases_smoothed_per_million": 20.967, + "total_deaths_per_million": 557.59, + "new_deaths_per_million": 4.556, + "new_deaths_smoothed_per_million": 4.666, + "total_tests": 1625211.0, + "total_tests_per_thousand": 34.76, + "new_tests_smoothed": 39154.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 39.941, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-08", + "total_cases": 223218.0, + "new_cases": 1173.0, + "new_cases_smoothed": 949.714, + "total_deaths": 26251.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 203.857, + "total_cases_per_million": 4774.228, + "new_cases_per_million": 25.088, + "new_cases_smoothed_per_million": 20.313, + "total_deaths_per_million": 561.461, + "new_deaths_per_million": 3.871, + "new_deaths_smoothed_per_million": 4.36, + "new_tests_smoothed": 39565.0, + "new_tests_smoothed_per_thousand": 0.846, + "tests_per_case": 41.66, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-09", + "total_cases": 223961.0, + "new_cases": 743.0, + "new_cases_smoothed": 879.571, + "total_deaths": 26478.0, + "new_deaths": 227.0, + "new_deaths_smoothed": 196.857, + "total_cases_per_million": 4790.12, + "new_cases_per_million": 15.891, + "new_cases_smoothed_per_million": 18.812, + "total_deaths_per_million": 566.316, + "new_deaths_per_million": 4.855, + "new_deaths_smoothed_per_million": 4.21, + "new_tests_smoothed": 39976.0, + "new_tests_smoothed_per_thousand": 0.855, + "tests_per_case": 45.449, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-10", + "total_cases": 227377.0, + "new_cases": 3416.0, + "new_cases_smoothed": 1234.0, + "total_deaths": 26621.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 193.857, + "total_cases_per_million": 4863.182, + "new_cases_per_million": 73.062, + "new_cases_smoothed_per_million": 26.393, + "total_deaths_per_million": 569.375, + "new_deaths_per_million": 3.059, + "new_deaths_smoothed_per_million": 4.146, + "new_tests_smoothed": 40386.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 32.728, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-11", + "total_cases": 227770.0, + "new_cases": 393.0, + "new_cases_smoothed": 1223.571, + "total_deaths": 26744.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 188.0, + "total_cases_per_million": 4871.587, + "new_cases_per_million": 8.406, + "new_cases_smoothed_per_million": 26.17, + "total_deaths_per_million": 572.006, + "new_deaths_per_million": 2.631, + "new_deaths_smoothed_per_million": 4.021, + "new_tests_smoothed": 40797.0, + "new_tests_smoothed_per_thousand": 0.873, + "tests_per_case": 33.343, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-12", + "total_cases": 228252.0, + "new_cases": 482.0, + "new_cases_smoothed": 1144.0, + "total_deaths": 26920.0, + "new_deaths": 176.0, + "new_deaths_smoothed": 186.714, + "total_cases_per_million": 4881.896, + "new_cases_per_million": 10.309, + "new_cases_smoothed_per_million": 24.468, + "total_deaths_per_million": 575.77, + "new_deaths_per_million": 3.764, + "new_deaths_smoothed_per_million": 3.993, + "new_tests_smoothed": 41207.0, + "new_tests_smoothed_per_thousand": 0.881, + "tests_per_case": 36.02, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 81.94 + }, + { + "date": "2020-05-13", + "total_cases": 228691.0, + "new_cases": 439.0, + "new_cases_smoothed": 1081.0, + "total_deaths": 27104.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 178.143, + "total_cases_per_million": 4891.286, + "new_cases_per_million": 9.389, + "new_cases_smoothed_per_million": 23.121, + "total_deaths_per_million": 579.705, + "new_deaths_per_million": 3.935, + "new_deaths_smoothed_per_million": 3.81, + "new_tests_smoothed": 41618.0, + "new_tests_smoothed_per_thousand": 0.89, + "tests_per_case": 38.5, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-14", + "total_cases": 229540.0, + "new_cases": 849.0, + "new_cases_smoothed": 1070.714, + "total_deaths": 27321.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 178.714, + "total_cases_per_million": 4909.444, + "new_cases_per_million": 18.159, + "new_cases_smoothed_per_million": 22.901, + "total_deaths_per_million": 584.347, + "new_deaths_per_million": 4.641, + "new_deaths_smoothed_per_million": 3.822, + "total_tests": 1919411.0, + "total_tests_per_thousand": 41.053, + "new_tests_smoothed": 42029.0, + "new_tests_smoothed_per_thousand": 0.899, + "tests_per_case": 39.253, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-15", + "total_cases": 230183.0, + "new_cases": 643.0, + "new_cases_smoothed": 995.0, + "total_deaths": 27459.0, + "new_deaths": 138.0, + "new_deaths_smoothed": 172.571, + "total_cases_per_million": 4923.197, + "new_cases_per_million": 13.753, + "new_cases_smoothed_per_million": 21.281, + "total_deaths_per_million": 587.298, + "new_deaths_per_million": 2.952, + "new_deaths_smoothed_per_million": 3.691, + "new_tests_smoothed": 42190.0, + "new_tests_smoothed_per_thousand": 0.902, + "tests_per_case": 42.402, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-16", + "total_cases": 230698.0, + "new_cases": 515.0, + "new_cases_smoothed": 962.429, + "total_deaths": 27563.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 155.0, + "total_cases_per_million": 4934.212, + "new_cases_per_million": 11.015, + "new_cases_smoothed_per_million": 20.585, + "total_deaths_per_million": 589.523, + "new_deaths_per_million": 2.224, + "new_deaths_smoothed_per_million": 3.315, + "new_tests_smoothed": 42350.0, + "new_tests_smoothed_per_thousand": 0.906, + "tests_per_case": 44.003, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-17", + "total_cases": 231350.0, + "new_cases": 652.0, + "new_cases_smoothed": 567.571, + "total_deaths": 27650.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 147.0, + "total_cases_per_million": 4948.157, + "new_cases_per_million": 13.945, + "new_cases_smoothed_per_million": 12.139, + "total_deaths_per_million": 591.383, + "new_deaths_per_million": 1.861, + "new_deaths_smoothed_per_million": 3.144, + "new_tests_smoothed": 42511.0, + "new_tests_smoothed_per_thousand": 0.909, + "tests_per_case": 74.9, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-05-18", + "total_cases": 231606.0, + "new_cases": 256.0, + "new_cases_smoothed": 548.0, + "total_deaths": 27709.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 137.857, + "total_cases_per_million": 4953.632, + "new_cases_per_million": 5.475, + "new_cases_smoothed_per_million": 11.721, + "total_deaths_per_million": 592.645, + "new_deaths_per_million": 1.262, + "new_deaths_smoothed_per_million": 2.949, + "new_tests_smoothed": 42672.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 77.869, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-05-19", + "total_cases": 232037.0, + "new_cases": 431.0, + "new_cases_smoothed": 540.714, + "total_deaths": 27778.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 122.571, + "total_cases_per_million": 4962.851, + "new_cases_per_million": 9.218, + "new_cases_smoothed_per_million": 11.565, + "total_deaths_per_million": 594.121, + "new_deaths_per_million": 1.476, + "new_deaths_smoothed_per_million": 2.622, + "new_tests_smoothed": 42833.0, + "new_tests_smoothed_per_thousand": 0.916, + "tests_per_case": 79.21600000000001, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-05-20", + "total_cases": 232555.0, + "new_cases": 518.0, + "new_cases_smoothed": 552.0, + "total_deaths": 27888.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 112.0, + "total_cases_per_million": 4973.93, + "new_cases_per_million": 11.079, + "new_cases_smoothed_per_million": 11.806, + "total_deaths_per_million": 596.474, + "new_deaths_per_million": 2.353, + "new_deaths_smoothed_per_million": 2.395, + "new_tests_smoothed": 42994.0, + "new_tests_smoothed_per_thousand": 0.92, + "tests_per_case": 77.888, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-05-21", + "total_cases": 233037.0, + "new_cases": 482.0, + "new_cases_smoothed": 499.571, + "total_deaths": 27940.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 88.429, + "total_cases_per_million": 4984.239, + "new_cases_per_million": 10.309, + "new_cases_smoothed_per_million": 10.685, + "total_deaths_per_million": 597.586, + "new_deaths_per_million": 1.112, + "new_deaths_smoothed_per_million": 1.891, + "total_tests": 2221497.0, + "total_tests_per_thousand": 47.514, + "new_tests_smoothed": 43155.0, + "new_tests_smoothed_per_thousand": 0.923, + "tests_per_case": 86.384, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 79.17 + }, + { + "date": "2020-05-22", + "total_cases": 234824.0, + "new_cases": 1787.0, + "new_cases_smoothed": 663.0, + "total_deaths": 28628.0, + "new_deaths": 688.0, + "new_deaths_smoothed": 167.0, + "total_cases_per_million": 5022.459, + "new_cases_per_million": 38.221, + "new_cases_smoothed_per_million": 14.18, + "total_deaths_per_million": 612.301, + "new_deaths_per_million": 14.715, + "new_deaths_smoothed_per_million": 3.572, + "new_tests_smoothed": 43413.0, + "new_tests_smoothed_per_thousand": 0.929, + "tests_per_case": 65.48, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-05-23", + "total_cases": 235290.0, + "new_cases": 466.0, + "new_cases_smoothed": 656.0, + "total_deaths": 28678.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 159.286, + "total_cases_per_million": 5032.426, + "new_cases_per_million": 9.967, + "new_cases_smoothed_per_million": 14.031, + "total_deaths_per_million": 613.37, + "new_deaths_per_million": 1.069, + "new_deaths_smoothed_per_million": 3.407, + "new_tests_smoothed": 43672.0, + "new_tests_smoothed_per_thousand": 0.934, + "tests_per_case": 66.57300000000001, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-05-24", + "total_cases": 235772.0, + "new_cases": 482.0, + "new_cases_smoothed": 631.714, + "total_deaths": 28752.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 157.429, + "total_cases_per_million": 5042.735, + "new_cases_per_million": 10.309, + "new_cases_smoothed_per_million": 13.511, + "total_deaths_per_million": 614.953, + "new_deaths_per_million": 1.583, + "new_deaths_smoothed_per_million": 3.367, + "new_tests_smoothed": 43930.0, + "new_tests_smoothed_per_thousand": 0.94, + "tests_per_case": 69.541, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-05-25", + "total_cases": 235400.0, + "new_cases": -372.0, + "new_cases_smoothed": 542.0, + "total_deaths": 26834.0, + "new_deaths": -1918.0, + "new_deaths_smoothed": -125.0, + "total_cases_per_million": 5034.779, + "new_cases_per_million": -7.956, + "new_cases_smoothed_per_million": 11.592, + "total_deaths_per_million": 573.931, + "new_deaths_per_million": -41.023, + "new_deaths_smoothed_per_million": -2.674, + "new_tests_smoothed": 44188.0, + "new_tests_smoothed_per_thousand": 0.945, + "tests_per_case": 81.528, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 75.46 + }, + { + "date": "2020-05-26", + "total_cases": 236259.0, + "new_cases": 859.0, + "new_cases_smoothed": 603.143, + "total_deaths": 27117.0, + "new_deaths": 283.0, + "new_deaths_smoothed": -94.429, + "total_cases_per_million": 5053.151, + "new_cases_per_million": 18.372, + "new_cases_smoothed_per_million": 12.9, + "total_deaths_per_million": 579.983, + "new_deaths_per_million": 6.053, + "new_deaths_smoothed_per_million": -2.02, + "new_tests_smoothed": 44446.0, + "new_tests_smoothed_per_thousand": 0.951, + "tests_per_case": 73.691, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 71.76 + }, + { + "date": "2020-05-27", + "total_cases": 236769.0, + "new_cases": 510.0, + "new_cases_smoothed": 602.0, + "total_deaths": 27118.0, + "new_deaths": 1.0, + "new_deaths_smoothed": -110.0, + "total_cases_per_million": 5064.059, + "new_cases_per_million": 10.908, + "new_cases_smoothed_per_million": 12.876, + "total_deaths_per_million": 580.005, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": -2.353, + "new_tests_smoothed": 44704.0, + "new_tests_smoothed_per_thousand": 0.956, + "tests_per_case": 74.259, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-05-28", + "total_cases": 237906.0, + "new_cases": 1137.0, + "new_cases_smoothed": 695.571, + "total_deaths": 27119.0, + "new_deaths": 1.0, + "new_deaths_smoothed": -117.286, + "total_cases_per_million": 5088.378, + "new_cases_per_million": 24.318, + "new_cases_smoothed_per_million": 14.877, + "total_deaths_per_million": 580.026, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": -2.509, + "total_tests": 2536234.0, + "total_tests_per_thousand": 54.245, + "new_tests_smoothed": 44962.0, + "new_tests_smoothed_per_thousand": 0.962, + "tests_per_case": 64.64, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-05-29", + "total_cases": 238564.0, + "new_cases": 658.0, + "new_cases_smoothed": 534.286, + "total_deaths": 27121.0, + "new_deaths": 2.0, + "new_deaths_smoothed": -215.286, + "total_cases_per_million": 5102.451, + "new_cases_per_million": 14.073, + "new_cases_smoothed_per_million": 11.427, + "total_deaths_per_million": 580.069, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": -4.605, + "new_tests_smoothed": 44389.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 83.081, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-05-30", + "total_cases": 239228.0, + "new_cases": 664.0, + "new_cases_smoothed": 562.571, + "total_deaths": 27125.0, + "new_deaths": 4.0, + "new_deaths_smoothed": -221.857, + "total_cases_per_million": 5116.653, + "new_cases_per_million": 14.202, + "new_cases_smoothed_per_million": 12.032, + "total_deaths_per_million": 580.155, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": -4.745, + "new_tests_smoothed": 43816.0, + "new_tests_smoothed_per_thousand": 0.937, + "tests_per_case": 77.885, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-05-31", + "total_cases": 239429.0, + "new_cases": 201.0, + "new_cases_smoothed": 522.429, + "total_deaths": 27127.0, + "new_deaths": 2.0, + "new_deaths_smoothed": -232.143, + "total_cases_per_million": 5120.952, + "new_cases_per_million": 4.299, + "new_cases_smoothed_per_million": 11.174, + "total_deaths_per_million": 580.197, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": -4.965, + "new_tests_smoothed": 43243.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 82.773, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-06-01", + "total_cases": 239638.0, + "new_cases": 209.0, + "new_cases_smoothed": 605.429, + "total_deaths": 27127.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 41.857, + "total_cases_per_million": 5125.422, + "new_cases_per_million": 4.47, + "new_cases_smoothed_per_million": 12.949, + "total_deaths_per_million": 580.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.895, + "new_tests_smoothed": 42669.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 70.477, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-02", + "total_cases": 239932.0, + "new_cases": 294.0, + "new_cases_smoothed": 524.714, + "total_deaths": 27127.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5131.71, + "new_cases_per_million": 6.288, + "new_cases_smoothed_per_million": 11.223, + "total_deaths_per_million": 580.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 42096.0, + "new_tests_smoothed_per_thousand": 0.9, + "tests_per_case": 80.227, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-03", + "total_cases": 240326.0, + "new_cases": 394.0, + "new_cases_smoothed": 508.143, + "total_deaths": 27128.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5140.137, + "new_cases_per_million": 8.427, + "new_cases_smoothed_per_million": 10.868, + "total_deaths_per_million": 580.219, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 41523.0, + "new_tests_smoothed_per_thousand": 0.888, + "tests_per_case": 81.715, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-04", + "total_cases": 240660.0, + "new_cases": 334.0, + "new_cases_smoothed": 393.429, + "total_deaths": 27133.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 5147.281, + "new_cases_per_million": 7.144, + "new_cases_smoothed_per_million": 8.415, + "total_deaths_per_million": 580.326, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.043, + "total_tests": 2822880.0, + "total_tests_per_thousand": 60.376, + "new_tests_smoothed": 40949.0, + "new_tests_smoothed_per_thousand": 0.876, + "tests_per_case": 104.08200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-05", + "total_cases": 240978.0, + "new_cases": 318.0, + "new_cases_smoothed": 344.857, + "total_deaths": 27134.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5154.082, + "new_cases_per_million": 6.801, + "new_cases_smoothed_per_million": 7.376, + "total_deaths_per_million": 580.347, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 39974.0, + "new_tests_smoothed_per_thousand": 0.855, + "tests_per_case": 115.915, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-06", + "total_cases": 241310.0, + "new_cases": 332.0, + "new_cases_smoothed": 297.429, + "total_deaths": 27135.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5161.183, + "new_cases_per_million": 7.101, + "new_cases_smoothed_per_million": 6.361, + "total_deaths_per_million": 580.368, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.031, + "new_tests_smoothed": 38999.0, + "new_tests_smoothed_per_thousand": 0.834, + "tests_per_case": 131.121, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-07", + "total_cases": 241550.0, + "new_cases": 240.0, + "new_cases_smoothed": 303.0, + "total_deaths": 27136.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5166.316, + "new_cases_per_million": 5.133, + "new_cases_smoothed_per_million": 6.481, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 38024.0, + "new_tests_smoothed_per_thousand": 0.813, + "tests_per_case": 125.492, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 66.67 + }, + { + "date": "2020-06-08", + "total_cases": 241717.0, + "new_cases": 167.0, + "new_cases_smoothed": 297.0, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5169.888, + "new_cases_per_million": 3.572, + "new_cases_smoothed_per_million": 6.352, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 37048.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 124.741, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 241966.0, + "new_cases": 249.0, + "new_cases_smoothed": 290.571, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5175.214, + "new_cases_per_million": 5.326, + "new_cases_smoothed_per_million": 6.215, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "new_tests_smoothed": 36073.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 124.145, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 242280.0, + "new_cases": 314.0, + "new_cases_smoothed": 279.143, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5181.93, + "new_cases_per_million": 6.716, + "new_cases_smoothed_per_million": 5.97, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests_smoothed": 35098.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 125.735, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 242707.0, + "new_cases": 427.0, + "new_cases_smoothed": 292.429, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5191.062, + "new_cases_per_million": 9.133, + "new_cases_smoothed_per_million": 6.255, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "total_tests": 3061738.0, + "total_tests_per_thousand": 65.485, + "new_tests_smoothed": 34123.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 116.68799999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 243209.0, + "new_cases": 502.0, + "new_cases_smoothed": 318.714, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5201.799, + "new_cases_per_million": 10.737, + "new_cases_smoothed_per_million": 6.817, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 33914.0, + "new_tests_smoothed_per_thousand": 0.725, + "tests_per_case": 106.40899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 243605.0, + "new_cases": 396.0, + "new_cases_smoothed": 327.857, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5210.269, + "new_cases_per_million": 8.47, + "new_cases_smoothed_per_million": 7.012, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests_smoothed": 33706.0, + "new_tests_smoothed_per_thousand": 0.721, + "tests_per_case": 102.807, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 243928.0, + "new_cases": 323.0, + "new_cases_smoothed": 339.714, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5217.177, + "new_cases_per_million": 6.908, + "new_cases_smoothed_per_million": 7.266, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 33498.0, + "new_tests_smoothed_per_thousand": 0.716, + "tests_per_case": 98.60600000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 244109.0, + "new_cases": 181.0, + "new_cases_smoothed": 341.714, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5221.049, + "new_cases_per_million": 3.871, + "new_cases_smoothed_per_million": 7.309, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 33289.0, + "new_tests_smoothed_per_thousand": 0.712, + "tests_per_case": 97.41799999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-16", + "total_cases": 244328.0, + "new_cases": 219.0, + "new_cases_smoothed": 337.429, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5225.733, + "new_cases_per_million": 4.684, + "new_cases_smoothed_per_million": 7.217, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 33081.0, + "new_tests_smoothed_per_thousand": 0.708, + "tests_per_case": 98.039, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 244683.0, + "new_cases": 355.0, + "new_cases_smoothed": 343.286, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5233.326, + "new_cases_per_million": 7.593, + "new_cases_smoothed_per_million": 7.342, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 32873.0, + "new_tests_smoothed_per_thousand": 0.703, + "tests_per_case": 95.76, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 245268.0, + "new_cases": 585.0, + "new_cases_smoothed": 365.857, + "total_deaths": 27136.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5245.838, + "new_cases_per_million": 12.512, + "new_cases_smoothed_per_million": 7.825, + "total_deaths_per_million": 580.39, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 3290388.0, + "total_tests_per_thousand": 70.375, + "new_tests_smoothed": 32664.0, + "new_tests_smoothed_per_thousand": 0.699, + "tests_per_case": 89.281, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 245575.0, + "new_cases": 307.0, + "new_cases_smoothed": 338.0, + "total_deaths": 28315.0, + "new_deaths": 1179.0, + "new_deaths_smoothed": 168.429, + "total_cases_per_million": 5252.404, + "new_cases_per_million": 6.566, + "new_cases_smoothed_per_million": 7.229, + "total_deaths_per_million": 605.606, + "new_deaths_per_million": 25.217, + "new_deaths_smoothed_per_million": 3.602, + "new_tests_smoothed": 31666.0, + "new_tests_smoothed_per_thousand": 0.677, + "tests_per_case": 93.686, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 245938.0, + "new_cases": 363.0, + "new_cases_smoothed": 333.286, + "total_deaths": 28322.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 169.429, + "total_cases_per_million": 5260.168, + "new_cases_per_million": 7.764, + "new_cases_smoothed_per_million": 7.128, + "total_deaths_per_million": 605.756, + "new_deaths_per_million": 0.15, + "new_deaths_smoothed_per_million": 3.624, + "new_tests_smoothed": 30668.0, + "new_tests_smoothed_per_thousand": 0.656, + "tests_per_case": 92.01700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 246272.0, + "new_cases": 334.0, + "new_cases_smoothed": 334.857, + "total_deaths": 28323.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 169.571, + "total_cases_per_million": 5267.311, + "new_cases_per_million": 7.144, + "new_cases_smoothed_per_million": 7.162, + "total_deaths_per_million": 605.778, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 3.627, + "new_tests_smoothed": 29670.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 88.605, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-22", + "total_cases": 246504.0, + "new_cases": 232.0, + "new_cases_smoothed": 342.143, + "total_deaths": 28324.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 169.714, + "total_cases_per_million": 5272.273, + "new_cases_per_million": 4.962, + "new_cases_smoothed_per_million": 7.318, + "total_deaths_per_million": 605.799, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 3.63, + "new_tests_smoothed": 28672.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 83.801, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-23", + "total_cases": 246752.0, + "new_cases": 248.0, + "new_cases_smoothed": 346.286, + "total_deaths": 28325.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 169.857, + "total_cases_per_million": 5277.578, + "new_cases_per_million": 5.304, + "new_cases_smoothed_per_million": 7.406, + "total_deaths_per_million": 605.82, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 3.633, + "new_tests_smoothed": 27674.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 79.917, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-24", + "total_cases": 247086.0, + "new_cases": 334.0, + "new_cases_smoothed": 343.286, + "total_deaths": 28327.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 170.143, + "total_cases_per_million": 5284.721, + "new_cases_per_million": 7.144, + "new_cases_smoothed_per_million": 7.342, + "total_deaths_per_million": 605.863, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 3.639, + "new_tests_smoothed": 26676.0, + "new_tests_smoothed_per_thousand": 0.571, + "tests_per_case": 77.708, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-25", + "total_cases": 247486.0, + "new_cases": 400.0, + "new_cases_smoothed": 316.857, + "total_deaths": 28330.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 170.571, + "total_cases_per_million": 5293.277, + "new_cases_per_million": 8.555, + "new_cases_smoothed_per_million": 6.777, + "total_deaths_per_million": 605.927, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 3.648, + "total_tests": 3470130.0, + "total_tests_per_thousand": 74.22, + "new_tests_smoothed": 25677.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 81.03699999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-26", + "total_cases": 247905.0, + "new_cases": 419.0, + "new_cases_smoothed": 332.857, + "total_deaths": 28338.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 5302.238, + "new_cases_per_million": 8.962, + "new_cases_smoothed_per_million": 7.119, + "total_deaths_per_million": 606.098, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.07, + "new_tests_smoothed": 25567.0, + "new_tests_smoothed_per_thousand": 0.547, + "tests_per_case": 76.811, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-27", + "total_cases": 248469.0, + "new_cases": 564.0, + "new_cases_smoothed": 361.571, + "total_deaths": 28341.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 5314.301, + "new_cases_per_million": 12.063, + "new_cases_smoothed_per_million": 7.733, + "total_deaths_per_million": 606.163, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.058, + "new_tests_smoothed": 25456.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 70.404, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-28", + "total_cases": 248770.0, + "new_cases": 301.0, + "new_cases_smoothed": 356.857, + "total_deaths": 28343.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 5320.739, + "new_cases_per_million": 6.438, + "new_cases_smoothed_per_million": 7.633, + "total_deaths_per_million": 606.205, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.061, + "new_tests_smoothed": 25346.0, + "new_tests_smoothed_per_thousand": 0.542, + "tests_per_case": 71.02600000000001, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-29", + "total_cases": 248970.0, + "new_cases": 200.0, + "new_cases_smoothed": 352.286, + "total_deaths": 28346.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 5325.017, + "new_cases_per_million": 4.278, + "new_cases_smoothed_per_million": 7.535, + "total_deaths_per_million": 606.27, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.067, + "new_tests_smoothed": 25235.0, + "new_tests_smoothed_per_thousand": 0.54, + "tests_per_case": 71.632, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-06-30", + "total_cases": 249271.0, + "new_cases": 301.0, + "new_cases_smoothed": 359.857, + "total_deaths": 28355.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 5331.455, + "new_cases_per_million": 6.438, + "new_cases_smoothed_per_million": 7.697, + "total_deaths_per_million": 606.462, + "new_deaths_per_million": 0.192, + "new_deaths_smoothed_per_million": 0.092, + "new_tests_smoothed": 25125.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 69.819, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-07-01", + "total_cases": 249659.0, + "new_cases": 388.0, + "new_cases_smoothed": 367.571, + "total_deaths": 28363.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 5339.753, + "new_cases_per_million": 8.299, + "new_cases_smoothed_per_million": 7.862, + "total_deaths_per_million": 606.633, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.11, + "new_tests_smoothed": 25014.0, + "new_tests_smoothed_per_thousand": 0.535, + "tests_per_case": 68.05199999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-07-02", + "total_cases": 250103.0, + "new_cases": 444.0, + "new_cases_smoothed": 373.857, + "total_deaths": 28368.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 5349.25, + "new_cases_per_million": 9.496, + "new_cases_smoothed_per_million": 7.996, + "total_deaths_per_million": 606.74, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.116, + "total_tests": 3644458.0, + "total_tests_per_thousand": 77.948, + "new_tests_smoothed": 24904.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 66.61399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-07-03", + "total_cases": 250545.0, + "new_cases": 442.0, + "new_cases_smoothed": 377.143, + "total_deaths": 28385.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 5358.703, + "new_cases_per_million": 9.454, + "new_cases_smoothed_per_million": 8.066, + "total_deaths_per_million": 607.104, + "new_deaths_per_million": 0.364, + "new_deaths_smoothed_per_million": 0.144, + "new_tests_smoothed": 25535.0, + "new_tests_smoothed_per_thousand": 0.546, + "tests_per_case": 67.706, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 39.35 + }, + { + "date": "2020-07-04", + "total_cases": 250545.0, + "new_cases": 0.0, + "new_cases_smoothed": 296.571, + "total_deaths": 28385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 5358.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.343, + "total_deaths_per_million": 607.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.134, + "new_tests_smoothed": 26166.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 88.228, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-05", + "total_cases": 250545.0, + "new_cases": 0.0, + "new_cases_smoothed": 253.571, + "total_deaths": 28385.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 5358.703, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.423, + "total_deaths_per_million": 607.104, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.128, + "new_tests_smoothed": 26797.0, + "new_tests_smoothed_per_thousand": 0.573, + "tests_per_case": 105.678, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-06", + "total_cases": 251789.0, + "new_cases": 1244.0, + "new_cases_smoothed": 402.714, + "total_deaths": 28388.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 5385.31, + "new_cases_per_million": 26.607, + "new_cases_smoothed_per_million": 8.613, + "total_deaths_per_million": 607.168, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.128, + "new_tests_smoothed": 27428.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 68.108, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-07", + "total_cases": 252130.0, + "new_cases": 341.0, + "new_cases_smoothed": 408.429, + "total_deaths": 28392.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 5392.603, + "new_cases_per_million": 7.293, + "new_cases_smoothed_per_million": 8.736, + "total_deaths_per_million": 607.253, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.113, + "new_tests_smoothed": 28059.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 68.7, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-08", + "total_cases": 252513.0, + "new_cases": 383.0, + "new_cases_smoothed": 407.714, + "total_deaths": 28396.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5400.795, + "new_cases_per_million": 8.192, + "new_cases_smoothed_per_million": 8.72, + "total_deaths_per_million": 607.339, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.101, + "new_tests_smoothed": 28690.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 70.368, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-09", + "total_cases": 253056.0, + "new_cases": 543.0, + "new_cases_smoothed": 421.857, + "total_deaths": 28401.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 5412.409, + "new_cases_per_million": 11.614, + "new_cases_smoothed_per_million": 9.023, + "total_deaths_per_million": 607.446, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.101, + "total_tests": 3849701.0, + "total_tests_per_thousand": 82.338, + "new_tests_smoothed": 29320.0, + "new_tests_smoothed_per_thousand": 0.627, + "tests_per_case": 69.502, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-10", + "total_cases": 253908.0, + "new_cases": 852.0, + "new_cases_smoothed": 480.429, + "total_deaths": 28403.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5430.632, + "new_cases_per_million": 18.223, + "new_cases_smoothed_per_million": 10.275, + "total_deaths_per_million": 607.489, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 29702.0, + "new_tests_smoothed_per_thousand": 0.635, + "tests_per_case": 61.824, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-11", + "total_cases": 253908.0, + "new_cases": 0.0, + "new_cases_smoothed": 480.429, + "total_deaths": 28403.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5430.632, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.275, + "total_deaths_per_million": 607.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 30085.0, + "new_tests_smoothed_per_thousand": 0.643, + "tests_per_case": 62.621, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-12", + "total_cases": 253908.0, + "new_cases": 0.0, + "new_cases_smoothed": 480.429, + "total_deaths": 28403.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5430.632, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.275, + "total_deaths_per_million": 607.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 30467.0, + "new_tests_smoothed_per_thousand": 0.652, + "tests_per_case": 63.416000000000004, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-13", + "total_cases": 255953.0, + "new_cases": 2045.0, + "new_cases_smoothed": 594.857, + "total_deaths": 28406.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5474.37, + "new_cases_per_million": 43.739, + "new_cases_smoothed_per_million": 12.723, + "total_deaths_per_million": 607.553, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.055, + "new_tests_smoothed": 30849.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 51.86, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-14", + "total_cases": 256619.0, + "new_cases": 666.0, + "new_cases_smoothed": 641.286, + "total_deaths": 28409.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5488.615, + "new_cases_per_million": 14.245, + "new_cases_smoothed_per_million": 13.716, + "total_deaths_per_million": 607.617, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 31231.0, + "new_tests_smoothed_per_thousand": 0.668, + "tests_per_case": 48.701, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-07-15", + "total_cases": 257494.0, + "new_cases": 875.0, + "new_cases_smoothed": 711.571, + "total_deaths": 28413.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5507.33, + "new_cases_per_million": 18.715, + "new_cases_smoothed_per_million": 15.219, + "total_deaths_per_million": 607.703, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 31613.0, + "new_tests_smoothed_per_thousand": 0.676, + "tests_per_case": 44.427, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-16", + "total_cases": 258855.0, + "new_cases": 1361.0, + "new_cases_smoothed": 828.429, + "total_deaths": 28416.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5536.439, + "new_cases_per_million": 29.109, + "new_cases_smoothed_per_million": 17.719, + "total_deaths_per_million": 607.767, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.046, + "total_tests": 4073664.0, + "total_tests_per_thousand": 87.128, + "new_tests_smoothed": 31995.0, + "new_tests_smoothed_per_thousand": 0.684, + "tests_per_case": 38.621, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-17", + "total_cases": 260255.0, + "new_cases": 1400.0, + "new_cases_smoothed": 906.714, + "total_deaths": 28420.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5566.382, + "new_cases_per_million": 29.943, + "new_cases_smoothed_per_million": 19.393, + "total_deaths_per_million": 607.852, + "new_deaths_per_million": 0.086, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 33003.0, + "new_tests_smoothed_per_thousand": 0.706, + "tests_per_case": 36.398, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-18", + "total_cases": 260255.0, + "new_cases": 0.0, + "new_cases_smoothed": 906.714, + "total_deaths": 28420.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5566.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.393, + "total_deaths_per_million": 607.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 34011.0, + "new_tests_smoothed_per_thousand": 0.727, + "tests_per_case": 37.51, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-19", + "total_cases": 260255.0, + "new_cases": 0.0, + "new_cases_smoothed": 906.714, + "total_deaths": 28420.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5566.382, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.393, + "total_deaths_per_million": 607.852, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 35019.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 38.622, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-20", + "total_cases": 264836.0, + "new_cases": 4581.0, + "new_cases_smoothed": 1269.0, + "total_deaths": 28422.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 5664.362, + "new_cases_per_million": 97.979, + "new_cases_smoothed_per_million": 27.142, + "total_deaths_per_million": 607.895, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.049, + "new_tests_smoothed": 36027.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 28.39, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-21", + "total_cases": 266194.0, + "new_cases": 1358.0, + "new_cases_smoothed": 1367.857, + "total_deaths": 28424.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5693.407, + "new_cases_per_million": 29.045, + "new_cases_smoothed_per_million": 29.256, + "total_deaths_per_million": 607.938, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.046, + "new_tests_smoothed": 37035.0, + "new_tests_smoothed_per_thousand": 0.792, + "tests_per_case": 27.075, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-22", + "total_cases": 267551.0, + "new_cases": 1357.0, + "new_cases_smoothed": 1436.714, + "total_deaths": 28426.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5722.431, + "new_cases_per_million": 29.024, + "new_cases_smoothed_per_million": 30.729, + "total_deaths_per_million": 607.981, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 38043.0, + "new_tests_smoothed_per_thousand": 0.814, + "tests_per_case": 26.479, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-23", + "total_cases": 270166.0, + "new_cases": 2615.0, + "new_cases_smoothed": 1615.857, + "total_deaths": 28429.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5778.361, + "new_cases_per_million": 55.93, + "new_cases_smoothed_per_million": 34.56, + "total_deaths_per_million": 608.045, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.04, + "total_tests": 4347022.0, + "total_tests_per_thousand": 92.975, + "new_tests_smoothed": 39051.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 24.166999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-24", + "total_cases": 272421.0, + "new_cases": 2255.0, + "new_cases_smoothed": 1738.0, + "total_deaths": 28432.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5826.591, + "new_cases_per_million": 48.23, + "new_cases_smoothed_per_million": 37.173, + "total_deaths_per_million": 608.109, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 39707.0, + "new_tests_smoothed_per_thousand": 0.849, + "tests_per_case": 22.846, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-25", + "total_cases": 272421.0, + "new_cases": 0.0, + "new_cases_smoothed": 1738.0, + "total_deaths": 28432.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5826.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.173, + "total_deaths_per_million": 608.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 40362.0, + "new_tests_smoothed_per_thousand": 0.863, + "tests_per_case": 23.223000000000003, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-26", + "total_cases": 272421.0, + "new_cases": 0.0, + "new_cases_smoothed": 1738.0, + "total_deaths": 28432.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5826.591, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 37.173, + "total_deaths_per_million": 608.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 41017.0, + "new_tests_smoothed_per_thousand": 0.877, + "tests_per_case": 23.6, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-27", + "total_cases": 278782.0, + "new_cases": 6361.0, + "new_cases_smoothed": 1992.286, + "total_deaths": 28434.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5962.641, + "new_cases_per_million": 136.05, + "new_cases_smoothed_per_million": 42.611, + "total_deaths_per_million": 608.152, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 41673.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 20.916999999999998, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-28", + "total_cases": 280610.0, + "new_cases": 1828.0, + "new_cases_smoothed": 2059.429, + "total_deaths": 28436.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6001.739, + "new_cases_per_million": 39.098, + "new_cases_smoothed_per_million": 44.047, + "total_deaths_per_million": 608.194, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.037, + "new_tests_smoothed": 42328.0, + "new_tests_smoothed_per_thousand": 0.905, + "tests_per_case": 20.553, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-29", + "total_cases": 282641.0, + "new_cases": 2031.0, + "new_cases_smoothed": 2155.714, + "total_deaths": 28441.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 6045.178, + "new_cases_per_million": 43.439, + "new_cases_smoothed_per_million": 46.107, + "total_deaths_per_million": 608.301, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.046, + "new_tests_smoothed": 42983.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 19.939, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-30", + "total_cases": 285430.0, + "new_cases": 2789.0, + "new_cases_smoothed": 2180.571, + "total_deaths": 28443.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 6104.83, + "new_cases_per_million": 59.652, + "new_cases_smoothed_per_million": 46.638, + "total_deaths_per_million": 608.344, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.043, + "total_tests": 4652493.0, + "total_tests_per_thousand": 99.508, + "new_tests_smoothed": 43639.0, + "new_tests_smoothed_per_thousand": 0.933, + "tests_per_case": 20.012999999999998, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-31", + "total_cases": 288522.0, + "new_cases": 3092.0, + "new_cases_smoothed": 2300.143, + "total_deaths": 28445.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6170.962, + "new_cases_per_million": 66.132, + "new_cases_smoothed_per_million": 49.196, + "total_deaths_per_million": 608.387, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 44169.0, + "new_tests_smoothed_per_thousand": 0.945, + "tests_per_case": 19.203, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-01", + "total_cases": 288522.0, + "new_cases": 0.0, + "new_cases_smoothed": 2300.143, + "total_deaths": 28445.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6170.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.196, + "total_deaths_per_million": 608.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 44699.0, + "new_tests_smoothed_per_thousand": 0.956, + "tests_per_case": 19.433, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-02", + "total_cases": 288522.0, + "new_cases": 0.0, + "new_cases_smoothed": 2300.143, + "total_deaths": 28445.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 6170.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 49.196, + "total_deaths_per_million": 608.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "new_tests_smoothed": 45229.0, + "new_tests_smoothed_per_thousand": 0.967, + "tests_per_case": 19.664, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-03", + "total_cases": 297054.0, + "new_cases": 8532.0, + "new_cases_smoothed": 2610.286, + "total_deaths": 28472.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 6353.446, + "new_cases_per_million": 182.484, + "new_cases_smoothed_per_million": 55.829, + "total_deaths_per_million": 608.964, + "new_deaths_per_million": 0.577, + "new_deaths_smoothed_per_million": 0.116, + "new_tests_smoothed": 45759.0, + "new_tests_smoothed_per_thousand": 0.979, + "tests_per_case": 17.53, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-04", + "total_cases": 302814.0, + "new_cases": 5760.0, + "new_cases_smoothed": 3172.0, + "total_deaths": 28498.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 6476.642, + "new_cases_per_million": 123.196, + "new_cases_smoothed_per_million": 67.843, + "total_deaths_per_million": 609.521, + "new_deaths_per_million": 0.556, + "new_deaths_smoothed_per_million": 0.189, + "new_tests_smoothed": 46289.0, + "new_tests_smoothed_per_thousand": 0.99, + "tests_per_case": 14.593, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-05", + "total_cases": 305767.0, + "new_cases": 2953.0, + "new_cases_smoothed": 3303.714, + "total_deaths": 28499.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6539.802, + "new_cases_per_million": 63.159, + "new_cases_smoothed_per_million": 70.66, + "total_deaths_per_million": 609.542, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.177, + "new_tests_smoothed": 46819.0, + "new_tests_smoothed_per_thousand": 1.001, + "tests_per_case": 14.172, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-06", + "total_cases": 309855.0, + "new_cases": 4088.0, + "new_cases_smoothed": 3489.286, + "total_deaths": 28500.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 6627.236, + "new_cases_per_million": 87.435, + "new_cases_smoothed_per_million": 74.629, + "total_deaths_per_million": 609.563, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.174, + "total_tests": 4983935.0, + "total_tests_per_thousand": 106.597, + "new_tests_smoothed": 47349.0, + "new_tests_smoothed_per_thousand": 1.013, + "tests_per_case": 13.57, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-07", + "total_cases": 314362.0, + "new_cases": 4507.0, + "new_cases_smoothed": 3691.429, + "total_deaths": 28503.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6723.633, + "new_cases_per_million": 96.397, + "new_cases_smoothed_per_million": 78.953, + "total_deaths_per_million": 609.627, + "new_deaths_per_million": 0.064, + "new_deaths_smoothed_per_million": 0.177, + "new_tests_smoothed": 48409.0, + "new_tests_smoothed_per_thousand": 1.035, + "tests_per_case": 13.114, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-08", + "total_cases": 314362.0, + "new_cases": 0.0, + "new_cases_smoothed": 3691.429, + "total_deaths": 28503.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6723.633, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.953, + "total_deaths_per_million": 609.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "new_tests_smoothed": 49469.0, + "new_tests_smoothed_per_thousand": 1.058, + "tests_per_case": 13.401, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-09", + "total_cases": 314362.0, + "new_cases": 0.0, + "new_cases_smoothed": 3691.429, + "total_deaths": 28503.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 6723.633, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 78.953, + "total_deaths_per_million": 609.627, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.177, + "new_tests_smoothed": 50528.0, + "new_tests_smoothed_per_thousand": 1.081, + "tests_per_case": 13.687999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-10", + "total_cases": 322980.0, + "new_cases": 8618.0, + "new_cases_smoothed": 3703.714, + "total_deaths": 28576.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 6907.956, + "new_cases_per_million": 184.323, + "new_cases_smoothed_per_million": 79.216, + "total_deaths_per_million": 611.189, + "new_deaths_per_million": 1.561, + "new_deaths_smoothed_per_million": 0.318, + "new_tests_smoothed": 51588.0, + "new_tests_smoothed_per_thousand": 1.103, + "tests_per_case": 13.929, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 60.65 + }, + { + "date": "2020-08-11", + "total_cases": 326612.0, + "new_cases": 3632.0, + "new_cases_smoothed": 3399.714, + "total_deaths": 28581.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 6985.638, + "new_cases_per_million": 77.682, + "new_cases_smoothed_per_million": 72.714, + "total_deaths_per_million": 611.296, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.254, + "new_tests_smoothed": 52648.0, + "new_tests_smoothed_per_thousand": 1.126, + "tests_per_case": 15.485999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 60.65 + }, + { + "date": "2020-08-12", + "total_cases": 329784.0, + "new_cases": 3172.0, + "new_cases_smoothed": 3431.0, + "total_deaths": 28579.0, + "new_deaths": -2.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 7053.482, + "new_cases_per_million": 67.843, + "new_cases_smoothed_per_million": 73.383, + "total_deaths_per_million": 611.253, + "new_deaths_per_million": -0.043, + "new_deaths_smoothed_per_million": 0.244, + "new_tests_smoothed": 53708.0, + "new_tests_smoothed_per_thousand": 1.149, + "tests_per_case": 15.654000000000002, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 60.65 + }, + { + "date": "2020-08-13", + "total_cases": 337334.0, + "new_cases": 7550.0, + "new_cases_smoothed": 3925.571, + "total_deaths": 28605.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 7214.962, + "new_cases_per_million": 161.481, + "new_cases_smoothed_per_million": 83.961, + "total_deaths_per_million": 611.809, + "new_deaths_per_million": 0.556, + "new_deaths_smoothed_per_million": 0.321, + "total_tests": 5367311.0, + "total_tests_per_thousand": 114.797, + "new_tests_smoothed": 54768.0, + "new_tests_smoothed_per_thousand": 1.171, + "tests_per_case": 13.952, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 60.65 + }, + { + "date": "2020-08-14", + "total_cases": 342813.0, + "new_cases": 5479.0, + "new_cases_smoothed": 4064.429, + "total_deaths": 28617.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 7332.148, + "new_cases_per_million": 117.186, + "new_cases_smoothed_per_million": 86.931, + "total_deaths_per_million": 612.066, + "new_deaths_per_million": 0.257, + "new_deaths_smoothed_per_million": 0.348, + "new_tests_smoothed": 56794.0, + "new_tests_smoothed_per_thousand": 1.215, + "tests_per_case": 13.972999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-15", + "total_cases": 342813.0, + "new_cases": 0.0, + "new_cases_smoothed": 4064.429, + "total_deaths": 28617.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 7332.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 86.931, + "total_deaths_per_million": 612.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.348, + "new_tests_smoothed": 58819.0, + "new_tests_smoothed_per_thousand": 1.258, + "tests_per_case": 14.472000000000001, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-16", + "total_cases": 342813.0, + "new_cases": 0.0, + "new_cases_smoothed": 4064.429, + "total_deaths": 28617.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 7332.148, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 86.931, + "total_deaths_per_million": 612.066, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.348, + "new_tests_smoothed": 60845.0, + "new_tests_smoothed_per_thousand": 1.301, + "tests_per_case": 14.97, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-17", + "total_cases": 359082.0, + "new_cases": 16269.0, + "new_cases_smoothed": 5157.429, + "total_deaths": 28646.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 7680.113, + "new_cases_per_million": 347.964, + "new_cases_smoothed_per_million": 110.308, + "total_deaths_per_million": 612.686, + "new_deaths_per_million": 0.62, + "new_deaths_smoothed_per_million": 0.214, + "new_tests_smoothed": 62870.0, + "new_tests_smoothed_per_thousand": 1.345, + "tests_per_case": 12.19, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-18", + "total_cases": 364196.0, + "new_cases": 5114.0, + "new_cases_smoothed": 5369.143, + "total_deaths": 28670.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 7789.492, + "new_cases_per_million": 109.379, + "new_cases_smoothed_per_million": 114.836, + "total_deaths_per_million": 613.199, + "new_deaths_per_million": 0.513, + "new_deaths_smoothed_per_million": 0.272, + "new_tests_smoothed": 64896.0, + "new_tests_smoothed_per_thousand": 1.388, + "tests_per_case": 12.087, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-19", + "total_cases": 370867.0, + "new_cases": 6671.0, + "new_cases_smoothed": 5869.0, + "total_deaths": 28797.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 7932.172, + "new_cases_per_million": 142.681, + "new_cases_smoothed_per_million": 125.527, + "total_deaths_per_million": 615.916, + "new_deaths_per_million": 2.716, + "new_deaths_smoothed_per_million": 0.666, + "new_tests_smoothed": 66921.0, + "new_tests_smoothed_per_thousand": 1.431, + "tests_per_case": 11.402000000000001, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-20", + "total_cases": 377906.0, + "new_cases": 7039.0, + "new_cases_smoothed": 5796.0, + "total_deaths": 28813.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 29.714, + "total_cases_per_million": 8082.724, + "new_cases_per_million": 150.551, + "new_cases_smoothed_per_million": 123.966, + "total_deaths_per_million": 616.258, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.636, + "total_tests": 5849939.0, + "total_tests_per_thousand": 125.12, + "new_tests_smoothed": 68947.0, + "new_tests_smoothed_per_thousand": 1.475, + "tests_per_case": 11.895999999999999, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-21", + "total_cases": 386054.0, + "new_cases": 8148.0, + "new_cases_smoothed": 6177.286, + "total_deaths": 28838.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 8256.995, + "new_cases_per_million": 174.271, + "new_cases_smoothed_per_million": 132.121, + "total_deaths_per_million": 616.793, + "new_deaths_per_million": 0.535, + "new_deaths_smoothed_per_million": 0.675, + "new_tests_smoothed": 70660.0, + "new_tests_smoothed_per_thousand": 1.511, + "tests_per_case": 11.439, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-22", + "total_cases": 386054.0, + "new_cases": 0.0, + "new_cases_smoothed": 6177.286, + "total_deaths": 28838.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 8256.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 132.121, + "total_deaths_per_million": 616.793, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.675, + "new_tests_smoothed": 72374.0, + "new_tests_smoothed_per_thousand": 1.548, + "tests_per_case": 11.716, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-23", + "total_cases": 386054.0, + "new_cases": 0.0, + "new_cases_smoothed": 6177.286, + "total_deaths": 28838.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 8256.995, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 132.121, + "total_deaths_per_million": 616.793, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.675, + "new_tests_smoothed": 74088.0, + "new_tests_smoothed_per_thousand": 1.585, + "tests_per_case": 11.994000000000002, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-24", + "total_cases": 405436.0, + "new_cases": 19382.0, + "new_cases_smoothed": 6622.0, + "total_deaths": 28872.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 32.286, + "total_cases_per_million": 8671.541, + "new_cases_per_million": 414.546, + "new_cases_smoothed_per_million": 141.633, + "total_deaths_per_million": 617.52, + "new_deaths_per_million": 0.727, + "new_deaths_smoothed_per_million": 0.691, + "new_tests_smoothed": 75801.0, + "new_tests_smoothed_per_thousand": 1.621, + "tests_per_case": 11.447000000000001, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-25", + "total_cases": 412553.0, + "new_cases": 7117.0, + "new_cases_smoothed": 6908.143, + "total_deaths": 28924.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 8823.76, + "new_cases_per_million": 152.22, + "new_cases_smoothed_per_million": 147.753, + "total_deaths_per_million": 618.632, + "new_deaths_per_million": 1.112, + "new_deaths_smoothed_per_million": 0.776, + "new_tests_smoothed": 77515.0, + "new_tests_smoothed_per_thousand": 1.658, + "tests_per_case": 11.220999999999998, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-26", + "total_cases": 419849.0, + "new_cases": 7296.0, + "new_cases_smoothed": 6997.429, + "total_deaths": 28971.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 24.857, + "total_cases_per_million": 8979.809, + "new_cases_per_million": 156.048, + "new_cases_smoothed_per_million": 149.662, + "total_deaths_per_million": 619.637, + "new_deaths_per_million": 1.005, + "new_deaths_smoothed_per_million": 0.532, + "new_tests_smoothed": 79228.0, + "new_tests_smoothed_per_thousand": 1.695, + "tests_per_case": 11.322000000000001, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-27", + "total_cases": 429507.0, + "new_cases": 9658.0, + "new_cases_smoothed": 7371.571, + "total_deaths": 28996.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 26.143, + "total_cases_per_million": 9186.376, + "new_cases_per_million": 206.567, + "new_cases_smoothed_per_million": 157.665, + "total_deaths_per_million": 620.172, + "new_deaths_per_million": 0.535, + "new_deaths_smoothed_per_million": 0.559, + "total_tests": 6416533.0, + "total_tests_per_thousand": 137.238, + "new_tests_smoothed": 80942.0, + "new_tests_smoothed_per_thousand": 1.731, + "tests_per_case": 10.98, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 62.5 + }, + { + "date": "2020-08-28", + "total_cases": 439286.0, + "new_cases": 9779.0, + "new_cases_smoothed": 7604.571, + "total_deaths": 29011.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 9395.531, + "new_cases_per_million": 209.155, + "new_cases_smoothed_per_million": 162.648, + "total_deaths_per_million": 620.493, + "new_deaths_per_million": 0.321, + "new_deaths_smoothed_per_million": 0.529, + "stringency_index": 62.5 + }, + { + "date": "2020-08-29", + "total_cases": 439286.0, + "new_cases": 0.0, + "new_cases_smoothed": 7604.571, + "total_deaths": 29011.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 9395.531, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 162.648, + "total_deaths_per_million": 620.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "stringency_index": 62.5 + }, + { + "date": "2020-08-30", + "total_cases": 439286.0, + "new_cases": 0.0, + "new_cases_smoothed": 7604.571, + "total_deaths": 29011.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 9395.531, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 162.648, + "total_deaths_per_million": 620.493, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.529, + "stringency_index": 62.5 + }, + { + "date": "2020-08-31", + "total_cases": 462858.0, + "new_cases": 23572.0, + "new_cases_smoothed": 8203.143, + "total_deaths": 29094.0, + "new_deaths": 83.0, + "new_deaths_smoothed": 31.714, + "total_cases_per_million": 9899.693, + "new_cases_per_million": 504.162, + "new_cases_smoothed_per_million": 175.45, + "total_deaths_per_million": 622.268, + "new_deaths_per_million": 1.775, + "new_deaths_smoothed_per_million": 0.678, + "stringency_index": 62.5 + }, + { + "date": "2020-09-01", + "total_cases": 470973.0, + "new_cases": 8115.0, + "new_cases_smoothed": 8345.714, + "total_deaths": 29152.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 32.571, + "total_cases_per_million": 10073.258, + "new_cases_per_million": 173.565, + "new_cases_smoothed_per_million": 178.5, + "total_deaths_per_million": 623.508, + "new_deaths_per_million": 1.241, + "new_deaths_smoothed_per_million": 0.697 + }, + { + "date": "2020-09-02", + "total_cases": 479554.0, + "new_cases": 8581.0, + "new_cases_smoothed": 8529.286, + "total_deaths": 29194.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 10256.79, + "new_cases_per_million": 183.532, + "new_cases_smoothed_per_million": 182.426, + "total_deaths_per_million": 624.407, + "new_deaths_per_million": 0.898, + "new_deaths_smoothed_per_million": 0.681 + }, + { + "date": "2020-09-03", + "total_cases": 488513.0, + "new_cases": 8959.0, + "new_cases_smoothed": 8429.429, + "total_deaths": 29234.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 10448.407, + "new_cases_per_million": 191.617, + "new_cases_smoothed_per_million": 180.29, + "total_deaths_per_million": 625.262, + "new_deaths_per_million": 0.856, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-09-04", + "total_cases": 498989.0, + "new_cases": 10476.0, + "new_cases_smoothed": 8529.0, + "total_deaths": 29418.0, + "new_deaths": 184.0, + "new_deaths_smoothed": 58.143, + "total_cases_per_million": 10672.47, + "new_cases_per_million": 224.063, + "new_cases_smoothed_per_million": 182.42, + "total_deaths_per_million": 629.198, + "new_deaths_per_million": 3.935, + "new_deaths_smoothed_per_million": 1.244 + } + ] + }, + "LKA": { + "continent": "Asia", + "location": "Sri Lanka", + "population": 21413250.0, + "population_density": 341.955, + "median_age": 34.1, + "aged_65_older": 10.069, + "aged_70_older": 5.331, + "gdp_per_capita": 11669.077, + "extreme_poverty": 0.7, + "cardiovasc_death_rate": 197.093, + "diabetes_prevalence": 10.68, + "female_smokers": 0.3, + "male_smokers": 27.0, + "hospital_beds_per_thousand": 3.6, + "life_expectancy": 76.98, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.093, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.14, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 18.52 + }, + { + "date": "2020-03-14", + "total_cases": 6.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.28, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-15", + "total_cases": 11.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.514, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-16", + "total_cases": 19.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.887, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-17", + "total_cases": 29.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.354, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-18", + "total_cases": 42.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.961, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-03-19", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.961, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-03-20", + "total_cases": 53.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.475, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-21", + "total_cases": 66.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.082, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.4, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-22", + "total_cases": 78.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.643, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.447, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-23", + "total_cases": 87.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.063, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-03-24", + "total_cases": 97.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.53, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-03-25", + "total_cases": 102.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.763, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.4, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-03-26", + "total_cases": 102.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.763, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.4, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 97.22 + }, + { + "date": "2020-03-27", + "total_cases": 106.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.95, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-28", + "total_cases": 106.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.95, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-03-29", + "total_cases": 115.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.371, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 100.0 + }, + { + "date": "2020-03-30", + "total_cases": 120.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.604, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 100.0 + }, + { + "date": "2020-03-31", + "total_cases": 120.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 100.0 + }, + { + "date": "2020-04-01", + "total_cases": 122.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.697, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 100.0 + }, + { + "date": "2020-04-02", + "total_cases": 143.0, + "new_cases": 21.0, + "new_cases_smoothed": 5.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.678, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 100.0 + }, + { + "date": "2020-04-03", + "total_cases": 148.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.912, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.14, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 100.0 + }, + { + "date": "2020-04-04", + "total_cases": 151.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.052, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.187, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-05", + "total_cases": 159.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.286, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.425, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-06", + "total_cases": 166.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 7.752, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-07", + "total_cases": 178.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.286, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8.313, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-08", + "total_cases": 185.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8.64, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.28, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-09", + "total_cases": 189.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.826, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 100.0 + }, + { + "date": "2020-04-10", + "total_cases": 190.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 8.873, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.027, + "stringency_index": 100.0 + }, + { + "date": "2020-04-11", + "total_cases": 197.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9.2, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 100.0 + }, + { + "date": "2020-04-12", + "total_cases": 199.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.293, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 100.0 + }, + { + "date": "2020-04-13", + "total_cases": 210.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.807, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 100.0 + }, + { + "date": "2020-04-14", + "total_cases": 218.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.181, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 100.0 + }, + { + "date": "2020-04-15", + "total_cases": 233.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.881, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 100.0 + }, + { + "date": "2020-04-16", + "total_cases": 237.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.068, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-17", + "total_cases": 238.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.115, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 100.0 + }, + { + "date": "2020-04-18", + "total_cases": 244.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.395, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-19", + "total_cases": 254.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.862, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-20", + "total_cases": 295.0, + "new_cases": 41.0, + "new_cases_smoothed": 12.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.777, + "new_cases_per_million": 1.915, + "new_cases_smoothed_per_million": 0.567, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-21", + "total_cases": 304.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.197, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.574, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 81.48 + }, + { + "date": "2020-04-22", + "total_cases": 310.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.477, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 330.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.411, + "new_cases_per_million": 0.934, + "new_cases_smoothed_per_million": 0.62, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 368.0, + "new_cases": 38.0, + "new_cases_smoothed": 18.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.186, + "new_cases_per_million": 1.775, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 420.0, + "new_cases": 52.0, + "new_cases_smoothed": 25.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.614, + "new_cases_per_million": 2.428, + "new_cases_smoothed_per_million": 1.174, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 462.0, + "new_cases": 42.0, + "new_cases_smoothed": 29.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.575, + "new_cases_per_million": 1.961, + "new_cases_smoothed_per_million": 1.388, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 523.0, + "new_cases": 61.0, + "new_cases_smoothed": 32.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 24.424, + "new_cases_per_million": 2.849, + "new_cases_smoothed_per_million": 1.521, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 588.0, + "new_cases": 65.0, + "new_cases_smoothed": 40.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 27.46, + "new_cases_per_million": 3.036, + "new_cases_smoothed_per_million": 1.895, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 619.0, + "new_cases": 31.0, + "new_cases_smoothed": 44.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.907, + "new_cases_per_million": 1.448, + "new_cases_smoothed_per_million": 2.061, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 649.0, + "new_cases": 30.0, + "new_cases_smoothed": 45.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 30.308, + "new_cases_per_million": 1.401, + "new_cases_smoothed_per_million": 2.128, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 665.0, + "new_cases": 16.0, + "new_cases_smoothed": 42.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.056, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 1.981, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 690.0, + "new_cases": 25.0, + "new_cases_smoothed": 38.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.223, + "new_cases_per_million": 1.168, + "new_cases_smoothed_per_million": 1.801, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 705.0, + "new_cases": 15.0, + "new_cases_smoothed": 34.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.924, + "new_cases_per_million": 0.701, + "new_cases_smoothed_per_million": 1.621, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 718.0, + "new_cases": 13.0, + "new_cases_smoothed": 27.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.531, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 1.301, + "total_deaths_per_million": 0.327, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-05", + "total_cases": 755.0, + "new_cases": 37.0, + "new_cases_smoothed": 23.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 35.259, + "new_cases_per_million": 1.728, + "new_cases_smoothed_per_million": 1.114, + "total_deaths_per_million": 0.374, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 771.0, + "new_cases": 16.0, + "new_cases_smoothed": 21.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 36.006, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 1.014, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 797.0, + "new_cases": 26.0, + "new_cases_smoothed": 21.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.22, + "new_cases_per_million": 1.214, + "new_cases_smoothed_per_million": 0.987, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-08", + "total_cases": 824.0, + "new_cases": 27.0, + "new_cases_smoothed": 22.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.481, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-09", + "total_cases": 835.0, + "new_cases": 11.0, + "new_cases_smoothed": 20.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.995, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-10", + "total_cases": 847.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 39.555, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.947, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 863.0, + "new_cases": 16.0, + "new_cases_smoothed": 20.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 40.302, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 0.967, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 79.63 + }, + { + "date": "2020-05-12", + "total_cases": 869.0, + "new_cases": 6.0, + "new_cases_smoothed": 16.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.582, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.761, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 79.63 + }, + { + "date": "2020-05-13", + "total_cases": 889.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.516, + "new_cases_per_million": 0.934, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 915.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.731, + "new_cases_per_million": 1.214, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 925.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.198, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.674, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-16", + "total_cases": 935.0, + "new_cases": 10.0, + "new_cases_smoothed": 14.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.665, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.667, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-17", + "total_cases": 960.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.832, + "new_cases_per_million": 1.168, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-18", + "total_cases": 981.0, + "new_cases": 21.0, + "new_cases_smoothed": 16.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.813, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 0.787, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-19", + "total_cases": 992.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.326, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.821, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-20", + "total_cases": 1027.0, + "new_cases": 35.0, + "new_cases_smoothed": 19.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.961, + "new_cases_per_million": 1.635, + "new_cases_smoothed_per_million": 0.921, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-21", + "total_cases": 1028.0, + "new_cases": 1.0, + "new_cases_smoothed": 16.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.008, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 1055.0, + "new_cases": 27.0, + "new_cases_smoothed": 18.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.269, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 0.867, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-23", + "total_cases": 1068.0, + "new_cases": 13.0, + "new_cases_smoothed": 19.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.876, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.887, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-24", + "total_cases": 1089.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.856, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 0.861, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-25", + "total_cases": 1141.0, + "new_cases": 52.0, + "new_cases_smoothed": 22.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.285, + "new_cases_per_million": 2.428, + "new_cases_smoothed_per_million": 1.067, + "total_deaths_per_million": 0.42, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-26", + "total_cases": 1182.0, + "new_cases": 41.0, + "new_cases_smoothed": 27.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 55.199, + "new_cases_per_million": 1.915, + "new_cases_smoothed_per_million": 1.268, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-05-27", + "total_cases": 1319.0, + "new_cases": 137.0, + "new_cases_smoothed": 41.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 61.597, + "new_cases_per_million": 6.398, + "new_cases_smoothed_per_million": 1.948, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-05-28", + "total_cases": 1469.0, + "new_cases": 150.0, + "new_cases_smoothed": 63.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 68.602, + "new_cases_per_million": 7.005, + "new_cases_smoothed_per_million": 2.942, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-05-29", + "total_cases": 1530.0, + "new_cases": 61.0, + "new_cases_smoothed": 67.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 71.451, + "new_cases_per_million": 2.849, + "new_cases_smoothed_per_million": 3.169, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-05-30", + "total_cases": 1558.0, + "new_cases": 28.0, + "new_cases_smoothed": 70.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 72.759, + "new_cases_per_million": 1.308, + "new_cases_smoothed_per_million": 3.269, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-05-31", + "total_cases": 1620.0, + "new_cases": 62.0, + "new_cases_smoothed": 75.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 75.654, + "new_cases_per_million": 2.895, + "new_cases_smoothed_per_million": 3.543, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-01", + "total_cases": 1633.0, + "new_cases": 13.0, + "new_cases_smoothed": 70.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 76.261, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 3.282, + "total_deaths_per_million": 0.467, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-02", + "total_cases": 1643.0, + "new_cases": 10.0, + "new_cases_smoothed": 65.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 76.728, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 3.076, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-03", + "total_cases": 1683.0, + "new_cases": 40.0, + "new_cases_smoothed": 52.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 78.596, + "new_cases_per_million": 1.868, + "new_cases_smoothed_per_million": 2.428, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-04", + "total_cases": 1749.0, + "new_cases": 66.0, + "new_cases_smoothed": 40.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 81.678, + "new_cases_per_million": 3.082, + "new_cases_smoothed_per_million": 1.868, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-05", + "total_cases": 1797.0, + "new_cases": 48.0, + "new_cases_smoothed": 38.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 83.92, + "new_cases_per_million": 2.242, + "new_cases_smoothed_per_million": 1.781, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-06", + "total_cases": 1801.0, + "new_cases": 4.0, + "new_cases_smoothed": 34.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.107, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 1.621, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-07", + "total_cases": 1814.0, + "new_cases": 13.0, + "new_cases_smoothed": 27.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.714, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 1.294, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 76.85 + }, + { + "date": "2020-06-08", + "total_cases": 1835.0, + "new_cases": 21.0, + "new_cases_smoothed": 28.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.695, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 1.348, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 60.19 + }, + { + "date": "2020-06-09", + "total_cases": 1857.0, + "new_cases": 22.0, + "new_cases_smoothed": 30.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.722, + "new_cases_per_million": 1.027, + "new_cases_smoothed_per_million": 1.428, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-10", + "total_cases": 1859.0, + "new_cases": 2.0, + "new_cases_smoothed": 25.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.815, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 1.174, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-11", + "total_cases": 1869.0, + "new_cases": 10.0, + "new_cases_smoothed": 17.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.282, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.801, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-12", + "total_cases": 1877.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.656, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.534, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-13", + "total_cases": 1880.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.796, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.527, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-14", + "total_cases": 1884.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.983, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-15", + "total_cases": 1889.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.216, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.36, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-16", + "total_cases": 1905.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.964, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-17", + "total_cases": 1915.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.431, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-18", + "total_cases": 1924.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.851, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-19", + "total_cases": 1947.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.925, + "new_cases_per_million": 1.074, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-20", + "total_cases": 1950.0, + "new_cases": 3.0, + "new_cases_smoothed": 10.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.065, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.467, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-21", + "total_cases": 1950.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-22", + "total_cases": 1950.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.065, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-23", + "total_cases": 1951.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.112, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-24", + "total_cases": 1991.0, + "new_cases": 40.0, + "new_cases_smoothed": 10.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.98, + "new_cases_per_million": 1.868, + "new_cases_smoothed_per_million": 0.507, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-25", + "total_cases": 2001.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.447, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-26", + "total_cases": 2010.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.867, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-27", + "total_cases": 2014.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 94.054, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.427, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-06-28", + "total_cases": 2033.0, + "new_cases": 19.0, + "new_cases_smoothed": 11.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 94.941, + "new_cases_per_million": 0.887, + "new_cases_smoothed_per_million": 0.554, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-29", + "total_cases": 2037.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.128, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.58, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-06-30", + "total_cases": 2042.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.362, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.607, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-01", + "total_cases": 2047.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.595, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-02", + "total_cases": 2054.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.922, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-03", + "total_cases": 2066.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.482, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-04", + "total_cases": 2069.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.622, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-05", + "total_cases": 2074.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.856, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-06", + "total_cases": 2076.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.949, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-07", + "total_cases": 2078.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.043, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-08", + "total_cases": 2081.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.183, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.227, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-09", + "total_cases": 2094.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.79, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-10", + "total_cases": 2350.0, + "new_cases": 256.0, + "new_cases_smoothed": 40.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 109.745, + "new_cases_per_million": 11.955, + "new_cases_smoothed_per_million": 1.895, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-11", + "total_cases": 2454.0, + "new_cases": 104.0, + "new_cases_smoothed": 55.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.602, + "new_cases_per_million": 4.857, + "new_cases_smoothed_per_million": 2.569, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-12", + "total_cases": 2511.0, + "new_cases": 57.0, + "new_cases_smoothed": 62.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.264, + "new_cases_per_million": 2.662, + "new_cases_smoothed_per_million": 2.915, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-13", + "total_cases": 2617.0, + "new_cases": 106.0, + "new_cases_smoothed": 77.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.214, + "new_cases_per_million": 4.95, + "new_cases_smoothed_per_million": 3.609, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-14", + "total_cases": 2646.0, + "new_cases": 29.0, + "new_cases_smoothed": 81.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.568, + "new_cases_per_million": 1.354, + "new_cases_smoothed_per_million": 3.789, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 2665.0, + "new_cases": 19.0, + "new_cases_smoothed": 83.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.456, + "new_cases_per_million": 0.887, + "new_cases_smoothed_per_million": 3.896, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 2674.0, + "new_cases": 9.0, + "new_cases_smoothed": 82.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.876, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 3.869, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 2687.0, + "new_cases": 13.0, + "new_cases_smoothed": 48.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.483, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 2.248, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-18", + "total_cases": 2697.0, + "new_cases": 10.0, + "new_cases_smoothed": 34.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.95, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 1.621, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-19", + "total_cases": 2704.0, + "new_cases": 7.0, + "new_cases_smoothed": 27.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.277, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 1.288, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-20", + "total_cases": 2724.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.211, + "new_cases_per_million": 0.934, + "new_cases_smoothed_per_million": 0.714, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-21", + "total_cases": 2730.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.491, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-22", + "total_cases": 2730.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 127.491, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.434, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-23", + "total_cases": 2752.0, + "new_cases": 22.0, + "new_cases_smoothed": 11.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.519, + "new_cases_per_million": 1.027, + "new_cases_smoothed_per_million": 0.52, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-24", + "total_cases": 2753.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.565, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-25", + "total_cases": 2764.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.079, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.447, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-26", + "total_cases": 2770.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.359, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.44, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 53.7 + }, + { + "date": "2020-07-27", + "total_cases": 2782.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.92, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-28", + "total_cases": 2805.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.994, + "new_cases_per_million": 1.074, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-29", + "total_cases": 2810.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.227, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.534, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-30", + "total_cases": 2811.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.274, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-07-31", + "total_cases": 2814.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.414, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-08-01", + "total_cases": 2815.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.461, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-02", + "total_cases": 2815.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.461, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-03", + "total_cases": 2823.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 131.834, + "new_cases_per_million": 0.374, + "new_cases_smoothed_per_million": 0.274, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-04", + "total_cases": 2828.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.068, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-05", + "total_cases": 2834.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.348, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-06", + "total_cases": 2839.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.581, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.187, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-07", + "total_cases": 2839.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.167, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-08", + "total_cases": 2839.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.581, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.16, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-09", + "total_cases": 2841.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.675, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.173, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-10", + "total_cases": 2844.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 132.815, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-11", + "total_cases": 2871.0, + "new_cases": 27.0, + "new_cases_smoothed": 6.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.076, + "new_cases_per_million": 1.261, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-12", + "total_cases": 2880.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.496, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-13", + "total_cases": 2881.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.543, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-14", + "total_cases": 2882.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.59, + "new_cases_per_million": 0.047, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-15", + "total_cases": 2886.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.776, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-16", + "total_cases": 2890.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 134.963, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-17", + "total_cases": 2893.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.103, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-18", + "total_cases": 2900.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.43, + "new_cases_per_million": 0.327, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-08-19", + "total_cases": 2902.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.524, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-08-20", + "total_cases": 2902.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 135.524, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-08-21", + "total_cases": 2918.0, + "new_cases": 16.0, + "new_cases_smoothed": 5.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 136.271, + "new_cases_per_million": 0.747, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-08-22", + "total_cases": 2941.0, + "new_cases": 23.0, + "new_cases_smoothed": 7.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 137.345, + "new_cases_per_million": 1.074, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-08-23", + "total_cases": 2947.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.143, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.625, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-24", + "total_cases": 2953.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.905, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.4, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-25", + "total_cases": 2959.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.185, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-26", + "total_cases": 2971.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.746, + "new_cases_per_million": 0.56, + "new_cases_smoothed_per_million": 0.46, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-27", + "total_cases": 2984.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.353, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-28", + "total_cases": 2986.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.446, + "new_cases_per_million": 0.093, + "new_cases_smoothed_per_million": 0.454, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-29", + "total_cases": 2989.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.586, + "new_cases_per_million": 0.14, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 25.93 + }, + { + "date": "2020-08-30", + "total_cases": 2995.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.867, + "new_cases_per_million": 0.28, + "new_cases_smoothed_per_million": 0.32, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-08-31", + "total_cases": 3012.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 140.661, + "new_cases_per_million": 0.794, + "new_cases_smoothed_per_million": 0.394, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 3049.0, + "new_cases": 37.0, + "new_cases_smoothed": 12.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.388, + "new_cases_per_million": 1.728, + "new_cases_smoothed_per_million": 0.6, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 3092.0, + "new_cases": 43.0, + "new_cases_smoothed": 17.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.397, + "new_cases_per_million": 2.008, + "new_cases_smoothed_per_million": 0.807, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 3101.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 144.817, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 3111.0, + "new_cases": 10.0, + "new_cases_smoothed": 17.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.284, + "new_cases_per_million": 0.467, + "new_cases_smoothed_per_million": 0.834, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 3115.0, + "new_cases": 4.0, + "new_cases_smoothed": 18.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.471, + "new_cases_per_million": 0.187, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.56, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SDN": { + "continent": "Africa", + "location": "Sudan", + "population": 43849269.0, + "population_density": 23.258, + "median_age": 19.7, + "aged_65_older": 3.548, + "aged_70_older": 2.034, + "gdp_per_capita": 4466.507, + "cardiovasc_death_rate": 431.388, + "diabetes_prevalence": 15.67, + "handwashing_facilities": 23.437, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 65.31, + "data": [ + { + "date": "2020-03-14", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.023, + "stringency_index": 45.37 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-19", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.023, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 56.48 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 56.48 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-28", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.068, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.114, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.114, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-03-31", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.137, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-01", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-02", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-03", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-04", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.228, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-06", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.274, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 76.85 + }, + { + "date": "2020-04-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-08", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.319, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-09", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.319, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.319, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-11", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.342, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-12", + "total_cases": 19.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.433, + "new_cases_per_million": 0.091, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 76.85 + }, + { + "date": "2020-04-13", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.433, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 29.0, + "new_cases": 10.0, + "new_cases_smoothed": 2.429, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.661, + "new_cases_per_million": 0.228, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 32.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.04 + }, + { + "date": "2020-04-19", + "total_cases": 66.0, + "new_cases": 34.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.775, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 87.04 + }, + { + "date": "2020-04-20", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 1.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 87.04 + }, + { + "date": "2020-04-21", + "total_cases": 92.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.0, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2.098, + "new_cases_per_million": 0.593, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 0.274, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 87.04 + }, + { + "date": "2020-04-22", + "total_cases": 107.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.44, + "new_cases_per_million": 0.342, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.274, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 87.04 + }, + { + "date": "2020-04-23", + "total_cases": 140.0, + "new_cases": 33.0, + "new_cases_smoothed": 15.429, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3.193, + "new_cases_per_million": 0.753, + "new_cases_smoothed_per_million": 0.352, + "total_deaths_per_million": 0.296, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 87.04 + }, + { + "date": "2020-04-24", + "total_cases": 162.0, + "new_cases": 22.0, + "new_cases_smoothed": 18.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3.694, + "new_cases_per_million": 0.502, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.296, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 174.0, + "new_cases": 12.0, + "new_cases_smoothed": 20.286, + "total_deaths": 16.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 3.968, + "new_cases_per_million": 0.274, + "new_cases_smoothed_per_million": 0.463, + "total_deaths_per_million": 0.365, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 213.0, + "new_cases": 39.0, + "new_cases_smoothed": 21.0, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4.858, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 0.479, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 237.0, + "new_cases": 24.0, + "new_cases_smoothed": 24.429, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5.405, + "new_cases_per_million": 0.547, + "new_cases_smoothed_per_million": 0.557, + "total_deaths_per_million": 0.479, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 87.04 + }, + { + "date": "2020-04-28", + "total_cases": 275.0, + "new_cases": 38.0, + "new_cases_smoothed": 26.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6.271, + "new_cases_per_million": 0.867, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 0.502, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 318.0, + "new_cases": 43.0, + "new_cases_smoothed": 30.143, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 7.252, + "new_cases_per_million": 0.981, + "new_cases_smoothed_per_million": 0.687, + "total_deaths_per_million": 0.57, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.042, + "stringency_index": 87.04 + }, + { + "date": "2020-04-30", + "total_cases": 375.0, + "new_cases": 57.0, + "new_cases_smoothed": 33.571, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 8.552, + "new_cases_per_million": 1.3, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 0.639, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 87.04 + }, + { + "date": "2020-05-01", + "total_cases": 442.0, + "new_cases": 67.0, + "new_cases_smoothed": 40.0, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 10.08, + "new_cases_per_million": 1.528, + "new_cases_smoothed_per_million": 0.912, + "total_deaths_per_million": 0.707, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.059, + "stringency_index": 87.04 + }, + { + "date": "2020-05-02", + "total_cases": 442.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.286, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 10.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.873, + "total_deaths_per_million": 0.707, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 87.04 + }, + { + "date": "2020-05-03", + "total_cases": 592.0, + "new_cases": 150.0, + "new_cases_smoothed": 54.143, + "total_deaths": 41.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 13.501, + "new_cases_per_million": 3.421, + "new_cases_smoothed_per_million": 1.235, + "total_deaths_per_million": 0.935, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 87.04 + }, + { + "date": "2020-05-04", + "total_cases": 678.0, + "new_cases": 86.0, + "new_cases_smoothed": 63.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 15.462, + "new_cases_per_million": 1.961, + "new_cases_smoothed_per_million": 1.437, + "total_deaths_per_million": 0.935, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 678.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.571, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 15.462, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.313, + "total_deaths_per_million": 0.935, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 778.0, + "new_cases": 100.0, + "new_cases_smoothed": 65.714, + "total_deaths": 45.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 17.743, + "new_cases_per_million": 2.281, + "new_cases_smoothed_per_million": 1.499, + "total_deaths_per_million": 1.026, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 852.0, + "new_cases": 74.0, + "new_cases_smoothed": 68.143, + "total_deaths": 49.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 19.43, + "new_cases_per_million": 1.688, + "new_cases_smoothed_per_million": 1.554, + "total_deaths_per_million": 1.117, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 930.0, + "new_cases": 78.0, + "new_cases_smoothed": 69.714, + "total_deaths": 52.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 21.209, + "new_cases_per_million": 1.779, + "new_cases_smoothed_per_million": 1.59, + "total_deaths_per_million": 1.186, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 1111.0, + "new_cases": 181.0, + "new_cases_smoothed": 95.571, + "total_deaths": 59.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 25.337, + "new_cases_per_million": 4.128, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 1.346, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 1164.0, + "new_cases": 53.0, + "new_cases_smoothed": 81.714, + "total_deaths": 64.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 26.545, + "new_cases_per_million": 1.209, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 1.46, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 1363.0, + "new_cases": 199.0, + "new_cases_smoothed": 97.857, + "total_deaths": 70.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 31.084, + "new_cases_per_million": 4.538, + "new_cases_smoothed_per_million": 2.232, + "total_deaths_per_million": 1.596, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 1526.0, + "new_cases": 163.0, + "new_cases_smoothed": 121.143, + "total_deaths": 74.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 34.801, + "new_cases_per_million": 3.717, + "new_cases_smoothed_per_million": 2.763, + "total_deaths_per_million": 1.688, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.108, + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 1661.0, + "new_cases": 135.0, + "new_cases_smoothed": 126.143, + "total_deaths": 80.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 37.88, + "new_cases_per_million": 3.079, + "new_cases_smoothed_per_million": 2.877, + "total_deaths_per_million": 1.824, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 1818.0, + "new_cases": 157.0, + "new_cases_smoothed": 138.0, + "total_deaths": 90.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 41.46, + "new_cases_per_million": 3.58, + "new_cases_smoothed_per_million": 3.147, + "total_deaths_per_million": 2.052, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 1964.0, + "new_cases": 146.0, + "new_cases_smoothed": 147.714, + "total_deaths": 91.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 44.79, + "new_cases_per_million": 3.33, + "new_cases_smoothed_per_million": 3.369, + "total_deaths_per_million": 2.075, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 87.04 + }, + { + "date": "2020-05-16", + "total_cases": 1964.0, + "new_cases": 0.0, + "new_cases_smoothed": 121.857, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 44.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.779, + "total_deaths_per_million": 2.075, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 87.04 + }, + { + "date": "2020-05-17", + "total_cases": 1964.0, + "new_cases": 0.0, + "new_cases_smoothed": 114.286, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 44.79, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.606, + "total_deaths_per_million": 2.075, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 87.04 + }, + { + "date": "2020-05-18", + "total_cases": 2289.0, + "new_cases": 325.0, + "new_cases_smoothed": 132.286, + "total_deaths": 97.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 52.202, + "new_cases_per_million": 7.412, + "new_cases_smoothed_per_million": 3.017, + "total_deaths_per_million": 2.212, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 87.04 + }, + { + "date": "2020-05-19", + "total_cases": 2591.0, + "new_cases": 302.0, + "new_cases_smoothed": 152.143, + "total_deaths": 105.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 59.089, + "new_cases_per_million": 6.887, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 2.395, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 87.04 + }, + { + "date": "2020-05-20", + "total_cases": 2591.0, + "new_cases": 0.0, + "new_cases_smoothed": 132.857, + "total_deaths": 105.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 59.089, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.03, + "total_deaths_per_million": 2.395, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 87.04 + }, + { + "date": "2020-05-21", + "total_cases": 2728.0, + "new_cases": 137.0, + "new_cases_smoothed": 130.0, + "total_deaths": 111.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 62.213, + "new_cases_per_million": 3.124, + "new_cases_smoothed_per_million": 2.965, + "total_deaths_per_million": 2.531, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 3138.0, + "new_cases": 410.0, + "new_cases_smoothed": 167.714, + "total_deaths": 121.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 71.563, + "new_cases_per_million": 9.35, + "new_cases_smoothed_per_million": 3.825, + "total_deaths_per_million": 2.759, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.098, + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 3378.0, + "new_cases": 240.0, + "new_cases_smoothed": 202.0, + "total_deaths": 137.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 77.037, + "new_cases_per_million": 5.473, + "new_cases_smoothed_per_million": 4.607, + "total_deaths_per_million": 3.124, + "new_deaths_per_million": 0.365, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 3628.0, + "new_cases": 250.0, + "new_cases_smoothed": 237.714, + "total_deaths": 146.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 82.738, + "new_cases_per_million": 5.701, + "new_cases_smoothed_per_million": 5.421, + "total_deaths_per_million": 3.33, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 3634.0, + "new_cases": 6.0, + "new_cases_smoothed": 192.143, + "total_deaths": 146.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 82.875, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 4.382, + "total_deaths_per_million": 3.33, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.16, + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 3826.0, + "new_cases": 192.0, + "new_cases_smoothed": 176.429, + "total_deaths": 165.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 87.253, + "new_cases_per_million": 4.379, + "new_cases_smoothed_per_million": 4.024, + "total_deaths_per_million": 3.763, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.195, + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 3976.0, + "new_cases": 150.0, + "new_cases_smoothed": 197.857, + "total_deaths": 170.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 90.674, + "new_cases_per_million": 3.421, + "new_cases_smoothed_per_million": 4.512, + "total_deaths_per_million": 3.877, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 4146.0, + "new_cases": 170.0, + "new_cases_smoothed": 202.571, + "total_deaths": 184.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 94.551, + "new_cases_per_million": 3.877, + "new_cases_smoothed_per_million": 4.62, + "total_deaths_per_million": 4.196, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 4346.0, + "new_cases": 200.0, + "new_cases_smoothed": 172.571, + "total_deaths": 195.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 99.112, + "new_cases_per_million": 4.561, + "new_cases_smoothed_per_million": 3.936, + "total_deaths_per_million": 4.447, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 91.67 + }, + { + "date": "2020-05-30", + "total_cases": 4521.0, + "new_cases": 175.0, + "new_cases_smoothed": 163.286, + "total_deaths": 233.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 103.103, + "new_cases_per_million": 3.991, + "new_cases_smoothed_per_million": 3.724, + "total_deaths_per_million": 5.314, + "new_deaths_per_million": 0.867, + "new_deaths_smoothed_per_million": 0.313, + "stringency_index": 91.67 + }, + { + "date": "2020-05-31", + "total_cases": 4800.0, + "new_cases": 279.0, + "new_cases_smoothed": 167.429, + "total_deaths": 262.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 109.466, + "new_cases_per_million": 6.363, + "new_cases_smoothed_per_million": 3.818, + "total_deaths_per_million": 5.975, + "new_deaths_per_million": 0.661, + "new_deaths_smoothed_per_million": 0.378, + "stringency_index": 91.67 + }, + { + "date": "2020-06-01", + "total_cases": 5026.0, + "new_cases": 226.0, + "new_cases_smoothed": 198.857, + "total_deaths": 286.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 114.62, + "new_cases_per_million": 5.154, + "new_cases_smoothed_per_million": 4.535, + "total_deaths_per_million": 6.522, + "new_deaths_per_million": 0.547, + "new_deaths_smoothed_per_million": 0.456, + "stringency_index": 91.67 + }, + { + "date": "2020-06-02", + "total_cases": 5173.0, + "new_cases": 147.0, + "new_cases_smoothed": 192.429, + "total_deaths": 298.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 117.972, + "new_cases_per_million": 3.352, + "new_cases_smoothed_per_million": 4.388, + "total_deaths_per_million": 6.796, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.433, + "stringency_index": 91.67 + }, + { + "date": "2020-06-03", + "total_cases": 5310.0, + "new_cases": 137.0, + "new_cases_smoothed": 190.571, + "total_deaths": 307.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 121.097, + "new_cases_per_million": 3.124, + "new_cases_smoothed_per_million": 4.346, + "total_deaths_per_million": 7.001, + "new_deaths_per_million": 0.205, + "new_deaths_smoothed_per_million": 0.446, + "stringency_index": 91.67 + }, + { + "date": "2020-06-04", + "total_cases": 5310.0, + "new_cases": 0.0, + "new_cases_smoothed": 166.286, + "total_deaths": 307.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 121.097, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.792, + "total_deaths_per_million": 7.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.401, + "stringency_index": 91.67 + }, + { + "date": "2020-06-05", + "total_cases": 5499.0, + "new_cases": 189.0, + "new_cases_smoothed": 164.714, + "total_deaths": 314.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 125.407, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 3.756, + "total_deaths_per_million": 7.161, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.388, + "stringency_index": 91.67 + }, + { + "date": "2020-06-06", + "total_cases": 5714.0, + "new_cases": 215.0, + "new_cases_smoothed": 170.429, + "total_deaths": 333.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 130.31, + "new_cases_per_million": 4.903, + "new_cases_smoothed_per_million": 3.887, + "total_deaths_per_million": 7.594, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 91.67 + }, + { + "date": "2020-06-07", + "total_cases": 5865.0, + "new_cases": 151.0, + "new_cases_smoothed": 152.143, + "total_deaths": 347.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 133.754, + "new_cases_per_million": 3.444, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 7.913, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.277, + "stringency_index": 91.67 + }, + { + "date": "2020-06-08", + "total_cases": 6083.0, + "new_cases": 218.0, + "new_cases_smoothed": 151.0, + "total_deaths": 359.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 138.725, + "new_cases_per_million": 4.972, + "new_cases_smoothed_per_million": 3.444, + "total_deaths_per_million": 8.187, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 91.67 + }, + { + "date": "2020-06-09", + "total_cases": 6242.0, + "new_cases": 159.0, + "new_cases_smoothed": 152.714, + "total_deaths": 372.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 142.351, + "new_cases_per_million": 3.626, + "new_cases_smoothed_per_million": 3.483, + "total_deaths_per_million": 8.484, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 91.67 + }, + { + "date": "2020-06-10", + "total_cases": 6242.0, + "new_cases": 0.0, + "new_cases_smoothed": 133.143, + "total_deaths": 372.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 142.351, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.036, + "total_deaths_per_million": 8.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.212, + "stringency_index": 91.67 + }, + { + "date": "2020-06-11", + "total_cases": 6427.0, + "new_cases": 185.0, + "new_cases_smoothed": 159.571, + "total_deaths": 389.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 146.57, + "new_cases_per_million": 4.219, + "new_cases_smoothed_per_million": 3.639, + "total_deaths_per_million": 8.871, + "new_deaths_per_million": 0.388, + "new_deaths_smoothed_per_million": 0.267, + "stringency_index": 91.67 + }, + { + "date": "2020-06-12", + "total_cases": 6730.0, + "new_cases": 303.0, + "new_cases_smoothed": 175.857, + "total_deaths": 413.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 153.48, + "new_cases_per_million": 6.91, + "new_cases_smoothed_per_million": 4.01, + "total_deaths_per_million": 9.419, + "new_deaths_per_million": 0.547, + "new_deaths_smoothed_per_million": 0.323, + "stringency_index": 84.26 + }, + { + "date": "2020-06-13", + "total_cases": 6879.0, + "new_cases": 149.0, + "new_cases_smoothed": 166.429, + "total_deaths": 433.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 156.878, + "new_cases_per_million": 3.398, + "new_cases_smoothed_per_million": 3.795, + "total_deaths_per_million": 9.875, + "new_deaths_per_million": 0.456, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 84.26 + }, + { + "date": "2020-06-14", + "total_cases": 6879.0, + "new_cases": 0.0, + "new_cases_smoothed": 144.857, + "total_deaths": 433.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 156.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.304, + "total_deaths_per_million": 9.875, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.28, + "stringency_index": 84.26 + }, + { + "date": "2020-06-15", + "total_cases": 7220.0, + "new_cases": 341.0, + "new_cases_smoothed": 162.429, + "total_deaths": 459.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 164.655, + "new_cases_per_million": 7.777, + "new_cases_smoothed_per_million": 3.704, + "total_deaths_per_million": 10.468, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.326, + "stringency_index": 84.26 + }, + { + "date": "2020-06-16", + "total_cases": 7220.0, + "new_cases": 0.0, + "new_cases_smoothed": 139.714, + "total_deaths": 459.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 164.655, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.186, + "total_deaths_per_million": 10.468, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.283, + "stringency_index": 84.26 + }, + { + "date": "2020-06-17", + "total_cases": 7740.0, + "new_cases": 520.0, + "new_cases_smoothed": 214.0, + "total_deaths": 477.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 176.514, + "new_cases_per_million": 11.859, + "new_cases_smoothed_per_million": 4.88, + "total_deaths_per_million": 10.878, + "new_deaths_per_million": 0.41, + "new_deaths_smoothed_per_million": 0.342, + "stringency_index": 84.26 + }, + { + "date": "2020-06-18", + "total_cases": 8020.0, + "new_cases": 280.0, + "new_cases_smoothed": 227.571, + "total_deaths": 487.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 182.899, + "new_cases_per_million": 6.386, + "new_cases_smoothed_per_million": 5.19, + "total_deaths_per_million": 11.106, + "new_deaths_per_million": 0.228, + "new_deaths_smoothed_per_million": 0.319, + "stringency_index": 84.26 + }, + { + "date": "2020-06-19", + "total_cases": 8020.0, + "new_cases": 0.0, + "new_cases_smoothed": 184.286, + "total_deaths": 487.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 182.899, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.203, + "total_deaths_per_million": 11.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 84.26 + }, + { + "date": "2020-06-20", + "total_cases": 8316.0, + "new_cases": 296.0, + "new_cases_smoothed": 205.286, + "total_deaths": 506.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 189.65, + "new_cases_per_million": 6.75, + "new_cases_smoothed_per_million": 4.682, + "total_deaths_per_million": 11.54, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.238, + "stringency_index": 84.26 + }, + { + "date": "2020-06-21", + "total_cases": 8580.0, + "new_cases": 264.0, + "new_cases_smoothed": 243.0, + "total_deaths": 521.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 195.67, + "new_cases_per_million": 6.021, + "new_cases_smoothed_per_million": 5.542, + "total_deaths_per_million": 11.882, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.287, + "stringency_index": 84.26 + }, + { + "date": "2020-06-22", + "total_cases": 8580.0, + "new_cases": 0.0, + "new_cases_smoothed": 194.286, + "total_deaths": 521.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 195.67, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.431, + "total_deaths_per_million": 11.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.202, + "stringency_index": 84.26 + }, + { + "date": "2020-06-23", + "total_cases": 8698.0, + "new_cases": 118.0, + "new_cases_smoothed": 211.143, + "total_deaths": 533.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 198.361, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 4.815, + "total_deaths_per_million": 12.155, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 84.26 + }, + { + "date": "2020-06-24", + "total_cases": 8889.0, + "new_cases": 191.0, + "new_cases_smoothed": 164.143, + "total_deaths": 548.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 202.717, + "new_cases_per_million": 4.356, + "new_cases_smoothed_per_million": 3.743, + "total_deaths_per_million": 12.497, + "new_deaths_per_million": 0.342, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 84.26 + }, + { + "date": "2020-06-25", + "total_cases": 8889.0, + "new_cases": 0.0, + "new_cases_smoothed": 124.143, + "total_deaths": 548.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 202.717, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.831, + "total_deaths_per_million": 12.497, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.199, + "stringency_index": 84.26 + }, + { + "date": "2020-06-26", + "total_cases": 8984.0, + "new_cases": 95.0, + "new_cases_smoothed": 137.714, + "total_deaths": 556.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 204.884, + "new_cases_per_million": 2.167, + "new_cases_smoothed_per_million": 3.141, + "total_deaths_per_million": 12.68, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 84.26 + }, + { + "date": "2020-06-27", + "total_cases": 9257.0, + "new_cases": 273.0, + "new_cases_smoothed": 134.429, + "total_deaths": 572.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 211.11, + "new_cases_per_million": 6.226, + "new_cases_smoothed_per_million": 3.066, + "total_deaths_per_million": 13.045, + "new_deaths_per_million": 0.365, + "new_deaths_smoothed_per_million": 0.215, + "stringency_index": 84.26 + }, + { + "date": "2020-06-28", + "total_cases": 9258.0, + "new_cases": 1.0, + "new_cases_smoothed": 96.857, + "total_deaths": 572.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 211.132, + "new_cases_per_million": 0.023, + "new_cases_smoothed_per_million": 2.209, + "total_deaths_per_million": 13.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 84.26 + }, + { + "date": "2020-06-29", + "total_cases": 9258.0, + "new_cases": 0.0, + "new_cases_smoothed": 96.857, + "total_deaths": 572.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 211.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.209, + "total_deaths_per_million": 13.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 84.26 + }, + { + "date": "2020-06-30", + "total_cases": 9258.0, + "new_cases": 0.0, + "new_cases_smoothed": 80.0, + "total_deaths": 572.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 211.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.824, + "total_deaths_per_million": 13.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 84.26 + }, + { + "date": "2020-07-01", + "total_cases": 9258.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.714, + "total_deaths": 572.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 211.132, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.202, + "total_deaths_per_million": 13.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 84.26 + }, + { + "date": "2020-07-02", + "total_cases": 9573.0, + "new_cases": 315.0, + "new_cases_smoothed": 97.714, + "total_deaths": 602.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 218.316, + "new_cases_per_million": 7.184, + "new_cases_smoothed_per_million": 2.228, + "total_deaths_per_million": 13.729, + "new_deaths_per_million": 0.684, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 84.26 + }, + { + "date": "2020-07-03", + "total_cases": 9573.0, + "new_cases": 0.0, + "new_cases_smoothed": 84.143, + "total_deaths": 602.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 218.316, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.919, + "total_deaths_per_million": 13.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 84.26 + }, + { + "date": "2020-07-04", + "total_cases": 9663.0, + "new_cases": 90.0, + "new_cases_smoothed": 58.0, + "total_deaths": 604.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 220.369, + "new_cases_per_million": 2.052, + "new_cases_smoothed_per_million": 1.323, + "total_deaths_per_million": 13.774, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 84.26 + }, + { + "date": "2020-07-05", + "total_cases": 9663.0, + "new_cases": 0.0, + "new_cases_smoothed": 57.857, + "total_deaths": 604.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 220.369, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.319, + "total_deaths_per_million": 13.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 84.26 + }, + { + "date": "2020-07-06", + "total_cases": 9767.0, + "new_cases": 104.0, + "new_cases_smoothed": 72.714, + "total_deaths": 608.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 222.74, + "new_cases_per_million": 2.372, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 13.866, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 84.26 + }, + { + "date": "2020-07-07", + "total_cases": 9767.0, + "new_cases": 0.0, + "new_cases_smoothed": 72.714, + "total_deaths": 608.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 222.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.658, + "total_deaths_per_million": 13.866, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 84.26 + }, + { + "date": "2020-07-08", + "total_cases": 9997.0, + "new_cases": 230.0, + "new_cases_smoothed": 105.571, + "total_deaths": 622.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 227.986, + "new_cases_per_million": 5.245, + "new_cases_smoothed_per_million": 2.408, + "total_deaths_per_million": 14.185, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 74.07 + }, + { + "date": "2020-07-09", + "total_cases": 10084.0, + "new_cases": 87.0, + "new_cases_smoothed": 73.0, + "total_deaths": 636.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 229.97, + "new_cases_per_million": 1.984, + "new_cases_smoothed_per_million": 1.665, + "total_deaths_per_million": 14.504, + "new_deaths_per_million": 0.319, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 74.07 + }, + { + "date": "2020-07-10", + "total_cases": 10158.0, + "new_cases": 74.0, + "new_cases_smoothed": 83.571, + "total_deaths": 641.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 231.657, + "new_cases_per_million": 1.688, + "new_cases_smoothed_per_million": 1.906, + "total_deaths_per_million": 14.618, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.127, + "stringency_index": 74.07 + }, + { + "date": "2020-07-11", + "total_cases": 10204.0, + "new_cases": 46.0, + "new_cases_smoothed": 77.286, + "total_deaths": 649.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 232.706, + "new_cases_per_million": 1.049, + "new_cases_smoothed_per_million": 1.763, + "total_deaths_per_million": 14.801, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 74.07 + }, + { + "date": "2020-07-12", + "total_cases": 10250.0, + "new_cases": 46.0, + "new_cases_smoothed": 83.857, + "total_deaths": 650.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 233.755, + "new_cases_per_million": 1.049, + "new_cases_smoothed_per_million": 1.912, + "total_deaths_per_million": 14.824, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.15, + "stringency_index": 74.07 + }, + { + "date": "2020-07-13", + "total_cases": 10250.0, + "new_cases": 0.0, + "new_cases_smoothed": 69.0, + "total_deaths": 650.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 233.755, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.574, + "total_deaths_per_million": 14.824, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 71.3 + }, + { + "date": "2020-07-14", + "total_cases": 10316.0, + "new_cases": 66.0, + "new_cases_smoothed": 78.429, + "total_deaths": 657.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 235.26, + "new_cases_per_million": 1.505, + "new_cases_smoothed_per_million": 1.789, + "total_deaths_per_million": 14.983, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.16, + "stringency_index": 71.3 + }, + { + "date": "2020-07-15", + "total_cases": 10316.0, + "new_cases": 0.0, + "new_cases_smoothed": 45.571, + "total_deaths": 657.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 235.26, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.039, + "total_deaths_per_million": 14.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 71.3 + }, + { + "date": "2020-07-16", + "total_cases": 10527.0, + "new_cases": 211.0, + "new_cases_smoothed": 63.286, + "total_deaths": 668.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 240.072, + "new_cases_per_million": 4.812, + "new_cases_smoothed_per_million": 1.443, + "total_deaths_per_million": 15.234, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 71.3 + }, + { + "date": "2020-07-17", + "total_cases": 10527.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.714, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 240.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.202, + "total_deaths_per_million": 15.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 71.3 + }, + { + "date": "2020-07-18", + "total_cases": 10527.0, + "new_cases": 0.0, + "new_cases_smoothed": 46.143, + "total_deaths": 668.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 240.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.052, + "total_deaths_per_million": 15.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 71.3 + }, + { + "date": "2020-07-19", + "total_cases": 10682.0, + "new_cases": 155.0, + "new_cases_smoothed": 61.714, + "total_deaths": 673.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 243.607, + "new_cases_per_million": 3.535, + "new_cases_smoothed_per_million": 1.407, + "total_deaths_per_million": 15.348, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 71.3 + }, + { + "date": "2020-07-20", + "total_cases": 10762.0, + "new_cases": 80.0, + "new_cases_smoothed": 73.143, + "total_deaths": 680.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 245.432, + "new_cases_per_million": 1.824, + "new_cases_smoothed_per_million": 1.668, + "total_deaths_per_million": 15.508, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.098, + "stringency_index": 71.3 + }, + { + "date": "2020-07-21", + "total_cases": 10992.0, + "new_cases": 230.0, + "new_cases_smoothed": 96.571, + "total_deaths": 693.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 250.677, + "new_cases_per_million": 5.245, + "new_cases_smoothed_per_million": 2.202, + "total_deaths_per_million": 15.804, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.117, + "stringency_index": 71.3 + }, + { + "date": "2020-07-22", + "total_cases": 11127.0, + "new_cases": 135.0, + "new_cases_smoothed": 115.857, + "total_deaths": 706.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 253.756, + "new_cases_per_million": 3.079, + "new_cases_smoothed_per_million": 2.642, + "total_deaths_per_million": 16.101, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.16, + "stringency_index": 71.3 + }, + { + "date": "2020-07-23", + "total_cases": 11127.0, + "new_cases": 0.0, + "new_cases_smoothed": 85.714, + "total_deaths": 706.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 253.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.955, + "total_deaths_per_million": 16.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 71.3 + }, + { + "date": "2020-07-24", + "total_cases": 11237.0, + "new_cases": 110.0, + "new_cases_smoothed": 101.429, + "total_deaths": 708.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 256.264, + "new_cases_per_million": 2.509, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 16.146, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 71.3 + }, + { + "date": "2020-07-25", + "total_cases": 11237.0, + "new_cases": 0.0, + "new_cases_smoothed": 101.429, + "total_deaths": 708.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 256.264, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.313, + "total_deaths_per_million": 16.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 71.3 + }, + { + "date": "2020-07-26", + "total_cases": 11302.0, + "new_cases": 65.0, + "new_cases_smoothed": 88.571, + "total_deaths": 715.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 257.747, + "new_cases_per_million": 1.482, + "new_cases_smoothed_per_million": 2.02, + "total_deaths_per_million": 16.306, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 71.3 + }, + { + "date": "2020-07-27", + "total_cases": 11385.0, + "new_cases": 83.0, + "new_cases_smoothed": 89.0, + "total_deaths": 717.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 259.639, + "new_cases_per_million": 1.893, + "new_cases_smoothed_per_million": 2.03, + "total_deaths_per_million": 16.351, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 71.3 + }, + { + "date": "2020-07-28", + "total_cases": 11424.0, + "new_cases": 39.0, + "new_cases_smoothed": 61.714, + "total_deaths": 720.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 260.529, + "new_cases_per_million": 0.889, + "new_cases_smoothed_per_million": 1.407, + "total_deaths_per_million": 16.42, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 71.3 + }, + { + "date": "2020-07-29", + "total_cases": 11496.0, + "new_cases": 72.0, + "new_cases_smoothed": 52.714, + "total_deaths": 725.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 262.171, + "new_cases_per_million": 1.642, + "new_cases_smoothed_per_million": 1.202, + "total_deaths_per_million": 16.534, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 71.3 + }, + { + "date": "2020-07-30", + "total_cases": 11496.0, + "new_cases": 0.0, + "new_cases_smoothed": 52.714, + "total_deaths": 725.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 262.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.202, + "total_deaths_per_million": 16.534, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 71.3 + }, + { + "date": "2020-07-31", + "total_cases": 11496.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.0, + "total_deaths": 725.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 262.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.844, + "total_deaths_per_million": 16.534, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 71.3 + }, + { + "date": "2020-08-01", + "total_cases": 11644.0, + "new_cases": 148.0, + "new_cases_smoothed": 58.143, + "total_deaths": 746.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 265.546, + "new_cases_per_million": 3.375, + "new_cases_smoothed_per_million": 1.326, + "total_deaths_per_million": 17.013, + "new_deaths_per_million": 0.479, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 71.3 + }, + { + "date": "2020-08-02", + "total_cases": 11644.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.857, + "total_deaths": 746.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 265.546, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.114, + "total_deaths_per_million": 17.013, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 71.3 + }, + { + "date": "2020-08-03", + "total_cases": 11738.0, + "new_cases": 94.0, + "new_cases_smoothed": 50.429, + "total_deaths": 752.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 267.69, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 17.15, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.114, + "stringency_index": 71.3 + }, + { + "date": "2020-08-04", + "total_cases": 11738.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.857, + "total_deaths": 752.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 267.69, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.023, + "total_deaths_per_million": 17.15, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.104, + "stringency_index": 71.3 + }, + { + "date": "2020-08-05", + "total_cases": 11780.0, + "new_cases": 42.0, + "new_cases_smoothed": 40.571, + "total_deaths": 763.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 268.648, + "new_cases_per_million": 0.958, + "new_cases_smoothed_per_million": 0.925, + "total_deaths_per_million": 17.401, + "new_deaths_per_million": 0.251, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 69.91 + }, + { + "date": "2020-08-06", + "total_cases": 11780.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.571, + "total_deaths": 763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 268.648, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.925, + "total_deaths_per_million": 17.401, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 69.91 + }, + { + "date": "2020-08-07", + "total_cases": 11780.0, + "new_cases": 0.0, + "new_cases_smoothed": 40.571, + "total_deaths": 763.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 268.648, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.925, + "total_deaths_per_million": 17.401, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 69.91 + }, + { + "date": "2020-08-08", + "total_cases": 11850.0, + "new_cases": 70.0, + "new_cases_smoothed": 29.429, + "total_deaths": 769.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 270.244, + "new_cases_per_million": 1.596, + "new_cases_smoothed_per_million": 0.671, + "total_deaths_per_million": 17.537, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 69.91 + }, + { + "date": "2020-08-09", + "total_cases": 11894.0, + "new_cases": 44.0, + "new_cases_smoothed": 35.714, + "total_deaths": 773.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 271.247, + "new_cases_per_million": 1.003, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 17.629, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 69.91 + }, + { + "date": "2020-08-10", + "total_cases": 11894.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.286, + "total_deaths": 773.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 271.247, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 17.629, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.068, + "stringency_index": 69.91 + }, + { + "date": "2020-08-11", + "total_cases": 11956.0, + "new_cases": 62.0, + "new_cases_smoothed": 31.143, + "total_deaths": 781.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 272.661, + "new_cases_per_million": 1.414, + "new_cases_smoothed_per_million": 0.71, + "total_deaths_per_million": 17.811, + "new_deaths_per_million": 0.182, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 69.91 + }, + { + "date": "2020-08-12", + "total_cases": 12033.0, + "new_cases": 77.0, + "new_cases_smoothed": 36.143, + "total_deaths": 786.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 274.417, + "new_cases_per_million": 1.756, + "new_cases_smoothed_per_million": 0.824, + "total_deaths_per_million": 17.925, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 69.91 + }, + { + "date": "2020-08-13", + "total_cases": 12115.0, + "new_cases": 82.0, + "new_cases_smoothed": 47.857, + "total_deaths": 792.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 276.287, + "new_cases_per_million": 1.87, + "new_cases_smoothed_per_million": 1.091, + "total_deaths_per_million": 18.062, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 69.91 + }, + { + "date": "2020-08-14", + "total_cases": 12115.0, + "new_cases": 0.0, + "new_cases_smoothed": 47.857, + "total_deaths": 792.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 276.287, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.091, + "total_deaths_per_million": 18.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.094, + "stringency_index": 69.91 + }, + { + "date": "2020-08-15", + "total_cases": 12162.0, + "new_cases": 47.0, + "new_cases_smoothed": 44.571, + "total_deaths": 793.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 277.359, + "new_cases_per_million": 1.072, + "new_cases_smoothed_per_million": 1.016, + "total_deaths_per_million": 18.085, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 69.91 + }, + { + "date": "2020-08-16", + "total_cases": 12314.0, + "new_cases": 152.0, + "new_cases_smoothed": 60.0, + "total_deaths": 798.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 280.826, + "new_cases_per_million": 3.466, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 18.199, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 69.91 + }, + { + "date": "2020-08-17", + "total_cases": 12410.0, + "new_cases": 96.0, + "new_cases_smoothed": 73.714, + "total_deaths": 803.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 283.015, + "new_cases_per_million": 2.189, + "new_cases_smoothed_per_million": 1.681, + "total_deaths_per_million": 18.313, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.098, + "stringency_index": 69.91 + }, + { + "date": "2020-08-18", + "total_cases": 12410.0, + "new_cases": 0.0, + "new_cases_smoothed": 64.857, + "total_deaths": 803.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 283.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.479, + "total_deaths_per_million": 18.313, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 69.91 + }, + { + "date": "2020-08-19", + "total_cases": 12485.0, + "new_cases": 75.0, + "new_cases_smoothed": 64.571, + "total_deaths": 805.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 284.725, + "new_cases_per_million": 1.71, + "new_cases_smoothed_per_million": 1.473, + "total_deaths_per_million": 18.358, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 75.46 + }, + { + "date": "2020-08-20", + "total_cases": 12546.0, + "new_cases": 61.0, + "new_cases_smoothed": 61.571, + "total_deaths": 808.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 286.117, + "new_cases_per_million": 1.391, + "new_cases_smoothed_per_million": 1.404, + "total_deaths_per_million": 18.427, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 75.46 + }, + { + "date": "2020-08-21", + "total_cases": 12586.0, + "new_cases": 40.0, + "new_cases_smoothed": 67.286, + "total_deaths": 812.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 287.029, + "new_cases_per_million": 0.912, + "new_cases_smoothed_per_million": 1.534, + "total_deaths_per_million": 18.518, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 75.46 + }, + { + "date": "2020-08-22", + "total_cases": 12623.0, + "new_cases": 37.0, + "new_cases_smoothed": 65.857, + "total_deaths": 812.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 287.873, + "new_cases_per_million": 0.844, + "new_cases_smoothed_per_million": 1.502, + "total_deaths_per_million": 18.518, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 75.46 + }, + { + "date": "2020-08-23", + "total_cases": 12623.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.143, + "total_deaths": 812.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 287.873, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.007, + "total_deaths_per_million": 18.518, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 75.46 + }, + { + "date": "2020-08-24", + "total_cases": 12836.0, + "new_cases": 213.0, + "new_cases_smoothed": 60.857, + "total_deaths": 815.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 292.73, + "new_cases_per_million": 4.858, + "new_cases_smoothed_per_million": 1.388, + "total_deaths_per_million": 18.586, + "new_deaths_per_million": 0.068, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 75.46 + }, + { + "date": "2020-08-25", + "total_cases": 12836.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.857, + "total_deaths": 815.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 292.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.388, + "total_deaths_per_million": 18.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.039, + "stringency_index": 75.46 + }, + { + "date": "2020-08-26", + "total_cases": 12974.0, + "new_cases": 138.0, + "new_cases_smoothed": 69.857, + "total_deaths": 819.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 295.877, + "new_cases_per_million": 3.147, + "new_cases_smoothed_per_million": 1.593, + "total_deaths_per_million": 18.678, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.046, + "stringency_index": 75.46 + }, + { + "date": "2020-08-27", + "total_cases": 12974.0, + "new_cases": 0.0, + "new_cases_smoothed": 61.143, + "total_deaths": 819.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 295.877, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.394, + "total_deaths_per_million": 18.678, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 75.46 + }, + { + "date": "2020-08-28", + "total_cases": 13045.0, + "new_cases": 71.0, + "new_cases_smoothed": 65.571, + "total_deaths": 823.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 297.496, + "new_cases_per_million": 1.619, + "new_cases_smoothed_per_million": 1.495, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 75.46 + }, + { + "date": "2020-08-29", + "total_cases": 13045.0, + "new_cases": 0.0, + "new_cases_smoothed": 60.286, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 297.496, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 75.46 + }, + { + "date": "2020-08-30", + "total_cases": 13189.0, + "new_cases": 144.0, + "new_cases_smoothed": 80.857, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 300.78, + "new_cases_per_million": 3.284, + "new_cases_smoothed_per_million": 1.844, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "stringency_index": 75.46 + }, + { + "date": "2020-08-31", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.429, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 75.46 + }, + { + "date": "2020-09-01", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 50.429, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.026 + }, + { + "date": "2020-09-02", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.714, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013 + }, + { + "date": "2020-09-03", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 30.714, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.7, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013 + }, + { + "date": "2020-09-04", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 13189.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.571, + "total_deaths": 823.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 300.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 18.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "SUR": { + "continent": "South America", + "location": "Suriname", + "population": 586634.0, + "population_density": 3.612, + "median_age": 29.6, + "aged_65_older": 6.933, + "aged_70_older": 4.229, + "gdp_per_capita": 13767.119, + "cardiovasc_death_rate": 258.314, + "diabetes_prevalence": 12.54, + "female_smokers": 7.4, + "male_smokers": 42.9, + "handwashing_facilities": 67.779, + "hospital_beds_per_thousand": 3.1, + "life_expectancy": 71.68, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.705, + "new_cases_per_million": 1.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 33.33 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.705, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-22", + "total_cases": 5.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.523, + "new_cases_per_million": 6.819, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-23", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.523, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.974, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-24", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.228, + "new_cases_per_million": 1.705, + "new_cases_smoothed_per_million": 1.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-25", + "total_cases": 8.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 3.409, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-26", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-27", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-28", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.705, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-29", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-03-31", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.637, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-01", + "total_cases": 10.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 3.409, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 71.3 + }, + { + "date": "2020-04-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 71.3 + }, + { + "date": "2020-04-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 71.3 + }, + { + "date": "2020-04-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.487, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-23", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-12", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-13", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-14", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-15", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-16", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-17", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-18", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.046, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-19", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 1.705, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 74.07 + }, + { + "date": "2020-05-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-05-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.456, + "new_cases_per_million": 1.705, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-05-31", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.865, + "new_cases_per_million": 3.409, + "new_cases_smoothed_per_million": 0.731, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-01", + "total_cases": 23.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.207, + "new_cases_per_million": 15.342, + "new_cases_smoothed_per_million": 2.922, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-02", + "total_cases": 44.0, + "new_cases": 21.0, + "new_cases_smoothed": 4.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 75.004, + "new_cases_per_million": 35.797, + "new_cases_smoothed_per_million": 8.036, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-03", + "total_cases": 54.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.051, + "new_cases_per_million": 17.046, + "new_cases_smoothed_per_million": 10.471, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-04", + "total_cases": 74.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 126.143, + "new_cases_per_million": 34.093, + "new_cases_smoothed_per_million": 15.098, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-05", + "total_cases": 82.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 139.781, + "new_cases_per_million": 13.637, + "new_cases_smoothed_per_million": 17.046, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-06", + "total_cases": 91.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 155.122, + "new_cases_per_million": 15.342, + "new_cases_smoothed_per_million": 19.238, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-07", + "total_cases": 100.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.464, + "new_cases_per_million": 15.342, + "new_cases_smoothed_per_million": 20.943, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-08", + "total_cases": 122.0, + "new_cases": 22.0, + "new_cases_smoothed": 14.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 207.966, + "new_cases_per_million": 37.502, + "new_cases_smoothed_per_million": 24.108, + "total_deaths_per_million": 1.705, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-06-09", + "total_cases": 130.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 221.603, + "new_cases_per_million": 13.637, + "new_cases_smoothed_per_million": 20.943, + "total_deaths_per_million": 3.409, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 93.52 + }, + { + "date": "2020-06-10", + "total_cases": 137.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 233.536, + "new_cases_per_million": 11.932, + "new_cases_smoothed_per_million": 20.212, + "total_deaths_per_million": 3.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 93.52 + }, + { + "date": "2020-06-11", + "total_cases": 137.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 233.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.342, + "total_deaths_per_million": 3.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 93.52 + }, + { + "date": "2020-06-12", + "total_cases": 168.0, + "new_cases": 31.0, + "new_cases_smoothed": 12.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 286.38, + "new_cases_per_million": 52.844, + "new_cases_smoothed_per_million": 20.943, + "total_deaths_per_million": 3.409, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 93.52 + }, + { + "date": "2020-06-13", + "total_cases": 187.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 318.768, + "new_cases_per_million": 32.388, + "new_cases_smoothed_per_million": 23.378, + "total_deaths_per_million": 5.114, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 93.52 + }, + { + "date": "2020-06-14", + "total_cases": 196.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 334.11, + "new_cases_per_million": 15.342, + "new_cases_smoothed_per_million": 23.378, + "total_deaths_per_million": 5.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 93.52 + }, + { + "date": "2020-06-15", + "total_cases": 208.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 354.565, + "new_cases_per_million": 20.456, + "new_cases_smoothed_per_million": 20.943, + "total_deaths_per_million": 5.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 93.52 + }, + { + "date": "2020-06-16", + "total_cases": 229.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 390.363, + "new_cases_per_million": 35.797, + "new_cases_smoothed_per_million": 24.108, + "total_deaths_per_million": 8.523, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 93.52 + }, + { + "date": "2020-06-17", + "total_cases": 236.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 402.295, + "new_cases_per_million": 11.932, + "new_cases_smoothed_per_million": 24.108, + "total_deaths_per_million": 10.228, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 93.52 + }, + { + "date": "2020-06-18", + "total_cases": 261.0, + "new_cases": 25.0, + "new_cases_smoothed": 17.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 444.911, + "new_cases_per_million": 42.616, + "new_cases_smoothed_per_million": 30.196, + "total_deaths_per_million": 10.228, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 93.52 + }, + { + "date": "2020-06-19", + "total_cases": 277.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.571, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 472.185, + "new_cases_per_million": 27.274, + "new_cases_smoothed_per_million": 26.544, + "total_deaths_per_million": 11.932, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 93.52 + }, + { + "date": "2020-06-20", + "total_cases": 293.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 499.46, + "new_cases_per_million": 27.274, + "new_cases_smoothed_per_million": 25.813, + "total_deaths_per_million": 13.637, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 93.52 + }, + { + "date": "2020-06-21", + "total_cases": 302.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 514.801, + "new_cases_per_million": 15.342, + "new_cases_smoothed_per_million": 25.813, + "total_deaths_per_million": 13.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 81.48 + }, + { + "date": "2020-06-22", + "total_cases": 314.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 535.257, + "new_cases_per_million": 20.456, + "new_cases_smoothed_per_million": 25.813, + "total_deaths_per_million": 13.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 81.48 + }, + { + "date": "2020-06-23", + "total_cases": 319.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 543.78, + "new_cases_per_million": 8.523, + "new_cases_smoothed_per_million": 21.917, + "total_deaths_per_million": 13.637, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-06-24", + "total_cases": 319.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 543.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.212, + "total_deaths_per_million": 15.342, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-06-25", + "total_cases": 357.0, + "new_cases": 38.0, + "new_cases_smoothed": 13.714, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 608.557, + "new_cases_per_million": 64.776, + "new_cases_smoothed_per_million": 23.378, + "total_deaths_per_million": 17.046, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 81.48 + }, + { + "date": "2020-06-26", + "total_cases": 373.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 635.831, + "new_cases_per_million": 27.274, + "new_cases_smoothed_per_million": 23.378, + "total_deaths_per_million": 17.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-06-27", + "total_cases": 391.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 666.514, + "new_cases_per_million": 30.684, + "new_cases_smoothed_per_million": 23.865, + "total_deaths_per_million": 17.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 81.48 + }, + { + "date": "2020-06-28", + "total_cases": 391.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 666.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.673, + "total_deaths_per_million": 17.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 81.48 + }, + { + "date": "2020-06-29", + "total_cases": 490.0, + "new_cases": 99.0, + "new_cases_smoothed": 25.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 835.274, + "new_cases_per_million": 168.759, + "new_cases_smoothed_per_million": 42.86, + "total_deaths_per_million": 18.751, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-06-30", + "total_cases": 501.0, + "new_cases": 11.0, + "new_cases_smoothed": 26.0, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 854.025, + "new_cases_per_million": 18.751, + "new_cases_smoothed_per_million": 44.321, + "total_deaths_per_million": 22.16, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 81.48 + }, + { + "date": "2020-07-01", + "total_cases": 517.0, + "new_cases": 16.0, + "new_cases_smoothed": 28.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 881.299, + "new_cases_per_million": 27.274, + "new_cases_smoothed_per_million": 48.217, + "total_deaths_per_million": 22.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 81.48 + }, + { + "date": "2020-07-02", + "total_cases": 535.0, + "new_cases": 18.0, + "new_cases_smoothed": 25.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 911.983, + "new_cases_per_million": 30.684, + "new_cases_smoothed_per_million": 43.347, + "total_deaths_per_million": 22.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-07-03", + "total_cases": 547.0, + "new_cases": 12.0, + "new_cases_smoothed": 24.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 932.438, + "new_cases_per_million": 20.456, + "new_cases_smoothed_per_million": 42.372, + "total_deaths_per_million": 22.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-07-04", + "total_cases": 561.0, + "new_cases": 14.0, + "new_cases_smoothed": 24.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 956.303, + "new_cases_per_million": 23.865, + "new_cases_smoothed_per_million": 41.398, + "total_deaths_per_million": 22.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-07-05", + "total_cases": 565.0, + "new_cases": 4.0, + "new_cases_smoothed": 24.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 963.122, + "new_cases_per_million": 6.819, + "new_cases_smoothed_per_million": 42.372, + "total_deaths_per_million": 23.865, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 89.81 + }, + { + "date": "2020-07-06", + "total_cases": 594.0, + "new_cases": 29.0, + "new_cases_smoothed": 14.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1012.556, + "new_cases_per_million": 49.435, + "new_cases_smoothed_per_million": 25.326, + "total_deaths_per_million": 23.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 86.11 + }, + { + "date": "2020-07-07", + "total_cases": 614.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1046.649, + "new_cases_per_million": 34.093, + "new_cases_smoothed_per_million": 27.518, + "total_deaths_per_million": 23.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 86.11 + }, + { + "date": "2020-07-08", + "total_cases": 614.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1046.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.621, + "total_deaths_per_million": 23.865, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 86.11 + }, + { + "date": "2020-07-09", + "total_cases": 665.0, + "new_cases": 51.0, + "new_cases_smoothed": 18.571, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1133.586, + "new_cases_per_million": 86.937, + "new_cases_smoothed_per_million": 31.658, + "total_deaths_per_million": 28.979, + "new_deaths_per_million": 5.114, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-10", + "total_cases": 694.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1183.02, + "new_cases_per_million": 49.435, + "new_cases_smoothed_per_million": 35.797, + "total_deaths_per_million": 28.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-11", + "total_cases": 726.0, + "new_cases": 32.0, + "new_cases_smoothed": 23.571, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1237.569, + "new_cases_per_million": 54.548, + "new_cases_smoothed_per_million": 40.181, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 86.11 + }, + { + "date": "2020-07-12", + "total_cases": 741.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1263.139, + "new_cases_per_million": 25.57, + "new_cases_smoothed_per_million": 42.86, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-13", + "total_cases": 741.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1263.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 35.797, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-14", + "total_cases": 780.0, + "new_cases": 39.0, + "new_cases_smoothed": 23.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1329.619, + "new_cases_per_million": 66.481, + "new_cases_smoothed_per_million": 40.424, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-15", + "total_cases": 801.0, + "new_cases": 21.0, + "new_cases_smoothed": 26.714, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1365.417, + "new_cases_per_million": 35.797, + "new_cases_smoothed_per_million": 45.538, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 86.11 + }, + { + "date": "2020-07-16", + "total_cases": 849.0, + "new_cases": 48.0, + "new_cases_smoothed": 26.286, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1447.24, + "new_cases_per_million": 81.823, + "new_cases_smoothed_per_million": 44.808, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 86.11 + }, + { + "date": "2020-07-17", + "total_cases": 918.0, + "new_cases": 69.0, + "new_cases_smoothed": 32.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1564.86, + "new_cases_per_million": 117.62, + "new_cases_smoothed_per_million": 54.548, + "total_deaths_per_million": 30.684, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 86.11 + }, + { + "date": "2020-07-18", + "total_cases": 943.0, + "new_cases": 25.0, + "new_cases_smoothed": 31.0, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1607.476, + "new_cases_per_million": 42.616, + "new_cases_smoothed_per_million": 52.844, + "total_deaths_per_million": 32.388, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 86.11 + }, + { + "date": "2020-07-19", + "total_cases": 1001.0, + "new_cases": 58.0, + "new_cases_smoothed": 37.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1706.345, + "new_cases_per_million": 98.869, + "new_cases_smoothed_per_million": 63.315, + "total_deaths_per_million": 34.093, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 86.11 + }, + { + "date": "2020-07-20", + "total_cases": 1029.0, + "new_cases": 28.0, + "new_cases_smoothed": 41.143, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1754.075, + "new_cases_per_million": 47.73, + "new_cases_smoothed_per_million": 70.134, + "total_deaths_per_million": 35.797, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 86.11 + }, + { + "date": "2020-07-21", + "total_cases": 1079.0, + "new_cases": 50.0, + "new_cases_smoothed": 42.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1839.307, + "new_cases_per_million": 85.232, + "new_cases_smoothed_per_million": 72.812, + "total_deaths_per_million": 35.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 83.33 + }, + { + "date": "2020-07-22", + "total_cases": 1131.0, + "new_cases": 52.0, + "new_cases_smoothed": 47.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1927.948, + "new_cases_per_million": 88.641, + "new_cases_smoothed_per_million": 80.362, + "total_deaths_per_million": 35.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 83.33 + }, + { + "date": "2020-07-23", + "total_cases": 1176.0, + "new_cases": 45.0, + "new_cases_smoothed": 46.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2004.657, + "new_cases_per_million": 76.709, + "new_cases_smoothed_per_million": 79.631, + "total_deaths_per_million": 35.797, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 83.33 + }, + { + "date": "2020-07-24", + "total_cases": 1234.0, + "new_cases": 58.0, + "new_cases_smoothed": 45.143, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2103.526, + "new_cases_per_million": 98.869, + "new_cases_smoothed_per_million": 76.952, + "total_deaths_per_million": 39.207, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 83.33 + }, + { + "date": "2020-07-25", + "total_cases": 1305.0, + "new_cases": 71.0, + "new_cases_smoothed": 51.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 2224.556, + "new_cases_per_million": 121.029, + "new_cases_smoothed_per_million": 88.154, + "total_deaths_per_million": 39.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 83.33 + }, + { + "date": "2020-07-26", + "total_cases": 1381.0, + "new_cases": 76.0, + "new_cases_smoothed": 54.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2354.108, + "new_cases_per_million": 129.553, + "new_cases_smoothed_per_million": 92.538, + "total_deaths_per_million": 39.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 81.48 + }, + { + "date": "2020-07-27", + "total_cases": 1439.0, + "new_cases": 58.0, + "new_cases_smoothed": 58.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2452.977, + "new_cases_per_million": 98.869, + "new_cases_smoothed_per_million": 99.843, + "total_deaths_per_million": 39.207, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 75.93 + }, + { + "date": "2020-07-28", + "total_cases": 1483.0, + "new_cases": 44.0, + "new_cases_smoothed": 57.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2527.982, + "new_cases_per_million": 75.004, + "new_cases_smoothed_per_million": 98.382, + "total_deaths_per_million": 40.911, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-07-29", + "total_cases": 1510.0, + "new_cases": 27.0, + "new_cases_smoothed": 54.143, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2574.007, + "new_cases_per_million": 46.025, + "new_cases_smoothed_per_million": 92.294, + "total_deaths_per_million": 40.911, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-07-30", + "total_cases": 1607.0, + "new_cases": 97.0, + "new_cases_smoothed": 61.571, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 2739.357, + "new_cases_per_million": 165.35, + "new_cases_smoothed_per_million": 104.957, + "total_deaths_per_million": 44.321, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 1.218, + "stringency_index": 75.93 + }, + { + "date": "2020-07-31", + "total_cases": 1650.0, + "new_cases": 43.0, + "new_cases_smoothed": 59.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2812.657, + "new_cases_per_million": 73.3, + "new_cases_smoothed_per_million": 101.304, + "total_deaths_per_million": 44.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-01", + "total_cases": 1706.0, + "new_cases": 56.0, + "new_cases_smoothed": 57.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 2908.116, + "new_cases_per_million": 95.46, + "new_cases_smoothed_per_million": 97.652, + "total_deaths_per_million": 44.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-02", + "total_cases": 1760.0, + "new_cases": 54.0, + "new_cases_smoothed": 54.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3000.167, + "new_cases_per_million": 92.051, + "new_cases_smoothed_per_million": 92.294, + "total_deaths_per_million": 44.321, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-03", + "total_cases": 1849.0, + "new_cases": 89.0, + "new_cases_smoothed": 58.571, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3151.88, + "new_cases_per_million": 151.713, + "new_cases_smoothed_per_million": 99.843, + "total_deaths_per_million": 46.025, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.974, + "stringency_index": 75.93 + }, + { + "date": "2020-08-04", + "total_cases": 1893.0, + "new_cases": 44.0, + "new_cases_smoothed": 58.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3226.884, + "new_cases_per_million": 75.004, + "new_cases_smoothed_per_million": 99.843, + "total_deaths_per_million": 46.025, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-05", + "total_cases": 1981.0, + "new_cases": 88.0, + "new_cases_smoothed": 67.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3376.893, + "new_cases_per_million": 150.008, + "new_cases_smoothed_per_million": 114.698, + "total_deaths_per_million": 46.025, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-06", + "total_cases": 2050.0, + "new_cases": 69.0, + "new_cases_smoothed": 63.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3494.513, + "new_cases_per_million": 117.62, + "new_cases_smoothed_per_million": 107.879, + "total_deaths_per_million": 46.025, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 75.93 + }, + { + "date": "2020-08-07", + "total_cases": 2096.0, + "new_cases": 46.0, + "new_cases_smoothed": 63.714, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3572.926, + "new_cases_per_million": 78.413, + "new_cases_smoothed_per_million": 108.61, + "total_deaths_per_million": 49.435, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-08", + "total_cases": 2203.0, + "new_cases": 107.0, + "new_cases_smoothed": 71.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3755.323, + "new_cases_per_million": 182.397, + "new_cases_smoothed_per_million": 121.029, + "total_deaths_per_million": 49.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-09", + "total_cases": 2306.0, + "new_cases": 103.0, + "new_cases_smoothed": 78.0, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3930.901, + "new_cases_per_million": 175.578, + "new_cases_smoothed_per_million": 132.962, + "total_deaths_per_million": 49.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 75.93 + }, + { + "date": "2020-08-10", + "total_cases": 2391.0, + "new_cases": 85.0, + "new_cases_smoothed": 77.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4075.795, + "new_cases_per_million": 144.894, + "new_cases_smoothed_per_million": 131.988, + "total_deaths_per_million": 49.435, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.487, + "stringency_index": 79.63 + }, + { + "date": "2020-08-11", + "total_cases": 2489.0, + "new_cases": 98.0, + "new_cases_smoothed": 85.143, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4242.85, + "new_cases_per_million": 167.055, + "new_cases_smoothed_per_million": 145.138, + "total_deaths_per_million": 51.139, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 0.731, + "stringency_index": 85.19 + }, + { + "date": "2020-08-12", + "total_cases": 2559.0, + "new_cases": 70.0, + "new_cases_smoothed": 82.571, + "total_deaths": 39.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4362.175, + "new_cases_per_million": 119.325, + "new_cases_smoothed_per_million": 140.755, + "total_deaths_per_million": 66.481, + "new_deaths_per_million": 15.342, + "new_deaths_smoothed_per_million": 2.922, + "stringency_index": 85.19 + }, + { + "date": "2020-08-13", + "total_cases": 2653.0, + "new_cases": 94.0, + "new_cases_smoothed": 86.143, + "total_deaths": 39.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4522.411, + "new_cases_per_million": 160.236, + "new_cases_smoothed_per_million": 146.843, + "total_deaths_per_million": 66.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.922, + "stringency_index": 85.19 + }, + { + "date": "2020-08-14", + "total_cases": 2761.0, + "new_cases": 108.0, + "new_cases_smoothed": 95.0, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4706.512, + "new_cases_per_million": 184.101, + "new_cases_smoothed_per_million": 161.941, + "total_deaths_per_million": 68.186, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 2.679, + "stringency_index": 85.19 + }, + { + "date": "2020-08-15", + "total_cases": 2838.0, + "new_cases": 77.0, + "new_cases_smoothed": 90.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4837.769, + "new_cases_per_million": 131.257, + "new_cases_smoothed_per_million": 154.635, + "total_deaths_per_million": 69.89, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 2.922, + "stringency_index": 85.19 + }, + { + "date": "2020-08-16", + "total_cases": 2961.0, + "new_cases": 123.0, + "new_cases_smoothed": 93.571, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 5047.44, + "new_cases_per_million": 209.671, + "new_cases_smoothed_per_million": 159.506, + "total_deaths_per_million": 71.595, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 3.166, + "stringency_index": 85.19 + }, + { + "date": "2020-08-17", + "total_cases": 3016.0, + "new_cases": 55.0, + "new_cases_smoothed": 89.286, + "total_deaths": 47.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5141.195, + "new_cases_per_million": 93.755, + "new_cases_smoothed_per_million": 152.2, + "total_deaths_per_million": 80.118, + "new_deaths_per_million": 8.523, + "new_deaths_smoothed_per_million": 4.383, + "stringency_index": 85.19 + }, + { + "date": "2020-08-18", + "total_cases": 3077.0, + "new_cases": 61.0, + "new_cases_smoothed": 84.0, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 5245.178, + "new_cases_per_million": 103.983, + "new_cases_smoothed_per_million": 143.19, + "total_deaths_per_million": 81.823, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 4.383, + "stringency_index": 85.19 + }, + { + "date": "2020-08-19", + "total_cases": 3216.0, + "new_cases": 139.0, + "new_cases_smoothed": 93.857, + "total_deaths": 54.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5482.123, + "new_cases_per_million": 236.945, + "new_cases_smoothed_per_million": 159.993, + "total_deaths_per_million": 92.051, + "new_deaths_per_million": 10.228, + "new_deaths_smoothed_per_million": 3.653, + "stringency_index": 85.19 + }, + { + "date": "2020-08-20", + "total_cases": 3295.0, + "new_cases": 79.0, + "new_cases_smoothed": 91.714, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5616.79, + "new_cases_per_million": 134.667, + "new_cases_smoothed_per_million": 156.34, + "total_deaths_per_million": 92.051, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.653, + "stringency_index": 85.19 + }, + { + "date": "2020-08-21", + "total_cases": 3366.0, + "new_cases": 71.0, + "new_cases_smoothed": 86.429, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5737.819, + "new_cases_per_million": 121.029, + "new_cases_smoothed_per_million": 147.33, + "total_deaths_per_million": 93.755, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 3.653, + "stringency_index": 85.19 + }, + { + "date": "2020-08-22", + "total_cases": 3460.0, + "new_cases": 94.0, + "new_cases_smoothed": 88.857, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 5898.056, + "new_cases_per_million": 160.236, + "new_cases_smoothed_per_million": 151.469, + "total_deaths_per_million": 95.46, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 3.653, + "stringency_index": 85.19 + }, + { + "date": "2020-08-23", + "total_cases": 3569.0, + "new_cases": 109.0, + "new_cases_smoothed": 86.857, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 6083.861, + "new_cases_per_million": 185.806, + "new_cases_smoothed_per_million": 148.06, + "total_deaths_per_million": 97.165, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 3.653, + "stringency_index": 85.19 + }, + { + "date": "2020-08-24", + "total_cases": 3607.0, + "new_cases": 38.0, + "new_cases_smoothed": 84.429, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6148.638, + "new_cases_per_million": 64.776, + "new_cases_smoothed_per_million": 143.92, + "total_deaths_per_million": 98.869, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 2.679, + "stringency_index": 85.19 + }, + { + "date": "2020-08-25", + "total_cases": 3632.0, + "new_cases": 25.0, + "new_cases_smoothed": 79.286, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6191.254, + "new_cases_per_million": 42.616, + "new_cases_smoothed_per_million": 135.154, + "total_deaths_per_million": 102.278, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 2.922, + "stringency_index": 85.19 + }, + { + "date": "2020-08-26", + "total_cases": 3698.0, + "new_cases": 66.0, + "new_cases_smoothed": 68.857, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6303.76, + "new_cases_per_million": 112.506, + "new_cases_smoothed_per_million": 117.377, + "total_deaths_per_million": 103.983, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.705, + "stringency_index": 85.19 + }, + { + "date": "2020-08-27", + "total_cases": 3724.0, + "new_cases": 26.0, + "new_cases_smoothed": 61.286, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6348.081, + "new_cases_per_million": 44.321, + "new_cases_smoothed_per_million": 104.47, + "total_deaths_per_million": 105.688, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.948, + "stringency_index": 85.19 + }, + { + "date": "2020-08-28", + "total_cases": 3793.0, + "new_cases": 69.0, + "new_cases_smoothed": 61.0, + "total_deaths": 66.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6465.701, + "new_cases_per_million": 117.62, + "new_cases_smoothed_per_million": 103.983, + "total_deaths_per_million": 112.506, + "new_deaths_per_million": 6.819, + "new_deaths_smoothed_per_million": 2.679, + "stringency_index": 96.3 + }, + { + "date": "2020-08-29", + "total_cases": 3848.0, + "new_cases": 55.0, + "new_cases_smoothed": 55.429, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6559.456, + "new_cases_per_million": 93.755, + "new_cases_smoothed_per_million": 94.486, + "total_deaths_per_million": 112.506, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.435, + "stringency_index": 96.3 + }, + { + "date": "2020-08-30", + "total_cases": 3954.0, + "new_cases": 106.0, + "new_cases_smoothed": 55.0, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6740.148, + "new_cases_per_million": 180.692, + "new_cases_smoothed_per_million": 93.755, + "total_deaths_per_million": 114.211, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 2.435, + "stringency_index": 96.3 + }, + { + "date": "2020-08-31", + "total_cases": 4009.0, + "new_cases": 55.0, + "new_cases_smoothed": 57.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6833.903, + "new_cases_per_million": 93.755, + "new_cases_smoothed_per_million": 97.895, + "total_deaths_per_million": 114.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.192, + "stringency_index": 96.3 + }, + { + "date": "2020-09-01", + "total_cases": 4034.0, + "new_cases": 25.0, + "new_cases_smoothed": 57.429, + "total_deaths": 71.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6876.519, + "new_cases_per_million": 42.616, + "new_cases_smoothed_per_million": 97.895, + "total_deaths_per_million": 121.029, + "new_deaths_per_million": 6.819, + "new_deaths_smoothed_per_million": 2.679 + }, + { + "date": "2020-09-02", + "total_cases": 4089.0, + "new_cases": 55.0, + "new_cases_smoothed": 55.857, + "total_deaths": 72.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6970.274, + "new_cases_per_million": 93.755, + "new_cases_smoothed_per_million": 95.216, + "total_deaths_per_million": 122.734, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 2.679 + }, + { + "date": "2020-09-03", + "total_cases": 4149.0, + "new_cases": 60.0, + "new_cases_smoothed": 60.714, + "total_deaths": 72.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7072.553, + "new_cases_per_million": 102.278, + "new_cases_smoothed_per_million": 103.496, + "total_deaths_per_million": 122.734, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.435 + }, + { + "date": "2020-09-04", + "total_cases": 4215.0, + "new_cases": 66.0, + "new_cases_smoothed": 60.286, + "total_deaths": 73.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7185.059, + "new_cases_per_million": 112.506, + "new_cases_smoothed_per_million": 102.765, + "total_deaths_per_million": 124.439, + "new_deaths_per_million": 1.705, + "new_deaths_smoothed_per_million": 1.705 + }, + { + "date": "2020-09-05", + "total_cases": 4252.0, + "new_cases": 37.0, + "new_cases_smoothed": 57.714, + "total_deaths": 75.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7248.131, + "new_cases_per_million": 63.072, + "new_cases_smoothed_per_million": 98.382, + "total_deaths_per_million": 127.848, + "new_deaths_per_million": 3.409, + "new_deaths_smoothed_per_million": 2.192 + } + ] + }, + "SWZ": { + "continent": "Africa", + "location": "Swaziland", + "population": 1160164.0, + "population_density": 79.492, + "median_age": 21.5, + "aged_65_older": 3.163, + "aged_70_older": 1.845, + "gdp_per_capita": 7738.975, + "cardiovasc_death_rate": 333.436, + "diabetes_prevalence": 3.94, + "female_smokers": 1.7, + "male_smokers": 16.5, + "handwashing_facilities": 24.097, + "hospital_beds_per_thousand": 2.1, + "life_expectancy": 60.19, + "data": [ + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.862, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 19.44 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-23", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.448, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-25", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-26", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 55.56 + }, + { + "date": "2020-03-27", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.172, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-03-28", + "total_cases": 9.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-03-29", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-03-30", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-03-31", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-01", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-02", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-03", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-04", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-07", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.619, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-08", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.619, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-09", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.343, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.343, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.343, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-12", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.067, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.067, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-14", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.929, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.929, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-04-16", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.791, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-18", + "total_cases": 19.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.377, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 0.862, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-19", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.377, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-20", + "total_cases": 22.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.963, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-21", + "total_cases": 24.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.687, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 1.108, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 20.687, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.108, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-23", + "total_cases": 31.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 26.72, + "new_cases_per_million": 6.034, + "new_cases_smoothed_per_million": 1.847, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-24", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 27.582, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 1.97, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-04-25", + "total_cases": 40.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.478, + "new_cases_per_million": 6.896, + "new_cases_smoothed_per_million": 2.586, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-26", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 34.478, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.586, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-27", + "total_cases": 59.0, + "new_cases": 19.0, + "new_cases_smoothed": 5.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.855, + "new_cases_per_million": 16.377, + "new_cases_smoothed_per_million": 4.556, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-28", + "total_cases": 65.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.027, + "new_cases_per_million": 5.172, + "new_cases_smoothed_per_million": 5.049, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-29", + "total_cases": 71.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 61.198, + "new_cases_per_million": 5.172, + "new_cases_smoothed_per_million": 5.787, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-04-30", + "total_cases": 91.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 78.437, + "new_cases_per_million": 17.239, + "new_cases_smoothed_per_million": 7.388, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-01", + "total_cases": 100.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.195, + "new_cases_per_million": 7.758, + "new_cases_smoothed_per_million": 8.373, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-02", + "total_cases": 106.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.366, + "new_cases_per_million": 5.172, + "new_cases_smoothed_per_million": 8.127, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-03", + "total_cases": 108.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.09, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 8.373, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-04", + "total_cases": 112.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 96.538, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-05", + "total_cases": 116.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.986, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 6.28, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-06", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.541, + "total_deaths_per_million": 0.862, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-07", + "total_cases": 123.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.019, + "new_cases_per_million": 6.034, + "new_cases_smoothed_per_million": 3.94, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-08", + "total_cases": 153.0, + "new_cases": 30.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 131.878, + "new_cases_per_million": 25.858, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-09", + "total_cases": 159.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 137.05, + "new_cases_per_million": 5.172, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-10", + "total_cases": 163.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 140.497, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 6.772, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-11", + "total_cases": 172.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 148.255, + "new_cases_per_million": 7.758, + "new_cases_smoothed_per_million": 7.388, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-12", + "total_cases": 175.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 150.841, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-13", + "total_cases": 184.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 158.598, + "new_cases_per_million": 7.758, + "new_cases_smoothed_per_million": 8.373, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-05-14", + "total_cases": 187.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.184, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 7.881, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-15", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 161.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.187, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-16", + "total_cases": 190.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 163.77, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 3.817, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-17", + "total_cases": 202.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.113, + "new_cases_per_million": 10.343, + "new_cases_smoothed_per_million": 4.802, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-18", + "total_cases": 203.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.975, + "new_cases_per_million": 0.862, + "new_cases_smoothed_per_million": 3.817, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-19", + "total_cases": 203.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.975, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.448, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-20", + "total_cases": 208.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 179.285, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 2.955, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-21", + "total_cases": 217.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 187.043, + "new_cases_per_million": 7.758, + "new_cases_smoothed_per_million": 3.694, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-22", + "total_cases": 220.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.628, + "new_cases_per_million": 2.586, + "new_cases_smoothed_per_million": 4.063, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-23", + "total_cases": 220.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.694, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-24", + "total_cases": 238.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 205.143, + "new_cases_per_million": 15.515, + "new_cases_smoothed_per_million": 4.433, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-25", + "total_cases": 250.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 215.487, + "new_cases_per_million": 10.343, + "new_cases_smoothed_per_million": 5.787, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-26", + "total_cases": 256.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 220.658, + "new_cases_per_million": 5.172, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-27", + "total_cases": 261.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 224.968, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-28", + "total_cases": 272.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 234.45, + "new_cases_per_million": 9.481, + "new_cases_smoothed_per_million": 6.772, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-29", + "total_cases": 279.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.483, + "new_cases_per_million": 6.034, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-30", + "total_cases": 279.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 240.483, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.265, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-05-31", + "total_cases": 283.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.931, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 5.541, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-01", + "total_cases": 285.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 245.655, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 4.31, + "total_deaths_per_million": 1.724, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-02", + "total_cases": 293.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 252.551, + "new_cases_per_million": 6.896, + "new_cases_smoothed_per_million": 4.556, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-03", + "total_cases": 293.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 252.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.94, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-04", + "total_cases": 295.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 254.274, + "new_cases_per_million": 1.724, + "new_cases_smoothed_per_million": 2.832, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-05", + "total_cases": 300.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 258.584, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 2.586, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-06", + "total_cases": 305.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 262.894, + "new_cases_per_million": 4.31, + "new_cases_smoothed_per_million": 3.202, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-07", + "total_cases": 322.0, + "new_cases": 17.0, + "new_cases_smoothed": 5.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 277.547, + "new_cases_per_million": 14.653, + "new_cases_smoothed_per_million": 4.802, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-08", + "total_cases": 333.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 287.028, + "new_cases_per_million": 9.481, + "new_cases_smoothed_per_million": 5.91, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-09", + "total_cases": 340.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 293.062, + "new_cases_per_million": 6.034, + "new_cases_smoothed_per_million": 5.787, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-10", + "total_cases": 371.0, + "new_cases": 31.0, + "new_cases_smoothed": 11.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 319.782, + "new_cases_per_million": 26.72, + "new_cases_smoothed_per_million": 9.605, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-11", + "total_cases": 398.0, + "new_cases": 27.0, + "new_cases_smoothed": 14.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 343.055, + "new_cases_per_million": 23.273, + "new_cases_smoothed_per_million": 12.683, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-12", + "total_cases": 449.0, + "new_cases": 51.0, + "new_cases_smoothed": 21.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.014, + "new_cases_per_million": 43.959, + "new_cases_smoothed_per_million": 18.347, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-13", + "total_cases": 472.0, + "new_cases": 23.0, + "new_cases_smoothed": 23.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 406.839, + "new_cases_per_million": 19.825, + "new_cases_smoothed_per_million": 20.564, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-14", + "total_cases": 486.0, + "new_cases": 14.0, + "new_cases_smoothed": 23.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 418.906, + "new_cases_per_million": 12.067, + "new_cases_smoothed_per_million": 20.194, + "total_deaths_per_million": 2.586, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-15", + "total_cases": 490.0, + "new_cases": 4.0, + "new_cases_smoothed": 22.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 422.354, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 19.332, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-16", + "total_cases": 506.0, + "new_cases": 16.0, + "new_cases_smoothed": 23.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 436.145, + "new_cases_per_million": 13.791, + "new_cases_smoothed_per_million": 20.44, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-17", + "total_cases": 520.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 448.212, + "new_cases_per_million": 12.067, + "new_cases_smoothed_per_million": 18.347, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-18", + "total_cases": 563.0, + "new_cases": 43.0, + "new_cases_smoothed": 23.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 485.276, + "new_cases_per_million": 37.064, + "new_cases_smoothed_per_million": 20.317, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-19", + "total_cases": 586.0, + "new_cases": 23.0, + "new_cases_smoothed": 19.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 505.101, + "new_cases_per_million": 19.825, + "new_cases_smoothed_per_million": 16.87, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-20", + "total_cases": 623.0, + "new_cases": 37.0, + "new_cases_smoothed": 21.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 536.993, + "new_cases_per_million": 31.892, + "new_cases_smoothed_per_million": 18.593, + "total_deaths_per_million": 3.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-21", + "total_cases": 627.0, + "new_cases": 4.0, + "new_cases_smoothed": 20.143, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 540.441, + "new_cases_per_million": 3.448, + "new_cases_smoothed_per_million": 17.362, + "total_deaths_per_million": 4.31, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 84.26 + }, + { + "date": "2020-06-22", + "total_cases": 635.0, + "new_cases": 8.0, + "new_cases_smoothed": 20.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 547.336, + "new_cases_per_million": 6.896, + "new_cases_smoothed_per_million": 17.855, + "total_deaths_per_million": 4.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 84.26 + }, + { + "date": "2020-06-23", + "total_cases": 643.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 554.232, + "new_cases_per_million": 6.896, + "new_cases_smoothed_per_million": 16.87, + "total_deaths_per_million": 5.172, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 84.26 + }, + { + "date": "2020-06-24", + "total_cases": 674.0, + "new_cases": 31.0, + "new_cases_smoothed": 22.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 580.952, + "new_cases_per_million": 26.72, + "new_cases_smoothed_per_million": 18.963, + "total_deaths_per_million": 6.034, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 84.26 + }, + { + "date": "2020-06-25", + "total_cases": 690.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 594.744, + "new_cases_per_million": 13.791, + "new_cases_smoothed_per_million": 15.638, + "total_deaths_per_million": 6.034, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 84.26 + }, + { + "date": "2020-06-26", + "total_cases": 706.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 608.535, + "new_cases_per_million": 13.791, + "new_cases_smoothed_per_million": 14.776, + "total_deaths_per_million": 6.896, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 84.26 + }, + { + "date": "2020-06-27", + "total_cases": 728.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 627.497, + "new_cases_per_million": 18.963, + "new_cases_smoothed_per_million": 12.929, + "total_deaths_per_million": 6.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 84.26 + }, + { + "date": "2020-06-28", + "total_cases": 745.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 642.151, + "new_cases_per_million": 14.653, + "new_cases_smoothed_per_million": 14.53, + "total_deaths_per_million": 6.896, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 84.26 + }, + { + "date": "2020-06-29", + "total_cases": 781.0, + "new_cases": 36.0, + "new_cases_smoothed": 20.857, + "total_deaths": 11.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 673.181, + "new_cases_per_million": 31.03, + "new_cases_smoothed_per_million": 17.978, + "total_deaths_per_million": 9.481, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 0.739, + "stringency_index": 84.26 + }, + { + "date": "2020-06-30", + "total_cases": 795.0, + "new_cases": 14.0, + "new_cases_smoothed": 21.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 685.248, + "new_cases_per_million": 12.067, + "new_cases_smoothed_per_million": 18.717, + "total_deaths_per_million": 9.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 84.26 + }, + { + "date": "2020-07-01", + "total_cases": 812.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 699.901, + "new_cases_per_million": 14.653, + "new_cases_smoothed_per_million": 16.993, + "total_deaths_per_million": 9.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 84.26 + }, + { + "date": "2020-07-02", + "total_cases": 840.0, + "new_cases": 28.0, + "new_cases_smoothed": 21.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 724.036, + "new_cases_per_million": 24.135, + "new_cases_smoothed_per_million": 18.47, + "total_deaths_per_million": 9.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 84.26 + }, + { + "date": "2020-07-03", + "total_cases": 873.0, + "new_cases": 33.0, + "new_cases_smoothed": 23.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 752.48, + "new_cases_per_million": 28.444, + "new_cases_smoothed_per_million": 20.564, + "total_deaths_per_million": 9.481, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 84.26 + }, + { + "date": "2020-07-04", + "total_cases": 909.0, + "new_cases": 36.0, + "new_cases_smoothed": 25.857, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 783.51, + "new_cases_per_million": 31.03, + "new_cases_smoothed_per_million": 22.287, + "total_deaths_per_million": 11.205, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 84.26 + }, + { + "date": "2020-07-05", + "total_cases": 954.0, + "new_cases": 45.0, + "new_cases_smoothed": 29.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 822.298, + "new_cases_per_million": 38.788, + "new_cases_smoothed_per_million": 25.735, + "total_deaths_per_million": 11.205, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 84.26 + }, + { + "date": "2020-07-06", + "total_cases": 988.0, + "new_cases": 34.0, + "new_cases_smoothed": 29.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 851.604, + "new_cases_per_million": 29.306, + "new_cases_smoothed_per_million": 25.489, + "total_deaths_per_million": 11.205, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 84.26 + }, + { + "date": "2020-07-07", + "total_cases": 1011.0, + "new_cases": 23.0, + "new_cases_smoothed": 30.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 871.429, + "new_cases_per_million": 19.825, + "new_cases_smoothed_per_million": 26.597, + "total_deaths_per_million": 11.205, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 84.26 + }, + { + "date": "2020-07-08", + "total_cases": 1056.0, + "new_cases": 45.0, + "new_cases_smoothed": 34.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 910.216, + "new_cases_per_million": 38.788, + "new_cases_smoothed_per_million": 30.045, + "total_deaths_per_million": 12.067, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 80.56 + }, + { + "date": "2020-07-09", + "total_cases": 1138.0, + "new_cases": 82.0, + "new_cases_smoothed": 42.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 980.896, + "new_cases_per_million": 70.68, + "new_cases_smoothed_per_million": 36.694, + "total_deaths_per_million": 12.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 80.56 + }, + { + "date": "2020-07-10", + "total_cases": 1213.0, + "new_cases": 75.0, + "new_cases_smoothed": 48.571, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1045.542, + "new_cases_per_million": 64.646, + "new_cases_smoothed_per_million": 41.866, + "total_deaths_per_million": 14.653, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 0.739, + "stringency_index": 80.56 + }, + { + "date": "2020-07-11", + "total_cases": 1257.0, + "new_cases": 44.0, + "new_cases_smoothed": 49.714, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1083.468, + "new_cases_per_million": 37.926, + "new_cases_smoothed_per_million": 42.851, + "total_deaths_per_million": 15.515, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 80.56 + }, + { + "date": "2020-07-12", + "total_cases": 1311.0, + "new_cases": 54.0, + "new_cases_smoothed": 51.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1130.013, + "new_cases_per_million": 46.545, + "new_cases_smoothed_per_million": 43.959, + "total_deaths_per_million": 15.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 80.56 + }, + { + "date": "2020-07-13", + "total_cases": 1351.0, + "new_cases": 40.0, + "new_cases_smoothed": 51.857, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1164.491, + "new_cases_per_million": 34.478, + "new_cases_smoothed_per_million": 44.698, + "total_deaths_per_million": 17.239, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 0.862, + "stringency_index": 80.56 + }, + { + "date": "2020-07-14", + "total_cases": 1389.0, + "new_cases": 38.0, + "new_cases_smoothed": 54.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1197.245, + "new_cases_per_million": 32.754, + "new_cases_smoothed_per_million": 46.545, + "total_deaths_per_million": 17.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.862, + "stringency_index": 80.56 + }, + { + "date": "2020-07-15", + "total_cases": 1434.0, + "new_cases": 45.0, + "new_cases_smoothed": 54.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1236.032, + "new_cases_per_million": 38.788, + "new_cases_smoothed_per_million": 46.545, + "total_deaths_per_million": 17.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.739, + "stringency_index": 80.56 + }, + { + "date": "2020-07-16", + "total_cases": 1489.0, + "new_cases": 55.0, + "new_cases_smoothed": 50.143, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1283.439, + "new_cases_per_million": 47.407, + "new_cases_smoothed_per_million": 43.22, + "total_deaths_per_million": 17.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.739, + "stringency_index": 80.56 + }, + { + "date": "2020-07-17", + "total_cases": 1552.0, + "new_cases": 63.0, + "new_cases_smoothed": 48.429, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1337.742, + "new_cases_per_million": 54.303, + "new_cases_smoothed_per_million": 41.743, + "total_deaths_per_million": 18.101, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 80.56 + }, + { + "date": "2020-07-18", + "total_cases": 1619.0, + "new_cases": 67.0, + "new_cases_smoothed": 51.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1395.492, + "new_cases_per_million": 57.75, + "new_cases_smoothed_per_million": 44.575, + "total_deaths_per_million": 18.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 80.56 + }, + { + "date": "2020-07-19", + "total_cases": 1729.0, + "new_cases": 110.0, + "new_cases_smoothed": 59.714, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1490.307, + "new_cases_per_million": 94.814, + "new_cases_smoothed_per_million": 51.471, + "total_deaths_per_million": 18.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 80.56 + }, + { + "date": "2020-07-20", + "total_cases": 1793.0, + "new_cases": 64.0, + "new_cases_smoothed": 63.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1545.471, + "new_cases_per_million": 55.165, + "new_cases_smoothed_per_million": 54.426, + "total_deaths_per_million": 18.101, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "stringency_index": 80.56 + }, + { + "date": "2020-07-21", + "total_cases": 1826.0, + "new_cases": 33.0, + "new_cases_smoothed": 62.429, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1573.915, + "new_cases_per_million": 28.444, + "new_cases_smoothed_per_million": 53.81, + "total_deaths_per_million": 19.825, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 80.56 + }, + { + "date": "2020-07-22", + "total_cases": 1894.0, + "new_cases": 68.0, + "new_cases_smoothed": 65.714, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 1632.528, + "new_cases_per_million": 58.612, + "new_cases_smoothed_per_million": 56.642, + "total_deaths_per_million": 20.687, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.493, + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 1938.0, + "new_cases": 44.0, + "new_cases_smoothed": 64.143, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1670.453, + "new_cases_per_million": 37.926, + "new_cases_smoothed_per_million": 55.288, + "total_deaths_per_million": 21.549, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.616, + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 2021.0, + "new_cases": 83.0, + "new_cases_smoothed": 67.0, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1741.995, + "new_cases_per_million": 71.542, + "new_cases_smoothed_per_million": 57.75, + "total_deaths_per_million": 24.135, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 0.862, + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 2073.0, + "new_cases": 52.0, + "new_cases_smoothed": 64.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1786.816, + "new_cases_per_million": 44.821, + "new_cases_smoothed_per_million": 55.903, + "total_deaths_per_million": 24.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.862, + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 2142.0, + "new_cases": 69.0, + "new_cases_smoothed": 59.0, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1846.291, + "new_cases_per_million": 59.474, + "new_cases_smoothed_per_million": 50.855, + "total_deaths_per_million": 24.135, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.862, + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 2207.0, + "new_cases": 65.0, + "new_cases_smoothed": 59.143, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1902.317, + "new_cases_per_million": 56.027, + "new_cases_smoothed_per_million": 50.978, + "total_deaths_per_million": 27.582, + "new_deaths_per_million": 3.448, + "new_deaths_smoothed_per_million": 1.354, + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 2316.0, + "new_cases": 109.0, + "new_cases_smoothed": 70.0, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 1996.269, + "new_cases_per_million": 93.952, + "new_cases_smoothed_per_million": 60.336, + "total_deaths_per_million": 29.306, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.354, + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 2404.0, + "new_cases": 88.0, + "new_cases_smoothed": 72.857, + "total_deaths": 39.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2072.121, + "new_cases_per_million": 75.851, + "new_cases_smoothed_per_million": 62.799, + "total_deaths_per_million": 33.616, + "new_deaths_per_million": 4.31, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 2551.0, + "new_cases": 147.0, + "new_cases_smoothed": 87.571, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2198.827, + "new_cases_per_million": 126.706, + "new_cases_smoothed_per_million": 75.482, + "total_deaths_per_million": 34.478, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 2577.0, + "new_cases": 26.0, + "new_cases_smoothed": 79.429, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 2221.238, + "new_cases_per_million": 22.411, + "new_cases_smoothed_per_million": 68.463, + "total_deaths_per_million": 34.478, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.478, + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 2648.0, + "new_cases": 71.0, + "new_cases_smoothed": 82.143, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2282.436, + "new_cases_per_million": 61.198, + "new_cases_smoothed_per_million": 70.803, + "total_deaths_per_million": 35.34, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 2706.0, + "new_cases": 58.0, + "new_cases_smoothed": 80.571, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2332.429, + "new_cases_per_million": 49.993, + "new_cases_smoothed_per_million": 69.448, + "total_deaths_per_million": 37.064, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 2775.0, + "new_cases": 69.0, + "new_cases_smoothed": 81.143, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2391.903, + "new_cases_per_million": 59.474, + "new_cases_smoothed_per_million": 69.941, + "total_deaths_per_million": 37.064, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.354, + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 2838.0, + "new_cases": 63.0, + "new_cases_smoothed": 74.571, + "total_deaths": 45.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 2446.206, + "new_cases_per_million": 54.303, + "new_cases_smoothed_per_million": 64.277, + "total_deaths_per_million": 38.788, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.354, + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 2856.0, + "new_cases": 18.0, + "new_cases_smoothed": 64.571, + "total_deaths": 49.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 2461.721, + "new_cases_per_million": 15.515, + "new_cases_smoothed_per_million": 55.657, + "total_deaths_per_million": 42.235, + "new_deaths_per_million": 3.448, + "new_deaths_smoothed_per_million": 1.231, + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 2909.0, + "new_cases": 53.0, + "new_cases_smoothed": 51.143, + "total_deaths": 53.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2507.404, + "new_cases_per_million": 45.683, + "new_cases_smoothed_per_million": 44.082, + "total_deaths_per_million": 45.683, + "new_deaths_per_million": 3.448, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 80.56 + }, + { + "date": "2020-08-07", + "total_cases": 2968.0, + "new_cases": 59.0, + "new_cases_smoothed": 55.857, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2558.259, + "new_cases_per_million": 50.855, + "new_cases_smoothed_per_million": 48.146, + "total_deaths_per_million": 47.407, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 3036.0, + "new_cases": 68.0, + "new_cases_smoothed": 55.429, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2616.871, + "new_cases_per_million": 58.612, + "new_cases_smoothed_per_million": 47.776, + "total_deaths_per_million": 48.269, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 3128.0, + "new_cases": 92.0, + "new_cases_smoothed": 60.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 2696.171, + "new_cases_per_million": 79.299, + "new_cases_smoothed_per_million": 51.963, + "total_deaths_per_million": 48.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 3236.0, + "new_cases": 108.0, + "new_cases_smoothed": 65.857, + "total_deaths": 58.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 2789.261, + "new_cases_per_million": 93.09, + "new_cases_smoothed_per_million": 56.765, + "total_deaths_per_million": 49.993, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 3309.0, + "new_cases": 73.0, + "new_cases_smoothed": 67.286, + "total_deaths": 61.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 2852.183, + "new_cases_per_million": 62.922, + "new_cases_smoothed_per_million": 57.997, + "total_deaths_per_million": 52.579, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 1.97, + "stringency_index": 80.56 + }, + { + "date": "2020-08-12", + "total_cases": 3410.0, + "new_cases": 101.0, + "new_cases_smoothed": 79.143, + "total_deaths": 63.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 2939.24, + "new_cases_per_million": 87.057, + "new_cases_smoothed_per_million": 68.217, + "total_deaths_per_million": 54.303, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.724, + "stringency_index": 80.56 + }, + { + "date": "2020-08-13", + "total_cases": 3525.0, + "new_cases": 115.0, + "new_cases_smoothed": 88.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3038.364, + "new_cases_per_million": 99.124, + "new_cases_smoothed_per_million": 75.851, + "total_deaths_per_million": 54.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.231, + "stringency_index": 80.56 + }, + { + "date": "2020-08-14", + "total_cases": 3599.0, + "new_cases": 74.0, + "new_cases_smoothed": 90.143, + "total_deaths": 65.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3102.148, + "new_cases_per_million": 63.784, + "new_cases_smoothed_per_million": 77.698, + "total_deaths_per_million": 56.027, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.231, + "stringency_index": 80.56 + }, + { + "date": "2020-08-15", + "total_cases": 3670.0, + "new_cases": 71.0, + "new_cases_smoothed": 90.571, + "total_deaths": 68.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3163.346, + "new_cases_per_million": 61.198, + "new_cases_smoothed_per_million": 78.068, + "total_deaths_per_million": 58.612, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 1.478, + "stringency_index": 80.56 + }, + { + "date": "2020-08-16", + "total_cases": 3745.0, + "new_cases": 75.0, + "new_cases_smoothed": 88.143, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3227.992, + "new_cases_per_million": 64.646, + "new_cases_smoothed_per_million": 75.974, + "total_deaths_per_million": 59.474, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 80.56 + }, + { + "date": "2020-08-17", + "total_cases": 3839.0, + "new_cases": 94.0, + "new_cases_smoothed": 86.143, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3309.015, + "new_cases_per_million": 81.023, + "new_cases_smoothed_per_million": 74.251, + "total_deaths_per_million": 60.336, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.478, + "stringency_index": 80.56 + }, + { + "date": "2020-08-18", + "total_cases": 3894.0, + "new_cases": 55.0, + "new_cases_smoothed": 83.571, + "total_deaths": 73.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3356.422, + "new_cases_per_million": 47.407, + "new_cases_smoothed_per_million": 72.034, + "total_deaths_per_million": 62.922, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 1.478, + "stringency_index": 64.81 + }, + { + "date": "2020-08-19", + "total_cases": 3989.0, + "new_cases": 95.0, + "new_cases_smoothed": 82.714, + "total_deaths": 76.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3438.307, + "new_cases_per_million": 81.885, + "new_cases_smoothed_per_million": 71.295, + "total_deaths_per_million": 65.508, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 64.81 + }, + { + "date": "2020-08-20", + "total_cases": 4058.0, + "new_cases": 69.0, + "new_cases_smoothed": 76.143, + "total_deaths": 79.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3497.781, + "new_cases_per_million": 59.474, + "new_cases_smoothed_per_million": 65.631, + "total_deaths_per_million": 68.094, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 1.97, + "stringency_index": 64.81 + }, + { + "date": "2020-08-21", + "total_cases": 4110.0, + "new_cases": 52.0, + "new_cases_smoothed": 73.0, + "total_deaths": 81.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3542.603, + "new_cases_per_million": 44.821, + "new_cases_smoothed_per_million": 62.922, + "total_deaths_per_million": 69.818, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.97, + "stringency_index": 64.81 + }, + { + "date": "2020-08-22", + "total_cases": 4128.0, + "new_cases": 18.0, + "new_cases_smoothed": 65.429, + "total_deaths": 81.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3558.118, + "new_cases_per_million": 15.515, + "new_cases_smoothed_per_million": 56.396, + "total_deaths_per_million": 69.818, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.601, + "stringency_index": 64.81 + }, + { + "date": "2020-08-23", + "total_cases": 4189.0, + "new_cases": 61.0, + "new_cases_smoothed": 63.429, + "total_deaths": 83.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3610.696, + "new_cases_per_million": 52.579, + "new_cases_smoothed_per_million": 54.672, + "total_deaths_per_million": 71.542, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.724, + "stringency_index": 64.81 + }, + { + "date": "2020-08-24", + "total_cases": 4225.0, + "new_cases": 36.0, + "new_cases_smoothed": 55.143, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3641.727, + "new_cases_per_million": 31.03, + "new_cases_smoothed_per_million": 47.53, + "total_deaths_per_million": 73.266, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.847, + "stringency_index": 64.81 + }, + { + "date": "2020-08-25", + "total_cases": 4304.0, + "new_cases": 79.0, + "new_cases_smoothed": 58.571, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3709.82, + "new_cases_per_million": 68.094, + "new_cases_smoothed_per_million": 50.485, + "total_deaths_per_million": 73.266, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.478, + "stringency_index": 64.81 + }, + { + "date": "2020-08-26", + "total_cases": 4327.0, + "new_cases": 23.0, + "new_cases_smoothed": 48.286, + "total_deaths": 86.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3729.645, + "new_cases_per_million": 19.825, + "new_cases_smoothed_per_million": 41.62, + "total_deaths_per_million": 74.127, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 1.231, + "stringency_index": 64.81 + }, + { + "date": "2020-08-27", + "total_cases": 4387.0, + "new_cases": 60.0, + "new_cases_smoothed": 47.0, + "total_deaths": 88.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3781.362, + "new_cases_per_million": 51.717, + "new_cases_smoothed_per_million": 40.512, + "total_deaths_per_million": 75.851, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.108, + "stringency_index": 64.81 + }, + { + "date": "2020-08-28", + "total_cases": 4433.0, + "new_cases": 46.0, + "new_cases_smoothed": 46.143, + "total_deaths": 89.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3821.012, + "new_cases_per_million": 39.65, + "new_cases_smoothed_per_million": 39.773, + "total_deaths_per_million": 76.713, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.985, + "stringency_index": 64.81 + }, + { + "date": "2020-08-29", + "total_cases": 4461.0, + "new_cases": 28.0, + "new_cases_smoothed": 47.571, + "total_deaths": 91.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 3845.146, + "new_cases_per_million": 24.135, + "new_cases_smoothed_per_million": 41.004, + "total_deaths_per_million": 78.437, + "new_deaths_per_million": 1.724, + "new_deaths_smoothed_per_million": 1.231 + }, + { + "date": "2020-08-30", + "total_cases": 4510.0, + "new_cases": 49.0, + "new_cases_smoothed": 45.857, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3887.381, + "new_cases_per_million": 42.235, + "new_cases_smoothed_per_million": 39.526, + "total_deaths_per_million": 78.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.985 + }, + { + "date": "2020-08-31", + "total_cases": 4561.0, + "new_cases": 51.0, + "new_cases_smoothed": 48.0, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3931.341, + "new_cases_per_million": 43.959, + "new_cases_smoothed_per_million": 41.373, + "total_deaths_per_million": 78.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.739 + }, + { + "date": "2020-09-01", + "total_cases": 4577.0, + "new_cases": 16.0, + "new_cases_smoothed": 39.0, + "total_deaths": 91.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3945.132, + "new_cases_per_million": 13.791, + "new_cases_smoothed_per_million": 33.616, + "total_deaths_per_million": 78.437, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.739 + }, + { + "date": "2020-09-02", + "total_cases": 4618.0, + "new_cases": 41.0, + "new_cases_smoothed": 41.571, + "total_deaths": 94.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3980.472, + "new_cases_per_million": 35.34, + "new_cases_smoothed_per_million": 35.832, + "total_deaths_per_million": 81.023, + "new_deaths_per_million": 2.586, + "new_deaths_smoothed_per_million": 0.985 + }, + { + "date": "2020-09-03", + "total_cases": 4668.0, + "new_cases": 50.0, + "new_cases_smoothed": 40.143, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4023.569, + "new_cases_per_million": 43.097, + "new_cases_smoothed_per_million": 34.601, + "total_deaths_per_million": 81.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.739 + }, + { + "date": "2020-09-04", + "total_cases": 4720.0, + "new_cases": 52.0, + "new_cases_smoothed": 41.0, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4068.39, + "new_cases_per_million": 44.821, + "new_cases_smoothed_per_million": 35.34, + "total_deaths_per_million": 81.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.616 + }, + { + "date": "2020-09-05", + "total_cases": 4780.0, + "new_cases": 60.0, + "new_cases_smoothed": 45.571, + "total_deaths": 94.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4120.107, + "new_cases_per_million": 51.717, + "new_cases_smoothed_per_million": 39.28, + "total_deaths_per_million": 81.023, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.369 + } + ] + }, + "SWE": { + "continent": "Europe", + "location": "Sweden", + "population": 10099270.0, + "population_density": 24.718, + "median_age": 41.0, + "aged_65_older": 19.985, + "aged_70_older": 13.433, + "gdp_per_capita": 46949.283, + "extreme_poverty": 0.5, + "cardiovasc_death_rate": 133.982, + "diabetes_prevalence": 4.79, + "female_smokers": 18.8, + "male_smokers": 18.9, + "hospital_beds_per_thousand": 2.22, + "life_expectancy": 82.8, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.099, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.198, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.297, + "new_cases_per_million": 0.099, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 11.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.089, + "new_cases_per_million": 0.792, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 14.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.386, + "new_cases_per_million": 0.297, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.386, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "total_cases": 19.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.881, + "new_cases_per_million": 0.495, + "new_cases_smoothed_per_million": 0.255, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "total_cases": 32.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.169, + "new_cases_per_million": 1.287, + "new_cases_smoothed_per_million": 0.439, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 62.0, + "new_cases": 30.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.139, + "new_cases_per_million": 2.971, + "new_cases_smoothed_per_million": 0.849, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "total_cases": 87.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.614, + "new_cases_per_million": 2.475, + "new_cases_smoothed_per_million": 1.188, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 146.0, + "new_cases": 59.0, + "new_cases_smoothed": 19.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.456, + "new_cases_per_million": 5.842, + "new_cases_smoothed_per_million": 1.91, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "total_cases": 179.0, + "new_cases": 33.0, + "new_cases_smoothed": 23.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.724, + "new_cases_per_million": 3.268, + "new_cases_smoothed_per_million": 2.334, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "total_cases": 225.0, + "new_cases": 46.0, + "new_cases_smoothed": 30.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.279, + "new_cases_per_million": 4.555, + "new_cases_smoothed_per_million": 2.985, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 326.0, + "new_cases": 101.0, + "new_cases_smoothed": 43.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.28, + "new_cases_per_million": 10.001, + "new_cases_smoothed_per_million": 4.343, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 424.0, + "new_cases": 98.0, + "new_cases_smoothed": 56.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.983, + "new_cases_per_million": 9.704, + "new_cases_smoothed_per_million": 5.545, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 620.0, + "new_cases": 196.0, + "new_cases_smoothed": 79.714, + "total_deaths": 6.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 61.391, + "new_cases_per_million": 19.407, + "new_cases_smoothed_per_million": 7.893, + "total_deaths_per_million": 0.594, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 16.67 + }, + { + "date": "2020-03-13", + "total_cases": 771.0, + "new_cases": 151.0, + "new_cases_smoothed": 97.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 76.342, + "new_cases_per_million": 14.952, + "new_cases_smoothed_per_million": 9.675, + "total_deaths_per_million": 0.594, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 16.67 + }, + { + "date": "2020-03-14", + "total_cases": 923.0, + "new_cases": 152.0, + "new_cases_smoothed": 111.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 91.393, + "new_cases_per_million": 15.051, + "new_cases_smoothed_per_million": 10.991, + "total_deaths_per_million": 0.693, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099, + "stringency_index": 16.67 + }, + { + "date": "2020-03-15", + "total_cases": 994.0, + "new_cases": 71.0, + "new_cases_smoothed": 116.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 98.423, + "new_cases_per_million": 7.03, + "new_cases_smoothed_per_million": 11.528, + "total_deaths_per_million": 0.792, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 16.67 + }, + { + "date": "2020-03-16", + "total_cases": 1063.0, + "new_cases": 69.0, + "new_cases_smoothed": 119.714, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 105.255, + "new_cases_per_million": 6.832, + "new_cases_smoothed_per_million": 11.854, + "total_deaths_per_million": 0.99, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 16.67 + }, + { + "date": "2020-03-17", + "total_cases": 1146.0, + "new_cases": 83.0, + "new_cases_smoothed": 117.143, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 113.474, + "new_cases_per_million": 8.218, + "new_cases_smoothed_per_million": 11.599, + "total_deaths_per_million": 1.188, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.17, + "stringency_index": 16.67 + }, + { + "date": "2020-03-18", + "total_cases": 1265.0, + "new_cases": 119.0, + "new_cases_smoothed": 120.143, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 125.257, + "new_cases_per_million": 11.783, + "new_cases_smoothed_per_million": 11.896, + "total_deaths_per_million": 1.287, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 20.37 + }, + { + "date": "2020-03-19", + "total_cases": 1410.0, + "new_cases": 145.0, + "new_cases_smoothed": 112.857, + "total_deaths": 19.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 139.614, + "new_cases_per_million": 14.357, + "new_cases_smoothed_per_million": 11.175, + "total_deaths_per_million": 1.881, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 28.7 + }, + { + "date": "2020-03-20", + "total_cases": 1553.0, + "new_cases": 143.0, + "new_cases_smoothed": 111.714, + "total_deaths": 26.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 153.773, + "new_cases_per_million": 14.159, + "new_cases_smoothed_per_million": 11.062, + "total_deaths_per_million": 2.574, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.283, + "stringency_index": 28.7 + }, + { + "date": "2020-03-21", + "total_cases": 1733.0, + "new_cases": 180.0, + "new_cases_smoothed": 115.714, + "total_deaths": 35.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 171.597, + "new_cases_per_million": 17.823, + "new_cases_smoothed_per_million": 11.458, + "total_deaths_per_million": 3.466, + "new_deaths_per_million": 0.891, + "new_deaths_smoothed_per_million": 0.396, + "stringency_index": 28.7 + }, + { + "date": "2020-03-22", + "total_cases": 1869.0, + "new_cases": 136.0, + "new_cases_smoothed": 125.0, + "total_deaths": 43.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 185.063, + "new_cases_per_million": 13.466, + "new_cases_smoothed_per_million": 12.377, + "total_deaths_per_million": 4.258, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.495, + "stringency_index": 28.7 + }, + { + "date": "2020-03-23", + "total_cases": 1987.0, + "new_cases": 118.0, + "new_cases_smoothed": 132.0, + "total_deaths": 54.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 196.747, + "new_cases_per_million": 11.684, + "new_cases_smoothed_per_million": 13.07, + "total_deaths_per_million": 5.347, + "new_deaths_per_million": 1.089, + "new_deaths_smoothed_per_million": 0.622, + "stringency_index": 28.7 + }, + { + "date": "2020-03-24", + "total_cases": 2169.0, + "new_cases": 182.0, + "new_cases_smoothed": 146.143, + "total_deaths": 65.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 214.768, + "new_cases_per_million": 18.021, + "new_cases_smoothed_per_million": 14.471, + "total_deaths_per_million": 6.436, + "new_deaths_per_million": 1.089, + "new_deaths_smoothed_per_million": 0.75, + "stringency_index": 28.7 + }, + { + "date": "2020-03-25", + "total_cases": 2399.0, + "new_cases": 230.0, + "new_cases_smoothed": 162.0, + "total_deaths": 86.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 237.542, + "new_cases_per_million": 22.774, + "new_cases_smoothed_per_million": 16.041, + "total_deaths_per_million": 8.515, + "new_deaths_per_million": 2.079, + "new_deaths_smoothed_per_million": 1.033, + "stringency_index": 32.41 + }, + { + "date": "2020-03-26", + "total_cases": 2713.0, + "new_cases": 314.0, + "new_cases_smoothed": 186.143, + "total_deaths": 108.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 268.633, + "new_cases_per_million": 31.091, + "new_cases_smoothed_per_million": 18.431, + "total_deaths_per_million": 10.694, + "new_deaths_per_million": 2.178, + "new_deaths_smoothed_per_million": 1.259, + "stringency_index": 32.41 + }, + { + "date": "2020-03-27", + "total_cases": 2999.0, + "new_cases": 286.0, + "new_cases_smoothed": 206.571, + "total_deaths": 139.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 296.952, + "new_cases_per_million": 28.319, + "new_cases_smoothed_per_million": 20.454, + "total_deaths_per_million": 13.763, + "new_deaths_per_million": 3.07, + "new_deaths_smoothed_per_million": 1.598, + "stringency_index": 32.41 + }, + { + "date": "2020-03-28", + "total_cases": 3364.0, + "new_cases": 365.0, + "new_cases_smoothed": 233.0, + "total_deaths": 171.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 333.093, + "new_cases_per_million": 36.141, + "new_cases_smoothed_per_million": 23.071, + "total_deaths_per_million": 16.932, + "new_deaths_per_million": 3.169, + "new_deaths_smoothed_per_million": 1.924, + "stringency_index": 32.41 + }, + { + "date": "2020-03-29", + "total_cases": 3664.0, + "new_cases": 300.0, + "new_cases_smoothed": 256.429, + "total_deaths": 206.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 23.286, + "total_cases_per_million": 362.798, + "new_cases_per_million": 29.705, + "new_cases_smoothed_per_million": 25.391, + "total_deaths_per_million": 20.398, + "new_deaths_per_million": 3.466, + "new_deaths_smoothed_per_million": 2.306, + "stringency_index": 35.19 + }, + { + "date": "2020-03-30", + "total_cases": 3944.0, + "new_cases": 280.0, + "new_cases_smoothed": 279.571, + "total_deaths": 244.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 390.523, + "new_cases_per_million": 27.725, + "new_cases_smoothed_per_million": 27.682, + "total_deaths_per_million": 24.16, + "new_deaths_per_million": 3.763, + "new_deaths_smoothed_per_million": 2.688, + "stringency_index": 35.19 + }, + { + "date": "2020-03-31", + "total_cases": 4360.0, + "new_cases": 416.0, + "new_cases_smoothed": 313.0, + "total_deaths": 289.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 32.0, + "total_cases_per_million": 431.714, + "new_cases_per_million": 41.191, + "new_cases_smoothed_per_million": 30.992, + "total_deaths_per_million": 28.616, + "new_deaths_per_million": 4.456, + "new_deaths_smoothed_per_million": 3.169, + "stringency_index": 35.19 + }, + { + "date": "2020-04-01", + "total_cases": 4835.0, + "new_cases": 475.0, + "new_cases_smoothed": 348.0, + "total_deaths": 337.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 478.747, + "new_cases_per_million": 47.033, + "new_cases_smoothed_per_million": 34.458, + "total_deaths_per_million": 33.369, + "new_deaths_per_million": 4.753, + "new_deaths_smoothed_per_million": 3.55, + "stringency_index": 40.74 + }, + { + "date": "2020-04-02", + "total_cases": 5321.0, + "new_cases": 486.0, + "new_cases_smoothed": 372.571, + "total_deaths": 390.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 40.286, + "total_cases_per_million": 526.87, + "new_cases_per_million": 48.122, + "new_cases_smoothed_per_million": 36.891, + "total_deaths_per_million": 38.617, + "new_deaths_per_million": 5.248, + "new_deaths_smoothed_per_million": 3.989, + "stringency_index": 40.74 + }, + { + "date": "2020-04-03", + "total_cases": 5875.0, + "new_cases": 554.0, + "new_cases_smoothed": 410.857, + "total_deaths": 460.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 45.857, + "total_cases_per_million": 581.725, + "new_cases_per_million": 54.855, + "new_cases_smoothed_per_million": 40.682, + "total_deaths_per_million": 45.548, + "new_deaths_per_million": 6.931, + "new_deaths_smoothed_per_million": 4.541, + "stringency_index": 40.74 + }, + { + "date": "2020-04-04", + "total_cases": 6476.0, + "new_cases": 601.0, + "new_cases_smoothed": 444.571, + "total_deaths": 540.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 52.714, + "total_cases_per_million": 641.234, + "new_cases_per_million": 59.509, + "new_cases_smoothed_per_million": 44.02, + "total_deaths_per_million": 53.469, + "new_deaths_per_million": 7.921, + "new_deaths_smoothed_per_million": 5.22, + "stringency_index": 46.3 + }, + { + "date": "2020-04-05", + "total_cases": 6833.0, + "new_cases": 357.0, + "new_cases_smoothed": 452.714, + "total_deaths": 610.0, + "new_deaths": 70.0, + "new_deaths_smoothed": 57.714, + "total_cases_per_million": 676.584, + "new_cases_per_million": 35.349, + "new_cases_smoothed_per_million": 44.826, + "total_deaths_per_million": 60.4, + "new_deaths_per_million": 6.931, + "new_deaths_smoothed_per_million": 5.715, + "stringency_index": 46.3 + }, + { + "date": "2020-04-06", + "total_cases": 7173.0, + "new_cases": 340.0, + "new_cases_smoothed": 461.286, + "total_deaths": 695.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 64.429, + "total_cases_per_million": 710.249, + "new_cases_per_million": 33.666, + "new_cases_smoothed_per_million": 45.675, + "total_deaths_per_million": 68.817, + "new_deaths_per_million": 8.416, + "new_deaths_smoothed_per_million": 6.38, + "stringency_index": 46.3 + }, + { + "date": "2020-04-07", + "total_cases": 7562.0, + "new_cases": 389.0, + "new_cases_smoothed": 457.429, + "total_deaths": 785.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 70.857, + "total_cases_per_million": 748.767, + "new_cases_per_million": 38.518, + "new_cases_smoothed_per_million": 45.293, + "total_deaths_per_million": 77.728, + "new_deaths_per_million": 8.912, + "new_deaths_smoothed_per_million": 7.016, + "stringency_index": 46.3 + }, + { + "date": "2020-04-08", + "total_cases": 8300.0, + "new_cases": 738.0, + "new_cases_smoothed": 495.0, + "total_deaths": 869.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 76.0, + "total_cases_per_million": 821.842, + "new_cases_per_million": 73.075, + "new_cases_smoothed_per_million": 49.013, + "total_deaths_per_million": 86.046, + "new_deaths_per_million": 8.317, + "new_deaths_smoothed_per_million": 7.525, + "stringency_index": 46.3 + }, + { + "date": "2020-04-09", + "total_cases": 8955.0, + "new_cases": 655.0, + "new_cases_smoothed": 519.143, + "total_deaths": 984.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 84.857, + "total_cases_per_million": 886.698, + "new_cases_per_million": 64.856, + "new_cases_smoothed_per_million": 51.404, + "total_deaths_per_million": 97.433, + "new_deaths_per_million": 11.387, + "new_deaths_smoothed_per_million": 8.402, + "stringency_index": 46.3 + }, + { + "date": "2020-04-10", + "total_cases": 9600.0, + "new_cases": 645.0, + "new_cases_smoothed": 532.143, + "total_deaths": 1070.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 87.143, + "total_cases_per_million": 950.564, + "new_cases_per_million": 63.866, + "new_cases_smoothed_per_million": 52.691, + "total_deaths_per_million": 105.948, + "new_deaths_per_million": 8.515, + "new_deaths_smoothed_per_million": 8.629, + "stringency_index": 46.3 + }, + { + "date": "2020-04-11", + "total_cases": 10054.0, + "new_cases": 454.0, + "new_cases_smoothed": 511.143, + "total_deaths": 1160.0, + "new_deaths": 90.0, + "new_deaths_smoothed": 88.571, + "total_cases_per_million": 995.517, + "new_cases_per_million": 44.954, + "new_cases_smoothed_per_million": 50.612, + "total_deaths_per_million": 114.86, + "new_deaths_per_million": 8.912, + "new_deaths_smoothed_per_million": 8.77, + "stringency_index": 46.3 + }, + { + "date": "2020-04-12", + "total_cases": 10449.0, + "new_cases": 395.0, + "new_cases_smoothed": 516.571, + "total_deaths": 1263.0, + "new_deaths": 103.0, + "new_deaths_smoothed": 93.286, + "total_cases_per_million": 1034.629, + "new_cases_per_million": 39.112, + "new_cases_smoothed_per_million": 51.149, + "total_deaths_per_million": 125.059, + "new_deaths_per_million": 10.199, + "new_deaths_smoothed_per_million": 9.237, + "stringency_index": 46.3 + }, + { + "date": "2020-04-13", + "total_cases": 10913.0, + "new_cases": 464.0, + "new_cases_smoothed": 534.286, + "total_deaths": 1360.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 95.0, + "total_cases_per_million": 1080.573, + "new_cases_per_million": 45.944, + "new_cases_smoothed_per_million": 52.903, + "total_deaths_per_million": 134.663, + "new_deaths_per_million": 9.605, + "new_deaths_smoothed_per_million": 9.407, + "stringency_index": 46.3 + }, + { + "date": "2020-04-14", + "total_cases": 11350.0, + "new_cases": 437.0, + "new_cases_smoothed": 541.143, + "total_deaths": 1445.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 94.286, + "total_cases_per_million": 1123.844, + "new_cases_per_million": 43.27, + "new_cases_smoothed_per_million": 53.582, + "total_deaths_per_million": 143.08, + "new_deaths_per_million": 8.416, + "new_deaths_smoothed_per_million": 9.336, + "stringency_index": 46.3 + }, + { + "date": "2020-04-15", + "total_cases": 11829.0, + "new_cases": 479.0, + "new_cases_smoothed": 504.143, + "total_deaths": 1536.0, + "new_deaths": 91.0, + "new_deaths_smoothed": 95.286, + "total_cases_per_million": 1171.273, + "new_cases_per_million": 47.429, + "new_cases_smoothed_per_million": 49.919, + "total_deaths_per_million": 152.09, + "new_deaths_per_million": 9.011, + "new_deaths_smoothed_per_million": 9.435, + "stringency_index": 46.3 + }, + { + "date": "2020-04-16", + "total_cases": 12433.0, + "new_cases": 604.0, + "new_cases_smoothed": 496.857, + "total_deaths": 1651.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 95.286, + "total_cases_per_million": 1231.079, + "new_cases_per_million": 59.806, + "new_cases_smoothed_per_million": 49.197, + "total_deaths_per_million": 163.477, + "new_deaths_per_million": 11.387, + "new_deaths_smoothed_per_million": 9.435, + "stringency_index": 46.3 + }, + { + "date": "2020-04-17", + "total_cases": 13056.0, + "new_cases": 623.0, + "new_cases_smoothed": 493.714, + "total_deaths": 1762.0, + "new_deaths": 111.0, + "new_deaths_smoothed": 98.857, + "total_cases_per_million": 1292.767, + "new_cases_per_million": 61.688, + "new_cases_smoothed_per_million": 48.886, + "total_deaths_per_million": 174.468, + "new_deaths_per_million": 10.991, + "new_deaths_smoothed_per_million": 9.789, + "stringency_index": 46.3 + }, + { + "date": "2020-04-18", + "total_cases": 13744.0, + "new_cases": 688.0, + "new_cases_smoothed": 527.143, + "total_deaths": 1844.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 97.714, + "total_cases_per_million": 1360.89, + "new_cases_per_million": 68.124, + "new_cases_smoothed_per_million": 52.196, + "total_deaths_per_million": 182.587, + "new_deaths_per_million": 8.119, + "new_deaths_smoothed_per_million": 9.675, + "stringency_index": 46.3 + }, + { + "date": "2020-04-19", + "total_cases": 14276.0, + "new_cases": 532.0, + "new_cases_smoothed": 546.714, + "total_deaths": 1930.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 95.286, + "total_cases_per_million": 1413.568, + "new_cases_per_million": 52.677, + "new_cases_smoothed_per_million": 54.134, + "total_deaths_per_million": 191.103, + "new_deaths_per_million": 8.515, + "new_deaths_smoothed_per_million": 9.435, + "stringency_index": 46.3 + }, + { + "date": "2020-04-20", + "total_cases": 14664.0, + "new_cases": 388.0, + "new_cases_smoothed": 535.857, + "total_deaths": 2018.0, + "new_deaths": 88.0, + "new_deaths_smoothed": 94.0, + "total_cases_per_million": 1451.986, + "new_cases_per_million": 38.419, + "new_cases_smoothed_per_million": 53.059, + "total_deaths_per_million": 199.816, + "new_deaths_per_million": 8.714, + "new_deaths_smoothed_per_million": 9.308, + "stringency_index": 46.3 + }, + { + "date": "2020-04-21", + "total_cases": 15125.0, + "new_cases": 461.0, + "new_cases_smoothed": 539.286, + "total_deaths": 2102.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 93.857, + "total_cases_per_million": 1497.633, + "new_cases_per_million": 45.647, + "new_cases_smoothed_per_million": 53.398, + "total_deaths_per_million": 208.134, + "new_deaths_per_million": 8.317, + "new_deaths_smoothed_per_million": 9.293, + "stringency_index": 46.3 + }, + { + "date": "2020-04-22", + "total_cases": 15832.0, + "new_cases": 707.0, + "new_cases_smoothed": 571.857, + "total_deaths": 2164.0, + "new_deaths": 62.0, + "new_deaths_smoothed": 89.714, + "total_cases_per_million": 1567.638, + "new_cases_per_million": 70.005, + "new_cases_smoothed_per_million": 56.624, + "total_deaths_per_million": 214.273, + "new_deaths_per_million": 6.139, + "new_deaths_smoothed_per_million": 8.883, + "stringency_index": 46.3 + }, + { + "date": "2020-04-23", + "total_cases": 16554.0, + "new_cases": 722.0, + "new_cases_smoothed": 588.714, + "total_deaths": 2241.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 84.286, + "total_cases_per_million": 1639.128, + "new_cases_per_million": 71.49, + "new_cases_smoothed_per_million": 58.293, + "total_deaths_per_million": 221.897, + "new_deaths_per_million": 7.624, + "new_deaths_smoothed_per_million": 8.346, + "stringency_index": 46.3 + }, + { + "date": "2020-04-24", + "total_cases": 17312.0, + "new_cases": 758.0, + "new_cases_smoothed": 608.0, + "total_deaths": 2327.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 80.714, + "total_cases_per_million": 1714.183, + "new_cases_per_million": 75.055, + "new_cases_smoothed_per_million": 60.202, + "total_deaths_per_million": 230.413, + "new_deaths_per_million": 8.515, + "new_deaths_smoothed_per_million": 7.992, + "stringency_index": 46.3 + }, + { + "date": "2020-04-25", + "total_cases": 18092.0, + "new_cases": 780.0, + "new_cases_smoothed": 621.143, + "total_deaths": 2416.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 81.714, + "total_cases_per_million": 1791.417, + "new_cases_per_million": 77.233, + "new_cases_smoothed_per_million": 61.504, + "total_deaths_per_million": 239.225, + "new_deaths_per_million": 8.813, + "new_deaths_smoothed_per_million": 8.091, + "stringency_index": 46.3 + }, + { + "date": "2020-04-26", + "total_cases": 18565.0, + "new_cases": 473.0, + "new_cases_smoothed": 612.714, + "total_deaths": 2489.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 79.857, + "total_cases_per_million": 1838.252, + "new_cases_per_million": 46.835, + "new_cases_smoothed_per_million": 60.669, + "total_deaths_per_million": 246.453, + "new_deaths_per_million": 7.228, + "new_deaths_smoothed_per_million": 7.907, + "stringency_index": 46.3 + }, + { + "date": "2020-04-27", + "total_cases": 18865.0, + "new_cases": 300.0, + "new_cases_smoothed": 600.143, + "total_deaths": 2564.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 78.0, + "total_cases_per_million": 1867.957, + "new_cases_per_million": 29.705, + "new_cases_smoothed_per_million": 59.424, + "total_deaths_per_million": 253.88, + "new_deaths_per_million": 7.426, + "new_deaths_smoothed_per_million": 7.723, + "stringency_index": 46.3 + }, + { + "date": "2020-04-28", + "total_cases": 19428.0, + "new_cases": 563.0, + "new_cases_smoothed": 614.714, + "total_deaths": 2637.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 1923.703, + "new_cases_per_million": 55.747, + "new_cases_smoothed_per_million": 60.867, + "total_deaths_per_million": 261.108, + "new_deaths_per_million": 7.228, + "new_deaths_smoothed_per_million": 7.568, + "stringency_index": 46.3 + }, + { + "date": "2020-04-29", + "total_cases": 20170.0, + "new_cases": 742.0, + "new_cases_smoothed": 619.714, + "total_deaths": 2719.0, + "new_deaths": 82.0, + "new_deaths_smoothed": 79.286, + "total_cases_per_million": 1997.174, + "new_cases_per_million": 73.471, + "new_cases_smoothed_per_million": 61.362, + "total_deaths_per_million": 269.227, + "new_deaths_per_million": 8.119, + "new_deaths_smoothed_per_million": 7.851, + "stringency_index": 46.3 + }, + { + "date": "2020-04-30", + "total_cases": 20968.0, + "new_cases": 798.0, + "new_cases_smoothed": 630.571, + "total_deaths": 2803.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 80.286, + "total_cases_per_million": 2076.19, + "new_cases_per_million": 79.016, + "new_cases_smoothed_per_million": 62.437, + "total_deaths_per_million": 277.545, + "new_deaths_per_million": 8.317, + "new_deaths_smoothed_per_million": 7.95, + "stringency_index": 46.3 + }, + { + "date": "2020-05-01", + "total_cases": 21603.0, + "new_cases": 635.0, + "new_cases_smoothed": 613.0, + "total_deaths": 2881.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 2139.065, + "new_cases_per_million": 62.876, + "new_cases_smoothed_per_million": 60.697, + "total_deaths_per_million": 285.268, + "new_deaths_per_million": 7.723, + "new_deaths_smoothed_per_million": 7.836, + "stringency_index": 46.3 + }, + { + "date": "2020-05-02", + "total_cases": 22135.0, + "new_cases": 532.0, + "new_cases_smoothed": 577.571, + "total_deaths": 2959.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 77.571, + "total_cases_per_million": 2191.743, + "new_cases_per_million": 52.677, + "new_cases_smoothed_per_million": 57.189, + "total_deaths_per_million": 292.991, + "new_deaths_per_million": 7.723, + "new_deaths_smoothed_per_million": 7.681, + "stringency_index": 46.3 + }, + { + "date": "2020-05-03", + "total_cases": 22434.0, + "new_cases": 299.0, + "new_cases_smoothed": 552.714, + "total_deaths": 3032.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 77.571, + "total_cases_per_million": 2221.349, + "new_cases_per_million": 29.606, + "new_cases_smoothed_per_million": 54.728, + "total_deaths_per_million": 300.22, + "new_deaths_per_million": 7.228, + "new_deaths_smoothed_per_million": 7.681, + "stringency_index": 46.3 + }, + { + "date": "2020-05-04", + "total_cases": 22695.0, + "new_cases": 261.0, + "new_cases_smoothed": 547.143, + "total_deaths": 3107.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 77.571, + "total_cases_per_million": 2247.192, + "new_cases_per_million": 25.843, + "new_cases_smoothed_per_million": 54.176, + "total_deaths_per_million": 307.646, + "new_deaths_per_million": 7.426, + "new_deaths_smoothed_per_million": 7.681, + "stringency_index": 46.3 + }, + { + "date": "2020-05-05", + "total_cases": 23171.0, + "new_cases": 476.0, + "new_cases_smoothed": 534.714, + "total_deaths": 3191.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 79.143, + "total_cases_per_million": 2294.324, + "new_cases_per_million": 47.132, + "new_cases_smoothed_per_million": 52.946, + "total_deaths_per_million": 315.963, + "new_deaths_per_million": 8.317, + "new_deaths_smoothed_per_million": 7.836, + "stringency_index": 46.3 + }, + { + "date": "2020-05-06", + "total_cases": 23828.0, + "new_cases": 657.0, + "new_cases_smoothed": 522.571, + "total_deaths": 3263.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 77.714, + "total_cases_per_million": 2359.378, + "new_cases_per_million": 65.054, + "new_cases_smoothed_per_million": 51.743, + "total_deaths_per_million": 323.093, + "new_deaths_per_million": 7.129, + "new_deaths_smoothed_per_million": 7.695, + "stringency_index": 46.3 + }, + { + "date": "2020-05-07", + "total_cases": 24573.0, + "new_cases": 745.0, + "new_cases_smoothed": 515.0, + "total_deaths": 3336.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 76.143, + "total_cases_per_million": 2433.146, + "new_cases_per_million": 73.768, + "new_cases_smoothed_per_million": 50.994, + "total_deaths_per_million": 330.321, + "new_deaths_per_million": 7.228, + "new_deaths_smoothed_per_million": 7.539, + "stringency_index": 46.3 + }, + { + "date": "2020-05-08", + "total_cases": 25357.0, + "new_cases": 784.0, + "new_cases_smoothed": 536.286, + "total_deaths": 3416.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 2510.776, + "new_cases_per_million": 77.629, + "new_cases_smoothed_per_million": 53.101, + "total_deaths_per_million": 338.242, + "new_deaths_per_million": 7.921, + "new_deaths_smoothed_per_million": 7.568, + "stringency_index": 46.3 + }, + { + "date": "2020-05-09", + "total_cases": 26057.0, + "new_cases": 700.0, + "new_cases_smoothed": 560.286, + "total_deaths": 3476.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 73.857, + "total_cases_per_million": 2580.087, + "new_cases_per_million": 69.312, + "new_cases_smoothed_per_million": 55.478, + "total_deaths_per_million": 344.183, + "new_deaths_per_million": 5.941, + "new_deaths_smoothed_per_million": 7.313, + "stringency_index": 46.3 + }, + { + "date": "2020-05-10", + "total_cases": 26566.0, + "new_cases": 509.0, + "new_cases_smoothed": 590.286, + "total_deaths": 3545.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 73.286, + "total_cases_per_million": 2630.487, + "new_cases_per_million": 50.4, + "new_cases_smoothed_per_million": 58.448, + "total_deaths_per_million": 351.015, + "new_deaths_per_million": 6.832, + "new_deaths_smoothed_per_million": 7.257, + "stringency_index": 46.3 + }, + { + "date": "2020-05-11", + "total_cases": 26844.0, + "new_cases": 278.0, + "new_cases_smoothed": 592.714, + "total_deaths": 3619.0, + "new_deaths": 74.0, + "new_deaths_smoothed": 73.143, + "total_cases_per_million": 2658.014, + "new_cases_per_million": 27.527, + "new_cases_smoothed_per_million": 58.689, + "total_deaths_per_million": 358.343, + "new_deaths_per_million": 7.327, + "new_deaths_smoothed_per_million": 7.242, + "stringency_index": 46.3 + }, + { + "date": "2020-05-12", + "total_cases": 27299.0, + "new_cases": 455.0, + "new_cases_smoothed": 589.714, + "total_deaths": 3683.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 70.286, + "total_cases_per_million": 2703.067, + "new_cases_per_million": 45.053, + "new_cases_smoothed_per_million": 58.392, + "total_deaths_per_million": 364.68, + "new_deaths_per_million": 6.337, + "new_deaths_smoothed_per_million": 6.959, + "stringency_index": 46.3 + }, + { + "date": "2020-05-13", + "total_cases": 28053.0, + "new_cases": 754.0, + "new_cases_smoothed": 603.571, + "total_deaths": 3744.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 68.714, + "total_cases_per_million": 2777.726, + "new_cases_per_million": 74.659, + "new_cases_smoothed_per_million": 59.764, + "total_deaths_per_million": 370.72, + "new_deaths_per_million": 6.04, + "new_deaths_smoothed_per_million": 6.804, + "stringency_index": 46.3 + }, + { + "date": "2020-05-14", + "total_cases": 28751.0, + "new_cases": 698.0, + "new_cases_smoothed": 596.857, + "total_deaths": 3794.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 65.429, + "total_cases_per_million": 2846.839, + "new_cases_per_million": 69.114, + "new_cases_smoothed_per_million": 59.099, + "total_deaths_per_million": 375.671, + "new_deaths_per_million": 4.951, + "new_deaths_smoothed_per_million": 6.479, + "stringency_index": 46.3 + }, + { + "date": "2020-05-15", + "total_cases": 29408.0, + "new_cases": 657.0, + "new_cases_smoothed": 578.714, + "total_deaths": 3840.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 60.571, + "total_cases_per_million": 2911.894, + "new_cases_per_million": 65.054, + "new_cases_smoothed_per_million": 57.303, + "total_deaths_per_million": 380.226, + "new_deaths_per_million": 4.555, + "new_deaths_smoothed_per_million": 5.998, + "stringency_index": 46.3 + }, + { + "date": "2020-05-16", + "total_cases": 30096.0, + "new_cases": 688.0, + "new_cases_smoothed": 577.0, + "total_deaths": 3898.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 60.286, + "total_cases_per_million": 2980.017, + "new_cases_per_million": 68.124, + "new_cases_smoothed_per_million": 57.133, + "total_deaths_per_million": 385.968, + "new_deaths_per_million": 5.743, + "new_deaths_smoothed_per_million": 5.969, + "stringency_index": 46.3 + }, + { + "date": "2020-05-17", + "total_cases": 30454.0, + "new_cases": 358.0, + "new_cases_smoothed": 555.429, + "total_deaths": 3947.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 57.429, + "total_cases_per_million": 3015.465, + "new_cases_per_million": 35.448, + "new_cases_smoothed_per_million": 54.997, + "total_deaths_per_million": 390.82, + "new_deaths_per_million": 4.852, + "new_deaths_smoothed_per_million": 5.686, + "stringency_index": 46.3 + }, + { + "date": "2020-05-18", + "total_cases": 30713.0, + "new_cases": 259.0, + "new_cases_smoothed": 552.714, + "total_deaths": 4000.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 54.429, + "total_cases_per_million": 3041.111, + "new_cases_per_million": 25.645, + "new_cases_smoothed_per_million": 54.728, + "total_deaths_per_million": 396.068, + "new_deaths_per_million": 5.248, + "new_deaths_smoothed_per_million": 5.389, + "stringency_index": 46.3 + }, + { + "date": "2020-05-19", + "total_cases": 31143.0, + "new_cases": 430.0, + "new_cases_smoothed": 549.143, + "total_deaths": 4061.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 54.0, + "total_cases_per_million": 3083.688, + "new_cases_per_million": 42.577, + "new_cases_smoothed_per_million": 54.375, + "total_deaths_per_million": 402.108, + "new_deaths_per_million": 6.04, + "new_deaths_smoothed_per_million": 5.347, + "stringency_index": 46.3 + }, + { + "date": "2020-05-20", + "total_cases": 31809.0, + "new_cases": 666.0, + "new_cases_smoothed": 536.571, + "total_deaths": 4101.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 51.0, + "total_cases_per_million": 3149.634, + "new_cases_per_million": 65.945, + "new_cases_smoothed_per_million": 53.13, + "total_deaths_per_million": 406.069, + "new_deaths_per_million": 3.961, + "new_deaths_smoothed_per_million": 5.05, + "stringency_index": 46.3 + }, + { + "date": "2020-05-21", + "total_cases": 32617.0, + "new_cases": 808.0, + "new_cases_smoothed": 552.286, + "total_deaths": 4155.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 3229.639, + "new_cases_per_million": 80.006, + "new_cases_smoothed_per_million": 54.686, + "total_deaths_per_million": 411.416, + "new_deaths_per_million": 5.347, + "new_deaths_smoothed_per_million": 5.106, + "stringency_index": 46.3 + }, + { + "date": "2020-05-22", + "total_cases": 33227.0, + "new_cases": 610.0, + "new_cases_smoothed": 545.571, + "total_deaths": 4209.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 52.714, + "total_cases_per_million": 3290.04, + "new_cases_per_million": 60.4, + "new_cases_smoothed_per_million": 54.021, + "total_deaths_per_million": 416.763, + "new_deaths_per_million": 5.347, + "new_deaths_smoothed_per_million": 5.22, + "stringency_index": 46.3 + }, + { + "date": "2020-05-23", + "total_cases": 33759.0, + "new_cases": 532.0, + "new_cases_smoothed": 523.286, + "total_deaths": 4265.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 52.429, + "total_cases_per_million": 3342.717, + "new_cases_per_million": 52.677, + "new_cases_smoothed_per_million": 51.814, + "total_deaths_per_million": 422.308, + "new_deaths_per_million": 5.545, + "new_deaths_smoothed_per_million": 5.191, + "stringency_index": 46.3 + }, + { + "date": "2020-05-24", + "total_cases": 34162.0, + "new_cases": 403.0, + "new_cases_smoothed": 529.714, + "total_deaths": 4321.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 53.429, + "total_cases_per_million": 3382.621, + "new_cases_per_million": 39.904, + "new_cases_smoothed_per_million": 52.451, + "total_deaths_per_million": 427.853, + "new_deaths_per_million": 5.545, + "new_deaths_smoothed_per_million": 5.29, + "stringency_index": 46.3 + }, + { + "date": "2020-05-25", + "total_cases": 34372.0, + "new_cases": 210.0, + "new_cases_smoothed": 522.714, + "total_deaths": 4365.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 52.143, + "total_cases_per_million": 3403.414, + "new_cases_per_million": 20.794, + "new_cases_smoothed_per_million": 51.758, + "total_deaths_per_million": 432.209, + "new_deaths_per_million": 4.357, + "new_deaths_smoothed_per_million": 5.163, + "stringency_index": 46.3 + }, + { + "date": "2020-05-26", + "total_cases": 34863.0, + "new_cases": 491.0, + "new_cases_smoothed": 531.429, + "total_deaths": 4407.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 49.429, + "total_cases_per_million": 3452.032, + "new_cases_per_million": 48.617, + "new_cases_smoothed_per_million": 52.62, + "total_deaths_per_million": 436.368, + "new_deaths_per_million": 4.159, + "new_deaths_smoothed_per_million": 4.894, + "stringency_index": 46.3 + }, + { + "date": "2020-05-27", + "total_cases": 35609.0, + "new_cases": 746.0, + "new_cases_smoothed": 542.857, + "total_deaths": 4435.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 47.714, + "total_cases_per_million": 3525.898, + "new_cases_per_million": 73.867, + "new_cases_smoothed_per_million": 53.752, + "total_deaths_per_million": 439.141, + "new_deaths_per_million": 2.772, + "new_deaths_smoothed_per_million": 4.725, + "stringency_index": 46.3 + }, + { + "date": "2020-05-28", + "total_cases": 36409.0, + "new_cases": 800.0, + "new_cases_smoothed": 541.714, + "total_deaths": 4474.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 45.571, + "total_cases_per_million": 3605.112, + "new_cases_per_million": 79.214, + "new_cases_smoothed_per_million": 53.639, + "total_deaths_per_million": 443.002, + "new_deaths_per_million": 3.862, + "new_deaths_smoothed_per_million": 4.512, + "stringency_index": 46.3 + }, + { + "date": "2020-05-29", + "total_cases": 37183.0, + "new_cases": 774.0, + "new_cases_smoothed": 565.143, + "total_deaths": 4514.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 3681.751, + "new_cases_per_million": 76.639, + "new_cases_smoothed_per_million": 55.959, + "total_deaths_per_million": 446.963, + "new_deaths_per_million": 3.961, + "new_deaths_smoothed_per_million": 4.314, + "stringency_index": 46.3 + }, + { + "date": "2020-05-30", + "total_cases": 37956.0, + "new_cases": 773.0, + "new_cases_smoothed": 599.571, + "total_deaths": 4554.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 3758.291, + "new_cases_per_million": 76.54, + "new_cases_smoothed_per_million": 59.368, + "total_deaths_per_million": 450.924, + "new_deaths_per_million": 3.961, + "new_deaths_smoothed_per_million": 4.088, + "stringency_index": 46.3 + }, + { + "date": "2020-05-31", + "total_cases": 38388.0, + "new_cases": 432.0, + "new_cases_smoothed": 603.714, + "total_deaths": 4593.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 3801.067, + "new_cases_per_million": 42.775, + "new_cases_smoothed_per_million": 59.778, + "total_deaths_per_million": 454.785, + "new_deaths_per_million": 3.862, + "new_deaths_smoothed_per_million": 3.848, + "stringency_index": 46.3 + }, + { + "date": "2020-06-01", + "total_cases": 38653.0, + "new_cases": 265.0, + "new_cases_smoothed": 611.571, + "total_deaths": 4638.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 39.0, + "total_cases_per_million": 3827.306, + "new_cases_per_million": 26.24, + "new_cases_smoothed_per_million": 60.556, + "total_deaths_per_million": 459.241, + "new_deaths_per_million": 4.456, + "new_deaths_smoothed_per_million": 3.862, + "stringency_index": 46.3 + }, + { + "date": "2020-06-02", + "total_cases": 39301.0, + "new_cases": 648.0, + "new_cases_smoothed": 634.0, + "total_deaths": 4678.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 38.714, + "total_cases_per_million": 3891.469, + "new_cases_per_million": 64.163, + "new_cases_smoothed_per_million": 62.777, + "total_deaths_per_million": 463.202, + "new_deaths_per_million": 3.961, + "new_deaths_smoothed_per_million": 3.833, + "stringency_index": 46.3 + }, + { + "date": "2020-06-03", + "total_cases": 40202.0, + "new_cases": 901.0, + "new_cases_smoothed": 656.143, + "total_deaths": 4715.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 40.0, + "total_cases_per_million": 3980.684, + "new_cases_per_million": 89.214, + "new_cases_smoothed_per_million": 64.969, + "total_deaths_per_million": 466.865, + "new_deaths_per_million": 3.664, + "new_deaths_smoothed_per_million": 3.961, + "stringency_index": 46.3 + }, + { + "date": "2020-06-04", + "total_cases": 41248.0, + "new_cases": 1046.0, + "new_cases_smoothed": 691.286, + "total_deaths": 4741.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 38.143, + "total_cases_per_million": 4084.256, + "new_cases_per_million": 103.572, + "new_cases_smoothed_per_million": 68.449, + "total_deaths_per_million": 469.44, + "new_deaths_per_million": 2.574, + "new_deaths_smoothed_per_million": 3.777, + "stringency_index": 46.3 + }, + { + "date": "2020-06-05", + "total_cases": 42287.0, + "new_cases": 1039.0, + "new_cases_smoothed": 729.143, + "total_deaths": 4786.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 38.857, + "total_cases_per_million": 4187.134, + "new_cases_per_million": 102.879, + "new_cases_smoothed_per_million": 72.198, + "total_deaths_per_million": 473.896, + "new_deaths_per_million": 4.456, + "new_deaths_smoothed_per_million": 3.848, + "stringency_index": 46.3 + }, + { + "date": "2020-06-06", + "total_cases": 43433.0, + "new_cases": 1146.0, + "new_cases_smoothed": 782.429, + "total_deaths": 4824.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 4300.608, + "new_cases_per_million": 113.474, + "new_cases_smoothed_per_million": 77.474, + "total_deaths_per_million": 477.658, + "new_deaths_per_million": 3.763, + "new_deaths_smoothed_per_million": 3.819, + "stringency_index": 46.3 + }, + { + "date": "2020-06-07", + "total_cases": 44213.0, + "new_cases": 780.0, + "new_cases_smoothed": 832.143, + "total_deaths": 4855.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 37.429, + "total_cases_per_million": 4377.841, + "new_cases_per_million": 77.233, + "new_cases_smoothed_per_million": 82.396, + "total_deaths_per_million": 480.728, + "new_deaths_per_million": 3.07, + "new_deaths_smoothed_per_million": 3.706, + "stringency_index": 46.3 + }, + { + "date": "2020-06-08", + "total_cases": 44675.0, + "new_cases": 462.0, + "new_cases_smoothed": 860.286, + "total_deaths": 4888.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 4423.587, + "new_cases_per_million": 45.746, + "new_cases_smoothed_per_million": 85.183, + "total_deaths_per_million": 483.995, + "new_deaths_per_million": 3.268, + "new_deaths_smoothed_per_million": 3.536, + "stringency_index": 46.3 + }, + { + "date": "2020-06-09", + "total_cases": 45352.0, + "new_cases": 677.0, + "new_cases_smoothed": 864.429, + "total_deaths": 4926.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 4490.622, + "new_cases_per_million": 67.035, + "new_cases_smoothed_per_million": 85.593, + "total_deaths_per_million": 487.758, + "new_deaths_per_million": 3.763, + "new_deaths_smoothed_per_million": 3.508, + "stringency_index": 46.3 + }, + { + "date": "2020-06-10", + "total_cases": 46288.0, + "new_cases": 936.0, + "new_cases_smoothed": 869.429, + "total_deaths": 4959.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 34.857, + "total_cases_per_million": 4583.302, + "new_cases_per_million": 92.68, + "new_cases_smoothed_per_million": 86.088, + "total_deaths_per_million": 491.026, + "new_deaths_per_million": 3.268, + "new_deaths_smoothed_per_million": 3.451, + "stringency_index": 46.3 + }, + { + "date": "2020-06-11", + "total_cases": 47725.0, + "new_cases": 1437.0, + "new_cases_smoothed": 925.286, + "total_deaths": 4999.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 36.857, + "total_cases_per_million": 4725.589, + "new_cases_per_million": 142.288, + "new_cases_smoothed_per_million": 91.619, + "total_deaths_per_million": 494.986, + "new_deaths_per_million": 3.961, + "new_deaths_smoothed_per_million": 3.649, + "stringency_index": 46.3 + }, + { + "date": "2020-06-12", + "total_cases": 49018.0, + "new_cases": 1293.0, + "new_cases_smoothed": 961.571, + "total_deaths": 5035.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 4853.618, + "new_cases_per_million": 128.029, + "new_cases_smoothed_per_million": 95.212, + "total_deaths_per_million": 498.551, + "new_deaths_per_million": 3.565, + "new_deaths_smoothed_per_million": 3.522, + "stringency_index": 46.3 + }, + { + "date": "2020-06-13", + "total_cases": 50347.0, + "new_cases": 1329.0, + "new_cases_smoothed": 987.714, + "total_deaths": 5065.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 34.429, + "total_cases_per_million": 4985.212, + "new_cases_per_million": 131.594, + "new_cases_smoothed_per_million": 97.801, + "total_deaths_per_million": 501.521, + "new_deaths_per_million": 2.971, + "new_deaths_smoothed_per_million": 3.409, + "stringency_index": 40.74 + }, + { + "date": "2020-06-14", + "total_cases": 51379.0, + "new_cases": 1032.0, + "new_cases_smoothed": 1023.714, + "total_deaths": 5098.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 5087.397, + "new_cases_per_million": 102.186, + "new_cases_smoothed_per_million": 101.365, + "total_deaths_per_million": 504.789, + "new_deaths_per_million": 3.268, + "new_deaths_smoothed_per_million": 3.437, + "stringency_index": 40.74 + }, + { + "date": "2020-06-15", + "total_cases": 51797.0, + "new_cases": 418.0, + "new_cases_smoothed": 1017.429, + "total_deaths": 5125.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 33.857, + "total_cases_per_million": 5128.787, + "new_cases_per_million": 41.389, + "new_cases_smoothed_per_million": 100.743, + "total_deaths_per_million": 507.462, + "new_deaths_per_million": 2.673, + "new_deaths_smoothed_per_million": 3.352, + "stringency_index": 38.89 + }, + { + "date": "2020-06-16", + "total_cases": 52481.0, + "new_cases": 684.0, + "new_cases_smoothed": 1018.429, + "total_deaths": 5156.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 32.857, + "total_cases_per_million": 5196.514, + "new_cases_per_million": 67.728, + "new_cases_smoothed_per_million": 100.842, + "total_deaths_per_million": 510.532, + "new_deaths_per_million": 3.07, + "new_deaths_smoothed_per_million": 3.253, + "stringency_index": 38.89 + }, + { + "date": "2020-06-17", + "total_cases": 53690.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1057.429, + "total_deaths": 5184.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 32.143, + "total_cases_per_million": 5316.226, + "new_cases_per_million": 119.712, + "new_cases_smoothed_per_million": 104.703, + "total_deaths_per_million": 513.304, + "new_deaths_per_million": 2.772, + "new_deaths_smoothed_per_million": 3.183, + "stringency_index": 38.89 + }, + { + "date": "2020-06-18", + "total_cases": 55147.0, + "new_cases": 1457.0, + "new_cases_smoothed": 1060.286, + "total_deaths": 5217.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 5460.494, + "new_cases_per_million": 144.268, + "new_cases_smoothed_per_million": 104.986, + "total_deaths_per_million": 516.572, + "new_deaths_per_million": 3.268, + "new_deaths_smoothed_per_million": 3.084, + "stringency_index": 38.89 + }, + { + "date": "2020-06-19", + "total_cases": 56641.0, + "new_cases": 1494.0, + "new_cases_smoothed": 1089.0, + "total_deaths": 5246.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 5608.425, + "new_cases_per_million": 147.931, + "new_cases_smoothed_per_million": 107.83, + "total_deaths_per_million": 519.443, + "new_deaths_per_million": 2.871, + "new_deaths_smoothed_per_million": 2.985, + "stringency_index": 38.89 + }, + { + "date": "2020-06-20", + "total_cases": 57850.0, + "new_cases": 1209.0, + "new_cases_smoothed": 1071.857, + "total_deaths": 5275.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 30.0, + "total_cases_per_million": 5728.137, + "new_cases_per_million": 119.712, + "new_cases_smoothed_per_million": 106.132, + "total_deaths_per_million": 522.315, + "new_deaths_per_million": 2.871, + "new_deaths_smoothed_per_million": 2.971, + "stringency_index": 38.89 + }, + { + "date": "2020-06-21", + "total_cases": 58548.0, + "new_cases": 698.0, + "new_cases_smoothed": 1024.143, + "total_deaths": 5304.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 5797.251, + "new_cases_per_million": 69.114, + "new_cases_smoothed_per_million": 101.408, + "total_deaths_per_million": 525.186, + "new_deaths_per_million": 2.871, + "new_deaths_smoothed_per_million": 2.914, + "stringency_index": 38.89 + }, + { + "date": "2020-06-22", + "total_cases": 58869.0, + "new_cases": 321.0, + "new_cases_smoothed": 1010.286, + "total_deaths": 5325.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 5829.035, + "new_cases_per_million": 31.784, + "new_cases_smoothed_per_million": 100.036, + "total_deaths_per_million": 527.266, + "new_deaths_per_million": 2.079, + "new_deaths_smoothed_per_million": 2.829, + "stringency_index": 38.89 + }, + { + "date": "2020-06-23", + "total_cases": 59669.0, + "new_cases": 800.0, + "new_cases_smoothed": 1026.857, + "total_deaths": 5346.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 27.143, + "total_cases_per_million": 5908.249, + "new_cases_per_million": 79.214, + "new_cases_smoothed_per_million": 101.676, + "total_deaths_per_million": 529.345, + "new_deaths_per_million": 2.079, + "new_deaths_smoothed_per_million": 2.688, + "stringency_index": 38.89 + }, + { + "date": "2020-06-24", + "total_cases": 60979.0, + "new_cases": 1310.0, + "new_cases_smoothed": 1041.286, + "total_deaths": 5371.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 6037.961, + "new_cases_per_million": 129.712, + "new_cases_smoothed_per_million": 103.105, + "total_deaths_per_million": 531.821, + "new_deaths_per_million": 2.475, + "new_deaths_smoothed_per_million": 2.645, + "stringency_index": 38.89 + }, + { + "date": "2020-06-25", + "total_cases": 62677.0, + "new_cases": 1698.0, + "new_cases_smoothed": 1075.714, + "total_deaths": 5393.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.143, + "total_cases_per_million": 6206.092, + "new_cases_per_million": 168.131, + "new_cases_smoothed_per_million": 106.514, + "total_deaths_per_million": 533.999, + "new_deaths_per_million": 2.178, + "new_deaths_smoothed_per_million": 2.49, + "stringency_index": 38.89 + }, + { + "date": "2020-06-26", + "total_cases": 63956.0, + "new_cases": 1279.0, + "new_cases_smoothed": 1045.0, + "total_deaths": 5417.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 6332.735, + "new_cases_per_million": 126.643, + "new_cases_smoothed_per_million": 103.473, + "total_deaths_per_million": 536.375, + "new_deaths_per_million": 2.376, + "new_deaths_smoothed_per_million": 2.419, + "stringency_index": 38.89 + }, + { + "date": "2020-06-27", + "total_cases": 65160.0, + "new_cases": 1204.0, + "new_cases_smoothed": 1044.286, + "total_deaths": 5429.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 6451.951, + "new_cases_per_million": 119.217, + "new_cases_smoothed_per_million": 103.402, + "total_deaths_per_million": 537.564, + "new_deaths_per_million": 1.188, + "new_deaths_smoothed_per_million": 2.178, + "stringency_index": 38.89 + }, + { + "date": "2020-06-28", + "total_cases": 65915.0, + "new_cases": 755.0, + "new_cases_smoothed": 1052.429, + "total_deaths": 5443.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 19.857, + "total_cases_per_million": 6526.709, + "new_cases_per_million": 74.758, + "new_cases_smoothed_per_million": 104.208, + "total_deaths_per_million": 538.95, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.966, + "stringency_index": 38.89 + }, + { + "date": "2020-06-29", + "total_cases": 66330.0, + "new_cases": 415.0, + "new_cases_smoothed": 1065.857, + "total_deaths": 5465.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 6567.801, + "new_cases_per_million": 41.092, + "new_cases_smoothed_per_million": 105.538, + "total_deaths_per_million": 541.128, + "new_deaths_per_million": 2.178, + "new_deaths_smoothed_per_million": 1.98, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-06-30", + "total_cases": 67057.0, + "new_cases": 727.0, + "new_cases_smoothed": 1055.429, + "total_deaths": 5483.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 6639.787, + "new_cases_per_million": 71.985, + "new_cases_smoothed_per_million": 104.505, + "total_deaths_per_million": 542.911, + "new_deaths_per_million": 1.782, + "new_deaths_smoothed_per_million": 1.938, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-01", + "total_cases": 67860.0, + "new_cases": 803.0, + "new_cases_smoothed": 983.0, + "total_deaths": 5503.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 6719.298, + "new_cases_per_million": 79.511, + "new_cases_smoothed_per_million": 97.334, + "total_deaths_per_million": 544.891, + "new_deaths_per_million": 1.98, + "new_deaths_smoothed_per_million": 1.867, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-02", + "total_cases": 68544.0, + "new_cases": 684.0, + "new_cases_smoothed": 838.143, + "total_deaths": 5520.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 6787.025, + "new_cases_per_million": 67.728, + "new_cases_smoothed_per_million": 82.99, + "total_deaths_per_million": 546.574, + "new_deaths_per_million": 1.683, + "new_deaths_smoothed_per_million": 1.796, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-03", + "total_cases": 69231.0, + "new_cases": 687.0, + "new_cases_smoothed": 753.571, + "total_deaths": 5535.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 6855.05, + "new_cases_per_million": 68.025, + "new_cases_smoothed_per_million": 74.616, + "total_deaths_per_million": 548.059, + "new_deaths_per_million": 1.485, + "new_deaths_smoothed_per_million": 1.669, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-04", + "total_cases": 69925.0, + "new_cases": 694.0, + "new_cases_smoothed": 680.714, + "total_deaths": 5543.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 6923.768, + "new_cases_per_million": 68.718, + "new_cases_smoothed_per_million": 67.402, + "total_deaths_per_million": 548.852, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 1.613, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-05", + "total_cases": 70289.0, + "new_cases": 364.0, + "new_cases_smoothed": 624.857, + "total_deaths": 5558.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 6959.81, + "new_cases_per_million": 36.042, + "new_cases_smoothed_per_million": 61.872, + "total_deaths_per_million": 550.337, + "new_deaths_per_million": 1.485, + "new_deaths_smoothed_per_million": 1.627, + "new_tests": 11402.0, + "new_tests_per_thousand": 1.129, + "new_tests_smoothed": 11402.0, + "new_tests_smoothed_per_thousand": 1.129, + "tests_per_case": 18.247, + "positive_rate": 0.055, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-06", + "total_cases": 70604.0, + "new_cases": 315.0, + "new_cases_smoothed": 610.571, + "total_deaths": 5567.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 6991.0, + "new_cases_per_million": 31.19, + "new_cases_smoothed_per_million": 60.457, + "total_deaths_per_million": 551.228, + "new_deaths_per_million": 0.891, + "new_deaths_smoothed_per_million": 1.443, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11443.0, + "new_tests_smoothed_per_thousand": 1.133, + "tests_per_case": 18.741, + "positive_rate": 0.053, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-07", + "total_cases": 70855.0, + "new_cases": 251.0, + "new_cases_smoothed": 542.571, + "total_deaths": 5583.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 7015.854, + "new_cases_per_million": 24.853, + "new_cases_smoothed_per_million": 53.724, + "total_deaths_per_million": 552.812, + "new_deaths_per_million": 1.584, + "new_deaths_smoothed_per_million": 1.415, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11483.0, + "new_tests_smoothed_per_thousand": 1.137, + "tests_per_case": 21.164, + "positive_rate": 0.047, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-08", + "total_cases": 71133.0, + "new_cases": 278.0, + "new_cases_smoothed": 467.571, + "total_deaths": 5595.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 7043.38, + "new_cases_per_million": 27.527, + "new_cases_smoothed_per_million": 46.298, + "total_deaths_per_million": 554.0, + "new_deaths_per_million": 1.188, + "new_deaths_smoothed_per_million": 1.301, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11524.0, + "new_tests_smoothed_per_thousand": 1.141, + "tests_per_case": 24.647, + "positive_rate": 0.040999999999999995, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-09", + "total_cases": 71666.0, + "new_cases": 533.0, + "new_cases_smoothed": 446.0, + "total_deaths": 5606.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 7096.156, + "new_cases_per_million": 52.776, + "new_cases_smoothed_per_million": 44.162, + "total_deaths_per_million": 555.09, + "new_deaths_per_million": 1.089, + "new_deaths_smoothed_per_million": 1.216, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11564.0, + "new_tests_smoothed_per_thousand": 1.145, + "tests_per_case": 25.928, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-10", + "total_cases": 72000.0, + "new_cases": 334.0, + "new_cases_smoothed": 395.571, + "total_deaths": 5621.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 12.286, + "total_cases_per_million": 7129.228, + "new_cases_per_million": 33.072, + "new_cases_smoothed_per_million": 39.168, + "total_deaths_per_million": 556.575, + "new_deaths_per_million": 1.485, + "new_deaths_smoothed_per_million": 1.216, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11605.0, + "new_tests_smoothed_per_thousand": 1.149, + "tests_per_case": 29.337, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-11", + "total_cases": 72369.0, + "new_cases": 369.0, + "new_cases_smoothed": 349.143, + "total_deaths": 5635.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 7165.765, + "new_cases_per_million": 36.537, + "new_cases_smoothed_per_million": 34.571, + "total_deaths_per_million": 557.961, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.301, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11645.0, + "new_tests_smoothed_per_thousand": 1.153, + "tests_per_case": 33.353, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-12", + "total_cases": 72677.0, + "new_cases": 308.0, + "new_cases_smoothed": 341.143, + "total_deaths": 5645.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 7196.263, + "new_cases_per_million": 30.497, + "new_cases_smoothed_per_million": 33.779, + "total_deaths_per_million": 558.951, + "new_deaths_per_million": 0.99, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 11686.0, + "new_tests_per_thousand": 1.157, + "new_tests_smoothed": 11686.0, + "new_tests_smoothed_per_thousand": 1.157, + "tests_per_case": 34.255, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-13", + "total_cases": 72783.0, + "new_cases": 106.0, + "new_cases_smoothed": 311.286, + "total_deaths": 5654.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 7206.759, + "new_cases_per_million": 10.496, + "new_cases_smoothed_per_million": 30.823, + "total_deaths_per_million": 559.842, + "new_deaths_per_million": 0.891, + "new_deaths_smoothed_per_million": 1.231, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 11433.0, + "new_tests_smoothed_per_thousand": 1.132, + "tests_per_case": 36.728, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-14", + "total_cases": 72953.0, + "new_cases": 170.0, + "new_cases_smoothed": 299.714, + "total_deaths": 5668.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 12.143, + "total_cases_per_million": 7223.591, + "new_cases_per_million": 16.833, + "new_cases_smoothed_per_million": 29.677, + "total_deaths_per_million": 561.229, + "new_deaths_per_million": 1.386, + "new_deaths_smoothed_per_million": 1.202, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 11179.0, + "new_tests_smoothed_per_thousand": 1.107, + "tests_per_case": 37.299, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-15", + "total_cases": 73265.0, + "new_cases": 312.0, + "new_cases_smoothed": 304.571, + "total_deaths": 5676.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 7254.485, + "new_cases_per_million": 30.893, + "new_cases_smoothed_per_million": 30.158, + "total_deaths_per_million": 562.021, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 1.146, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 10926.0, + "new_tests_smoothed_per_thousand": 1.082, + "tests_per_case": 35.873000000000005, + "positive_rate": 0.027999999999999997, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-16", + "total_cases": 73552.0, + "new_cases": 287.0, + "new_cases_smoothed": 269.429, + "total_deaths": 5682.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 7282.903, + "new_cases_per_million": 28.418, + "new_cases_smoothed_per_million": 26.678, + "total_deaths_per_million": 562.615, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 1.075, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 10673.0, + "new_tests_smoothed_per_thousand": 1.057, + "tests_per_case": 39.613, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-17", + "total_cases": 73820.0, + "new_cases": 268.0, + "new_cases_smoothed": 260.0, + "total_deaths": 5689.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 7309.439, + "new_cases_per_million": 26.537, + "new_cases_smoothed_per_million": 25.744, + "total_deaths_per_million": 563.308, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.962, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 10420.0, + "new_tests_smoothed_per_thousand": 1.032, + "tests_per_case": 40.077, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-18", + "total_cases": 74104.0, + "new_cases": 284.0, + "new_cases_smoothed": 247.857, + "total_deaths": 5696.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 7337.56, + "new_cases_per_million": 28.121, + "new_cases_smoothed_per_million": 24.542, + "total_deaths_per_million": 564.001, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.863, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 10166.0, + "new_tests_smoothed_per_thousand": 1.007, + "tests_per_case": 41.016000000000005, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-19", + "total_cases": 74295.0, + "new_cases": 191.0, + "new_cases_smoothed": 231.143, + "total_deaths": 5707.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 7356.472, + "new_cases_per_million": 18.912, + "new_cases_smoothed_per_million": 22.887, + "total_deaths_per_million": 565.09, + "new_deaths_per_million": 1.089, + "new_deaths_smoothed_per_million": 0.877, + "new_tests": 9913.0, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 9913.0, + "new_tests_smoothed_per_thousand": 0.982, + "tests_per_case": 42.86, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-20", + "total_cases": 74405.0, + "new_cases": 110.0, + "new_cases_smoothed": 231.714, + "total_deaths": 5715.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.714, + "total_cases_per_million": 7367.364, + "new_cases_per_million": 10.892, + "new_cases_smoothed_per_million": 22.944, + "total_deaths_per_million": 565.882, + "new_deaths_per_million": 0.792, + "new_deaths_smoothed_per_million": 0.863, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 9704.0, + "new_tests_smoothed_per_thousand": 0.961, + "tests_per_case": 41.853, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-21", + "total_cases": 74536.0, + "new_cases": 131.0, + "new_cases_smoothed": 226.143, + "total_deaths": 5722.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 7380.335, + "new_cases_per_million": 12.971, + "new_cases_smoothed_per_million": 22.392, + "total_deaths_per_million": 566.576, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.764, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 9495.0, + "new_tests_smoothed_per_thousand": 0.94, + "tests_per_case": 41.96, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-22", + "total_cases": 74762.0, + "new_cases": 226.0, + "new_cases_smoothed": 213.857, + "total_deaths": 5729.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 7402.713, + "new_cases_per_million": 22.378, + "new_cases_smoothed_per_million": 21.176, + "total_deaths_per_million": 567.269, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.75, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 9286.0, + "new_tests_smoothed_per_thousand": 0.919, + "tests_per_case": 43.393, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-23", + "total_cases": 75059.0, + "new_cases": 297.0, + "new_cases_smoothed": 215.286, + "total_deaths": 5735.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 7432.121, + "new_cases_per_million": 29.408, + "new_cases_smoothed_per_million": 21.317, + "total_deaths_per_million": 567.863, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 0.75, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 9076.0, + "new_tests_smoothed_per_thousand": 0.899, + "tests_per_case": 42.13, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-24", + "total_cases": 75279.0, + "new_cases": 220.0, + "new_cases_smoothed": 208.429, + "total_deaths": 5740.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 7453.905, + "new_cases_per_million": 21.784, + "new_cases_smoothed_per_million": 20.638, + "total_deaths_per_million": 568.358, + "new_deaths_per_million": 0.495, + "new_deaths_smoothed_per_million": 0.721, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 8867.0, + "new_tests_smoothed_per_thousand": 0.878, + "tests_per_case": 42.513000000000005, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-25", + "total_cases": 75541.0, + "new_cases": 262.0, + "new_cases_smoothed": 205.286, + "total_deaths": 5743.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 7479.848, + "new_cases_per_million": 25.942, + "new_cases_smoothed_per_million": 20.327, + "total_deaths_per_million": 568.655, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.665, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 8658.0, + "new_tests_smoothed_per_thousand": 0.857, + "tests_per_case": 42.146, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-26", + "total_cases": 75679.0, + "new_cases": 138.0, + "new_cases_smoothed": 197.714, + "total_deaths": 5744.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 7493.512, + "new_cases_per_million": 13.664, + "new_cases_smoothed_per_million": 19.577, + "total_deaths_per_million": 568.754, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.523, + "new_tests": 8449.0, + "new_tests_per_thousand": 0.837, + "new_tests_smoothed": 8449.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 42.733000000000004, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-27", + "total_cases": 75721.0, + "new_cases": 42.0, + "new_cases_smoothed": 188.0, + "total_deaths": 5746.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 7497.671, + "new_cases_per_million": 4.159, + "new_cases_smoothed_per_million": 18.615, + "total_deaths_per_million": 568.952, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.439, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 8323.0, + "new_tests_smoothed_per_thousand": 0.824, + "tests_per_case": 44.271, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-28", + "total_cases": 75792.0, + "new_cases": 71.0, + "new_cases_smoothed": 179.429, + "total_deaths": 5752.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 7504.701, + "new_cases_per_million": 7.03, + "new_cases_smoothed_per_million": 17.766, + "total_deaths_per_million": 569.546, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 0.424, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 8197.0, + "new_tests_smoothed_per_thousand": 0.812, + "tests_per_case": 45.684, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-29", + "total_cases": 76075.0, + "new_cases": 283.0, + "new_cases_smoothed": 187.571, + "total_deaths": 5757.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 7532.723, + "new_cases_per_million": 28.022, + "new_cases_smoothed_per_million": 18.573, + "total_deaths_per_million": 570.041, + "new_deaths_per_million": 0.495, + "new_deaths_smoothed_per_million": 0.396, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 8071.0, + "new_tests_smoothed_per_thousand": 0.799, + "tests_per_case": 43.028999999999996, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-30", + "total_cases": 76376.0, + "new_cases": 301.0, + "new_cases_smoothed": 188.143, + "total_deaths": 5759.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 7562.527, + "new_cases_per_million": 29.804, + "new_cases_smoothed_per_million": 18.629, + "total_deaths_per_million": 570.239, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.339, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 7944.0, + "new_tests_smoothed_per_thousand": 0.787, + "tests_per_case": 42.223, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 38.89 + }, + { + "date": "2020-07-31", + "total_cases": 76678.0, + "new_cases": 302.0, + "new_cases_smoothed": 199.857, + "total_deaths": 5759.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 7592.43, + "new_cases_per_million": 29.903, + "new_cases_smoothed_per_million": 19.789, + "total_deaths_per_million": 570.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 7818.0, + "new_tests_smoothed_per_thousand": 0.774, + "tests_per_case": 39.118, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-01", + "total_cases": 76936.0, + "new_cases": 258.0, + "new_cases_smoothed": 199.286, + "total_deaths": 5762.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 7617.976, + "new_cases_per_million": 25.546, + "new_cases_smoothed_per_million": 19.733, + "total_deaths_per_million": 570.536, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 7692.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 38.598, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-02", + "total_cases": 77239.0, + "new_cases": 303.0, + "new_cases_smoothed": 222.857, + "total_deaths": 5765.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 7647.979, + "new_cases_per_million": 30.002, + "new_cases_smoothed_per_million": 22.067, + "total_deaths_per_million": 570.833, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 7566.0, + "new_tests_per_thousand": 0.749, + "new_tests_smoothed": 7566.0, + "new_tests_smoothed_per_thousand": 0.749, + "tests_per_case": 33.95, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-03", + "total_cases": 77277.0, + "new_cases": 38.0, + "new_cases_smoothed": 222.286, + "total_deaths": 5766.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7651.741, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 22.01, + "total_deaths_per_million": 570.932, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7581.0, + "new_tests_smoothed_per_thousand": 0.751, + "tests_per_case": 34.105, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-04", + "total_cases": 77442.0, + "new_cases": 165.0, + "new_cases_smoothed": 235.714, + "total_deaths": 5770.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7668.079, + "new_cases_per_million": 16.338, + "new_cases_smoothed_per_million": 23.34, + "total_deaths_per_million": 571.328, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7597.0, + "new_tests_smoothed_per_thousand": 0.752, + "tests_per_case": 32.23, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-05", + "total_cases": 77775.0, + "new_cases": 333.0, + "new_cases_smoothed": 242.857, + "total_deaths": 5772.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 7701.052, + "new_cases_per_million": 32.973, + "new_cases_smoothed_per_million": 24.047, + "total_deaths_per_million": 571.526, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7612.0, + "new_tests_smoothed_per_thousand": 0.754, + "tests_per_case": 31.344, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-06", + "total_cases": 78200.0, + "new_cases": 425.0, + "new_cases_smoothed": 260.571, + "total_deaths": 5775.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 7743.134, + "new_cases_per_million": 42.082, + "new_cases_smoothed_per_million": 25.801, + "total_deaths_per_million": 571.824, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.226, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7628.0, + "new_tests_smoothed_per_thousand": 0.755, + "tests_per_case": 29.274, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-07", + "total_cases": 78578.0, + "new_cases": 378.0, + "new_cases_smoothed": 271.429, + "total_deaths": 5779.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7780.562, + "new_cases_per_million": 37.428, + "new_cases_smoothed_per_million": 26.876, + "total_deaths_per_million": 572.22, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7643.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 28.158, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-08", + "total_cases": 78958.0, + "new_cases": 380.0, + "new_cases_smoothed": 288.857, + "total_deaths": 5782.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7818.189, + "new_cases_per_million": 37.626, + "new_cases_smoothed_per_million": 28.602, + "total_deaths_per_million": 572.517, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7659.0, + "new_tests_smoothed_per_thousand": 0.758, + "tests_per_case": 26.515, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-09", + "total_cases": 79218.0, + "new_cases": 260.0, + "new_cases_smoothed": 282.714, + "total_deaths": 5783.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 7843.933, + "new_cases_per_million": 25.744, + "new_cases_smoothed_per_million": 27.994, + "total_deaths_per_million": 572.616, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 7674.0, + "new_tests_per_thousand": 0.76, + "new_tests_smoothed": 7674.0, + "new_tests_smoothed_per_thousand": 0.76, + "tests_per_case": 27.144000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-10", + "total_cases": 79291.0, + "new_cases": 73.0, + "new_cases_smoothed": 287.714, + "total_deaths": 5787.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 7851.162, + "new_cases_per_million": 7.228, + "new_cases_smoothed_per_million": 28.489, + "total_deaths_per_million": 573.012, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 7733.0, + "new_tests_smoothed_per_thousand": 0.766, + "tests_per_case": 26.877, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-11", + "total_cases": 79487.0, + "new_cases": 196.0, + "new_cases_smoothed": 292.143, + "total_deaths": 5789.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 7870.569, + "new_cases_per_million": 19.407, + "new_cases_smoothed_per_million": 28.927, + "total_deaths_per_million": 573.21, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 7793.0, + "new_tests_smoothed_per_thousand": 0.772, + "tests_per_case": 26.675, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-12", + "total_cases": 79904.0, + "new_cases": 417.0, + "new_cases_smoothed": 304.143, + "total_deaths": 5793.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 7911.859, + "new_cases_per_million": 41.29, + "new_cases_smoothed_per_million": 30.115, + "total_deaths_per_million": 573.606, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 7852.0, + "new_tests_smoothed_per_thousand": 0.777, + "tests_per_case": 25.816999999999997, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-13", + "total_cases": 80348.0, + "new_cases": 444.0, + "new_cases_smoothed": 306.857, + "total_deaths": 5796.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 7955.823, + "new_cases_per_million": 43.964, + "new_cases_smoothed_per_million": 30.384, + "total_deaths_per_million": 573.903, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 7912.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 25.784000000000002, + "positive_rate": 0.039, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-14", + "total_cases": 80710.0, + "new_cases": 362.0, + "new_cases_smoothed": 304.571, + "total_deaths": 5802.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 7991.667, + "new_cases_per_million": 35.844, + "new_cases_smoothed_per_million": 30.158, + "total_deaths_per_million": 574.497, + "new_deaths_per_million": 0.594, + "new_deaths_smoothed_per_million": 0.325, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 7971.0, + "new_tests_smoothed_per_thousand": 0.789, + "tests_per_case": 26.171, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-15", + "total_cases": 81054.0, + "new_cases": 344.0, + "new_cases_smoothed": 299.429, + "total_deaths": 5803.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 8025.729, + "new_cases_per_million": 34.062, + "new_cases_smoothed_per_million": 29.649, + "total_deaths_per_million": 574.596, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 8031.0, + "new_tests_smoothed_per_thousand": 0.795, + "tests_per_case": 26.820999999999998, + "positive_rate": 0.037000000000000005, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-16", + "total_cases": 81280.0, + "new_cases": 226.0, + "new_cases_smoothed": 294.571, + "total_deaths": 5804.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 8048.106, + "new_cases_per_million": 22.378, + "new_cases_smoothed_per_million": 29.168, + "total_deaths_per_million": 574.695, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 8090.0, + "new_tests_per_thousand": 0.801, + "new_tests_smoothed": 8090.0, + "new_tests_smoothed_per_thousand": 0.801, + "tests_per_case": 27.464000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-17", + "total_cases": 81343.0, + "new_cases": 63.0, + "new_cases_smoothed": 293.143, + "total_deaths": 5804.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8054.345, + "new_cases_per_million": 6.238, + "new_cases_smoothed_per_million": 29.026, + "total_deaths_per_million": 574.695, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 8272.0, + "new_tests_smoothed_per_thousand": 0.819, + "tests_per_case": 28.218000000000004, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-18", + "total_cases": 81517.0, + "new_cases": 174.0, + "new_cases_smoothed": 290.0, + "total_deaths": 5807.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 8071.573, + "new_cases_per_million": 17.229, + "new_cases_smoothed_per_million": 28.715, + "total_deaths_per_million": 574.992, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 8454.0, + "new_tests_smoothed_per_thousand": 0.837, + "tests_per_case": 29.151999999999997, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-19", + "total_cases": 81831.0, + "new_cases": 314.0, + "new_cases_smoothed": 275.286, + "total_deaths": 5812.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 8102.665, + "new_cases_per_million": 31.091, + "new_cases_smoothed_per_million": 27.258, + "total_deaths_per_million": 575.487, + "new_deaths_per_million": 0.495, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 8636.0, + "new_tests_smoothed_per_thousand": 0.855, + "tests_per_case": 31.371, + "positive_rate": 0.032, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-20", + "total_cases": 82182.0, + "new_cases": 351.0, + "new_cases_smoothed": 262.0, + "total_deaths": 5813.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8137.42, + "new_cases_per_million": 34.755, + "new_cases_smoothed_per_million": 25.942, + "total_deaths_per_million": 575.586, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 8818.0, + "new_tests_smoothed_per_thousand": 0.873, + "tests_per_case": 33.656, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-21", + "total_cases": 82515.0, + "new_cases": 333.0, + "new_cases_smoothed": 257.857, + "total_deaths": 5815.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 8170.393, + "new_cases_per_million": 32.973, + "new_cases_smoothed_per_million": 25.532, + "total_deaths_per_million": 575.784, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 9000.0, + "new_tests_smoothed_per_thousand": 0.891, + "tests_per_case": 34.903, + "positive_rate": 0.028999999999999998, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-22", + "total_cases": 82813.0, + "new_cases": 298.0, + "new_cases_smoothed": 251.286, + "total_deaths": 5820.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8199.9, + "new_cases_per_million": 29.507, + "new_cases_smoothed_per_million": 24.882, + "total_deaths_per_million": 576.279, + "new_deaths_per_million": 0.495, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 9182.0, + "new_tests_smoothed_per_thousand": 0.909, + "tests_per_case": 36.54, + "positive_rate": 0.027000000000000003, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-23", + "total_cases": 82973.0, + "new_cases": 160.0, + "new_cases_smoothed": 241.857, + "total_deaths": 5821.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 8215.742, + "new_cases_per_million": 15.843, + "new_cases_smoothed_per_million": 23.948, + "total_deaths_per_million": 576.378, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 9364.0, + "new_tests_per_thousand": 0.927, + "new_tests_smoothed": 9364.0, + "new_tests_smoothed_per_thousand": 0.927, + "tests_per_case": 38.717, + "positive_rate": 0.026000000000000002, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-24", + "total_cases": 83030.0, + "new_cases": 57.0, + "new_cases_smoothed": 241.0, + "total_deaths": 5824.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 8221.386, + "new_cases_per_million": 5.644, + "new_cases_smoothed_per_million": 23.863, + "total_deaths_per_million": 576.675, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.283, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 9762.0, + "new_tests_smoothed_per_thousand": 0.967, + "tests_per_case": 40.506, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-25", + "total_cases": 83204.0, + "new_cases": 174.0, + "new_cases_smoothed": 241.0, + "total_deaths": 5825.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 8238.615, + "new_cases_per_million": 17.229, + "new_cases_smoothed_per_million": 23.863, + "total_deaths_per_million": 576.774, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 10160.0, + "new_tests_smoothed_per_thousand": 1.006, + "tests_per_case": 42.158, + "positive_rate": 0.024, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-26", + "total_cases": 83427.0, + "new_cases": 223.0, + "new_cases_smoothed": 228.0, + "total_deaths": 5826.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 8260.696, + "new_cases_per_million": 22.081, + "new_cases_smoothed_per_million": 22.576, + "total_deaths_per_million": 576.873, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 10558.0, + "new_tests_smoothed_per_thousand": 1.045, + "tests_per_case": 46.306999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-27", + "total_cases": 83671.0, + "new_cases": 244.0, + "new_cases_smoothed": 212.714, + "total_deaths": 5828.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 8284.856, + "new_cases_per_million": 24.16, + "new_cases_smoothed_per_million": 21.062, + "total_deaths_per_million": 577.071, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 10957.0, + "new_tests_smoothed_per_thousand": 1.085, + "tests_per_case": 51.51, + "positive_rate": 0.019, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-28", + "total_cases": 83873.0, + "new_cases": 202.0, + "new_cases_smoothed": 194.0, + "total_deaths": 5828.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 8304.858, + "new_cases_per_million": 20.001, + "new_cases_smoothed_per_million": 19.209, + "total_deaths_per_million": 577.071, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.184, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 11355.0, + "new_tests_smoothed_per_thousand": 1.124, + "tests_per_case": 58.531000000000006, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-29", + "total_cases": 84052.0, + "new_cases": 179.0, + "new_cases_smoothed": 177.0, + "total_deaths": 5829.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 8322.582, + "new_cases_per_million": 17.724, + "new_cases_smoothed_per_million": 17.526, + "total_deaths_per_million": 577.17, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 11753.0, + "new_tests_smoothed_per_thousand": 1.164, + "tests_per_case": 66.40100000000001, + "positive_rate": 0.015, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-30", + "total_cases": 84183.0, + "new_cases": 131.0, + "new_cases_smoothed": 172.857, + "total_deaths": 5830.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 8335.553, + "new_cases_per_million": 12.971, + "new_cases_smoothed_per_million": 17.116, + "total_deaths_per_million": 577.269, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.127, + "new_tests": 12151.0, + "new_tests_per_thousand": 1.203, + "new_tests_smoothed": 12151.0, + "new_tests_smoothed_per_thousand": 1.203, + "tests_per_case": 70.295, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 37.04 + }, + { + "date": "2020-08-31", + "total_cases": 84231.0, + "new_cases": 48.0, + "new_cases_smoothed": 171.571, + "total_deaths": 5832.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8340.306, + "new_cases_per_million": 4.753, + "new_cases_smoothed_per_million": 16.988, + "total_deaths_per_million": 577.467, + "new_deaths_per_million": 0.198, + "new_deaths_smoothed_per_million": 0.113, + "stringency_index": 37.04 + }, + { + "date": "2020-09-01", + "total_cases": 84393.0, + "new_cases": 162.0, + "new_cases_smoothed": 169.857, + "total_deaths": 5833.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8356.347, + "new_cases_per_million": 16.041, + "new_cases_smoothed_per_million": 16.819, + "total_deaths_per_million": 577.566, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113 + }, + { + "date": "2020-09-02", + "total_cases": 84565.0, + "new_cases": 172.0, + "new_cases_smoothed": 162.571, + "total_deaths": 5834.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8373.377, + "new_cases_per_million": 17.031, + "new_cases_smoothed_per_million": 16.097, + "total_deaths_per_million": 577.666, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.113 + }, + { + "date": "2020-09-03", + "total_cases": 84778.0, + "new_cases": 213.0, + "new_cases_smoothed": 158.143, + "total_deaths": 5835.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8394.468, + "new_cases_per_million": 21.091, + "new_cases_smoothed_per_million": 15.659, + "total_deaths_per_million": 577.765, + "new_deaths_per_million": 0.099, + "new_deaths_smoothed_per_million": 0.099 + }, + { + "date": "2020-09-04", + "total_cases": 84985.0, + "new_cases": 207.0, + "new_cases_smoothed": 158.857, + "total_deaths": 5835.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8414.965, + "new_cases_per_million": 20.497, + "new_cases_smoothed_per_million": 15.73, + "total_deaths_per_million": 577.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099 + }, + { + "date": "2020-09-05", + "total_cases": 84985.0, + "new_cases": 0.0, + "new_cases_smoothed": 133.286, + "total_deaths": 5835.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8414.965, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.198, + "total_deaths_per_million": 577.765, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085 + } + ] + }, + "CHE": { + "continent": "Europe", + "location": "Switzerland", + "population": 8654618.0, + "population_density": 214.243, + "median_age": 43.1, + "aged_65_older": 18.436, + "aged_70_older": 12.644, + "gdp_per_capita": 57410.166, + "cardiovasc_death_rate": 99.739, + "diabetes_prevalence": 5.59, + "female_smokers": 22.6, + "male_smokers": 28.9, + "hospital_beds_per_thousand": 4.53, + "life_expectancy": 83.78, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 3.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 7.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 16.0, + "total_tests": 36.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 65.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 105.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.005, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 137.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 19.0, + "total_tests": 156.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 21.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 11.0, + "total_tests": 167.0, + "total_tests_per_thousand": 0.019, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 181.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 23.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 26.0, + "total_tests": 207.0, + "total_tests_per_thousand": 0.024, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 235.0, + "total_tests_per_thousand": 0.027, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 24.0, + "new_tests_smoothed_per_thousand": 0.003, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 248.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 20.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 263.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 270.0, + "total_tests_per_thousand": 0.031, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 279.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13.0, + "total_tests": 292.0, + "total_tests_per_thousand": 0.034, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 22.0, + "total_tests": 314.0, + "total_tests_per_thousand": 0.036, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 15.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 334.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 341.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 13.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 350.0, + "total_tests_per_thousand": 0.04, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 355.0, + "total_tests_per_thousand": 0.041, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 360.0, + "total_tests_per_thousand": 0.042, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 10.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9.0, + "total_tests": 369.0, + "total_tests_per_thousand": 0.043, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 383.0, + "total_tests_per_thousand": 0.044, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10.0, + "total_tests": 393.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 7.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 14.0, + "total_tests": 407.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 409.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5.0, + "total_tests": 414.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 8.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 48.0, + "total_tests": 462.0, + "total_tests_per_thousand": 0.053, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 14.0, + "new_tests_smoothed_per_thousand": 0.002, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 170.0, + "total_tests": 632.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.004, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-26", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.116, + "new_cases_per_million": 0.116, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 317.0, + "total_tests": 949.0, + "total_tests_per_thousand": 0.11, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 81.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 567.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.116, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 279.0, + "total_tests": 1228.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 833.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 13.89 + }, + { + "date": "2020-02-28", + "total_cases": 8.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.924, + "new_cases_per_million": 0.809, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 450.0, + "total_tests": 1678.0, + "total_tests_per_thousand": 0.194, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 159.25, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 12.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.387, + "new_cases_per_million": 0.462, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 258.0, + "total_tests": 1936.0, + "total_tests_per_thousand": 0.224, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 218.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 127.167, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 18.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.08, + "new_cases_per_million": 0.693, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 373.0, + "total_tests": 2309.0, + "total_tests_per_thousand": 0.267, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 271.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 105.389, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 24.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.773, + "new_cases_per_million": 0.693, + "new_cases_smoothed_per_million": 0.396, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 478.0, + "total_tests": 2787.0, + "total_tests_per_thousand": 0.322, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 332.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 96.833, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "total_cases": 30.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.466, + "new_cases_per_million": 0.693, + "new_cases_smoothed_per_million": 0.495, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 716.0, + "total_tests": 3503.0, + "total_tests_per_thousand": 0.405, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 410.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 95.667, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-04", + "total_cases": 37.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.275, + "new_cases_per_million": 0.809, + "new_cases_smoothed_per_million": 0.594, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 592.0, + "total_tests": 4095.0, + "total_tests_per_thousand": 0.473, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 449.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 87.306, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-05", + "total_cases": 57.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.586, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 0.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 587.0, + "total_tests": 4682.0, + "total_tests_per_thousand": 0.541, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 493.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 61.625, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "total_cases": 87.0, + "new_cases": 30.0, + "new_cases_smoothed": 11.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.052, + "new_cases_per_million": 3.466, + "new_cases_smoothed_per_million": 1.304, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 957.0, + "total_tests": 5639.0, + "total_tests_per_thousand": 0.652, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 566.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 50.152, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-07", + "total_cases": 209.0, + "new_cases": 122.0, + "new_cases_smoothed": 28.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.149, + "new_cases_per_million": 14.097, + "new_cases_smoothed_per_million": 3.252, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 727.0, + "total_tests": 6366.0, + "total_tests_per_thousand": 0.736, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 633.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 22.491999999999997, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-08", + "total_cases": 264.0, + "new_cases": 55.0, + "new_cases_smoothed": 35.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 30.504, + "new_cases_per_million": 6.355, + "new_cases_smoothed_per_million": 4.061, + "total_deaths_per_million": 0.116, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 744.0, + "total_tests": 7110.0, + "total_tests_per_thousand": 0.822, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 19.52, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-09", + "total_cases": 332.0, + "new_cases": 68.0, + "new_cases_smoothed": 44.0, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 38.361, + "new_cases_per_million": 7.857, + "new_cases_smoothed_per_million": 5.084, + "total_deaths_per_million": 0.231, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1631.0, + "total_tests": 8741.0, + "total_tests_per_thousand": 1.01, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 851.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 19.340999999999998, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-10", + "total_cases": 374.0, + "new_cases": 42.0, + "new_cases_smoothed": 49.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.214, + "new_cases_per_million": 4.853, + "new_cases_smoothed_per_million": 5.678, + "total_deaths_per_million": 0.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 2172.0, + "total_tests": 10913.0, + "total_tests_per_thousand": 1.261, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 1059.0, + "new_tests_smoothed_per_thousand": 0.122, + "tests_per_case": 21.549, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 490.0, + "new_cases": 116.0, + "new_cases_smoothed": 64.714, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 56.617, + "new_cases_per_million": 13.403, + "new_cases_smoothed_per_million": 7.477, + "total_deaths_per_million": 0.347, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2724.0, + "total_tests": 13637.0, + "total_tests_per_thousand": 1.576, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 1363.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 21.061999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 642.0, + "new_cases": 152.0, + "new_cases_smoothed": 83.571, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.18, + "new_cases_per_million": 17.563, + "new_cases_smoothed_per_million": 9.656, + "total_deaths_per_million": 0.462, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 4634.0, + "total_tests": 18271.0, + "total_tests_per_thousand": 2.111, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 1941.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 23.226, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 854.0, + "new_cases": 212.0, + "new_cases_smoothed": 109.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 98.676, + "new_cases_per_million": 24.496, + "new_cases_smoothed_per_million": 12.66, + "total_deaths_per_million": 0.462, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4689.0, + "total_tests": 22960.0, + "total_tests_per_thousand": 2.653, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 2474.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 22.579, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-14", + "total_cases": 1121.0, + "new_cases": 267.0, + "new_cases_smoothed": 130.286, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 129.526, + "new_cases_per_million": 30.851, + "new_cases_smoothed_per_million": 15.054, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 5244.0, + "total_tests": 28204.0, + "total_tests_per_thousand": 3.259, + "new_tests_per_thousand": 0.606, + "new_tests_smoothed": 3120.0, + "new_tests_smoothed_per_thousand": 0.361, + "tests_per_case": 23.947, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-15", + "total_cases": 1359.0, + "new_cases": 238.0, + "new_cases_smoothed": 156.429, + "total_deaths": 11.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 157.026, + "new_cases_per_million": 27.5, + "new_cases_smoothed_per_million": 18.075, + "total_deaths_per_million": 1.271, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 2523.0, + "total_tests": 30727.0, + "total_tests_per_thousand": 3.55, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 3374.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 21.569000000000003, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-16", + "total_cases": 2200.0, + "new_cases": 841.0, + "new_cases_smoothed": 266.857, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 254.2, + "new_cases_per_million": 97.174, + "new_cases_smoothed_per_million": 30.834, + "total_deaths_per_million": 1.502, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.182, + "new_tests": 5279.0, + "total_tests": 36006.0, + "total_tests_per_thousand": 4.16, + "new_tests_per_thousand": 0.61, + "new_tests_smoothed": 3895.0, + "new_tests_smoothed_per_thousand": 0.45, + "tests_per_case": 14.595999999999998, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 44.44 + }, + { + "date": "2020-03-17", + "total_cases": 2200.0, + "new_cases": 0.0, + "new_cases_smoothed": 260.857, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 254.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 30.141, + "total_deaths_per_million": 1.618, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 9353.0, + "total_tests": 45359.0, + "total_tests_per_thousand": 5.241, + "new_tests_per_thousand": 1.081, + "new_tests_smoothed": 4921.0, + "new_tests_smoothed_per_thousand": 0.569, + "tests_per_case": 18.865, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-18", + "total_cases": 2650.0, + "new_cases": 450.0, + "new_cases_smoothed": 308.571, + "total_deaths": 19.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 306.195, + "new_cases_per_million": 51.995, + "new_cases_smoothed_per_million": 35.654, + "total_deaths_per_million": 2.195, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 10591.0, + "total_tests": 55950.0, + "total_tests_per_thousand": 6.465, + "new_tests_per_thousand": 1.224, + "new_tests_smoothed": 6045.0, + "new_tests_smoothed_per_thousand": 0.698, + "tests_per_case": 19.59, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-19", + "total_cases": 3003.0, + "new_cases": 353.0, + "new_cases_smoothed": 337.286, + "total_deaths": 25.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 346.982, + "new_cases_per_million": 40.787, + "new_cases_smoothed_per_million": 38.972, + "total_deaths_per_million": 2.889, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 9681.0, + "total_tests": 65631.0, + "total_tests_per_thousand": 7.583, + "new_tests_per_thousand": 1.119, + "new_tests_smoothed": 6766.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 20.06, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-20", + "total_cases": 3863.0, + "new_cases": 860.0, + "new_cases_smoothed": 429.857, + "total_deaths": 33.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 446.351, + "new_cases_per_million": 99.369, + "new_cases_smoothed_per_million": 49.668, + "total_deaths_per_million": 3.813, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.479, + "new_tests": 8153.0, + "total_tests": 73784.0, + "total_tests_per_thousand": 8.525, + "new_tests_per_thousand": 0.942, + "new_tests_smoothed": 7261.0, + "new_tests_smoothed_per_thousand": 0.839, + "tests_per_case": 16.892, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-21", + "total_cases": 4806.0, + "new_cases": 943.0, + "new_cases_smoothed": 526.429, + "total_deaths": 43.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 555.31, + "new_cases_per_million": 108.959, + "new_cases_smoothed_per_million": 60.826, + "total_deaths_per_million": 4.968, + "new_deaths_per_million": 1.155, + "new_deaths_smoothed_per_million": 0.594, + "new_tests": 6429.0, + "total_tests": 80213.0, + "total_tests_per_thousand": 9.268, + "new_tests_per_thousand": 0.743, + "new_tests_smoothed": 7430.0, + "new_tests_smoothed_per_thousand": 0.859, + "tests_per_case": 14.114, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-22", + "total_cases": 6077.0, + "new_cases": 1271.0, + "new_cases_smoothed": 674.0, + "total_deaths": 56.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 702.168, + "new_cases_per_million": 146.858, + "new_cases_smoothed_per_million": 77.877, + "total_deaths_per_million": 6.471, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 0.743, + "new_tests": 3288.0, + "total_tests": 83501.0, + "total_tests_per_thousand": 9.648, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 7539.0, + "new_tests_smoothed_per_thousand": 0.871, + "tests_per_case": 11.185, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-23", + "total_cases": 6971.0, + "new_cases": 894.0, + "new_cases_smoothed": 681.571, + "total_deaths": 60.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 805.466, + "new_cases_per_million": 103.297, + "new_cases_smoothed_per_million": 78.752, + "total_deaths_per_million": 6.933, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.776, + "new_tests": 6640.0, + "total_tests": 90141.0, + "total_tests_per_thousand": 10.415, + "new_tests_per_thousand": 0.767, + "new_tests_smoothed": 7734.0, + "new_tests_smoothed_per_thousand": 0.894, + "tests_per_case": 11.347000000000001, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-24", + "total_cases": 8015.0, + "new_cases": 1044.0, + "new_cases_smoothed": 830.714, + "total_deaths": 66.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 926.095, + "new_cases_per_million": 120.629, + "new_cases_smoothed_per_million": 95.985, + "total_deaths_per_million": 7.626, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.858, + "new_tests": 5813.0, + "total_tests": 95954.0, + "total_tests_per_thousand": 11.087, + "new_tests_per_thousand": 0.672, + "new_tests_smoothed": 7228.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 8.701, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-25", + "total_cases": 8789.0, + "new_cases": 774.0, + "new_cases_smoothed": 877.0, + "total_deaths": 86.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 1015.527, + "new_cases_per_million": 89.432, + "new_cases_smoothed_per_million": 101.333, + "total_deaths_per_million": 9.937, + "new_deaths_per_million": 2.311, + "new_deaths_smoothed_per_million": 1.106, + "new_tests": 7692.0, + "total_tests": 103646.0, + "total_tests_per_thousand": 11.976, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 6814.0, + "new_tests_smoothed_per_thousand": 0.787, + "tests_per_case": 7.77, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-26", + "total_cases": 9714.0, + "new_cases": 925.0, + "new_cases_smoothed": 958.714, + "total_deaths": 103.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 1122.407, + "new_cases_per_million": 106.879, + "new_cases_smoothed_per_million": 110.775, + "total_deaths_per_million": 11.901, + "new_deaths_per_million": 1.964, + "new_deaths_smoothed_per_million": 1.288, + "new_tests": 7861.0, + "total_tests": 111507.0, + "total_tests_per_thousand": 12.884, + "new_tests_per_thousand": 0.908, + "new_tests_smoothed": 6554.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 6.836, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 10714.0, + "new_cases": 1000.0, + "new_cases_smoothed": 978.714, + "total_deaths": 161.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 1237.952, + "new_cases_per_million": 115.545, + "new_cases_smoothed_per_million": 113.086, + "total_deaths_per_million": 18.603, + "new_deaths_per_million": 6.702, + "new_deaths_smoothed_per_million": 2.113, + "new_tests": 7197.0, + "total_tests": 118704.0, + "total_tests_per_thousand": 13.716, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 6417.0, + "new_tests_smoothed_per_thousand": 0.741, + "tests_per_case": 6.557, + "positive_rate": 0.153, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-28", + "total_cases": 12104.0, + "new_cases": 1390.0, + "new_cases_smoothed": 1042.571, + "total_deaths": 197.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 1398.56, + "new_cases_per_million": 160.608, + "new_cases_smoothed_per_million": 120.464, + "total_deaths_per_million": 22.762, + "new_deaths_per_million": 4.16, + "new_deaths_smoothed_per_million": 2.542, + "new_tests": 5765.0, + "total_tests": 124469.0, + "total_tests_per_thousand": 14.382, + "new_tests_per_thousand": 0.666, + "new_tests_smoothed": 6322.0, + "new_tests_smoothed_per_thousand": 0.73, + "tests_per_case": 6.064, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-29", + "total_cases": 13152.0, + "new_cases": 1048.0, + "new_cases_smoothed": 1010.714, + "total_deaths": 235.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 25.571, + "total_cases_per_million": 1519.651, + "new_cases_per_million": 121.091, + "new_cases_smoothed_per_million": 116.783, + "total_deaths_per_million": 27.153, + "new_deaths_per_million": 4.391, + "new_deaths_smoothed_per_million": 2.955, + "new_tests": 2767.0, + "total_tests": 127236.0, + "total_tests_per_thousand": 14.702, + "new_tests_per_thousand": 0.32, + "new_tests_smoothed": 6248.0, + "new_tests_smoothed_per_thousand": 0.722, + "tests_per_case": 6.182, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-30", + "total_cases": 14274.0, + "new_cases": 1122.0, + "new_cases_smoothed": 1043.286, + "total_deaths": 257.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 1649.293, + "new_cases_per_million": 129.642, + "new_cases_smoothed_per_million": 120.547, + "total_deaths_per_million": 29.695, + "new_deaths_per_million": 2.542, + "new_deaths_smoothed_per_million": 3.252, + "new_tests": 4489.0, + "total_tests": 131725.0, + "total_tests_per_thousand": 15.22, + "new_tests_per_thousand": 0.519, + "new_tests_smoothed": 5941.0, + "new_tests_smoothed_per_thousand": 0.686, + "tests_per_case": 5.695, + "positive_rate": 0.17600000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-31", + "total_cases": 15412.0, + "new_cases": 1138.0, + "new_cases_smoothed": 1056.714, + "total_deaths": 295.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 32.714, + "total_cases_per_million": 1780.783, + "new_cases_per_million": 131.49, + "new_cases_smoothed_per_million": 122.098, + "total_deaths_per_million": 34.086, + "new_deaths_per_million": 4.391, + "new_deaths_smoothed_per_million": 3.78, + "new_tests": 7160.0, + "total_tests": 138885.0, + "total_tests_per_thousand": 16.048, + "new_tests_per_thousand": 0.827, + "new_tests_smoothed": 6133.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 5.803999999999999, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-01", + "total_cases": 16108.0, + "new_cases": 696.0, + "new_cases_smoothed": 1045.571, + "total_deaths": 373.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 1861.203, + "new_cases_per_million": 80.419, + "new_cases_smoothed_per_million": 120.811, + "total_deaths_per_million": 43.098, + "new_deaths_per_million": 9.013, + "new_deaths_smoothed_per_million": 4.737, + "new_tests": 6702.0, + "total_tests": 145587.0, + "total_tests_per_thousand": 16.822, + "new_tests_per_thousand": 0.774, + "new_tests_smoothed": 5992.0, + "new_tests_smoothed_per_thousand": 0.692, + "tests_per_case": 5.731, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-02", + "total_cases": 17070.0, + "new_cases": 962.0, + "new_cases_smoothed": 1050.857, + "total_deaths": 378.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 39.286, + "total_cases_per_million": 1972.357, + "new_cases_per_million": 111.155, + "new_cases_smoothed_per_million": 121.422, + "total_deaths_per_million": 43.676, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 4.539, + "new_tests": 7021.0, + "total_tests": 152608.0, + "total_tests_per_thousand": 17.633, + "new_tests_per_thousand": 0.811, + "new_tests_smoothed": 5872.0, + "new_tests_smoothed_per_thousand": 0.678, + "tests_per_case": 5.587999999999999, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 18194.0, + "new_cases": 1124.0, + "new_cases_smoothed": 1068.571, + "total_deaths": 432.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 38.714, + "total_cases_per_million": 2102.23, + "new_cases_per_million": 129.873, + "new_cases_smoothed_per_million": 123.468, + "total_deaths_per_million": 49.916, + "new_deaths_per_million": 6.239, + "new_deaths_smoothed_per_million": 4.473, + "new_tests": 6517.0, + "total_tests": 159125.0, + "total_tests_per_thousand": 18.386, + "new_tests_per_thousand": 0.753, + "new_tests_smoothed": 5774.0, + "new_tests_smoothed_per_thousand": 0.667, + "tests_per_case": 5.403, + "positive_rate": 0.185, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-04", + "total_cases": 19227.0, + "new_cases": 1033.0, + "new_cases_smoothed": 1017.571, + "total_deaths": 484.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 2221.589, + "new_cases_per_million": 119.358, + "new_cases_smoothed_per_million": 117.576, + "total_deaths_per_million": 55.924, + "new_deaths_per_million": 6.008, + "new_deaths_smoothed_per_million": 4.737, + "new_tests": 5204.0, + "total_tests": 164329.0, + "total_tests_per_thousand": 18.987, + "new_tests_per_thousand": 0.601, + "new_tests_smoothed": 5694.0, + "new_tests_smoothed_per_thousand": 0.658, + "tests_per_case": 5.596, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-05", + "total_cases": 20201.0, + "new_cases": 974.0, + "new_cases_smoothed": 1007.0, + "total_deaths": 540.0, + "new_deaths": 56.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 2334.13, + "new_cases_per_million": 112.541, + "new_cases_smoothed_per_million": 116.354, + "total_deaths_per_million": 62.394, + "new_deaths_per_million": 6.471, + "new_deaths_smoothed_per_million": 5.034, + "new_tests": 3305.0, + "total_tests": 167634.0, + "total_tests_per_thousand": 19.369, + "new_tests_per_thousand": 0.382, + "new_tests_smoothed": 5771.0, + "new_tests_smoothed_per_thousand": 0.667, + "tests_per_case": 5.731, + "positive_rate": 0.174, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-06", + "total_cases": 21022.0, + "new_cases": 821.0, + "new_cases_smoothed": 964.0, + "total_deaths": 559.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 2428.992, + "new_cases_per_million": 94.863, + "new_cases_smoothed_per_million": 111.386, + "total_deaths_per_million": 64.59, + "new_deaths_per_million": 2.195, + "new_deaths_smoothed_per_million": 4.985, + "new_tests": 4112.0, + "total_tests": 171746.0, + "total_tests_per_thousand": 19.844, + "new_tests_per_thousand": 0.475, + "new_tests_smoothed": 5717.0, + "new_tests_smoothed_per_thousand": 0.661, + "tests_per_case": 5.93, + "positive_rate": 0.16899999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 21574.0, + "new_cases": 552.0, + "new_cases_smoothed": 880.286, + "total_deaths": 584.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 41.286, + "total_cases_per_million": 2492.773, + "new_cases_per_million": 63.781, + "new_cases_smoothed_per_million": 101.713, + "total_deaths_per_million": 67.478, + "new_deaths_per_million": 2.889, + "new_deaths_smoothed_per_million": 4.77, + "new_tests": 6870.0, + "total_tests": 178616.0, + "total_tests_per_thousand": 20.638, + "new_tests_per_thousand": 0.794, + "new_tests_smoothed": 5676.0, + "new_tests_smoothed_per_thousand": 0.656, + "tests_per_case": 6.4479999999999995, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 22164.0, + "new_cases": 590.0, + "new_cases_smoothed": 865.143, + "total_deaths": 641.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 2560.945, + "new_cases_per_million": 68.172, + "new_cases_smoothed_per_million": 99.963, + "total_deaths_per_million": 74.065, + "new_deaths_per_million": 6.586, + "new_deaths_smoothed_per_million": 4.424, + "new_tests": 6561.0, + "total_tests": 185177.0, + "total_tests_per_thousand": 21.396, + "new_tests_per_thousand": 0.758, + "new_tests_smoothed": 5656.0, + "new_tests_smoothed_per_thousand": 0.654, + "tests_per_case": 6.537999999999999, + "positive_rate": 0.153, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 22710.0, + "new_cases": 546.0, + "new_cases_smoothed": 805.714, + "total_deaths": 705.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 46.714, + "total_cases_per_million": 2624.033, + "new_cases_per_million": 63.088, + "new_cases_smoothed_per_million": 93.096, + "total_deaths_per_million": 81.459, + "new_deaths_per_million": 7.395, + "new_deaths_smoothed_per_million": 5.398, + "new_tests": 6016.0, + "total_tests": 191193.0, + "total_tests_per_thousand": 22.091, + "new_tests_per_thousand": 0.695, + "new_tests_smoothed": 5512.0, + "new_tests_smoothed_per_thousand": 0.637, + "tests_per_case": 6.841, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 23495.0, + "new_cases": 785.0, + "new_cases_smoothed": 757.286, + "total_deaths": 756.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 2714.736, + "new_cases_per_million": 90.703, + "new_cases_smoothed_per_million": 87.501, + "total_deaths_per_million": 87.352, + "new_deaths_per_million": 5.893, + "new_deaths_smoothed_per_million": 5.348, + "new_tests": 3981.0, + "total_tests": 195174.0, + "total_tests_per_thousand": 22.551, + "new_tests_per_thousand": 0.46, + "new_tests_smoothed": 5150.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 6.801, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 24228.0, + "new_cases": 733.0, + "new_cases_smoothed": 714.429, + "total_deaths": 805.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 45.857, + "total_cases_per_million": 2799.43, + "new_cases_per_million": 84.695, + "new_cases_smoothed_per_million": 82.549, + "total_deaths_per_million": 93.014, + "new_deaths_per_million": 5.662, + "new_deaths_smoothed_per_million": 5.299, + "new_tests": 2798.0, + "total_tests": 197972.0, + "total_tests_per_thousand": 22.875, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 4806.0, + "new_tests_smoothed_per_thousand": 0.555, + "tests_per_case": 6.727, + "positive_rate": 0.149, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 24820.0, + "new_cases": 592.0, + "new_cases_smoothed": 659.857, + "total_deaths": 831.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 41.571, + "total_cases_per_million": 2867.833, + "new_cases_per_million": 68.403, + "new_cases_smoothed_per_million": 76.243, + "total_deaths_per_million": 96.018, + "new_deaths_per_million": 3.004, + "new_deaths_smoothed_per_million": 4.803, + "new_tests": 2300.0, + "total_tests": 200272.0, + "total_tests_per_thousand": 23.14, + "new_tests_per_thousand": 0.266, + "new_tests_smoothed": 4663.0, + "new_tests_smoothed_per_thousand": 0.539, + "tests_per_case": 7.067, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 25220.0, + "new_cases": 400.0, + "new_cases_smoothed": 599.714, + "total_deaths": 858.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 42.714, + "total_cases_per_million": 2914.051, + "new_cases_per_million": 46.218, + "new_cases_smoothed_per_million": 69.294, + "total_deaths_per_million": 99.138, + "new_deaths_per_million": 3.12, + "new_deaths_smoothed_per_million": 4.935, + "new_tests": 2197.0, + "total_tests": 202469.0, + "total_tests_per_thousand": 23.394, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 4389.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 7.318, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 25499.0, + "new_cases": 279.0, + "new_cases_smoothed": 560.714, + "total_deaths": 858.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 39.143, + "total_cases_per_million": 2946.288, + "new_cases_per_million": 32.237, + "new_cases_smoothed_per_million": 64.788, + "total_deaths_per_million": 99.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.523, + "new_tests": 3923.0, + "total_tests": 206392.0, + "total_tests_per_thousand": 23.848, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 3968.0, + "new_tests_smoothed_per_thousand": 0.458, + "tests_per_case": 7.077000000000001, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 25753.0, + "new_cases": 254.0, + "new_cases_smoothed": 512.714, + "total_deaths": 900.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 37.0, + "total_cases_per_million": 2975.637, + "new_cases_per_million": 29.348, + "new_cases_smoothed_per_million": 59.242, + "total_deaths_per_million": 103.991, + "new_deaths_per_million": 4.853, + "new_deaths_smoothed_per_million": 4.275, + "new_tests": 5590.0, + "total_tests": 211982.0, + "total_tests_per_thousand": 24.494, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 3829.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 7.468, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 26336.0, + "new_cases": 583.0, + "new_cases_smoothed": 518.0, + "total_deaths": 973.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 38.286, + "total_cases_per_million": 3043.0, + "new_cases_per_million": 67.363, + "new_cases_smoothed_per_million": 59.852, + "total_deaths_per_million": 112.426, + "new_deaths_per_million": 8.435, + "new_deaths_smoothed_per_million": 4.424, + "new_tests": 5137.0, + "total_tests": 217119.0, + "total_tests_per_thousand": 25.087, + "new_tests_per_thousand": 0.594, + "new_tests_smoothed": 3704.0, + "new_tests_smoothed_per_thousand": 0.428, + "tests_per_case": 7.151, + "positive_rate": 0.14, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 26651.0, + "new_cases": 315.0, + "new_cases_smoothed": 450.857, + "total_deaths": 1016.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 37.143, + "total_cases_per_million": 3079.396, + "new_cases_per_million": 36.397, + "new_cases_smoothed_per_million": 52.094, + "total_deaths_per_million": 117.394, + "new_deaths_per_million": 4.968, + "new_deaths_smoothed_per_million": 4.292, + "new_tests": 4598.0, + "total_tests": 221717.0, + "total_tests_per_thousand": 25.618, + "new_tests_per_thousand": 0.531, + "new_tests_smoothed": 3792.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 8.411, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 26997.0, + "new_cases": 346.0, + "new_cases_smoothed": 395.571, + "total_deaths": 1058.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 3119.375, + "new_cases_per_million": 39.979, + "new_cases_smoothed_per_million": 45.706, + "total_deaths_per_million": 122.247, + "new_deaths_per_million": 4.853, + "new_deaths_smoothed_per_million": 4.176, + "new_tests": 3649.0, + "total_tests": 225366.0, + "total_tests_per_thousand": 26.04, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 3913.0, + "new_tests_smoothed_per_thousand": 0.452, + "tests_per_case": 9.892000000000001, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 27322.0, + "new_cases": 325.0, + "new_cases_smoothed": 357.429, + "total_deaths": 1110.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 3156.927, + "new_cases_per_million": 37.552, + "new_cases_smoothed_per_million": 41.299, + "total_deaths_per_million": 128.255, + "new_deaths_per_million": 6.008, + "new_deaths_smoothed_per_million": 4.605, + "new_tests": 2119.0, + "total_tests": 227485.0, + "total_tests_per_thousand": 26.285, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 3888.0, + "new_tests_smoothed_per_thousand": 0.449, + "tests_per_case": 10.878, + "positive_rate": 0.092, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 27658.0, + "new_cases": 336.0, + "new_cases_smoothed": 348.286, + "total_deaths": 1134.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 39.429, + "total_cases_per_million": 3195.751, + "new_cases_per_million": 38.823, + "new_cases_smoothed_per_million": 40.243, + "total_deaths_per_million": 131.028, + "new_deaths_per_million": 2.773, + "new_deaths_smoothed_per_million": 4.556, + "new_tests": 3427.0, + "total_tests": 230912.0, + "total_tests_per_thousand": 26.681, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 4063.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 11.665999999999999, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 27826.0, + "new_cases": 168.0, + "new_cases_smoothed": 332.429, + "total_deaths": 1141.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 3215.162, + "new_cases_per_million": 19.412, + "new_cases_smoothed_per_million": 38.411, + "total_deaths_per_million": 131.837, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 4.671, + "new_tests": 4973.0, + "total_tests": 235885.0, + "total_tests_per_thousand": 27.255, + "new_tests_per_thousand": 0.575, + "new_tests_smoothed": 4213.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 12.673, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 27981.0, + "new_cases": 155.0, + "new_cases_smoothed": 318.286, + "total_deaths": 1186.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 40.857, + "total_cases_per_million": 3233.072, + "new_cases_per_million": 17.91, + "new_cases_smoothed_per_million": 36.776, + "total_deaths_per_million": 137.037, + "new_deaths_per_million": 5.2, + "new_deaths_smoothed_per_million": 4.721, + "new_tests": 4655.0, + "total_tests": 240540.0, + "total_tests_per_thousand": 27.793, + "new_tests_per_thousand": 0.538, + "new_tests_smoothed": 4080.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 12.819, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 28186.0, + "new_cases": 205.0, + "new_cases_smoothed": 264.286, + "total_deaths": 1216.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 34.714, + "total_cases_per_million": 3256.758, + "new_cases_per_million": 23.687, + "new_cases_smoothed_per_million": 30.537, + "total_deaths_per_million": 140.503, + "new_deaths_per_million": 3.466, + "new_deaths_smoothed_per_million": 4.011, + "new_tests": 4562.0, + "total_tests": 245102.0, + "total_tests_per_thousand": 28.32, + "new_tests_per_thousand": 0.527, + "new_tests_smoothed": 3998.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 15.128, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 28414.0, + "new_cases": 228.0, + "new_cases_smoothed": 251.857, + "total_deaths": 1267.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 35.857, + "total_cases_per_million": 3283.103, + "new_cases_per_million": 26.344, + "new_cases_smoothed_per_million": 29.101, + "total_deaths_per_million": 146.396, + "new_deaths_per_million": 5.893, + "new_deaths_smoothed_per_million": 4.143, + "new_tests": 4793.0, + "total_tests": 249895.0, + "total_tests_per_thousand": 28.874, + "new_tests_per_thousand": 0.554, + "new_tests_smoothed": 4025.0, + "new_tests_smoothed_per_thousand": 0.465, + "tests_per_case": 15.981, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 28595.0, + "new_cases": 181.0, + "new_cases_smoothed": 228.286, + "total_deaths": 1308.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 35.714, + "total_cases_per_million": 3304.016, + "new_cases_per_million": 20.914, + "new_cases_smoothed_per_million": 26.377, + "total_deaths_per_million": 151.133, + "new_deaths_per_million": 4.737, + "new_deaths_smoothed_per_million": 4.127, + "new_tests": 4033.0, + "total_tests": 253928.0, + "total_tests_per_thousand": 29.34, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 4080.0, + "new_tests_smoothed_per_thousand": 0.471, + "tests_per_case": 17.872, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 28811.0, + "new_cases": 216.0, + "new_cases_smoothed": 212.714, + "total_deaths": 1328.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 3328.974, + "new_cases_per_million": 24.958, + "new_cases_smoothed_per_million": 24.578, + "total_deaths_per_million": 153.444, + "new_deaths_per_million": 2.311, + "new_deaths_smoothed_per_million": 3.598, + "new_tests": 2363.0, + "total_tests": 256291.0, + "total_tests_per_thousand": 29.613, + "new_tests_per_thousand": 0.273, + "new_tests_smoothed": 4115.0, + "new_tests_smoothed_per_thousand": 0.475, + "tests_per_case": 19.345, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 28978.0, + "new_cases": 167.0, + "new_cases_smoothed": 188.571, + "total_deaths": 1336.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 3348.27, + "new_cases_per_million": 19.296, + "new_cases_smoothed_per_million": 21.789, + "total_deaths_per_million": 154.368, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 3.334, + "new_tests": 3749.0, + "total_tests": 260040.0, + "total_tests_per_thousand": 30.046, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 4161.0, + "new_tests_smoothed_per_thousand": 0.481, + "tests_per_case": 22.066, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-28", + "total_cases": 29081.0, + "new_cases": 103.0, + "new_cases_smoothed": 179.286, + "total_deaths": 1352.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 30.143, + "total_cases_per_million": 3360.171, + "new_cases_per_million": 11.901, + "new_cases_smoothed_per_million": 20.716, + "total_deaths_per_million": 156.217, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 3.483, + "new_tests": 5594.0, + "total_tests": 265634.0, + "total_tests_per_thousand": 30.693, + "new_tests_per_thousand": 0.646, + "new_tests_smoothed": 4250.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 23.705, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-29", + "total_cases": 29181.0, + "new_cases": 100.0, + "new_cases_smoothed": 171.429, + "total_deaths": 1379.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 27.571, + "total_cases_per_million": 3371.726, + "new_cases_per_million": 11.555, + "new_cases_smoothed_per_million": 19.808, + "total_deaths_per_million": 159.337, + "new_deaths_per_million": 3.12, + "new_deaths_smoothed_per_million": 3.186, + "new_tests": 5810.0, + "total_tests": 271444.0, + "total_tests_per_thousand": 31.364, + "new_tests_per_thousand": 0.671, + "new_tests_smoothed": 4415.0, + "new_tests_smoothed_per_thousand": 0.51, + "tests_per_case": 25.754, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-30", + "total_cases": 29324.0, + "new_cases": 143.0, + "new_cases_smoothed": 162.571, + "total_deaths": 1407.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 27.286, + "total_cases_per_million": 3388.249, + "new_cases_per_million": 16.523, + "new_cases_smoothed_per_million": 18.784, + "total_deaths_per_million": 162.572, + "new_deaths_per_million": 3.235, + "new_deaths_smoothed_per_million": 3.153, + "new_tests": 4850.0, + "total_tests": 276294.0, + "total_tests_per_thousand": 31.924, + "new_tests_per_thousand": 0.56, + "new_tests_smoothed": 4456.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 27.409000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-01", + "total_cases": 29503.0, + "new_cases": 179.0, + "new_cases_smoothed": 155.571, + "total_deaths": 1422.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 3408.932, + "new_cases_per_million": 20.683, + "new_cases_smoothed_per_million": 17.976, + "total_deaths_per_million": 164.305, + "new_deaths_per_million": 1.733, + "new_deaths_smoothed_per_million": 2.559, + "new_tests": 4451.0, + "total_tests": 280745.0, + "total_tests_per_thousand": 32.439, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 4407.0, + "new_tests_smoothed_per_thousand": 0.509, + "tests_per_case": 28.328000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-02", + "total_cases": 29622.0, + "new_cases": 119.0, + "new_cases_smoothed": 146.714, + "total_deaths": 1434.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 3422.681, + "new_cases_per_million": 13.75, + "new_cases_smoothed_per_million": 16.952, + "total_deaths_per_million": 165.692, + "new_deaths_per_million": 1.387, + "new_deaths_smoothed_per_million": 2.08, + "new_tests": 3120.0, + "total_tests": 283865.0, + "total_tests_per_thousand": 32.799, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 4277.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 29.151999999999997, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-03", + "total_cases": 29734.0, + "new_cases": 112.0, + "new_cases_smoothed": 131.857, + "total_deaths": 1466.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 3435.622, + "new_cases_per_million": 12.941, + "new_cases_smoothed_per_million": 15.235, + "total_deaths_per_million": 169.389, + "new_deaths_per_million": 3.697, + "new_deaths_smoothed_per_million": 2.278, + "new_tests": 2519.0, + "total_tests": 286384.0, + "total_tests_per_thousand": 33.09, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 4299.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 32.603, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-04", + "total_cases": 29822.0, + "new_cases": 88.0, + "new_cases_smoothed": 120.571, + "total_deaths": 1472.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 3445.79, + "new_cases_per_million": 10.168, + "new_cases_smoothed_per_million": 13.931, + "total_deaths_per_million": 170.083, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 2.245, + "new_tests": 3862.0, + "total_tests": 290246.0, + "total_tests_per_thousand": 33.537, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 4315.0, + "new_tests_smoothed_per_thousand": 0.499, + "tests_per_case": 35.788000000000004, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-05", + "total_cases": 29898.0, + "new_cases": 76.0, + "new_cases_smoothed": 116.714, + "total_deaths": 1476.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 3454.572, + "new_cases_per_million": 8.781, + "new_cases_smoothed_per_million": 13.486, + "total_deaths_per_million": 170.545, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 2.047, + "new_tests": 5890.0, + "total_tests": 296136.0, + "total_tests_per_thousand": 34.217, + "new_tests_per_thousand": 0.681, + "new_tests_smoothed": 4357.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 37.33, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-06", + "total_cases": 29926.0, + "new_cases": 28.0, + "new_cases_smoothed": 106.429, + "total_deaths": 1482.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 3457.807, + "new_cases_per_million": 3.235, + "new_cases_smoothed_per_million": 12.297, + "total_deaths_per_million": 171.238, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 1.7, + "new_tests": 5376.0, + "total_tests": 301512.0, + "total_tests_per_thousand": 34.838, + "new_tests_per_thousand": 0.621, + "new_tests_smoothed": 4295.0, + "new_tests_smoothed_per_thousand": 0.496, + "tests_per_case": 40.356, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-07", + "total_cases": 29977.0, + "new_cases": 51.0, + "new_cases_smoothed": 93.286, + "total_deaths": 1504.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 3463.7, + "new_cases_per_million": 5.893, + "new_cases_smoothed_per_million": 10.779, + "total_deaths_per_million": 173.78, + "new_deaths_per_million": 2.542, + "new_deaths_smoothed_per_million": 1.601, + "new_tests": 4664.0, + "total_tests": 306176.0, + "total_tests_per_thousand": 35.377, + "new_tests_per_thousand": 0.539, + "new_tests_smoothed": 4269.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 45.763000000000005, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-08", + "total_cases": 30043.0, + "new_cases": 66.0, + "new_cases_smoothed": 77.143, + "total_deaths": 1517.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 3471.326, + "new_cases_per_million": 7.626, + "new_cases_smoothed_per_million": 8.913, + "total_deaths_per_million": 175.282, + "new_deaths_per_million": 1.502, + "new_deaths_smoothed_per_million": 1.568, + "new_tests": 4356.0, + "total_tests": 310532.0, + "total_tests_per_thousand": 35.88, + "new_tests_per_thousand": 0.503, + "new_tests_smoothed": 4255.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 55.157, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-09", + "total_cases": 30124.0, + "new_cases": 81.0, + "new_cases_smoothed": 71.714, + "total_deaths": 1525.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 3480.685, + "new_cases_per_million": 9.359, + "new_cases_smoothed_per_million": 8.286, + "total_deaths_per_million": 176.207, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 1.502, + "new_tests": 3136.0, + "total_tests": 313668.0, + "total_tests_per_thousand": 36.243, + "new_tests_per_thousand": 0.362, + "new_tests_smoothed": 4258.0, + "new_tests_smoothed_per_thousand": 0.492, + "tests_per_case": 59.375, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-10", + "total_cases": 30168.0, + "new_cases": 44.0, + "new_cases_smoothed": 62.0, + "total_deaths": 1531.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3485.769, + "new_cases_per_million": 5.084, + "new_cases_smoothed_per_million": 7.164, + "total_deaths_per_million": 176.9, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 1.073, + "new_tests": 1431.0, + "total_tests": 315099.0, + "total_tests_per_thousand": 36.408, + "new_tests_per_thousand": 0.165, + "new_tests_smoothed": 4102.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 66.161, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-11", + "total_cases": 30222.0, + "new_cases": 54.0, + "new_cases_smoothed": 57.143, + "total_deaths": 1537.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3492.009, + "new_cases_per_million": 6.239, + "new_cases_smoothed_per_million": 6.603, + "total_deaths_per_million": 177.593, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 1.073, + "new_tests": 5075.0, + "total_tests": 320174.0, + "total_tests_per_thousand": 36.995, + "new_tests_per_thousand": 0.586, + "new_tests_smoothed": 4275.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 74.812, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-12", + "total_cases": 30261.0, + "new_cases": 39.0, + "new_cases_smoothed": 51.857, + "total_deaths": 1542.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3496.515, + "new_cases_per_million": 4.506, + "new_cases_smoothed_per_million": 5.992, + "total_deaths_per_million": 178.171, + "new_deaths_per_million": 0.578, + "new_deaths_smoothed_per_million": 1.089, + "new_tests": 5567.0, + "total_tests": 325741.0, + "total_tests_per_thousand": 37.638, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 4229.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 81.551, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-13", + "total_cases": 30297.0, + "new_cases": 36.0, + "new_cases_smoothed": 53.0, + "total_deaths": 1560.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 3500.674, + "new_cases_per_million": 4.16, + "new_cases_smoothed_per_million": 6.124, + "total_deaths_per_million": 180.251, + "new_deaths_per_million": 2.08, + "new_deaths_smoothed_per_million": 1.288, + "new_tests": 6231.0, + "total_tests": 331972.0, + "total_tests_per_thousand": 38.358, + "new_tests_per_thousand": 0.72, + "new_tests_smoothed": 4351.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 82.094, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-14", + "total_cases": 30330.0, + "new_cases": 33.0, + "new_cases_smoothed": 50.429, + "total_deaths": 1563.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 3504.487, + "new_cases_per_million": 3.813, + "new_cases_smoothed_per_million": 5.827, + "total_deaths_per_million": 180.597, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.974, + "new_tests": 5706.0, + "total_tests": 337678.0, + "total_tests_per_thousand": 39.017, + "new_tests_per_thousand": 0.659, + "new_tests_smoothed": 4500.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 89.235, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-15", + "total_cases": 30380.0, + "new_cases": 50.0, + "new_cases_smoothed": 48.143, + "total_deaths": 1588.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 3510.265, + "new_cases_per_million": 5.777, + "new_cases_smoothed_per_million": 5.563, + "total_deaths_per_million": 183.486, + "new_deaths_per_million": 2.889, + "new_deaths_smoothed_per_million": 1.172, + "new_tests": 5598.0, + "total_tests": 343276.0, + "total_tests_per_thousand": 39.664, + "new_tests_per_thousand": 0.647, + "new_tests_smoothed": 4678.0, + "new_tests_smoothed_per_thousand": 0.541, + "tests_per_case": 97.169, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-16", + "total_cases": 30431.0, + "new_cases": 51.0, + "new_cases_smoothed": 43.857, + "total_deaths": 1594.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 3516.158, + "new_cases_per_million": 5.893, + "new_cases_smoothed_per_million": 5.067, + "total_deaths_per_million": 184.179, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 1.139, + "new_tests": 3270.0, + "total_tests": 346546.0, + "total_tests_per_thousand": 40.042, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 4697.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 107.098, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-17", + "total_cases": 30489.0, + "new_cases": 58.0, + "new_cases_smoothed": 45.857, + "total_deaths": 1601.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 3522.859, + "new_cases_per_million": 6.702, + "new_cases_smoothed_per_million": 5.299, + "total_deaths_per_million": 184.988, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 1.155, + "new_tests": 1744.0, + "total_tests": 348290.0, + "total_tests_per_thousand": 40.243, + "new_tests_per_thousand": 0.202, + "new_tests_smoothed": 4742.0, + "new_tests_smoothed_per_thousand": 0.548, + "tests_per_case": 103.40799999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-18", + "total_cases": 30504.0, + "new_cases": 15.0, + "new_cases_smoothed": 40.286, + "total_deaths": 1602.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 3524.592, + "new_cases_per_million": 1.733, + "new_cases_smoothed_per_million": 4.655, + "total_deaths_per_million": 185.103, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 1.073, + "new_tests": 4415.0, + "total_tests": 352705.0, + "total_tests_per_thousand": 40.753, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 4647.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 115.351, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-19", + "total_cases": 30514.0, + "new_cases": 10.0, + "new_cases_smoothed": 36.143, + "total_deaths": 1602.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 3525.748, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 4.176, + "total_deaths_per_million": 185.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.99, + "new_tests": 6000.0, + "total_tests": 358705.0, + "total_tests_per_thousand": 41.447, + "new_tests_per_thousand": 0.693, + "new_tests_smoothed": 4709.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 130.289, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-20", + "total_cases": 30535.0, + "new_cases": 21.0, + "new_cases_smoothed": 34.0, + "total_deaths": 1613.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 3528.174, + "new_cases_per_million": 2.426, + "new_cases_smoothed_per_million": 3.929, + "total_deaths_per_million": 186.374, + "new_deaths_per_million": 1.271, + "new_deaths_smoothed_per_million": 0.875, + "new_tests": 4864.0, + "total_tests": 363569.0, + "total_tests_per_thousand": 42.009, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 4514.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 132.765, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-21", + "total_cases": 30575.0, + "new_cases": 40.0, + "new_cases_smoothed": 35.0, + "total_deaths": 1629.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 3532.796, + "new_cases_per_million": 4.622, + "new_cases_smoothed_per_million": 4.044, + "total_deaths_per_million": 188.223, + "new_deaths_per_million": 1.849, + "new_deaths_smoothed_per_million": 1.089, + "new_tests": 2117.0, + "total_tests": 365686.0, + "total_tests_per_thousand": 42.253, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 4001.0, + "new_tests_smoothed_per_thousand": 0.462, + "tests_per_case": 114.314, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-22", + "total_cases": 30611.0, + "new_cases": 36.0, + "new_cases_smoothed": 33.0, + "total_deaths": 1637.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 3536.956, + "new_cases_per_million": 4.16, + "new_cases_smoothed_per_million": 3.813, + "total_deaths_per_million": 189.148, + "new_deaths_per_million": 0.924, + "new_deaths_smoothed_per_million": 0.809, + "new_tests": 3565.0, + "total_tests": 369251.0, + "total_tests_per_thousand": 42.665, + "new_tests_per_thousand": 0.412, + "new_tests_smoothed": 3711.0, + "new_tests_smoothed_per_thousand": 0.429, + "tests_per_case": 112.455, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-23", + "total_cases": 30624.0, + "new_cases": 13.0, + "new_cases_smoothed": 27.571, + "total_deaths": 1637.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 3538.458, + "new_cases_per_million": 1.502, + "new_cases_smoothed_per_million": 3.186, + "total_deaths_per_million": 189.148, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.71, + "new_tests": 2528.0, + "total_tests": 371779.0, + "total_tests_per_thousand": 42.957, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 3605.0, + "new_tests_smoothed_per_thousand": 0.417, + "tests_per_case": 130.751, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-24", + "total_cases": 30642.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.857, + "total_deaths": 1641.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 3540.538, + "new_cases_per_million": 2.08, + "new_cases_smoothed_per_million": 2.525, + "total_deaths_per_million": 189.61, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.66, + "new_tests": 1660.0, + "total_tests": 373439.0, + "total_tests_per_thousand": 43.149, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 3593.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 164.386, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-25", + "total_cases": 30653.0, + "new_cases": 11.0, + "new_cases_smoothed": 21.286, + "total_deaths": 1641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3541.809, + "new_cases_per_million": 1.271, + "new_cases_smoothed_per_million": 2.459, + "total_deaths_per_million": 189.61, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.644, + "new_tests": 4004.0, + "total_tests": 377443.0, + "total_tests_per_thousand": 43.612, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 3534.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 166.02700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-26", + "total_cases": 30663.0, + "new_cases": 10.0, + "new_cases_smoothed": 21.286, + "total_deaths": 1641.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 3542.964, + "new_cases_per_million": 1.155, + "new_cases_smoothed_per_million": 2.459, + "total_deaths_per_million": 189.61, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.644, + "new_tests": 5695.0, + "total_tests": 383138.0, + "total_tests_per_thousand": 44.27, + "new_tests_per_thousand": 0.658, + "new_tests_smoothed": 3490.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 163.96, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-27", + "total_cases": 30678.0, + "new_cases": 15.0, + "new_cases_smoothed": 20.429, + "total_deaths": 1647.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 3544.697, + "new_cases_per_million": 1.733, + "new_cases_smoothed_per_million": 2.36, + "total_deaths_per_million": 190.303, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.561, + "new_tests": 5002.0, + "total_tests": 388140.0, + "total_tests_per_thousand": 44.848, + "new_tests_per_thousand": 0.578, + "new_tests_smoothed": 3510.0, + "new_tests_smoothed_per_thousand": 0.406, + "tests_per_case": 171.81799999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-28", + "total_cases": 30678.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.714, + "total_deaths": 1647.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3544.697, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.7, + "total_deaths_per_million": 190.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 4193.0, + "total_tests": 392333.0, + "total_tests_per_thousand": 45.332, + "new_tests_per_thousand": 0.484, + "new_tests_smoothed": 3807.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 258.728, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-29", + "total_cases": 30713.0, + "new_cases": 35.0, + "new_cases_smoothed": 14.571, + "total_deaths": 1654.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 3548.741, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 1.684, + "total_deaths_per_million": 191.112, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.281, + "new_tests": 3712.0, + "total_tests": 396045.0, + "total_tests_per_thousand": 45.761, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 3828.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 262.70599999999996, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 65.74 + }, + { + "date": "2020-05-30", + "total_cases": 30745.0, + "new_cases": 32.0, + "new_cases_smoothed": 17.286, + "total_deaths": 1656.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3552.439, + "new_cases_per_million": 3.697, + "new_cases_smoothed_per_million": 1.997, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.314, + "new_tests": 2588.0, + "total_tests": 398633.0, + "total_tests_per_thousand": 46.06, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 3836.0, + "new_tests_smoothed_per_thousand": 0.443, + "tests_per_case": 221.917, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-05-31", + "total_cases": 30762.0, + "new_cases": 17.0, + "new_cases_smoothed": 17.143, + "total_deaths": 1656.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3554.403, + "new_cases_per_million": 1.964, + "new_cases_smoothed_per_million": 1.981, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 1572.0, + "total_tests": 400205.0, + "total_tests_per_thousand": 46.242, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 3824.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 223.067, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-01", + "total_cases": 30779.0, + "new_cases": 17.0, + "new_cases_smoothed": 18.0, + "total_deaths": 1656.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3556.367, + "new_cases_per_million": 1.964, + "new_cases_smoothed_per_million": 2.08, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 1783.0, + "total_tests": 401988.0, + "total_tests_per_thousand": 46.448, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 3506.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 194.778, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-02", + "total_cases": 30788.0, + "new_cases": 9.0, + "new_cases_smoothed": 17.857, + "total_deaths": 1656.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3557.407, + "new_cases_per_million": 1.04, + "new_cases_smoothed_per_million": 2.063, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 4282.0, + "total_tests": 406270.0, + "total_tests_per_thousand": 46.943, + "new_tests_per_thousand": 0.495, + "new_tests_smoothed": 3305.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 185.08, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-03", + "total_cases": 30791.0, + "new_cases": 3.0, + "new_cases_smoothed": 16.143, + "total_deaths": 1656.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 3557.754, + "new_cases_per_million": 0.347, + "new_cases_smoothed_per_million": 1.865, + "total_deaths_per_million": 191.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 5267.0, + "total_tests": 411537.0, + "total_tests_per_thousand": 47.551, + "new_tests_per_thousand": 0.609, + "new_tests_smoothed": 3342.0, + "new_tests_smoothed_per_thousand": 0.386, + "tests_per_case": 207.02700000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-04", + "total_cases": 30810.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.857, + "total_deaths": 1659.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3559.949, + "new_cases_per_million": 2.195, + "new_cases_smoothed_per_million": 2.179, + "total_deaths_per_million": 191.69, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 5218.0, + "total_tests": 416755.0, + "total_tests_per_thousand": 48.154, + "new_tests_per_thousand": 0.603, + "new_tests_smoothed": 3489.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 185.023, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-05", + "total_cases": 30830.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.714, + "total_deaths": 1659.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3562.26, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 1.931, + "total_deaths_per_million": 191.69, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 4821.0, + "total_tests": 421576.0, + "total_tests_per_thousand": 48.711, + "new_tests_per_thousand": 0.557, + "new_tests_smoothed": 3647.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 218.197, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-06-06", + "total_cases": 30853.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.429, + "total_deaths": 1659.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3564.918, + "new_cases_per_million": 2.658, + "new_cases_smoothed_per_million": 1.783, + "total_deaths_per_million": 191.69, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 3121.0, + "total_tests": 424697.0, + "total_tests_per_thousand": 49.072, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 3723.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 241.30599999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-07", + "total_cases": 30873.0, + "new_cases": 20.0, + "new_cases_smoothed": 15.857, + "total_deaths": 1660.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3567.229, + "new_cases_per_million": 2.311, + "new_cases_smoothed_per_million": 1.832, + "total_deaths_per_million": 191.805, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 1542.0, + "total_tests": 426239.0, + "total_tests_per_thousand": 49.25, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 3719.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 234.532, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 50.0 + }, + { + "date": "2020-06-08", + "total_cases": 30882.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.714, + "total_deaths": 1660.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3568.268, + "new_cases_per_million": 1.04, + "new_cases_smoothed_per_million": 1.7, + "total_deaths_per_million": 191.805, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 4713.0, + "total_tests": 430952.0, + "total_tests_per_thousand": 49.794, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 4138.0, + "new_tests_smoothed_per_thousand": 0.478, + "tests_per_case": 281.223, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-09", + "total_cases": 30889.0, + "new_cases": 7.0, + "new_cases_smoothed": 14.429, + "total_deaths": 1660.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3569.077, + "new_cases_per_million": 0.809, + "new_cases_smoothed_per_million": 1.667, + "total_deaths_per_million": 191.805, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6493.0, + "total_tests": 437445.0, + "total_tests_per_thousand": 50.545, + "new_tests_per_thousand": 0.75, + "new_tests_smoothed": 4454.0, + "new_tests_smoothed_per_thousand": 0.515, + "tests_per_case": 308.693, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-10", + "total_cases": 30905.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.286, + "total_deaths": 1662.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3570.926, + "new_cases_per_million": 1.849, + "new_cases_smoothed_per_million": 1.882, + "total_deaths_per_million": 192.036, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 6600.0, + "total_tests": 444045.0, + "total_tests_per_thousand": 51.307, + "new_tests_per_thousand": 0.763, + "new_tests_smoothed": 4644.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 285.158, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-11", + "total_cases": 30928.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.857, + "total_deaths": 1674.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3573.583, + "new_cases_per_million": 2.658, + "new_cases_smoothed_per_million": 1.948, + "total_deaths_per_million": 193.423, + "new_deaths_per_million": 1.387, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 5610.0, + "total_tests": 449655.0, + "total_tests_per_thousand": 51.955, + "new_tests_per_thousand": 0.648, + "new_tests_smoothed": 4700.0, + "new_tests_smoothed_per_thousand": 0.543, + "tests_per_case": 278.814, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-12", + "total_cases": 30961.0, + "new_cases": 33.0, + "new_cases_smoothed": 18.714, + "total_deaths": 1674.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3577.396, + "new_cases_per_million": 3.813, + "new_cases_smoothed_per_million": 2.162, + "total_deaths_per_million": 193.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 6456.0, + "total_tests": 456111.0, + "total_tests_per_thousand": 52.701, + "new_tests_per_thousand": 0.746, + "new_tests_smoothed": 4934.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 263.649, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-13", + "total_cases": 30980.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.143, + "total_deaths": 1676.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 3579.592, + "new_cases_per_million": 2.195, + "new_cases_smoothed_per_million": 2.096, + "total_deaths_per_million": 193.654, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.281, + "new_tests": 4358.0, + "total_tests": 460469.0, + "total_tests_per_thousand": 53.205, + "new_tests_per_thousand": 0.504, + "new_tests_smoothed": 5110.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 281.654, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-14", + "total_cases": 31011.0, + "new_cases": 31.0, + "new_cases_smoothed": 19.714, + "total_deaths": 1676.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3583.174, + "new_cases_per_million": 3.582, + "new_cases_smoothed_per_million": 2.278, + "total_deaths_per_million": 193.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 1795.0, + "total_tests": 462264.0, + "total_tests_per_thousand": 53.412, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 5146.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 261.029, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-15", + "total_cases": 31034.0, + "new_cases": 23.0, + "new_cases_smoothed": 21.714, + "total_deaths": 1676.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3585.831, + "new_cases_per_million": 2.658, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 193.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 6506.0, + "total_tests": 468770.0, + "total_tests_per_thousand": 54.164, + "new_tests_per_thousand": 0.752, + "new_tests_smoothed": 5403.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 248.822, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-16", + "total_cases": 31048.0, + "new_cases": 14.0, + "new_cases_smoothed": 22.714, + "total_deaths": 1676.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3587.449, + "new_cases_per_million": 1.618, + "new_cases_smoothed_per_million": 2.625, + "total_deaths_per_million": 193.654, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.264, + "new_tests": 10045.0, + "total_tests": 478815.0, + "total_tests_per_thousand": 55.325, + "new_tests_per_thousand": 1.161, + "new_tests_smoothed": 5910.0, + "new_tests_smoothed_per_thousand": 0.683, + "tests_per_case": 260.189, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-17", + "total_cases": 31063.0, + "new_cases": 15.0, + "new_cases_smoothed": 22.571, + "total_deaths": 1677.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3589.182, + "new_cases_per_million": 1.733, + "new_cases_smoothed_per_million": 2.608, + "total_deaths_per_million": 193.769, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 9617.0, + "total_tests": 488432.0, + "total_tests_per_thousand": 56.436, + "new_tests_per_thousand": 1.111, + "new_tests_smoothed": 6341.0, + "new_tests_smoothed_per_thousand": 0.733, + "tests_per_case": 280.93, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-18", + "total_cases": 31100.0, + "new_cases": 37.0, + "new_cases_smoothed": 24.571, + "total_deaths": 1677.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3593.457, + "new_cases_per_million": 4.275, + "new_cases_smoothed_per_million": 2.839, + "total_deaths_per_million": 193.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 8433.0, + "total_tests": 496865.0, + "total_tests_per_thousand": 57.41, + "new_tests_per_thousand": 0.974, + "new_tests_smoothed": 6744.0, + "new_tests_smoothed_per_thousand": 0.779, + "tests_per_case": 274.465, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-19", + "total_cases": 31117.0, + "new_cases": 17.0, + "new_cases_smoothed": 22.286, + "total_deaths": 1677.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3595.422, + "new_cases_per_million": 1.964, + "new_cases_smoothed_per_million": 2.575, + "total_deaths_per_million": 193.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 7586.0, + "total_tests": 504451.0, + "total_tests_per_thousand": 58.287, + "new_tests_per_thousand": 0.877, + "new_tests_smoothed": 6906.0, + "new_tests_smoothed_per_thousand": 0.798, + "tests_per_case": 309.885, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-20", + "total_cases": 31209.0, + "new_cases": 92.0, + "new_cases_smoothed": 32.714, + "total_deaths": 1677.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3606.052, + "new_cases_per_million": 10.63, + "new_cases_smoothed_per_million": 3.78, + "total_deaths_per_million": 193.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 4698.0, + "total_tests": 509149.0, + "total_tests_per_thousand": 58.83, + "new_tests_per_thousand": 0.543, + "new_tests_smoothed": 6954.0, + "new_tests_smoothed_per_thousand": 0.804, + "tests_per_case": 212.56799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-21", + "total_cases": 31209.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.286, + "total_deaths": 1677.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3606.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.268, + "total_deaths_per_million": 193.769, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 1779.0, + "total_tests": 510928.0, + "total_tests_per_thousand": 59.035, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 6952.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 245.778, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-06-22", + "total_cases": 31209.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.0, + "total_deaths": 1679.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3606.052, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.889, + "total_deaths_per_million": 194.0, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 8204.0, + "total_tests": 519132.0, + "total_tests_per_thousand": 59.983, + "new_tests_per_thousand": 0.948, + "new_tests_smoothed": 7195.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 287.8, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-23", + "total_cases": 31227.0, + "new_cases": 18.0, + "new_cases_smoothed": 25.571, + "total_deaths": 1679.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3608.132, + "new_cases_per_million": 2.08, + "new_cases_smoothed_per_million": 2.955, + "total_deaths_per_million": 194.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 11674.0, + "total_tests": 530806.0, + "total_tests_per_thousand": 61.332, + "new_tests_per_thousand": 1.349, + "new_tests_smoothed": 7427.0, + "new_tests_smoothed_per_thousand": 0.858, + "tests_per_case": 290.441, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-24", + "total_cases": 31249.0, + "new_cases": 22.0, + "new_cases_smoothed": 26.571, + "total_deaths": 1679.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3610.674, + "new_cases_per_million": 2.542, + "new_cases_smoothed_per_million": 3.07, + "total_deaths_per_million": 194.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 9151.0, + "total_tests": 539957.0, + "total_tests_per_thousand": 62.389, + "new_tests_per_thousand": 1.057, + "new_tests_smoothed": 7361.0, + "new_tests_smoothed_per_thousand": 0.851, + "tests_per_case": 277.027, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-25", + "total_cases": 31293.0, + "new_cases": 44.0, + "new_cases_smoothed": 27.571, + "total_deaths": 1681.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3615.758, + "new_cases_per_million": 5.084, + "new_cases_smoothed_per_million": 3.186, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9263.0, + "total_tests": 549220.0, + "total_tests_per_thousand": 63.46, + "new_tests_per_thousand": 1.07, + "new_tests_smoothed": 7479.0, + "new_tests_smoothed_per_thousand": 0.864, + "tests_per_case": 271.259, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-26", + "total_cases": 31345.0, + "new_cases": 52.0, + "new_cases_smoothed": 32.571, + "total_deaths": 1681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3621.766, + "new_cases_per_million": 6.008, + "new_cases_smoothed_per_million": 3.763, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 10195.0, + "total_tests": 559415.0, + "total_tests_per_thousand": 64.638, + "new_tests_per_thousand": 1.178, + "new_tests_smoothed": 7852.0, + "new_tests_smoothed_per_thousand": 0.907, + "tests_per_case": 241.07, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-27", + "total_cases": 31403.0, + "new_cases": 58.0, + "new_cases_smoothed": 27.714, + "total_deaths": 1681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3628.467, + "new_cases_per_million": 6.702, + "new_cases_smoothed_per_million": 3.202, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6447.0, + "total_tests": 565862.0, + "total_tests_per_thousand": 65.383, + "new_tests_per_thousand": 0.745, + "new_tests_smoothed": 8102.0, + "new_tests_smoothed_per_thousand": 0.936, + "tests_per_case": 292.34, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-28", + "total_cases": 31472.0, + "new_cases": 69.0, + "new_cases_smoothed": 37.571, + "total_deaths": 1681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3636.44, + "new_cases_per_million": 7.973, + "new_cases_smoothed_per_million": 4.341, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 2536.0, + "total_tests": 568398.0, + "total_tests_per_thousand": 65.676, + "new_tests_per_thousand": 0.293, + "new_tests_smoothed": 8210.0, + "new_tests_smoothed_per_thousand": 0.949, + "tests_per_case": 218.517, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-29", + "total_cases": 31534.0, + "new_cases": 62.0, + "new_cases_smoothed": 46.429, + "total_deaths": 1681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3643.604, + "new_cases_per_million": 7.164, + "new_cases_smoothed_per_million": 5.365, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 14089.0, + "total_tests": 582487.0, + "total_tests_per_thousand": 67.304, + "new_tests_per_thousand": 1.628, + "new_tests_smoothed": 9051.0, + "new_tests_smoothed_per_thousand": 1.046, + "tests_per_case": 194.945, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-06-30", + "total_cases": 31569.0, + "new_cases": 35.0, + "new_cases_smoothed": 48.857, + "total_deaths": 1681.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3647.648, + "new_cases_per_million": 4.044, + "new_cases_smoothed_per_million": 5.645, + "total_deaths_per_million": 194.232, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 15035.0, + "total_tests": 597522.0, + "total_tests_per_thousand": 69.041, + "new_tests_per_thousand": 1.737, + "new_tests_smoothed": 9531.0, + "new_tests_smoothed_per_thousand": 1.101, + "tests_per_case": 195.079, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-07-01", + "total_cases": 31631.0, + "new_cases": 62.0, + "new_cases_smoothed": 54.571, + "total_deaths": 1683.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3654.812, + "new_cases_per_million": 7.164, + "new_cases_smoothed_per_million": 6.305, + "total_deaths_per_million": 194.463, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 11243.0, + "total_tests": 608765.0, + "total_tests_per_thousand": 70.34, + "new_tests_per_thousand": 1.299, + "new_tests_smoothed": 9830.0, + "new_tests_smoothed_per_thousand": 1.136, + "tests_per_case": 180.13099999999997, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-07-02", + "total_cases": 31851.0, + "new_cases": 220.0, + "new_cases_smoothed": 79.714, + "total_deaths": 1684.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3680.232, + "new_cases_per_million": 25.42, + "new_cases_smoothed_per_million": 9.211, + "total_deaths_per_million": 194.578, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 10892.0, + "total_tests": 619657.0, + "total_tests_per_thousand": 71.598, + "new_tests_per_thousand": 1.259, + "new_tests_smoothed": 10062.0, + "new_tests_smoothed_per_thousand": 1.163, + "tests_per_case": 126.226, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 37.04 + }, + { + "date": "2020-07-03", + "total_cases": 31884.0, + "new_cases": 33.0, + "new_cases_smoothed": 77.0, + "total_deaths": 1685.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3684.045, + "new_cases_per_million": 3.813, + "new_cases_smoothed_per_million": 8.897, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 10380.0, + "total_tests": 630037.0, + "total_tests_per_thousand": 72.798, + "new_tests_per_thousand": 1.199, + "new_tests_smoothed": 10089.0, + "new_tests_smoothed_per_thousand": 1.166, + "tests_per_case": 131.026, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-04", + "total_cases": 32017.0, + "new_cases": 133.0, + "new_cases_smoothed": 87.714, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3699.412, + "new_cases_per_million": 15.368, + "new_cases_smoothed_per_million": 10.135, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6216.0, + "total_tests": 636253.0, + "total_tests_per_thousand": 73.516, + "new_tests_per_thousand": 0.718, + "new_tests_smoothed": 10056.0, + "new_tests_smoothed_per_thousand": 1.162, + "tests_per_case": 114.645, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-05", + "total_cases": 32114.0, + "new_cases": 97.0, + "new_cases_smoothed": 91.714, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3710.62, + "new_cases_per_million": 11.208, + "new_cases_smoothed_per_million": 10.597, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 2521.0, + "total_tests": 638774.0, + "total_tests_per_thousand": 73.807, + "new_tests_per_thousand": 0.291, + "new_tests_smoothed": 10054.0, + "new_tests_smoothed_per_thousand": 1.162, + "tests_per_case": 109.62299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-06", + "total_cases": 32184.0, + "new_cases": 70.0, + "new_cases_smoothed": 92.857, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3718.708, + "new_cases_per_million": 8.088, + "new_cases_smoothed_per_million": 10.729, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 7826.0, + "total_tests": 646600.0, + "total_tests_per_thousand": 74.712, + "new_tests_per_thousand": 0.904, + "new_tests_smoothed": 9159.0, + "new_tests_smoothed_per_thousand": 1.058, + "tests_per_case": 98.635, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-07", + "total_cases": 32230.0, + "new_cases": 46.0, + "new_cases_smoothed": 94.429, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 3724.023, + "new_cases_per_million": 5.315, + "new_cases_smoothed_per_million": 10.911, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9998.0, + "total_tests": 656598.0, + "total_tests_per_thousand": 75.867, + "new_tests_per_thousand": 1.155, + "new_tests_smoothed": 8439.0, + "new_tests_smoothed_per_thousand": 0.975, + "tests_per_case": 89.369, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-08", + "total_cases": 32284.0, + "new_cases": 54.0, + "new_cases_smoothed": 93.286, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3730.263, + "new_cases_per_million": 6.239, + "new_cases_smoothed_per_million": 10.779, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 8869.0, + "total_tests": 665467.0, + "total_tests_per_thousand": 76.892, + "new_tests_per_thousand": 1.025, + "new_tests_smoothed": 8100.0, + "new_tests_smoothed_per_thousand": 0.936, + "tests_per_case": 86.83, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-09", + "total_cases": 32413.0, + "new_cases": 129.0, + "new_cases_smoothed": 80.286, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3745.168, + "new_cases_per_million": 14.905, + "new_cases_smoothed_per_million": 9.277, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 8533.0, + "total_tests": 674000.0, + "total_tests_per_thousand": 77.877, + "new_tests_per_thousand": 0.986, + "new_tests_smoothed": 7763.0, + "new_tests_smoothed_per_thousand": 0.897, + "tests_per_case": 96.69200000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-10", + "total_cases": 32501.0, + "new_cases": 88.0, + "new_cases_smoothed": 88.143, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3755.336, + "new_cases_per_million": 10.168, + "new_cases_smoothed_per_million": 10.184, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7698.0, + "total_tests": 681698.0, + "total_tests_per_thousand": 78.767, + "new_tests_per_thousand": 0.889, + "new_tests_smoothed": 7380.0, + "new_tests_smoothed_per_thousand": 0.853, + "tests_per_case": 83.728, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-11", + "total_cases": 32605.0, + "new_cases": 104.0, + "new_cases_smoothed": 84.0, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3767.353, + "new_cases_per_million": 12.017, + "new_cases_smoothed_per_million": 9.706, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4745.0, + "total_tests": 686443.0, + "total_tests_per_thousand": 79.315, + "new_tests_per_thousand": 0.548, + "new_tests_smoothed": 7170.0, + "new_tests_smoothed_per_thousand": 0.828, + "tests_per_case": 85.35700000000001, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-12", + "total_cases": 32713.0, + "new_cases": 108.0, + "new_cases_smoothed": 85.571, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3779.832, + "new_cases_per_million": 12.479, + "new_cases_smoothed_per_million": 9.887, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1946.0, + "total_tests": 688389.0, + "total_tests_per_thousand": 79.54, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 7088.0, + "new_tests_smoothed_per_thousand": 0.819, + "tests_per_case": 82.831, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-13", + "total_cases": 32798.0, + "new_cases": 85.0, + "new_cases_smoothed": 87.714, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3789.653, + "new_cases_per_million": 9.821, + "new_cases_smoothed_per_million": 10.135, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6846.0, + "total_tests": 695235.0, + "total_tests_per_thousand": 80.331, + "new_tests_per_thousand": 0.791, + "new_tests_smoothed": 6948.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 79.212, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-14", + "total_cases": 32861.0, + "new_cases": 63.0, + "new_cases_smoothed": 90.143, + "total_deaths": 1685.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3796.932, + "new_cases_per_million": 7.279, + "new_cases_smoothed_per_million": 10.416, + "total_deaths_per_million": 194.694, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8812.0, + "total_tests": 704047.0, + "total_tests_per_thousand": 81.349, + "new_tests_per_thousand": 1.018, + "new_tests_smoothed": 6778.0, + "new_tests_smoothed_per_thousand": 0.783, + "tests_per_case": 75.192, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-15", + "total_cases": 32931.0, + "new_cases": 70.0, + "new_cases_smoothed": 92.429, + "total_deaths": 1687.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3805.021, + "new_cases_per_million": 8.088, + "new_cases_smoothed_per_million": 10.68, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 7751.0, + "total_tests": 711798.0, + "total_tests_per_thousand": 82.245, + "new_tests_per_thousand": 0.896, + "new_tests_smoothed": 6619.0, + "new_tests_smoothed_per_thousand": 0.765, + "tests_per_case": 71.612, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-16", + "total_cases": 33063.0, + "new_cases": 132.0, + "new_cases_smoothed": 92.857, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3820.273, + "new_cases_per_million": 15.252, + "new_cases_smoothed_per_million": 10.729, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 7285.0, + "total_tests": 719083.0, + "total_tests_per_thousand": 83.087, + "new_tests_per_thousand": 0.842, + "new_tests_smoothed": 6440.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 69.354, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-17", + "total_cases": 33205.0, + "new_cases": 142.0, + "new_cases_smoothed": 100.571, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3836.68, + "new_cases_per_million": 16.407, + "new_cases_smoothed_per_million": 11.621, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 6723.0, + "total_tests": 725806.0, + "total_tests_per_thousand": 83.863, + "new_tests_per_thousand": 0.777, + "new_tests_smoothed": 6301.0, + "new_tests_smoothed_per_thousand": 0.728, + "tests_per_case": 62.652, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-18", + "total_cases": 33296.0, + "new_cases": 91.0, + "new_cases_smoothed": 98.714, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3847.195, + "new_cases_per_million": 10.515, + "new_cases_smoothed_per_million": 11.406, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 3769.0, + "total_tests": 729575.0, + "total_tests_per_thousand": 84.299, + "new_tests_per_thousand": 0.435, + "new_tests_smoothed": 6162.0, + "new_tests_smoothed_per_thousand": 0.712, + "tests_per_case": 62.423, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-19", + "total_cases": 33406.0, + "new_cases": 110.0, + "new_cases_smoothed": 99.0, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3859.905, + "new_cases_per_million": 12.71, + "new_cases_smoothed_per_million": 11.439, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1776.0, + "total_tests": 731351.0, + "total_tests_per_thousand": 84.504, + "new_tests_per_thousand": 0.205, + "new_tests_smoothed": 6137.0, + "new_tests_smoothed_per_thousand": 0.709, + "tests_per_case": 61.99, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-20", + "total_cases": 33504.0, + "new_cases": 98.0, + "new_cases_smoothed": 100.857, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3871.228, + "new_cases_per_million": 11.323, + "new_cases_smoothed_per_million": 11.654, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 5686.0, + "total_tests": 737037.0, + "total_tests_per_thousand": 85.161, + "new_tests_per_thousand": 0.657, + "new_tests_smoothed": 5972.0, + "new_tests_smoothed_per_thousand": 0.69, + "tests_per_case": 59.211999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-21", + "total_cases": 33547.0, + "new_cases": 43.0, + "new_cases_smoothed": 98.0, + "total_deaths": 1687.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 3876.196, + "new_cases_per_million": 4.968, + "new_cases_smoothed_per_million": 11.323, + "total_deaths_per_million": 194.925, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 6831.0, + "total_tests": 743868.0, + "total_tests_per_thousand": 85.95, + "new_tests_per_thousand": 0.789, + "new_tests_smoothed": 5689.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 58.051, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-22", + "total_cases": 33655.0, + "new_cases": 108.0, + "new_cases_smoothed": 103.429, + "total_deaths": 1690.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3888.675, + "new_cases_per_million": 12.479, + "new_cases_smoothed_per_million": 11.951, + "total_deaths_per_million": 195.271, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 6723.0, + "total_tests": 750591.0, + "total_tests_per_thousand": 86.727, + "new_tests_per_thousand": 0.777, + "new_tests_smoothed": 5542.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 53.583, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-23", + "total_cases": 33796.0, + "new_cases": 141.0, + "new_cases_smoothed": 104.714, + "total_deaths": 1692.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 3904.967, + "new_cases_per_million": 16.292, + "new_cases_smoothed_per_million": 12.099, + "total_deaths_per_million": 195.503, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 5514.0, + "total_tests": 756105.0, + "total_tests_per_thousand": 87.364, + "new_tests_per_thousand": 0.637, + "new_tests_smoothed": 5289.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 50.50899999999999, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-24", + "total_cases": 33913.0, + "new_cases": 117.0, + "new_cases_smoothed": 101.143, + "total_deaths": 1693.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 3918.486, + "new_cases_per_million": 13.519, + "new_cases_smoothed_per_million": 11.687, + "total_deaths_per_million": 195.618, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 5544.0, + "total_tests": 761649.0, + "total_tests_per_thousand": 88.005, + "new_tests_per_thousand": 0.641, + "new_tests_smoothed": 5120.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 50.621, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-25", + "total_cases": 34067.0, + "new_cases": 154.0, + "new_cases_smoothed": 110.143, + "total_deaths": 1699.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3936.28, + "new_cases_per_million": 17.794, + "new_cases_smoothed_per_million": 12.726, + "total_deaths_per_million": 196.311, + "new_deaths_per_million": 0.693, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 3631.0, + "total_tests": 765280.0, + "total_tests_per_thousand": 88.424, + "new_tests_per_thousand": 0.42, + "new_tests_smoothed": 5101.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 46.313, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-26", + "total_cases": 34215.0, + "new_cases": 148.0, + "new_cases_smoothed": 115.571, + "total_deaths": 1699.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3953.381, + "new_cases_per_million": 17.101, + "new_cases_smoothed_per_million": 13.354, + "total_deaths_per_million": 196.311, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 1788.0, + "total_tests": 767068.0, + "total_tests_per_thousand": 88.631, + "new_tests_per_thousand": 0.207, + "new_tests_smoothed": 5102.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 44.146, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-27", + "total_cases": 34325.0, + "new_cases": 110.0, + "new_cases_smoothed": 117.286, + "total_deaths": 1700.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3966.091, + "new_cases_per_million": 12.71, + "new_cases_smoothed_per_million": 13.552, + "total_deaths_per_million": 196.427, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 5536.0, + "total_tests": 772604.0, + "total_tests_per_thousand": 89.271, + "new_tests_per_thousand": 0.64, + "new_tests_smoothed": 5081.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 43.321999999999996, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-28", + "total_cases": 34390.0, + "new_cases": 65.0, + "new_cases_smoothed": 120.429, + "total_deaths": 1700.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3973.601, + "new_cases_per_million": 7.51, + "new_cases_smoothed_per_million": 13.915, + "total_deaths_per_million": 196.427, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 7340.0, + "total_tests": 779944.0, + "total_tests_per_thousand": 90.119, + "new_tests_per_thousand": 0.848, + "new_tests_smoothed": 5154.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 42.797, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-29", + "total_cases": 34522.0, + "new_cases": 132.0, + "new_cases_smoothed": 123.857, + "total_deaths": 1702.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3988.853, + "new_cases_per_million": 15.252, + "new_cases_smoothed_per_million": 14.311, + "total_deaths_per_million": 196.658, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 6853.0, + "total_tests": 786797.0, + "total_tests_per_thousand": 90.911, + "new_tests_per_thousand": 0.792, + "new_tests_smoothed": 5172.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 41.758, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-30", + "total_cases": 34714.0, + "new_cases": 192.0, + "new_cases_smoothed": 131.143, + "total_deaths": 1702.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4011.038, + "new_cases_per_million": 22.185, + "new_cases_smoothed_per_million": 15.153, + "total_deaths_per_million": 196.658, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 7089.0, + "total_tests": 793886.0, + "total_tests_per_thousand": 91.73, + "new_tests_per_thousand": 0.819, + "new_tests_smoothed": 5397.0, + "new_tests_smoothed_per_thousand": 0.624, + "tests_per_case": 41.153999999999996, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-07-31", + "total_cases": 34933.0, + "new_cases": 219.0, + "new_cases_smoothed": 145.714, + "total_deaths": 1703.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4036.342, + "new_cases_per_million": 25.304, + "new_cases_smoothed_per_million": 16.837, + "total_deaths_per_million": 196.774, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 5711.0, + "total_tests": 799597.0, + "total_tests_per_thousand": 92.39, + "new_tests_per_thousand": 0.66, + "new_tests_smoothed": 5421.0, + "new_tests_smoothed_per_thousand": 0.626, + "tests_per_case": 37.203, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-01", + "total_cases": 35070.0, + "new_cases": 137.0, + "new_cases_smoothed": 143.286, + "total_deaths": 1703.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4052.172, + "new_cases_per_million": 15.83, + "new_cases_smoothed_per_million": 16.556, + "total_deaths_per_million": 196.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 3054.0, + "total_tests": 802651.0, + "total_tests_per_thousand": 92.743, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 5339.0, + "new_tests_smoothed_per_thousand": 0.617, + "tests_per_case": 37.260999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-02", + "total_cases": 35412.0, + "new_cases": 342.0, + "new_cases_smoothed": 171.0, + "total_deaths": 1705.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4091.688, + "new_cases_per_million": 39.516, + "new_cases_smoothed_per_million": 19.758, + "total_deaths_per_million": 197.005, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2132.0, + "total_tests": 804783.0, + "total_tests_per_thousand": 92.989, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 5388.0, + "new_tests_smoothed_per_thousand": 0.623, + "tests_per_case": 31.509, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-03", + "total_cases": 35461.0, + "new_cases": 49.0, + "new_cases_smoothed": 162.286, + "total_deaths": 1705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4097.35, + "new_cases_per_million": 5.662, + "new_cases_smoothed_per_million": 18.751, + "total_deaths_per_million": 197.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 6237.0, + "total_tests": 811020.0, + "total_tests_per_thousand": 93.71, + "new_tests_per_thousand": 0.721, + "new_tests_smoothed": 5488.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 33.817, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-04", + "total_cases": 35527.0, + "new_cases": 66.0, + "new_cases_smoothed": 162.429, + "total_deaths": 1705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4104.976, + "new_cases_per_million": 7.626, + "new_cases_smoothed_per_million": 18.768, + "total_deaths_per_million": 197.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 7325.0, + "total_tests": 818345.0, + "total_tests_per_thousand": 94.556, + "new_tests_per_thousand": 0.846, + "new_tests_smoothed": 5486.0, + "new_tests_smoothed_per_thousand": 0.634, + "tests_per_case": 33.775, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-05", + "total_cases": 35657.0, + "new_cases": 130.0, + "new_cases_smoothed": 162.143, + "total_deaths": 1705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4119.997, + "new_cases_per_million": 15.021, + "new_cases_smoothed_per_million": 18.735, + "total_deaths_per_million": 197.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 6795.0, + "total_tests": 825140.0, + "total_tests_per_thousand": 95.341, + "new_tests_per_thousand": 0.785, + "new_tests_smoothed": 5478.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 33.785, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-06", + "total_cases": 35838.0, + "new_cases": 181.0, + "new_cases_smoothed": 160.571, + "total_deaths": 1705.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4140.911, + "new_cases_per_million": 20.914, + "new_cases_smoothed_per_million": 18.553, + "total_deaths_per_million": 197.005, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 6622.0, + "total_tests": 831762.0, + "total_tests_per_thousand": 96.106, + "new_tests_per_thousand": 0.765, + "new_tests_smoothed": 5411.0, + "new_tests_smoothed_per_thousand": 0.625, + "tests_per_case": 33.698, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-07", + "total_cases": 36019.0, + "new_cases": 181.0, + "new_cases_smoothed": 155.143, + "total_deaths": 1708.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4161.824, + "new_cases_per_million": 20.914, + "new_cases_smoothed_per_million": 17.926, + "total_deaths_per_million": 197.351, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 6170.0, + "total_tests": 837932.0, + "total_tests_per_thousand": 96.819, + "new_tests_per_thousand": 0.713, + "new_tests_smoothed": 5476.0, + "new_tests_smoothed_per_thousand": 0.633, + "tests_per_case": 35.297, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-08", + "total_cases": 36180.0, + "new_cases": 161.0, + "new_cases_smoothed": 158.571, + "total_deaths": 1711.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4180.427, + "new_cases_per_million": 18.603, + "new_cases_smoothed_per_million": 18.322, + "total_deaths_per_million": 197.698, + "new_deaths_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 3728.0, + "total_tests": 841660.0, + "total_tests_per_thousand": 97.25, + "new_tests_per_thousand": 0.431, + "new_tests_smoothed": 5573.0, + "new_tests_smoothed_per_thousand": 0.644, + "tests_per_case": 35.145, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-09", + "total_cases": 36362.0, + "new_cases": 182.0, + "new_cases_smoothed": 135.714, + "total_deaths": 1711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4201.456, + "new_cases_per_million": 21.029, + "new_cases_smoothed_per_million": 15.681, + "total_deaths_per_million": 197.698, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 2036.0, + "total_tests": 843696.0, + "total_tests_per_thousand": 97.485, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 5559.0, + "new_tests_smoothed_per_thousand": 0.642, + "tests_per_case": 40.961000000000006, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-10", + "total_cases": 36514.0, + "new_cases": 152.0, + "new_cases_smoothed": 150.429, + "total_deaths": 1711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4219.019, + "new_cases_per_million": 17.563, + "new_cases_smoothed_per_million": 17.381, + "total_deaths_per_million": 197.698, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 6060.0, + "total_tests": 849756.0, + "total_tests_per_thousand": 98.185, + "new_tests_per_thousand": 0.7, + "new_tests_smoothed": 5534.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 36.788000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-11", + "total_cases": 36619.0, + "new_cases": 105.0, + "new_cases_smoothed": 156.0, + "total_deaths": 1711.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4231.152, + "new_cases_per_million": 12.132, + "new_cases_smoothed_per_million": 18.025, + "total_deaths_per_million": 197.698, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 7375.0, + "total_tests": 857131.0, + "total_tests_per_thousand": 99.037, + "new_tests_per_thousand": 0.852, + "new_tests_smoothed": 5541.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 35.519, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-12", + "total_cases": 36806.0, + "new_cases": 187.0, + "new_cases_smoothed": 164.143, + "total_deaths": 1712.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4252.758, + "new_cases_per_million": 21.607, + "new_cases_smoothed_per_million": 18.966, + "total_deaths_per_million": 197.813, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 6690.0, + "total_tests": 863821.0, + "total_tests_per_thousand": 99.81, + "new_tests_per_thousand": 0.773, + "new_tests_smoothed": 5526.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 33.666, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-13", + "total_cases": 37079.0, + "new_cases": 273.0, + "new_cases_smoothed": 177.286, + "total_deaths": 1713.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 4284.302, + "new_cases_per_million": 31.544, + "new_cases_smoothed_per_million": 20.485, + "total_deaths_per_million": 197.929, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.132, + "new_tests": 7361.0, + "total_tests": 871182.0, + "total_tests_per_thousand": 100.661, + "new_tests_per_thousand": 0.851, + "new_tests_smoothed": 5631.0, + "new_tests_smoothed_per_thousand": 0.651, + "tests_per_case": 31.761999999999997, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-14", + "total_cases": 37312.0, + "new_cases": 233.0, + "new_cases_smoothed": 184.714, + "total_deaths": 1714.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4311.224, + "new_cases_per_million": 26.922, + "new_cases_smoothed_per_million": 21.343, + "total_deaths_per_million": 198.045, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 7346.0, + "total_tests": 878528.0, + "total_tests_per_thousand": 101.51, + "new_tests_per_thousand": 0.849, + "new_tests_smoothed": 5799.0, + "new_tests_smoothed_per_thousand": 0.67, + "tests_per_case": 31.394000000000002, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-15", + "total_cases": 37580.0, + "new_cases": 268.0, + "new_cases_smoothed": 200.0, + "total_deaths": 1714.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4342.19, + "new_cases_per_million": 30.966, + "new_cases_smoothed_per_million": 23.109, + "total_deaths_per_million": 198.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 4858.0, + "total_tests": 883386.0, + "total_tests_per_thousand": 102.071, + "new_tests_per_thousand": 0.561, + "new_tests_smoothed": 5961.0, + "new_tests_smoothed_per_thousand": 0.689, + "tests_per_case": 29.805, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-16", + "total_cases": 37831.0, + "new_cases": 251.0, + "new_cases_smoothed": 209.857, + "total_deaths": 1714.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4371.192, + "new_cases_per_million": 29.002, + "new_cases_smoothed_per_million": 24.248, + "total_deaths_per_million": 198.045, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.05, + "new_tests": 2438.0, + "total_tests": 885824.0, + "total_tests_per_thousand": 102.353, + "new_tests_per_thousand": 0.282, + "new_tests_smoothed": 6018.0, + "new_tests_smoothed_per_thousand": 0.695, + "tests_per_case": 28.677, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-17", + "total_cases": 38031.0, + "new_cases": 200.0, + "new_cases_smoothed": 216.714, + "total_deaths": 1715.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4394.301, + "new_cases_per_million": 23.109, + "new_cases_smoothed_per_million": 25.04, + "total_deaths_per_million": 198.16, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 8246.0, + "total_tests": 894070.0, + "total_tests_per_thousand": 103.306, + "new_tests_per_thousand": 0.953, + "new_tests_smoothed": 6331.0, + "new_tests_smoothed_per_thousand": 0.732, + "tests_per_case": 29.214000000000002, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-18", + "total_cases": 38156.0, + "new_cases": 125.0, + "new_cases_smoothed": 219.571, + "total_deaths": 1715.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4408.745, + "new_cases_per_million": 14.443, + "new_cases_smoothed_per_million": 25.37, + "total_deaths_per_million": 198.16, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 10572.0, + "total_tests": 904642.0, + "total_tests_per_thousand": 104.527, + "new_tests_per_thousand": 1.222, + "new_tests_smoothed": 6787.0, + "new_tests_smoothed_per_thousand": 0.784, + "tests_per_case": 30.91, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-19", + "total_cases": 38352.0, + "new_cases": 196.0, + "new_cases_smoothed": 220.857, + "total_deaths": 1716.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4431.391, + "new_cases_per_million": 22.647, + "new_cases_smoothed_per_million": 25.519, + "total_deaths_per_million": 198.276, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9435.0, + "total_tests": 914077.0, + "total_tests_per_thousand": 105.617, + "new_tests_per_thousand": 1.09, + "new_tests_smoothed": 7179.0, + "new_tests_smoothed_per_thousand": 0.829, + "tests_per_case": 32.505, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-20", + "total_cases": 38662.0, + "new_cases": 310.0, + "new_cases_smoothed": 226.143, + "total_deaths": 1718.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4467.21, + "new_cases_per_million": 35.819, + "new_cases_smoothed_per_million": 26.13, + "total_deaths_per_million": 198.507, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 10113.0, + "total_tests": 924190.0, + "total_tests_per_thousand": 106.786, + "new_tests_per_thousand": 1.169, + "new_tests_smoothed": 7573.0, + "new_tests_smoothed_per_thousand": 0.875, + "tests_per_case": 33.488, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-21", + "total_cases": 38926.0, + "new_cases": 264.0, + "new_cases_smoothed": 230.571, + "total_deaths": 1718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4497.714, + "new_cases_per_million": 30.504, + "new_cases_smoothed_per_million": 26.641, + "total_deaths_per_million": 198.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9922.0, + "total_tests": 934112.0, + "total_tests_per_thousand": 107.932, + "new_tests_per_thousand": 1.146, + "new_tests_smoothed": 7941.0, + "new_tests_smoothed_per_thousand": 0.918, + "tests_per_case": 34.441, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-22", + "total_cases": 39232.0, + "new_cases": 306.0, + "new_cases_smoothed": 236.0, + "total_deaths": 1718.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4533.071, + "new_cases_per_million": 35.357, + "new_cases_smoothed_per_million": 27.269, + "total_deaths_per_million": 198.507, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 6106.0, + "total_tests": 940218.0, + "total_tests_per_thousand": 108.638, + "new_tests_per_thousand": 0.706, + "new_tests_smoothed": 8119.0, + "new_tests_smoothed_per_thousand": 0.938, + "tests_per_case": 34.403, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-23", + "total_cases": 39526.0, + "new_cases": 294.0, + "new_cases_smoothed": 242.143, + "total_deaths": 1719.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4567.042, + "new_cases_per_million": 33.97, + "new_cases_smoothed_per_million": 27.978, + "total_deaths_per_million": 198.622, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 3288.0, + "total_tests": 943506.0, + "total_tests_per_thousand": 109.018, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 8240.0, + "new_tests_smoothed_per_thousand": 0.952, + "tests_per_case": 34.029, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-24", + "total_cases": 39802.0, + "new_cases": 276.0, + "new_cases_smoothed": 253.0, + "total_deaths": 1719.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4598.932, + "new_cases_per_million": 31.89, + "new_cases_smoothed_per_million": 29.233, + "total_deaths_per_million": 198.622, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 9939.0, + "total_tests": 953445.0, + "total_tests_per_thousand": 110.166, + "new_tests_per_thousand": 1.148, + "new_tests_smoothed": 8482.0, + "new_tests_smoothed_per_thousand": 0.98, + "tests_per_case": 33.525999999999996, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-25", + "total_cases": 39959.0, + "new_cases": 157.0, + "new_cases_smoothed": 257.571, + "total_deaths": 1720.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4617.073, + "new_cases_per_million": 18.141, + "new_cases_smoothed_per_million": 29.761, + "total_deaths_per_million": 198.738, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 13079.0, + "total_tests": 966524.0, + "total_tests_per_thousand": 111.677, + "new_tests_per_thousand": 1.511, + "new_tests_smoothed": 8840.0, + "new_tests_smoothed_per_thousand": 1.021, + "tests_per_case": 34.321, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-26", + "total_cases": 40161.0, + "new_cases": 202.0, + "new_cases_smoothed": 258.429, + "total_deaths": 1722.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4640.413, + "new_cases_per_million": 23.34, + "new_cases_smoothed_per_million": 29.86, + "total_deaths_per_million": 198.969, + "new_deaths_per_million": 0.231, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 12758.0, + "total_tests": 979282.0, + "total_tests_per_thousand": 113.151, + "new_tests_per_thousand": 1.474, + "new_tests_smoothed": 9315.0, + "new_tests_smoothed_per_thousand": 1.076, + "tests_per_case": 36.045, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-27", + "total_cases": 40540.0, + "new_cases": 379.0, + "new_cases_smoothed": 268.286, + "total_deaths": 1722.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4684.204, + "new_cases_per_million": 43.792, + "new_cases_smoothed_per_million": 30.999, + "total_deaths_per_million": 198.969, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066, + "new_tests": 13064.0, + "total_tests": 992346.0, + "total_tests_per_thousand": 114.661, + "new_tests_per_thousand": 1.509, + "new_tests_smoothed": 9737.0, + "new_tests_smoothed_per_thousand": 1.125, + "tests_per_case": 36.293, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-28", + "total_cases": 40900.0, + "new_cases": 360.0, + "new_cases_smoothed": 282.0, + "total_deaths": 1723.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4725.801, + "new_cases_per_million": 41.596, + "new_cases_smoothed_per_million": 32.584, + "total_deaths_per_million": 199.084, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 12486.0, + "total_tests": 1004832.0, + "total_tests_per_thousand": 116.104, + "new_tests_per_thousand": 1.443, + "new_tests_smoothed": 10103.0, + "new_tests_smoothed_per_thousand": 1.167, + "tests_per_case": 35.826, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-29", + "total_cases": 41240.0, + "new_cases": 340.0, + "new_cases_smoothed": 286.857, + "total_deaths": 1724.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4765.086, + "new_cases_per_million": 39.285, + "new_cases_smoothed_per_million": 33.145, + "total_deaths_per_million": 199.2, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 8321.0, + "total_tests": 1013153.0, + "total_tests_per_thousand": 117.065, + "new_tests_per_thousand": 0.961, + "new_tests_smoothed": 10419.0, + "new_tests_smoothed_per_thousand": 1.204, + "tests_per_case": 36.321, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-30", + "total_cases": 41615.0, + "new_cases": 375.0, + "new_cases_smoothed": 298.429, + "total_deaths": 1724.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4808.416, + "new_cases_per_million": 43.329, + "new_cases_smoothed_per_million": 34.482, + "total_deaths_per_million": 199.2, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 3685.0, + "total_tests": 1016838.0, + "total_tests_per_thousand": 117.491, + "new_tests_per_thousand": 0.426, + "new_tests_smoothed": 10476.0, + "new_tests_smoothed_per_thousand": 1.21, + "tests_per_case": 35.104, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-31", + "total_cases": 41906.0, + "new_cases": 291.0, + "new_cases_smoothed": 300.571, + "total_deaths": 1724.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4842.039, + "new_cases_per_million": 33.624, + "new_cases_smoothed_per_million": 34.73, + "total_deaths_per_million": 199.2, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.083, + "new_tests": 6365.0, + "total_tests": 1023203.0, + "total_tests_per_thousand": 118.226, + "new_tests_per_thousand": 0.735, + "new_tests_smoothed": 9965.0, + "new_tests_smoothed_per_thousand": 1.151, + "tests_per_case": 33.154, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-09-01", + "total_cases": 42069.0, + "new_cases": 163.0, + "new_cases_smoothed": 301.429, + "total_deaths": 1725.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4860.873, + "new_cases_per_million": 18.834, + "new_cases_smoothed_per_million": 34.829, + "total_deaths_per_million": 199.316, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.083, + "stringency_index": 43.06 + }, + { + "date": "2020-09-02", + "total_cases": 42285.0, + "new_cases": 216.0, + "new_cases_smoothed": 303.429, + "total_deaths": 1726.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4885.831, + "new_cases_per_million": 24.958, + "new_cases_smoothed_per_million": 35.06, + "total_deaths_per_million": 199.431, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.066, + "stringency_index": 43.06 + }, + { + "date": "2020-09-03", + "total_cases": 42655.0, + "new_cases": 370.0, + "new_cases_smoothed": 302.143, + "total_deaths": 1726.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4928.583, + "new_cases_per_million": 42.752, + "new_cases_smoothed_per_million": 34.911, + "total_deaths_per_million": 199.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.066 + }, + { + "date": "2020-09-04", + "total_cases": 43127.0, + "new_cases": 472.0, + "new_cases_smoothed": 318.143, + "total_deaths": 1730.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 4983.12, + "new_cases_per_million": 54.537, + "new_cases_smoothed_per_million": 36.76, + "total_deaths_per_million": 199.893, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.116 + }, + { + "date": "2020-09-05", + "total_cases": 43424.0, + "new_cases": 297.0, + "new_cases_smoothed": 312.0, + "total_deaths": 1731.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5017.437, + "new_cases_per_million": 34.317, + "new_cases_smoothed_per_million": 36.05, + "total_deaths_per_million": 200.009, + "new_deaths_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.116 + } + ] + }, + "SYR": { + "continent": "Asia", + "location": "Syria", + "population": 17500657.0, + "median_age": 21.7, + "aged_70_older": 2.577, + "cardiovasc_death_rate": 376.264, + "handwashing_facilities": 70.598, + "hospital_beds_per_thousand": 1.5, + "life_expectancy": 72.7, + "data": [ + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.286, + "new_cases_per_million": 0.229, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.286, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.286, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-30", + "total_cases": 9.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.514, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 80.56 + }, + { + "date": "2020-03-31", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.571, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 80.56 + }, + { + "date": "2020-04-01", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.571, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 83.33 + }, + { + "date": "2020-04-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.571, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 83.33 + }, + { + "date": "2020-04-03", + "total_cases": 16.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.914, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 83.33 + }, + { + "date": "2020-04-04", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 83.33 + }, + { + "date": "2020-04-05", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 83.33 + }, + { + "date": "2020-04-06", + "total_cases": 19.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 83.33 + }, + { + "date": "2020-04-07", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-08", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-09", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-10", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-11", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-12", + "total_cases": 25.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.429, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-15", + "total_cases": 29.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.657, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-16", + "total_cases": 33.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.886, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-04-17", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.886, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-18", + "total_cases": 38.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.171, + "new_cases_per_million": 0.286, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-19", + "total_cases": 38.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.171, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-04-20", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.228, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 86.11 + }, + { + "date": "2020-04-21", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.228, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 86.11 + }, + { + "date": "2020-04-22", + "total_cases": 42.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.4, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 86.11 + }, + { + "date": "2020-04-23", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.4, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 43.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.457, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.457, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.457, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.457, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 43.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.457, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-02", + "total_cases": 44.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.514, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-03", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-04", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 45.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.571, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.571, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.686, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-11", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 47.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.686, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-14", + "total_cases": 48.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.743, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-15", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.743, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-16", + "total_cases": 50.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.857, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-17", + "total_cases": 51.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.914, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-18", + "total_cases": 58.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.314, + "new_cases_per_million": 0.4, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-19", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-20", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-21", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-22", + "total_cases": 58.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.171, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-23", + "total_cases": 59.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.371, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-05-24", + "total_cases": 70.0, + "new_cases": 11.0, + "new_cases_smoothed": 2.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.0, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 82.41 + }, + { + "date": "2020-05-25", + "total_cases": 86.0, + "new_cases": 16.0, + "new_cases_smoothed": 4.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.914, + "new_cases_per_million": 0.914, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 69.44 + }, + { + "date": "2020-05-26", + "total_cases": 106.0, + "new_cases": 20.0, + "new_cases_smoothed": 6.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.057, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-05-27", + "total_cases": 121.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.914, + "new_cases_per_million": 0.857, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-05-28", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-05-29", + "total_cases": 121.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-05-30", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.971, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.514, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-05-31", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-01", + "total_cases": 122.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.971, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.229, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-02", + "total_cases": 123.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.028, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.139, + "total_deaths_per_million": 0.286, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-03", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-04", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-05", + "total_cases": 124.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.085, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-06", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-07", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.085, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-08", + "total_cases": 141.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.057, + "new_cases_per_million": 0.971, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-09", + "total_cases": 144.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.228, + "new_cases_per_million": 0.171, + "new_cases_smoothed_per_million": 0.171, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-10", + "total_cases": 146.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.343, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-11", + "total_cases": 152.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.685, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-12", + "total_cases": 164.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.371, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-13", + "total_cases": 164.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.371, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.327, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-14", + "total_cases": 170.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.714, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-15", + "total_cases": 177.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.114, + "new_cases_per_million": 0.4, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-16", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.114, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-17", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.114, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 0.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-18", + "total_cases": 178.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.171, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-19", + "total_cases": 187.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.685, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-20", + "total_cases": 187.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.188, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-21", + "total_cases": 198.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.314, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-22", + "total_cases": 204.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.657, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-23", + "total_cases": 219.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12.514, + "new_cases_per_million": 0.857, + "new_cases_smoothed_per_million": 0.343, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-24", + "total_cases": 231.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13.2, + "new_cases_per_million": 0.686, + "new_cases_smoothed_per_million": 0.441, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-25", + "total_cases": 231.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.2, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.433, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-26", + "total_cases": 242.0, + "new_cases": 11.0, + "new_cases_smoothed": 7.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.828, + "new_cases_per_million": 0.629, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 61.11 + }, + { + "date": "2020-06-27", + "total_cases": 255.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14.571, + "new_cases_per_million": 0.743, + "new_cases_smoothed_per_million": 0.555, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-06-28", + "total_cases": 256.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.628, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.473, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-29", + "total_cases": 256.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14.628, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.424, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-06-30", + "total_cases": 269.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.371, + "new_cases_per_million": 0.743, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-07-01", + "total_cases": 279.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.942, + "new_cases_per_million": 0.571, + "new_cases_smoothed_per_million": 0.392, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-07-02", + "total_cases": 293.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 16.742, + "new_cases_per_million": 0.8, + "new_cases_smoothed_per_million": 0.506, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-07-03", + "total_cases": 312.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 17.828, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 0.571, + "total_deaths_per_million": 0.514, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-07-04", + "total_cases": 328.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 18.742, + "new_cases_per_million": 0.914, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 0.571, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 61.11 + }, + { + "date": "2020-07-05", + "total_cases": 338.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 19.314, + "new_cases_per_million": 0.571, + "new_cases_smoothed_per_million": 0.669, + "total_deaths_per_million": 0.571, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 61.11 + }, + { + "date": "2020-07-06", + "total_cases": 358.0, + "new_cases": 20.0, + "new_cases_smoothed": 14.571, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 20.456, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 0.743, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 61.11 + }, + { + "date": "2020-07-07", + "total_cases": 372.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.714, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21.256, + "new_cases_per_million": 0.8, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-07-08", + "total_cases": 372.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.759, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-07-09", + "total_cases": 372.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.645, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-07-10", + "total_cases": 372.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 21.256, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.8, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-07-11", + "total_cases": 394.0, + "new_cases": 22.0, + "new_cases_smoothed": 9.429, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 22.513, + "new_cases_per_million": 1.257, + "new_cases_smoothed_per_million": 0.539, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-07-12", + "total_cases": 394.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.0, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 22.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.457, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-07-13", + "total_cases": 394.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 22.513, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 61.11 + }, + { + "date": "2020-07-14", + "total_cases": 417.0, + "new_cases": 23.0, + "new_cases_smoothed": 6.429, + "total_deaths": 19.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 23.828, + "new_cases_per_million": 1.314, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 1.086, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-07-15", + "total_cases": 439.0, + "new_cases": 22.0, + "new_cases_smoothed": 9.571, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 25.085, + "new_cases_per_million": 1.257, + "new_cases_smoothed_per_million": 0.547, + "total_deaths_per_million": 1.2, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-07-16", + "total_cases": 458.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.286, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 26.17, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 0.702, + "total_deaths_per_million": 1.257, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-07-17", + "total_cases": 477.0, + "new_cases": 19.0, + "new_cases_smoothed": 15.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 27.256, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 0.857, + "total_deaths_per_million": 1.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-07-18", + "total_cases": 496.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.571, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.342, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 1.429, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 61.11 + }, + { + "date": "2020-07-19", + "total_cases": 496.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.342, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 1.429, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 61.11 + }, + { + "date": "2020-07-20", + "total_cases": 496.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 28.342, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.833, + "total_deaths_per_million": 1.429, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 61.11 + }, + { + "date": "2020-07-21", + "total_cases": 522.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.0, + "total_deaths": 29.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 29.827, + "new_cases_per_million": 1.486, + "new_cases_smoothed_per_million": 0.857, + "total_deaths_per_million": 1.657, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-07-22", + "total_cases": 540.0, + "new_cases": 18.0, + "new_cases_smoothed": 14.429, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 30.856, + "new_cases_per_million": 1.029, + "new_cases_smoothed_per_million": 0.824, + "total_deaths_per_million": 1.771, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-07-23", + "total_cases": 561.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.714, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 32.056, + "new_cases_per_million": 1.2, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 1.829, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-07-24", + "total_cases": 584.0, + "new_cases": 23.0, + "new_cases_smoothed": 15.286, + "total_deaths": 35.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 33.37, + "new_cases_per_million": 1.314, + "new_cases_smoothed_per_million": 0.873, + "total_deaths_per_million": 2.0, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 61.11 + }, + { + "date": "2020-07-25", + "total_cases": 584.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 33.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.718, + "total_deaths_per_million": 2.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-07-26", + "total_cases": 627.0, + "new_cases": 43.0, + "new_cases_smoothed": 18.714, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 35.827, + "new_cases_per_million": 2.457, + "new_cases_smoothed_per_million": 1.069, + "total_deaths_per_million": 2.057, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 61.11 + }, + { + "date": "2020-07-27", + "total_cases": 650.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.0, + "total_deaths": 38.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 37.141, + "new_cases_per_million": 1.314, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 2.171, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 61.11 + }, + { + "date": "2020-07-28", + "total_cases": 674.0, + "new_cases": 24.0, + "new_cases_smoothed": 21.714, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 38.513, + "new_cases_per_million": 1.371, + "new_cases_smoothed_per_million": 1.241, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 61.11 + }, + { + "date": "2020-07-29", + "total_cases": 694.0, + "new_cases": 20.0, + "new_cases_smoothed": 22.0, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 39.656, + "new_cases_per_million": 1.143, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073, + "stringency_index": 61.11 + }, + { + "date": "2020-07-30", + "total_cases": 717.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 40.97, + "new_cases_per_million": 1.314, + "new_cases_smoothed_per_million": 1.273, + "total_deaths_per_million": 2.286, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-07-31", + "total_cases": 738.0, + "new_cases": 21.0, + "new_cases_smoothed": 22.0, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.17, + "new_cases_per_million": 1.2, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 2.343, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-01", + "total_cases": 738.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.0, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.17, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.257, + "total_deaths_per_million": 2.343, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-02", + "total_cases": 757.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.571, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 43.256, + "new_cases_per_million": 1.086, + "new_cases_smoothed_per_million": 1.061, + "total_deaths_per_million": 2.457, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-03", + "total_cases": 809.0, + "new_cases": 52.0, + "new_cases_smoothed": 22.714, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 46.227, + "new_cases_per_million": 2.971, + "new_cases_smoothed_per_million": 1.298, + "total_deaths_per_million": 2.514, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-04", + "total_cases": 847.0, + "new_cases": 38.0, + "new_cases_smoothed": 24.714, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 48.398, + "new_cases_per_million": 2.171, + "new_cases_smoothed_per_million": 1.412, + "total_deaths_per_million": 2.628, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-05", + "total_cases": 892.0, + "new_cases": 45.0, + "new_cases_smoothed": 28.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 50.97, + "new_cases_per_million": 2.571, + "new_cases_smoothed_per_million": 1.616, + "total_deaths_per_million": 2.628, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-06", + "total_cases": 944.0, + "new_cases": 52.0, + "new_cases_smoothed": 32.429, + "total_deaths": 48.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 53.941, + "new_cases_per_million": 2.971, + "new_cases_smoothed_per_million": 1.853, + "total_deaths_per_million": 2.743, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-08-07", + "total_cases": 944.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.429, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 53.941, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.682, + "total_deaths_per_million": 2.743, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-08", + "total_cases": 1060.0, + "new_cases": 116.0, + "new_cases_smoothed": 46.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 60.569, + "new_cases_per_million": 6.628, + "new_cases_smoothed_per_million": 2.628, + "total_deaths_per_million": 2.743, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-09", + "total_cases": 1125.0, + "new_cases": 65.0, + "new_cases_smoothed": 52.571, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 64.283, + "new_cases_per_million": 3.714, + "new_cases_smoothed_per_million": 3.004, + "total_deaths_per_million": 2.857, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-10", + "total_cases": 1188.0, + "new_cases": 63.0, + "new_cases_smoothed": 54.143, + "total_deaths": 52.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 67.883, + "new_cases_per_million": 3.6, + "new_cases_smoothed_per_million": 3.094, + "total_deaths_per_million": 2.971, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 61.11 + }, + { + "date": "2020-08-11", + "total_cases": 1188.0, + "new_cases": 0.0, + "new_cases_smoothed": 48.714, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 67.883, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.784, + "total_deaths_per_million": 2.971, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.049, + "stringency_index": 61.11 + }, + { + "date": "2020-08-12", + "total_cases": 1327.0, + "new_cases": 139.0, + "new_cases_smoothed": 62.143, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 75.826, + "new_cases_per_million": 7.943, + "new_cases_smoothed_per_million": 3.551, + "total_deaths_per_million": 3.028, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-13", + "total_cases": 1332.0, + "new_cases": 5.0, + "new_cases_smoothed": 55.429, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 76.111, + "new_cases_per_million": 0.286, + "new_cases_smoothed_per_million": 3.167, + "total_deaths_per_million": 3.028, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "stringency_index": 61.11 + }, + { + "date": "2020-08-14", + "total_cases": 1432.0, + "new_cases": 100.0, + "new_cases_smoothed": 69.714, + "total_deaths": 55.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 81.825, + "new_cases_per_million": 5.714, + "new_cases_smoothed_per_million": 3.984, + "total_deaths_per_million": 3.143, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 61.11 + }, + { + "date": "2020-08-15", + "total_cases": 1515.0, + "new_cases": 83.0, + "new_cases_smoothed": 65.0, + "total_deaths": 58.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 86.568, + "new_cases_per_million": 4.743, + "new_cases_smoothed_per_million": 3.714, + "total_deaths_per_million": 3.314, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-08-16", + "total_cases": 1593.0, + "new_cases": 78.0, + "new_cases_smoothed": 66.857, + "total_deaths": 60.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 91.025, + "new_cases_per_million": 4.457, + "new_cases_smoothed_per_million": 3.82, + "total_deaths_per_million": 3.428, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.082, + "stringency_index": 61.11 + }, + { + "date": "2020-08-17", + "total_cases": 1677.0, + "new_cases": 84.0, + "new_cases_smoothed": 69.857, + "total_deaths": 64.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 95.825, + "new_cases_per_million": 4.8, + "new_cases_smoothed_per_million": 3.992, + "total_deaths_per_million": 3.657, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.098, + "stringency_index": 61.11 + }, + { + "date": "2020-08-18", + "total_cases": 1764.0, + "new_cases": 87.0, + "new_cases_smoothed": 82.286, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 100.796, + "new_cases_per_million": 4.971, + "new_cases_smoothed_per_million": 4.702, + "total_deaths_per_million": 3.886, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.131, + "stringency_index": 61.11 + }, + { + "date": "2020-08-19", + "total_cases": 1764.0, + "new_cases": 0.0, + "new_cases_smoothed": 62.429, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 100.796, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.567, + "total_deaths_per_million": 3.886, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.122, + "stringency_index": 61.11 + }, + { + "date": "2020-08-20", + "total_cases": 1927.0, + "new_cases": 163.0, + "new_cases_smoothed": 85.0, + "total_deaths": 78.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 110.11, + "new_cases_per_million": 9.314, + "new_cases_smoothed_per_million": 4.857, + "total_deaths_per_million": 4.457, + "new_deaths_per_million": 0.571, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 61.11 + }, + { + "date": "2020-08-21", + "total_cases": 2008.0, + "new_cases": 81.0, + "new_cases_smoothed": 82.286, + "total_deaths": 82.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 114.739, + "new_cases_per_million": 4.628, + "new_cases_smoothed_per_million": 4.702, + "total_deaths_per_million": 4.686, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 57.41 + }, + { + "date": "2020-08-22", + "total_cases": 2073.0, + "new_cases": 65.0, + "new_cases_smoothed": 79.714, + "total_deaths": 83.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 118.453, + "new_cases_per_million": 3.714, + "new_cases_smoothed_per_million": 4.555, + "total_deaths_per_million": 4.743, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 57.41 + }, + { + "date": "2020-08-23", + "total_cases": 2143.0, + "new_cases": 70.0, + "new_cases_smoothed": 78.571, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 122.453, + "new_cases_per_million": 4.0, + "new_cases_smoothed_per_million": 4.49, + "total_deaths_per_million": 4.857, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 57.41 + }, + { + "date": "2020-08-24", + "total_cases": 2143.0, + "new_cases": 0.0, + "new_cases_smoothed": 66.571, + "total_deaths": 85.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 122.453, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.804, + "total_deaths_per_million": 4.857, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.171, + "stringency_index": 57.41 + }, + { + "date": "2020-08-25", + "total_cases": 2293.0, + "new_cases": 150.0, + "new_cases_smoothed": 75.571, + "total_deaths": 92.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 131.024, + "new_cases_per_million": 8.571, + "new_cases_smoothed_per_million": 4.318, + "total_deaths_per_million": 5.257, + "new_deaths_per_million": 0.4, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 57.41 + }, + { + "date": "2020-08-26", + "total_cases": 2293.0, + "new_cases": 0.0, + "new_cases_smoothed": 75.571, + "total_deaths": 92.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 131.024, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.318, + "total_deaths_per_million": 5.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 57.41 + }, + { + "date": "2020-08-27", + "total_cases": 2440.0, + "new_cases": 147.0, + "new_cases_smoothed": 73.286, + "total_deaths": 98.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 139.423, + "new_cases_per_million": 8.4, + "new_cases_smoothed_per_million": 4.188, + "total_deaths_per_million": 5.6, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 57.41 + }, + { + "date": "2020-08-28", + "total_cases": 2504.0, + "new_cases": 64.0, + "new_cases_smoothed": 70.857, + "total_deaths": 100.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 143.08, + "new_cases_per_million": 3.657, + "new_cases_smoothed_per_million": 4.049, + "total_deaths_per_million": 5.714, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 57.41 + }, + { + "date": "2020-08-29", + "total_cases": 2563.0, + "new_cases": 59.0, + "new_cases_smoothed": 70.0, + "total_deaths": 103.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 146.452, + "new_cases_per_million": 3.371, + "new_cases_smoothed_per_million": 4.0, + "total_deaths_per_million": 5.885, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 57.41 + }, + { + "date": "2020-08-30", + "total_cases": 2628.0, + "new_cases": 65.0, + "new_cases_smoothed": 69.286, + "total_deaths": 106.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 150.166, + "new_cases_per_million": 3.714, + "new_cases_smoothed_per_million": 3.959, + "total_deaths_per_million": 6.057, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.171 + }, + { + "date": "2020-08-31", + "total_cases": 2703.0, + "new_cases": 75.0, + "new_cases_smoothed": 80.0, + "total_deaths": 109.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 154.451, + "new_cases_per_million": 4.286, + "new_cases_smoothed_per_million": 4.571, + "total_deaths_per_million": 6.228, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.196 + }, + { + "date": "2020-09-01", + "total_cases": 2765.0, + "new_cases": 62.0, + "new_cases_smoothed": 67.429, + "total_deaths": 112.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 157.994, + "new_cases_per_million": 3.543, + "new_cases_smoothed_per_million": 3.853, + "total_deaths_per_million": 6.4, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.163 + }, + { + "date": "2020-09-02", + "total_cases": 2830.0, + "new_cases": 65.0, + "new_cases_smoothed": 76.714, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 161.708, + "new_cases_per_million": 3.714, + "new_cases_smoothed_per_million": 4.384, + "total_deaths_per_million": 6.628, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.196 + }, + { + "date": "2020-09-03", + "total_cases": 2898.0, + "new_cases": 68.0, + "new_cases_smoothed": 65.429, + "total_deaths": 120.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 165.594, + "new_cases_per_million": 3.886, + "new_cases_smoothed_per_million": 3.739, + "total_deaths_per_million": 6.857, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.18 + }, + { + "date": "2020-09-04", + "total_cases": 2973.0, + "new_cases": 75.0, + "new_cases_smoothed": 67.0, + "total_deaths": 124.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 169.879, + "new_cases_per_million": 4.286, + "new_cases_smoothed_per_million": 3.828, + "total_deaths_per_million": 7.085, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.196 + }, + { + "date": "2020-09-05", + "total_cases": 3041.0, + "new_cases": 68.0, + "new_cases_smoothed": 68.286, + "total_deaths": 127.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 173.765, + "new_cases_per_million": 3.886, + "new_cases_smoothed_per_million": 3.902, + "total_deaths_per_million": 7.257, + "new_deaths_per_million": 0.171, + "new_deaths_smoothed_per_million": 0.196 + } + ] + }, + "TWN": { + "continent": "Asia", + "location": "Taiwan", + "population": 23816775.0, + "median_age": 42.2, + "aged_70_older": 8.353, + "cardiovasc_death_rate": 103.957, + "life_expectancy": 80.46, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 5.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 6.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 8.33 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 8.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-01-21", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.042, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 20.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.001, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-01-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.042, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 44.0, + "total_tests": 64.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 13.89 + }, + { + "date": "2020-01-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.042, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 134.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 19.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 133.0, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.042, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 57.0, + "total_tests": 191.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 27.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 189.0, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-25", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.126, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 91.0, + "total_tests": 282.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 40.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 93.333, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-26", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.126, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 117.0, + "total_tests": 399.0, + "total_tests_per_thousand": 0.017, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 56.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 130.667, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-27", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.21, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 123.0, + "total_tests": 522.0, + "total_tests_per_thousand": 0.022, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 73.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 102.2, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-28", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.294, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 95.0, + "total_tests": 617.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 85.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 99.167, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-29", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.336, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 106.0, + "total_tests": 723.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 94.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 94.0, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-30", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.336, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 100.0, + "total_tests": 823.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 98.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 98.0, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-01-31", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.378, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 93.0, + "total_tests": 916.0, + "total_tests_per_thousand": 0.038, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 104.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 91.0, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-01", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 87.0, + "total_tests": 1003.0, + "total_tests_per_thousand": 0.042, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 103.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 103.0, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-02", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 64.0, + "total_tests": 1067.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 95.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 95.0, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-03", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 131.0, + "total_tests": 1198.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 97.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 135.8, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 103.0, + "total_tests": 1301.0, + "total_tests_per_thousand": 0.055, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 98.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 228.667, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-05", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.462, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 157.0, + "total_tests": 1458.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 105.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 245.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.462, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 77.0, + "total_tests": 1535.0, + "total_tests_per_thousand": 0.064, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 102.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 238.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-07", + "total_cases": 16.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.672, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 199.0, + "total_tests": 1734.0, + "total_tests_per_thousand": 0.073, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 117.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 117.0, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-08", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.714, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 225.0, + "total_tests": 1959.0, + "total_tests_per_thousand": 0.082, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 137.0, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-09", + "total_cases": 18.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 128.0, + "total_tests": 2087.0, + "total_tests_per_thousand": 0.088, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 127.75, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-10", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 205.0, + "total_tests": 2292.0, + "total_tests_per_thousand": 0.096, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 156.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 136.5, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-11", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 168.0, + "total_tests": 2460.0, + "total_tests_per_thousand": 0.103, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 166.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 145.25, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-12", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 128.0, + "total_tests": 2588.0, + "total_tests_per_thousand": 0.109, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 161.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 161.0, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-13", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 115.0, + "total_tests": 2703.0, + "total_tests_per_thousand": 0.113, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 167.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 167.0, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-14", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 72.0, + "total_tests": 2775.0, + "total_tests_per_thousand": 0.117, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 521.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-15", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 89.0, + "total_tests": 2864.0, + "total_tests_per_thousand": 0.12, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 129.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 903.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-16", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.756, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 112.0, + "total_tests": 2976.0, + "total_tests_per_thousand": 0.125, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 127.0, + "new_tests_smoothed_per_thousand": 0.005, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-17", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.84, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 813.0, + "total_tests": 3789.0, + "total_tests_per_thousand": 0.159, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 214.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 749.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-18", + "total_cases": 22.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.924, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 832.0, + "total_tests": 4621.0, + "total_tests_per_thousand": 0.194, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 309.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 540.75, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-19", + "total_cases": 22.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.924, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 696.0, + "total_tests": 5317.0, + "total_tests_per_thousand": 0.223, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 390.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 682.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-20", + "total_cases": 24.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.008, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 796.0, + "total_tests": 6113.0, + "total_tests_per_thousand": 0.257, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 487.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 568.1669999999999, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 714.0, + "total_tests": 6827.0, + "total_tests_per_thousand": 0.287, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 579.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 675.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-22", + "total_cases": 26.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.092, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 444.0, + "total_tests": 7271.0, + "total_tests_per_thousand": 0.305, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 630.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 551.25, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-23", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 328.0, + "total_tests": 7599.0, + "total_tests_per_thousand": 0.319, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 660.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 577.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-24", + "total_cases": 28.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.176, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 698.0, + "total_tests": 8297.0, + "total_tests_per_thousand": 0.348, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 563.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 30.56 + }, + { + "date": "2020-02-25", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.26, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 609.0, + "total_tests": 8906.0, + "total_tests_per_thousand": 0.374, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 535.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-26", + "total_cases": 31.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.302, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 521.0, + "total_tests": 9427.0, + "total_tests_per_thousand": 0.396, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 456.556, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-27", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.344, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 520.0, + "total_tests": 9947.0, + "total_tests_per_thousand": 0.418, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 548.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 479.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-28", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.428, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 371.0, + "total_tests": 10318.0, + "total_tests_per_thousand": 0.433, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 499.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 349.3, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-02-29", + "total_cases": 39.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.638, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 511.0, + "total_tests": 10829.0, + "total_tests_per_thousand": 0.455, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 508.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 273.538, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-01", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.679, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 430.0, + "total_tests": 11259.0, + "total_tests_per_thousand": 0.473, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 261.5, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-02", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 600.0, + "total_tests": 11859.0, + "total_tests_per_thousand": 0.498, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 509.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 296.91700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-03", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.721, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 506.0, + "total_tests": 12365.0, + "total_tests_per_thousand": 0.519, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 494.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 314.36400000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-04", + "total_cases": 42.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.763, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 485.0, + "total_tests": 12850.0, + "total_tests_per_thousand": 0.54, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 489.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 311.182, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-03-05", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.763, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 297.0, + "total_tests": 13147.0, + "total_tests_per_thousand": 0.552, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 457.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 319.9, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-06", + "total_cases": 44.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.847, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 381.0, + "total_tests": 13528.0, + "total_tests_per_thousand": 0.568, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 459.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 321.3, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-07", + "total_cases": 45.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.889, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 307.0, + "total_tests": 13835.0, + "total_tests_per_thousand": 0.581, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 429.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 500.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-08", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 298.0, + "total_tests": 14133.0, + "total_tests_per_thousand": 0.593, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 575.4, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-09", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 476.0, + "total_tests": 14609.0, + "total_tests_per_thousand": 0.613, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 550.2, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-10", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 332.0, + "total_tests": 14941.0, + "total_tests_per_thousand": 0.627, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 368.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 644.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 48.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.015, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 445.0, + "total_tests": 15386.0, + "total_tests_per_thousand": 0.646, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 422.333, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 677.0, + "total_tests": 16063.0, + "total_tests_per_thousand": 0.674, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 417.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 486.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "total_cases": 49.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.057, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 439.0, + "total_tests": 16502.0, + "total_tests_per_thousand": 0.693, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 595.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 53.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.225, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 379.0, + "total_tests": 16881.0, + "total_tests_per_thousand": 0.709, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 435.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 380.625, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-15", + "total_cases": 59.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.477, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 306.0, + "total_tests": 17187.0, + "total_tests_per_thousand": 0.722, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 436.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 218.0, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-16", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.477, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 730.0, + "total_tests": 17917.0, + "total_tests_per_thousand": 0.752, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 236.5, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-17", + "total_cases": 67.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.813, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 873.0, + "total_tests": 18790.0, + "total_tests_per_thousand": 0.789, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 175.0, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-18", + "total_cases": 77.0, + "new_cases": 10.0, + "new_cases_smoothed": 4.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.233, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1197.0, + "total_tests": 19987.0, + "total_tests_per_thousand": 0.839, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 657.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 158.586, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-19", + "total_cases": 108.0, + "new_cases": 31.0, + "new_cases_smoothed": 8.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.535, + "new_cases_per_million": 1.302, + "new_cases_smoothed_per_million": 0.36, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1363.0, + "total_tests": 21350.0, + "total_tests_per_thousand": 0.896, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 755.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 88.083, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-20", + "total_cases": 108.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.535, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1371.0, + "total_tests": 22721.0, + "total_tests_per_thousand": 0.954, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 888.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 105.35600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-21", + "total_cases": 135.0, + "new_cases": 27.0, + "new_cases_smoothed": 11.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.668, + "new_cases_per_million": 1.134, + "new_cases_smoothed_per_million": 0.492, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1047.0, + "total_tests": 23768.0, + "total_tests_per_thousand": 0.998, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 984.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 84.0, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-22", + "total_cases": 153.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.424, + "new_cases_per_million": 0.756, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 811.0, + "total_tests": 24579.0, + "total_tests_per_thousand": 1.032, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1056.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 78.638, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-23", + "total_cases": 165.0, + "new_cases": 12.0, + "new_cases_smoothed": 15.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.928, + "new_cases_per_million": 0.504, + "new_cases_smoothed_per_million": 0.636, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1139.0, + "total_tests": 25718.0, + "total_tests_per_thousand": 1.08, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1114.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 73.566, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-24", + "total_cases": 195.0, + "new_cases": 30.0, + "new_cases_smoothed": 18.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.188, + "new_cases_per_million": 1.26, + "new_cases_smoothed_per_million": 0.768, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 924.0, + "total_tests": 26642.0, + "total_tests_per_thousand": 1.119, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1122.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 61.358999999999995, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-25", + "total_cases": 216.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.069, + "new_cases_per_million": 0.882, + "new_cases_smoothed_per_million": 0.834, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 938.0, + "total_tests": 27580.0, + "total_tests_per_thousand": 1.158, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1085.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 54.64, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-26", + "total_cases": 235.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.867, + "new_cases_per_million": 0.798, + "new_cases_smoothed_per_million": 0.762, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 929.0, + "total_tests": 28509.0, + "total_tests_per_thousand": 1.197, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 1023.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 56.386, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-27", + "total_cases": 252.0, + "new_cases": 17.0, + "new_cases_smoothed": 20.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.581, + "new_cases_per_million": 0.714, + "new_cases_smoothed_per_million": 0.864, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 864.0, + "total_tests": 29373.0, + "total_tests_per_thousand": 1.233, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 950.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 46.181000000000004, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-28", + "total_cases": 267.0, + "new_cases": 15.0, + "new_cases_smoothed": 18.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.211, + "new_cases_per_million": 0.63, + "new_cases_smoothed_per_million": 0.792, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 527.0, + "total_tests": 29900.0, + "total_tests_per_thousand": 1.255, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 46.455, + "positive_rate": 0.022000000000000002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-29", + "total_cases": 283.0, + "new_cases": 16.0, + "new_cases_smoothed": 18.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.882, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.78, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 835.0, + "total_tests": 30735.0, + "total_tests_per_thousand": 1.29, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 47.331, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-30", + "total_cases": 306.0, + "new_cases": 23.0, + "new_cases_smoothed": 20.143, + "total_deaths": 5.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 12.848, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.126, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 1023.0, + "total_tests": 31758.0, + "total_tests_per_thousand": 1.333, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 863.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 42.843999999999994, + "positive_rate": 0.023, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-03-31", + "total_cases": 306.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 12.848, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.666, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 924.0, + "total_tests": 32682.0, + "total_tests_per_thousand": 1.372, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 863.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 54.423, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-01", + "total_cases": 322.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13.52, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.636, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 1009.0, + "total_tests": 33691.0, + "total_tests_per_thousand": 1.415, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 57.651, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-02", + "total_cases": 339.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.234, + "new_cases_per_million": 0.714, + "new_cases_smoothed_per_million": 0.624, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 822.0, + "total_tests": 34513.0, + "total_tests_per_thousand": 1.449, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 858.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 57.75, + "positive_rate": 0.017, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-03", + "total_cases": 339.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.234, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.522, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 880.0, + "total_tests": 35393.0, + "total_tests_per_thousand": 1.486, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 860.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 69.195, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-04", + "total_cases": 355.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.905, + "new_cases_per_million": 0.672, + "new_cases_smoothed_per_million": 0.528, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 864.0, + "total_tests": 36257.0, + "total_tests_per_thousand": 1.522, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 908.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 72.227, + "positive_rate": 0.013999999999999999, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-05", + "total_cases": 363.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.241, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.48, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "new_tests": 912.0, + "total_tests": 37169.0, + "total_tests_per_thousand": 1.561, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 919.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 80.41199999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-06", + "total_cases": 363.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.241, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1814.0, + "total_tests": 38983.0, + "total_tests_per_thousand": 1.637, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 1032.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 126.73700000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-07", + "total_cases": 373.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.661, + "new_cases_per_million": 0.42, + "new_cases_smoothed_per_million": 0.402, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1685.0, + "total_tests": 40668.0, + "total_tests_per_thousand": 1.708, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 1141.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 119.209, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-08", + "total_cases": 376.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.787, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1628.0, + "total_tests": 42296.0, + "total_tests_per_thousand": 1.776, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 159.315, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-09", + "total_cases": 379.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.913, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.24, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1576.0, + "total_tests": 43872.0, + "total_tests_per_thousand": 1.842, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 233.975, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-10", + "total_cases": 380.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.955, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.246, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1564.0, + "total_tests": 45436.0, + "total_tests_per_thousand": 1.908, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1435.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 245.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-11", + "total_cases": 380.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.955, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1091.0, + "total_tests": 46527.0, + "total_tests_per_thousand": 1.954, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 1467.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 410.76, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-12", + "total_cases": 385.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.165, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 664.0, + "total_tests": 47191.0, + "total_tests_per_thousand": 1.981, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 1432.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 455.63599999999997, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-13", + "total_cases": 388.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.291, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.15, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1340.0, + "total_tests": 48531.0, + "total_tests_per_thousand": 2.038, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1364.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 381.92, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-14", + "total_cases": 393.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.501, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1204.0, + "total_tests": 49735.0, + "total_tests_per_thousand": 2.088, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 1295.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 453.25, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-15", + "total_cases": 395.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.585, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.114, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 952.0, + "total_tests": 50687.0, + "total_tests_per_thousand": 2.128, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1199.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 441.73699999999997, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-16", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 903.0, + "total_tests": 51590.0, + "total_tests_per_thousand": 2.166, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1103.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 482.56199999999995, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-17", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 838.0, + "total_tests": 52428.0, + "total_tests_per_thousand": 2.201, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 999.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 466.2, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-18", + "total_cases": 395.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 557.0, + "total_tests": 52985.0, + "total_tests_per_thousand": 2.225, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 923.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 430.733, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-19", + "total_cases": 398.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.711, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 624.0, + "total_tests": 53609.0, + "total_tests_per_thousand": 2.251, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 917.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 493.769, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-20", + "total_cases": 420.0, + "new_cases": 22.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.635, + "new_cases_per_million": 0.924, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1835.0, + "total_tests": 55444.0, + "total_tests_per_thousand": 2.328, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 988.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 216.125, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-21", + "total_cases": 422.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.719, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.174, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1371.0, + "total_tests": 56815.0, + "total_tests_per_thousand": 2.386, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 1011.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 244.03400000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-22", + "total_cases": 425.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.845, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1154.0, + "total_tests": 57969.0, + "total_tests_per_thousand": 2.434, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 1040.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 242.667, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-23", + "total_cases": 426.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.887, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1014.0, + "total_tests": 58983.0, + "total_tests_per_thousand": 2.477, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 1056.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 238.452, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-24", + "total_cases": 427.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.929, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 827.0, + "total_tests": 59810.0, + "total_tests_per_thousand": 2.511, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1055.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 230.78099999999998, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-25", + "total_cases": 428.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.971, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.198, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 619.0, + "total_tests": 60429.0, + "total_tests_per_thousand": 2.537, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1063.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 225.485, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-26", + "total_cases": 429.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 60924.0, + "total_tests_per_thousand": 2.558, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 235.968, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-27", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 740.0, + "total_tests": 61664.0, + "total_tests_per_thousand": 2.589, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 889.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 691.444, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-28", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 694.0, + "total_tests": 62358.0, + "total_tests_per_thousand": 2.618, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 792.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 792.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-29", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 484.0, + "total_tests": 62842.0, + "total_tests_per_thousand": 2.639, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 696.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 1218.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-04-30", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 495.0, + "total_tests": 63337.0, + "total_tests_per_thousand": 2.659, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 622.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 1451.3329999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-01", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 374.0, + "total_tests": 63711.0, + "total_tests_per_thousand": 2.675, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 557.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 1949.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-02", + "total_cases": 429.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.013, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 380.0, + "total_tests": 64091.0, + "total_tests_per_thousand": 2.691, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 3661.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-03", + "total_cases": 432.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.138, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 342.0, + "total_tests": 64433.0, + "total_tests_per_thousand": 2.705, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 1169.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-04", + "total_cases": 436.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.306, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 528.0, + "total_tests": 64961.0, + "total_tests_per_thousand": 2.728, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 471.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 471.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-05", + "total_cases": 438.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.39, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 632.0, + "total_tests": 65593.0, + "total_tests_per_thousand": 2.754, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 359.333, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-06", + "total_cases": 438.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.39, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 451.0, + "total_tests": 66044.0, + "total_tests_per_thousand": 2.773, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 457.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 355.444, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-07", + "total_cases": 439.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.432, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 417.0, + "total_tests": 66461.0, + "total_tests_per_thousand": 2.791, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 446.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 312.2, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 27.78 + }, + { + "date": "2020-05-08", + "total_cases": 440.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 402.0, + "total_tests": 66863.0, + "total_tests_per_thousand": 2.807, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 450.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 286.36400000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-09", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 269.0, + "total_tests": 67132.0, + "total_tests_per_thousand": 2.819, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 434.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 276.182, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-10", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 267.0, + "total_tests": 67399.0, + "total_tests_per_thousand": 2.83, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 424.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 371.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-11", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 362.0, + "total_tests": 67761.0, + "total_tests_per_thousand": 2.845, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 400.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 700.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-12", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 349.0, + "total_tests": 68110.0, + "total_tests_per_thousand": 2.86, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 1260.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-13", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 277.0, + "total_tests": 68387.0, + "total_tests_per_thousand": 2.871, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 1172.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-14", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 274.0, + "total_tests": 68661.0, + "total_tests_per_thousand": 2.883, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 2198.0, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-15", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 323.0, + "total_tests": 68984.0, + "total_tests_per_thousand": 2.896, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 303.0, + "new_tests_smoothed_per_thousand": 0.013, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-16", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 220.0, + "total_tests": 69204.0, + "total_tests_per_thousand": 2.906, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 296.0, + "new_tests_smoothed_per_thousand": 0.012, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-17", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 185.0, + "total_tests": 69389.0, + "total_tests_per_thousand": 2.913, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 284.0, + "new_tests_smoothed_per_thousand": 0.012, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-18", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 269.0, + "total_tests": 69658.0, + "total_tests_per_thousand": 2.925, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 271.0, + "new_tests_smoothed_per_thousand": 0.011, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-19", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 223.0, + "total_tests": 69881.0, + "total_tests_per_thousand": 2.934, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 253.0, + "new_tests_smoothed_per_thousand": 0.011, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-20", + "total_cases": 440.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.474, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 226.0, + "total_tests": 70107.0, + "total_tests_per_thousand": 2.944, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 246.0, + "new_tests_smoothed_per_thousand": 0.01, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-21", + "total_cases": 441.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 236.0, + "total_tests": 70343.0, + "total_tests_per_thousand": 2.954, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 1680.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-22", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 187.0, + "total_tests": 70530.0, + "total_tests_per_thousand": 2.961, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 221.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1547.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-23", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 170.0, + "total_tests": 70700.0, + "total_tests_per_thousand": 2.968, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 214.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1498.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-24", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 183.0, + "total_tests": 70883.0, + "total_tests_per_thousand": 2.976, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 213.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1491.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-25", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 222.0, + "total_tests": 71105.0, + "total_tests_per_thousand": 2.986, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 207.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1449.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-26", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 299.0, + "total_tests": 71404.0, + "total_tests_per_thousand": 2.998, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 218.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1526.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-27", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 183.0, + "total_tests": 71587.0, + "total_tests_per_thousand": 3.006, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 211.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1477.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-28", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 170.0, + "total_tests": 71757.0, + "total_tests_per_thousand": 3.013, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 202.0, + "new_tests_smoothed_per_thousand": 0.008, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-29", + "total_cases": 441.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.516, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 156.0, + "total_tests": 71913.0, + "total_tests_per_thousand": 3.019, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.008, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-30", + "total_cases": 442.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.558, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 174.0, + "total_tests": 72087.0, + "total_tests_per_thousand": 3.027, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 198.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1386.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-05-31", + "total_cases": 442.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.558, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 237.0, + "total_tests": 72324.0, + "total_tests_per_thousand": 3.037, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 206.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 1442.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-01", + "total_cases": 442.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.558, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 186.0, + "total_tests": 72510.0, + "total_tests_per_thousand": 3.044, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 201.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1407.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-02", + "total_cases": 443.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 178.0, + "total_tests": 72688.0, + "total_tests_per_thousand": 3.052, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 183.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 640.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-03", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 188.0, + "total_tests": 72876.0, + "total_tests_per_thousand": 3.06, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 644.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-04", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 170.0, + "total_tests": 73046.0, + "total_tests_per_thousand": 3.067, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 644.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-05", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 184.0, + "total_tests": 73230.0, + "total_tests_per_thousand": 3.075, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 658.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-06", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 138.0, + "total_tests": 73368.0, + "total_tests_per_thousand": 3.081, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 183.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1281.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-07", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 108.0, + "total_tests": 73476.0, + "total_tests_per_thousand": 3.085, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 165.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1155.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-08", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 129.0, + "total_tests": 73605.0, + "total_tests_per_thousand": 3.09, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 156.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1092.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-09", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 73757.0, + "total_tests_per_thousand": 3.097, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 153.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-10", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 73909.0, + "total_tests_per_thousand": 3.103, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 148.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-11", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 74044.0, + "total_tests_per_thousand": 3.109, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 143.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-12", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 142.0, + "total_tests": 74186.0, + "total_tests_per_thousand": 3.115, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-13", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 74304.0, + "total_tests_per_thousand": 3.12, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 134.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-14", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 111.0, + "total_tests": 74415.0, + "total_tests_per_thousand": 3.124, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 134.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-15", + "total_cases": 443.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 145.0, + "total_tests": 74560.0, + "total_tests_per_thousand": 3.131, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 136.0, + "new_tests_smoothed_per_thousand": 0.006, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-16", + "total_cases": 445.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.684, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 147.0, + "total_tests": 74707.0, + "total_tests_per_thousand": 3.137, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 136.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 476.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-17", + "total_cases": 445.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 146.0, + "total_tests": 74853.0, + "total_tests_per_thousand": 3.143, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 135.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 472.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-18", + "total_cases": 445.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 74988.0, + "total_tests_per_thousand": 3.149, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 135.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 472.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-19", + "total_cases": 446.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 159.0, + "total_tests": 75147.0, + "total_tests_per_thousand": 3.155, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 319.66700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-20", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 114.0, + "total_tests": 75261.0, + "total_tests_per_thousand": 3.16, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 319.66700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-21", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 104.0, + "total_tests": 75365.0, + "total_tests_per_thousand": 3.164, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 136.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 317.33299999999997, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 22.22 + }, + { + "date": "2020-06-22", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 156.0, + "total_tests": 75521.0, + "total_tests_per_thousand": 3.171, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 137.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 319.66700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-23", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 126.0, + "total_tests": 75647.0, + "total_tests_per_thousand": 3.176, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 134.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 938.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-24", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 173.0, + "total_tests": 75820.0, + "total_tests_per_thousand": 3.183, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 138.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 966.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-25", + "total_cases": 446.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.726, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 217.0, + "total_tests": 76037.0, + "total_tests_per_thousand": 3.193, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 1050.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-26", + "total_cases": 447.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 176.0, + "total_tests": 76213.0, + "total_tests_per_thousand": 3.2, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 1064.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-27", + "total_cases": 447.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 154.0, + "total_tests": 76367.0, + "total_tests_per_thousand": 3.206, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 158.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1106.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-28", + "total_cases": 447.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 127.0, + "total_tests": 76494.0, + "total_tests_per_thousand": 3.212, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 161.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1127.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-29", + "total_cases": 447.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 184.0, + "total_tests": 76678.0, + "total_tests_per_thousand": 3.219, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 165.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1155.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-06-30", + "total_cases": 447.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 210.0, + "total_tests": 76888.0, + "total_tests_per_thousand": 3.228, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 177.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1239.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-01", + "total_cases": 447.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 141.0, + "total_tests": 77029.0, + "total_tests_per_thousand": 3.234, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 173.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1211.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-02", + "total_cases": 448.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.81, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 129.0, + "total_tests": 77158.0, + "total_tests_per_thousand": 3.24, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 160.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 560.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-03", + "total_cases": 449.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 140.0, + "total_tests": 77298.0, + "total_tests_per_thousand": 3.246, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 542.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-04", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 119.0, + "total_tests": 77417.0, + "total_tests_per_thousand": 3.251, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 525.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-05", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 151.0, + "total_tests": 77568.0, + "total_tests_per_thousand": 3.257, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 153.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 535.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-06", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 177.0, + "total_tests": 77745.0, + "total_tests_per_thousand": 3.264, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 532.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-07", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 136.0, + "total_tests": 77881.0, + "total_tests_per_thousand": 3.27, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 142.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 497.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-08", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 141.0, + "total_tests": 78022.0, + "total_tests_per_thousand": 3.276, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 142.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 497.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-09", + "total_cases": 449.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.852, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 188.0, + "total_tests": 78210.0, + "total_tests_per_thousand": 3.284, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 1050.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-10", + "total_cases": 451.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 165.0, + "total_tests": 78375.0, + "total_tests_per_thousand": 3.291, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 154.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 539.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-11", + "total_cases": 451.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 118.0, + "total_tests": 78493.0, + "total_tests_per_thousand": 3.296, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 154.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 539.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-12", + "total_cases": 451.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 126.0, + "total_tests": 78619.0, + "total_tests_per_thousand": 3.301, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 525.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-13", + "total_cases": 451.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 126.0, + "total_tests": 78745.0, + "total_tests_per_thousand": 3.306, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 143.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 500.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-14", + "total_cases": 451.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 155.0, + "total_tests": 78900.0, + "total_tests_per_thousand": 3.313, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 511.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-15", + "total_cases": 451.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.936, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 164.0, + "total_tests": 79064.0, + "total_tests_per_thousand": 3.32, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 521.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-16", + "total_cases": 452.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.978, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 191.0, + "total_tests": 79255.0, + "total_tests_per_thousand": 3.328, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 347.667, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-17", + "total_cases": 454.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.062, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 145.0, + "total_tests": 79400.0, + "total_tests_per_thousand": 3.334, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 146.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 340.667, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-18", + "total_cases": 454.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.062, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 111.0, + "total_tests": 79511.0, + "total_tests_per_thousand": 3.338, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 338.333, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-19", + "total_cases": 455.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.104, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 79646.0, + "total_tests_per_thousand": 3.344, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 147.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 257.25, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-20", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 161.0, + "total_tests": 79807.0, + "total_tests_per_thousand": 3.351, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-21", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 143.0, + "total_tests": 79950.0, + "total_tests_per_thousand": 3.357, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 150.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 262.5, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-22", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 156.0, + "total_tests": 80106.0, + "total_tests_per_thousand": 3.363, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 149.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 260.75, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-23", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.104, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 164.0, + "total_tests": 80270.0, + "total_tests_per_thousand": 3.37, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 338.333, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-24", + "total_cases": 458.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.23, + "new_cases_per_million": 0.126, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 135.0, + "total_tests": 80405.0, + "total_tests_per_thousand": 3.376, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 144.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-25", + "total_cases": 458.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 95.0, + "total_tests": 80500.0, + "total_tests_per_thousand": 3.38, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 141.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 246.75, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-26", + "total_cases": 458.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.23, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 123.0, + "total_tests": 80623.0, + "total_tests_per_thousand": 3.385, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 140.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 326.66700000000003, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-27", + "total_cases": 462.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.398, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 201.0, + "total_tests": 80824.0, + "total_tests_per_thousand": 3.394, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 145.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 145.0, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-28", + "total_cases": 467.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.608, + "new_cases_per_million": 0.21, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 341.0, + "total_tests": 81165.0, + "total_tests_per_thousand": 3.408, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 174.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 101.5, + "positive_rate": 0.01, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-29", + "total_cases": 467.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 220.0, + "total_tests": 81385.0, + "total_tests_per_thousand": 3.417, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 183.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 106.75, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-30", + "total_cases": 467.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 203.0, + "total_tests": 81588.0, + "total_tests_per_thousand": 3.426, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 109.667, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-07-31", + "total_cases": 467.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.608, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 235.0, + "total_tests": 81823.0, + "total_tests_per_thousand": 3.436, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 203.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 157.889, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-01", + "total_cases": 474.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.902, + "new_cases_per_million": 0.294, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 104.0, + "total_tests": 81927.0, + "total_tests_per_thousand": 3.44, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 204.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 89.25, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-02", + "total_cases": 474.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.902, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 132.0, + "total_tests": 82059.0, + "total_tests_per_thousand": 3.445, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 205.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 89.68799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-03", + "total_cases": 475.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.944, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 273.0, + "total_tests": 82332.0, + "total_tests_per_thousand": 3.457, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 215.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 115.76899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-04", + "total_cases": 476.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.986, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 192.0, + "total_tests": 82524.0, + "total_tests_per_thousand": 3.465, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 194.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 150.889, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-05", + "total_cases": 476.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 212.0, + "total_tests": 82736.0, + "total_tests_per_thousand": 3.474, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 193.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 150.111, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-06", + "total_cases": 477.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.028, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 214.0, + "total_tests": 82950.0, + "total_tests_per_thousand": 3.483, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 195.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 136.5, + "positive_rate": 0.006999999999999999, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-07", + "total_cases": 477.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 164.0, + "total_tests": 83114.0, + "total_tests_per_thousand": 3.49, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 128.8, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-08", + "total_cases": 479.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.112, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 173.0, + "total_tests": 83287.0, + "total_tests_per_thousand": 3.497, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 194.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 271.6, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-09", + "total_cases": 480.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.154, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 142.0, + "total_tests": 83429.0, + "total_tests_per_thousand": 3.503, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 196.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 228.667, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-10", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 247.0, + "total_tests": 83676.0, + "total_tests_per_thousand": 3.513, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 192.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 268.8, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-11", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 147.0, + "total_tests": 83823.0, + "total_tests_per_thousand": 3.519, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 186.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 325.5, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-12", + "total_cases": 481.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.196, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 190.0, + "total_tests": 84013.0, + "total_tests_per_thousand": 3.527, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 254.8, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-13", + "total_cases": 481.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 229.0, + "total_tests": 84242.0, + "total_tests_per_thousand": 3.537, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 185.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 323.75, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-14", + "total_cases": 481.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.196, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 198.0, + "total_tests": 84440.0, + "total_tests_per_thousand": 3.545, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 189.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 330.75, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-15", + "total_cases": 482.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.238, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 133.0, + "total_tests": 84573.0, + "total_tests_per_thousand": 3.551, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 429.333, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-16", + "total_cases": 484.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.322, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 124.0, + "total_tests": 84697.0, + "total_tests_per_thousand": 3.556, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 181.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 316.75, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-17", + "total_cases": 485.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.364, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 260.0, + "total_tests": 84957.0, + "total_tests_per_thousand": 3.567, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 183.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 256.2, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-18", + "total_cases": 485.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.364, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 165.0, + "total_tests": 85122.0, + "total_tests_per_thousand": 3.574, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 186.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 260.4, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-19", + "total_cases": 486.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.406, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 222.0, + "total_tests": 85344.0, + "total_tests_per_thousand": 3.583, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-20", + "total_cases": 486.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.406, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 214.0, + "total_tests": 85558.0, + "total_tests_per_thousand": 3.592, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 263.2, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-21", + "total_cases": 486.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.406, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 217.0, + "total_tests": 85775.0, + "total_tests_per_thousand": 3.601, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 191.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 267.4, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-22", + "total_cases": 487.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.03, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 128.0, + "total_tests": 85903.0, + "total_tests_per_thousand": 3.607, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 190.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-23", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 117.0, + "total_tests": 86020.0, + "total_tests_per_thousand": 3.612, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 189.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 441.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-24", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 242.0, + "total_tests": 86262.0, + "total_tests_per_thousand": 3.622, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 186.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 651.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-25", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 155.0, + "total_tests": 86417.0, + "total_tests_per_thousand": 3.628, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 185.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 647.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-26", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 182.0, + "total_tests": 86599.0, + "total_tests_per_thousand": 3.636, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 179.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1253.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-27", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 204.0, + "total_tests": 86803.0, + "total_tests_per_thousand": 3.645, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 178.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1246.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-28", + "total_cases": 487.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 177.0, + "total_tests": 86980.0, + "total_tests_per_thousand": 3.652, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 172.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1204.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-29", + "total_cases": 488.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.49, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 149.0, + "total_tests": 87129.0, + "total_tests_per_thousand": 3.658, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 175.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1225.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-30", + "total_cases": 488.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 157.0, + "total_tests": 87286.0, + "total_tests_per_thousand": 3.665, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 181.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1267.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-08-31", + "total_cases": 488.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 216.0, + "total_tests": 87502.0, + "total_tests_per_thousand": 3.674, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 177.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1239.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-09-01", + "total_cases": 488.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.49, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 145.0, + "total_tests": 87647.0, + "total_tests_per_thousand": 3.68, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 176.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 1232.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-09-02", + "total_cases": 489.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.532, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 87799.0, + "total_tests_per_thousand": 3.686, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 171.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 598.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-09-03", + "total_cases": 489.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.532, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 232.0, + "total_tests": 88031.0, + "total_tests_per_thousand": 3.696, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 175.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 612.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 19.44 + }, + { + "date": "2020-09-04", + "total_cases": 490.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.574, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 490.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.294, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "TJK": { + "continent": "Asia", + "location": "Tajikistan", + "population": 9537642.0, + "population_density": 64.281, + "median_age": 23.3, + "aged_65_older": 3.466, + "aged_70_older": 2.155, + "gdp_per_capita": 2896.913, + "extreme_poverty": 4.8, + "cardiovasc_death_rate": 427.698, + "diabetes_prevalence": 7.11, + "handwashing_facilities": 72.704, + "hospital_beds_per_thousand": 4.8, + "life_expectancy": 71.1, + "data": [ + { + "date": "2020-05-01", + "total_cases": 15.0, + "new_cases": 15.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.573, + "new_cases_per_million": 1.573, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-05-02", + "total_cases": 15.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.573, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-05-03", + "total_cases": 32.0, + "new_cases": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.355, + "new_cases_per_million": 1.782, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 46.3 + }, + { + "date": "2020-05-04", + "total_cases": 76.0, + "new_cases": 44.0, + "total_deaths": 2.0, + "new_deaths": 2.0, + "total_cases_per_million": 7.968, + "new_cases_per_million": 4.613, + "total_deaths_per_million": 0.21, + "new_deaths_per_million": 0.21, + "stringency_index": 48.15 + }, + { + "date": "2020-05-05", + "total_cases": 230.0, + "new_cases": 154.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "total_cases_per_million": 24.115, + "new_cases_per_million": 16.147, + "total_deaths_per_million": 0.315, + "new_deaths_per_million": 0.105, + "stringency_index": 48.15 + }, + { + "date": "2020-05-06", + "total_cases": 293.0, + "new_cases": 63.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "total_cases_per_million": 30.72, + "new_cases_per_million": 6.605, + "total_deaths_per_million": 0.524, + "new_deaths_per_million": 0.21, + "stringency_index": 48.15 + }, + { + "date": "2020-05-07", + "total_cases": 379.0, + "new_cases": 86.0, + "new_cases_smoothed": 54.143, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 39.737, + "new_cases_per_million": 9.017, + "new_cases_smoothed_per_million": 5.677, + "total_deaths_per_million": 0.839, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 48.15 + }, + { + "date": "2020-05-08", + "total_cases": 461.0, + "new_cases": 82.0, + "new_cases_smoothed": 63.714, + "total_deaths": 12.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 48.335, + "new_cases_per_million": 8.598, + "new_cases_smoothed_per_million": 6.68, + "total_deaths_per_million": 1.258, + "new_deaths_per_million": 0.419, + "new_deaths_smoothed_per_million": 0.18, + "stringency_index": 48.15 + }, + { + "date": "2020-05-09", + "total_cases": 522.0, + "new_cases": 61.0, + "new_cases_smoothed": 72.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 54.731, + "new_cases_per_million": 6.396, + "new_cases_smoothed_per_million": 7.594, + "total_deaths_per_million": 1.258, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.18, + "stringency_index": 53.7 + }, + { + "date": "2020-05-10", + "total_cases": 612.0, + "new_cases": 90.0, + "new_cases_smoothed": 82.857, + "total_deaths": 20.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 64.167, + "new_cases_per_million": 9.436, + "new_cases_smoothed_per_million": 8.687, + "total_deaths_per_million": 2.097, + "new_deaths_per_million": 0.839, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 53.7 + }, + { + "date": "2020-05-11", + "total_cases": 612.0, + "new_cases": 0.0, + "new_cases_smoothed": 76.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 64.167, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.028, + "total_deaths_per_million": 2.097, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.27, + "stringency_index": 53.7 + }, + { + "date": "2020-05-12", + "total_cases": 661.0, + "new_cases": 49.0, + "new_cases_smoothed": 61.571, + "total_deaths": 21.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 69.304, + "new_cases_per_million": 5.138, + "new_cases_smoothed_per_million": 6.456, + "total_deaths_per_million": 2.202, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.27, + "stringency_index": 51.85 + }, + { + "date": "2020-05-13", + "total_cases": 729.0, + "new_cases": 68.0, + "new_cases_smoothed": 62.286, + "total_deaths": 23.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 76.434, + "new_cases_per_million": 7.13, + "new_cases_smoothed_per_million": 6.531, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.21, + "new_deaths_smoothed_per_million": 0.27, + "stringency_index": 51.85 + }, + { + "date": "2020-05-14", + "total_cases": 801.0, + "new_cases": 72.0, + "new_cases_smoothed": 60.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 83.983, + "new_cases_per_million": 7.549, + "new_cases_smoothed_per_million": 6.321, + "total_deaths_per_million": 2.411, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 51.85 + }, + { + "date": "2020-05-15", + "total_cases": 907.0, + "new_cases": 106.0, + "new_cases_smoothed": 63.714, + "total_deaths": 29.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 95.097, + "new_cases_per_million": 11.114, + "new_cases_smoothed_per_million": 6.68, + "total_deaths_per_million": 3.041, + "new_deaths_per_million": 0.629, + "new_deaths_smoothed_per_million": 0.255, + "stringency_index": 51.85 + }, + { + "date": "2020-05-16", + "total_cases": 1118.0, + "new_cases": 211.0, + "new_cases_smoothed": 85.143, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 117.22, + "new_cases_per_million": 22.123, + "new_cases_smoothed_per_million": 8.927, + "total_deaths_per_million": 3.46, + "new_deaths_per_million": 0.419, + "new_deaths_smoothed_per_million": 0.315, + "stringency_index": 51.85 + }, + { + "date": "2020-05-17", + "total_cases": 1322.0, + "new_cases": 204.0, + "new_cases_smoothed": 101.429, + "total_deaths": 36.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 138.609, + "new_cases_per_million": 21.389, + "new_cases_smoothed_per_million": 10.635, + "total_deaths_per_million": 3.775, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.24, + "stringency_index": 51.85 + }, + { + "date": "2020-05-18", + "total_cases": 1524.0, + "new_cases": 202.0, + "new_cases_smoothed": 130.286, + "total_deaths": 39.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 159.788, + "new_cases_per_million": 21.179, + "new_cases_smoothed_per_million": 13.66, + "total_deaths_per_million": 4.089, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.285, + "stringency_index": 51.85 + }, + { + "date": "2020-05-19", + "total_cases": 1729.0, + "new_cases": 205.0, + "new_cases_smoothed": 152.571, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 181.282, + "new_cases_per_million": 21.494, + "new_cases_smoothed_per_million": 15.997, + "total_deaths_per_million": 4.299, + "new_deaths_per_million": 0.21, + "new_deaths_smoothed_per_million": 0.3, + "stringency_index": 51.85 + }, + { + "date": "2020-05-20", + "total_cases": 1729.0, + "new_cases": 0.0, + "new_cases_smoothed": 142.857, + "total_deaths": 41.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 181.282, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.978, + "total_deaths_per_million": 4.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.27, + "stringency_index": 51.85 + }, + { + "date": "2020-05-21", + "total_cases": 1936.0, + "new_cases": 207.0, + "new_cases_smoothed": 162.143, + "total_deaths": 44.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 202.985, + "new_cases_per_million": 21.703, + "new_cases_smoothed_per_million": 17.0, + "total_deaths_per_million": 4.613, + "new_deaths_per_million": 0.315, + "new_deaths_smoothed_per_million": 0.315, + "stringency_index": 51.85 + }, + { + "date": "2020-05-22", + "total_cases": 2140.0, + "new_cases": 204.0, + "new_cases_smoothed": 176.143, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 224.374, + "new_cases_per_million": 21.389, + "new_cases_smoothed_per_million": 18.468, + "total_deaths_per_million": 4.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 51.85 + }, + { + "date": "2020-05-23", + "total_cases": 2350.0, + "new_cases": 210.0, + "new_cases_smoothed": 176.0, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 246.392, + "new_cases_per_million": 22.018, + "new_cases_smoothed_per_million": 18.453, + "total_deaths_per_million": 4.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.165, + "stringency_index": 51.85 + }, + { + "date": "2020-05-24", + "total_cases": 2551.0, + "new_cases": 201.0, + "new_cases_smoothed": 175.571, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 267.467, + "new_cases_per_million": 21.074, + "new_cases_smoothed_per_million": 18.408, + "total_deaths_per_million": 4.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 51.85 + }, + { + "date": "2020-05-25", + "total_cases": 2738.0, + "new_cases": 187.0, + "new_cases_smoothed": 173.429, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 287.073, + "new_cases_per_million": 19.607, + "new_cases_smoothed_per_million": 18.184, + "total_deaths_per_million": 4.613, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 51.85 + }, + { + "date": "2020-05-26", + "total_cases": 3100.0, + "new_cases": 362.0, + "new_cases_smoothed": 195.857, + "total_deaths": 46.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 325.028, + "new_cases_per_million": 37.955, + "new_cases_smoothed_per_million": 20.535, + "total_deaths_per_million": 4.823, + "new_deaths_per_million": 0.21, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 51.85 + }, + { + "date": "2020-05-27", + "total_cases": 3100.0, + "new_cases": 0.0, + "new_cases_smoothed": 195.857, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 325.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.535, + "total_deaths_per_million": 4.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.075, + "stringency_index": 51.85 + }, + { + "date": "2020-05-28", + "total_cases": 3100.0, + "new_cases": 0.0, + "new_cases_smoothed": 166.286, + "total_deaths": 46.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 325.028, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.435, + "total_deaths_per_million": 4.823, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 51.85 + }, + { + "date": "2020-05-29", + "total_cases": 3563.0, + "new_cases": 463.0, + "new_cases_smoothed": 203.286, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 373.572, + "new_cases_per_million": 48.544, + "new_cases_smoothed_per_million": 21.314, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 51.85 + }, + { + "date": "2020-05-30", + "total_cases": 3563.0, + "new_cases": 0.0, + "new_cases_smoothed": 173.286, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 373.572, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.169, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 51.85 + }, + { + "date": "2020-05-31", + "total_cases": 3807.0, + "new_cases": 244.0, + "new_cases_smoothed": 179.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 399.155, + "new_cases_per_million": 25.583, + "new_cases_smoothed_per_million": 18.813, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 51.85 + }, + { + "date": "2020-06-01", + "total_cases": 3807.0, + "new_cases": 0.0, + "new_cases_smoothed": 152.714, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 399.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.012, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 51.85 + }, + { + "date": "2020-06-02", + "total_cases": 3930.0, + "new_cases": 123.0, + "new_cases_smoothed": 118.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 412.052, + "new_cases_per_million": 12.896, + "new_cases_smoothed_per_million": 12.432, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 51.85 + }, + { + "date": "2020-06-03", + "total_cases": 4013.0, + "new_cases": 83.0, + "new_cases_smoothed": 130.429, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 420.754, + "new_cases_per_million": 8.702, + "new_cases_smoothed_per_million": 13.675, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-04", + "total_cases": 4100.0, + "new_cases": 87.0, + "new_cases_smoothed": 142.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 429.876, + "new_cases_per_million": 9.122, + "new_cases_smoothed_per_million": 14.978, + "total_deaths_per_million": 4.928, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-05", + "total_cases": 4289.0, + "new_cases": 189.0, + "new_cases_smoothed": 103.714, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 449.692, + "new_cases_per_million": 19.816, + "new_cases_smoothed_per_million": 10.874, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-06", + "total_cases": 4370.0, + "new_cases": 81.0, + "new_cases_smoothed": 115.286, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 458.185, + "new_cases_per_million": 8.493, + "new_cases_smoothed_per_million": 12.087, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-07", + "total_cases": 4453.0, + "new_cases": 83.0, + "new_cases_smoothed": 92.286, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 466.887, + "new_cases_per_million": 8.702, + "new_cases_smoothed_per_million": 9.676, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-08", + "total_cases": 4529.0, + "new_cases": 76.0, + "new_cases_smoothed": 103.143, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 474.855, + "new_cases_per_million": 7.968, + "new_cases_smoothed_per_million": 10.814, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-09", + "total_cases": 4609.0, + "new_cases": 80.0, + "new_cases_smoothed": 97.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 483.243, + "new_cases_per_million": 8.388, + "new_cases_smoothed_per_million": 10.17, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-10", + "total_cases": 4690.0, + "new_cases": 81.0, + "new_cases_smoothed": 96.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 491.736, + "new_cases_per_million": 8.493, + "new_cases_smoothed_per_million": 10.14, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-11", + "total_cases": 4763.0, + "new_cases": 73.0, + "new_cases_smoothed": 94.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 499.39, + "new_cases_per_million": 7.654, + "new_cases_smoothed_per_million": 9.931, + "total_deaths_per_million": 5.033, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-12", + "total_cases": 4834.0, + "new_cases": 71.0, + "new_cases_smoothed": 77.857, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 506.834, + "new_cases_per_million": 7.444, + "new_cases_smoothed_per_million": 8.163, + "total_deaths_per_million": 5.138, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-13", + "total_cases": 4902.0, + "new_cases": 68.0, + "new_cases_smoothed": 76.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 513.964, + "new_cases_per_million": 7.13, + "new_cases_smoothed_per_million": 7.968, + "total_deaths_per_million": 5.138, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 65.74 + }, + { + "date": "2020-06-14", + "total_cases": 4971.0, + "new_cases": 69.0, + "new_cases_smoothed": 74.0, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 521.198, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 7.759, + "total_deaths_per_million": 5.242, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 65.74 + }, + { + "date": "2020-06-15", + "total_cases": 5035.0, + "new_cases": 64.0, + "new_cases_smoothed": 72.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 527.908, + "new_cases_per_million": 6.71, + "new_cases_smoothed_per_million": 7.579, + "total_deaths_per_million": 5.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.81 + }, + { + "date": "2020-06-16", + "total_cases": 5097.0, + "new_cases": 62.0, + "new_cases_smoothed": 69.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 534.409, + "new_cases_per_million": 6.501, + "new_cases_smoothed_per_million": 7.309, + "total_deaths_per_million": 5.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.81 + }, + { + "date": "2020-06-17", + "total_cases": 5160.0, + "new_cases": 63.0, + "new_cases_smoothed": 67.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 541.014, + "new_cases_per_million": 6.605, + "new_cases_smoothed_per_million": 7.04, + "total_deaths_per_million": 5.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.81 + }, + { + "date": "2020-06-18", + "total_cases": 5221.0, + "new_cases": 61.0, + "new_cases_smoothed": 65.429, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 547.41, + "new_cases_per_million": 6.396, + "new_cases_smoothed_per_million": 6.86, + "total_deaths_per_million": 5.347, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 64.81 + }, + { + "date": "2020-06-19", + "total_cases": 5279.0, + "new_cases": 58.0, + "new_cases_smoothed": 63.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 553.491, + "new_cases_per_million": 6.081, + "new_cases_smoothed_per_million": 6.665, + "total_deaths_per_million": 5.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.81 + }, + { + "date": "2020-06-20", + "total_cases": 5338.0, + "new_cases": 59.0, + "new_cases_smoothed": 62.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 559.677, + "new_cases_per_million": 6.186, + "new_cases_smoothed_per_million": 6.531, + "total_deaths_per_million": 5.347, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-06-21", + "total_cases": 5399.0, + "new_cases": 61.0, + "new_cases_smoothed": 61.143, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 566.073, + "new_cases_per_million": 6.396, + "new_cases_smoothed_per_million": 6.411, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-06-22", + "total_cases": 5457.0, + "new_cases": 58.0, + "new_cases_smoothed": 60.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 572.154, + "new_cases_per_million": 6.081, + "new_cases_smoothed_per_million": 6.321, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-06-23", + "total_cases": 5513.0, + "new_cases": 56.0, + "new_cases_smoothed": 59.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 578.025, + "new_cases_per_million": 5.871, + "new_cases_smoothed_per_million": 6.231, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-06-24", + "total_cases": 5567.0, + "new_cases": 54.0, + "new_cases_smoothed": 58.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 583.687, + "new_cases_per_million": 5.662, + "new_cases_smoothed_per_million": 6.096, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 73.15 + }, + { + "date": "2020-06-25", + "total_cases": 5630.0, + "new_cases": 63.0, + "new_cases_smoothed": 58.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 590.293, + "new_cases_per_million": 6.605, + "new_cases_smoothed_per_million": 6.126, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 73.15 + }, + { + "date": "2020-06-26", + "total_cases": 5691.0, + "new_cases": 61.0, + "new_cases_smoothed": 58.857, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 596.688, + "new_cases_per_million": 6.396, + "new_cases_smoothed_per_million": 6.171, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 73.15 + }, + { + "date": "2020-06-27", + "total_cases": 5747.0, + "new_cases": 56.0, + "new_cases_smoothed": 58.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 602.56, + "new_cases_per_million": 5.871, + "new_cases_smoothed_per_million": 6.126, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 73.15 + }, + { + "date": "2020-06-28", + "total_cases": 5799.0, + "new_cases": 52.0, + "new_cases_smoothed": 57.143, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 608.012, + "new_cases_per_million": 5.452, + "new_cases_smoothed_per_million": 5.991, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-29", + "total_cases": 5849.0, + "new_cases": 50.0, + "new_cases_smoothed": 56.0, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 613.254, + "new_cases_per_million": 5.242, + "new_cases_smoothed_per_million": 5.871, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-30", + "total_cases": 5900.0, + "new_cases": 51.0, + "new_cases_smoothed": 55.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 618.602, + "new_cases_per_million": 5.347, + "new_cases_smoothed_per_million": 5.797, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-07-01", + "total_cases": 5954.0, + "new_cases": 54.0, + "new_cases_smoothed": 55.286, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 624.263, + "new_cases_per_million": 5.662, + "new_cases_smoothed_per_million": 5.797, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-02", + "total_cases": 6005.0, + "new_cases": 51.0, + "new_cases_smoothed": 53.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 629.611, + "new_cases_per_million": 5.347, + "new_cases_smoothed_per_million": 5.617, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-03", + "total_cases": 6058.0, + "new_cases": 53.0, + "new_cases_smoothed": 52.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 635.167, + "new_cases_per_million": 5.557, + "new_cases_smoothed_per_million": 5.497, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-04", + "total_cases": 6108.0, + "new_cases": 50.0, + "new_cases_smoothed": 51.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 640.41, + "new_cases_per_million": 5.242, + "new_cases_smoothed_per_million": 5.407, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-05", + "total_cases": 6159.0, + "new_cases": 51.0, + "new_cases_smoothed": 51.429, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 645.757, + "new_cases_per_million": 5.347, + "new_cases_smoothed_per_million": 5.392, + "total_deaths_per_million": 5.452, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.37 + }, + { + "date": "2020-07-06", + "total_cases": 6213.0, + "new_cases": 54.0, + "new_cases_smoothed": 52.0, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 651.419, + "new_cases_per_million": 5.662, + "new_cases_smoothed_per_million": 5.452, + "total_deaths_per_million": 5.557, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-07-07", + "total_cases": 6262.0, + "new_cases": 49.0, + "new_cases_smoothed": 51.714, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 656.556, + "new_cases_per_million": 5.138, + "new_cases_smoothed_per_million": 5.422, + "total_deaths_per_million": 5.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-07-08", + "total_cases": 6315.0, + "new_cases": 53.0, + "new_cases_smoothed": 51.571, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 662.113, + "new_cases_per_million": 5.557, + "new_cases_smoothed_per_million": 5.407, + "total_deaths_per_million": 5.557, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 70.37 + }, + { + "date": "2020-07-09", + "total_cases": 6364.0, + "new_cases": 49.0, + "new_cases_smoothed": 51.286, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 667.251, + "new_cases_per_million": 5.138, + "new_cases_smoothed_per_million": 5.377, + "total_deaths_per_million": 5.662, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 70.37 + }, + { + "date": "2020-07-10", + "total_cases": 6410.0, + "new_cases": 46.0, + "new_cases_smoothed": 50.286, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 672.074, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 5.272, + "total_deaths_per_million": 5.662, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 70.37 + }, + { + "date": "2020-07-11", + "total_cases": 6457.0, + "new_cases": 47.0, + "new_cases_smoothed": 49.857, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 677.002, + "new_cases_per_million": 4.928, + "new_cases_smoothed_per_million": 5.227, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 70.37 + }, + { + "date": "2020-07-12", + "total_cases": 6506.0, + "new_cases": 49.0, + "new_cases_smoothed": 49.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 682.139, + "new_cases_per_million": 5.138, + "new_cases_smoothed_per_million": 5.197, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 70.37 + }, + { + "date": "2020-07-13", + "total_cases": 6552.0, + "new_cases": 46.0, + "new_cases_smoothed": 48.429, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 686.962, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 5.078, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 70.37 + }, + { + "date": "2020-07-14", + "total_cases": 6595.0, + "new_cases": 43.0, + "new_cases_smoothed": 47.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 691.471, + "new_cases_per_million": 4.508, + "new_cases_smoothed_per_million": 4.988, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 70.37 + }, + { + "date": "2020-07-15", + "total_cases": 6643.0, + "new_cases": 48.0, + "new_cases_smoothed": 46.857, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 696.503, + "new_cases_per_million": 5.033, + "new_cases_smoothed_per_million": 4.913, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 70.37 + }, + { + "date": "2020-07-16", + "total_cases": 6695.0, + "new_cases": 52.0, + "new_cases_smoothed": 47.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 701.955, + "new_cases_per_million": 5.452, + "new_cases_smoothed_per_million": 4.958, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-17", + "total_cases": 6741.0, + "new_cases": 46.0, + "new_cases_smoothed": 47.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 706.778, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 4.958, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-18", + "total_cases": 6786.0, + "new_cases": 45.0, + "new_cases_smoothed": 47.0, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 711.497, + "new_cases_per_million": 4.718, + "new_cases_smoothed_per_million": 4.928, + "total_deaths_per_million": 5.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 62.04 + }, + { + "date": "2020-07-19", + "total_cases": 6834.0, + "new_cases": 48.0, + "new_cases_smoothed": 46.857, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 716.529, + "new_cases_per_million": 5.033, + "new_cases_smoothed_per_million": 4.913, + "total_deaths_per_million": 5.976, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-20", + "total_cases": 6878.0, + "new_cases": 44.0, + "new_cases_smoothed": 46.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 721.143, + "new_cases_per_million": 4.613, + "new_cases_smoothed_per_million": 4.883, + "total_deaths_per_million": 5.976, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-21", + "total_cases": 6921.0, + "new_cases": 43.0, + "new_cases_smoothed": 46.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 725.651, + "new_cases_per_million": 4.508, + "new_cases_smoothed_per_million": 4.883, + "total_deaths_per_million": 5.976, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-22", + "total_cases": 6967.0, + "new_cases": 46.0, + "new_cases_smoothed": 46.286, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 730.474, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 4.853, + "total_deaths_per_million": 5.976, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 62.04 + }, + { + "date": "2020-07-23", + "total_cases": 7015.0, + "new_cases": 48.0, + "new_cases_smoothed": 45.714, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 735.507, + "new_cases_per_million": 5.033, + "new_cases_smoothed_per_million": 4.793, + "total_deaths_per_million": 6.081, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 62.04 + }, + { + "date": "2020-07-24", + "total_cases": 7060.0, + "new_cases": 45.0, + "new_cases_smoothed": 45.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 740.225, + "new_cases_per_million": 4.718, + "new_cases_smoothed_per_million": 4.778, + "total_deaths_per_million": 6.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-07-25", + "total_cases": 7104.0, + "new_cases": 44.0, + "new_cases_smoothed": 45.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 744.838, + "new_cases_per_million": 4.613, + "new_cases_smoothed_per_million": 4.763, + "total_deaths_per_million": 6.081, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-07-26", + "total_cases": 7150.0, + "new_cases": 46.0, + "new_cases_smoothed": 45.143, + "total_deaths": 59.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 749.661, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 4.733, + "total_deaths_per_million": 6.186, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-07-27", + "total_cases": 7192.0, + "new_cases": 42.0, + "new_cases_smoothed": 44.857, + "total_deaths": 59.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 754.065, + "new_cases_per_million": 4.404, + "new_cases_smoothed_per_million": 4.703, + "total_deaths_per_million": 6.186, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-07-28", + "total_cases": 7235.0, + "new_cases": 43.0, + "new_cases_smoothed": 44.857, + "total_deaths": 60.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 758.573, + "new_cases_per_million": 4.508, + "new_cases_smoothed_per_million": 4.703, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 56.48 + }, + { + "date": "2020-07-29", + "total_cases": 7276.0, + "new_cases": 41.0, + "new_cases_smoothed": 44.143, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 762.872, + "new_cases_per_million": 4.299, + "new_cases_smoothed_per_million": 4.628, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 56.48 + }, + { + "date": "2020-07-30", + "total_cases": 7320.0, + "new_cases": 44.0, + "new_cases_smoothed": 43.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 767.485, + "new_cases_per_million": 4.613, + "new_cases_smoothed_per_million": 4.568, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-07-31", + "total_cases": 7366.0, + "new_cases": 46.0, + "new_cases_smoothed": 43.714, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 772.308, + "new_cases_per_million": 4.823, + "new_cases_smoothed_per_million": 4.583, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-08-01", + "total_cases": 7409.0, + "new_cases": 43.0, + "new_cases_smoothed": 43.571, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 776.817, + "new_cases_per_million": 4.508, + "new_cases_smoothed_per_million": 4.568, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-08-02", + "total_cases": 7451.0, + "new_cases": 42.0, + "new_cases_smoothed": 43.0, + "total_deaths": 60.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 781.22, + "new_cases_per_million": 4.404, + "new_cases_smoothed_per_million": 4.508, + "total_deaths_per_million": 6.291, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 56.48 + }, + { + "date": "2020-08-03", + "total_cases": 7495.0, + "new_cases": 44.0, + "new_cases_smoothed": 43.286, + "total_deaths": 61.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 785.834, + "new_cases_per_million": 4.613, + "new_cases_smoothed_per_million": 4.538, + "total_deaths_per_million": 6.396, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 56.48 + }, + { + "date": "2020-08-04", + "total_cases": 7538.0, + "new_cases": 43.0, + "new_cases_smoothed": 43.286, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 790.342, + "new_cases_per_million": 4.508, + "new_cases_smoothed_per_million": 4.538, + "total_deaths_per_million": 6.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 56.48 + }, + { + "date": "2020-08-05", + "total_cases": 7583.0, + "new_cases": 45.0, + "new_cases_smoothed": 43.857, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 795.06, + "new_cases_per_million": 4.718, + "new_cases_smoothed_per_million": 4.598, + "total_deaths_per_million": 6.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 56.48 + }, + { + "date": "2020-08-06", + "total_cases": 7625.0, + "new_cases": 42.0, + "new_cases_smoothed": 43.571, + "total_deaths": 61.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 799.464, + "new_cases_per_million": 4.404, + "new_cases_smoothed_per_million": 4.568, + "total_deaths_per_million": 6.396, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 56.48 + }, + { + "date": "2020-08-07", + "total_cases": 7665.0, + "new_cases": 40.0, + "new_cases_smoothed": 42.714, + "total_deaths": 62.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 803.658, + "new_cases_per_million": 4.194, + "new_cases_smoothed_per_million": 4.478, + "total_deaths_per_million": 6.501, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-08", + "total_cases": 7706.0, + "new_cases": 41.0, + "new_cases_smoothed": 42.429, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 807.957, + "new_cases_per_million": 4.299, + "new_cases_smoothed_per_million": 4.449, + "total_deaths_per_million": 6.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-09", + "total_cases": 7706.0, + "new_cases": 0.0, + "new_cases_smoothed": 36.429, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 807.957, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.819, + "total_deaths_per_million": 6.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-10", + "total_cases": 7745.0, + "new_cases": 39.0, + "new_cases_smoothed": 35.714, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 812.046, + "new_cases_per_million": 4.089, + "new_cases_smoothed_per_million": 3.745, + "total_deaths_per_million": 6.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 54.63 + }, + { + "date": "2020-08-11", + "total_cases": 7827.0, + "new_cases": 82.0, + "new_cases_smoothed": 41.286, + "total_deaths": 62.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 820.643, + "new_cases_per_million": 8.598, + "new_cases_smoothed_per_million": 4.329, + "total_deaths_per_million": 6.501, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 54.63 + }, + { + "date": "2020-08-12", + "total_cases": 7871.0, + "new_cases": 44.0, + "new_cases_smoothed": 41.143, + "total_deaths": 63.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 825.256, + "new_cases_per_million": 4.613, + "new_cases_smoothed_per_million": 4.314, + "total_deaths_per_million": 6.605, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-13", + "total_cases": 7912.0, + "new_cases": 41.0, + "new_cases_smoothed": 41.0, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 829.555, + "new_cases_per_million": 4.299, + "new_cases_smoothed_per_million": 4.299, + "total_deaths_per_million": 6.605, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-14", + "total_cases": 7950.0, + "new_cases": 38.0, + "new_cases_smoothed": 40.714, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 833.539, + "new_cases_per_million": 3.984, + "new_cases_smoothed_per_million": 4.269, + "total_deaths_per_million": 6.605, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 54.63 + }, + { + "date": "2020-08-15", + "total_cases": 7989.0, + "new_cases": 39.0, + "new_cases_smoothed": 40.429, + "total_deaths": 63.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 837.628, + "new_cases_per_million": 4.089, + "new_cases_smoothed_per_million": 4.239, + "total_deaths_per_million": 6.605, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 54.63 + }, + { + "date": "2020-08-16", + "total_cases": 8029.0, + "new_cases": 40.0, + "new_cases_smoothed": 46.143, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 841.822, + "new_cases_per_million": 4.194, + "new_cases_smoothed_per_million": 4.838, + "total_deaths_per_million": 6.71, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 54.63 + }, + { + "date": "2020-08-17", + "total_cases": 8065.0, + "new_cases": 36.0, + "new_cases_smoothed": 45.714, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 845.597, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 4.793, + "total_deaths_per_million": 6.71, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-18", + "total_cases": 8099.0, + "new_cases": 34.0, + "new_cases_smoothed": 38.857, + "total_deaths": 64.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 849.162, + "new_cases_per_million": 3.565, + "new_cases_smoothed_per_million": 4.074, + "total_deaths_per_million": 6.71, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-19", + "total_cases": 8131.0, + "new_cases": 32.0, + "new_cases_smoothed": 37.143, + "total_deaths": 65.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 852.517, + "new_cases_per_million": 3.355, + "new_cases_smoothed_per_million": 3.894, + "total_deaths_per_million": 6.815, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-20", + "total_cases": 8166.0, + "new_cases": 35.0, + "new_cases_smoothed": 36.286, + "total_deaths": 65.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 856.186, + "new_cases_per_million": 3.67, + "new_cases_smoothed_per_million": 3.804, + "total_deaths_per_million": 6.815, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-21", + "total_cases": 8203.0, + "new_cases": 37.0, + "new_cases_smoothed": 36.143, + "total_deaths": 66.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 860.066, + "new_cases_per_million": 3.879, + "new_cases_smoothed_per_million": 3.789, + "total_deaths_per_million": 6.92, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 47.22 + }, + { + "date": "2020-08-22", + "total_cases": 8241.0, + "new_cases": 38.0, + "new_cases_smoothed": 36.0, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 864.05, + "new_cases_per_million": 3.984, + "new_cases_smoothed_per_million": 3.775, + "total_deaths_per_million": 6.92, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 47.22 + }, + { + "date": "2020-08-23", + "total_cases": 8277.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.429, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 867.825, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.715, + "total_deaths_per_million": 6.92, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-24", + "total_cases": 8311.0, + "new_cases": 34.0, + "new_cases_smoothed": 35.143, + "total_deaths": 66.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 871.389, + "new_cases_per_million": 3.565, + "new_cases_smoothed_per_million": 3.685, + "total_deaths_per_million": 6.92, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-25", + "total_cases": 8346.0, + "new_cases": 35.0, + "new_cases_smoothed": 35.286, + "total_deaths": 67.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 875.059, + "new_cases_per_million": 3.67, + "new_cases_smoothed_per_million": 3.7, + "total_deaths_per_million": 7.025, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 47.22 + }, + { + "date": "2020-08-26", + "total_cases": 8379.0, + "new_cases": 33.0, + "new_cases_smoothed": 35.429, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 878.519, + "new_cases_per_million": 3.46, + "new_cases_smoothed_per_million": 3.715, + "total_deaths_per_million": 7.025, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-27", + "total_cases": 8413.0, + "new_cases": 34.0, + "new_cases_smoothed": 35.286, + "total_deaths": 67.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 882.084, + "new_cases_per_million": 3.565, + "new_cases_smoothed_per_million": 3.7, + "total_deaths_per_million": 7.025, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 47.22 + }, + { + "date": "2020-08-28", + "total_cases": 8449.0, + "new_cases": 36.0, + "new_cases_smoothed": 35.143, + "total_deaths": 68.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 885.858, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.685, + "total_deaths_per_million": 7.13, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-08-29", + "total_cases": 8481.0, + "new_cases": 32.0, + "new_cases_smoothed": 34.286, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 889.213, + "new_cases_per_million": 3.355, + "new_cases_smoothed_per_million": 3.595, + "total_deaths_per_million": 7.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-08-30", + "total_cases": 8481.0, + "new_cases": 0.0, + "new_cases_smoothed": 29.143, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 889.213, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.056, + "total_deaths_per_million": 7.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-08-31", + "total_cases": 8550.0, + "new_cases": 69.0, + "new_cases_smoothed": 34.143, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 896.448, + "new_cases_per_million": 7.234, + "new_cases_smoothed_per_million": 3.58, + "total_deaths_per_million": 7.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-01", + "total_cases": 8583.0, + "new_cases": 33.0, + "new_cases_smoothed": 33.857, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 899.908, + "new_cases_per_million": 3.46, + "new_cases_smoothed_per_million": 3.55, + "total_deaths_per_million": 7.13, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-09-02", + "total_cases": 8619.0, + "new_cases": 36.0, + "new_cases_smoothed": 34.286, + "total_deaths": 69.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 903.682, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.595, + "total_deaths_per_million": 7.234, + "new_deaths_per_million": 0.105, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-03", + "total_cases": 8654.0, + "new_cases": 35.0, + "new_cases_smoothed": 34.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 907.352, + "new_cases_per_million": 3.67, + "new_cases_smoothed_per_million": 3.61, + "total_deaths_per_million": 7.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03 + }, + { + "date": "2020-09-04", + "total_cases": 8690.0, + "new_cases": 36.0, + "new_cases_smoothed": 34.429, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 911.127, + "new_cases_per_million": 3.775, + "new_cases_smoothed_per_million": 3.61, + "total_deaths_per_million": 7.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-09-05", + "total_cases": 8724.0, + "new_cases": 34.0, + "new_cases_smoothed": 34.714, + "total_deaths": 69.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 914.691, + "new_cases_per_million": 3.565, + "new_cases_smoothed_per_million": 3.64, + "total_deaths_per_million": 7.234, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015 + } + ] + }, + "TZA": { + "continent": "Africa", + "location": "Tanzania", + "population": 59734213.0, + "population_density": 64.699, + "median_age": 17.7, + "aged_65_older": 3.108, + "aged_70_older": 1.874, + "gdp_per_capita": 2683.304, + "extreme_poverty": 49.1, + "cardiovasc_death_rate": 217.288, + "diabetes_prevalence": 5.75, + "female_smokers": 3.3, + "male_smokers": 26.7, + "handwashing_facilities": 47.953, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 65.46, + "data": [ + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.017, + "new_cases_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.017, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-19", + "total_cases": 3.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.033, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-20", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-21", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-22", + "total_cases": 6.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.1, + "new_cases_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-23", + "total_cases": 12.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 44.44 + }, + { + "date": "2020-03-27", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.218, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-28", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.218, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-29", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.218, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-03-30", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.234, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-03-31", + "total_cases": 19.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.318, + "new_cases_per_million": 0.084, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-04-01", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.318, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-04-02", + "total_cases": 20.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.335, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-04-03", + "total_cases": 21.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.352, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-04-04", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 47.22 + }, + { + "date": "2020-04-05", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.352, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-06", + "total_cases": 22.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.368, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-07", + "total_cases": 24.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.402, + "new_cases_per_million": 0.033, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.402, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-09", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.419, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.419, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-11", + "total_cases": 32.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.536, + "new_cases_per_million": 0.117, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 47.22 + }, + { + "date": "2020-04-12", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-13", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-14", + "total_cases": 46.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.77, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-15", + "total_cases": 53.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.887, + "new_cases_per_million": 0.117, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.05, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-16", + "total_cases": 88.0, + "new_cases": 35.0, + "new_cases_smoothed": 9.0, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.473, + "new_cases_per_million": 0.586, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 50.0 + }, + { + "date": "2020-04-17", + "total_cases": 94.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.574, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.165, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 50.0 + }, + { + "date": "2020-04-18", + "total_cases": 147.0, + "new_cases": 53.0, + "new_cases_smoothed": 16.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.461, + "new_cases_per_million": 0.887, + "new_cases_smoothed_per_million": 0.275, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-19", + "total_cases": 148.0, + "new_cases": 1.0, + "new_cases_smoothed": 16.571, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.478, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.277, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-20", + "total_cases": 170.0, + "new_cases": 22.0, + "new_cases_smoothed": 19.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.846, + "new_cases_per_million": 0.368, + "new_cases_smoothed_per_million": 0.33, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-21", + "total_cases": 170.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.846, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 0.084, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-22", + "total_cases": 254.0, + "new_cases": 84.0, + "new_cases_smoothed": 28.714, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 4.252, + "new_cases_per_million": 1.406, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.134, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-04-23", + "total_cases": 285.0, + "new_cases": 31.0, + "new_cases_smoothed": 28.143, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4.771, + "new_cases_per_million": 0.519, + "new_cases_smoothed_per_million": 0.471, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-04-24", + "total_cases": 285.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 4.771, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.457, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-04-25", + "total_cases": 300.0, + "new_cases": 15.0, + "new_cases_smoothed": 21.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.022, + "new_cases_per_million": 0.251, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-04-26", + "total_cases": 300.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.022, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.364, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-04-27", + "total_cases": 300.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.022, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-04-28", + "total_cases": 300.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.022, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-04-29", + "total_cases": 306.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.123, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.167, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-04-30", + "total_cases": 480.0, + "new_cases": 174.0, + "new_cases_smoothed": 27.857, + "total_deaths": 16.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.036, + "new_cases_per_million": 2.913, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.1, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-05-01", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.857, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-05-02", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-05-03", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-05-04", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 50.0 + }, + { + "date": "2020-05-05", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 25.714, + "total_deaths": 18.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.43, + "total_deaths_per_million": 0.301, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 50.0 + }, + { + "date": "2020-05-06", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.416, + "total_deaths_per_million": 0.301, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 50.0 + }, + { + "date": "2020-05-07", + "total_cases": 480.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 8.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.301, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 50.0 + }, + { + "date": "2020-05-08", + "total_cases": 509.0, + "new_cases": 29.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.485, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.05, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-05-09", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-05-10", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-05-11", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 50.0 + }, + { + "date": "2020-05-12", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 50.0 + }, + { + "date": "2020-05-13", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 50.0 + }, + { + "date": "2020-05-14", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 50.0 + }, + { + "date": "2020-05-15", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-16", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-17", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-05-18", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-19", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-20", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-21", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-22", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-23", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-24", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-25", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-26", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 38.89 + }, + { + "date": "2020-05-27", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-05-28", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-05-29", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-05-30", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-05-31", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-06-01", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-02", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-03", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-04", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-05", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-06", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-07", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-08", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-09", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-10", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-11", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-12", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-13", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-14", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-15", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-16", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-17", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-18", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-19", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-20", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-21", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-22", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-23", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-24", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-25", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-26", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-27", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-28", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 32.41 + }, + { + "date": "2020-06-29", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-06-30", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-01", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-02", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-03", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-04", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-05", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-06", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-07", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-08", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-09", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-10", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-11", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-12", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-13", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-14", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-15", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-16", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-17", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-18", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-19", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.0 + }, + { + "date": "2020-07-20", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-21", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-22", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-23", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-24", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-25", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-26", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-27", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-28", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-29", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-30", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-07-31", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-01", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-02", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-03", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-04", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-05", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-06", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-07", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-08", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-09", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-10", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-11", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-12", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-13", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-14", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-15", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-16", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-17", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-08-18", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-19", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-20", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-21", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-22", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-23", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-24", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-25", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-26", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 22.22 + }, + { + "date": "2020-08-27", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 509.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.521, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "THA": { + "continent": "Asia", + "location": "Thailand", + "population": 69799978.0, + "population_density": 135.132, + "median_age": 40.1, + "aged_65_older": 11.373, + "aged_70_older": 6.89, + "gdp_per_capita": 16277.671, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 109.861, + "diabetes_prevalence": 7.04, + "female_smokers": 1.9, + "male_smokers": 38.8, + "handwashing_facilities": 90.67, + "hospital_beds_per_thousand": 2.1, + "life_expectancy": 77.15, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.014, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.072, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.072, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.115, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 14.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 19.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.272, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.272, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-03", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.272, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-04", + "total_cases": 19.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.272, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-05", + "total_cases": 25.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.358, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.358, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.358, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-08", + "total_cases": 32.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.458, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-09", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-10", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-11", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-12", + "total_cases": 33.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.473, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-13", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-14", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-15", + "total_cases": 34.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-16", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-17", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.487, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-18", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-19", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-20", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-21", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-22", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-23", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-24", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.501, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-25", + "total_cases": 37.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.53, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-26", + "total_cases": 40.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.573, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-27", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-28", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.573, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-29", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.602, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-01", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 0.0 + }, + { + "date": "2020-03-02", + "total_cases": 43.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.616, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 0.0 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.857, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.002, + "total_tests": 3680.0, + "total_tests_per_thousand": 0.053, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.429, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 215.0, + "total_tests": 3895.0, + "total_tests_per_thousand": 0.056, + "new_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "total_cases": 47.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.673, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 128.0, + "total_tests": 4023.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.143, + "new_cases_smoothed_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 211.0, + "total_tests": 4234.0, + "total_tests_per_thousand": 0.061, + "new_tests_per_thousand": 0.003, + "tests_units": "people tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-07", + "total_cases": 50.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.716, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 132.0, + "total_tests": 4366.0, + "total_tests_per_thousand": 0.063, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-08", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.016, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 4518.0, + "total_tests_per_thousand": 0.065, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 164.0, + "total_tests": 4682.0, + "total_tests_per_thousand": 0.067, + "new_tests_per_thousand": 0.002, + "tests_units": "people tested", + "stringency_index": 16.67 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 1.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 166.0, + "total_tests": 4848.0, + "total_tests_per_thousand": 0.069, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 167.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 167.0, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-11", + "total_cases": 59.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.845, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 384.0, + "total_tests": 5232.0, + "total_tests_per_thousand": 0.075, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 191.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 83.56200000000001, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-12", + "total_cases": 70.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.003, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 264.0, + "total_tests": 5496.0, + "total_tests_per_thousand": 0.079, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 210.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 63.913000000000004, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 3.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 217.0, + "total_tests": 5713.0, + "total_tests_per_thousand": 0.082, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 211.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 64.217, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-14", + "total_cases": 82.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.172, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 252.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 55.125, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 25.0 + }, + { + "date": "2020-03-15", + "total_cases": 82.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.175, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 6545.0, + "total_tests_per_thousand": 0.094, + "new_tests_smoothed": 290.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 63.438, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 26.85 + }, + { + "date": "2020-03-16", + "total_cases": 114.0, + "new_cases": 32.0, + "new_cases_smoothed": 9.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.633, + "new_cases_per_million": 0.458, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 500.0, + "total_tests": 7045.0, + "total_tests_per_thousand": 0.101, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 338.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 36.969, + "positive_rate": 0.027000000000000003, + "tests_units": "people tested", + "stringency_index": 33.8 + }, + { + "date": "2020-03-17", + "total_cases": 177.0, + "new_cases": 63.0, + "new_cases_smoothed": 18.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.536, + "new_cases_per_million": 0.903, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 21.660999999999998, + "positive_rate": 0.046, + "tests_units": "people tested", + "stringency_index": 39.35 + }, + { + "date": "2020-03-18", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 8157.0, + "total_tests_per_thousand": 0.117, + "new_tests_smoothed": 418.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 24.796999999999997, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-03-19", + "total_cases": 177.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 572.0, + "total_tests": 8729.0, + "total_tests_per_thousand": 0.125, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 462.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 30.224, + "positive_rate": 0.033, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-03-20", + "total_cases": 212.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.037, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 941.0, + "total_tests": 9670.0, + "total_tests_per_thousand": 0.139, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 565.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 27.851999999999997, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 48.61 + }, + { + "date": "2020-03-21", + "total_cases": 366.0, + "new_cases": 154.0, + "new_cases_smoothed": 40.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.244, + "new_cases_per_million": 2.206, + "new_cases_smoothed_per_million": 0.581, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 673.0, + "total_tests": 10343.0, + "total_tests_per_thousand": 0.148, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 602.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 14.838, + "positive_rate": 0.067, + "tests_units": "people tested", + "stringency_index": 52.31 + }, + { + "date": "2020-03-22", + "total_cases": 599.0, + "new_cases": 233.0, + "new_cases_smoothed": 73.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.582, + "new_cases_per_million": 3.338, + "new_cases_smoothed_per_million": 1.058, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 582.0, + "total_tests": 10925.0, + "total_tests_per_thousand": 0.157, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 626.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 8.476, + "positive_rate": 0.11800000000000001, + "tests_units": "people tested", + "stringency_index": 52.31 + }, + { + "date": "2020-03-23", + "total_cases": 721.0, + "new_cases": 122.0, + "new_cases_smoothed": 86.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.33, + "new_cases_per_million": 1.748, + "new_cases_smoothed_per_million": 1.242, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 882.0, + "total_tests": 11807.0, + "total_tests_per_thousand": 0.169, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 680.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 7.8420000000000005, + "positive_rate": 0.128, + "tests_units": "people tested", + "stringency_index": 52.31 + }, + { + "date": "2020-03-24", + "total_cases": 827.0, + "new_cases": 106.0, + "new_cases_smoothed": 92.857, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 11.848, + "new_cases_per_million": 1.519, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1220.0, + "total_tests": 13027.0, + "total_tests_per_thousand": 0.187, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 775.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 8.346, + "positive_rate": 0.12, + "tests_units": "people tested", + "stringency_index": 52.31 + }, + { + "date": "2020-03-25", + "total_cases": 934.0, + "new_cases": 107.0, + "new_cases_smoothed": 108.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 13.381, + "new_cases_per_million": 1.533, + "new_cases_smoothed_per_million": 1.549, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 995.0, + "total_tests": 14022.0, + "total_tests_per_thousand": 0.201, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 838.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 7.749, + "positive_rate": 0.129, + "tests_units": "people tested", + "stringency_index": 57.87 + }, + { + "date": "2020-03-26", + "total_cases": 1045.0, + "new_cases": 111.0, + "new_cases_smoothed": 124.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.971, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.777, + "total_deaths_per_million": 0.057, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1270.0, + "total_tests": 15292.0, + "total_tests_per_thousand": 0.219, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 938.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 7.565, + "positive_rate": 0.132, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-03-27", + "total_cases": 1136.0, + "new_cases": 91.0, + "new_cases_smoothed": 132.0, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 16.275, + "new_cases_per_million": 1.304, + "new_cases_smoothed_per_million": 1.891, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1181.0, + "total_tests": 16473.0, + "total_tests_per_thousand": 0.236, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 972.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 7.364, + "positive_rate": 0.136, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-03-28", + "total_cases": 1136.0, + "new_cases": 0.0, + "new_cases_smoothed": 110.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 16.275, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.576, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 667.0, + "total_tests": 17140.0, + "total_tests_per_thousand": 0.246, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 971.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 8.827, + "positive_rate": 0.113, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-03-29", + "total_cases": 1245.0, + "new_cases": 109.0, + "new_cases_smoothed": 92.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 17.837, + "new_cases_per_million": 1.562, + "new_cases_smoothed_per_million": 1.322, + "total_deaths_per_million": 0.086, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 639.0, + "total_tests": 17779.0, + "total_tests_per_thousand": 0.255, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 10.607999999999999, + "positive_rate": 0.094, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-03-30", + "total_cases": 1388.0, + "new_cases": 143.0, + "new_cases_smoothed": 95.286, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 19.885, + "new_cases_per_million": 2.049, + "new_cases_smoothed_per_million": 1.365, + "total_deaths_per_million": 0.1, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 917.0, + "total_tests": 18696.0, + "total_tests_per_thousand": 0.268, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 984.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 10.327, + "positive_rate": 0.09699999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-03-31", + "total_cases": 1651.0, + "new_cases": 263.0, + "new_cases_smoothed": 117.714, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 23.653, + "new_cases_per_million": 3.768, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 0.143, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1401.0, + "total_tests": 20097.0, + "total_tests_per_thousand": 0.288, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1010.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 8.58, + "positive_rate": 0.11699999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-04-01", + "total_cases": 1651.0, + "new_cases": 0.0, + "new_cases_smoothed": 102.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 23.653, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.467, + "total_deaths_per_million": 0.143, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 911.0, + "total_tests": 21008.0, + "total_tests_per_thousand": 0.301, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 998.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 9.743, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-04-02", + "total_cases": 1771.0, + "new_cases": 120.0, + "new_cases_smoothed": 103.714, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 25.373, + "new_cases_per_million": 1.719, + "new_cases_smoothed_per_million": 1.486, + "total_deaths_per_million": 0.172, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.016, + "new_tests": 1445.0, + "total_tests": 22453.0, + "total_tests_per_thousand": 0.322, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1023.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.863999999999999, + "positive_rate": 0.10099999999999999, + "tests_units": "people tested", + "stringency_index": 68.06 + }, + { + "date": "2020-04-03", + "total_cases": 1875.0, + "new_cases": 104.0, + "new_cases_smoothed": 105.571, + "total_deaths": 15.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 26.862, + "new_cases_per_million": 1.49, + "new_cases_smoothed_per_million": 1.512, + "total_deaths_per_million": 0.215, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.02, + "new_tests": 1216.0, + "total_tests": 23669.0, + "total_tests_per_thousand": 0.339, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1028.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 9.737, + "positive_rate": 0.10300000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-04", + "total_cases": 1978.0, + "new_cases": 103.0, + "new_cases_smoothed": 120.286, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 28.338, + "new_cases_per_million": 1.476, + "new_cases_smoothed_per_million": 1.723, + "total_deaths_per_million": 0.272, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 805.0, + "total_tests": 24474.0, + "total_tests_per_thousand": 0.351, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1048.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.713, + "positive_rate": 0.115, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-05", + "total_cases": 2169.0, + "new_cases": 191.0, + "new_cases_smoothed": 132.0, + "total_deaths": 23.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 31.075, + "new_cases_per_million": 2.736, + "new_cases_smoothed_per_million": 1.891, + "total_deaths_per_million": 0.33, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 597.0, + "total_tests": 25071.0, + "total_tests_per_thousand": 0.359, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 1042.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 7.894, + "positive_rate": 0.127, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-06", + "total_cases": 2220.0, + "new_cases": 51.0, + "new_cases_smoothed": 118.857, + "total_deaths": 26.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 31.805, + "new_cases_per_million": 0.731, + "new_cases_smoothed_per_million": 1.703, + "total_deaths_per_million": 0.372, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.039, + "new_tests": 786.0, + "total_tests": 25857.0, + "total_tests_per_thousand": 0.37, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 1023.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 8.607000000000001, + "positive_rate": 0.11599999999999999, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-07", + "total_cases": 2258.0, + "new_cases": 38.0, + "new_cases_smoothed": 86.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 32.35, + "new_cases_per_million": 0.544, + "new_cases_smoothed_per_million": 1.242, + "total_deaths_per_million": 0.372, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 1192.0, + "total_tests": 27049.0, + "total_tests_per_thousand": 0.388, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 993.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 11.450999999999999, + "positive_rate": 0.087, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-08", + "total_cases": 2369.0, + "new_cases": 111.0, + "new_cases_smoothed": 102.571, + "total_deaths": 30.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 33.94, + "new_cases_per_million": 1.59, + "new_cases_smoothed_per_million": 1.47, + "total_deaths_per_million": 0.43, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1660.0, + "total_tests": 28709.0, + "total_tests_per_thousand": 0.411, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 1100.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 10.724, + "positive_rate": 0.09300000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-09", + "total_cases": 2423.0, + "new_cases": 54.0, + "new_cases_smoothed": 93.143, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 34.713, + "new_cases_per_million": 0.774, + "new_cases_smoothed_per_million": 1.334, + "total_deaths_per_million": 0.458, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1833.0, + "total_tests": 30542.0, + "total_tests_per_thousand": 0.438, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1156.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 12.411, + "positive_rate": 0.081, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-10", + "total_cases": 2473.0, + "new_cases": 50.0, + "new_cases_smoothed": 85.429, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 35.43, + "new_cases_per_million": 0.716, + "new_cases_smoothed_per_million": 1.224, + "total_deaths_per_million": 0.473, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.037, + "new_tests": 1442.0, + "total_tests": 31984.0, + "total_tests_per_thousand": 0.458, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 13.905999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-11", + "total_cases": 2518.0, + "new_cases": 45.0, + "new_cases_smoothed": 77.143, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 36.075, + "new_cases_per_million": 0.645, + "new_cases_smoothed_per_million": 1.105, + "total_deaths_per_million": 0.501, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.033, + "new_tests": 846.0, + "total_tests": 32830.0, + "total_tests_per_thousand": 0.47, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1194.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 15.478, + "positive_rate": 0.065, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-12", + "total_cases": 2551.0, + "new_cases": 33.0, + "new_cases_smoothed": 54.571, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 36.547, + "new_cases_per_million": 0.473, + "new_cases_smoothed_per_million": 0.782, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 980.0, + "total_tests": 33810.0, + "total_tests_per_thousand": 0.484, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1248.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 22.869, + "positive_rate": 0.044000000000000004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-13", + "total_cases": 2579.0, + "new_cases": 28.0, + "new_cases_smoothed": 51.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 36.948, + "new_cases_per_million": 0.401, + "new_cases_smoothed_per_million": 0.735, + "total_deaths_per_million": 0.573, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 976.0, + "total_tests": 34786.0, + "total_tests_per_thousand": 0.498, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1276.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 24.88, + "positive_rate": 0.04, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-14", + "total_cases": 2613.0, + "new_cases": 34.0, + "new_cases_smoothed": 50.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 37.436, + "new_cases_per_million": 0.487, + "new_cases_smoothed_per_million": 0.727, + "total_deaths_per_million": 0.587, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 666.0, + "total_tests": 35452.0, + "total_tests_per_thousand": 0.508, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 1200.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 23.662, + "positive_rate": 0.042, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-15", + "total_cases": 2643.0, + "new_cases": 30.0, + "new_cases_smoothed": 39.143, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 37.865, + "new_cases_per_million": 0.43, + "new_cases_smoothed_per_million": 0.561, + "total_deaths_per_million": 0.616, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.027, + "new_tests": 1043.0, + "total_tests": 36495.0, + "total_tests_per_thousand": 0.523, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 28.409000000000002, + "positive_rate": 0.035, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-16", + "total_cases": 2672.0, + "new_cases": 29.0, + "new_cases_smoothed": 35.571, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 38.281, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 0.659, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 967.0, + "total_tests": 37462.0, + "total_tests_per_thousand": 0.537, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 27.803, + "positive_rate": 0.036000000000000004, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-17", + "total_cases": 2700.0, + "new_cases": 28.0, + "new_cases_smoothed": 32.429, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 38.682, + "new_cases_per_million": 0.401, + "new_cases_smoothed_per_million": 0.465, + "total_deaths_per_million": 0.673, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.029, + "new_tests_smoothed": 946.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 29.171999999999997, + "positive_rate": 0.034, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-18", + "total_cases": 2700.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 38.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.673, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 989.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 38.038000000000004, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-19", + "total_cases": 2733.0, + "new_cases": 33.0, + "new_cases_smoothed": 26.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 39.155, + "new_cases_per_million": 0.473, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.673, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.018, + "total_tests": 40897.0, + "total_tests_per_thousand": 0.586, + "new_tests_smoothed": 1012.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 38.923, + "positive_rate": 0.026000000000000002, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-20", + "total_cases": 2765.0, + "new_cases": 32.0, + "new_cases_smoothed": 26.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 39.613, + "new_cases_per_million": 0.458, + "new_cases_smoothed_per_million": 0.381, + "total_deaths_per_million": 0.673, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 1360.0, + "total_tests": 42257.0, + "total_tests_per_thousand": 0.605, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1067.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 40.156, + "positive_rate": 0.025, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-21", + "total_cases": 2792.0, + "new_cases": 27.0, + "new_cases_smoothed": 25.571, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 40.0, + "new_cases_per_million": 0.387, + "new_cases_smoothed_per_million": 0.366, + "total_deaths_per_million": 0.673, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1799.0, + "total_tests": 44056.0, + "total_tests_per_thousand": 0.631, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1229.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 48.06100000000001, + "positive_rate": 0.021, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-22", + "total_cases": 2811.0, + "new_cases": 19.0, + "new_cases_smoothed": 24.0, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 40.272, + "new_cases_per_million": 0.272, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 0.688, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.01, + "new_tests_smoothed": 1353.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 56.375, + "positive_rate": 0.018000000000000002, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-23", + "total_cases": 2839.0, + "new_cases": 28.0, + "new_cases_smoothed": 23.857, + "total_deaths": 50.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 40.673, + "new_cases_per_million": 0.401, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.716, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.008, + "new_tests_smoothed": 1488.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 62.371, + "positive_rate": 0.016, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-24", + "total_cases": 2839.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40.673, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.284, + "total_deaths_per_million": 0.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 1597.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 80.42399999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-25", + "total_cases": 2854.0, + "new_cases": 15.0, + "new_cases_smoothed": 22.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 40.888, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 0.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "total_tests": 51694.0, + "total_tests_per_thousand": 0.741, + "new_tests_smoothed": 1706.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 77.545, + "positive_rate": 0.013000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-26", + "total_cases": 2922.0, + "new_cases": 68.0, + "new_cases_smoothed": 27.0, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.862, + "new_cases_per_million": 0.974, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 0.731, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 1544.0, + "total_tests": 53238.0, + "total_tests_per_thousand": 0.763, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1763.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 65.296, + "positive_rate": 0.015, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-27", + "total_cases": 2922.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 41.862, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.321, + "total_deaths_per_million": 0.731, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 2248.0, + "total_tests": 55486.0, + "total_tests_per_thousand": 0.795, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1890.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 84.26799999999999, + "positive_rate": 0.012, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-28", + "total_cases": 2938.0, + "new_cases": 16.0, + "new_cases_smoothed": 20.857, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 42.092, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.299, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.043, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 2436.0, + "total_tests": 57922.0, + "total_tests_per_thousand": 0.83, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1981.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 94.979, + "positive_rate": 0.011000000000000001, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-29", + "total_cases": 2938.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 42.092, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.26, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 4096.0, + "total_tests": 62018.0, + "total_tests_per_thousand": 0.889, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2293.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 126.38600000000001, + "positive_rate": 0.008, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-04-30", + "total_cases": 2954.0, + "new_cases": 16.0, + "new_cases_smoothed": 16.429, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 42.321, + "new_cases_per_million": 0.229, + "new_cases_smoothed_per_million": 0.235, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 4353.0, + "total_tests": 66371.0, + "total_tests_per_thousand": 0.951, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 2642.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 160.817, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-01", + "total_cases": 2960.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.286, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 42.407, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.248, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 4164.0, + "total_tests": 70535.0, + "total_tests_per_thousand": 1.011, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 2964.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 171.47099999999998, + "positive_rate": 0.006, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-02", + "total_cases": 2960.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 42.407, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 2210.0, + "total_tests": 72745.0, + "total_tests_per_thousand": 1.042, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 3007.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 198.575, + "positive_rate": 0.005, + "tests_units": "people tested", + "stringency_index": 76.85 + }, + { + "date": "2020-05-03", + "total_cases": 2966.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 42.493, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.09, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 2523.0, + "total_tests": 75268.0, + "total_tests_per_thousand": 1.078, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 3147.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 500.659, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-04", + "total_cases": 2969.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.714, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 42.536, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 3500.0, + "total_tests": 78768.0, + "total_tests_per_thousand": 1.128, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 3326.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 495.36199999999997, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-05", + "total_cases": 2987.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.0, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.794, + "new_cases_per_million": 0.258, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3859.0, + "total_tests": 82627.0, + "total_tests_per_thousand": 1.184, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 3529.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 504.14300000000003, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-06", + "total_cases": 2988.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.143, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 42.808, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3693.0, + "total_tests": 86320.0, + "total_tests_per_thousand": 1.237, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 3472.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 486.08, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-07", + "total_cases": 2989.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 55.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.822, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.788, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3471.0, + "total_tests": 89791.0, + "total_tests_per_thousand": 1.286, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 3346.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 669.2, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-08", + "total_cases": 2992.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.865, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3853.0, + "total_tests": 93644.0, + "total_tests_per_thousand": 1.342, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 3301.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 722.0939999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-09", + "total_cases": 3000.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.714, + "total_deaths": 55.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.98, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3351.0, + "total_tests": 96995.0, + "total_tests_per_thousand": 1.39, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 3464.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 606.2, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-10", + "total_cases": 3004.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 56.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.037, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 3409.0, + "total_tests": 100404.0, + "total_tests_per_thousand": 1.438, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 3591.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 661.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-11", + "total_cases": 3015.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.571, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.195, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 3454.0, + "total_tests": 103858.0, + "total_tests_per_thousand": 1.488, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 3584.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 545.391, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-12", + "total_cases": 3015.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.195, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "new_tests_smoothed": 3564.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 891.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-13", + "total_cases": 3017.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 43.224, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "total_tests": 111288.0, + "total_tests_per_thousand": 1.594, + "new_tests_smoothed": 3567.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 861.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-14", + "total_cases": 3017.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.224, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3117.0, + "total_tests": 114405.0, + "total_tests_per_thousand": 1.639, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 3516.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 879.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-15", + "total_cases": 3018.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.238, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3663.0, + "total_tests": 118068.0, + "total_tests_per_thousand": 1.692, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 3489.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 939.346, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-16", + "total_cases": 3025.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.571, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.338, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 206.0, + "total_tests": 118274.0, + "total_tests_per_thousand": 1.694, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 3040.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 851.2, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-17", + "total_cases": 3028.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.381, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4818.0, + "total_tests": 123092.0, + "total_tests_per_thousand": 1.763, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 3241.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 945.2919999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-18", + "total_cases": 3028.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.381, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4016.0, + "total_tests": 127108.0, + "total_tests_per_thousand": 1.821, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 3321.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 1788.231, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 73.15 + }, + { + "date": "2020-05-19", + "total_cases": 3031.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.424, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3505.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 1533.4379999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-20", + "total_cases": 3034.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.467, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3688.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 1518.588, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-21", + "total_cases": 3034.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.467, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3957.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 1629.3529999999998, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-22", + "total_cases": 3037.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.714, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.51, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 147104.0, + "total_tests_per_thousand": 2.108, + "new_tests_smoothed": 4148.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 1528.211, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-23", + "total_cases": 3040.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.553, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3351.0, + "total_tests": 150455.0, + "total_tests_per_thousand": 2.156, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 4597.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 2145.2670000000003, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-24", + "total_cases": 3040.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 43.553, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.802, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3536.0, + "total_tests": 153991.0, + "total_tests_per_thousand": 2.206, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 4414.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 2574.833, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-25", + "total_cases": 3042.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 57.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.582, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 6329.0, + "total_tests": 160320.0, + "total_tests_per_thousand": 2.297, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 4745.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 2372.5, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-26", + "total_cases": 3042.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.582, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 7641.0, + "total_tests": 167961.0, + "total_tests_per_thousand": 2.406, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 5122.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 3259.455, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-27", + "total_cases": 3045.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.625, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 8084.0, + "total_tests": 176045.0, + "total_tests_per_thousand": 2.522, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 5563.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 3540.091, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-28", + "total_cases": 3054.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.857, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.754, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 5423.0, + "total_tests": 181468.0, + "total_tests_per_thousand": 2.6, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 5623.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 1968.05, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-29", + "total_cases": 3065.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.0, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.911, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 6279.0, + "total_tests": 187747.0, + "total_tests_per_thousand": 2.69, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 5806.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 1451.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-30", + "total_cases": 3076.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.143, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.069, + "new_cases_per_million": 0.158, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 4173.0, + "total_tests": 191920.0, + "total_tests_per_thousand": 2.75, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 5924.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 1151.889, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-05-31", + "total_cases": 3081.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.14, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.084, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 2991.0, + "total_tests": 194911.0, + "total_tests_per_thousand": 2.792, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 5846.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 998.0980000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-01", + "total_cases": 3081.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.14, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.08, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5500.0, + "total_tests": 200411.0, + "total_tests_per_thousand": 2.871, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 5727.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 1027.923, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-02", + "total_cases": 3082.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 57.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.155, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.817, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7282.0, + "total_tests": 207693.0, + "total_tests_per_thousand": 2.976, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 5676.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 993.3, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-03", + "total_cases": 3083.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.429, + "total_deaths": 58.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.169, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 4405.0, + "total_tests": 212098.0, + "total_tests_per_thousand": 3.039, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 5150.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 948.684, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-04", + "total_cases": 3101.0, + "new_cases": 18.0, + "new_cases_smoothed": 6.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.427, + "new_cases_per_million": 0.258, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests_smoothed": 5253.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 782.362, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-05", + "total_cases": 3102.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.441, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "total_tests": 224386.0, + "total_tests_per_thousand": 3.215, + "new_tests_smoothed": 5234.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 990.216, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 75.0 + }, + { + "date": "2020-06-06", + "total_cases": 3104.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.47, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 3963.0, + "total_tests": 228349.0, + "total_tests_per_thousand": 3.271, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 5204.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 1301.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-07", + "total_cases": 3112.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.585, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 2762.0, + "total_tests": 231111.0, + "total_tests_per_thousand": 3.311, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 5171.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 1167.645, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-08", + "total_cases": 3119.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.685, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 5830.0, + "total_tests": 236941.0, + "total_tests_per_thousand": 3.395, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 5219.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 961.395, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-09", + "total_cases": 3119.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.685, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 6523.0, + "total_tests": 243464.0, + "total_tests_per_thousand": 3.488, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 5110.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 966.757, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-10", + "total_cases": 3125.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.771, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6612.0, + "total_tests": 250076.0, + "total_tests_per_thousand": 3.583, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 5425.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 904.1669999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-11", + "total_cases": 3125.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.771, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4784.0, + "total_tests": 254860.0, + "total_tests_per_thousand": 3.651, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 5231.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 1525.7079999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-12", + "total_cases": 3125.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.771, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6746.0, + "total_tests": 261606.0, + "total_tests_per_thousand": 3.748, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 5317.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 1618.217, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-13", + "total_cases": 3129.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.828, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2765.0, + "total_tests": 264371.0, + "total_tests_per_thousand": 3.788, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 5146.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 1440.88, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-14", + "total_cases": 3134.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.9, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3193.0, + "total_tests": 267564.0, + "total_tests_per_thousand": 3.833, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 5208.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 1657.0910000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 62.96 + }, + { + "date": "2020-06-15", + "total_cases": 3135.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.914, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4137.0, + "total_tests": 271701.0, + "total_tests_per_thousand": 3.893, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 4966.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 2172.625, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-16", + "total_cases": 3135.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4872.0, + "total_tests": 276573.0, + "total_tests_per_thousand": 3.962, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 4730.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 2069.375, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-17", + "total_cases": 3135.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 44.914, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.02, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3888.0, + "total_tests": 280461.0, + "total_tests_per_thousand": 4.018, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 4341.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 3038.7, + "positive_rate": 0.0, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-18", + "total_cases": 3141.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.0, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4116.0, + "total_tests": 284577.0, + "total_tests_per_thousand": 4.077, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 4245.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 1857.1879999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-19", + "total_cases": 3141.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3511.0, + "total_tests": 288088.0, + "total_tests_per_thousand": 4.127, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 3783.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 1655.0620000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-20", + "total_cases": 3146.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.072, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2363.0, + "total_tests": 290451.0, + "total_tests_per_thousand": 4.161, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 3726.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 1534.235, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-21", + "total_cases": 3147.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.086, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1709.0, + "total_tests": 292160.0, + "total_tests_per_thousand": 4.186, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 3514.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 1892.154, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-22", + "total_cases": 3148.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.1, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.027, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2664.0, + "total_tests": 294824.0, + "total_tests_per_thousand": 4.224, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 3303.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 1778.5379999999998, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-23", + "total_cases": 3151.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.143, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2996.0, + "total_tests": 297820.0, + "total_tests_per_thousand": 4.267, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 3035.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 1327.8120000000001, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-24", + "total_cases": 3156.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.215, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2329.0, + "total_tests": 300149.0, + "total_tests_per_thousand": 4.3, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 2813.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 937.6669999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-25", + "total_cases": 3158.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.244, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2521.0, + "total_tests": 302670.0, + "total_tests_per_thousand": 4.336, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 2585.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 1064.412, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-26", + "total_cases": 3158.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.244, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 152.0, + "total_tests": 302822.0, + "total_tests_per_thousand": 4.338, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 2105.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 866.765, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-27", + "total_cases": 3162.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.301, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2502.0, + "total_tests": 305324.0, + "total_tests_per_thousand": 4.374, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 2125.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 929.688, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-28", + "total_cases": 3162.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2170.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 1012.6669999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-29", + "total_cases": 3162.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 309371.0, + "total_tests_per_thousand": 4.432, + "new_tests_smoothed": 2078.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 1039.0, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-06-30", + "total_cases": 3171.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.43, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3024.0, + "total_tests": 312395.0, + "total_tests_per_thousand": 4.476, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 2082.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 728.7, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 59.26 + }, + { + "date": "2020-07-01", + "total_cases": 3173.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.458, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1418.0, + "total_tests": 313813.0, + "total_tests_per_thousand": 4.496, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1952.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 803.765, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-02", + "total_cases": 3179.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.544, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1632.0, + "total_tests": 315445.0, + "total_tests_per_thousand": 4.519, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1825.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 608.3330000000001, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-03", + "total_cases": 3180.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.559, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1828.0, + "total_tests": 317273.0, + "total_tests_per_thousand": 4.545, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 2064.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 656.727, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-04", + "total_cases": 3185.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.63, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1346.0, + "total_tests": 318619.0, + "total_tests_per_thousand": 4.565, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1899.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 577.957, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-05", + "total_cases": 3190.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.702, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1050.0, + "total_tests": 319669.0, + "total_tests_per_thousand": 4.58, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1760.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 440.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-06", + "total_cases": 3195.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.774, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1321.0, + "total_tests": 320990.0, + "total_tests_per_thousand": 4.599, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1660.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 352.121, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-07", + "total_cases": 3195.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1316.0, + "total_tests": 322306.0, + "total_tests_per_thousand": 4.618, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1416.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 413.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-08", + "total_cases": 3197.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.802, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1336.0, + "total_tests": 323642.0, + "total_tests_per_thousand": 4.637, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1404.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 409.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-09", + "total_cases": 3202.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.874, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2431.0, + "total_tests": 326073.0, + "total_tests_per_thousand": 4.672, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 1518.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 462.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-10", + "total_cases": 3202.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.874, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2371.0, + "total_tests": 328444.0, + "total_tests_per_thousand": 4.706, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 1596.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 507.81800000000004, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-11", + "total_cases": 3216.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.075, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1443.0, + "total_tests": 329887.0, + "total_tests_per_thousand": 4.726, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1610.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 363.548, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-12", + "total_cases": 3217.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.089, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1131.0, + "total_tests": 331018.0, + "total_tests_per_thousand": 4.742, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1621.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 420.259, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-13", + "total_cases": 3220.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.132, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1547.0, + "total_tests": 332565.0, + "total_tests_per_thousand": 4.765, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1654.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 463.12, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-14", + "total_cases": 3227.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.232, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2758.0, + "total_tests": 335323.0, + "total_tests_per_thousand": 4.804, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 1860.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 406.875, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-15", + "total_cases": 3232.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.304, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2229.0, + "total_tests": 337552.0, + "total_tests_per_thousand": 4.836, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1987.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 397.4, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-16", + "total_cases": 3236.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.361, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3070.0, + "total_tests": 340622.0, + "total_tests_per_thousand": 4.88, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 2078.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 427.824, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-17", + "total_cases": 3239.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.404, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2076.0, + "total_tests": 342698.0, + "total_tests_per_thousand": 4.91, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 2036.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 385.189, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-18", + "total_cases": 3246.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.504, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3930.0, + "total_tests": 346628.0, + "total_tests_per_thousand": 4.966, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2392.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 558.133, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-19", + "total_cases": 3249.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.547, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2022.0, + "total_tests": 348650.0, + "total_tests_per_thousand": 4.995, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 2519.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 551.031, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-20", + "total_cases": 3250.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.562, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1872.0, + "total_tests": 350522.0, + "total_tests_per_thousand": 5.022, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 2565.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 598.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-21", + "total_cases": 3255.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.633, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2315.0, + "total_tests": 352837.0, + "total_tests_per_thousand": 5.055, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 2502.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 625.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-22", + "total_cases": 3261.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.719, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2993.0, + "total_tests": 355830.0, + "total_tests_per_thousand": 5.098, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 2611.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 630.241, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-23", + "total_cases": 3269.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.834, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3330.0, + "total_tests": 359160.0, + "total_tests_per_thousand": 5.146, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 2648.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 561.697, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-24", + "total_cases": 3279.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.977, + "new_cases_per_million": 0.143, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2702.0, + "total_tests": 361862.0, + "total_tests_per_thousand": 5.184, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 2738.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 479.15, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-25", + "total_cases": 3282.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.02, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2200.0, + "total_tests": 364062.0, + "total_tests_per_thousand": 5.216, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 2491.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 484.361, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-26", + "total_cases": 3291.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.149, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1407.0, + "total_tests": 365469.0, + "total_tests_per_thousand": 5.236, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 2403.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 400.5, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-27", + "total_cases": 3295.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.206, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.092, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1070.0, + "total_tests": 366539.0, + "total_tests_per_thousand": 5.251, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 2288.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 355.911, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-28", + "total_cases": 3297.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.235, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.086, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1668.0, + "total_tests": 368207.0, + "total_tests_per_thousand": 5.275, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 2196.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 366.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-29", + "total_cases": 3298.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.249, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1871.0, + "total_tests": 370078.0, + "total_tests_per_thousand": 5.302, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 2035.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 385.0, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-30", + "total_cases": 3304.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.335, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2586.0, + "total_tests": 372664.0, + "total_tests_per_thousand": 5.339, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 1929.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 385.8, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-07-31", + "total_cases": 3310.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.421, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2682.0, + "total_tests": 375346.0, + "total_tests_per_thousand": 5.377, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 1926.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 434.903, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-01", + "total_cases": 3312.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.45, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1294.0, + "total_tests": 376640.0, + "total_tests_per_thousand": 5.396, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1797.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 419.3, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-02", + "total_cases": 3317.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.522, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1040.0, + "total_tests": 377680.0, + "total_tests_per_thousand": 5.411, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1744.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 469.538, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-03", + "total_cases": 3320.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.564, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1424.0, + "total_tests": 379104.0, + "total_tests_per_thousand": 5.431, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1795.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 502.6, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-04", + "total_cases": 3321.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.579, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1526.0, + "total_tests": 380630.0, + "total_tests_per_thousand": 5.453, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1775.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 517.7080000000001, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-05", + "total_cases": 3328.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.679, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1140.0, + "total_tests": 381770.0, + "total_tests_per_thousand": 5.469, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1670.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 389.667, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-06", + "total_cases": 3330.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.708, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1447.0, + "total_tests": 383217.0, + "total_tests_per_thousand": 5.49, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1508.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 406.0, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-07", + "total_cases": 3345.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.923, + "new_cases_per_million": 0.215, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1182.0, + "total_tests": 384399.0, + "total_tests_per_thousand": 5.507, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 1293.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 258.6, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-08", + "total_cases": 3348.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.966, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.074, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1461.0, + "total_tests": 385860.0, + "total_tests_per_thousand": 5.528, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1317.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 256.08299999999997, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-09", + "total_cases": 3351.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.009, + "new_cases_per_million": 0.043, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1071.0, + "total_tests": 386931.0, + "total_tests_per_thousand": 5.543, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1322.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 272.176, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-10", + "total_cases": 3351.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 831.0, + "total_tests": 387762.0, + "total_tests_per_thousand": 5.555, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 1237.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 279.323, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-11", + "total_cases": 3351.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.009, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.061, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1485.0, + "total_tests": 389247.0, + "total_tests_per_thousand": 5.577, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 1231.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 287.233, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-12", + "total_cases": 3356.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.08, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 505.0, + "total_tests": 389752.0, + "total_tests_per_thousand": 5.584, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 1140.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 285.0, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-13", + "total_cases": 3356.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1384.0, + "total_tests": 391136.0, + "total_tests_per_thousand": 5.604, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1131.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 304.5, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 49.07 + }, + { + "date": "2020-08-14", + "total_cases": 3376.0, + "new_cases": 20.0, + "new_cases_smoothed": 4.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.367, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 368.0, + "total_tests": 391504.0, + "total_tests_per_thousand": 5.609, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 1015.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 229.19400000000002, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-15", + "total_cases": 3376.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.367, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1613.0, + "total_tests": 393117.0, + "total_tests_per_thousand": 5.632, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 259.25, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-16", + "total_cases": 3377.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.381, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 998.0, + "total_tests": 394115.0, + "total_tests_per_thousand": 5.646, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1026.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 276.231, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-17", + "total_cases": 3378.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.395, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1293.0, + "total_tests": 395408.0, + "total_tests_per_thousand": 5.665, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1092.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 283.111, + "positive_rate": 0.004, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-18", + "total_cases": 3378.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.395, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.055, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1868.0, + "total_tests": 397276.0, + "total_tests_per_thousand": 5.692, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1147.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 297.37, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-19", + "total_cases": 3382.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.453, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2118.0, + "total_tests": 399394.0, + "total_tests_per_thousand": 5.722, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 1377.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 370.731, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-20", + "total_cases": 3389.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.553, + "new_cases_per_million": 0.1, + "new_cases_smoothed_per_million": 0.068, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2286.0, + "total_tests": 401680.0, + "total_tests_per_thousand": 5.755, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 1506.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 319.455, + "positive_rate": 0.003, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-21", + "total_cases": 3390.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.567, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1845.0, + "total_tests": 403525.0, + "total_tests_per_thousand": 5.781, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1717.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 858.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-22", + "total_cases": 3390.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.567, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1122.0, + "total_tests": 404647.0, + "total_tests_per_thousand": 5.797, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1647.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 823.5, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-23", + "total_cases": 3395.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.639, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1525.0, + "total_tests": 406172.0, + "total_tests_per_thousand": 5.819, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1722.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 669.6669999999999, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-24", + "total_cases": 3397.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.668, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.039, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1240.0, + "total_tests": 407412.0, + "total_tests_per_thousand": 5.837, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 1715.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 631.842, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-25", + "total_cases": 3402.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.429, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.739, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.049, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2220.0, + "total_tests": 409632.0, + "total_tests_per_thousand": 5.869, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 1765.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 514.7919999999999, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-26", + "total_cases": 3403.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.754, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1568.0, + "total_tests": 411200.0, + "total_tests_per_thousand": 5.891, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 1687.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 562.3330000000001, + "positive_rate": 0.002, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-27", + "total_cases": 3404.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.768, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1806.0, + "total_tests": 413006.0, + "total_tests_per_thousand": 5.917, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 1618.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 755.067, + "positive_rate": 0.001, + "tests_units": "people tested", + "stringency_index": 46.3 + }, + { + "date": "2020-08-28", + "total_cases": 3410.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.854, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1891.0, + "total_tests": 414897.0, + "total_tests_per_thousand": 5.944, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 1625.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 568.75, + "positive_rate": 0.002, + "tests_units": "people tested" + }, + { + "date": "2020-08-29", + "total_cases": 3411.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.868, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1036.0, + "total_tests": 415933.0, + "total_tests_per_thousand": 5.959, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 1612.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 537.3330000000001, + "positive_rate": 0.002, + "tests_units": "people tested" + }, + { + "date": "2020-08-30", + "total_cases": 3411.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.868, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1111.0, + "total_tests": 417044.0, + "total_tests_per_thousand": 5.975, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 1553.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 679.438, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-08-31", + "total_cases": 3412.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.883, + "new_cases_per_million": 0.014, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1327.0, + "total_tests": 418371.0, + "total_tests_per_thousand": 5.994, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 1566.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 730.8, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-09-01", + "total_cases": 3417.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 48.954, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1599.0, + "total_tests": 419970.0, + "total_tests_per_thousand": 6.017, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 1477.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 689.2669999999999, + "positive_rate": 0.001, + "tests_units": "people tested" + }, + { + "date": "2020-09-02", + "total_cases": 3425.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.143, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.069, + "new_cases_per_million": 0.115, + "new_cases_smoothed_per_million": 0.045, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1373.0, + "total_tests": 421343.0, + "total_tests_per_thousand": 6.036, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 1449.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 461.045, + "positive_rate": 0.002, + "tests_units": "people tested" + }, + { + "date": "2020-09-03", + "total_cases": 3427.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.097, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 3431.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.155, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 3431.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 58.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 49.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.831, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "TLS": { + "continent": "Asia", + "location": "Timor", + "population": 1318442.0, + "population_density": 87.176, + "median_age": 18.0, + "aged_65_older": 3.556, + "aged_70_older": 1.897, + "gdp_per_capita": 6570.102, + "extreme_poverty": 30.3, + "cardiovasc_death_rate": 335.346, + "diabetes_prevalence": 6.86, + "female_smokers": 6.3, + "male_smokers": 78.1, + "handwashing_facilities": 28.178, + "hospital_beds_per_thousand": 5.9, + "life_expectancy": 69.5, + "data": [ + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.758, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 13.89 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-27", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-03-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-03-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-03-30", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-03-31", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-01", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-02", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-03", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-04", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-05", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-06", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-07", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-08", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-09", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.758, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-10", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-11", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-12", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-04-13", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.517, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-14", + "total_cases": 4.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.034, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 0.325, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-15", + "total_cases": 6.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.551, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-16", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-17", + "total_cases": 18.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.652, + "new_cases_per_million": 9.102, + "new_cases_smoothed_per_million": 1.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-18", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.652, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-19", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.652, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-20", + "total_cases": 19.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.411, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 1.842, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-21", + "total_cases": 22.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.686, + "new_cases_per_million": 2.275, + "new_cases_smoothed_per_million": 1.95, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-22", + "total_cases": 23.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.445, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 1.842, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.445, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.842, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.445, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-25", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.65, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.542, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-04-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-05", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-06", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-07", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-09", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-10", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-11", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-12", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-13", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-14", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-16", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-17", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-19", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 66.67 + }, + { + "date": "2020-05-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-05-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-05-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-05-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-05-31", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-05", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-06", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-07", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-09", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-10", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-11", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-12", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-13", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-14", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-16", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-17", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-19", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 30.56 + }, + { + "date": "2020-06-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-06-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-06-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-06-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-06-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-07-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-05", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-06", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-07", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-08", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-09", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-10", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-11", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-12", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-13", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-14", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-15", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-16", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-17", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-19", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-20", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-21", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-22", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-23", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-24", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-25", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-26", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-27", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-28", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-29", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-30", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-07-31", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-01", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-02", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-03", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-04", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.203, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-05", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-06", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-07", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-08", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-09", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-10", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-08-11", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-12", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-13", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-14", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-15", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-16", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-17", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-18", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-19", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-21", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-22", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-23", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-24", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-25", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-26", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-27", + "total_cases": 27.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.758, + "new_cases_smoothed_per_million": 0.217, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-28", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-29", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-30", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-08-31", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 26.85 + }, + { + "date": "2020-09-01", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.108, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 27.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.479, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "TGO": { + "continent": "Africa", + "location": "Togo", + "population": 8278737.0, + "population_density": 143.366, + "median_age": 19.4, + "aged_65_older": 2.839, + "aged_70_older": 1.525, + "gdp_per_capita": 1429.813, + "extreme_poverty": 49.2, + "cardiovasc_death_rate": 280.033, + "diabetes_prevalence": 6.15, + "female_smokers": 0.9, + "male_smokers": 14.2, + "handwashing_facilities": 10.475, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 61.04, + "data": [ + { + "date": "2020-03-04", + "new_tests": 2.0, + "total_tests": 2.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-05", + "new_tests": 2.0, + "total_tests": 4.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-06", + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.121, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_tests": 1.0, + "total_tests": 5.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-08", + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_tests": 4.0, + "total_tests": 9.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-10", + "new_tests": 4.0, + "total_tests": 13.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-11", + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-12", + "new_tests": 4.0, + "total_tests": 17.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.017, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2.0, + "total_tests": 19.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-15", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3.0, + "total_tests": 22.0, + "total_tests_per_thousand": 0.003, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 2.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12.0, + "total_tests": 34.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 3.0, + "new_tests_smoothed_per_thousand": 0.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 20.0, + "total_tests": 54.0, + "total_tests_per_thousand": 0.007, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 6.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 84.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 10.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 27.78 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 21.0, + "total_tests": 105.0, + "total_tests_per_thousand": 0.013, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 12.0, + "new_tests_smoothed_per_thousand": 0.001, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-03-21", + "total_cases": 9.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.087, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 25.0, + "total_tests": 130.0, + "total_tests_per_thousand": 0.016, + "new_tests_per_thousand": 0.003, + "new_tests_smoothed": 16.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 14.0, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-22", + "total_cases": 15.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.812, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 15.0, + "total_tests": 145.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 18.0, + "new_tests_smoothed_per_thousand": 0.002, + "tests_per_case": 9.0, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-23", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.812, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 30.0, + "total_tests": 175.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 22.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 11.0, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-24", + "total_cases": 18.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.174, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.293, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 33.0, + "total_tests": 208.0, + "total_tests_per_thousand": 0.025, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 25.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 10.294, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-25", + "total_cases": 18.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.174, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.293, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 40.0, + "total_tests": 248.0, + "total_tests_per_thousand": 0.03, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 28.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 11.529000000000002, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-26", + "total_cases": 23.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.778, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42.0, + "total_tests": 290.0, + "total_tests_per_thousand": 0.035, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 29.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.227, + "positive_rate": 0.10800000000000001, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-27", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.899, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 29.0, + "total_tests": 319.0, + "total_tests_per_thousand": 0.039, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 31.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 9.435, + "positive_rate": 0.106, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-28", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.02, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 43.0, + "total_tests": 362.0, + "total_tests_per_thousand": 0.044, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 33.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 14.437999999999999, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-29", + "total_cases": 28.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.382, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 48.0, + "total_tests": 410.0, + "total_tests_per_thousand": 0.05, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 38.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 20.462, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-30", + "total_cases": 30.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.624, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.259, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 72.0, + "total_tests": 482.0, + "total_tests_per_thousand": 0.058, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 44.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 20.533, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-03-31", + "total_cases": 34.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.107, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 91.0, + "total_tests": 573.0, + "total_tests_per_thousand": 0.069, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 52.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 22.75, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-01", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.107, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.276, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 57.0, + "total_tests": 630.0, + "total_tests_per_thousand": 0.076, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 55.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 24.061999999999998, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-04-02", + "total_cases": 36.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.348, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.242, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 94.0, + "total_tests": 724.0, + "total_tests_per_thousand": 0.087, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 33.385, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-03", + "total_cases": 39.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.711, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.259, + "total_deaths_per_million": 0.242, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 294.0, + "total_tests": 1018.0, + "total_tests_per_thousand": 0.123, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 100.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 46.667, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-04", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.832, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.259, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 149.0, + "total_tests": 1167.0, + "total_tests_per_thousand": 0.141, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 115.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 53.667, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-05", + "total_cases": 41.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.952, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 167.0, + "total_tests": 1334.0, + "total_tests_per_thousand": 0.161, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 132.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 71.077, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-06", + "total_cases": 44.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.315, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 150.0, + "total_tests": 1484.0, + "total_tests_per_thousand": 0.179, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 143.0, + "new_tests_smoothed_per_thousand": 0.017, + "tests_per_case": 71.5, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-07", + "total_cases": 58.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.006, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 0.414, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 150.0, + "total_tests": 1634.0, + "total_tests_per_thousand": 0.197, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 152.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 44.333, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-08", + "total_cases": 65.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 7.851, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 130.0, + "total_tests": 1764.0, + "total_tests_per_thousand": 0.213, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 162.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 36.580999999999996, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-09", + "total_cases": 70.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.455, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 130.0, + "total_tests": 1894.0, + "total_tests_per_thousand": 0.229, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 167.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 34.382, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-10", + "total_cases": 73.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.818, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 192.0, + "total_tests": 2086.0, + "total_tests_per_thousand": 0.252, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 153.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 31.5, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-11", + "total_cases": 76.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.18, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 164.0, + "total_tests": 2250.0, + "total_tests_per_thousand": 0.272, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 155.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 30.139, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-12", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.604, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 299.0, + "total_tests": 2549.0, + "total_tests_per_thousand": 0.308, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 174.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 34.8, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-13", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.18, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.552, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 207.0, + "total_tests": 2756.0, + "total_tests_per_thousand": 0.333, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 182.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 39.812, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-14", + "total_cases": 77.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.301, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 2823.0, + "total_tests_per_thousand": 0.341, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 170.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 62.632, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-15", + "total_cases": 77.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.301, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 230.0, + "total_tests": 3053.0, + "total_tests_per_thousand": 0.369, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 184.0, + "new_tests_smoothed_per_thousand": 0.022, + "tests_per_case": 107.333, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-16", + "total_cases": 81.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.784, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.19, + "total_deaths_per_million": 0.362, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 582.0, + "total_tests": 3635.0, + "total_tests_per_thousand": 0.439, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 158.455, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-17", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 308.0, + "total_tests": 3943.0, + "total_tests_per_thousand": 0.476, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 265.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 231.875, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-18", + "total_cases": 83.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.026, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 265.0, + "total_tests": 4208.0, + "total_tests_per_thousand": 0.508, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 280.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 280.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-19", + "total_cases": 84.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.146, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 104.0, + "total_tests": 4312.0, + "total_tests_per_thousand": 0.521, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 252.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 220.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-20", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.138, + "total_deaths_per_million": 0.604, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 86.0, + "total_tests": 4398.0, + "total_tests_per_thousand": 0.531, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 235.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 205.625, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-21", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.146, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 219.0, + "total_tests": 4617.0, + "total_tests_per_thousand": 0.558, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 256.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 256.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-22", + "total_cases": 86.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.388, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 133.0, + "total_tests": 4750.0, + "total_tests_per_thousand": 0.574, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 242.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 188.222, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-23", + "total_cases": 88.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.63, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 290.0, + "total_tests": 5040.0, + "total_tests_per_thousand": 0.609, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 201.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 201.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-24", + "total_cases": 88.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.63, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 222.0, + "total_tests": 5262.0, + "total_tests_per_thousand": 0.636, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 188.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 188.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-25", + "total_cases": 90.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.871, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 339.0, + "total_tests": 5601.0, + "total_tests_per_thousand": 0.677, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 199.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 199.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-26", + "total_cases": 96.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.596, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 367.0, + "total_tests": 5968.0, + "total_tests_per_thousand": 0.721, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 237.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 138.25, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-27", + "total_cases": 98.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.838, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.242, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 190.0, + "total_tests": 6158.0, + "total_tests_per_thousand": 0.744, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 251.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 125.5, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-28", + "total_cases": 99.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.958, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.259, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 93.0, + "total_tests": 6251.0, + "total_tests_per_thousand": 0.755, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 233.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 108.73299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-29", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.958, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.224, + "total_deaths_per_million": 0.725, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 441.0, + "total_tests": 6692.0, + "total_tests_per_thousand": 0.808, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 277.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 149.154, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-04-30", + "total_cases": 109.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.0, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13.166, + "new_cases_per_million": 1.208, + "new_cases_smoothed_per_million": 0.362, + "total_deaths_per_million": 0.846, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 207.0, + "total_tests": 6899.0, + "total_tests_per_thousand": 0.833, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 266.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 88.667, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-01", + "total_cases": 116.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.0, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.012, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.483, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 218.0, + "total_tests": 7117.0, + "total_tests_per_thousand": 0.86, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 265.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 66.25, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-02", + "total_cases": 123.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.857, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.569, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests_smoothed": 240.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 50.909, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-03", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.857, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 325.0, + "total_tests": 7442.0, + "total_tests_per_thousand": 0.899, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 211.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 54.70399999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-04", + "total_cases": 124.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 14.978, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.449, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 466.0, + "total_tests": 7908.0, + "total_tests_per_thousand": 0.955, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 250.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 67.308, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-05", + "total_cases": 126.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.22, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.466, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 471.0, + "total_tests": 8379.0, + "total_tests_per_thousand": 1.012, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 304.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 78.815, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-06", + "total_cases": 128.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 15.461, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.5, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 473.0, + "total_tests": 8852.0, + "total_tests_per_thousand": 1.069, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 309.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 74.586, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-07", + "total_cases": 128.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.461, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 432.0, + "total_tests": 9284.0, + "total_tests_per_thousand": 1.121, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 341.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 125.632, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-08", + "total_cases": 135.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.307, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.328, + "total_deaths_per_million": 1.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 390.0, + "total_tests": 9674.0, + "total_tests_per_thousand": 1.169, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 134.474, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-09", + "total_cases": 145.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.515, + "new_cases_per_million": 1.208, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 437.0, + "total_tests": 10111.0, + "total_tests_per_thousand": 1.221, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 404.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 128.545, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-10", + "total_cases": 153.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.481, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 283.0, + "total_tests": 10394.0, + "total_tests_per_thousand": 1.256, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 422.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 98.46700000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-11", + "total_cases": 174.0, + "new_cases": 21.0, + "new_cases_smoothed": 7.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.018, + "new_cases_per_million": 2.537, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 184.0, + "total_tests": 10578.0, + "total_tests_per_thousand": 1.278, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 381.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 53.34, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-12", + "total_cases": 181.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 21.863, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.949, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 480.0, + "total_tests": 11058.0, + "total_tests_per_thousand": 1.336, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 383.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 48.745, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-13", + "total_cases": 199.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.037, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 1.225, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 333.0, + "total_tests": 11391.0, + "total_tests_per_thousand": 1.376, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 363.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 35.789, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-14", + "total_cases": 219.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 26.453, + "new_cases_per_million": 2.416, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 422.0, + "total_tests": 11813.0, + "total_tests_per_thousand": 1.427, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 361.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 27.769000000000002, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-15", + "total_cases": 238.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 28.748, + "new_cases_per_million": 2.295, + "new_cases_smoothed_per_million": 1.777, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 244.0, + "total_tests": 12057.0, + "total_tests_per_thousand": 1.456, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 340.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 23.107, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-16", + "total_cases": 263.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 31.768, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 2.036, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 470.0, + "total_tests": 12527.0, + "total_tests_per_thousand": 1.513, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 345.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 20.465999999999998, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-17", + "total_cases": 298.0, + "new_cases": 35.0, + "new_cases_smoothed": 20.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 35.996, + "new_cases_per_million": 4.228, + "new_cases_smoothed_per_million": 2.502, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 103.0, + "total_tests": 12630.0, + "total_tests_per_thousand": 1.526, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 319.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 15.4, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-18", + "total_cases": 301.0, + "new_cases": 3.0, + "new_cases_smoothed": 18.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.358, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 2.192, + "total_deaths_per_million": 1.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 839.0, + "total_tests": 13469.0, + "total_tests_per_thousand": 1.627, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 413.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 22.764, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-19", + "total_cases": 330.0, + "new_cases": 29.0, + "new_cases_smoothed": 21.286, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.861, + "new_cases_per_million": 3.503, + "new_cases_smoothed_per_million": 2.571, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 373.0, + "total_tests": 13842.0, + "total_tests_per_thousand": 1.672, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 398.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 18.698, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-20", + "total_cases": 338.0, + "new_cases": 8.0, + "new_cases_smoothed": 19.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.827, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 2.399, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 371.0, + "total_tests": 14213.0, + "total_tests_per_thousand": 1.717, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 403.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 20.295, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-21", + "total_cases": 340.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.069, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 2.088, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 571.0, + "total_tests": 14784.0, + "total_tests_per_thousand": 1.786, + "new_tests_per_thousand": 0.069, + "new_tests_smoothed": 424.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 24.529, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-22", + "total_cases": 354.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.76, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 2.002, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 390.0, + "total_tests": 15174.0, + "total_tests_per_thousand": 1.833, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 26.853, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-23", + "total_cases": 363.0, + "new_cases": 9.0, + "new_cases_smoothed": 14.286, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.847, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 1.726, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 830.0, + "total_tests": 16004.0, + "total_tests_per_thousand": 1.933, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 497.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 34.79, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-24", + "total_cases": 373.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 45.055, + "new_cases_per_million": 1.208, + "new_cases_smoothed_per_million": 1.294, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 760.0, + "total_tests": 16764.0, + "total_tests_per_thousand": 2.025, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 591.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 55.16, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-25", + "total_cases": 381.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.022, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 1.38, + "total_deaths_per_million": 1.449, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 302.0, + "total_tests": 17066.0, + "total_tests_per_thousand": 2.061, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 514.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 44.975, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-26", + "total_cases": 386.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.625, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 452.0, + "total_tests": 17518.0, + "total_tests_per_thousand": 2.116, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 65.625, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-27", + "total_cases": 391.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 47.229, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.915, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 528.0, + "total_tests": 18046.0, + "total_tests_per_thousand": 2.18, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 548.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 72.377, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-28", + "total_cases": 395.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 47.713, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.949, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 667.0, + "total_tests": 18713.0, + "total_tests_per_thousand": 2.26, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 561.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 71.4, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-29", + "total_cases": 422.0, + "new_cases": 27.0, + "new_cases_smoothed": 9.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 50.974, + "new_cases_per_million": 3.261, + "new_cases_smoothed_per_million": 1.173, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 466.0, + "total_tests": 19179.0, + "total_tests_per_thousand": 2.317, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 572.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 58.882, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-30", + "total_cases": 428.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 51.699, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 1.122, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 543.0, + "total_tests": 19722.0, + "total_tests_per_thousand": 2.382, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 531.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 57.185, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-05-31", + "total_cases": 433.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 52.303, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 1.035, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 374.0, + "total_tests": 20096.0, + "total_tests_per_thousand": 2.427, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 476.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 55.533, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-01", + "total_cases": 442.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 53.39, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 1.053, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 421.0, + "total_tests": 20517.0, + "total_tests_per_thousand": 2.478, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 493.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 56.574, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-02", + "total_cases": 443.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.511, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 448.0, + "total_tests": 20965.0, + "total_tests_per_thousand": 2.532, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 492.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 60.42100000000001, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-03", + "total_cases": 445.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 53.752, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 567.0, + "total_tests": 21532.0, + "total_tests_per_thousand": 2.601, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 498.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 64.556, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-04", + "total_cases": 452.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.598, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 297.0, + "total_tests": 21829.0, + "total_tests_per_thousand": 2.637, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 54.648999999999994, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-05", + "total_cases": 465.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 56.168, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 0.742, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 344.0, + "total_tests": 22173.0, + "total_tests_per_thousand": 2.678, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 428.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 69.67399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 485.0, + "new_cases": 20.0, + "new_cases_smoothed": 8.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.584, + "new_cases_per_million": 2.416, + "new_cases_smoothed_per_million": 0.984, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 271.0, + "total_tests": 22444.0, + "total_tests_per_thousand": 2.711, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 389.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 47.772, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 487.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 58.825, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 591.0, + "total_tests": 23035.0, + "total_tests_per_thousand": 2.782, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 420.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 54.443999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 495.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.792, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.915, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 237.0, + "total_tests": 23272.0, + "total_tests_per_thousand": 2.811, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 394.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 52.038000000000004, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-09", + "total_cases": 497.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.033, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 246.0, + "total_tests": 23518.0, + "total_tests_per_thousand": 2.841, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 47.315, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-10", + "total_cases": 501.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.516, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.966, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 487.0, + "total_tests": 24005.0, + "total_tests_per_thousand": 2.9, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 353.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 44.125, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-11", + "total_cases": 522.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.053, + "new_cases_per_million": 2.537, + "new_cases_smoothed_per_million": 1.208, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 370.0, + "total_tests": 24375.0, + "total_tests_per_thousand": 2.944, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 364.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 36.4, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-12", + "total_cases": 524.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.295, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 1.018, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 444.0, + "total_tests": 24819.0, + "total_tests_per_thousand": 2.998, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 378.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 44.847, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-13", + "total_cases": 525.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 63.415, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.69, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 599.0, + "total_tests": 25418.0, + "total_tests_per_thousand": 3.07, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 425.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 74.375, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-14", + "total_cases": 530.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.019, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.742, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 125.0, + "total_tests": 25543.0, + "total_tests_per_thousand": 3.085, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 358.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 58.278999999999996, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-15", + "total_cases": 531.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.14, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 63.0, + "total_tests": 25606.0, + "total_tests_per_thousand": 3.093, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 64.75, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-16", + "total_cases": 532.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.261, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.604, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 431.0, + "total_tests": 26037.0, + "total_tests_per_thousand": 3.145, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 72.0, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-17", + "total_cases": 537.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 64.865, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 424.0, + "total_tests": 26461.0, + "total_tests_per_thousand": 3.196, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 351.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 68.25, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-18", + "total_cases": 544.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.143, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 65.711, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.38, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 315.0, + "total_tests": 26776.0, + "total_tests_per_thousand": 3.234, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 109.13600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-19", + "total_cases": 547.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 66.073, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 579.0, + "total_tests": 27355.0, + "total_tests_per_thousand": 3.304, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 110.17399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-20", + "total_cases": 555.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.039, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.518, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 486.0, + "total_tests": 27841.0, + "total_tests_per_thousand": 3.363, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 80.733, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-21", + "total_cases": 561.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 67.764, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 162.0, + "total_tests": 28003.0, + "total_tests_per_thousand": 3.383, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 351.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 79.258, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-22", + "total_cases": 569.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.73, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.656, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 28082.0, + "total_tests_per_thousand": 3.392, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 354.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 65.211, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-23", + "total_cases": 569.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.73, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 444.0, + "total_tests": 28526.0, + "total_tests_per_thousand": 3.446, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 356.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 67.351, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-24", + "total_cases": 576.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 69.576, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 1.57, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 178.0, + "total_tests": 28704.0, + "total_tests_per_thousand": 3.467, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 320.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 57.43600000000001, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-25", + "total_cases": 583.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.571, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 70.421, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 224.0, + "total_tests": 28928.0, + "total_tests_per_thousand": 3.494, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 307.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 55.103, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-26", + "total_cases": 588.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 71.025, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.707, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 436.0, + "total_tests": 29364.0, + "total_tests_per_thousand": 3.547, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 287.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 49.0, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-27", + "total_cases": 591.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 71.388, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.621, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 535.0, + "total_tests": 29899.0, + "total_tests_per_thousand": 3.612, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 294.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 57.167, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-28", + "total_cases": 615.0, + "new_cases": 24.0, + "new_cases_smoothed": 7.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 74.287, + "new_cases_per_million": 2.899, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 434.0, + "total_tests": 30333.0, + "total_tests_per_thousand": 3.664, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 333.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 43.167, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-29", + "total_cases": 642.0, + "new_cases": 27.0, + "new_cases_smoothed": 10.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.548, + "new_cases_per_million": 3.261, + "new_cases_smoothed_per_million": 1.26, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 41.0, + "total_tests": 30374.0, + "total_tests_per_thousand": 3.669, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 327.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 31.355999999999998, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-06-30", + "total_cases": 643.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.669, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 1.277, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 407.0, + "total_tests": 30781.0, + "total_tests_per_thousand": 3.718, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 322.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 30.459, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-01", + "total_cases": 650.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 78.514, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 1.277, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 510.0, + "total_tests": 31291.0, + "total_tests_per_thousand": 3.78, + "new_tests_per_thousand": 0.062, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 35.0, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-02", + "total_cases": 661.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 79.843, + "new_cases_per_million": 1.329, + "new_cases_smoothed_per_million": 1.346, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 710.0, + "total_tests": 32001.0, + "total_tests_per_thousand": 3.865, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 439.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 39.397, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-03", + "total_cases": 667.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.568, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 283.0, + "total_tests": 32284.0, + "total_tests_per_thousand": 3.9, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 417.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 36.949, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-04", + "total_cases": 671.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.051, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 1.38, + "total_deaths_per_million": 1.691, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 491.0, + "total_tests": 32775.0, + "total_tests_per_thousand": 3.959, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 35.961999999999996, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-05", + "total_cases": 676.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.714, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 81.655, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 1.053, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 141.0, + "total_tests": 32916.0, + "total_tests_per_thousand": 3.976, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 369.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 42.343999999999994, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-06", + "total_cases": 680.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.138, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 0.656, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 51.0, + "total_tests": 32967.0, + "total_tests_per_thousand": 3.982, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 68.158, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-07", + "total_cases": 680.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 82.138, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 382.0, + "total_tests": 33349.0, + "total_tests_per_thousand": 4.028, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 69.432, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-08", + "total_cases": 689.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 83.225, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 261.0, + "total_tests": 33610.0, + "total_tests_per_thousand": 4.06, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 331.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 59.41, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-09", + "total_cases": 695.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 83.95, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 508.0, + "total_tests": 34118.0, + "total_tests_per_thousand": 4.121, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 302.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 62.176, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-10", + "total_cases": 704.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.037, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 509.0, + "total_tests": 34627.0, + "total_tests_per_thousand": 4.183, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 335.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 63.378, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-11", + "total_cases": 710.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 85.762, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 546.0, + "total_tests": 35173.0, + "total_tests_per_thousand": 4.249, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 343.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 61.56399999999999, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-12", + "total_cases": 718.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.728, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 301.0, + "total_tests": 35474.0, + "total_tests_per_thousand": 4.285, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 365.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 60.833, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-13", + "total_cases": 720.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 86.97, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 0.69, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 384.0, + "total_tests": 35858.0, + "total_tests_per_thousand": 4.331, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 413.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 72.275, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-14", + "total_cases": 721.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.091, + "new_cases_per_million": 0.121, + "new_cases_smoothed_per_million": 0.707, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 436.0, + "total_tests": 36294.0, + "total_tests_per_thousand": 4.384, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 421.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 71.878, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-15", + "total_cases": 731.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.298, + "new_cases_per_million": 1.208, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 429.0, + "total_tests": 36723.0, + "total_tests_per_thousand": 4.436, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 74.167, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-16", + "total_cases": 740.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 89.386, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 0.777, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 379.0, + "total_tests": 37102.0, + "total_tests_per_thousand": 4.482, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 426.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 66.267, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 53.7 + }, + { + "date": "2020-07-17", + "total_cases": 749.0, + "new_cases": 9.0, + "new_cases_smoothed": 6.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.473, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 0.777, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 302.0, + "total_tests": 37404.0, + "total_tests_per_thousand": 4.518, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 397.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 61.756, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-18", + "total_cases": 749.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.473, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.673, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 340.0, + "total_tests": 37744.0, + "total_tests_per_thousand": 4.559, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 367.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 65.872, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-19", + "total_cases": 766.0, + "new_cases": 17.0, + "new_cases_smoothed": 6.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.526, + "new_cases_per_million": 2.053, + "new_cases_smoothed_per_million": 0.828, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 319.0, + "total_tests": 38063.0, + "total_tests_per_thousand": 4.598, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 370.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 53.958, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-20", + "total_cases": 774.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.493, + "new_cases_per_million": 0.966, + "new_cases_smoothed_per_million": 0.932, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 103.0, + "total_tests": 38166.0, + "total_tests_per_thousand": 4.61, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 330.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 42.778, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-21", + "total_cases": 783.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 94.58, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 1.07, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 301.0, + "total_tests": 38467.0, + "total_tests_per_thousand": 4.646, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 310.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 35.0, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-22", + "total_cases": 790.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.425, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 1.018, + "total_deaths_per_million": 1.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 325.0, + "total_tests": 38792.0, + "total_tests_per_thousand": 4.686, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 296.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 35.119, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-23", + "total_cases": 806.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.429, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 97.358, + "new_cases_per_million": 1.933, + "new_cases_smoothed_per_million": 1.139, + "total_deaths_per_million": 1.933, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 581.0, + "total_tests": 39373.0, + "total_tests_per_thousand": 4.756, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 324.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 34.364000000000004, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-24", + "total_cases": 828.0, + "new_cases": 22.0, + "new_cases_smoothed": 11.286, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 100.015, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.363, + "total_deaths_per_million": 1.933, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 456.0, + "total_tests": 39829.0, + "total_tests_per_thousand": 4.811, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 346.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 30.658, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-25", + "total_cases": 839.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.857, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 101.344, + "new_cases_per_million": 1.329, + "new_cases_smoothed_per_million": 1.553, + "total_deaths_per_million": 2.053, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 577.0, + "total_tests": 40406.0, + "total_tests_per_thousand": 4.881, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 29.555999999999997, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-26", + "total_cases": 853.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 103.035, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 2.053, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 374.0, + "total_tests": 40780.0, + "total_tests_per_thousand": 4.926, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 388.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 31.218000000000004, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-27", + "total_cases": 868.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.429, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.847, + "new_cases_per_million": 1.812, + "new_cases_smoothed_per_million": 1.622, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 93.0, + "total_tests": 40873.0, + "total_tests_per_thousand": 4.937, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 28.819000000000003, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-28", + "total_cases": 874.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 105.572, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 389.0, + "total_tests": 41262.0, + "total_tests_per_thousand": 4.984, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 399.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 30.691999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-29", + "total_cases": 896.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 108.229, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.829, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 412.0, + "total_tests": 41674.0, + "total_tests_per_thousand": 5.034, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 412.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 27.208000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-30", + "total_cases": 896.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.857, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 108.229, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.553, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 385.0, + "total_tests": 42059.0, + "total_tests_per_thousand": 5.08, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 384.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 29.866999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-07-31", + "total_cases": 927.0, + "new_cases": 31.0, + "new_cases_smoothed": 14.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 111.974, + "new_cases_per_million": 3.745, + "new_cases_smoothed_per_million": 1.708, + "total_deaths_per_million": 2.174, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 474.0, + "total_tests": 42533.0, + "total_tests_per_thousand": 5.138, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 386.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 27.293000000000003, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-01", + "total_cases": 941.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.571, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 113.665, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 2.295, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 410.0, + "total_tests": 42943.0, + "total_tests_per_thousand": 5.187, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 24.843000000000004, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 50.93 + }, + { + "date": "2020-08-02", + "total_cases": 958.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 115.718, + "new_cases_per_million": 2.053, + "new_cases_smoothed_per_million": 1.812, + "total_deaths_per_million": 2.295, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 418.0, + "total_tests": 43361.0, + "total_tests_per_thousand": 5.238, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 369.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 24.6, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-03", + "total_cases": 961.0, + "new_cases": 3.0, + "new_cases_smoothed": 13.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 116.081, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 1.605, + "total_deaths_per_million": 2.295, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 364.0, + "total_tests": 43725.0, + "total_tests_per_thousand": 5.282, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 407.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 30.634, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-04", + "total_cases": 976.0, + "new_cases": 15.0, + "new_cases_smoothed": 14.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 117.892, + "new_cases_per_million": 1.812, + "new_cases_smoothed_per_million": 1.76, + "total_deaths_per_million": 2.295, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 415.0, + "total_tests": 44140.0, + "total_tests_per_thousand": 5.332, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 411.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 28.206, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-05", + "total_cases": 988.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 119.342, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.588, + "total_deaths_per_million": 2.295, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 415.0, + "total_tests": 44555.0, + "total_tests_per_thousand": 5.382, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 412.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 31.348000000000003, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-06", + "total_cases": 1001.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.0, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 120.912, + "new_cases_per_million": 1.57, + "new_cases_smoothed_per_million": 1.812, + "total_deaths_per_million": 2.537, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 815.0, + "total_tests": 45370.0, + "total_tests_per_thousand": 5.48, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 31.533, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-07", + "total_cases": 1012.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 122.241, + "new_cases_per_million": 1.329, + "new_cases_smoothed_per_million": 1.467, + "total_deaths_per_million": 2.657, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 646.0, + "total_tests": 46016.0, + "total_tests_per_thousand": 5.558, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 498.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 41.012, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-08", + "total_cases": 1028.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 124.174, + "new_cases_per_million": 1.933, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 2.657, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 1062.0, + "total_tests": 47078.0, + "total_tests_per_thousand": 5.687, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 591.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 47.552, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-09", + "total_cases": 1046.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.571, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 126.348, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 1.519, + "total_deaths_per_million": 2.778, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 583.0, + "total_tests": 47661.0, + "total_tests_per_thousand": 5.757, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 614.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 48.841, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-10", + "total_cases": 1060.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 128.039, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 1.708, + "total_deaths_per_million": 2.778, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 373.0, + "total_tests": 48034.0, + "total_tests_per_thousand": 5.802, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 43.556000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-11", + "total_cases": 1067.0, + "new_cases": 7.0, + "new_cases_smoothed": 13.0, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 128.884, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 3.02, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.104, + "new_tests": 959.0, + "total_tests": 48993.0, + "total_tests_per_thousand": 5.918, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 693.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 53.308, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-12", + "total_cases": 1070.0, + "new_cases": 3.0, + "new_cases_smoothed": 11.714, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 129.247, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 1.415, + "total_deaths_per_million": 3.141, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 828.0, + "total_tests": 49821.0, + "total_tests_per_thousand": 6.018, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 752.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 64.195, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-13", + "total_cases": 1092.0, + "new_cases": 22.0, + "new_cases_smoothed": 13.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 131.904, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.57, + "total_deaths_per_million": 3.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "new_tests": 666.0, + "total_tests": 50487.0, + "total_tests_per_thousand": 6.098, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 731.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 56.231, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-14", + "total_cases": 1104.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 133.354, + "new_cases_per_million": 1.449, + "new_cases_smoothed_per_million": 1.588, + "total_deaths_per_million": 3.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 639.0, + "total_tests": 51126.0, + "total_tests_per_thousand": 6.176, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 730.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 55.543, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-15", + "total_cases": 1124.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.714, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 135.77, + "new_cases_per_million": 2.416, + "new_cases_smoothed_per_million": 1.657, + "total_deaths_per_million": 3.141, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 763.0, + "total_tests": 51889.0, + "total_tests_per_thousand": 6.268, + "new_tests_per_thousand": 0.092, + "new_tests_smoothed": 687.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 50.093999999999994, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-16", + "total_cases": 1130.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 136.494, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 1.449, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 731.0, + "total_tests": 52620.0, + "total_tests_per_thousand": 6.356, + "new_tests_per_thousand": 0.088, + "new_tests_smoothed": 708.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 59.0, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-17", + "total_cases": 1147.0, + "new_cases": 17.0, + "new_cases_smoothed": 12.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 138.548, + "new_cases_per_million": 2.053, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069, + "new_tests": 458.0, + "total_tests": 53078.0, + "total_tests_per_thousand": 6.411, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 721.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 58.011, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-08-18", + "total_cases": 1154.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 139.393, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 1.501, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 769.0, + "total_tests": 53847.0, + "total_tests_per_thousand": 6.504, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 693.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 55.75899999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-19", + "total_cases": 1173.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 141.688, + "new_cases_per_million": 2.295, + "new_cases_smoothed_per_million": 1.777, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 862.0, + "total_tests": 54709.0, + "total_tests_per_thousand": 6.608, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 698.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 47.437, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-20", + "total_cases": 1190.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 143.742, + "new_cases_per_million": 2.053, + "new_cases_smoothed_per_million": 1.691, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 48.15 + }, + { + "date": "2020-08-21", + "total_cases": 1212.0, + "new_cases": 22.0, + "new_cases_smoothed": 15.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 146.399, + "new_cases_per_million": 2.657, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 48.15 + }, + { + "date": "2020-08-22", + "total_cases": 1239.0, + "new_cases": 27.0, + "new_cases_smoothed": 16.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 149.661, + "new_cases_per_million": 3.261, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 48.15 + }, + { + "date": "2020-08-23", + "total_cases": 1275.0, + "new_cases": 36.0, + "new_cases_smoothed": 20.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 154.009, + "new_cases_per_million": 4.348, + "new_cases_smoothed_per_million": 2.502, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-24", + "total_cases": 1277.0, + "new_cases": 2.0, + "new_cases_smoothed": 18.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 154.251, + "new_cases_per_million": 0.242, + "new_cases_smoothed_per_million": 2.243, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-25", + "total_cases": 1295.0, + "new_cases": 18.0, + "new_cases_smoothed": 20.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 156.425, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 2.433, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-26", + "total_cases": 1309.0, + "new_cases": 14.0, + "new_cases_smoothed": 19.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 158.116, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 2.347, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-27", + "total_cases": 1326.0, + "new_cases": 17.0, + "new_cases_smoothed": 19.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.169, + "new_cases_per_million": 2.053, + "new_cases_smoothed_per_million": 2.347, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-28", + "total_cases": 1326.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.169, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.967, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 48.15 + }, + { + "date": "2020-08-29", + "total_cases": 1365.0, + "new_cases": 39.0, + "new_cases_smoothed": 18.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 164.88, + "new_cases_per_million": 4.711, + "new_cases_smoothed_per_million": 2.174, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 1390.0, + "new_cases": 25.0, + "new_cases_smoothed": 16.429, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 167.9, + "new_cases_per_million": 3.02, + "new_cases_smoothed_per_million": 1.984, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 1396.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.0, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 168.625, + "new_cases_per_million": 0.725, + "new_cases_smoothed_per_million": 2.053, + "total_deaths_per_million": 3.261, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 1400.0, + "new_cases": 4.0, + "new_cases_smoothed": 15.0, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 169.108, + "new_cases_per_million": 0.483, + "new_cases_smoothed_per_million": 1.812, + "total_deaths_per_million": 3.382, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.017 + }, + { + "date": "2020-09-02", + "total_cases": 1416.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.286, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 171.041, + "new_cases_per_million": 1.933, + "new_cases_smoothed_per_million": 1.846, + "total_deaths_per_million": 3.382, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.017 + }, + { + "date": "2020-09-03", + "total_cases": 1434.0, + "new_cases": 18.0, + "new_cases_smoothed": 15.429, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 173.215, + "new_cases_per_million": 2.174, + "new_cases_smoothed_per_million": 1.864, + "total_deaths_per_million": 3.624, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.052 + }, + { + "date": "2020-09-04", + "total_cases": 1443.0, + "new_cases": 9.0, + "new_cases_smoothed": 16.714, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 174.302, + "new_cases_per_million": 1.087, + "new_cases_smoothed_per_million": 2.019, + "total_deaths_per_million": 3.745, + "new_deaths_per_million": 0.121, + "new_deaths_smoothed_per_million": 0.069 + }, + { + "date": "2020-09-05", + "total_cases": 1457.0, + "new_cases": 14.0, + "new_cases_smoothed": 13.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 175.993, + "new_cases_per_million": 1.691, + "new_cases_smoothed_per_million": 1.588, + "total_deaths_per_million": 3.745, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.069 + } + ] + }, + "TTO": { + "continent": "North America", + "location": "Trinidad and Tobago", + "population": 1399491.0, + "population_density": 266.886, + "median_age": 36.2, + "aged_65_older": 10.014, + "aged_70_older": 5.819, + "gdp_per_capita": 28763.071, + "cardiovasc_death_rate": 228.467, + "diabetes_prevalence": 10.97, + "handwashing_facilities": 89.443, + "hospital_beds_per_thousand": 3.0, + "life_expectancy": 73.51, + "data": [ + { + "date": "2020-03-13", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.715, + "new_cases_per_million": 0.715, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 20.37 + }, + { + "date": "2020-03-14", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.429, + "new_cases_per_million": 0.715, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-15", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.429, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 31.48 + }, + { + "date": "2020-03-16", + "total_cases": 4.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.858, + "new_cases_per_million": 1.429, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 3.573, + "new_cases_per_million": 0.715, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-18", + "total_cases": 7.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 5.002, + "new_cases_per_million": 1.429, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-19", + "total_cases": 9.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.431, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-20", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.817, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-03-21", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-22", + "total_cases": 49.0, + "new_cases": 40.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.013, + "new_cases_per_million": 28.582, + "new_cases_smoothed_per_million": 4.798, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-23", + "total_cases": 50.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 35.727, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-24", + "total_cases": 51.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.442, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-25", + "total_cases": 57.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.729, + "new_cases_per_million": 4.287, + "new_cases_smoothed_per_million": 5.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-26", + "total_cases": 60.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.873, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 5.206, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 60.19 + }, + { + "date": "2020-03-27", + "total_cases": 65.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.445, + "new_cases_per_million": 3.573, + "new_cases_smoothed_per_million": 5.716, + "total_deaths_per_million": 0.715, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 60.19 + }, + { + "date": "2020-03-28", + "total_cases": 66.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 47.16, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 5.818, + "total_deaths_per_million": 1.429, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 60.19 + }, + { + "date": "2020-03-29", + "total_cases": 74.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 52.876, + "new_cases_per_million": 5.716, + "new_cases_smoothed_per_million": 2.552, + "total_deaths_per_million": 1.429, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 65.74 + }, + { + "date": "2020-03-30", + "total_cases": 78.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.0, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 55.735, + "new_cases_per_million": 2.858, + "new_cases_smoothed_per_million": 2.858, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 76.85 + }, + { + "date": "2020-03-31", + "total_cases": 85.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 60.736, + "new_cases_per_million": 5.002, + "new_cases_smoothed_per_million": 3.471, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 87.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 62.165, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 3.062, + "total_deaths_per_million": 2.144, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 89.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 63.595, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 2.96, + "total_deaths_per_million": 3.573, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 97.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 69.311, + "new_cases_per_million": 5.716, + "new_cases_smoothed_per_million": 3.266, + "total_deaths_per_million": 4.287, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.51, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 100.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 71.455, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 3.471, + "total_deaths_per_million": 4.287, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 103.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 73.598, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 2.96, + "total_deaths_per_million": 4.287, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 104.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.313, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 2.654, + "total_deaths_per_million": 5.002, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 105.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 75.027, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 2.042, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.51, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 107.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 76.456, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 2.042, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.51, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 107.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 76.456, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 109.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 77.885, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 1.225, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 109.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 77.885, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 112.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 80.029, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 113.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 80.744, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.744, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.817, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.744, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 114.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.51, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 114.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 81.458, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 115.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.173, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 115.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.173, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 116.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.204, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-05", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-06", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-07", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-08", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-09", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-10", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-11", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-12", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-13", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-14", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-15", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-16", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-17", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-18", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-19", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-20", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-05-21", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-22", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-23", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-24", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-25", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-26", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-27", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-28", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-29", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-30", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 82.887, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-05-31", + "total_cases": 117.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-01", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-02", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-03", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-04", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-05", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-06", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-07", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-08", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 83.33 + }, + { + "date": "2020-06-09", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-13", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-14", + "total_cases": 117.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 83.602, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-15", + "total_cases": 123.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 4.287, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-16", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-17", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-18", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-19", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-20", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-21", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-22", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-23", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-24", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-25", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-26", + "total_cases": 123.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.889, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-27", + "total_cases": 124.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.604, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-28", + "total_cases": 124.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 88.604, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.102, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-29", + "total_cases": 126.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.033, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-06-30", + "total_cases": 126.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 90.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-01", + "total_cases": 130.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.891, + "new_cases_per_million": 2.858, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-02", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-03", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-04", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-05", + "total_cases": 130.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.891, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-06", + "total_cases": 133.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-07", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.715, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-08", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-09", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-10", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-11", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-12", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-13", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-14", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-15", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-16", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-17", + "total_cases": 133.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.035, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-18", + "total_cases": 136.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.178, + "new_cases_per_million": 2.144, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-19", + "total_cases": 137.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.893, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-20", + "total_cases": 137.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.893, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-21", + "total_cases": 137.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.893, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.408, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-22", + "total_cases": 139.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.322, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-23", + "total_cases": 141.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.751, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 0.817, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-24", + "total_cases": 141.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.751, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.817, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-25", + "total_cases": 142.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.465, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 0.612, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-26", + "total_cases": 147.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.038, + "new_cases_per_million": 3.573, + "new_cases_smoothed_per_million": 1.021, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-27", + "total_cases": 147.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.038, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.021, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-28", + "total_cases": 148.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.753, + "new_cases_per_million": 0.715, + "new_cases_smoothed_per_million": 1.123, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-29", + "total_cases": 154.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 110.04, + "new_cases_per_million": 4.287, + "new_cases_smoothed_per_million": 1.531, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-30", + "total_cases": 156.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.469, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 1.531, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-07-31", + "total_cases": 164.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.185, + "new_cases_per_million": 5.716, + "new_cases_smoothed_per_million": 2.348, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-01", + "total_cases": 169.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.758, + "new_cases_per_million": 3.573, + "new_cases_smoothed_per_million": 2.756, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-02", + "total_cases": 173.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.616, + "new_cases_per_million": 2.858, + "new_cases_smoothed_per_million": 2.654, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-03", + "total_cases": 182.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.047, + "new_cases_per_million": 6.431, + "new_cases_smoothed_per_million": 3.573, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-04", + "total_cases": 182.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 130.047, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.471, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-05", + "total_cases": 194.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 138.622, + "new_cases_per_million": 8.575, + "new_cases_smoothed_per_million": 4.083, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-06", + "total_cases": 199.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 142.195, + "new_cases_per_million": 3.573, + "new_cases_smoothed_per_million": 4.389, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-07", + "total_cases": 210.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 150.055, + "new_cases_per_million": 7.86, + "new_cases_smoothed_per_million": 4.696, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-08", + "total_cases": 225.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 160.773, + "new_cases_per_million": 10.718, + "new_cases_smoothed_per_million": 5.716, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-09", + "total_cases": 275.0, + "new_cases": 50.0, + "new_cases_smoothed": 14.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.5, + "new_cases_per_million": 35.727, + "new_cases_smoothed_per_million": 10.412, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-10", + "total_cases": 279.0, + "new_cases": 4.0, + "new_cases_smoothed": 13.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 199.358, + "new_cases_per_million": 2.858, + "new_cases_smoothed_per_million": 9.902, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-11", + "total_cases": 281.0, + "new_cases": 2.0, + "new_cases_smoothed": 14.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 200.787, + "new_cases_per_million": 1.429, + "new_cases_smoothed_per_million": 10.106, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-12", + "total_cases": 295.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 210.791, + "new_cases_per_million": 10.004, + "new_cases_smoothed_per_million": 10.31, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-13", + "total_cases": 326.0, + "new_cases": 31.0, + "new_cases_smoothed": 18.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.942, + "new_cases_per_million": 22.151, + "new_cases_smoothed_per_million": 12.964, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-14", + "total_cases": 404.0, + "new_cases": 78.0, + "new_cases_smoothed": 27.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 288.676, + "new_cases_per_million": 55.735, + "new_cases_smoothed_per_million": 19.803, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-15", + "total_cases": 412.0, + "new_cases": 8.0, + "new_cases_smoothed": 26.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 294.393, + "new_cases_per_million": 5.716, + "new_cases_smoothed_per_million": 19.089, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-08-16", + "total_cases": 474.0, + "new_cases": 62.0, + "new_cases_smoothed": 28.429, + "total_deaths": 10.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 338.695, + "new_cases_per_million": 44.302, + "new_cases_smoothed_per_million": 20.314, + "total_deaths_per_million": 7.145, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 0.204, + "stringency_index": 60.19 + }, + { + "date": "2020-08-17", + "total_cases": 552.0, + "new_cases": 78.0, + "new_cases_smoothed": 39.0, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 394.429, + "new_cases_per_million": 55.735, + "new_cases_smoothed_per_million": 27.867, + "total_deaths_per_million": 7.86, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-18", + "total_cases": 552.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 394.429, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.663, + "total_deaths_per_million": 7.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-19", + "total_cases": 629.0, + "new_cases": 77.0, + "new_cases_smoothed": 47.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 449.449, + "new_cases_per_million": 55.02, + "new_cases_smoothed_per_million": 34.094, + "total_deaths_per_million": 8.575, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 80.56 + }, + { + "date": "2020-08-20", + "total_cases": 686.0, + "new_cases": 57.0, + "new_cases_smoothed": 51.429, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 490.178, + "new_cases_per_million": 40.729, + "new_cases_smoothed_per_million": 36.748, + "total_deaths_per_million": 8.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 80.56 + }, + { + "date": "2020-08-21", + "total_cases": 767.0, + "new_cases": 81.0, + "new_cases_smoothed": 51.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 548.056, + "new_cases_per_million": 57.878, + "new_cases_smoothed_per_million": 37.054, + "total_deaths_per_million": 8.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 80.56 + }, + { + "date": "2020-08-22", + "total_cases": 864.0, + "new_cases": 97.0, + "new_cases_smoothed": 64.571, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 617.367, + "new_cases_per_million": 69.311, + "new_cases_smoothed_per_million": 46.139, + "total_deaths_per_million": 8.575, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 80.56 + }, + { + "date": "2020-08-23", + "total_cases": 930.0, + "new_cases": 66.0, + "new_cases_smoothed": 65.143, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 664.527, + "new_cases_per_million": 47.16, + "new_cases_smoothed_per_million": 46.548, + "total_deaths_per_million": 9.289, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-24", + "total_cases": 1007.0, + "new_cases": 77.0, + "new_cases_smoothed": 65.0, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 719.547, + "new_cases_per_million": 55.02, + "new_cases_smoothed_per_million": 46.445, + "total_deaths_per_million": 10.004, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-25", + "total_cases": 1099.0, + "new_cases": 92.0, + "new_cases_smoothed": 78.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 785.286, + "new_cases_per_million": 65.738, + "new_cases_smoothed_per_million": 55.837, + "total_deaths_per_million": 10.718, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.408, + "stringency_index": 80.56 + }, + { + "date": "2020-08-26", + "total_cases": 1252.0, + "new_cases": 153.0, + "new_cases_smoothed": 89.0, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 894.611, + "new_cases_per_million": 109.325, + "new_cases_smoothed_per_million": 63.595, + "total_deaths_per_million": 10.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-27", + "total_cases": 1411.0, + "new_cases": 159.0, + "new_cases_smoothed": 103.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1008.224, + "new_cases_per_million": 113.613, + "new_cases_smoothed_per_million": 74.006, + "total_deaths_per_million": 10.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-28", + "total_cases": 1476.0, + "new_cases": 65.0, + "new_cases_smoothed": 101.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1054.669, + "new_cases_per_million": 46.445, + "new_cases_smoothed_per_million": 72.373, + "total_deaths_per_million": 10.718, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.306, + "stringency_index": 80.56 + }, + { + "date": "2020-08-29", + "total_cases": 1554.0, + "new_cases": 78.0, + "new_cases_smoothed": 98.571, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1110.404, + "new_cases_per_million": 55.735, + "new_cases_smoothed_per_million": 70.434, + "total_deaths_per_million": 13.576, + "new_deaths_per_million": 2.858, + "new_deaths_smoothed_per_million": 0.715, + "stringency_index": 80.56 + }, + { + "date": "2020-08-30", + "total_cases": 1645.0, + "new_cases": 91.0, + "new_cases_smoothed": 102.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1175.427, + "new_cases_per_million": 65.024, + "new_cases_smoothed_per_million": 72.986, + "total_deaths_per_million": 13.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.612, + "stringency_index": 80.56 + }, + { + "date": "2020-08-31", + "total_cases": 1683.0, + "new_cases": 38.0, + "new_cases_smoothed": 96.571, + "total_deaths": 21.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1202.58, + "new_cases_per_million": 27.153, + "new_cases_smoothed_per_million": 69.005, + "total_deaths_per_million": 15.005, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 0.715, + "stringency_index": 80.56 + }, + { + "date": "2020-09-01", + "total_cases": 1759.0, + "new_cases": 76.0, + "new_cases_smoothed": 94.286, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1256.886, + "new_cases_per_million": 54.305, + "new_cases_smoothed_per_million": 67.371, + "total_deaths_per_million": 15.72, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.715 + }, + { + "date": "2020-09-02", + "total_cases": 1797.0, + "new_cases": 38.0, + "new_cases_smoothed": 77.857, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1284.038, + "new_cases_per_million": 27.153, + "new_cases_smoothed_per_million": 55.632, + "total_deaths_per_million": 19.293, + "new_deaths_per_million": 3.573, + "new_deaths_smoothed_per_million": 1.225 + }, + { + "date": "2020-09-03", + "total_cases": 1920.0, + "new_cases": 123.0, + "new_cases_smoothed": 72.714, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 1371.927, + "new_cases_per_million": 87.889, + "new_cases_smoothed_per_million": 51.958, + "total_deaths_per_million": 20.007, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 1.327 + }, + { + "date": "2020-09-04", + "total_cases": 1984.0, + "new_cases": 64.0, + "new_cases_smoothed": 72.571, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1417.658, + "new_cases_per_million": 45.731, + "new_cases_smoothed_per_million": 51.856, + "total_deaths_per_million": 20.722, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 1.429 + }, + { + "date": "2020-09-05", + "total_cases": 2040.0, + "new_cases": 56.0, + "new_cases_smoothed": 69.429, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 1457.673, + "new_cases_per_million": 40.015, + "new_cases_smoothed_per_million": 49.61, + "total_deaths_per_million": 22.151, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 1.225 + } + ] + }, + "TUN": { + "continent": "Africa", + "location": "Tunisia", + "population": 11818618.0, + "population_density": 74.228, + "median_age": 32.7, + "aged_65_older": 8.001, + "aged_70_older": 5.075, + "gdp_per_capita": 10849.297, + "extreme_poverty": 2.0, + "cardiovasc_death_rate": 318.991, + "diabetes_prevalence": 8.52, + "female_smokers": 1.1, + "male_smokers": 65.8, + "handwashing_facilities": 78.687, + "hospital_beds_per_thousand": 2.3, + "life_expectancy": 76.7, + "data": [ + { + "date": "2020-03-03", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.085, + "new_cases_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 24.07 + }, + { + "date": "2020-03-10", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.169, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 28.0, + "total_tests": 28.0, + "total_tests_per_thousand": 0.002, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-03-11", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.423, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 71.0, + "total_tests": 99.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-03-12", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.592, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 42.0, + "total_tests": 141.0, + "total_tests_per_thousand": 0.012, + "new_tests_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-03-13", + "total_cases": 13.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.1, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 211.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-14", + "total_cases": 16.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.354, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 31.0, + "total_tests": 242.0, + "total_tests_per_thousand": 0.02, + "new_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.354, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 312.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-03-16", + "total_cases": 18.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.523, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 67.0, + "total_tests": 379.0, + "total_tests_per_thousand": 0.032, + "new_tests_per_thousand": 0.006, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-03-17", + "total_cases": 20.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.692, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 70.0, + "total_tests": 449.0, + "total_tests_per_thousand": 0.038, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 60.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 23.333000000000002, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 38.89 + }, + { + "date": "2020-03-18", + "total_cases": 24.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.031, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 86.0, + "total_tests": 535.0, + "total_tests_per_thousand": 0.045, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 62.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 22.842, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-19", + "total_cases": 29.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.454, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.266, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 79.0, + "total_tests": 614.0, + "total_tests_per_thousand": 0.052, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 68.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 21.636, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-03-20", + "total_cases": 39.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.3, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 126.0, + "total_tests": 740.0, + "total_tests_per_thousand": 0.063, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 76.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 20.462, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-21", + "total_cases": 54.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.569, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 0.459, + "total_deaths_per_million": 0.085, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 135.0, + "total_tests": 875.0, + "total_tests_per_thousand": 0.074, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 90.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 16.579, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-03-22", + "total_cases": 60.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5.077, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.532, + "total_deaths_per_million": 0.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 132.0, + "total_tests": 1007.0, + "total_tests_per_thousand": 0.085, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 99.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 15.75, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-23", + "total_cases": 75.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.143, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.346, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 0.689, + "total_deaths_per_million": 0.254, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 138.0, + "total_tests": 1145.0, + "total_tests_per_thousand": 0.097, + "new_tests_per_thousand": 0.012, + "new_tests_smoothed": 109.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 13.386, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-24", + "total_cases": 89.0, + "new_cases": 14.0, + "new_cases_smoothed": 9.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 7.53, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 0.834, + "total_deaths_per_million": 0.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 229.0, + "total_tests": 1374.0, + "total_tests_per_thousand": 0.116, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 132.0, + "new_tests_smoothed_per_thousand": 0.011, + "tests_per_case": 13.390999999999998, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-25", + "total_cases": 114.0, + "new_cases": 25.0, + "new_cases_smoothed": 12.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9.646, + "new_cases_per_million": 2.115, + "new_cases_smoothed_per_million": 1.088, + "total_deaths_per_million": 0.254, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 309.0, + "total_tests": 1683.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 164.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 12.755999999999998, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-26", + "total_cases": 173.0, + "new_cases": 59.0, + "new_cases_smoothed": 20.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 14.638, + "new_cases_per_million": 4.992, + "new_cases_smoothed_per_million": 1.741, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 282.0, + "total_tests": 1965.0, + "total_tests_per_thousand": 0.166, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 193.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 9.382, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-27", + "total_cases": 173.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 14.638, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.62, + "total_deaths_per_million": 0.423, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 724.0, + "total_tests": 2689.0, + "total_tests_per_thousand": 0.228, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 278.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 14.522, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 227.0, + "new_cases": 54.0, + "new_cases_smoothed": 24.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 19.207, + "new_cases_per_million": 4.569, + "new_cases_smoothed_per_million": 2.091, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 536.0, + "total_tests": 3225.0, + "total_tests_per_thousand": 0.273, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 336.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 13.595, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 19.207, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.019, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 447.0, + "total_tests": 3672.0, + "total_tests_per_thousand": 0.311, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 381.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 15.97, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 278.0, + "new_cases": 51.0, + "new_cases_smoothed": 29.0, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 23.522, + "new_cases_per_million": 4.315, + "new_cases_smoothed_per_million": 2.454, + "total_deaths_per_million": 0.677, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 442.0, + "total_tests": 4114.0, + "total_tests_per_thousand": 0.348, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 424.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 14.620999999999999, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 312.0, + "new_cases": 34.0, + "new_cases_smoothed": 31.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 26.399, + "new_cases_per_million": 2.877, + "new_cases_smoothed_per_million": 2.696, + "total_deaths_per_million": 0.677, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 550.0, + "total_tests": 4664.0, + "total_tests_per_thousand": 0.395, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 470.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 14.753, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 362.0, + "new_cases": 50.0, + "new_cases_smoothed": 35.429, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 30.63, + "new_cases_per_million": 4.231, + "new_cases_smoothed_per_million": 2.998, + "total_deaths_per_million": 0.762, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.073, + "new_tests": 674.0, + "total_tests": 5338.0, + "total_tests_per_thousand": 0.452, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 522.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 14.734000000000002, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 394.0, + "new_cases": 32.0, + "new_cases_smoothed": 31.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 33.337, + "new_cases_per_million": 2.708, + "new_cases_smoothed_per_million": 2.671, + "total_deaths_per_million": 0.846, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 606.0, + "total_tests": 5944.0, + "total_tests_per_thousand": 0.503, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 568.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 17.991, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 455.0, + "new_cases": 61.0, + "new_cases_smoothed": 40.286, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 38.499, + "new_cases_per_million": 5.161, + "new_cases_smoothed_per_million": 3.409, + "total_deaths_per_million": 1.1, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 749.0, + "total_tests": 6693.0, + "total_tests_per_thousand": 0.566, + "new_tests_per_thousand": 0.063, + "new_tests_smoothed": 572.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 14.199000000000002, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 455.0, + "new_cases": 0.0, + "new_cases_smoothed": 32.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 38.499, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.756, + "total_deaths_per_million": 1.1, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 658.0, + "total_tests": 7351.0, + "total_tests_per_thousand": 0.622, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 589.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 18.083, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 495.0, + "new_cases": 40.0, + "new_cases_smoothed": 38.286, + "total_deaths": 18.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 41.883, + "new_cases_per_million": 3.384, + "new_cases_smoothed_per_million": 3.239, + "total_deaths_per_million": 1.523, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 580.0, + "total_tests": 7931.0, + "total_tests_per_thousand": 0.671, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 608.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 15.880999999999998, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 553.0, + "new_cases": 58.0, + "new_cases_smoothed": 39.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 46.791, + "new_cases_per_million": 4.908, + "new_cases_smoothed_per_million": 3.324, + "total_deaths_per_million": 1.608, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 549.0, + "total_tests": 8480.0, + "total_tests_per_thousand": 0.718, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 624.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 15.884, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 574.0, + "new_cases": 21.0, + "new_cases_smoothed": 37.429, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 48.567, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 3.167, + "total_deaths_per_million": 1.861, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.169, + "new_tests": 604.0, + "total_tests": 9084.0, + "total_tests_per_thousand": 0.769, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 631.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 16.859, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 596.0, + "new_cases": 22.0, + "new_cases_smoothed": 33.429, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 50.429, + "new_cases_per_million": 1.861, + "new_cases_smoothed_per_million": 2.828, + "total_deaths_per_million": 1.861, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 692.0, + "total_tests": 9776.0, + "total_tests_per_thousand": 0.827, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 634.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 18.965999999999998, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 623.0, + "new_cases": 27.0, + "new_cases_smoothed": 32.714, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 52.713, + "new_cases_per_million": 2.285, + "new_cases_smoothed_per_million": 2.768, + "total_deaths_per_million": 1.946, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.157, + "new_tests": 571.0, + "total_tests": 10347.0, + "total_tests_per_thousand": 0.875, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 629.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 19.227, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 643.0, + "new_cases": 20.0, + "new_cases_smoothed": 26.857, + "total_deaths": 25.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 54.406, + "new_cases_per_million": 1.692, + "new_cases_smoothed_per_million": 2.272, + "total_deaths_per_million": 2.115, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 589.0, + "total_tests": 10936.0, + "total_tests_per_thousand": 0.925, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 606.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 22.564, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 671.0, + "new_cases": 28.0, + "new_cases_smoothed": 30.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 56.775, + "new_cases_per_million": 2.369, + "new_cases_smoothed_per_million": 2.611, + "total_deaths_per_million": 2.115, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 562.0, + "total_tests": 11498.0, + "total_tests_per_thousand": 0.973, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 592.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 19.185, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 685.0, + "new_cases": 14.0, + "new_cases_smoothed": 27.143, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 57.959, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 2.297, + "total_deaths_per_million": 2.369, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 587.0, + "total_tests": 12085.0, + "total_tests_per_thousand": 1.023, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 593.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 21.846999999999998, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 707.0, + "new_cases": 22.0, + "new_cases_smoothed": 22.0, + "total_deaths": 31.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 59.821, + "new_cases_per_million": 1.861, + "new_cases_smoothed_per_million": 1.861, + "total_deaths_per_million": 2.623, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 590.0, + "total_tests": 12675.0, + "total_tests_per_thousand": 1.072, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 599.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 27.226999999999997, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 726.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.714, + "total_deaths": 34.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 61.429, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 2.877, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 722.0, + "total_tests": 13397.0, + "total_tests_per_thousand": 1.134, + "new_tests_per_thousand": 0.061, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 28.368000000000002, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 747.0, + "new_cases": 21.0, + "new_cases_smoothed": 21.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 63.205, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 1.825, + "total_deaths_per_million": 2.877, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 793.0, + "total_tests": 14190.0, + "total_tests_per_thousand": 1.201, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 631.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 29.252, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 780.0, + "new_cases": 33.0, + "new_cases_smoothed": 22.429, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 65.998, + "new_cases_per_million": 2.792, + "new_cases_smoothed_per_million": 1.898, + "total_deaths_per_million": 2.961, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 710.0, + "total_tests": 14900.0, + "total_tests_per_thousand": 1.261, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 650.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 28.980999999999998, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 822.0, + "new_cases": 42.0, + "new_cases_smoothed": 25.571, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 69.551, + "new_cases_per_million": 3.554, + "new_cases_smoothed_per_million": 2.164, + "total_deaths_per_million": 3.131, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 692.0, + "total_tests": 15592.0, + "total_tests_per_thousand": 1.319, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 665.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 26.006, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 864.0, + "new_cases": 42.0, + "new_cases_smoothed": 27.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 73.105, + "new_cases_per_million": 3.554, + "new_cases_smoothed_per_million": 2.333, + "total_deaths_per_million": 3.131, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.145, + "new_tests": 766.0, + "total_tests": 16358.0, + "total_tests_per_thousand": 1.384, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 694.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 25.171, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 866.0, + "new_cases": 2.0, + "new_cases_smoothed": 25.857, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 73.274, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 2.188, + "total_deaths_per_million": 3.131, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.109, + "new_tests": 1189.0, + "total_tests": 17547.0, + "total_tests_per_thousand": 1.485, + "new_tests_per_thousand": 0.101, + "new_tests_smoothed": 780.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 30.166, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-20", + "total_cases": 879.0, + "new_cases": 13.0, + "new_cases_smoothed": 24.571, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 74.374, + "new_cases_per_million": 1.1, + "new_cases_smoothed_per_million": 2.079, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.085, + "new_tests": 878.0, + "total_tests": 18425.0, + "total_tests_per_thousand": 1.559, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 821.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 33.413000000000004, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-21", + "total_cases": 884.0, + "new_cases": 5.0, + "new_cases_smoothed": 22.571, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 74.797, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 1.91, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 696.0, + "total_tests": 19121.0, + "total_tests_per_thousand": 1.618, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 818.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 36.241, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-22", + "total_cases": 901.0, + "new_cases": 17.0, + "new_cases_smoothed": 22.0, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 76.236, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 1.861, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 550.0, + "total_tests": 19671.0, + "total_tests_per_thousand": 1.664, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 783.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 35.591, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-23", + "total_cases": 901.0, + "new_cases": 0.0, + "new_cases_smoothed": 17.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 76.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.463, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 438.0, + "total_tests": 20109.0, + "total_tests_per_thousand": 1.701, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 744.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 43.041000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-24", + "total_cases": 918.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.714, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.674, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 1.16, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 559.0, + "total_tests": 20668.0, + "total_tests_per_thousand": 1.749, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 725.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 52.865, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-25", + "total_cases": 922.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.286, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 78.013, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.701, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 410.0, + "total_tests": 21078.0, + "total_tests_per_thousand": 1.783, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 674.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 81.345, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-26", + "total_cases": 939.0, + "new_cases": 17.0, + "new_cases_smoothed": 10.429, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 79.451, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 0.882, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 263.0, + "total_tests": 21341.0, + "total_tests_per_thousand": 1.806, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 542.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 51.973, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-27", + "total_cases": 949.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.0, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 80.297, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 3.215, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 396.0, + "total_tests": 21737.0, + "total_tests_per_thousand": 1.839, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 47.3, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 967.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.857, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 81.82, + "new_cases_per_million": 1.523, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 3.3, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 585.0, + "total_tests": 22322.0, + "total_tests_per_thousand": 1.889, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 457.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 38.542, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-29", + "total_cases": 975.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.571, + "total_deaths": 40.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 82.497, + "new_cases_per_million": 0.677, + "new_cases_smoothed_per_million": 0.894, + "total_deaths_per_million": 3.384, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 895.0, + "total_tests": 23217.0, + "total_tests_per_thousand": 1.964, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 507.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 47.958999999999996, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-04-30", + "total_cases": 980.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 82.92, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.955, + "total_deaths_per_million": 3.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 569.0, + "total_tests": 23786.0, + "total_tests_per_thousand": 2.013, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 46.519, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-01", + "total_cases": 994.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.857, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 84.105, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 3.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 529.0, + "total_tests": 24315.0, + "total_tests_per_thousand": 2.057, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 521.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 47.986999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-02", + "total_cases": 998.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.857, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 84.443, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.919, + "total_deaths_per_million": 3.469, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 351.0, + "total_tests": 24666.0, + "total_tests_per_thousand": 2.087, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 513.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 47.25, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-03", + "total_cases": 1009.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.0, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 85.374, + "new_cases_per_million": 0.931, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 3.554, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 447.0, + "total_tests": 25113.0, + "total_tests_per_thousand": 2.125, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 539.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 53.9, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 90.74 + }, + { + "date": "2020-05-04", + "total_cases": 1013.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.143, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 85.712, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.774, + "total_deaths_per_million": 3.554, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 312.0, + "total_tests": 25425.0, + "total_tests_per_thousand": 2.151, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 527.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 57.641000000000005, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-05", + "total_cases": 1018.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.286, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 86.135, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.616, + "total_deaths_per_million": 3.638, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.048, + "new_tests_smoothed": 473.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 64.922, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-06", + "total_cases": 1022.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.714, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 86.474, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.568, + "total_deaths_per_million": 3.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 412.0, + "total_tests": 25837.0, + "total_tests_per_thousand": 2.186, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 374.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 55.702, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-07", + "total_cases": 1025.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 86.728, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 3.638, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1453.0, + "total_tests": 27290.0, + "total_tests_per_thousand": 2.309, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 501.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 77.933, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-08", + "total_cases": 1026.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.571, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 86.812, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 3.723, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1877.0, + "total_tests": 29167.0, + "total_tests_per_thousand": 2.468, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 693.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 151.594, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-09", + "total_cases": 1030.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 87.151, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 292.0, + "total_tests": 29459.0, + "total_tests_per_thousand": 2.493, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 685.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 149.844, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-10", + "total_cases": 1032.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 448.0, + "total_tests": 29907.0, + "total_tests_per_thousand": 2.53, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 685.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 208.47799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-11", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 614.0, + "total_tests": 30521.0, + "total_tests_per_thousand": 2.582, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 728.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 268.211, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-12", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 443.0, + "total_tests": 30964.0, + "total_tests_per_thousand": 2.62, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 762.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 381.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-13", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 2200.0, + "total_tests": 33164.0, + "total_tests_per_thousand": 2.806, + "new_tests_per_thousand": 0.186, + "new_tests_smoothed": 1047.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 732.9, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-14", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1339.0, + "total_tests": 34503.0, + "total_tests_per_thousand": 2.919, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 1030.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 1030.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-05-15", + "total_cases": 1032.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 87.32, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1916.0, + "total_tests": 36419.0, + "total_tests_per_thousand": 3.081, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 1036.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 1208.667, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-16", + "total_cases": 1035.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.574, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 781.0, + "total_tests": 37200.0, + "total_tests_per_thousand": 3.148, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 1106.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 1548.4, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-17", + "total_cases": 1035.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.574, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1061.0, + "total_tests": 38261.0, + "total_tests_per_thousand": 3.237, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1193.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 2783.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-18", + "total_cases": 1037.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 45.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 87.743, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.06, + "total_deaths_per_million": 3.808, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 869.0, + "total_tests": 39130.0, + "total_tests_per_thousand": 3.311, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 1230.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 1722.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-19", + "total_cases": 1043.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.571, + "total_deaths": 46.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.251, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 3.892, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1234.0, + "total_tests": 40364.0, + "total_tests_per_thousand": 3.415, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1343.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 854.6360000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-20", + "total_cases": 1044.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 47.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.335, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 3.977, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1585.0, + "total_tests": 41949.0, + "total_tests_per_thousand": 3.549, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 1255.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 732.0830000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-21", + "total_cases": 1045.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.42, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 3.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1320.0, + "total_tests": 43269.0, + "total_tests_per_thousand": 3.661, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1252.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 674.154, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-22", + "total_cases": 1046.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.0, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.504, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 3.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1021.0, + "total_tests": 44290.0, + "total_tests_per_thousand": 3.747, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 1124.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 562.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 1048.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.857, + "total_deaths": 47.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.674, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 3.977, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 167.0, + "total_tests": 44457.0, + "total_tests_per_thousand": 3.762, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 1037.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 558.385, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 1048.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 48.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 88.674, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 660.0, + "total_tests": 45117.0, + "total_tests_per_thousand": 3.817, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 979.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 527.154, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 1051.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 88.927, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.169, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 637.0, + "total_tests": 45754.0, + "total_tests_per_thousand": 3.871, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 946.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 473.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-26", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 838.0, + "total_tests": 46592.0, + "total_tests_per_thousand": 3.942, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 890.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 778.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-27", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 429.0, + "total_tests": 47021.0, + "total_tests_per_thousand": 3.979, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 725.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 725.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-28", + "total_cases": 1051.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 88.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 791.0, + "total_tests": 47812.0, + "total_tests_per_thousand": 4.045, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 649.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 757.1669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-29", + "total_cases": 1068.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.143, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 90.366, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 0.266, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 710.0, + "total_tests": 48522.0, + "total_tests_per_thousand": 4.106, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 605.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 192.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-30", + "total_cases": 1071.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.286, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 90.62, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 622.0, + "total_tests": 49144.0, + "total_tests_per_thousand": 4.158, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 670.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 203.91299999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-31", + "total_cases": 1076.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.043, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 366.0, + "total_tests": 49510.0, + "total_tests_per_thousand": 4.189, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 628.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 157.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-06-01", + "total_cases": 1077.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.127, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.314, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 287.0, + "total_tests": 49797.0, + "total_tests_per_thousand": 4.213, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 578.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 155.615, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-06-02", + "total_cases": 1084.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.72, + "new_cases_per_million": 0.592, + "new_cases_smoothed_per_million": 0.399, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 378.0, + "total_tests": 50175.0, + "total_tests_per_thousand": 4.245, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 512.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 108.60600000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-06-03", + "total_cases": 1086.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 48.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.889, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.423, + "total_deaths_per_million": 4.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 611.0, + "total_tests": 50786.0, + "total_tests_per_thousand": 4.297, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 538.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 107.6, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-06-04", + "total_cases": 1087.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.143, + "total_deaths": 49.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.435, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 503.0, + "total_tests": 51289.0, + "total_tests_per_thousand": 4.34, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 497.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 96.639, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-06-05", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 705.0, + "total_tests": 51994.0, + "total_tests_per_thousand": 4.399, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 496.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 182.737, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-06-06", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 61.0, + "total_tests": 52055.0, + "total_tests_per_thousand": 4.404, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 416.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 182.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-06-07", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.133, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 160.0, + "total_tests": 52215.0, + "total_tests_per_thousand": 4.418, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 386.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 245.636, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-06-08", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 312.0, + "total_tests": 52527.0, + "total_tests_per_thousand": 4.444, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 390.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 273.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-09", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.036, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 319.0, + "total_tests": 52846.0, + "total_tests_per_thousand": 4.471, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 382.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 891.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-10", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1063.0, + "total_tests": 53909.0, + "total_tests_per_thousand": 4.561, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 446.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 3122.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-11", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1497.0, + "total_tests": 55406.0, + "total_tests_per_thousand": 4.688, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 588.0, + "new_tests_smoothed_per_thousand": 0.05, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-12", + "total_cases": 1087.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 91.974, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1117.0, + "total_tests": 56523.0, + "total_tests_per_thousand": 4.783, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 647.0, + "new_tests_smoothed_per_thousand": 0.055, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-13", + "total_cases": 1093.0, + "new_cases": 6.0, + "new_cases_smoothed": 0.857, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.481, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.073, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 985.0, + "total_tests": 57508.0, + "total_tests_per_thousand": 4.866, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 779.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 908.8330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-14", + "total_cases": 1094.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.566, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 558.0, + "total_tests": 58066.0, + "total_tests_per_thousand": 4.913, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 836.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 836.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-15", + "total_cases": 1096.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 92.735, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1492.0, + "total_tests": 59558.0, + "total_tests_per_thousand": 5.039, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 1004.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 780.8889999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-16", + "total_cases": 1110.0, + "new_cases": 14.0, + "new_cases_smoothed": 3.286, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 93.92, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 709.0, + "total_tests": 60267.0, + "total_tests_per_thousand": 5.099, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1060.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 322.60900000000004, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-17", + "total_cases": 1125.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.429, + "total_deaths": 49.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 95.189, + "new_cases_per_million": 1.269, + "new_cases_smoothed_per_million": 0.459, + "total_deaths_per_million": 4.146, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1279.0, + "total_tests": 61546.0, + "total_tests_per_thousand": 5.208, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 1091.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 200.97400000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-18", + "total_cases": 1128.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 50.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 95.443, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.496, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 605.0, + "total_tests": 62151.0, + "total_tests_per_thousand": 5.259, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 964.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 164.585, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-19", + "total_cases": 1132.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 95.781, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.544, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1530.0, + "total_tests": 63681.0, + "total_tests_per_thousand": 5.388, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 1023.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 159.13299999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-20", + "total_cases": 1146.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 96.966, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 0.641, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 189.0, + "total_tests": 63870.0, + "total_tests_per_thousand": 5.404, + "new_tests_per_thousand": 0.016, + "new_tests_smoothed": 909.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 120.057, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-21", + "total_cases": 1156.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 97.812, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.749, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 222.0, + "total_tests": 64092.0, + "total_tests_per_thousand": 5.423, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 861.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 97.21, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-22", + "total_cases": 1157.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 97.896, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.737, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 648.0, + "total_tests": 64740.0, + "total_tests_per_thousand": 5.478, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 740.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 84.91799999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-23", + "total_cases": 1159.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.066, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.592, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 217.0, + "total_tests": 64957.0, + "total_tests_per_thousand": 5.496, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 670.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 95.714, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-24", + "total_cases": 1159.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 98.066, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.411, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 221.0, + "total_tests": 65178.0, + "total_tests_per_thousand": 5.515, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 519.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 106.853, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-25", + "total_cases": 1160.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.15, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.387, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 242.0, + "total_tests": 65420.0, + "total_tests_per_thousand": 5.535, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 467.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 102.156, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-26", + "total_cases": 1162.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.319, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.363, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 353.0, + "total_tests": 65773.0, + "total_tests_per_thousand": 5.565, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 299.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 69.767, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-06-27", + "total_cases": 1164.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.489, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 82.0, + "total_tests": 65855.0, + "total_tests_per_thousand": 5.572, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 284.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 110.444, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-28", + "total_cases": 1168.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.827, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 308.0, + "total_tests": 66163.0, + "total_tests_per_thousand": 5.598, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 296.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 172.667, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-29", + "total_cases": 1169.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 98.912, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.145, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 513.0, + "total_tests": 66676.0, + "total_tests_per_thousand": 5.642, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 277.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 161.583, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-06-30", + "total_cases": 1172.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.166, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 574.0, + "total_tests": 67250.0, + "total_tests_per_thousand": 5.69, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 328.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 176.615, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-01", + "total_cases": 1174.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.335, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 620.0, + "total_tests": 67870.0, + "total_tests_per_thousand": 5.743, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 385.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 179.667, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-02", + "total_cases": 1175.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.419, + "new_cases_per_million": 0.085, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 491.0, + "total_tests": 68361.0, + "total_tests_per_thousand": 5.784, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 420.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 196.0, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-03", + "total_cases": 1178.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.673, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.193, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1213.0, + "total_tests": 69574.0, + "total_tests_per_thousand": 5.887, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 543.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 237.562, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-04", + "total_cases": 1181.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 99.927, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.205, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 450.0, + "total_tests": 70024.0, + "total_tests_per_thousand": 5.925, + "new_tests_per_thousand": 0.038, + "new_tests_smoothed": 596.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 245.412, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-05", + "total_cases": 1186.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.35, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 258.0, + "total_tests": 70282.0, + "total_tests_per_thousand": 5.947, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 588.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 228.667, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-06", + "total_cases": 1188.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 100.519, + "new_cases_per_million": 0.169, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 798.0, + "total_tests": 71080.0, + "total_tests_per_thousand": 6.014, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 629.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 231.737, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-07", + "total_cases": 1199.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.45, + "new_cases_per_million": 0.931, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1131.0, + "total_tests": 72211.0, + "total_tests_per_thousand": 6.11, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 709.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 183.815, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-08", + "total_cases": 1205.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 101.958, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 879.0, + "total_tests": 73090.0, + "total_tests_per_thousand": 6.184, + "new_tests_per_thousand": 0.074, + "new_tests_smoothed": 746.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 168.452, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-09", + "total_cases": 1221.0, + "new_cases": 16.0, + "new_cases_smoothed": 6.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 103.312, + "new_cases_per_million": 1.354, + "new_cases_smoothed_per_million": 0.556, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1175.0, + "total_tests": 74265.0, + "total_tests_per_thousand": 6.284, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 843.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 128.283, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-10", + "total_cases": 1231.0, + "new_cases": 10.0, + "new_cases_smoothed": 7.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.158, + "new_cases_per_million": 0.846, + "new_cases_smoothed_per_million": 0.641, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 974.0, + "total_tests": 75239.0, + "total_tests_per_thousand": 6.366, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 809.0, + "new_tests_smoothed_per_thousand": 0.068, + "tests_per_case": 106.84899999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-11", + "total_cases": 1240.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 104.919, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 0.713, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 577.0, + "total_tests": 75816.0, + "total_tests_per_thousand": 6.415, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 827.0, + "new_tests_smoothed_per_thousand": 0.07, + "tests_per_case": 98.119, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-12", + "total_cases": 1245.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 105.342, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.713, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 603.0, + "total_tests": 76419.0, + "total_tests_per_thousand": 6.466, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 877.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 104.051, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-13", + "total_cases": 1263.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 106.865, + "new_cases_per_million": 1.523, + "new_cases_smoothed_per_million": 0.907, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 791.0, + "total_tests": 77210.0, + "total_tests_per_thousand": 6.533, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 876.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 81.76, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-14", + "total_cases": 1302.0, + "new_cases": 39.0, + "new_cases_smoothed": 14.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 110.165, + "new_cases_per_million": 3.3, + "new_cases_smoothed_per_million": 1.245, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 909.0, + "total_tests": 78119.0, + "total_tests_per_thousand": 6.61, + "new_tests_per_thousand": 0.077, + "new_tests_smoothed": 844.0, + "new_tests_smoothed_per_thousand": 0.071, + "tests_per_case": 57.358999999999995, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-15", + "total_cases": 1306.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 110.504, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.221, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 971.0, + "total_tests": 79090.0, + "total_tests_per_thousand": 6.692, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 857.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 59.396, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-16", + "total_cases": 1319.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.0, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 111.604, + "new_cases_per_million": 1.1, + "new_cases_smoothed_per_million": 1.185, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 636.0, + "total_tests": 79726.0, + "total_tests_per_thousand": 6.746, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 780.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 55.714, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-17", + "total_cases": 1327.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 112.28, + "new_cases_per_million": 0.677, + "new_cases_smoothed_per_million": 1.16, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 769.0, + "total_tests": 80495.0, + "total_tests_per_thousand": 6.811, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 751.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 54.76, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-18", + "total_cases": 1336.0, + "new_cases": 9.0, + "new_cases_smoothed": 13.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 113.042, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 1.16, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 422.0, + "total_tests": 80917.0, + "total_tests_per_thousand": 6.847, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 729.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 53.156000000000006, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-19", + "total_cases": 1348.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 114.057, + "new_cases_per_million": 1.015, + "new_cases_smoothed_per_million": 1.245, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 846.0, + "total_tests": 81763.0, + "total_tests_per_thousand": 6.918, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 763.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 51.854, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-20", + "total_cases": 1374.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.257, + "new_cases_per_million": 2.2, + "new_cases_smoothed_per_million": 1.342, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 826.0, + "total_tests": 82589.0, + "total_tests_per_thousand": 6.988, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 768.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 48.431999999999995, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-21", + "total_cases": 1381.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 116.85, + "new_cases_per_million": 0.592, + "new_cases_smoothed_per_million": 0.955, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 945.0, + "total_tests": 83534.0, + "total_tests_per_thousand": 7.068, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 774.0, + "new_tests_smoothed_per_thousand": 0.065, + "tests_per_case": 68.582, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-22", + "total_cases": 1389.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.857, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.526, + "new_cases_per_million": 0.677, + "new_cases_smoothed_per_million": 1.003, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 999.0, + "total_tests": 84533.0, + "total_tests_per_thousand": 7.153, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 0.066, + "tests_per_case": 65.61399999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-23", + "total_cases": 1394.0, + "new_cases": 5.0, + "new_cases_smoothed": 10.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 117.949, + "new_cases_per_million": 0.423, + "new_cases_smoothed_per_million": 0.907, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1457.0, + "total_tests": 85990.0, + "total_tests_per_thousand": 7.276, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 895.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 83.53299999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-24", + "total_cases": 1406.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 118.965, + "new_cases_per_million": 1.015, + "new_cases_smoothed_per_million": 0.955, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 530.0, + "total_tests": 86520.0, + "total_tests_per_thousand": 7.321, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 861.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 76.291, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-25", + "total_cases": 1425.0, + "new_cases": 19.0, + "new_cases_smoothed": 12.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 120.572, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 1.076, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 327.0, + "total_tests": 86847.0, + "total_tests_per_thousand": 7.348, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 847.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 66.618, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-26", + "total_cases": 1443.0, + "new_cases": 18.0, + "new_cases_smoothed": 13.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.095, + "new_cases_per_million": 1.523, + "new_cases_smoothed_per_million": 1.148, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1081.0, + "total_tests": 87928.0, + "total_tests_per_thousand": 7.44, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 881.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 64.916, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-27", + "total_cases": 1452.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.143, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 122.857, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 0.943, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1454.0, + "total_tests": 89382.0, + "total_tests_per_thousand": 7.563, + "new_tests_per_thousand": 0.123, + "new_tests_smoothed": 970.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 87.051, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-28", + "total_cases": 1455.0, + "new_cases": 3.0, + "new_cases_smoothed": 10.571, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 123.111, + "new_cases_per_million": 0.254, + "new_cases_smoothed_per_million": 0.894, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1561.0, + "total_tests": 90943.0, + "total_tests_per_thousand": 7.695, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 1058.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 100.081, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-29", + "total_cases": 1468.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.286, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 124.211, + "new_cases_per_million": 1.1, + "new_cases_smoothed_per_million": 0.955, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1587.0, + "total_tests": 92530.0, + "total_tests_per_thousand": 7.829, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 1142.0, + "new_tests_smoothed_per_thousand": 0.097, + "tests_per_case": 101.19, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-30", + "total_cases": 1488.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 125.903, + "new_cases_per_million": 1.692, + "new_cases_smoothed_per_million": 1.136, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 331.0, + "total_tests": 92861.0, + "total_tests_per_thousand": 7.857, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 982.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 73.128, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-07-31", + "total_cases": 1514.0, + "new_cases": 26.0, + "new_cases_smoothed": 15.429, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 128.103, + "new_cases_per_million": 2.2, + "new_cases_smoothed_per_million": 1.305, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 99.0, + "total_tests": 92960.0, + "total_tests_per_thousand": 7.866, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 920.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 59.63, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-01", + "total_cases": 1535.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.714, + "total_deaths": 50.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.88, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 4.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 249.0, + "total_tests": 93209.0, + "total_tests_per_thousand": 7.887, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 909.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 57.845, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-02", + "total_cases": 1552.0, + "new_cases": 17.0, + "new_cases_smoothed": 15.571, + "total_deaths": 51.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 131.318, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 708.0, + "total_tests": 93917.0, + "total_tests_per_thousand": 7.947, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 856.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 54.972, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-03", + "total_cases": 1561.0, + "new_cases": 9.0, + "new_cases_smoothed": 15.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.08, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 1.318, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1578.0, + "total_tests": 95495.0, + "total_tests_per_thousand": 8.08, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 873.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 56.06399999999999, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-04", + "total_cases": 1565.0, + "new_cases": 4.0, + "new_cases_smoothed": 15.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 132.418, + "new_cases_per_million": 0.338, + "new_cases_smoothed_per_million": 1.33, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1475.0, + "total_tests": 96970.0, + "total_tests_per_thousand": 8.205, + "new_tests_per_thousand": 0.125, + "new_tests_smoothed": 861.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 54.791000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-05", + "total_cases": 1584.0, + "new_cases": 19.0, + "new_cases_smoothed": 16.571, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 134.026, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 1.402, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1743.0, + "total_tests": 98713.0, + "total_tests_per_thousand": 8.352, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 883.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 53.284, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-06", + "total_cases": 1601.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.143, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 135.464, + "new_cases_per_million": 1.438, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1382.0, + "total_tests": 100095.0, + "total_tests_per_thousand": 8.469, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 1033.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 63.99100000000001, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 26.85 + }, + { + "date": "2020-08-07", + "total_cases": 1642.0, + "new_cases": 41.0, + "new_cases_smoothed": 18.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 138.933, + "new_cases_per_million": 3.469, + "new_cases_smoothed_per_million": 1.547, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1283.0, + "total_tests": 101378.0, + "total_tests_per_thousand": 8.578, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1203.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 65.789, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-08", + "total_cases": 1656.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.286, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 140.118, + "new_cases_per_million": 1.185, + "new_cases_smoothed_per_million": 1.463, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 650.0, + "total_tests": 102028.0, + "total_tests_per_thousand": 8.633, + "new_tests_per_thousand": 0.055, + "new_tests_smoothed": 1260.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 72.893, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-09", + "total_cases": 1678.0, + "new_cases": 22.0, + "new_cases_smoothed": 18.0, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 141.979, + "new_cases_per_million": 1.861, + "new_cases_smoothed_per_million": 1.523, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 976.0, + "total_tests": 103004.0, + "total_tests_per_thousand": 8.715, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1298.0, + "new_tests_smoothed_per_thousand": 0.11, + "tests_per_case": 72.111, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-10", + "total_cases": 1697.0, + "new_cases": 19.0, + "new_cases_smoothed": 19.429, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 143.587, + "new_cases_per_million": 1.608, + "new_cases_smoothed_per_million": 1.644, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1202.0, + "total_tests": 104206.0, + "total_tests_per_thousand": 8.817, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1244.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 64.029, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-11", + "total_cases": 1717.0, + "new_cases": 20.0, + "new_cases_smoothed": 21.714, + "total_deaths": 51.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 145.279, + "new_cases_per_million": 1.692, + "new_cases_smoothed_per_million": 1.837, + "total_deaths_per_million": 4.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1289.0, + "total_tests": 105495.0, + "total_tests_per_thousand": 8.926, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1218.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 56.092, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-12", + "total_cases": 1738.0, + "new_cases": 21.0, + "new_cases_smoothed": 22.0, + "total_deaths": 52.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 147.056, + "new_cases_per_million": 1.777, + "new_cases_smoothed_per_million": 1.861, + "total_deaths_per_million": 4.4, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1200.0, + "total_tests": 106695.0, + "total_tests_per_thousand": 9.028, + "new_tests_per_thousand": 0.102, + "new_tests_smoothed": 1140.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 51.818000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-13", + "total_cases": 1780.0, + "new_cases": 42.0, + "new_cases_smoothed": 25.571, + "total_deaths": 52.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 150.61, + "new_cases_per_million": 3.554, + "new_cases_smoothed_per_million": 2.164, + "total_deaths_per_million": 4.4, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 1494.0, + "total_tests": 108189.0, + "total_tests_per_thousand": 9.154, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 1156.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 45.207, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-14", + "total_cases": 1847.0, + "new_cases": 67.0, + "new_cases_smoothed": 29.286, + "total_deaths": 53.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 156.279, + "new_cases_per_million": 5.669, + "new_cases_smoothed_per_million": 2.478, + "total_deaths_per_million": 4.484, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 1508.0, + "total_tests": 109697.0, + "total_tests_per_thousand": 9.282, + "new_tests_per_thousand": 0.128, + "new_tests_smoothed": 1188.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 40.566, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-15", + "total_cases": 1903.0, + "new_cases": 56.0, + "new_cases_smoothed": 35.286, + "total_deaths": 53.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 161.017, + "new_cases_per_million": 4.738, + "new_cases_smoothed_per_million": 2.986, + "total_deaths_per_million": 4.484, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "new_tests": 947.0, + "total_tests": 110644.0, + "total_tests_per_thousand": 9.362, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 1231.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 34.887, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-16", + "total_cases": 2023.0, + "new_cases": 120.0, + "new_cases_smoothed": 49.286, + "total_deaths": 54.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 171.171, + "new_cases_per_million": 10.153, + "new_cases_smoothed_per_million": 4.17, + "total_deaths_per_million": 4.569, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1404.0, + "total_tests": 112048.0, + "total_tests_per_thousand": 9.481, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 1292.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 26.214000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-17", + "total_cases": 2107.0, + "new_cases": 84.0, + "new_cases_smoothed": 58.571, + "total_deaths": 54.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 178.278, + "new_cases_per_million": 7.107, + "new_cases_smoothed_per_million": 4.956, + "total_deaths_per_million": 4.569, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1710.0, + "total_tests": 113758.0, + "total_tests_per_thousand": 9.625, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 1365.0, + "new_tests_smoothed_per_thousand": 0.115, + "tests_per_case": 23.305, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-18", + "total_cases": 2185.0, + "new_cases": 78.0, + "new_cases_smoothed": 66.857, + "total_deaths": 56.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 184.878, + "new_cases_per_million": 6.6, + "new_cases_smoothed_per_million": 5.657, + "total_deaths_per_million": 4.738, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.06, + "new_tests": 2107.0, + "total_tests": 115865.0, + "total_tests_per_thousand": 9.804, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 1481.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 22.151999999999997, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-19", + "total_cases": 2185.0, + "new_cases": 0.0, + "new_cases_smoothed": 63.857, + "total_deaths": 56.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 184.878, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.403, + "total_deaths_per_million": 4.738, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 1699.0, + "total_tests": 117564.0, + "total_tests_per_thousand": 9.947, + "new_tests_per_thousand": 0.144, + "new_tests_smoothed": 1553.0, + "new_tests_smoothed_per_thousand": 0.131, + "tests_per_case": 24.32, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-20", + "total_cases": 2427.0, + "new_cases": 242.0, + "new_cases_smoothed": 92.429, + "total_deaths": 60.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 205.354, + "new_cases_per_million": 20.476, + "new_cases_smoothed_per_million": 7.821, + "total_deaths_per_million": 5.077, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 2007.0, + "total_tests": 119571.0, + "total_tests_per_thousand": 10.117, + "new_tests_per_thousand": 0.17, + "new_tests_smoothed": 1626.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 17.592, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-21", + "total_cases": 2543.0, + "new_cases": 116.0, + "new_cases_smoothed": 99.429, + "total_deaths": 63.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 215.169, + "new_cases_per_million": 9.815, + "new_cases_smoothed_per_million": 8.413, + "total_deaths_per_million": 5.331, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 2236.0, + "total_tests": 121807.0, + "total_tests_per_thousand": 10.306, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 1730.0, + "new_tests_smoothed_per_thousand": 0.146, + "tests_per_case": 17.399, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-22", + "total_cases": 2607.0, + "new_cases": 64.0, + "new_cases_smoothed": 100.571, + "total_deaths": 64.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 220.584, + "new_cases_per_million": 5.415, + "new_cases_smoothed_per_million": 8.51, + "total_deaths_per_million": 5.415, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 1461.0, + "total_tests": 123268.0, + "total_tests_per_thousand": 10.43, + "new_tests_per_thousand": 0.124, + "new_tests_smoothed": 1803.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 17.928, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-23", + "total_cases": 2738.0, + "new_cases": 131.0, + "new_cases_smoothed": 102.143, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 231.668, + "new_cases_per_million": 11.084, + "new_cases_smoothed_per_million": 8.643, + "total_deaths_per_million": 5.754, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.169, + "new_tests": 2508.0, + "total_tests": 125776.0, + "total_tests_per_thousand": 10.642, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 1961.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 19.199, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-24", + "total_cases": 2738.0, + "new_cases": 0.0, + "new_cases_smoothed": 90.143, + "total_deaths": 68.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 231.668, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.627, + "total_deaths_per_million": 5.754, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.169, + "new_tests": 2251.0, + "total_tests": 128027.0, + "total_tests_per_thousand": 10.833, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 22.609, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-25", + "total_cases": 2893.0, + "new_cases": 155.0, + "new_cases_smoothed": 101.143, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 244.783, + "new_cases_per_million": 13.115, + "new_cases_smoothed_per_million": 8.558, + "total_deaths_per_million": 6.007, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 2589.0, + "total_tests": 130616.0, + "total_tests_per_thousand": 11.052, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 2107.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 20.831999999999997, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-26", + "total_cases": 3069.0, + "new_cases": 176.0, + "new_cases_smoothed": 126.286, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 259.675, + "new_cases_per_million": 14.892, + "new_cases_smoothed_per_million": 10.685, + "total_deaths_per_million": 6.007, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 2997.0, + "total_tests": 133613.0, + "total_tests_per_thousand": 11.305, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 2293.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 18.157, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-27", + "total_cases": 3206.0, + "new_cases": 137.0, + "new_cases_smoothed": 111.286, + "total_deaths": 71.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 271.267, + "new_cases_per_million": 11.592, + "new_cases_smoothed_per_million": 9.416, + "total_deaths_per_million": 6.007, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 2586.0, + "total_tests": 136199.0, + "total_tests_per_thousand": 11.524, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 2375.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 21.340999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-28", + "total_cases": 3323.0, + "new_cases": 117.0, + "new_cases_smoothed": 111.429, + "total_deaths": 73.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 281.167, + "new_cases_per_million": 9.9, + "new_cases_smoothed_per_million": 9.428, + "total_deaths_per_million": 6.177, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 2667.0, + "total_tests": 138866.0, + "total_tests_per_thousand": 11.75, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 2437.0, + "new_tests_smoothed_per_thousand": 0.206, + "tests_per_case": 21.871, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-29", + "total_cases": 3461.0, + "new_cases": 138.0, + "new_cases_smoothed": 122.0, + "total_deaths": 74.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 292.843, + "new_cases_per_million": 11.676, + "new_cases_smoothed_per_million": 10.323, + "total_deaths_per_million": 6.261, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.121, + "new_tests": 1848.0, + "total_tests": 140714.0, + "total_tests_per_thousand": 11.906, + "new_tests_per_thousand": 0.156, + "new_tests_smoothed": 2492.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 20.426, + "positive_rate": 0.049, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 3572.0, + "new_cases": 111.0, + "new_cases_smoothed": 119.143, + "total_deaths": 76.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 302.235, + "new_cases_per_million": 9.392, + "new_cases_smoothed_per_million": 10.081, + "total_deaths_per_million": 6.431, + "new_deaths_per_million": 0.169, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 2265.0, + "total_tests": 142979.0, + "total_tests_per_thousand": 12.098, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 2458.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 20.631, + "positive_rate": 0.048, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 3685.0, + "new_cases": 113.0, + "new_cases_smoothed": 135.286, + "total_deaths": 76.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 311.796, + "new_cases_per_million": 9.561, + "new_cases_smoothed_per_million": 11.447, + "total_deaths_per_million": 6.431, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.097, + "new_tests": 1905.0, + "total_tests": 144884.0, + "total_tests_per_thousand": 12.259, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 2408.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 17.799, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 3803.0, + "new_cases": 118.0, + "new_cases_smoothed": 130.0, + "total_deaths": 77.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 321.78, + "new_cases_per_million": 9.984, + "new_cases_smoothed_per_million": 11.0, + "total_deaths_per_million": 6.515, + "new_deaths_per_million": 0.085, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-02", + "total_cases": 3803.0, + "new_cases": 0.0, + "new_cases_smoothed": 104.857, + "total_deaths": 77.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 321.78, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.872, + "total_deaths_per_million": 6.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.073 + }, + { + "date": "2020-09-03", + "total_cases": 4196.0, + "new_cases": 393.0, + "new_cases_smoothed": 141.429, + "total_deaths": 81.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 355.033, + "new_cases_per_million": 33.253, + "new_cases_smoothed_per_million": 11.967, + "total_deaths_per_million": 6.854, + "new_deaths_per_million": 0.338, + "new_deaths_smoothed_per_million": 0.121 + }, + { + "date": "2020-09-04", + "total_cases": 4394.0, + "new_cases": 198.0, + "new_cases_smoothed": 153.0, + "total_deaths": 84.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 371.786, + "new_cases_per_million": 16.753, + "new_cases_smoothed_per_million": 12.946, + "total_deaths_per_million": 7.107, + "new_deaths_per_million": 0.254, + "new_deaths_smoothed_per_million": 0.133 + }, + { + "date": "2020-09-05", + "total_cases": 4394.0, + "new_cases": 0.0, + "new_cases_smoothed": 133.286, + "total_deaths": 84.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 371.786, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.278, + "total_deaths_per_million": 7.107, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.121 + } + ] + }, + "TUR": { + "continent": "Asia", + "location": "Turkey", + "population": 84339067.0, + "population_density": 104.914, + "median_age": 31.6, + "aged_65_older": 8.153, + "aged_70_older": 5.061, + "gdp_per_capita": 25129.341, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 171.285, + "diabetes_prevalence": 12.13, + "female_smokers": 14.1, + "male_smokers": 41.1, + "hospital_beds_per_thousand": 2.81, + "life_expectancy": 77.69, + "data": [ + { + "date": "2020-03-12", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.012, + "new_cases_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-03-13", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.024, + "new_cases_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-03-16", + "total_cases": 18.0, + "new_cases": 16.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.213, + "new_cases_per_million": 0.19, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-17", + "total_cases": 47.0, + "new_cases": 29.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.557, + "new_cases_per_million": 0.344, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-03-18", + "total_cases": 98.0, + "new_cases": 51.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.162, + "new_cases_per_million": 0.605, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 10018.0, + "total_tests_per_thousand": 0.119, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-19", + "total_cases": 191.0, + "new_cases": 93.0, + "new_cases_smoothed": 27.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.265, + "new_cases_per_million": 1.103, + "new_cases_smoothed_per_million": 0.322, + "total_deaths_per_million": 0.012, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.002, + "new_tests": 1981.0, + "total_tests": 11999.0, + "total_tests_per_thousand": 0.142, + "new_tests_per_thousand": 0.023, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-20", + "total_cases": 359.0, + "new_cases": 168.0, + "new_cases_smoothed": 51.0, + "total_deaths": 4.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 4.257, + "new_cases_per_million": 1.992, + "new_cases_smoothed_per_million": 0.605, + "total_deaths_per_million": 0.047, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.007, + "new_tests": 3656.0, + "total_tests": 15655.0, + "total_tests_per_thousand": 0.186, + "new_tests_per_thousand": 0.043, + "tests_units": "tests performed", + "stringency_index": 58.33 + }, + { + "date": "2020-03-21", + "total_cases": 670.0, + "new_cases": 311.0, + "new_cases_smoothed": 95.429, + "total_deaths": 9.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7.944, + "new_cases_per_million": 3.687, + "new_cases_smoothed_per_million": 1.131, + "total_deaths_per_million": 0.107, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.015, + "new_tests": 2952.0, + "total_tests": 18607.0, + "total_tests_per_thousand": 0.221, + "new_tests_per_thousand": 0.035, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-03-22", + "total_cases": 947.0, + "new_cases": 277.0, + "new_cases_smoothed": 135.0, + "total_deaths": 21.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 11.228, + "new_cases_per_million": 3.284, + "new_cases_smoothed_per_million": 1.601, + "total_deaths_per_million": 0.249, + "new_deaths_per_million": 0.142, + "new_deaths_smoothed_per_million": 0.036, + "new_tests": 1738.0, + "total_tests": 20345.0, + "total_tests_per_thousand": 0.241, + "new_tests_per_thousand": 0.021, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-03-23", + "total_cases": 1236.0, + "new_cases": 289.0, + "new_cases_smoothed": 174.0, + "total_deaths": 30.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 14.655, + "new_cases_per_million": 3.427, + "new_cases_smoothed_per_million": 2.063, + "total_deaths_per_million": 0.356, + "new_deaths_per_million": 0.107, + "new_deaths_smoothed_per_million": 0.051, + "new_tests": 3672.0, + "total_tests": 24017.0, + "total_tests_per_thousand": 0.285, + "new_tests_per_thousand": 0.044, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-03-24", + "total_cases": 1529.0, + "new_cases": 293.0, + "new_cases_smoothed": 211.714, + "total_deaths": 37.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 18.129, + "new_cases_per_million": 3.474, + "new_cases_smoothed_per_million": 2.51, + "total_deaths_per_million": 0.439, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.063, + "new_tests": 3952.0, + "total_tests": 27969.0, + "total_tests_per_thousand": 0.332, + "new_tests_per_thousand": 0.047, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-25", + "total_cases": 1872.0, + "new_cases": 343.0, + "new_cases_smoothed": 253.429, + "total_deaths": 44.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 22.196, + "new_cases_per_million": 4.067, + "new_cases_smoothed_per_million": 3.005, + "total_deaths_per_million": 0.522, + "new_deaths_per_million": 0.083, + "new_deaths_smoothed_per_million": 0.075, + "new_tests": 5035.0, + "total_tests": 33004.0, + "total_tests_per_thousand": 0.391, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 3284.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 12.958, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-26", + "total_cases": 2433.0, + "new_cases": 561.0, + "new_cases_smoothed": 320.286, + "total_deaths": 59.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 28.848, + "new_cases_per_million": 6.652, + "new_cases_smoothed_per_million": 3.798, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.098, + "new_tests": 7286.0, + "total_tests": 40290.0, + "total_tests_per_thousand": 0.478, + "new_tests_per_thousand": 0.086, + "new_tests_smoothed": 4042.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 12.62, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-03-27", + "total_cases": 3629.0, + "new_cases": 1196.0, + "new_cases_smoothed": 467.143, + "total_deaths": 75.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 43.029, + "new_cases_per_million": 14.181, + "new_cases_smoothed_per_million": 5.539, + "total_deaths_per_million": 0.889, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.12, + "new_tests": 7533.0, + "total_tests": 47823.0, + "total_tests_per_thousand": 0.567, + "new_tests_per_thousand": 0.089, + "new_tests_smoothed": 4595.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 9.836, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-03-28", + "total_cases": 5698.0, + "new_cases": 2069.0, + "new_cases_smoothed": 718.286, + "total_deaths": 92.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 67.561, + "new_cases_per_million": 24.532, + "new_cases_smoothed_per_million": 8.517, + "total_deaths_per_million": 1.091, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.141, + "new_tests": 7641.0, + "total_tests": 55464.0, + "total_tests_per_thousand": 0.658, + "new_tests_per_thousand": 0.091, + "new_tests_smoothed": 5265.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 7.33, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-29", + "total_cases": 7402.0, + "new_cases": 1704.0, + "new_cases_smoothed": 922.143, + "total_deaths": 108.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 12.429, + "total_cases_per_million": 87.765, + "new_cases_per_million": 20.204, + "new_cases_smoothed_per_million": 10.934, + "total_deaths_per_million": 1.281, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.147, + "new_tests": 9982.0, + "total_tests": 65446.0, + "total_tests_per_thousand": 0.776, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 6443.0, + "new_tests_smoothed_per_thousand": 0.076, + "tests_per_case": 6.987, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-30", + "total_cases": 9217.0, + "new_cases": 1815.0, + "new_cases_smoothed": 1140.143, + "total_deaths": 131.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 109.285, + "new_cases_per_million": 21.52, + "new_cases_smoothed_per_million": 13.519, + "total_deaths_per_million": 1.553, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.171, + "new_tests": 11535.0, + "total_tests": 76981.0, + "total_tests_per_thousand": 0.913, + "new_tests_per_thousand": 0.137, + "new_tests_smoothed": 7566.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 6.636, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-03-31", + "total_cases": 10827.0, + "new_cases": 1610.0, + "new_cases_smoothed": 1328.286, + "total_deaths": 168.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 128.375, + "new_cases_per_million": 19.09, + "new_cases_smoothed_per_million": 15.749, + "total_deaths_per_million": 1.992, + "new_deaths_per_million": 0.439, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 15422.0, + "total_tests": 92403.0, + "total_tests_per_thousand": 1.096, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 9205.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 6.93, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-01", + "total_cases": 13531.0, + "new_cases": 2704.0, + "new_cases_smoothed": 1665.571, + "total_deaths": 214.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 160.436, + "new_cases_per_million": 32.061, + "new_cases_smoothed_per_million": 19.749, + "total_deaths_per_million": 2.537, + "new_deaths_per_million": 0.545, + "new_deaths_smoothed_per_million": 0.288, + "new_tests": 14396.0, + "total_tests": 106799.0, + "total_tests_per_thousand": 1.266, + "new_tests_per_thousand": 0.171, + "new_tests_smoothed": 10542.0, + "new_tests_smoothed_per_thousand": 0.125, + "tests_per_case": 6.329, + "positive_rate": 0.158, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-02", + "total_cases": 15679.0, + "new_cases": 2148.0, + "new_cases_smoothed": 1892.286, + "total_deaths": 277.0, + "new_deaths": 63.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 185.904, + "new_cases_per_million": 25.469, + "new_cases_smoothed_per_million": 22.437, + "total_deaths_per_million": 3.284, + "new_deaths_per_million": 0.747, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 18757.0, + "total_tests": 125556.0, + "total_tests_per_thousand": 1.489, + "new_tests_per_thousand": 0.222, + "new_tests_smoothed": 12181.0, + "new_tests_smoothed_per_thousand": 0.144, + "tests_per_case": 6.437, + "positive_rate": 0.155, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-03", + "total_cases": 18135.0, + "new_cases": 2456.0, + "new_cases_smoothed": 2072.286, + "total_deaths": 356.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 215.025, + "new_cases_per_million": 29.121, + "new_cases_smoothed_per_million": 24.571, + "total_deaths_per_million": 4.221, + "new_deaths_per_million": 0.937, + "new_deaths_smoothed_per_million": 0.476, + "new_tests": 16160.0, + "total_tests": 141716.0, + "total_tests_per_thousand": 1.68, + "new_tests_per_thousand": 0.192, + "new_tests_smoothed": 13413.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 6.473, + "positive_rate": 0.154, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-04", + "total_cases": 20921.0, + "new_cases": 2786.0, + "new_cases_smoothed": 2174.714, + "total_deaths": 425.0, + "new_deaths": 69.0, + "new_deaths_smoothed": 47.571, + "total_cases_per_million": 248.058, + "new_cases_per_million": 33.033, + "new_cases_smoothed_per_million": 25.785, + "total_deaths_per_million": 5.039, + "new_deaths_per_million": 0.818, + "new_deaths_smoothed_per_million": 0.564, + "new_tests": 19664.0, + "total_tests": 161380.0, + "total_tests_per_thousand": 1.913, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 15131.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 6.957999999999999, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-05", + "total_cases": 23934.0, + "new_cases": 3013.0, + "new_cases_smoothed": 2361.714, + "total_deaths": 501.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 56.143, + "total_cases_per_million": 283.783, + "new_cases_per_million": 35.725, + "new_cases_smoothed_per_million": 28.003, + "total_deaths_per_million": 5.94, + "new_deaths_per_million": 0.901, + "new_deaths_smoothed_per_million": 0.666, + "new_tests": 20065.0, + "total_tests": 181445.0, + "total_tests_per_thousand": 2.151, + "new_tests_per_thousand": 0.238, + "new_tests_smoothed": 16571.0, + "new_tests_smoothed_per_thousand": 0.196, + "tests_per_case": 7.017, + "positive_rate": 0.14300000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-06", + "total_cases": 27069.0, + "new_cases": 3135.0, + "new_cases_smoothed": 2550.286, + "total_deaths": 574.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 63.286, + "total_cases_per_million": 320.954, + "new_cases_per_million": 37.171, + "new_cases_smoothed_per_million": 30.238, + "total_deaths_per_million": 6.806, + "new_deaths_per_million": 0.866, + "new_deaths_smoothed_per_million": 0.75, + "new_tests": 21400.0, + "total_tests": 202845.0, + "total_tests_per_thousand": 2.405, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 17981.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 7.051, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-07", + "total_cases": 30217.0, + "new_cases": 3148.0, + "new_cases_smoothed": 2770.0, + "total_deaths": 649.0, + "new_deaths": 75.0, + "new_deaths_smoothed": 68.714, + "total_cases_per_million": 358.28, + "new_cases_per_million": 37.326, + "new_cases_smoothed_per_million": 32.844, + "total_deaths_per_million": 7.695, + "new_deaths_per_million": 0.889, + "new_deaths_smoothed_per_million": 0.815, + "new_tests": 26023.0, + "total_tests": 228868.0, + "total_tests_per_thousand": 2.714, + "new_tests_per_thousand": 0.309, + "new_tests_smoothed": 19495.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 7.037999999999999, + "positive_rate": 0.142, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-08", + "total_cases": 34109.0, + "new_cases": 3892.0, + "new_cases_smoothed": 2939.714, + "total_deaths": 725.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 73.0, + "total_cases_per_million": 404.427, + "new_cases_per_million": 46.147, + "new_cases_smoothed_per_million": 34.856, + "total_deaths_per_million": 8.596, + "new_deaths_per_million": 0.901, + "new_deaths_smoothed_per_million": 0.866, + "new_tests": 18900.0, + "total_tests": 247768.0, + "total_tests_per_thousand": 2.938, + "new_tests_per_thousand": 0.224, + "new_tests_smoothed": 20138.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 6.85, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-09", + "total_cases": 38226.0, + "new_cases": 4117.0, + "new_cases_smoothed": 3221.0, + "total_deaths": 812.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 76.429, + "total_cases_per_million": 453.242, + "new_cases_per_million": 48.815, + "new_cases_smoothed_per_million": 38.191, + "total_deaths_per_million": 9.628, + "new_deaths_per_million": 1.032, + "new_deaths_smoothed_per_million": 0.906, + "new_tests": 28570.0, + "total_tests": 276338.0, + "total_tests_per_thousand": 3.277, + "new_tests_per_thousand": 0.339, + "new_tests_smoothed": 21540.0, + "new_tests_smoothed_per_thousand": 0.255, + "tests_per_case": 6.687, + "positive_rate": 0.15, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-10", + "total_cases": 42282.0, + "new_cases": 4056.0, + "new_cases_smoothed": 3449.571, + "total_deaths": 908.0, + "new_deaths": 96.0, + "new_deaths_smoothed": 78.857, + "total_cases_per_million": 501.334, + "new_cases_per_million": 48.092, + "new_cases_smoothed_per_million": 40.901, + "total_deaths_per_million": 10.766, + "new_deaths_per_million": 1.138, + "new_deaths_smoothed_per_million": 0.935, + "new_tests": 30872.0, + "total_tests": 307210.0, + "total_tests_per_thousand": 3.643, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 23642.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 6.854, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-11", + "total_cases": 47029.0, + "new_cases": 4747.0, + "new_cases_smoothed": 3729.714, + "total_deaths": 1006.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 83.0, + "total_cases_per_million": 557.618, + "new_cases_per_million": 56.285, + "new_cases_smoothed_per_million": 44.223, + "total_deaths_per_million": 11.928, + "new_deaths_per_million": 1.162, + "new_deaths_smoothed_per_million": 0.984, + "new_tests": 33170.0, + "total_tests": 340380.0, + "total_tests_per_thousand": 4.036, + "new_tests_per_thousand": 0.393, + "new_tests_smoothed": 25571.0, + "new_tests_smoothed_per_thousand": 0.303, + "tests_per_case": 6.856, + "positive_rate": 0.146, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-12", + "total_cases": 52167.0, + "new_cases": 5138.0, + "new_cases_smoothed": 4033.286, + "total_deaths": 1101.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 85.714, + "total_cases_per_million": 618.539, + "new_cases_per_million": 60.921, + "new_cases_smoothed_per_million": 47.822, + "total_deaths_per_million": 13.054, + "new_deaths_per_million": 1.126, + "new_deaths_smoothed_per_million": 1.016, + "new_tests": 35720.0, + "total_tests": 376100.0, + "total_tests_per_thousand": 4.459, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 27808.0, + "new_tests_smoothed_per_thousand": 0.33, + "tests_per_case": 6.895, + "positive_rate": 0.145, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-13", + "total_cases": 56956.0, + "new_cases": 4789.0, + "new_cases_smoothed": 4269.571, + "total_deaths": 1198.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 89.143, + "total_cases_per_million": 675.322, + "new_cases_per_million": 56.783, + "new_cases_smoothed_per_million": 50.624, + "total_deaths_per_million": 14.205, + "new_deaths_per_million": 1.15, + "new_deaths_smoothed_per_million": 1.057, + "new_tests": 34456.0, + "total_tests": 410556.0, + "total_tests_per_thousand": 4.868, + "new_tests_per_thousand": 0.409, + "new_tests_smoothed": 29673.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 6.95, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-14", + "total_cases": 61049.0, + "new_cases": 4093.0, + "new_cases_smoothed": 4404.571, + "total_deaths": 1296.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 92.429, + "total_cases_per_million": 723.852, + "new_cases_per_million": 48.53, + "new_cases_smoothed_per_million": 52.225, + "total_deaths_per_million": 15.367, + "new_deaths_per_million": 1.162, + "new_deaths_smoothed_per_million": 1.096, + "new_tests": 33070.0, + "total_tests": 443626.0, + "total_tests_per_thousand": 5.26, + "new_tests_per_thousand": 0.392, + "new_tests_smoothed": 30680.0, + "new_tests_smoothed_per_thousand": 0.364, + "tests_per_case": 6.965, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-15", + "total_cases": 65111.0, + "new_cases": 4062.0, + "new_cases_smoothed": 4428.857, + "total_deaths": 1403.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 96.857, + "total_cases_per_million": 772.015, + "new_cases_per_million": 48.163, + "new_cases_smoothed_per_million": 52.513, + "total_deaths_per_million": 16.635, + "new_deaths_per_million": 1.269, + "new_deaths_smoothed_per_million": 1.148, + "new_tests": 34090.0, + "total_tests": 477716.0, + "total_tests_per_thousand": 5.664, + "new_tests_per_thousand": 0.404, + "new_tests_smoothed": 32850.0, + "new_tests_smoothed_per_thousand": 0.389, + "tests_per_case": 7.417000000000001, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-16", + "total_cases": 69392.0, + "new_cases": 4281.0, + "new_cases_smoothed": 4452.286, + "total_deaths": 1518.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 100.857, + "total_cases_per_million": 822.774, + "new_cases_per_million": 50.759, + "new_cases_smoothed_per_million": 52.79, + "total_deaths_per_million": 17.999, + "new_deaths_per_million": 1.364, + "new_deaths_smoothed_per_million": 1.196, + "new_tests": 40427.0, + "total_tests": 518143.0, + "total_tests_per_thousand": 6.144, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 34544.0, + "new_tests_smoothed_per_thousand": 0.41, + "tests_per_case": 7.7589999999999995, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-17", + "total_cases": 74193.0, + "new_cases": 4801.0, + "new_cases_smoothed": 4558.714, + "total_deaths": 1643.0, + "new_deaths": 125.0, + "new_deaths_smoothed": 105.0, + "total_cases_per_million": 879.699, + "new_cases_per_million": 56.925, + "new_cases_smoothed_per_million": 54.052, + "total_deaths_per_million": 19.481, + "new_deaths_per_million": 1.482, + "new_deaths_smoothed_per_million": 1.245, + "new_tests": 40270.0, + "total_tests": 558413.0, + "total_tests_per_thousand": 6.621, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 35886.0, + "new_tests_smoothed_per_thousand": 0.425, + "tests_per_case": 7.872000000000001, + "positive_rate": 0.127, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-18", + "total_cases": 78546.0, + "new_cases": 4353.0, + "new_cases_smoothed": 4502.429, + "total_deaths": 1769.0, + "new_deaths": 126.0, + "new_deaths_smoothed": 109.0, + "total_cases_per_million": 931.312, + "new_cases_per_million": 51.613, + "new_cases_smoothed_per_million": 53.385, + "total_deaths_per_million": 20.975, + "new_deaths_per_million": 1.494, + "new_deaths_smoothed_per_million": 1.292, + "new_tests": 40520.0, + "total_tests": 598933.0, + "total_tests_per_thousand": 7.101, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 36936.0, + "new_tests_smoothed_per_thousand": 0.438, + "tests_per_case": 8.204, + "positive_rate": 0.122, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-19", + "total_cases": 82329.0, + "new_cases": 3783.0, + "new_cases_smoothed": 4308.857, + "total_deaths": 1890.0, + "new_deaths": 121.0, + "new_deaths_smoothed": 112.714, + "total_cases_per_million": 976.167, + "new_cases_per_million": 44.855, + "new_cases_smoothed_per_million": 51.09, + "total_deaths_per_million": 22.41, + "new_deaths_per_million": 1.435, + "new_deaths_smoothed_per_million": 1.336, + "new_tests": 35344.0, + "total_tests": 634277.0, + "total_tests_per_thousand": 7.521, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 36882.0, + "new_tests_smoothed_per_thousand": 0.437, + "tests_per_case": 8.56, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-04-20", + "total_cases": 86306.0, + "new_cases": 3977.0, + "new_cases_smoothed": 4192.857, + "total_deaths": 2017.0, + "new_deaths": 127.0, + "new_deaths_smoothed": 117.0, + "total_cases_per_million": 1023.322, + "new_cases_per_million": 47.155, + "new_cases_smoothed_per_million": 49.714, + "total_deaths_per_million": 23.915, + "new_deaths_per_million": 1.506, + "new_deaths_smoothed_per_million": 1.387, + "new_tests": 39703.0, + "total_tests": 673980.0, + "total_tests_per_thousand": 7.991, + "new_tests_per_thousand": 0.471, + "new_tests_smoothed": 37632.0, + "new_tests_smoothed_per_thousand": 0.446, + "tests_per_case": 8.975, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-21", + "total_cases": 90980.0, + "new_cases": 4674.0, + "new_cases_smoothed": 4275.857, + "total_deaths": 2140.0, + "new_deaths": 123.0, + "new_deaths_smoothed": 120.571, + "total_cases_per_million": 1078.741, + "new_cases_per_million": 55.419, + "new_cases_smoothed_per_million": 50.698, + "total_deaths_per_million": 25.374, + "new_deaths_per_million": 1.458, + "new_deaths_smoothed_per_million": 1.43, + "new_tests": 39429.0, + "total_tests": 713409.0, + "total_tests_per_thousand": 8.459, + "new_tests_per_thousand": 0.468, + "new_tests_smoothed": 38540.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 9.013, + "positive_rate": 0.111, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-22", + "total_cases": 95591.0, + "new_cases": 4611.0, + "new_cases_smoothed": 4354.286, + "total_deaths": 2259.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 122.286, + "total_cases_per_million": 1133.413, + "new_cases_per_million": 54.672, + "new_cases_smoothed_per_million": 51.628, + "total_deaths_per_million": 26.785, + "new_deaths_per_million": 1.411, + "new_deaths_smoothed_per_million": 1.45, + "new_tests": 37535.0, + "total_tests": 750944.0, + "total_tests_per_thousand": 8.904, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 39033.0, + "new_tests_smoothed_per_thousand": 0.463, + "tests_per_case": 8.964, + "positive_rate": 0.11199999999999999, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-23", + "total_cases": 98674.0, + "new_cases": 3083.0, + "new_cases_smoothed": 4183.143, + "total_deaths": 2376.0, + "new_deaths": 117.0, + "new_deaths_smoothed": 122.571, + "total_cases_per_million": 1169.968, + "new_cases_per_million": 36.555, + "new_cases_smoothed_per_million": 49.599, + "total_deaths_per_million": 28.172, + "new_deaths_per_million": 1.387, + "new_deaths_smoothed_per_million": 1.453, + "new_tests": 40962.0, + "total_tests": 791906.0, + "total_tests_per_thousand": 9.39, + "new_tests_per_thousand": 0.486, + "new_tests_smoothed": 39109.0, + "new_tests_smoothed_per_thousand": 0.464, + "tests_per_case": 9.349, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-24", + "total_cases": 101790.0, + "new_cases": 3116.0, + "new_cases_smoothed": 3942.429, + "total_deaths": 2491.0, + "new_deaths": 115.0, + "new_deaths_smoothed": 121.143, + "total_cases_per_million": 1206.914, + "new_cases_per_million": 36.946, + "new_cases_smoothed_per_million": 46.745, + "total_deaths_per_million": 29.536, + "new_deaths_per_million": 1.364, + "new_deaths_smoothed_per_million": 1.436, + "new_tests": 38351.0, + "total_tests": 830257.0, + "total_tests_per_thousand": 9.844, + "new_tests_per_thousand": 0.455, + "new_tests_smoothed": 38835.0, + "new_tests_smoothed_per_thousand": 0.46, + "tests_per_case": 9.851, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-25", + "total_cases": 104912.0, + "new_cases": 3122.0, + "new_cases_smoothed": 3766.571, + "total_deaths": 2600.0, + "new_deaths": 109.0, + "new_deaths_smoothed": 118.714, + "total_cases_per_million": 1243.931, + "new_cases_per_million": 37.017, + "new_cases_smoothed_per_million": 44.66, + "total_deaths_per_million": 30.828, + "new_deaths_per_million": 1.292, + "new_deaths_smoothed_per_million": 1.408, + "new_tests": 38308.0, + "total_tests": 868565.0, + "total_tests_per_thousand": 10.298, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 38519.0, + "new_tests_smoothed_per_thousand": 0.457, + "tests_per_case": 10.227, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-26", + "total_cases": 107773.0, + "new_cases": 2861.0, + "new_cases_smoothed": 3634.857, + "total_deaths": 2706.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 116.571, + "total_cases_per_million": 1277.854, + "new_cases_per_million": 33.923, + "new_cases_smoothed_per_million": 43.098, + "total_deaths_per_million": 32.085, + "new_deaths_per_million": 1.257, + "new_deaths_smoothed_per_million": 1.382, + "new_tests": 30177.0, + "total_tests": 898742.0, + "total_tests_per_thousand": 10.656, + "new_tests_per_thousand": 0.358, + "new_tests_smoothed": 37781.0, + "new_tests_smoothed_per_thousand": 0.448, + "tests_per_case": 10.394, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-27", + "total_cases": 110130.0, + "new_cases": 2357.0, + "new_cases_smoothed": 3403.429, + "total_deaths": 2805.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 112.571, + "total_cases_per_million": 1305.801, + "new_cases_per_million": 27.947, + "new_cases_smoothed_per_million": 40.354, + "total_deaths_per_million": 33.259, + "new_deaths_per_million": 1.174, + "new_deaths_smoothed_per_million": 1.335, + "new_tests": 20143.0, + "total_tests": 918885.0, + "total_tests_per_thousand": 10.895, + "new_tests_per_thousand": 0.239, + "new_tests_smoothed": 34986.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 10.28, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-28", + "total_cases": 112261.0, + "new_cases": 2131.0, + "new_cases_smoothed": 3040.143, + "total_deaths": 2900.0, + "new_deaths": 95.0, + "new_deaths_smoothed": 108.571, + "total_cases_per_million": 1331.068, + "new_cases_per_million": 25.267, + "new_cases_smoothed_per_million": 36.047, + "total_deaths_per_million": 34.385, + "new_deaths_per_million": 1.126, + "new_deaths_smoothed_per_million": 1.287, + "new_tests": 29230.0, + "total_tests": 948115.0, + "total_tests_per_thousand": 11.242, + "new_tests_per_thousand": 0.347, + "new_tests_smoothed": 33529.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 11.029000000000002, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-29", + "total_cases": 114653.0, + "new_cases": 2392.0, + "new_cases_smoothed": 2723.143, + "total_deaths": 2992.0, + "new_deaths": 92.0, + "new_deaths_smoothed": 104.714, + "total_cases_per_million": 1359.429, + "new_cases_per_million": 28.362, + "new_cases_smoothed_per_million": 32.288, + "total_deaths_per_million": 35.476, + "new_deaths_per_million": 1.091, + "new_deaths_smoothed_per_million": 1.242, + "new_tests": 43498.0, + "total_tests": 991613.0, + "total_tests_per_thousand": 11.757, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 34381.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 12.625, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-04-30", + "total_cases": 117589.0, + "new_cases": 2936.0, + "new_cases_smoothed": 2702.143, + "total_deaths": 3081.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 100.714, + "total_cases_per_million": 1394.241, + "new_cases_per_million": 34.812, + "new_cases_smoothed_per_million": 32.039, + "total_deaths_per_million": 36.531, + "new_deaths_per_million": 1.055, + "new_deaths_smoothed_per_million": 1.194, + "new_tests": 42004.0, + "total_tests": 1033617.0, + "total_tests_per_thousand": 12.255, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 34530.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 12.779000000000002, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-01", + "total_cases": 120204.0, + "new_cases": 2615.0, + "new_cases_smoothed": 2630.571, + "total_deaths": 3174.0, + "new_deaths": 93.0, + "new_deaths_smoothed": 97.571, + "total_cases_per_million": 1425.247, + "new_cases_per_million": 31.006, + "new_cases_smoothed_per_million": 31.19, + "total_deaths_per_million": 37.634, + "new_deaths_per_million": 1.103, + "new_deaths_smoothed_per_million": 1.157, + "new_tests": 41431.0, + "total_tests": 1075048.0, + "total_tests_per_thousand": 12.747, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 34970.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 13.294, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-02", + "total_cases": 122392.0, + "new_cases": 2188.0, + "new_cases_smoothed": 2497.143, + "total_deaths": 3258.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 94.0, + "total_cases_per_million": 1451.19, + "new_cases_per_million": 25.943, + "new_cases_smoothed_per_million": 29.608, + "total_deaths_per_million": 38.63, + "new_deaths_per_million": 0.996, + "new_deaths_smoothed_per_million": 1.115, + "new_tests_smoothed": 33806.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 13.538, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-03", + "total_cases": 124375.0, + "new_cases": 1983.0, + "new_cases_smoothed": 2371.714, + "total_deaths": 3336.0, + "new_deaths": 78.0, + "new_deaths_smoothed": 90.0, + "total_cases_per_million": 1474.702, + "new_cases_per_million": 23.512, + "new_cases_smoothed_per_million": 28.121, + "total_deaths_per_million": 39.555, + "new_deaths_per_million": 0.925, + "new_deaths_smoothed_per_million": 1.067, + "total_tests": 1135367.0, + "total_tests_per_thousand": 13.462, + "new_tests_smoothed": 33804.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 14.253, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-04", + "total_cases": 126045.0, + "new_cases": 1670.0, + "new_cases_smoothed": 2273.571, + "total_deaths": 3397.0, + "new_deaths": 61.0, + "new_deaths_smoothed": 84.571, + "total_cases_per_million": 1494.503, + "new_cases_per_million": 19.801, + "new_cases_smoothed_per_million": 26.958, + "total_deaths_per_million": 40.278, + "new_deaths_per_million": 0.723, + "new_deaths_smoothed_per_million": 1.003, + "new_tests": 35771.0, + "total_tests": 1171138.0, + "total_tests_per_thousand": 13.886, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 36036.0, + "new_tests_smoothed_per_thousand": 0.427, + "tests_per_case": 15.85, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-05", + "total_cases": 127659.0, + "new_cases": 1614.0, + "new_cases_smoothed": 2199.714, + "total_deaths": 3461.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 80.143, + "total_cases_per_million": 1513.64, + "new_cases_per_million": 19.137, + "new_cases_smoothed_per_million": 26.082, + "total_deaths_per_million": 41.037, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 0.95, + "new_tests": 33283.0, + "total_tests": 1204421.0, + "total_tests_per_thousand": 14.281, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 36615.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 16.645, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-06", + "total_cases": 129491.0, + "new_cases": 1832.0, + "new_cases_smoothed": 2119.714, + "total_deaths": 3520.0, + "new_deaths": 59.0, + "new_deaths_smoothed": 75.429, + "total_cases_per_million": 1535.362, + "new_cases_per_million": 21.722, + "new_cases_smoothed_per_million": 25.133, + "total_deaths_per_million": 41.736, + "new_deaths_per_million": 0.7, + "new_deaths_smoothed_per_million": 0.894, + "new_tests": 30303.0, + "total_tests": 1234724.0, + "total_tests_per_thousand": 14.64, + "new_tests_per_thousand": 0.359, + "new_tests_smoothed": 34730.0, + "new_tests_smoothed_per_thousand": 0.412, + "tests_per_case": 16.384, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-07", + "total_cases": 131744.0, + "new_cases": 2253.0, + "new_cases_smoothed": 2022.143, + "total_deaths": 3584.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 71.857, + "total_cases_per_million": 1562.076, + "new_cases_per_million": 26.714, + "new_cases_smoothed_per_million": 23.976, + "total_deaths_per_million": 42.495, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 0.852, + "new_tests": 30395.0, + "total_tests": 1265119.0, + "total_tests_per_thousand": 15.0, + "new_tests_per_thousand": 0.36, + "new_tests_smoothed": 33072.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 16.355, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-08", + "total_cases": 133721.0, + "new_cases": 1977.0, + "new_cases_smoothed": 1931.0, + "total_deaths": 3641.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 66.714, + "total_cases_per_million": 1585.517, + "new_cases_per_million": 23.441, + "new_cases_smoothed_per_million": 22.896, + "total_deaths_per_million": 43.171, + "new_deaths_per_million": 0.676, + "new_deaths_smoothed_per_million": 0.791, + "new_tests": 33687.0, + "total_tests": 1298806.0, + "total_tests_per_thousand": 15.4, + "new_tests_per_thousand": 0.399, + "new_tests_smoothed": 31965.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 16.554000000000002, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 135569.0, + "new_cases": 1848.0, + "new_cases_smoothed": 1882.429, + "total_deaths": 3689.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 61.571, + "total_cases_per_million": 1607.428, + "new_cases_per_million": 21.912, + "new_cases_smoothed_per_million": 22.32, + "total_deaths_per_million": 43.74, + "new_deaths_per_million": 0.569, + "new_deaths_smoothed_per_million": 0.73, + "new_tests": 35605.0, + "total_tests": 1334411.0, + "total_tests_per_thousand": 15.822, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 32743.0, + "new_tests_smoothed_per_thousand": 0.388, + "tests_per_case": 17.394000000000002, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 137115.0, + "new_cases": 1546.0, + "new_cases_smoothed": 1820.0, + "total_deaths": 3739.0, + "new_deaths": 50.0, + "new_deaths_smoothed": 57.571, + "total_cases_per_million": 1625.759, + "new_cases_per_million": 18.331, + "new_cases_smoothed_per_million": 21.58, + "total_deaths_per_million": 44.333, + "new_deaths_per_million": 0.593, + "new_deaths_smoothed_per_million": 0.683, + "new_tests": 36187.0, + "total_tests": 1370598.0, + "total_tests_per_thousand": 16.251, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 33604.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 18.464000000000002, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 138657.0, + "new_cases": 1542.0, + "new_cases_smoothed": 1801.714, + "total_deaths": 3786.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 55.571, + "total_cases_per_million": 1644.042, + "new_cases_per_million": 18.283, + "new_cases_smoothed_per_million": 21.363, + "total_deaths_per_million": 44.89, + "new_deaths_per_million": 0.557, + "new_deaths_smoothed_per_million": 0.659, + "new_tests": 32722.0, + "total_tests": 1403320.0, + "total_tests_per_thousand": 16.639, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 33169.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 18.41, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 139771.0, + "new_cases": 1114.0, + "new_cases_smoothed": 1730.286, + "total_deaths": 3841.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 54.286, + "total_cases_per_million": 1657.251, + "new_cases_per_million": 13.209, + "new_cases_smoothed_per_million": 20.516, + "total_deaths_per_million": 45.542, + "new_deaths_per_million": 0.652, + "new_deaths_smoothed_per_million": 0.644, + "new_tests": 37351.0, + "total_tests": 1440671.0, + "total_tests_per_thousand": 17.082, + "new_tests_per_thousand": 0.443, + "new_tests_smoothed": 33750.0, + "new_tests_smoothed_per_thousand": 0.4, + "tests_per_case": 19.505, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 141475.0, + "new_cases": 1704.0, + "new_cases_smoothed": 1712.0, + "total_deaths": 3894.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 53.429, + "total_cases_per_million": 1677.455, + "new_cases_per_million": 20.204, + "new_cases_smoothed_per_million": 20.299, + "total_deaths_per_million": 46.171, + "new_deaths_per_million": 0.628, + "new_deaths_smoothed_per_million": 0.633, + "new_tests": 33332.0, + "total_tests": 1474003.0, + "total_tests_per_thousand": 17.477, + "new_tests_per_thousand": 0.395, + "new_tests_smoothed": 34183.0, + "new_tests_smoothed_per_thousand": 0.405, + "tests_per_case": 19.967, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 143114.0, + "new_cases": 1639.0, + "new_cases_smoothed": 1624.286, + "total_deaths": 3952.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 52.571, + "total_cases_per_million": 1696.889, + "new_cases_per_million": 19.433, + "new_cases_smoothed_per_million": 19.259, + "total_deaths_per_million": 46.858, + "new_deaths_per_million": 0.688, + "new_deaths_smoothed_per_million": 0.623, + "new_tests": 34821.0, + "total_tests": 1508824.0, + "total_tests_per_thousand": 17.89, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 34815.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 21.434, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-15", + "total_cases": 144749.0, + "new_cases": 1635.0, + "new_cases_smoothed": 1575.429, + "total_deaths": 4007.0, + "new_deaths": 55.0, + "new_deaths_smoothed": 52.286, + "total_cases_per_million": 1716.275, + "new_cases_per_million": 19.386, + "new_cases_smoothed_per_million": 18.68, + "total_deaths_per_million": 47.511, + "new_deaths_per_million": 0.652, + "new_deaths_smoothed_per_million": 0.62, + "new_tests": 38565.0, + "total_tests": 1547389.0, + "total_tests_per_thousand": 18.347, + "new_tests_per_thousand": 0.457, + "new_tests_smoothed": 35512.0, + "new_tests_smoothed_per_thousand": 0.421, + "tests_per_case": 22.541, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-16", + "total_cases": 146457.0, + "new_cases": 1708.0, + "new_cases_smoothed": 1555.429, + "total_deaths": 4055.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 52.286, + "total_cases_per_million": 1736.526, + "new_cases_per_million": 20.252, + "new_cases_smoothed_per_million": 18.443, + "total_deaths_per_million": 48.08, + "new_deaths_per_million": 0.569, + "new_deaths_smoothed_per_million": 0.62, + "new_tests": 42236.0, + "total_tests": 1589625.0, + "total_tests_per_thousand": 18.848, + "new_tests_per_thousand": 0.501, + "new_tests_smoothed": 36459.0, + "new_tests_smoothed_per_thousand": 0.432, + "tests_per_case": 23.44, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-17", + "total_cases": 148067.0, + "new_cases": 1610.0, + "new_cases_smoothed": 1564.571, + "total_deaths": 4096.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 51.0, + "total_cases_per_million": 1755.616, + "new_cases_per_million": 19.09, + "new_cases_smoothed_per_million": 18.551, + "total_deaths_per_million": 48.566, + "new_deaths_per_million": 0.486, + "new_deaths_smoothed_per_million": 0.605, + "new_tests": 35369.0, + "total_tests": 1624994.0, + "total_tests_per_thousand": 19.267, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 36342.0, + "new_tests_smoothed_per_thousand": 0.431, + "tests_per_case": 23.228, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-18", + "total_cases": 149435.0, + "new_cases": 1368.0, + "new_cases_smoothed": 1539.714, + "total_deaths": 4140.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 50.571, + "total_cases_per_million": 1771.836, + "new_cases_per_million": 16.22, + "new_cases_smoothed_per_million": 18.256, + "total_deaths_per_million": 49.088, + "new_deaths_per_million": 0.522, + "new_deaths_smoothed_per_million": 0.6, + "new_tests": 25141.0, + "total_tests": 1650135.0, + "total_tests_per_thousand": 19.565, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 35259.0, + "new_tests_smoothed_per_thousand": 0.418, + "tests_per_case": 22.9, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-19", + "total_cases": 150593.0, + "new_cases": 1158.0, + "new_cases_smoothed": 1546.0, + "total_deaths": 4171.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 47.143, + "total_cases_per_million": 1785.566, + "new_cases_per_million": 13.73, + "new_cases_smoothed_per_million": 18.331, + "total_deaths_per_million": 49.455, + "new_deaths_per_million": 0.368, + "new_deaths_smoothed_per_million": 0.559, + "new_tests": 25382.0, + "total_tests": 1675517.0, + "total_tests_per_thousand": 19.866, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 33549.0, + "new_tests_smoothed_per_thousand": 0.398, + "tests_per_case": 21.701, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-20", + "total_cases": 151615.0, + "new_cases": 1022.0, + "new_cases_smoothed": 1448.571, + "total_deaths": 4199.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 43.571, + "total_cases_per_million": 1797.684, + "new_cases_per_million": 12.118, + "new_cases_smoothed_per_million": 17.176, + "total_deaths_per_million": 49.787, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.517, + "new_tests": 20838.0, + "total_tests": 1696355.0, + "total_tests_per_thousand": 20.114, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 31765.0, + "new_tests_smoothed_per_thousand": 0.377, + "tests_per_case": 21.929000000000002, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-21", + "total_cases": 152587.0, + "new_cases": 972.0, + "new_cases_smoothed": 1353.286, + "total_deaths": 4222.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 38.571, + "total_cases_per_million": 1809.209, + "new_cases_per_million": 11.525, + "new_cases_smoothed_per_million": 16.046, + "total_deaths_per_million": 50.06, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.457, + "new_tests_smoothed": 31872.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 23.552, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-22", + "total_cases": 153548.0, + "new_cases": 961.0, + "new_cases_smoothed": 1257.0, + "total_deaths": 4249.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 34.571, + "total_cases_per_million": 1820.603, + "new_cases_per_million": 11.394, + "new_cases_smoothed_per_million": 14.904, + "total_deaths_per_million": 50.38, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.41, + "total_tests": 1767495.0, + "total_tests_per_thousand": 20.957, + "new_tests_smoothed": 31444.0, + "new_tests_smoothed_per_thousand": 0.373, + "tests_per_case": 25.015, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-23", + "total_cases": 154500.0, + "new_cases": 952.0, + "new_cases_smoothed": 1149.0, + "total_deaths": 4276.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 31.571, + "total_cases_per_million": 1831.891, + "new_cases_per_million": 11.288, + "new_cases_smoothed_per_million": 13.624, + "total_deaths_per_million": 50.7, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.374, + "new_tests": 40178.0, + "total_tests": 1807673.0, + "total_tests_per_thousand": 21.433, + "new_tests_per_thousand": 0.476, + "new_tests_smoothed": 31150.0, + "new_tests_smoothed_per_thousand": 0.369, + "tests_per_case": 27.111, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-24", + "total_cases": 155686.0, + "new_cases": 1186.0, + "new_cases_smoothed": 1088.429, + "total_deaths": 4308.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 1845.954, + "new_cases_per_million": 14.062, + "new_cases_smoothed_per_million": 12.905, + "total_deaths_per_million": 51.08, + "new_deaths_per_million": 0.379, + "new_deaths_smoothed_per_million": 0.359, + "new_tests": 24589.0, + "total_tests": 1832262.0, + "total_tests_per_thousand": 21.725, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 29610.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 27.204, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-25", + "total_cases": 156827.0, + "new_cases": 1141.0, + "new_cases_smoothed": 1056.0, + "total_deaths": 4340.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 1859.482, + "new_cases_per_million": 13.529, + "new_cases_smoothed_per_million": 12.521, + "total_deaths_per_million": 51.459, + "new_deaths_per_million": 0.379, + "new_deaths_smoothed_per_million": 0.339, + "new_tests": 21492.0, + "total_tests": 1853754.0, + "total_tests_per_thousand": 21.98, + "new_tests_per_thousand": 0.255, + "new_tests_smoothed": 29088.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 27.545, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-26", + "total_cases": 157814.0, + "new_cases": 987.0, + "new_cases_smoothed": 1031.571, + "total_deaths": 4369.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 1871.185, + "new_cases_per_million": 11.703, + "new_cases_smoothed_per_million": 12.231, + "total_deaths_per_million": 51.803, + "new_deaths_per_million": 0.344, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 19853.0, + "total_tests": 1873607.0, + "total_tests_per_thousand": 22.215, + "new_tests_per_thousand": 0.235, + "new_tests_smoothed": 28299.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 27.433000000000003, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-27", + "total_cases": 158762.0, + "new_cases": 948.0, + "new_cases_smoothed": 1021.0, + "total_deaths": 4397.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 28.286, + "total_cases_per_million": 1882.425, + "new_cases_per_million": 11.24, + "new_cases_smoothed_per_million": 12.106, + "total_deaths_per_million": 52.135, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.335, + "new_tests": 21043.0, + "total_tests": 1894650.0, + "total_tests_per_thousand": 22.465, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 28328.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 27.745, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-28", + "total_cases": 159797.0, + "new_cases": 1035.0, + "new_cases_smoothed": 1030.0, + "total_deaths": 4431.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 29.857, + "total_cases_per_million": 1894.697, + "new_cases_per_million": 12.272, + "new_cases_smoothed_per_million": 12.213, + "total_deaths_per_million": 52.538, + "new_deaths_per_million": 0.403, + "new_deaths_smoothed_per_million": 0.354, + "new_tests": 33559.0, + "total_tests": 1928209.0, + "total_tests_per_thousand": 22.863, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 28041.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 27.224, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-29", + "total_cases": 160979.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1061.571, + "total_deaths": 4461.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 1908.712, + "new_cases_per_million": 14.015, + "new_cases_smoothed_per_million": 12.587, + "total_deaths_per_million": 52.894, + "new_deaths_per_million": 0.356, + "new_deaths_smoothed_per_million": 0.359, + "new_tests": 36155.0, + "total_tests": 1964364.0, + "total_tests_per_thousand": 23.291, + "new_tests_per_thousand": 0.429, + "new_tests_smoothed": 28124.0, + "new_tests_smoothed_per_thousand": 0.333, + "tests_per_case": 26.493000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-30", + "total_cases": 162120.0, + "new_cases": 1141.0, + "new_cases_smoothed": 1088.571, + "total_deaths": 4489.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 1922.241, + "new_cases_per_million": 13.529, + "new_cases_smoothed_per_million": 12.907, + "total_deaths_per_million": 53.226, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.361, + "new_tests": 39230.0, + "total_tests": 2003594.0, + "total_tests_per_thousand": 23.756, + "new_tests_per_thousand": 0.465, + "new_tests_smoothed": 27989.0, + "new_tests_smoothed_per_thousand": 0.332, + "tests_per_case": 25.712, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-31", + "total_cases": 163103.0, + "new_cases": 983.0, + "new_cases_smoothed": 1059.571, + "total_deaths": 4515.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 29.571, + "total_cases_per_million": 1933.896, + "new_cases_per_million": 11.655, + "new_cases_smoothed_per_million": 12.563, + "total_deaths_per_million": 53.534, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.351, + "new_tests": 35600.0, + "total_tests": 2039194.0, + "total_tests_per_thousand": 24.179, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 29562.0, + "new_tests_smoothed_per_thousand": 0.351, + "tests_per_case": 27.9, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-06-01", + "total_cases": 163942.0, + "new_cases": 839.0, + "new_cases_smoothed": 1016.429, + "total_deaths": 4540.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 1943.844, + "new_cases_per_million": 9.948, + "new_cases_smoothed_per_million": 12.052, + "total_deaths_per_million": 53.83, + "new_deaths_per_million": 0.296, + "new_deaths_smoothed_per_million": 0.339, + "new_tests": 31525.0, + "total_tests": 2070719.0, + "total_tests_per_thousand": 24.552, + "new_tests_per_thousand": 0.374, + "new_tests_smoothed": 30995.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 30.494, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-02", + "total_cases": 164769.0, + "new_cases": 827.0, + "new_cases_smoothed": 993.571, + "total_deaths": 4563.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 27.714, + "total_cases_per_million": 1953.65, + "new_cases_per_million": 9.806, + "new_cases_smoothed_per_million": 11.781, + "total_deaths_per_million": 54.103, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.329, + "new_tests": 32325.0, + "total_tests": 2103044.0, + "total_tests_per_thousand": 24.936, + "new_tests_per_thousand": 0.383, + "new_tests_smoothed": 32777.0, + "new_tests_smoothed_per_thousand": 0.389, + "tests_per_case": 32.989000000000004, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-03", + "total_cases": 165555.0, + "new_cases": 786.0, + "new_cases_smoothed": 970.429, + "total_deaths": 4585.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 26.857, + "total_cases_per_million": 1962.969, + "new_cases_per_million": 9.32, + "new_cases_smoothed_per_million": 11.506, + "total_deaths_per_million": 54.364, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 52305.0, + "total_tests": 2155349.0, + "total_tests_per_thousand": 25.556, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 37243.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 38.378, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-04", + "total_cases": 166422.0, + "new_cases": 867.0, + "new_cases_smoothed": 946.429, + "total_deaths": 4609.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 25.429, + "total_cases_per_million": 1973.249, + "new_cases_per_million": 10.28, + "new_cases_smoothed_per_million": 11.222, + "total_deaths_per_million": 54.648, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.302, + "new_tests": 54234.0, + "total_tests": 2209583.0, + "total_tests_per_thousand": 26.199, + "new_tests_per_thousand": 0.643, + "new_tests_smoothed": 40196.0, + "new_tests_smoothed_per_thousand": 0.477, + "tests_per_case": 42.471000000000004, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-05", + "total_cases": 167410.0, + "new_cases": 988.0, + "new_cases_smoothed": 918.714, + "total_deaths": 4630.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 24.143, + "total_cases_per_million": 1984.964, + "new_cases_per_million": 11.715, + "new_cases_smoothed_per_million": 10.893, + "total_deaths_per_million": 54.897, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.286, + "new_tests": 57829.0, + "total_tests": 2267412.0, + "total_tests_per_thousand": 26.884, + "new_tests_per_thousand": 0.686, + "new_tests_smoothed": 43293.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 47.123000000000005, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-06", + "total_cases": 168340.0, + "new_cases": 930.0, + "new_cases_smoothed": 888.571, + "total_deaths": 4648.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 1995.991, + "new_cases_per_million": 11.027, + "new_cases_smoothed_per_million": 10.536, + "total_deaths_per_million": 55.111, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 35846.0, + "total_tests": 2303258.0, + "total_tests_per_thousand": 27.31, + "new_tests_per_thousand": 0.425, + "new_tests_smoothed": 42809.0, + "new_tests_smoothed_per_thousand": 0.508, + "tests_per_case": 48.177, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-07", + "total_cases": 169218.0, + "new_cases": 878.0, + "new_cases_smoothed": 873.571, + "total_deaths": 4669.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 22.0, + "total_cases_per_million": 2006.401, + "new_cases_per_million": 10.41, + "new_cases_smoothed_per_million": 10.358, + "total_deaths_per_million": 55.36, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.261, + "new_tests": 35335.0, + "total_tests": 2338593.0, + "total_tests_per_thousand": 27.728, + "new_tests_per_thousand": 0.419, + "new_tests_smoothed": 42771.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 48.961000000000006, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-08", + "total_cases": 170132.0, + "new_cases": 914.0, + "new_cases_smoothed": 884.286, + "total_deaths": 4692.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 2017.238, + "new_cases_per_million": 10.837, + "new_cases_smoothed_per_million": 10.485, + "total_deaths_per_million": 55.633, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 39361.0, + "total_tests": 2377954.0, + "total_tests_per_thousand": 28.195, + "new_tests_per_thousand": 0.467, + "new_tests_smoothed": 43891.0, + "new_tests_smoothed_per_thousand": 0.52, + "tests_per_case": 49.63399999999999, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-09", + "total_cases": 171121.0, + "new_cases": 989.0, + "new_cases_smoothed": 907.429, + "total_deaths": 4711.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 2028.965, + "new_cases_per_million": 11.726, + "new_cases_smoothed_per_million": 10.759, + "total_deaths_per_million": 55.858, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.251, + "new_tests": 37225.0, + "total_tests": 2415179.0, + "total_tests_per_thousand": 28.637, + "new_tests_per_thousand": 0.441, + "new_tests_smoothed": 44591.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 49.14, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-10", + "total_cases": 172114.0, + "new_cases": 993.0, + "new_cases_smoothed": 937.0, + "total_deaths": 4729.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 2040.739, + "new_cases_per_million": 11.774, + "new_cases_smoothed_per_million": 11.11, + "total_deaths_per_million": 56.071, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 36521.0, + "total_tests": 2451700.0, + "total_tests_per_thousand": 29.07, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 42336.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 45.181999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-11", + "total_cases": 173036.0, + "new_cases": 922.0, + "new_cases_smoothed": 944.857, + "total_deaths": 4746.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 2051.671, + "new_cases_per_million": 10.932, + "new_cases_smoothed_per_million": 11.203, + "total_deaths_per_million": 56.273, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 49190.0, + "total_tests": 2500890.0, + "total_tests_per_thousand": 29.653, + "new_tests_per_thousand": 0.583, + "new_tests_smoothed": 41615.0, + "new_tests_smoothed_per_thousand": 0.493, + "tests_per_case": 44.044, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-12", + "total_cases": 174023.0, + "new_cases": 987.0, + "new_cases_smoothed": 944.714, + "total_deaths": 4763.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 2063.374, + "new_cases_per_million": 11.703, + "new_cases_smoothed_per_million": 11.201, + "total_deaths_per_million": 56.474, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.225, + "new_tests_smoothed": 36284.0, + "new_tests_smoothed_per_thousand": 0.43, + "tests_per_case": 38.407, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-13", + "total_cases": 175218.0, + "new_cases": 1195.0, + "new_cases_smoothed": 982.571, + "total_deaths": 4778.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2077.543, + "new_cases_per_million": 14.169, + "new_cases_smoothed_per_million": 11.65, + "total_deaths_per_million": 56.652, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.22, + "total_tests": 2541903.0, + "total_tests_per_thousand": 30.139, + "new_tests_smoothed": 34092.0, + "new_tests_smoothed_per_thousand": 0.404, + "tests_per_case": 34.696999999999996, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-14", + "total_cases": 176677.0, + "new_cases": 1459.0, + "new_cases_smoothed": 1065.571, + "total_deaths": 4792.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 2094.842, + "new_cases_per_million": 17.299, + "new_cases_smoothed_per_million": 12.634, + "total_deaths_per_million": 56.818, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 90268.0, + "total_tests": 2632171.0, + "total_tests_per_thousand": 31.209, + "new_tests_per_thousand": 1.07, + "new_tests_smoothed": 41940.0, + "new_tests_smoothed_per_thousand": 0.497, + "tests_per_case": 39.359, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-15", + "total_cases": 178239.0, + "new_cases": 1562.0, + "new_cases_smoothed": 1158.143, + "total_deaths": 4807.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2113.362, + "new_cases_per_million": 18.52, + "new_cases_smoothed_per_million": 13.732, + "total_deaths_per_million": 56.996, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.195, + "new_tests": 42032.0, + "total_tests": 2674203.0, + "total_tests_per_thousand": 31.708, + "new_tests_per_thousand": 0.498, + "new_tests_smoothed": 42321.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 36.542, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-16", + "total_cases": 179831.0, + "new_cases": 1592.0, + "new_cases_smoothed": 1244.286, + "total_deaths": 4825.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 2132.238, + "new_cases_per_million": 18.876, + "new_cases_smoothed_per_million": 14.753, + "total_deaths_per_million": 57.21, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 46800.0, + "total_tests": 2721003.0, + "total_tests_per_thousand": 32.263, + "new_tests_per_thousand": 0.555, + "new_tests_smoothed": 43689.0, + "new_tests_smoothed_per_thousand": 0.518, + "tests_per_case": 35.111999999999995, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-17", + "total_cases": 181298.0, + "new_cases": 1467.0, + "new_cases_smoothed": 1312.0, + "total_deaths": 4842.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 2149.633, + "new_cases_per_million": 17.394, + "new_cases_smoothed_per_million": 15.556, + "total_deaths_per_million": 57.411, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.191, + "new_tests": 1.0, + "total_tests": 2721004.0, + "total_tests_per_thousand": 32.263, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 38472.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 29.323, + "positive_rate": 0.034, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-18", + "total_cases": 182727.0, + "new_cases": 1429.0, + "new_cases_smoothed": 1384.429, + "total_deaths": 4861.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2166.576, + "new_cases_per_million": 16.944, + "new_cases_smoothed_per_million": 16.415, + "total_deaths_per_million": 57.636, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.195, + "new_tests": 101312.0, + "total_tests": 2822316.0, + "total_tests_per_thousand": 33.464, + "new_tests_per_thousand": 1.201, + "new_tests_smoothed": 45918.0, + "new_tests_smoothed_per_thousand": 0.544, + "tests_per_case": 33.167, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-19", + "total_cases": 184031.0, + "new_cases": 1304.0, + "new_cases_smoothed": 1429.714, + "total_deaths": 4882.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 2182.037, + "new_cases_per_million": 15.461, + "new_cases_smoothed_per_million": 16.952, + "total_deaths_per_million": 57.885, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 41316.0, + "total_tests": 2863632.0, + "total_tests_per_thousand": 33.954, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 48891.0, + "new_tests_smoothed_per_thousand": 0.58, + "tests_per_case": 34.196, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-20", + "total_cases": 185245.0, + "new_cases": 1214.0, + "new_cases_smoothed": 1432.429, + "total_deaths": 4905.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 2196.432, + "new_cases_per_million": 14.394, + "new_cases_smoothed_per_million": 16.984, + "total_deaths_per_million": 58.158, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.215, + "new_tests": 41112.0, + "total_tests": 2904744.0, + "total_tests_per_thousand": 34.441, + "new_tests_per_thousand": 0.487, + "new_tests_smoothed": 51834.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 36.186, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-21", + "total_cases": 186493.0, + "new_cases": 1248.0, + "new_cases_smoothed": 1402.286, + "total_deaths": 4927.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 2211.229, + "new_cases_per_million": 14.797, + "new_cases_smoothed_per_million": 16.627, + "total_deaths_per_million": 58.419, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 40496.0, + "total_tests": 2945240.0, + "total_tests_per_thousand": 34.921, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 44724.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 31.894000000000002, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-22", + "total_cases": 187685.0, + "new_cases": 1192.0, + "new_cases_smoothed": 1349.429, + "total_deaths": 4950.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 2225.363, + "new_cases_per_million": 14.133, + "new_cases_smoothed_per_million": 16.0, + "total_deaths_per_million": 58.692, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 41413.0, + "total_tests": 2986653.0, + "total_tests_per_thousand": 35.412, + "new_tests_per_thousand": 0.491, + "new_tests_smoothed": 44636.0, + "new_tests_smoothed_per_thousand": 0.529, + "tests_per_case": 33.078, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-23", + "total_cases": 188897.0, + "new_cases": 1212.0, + "new_cases_smoothed": 1295.143, + "total_deaths": 4974.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.286, + "total_cases_per_million": 2239.733, + "new_cases_per_million": 14.371, + "new_cases_smoothed_per_million": 15.356, + "total_deaths_per_million": 58.976, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 42982.0, + "total_tests": 3029635.0, + "total_tests_per_thousand": 35.922, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 44090.0, + "new_tests_smoothed_per_thousand": 0.523, + "tests_per_case": 34.043, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-24", + "total_cases": 190165.0, + "new_cases": 1268.0, + "new_cases_smoothed": 1266.714, + "total_deaths": 5001.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 2254.768, + "new_cases_per_million": 15.035, + "new_cases_smoothed_per_million": 15.019, + "total_deaths_per_million": 59.296, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 53486.0, + "total_tests": 3083121.0, + "total_tests_per_thousand": 36.556, + "new_tests_per_thousand": 0.634, + "new_tests_smoothed": 51731.0, + "new_tests_smoothed_per_thousand": 0.613, + "tests_per_case": 40.839, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-25", + "total_cases": 191657.0, + "new_cases": 1492.0, + "new_cases_smoothed": 1275.714, + "total_deaths": 5025.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 2272.458, + "new_cases_per_million": 17.69, + "new_cases_smoothed_per_million": 15.126, + "total_deaths_per_million": 59.581, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.278, + "new_tests": 52303.0, + "total_tests": 3135424.0, + "total_tests_per_thousand": 37.176, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 44730.0, + "new_tests_smoothed_per_thousand": 0.53, + "tests_per_case": 35.063, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-26", + "total_cases": 193115.0, + "new_cases": 1458.0, + "new_cases_smoothed": 1297.714, + "total_deaths": 5046.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 2289.746, + "new_cases_per_million": 17.287, + "new_cases_smoothed_per_million": 15.387, + "total_deaths_per_million": 59.83, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.278, + "new_tests_smoothed": 42484.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 32.738, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-27", + "total_cases": 194511.0, + "new_cases": 1396.0, + "new_cases_smoothed": 1323.714, + "total_deaths": 5065.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 22.857, + "total_cases_per_million": 2306.298, + "new_cases_per_million": 16.552, + "new_cases_smoothed_per_million": 15.695, + "total_deaths_per_million": 60.055, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.271, + "total_tests": 3186622.0, + "total_tests_per_thousand": 37.783, + "new_tests_smoothed": 40268.0, + "new_tests_smoothed_per_thousand": 0.477, + "tests_per_case": 30.42, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-28", + "total_cases": 195883.0, + "new_cases": 1372.0, + "new_cases_smoothed": 1341.429, + "total_deaths": 5082.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 22.143, + "total_cases_per_million": 2322.565, + "new_cases_per_million": 16.268, + "new_cases_smoothed_per_million": 15.905, + "total_deaths_per_million": 60.257, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.263, + "new_tests": 93522.0, + "total_tests": 3280144.0, + "total_tests_per_thousand": 38.892, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 47843.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 35.666, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-29", + "total_cases": 197239.0, + "new_cases": 1356.0, + "new_cases_smoothed": 1364.857, + "total_deaths": 5097.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 2338.643, + "new_cases_per_million": 16.078, + "new_cases_smoothed_per_million": 16.183, + "total_deaths_per_million": 60.435, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 51014.0, + "total_tests": 3331158.0, + "total_tests_per_thousand": 39.497, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 49215.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 36.059, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-06-30", + "total_cases": 198613.0, + "new_cases": 1374.0, + "new_cases_smoothed": 1388.0, + "total_deaths": 5115.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 2354.935, + "new_cases_per_million": 16.291, + "new_cases_smoothed_per_million": 16.457, + "total_deaths_per_million": 60.648, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.239, + "new_tests": 50492.0, + "total_tests": 3381650.0, + "total_tests_per_thousand": 40.096, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 50288.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 36.231, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-01", + "total_cases": 199906.0, + "new_cases": 1293.0, + "new_cases_smoothed": 1391.571, + "total_deaths": 5131.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2370.266, + "new_cases_per_million": 15.331, + "new_cases_smoothed_per_million": 16.5, + "total_deaths_per_million": 60.838, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 52313.0, + "total_tests": 3433963.0, + "total_tests_per_thousand": 40.716, + "new_tests_per_thousand": 0.62, + "new_tests_smoothed": 50120.0, + "new_tests_smoothed_per_thousand": 0.594, + "tests_per_case": 36.016999999999996, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-02", + "total_cases": 201098.0, + "new_cases": 1192.0, + "new_cases_smoothed": 1348.714, + "total_deaths": 5150.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 2384.399, + "new_cases_per_million": 14.133, + "new_cases_smoothed_per_million": 15.992, + "total_deaths_per_million": 61.063, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.212, + "new_tests": 49714.0, + "total_tests": 3483677.0, + "total_tests_per_thousand": 41.306, + "new_tests_per_thousand": 0.589, + "new_tests_smoothed": 49750.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 36.887, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-03", + "total_cases": 202284.0, + "new_cases": 1186.0, + "new_cases_smoothed": 1309.857, + "total_deaths": 5167.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 2398.461, + "new_cases_per_million": 14.062, + "new_cases_smoothed_per_million": 15.531, + "total_deaths_per_million": 61.265, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.205, + "new_tests_smoothed": 53264.0, + "new_tests_smoothed_per_thousand": 0.632, + "tests_per_case": 40.664, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-04", + "total_cases": 203456.0, + "new_cases": 1172.0, + "new_cases_smoothed": 1277.857, + "total_deaths": 5186.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 2412.358, + "new_cases_per_million": 13.896, + "new_cases_smoothed_per_million": 15.151, + "total_deaths_per_million": 61.49, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.205, + "total_tests": 3584066.0, + "total_tests_per_thousand": 42.496, + "new_tests_smoothed": 56778.0, + "new_tests_smoothed_per_thousand": 0.673, + "tests_per_case": 44.431999999999995, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-05", + "total_cases": 204610.0, + "new_cases": 1154.0, + "new_cases_smoothed": 1246.714, + "total_deaths": 5206.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 2426.041, + "new_cases_per_million": 13.683, + "new_cases_smoothed_per_million": 14.782, + "total_deaths_per_million": 61.727, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.21, + "new_tests_smoothed": 50461.0, + "new_tests_smoothed_per_thousand": 0.598, + "tests_per_case": 40.475, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-06", + "total_cases": 205758.0, + "new_cases": 1148.0, + "new_cases_smoothed": 1217.0, + "total_deaths": 5225.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 2439.652, + "new_cases_per_million": 13.612, + "new_cases_smoothed_per_million": 14.43, + "total_deaths_per_million": 61.952, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.217, + "total_tests": 3682673.0, + "total_tests_per_thousand": 43.665, + "new_tests_smoothed": 50216.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 41.262, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-07", + "total_cases": 206844.0, + "new_cases": 1086.0, + "new_cases_smoothed": 1175.857, + "total_deaths": 5241.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 2452.529, + "new_cases_per_million": 12.877, + "new_cases_smoothed_per_million": 13.942, + "total_deaths_per_million": 62.142, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 50545.0, + "total_tests": 3733218.0, + "total_tests_per_thousand": 44.264, + "new_tests_per_thousand": 0.599, + "new_tests_smoothed": 50224.0, + "new_tests_smoothed_per_thousand": 0.596, + "tests_per_case": 42.713, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-08", + "total_cases": 207897.0, + "new_cases": 1053.0, + "new_cases_smoothed": 1141.571, + "total_deaths": 5260.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 2465.014, + "new_cases_per_million": 12.485, + "new_cases_smoothed_per_million": 13.535, + "total_deaths_per_million": 62.367, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.219, + "new_tests": 49302.0, + "total_tests": 3782520.0, + "total_tests_per_thousand": 44.849, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 49794.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 43.619, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-09", + "total_cases": 208938.0, + "new_cases": 1041.0, + "new_cases_smoothed": 1120.0, + "total_deaths": 5282.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 18.857, + "total_cases_per_million": 2477.357, + "new_cases_per_million": 12.343, + "new_cases_smoothed_per_million": 13.28, + "total_deaths_per_million": 62.628, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.224, + "new_tests_smoothed": 49755.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 44.424, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-10", + "total_cases": 209962.0, + "new_cases": 1024.0, + "new_cases_smoothed": 1096.857, + "total_deaths": 5300.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 2489.499, + "new_cases_per_million": 12.141, + "new_cases_smoothed_per_million": 13.005, + "total_deaths_per_million": 62.842, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.225, + "total_tests": 3881410.0, + "total_tests_per_thousand": 46.021, + "new_tests_smoothed": 49648.0, + "new_tests_smoothed_per_thousand": 0.589, + "tests_per_case": 45.263999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-11", + "total_cases": 210965.0, + "new_cases": 1003.0, + "new_cases_smoothed": 1072.714, + "total_deaths": 5323.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 2501.391, + "new_cases_per_million": 11.892, + "new_cases_smoothed_per_million": 12.719, + "total_deaths_per_million": 63.114, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.232, + "new_tests": 48813.0, + "total_tests": 3930223.0, + "total_tests_per_thousand": 46.6, + "new_tests_per_thousand": 0.579, + "new_tests_smoothed": 49451.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 46.099, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-12", + "total_cases": 211981.0, + "new_cases": 1016.0, + "new_cases_smoothed": 1053.0, + "total_deaths": 5344.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2513.438, + "new_cases_per_million": 12.047, + "new_cases_smoothed_per_million": 12.485, + "total_deaths_per_million": 63.363, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 45232.0, + "total_tests": 3975455.0, + "total_tests_per_thousand": 47.137, + "new_tests_per_thousand": 0.536, + "new_tests_smoothed": 48869.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 46.409, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-13", + "total_cases": 212993.0, + "new_cases": 1012.0, + "new_cases_smoothed": 1033.571, + "total_deaths": 5363.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2525.437, + "new_cases_per_million": 11.999, + "new_cases_smoothed_per_million": 12.255, + "total_deaths_per_million": 63.589, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 46492.0, + "total_tests": 4021947.0, + "total_tests_per_thousand": 47.688, + "new_tests_per_thousand": 0.551, + "new_tests_smoothed": 48468.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 46.894, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-14", + "total_cases": 214001.0, + "new_cases": 1008.0, + "new_cases_smoothed": 1022.429, + "total_deaths": 5382.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.143, + "total_cases_per_million": 2537.389, + "new_cases_per_million": 11.952, + "new_cases_smoothed_per_million": 12.123, + "total_deaths_per_million": 63.814, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.239, + "new_tests_smoothed": 47358.0, + "new_tests_smoothed_per_thousand": 0.562, + "tests_per_case": 46.318999999999996, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-15", + "total_cases": 214993.0, + "new_cases": 992.0, + "new_cases_smoothed": 1013.714, + "total_deaths": 5402.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 2549.151, + "new_cases_per_million": 11.762, + "new_cases_smoothed_per_million": 12.02, + "total_deaths_per_million": 64.051, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.241, + "total_tests": 4107498.0, + "total_tests_per_thousand": 48.702, + "new_tests_smoothed": 46425.0, + "new_tests_smoothed_per_thousand": 0.55, + "tests_per_case": 45.797, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-16", + "total_cases": 215940.0, + "new_cases": 947.0, + "new_cases_smoothed": 1000.286, + "total_deaths": 5419.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 19.571, + "total_cases_per_million": 2560.379, + "new_cases_per_million": 11.228, + "new_cases_smoothed_per_million": 11.86, + "total_deaths_per_million": 64.253, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.232, + "new_tests_smoothed": 42391.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 42.379, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-17", + "total_cases": 216873.0, + "new_cases": 933.0, + "new_cases_smoothed": 987.286, + "total_deaths": 5440.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 20.0, + "total_cases_per_million": 2571.442, + "new_cases_per_million": 11.062, + "new_cases_smoothed_per_million": 11.706, + "total_deaths_per_million": 64.502, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.237, + "total_tests": 4149909.0, + "total_tests_per_thousand": 49.205, + "new_tests_smoothed": 38357.0, + "new_tests_smoothed_per_thousand": 0.455, + "tests_per_case": 38.851, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-18", + "total_cases": 217799.0, + "new_cases": 926.0, + "new_cases_smoothed": 976.286, + "total_deaths": 5458.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 2582.421, + "new_cases_per_million": 10.979, + "new_cases_smoothed_per_million": 11.576, + "total_deaths_per_million": 64.715, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 82158.0, + "total_tests": 4232067.0, + "total_tests_per_thousand": 50.179, + "new_tests_per_thousand": 0.974, + "new_tests_smoothed": 43121.0, + "new_tests_smoothed_per_thousand": 0.511, + "tests_per_case": 44.168, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-19", + "total_cases": 218717.0, + "new_cases": 918.0, + "new_cases_smoothed": 962.286, + "total_deaths": 5475.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 2593.306, + "new_cases_per_million": 10.885, + "new_cases_smoothed_per_million": 11.41, + "total_deaths_per_million": 64.917, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 41310.0, + "total_tests": 4273377.0, + "total_tests_per_thousand": 50.669, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 42560.0, + "new_tests_smoothed_per_thousand": 0.505, + "tests_per_case": 44.228, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-20", + "total_cases": 219641.0, + "new_cases": 924.0, + "new_cases_smoothed": 949.714, + "total_deaths": 5491.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 18.286, + "total_cases_per_million": 2604.262, + "new_cases_per_million": 10.956, + "new_cases_smoothed_per_million": 11.261, + "total_deaths_per_million": 65.106, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 43404.0, + "total_tests": 4316781.0, + "total_tests_per_thousand": 51.184, + "new_tests_per_thousand": 0.515, + "new_tests_smoothed": 42119.0, + "new_tests_smoothed_per_thousand": 0.499, + "tests_per_case": 44.349, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-21", + "total_cases": 220572.0, + "new_cases": 931.0, + "new_cases_smoothed": 938.714, + "total_deaths": 5508.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 2615.3, + "new_cases_per_million": 11.039, + "new_cases_smoothed_per_million": 11.13, + "total_deaths_per_million": 65.308, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 42846.0, + "total_tests": 4359627.0, + "total_tests_per_thousand": 51.692, + "new_tests_per_thousand": 0.508, + "new_tests_smoothed": 42129.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 44.879, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 63.89 + }, + { + "date": "2020-07-22", + "total_cases": 221500.0, + "new_cases": 928.0, + "new_cases_smoothed": 929.571, + "total_deaths": 5526.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 2626.304, + "new_cases_per_million": 11.003, + "new_cases_smoothed_per_million": 11.022, + "total_deaths_per_million": 65.521, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.21, + "new_tests": 43404.0, + "total_tests": 4403031.0, + "total_tests_per_thousand": 52.206, + "new_tests_per_thousand": 0.515, + "new_tests_smoothed": 42219.0, + "new_tests_smoothed_per_thousand": 0.501, + "tests_per_case": 45.418, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-23", + "total_cases": 222402.0, + "new_cases": 902.0, + "new_cases_smoothed": 923.143, + "total_deaths": 5545.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 2636.999, + "new_cases_per_million": 10.695, + "new_cases_smoothed_per_million": 10.946, + "total_deaths_per_million": 65.747, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 43343.0, + "total_tests": 4446374.0, + "total_tests_per_thousand": 52.72, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 45382.0, + "new_tests_smoothed_per_thousand": 0.538, + "tests_per_case": 49.16, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-24", + "total_cases": 223315.0, + "new_cases": 913.0, + "new_cases_smoothed": 920.286, + "total_deaths": 5563.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 2647.824, + "new_cases_per_million": 10.825, + "new_cases_smoothed_per_million": 10.912, + "total_deaths_per_million": 65.96, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 42986.0, + "total_tests": 4489360.0, + "total_tests_per_thousand": 53.23, + "new_tests_per_thousand": 0.51, + "new_tests_smoothed": 48493.0, + "new_tests_smoothed_per_thousand": 0.575, + "tests_per_case": 52.693000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-25", + "total_cases": 224252.0, + "new_cases": 937.0, + "new_cases_smoothed": 921.857, + "total_deaths": 5580.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 2658.934, + "new_cases_per_million": 11.11, + "new_cases_smoothed_per_million": 10.93, + "total_deaths_per_million": 66.162, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.207, + "new_tests_smoothed": 42708.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 46.328, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-26", + "total_cases": 225173.0, + "new_cases": 921.0, + "new_cases_smoothed": 922.286, + "total_deaths": 5596.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 2669.854, + "new_cases_per_million": 10.92, + "new_cases_smoothed_per_million": 10.935, + "total_deaths_per_million": 66.351, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.205, + "total_tests": 4572688.0, + "total_tests_per_thousand": 54.218, + "new_tests_smoothed": 42759.0, + "new_tests_smoothed_per_thousand": 0.507, + "tests_per_case": 46.361999999999995, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-27", + "total_cases": 226100.0, + "new_cases": 927.0, + "new_cases_smoothed": 922.714, + "total_deaths": 5613.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 2680.845, + "new_cases_per_million": 10.991, + "new_cases_smoothed_per_million": 10.941, + "total_deaths_per_million": 66.553, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 92695.0, + "total_tests": 4665383.0, + "total_tests_per_thousand": 55.317, + "new_tests_per_thousand": 1.099, + "new_tests_smoothed": 49800.0, + "new_tests_smoothed_per_thousand": 0.59, + "tests_per_case": 53.971000000000004, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-28", + "total_cases": 227019.0, + "new_cases": 919.0, + "new_cases_smoothed": 921.0, + "total_deaths": 5630.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 2691.742, + "new_cases_per_million": 10.896, + "new_cases_smoothed_per_million": 10.92, + "total_deaths_per_million": 66.754, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.207, + "new_tests": 45712.0, + "total_tests": 4711095.0, + "total_tests_per_thousand": 55.859, + "new_tests_per_thousand": 0.542, + "new_tests_smoothed": 50210.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 54.516999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-29", + "total_cases": 227982.0, + "new_cases": 963.0, + "new_cases_smoothed": 926.0, + "total_deaths": 5645.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 2703.16, + "new_cases_per_million": 11.418, + "new_cases_smoothed_per_million": 10.979, + "total_deaths_per_million": 66.932, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 43236.0, + "total_tests": 4754331.0, + "total_tests_per_thousand": 56.372, + "new_tests_per_thousand": 0.513, + "new_tests_smoothed": 50186.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 54.196999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-30", + "total_cases": 228924.0, + "new_cases": 942.0, + "new_cases_smoothed": 931.714, + "total_deaths": 5659.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 2714.329, + "new_cases_per_million": 11.169, + "new_cases_smoothed_per_million": 11.047, + "total_deaths_per_million": 67.098, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 46492.0, + "total_tests": 4800823.0, + "total_tests_per_thousand": 56.923, + "new_tests_per_thousand": 0.551, + "new_tests_smoothed": 50636.0, + "new_tests_smoothed_per_thousand": 0.6, + "tests_per_case": 54.347, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-07-31", + "total_cases": 229891.0, + "new_cases": 967.0, + "new_cases_smoothed": 939.429, + "total_deaths": 5674.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2725.795, + "new_cases_per_million": 11.466, + "new_cases_smoothed_per_million": 11.139, + "total_deaths_per_million": 67.276, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 44846.0, + "total_tests": 4845669.0, + "total_tests_per_thousand": 57.455, + "new_tests_per_thousand": 0.532, + "new_tests_smoothed": 50901.0, + "new_tests_smoothed_per_thousand": 0.604, + "tests_per_case": 54.183, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-08-01", + "total_cases": 230873.0, + "new_cases": 982.0, + "new_cases_smoothed": 945.857, + "total_deaths": 5691.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2737.438, + "new_cases_per_million": 11.643, + "new_cases_smoothed_per_million": 11.215, + "total_deaths_per_million": 67.478, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 40247.0, + "total_tests": 4885916.0, + "total_tests_per_thousand": 57.932, + "new_tests_per_thousand": 0.477, + "new_tests_smoothed": 50699.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 53.601000000000006, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-08-02", + "total_cases": 231869.0, + "new_cases": 996.0, + "new_cases_smoothed": 956.571, + "total_deaths": 5710.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 2749.248, + "new_cases_per_million": 11.809, + "new_cases_smoothed_per_million": 11.342, + "total_deaths_per_million": 67.703, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 41301.0, + "total_tests": 4927217.0, + "total_tests_per_thousand": 58.422, + "new_tests_per_thousand": 0.49, + "new_tests_smoothed": 50647.0, + "new_tests_smoothed_per_thousand": 0.601, + "tests_per_case": 52.946000000000005, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-08-03", + "total_cases": 232856.0, + "new_cases": 987.0, + "new_cases_smoothed": 965.143, + "total_deaths": 5728.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 2760.951, + "new_cases_per_million": 11.703, + "new_cases_smoothed_per_million": 11.444, + "total_deaths_per_million": 67.916, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.195, + "new_tests": 46249.0, + "total_tests": 4973466.0, + "total_tests_per_thousand": 58.97, + "new_tests_per_thousand": 0.548, + "new_tests_smoothed": 44012.0, + "new_tests_smoothed_per_thousand": 0.522, + "tests_per_case": 45.602, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-08-04", + "total_cases": 233851.0, + "new_cases": 995.0, + "new_cases_smoothed": 976.0, + "total_deaths": 5747.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 2772.748, + "new_cases_per_million": 11.798, + "new_cases_smoothed_per_million": 11.572, + "total_deaths_per_million": 68.142, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.198, + "new_tests_smoothed": 42640.0, + "new_tests_smoothed_per_thousand": 0.506, + "tests_per_case": 43.68899999999999, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 42.59 + }, + { + "date": "2020-08-05", + "total_cases": 234934.0, + "new_cases": 1083.0, + "new_cases_smoothed": 993.143, + "total_deaths": 5765.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 2785.589, + "new_cases_per_million": 12.841, + "new_cases_smoothed_per_million": 11.776, + "total_deaths_per_million": 68.355, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.203, + "new_tests_smoothed": 41623.0, + "new_tests_smoothed_per_thousand": 0.494, + "tests_per_case": 41.91, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-06", + "total_cases": 236112.0, + "new_cases": 1178.0, + "new_cases_smoothed": 1026.857, + "total_deaths": 5784.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 2799.557, + "new_cases_per_million": 13.967, + "new_cases_smoothed_per_million": 12.175, + "total_deaths_per_million": 68.58, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.212, + "total_tests": 5081802.0, + "total_tests_per_thousand": 60.254, + "new_tests_smoothed": 40140.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 39.09, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-07", + "total_cases": 237265.0, + "new_cases": 1153.0, + "new_cases_smoothed": 1053.429, + "total_deaths": 5798.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 2813.228, + "new_cases_per_million": 13.671, + "new_cases_smoothed_per_million": 12.49, + "total_deaths_per_million": 68.746, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.21, + "new_tests_smoothed": 42345.0, + "new_tests_smoothed_per_thousand": 0.502, + "tests_per_case": 40.196999999999996, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-08", + "total_cases": 238450.0, + "new_cases": 1185.0, + "new_cases_smoothed": 1082.429, + "total_deaths": 5813.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 2827.278, + "new_cases_per_million": 14.05, + "new_cases_smoothed_per_million": 12.834, + "total_deaths_per_million": 68.924, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.207, + "total_tests": 5202370.0, + "total_tests_per_thousand": 61.684, + "new_tests_smoothed": 45208.0, + "new_tests_smoothed_per_thousand": 0.536, + "tests_per_case": 41.765, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-09", + "total_cases": 239622.0, + "new_cases": 1172.0, + "new_cases_smoothed": 1107.571, + "total_deaths": 5829.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 2841.174, + "new_cases_per_million": 13.896, + "new_cases_smoothed_per_million": 13.132, + "total_deaths_per_million": 69.114, + "new_deaths_per_million": 0.19, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 61446.0, + "total_tests": 5263816.0, + "total_tests_per_thousand": 62.413, + "new_tests_per_thousand": 0.729, + "new_tests_smoothed": 48086.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 43.416000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-10", + "total_cases": 240804.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1135.429, + "total_deaths": 5844.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 2855.189, + "new_cases_per_million": 14.015, + "new_cases_smoothed_per_million": 13.463, + "total_deaths_per_million": 69.292, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.196, + "new_tests": 62219.0, + "total_tests": 5326035.0, + "total_tests_per_thousand": 63.15, + "new_tests_per_thousand": 0.738, + "new_tests_smoothed": 50367.0, + "new_tests_smoothed_per_thousand": 0.597, + "tests_per_case": 44.358999999999995, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-11", + "total_cases": 241997.0, + "new_cases": 1193.0, + "new_cases_smoothed": 1163.714, + "total_deaths": 5858.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 2869.335, + "new_cases_per_million": 14.145, + "new_cases_smoothed_per_million": 13.798, + "total_deaths_per_million": 69.458, + "new_deaths_per_million": 0.166, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 61716.0, + "total_tests": 5387751.0, + "total_tests_per_thousand": 63.882, + "new_tests_per_thousand": 0.732, + "new_tests_smoothed": 54025.0, + "new_tests_smoothed_per_thousand": 0.641, + "tests_per_case": 46.425, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-12", + "total_cases": 243180.0, + "new_cases": 1183.0, + "new_cases_smoothed": 1178.0, + "total_deaths": 5873.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 2883.361, + "new_cases_per_million": 14.027, + "new_cases_smoothed_per_million": 13.967, + "total_deaths_per_million": 69.636, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.183, + "new_tests": 67237.0, + "total_tests": 5454988.0, + "total_tests_per_thousand": 64.679, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 58471.0, + "new_tests_smoothed_per_thousand": 0.693, + "tests_per_case": 49.636, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-13", + "total_cases": 244392.0, + "new_cases": 1212.0, + "new_cases_smoothed": 1182.857, + "total_deaths": 5891.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 2897.732, + "new_cases_per_million": 14.371, + "new_cases_smoothed_per_million": 14.025, + "total_deaths_per_million": 69.849, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.181, + "new_tests": 66892.0, + "total_tests": 5521880.0, + "total_tests_per_thousand": 65.472, + "new_tests_per_thousand": 0.793, + "new_tests_smoothed": 62868.0, + "new_tests_smoothed_per_thousand": 0.745, + "tests_per_case": 53.148999999999994, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-14", + "total_cases": 245635.0, + "new_cases": 1243.0, + "new_cases_smoothed": 1195.714, + "total_deaths": 5912.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 2912.47, + "new_cases_per_million": 14.738, + "new_cases_smoothed_per_million": 14.177, + "total_deaths_per_million": 70.098, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 70192.0, + "total_tests": 5592072.0, + "total_tests_per_thousand": 66.305, + "new_tests_per_thousand": 0.832, + "new_tests_smoothed": 64284.0, + "new_tests_smoothed_per_thousand": 0.762, + "tests_per_case": 53.762, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-15", + "total_cases": 246861.0, + "new_cases": 1226.0, + "new_cases_smoothed": 1201.571, + "total_deaths": 5934.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 2927.007, + "new_cases_per_million": 14.537, + "new_cases_smoothed_per_million": 14.247, + "total_deaths_per_million": 70.359, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.205, + "new_tests": 67214.0, + "total_tests": 5659286.0, + "total_tests_per_thousand": 67.102, + "new_tests_per_thousand": 0.797, + "new_tests_smoothed": 65274.0, + "new_tests_smoothed_per_thousand": 0.774, + "tests_per_case": 54.324, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-16", + "total_cases": 248117.0, + "new_cases": 1256.0, + "new_cases_smoothed": 1213.571, + "total_deaths": 5955.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 2941.899, + "new_cases_per_million": 14.892, + "new_cases_smoothed_per_million": 14.389, + "total_deaths_per_million": 70.608, + "new_deaths_per_million": 0.249, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 65956.0, + "total_tests": 5725242.0, + "total_tests_per_thousand": 67.884, + "new_tests_per_thousand": 0.782, + "new_tests_smoothed": 65918.0, + "new_tests_smoothed_per_thousand": 0.782, + "tests_per_case": 54.317, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-17", + "total_cases": 249309.0, + "new_cases": 1192.0, + "new_cases_smoothed": 1215.0, + "total_deaths": 5974.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.571, + "total_cases_per_million": 2956.032, + "new_cases_per_million": 14.133, + "new_cases_smoothed_per_million": 14.406, + "total_deaths_per_million": 70.833, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.22, + "new_tests": 74846.0, + "total_tests": 5800088.0, + "total_tests_per_thousand": 68.771, + "new_tests_per_thousand": 0.887, + "new_tests_smoothed": 67722.0, + "new_tests_smoothed_per_thousand": 0.803, + "tests_per_case": 55.738, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-18", + "total_cases": 250542.0, + "new_cases": 1233.0, + "new_cases_smoothed": 1220.714, + "total_deaths": 5996.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 2970.652, + "new_cases_per_million": 14.62, + "new_cases_smoothed_per_million": 14.474, + "total_deaths_per_million": 71.094, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.234, + "new_tests": 82318.0, + "total_tests": 5882406.0, + "total_tests_per_thousand": 69.747, + "new_tests_per_thousand": 0.976, + "new_tests_smoothed": 70665.0, + "new_tests_smoothed_per_thousand": 0.838, + "tests_per_case": 57.888000000000005, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-19", + "total_cases": 251805.0, + "new_cases": 1263.0, + "new_cases_smoothed": 1232.143, + "total_deaths": 6016.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 2985.627, + "new_cases_per_million": 14.975, + "new_cases_smoothed_per_million": 14.609, + "total_deaths_per_million": 71.331, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.242, + "new_tests_smoothed": 73883.0, + "new_tests_smoothed_per_thousand": 0.876, + "tests_per_case": 59.963, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-20", + "total_cases": 253108.0, + "new_cases": 1303.0, + "new_cases_smoothed": 1245.143, + "total_deaths": 6039.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 3001.077, + "new_cases_per_million": 15.45, + "new_cases_smoothed_per_million": 14.764, + "total_deaths_per_million": 71.604, + "new_deaths_per_million": 0.273, + "new_deaths_smoothed_per_million": 0.251, + "total_tests": 6061930.0, + "total_tests_per_thousand": 71.876, + "new_tests_smoothed": 77150.0, + "new_tests_smoothed_per_thousand": 0.915, + "tests_per_case": 61.961000000000006, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-21", + "total_cases": 254520.0, + "new_cases": 1412.0, + "new_cases_smoothed": 1269.286, + "total_deaths": 6058.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 3017.819, + "new_cases_per_million": 16.742, + "new_cases_smoothed_per_million": 15.05, + "total_deaths_per_million": 71.829, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.247, + "new_tests_smoothed": 80354.0, + "new_tests_smoothed_per_thousand": 0.953, + "tests_per_case": 63.306000000000004, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-22", + "total_cases": 255723.0, + "new_cases": 1203.0, + "new_cases_smoothed": 1266.0, + "total_deaths": 6080.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 3032.082, + "new_cases_per_million": 14.264, + "new_cases_smoothed_per_million": 15.011, + "total_deaths_per_million": 72.09, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.247, + "total_tests": 6247164.0, + "total_tests_per_thousand": 74.072, + "new_tests_smoothed": 83983.0, + "new_tests_smoothed_per_thousand": 0.996, + "tests_per_case": 66.337, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-23", + "total_cases": 257032.0, + "new_cases": 1309.0, + "new_cases_smoothed": 1273.571, + "total_deaths": 6102.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 3047.603, + "new_cases_per_million": 15.521, + "new_cases_smoothed_per_million": 15.101, + "total_deaths_per_million": 72.351, + "new_deaths_per_million": 0.261, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 80302.0, + "total_tests": 6327466.0, + "total_tests_per_thousand": 75.024, + "new_tests_per_thousand": 0.952, + "new_tests_smoothed": 86032.0, + "new_tests_smoothed_per_thousand": 1.02, + "tests_per_case": 67.55199999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-24", + "total_cases": 258249.0, + "new_cases": 1217.0, + "new_cases_smoothed": 1277.143, + "total_deaths": 6121.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 3062.033, + "new_cases_per_million": 14.43, + "new_cases_smoothed_per_million": 15.143, + "total_deaths_per_million": 72.576, + "new_deaths_per_million": 0.225, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 95943.0, + "total_tests": 6423409.0, + "total_tests_per_thousand": 76.162, + "new_tests_per_thousand": 1.138, + "new_tests_smoothed": 89046.0, + "new_tests_smoothed_per_thousand": 1.056, + "tests_per_case": 69.723, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-25", + "total_cases": 259692.0, + "new_cases": 1443.0, + "new_cases_smoothed": 1307.143, + "total_deaths": 6139.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 20.429, + "total_cases_per_million": 3079.142, + "new_cases_per_million": 17.11, + "new_cases_smoothed_per_million": 15.499, + "total_deaths_per_million": 72.79, + "new_deaths_per_million": 0.213, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 98231.0, + "total_tests": 6521640.0, + "total_tests_per_thousand": 77.326, + "new_tests_per_thousand": 1.165, + "new_tests_smoothed": 91319.0, + "new_tests_smoothed_per_thousand": 1.083, + "tests_per_case": 69.862, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-26", + "total_cases": 261194.0, + "new_cases": 1502.0, + "new_cases_smoothed": 1341.286, + "total_deaths": 6163.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 21.0, + "total_cases_per_million": 3096.951, + "new_cases_per_million": 17.809, + "new_cases_smoothed_per_million": 15.903, + "total_deaths_per_million": 73.074, + "new_deaths_per_million": 0.285, + "new_deaths_smoothed_per_million": 0.249, + "new_tests": 100109.0, + "total_tests": 6621749.0, + "total_tests_per_thousand": 78.513, + "new_tests_per_thousand": 1.187, + "new_tests_smoothed": 92797.0, + "new_tests_smoothed_per_thousand": 1.1, + "tests_per_case": 69.185, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-27", + "total_cases": 262507.0, + "new_cases": 1313.0, + "new_cases_smoothed": 1342.714, + "total_deaths": 6183.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 20.571, + "total_cases_per_million": 3112.52, + "new_cases_per_million": 15.568, + "new_cases_smoothed_per_million": 15.92, + "total_deaths_per_million": 73.311, + "new_deaths_per_million": 0.237, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 106111.0, + "total_tests": 6727860.0, + "total_tests_per_thousand": 79.772, + "new_tests_per_thousand": 1.258, + "new_tests_smoothed": 95133.0, + "new_tests_smoothed_per_thousand": 1.128, + "tests_per_case": 70.851, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-28", + "total_cases": 263998.0, + "new_cases": 1491.0, + "new_cases_smoothed": 1354.0, + "total_deaths": 6209.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 21.571, + "total_cases_per_million": 3130.198, + "new_cases_per_million": 17.679, + "new_cases_smoothed_per_million": 16.054, + "total_deaths_per_million": 73.62, + "new_deaths_per_million": 0.308, + "new_deaths_smoothed_per_million": 0.256, + "new_tests": 107814.0, + "total_tests": 6835674.0, + "total_tests_per_thousand": 81.05, + "new_tests_per_thousand": 1.278, + "new_tests_smoothed": 97304.0, + "new_tests_smoothed_per_thousand": 1.154, + "tests_per_case": 71.86399999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-29", + "total_cases": 265515.0, + "new_cases": 1517.0, + "new_cases_smoothed": 1398.857, + "total_deaths": 6245.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 3148.185, + "new_cases_per_million": 17.987, + "new_cases_smoothed_per_million": 16.586, + "total_deaths_per_million": 74.046, + "new_deaths_per_million": 0.427, + "new_deaths_smoothed_per_million": 0.279, + "new_tests": 101414.0, + "total_tests": 6937088.0, + "total_tests_per_thousand": 82.252, + "new_tests_per_thousand": 1.202, + "new_tests_smoothed": 98561.0, + "new_tests_smoothed_per_thousand": 1.169, + "tests_per_case": 70.458, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-30", + "total_cases": 267064.0, + "new_cases": 1549.0, + "new_cases_smoothed": 1433.143, + "total_deaths": 6284.0, + "new_deaths": 39.0, + "new_deaths_smoothed": 26.0, + "total_cases_per_million": 3166.552, + "new_cases_per_million": 18.366, + "new_cases_smoothed_per_million": 16.993, + "total_deaths_per_million": 74.509, + "new_deaths_per_million": 0.462, + "new_deaths_smoothed_per_million": 0.308, + "new_tests": 91302.0, + "total_tests": 7028390.0, + "total_tests_per_thousand": 83.335, + "new_tests_per_thousand": 1.083, + "new_tests_smoothed": 100132.0, + "new_tests_smoothed_per_thousand": 1.187, + "tests_per_case": 69.869, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-08-31", + "total_cases": 268546.0, + "new_cases": 1482.0, + "new_cases_smoothed": 1471.0, + "total_deaths": 6326.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 29.286, + "total_cases_per_million": 3184.123, + "new_cases_per_million": 17.572, + "new_cases_smoothed_per_million": 17.442, + "total_deaths_per_million": 75.007, + "new_deaths_per_million": 0.498, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 110102.0, + "total_tests": 7138492.0, + "total_tests_per_thousand": 84.64, + "new_tests_per_thousand": 1.305, + "new_tests_smoothed": 102155.0, + "new_tests_smoothed_per_thousand": 1.211, + "tests_per_case": 69.446, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 48.15 + }, + { + "date": "2020-09-01", + "total_cases": 270133.0, + "new_cases": 1587.0, + "new_cases_smoothed": 1491.571, + "total_deaths": 6370.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 3202.94, + "new_cases_per_million": 18.817, + "new_cases_smoothed_per_million": 17.685, + "total_deaths_per_million": 75.528, + "new_deaths_per_million": 0.522, + "new_deaths_smoothed_per_million": 0.391, + "new_tests": 109443.0, + "total_tests": 7247935.0, + "total_tests_per_thousand": 85.938, + "new_tests_per_thousand": 1.298, + "new_tests_smoothed": 103756.0, + "new_tests_smoothed_per_thousand": 1.23, + "tests_per_case": 69.562, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 271705.0, + "new_cases": 1572.0, + "new_cases_smoothed": 1501.571, + "total_deaths": 6417.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 36.286, + "total_cases_per_million": 3221.579, + "new_cases_per_million": 18.639, + "new_cases_smoothed_per_million": 17.804, + "total_deaths_per_million": 76.086, + "new_deaths_per_million": 0.557, + "new_deaths_smoothed_per_million": 0.43, + "new_tests": 107927.0, + "total_tests": 7355862.0, + "total_tests_per_thousand": 87.218, + "new_tests_per_thousand": 1.28, + "new_tests_smoothed": 104873.0, + "new_tests_smoothed_per_thousand": 1.243, + "tests_per_case": 69.842, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 273301.0, + "new_cases": 1596.0, + "new_cases_smoothed": 1542.0, + "total_deaths": 6462.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 39.857, + "total_cases_per_million": 3240.503, + "new_cases_per_million": 18.924, + "new_cases_smoothed_per_million": 18.283, + "total_deaths_per_million": 76.619, + "new_deaths_per_million": 0.534, + "new_deaths_smoothed_per_million": 0.473, + "new_tests_smoothed": 97588.0, + "new_tests_smoothed_per_thousand": 1.157, + "tests_per_case": 63.287, + "positive_rate": 0.016, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 274943.0, + "new_cases": 1642.0, + "new_cases_smoothed": 1563.571, + "total_deaths": 6511.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 3259.972, + "new_cases_per_million": 19.469, + "new_cases_smoothed_per_million": 18.539, + "total_deaths_per_million": 77.2, + "new_deaths_per_million": 0.581, + "new_deaths_smoothed_per_million": 0.512, + "total_tests": 7466087.0, + "total_tests_per_thousand": 88.525, + "new_tests_smoothed": 90059.0, + "new_tests_smoothed_per_thousand": 1.068, + "tests_per_case": 57.598, + "positive_rate": 0.017, + "tests_units": "tests performed" + }, + { + "date": "2020-09-05", + "total_cases": 276555.0, + "new_cases": 1612.0, + "new_cases_smoothed": 1577.143, + "total_deaths": 6564.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 45.571, + "total_cases_per_million": 3279.085, + "new_cases_per_million": 19.113, + "new_cases_smoothed_per_million": 18.7, + "total_deaths_per_million": 77.829, + "new_deaths_per_million": 0.628, + "new_deaths_smoothed_per_million": 0.54 + } + ] + }, + "TCA": { + "continent": "North America", + "location": "Turks and Caicos Islands", + "population": 38718.0, + "population_density": 37.312, + "life_expectancy": 80.22, + "data": [ + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 25.828, + "new_cases_per_million": 25.828, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 25.828, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 51.656, + "new_cases_per_million": 25.828, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 51.656, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 5.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 77.483, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 5.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 18.448, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 129.139, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 25.828, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 8.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.622, + "new_cases_per_million": 77.483, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 206.622, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.45, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 232.45, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 232.45, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.278, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 258.278, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 284.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.69, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.93 + }, + { + "date": "2020-05-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-05-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 309.933, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 73.15 + }, + { + "date": "2020-06-22", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.589, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-23", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.589, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-24", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 361.589, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-25", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.417, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-26", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-27", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 387.417, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.069, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-28", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 413.244, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 14.759, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-29", + "total_cases": 28.0, + "new_cases": 12.0, + "new_cases_smoothed": 2.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 723.178, + "new_cases_per_million": 309.933, + "new_cases_smoothed_per_million": 51.656, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 41.0, + "new_cases": 13.0, + "new_cases_smoothed": 3.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1058.939, + "new_cases_per_million": 335.761, + "new_cases_smoothed_per_million": 99.621, + "total_deaths_per_million": 25.828, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 41.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1058.939, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.621, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 25.828, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-02", + "total_cases": 42.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1084.767, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 99.621, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-03", + "total_cases": 44.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1136.422, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 107.001, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-04", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1136.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 107.001, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-05", + "total_cases": 45.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1162.25, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 107.001, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-06", + "total_cases": 47.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1213.906, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 70.104, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-07", + "total_cases": 49.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1265.561, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 29.517, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 51.85 + }, + { + "date": "2020-07-08", + "total_cases": 49.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1265.561, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 29.517, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-09", + "total_cases": 55.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1420.528, + "new_cases_per_million": 154.967, + "new_cases_smoothed_per_million": 47.966, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-10", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1420.528, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 40.587, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-11", + "total_cases": 66.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1704.634, + "new_cases_per_million": 284.106, + "new_cases_smoothed_per_million": 81.173, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-12", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1704.634, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 77.483, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-13", + "total_cases": 72.0, + "new_cases": 6.0, + "new_cases_smoothed": 3.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1859.6, + "new_cases_per_million": 154.967, + "new_cases_smoothed_per_million": 92.242, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-14", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1859.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.863, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-15", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1859.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 84.863, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-16", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1859.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-17", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1859.6, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-18", + "total_cases": 74.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1911.256, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 29.517, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-19", + "total_cases": 75.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1937.084, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 33.207, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-20", + "total_cases": 81.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2092.05, + "new_cases_per_million": 154.967, + "new_cases_smoothed_per_million": 33.207, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 68.52 + }, + { + "date": "2020-07-21", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2092.05, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.207, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-07-22", + "total_cases": 82.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2117.878, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 36.897, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-23", + "total_cases": 86.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2221.189, + "new_cases_per_million": 103.311, + "new_cases_smoothed_per_million": 51.656, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-24", + "total_cases": 90.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2324.5, + "new_cases_per_million": 103.311, + "new_cases_smoothed_per_million": 66.414, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-25", + "total_cases": 92.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2376.156, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 66.414, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-26", + "total_cases": 97.0, + "new_cases": 5.0, + "new_cases_smoothed": 3.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2505.295, + "new_cases_per_million": 129.139, + "new_cases_smoothed_per_million": 81.173, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-27", + "total_cases": 99.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2556.95, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 66.414, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-28", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2556.95, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 66.414, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-29", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2556.95, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-30", + "total_cases": 99.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2556.95, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 47.966, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-07-31", + "total_cases": 104.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2686.089, + "new_cases_per_million": 129.139, + "new_cases_smoothed_per_million": 51.656, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-01", + "total_cases": 107.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2763.572, + "new_cases_per_million": 77.483, + "new_cases_smoothed_per_million": 55.345, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-02", + "total_cases": 114.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2944.367, + "new_cases_per_million": 180.794, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-03", + "total_cases": 116.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2996.023, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-04", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2996.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-05", + "total_cases": 116.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2996.023, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 62.725, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-06", + "total_cases": 129.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3331.784, + "new_cases_per_million": 335.761, + "new_cases_smoothed_per_million": 110.69, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-07", + "total_cases": 141.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3641.717, + "new_cases_per_million": 309.933, + "new_cases_smoothed_per_million": 136.518, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-08", + "total_cases": 170.0, + "new_cases": 29.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4390.723, + "new_cases_per_million": 749.006, + "new_cases_smoothed_per_million": 232.45, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-09", + "total_cases": 197.0, + "new_cases": 27.0, + "new_cases_smoothed": 11.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5088.073, + "new_cases_per_million": 697.35, + "new_cases_smoothed_per_million": 306.244, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 49.07 + }, + { + "date": "2020-08-10", + "total_cases": 216.0, + "new_cases": 19.0, + "new_cases_smoothed": 14.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5578.801, + "new_cases_per_million": 490.728, + "new_cases_smoothed_per_million": 368.968, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-11", + "total_cases": 216.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5578.801, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 368.968, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-12", + "total_cases": 224.0, + "new_cases": 8.0, + "new_cases_smoothed": 15.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5785.423, + "new_cases_per_million": 206.622, + "new_cases_smoothed_per_million": 398.486, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-13", + "total_cases": 241.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6224.495, + "new_cases_per_million": 439.072, + "new_cases_smoothed_per_million": 413.244, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-14", + "total_cases": 258.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6663.567, + "new_cases_per_million": 439.072, + "new_cases_smoothed_per_million": 431.693, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-15", + "total_cases": 274.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7076.812, + "new_cases_per_million": 413.244, + "new_cases_smoothed_per_million": 383.727, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-16", + "total_cases": 298.0, + "new_cases": 24.0, + "new_cases_smoothed": 14.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7696.679, + "new_cases_per_million": 619.867, + "new_cases_smoothed_per_million": 372.658, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-17", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7696.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 302.554, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-18", + "total_cases": 298.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7696.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 302.554, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-19", + "total_cases": 315.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8135.751, + "new_cases_per_million": 439.072, + "new_cases_smoothed_per_million": 335.761, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-20", + "total_cases": 327.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8445.684, + "new_cases_per_million": 309.933, + "new_cases_smoothed_per_million": 317.313, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-21", + "total_cases": 334.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8626.479, + "new_cases_per_million": 180.794, + "new_cases_smoothed_per_million": 280.416, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-22", + "total_cases": 347.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8962.24, + "new_cases_per_million": 335.761, + "new_cases_smoothed_per_million": 269.347, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-23", + "total_cases": 383.0, + "new_cases": 36.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9892.04, + "new_cases_per_million": 929.8, + "new_cases_smoothed_per_million": 313.623, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-24", + "total_cases": 383.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9892.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 313.623, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-25", + "total_cases": 383.0, + "new_cases": 0.0, + "new_cases_smoothed": 12.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9892.04, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 313.623, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-26", + "total_cases": 431.0, + "new_cases": 48.0, + "new_cases_smoothed": 16.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11131.773, + "new_cases_per_million": 1239.733, + "new_cases_smoothed_per_million": 428.003, + "total_deaths_per_million": 51.656, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-08-27", + "total_cases": 464.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11984.09, + "new_cases_per_million": 852.317, + "new_cases_smoothed_per_million": 505.487, + "total_deaths_per_million": 77.483, + "new_deaths_per_million": 25.828, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 62.96 + }, + { + "date": "2020-08-28", + "total_cases": 482.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12448.99, + "new_cases_per_million": 464.9, + "new_cases_smoothed_per_million": 546.073, + "total_deaths_per_million": 77.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 53.7 + }, + { + "date": "2020-08-29", + "total_cases": 490.0, + "new_cases": 8.0, + "new_cases_smoothed": 20.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 12655.612, + "new_cases_per_million": 206.622, + "new_cases_smoothed_per_million": 527.625, + "total_deaths_per_million": 77.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 53.7 + }, + { + "date": "2020-08-30", + "total_cases": 505.0, + "new_cases": 15.0, + "new_cases_smoothed": 17.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13043.029, + "new_cases_per_million": 387.417, + "new_cases_smoothed_per_million": 450.141, + "total_deaths_per_million": 77.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 53.7 + }, + { + "date": "2020-08-31", + "total_cases": 507.0, + "new_cases": 2.0, + "new_cases_smoothed": 17.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 13094.685, + "new_cases_per_million": 51.656, + "new_cases_smoothed_per_million": 457.521, + "total_deaths_per_million": 77.483, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69, + "stringency_index": 53.7 + }, + { + "date": "2020-09-01", + "total_cases": 508.0, + "new_cases": 1.0, + "new_cases_smoothed": 17.857, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13120.512, + "new_cases_per_million": 25.828, + "new_cases_smoothed_per_million": 461.21, + "total_deaths_per_million": 103.311, + "new_deaths_per_million": 25.828, + "new_deaths_smoothed_per_million": 7.379, + "stringency_index": 53.7 + }, + { + "date": "2020-09-02", + "total_cases": 508.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 13120.512, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 284.106, + "total_deaths_per_million": 103.311, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 7.379 + }, + { + "date": "2020-09-03", + "total_cases": 555.0, + "new_cases": 47.0, + "new_cases_smoothed": 13.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14334.418, + "new_cases_per_million": 1213.906, + "new_cases_smoothed_per_million": 335.761, + "total_deaths_per_million": 103.311, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69 + }, + { + "date": "2020-09-04", + "total_cases": 555.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 14334.418, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 269.347, + "total_deaths_per_million": 103.311, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 3.69 + }, + { + "date": "2020-09-05", + "total_cases": 577.0, + "new_cases": 22.0, + "new_cases_smoothed": 12.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 14902.629, + "new_cases_per_million": 568.211, + "new_cases_smoothed_per_million": 321.002, + "total_deaths_per_million": 129.139, + "new_deaths_per_million": 25.828, + "new_deaths_smoothed_per_million": 7.379 + } + ] + }, + "UGA": { + "continent": "Africa", + "location": "Uganda", + "population": 45741000.0, + "population_density": 213.759, + "median_age": 16.4, + "aged_65_older": 2.168, + "aged_70_older": 1.308, + "gdp_per_capita": 1697.707, + "extreme_poverty": 41.6, + "cardiovasc_death_rate": 213.333, + "diabetes_prevalence": 2.5, + "female_smokers": 3.4, + "male_smokers": 16.7, + "handwashing_facilities": 21.222, + "hospital_beds_per_thousand": 0.5, + "life_expectancy": 63.37, + "data": [ + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.022, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-24", + "total_cases": 9.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.197, + "new_cases_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-25", + "total_cases": 9.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.197, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-26", + "total_cases": 14.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.306, + "new_cases_per_million": 0.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-27", + "total_cases": 14.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.306, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-28", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.306, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-29", + "total_cases": 30.0, + "new_cases": 16.0, + "new_cases_smoothed": 4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.656, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-03-30", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.721, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-03-31", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.721, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-01", + "total_cases": 44.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.962, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 23.0, + "total_tests": 1510.0, + "total_tests_per_thousand": 0.033, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-02", + "total_cases": 44.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.962, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-03", + "total_cases": 45.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.984, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.097, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-04", + "total_cases": 48.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.049, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-05", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.049, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-06", + "total_cases": 52.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.137, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 231.0, + "total_tests": 3160.0, + "total_tests_per_thousand": 0.069, + "new_tests_per_thousand": 0.005, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-07", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 150.0, + "total_tests": 3310.0, + "total_tests_per_thousand": 0.072, + "new_tests_per_thousand": 0.003, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-08", + "total_cases": 52.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.137, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 214.0, + "total_tests": 3524.0, + "total_tests_per_thousand": 0.077, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 288.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-09", + "total_cases": 53.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.159, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 338.0, + "total_tests": 3862.0, + "total_tests_per_thousand": 0.084, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 289.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 224.778, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-10", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 439.0, + "total_tests": 4301.0, + "total_tests_per_thousand": 0.094, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 304.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-11", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 309.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 432.6, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-12", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.159, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 169.0, + "total_tests": 5025.0, + "total_tests_per_thousand": 0.11, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 439.6, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-13", + "total_cases": 54.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 639.0, + "total_tests": 5664.0, + "total_tests_per_thousand": 0.124, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 358.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 1253.0, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-14", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.181, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 625.0, + "total_tests": 6661.0, + "total_tests_per_thousand": 0.146, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 479.0, + "new_tests_smoothed_per_thousand": 0.01, + "tests_per_case": 1676.5, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 93.52 + }, + { + "date": "2020-04-15", + "total_cases": 55.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-16", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-17", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-18", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-19", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-20", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-21", + "total_cases": 56.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.224, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-22", + "total_cases": 58.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.268, + "new_cases_per_million": 0.044, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-23", + "total_cases": 61.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.334, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-24", + "total_cases": 74.0, + "new_cases": 13.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.618, + "new_cases_per_million": 0.284, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-25", + "total_cases": 75.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.64, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-26", + "total_cases": 75.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.64, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-27", + "total_cases": 79.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.727, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-28", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-29", + "total_cases": 79.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-04-30", + "total_cases": 81.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.771, + "new_cases_per_million": 0.044, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-01", + "total_cases": 83.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.815, + "new_cases_per_million": 0.044, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-02", + "total_cases": 85.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.858, + "new_cases_per_million": 0.044, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-03", + "total_cases": 88.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.924, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-04", + "total_cases": 89.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.946, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-05", + "total_cases": 97.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 93.52 + }, + { + "date": "2020-05-06", + "total_cases": 98.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.142, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-07", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.142, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-08", + "total_cases": 101.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.208, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.056, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-09", + "total_cases": 101.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.208, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.05, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-10", + "total_cases": 116.0, + "new_cases": 15.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.536, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-11", + "total_cases": 121.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.645, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-12", + "total_cases": 122.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.667, + "new_cases_per_million": 0.022, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-13", + "total_cases": 126.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.755, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-14", + "total_cases": 139.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.039, + "new_cases_per_million": 0.284, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-15", + "total_cases": 160.0, + "new_cases": 21.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.498, + "new_cases_per_million": 0.459, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-16", + "total_cases": 203.0, + "new_cases": 43.0, + "new_cases_smoothed": 14.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.438, + "new_cases_per_million": 0.94, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-17", + "total_cases": 227.0, + "new_cases": 24.0, + "new_cases_smoothed": 15.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.963, + "new_cases_per_million": 0.525, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 89.81 + }, + { + "date": "2020-05-18", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.963, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.331, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-19", + "total_cases": 260.0, + "new_cases": 33.0, + "new_cases_smoothed": 19.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.684, + "new_cases_per_million": 0.721, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-20", + "total_cases": 260.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.419, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-21", + "total_cases": 145.0, + "new_cases": -115.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.17, + "new_cases_per_million": -2.514, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-22", + "total_cases": 160.0, + "new_cases": 15.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.498, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-23", + "total_cases": 175.0, + "new_cases": 15.0, + "new_cases_smoothed": -4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.826, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": -0.087, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-24", + "total_cases": 198.0, + "new_cases": 23.0, + "new_cases_smoothed": -4.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.329, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": -0.091, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-25", + "total_cases": 212.0, + "new_cases": 14.0, + "new_cases_smoothed": -2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.635, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": -0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-26", + "total_cases": 222.0, + "new_cases": 10.0, + "new_cases_smoothed": -5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.853, + "new_cases_per_million": 0.219, + "new_cases_smoothed_per_million": -0.119, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-27", + "total_cases": 253.0, + "new_cases": 31.0, + "new_cases_smoothed": -1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.531, + "new_cases_per_million": 0.678, + "new_cases_smoothed_per_million": -0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-28", + "total_cases": 281.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.143, + "new_cases_per_million": 0.612, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-29", + "total_cases": 317.0, + "new_cases": 36.0, + "new_cases_smoothed": 22.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.93, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-30", + "total_cases": 329.0, + "new_cases": 12.0, + "new_cases_smoothed": 22.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.193, + "new_cases_per_million": 0.262, + "new_cases_smoothed_per_million": 0.481, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-05-31", + "total_cases": 413.0, + "new_cases": 84.0, + "new_cases_smoothed": 30.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.029, + "new_cases_per_million": 1.836, + "new_cases_smoothed_per_million": 0.671, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-01", + "total_cases": 458.0, + "new_cases": 45.0, + "new_cases_smoothed": 35.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.013, + "new_cases_per_million": 0.984, + "new_cases_smoothed_per_million": 0.768, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-02", + "total_cases": 457.0, + "new_cases": -1.0, + "new_cases_smoothed": 33.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.991, + "new_cases_per_million": -0.022, + "new_cases_smoothed_per_million": 0.734, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-03", + "total_cases": 489.0, + "new_cases": 32.0, + "new_cases_smoothed": 33.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.691, + "new_cases_per_million": 0.7, + "new_cases_smoothed_per_million": 0.737, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-06-04", + "total_cases": 507.0, + "new_cases": 18.0, + "new_cases_smoothed": 32.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.084, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.706, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-05", + "total_cases": 522.0, + "new_cases": 15.0, + "new_cases_smoothed": 29.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.412, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.64, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-06", + "total_cases": 557.0, + "new_cases": 35.0, + "new_cases_smoothed": 32.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.177, + "new_cases_per_million": 0.765, + "new_cases_smoothed_per_million": 0.712, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-07", + "total_cases": 593.0, + "new_cases": 36.0, + "new_cases_smoothed": 25.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.964, + "new_cases_per_million": 0.787, + "new_cases_smoothed_per_million": 0.562, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-08", + "total_cases": 616.0, + "new_cases": 23.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.467, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-09", + "total_cases": 646.0, + "new_cases": 30.0, + "new_cases_smoothed": 27.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.123, + "new_cases_per_million": 0.656, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-10", + "total_cases": 657.0, + "new_cases": 11.0, + "new_cases_smoothed": 24.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.363, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.525, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-11", + "total_cases": 665.0, + "new_cases": 8.0, + "new_cases_smoothed": 22.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.538, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-06-12", + "total_cases": 679.0, + "new_cases": 14.0, + "new_cases_smoothed": 22.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.844, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.49, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-13", + "total_cases": 685.0, + "new_cases": 6.0, + "new_cases_smoothed": 18.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.976, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.4, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-14", + "total_cases": 685.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.976, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-15", + "total_cases": 696.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.216, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.25, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-16", + "total_cases": 705.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.413, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-17", + "total_cases": 724.0, + "new_cases": 19.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.828, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-18", + "total_cases": 732.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.003, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-19", + "total_cases": 741.0, + "new_cases": 9.0, + "new_cases_smoothed": 8.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.2, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-20", + "total_cases": 755.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.506, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-21", + "total_cases": 755.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.219, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 84.26 + }, + { + "date": "2020-06-22", + "total_cases": 770.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.834, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.231, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-23", + "total_cases": 774.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.921, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-24", + "total_cases": 797.0, + "new_cases": 23.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.424, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-25", + "total_cases": 805.0, + "new_cases": 8.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.599, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-26", + "total_cases": 821.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.949, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.25, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-27", + "total_cases": 833.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.211, + "new_cases_per_million": 0.262, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-28", + "total_cases": 848.0, + "new_cases": 15.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.539, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.29, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-29", + "total_cases": 859.0, + "new_cases": 11.0, + "new_cases_smoothed": 12.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.78, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.278, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.04 + }, + { + "date": "2020-06-30", + "total_cases": 870.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.02, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.3, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2059.0, + "total_tests": 194872.0, + "total_tests_per_thousand": 4.26, + "new_tests_per_thousand": 0.045, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-01", + "total_cases": 889.0, + "new_cases": 19.0, + "new_cases_smoothed": 13.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.436, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.287, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-02", + "total_cases": 893.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.523, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.275, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3349.0, + "total_tests": 200179.0, + "total_tests_per_thousand": 4.376, + "new_tests_per_thousand": 0.073, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-03", + "total_cases": 902.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.72, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.253, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-04", + "total_cases": 911.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.916, + "new_cases_per_million": 0.197, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-05", + "total_cases": 927.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.266, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3103.0, + "total_tests": 210446.0, + "total_tests_per_thousand": 4.601, + "new_tests_per_thousand": 0.068, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-06", + "total_cases": 939.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.529, + "new_cases_per_million": 0.262, + "new_cases_smoothed_per_million": 0.25, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2414.0, + "total_tests": 212860.0, + "total_tests_per_thousand": 4.654, + "new_tests_per_thousand": 0.053, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-07", + "total_cases": 953.0, + "new_cases": 14.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 20.835, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.259, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3451.0, + "total_tests": 216311.0, + "total_tests_per_thousand": 4.729, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 3063.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 258.325, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-08", + "total_cases": 971.0, + "new_cases": 18.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.228, + "new_cases_per_million": 0.394, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3316.0, + "total_tests": 219627.0, + "total_tests_per_thousand": 4.802, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 3157.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 269.5, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-09", + "total_cases": 977.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.359, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.262, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2048.0, + "total_tests": 221675.0, + "total_tests_per_thousand": 4.846, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 3071.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 255.917, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 87.04 + }, + { + "date": "2020-07-10", + "total_cases": 1000.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.862, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2888.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 206.28599999999997, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-11", + "total_cases": 1006.0, + "new_cases": 6.0, + "new_cases_smoothed": 13.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.993, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2705.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 199.31599999999997, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-12", + "total_cases": 1013.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.146, + "new_cases_per_million": 0.153, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1702.0, + "total_tests": 228105.0, + "total_tests_per_thousand": 4.987, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 2523.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 205.36, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-13", + "total_cases": 1025.0, + "new_cases": 12.0, + "new_cases_smoothed": 12.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.409, + "new_cases_per_million": 0.262, + "new_cases_smoothed_per_million": 0.269, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2575.0, + "total_tests": 230680.0, + "total_tests_per_thousand": 5.043, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2546.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 207.233, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-14", + "total_cases": 1029.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.496, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2362.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 217.553, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-15", + "total_cases": 1040.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.737, + "new_cases_per_million": 0.24, + "new_cases_smoothed_per_million": 0.215, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2405.0, + "total_tests": 235015.0, + "total_tests_per_thousand": 5.138, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2198.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 222.986, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-16", + "total_cases": 1043.0, + "new_cases": 3.0, + "new_cases_smoothed": 9.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.802, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.206, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3696.0, + "total_tests": 238709.0, + "total_tests_per_thousand": 5.219, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 2433.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 258.045, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-07-17", + "total_cases": 1051.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.977, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.159, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2553.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 350.412, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-18", + "total_cases": 1056.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.087, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2672.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 374.08, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-19", + "total_cases": 1062.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.218, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.153, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2196.0, + "total_tests": 247646.0, + "total_tests_per_thousand": 5.414, + "new_tests_per_thousand": 0.048, + "new_tests_smoothed": 2792.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 398.85699999999997, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-20", + "total_cases": 1065.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.283, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2383.0, + "total_tests": 250029.0, + "total_tests_per_thousand": 5.466, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 2764.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 483.7, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-21", + "total_cases": 1069.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.371, + "new_cases_per_million": 0.087, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2098.0, + "total_tests": 252127.0, + "total_tests_per_thousand": 5.512, + "new_tests_per_thousand": 0.046, + "new_tests_smoothed": 2754.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 481.95, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-22", + "total_cases": 1072.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.436, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2128.0, + "total_tests": 254255.0, + "total_tests_per_thousand": 5.559, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 2749.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 601.344, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-23", + "total_cases": 1075.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.502, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1785.0, + "total_tests": 256040.0, + "total_tests_per_thousand": 5.598, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 2476.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 541.625, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-24", + "total_cases": 1075.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.502, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 2366.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 690.0830000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-25", + "total_cases": 1089.0, + "new_cases": 14.0, + "new_cases_smoothed": 4.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 23.808, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.103, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 1937.0, + "total_tests": 260465.0, + "total_tests_per_thousand": 5.694, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 2257.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 478.75800000000004, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-26", + "total_cases": 1103.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 24.114, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.128, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 1812.0, + "total_tests": 262277.0, + "total_tests_per_thousand": 5.734, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 2090.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 356.829, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 79.63 + }, + { + "date": "2020-07-27", + "total_cases": 1115.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.376, + "new_cases_per_million": 0.262, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1885.0, + "total_tests": 264162.0, + "total_tests_per_thousand": 5.775, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 2019.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 282.66, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-28", + "total_cases": 1128.0, + "new_cases": 13.0, + "new_cases_smoothed": 8.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.661, + "new_cases_per_million": 0.284, + "new_cases_smoothed_per_million": 0.184, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 2694.0, + "total_tests": 266856.0, + "total_tests_per_thousand": 5.834, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 2104.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 249.627, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-29", + "total_cases": 1135.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.814, + "new_cases_per_million": 0.153, + "new_cases_smoothed_per_million": 0.197, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 2225.0, + "new_tests_smoothed_per_thousand": 0.049, + "tests_per_case": 247.222, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-30", + "total_cases": 1140.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 24.923, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.203, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 3229.0, + "total_tests": 272805.0, + "total_tests_per_thousand": 5.964, + "new_tests_per_thousand": 0.071, + "new_tests_smoothed": 2395.0, + "new_tests_smoothed_per_thousand": 0.052, + "tests_per_case": 257.923, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-07-31", + "total_cases": 1147.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.076, + "new_cases_per_million": 0.153, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 2550.0, + "total_tests": 275355.0, + "total_tests_per_thousand": 6.02, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 2443.0, + "new_tests_smoothed_per_thousand": 0.053, + "tests_per_case": 237.514, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-01", + "total_cases": 1154.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.229, + "new_cases_per_million": 0.153, + "new_cases_smoothed_per_million": 0.203, + "total_deaths_per_million": 0.066, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.006, + "new_tests_smoothed": 2512.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 270.52299999999997, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-02", + "total_cases": 1176.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 25.71, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.087, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 2485.0, + "total_tests": 280747.0, + "total_tests_per_thousand": 6.138, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 2639.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 253.055, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-03", + "total_cases": 1182.0, + "new_cases": 6.0, + "new_cases_smoothed": 9.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.841, + "new_cases_per_million": 0.131, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 0.087, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1765.0, + "total_tests": 282512.0, + "total_tests_per_thousand": 6.176, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 2621.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 273.836, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-04", + "total_cases": 1195.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.125, + "new_cases_per_million": 0.284, + "new_cases_smoothed_per_million": 0.209, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 2278.0, + "total_tests": 284790.0, + "total_tests_per_thousand": 6.226, + "new_tests_per_thousand": 0.05, + "new_tests_smoothed": 2562.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 267.672, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-05", + "total_cases": 1203.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.714, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.3, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.212, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 3577.0, + "total_tests": 288367.0, + "total_tests_per_thousand": 6.304, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 2648.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 272.58799999999997, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-06", + "total_cases": 1213.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.519, + "new_cases_per_million": 0.219, + "new_cases_smoothed_per_million": 0.228, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 2334.0, + "total_tests": 290701.0, + "total_tests_per_thousand": 6.355, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 2557.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 245.192, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-07", + "total_cases": 1223.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 26.738, + "new_cases_per_million": 0.219, + "new_cases_smoothed_per_million": 0.237, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "new_tests_smoothed": 2614.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 240.763, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-08", + "total_cases": 1254.0, + "new_cases": 31.0, + "new_cases_smoothed": 14.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 27.415, + "new_cases_per_million": 0.678, + "new_cases_smoothed_per_million": 0.312, + "total_deaths_per_million": 0.131, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 3204.0, + "total_tests": 296601.0, + "total_tests_per_thousand": 6.484, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 2650.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 185.5, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-09", + "total_cases": 1267.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 27.699, + "new_cases_per_million": 0.284, + "new_cases_smoothed_per_million": 0.284, + "total_deaths_per_million": 0.131, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 2435.0, + "total_tests": 299036.0, + "total_tests_per_thousand": 6.538, + "new_tests_per_thousand": 0.053, + "new_tests_smoothed": 2613.0, + "new_tests_smoothed_per_thousand": 0.057, + "tests_per_case": 201.0, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 76.85 + }, + { + "date": "2020-08-10", + "total_cases": 1283.0, + "new_cases": 16.0, + "new_cases_smoothed": 14.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 28.049, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.315, + "total_deaths_per_million": 0.153, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 2250.0, + "total_tests": 301286.0, + "total_tests_per_thousand": 6.587, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 2682.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 185.88099999999997, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-11", + "total_cases": 1297.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.571, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 28.355, + "new_cases_per_million": 0.306, + "new_cases_smoothed_per_million": 0.319, + "total_deaths_per_million": 0.197, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 3199.0, + "total_tests": 304485.0, + "total_tests_per_thousand": 6.657, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 2814.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 193.118, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-12", + "total_cases": 1313.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 28.705, + "new_cases_per_million": 0.35, + "new_cases_smoothed_per_million": 0.344, + "total_deaths_per_million": 0.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 4108.0, + "total_tests": 308503.0, + "total_tests_per_thousand": 6.745, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 2877.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 183.082, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-13", + "total_cases": 1332.0, + "new_cases": 19.0, + "new_cases_smoothed": 17.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 29.12, + "new_cases_per_million": 0.415, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 4289.0, + "total_tests": 312792.0, + "total_tests_per_thousand": 6.838, + "new_tests_per_thousand": 0.094, + "new_tests_smoothed": 3156.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 185.64700000000002, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-14", + "total_cases": 1353.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 29.58, + "new_cases_per_million": 0.459, + "new_cases_smoothed_per_million": 0.406, + "total_deaths_per_million": 0.24, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 3346.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 180.169, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-15", + "total_cases": 1385.0, + "new_cases": 32.0, + "new_cases_smoothed": 18.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 30.279, + "new_cases_per_million": 0.7, + "new_cases_smoothed_per_million": 0.409, + "total_deaths_per_million": 0.262, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.019, + "new_tests_smoothed": 3536.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 188.947, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-16", + "total_cases": 1434.0, + "new_cases": 49.0, + "new_cases_smoothed": 23.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 31.35, + "new_cases_per_million": 1.071, + "new_cases_smoothed_per_million": 0.522, + "total_deaths_per_million": 0.284, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 4261.0, + "total_tests": 325637.0, + "total_tests_per_thousand": 7.119, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 3800.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 159.281, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-17", + "total_cases": 1500.0, + "new_cases": 66.0, + "new_cases_smoothed": 31.0, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 32.793, + "new_cases_per_million": 1.443, + "new_cases_smoothed_per_million": 0.678, + "total_deaths_per_million": 0.284, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3905.0, + "total_tests": 329542.0, + "total_tests_per_thousand": 7.205, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 4037.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 130.226, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-18", + "total_cases": 1560.0, + "new_cases": 60.0, + "new_cases_smoothed": 37.571, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 34.105, + "new_cases_per_million": 1.312, + "new_cases_smoothed_per_million": 0.821, + "total_deaths_per_million": 0.328, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 4125.0, + "total_tests": 333667.0, + "total_tests_per_thousand": 7.295, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 4169.0, + "new_tests_smoothed_per_thousand": 0.091, + "tests_per_case": 110.962, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-19", + "total_cases": 1603.0, + "new_cases": 43.0, + "new_cases_smoothed": 41.429, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 35.045, + "new_cases_per_million": 0.94, + "new_cases_smoothed_per_million": 0.906, + "total_deaths_per_million": 0.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3046.0, + "total_tests": 336713.0, + "total_tests_per_thousand": 7.361, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 4030.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 97.27600000000001, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-20", + "total_cases": 1603.0, + "new_cases": 0.0, + "new_cases_smoothed": 38.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 35.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.328, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 4131.0, + "total_tests": 340844.0, + "total_tests_per_thousand": 7.452, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 4007.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 103.50200000000001, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-21", + "total_cases": 1750.0, + "new_cases": 147.0, + "new_cases_smoothed": 56.714, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 38.259, + "new_cases_per_million": 3.214, + "new_cases_smoothed_per_million": 1.24, + "total_deaths_per_million": 0.415, + "new_deaths_per_million": 0.087, + "new_deaths_smoothed_per_million": 0.025, + "new_tests_smoothed": 3920.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 69.118, + "positive_rate": 0.013999999999999999, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-22", + "total_cases": 1848.0, + "new_cases": 98.0, + "new_cases_smoothed": 66.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 40.401, + "new_cases_per_million": 2.142, + "new_cases_smoothed_per_million": 1.446, + "total_deaths_per_million": 0.415, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests_smoothed": 3832.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 57.935, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-23", + "total_cases": 1848.0, + "new_cases": 0.0, + "new_cases_smoothed": 59.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 40.401, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.293, + "total_deaths_per_million": 0.415, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3457.0, + "total_tests": 351845.0, + "total_tests_per_thousand": 7.692, + "new_tests_per_thousand": 0.076, + "new_tests_smoothed": 3744.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 63.303999999999995, + "positive_rate": 0.016, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-24", + "total_cases": 2263.0, + "new_cases": 415.0, + "new_cases_smoothed": 109.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 49.474, + "new_cases_per_million": 9.073, + "new_cases_smoothed_per_million": 2.383, + "total_deaths_per_million": 0.415, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 3212.0, + "total_tests": 355057.0, + "total_tests_per_thousand": 7.762, + "new_tests_per_thousand": 0.07, + "new_tests_smoothed": 3645.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 33.44, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-25", + "total_cases": 2362.0, + "new_cases": 99.0, + "new_cases_smoothed": 114.571, + "total_deaths": 22.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 51.639, + "new_cases_per_million": 2.164, + "new_cases_smoothed_per_million": 2.505, + "total_deaths_per_million": 0.481, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 4232.0, + "total_tests": 359289.0, + "total_tests_per_thousand": 7.855, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 3660.0, + "new_tests_smoothed_per_thousand": 0.08, + "tests_per_case": 31.945, + "positive_rate": 0.031, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-26", + "total_cases": 2426.0, + "new_cases": 64.0, + "new_cases_smoothed": 117.571, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 53.038, + "new_cases_per_million": 1.399, + "new_cases_smoothed_per_million": 2.57, + "total_deaths_per_million": 0.547, + "new_deaths_per_million": 0.066, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 4513.0, + "total_tests": 363802.0, + "total_tests_per_thousand": 7.954, + "new_tests_per_thousand": 0.099, + "new_tests_smoothed": 3870.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 32.916, + "positive_rate": 0.03, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-27", + "total_cases": 2524.0, + "new_cases": 98.0, + "new_cases_smoothed": 131.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 55.18, + "new_cases_per_million": 2.142, + "new_cases_smoothed_per_million": 2.876, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 3621.0, + "total_tests": 367423.0, + "total_tests_per_thousand": 8.033, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 3797.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 28.859, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-28", + "total_cases": 2679.0, + "new_cases": 155.0, + "new_cases_smoothed": 132.714, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 58.569, + "new_cases_per_million": 3.389, + "new_cases_smoothed_per_million": 2.901, + "total_deaths_per_million": 0.612, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 3786.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 28.526999999999997, + "positive_rate": 0.035, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-29", + "total_cases": 2756.0, + "new_cases": 77.0, + "new_cases_smoothed": 129.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 60.252, + "new_cases_per_million": 1.683, + "new_cases_smoothed_per_million": 2.836, + "total_deaths_per_million": 0.612, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.028, + "new_tests_smoothed": 3774.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 29.095, + "positive_rate": 0.034, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-30", + "total_cases": 2847.0, + "new_cases": 91.0, + "new_cases_smoothed": 142.714, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 62.242, + "new_cases_per_million": 1.989, + "new_cases_smoothed_per_million": 3.12, + "total_deaths_per_million": 0.634, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 2397.0, + "total_tests": 378185.0, + "total_tests_per_thousand": 8.268, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 3763.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 26.366999999999997, + "positive_rate": 0.038, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-08-31", + "total_cases": 2928.0, + "new_cases": 81.0, + "new_cases_smoothed": 95.0, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 64.013, + "new_cases_per_million": 1.771, + "new_cases_smoothed_per_million": 2.077, + "total_deaths_per_million": 0.656, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.034, + "new_tests": 3564.0, + "total_tests": 381749.0, + "total_tests_per_thousand": 8.346, + "new_tests_per_thousand": 0.078, + "new_tests_smoothed": 3813.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 40.137, + "positive_rate": 0.025, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-09-01", + "total_cases": 2972.0, + "new_cases": 44.0, + "new_cases_smoothed": 87.143, + "total_deaths": 32.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 64.975, + "new_cases_per_million": 0.962, + "new_cases_smoothed_per_million": 1.905, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.031, + "new_tests": 4133.0, + "total_tests": 385882.0, + "total_tests_per_thousand": 8.436, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 3799.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 43.595, + "positive_rate": 0.023, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-09-02", + "total_cases": 3037.0, + "new_cases": 65.0, + "new_cases_smoothed": 87.286, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 66.396, + "new_cases_per_million": 1.421, + "new_cases_smoothed_per_million": 1.908, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.022, + "new_tests": 5453.0, + "total_tests": 391335.0, + "total_tests_per_thousand": 8.555, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 3933.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 45.059, + "positive_rate": 0.022000000000000002, + "tests_units": "samples tested", + "stringency_index": 81.48 + }, + { + "date": "2020-09-03", + "total_cases": 3112.0, + "new_cases": 75.0, + "new_cases_smoothed": 84.0, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 68.035, + "new_cases_per_million": 1.64, + "new_cases_smoothed_per_million": 1.836, + "total_deaths_per_million": 0.7, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 81.48 + }, + { + "date": "2020-09-04", + "total_cases": 3288.0, + "new_cases": 176.0, + "new_cases_smoothed": 87.0, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 71.883, + "new_cases_per_million": 3.848, + "new_cases_smoothed_per_million": 1.902, + "total_deaths_per_million": 0.721, + "new_deaths_per_million": 0.022, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-09-05", + "total_cases": 3353.0, + "new_cases": 65.0, + "new_cases_smoothed": 85.286, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 73.304, + "new_cases_per_million": 1.421, + "new_cases_smoothed_per_million": 1.865, + "total_deaths_per_million": 0.765, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.022 + } + ] + }, + "UKR": { + "continent": "Europe", + "location": "Ukraine", + "population": 43733759.0, + "population_density": 77.39, + "median_age": 41.4, + "aged_65_older": 16.462, + "aged_70_older": 11.133, + "gdp_per_capita": 7894.393, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 539.849, + "diabetes_prevalence": 7.11, + "female_smokers": 13.5, + "male_smokers": 47.4, + "hospital_beds_per_thousand": 8.8, + "life_expectancy": 72.06, + "data": [ + { + "date": "2020-03-04", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.023, + "new_cases_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-13", + "total_cases": 3.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.286, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.0 + }, + { + "date": "2020-03-16", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.81 + }, + { + "date": "2020-03-17", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.114, + "new_cases_per_million": 0.046, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 77.78 + }, + { + "date": "2020-03-18", + "total_cases": 14.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.32, + "new_cases_per_million": 0.206, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-03-19", + "total_cases": 19.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.434, + "new_cases_per_million": 0.114, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 88.89 + }, + { + "date": "2020-03-20", + "total_cases": 26.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.595, + "new_cases_per_million": 0.16, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 88.89 + }, + { + "date": "2020-03-21", + "total_cases": 26.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.595, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-22", + "total_cases": 41.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.937, + "new_cases_per_million": 0.343, + "new_cases_smoothed_per_million": 0.124, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-23", + "total_cases": 47.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.075, + "new_cases_per_million": 0.137, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-24", + "total_cases": 73.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.669, + "new_cases_per_million": 0.595, + "new_cases_smoothed_per_million": 0.222, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-25", + "total_cases": 84.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 1.921, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 0.229, + "total_deaths_per_million": 0.069, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-26", + "total_cases": 113.0, + "new_cases": 29.0, + "new_cases_smoothed": 13.429, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 2.584, + "new_cases_per_million": 0.663, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 88.89 + }, + { + "date": "2020-03-27", + "total_cases": 156.0, + "new_cases": 43.0, + "new_cases_smoothed": 18.571, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 3.567, + "new_cases_per_million": 0.983, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 88.89 + }, + { + "date": "2020-03-28", + "total_cases": 218.0, + "new_cases": 62.0, + "new_cases_smoothed": 27.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.985, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 0.627, + "total_deaths_per_million": 0.114, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 88.89 + }, + { + "date": "2020-03-29", + "total_cases": 311.0, + "new_cases": 93.0, + "new_cases_smoothed": 38.571, + "total_deaths": 8.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 7.111, + "new_cases_per_million": 2.127, + "new_cases_smoothed_per_million": 0.882, + "total_deaths_per_million": 0.183, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 88.89 + }, + { + "date": "2020-03-30", + "total_cases": 418.0, + "new_cases": 107.0, + "new_cases_smoothed": 53.0, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 9.558, + "new_cases_per_million": 2.447, + "new_cases_smoothed_per_million": 1.212, + "total_deaths_per_million": 0.206, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 88.89 + }, + { + "date": "2020-03-31", + "total_cases": 480.0, + "new_cases": 62.0, + "new_cases_smoothed": 58.143, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.976, + "new_cases_per_million": 1.418, + "new_cases_smoothed_per_million": 1.329, + "total_deaths_per_million": 0.252, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.026, + "stringency_index": 88.89 + }, + { + "date": "2020-04-01", + "total_cases": 549.0, + "new_cases": 69.0, + "new_cases_smoothed": 66.429, + "total_deaths": 13.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 12.553, + "new_cases_per_million": 1.578, + "new_cases_smoothed_per_million": 1.519, + "total_deaths_per_million": 0.297, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.033, + "stringency_index": 88.89 + }, + { + "date": "2020-04-02", + "total_cases": 794.0, + "new_cases": 245.0, + "new_cases_smoothed": 97.286, + "total_deaths": 20.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 18.155, + "new_cases_per_million": 5.602, + "new_cases_smoothed_per_million": 2.224, + "total_deaths_per_million": 0.457, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.052, + "stringency_index": 88.89 + }, + { + "date": "2020-04-03", + "total_cases": 897.0, + "new_cases": 103.0, + "new_cases_smoothed": 105.857, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 20.51, + "new_cases_per_million": 2.355, + "new_cases_smoothed_per_million": 2.42, + "total_deaths_per_million": 0.503, + "new_deaths_per_million": 0.046, + "new_deaths_smoothed_per_million": 0.056, + "stringency_index": 88.89 + }, + { + "date": "2020-04-04", + "total_cases": 1072.0, + "new_cases": 175.0, + "new_cases_smoothed": 122.0, + "total_deaths": 27.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 24.512, + "new_cases_per_million": 4.001, + "new_cases_smoothed_per_million": 2.79, + "total_deaths_per_million": 0.617, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 88.89 + }, + { + "date": "2020-04-05", + "total_cases": 1225.0, + "new_cases": 153.0, + "new_cases_smoothed": 130.571, + "total_deaths": 32.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 28.01, + "new_cases_per_million": 3.498, + "new_cases_smoothed_per_million": 2.986, + "total_deaths_per_million": 0.732, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 88.89 + }, + { + "date": "2020-04-06", + "total_cases": 1308.0, + "new_cases": 83.0, + "new_cases_smoothed": 127.143, + "total_deaths": 37.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 29.908, + "new_cases_per_million": 1.898, + "new_cases_smoothed_per_million": 2.907, + "total_deaths_per_million": 0.846, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 88.89 + }, + { + "date": "2020-04-07", + "total_cases": 1319.0, + "new_cases": 11.0, + "new_cases_smoothed": 119.857, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 30.16, + "new_cases_per_million": 0.252, + "new_cases_smoothed_per_million": 2.741, + "total_deaths_per_million": 0.869, + "new_deaths_per_million": 0.023, + "new_deaths_smoothed_per_million": 0.088, + "stringency_index": 88.89 + }, + { + "date": "2020-04-08", + "total_cases": 1462.0, + "new_cases": 143.0, + "new_cases_smoothed": 130.429, + "total_deaths": 45.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 33.43, + "new_cases_per_million": 3.27, + "new_cases_smoothed_per_million": 2.982, + "total_deaths_per_million": 1.029, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 88.89 + }, + { + "date": "2020-04-09", + "total_cases": 1668.0, + "new_cases": 206.0, + "new_cases_smoothed": 124.857, + "total_deaths": 52.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 38.14, + "new_cases_per_million": 4.71, + "new_cases_smoothed_per_million": 2.855, + "total_deaths_per_million": 1.189, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.105, + "total_tests": 20608.0, + "total_tests_per_thousand": 0.471, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-10", + "total_cases": 1892.0, + "new_cases": 224.0, + "new_cases_smoothed": 142.143, + "total_deaths": 57.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 43.262, + "new_cases_per_million": 5.122, + "new_cases_smoothed_per_million": 3.25, + "total_deaths_per_million": 1.303, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.114, + "new_tests": 2914.0, + "total_tests": 23522.0, + "total_tests_per_thousand": 0.538, + "new_tests_per_thousand": 0.067, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-11", + "total_cases": 2203.0, + "new_cases": 311.0, + "new_cases_smoothed": 161.571, + "total_deaths": 69.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 50.373, + "new_cases_per_million": 7.111, + "new_cases_smoothed_per_million": 3.694, + "total_deaths_per_million": 1.578, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.137, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-12", + "total_cases": 2511.0, + "new_cases": 308.0, + "new_cases_smoothed": 183.714, + "total_deaths": 73.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 57.416, + "new_cases_per_million": 7.043, + "new_cases_smoothed_per_million": 4.201, + "total_deaths_per_million": 1.669, + "new_deaths_per_million": 0.091, + "new_deaths_smoothed_per_million": 0.134, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-13", + "total_cases": 2777.0, + "new_cases": 266.0, + "new_cases_smoothed": 209.857, + "total_deaths": 83.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 63.498, + "new_cases_per_million": 6.082, + "new_cases_smoothed_per_million": 4.799, + "total_deaths_per_million": 1.898, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.15, + "total_tests": 35153.0, + "total_tests_per_thousand": 0.804, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-14", + "total_cases": 3102.0, + "new_cases": 325.0, + "new_cases_smoothed": 254.714, + "total_deaths": 93.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 70.929, + "new_cases_per_million": 7.431, + "new_cases_smoothed_per_million": 5.824, + "total_deaths_per_million": 2.127, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.18, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-15", + "total_cases": 3372.0, + "new_cases": 270.0, + "new_cases_smoothed": 272.857, + "total_deaths": 98.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 77.103, + "new_cases_per_million": 6.174, + "new_cases_smoothed_per_million": 6.239, + "total_deaths_per_million": 2.241, + "new_deaths_per_million": 0.114, + "new_deaths_smoothed_per_million": 0.173, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-16", + "total_cases": 3764.0, + "new_cases": 392.0, + "new_cases_smoothed": 299.429, + "total_deaths": 108.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 86.066, + "new_cases_per_million": 8.963, + "new_cases_smoothed_per_million": 6.847, + "total_deaths_per_million": 2.469, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.183, + "total_tests": 42823.0, + "total_tests_per_thousand": 0.979, + "new_tests_smoothed": 3174.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 10.6, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-17", + "total_cases": 4161.0, + "new_cases": 397.0, + "new_cases_smoothed": 324.143, + "total_deaths": 116.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 95.144, + "new_cases_per_million": 9.078, + "new_cases_smoothed_per_million": 7.412, + "total_deaths_per_million": 2.652, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.193, + "new_tests": 4273.0, + "total_tests": 47096.0, + "total_tests_per_thousand": 1.077, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 3368.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 10.39, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-18", + "total_cases": 4462.0, + "new_cases": 301.0, + "new_cases_smoothed": 322.714, + "total_deaths": 125.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 102.026, + "new_cases_per_million": 6.883, + "new_cases_smoothed_per_million": 7.379, + "total_deaths_per_million": 2.858, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.183, + "new_tests_smoothed": 3529.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 10.935, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-19", + "total_cases": 5106.0, + "new_cases": 644.0, + "new_cases_smoothed": 370.714, + "total_deaths": 133.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 116.752, + "new_cases_per_million": 14.725, + "new_cases_smoothed_per_million": 8.477, + "total_deaths_per_million": 3.041, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.196, + "total_tests": 57111.0, + "total_tests_per_thousand": 1.306, + "new_tests_smoothed": 3691.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 9.956, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-20", + "total_cases": 5449.0, + "new_cases": 343.0, + "new_cases_smoothed": 381.714, + "total_deaths": 141.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 124.595, + "new_cases_per_million": 7.843, + "new_cases_smoothed_per_million": 8.728, + "total_deaths_per_million": 3.224, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.189, + "new_tests_smoothed": 3679.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 9.638, + "positive_rate": 0.10400000000000001, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-21", + "total_cases": 5710.0, + "new_cases": 261.0, + "new_cases_smoothed": 372.571, + "total_deaths": 151.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 130.563, + "new_cases_per_million": 5.968, + "new_cases_smoothed_per_million": 8.519, + "total_deaths_per_million": 3.453, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.189, + "new_tests_smoothed": 3856.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 10.35, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-22", + "total_cases": 6125.0, + "new_cases": 415.0, + "new_cases_smoothed": 393.286, + "total_deaths": 161.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 140.052, + "new_cases_per_million": 9.489, + "new_cases_smoothed_per_million": 8.993, + "total_deaths_per_million": 3.681, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.206, + "new_tests_smoothed": 4033.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 10.255, + "positive_rate": 0.098, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-23", + "total_cases": 6592.0, + "new_cases": 467.0, + "new_cases_smoothed": 404.0, + "total_deaths": 174.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 150.73, + "new_cases_per_million": 10.678, + "new_cases_smoothed_per_million": 9.238, + "total_deaths_per_million": 3.979, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.216, + "total_tests": 72296.0, + "total_tests_per_thousand": 1.653, + "new_tests_smoothed": 4210.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 10.421, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-24", + "total_cases": 7170.0, + "new_cases": 578.0, + "new_cases_smoothed": 429.857, + "total_deaths": 187.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 163.947, + "new_cases_per_million": 13.216, + "new_cases_smoothed_per_million": 9.829, + "total_deaths_per_million": 4.276, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.232, + "new_tests_smoothed": 4413.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 10.265999999999998, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-25", + "total_cases": 7647.0, + "new_cases": 477.0, + "new_cases_smoothed": 455.0, + "total_deaths": 193.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 174.853, + "new_cases_per_million": 10.907, + "new_cases_smoothed_per_million": 10.404, + "total_deaths_per_million": 4.413, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.222, + "new_tests_smoothed": 4511.0, + "new_tests_smoothed_per_thousand": 0.103, + "tests_per_case": 9.914, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-26", + "total_cases": 8125.0, + "new_cases": 478.0, + "new_cases_smoothed": 431.286, + "total_deaths": 201.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 185.783, + "new_cases_per_million": 10.93, + "new_cases_smoothed_per_million": 9.862, + "total_deaths_per_million": 4.596, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.222, + "total_tests": 89373.0, + "total_tests_per_thousand": 2.044, + "new_tests_smoothed": 4609.0, + "new_tests_smoothed_per_thousand": 0.105, + "tests_per_case": 10.687000000000001, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-27", + "total_cases": 8617.0, + "new_cases": 492.0, + "new_cases_smoothed": 452.571, + "total_deaths": 209.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 197.033, + "new_cases_per_million": 11.25, + "new_cases_smoothed_per_million": 10.348, + "total_deaths_per_million": 4.779, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.222, + "new_tests": 4146.0, + "total_tests": 93519.0, + "total_tests_per_thousand": 2.138, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 4659.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 10.295, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-28", + "total_cases": 9009.0, + "new_cases": 392.0, + "new_cases_smoothed": 471.286, + "total_deaths": 220.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.857, + "total_cases_per_million": 205.996, + "new_cases_per_million": 8.963, + "new_cases_smoothed_per_million": 10.776, + "total_deaths_per_million": 5.03, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.225, + "new_tests": 5200.0, + "total_tests": 98719.0, + "total_tests_per_thousand": 2.257, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 4859.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 10.31, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-29", + "total_cases": 9410.0, + "new_cases": 401.0, + "new_cases_smoothed": 469.286, + "total_deaths": 239.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 215.166, + "new_cases_per_million": 9.169, + "new_cases_smoothed_per_million": 10.731, + "total_deaths_per_million": 5.465, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 5825.0, + "total_tests": 104544.0, + "total_tests_per_thousand": 2.39, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 5149.0, + "new_tests_smoothed_per_thousand": 0.118, + "tests_per_case": 10.972000000000001, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-04-30", + "total_cases": 9866.0, + "new_cases": 456.0, + "new_cases_smoothed": 467.714, + "total_deaths": 250.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 225.592, + "new_cases_per_million": 10.427, + "new_cases_smoothed_per_million": 10.695, + "total_deaths_per_million": 5.716, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.248, + "new_tests": 7315.0, + "total_tests": 111859.0, + "total_tests_per_thousand": 2.558, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 5652.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 12.084000000000001, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-01", + "total_cases": 10406.0, + "new_cases": 540.0, + "new_cases_smoothed": 462.286, + "total_deaths": 261.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 237.94, + "new_cases_per_million": 12.347, + "new_cases_smoothed_per_million": 10.57, + "total_deaths_per_million": 5.968, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.242, + "new_tests": 6686.0, + "total_tests": 118545.0, + "total_tests_per_thousand": 2.711, + "new_tests_per_thousand": 0.153, + "new_tests_smoothed": 5794.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 12.533, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-02", + "total_cases": 10861.0, + "new_cases": 455.0, + "new_cases_smoothed": 459.143, + "total_deaths": 272.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 248.344, + "new_cases_per_million": 10.404, + "new_cases_smoothed_per_million": 10.499, + "total_deaths_per_million": 6.219, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 4207.0, + "total_tests": 122752.0, + "total_tests_per_thousand": 2.807, + "new_tests_per_thousand": 0.096, + "new_tests_smoothed": 5582.0, + "new_tests_smoothed_per_thousand": 0.128, + "tests_per_case": 12.157, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-03", + "total_cases": 11411.0, + "new_cases": 550.0, + "new_cases_smoothed": 469.429, + "total_deaths": 279.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 260.92, + "new_cases_per_million": 12.576, + "new_cases_smoothed_per_million": 10.734, + "total_deaths_per_million": 6.38, + "new_deaths_per_million": 0.16, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 6971.0, + "total_tests": 129723.0, + "total_tests_per_thousand": 2.966, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 5764.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 12.279000000000002, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-04", + "total_cases": 11913.0, + "new_cases": 502.0, + "new_cases_smoothed": 470.857, + "total_deaths": 288.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 272.398, + "new_cases_per_million": 11.479, + "new_cases_smoothed_per_million": 10.766, + "total_deaths_per_million": 6.585, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 4869.0, + "total_tests": 134592.0, + "total_tests_per_thousand": 3.078, + "new_tests_per_thousand": 0.111, + "new_tests_smoothed": 5868.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 12.462, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-05", + "total_cases": 12331.0, + "new_cases": 418.0, + "new_cases_smoothed": 474.571, + "total_deaths": 303.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 281.956, + "new_cases_per_million": 9.558, + "new_cases_smoothed_per_million": 10.851, + "total_deaths_per_million": 6.928, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 5167.0, + "total_tests": 139759.0, + "total_tests_per_thousand": 3.196, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 5863.0, + "new_tests_smoothed_per_thousand": 0.134, + "tests_per_case": 12.354000000000001, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-06", + "total_cases": 12697.0, + "new_cases": 366.0, + "new_cases_smoothed": 469.571, + "total_deaths": 316.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 290.325, + "new_cases_per_million": 8.369, + "new_cases_smoothed_per_million": 10.737, + "total_deaths_per_million": 7.226, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 4524.0, + "total_tests": 144283.0, + "total_tests_per_thousand": 3.299, + "new_tests_per_thousand": 0.103, + "new_tests_smoothed": 5677.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 12.09, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-07", + "total_cases": 13184.0, + "new_cases": 487.0, + "new_cases_smoothed": 474.0, + "total_deaths": 327.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 301.46, + "new_cases_per_million": 11.136, + "new_cases_smoothed_per_million": 10.838, + "total_deaths_per_million": 7.477, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 7286.0, + "total_tests": 151569.0, + "total_tests_per_thousand": 3.466, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 5673.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 11.968, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-08", + "total_cases": 13691.0, + "new_cases": 507.0, + "new_cases_smoothed": 469.286, + "total_deaths": 340.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 313.053, + "new_cases_per_million": 11.593, + "new_cases_smoothed_per_million": 10.731, + "total_deaths_per_million": 7.774, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 7586.0, + "total_tests": 159155.0, + "total_tests_per_thousand": 3.639, + "new_tests_per_thousand": 0.173, + "new_tests_smoothed": 5801.0, + "new_tests_smoothed_per_thousand": 0.133, + "tests_per_case": 12.360999999999999, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 14195.0, + "new_cases": 504.0, + "new_cases_smoothed": 476.286, + "total_deaths": 361.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 324.578, + "new_cases_per_million": 11.524, + "new_cases_smoothed_per_million": 10.891, + "total_deaths_per_million": 8.254, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.291, + "new_tests": 7952.0, + "total_tests": 167107.0, + "total_tests_per_thousand": 3.821, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 6336.0, + "new_tests_smoothed_per_thousand": 0.145, + "tests_per_case": 13.302999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 14710.0, + "new_cases": 515.0, + "new_cases_smoothed": 471.286, + "total_deaths": 376.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 13.857, + "total_cases_per_million": 336.353, + "new_cases_per_million": 11.776, + "new_cases_smoothed_per_million": 10.776, + "total_deaths_per_million": 8.597, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 9296.0, + "total_tests": 176403.0, + "total_tests_per_thousand": 4.034, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 6669.0, + "new_tests_smoothed_per_thousand": 0.152, + "tests_per_case": 14.151, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 15232.0, + "new_cases": 522.0, + "new_cases_smoothed": 474.143, + "total_deaths": 391.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 348.289, + "new_cases_per_million": 11.936, + "new_cases_smoothed_per_million": 10.842, + "total_deaths_per_million": 8.94, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 5149.0, + "total_tests": 181552.0, + "total_tests_per_thousand": 4.151, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 6709.0, + "new_tests_smoothed_per_thousand": 0.153, + "tests_per_case": 14.15, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-12", + "total_cases": 15648.0, + "new_cases": 416.0, + "new_cases_smoothed": 473.857, + "total_deaths": 408.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 357.801, + "new_cases_per_million": 9.512, + "new_cases_smoothed_per_million": 10.835, + "total_deaths_per_million": 9.329, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 5755.0, + "total_tests": 187307.0, + "total_tests_per_thousand": 4.283, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 6793.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 14.335999999999999, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-13", + "total_cases": 16023.0, + "new_cases": 375.0, + "new_cases_smoothed": 475.143, + "total_deaths": 425.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 366.376, + "new_cases_per_million": 8.575, + "new_cases_smoothed_per_million": 10.864, + "total_deaths_per_million": 9.718, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 4940.0, + "total_tests": 192247.0, + "total_tests_per_thousand": 4.396, + "new_tests_per_thousand": 0.113, + "new_tests_smoothed": 6852.0, + "new_tests_smoothed_per_thousand": 0.157, + "tests_per_case": 14.421, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-14", + "total_cases": 16425.0, + "new_cases": 402.0, + "new_cases_smoothed": 463.0, + "total_deaths": 439.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 375.568, + "new_cases_per_million": 9.192, + "new_cases_smoothed_per_million": 10.587, + "total_deaths_per_million": 10.038, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.366, + "new_tests": 10248.0, + "total_tests": 202495.0, + "total_tests_per_thousand": 4.63, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 7275.0, + "new_tests_smoothed_per_thousand": 0.166, + "tests_per_case": 15.713, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-15", + "total_cases": 16847.0, + "new_cases": 422.0, + "new_cases_smoothed": 450.857, + "total_deaths": 456.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 385.217, + "new_cases_per_million": 9.649, + "new_cases_smoothed_per_million": 10.309, + "total_deaths_per_million": 10.427, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 9119.0, + "total_tests": 211614.0, + "total_tests_per_thousand": 4.839, + "new_tests_per_thousand": 0.209, + "new_tests_smoothed": 7494.0, + "new_tests_smoothed_per_thousand": 0.171, + "tests_per_case": 16.622, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-16", + "total_cases": 17330.0, + "new_cases": 483.0, + "new_cases_smoothed": 447.857, + "total_deaths": 476.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 396.261, + "new_cases_per_million": 11.044, + "new_cases_smoothed_per_million": 10.241, + "total_deaths_per_million": 10.884, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 9024.0, + "total_tests": 220638.0, + "total_tests_per_thousand": 5.045, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 7647.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 17.075, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-17", + "total_cases": 17858.0, + "new_cases": 528.0, + "new_cases_smoothed": 449.714, + "total_deaths": 497.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 408.334, + "new_cases_per_million": 12.073, + "new_cases_smoothed_per_million": 10.283, + "total_deaths_per_million": 11.364, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 7163.0, + "total_tests": 227801.0, + "total_tests_per_thousand": 5.209, + "new_tests_per_thousand": 0.164, + "new_tests_smoothed": 7343.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 16.328, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-18", + "total_cases": 18291.0, + "new_cases": 433.0, + "new_cases_smoothed": 437.0, + "total_deaths": 514.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 418.235, + "new_cases_per_million": 9.901, + "new_cases_smoothed_per_million": 9.992, + "total_deaths_per_million": 11.753, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.402, + "new_tests": 5098.0, + "total_tests": 232899.0, + "total_tests_per_thousand": 5.325, + "new_tests_per_thousand": 0.117, + "new_tests_smoothed": 7335.0, + "new_tests_smoothed_per_thousand": 0.168, + "tests_per_case": 16.785, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-19", + "total_cases": 18616.0, + "new_cases": 325.0, + "new_cases_smoothed": 424.0, + "total_deaths": 535.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 425.667, + "new_cases_per_million": 7.431, + "new_cases_smoothed_per_million": 9.695, + "total_deaths_per_million": 12.233, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.415, + "new_tests": 7062.0, + "total_tests": 239961.0, + "total_tests_per_thousand": 5.487, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 7522.0, + "new_tests_smoothed_per_thousand": 0.172, + "tests_per_case": 17.741, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-20", + "total_cases": 18876.0, + "new_cases": 260.0, + "new_cases_smoothed": 407.571, + "total_deaths": 548.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 431.612, + "new_cases_per_million": 5.945, + "new_cases_smoothed_per_million": 9.319, + "total_deaths_per_million": 12.53, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.402, + "new_tests": 8568.0, + "total_tests": 248529.0, + "total_tests_per_thousand": 5.683, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 8040.0, + "new_tests_smoothed_per_thousand": 0.184, + "tests_per_case": 19.727, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-21", + "total_cases": 19230.0, + "new_cases": 354.0, + "new_cases_smoothed": 400.714, + "total_deaths": 564.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.857, + "total_cases_per_million": 439.706, + "new_cases_per_million": 8.094, + "new_cases_smoothed_per_million": 9.163, + "total_deaths_per_million": 12.896, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.408, + "new_tests_smoothed": 7909.0, + "new_tests_smoothed_per_thousand": 0.181, + "tests_per_case": 19.737000000000002, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 88.89 + }, + { + "date": "2020-05-22", + "total_cases": 19706.0, + "new_cases": 476.0, + "new_cases_smoothed": 408.429, + "total_deaths": 579.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 450.59, + "new_cases_per_million": 10.884, + "new_cases_smoothed_per_million": 9.339, + "total_deaths_per_million": 13.239, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.402, + "total_tests": 267185.0, + "total_tests_per_thousand": 6.109, + "new_tests_smoothed": 7939.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 19.438, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-23", + "total_cases": 20148.0, + "new_cases": 442.0, + "new_cases_smoothed": 402.571, + "total_deaths": 588.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 460.697, + "new_cases_per_million": 10.107, + "new_cases_smoothed_per_million": 9.205, + "total_deaths_per_million": 13.445, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.366, + "new_tests": 10527.0, + "total_tests": 277712.0, + "total_tests_per_thousand": 6.35, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 8153.0, + "new_tests_smoothed_per_thousand": 0.186, + "tests_per_case": 20.252, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-24", + "total_cases": 20580.0, + "new_cases": 432.0, + "new_cases_smoothed": 388.857, + "total_deaths": 605.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 470.575, + "new_cases_per_million": 9.878, + "new_cases_smoothed_per_million": 8.891, + "total_deaths_per_million": 13.834, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 7914.0, + "total_tests": 285626.0, + "total_tests_per_thousand": 6.531, + "new_tests_per_thousand": 0.181, + "new_tests_smoothed": 8261.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 21.244, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 83.33 + }, + { + "date": "2020-05-25", + "total_cases": 20986.0, + "new_cases": 406.0, + "new_cases_smoothed": 385.0, + "total_deaths": 617.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 479.858, + "new_cases_per_million": 9.283, + "new_cases_smoothed_per_million": 8.803, + "total_deaths_per_million": 14.108, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 6242.0, + "total_tests": 291868.0, + "total_tests_per_thousand": 6.674, + "new_tests_per_thousand": 0.143, + "new_tests_smoothed": 8424.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 21.881, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-26", + "total_cases": 21245.0, + "new_cases": 259.0, + "new_cases_smoothed": 375.571, + "total_deaths": 623.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 485.78, + "new_cases_per_million": 5.922, + "new_cases_smoothed_per_million": 8.588, + "total_deaths_per_million": 14.245, + "new_deaths_per_million": 0.137, + "new_deaths_smoothed_per_million": 0.287, + "new_tests": 9868.0, + "total_tests": 301736.0, + "total_tests_per_thousand": 6.899, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 8825.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 23.498, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-27", + "total_cases": 21584.0, + "new_cases": 339.0, + "new_cases_smoothed": 386.857, + "total_deaths": 644.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 493.532, + "new_cases_per_million": 7.751, + "new_cases_smoothed_per_million": 8.846, + "total_deaths_per_million": 14.725, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.314, + "new_tests": 10796.0, + "total_tests": 312532.0, + "total_tests_per_thousand": 7.146, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 9143.0, + "new_tests_smoothed_per_thousand": 0.209, + "tests_per_case": 23.634, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-28", + "total_cases": 21905.0, + "new_cases": 321.0, + "new_cases_smoothed": 382.143, + "total_deaths": 658.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 500.872, + "new_cases_per_million": 7.34, + "new_cases_smoothed_per_million": 8.738, + "total_deaths_per_million": 15.046, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.307, + "new_tests": 10214.0, + "total_tests": 322746.0, + "total_tests_per_thousand": 7.38, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 9270.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 24.258000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-29", + "total_cases": 22382.0, + "new_cases": 477.0, + "new_cases_smoothed": 382.286, + "total_deaths": 669.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.857, + "total_cases_per_million": 511.779, + "new_cases_per_million": 10.907, + "new_cases_smoothed_per_million": 8.741, + "total_deaths_per_million": 15.297, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.294, + "new_tests": 14572.0, + "total_tests": 337318.0, + "total_tests_per_thousand": 7.713, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 10019.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 26.208000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-30", + "total_cases": 22811.0, + "new_cases": 429.0, + "new_cases_smoothed": 380.429, + "total_deaths": 679.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 521.588, + "new_cases_per_million": 9.809, + "new_cases_smoothed_per_million": 8.699, + "total_deaths_per_million": 15.526, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.297, + "new_tests": 10961.0, + "total_tests": 348279.0, + "total_tests_per_thousand": 7.964, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 10081.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 26.499000000000002, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-31", + "total_cases": 23204.0, + "new_cases": 393.0, + "new_cases_smoothed": 374.857, + "total_deaths": 696.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 530.574, + "new_cases_per_million": 8.986, + "new_cases_smoothed_per_million": 8.571, + "total_deaths_per_million": 15.914, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.297, + "new_tests_smoothed": 9515.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 25.383000000000003, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-06-01", + "total_cases": 23672.0, + "new_cases": 468.0, + "new_cases_smoothed": 383.714, + "total_deaths": 708.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 541.275, + "new_cases_per_million": 10.701, + "new_cases_smoothed_per_million": 8.774, + "total_deaths_per_million": 16.189, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.297, + "total_tests": 356187.0, + "total_tests_per_thousand": 8.144, + "new_tests_smoothed": 9188.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 23.945, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-02", + "total_cases": 24012.0, + "new_cases": 340.0, + "new_cases_smoothed": 395.286, + "total_deaths": 718.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 13.571, + "total_cases_per_million": 549.05, + "new_cases_per_million": 7.774, + "new_cases_smoothed_per_million": 9.038, + "total_deaths_per_million": 16.418, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.31, + "new_tests": 15481.0, + "total_tests": 371668.0, + "total_tests_per_thousand": 8.498, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 9990.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 25.273000000000003, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-03", + "total_cases": 24340.0, + "new_cases": 328.0, + "new_cases_smoothed": 393.714, + "total_deaths": 727.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 556.549, + "new_cases_per_million": 7.5, + "new_cases_smoothed_per_million": 9.003, + "total_deaths_per_million": 16.623, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 9884.0, + "total_tests": 381552.0, + "total_tests_per_thousand": 8.724, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 9860.0, + "new_tests_smoothed_per_thousand": 0.225, + "tests_per_case": 25.044, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-04", + "total_cases": 24823.0, + "new_cases": 483.0, + "new_cases_smoothed": 416.857, + "total_deaths": 735.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 567.594, + "new_cases_per_million": 11.044, + "new_cases_smoothed_per_million": 9.532, + "total_deaths_per_million": 16.806, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.252, + "new_tests": 10764.0, + "total_tests": 392316.0, + "total_tests_per_thousand": 8.971, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 9939.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 23.843000000000004, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-05", + "total_cases": 25411.0, + "new_cases": 588.0, + "new_cases_smoothed": 432.714, + "total_deaths": 747.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 581.039, + "new_cases_per_million": 13.445, + "new_cases_smoothed_per_million": 9.894, + "total_deaths_per_million": 17.081, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.255, + "new_tests": 11235.0, + "total_tests": 403551.0, + "total_tests_per_thousand": 9.227, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 9462.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 21.866999999999997, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-06", + "total_cases": 25964.0, + "new_cases": 553.0, + "new_cases_smoothed": 450.429, + "total_deaths": 762.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 593.683, + "new_cases_per_million": 12.645, + "new_cases_smoothed_per_million": 10.299, + "total_deaths_per_million": 17.424, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 10991.0, + "total_tests": 414542.0, + "total_tests_per_thousand": 9.479, + "new_tests_per_thousand": 0.251, + "new_tests_smoothed": 9466.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 21.016, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-07", + "total_cases": 26514.0, + "new_cases": 550.0, + "new_cases_smoothed": 472.857, + "total_deaths": 777.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 606.259, + "new_cases_per_million": 12.576, + "new_cases_smoothed_per_million": 10.812, + "total_deaths_per_million": 17.767, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.265, + "new_tests": 9504.0, + "total_tests": 424046.0, + "total_tests_per_thousand": 9.696, + "new_tests_per_thousand": 0.217, + "new_tests_smoothed": 10259.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 21.695999999999998, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-08", + "total_cases": 26999.0, + "new_cases": 485.0, + "new_cases_smoothed": 475.286, + "total_deaths": 788.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 617.349, + "new_cases_per_million": 11.09, + "new_cases_smoothed_per_million": 10.868, + "total_deaths_per_million": 18.018, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.261, + "new_tests": 7039.0, + "total_tests": 431085.0, + "total_tests_per_thousand": 9.857, + "new_tests_per_thousand": 0.161, + "new_tests_smoothed": 10700.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 22.513, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-09", + "total_cases": 27462.0, + "new_cases": 463.0, + "new_cases_smoothed": 492.857, + "total_deaths": 797.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 627.936, + "new_cases_per_million": 10.587, + "new_cases_smoothed_per_million": 11.269, + "total_deaths_per_million": 18.224, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.258, + "new_tests": 6359.0, + "total_tests": 437444.0, + "total_tests_per_thousand": 10.002, + "new_tests_per_thousand": 0.145, + "new_tests_smoothed": 9397.0, + "new_tests_smoothed_per_thousand": 0.215, + "tests_per_case": 19.066, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-10", + "total_cases": 27856.0, + "new_cases": 394.0, + "new_cases_smoothed": 502.286, + "total_deaths": 810.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 636.945, + "new_cases_per_million": 9.009, + "new_cases_smoothed_per_million": 11.485, + "total_deaths_per_million": 18.521, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.271, + "new_tests": 8496.0, + "total_tests": 445940.0, + "total_tests_per_thousand": 10.197, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 9198.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 18.312, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-11", + "total_cases": 28381.0, + "new_cases": 525.0, + "new_cases_smoothed": 508.286, + "total_deaths": 833.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 14.0, + "total_cases_per_million": 648.949, + "new_cases_per_million": 12.004, + "new_cases_smoothed_per_million": 11.622, + "total_deaths_per_million": 19.047, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.32, + "new_tests": 10569.0, + "total_tests": 456509.0, + "total_tests_per_thousand": 10.438, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 9170.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 18.041, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-12", + "total_cases": 29070.0, + "new_cases": 689.0, + "new_cases_smoothed": 522.714, + "total_deaths": 854.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 664.704, + "new_cases_per_million": 15.754, + "new_cases_smoothed_per_million": 11.952, + "total_deaths_per_million": 19.527, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 11663.0, + "total_tests": 468172.0, + "total_tests_per_thousand": 10.705, + "new_tests_per_thousand": 0.267, + "new_tests_smoothed": 9232.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 17.662, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-13", + "total_cases": 29753.0, + "new_cases": 683.0, + "new_cases_smoothed": 541.286, + "total_deaths": 870.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 680.321, + "new_cases_per_million": 15.617, + "new_cases_smoothed_per_million": 12.377, + "total_deaths_per_million": 19.893, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 10939.0, + "total_tests": 479111.0, + "total_tests_per_thousand": 10.955, + "new_tests_per_thousand": 0.25, + "new_tests_smoothed": 9224.0, + "new_tests_smoothed_per_thousand": 0.211, + "tests_per_case": 17.041, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-14", + "total_cases": 30506.0, + "new_cases": 753.0, + "new_cases_smoothed": 570.286, + "total_deaths": 880.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 14.714, + "total_cases_per_million": 697.539, + "new_cases_per_million": 17.218, + "new_cases_smoothed_per_million": 13.04, + "total_deaths_per_million": 20.122, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 10223.0, + "total_tests": 489334.0, + "total_tests_per_thousand": 11.189, + "new_tests_per_thousand": 0.234, + "new_tests_smoothed": 9327.0, + "new_tests_smoothed_per_thousand": 0.213, + "tests_per_case": 16.355, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-15", + "total_cases": 31154.0, + "new_cases": 648.0, + "new_cases_smoothed": 593.571, + "total_deaths": 889.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 712.356, + "new_cases_per_million": 14.817, + "new_cases_smoothed_per_million": 13.572, + "total_deaths_per_million": 20.328, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.33, + "new_tests": 7950.0, + "total_tests": 497284.0, + "total_tests_per_thousand": 11.371, + "new_tests_per_thousand": 0.182, + "new_tests_smoothed": 9457.0, + "new_tests_smoothed_per_thousand": 0.216, + "tests_per_case": 15.932, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-16", + "total_cases": 31810.0, + "new_cases": 656.0, + "new_cases_smoothed": 621.143, + "total_deaths": 901.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 14.857, + "total_cases_per_million": 727.356, + "new_cases_per_million": 15.0, + "new_cases_smoothed_per_million": 14.203, + "total_deaths_per_million": 20.602, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.34, + "new_tests": 9967.0, + "total_tests": 507251.0, + "total_tests_per_thousand": 11.599, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 9972.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 16.054000000000002, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-17", + "total_cases": 32476.0, + "new_cases": 666.0, + "new_cases_smoothed": 660.0, + "total_deaths": 912.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 742.584, + "new_cases_per_million": 15.229, + "new_cases_smoothed_per_million": 15.091, + "total_deaths_per_million": 20.853, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.333, + "new_tests_smoothed": 10415.0, + "new_tests_smoothed_per_thousand": 0.238, + "tests_per_case": 15.78, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-18", + "total_cases": 33234.0, + "new_cases": 758.0, + "new_cases_smoothed": 693.286, + "total_deaths": 943.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 759.916, + "new_cases_per_million": 17.332, + "new_cases_smoothed_per_million": 15.852, + "total_deaths_per_million": 21.562, + "new_deaths_per_million": 0.709, + "new_deaths_smoothed_per_million": 0.359, + "total_tests": 530442.0, + "total_tests_per_thousand": 12.129, + "new_tests_smoothed": 10562.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 15.235, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-19", + "total_cases": 34063.0, + "new_cases": 829.0, + "new_cases_smoothed": 713.286, + "total_deaths": 966.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 778.872, + "new_cases_per_million": 18.956, + "new_cases_smoothed_per_million": 16.31, + "total_deaths_per_million": 22.088, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.366, + "new_tests": 11805.0, + "total_tests": 542247.0, + "total_tests_per_thousand": 12.399, + "new_tests_per_thousand": 0.27, + "new_tests_smoothed": 10582.0, + "new_tests_smoothed_per_thousand": 0.242, + "tests_per_case": 14.835999999999999, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-20", + "total_cases": 34984.0, + "new_cases": 921.0, + "new_cases_smoothed": 747.286, + "total_deaths": 985.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 799.931, + "new_cases_per_million": 21.059, + "new_cases_smoothed_per_million": 17.087, + "total_deaths_per_million": 22.523, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 11490.0, + "total_tests": 553737.0, + "total_tests_per_thousand": 12.662, + "new_tests_per_thousand": 0.263, + "new_tests_smoothed": 10661.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 14.265999999999998, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-21", + "total_cases": 35825.0, + "new_cases": 841.0, + "new_cases_smoothed": 759.857, + "total_deaths": 994.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 16.286, + "total_cases_per_million": 819.161, + "new_cases_per_million": 19.23, + "new_cases_smoothed_per_million": 17.375, + "total_deaths_per_million": 22.728, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.372, + "new_tests": 9457.0, + "total_tests": 563194.0, + "total_tests_per_thousand": 12.878, + "new_tests_per_thousand": 0.216, + "new_tests_smoothed": 10551.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 13.886, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-06-22", + "total_cases": 36560.0, + "new_cases": 735.0, + "new_cases_smoothed": 772.286, + "total_deaths": 1002.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 835.967, + "new_cases_per_million": 16.806, + "new_cases_smoothed_per_million": 17.659, + "total_deaths_per_million": 22.911, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 6395.0, + "total_tests": 569589.0, + "total_tests_per_thousand": 13.024, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 10329.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 13.375, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-23", + "total_cases": 37241.0, + "new_cases": 681.0, + "new_cases_smoothed": 775.857, + "total_deaths": 1012.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 851.539, + "new_cases_per_million": 15.571, + "new_cases_smoothed_per_million": 17.74, + "total_deaths_per_million": 23.14, + "new_deaths_per_million": 0.229, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 11225.0, + "total_tests": 580814.0, + "total_tests_per_thousand": 13.281, + "new_tests_per_thousand": 0.257, + "new_tests_smoothed": 10509.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 13.545, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-24", + "total_cases": 38074.0, + "new_cases": 833.0, + "new_cases_smoothed": 799.714, + "total_deaths": 1035.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 17.571, + "total_cases_per_million": 870.586, + "new_cases_per_million": 19.047, + "new_cases_smoothed_per_million": 18.286, + "total_deaths_per_million": 23.666, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.402, + "new_tests": 13188.0, + "total_tests": 594002.0, + "total_tests_per_thousand": 13.582, + "new_tests_per_thousand": 0.302, + "new_tests_smoothed": 10736.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 13.425, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-25", + "total_cases": 39014.0, + "new_cases": 940.0, + "new_cases_smoothed": 825.714, + "total_deaths": 1051.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.429, + "total_cases_per_million": 892.08, + "new_cases_per_million": 21.494, + "new_cases_smoothed_per_million": 18.88, + "total_deaths_per_million": 24.032, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.353, + "new_tests": 12764.0, + "total_tests": 606766.0, + "total_tests_per_thousand": 13.874, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 10903.0, + "new_tests_smoothed_per_thousand": 0.249, + "tests_per_case": 13.204, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-26", + "total_cases": 40008.0, + "new_cases": 994.0, + "new_cases_smoothed": 849.286, + "total_deaths": 1067.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 914.808, + "new_cases_per_million": 22.728, + "new_cases_smoothed_per_million": 19.419, + "total_deaths_per_million": 24.398, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.33, + "new_tests_smoothed": 11017.0, + "new_tests_smoothed_per_thousand": 0.252, + "tests_per_case": 12.972000000000001, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-27", + "total_cases": 41117.0, + "new_cases": 1109.0, + "new_cases_smoothed": 876.143, + "total_deaths": 1086.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 940.166, + "new_cases_per_million": 25.358, + "new_cases_smoothed_per_million": 20.034, + "total_deaths_per_million": 24.832, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.33, + "total_tests": 631966.0, + "total_tests_per_thousand": 14.45, + "new_tests_smoothed": 11176.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 12.755999999999998, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-28", + "total_cases": 42065.0, + "new_cases": 948.0, + "new_cases_smoothed": 891.429, + "total_deaths": 1110.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 961.843, + "new_cases_per_million": 21.677, + "new_cases_smoothed_per_million": 20.383, + "total_deaths_per_million": 25.381, + "new_deaths_per_million": 0.549, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 9945.0, + "total_tests": 641911.0, + "total_tests_per_thousand": 14.678, + "new_tests_per_thousand": 0.227, + "new_tests_smoothed": 11245.0, + "new_tests_smoothed_per_thousand": 0.257, + "tests_per_case": 12.615, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-29", + "total_cases": 42982.0, + "new_cases": 917.0, + "new_cases_smoothed": 917.429, + "total_deaths": 1129.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 18.143, + "total_cases_per_million": 982.811, + "new_cases_per_million": 20.968, + "new_cases_smoothed_per_million": 20.978, + "total_deaths_per_million": 25.815, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.415, + "new_tests": 7239.0, + "total_tests": 649150.0, + "total_tests_per_thousand": 14.843, + "new_tests_per_thousand": 0.166, + "new_tests_smoothed": 11366.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 12.389000000000001, + "positive_rate": 0.081, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-06-30", + "total_cases": 43628.0, + "new_cases": 646.0, + "new_cases_smoothed": 912.429, + "total_deaths": 1147.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 997.582, + "new_cases_per_million": 14.771, + "new_cases_smoothed_per_million": 20.863, + "total_deaths_per_million": 26.227, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.441, + "new_tests": 6972.0, + "total_tests": 656122.0, + "total_tests_per_thousand": 15.003, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 10758.0, + "new_tests_smoothed_per_thousand": 0.246, + "tests_per_case": 11.790999999999999, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-01", + "total_cases": 44334.0, + "new_cases": 706.0, + "new_cases_smoothed": 894.286, + "total_deaths": 1159.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 1013.725, + "new_cases_per_million": 16.143, + "new_cases_smoothed_per_million": 20.448, + "total_deaths_per_million": 26.501, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.405, + "new_tests": 10025.0, + "total_tests": 666147.0, + "total_tests_per_thousand": 15.232, + "new_tests_per_thousand": 0.229, + "new_tests_smoothed": 10306.0, + "new_tests_smoothed_per_thousand": 0.236, + "tests_per_case": 11.524000000000001, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-02", + "total_cases": 44998.0, + "new_cases": 664.0, + "new_cases_smoothed": 854.857, + "total_deaths": 1173.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1028.908, + "new_cases_per_million": 15.183, + "new_cases_smoothed_per_million": 19.547, + "total_deaths_per_million": 26.821, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 11110.0, + "total_tests": 677257.0, + "total_tests_per_thousand": 15.486, + "new_tests_per_thousand": 0.254, + "new_tests_smoothed": 10070.0, + "new_tests_smoothed_per_thousand": 0.23, + "tests_per_case": 11.78, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-03", + "total_cases": 45887.0, + "new_cases": 889.0, + "new_cases_smoothed": 839.857, + "total_deaths": 1185.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1049.235, + "new_cases_per_million": 20.328, + "new_cases_smoothed_per_million": 19.204, + "total_deaths_per_million": 27.096, + "new_deaths_per_million": 0.274, + "new_deaths_smoothed_per_million": 0.385, + "new_tests": 13696.0, + "total_tests": 690953.0, + "total_tests_per_thousand": 15.799, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 10227.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 12.177, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-04", + "total_cases": 46763.0, + "new_cases": 876.0, + "new_cases_smoothed": 806.571, + "total_deaths": 1212.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 18.0, + "total_cases_per_million": 1069.266, + "new_cases_per_million": 20.03, + "new_cases_smoothed_per_million": 18.443, + "total_deaths_per_million": 27.713, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.412, + "new_tests_smoothed": 10199.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 12.645, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-05", + "total_cases": 47677.0, + "new_cases": 914.0, + "new_cases_smoothed": 801.714, + "total_deaths": 1227.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 16.714, + "total_cases_per_million": 1090.165, + "new_cases_per_million": 20.899, + "new_cases_smoothed_per_million": 18.332, + "total_deaths_per_million": 28.056, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.382, + "total_tests": 715770.0, + "total_tests_per_thousand": 16.367, + "new_tests_smoothed": 10551.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 13.161, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-06", + "total_cases": 48500.0, + "new_cases": 823.0, + "new_cases_smoothed": 788.286, + "total_deaths": 1249.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 1108.983, + "new_cases_per_million": 18.818, + "new_cases_smoothed_per_million": 18.025, + "total_deaths_per_million": 28.559, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 6743.0, + "total_tests": 722513.0, + "total_tests_per_thousand": 16.521, + "new_tests_per_thousand": 0.154, + "new_tests_smoothed": 10480.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 13.295, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-07", + "total_cases": 49043.0, + "new_cases": 543.0, + "new_cases_smoothed": 773.571, + "total_deaths": 1262.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1121.399, + "new_cases_per_million": 12.416, + "new_cases_smoothed_per_million": 17.688, + "total_deaths_per_million": 28.856, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 9345.0, + "total_tests": 731858.0, + "total_tests_per_thousand": 16.734, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 10819.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 13.985999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-08", + "total_cases": 49607.0, + "new_cases": 564.0, + "new_cases_smoothed": 753.286, + "total_deaths": 1283.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 17.714, + "total_cases_per_million": 1134.295, + "new_cases_per_million": 12.896, + "new_cases_smoothed_per_million": 17.224, + "total_deaths_per_million": 29.337, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.405, + "new_tests": 13455.0, + "total_tests": 745313.0, + "total_tests_per_thousand": 17.042, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 11309.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 15.013, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-09", + "total_cases": 50414.0, + "new_cases": 807.0, + "new_cases_smoothed": 773.714, + "total_deaths": 1306.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 1152.748, + "new_cases_per_million": 18.453, + "new_cases_smoothed_per_million": 17.691, + "total_deaths_per_million": 29.863, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.434, + "new_tests": 14934.0, + "total_tests": 760247.0, + "total_tests_per_thousand": 17.384, + "new_tests_per_thousand": 0.341, + "new_tests_smoothed": 11856.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 15.323, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-10", + "total_cases": 51224.0, + "new_cases": 810.0, + "new_cases_smoothed": 762.429, + "total_deaths": 1327.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 20.286, + "total_cases_per_million": 1171.269, + "new_cases_per_million": 18.521, + "new_cases_smoothed_per_million": 17.433, + "total_deaths_per_million": 30.343, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.464, + "new_tests": 13584.0, + "total_tests": 773831.0, + "total_tests_per_thousand": 17.694, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 11840.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 15.529000000000002, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-11", + "total_cases": 52043.0, + "new_cases": 819.0, + "new_cases_smoothed": 754.286, + "total_deaths": 1345.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 19.0, + "total_cases_per_million": 1189.996, + "new_cases_per_million": 18.727, + "new_cases_smoothed_per_million": 17.247, + "total_deaths_per_million": 30.754, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.434, + "new_tests": 13012.0, + "total_tests": 786843.0, + "total_tests_per_thousand": 17.992, + "new_tests_per_thousand": 0.298, + "new_tests_smoothed": 11926.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 15.811, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-12", + "total_cases": 52843.0, + "new_cases": 800.0, + "new_cases_smoothed": 738.0, + "total_deaths": 1372.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 20.714, + "total_cases_per_million": 1208.289, + "new_cases_per_million": 18.293, + "new_cases_smoothed_per_million": 16.875, + "total_deaths_per_million": 31.372, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.474, + "new_tests": 9837.0, + "total_tests": 796680.0, + "total_tests_per_thousand": 18.217, + "new_tests_per_thousand": 0.225, + "new_tests_smoothed": 11559.0, + "new_tests_smoothed_per_thousand": 0.264, + "tests_per_case": 15.663, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-13", + "total_cases": 53521.0, + "new_cases": 678.0, + "new_cases_smoothed": 717.286, + "total_deaths": 1383.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 19.143, + "total_cases_per_million": 1223.791, + "new_cases_per_million": 15.503, + "new_cases_smoothed_per_million": 16.401, + "total_deaths_per_million": 31.623, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.438, + "new_tests": 6977.0, + "total_tests": 803657.0, + "total_tests_per_thousand": 18.376, + "new_tests_per_thousand": 0.16, + "new_tests_smoothed": 11592.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 16.160999999999998, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-14", + "total_cases": 54133.0, + "new_cases": 612.0, + "new_cases_smoothed": 727.143, + "total_deaths": 1398.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 19.429, + "total_cases_per_million": 1237.785, + "new_cases_per_million": 13.994, + "new_cases_smoothed_per_million": 16.627, + "total_deaths_per_million": 31.966, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.444, + "new_tests": 9739.0, + "total_tests": 813396.0, + "total_tests_per_thousand": 18.599, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 11648.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 16.019000000000002, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-15", + "total_cases": 54771.0, + "new_cases": 638.0, + "new_cases_smoothed": 737.714, + "total_deaths": 1412.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 18.429, + "total_cases_per_million": 1252.373, + "new_cases_per_million": 14.588, + "new_cases_smoothed_per_million": 16.868, + "total_deaths_per_million": 32.286, + "new_deaths_per_million": 0.32, + "new_deaths_smoothed_per_million": 0.421, + "new_tests": 13761.0, + "total_tests": 827157.0, + "total_tests_per_thousand": 18.913, + "new_tests_per_thousand": 0.315, + "new_tests_smoothed": 11692.0, + "new_tests_smoothed_per_thousand": 0.267, + "tests_per_case": 15.849, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-16", + "total_cases": 55607.0, + "new_cases": 836.0, + "new_cases_smoothed": 741.857, + "total_deaths": 1427.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.286, + "total_cases_per_million": 1271.489, + "new_cases_per_million": 19.116, + "new_cases_smoothed_per_million": 16.963, + "total_deaths_per_million": 32.629, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.395, + "new_tests": 13175.0, + "total_tests": 840332.0, + "total_tests_per_thousand": 19.215, + "new_tests_per_thousand": 0.301, + "new_tests_smoothed": 11441.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 15.422, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-17", + "total_cases": 56455.0, + "new_cases": 848.0, + "new_cases_smoothed": 747.286, + "total_deaths": 1445.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1290.879, + "new_cases_per_million": 19.39, + "new_cases_smoothed_per_million": 17.087, + "total_deaths_per_million": 33.041, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.385, + "new_tests": 13732.0, + "total_tests": 854064.0, + "total_tests_per_thousand": 19.529, + "new_tests_per_thousand": 0.314, + "new_tests_smoothed": 11462.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 15.338, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-18", + "total_cases": 57264.0, + "new_cases": 809.0, + "new_cases_smoothed": 745.857, + "total_deaths": 1456.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 1309.377, + "new_cases_per_million": 18.498, + "new_cases_smoothed_per_million": 17.054, + "total_deaths_per_million": 33.292, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 10532.0, + "total_tests": 864596.0, + "total_tests_per_thousand": 19.77, + "new_tests_per_thousand": 0.241, + "new_tests_smoothed": 11108.0, + "new_tests_smoothed_per_thousand": 0.254, + "tests_per_case": 14.892999999999999, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-19", + "total_cases": 58111.0, + "new_cases": 847.0, + "new_cases_smoothed": 752.571, + "total_deaths": 1477.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 1328.745, + "new_cases_per_million": 19.367, + "new_cases_smoothed_per_million": 17.208, + "total_deaths_per_million": 33.773, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.343, + "new_tests": 12666.0, + "total_tests": 877262.0, + "total_tests_per_thousand": 20.059, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 11512.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 15.297, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-20", + "total_cases": 58842.0, + "new_cases": 731.0, + "new_cases_smoothed": 760.143, + "total_deaths": 1485.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 14.571, + "total_cases_per_million": 1345.459, + "new_cases_per_million": 16.715, + "new_cases_smoothed_per_million": 17.381, + "total_deaths_per_million": 33.955, + "new_deaths_per_million": 0.183, + "new_deaths_smoothed_per_million": 0.333, + "new_tests": 4735.0, + "total_tests": 881997.0, + "total_tests_per_thousand": 20.167, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 11191.0, + "new_tests_smoothed_per_thousand": 0.256, + "tests_per_case": 14.722000000000001, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-21", + "total_cases": 59493.0, + "new_cases": 651.0, + "new_cases_smoothed": 765.714, + "total_deaths": 1498.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 1360.345, + "new_cases_per_million": 14.886, + "new_cases_smoothed_per_million": 17.509, + "total_deaths_per_million": 34.253, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.327, + "new_tests": 12396.0, + "total_tests": 894393.0, + "total_tests_per_thousand": 20.451, + "new_tests_per_thousand": 0.283, + "new_tests_smoothed": 11571.0, + "new_tests_smoothed_per_thousand": 0.265, + "tests_per_case": 15.110999999999999, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-22", + "total_cases": 60166.0, + "new_cases": 673.0, + "new_cases_smoothed": 770.714, + "total_deaths": 1518.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1375.734, + "new_cases_per_million": 15.389, + "new_cases_smoothed_per_million": 17.623, + "total_deaths_per_million": 34.71, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 12967.0, + "total_tests": 907360.0, + "total_tests_per_thousand": 20.747, + "new_tests_per_thousand": 0.296, + "new_tests_smoothed": 11458.0, + "new_tests_smoothed_per_thousand": 0.262, + "tests_per_case": 14.867, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-23", + "total_cases": 60995.0, + "new_cases": 829.0, + "new_cases_smoothed": 769.714, + "total_deaths": 1534.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 1394.689, + "new_cases_per_million": 18.956, + "new_cases_smoothed_per_million": 17.6, + "total_deaths_per_million": 35.076, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.35, + "new_tests": 14498.0, + "total_tests": 921858.0, + "total_tests_per_thousand": 21.079, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 11647.0, + "new_tests_smoothed_per_thousand": 0.266, + "tests_per_case": 15.132, + "positive_rate": 0.066, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-24", + "total_cases": 61851.0, + "new_cases": 856.0, + "new_cases_smoothed": 770.857, + "total_deaths": 1551.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 15.143, + "total_cases_per_million": 1414.262, + "new_cases_per_million": 19.573, + "new_cases_smoothed_per_million": 17.626, + "total_deaths_per_million": 35.465, + "new_deaths_per_million": 0.389, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 15148.0, + "total_tests": 937006.0, + "total_tests_per_thousand": 21.425, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 11849.0, + "new_tests_smoothed_per_thousand": 0.271, + "tests_per_case": 15.370999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-25", + "total_cases": 62823.0, + "new_cases": 972.0, + "new_cases_smoothed": 794.143, + "total_deaths": 1571.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 1436.488, + "new_cases_per_million": 22.225, + "new_cases_smoothed_per_million": 18.159, + "total_deaths_per_million": 35.922, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 14076.0, + "total_tests": 951082.0, + "total_tests_per_thousand": 21.747, + "new_tests_per_thousand": 0.322, + "new_tests_smoothed": 12355.0, + "new_tests_smoothed_per_thousand": 0.283, + "tests_per_case": 15.558, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-26", + "total_cases": 63929.0, + "new_cases": 1106.0, + "new_cases_smoothed": 831.143, + "total_deaths": 1590.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 1461.777, + "new_cases_per_million": 25.289, + "new_cases_smoothed_per_million": 19.005, + "total_deaths_per_million": 36.356, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.369, + "new_tests": 12559.0, + "total_tests": 963641.0, + "total_tests_per_thousand": 22.034, + "new_tests_per_thousand": 0.287, + "new_tests_smoothed": 12340.0, + "new_tests_smoothed_per_thousand": 0.282, + "tests_per_case": 14.847000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-27", + "total_cases": 64849.0, + "new_cases": 920.0, + "new_cases_smoothed": 858.143, + "total_deaths": 1605.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 1482.813, + "new_cases_per_million": 21.036, + "new_cases_smoothed_per_million": 19.622, + "total_deaths_per_million": 36.699, + "new_deaths_per_million": 0.343, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 7064.0, + "total_tests": 970705.0, + "total_tests_per_thousand": 22.196, + "new_tests_per_thousand": 0.162, + "new_tests_smoothed": 12673.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 14.767999999999999, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-28", + "total_cases": 65656.0, + "new_cases": 807.0, + "new_cases_smoothed": 880.429, + "total_deaths": 1616.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 16.857, + "total_cases_per_million": 1501.266, + "new_cases_per_million": 18.453, + "new_cases_smoothed_per_million": 20.132, + "total_deaths_per_million": 36.951, + "new_deaths_per_million": 0.252, + "new_deaths_smoothed_per_million": 0.385, + "new_tests": 12645.0, + "total_tests": 983350.0, + "total_tests_per_thousand": 22.485, + "new_tests_per_thousand": 0.289, + "new_tests_smoothed": 12708.0, + "new_tests_smoothed_per_thousand": 0.291, + "tests_per_case": 14.434000000000001, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-29", + "total_cases": 66575.0, + "new_cases": 919.0, + "new_cases_smoothed": 915.571, + "total_deaths": 1629.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 15.857, + "total_cases_per_million": 1522.279, + "new_cases_per_million": 21.014, + "new_cases_smoothed_per_million": 20.935, + "total_deaths_per_million": 37.248, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.363, + "new_tests": 14949.0, + "total_tests": 998299.0, + "total_tests_per_thousand": 22.827, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 12991.0, + "new_tests_smoothed_per_thousand": 0.297, + "tests_per_case": 14.189, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-30", + "total_cases": 67597.0, + "new_cases": 1022.0, + "new_cases_smoothed": 943.143, + "total_deaths": 1650.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 1545.648, + "new_cases_per_million": 23.369, + "new_cases_smoothed_per_million": 21.566, + "total_deaths_per_million": 37.728, + "new_deaths_per_million": 0.48, + "new_deaths_smoothed_per_million": 0.379, + "new_tests": 15494.0, + "total_tests": 1013793.0, + "total_tests_per_thousand": 23.181, + "new_tests_per_thousand": 0.354, + "new_tests_smoothed": 13134.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 13.925999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-07-31", + "total_cases": 68794.0, + "new_cases": 1197.0, + "new_cases_smoothed": 991.857, + "total_deaths": 1673.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1573.018, + "new_cases_per_million": 27.37, + "new_cases_smoothed_per_million": 22.679, + "total_deaths_per_million": 38.254, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 15427.0, + "total_tests": 1029220.0, + "total_tests_per_thousand": 23.534, + "new_tests_per_thousand": 0.353, + "new_tests_smoothed": 13173.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 13.280999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-01", + "total_cases": 69884.0, + "new_cases": 1090.0, + "new_cases_smoothed": 1008.714, + "total_deaths": 1693.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1597.942, + "new_cases_per_million": 24.924, + "new_cases_smoothed_per_million": 23.065, + "total_deaths_per_million": 38.712, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.399, + "new_tests": 16860.0, + "total_tests": 1046080.0, + "total_tests_per_thousand": 23.919, + "new_tests_per_thousand": 0.386, + "new_tests_smoothed": 13571.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 13.454, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-02", + "total_cases": 71056.0, + "new_cases": 1172.0, + "new_cases_smoothed": 1018.143, + "total_deaths": 1709.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 1624.74, + "new_cases_per_million": 26.799, + "new_cases_smoothed_per_million": 23.28, + "total_deaths_per_million": 39.077, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.389, + "new_tests": 12303.0, + "total_tests": 1058383.0, + "total_tests_per_thousand": 24.201, + "new_tests_per_thousand": 0.281, + "new_tests_smoothed": 13535.0, + "new_tests_smoothed_per_thousand": 0.309, + "tests_per_case": 13.294, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 44.91 + }, + { + "date": "2020-08-03", + "total_cases": 72168.0, + "new_cases": 1112.0, + "new_cases_smoothed": 1045.571, + "total_deaths": 1725.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 1650.167, + "new_cases_per_million": 25.427, + "new_cases_smoothed_per_million": 23.908, + "total_deaths_per_million": 39.443, + "new_deaths_per_million": 0.366, + "new_deaths_smoothed_per_million": 0.392, + "new_tests": 8623.0, + "total_tests": 1067006.0, + "total_tests_per_thousand": 24.398, + "new_tests_per_thousand": 0.197, + "new_tests_smoothed": 13757.0, + "new_tests_smoothed_per_thousand": 0.315, + "tests_per_case": 13.157, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-04", + "total_cases": 73158.0, + "new_cases": 990.0, + "new_cases_smoothed": 1071.714, + "total_deaths": 1738.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 1672.804, + "new_cases_per_million": 22.637, + "new_cases_smoothed_per_million": 24.505, + "total_deaths_per_million": 39.74, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.399, + "new_tests_smoothed": 14212.0, + "new_tests_smoothed_per_thousand": 0.325, + "tests_per_case": 13.261, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-05", + "total_cases": 74219.0, + "new_cases": 1061.0, + "new_cases_smoothed": 1092.0, + "total_deaths": 1764.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 19.286, + "total_cases_per_million": 1697.064, + "new_cases_per_million": 24.26, + "new_cases_smoothed_per_million": 24.969, + "total_deaths_per_million": 40.335, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.441, + "total_tests": 1098665.0, + "total_tests_per_thousand": 25.122, + "new_tests_smoothed": 14338.0, + "new_tests_smoothed_per_thousand": 0.328, + "tests_per_case": 13.13, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-06", + "total_cases": 75490.0, + "new_cases": 1271.0, + "new_cases_smoothed": 1127.571, + "total_deaths": 1788.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 19.714, + "total_cases_per_million": 1726.126, + "new_cases_per_million": 29.062, + "new_cases_smoothed_per_million": 25.783, + "total_deaths_per_million": 40.884, + "new_deaths_per_million": 0.549, + "new_deaths_smoothed_per_million": 0.451, + "new_tests": 17976.0, + "total_tests": 1116641.0, + "total_tests_per_thousand": 25.533, + "new_tests_per_thousand": 0.411, + "new_tests_smoothed": 14693.0, + "new_tests_smoothed_per_thousand": 0.336, + "tests_per_case": 13.030999999999999, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-07", + "total_cases": 76808.0, + "new_cases": 1318.0, + "new_cases_smoothed": 1144.857, + "total_deaths": 1819.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 1756.263, + "new_cases_per_million": 30.137, + "new_cases_smoothed_per_million": 26.178, + "total_deaths_per_million": 41.593, + "new_deaths_per_million": 0.709, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 18410.0, + "total_tests": 1135051.0, + "total_tests_per_thousand": 25.954, + "new_tests_per_thousand": 0.421, + "new_tests_smoothed": 15119.0, + "new_tests_smoothed_per_thousand": 0.346, + "tests_per_case": 13.206, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-08", + "total_cases": 78261.0, + "new_cases": 1453.0, + "new_cases_smoothed": 1196.714, + "total_deaths": 1852.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 1789.487, + "new_cases_per_million": 33.224, + "new_cases_smoothed_per_million": 27.364, + "total_deaths_per_million": 42.347, + "new_deaths_per_million": 0.755, + "new_deaths_smoothed_per_million": 0.519, + "new_tests": 19327.0, + "total_tests": 1154378.0, + "total_tests_per_thousand": 26.396, + "new_tests_per_thousand": 0.442, + "new_tests_smoothed": 15471.0, + "new_tests_smoothed_per_thousand": 0.354, + "tests_per_case": 12.927999999999999, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-09", + "total_cases": 79750.0, + "new_cases": 1489.0, + "new_cases_smoothed": 1242.0, + "total_deaths": 1879.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 24.286, + "total_cases_per_million": 1823.534, + "new_cases_per_million": 34.047, + "new_cases_smoothed_per_million": 28.399, + "total_deaths_per_million": 42.965, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.555, + "new_tests": 14973.0, + "total_tests": 1169351.0, + "total_tests_per_thousand": 26.738, + "new_tests_per_thousand": 0.342, + "new_tests_smoothed": 15853.0, + "new_tests_smoothed_per_thousand": 0.362, + "tests_per_case": 12.764000000000001, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-10", + "total_cases": 81957.0, + "new_cases": 2207.0, + "new_cases_smoothed": 1398.429, + "total_deaths": 1922.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 28.143, + "total_cases_per_million": 1873.999, + "new_cases_per_million": 50.464, + "new_cases_smoothed_per_million": 31.976, + "total_deaths_per_million": 43.948, + "new_deaths_per_million": 0.983, + "new_deaths_smoothed_per_million": 0.644, + "new_tests": 10083.0, + "total_tests": 1179434.0, + "total_tests_per_thousand": 26.969, + "new_tests_per_thousand": 0.231, + "new_tests_smoothed": 16061.0, + "new_tests_smoothed_per_thousand": 0.367, + "tests_per_case": 11.485, + "positive_rate": 0.087, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-11", + "total_cases": 83115.0, + "new_cases": 1158.0, + "new_cases_smoothed": 1422.429, + "total_deaths": 1951.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 1900.477, + "new_cases_per_million": 26.478, + "new_cases_smoothed_per_million": 32.525, + "total_deaths_per_million": 44.611, + "new_deaths_per_million": 0.663, + "new_deaths_smoothed_per_million": 0.696, + "new_tests": 16127.0, + "total_tests": 1195561.0, + "total_tests_per_thousand": 27.337, + "new_tests_per_thousand": 0.369, + "new_tests_smoothed": 16104.0, + "new_tests_smoothed_per_thousand": 0.368, + "tests_per_case": 11.321, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-12", + "total_cases": 84548.0, + "new_cases": 1433.0, + "new_cases_smoothed": 1475.571, + "total_deaths": 1970.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 29.429, + "total_cases_per_million": 1933.243, + "new_cases_per_million": 32.766, + "new_cases_smoothed_per_million": 33.74, + "total_deaths_per_million": 45.045, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.673, + "new_tests": 19380.0, + "total_tests": 1214941.0, + "total_tests_per_thousand": 27.78, + "new_tests_per_thousand": 0.443, + "new_tests_smoothed": 16611.0, + "new_tests_smoothed_per_thousand": 0.38, + "tests_per_case": 11.257, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-13", + "total_cases": 86140.0, + "new_cases": 1592.0, + "new_cases_smoothed": 1521.429, + "total_deaths": 1992.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 29.143, + "total_cases_per_million": 1969.645, + "new_cases_per_million": 36.402, + "new_cases_smoothed_per_million": 34.788, + "total_deaths_per_million": 45.548, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.666, + "new_tests": 18984.0, + "total_tests": 1233925.0, + "total_tests_per_thousand": 28.214, + "new_tests_per_thousand": 0.434, + "new_tests_smoothed": 16755.0, + "new_tests_smoothed_per_thousand": 0.383, + "tests_per_case": 11.013, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-14", + "total_cases": 87872.0, + "new_cases": 1732.0, + "new_cases_smoothed": 1580.571, + "total_deaths": 2011.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 27.429, + "total_cases_per_million": 2009.249, + "new_cases_per_million": 39.603, + "new_cases_smoothed_per_million": 36.141, + "total_deaths_per_million": 45.983, + "new_deaths_per_million": 0.434, + "new_deaths_smoothed_per_million": 0.627, + "new_tests": 18917.0, + "total_tests": 1252842.0, + "total_tests_per_thousand": 28.647, + "new_tests_per_thousand": 0.433, + "new_tests_smoothed": 16827.0, + "new_tests_smoothed_per_thousand": 0.385, + "tests_per_case": 10.645999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-15", + "total_cases": 87872.0, + "new_cases": 0.0, + "new_cases_smoothed": 1373.0, + "total_deaths": 2011.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 22.714, + "total_cases_per_million": 2009.249, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 31.395, + "total_deaths_per_million": 45.983, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.519, + "new_tests": 20979.0, + "total_tests": 1273821.0, + "total_tests_per_thousand": 29.127, + "new_tests_per_thousand": 0.48, + "new_tests_smoothed": 17063.0, + "new_tests_smoothed_per_thousand": 0.39, + "tests_per_case": 12.427999999999999, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-16", + "total_cases": 89719.0, + "new_cases": 1847.0, + "new_cases_smoothed": 1424.143, + "total_deaths": 2044.0, + "new_deaths": 33.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 2051.482, + "new_cases_per_million": 42.233, + "new_cases_smoothed_per_million": 32.564, + "total_deaths_per_million": 46.737, + "new_deaths_per_million": 0.755, + "new_deaths_smoothed_per_million": 0.539, + "new_tests": 15768.0, + "total_tests": 1289589.0, + "total_tests_per_thousand": 29.487, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 17177.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 12.061, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-17", + "total_cases": 92820.0, + "new_cases": 3101.0, + "new_cases_smoothed": 1551.857, + "total_deaths": 2089.0, + "new_deaths": 45.0, + "new_deaths_smoothed": 23.857, + "total_cases_per_million": 2122.388, + "new_cases_per_million": 70.906, + "new_cases_smoothed_per_million": 35.484, + "total_deaths_per_million": 47.766, + "new_deaths_per_million": 1.029, + "new_deaths_smoothed_per_million": 0.546, + "new_tests": 10700.0, + "total_tests": 1300289.0, + "total_tests_per_thousand": 29.732, + "new_tests_per_thousand": 0.245, + "new_tests_smoothed": 17265.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 11.125, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-18", + "total_cases": 94436.0, + "new_cases": 1616.0, + "new_cases_smoothed": 1617.286, + "total_deaths": 2116.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 23.571, + "total_cases_per_million": 2159.339, + "new_cases_per_million": 36.951, + "new_cases_smoothed_per_million": 36.98, + "total_deaths_per_million": 48.384, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.539, + "new_tests": 15120.0, + "total_tests": 1315409.0, + "total_tests_per_thousand": 30.078, + "new_tests_per_thousand": 0.346, + "new_tests_smoothed": 17121.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 10.585999999999999, + "positive_rate": 0.094, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-19", + "total_cases": 94436.0, + "new_cases": 0.0, + "new_cases_smoothed": 1412.571, + "total_deaths": 2116.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 20.857, + "total_cases_per_million": 2159.339, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.299, + "total_deaths_per_million": 48.384, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.477, + "new_tests": 19591.0, + "total_tests": 1335000.0, + "total_tests_per_thousand": 30.526, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 17151.0, + "new_tests_smoothed_per_thousand": 0.392, + "tests_per_case": 12.142000000000001, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-20", + "total_cases": 96403.0, + "new_cases": 1967.0, + "new_cases_smoothed": 1466.143, + "total_deaths": 2144.0, + "new_deaths": 28.0, + "new_deaths_smoothed": 21.714, + "total_cases_per_million": 2204.315, + "new_cases_per_million": 44.977, + "new_cases_smoothed_per_million": 33.524, + "total_deaths_per_million": 49.024, + "new_deaths_per_million": 0.64, + "new_deaths_smoothed_per_million": 0.497, + "new_tests": 21698.0, + "total_tests": 1356698.0, + "total_tests_per_thousand": 31.022, + "new_tests_per_thousand": 0.496, + "new_tests_smoothed": 17539.0, + "new_tests_smoothed_per_thousand": 0.401, + "tests_per_case": 11.963, + "positive_rate": 0.084, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-21", + "total_cases": 98537.0, + "new_cases": 2134.0, + "new_cases_smoothed": 1523.571, + "total_deaths": 2184.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 24.714, + "total_cases_per_million": 2253.111, + "new_cases_per_million": 48.795, + "new_cases_smoothed_per_million": 34.837, + "total_deaths_per_million": 49.939, + "new_deaths_per_million": 0.915, + "new_deaths_smoothed_per_million": 0.565, + "new_tests": 21821.0, + "total_tests": 1378519.0, + "total_tests_per_thousand": 31.521, + "new_tests_per_thousand": 0.499, + "new_tests_smoothed": 17954.0, + "new_tests_smoothed_per_thousand": 0.411, + "tests_per_case": 11.784, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-22", + "total_cases": 100643.0, + "new_cases": 2106.0, + "new_cases_smoothed": 1824.429, + "total_deaths": 2207.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 28.0, + "total_cases_per_million": 2301.266, + "new_cases_per_million": 48.155, + "new_cases_smoothed_per_million": 41.717, + "total_deaths_per_million": 50.464, + "new_deaths_per_million": 0.526, + "new_deaths_smoothed_per_million": 0.64, + "new_tests": 22207.0, + "total_tests": 1400726.0, + "total_tests_per_thousand": 32.028, + "new_tests_per_thousand": 0.508, + "new_tests_smoothed": 18129.0, + "new_tests_smoothed_per_thousand": 0.415, + "tests_per_case": 9.937000000000001, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-23", + "total_cases": 102971.0, + "new_cases": 2328.0, + "new_cases_smoothed": 1893.143, + "total_deaths": 2244.0, + "new_deaths": 37.0, + "new_deaths_smoothed": 28.571, + "total_cases_per_million": 2354.497, + "new_cases_per_million": 53.231, + "new_cases_smoothed_per_million": 43.288, + "total_deaths_per_million": 51.31, + "new_deaths_per_million": 0.846, + "new_deaths_smoothed_per_million": 0.653, + "new_tests": 15275.0, + "total_tests": 1416001.0, + "total_tests_per_thousand": 32.378, + "new_tests_per_thousand": 0.349, + "new_tests_smoothed": 18059.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 9.539, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-24", + "total_cases": 104958.0, + "new_cases": 1987.0, + "new_cases_smoothed": 1734.0, + "total_deaths": 2271.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 26.0, + "total_cases_per_million": 2399.931, + "new_cases_per_million": 45.434, + "new_cases_smoothed_per_million": 39.649, + "total_deaths_per_million": 51.928, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.595, + "new_tests": 9350.0, + "total_tests": 1425351.0, + "total_tests_per_thousand": 32.592, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 17866.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 10.302999999999999, + "positive_rate": 0.09699999999999999, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-25", + "total_cases": 106754.0, + "new_cases": 1796.0, + "new_cases_smoothed": 1759.714, + "total_deaths": 2293.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 25.286, + "total_cases_per_million": 2440.998, + "new_cases_per_million": 41.067, + "new_cases_smoothed_per_million": 40.237, + "total_deaths_per_million": 52.431, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.578, + "new_tests": 10855.0, + "total_tests": 1436206.0, + "total_tests_per_thousand": 32.84, + "new_tests_per_thousand": 0.248, + "new_tests_smoothed": 17257.0, + "new_tests_smoothed_per_thousand": 0.395, + "tests_per_case": 9.807, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-26", + "total_cases": 110085.0, + "new_cases": 3331.0, + "new_cases_smoothed": 2235.571, + "total_deaths": 2318.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 2517.163, + "new_cases_per_million": 76.165, + "new_cases_smoothed_per_million": 51.118, + "total_deaths_per_million": 53.003, + "new_deaths_per_million": 0.572, + "new_deaths_smoothed_per_million": 0.66, + "new_tests": 15800.0, + "total_tests": 1452006.0, + "total_tests_per_thousand": 33.201, + "new_tests_per_thousand": 0.361, + "new_tests_smoothed": 16715.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 7.477, + "positive_rate": 0.134, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-27", + "total_cases": 112059.0, + "new_cases": 1974.0, + "new_cases_smoothed": 2236.571, + "total_deaths": 2403.0, + "new_deaths": 85.0, + "new_deaths_smoothed": 37.0, + "total_cases_per_million": 2562.3, + "new_cases_per_million": 45.137, + "new_cases_smoothed_per_million": 51.141, + "total_deaths_per_million": 54.946, + "new_deaths_per_million": 1.944, + "new_deaths_smoothed_per_million": 0.846, + "new_tests": 20730.0, + "total_tests": 1472736.0, + "total_tests_per_thousand": 33.675, + "new_tests_per_thousand": 0.474, + "new_tests_smoothed": 16577.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 7.412000000000001, + "positive_rate": 0.135, + "tests_units": "tests performed", + "stringency_index": 54.17 + }, + { + "date": "2020-08-28", + "total_cases": 112059.0, + "new_cases": 0.0, + "new_cases_smoothed": 1931.714, + "total_deaths": 2403.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 31.286, + "total_cases_per_million": 2562.3, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 44.17, + "total_deaths_per_million": 54.946, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.715, + "new_tests": 21507.0, + "total_tests": 1494243.0, + "total_tests_per_thousand": 34.167, + "new_tests_per_thousand": 0.492, + "new_tests_smoothed": 16532.0, + "new_tests_smoothed_per_thousand": 0.378, + "tests_per_case": 8.558, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-29", + "total_cases": 114497.0, + "new_cases": 2438.0, + "new_cases_smoothed": 1979.143, + "total_deaths": 2438.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 33.0, + "total_cases_per_million": 2618.046, + "new_cases_per_million": 55.746, + "new_cases_smoothed_per_million": 45.254, + "total_deaths_per_million": 55.746, + "new_deaths_per_million": 0.8, + "new_deaths_smoothed_per_million": 0.755, + "new_tests": 22469.0, + "total_tests": 1516712.0, + "total_tests_per_thousand": 34.681, + "new_tests_per_thousand": 0.514, + "new_tests_smoothed": 16569.0, + "new_tests_smoothed_per_thousand": 0.379, + "tests_per_case": 8.372, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed" + }, + { + "date": "2020-08-30", + "total_cases": 116978.0, + "new_cases": 2481.0, + "new_cases_smoothed": 2001.0, + "total_deaths": 2492.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 35.429, + "total_cases_per_million": 2674.776, + "new_cases_per_million": 56.73, + "new_cases_smoothed_per_million": 45.754, + "total_deaths_per_million": 56.981, + "new_deaths_per_million": 1.235, + "new_deaths_smoothed_per_million": 0.81, + "new_tests": 19459.0, + "total_tests": 1536171.0, + "total_tests_per_thousand": 35.126, + "new_tests_per_thousand": 0.445, + "new_tests_smoothed": 17167.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 8.579, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-08-31", + "total_cases": 119074.0, + "new_cases": 2096.0, + "new_cases_smoothed": 2016.571, + "total_deaths": 2527.0, + "new_deaths": 35.0, + "new_deaths_smoothed": 36.571, + "total_cases_per_million": 2722.702, + "new_cases_per_million": 47.926, + "new_cases_smoothed_per_million": 46.11, + "total_deaths_per_million": 57.781, + "new_deaths_per_million": 0.8, + "new_deaths_smoothed_per_million": 0.836, + "new_tests": 14109.0, + "total_tests": 1550280.0, + "total_tests_per_thousand": 35.448, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 17847.0, + "new_tests_smoothed_per_thousand": 0.408, + "tests_per_case": 8.85, + "positive_rate": 0.113, + "tests_units": "tests performed" + }, + { + "date": "2020-09-01", + "total_cases": 121215.0, + "new_cases": 2141.0, + "new_cases_smoothed": 2065.857, + "total_deaths": 2557.0, + "new_deaths": 30.0, + "new_deaths_smoothed": 37.714, + "total_cases_per_million": 2771.657, + "new_cases_per_million": 48.955, + "new_cases_smoothed_per_million": 47.237, + "total_deaths_per_million": 58.467, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.862, + "new_tests": 6375.0, + "total_tests": 1556655.0, + "total_tests_per_thousand": 35.594, + "new_tests_per_thousand": 0.146, + "new_tests_smoothed": 17207.0, + "new_tests_smoothed_per_thousand": 0.393, + "tests_per_case": 8.329, + "positive_rate": 0.12, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 123303.0, + "new_cases": 2088.0, + "new_cases_smoothed": 1888.286, + "total_deaths": 2605.0, + "new_deaths": 48.0, + "new_deaths_smoothed": 41.0, + "total_cases_per_million": 2819.401, + "new_cases_per_million": 47.743, + "new_cases_smoothed_per_million": 43.177, + "total_deaths_per_million": 59.565, + "new_deaths_per_million": 1.098, + "new_deaths_smoothed_per_million": 0.937, + "new_tests": 41052.0, + "total_tests": 1597707.0, + "total_tests_per_thousand": 36.533, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 20814.0, + "new_tests_smoothed_per_thousand": 0.476, + "tests_per_case": 11.023, + "positive_rate": 0.091, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 125789.0, + "new_cases": 2486.0, + "new_cases_smoothed": 1961.429, + "total_deaths": 2656.0, + "new_deaths": 51.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 2876.245, + "new_cases_per_million": 56.844, + "new_cases_smoothed_per_million": 44.849, + "total_deaths_per_million": 60.731, + "new_deaths_per_million": 1.166, + "new_deaths_smoothed_per_million": 0.826, + "new_tests": 23990.0, + "total_tests": 1621697.0, + "total_tests_per_thousand": 37.081, + "new_tests_per_thousand": 0.549, + "new_tests_smoothed": 21280.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 10.849, + "positive_rate": 0.092, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 128228.0, + "new_cases": 2439.0, + "new_cases_smoothed": 2309.857, + "total_deaths": 2710.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 43.857, + "total_cases_per_million": 2932.014, + "new_cases_per_million": 55.769, + "new_cases_smoothed_per_million": 52.816, + "total_deaths_per_million": 61.966, + "new_deaths_per_million": 1.235, + "new_deaths_smoothed_per_million": 1.003 + }, + { + "date": "2020-09-05", + "total_cases": 130951.0, + "new_cases": 2723.0, + "new_cases_smoothed": 2350.571, + "total_deaths": 2723.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 40.714, + "total_cases_per_million": 2994.277, + "new_cases_per_million": 62.263, + "new_cases_smoothed_per_million": 53.747, + "total_deaths_per_million": 62.263, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.931 + } + ] + }, + "ARE": { + "continent": "Asia", + "location": "United Arab Emirates", + "population": 9890400.0, + "population_density": 112.442, + "median_age": 34.0, + "aged_65_older": 1.144, + "aged_70_older": 0.526, + "gdp_per_capita": 67293.483, + "cardiovasc_death_rate": 317.84, + "diabetes_prevalence": 17.26, + "female_smokers": 1.2, + "male_smokers": 37.4, + "hospital_beds_per_thousand": 1.2, + "life_expectancy": 77.97, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.101, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.101, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 75.0, + "total_tests": 75.0, + "total_tests_per_thousand": 0.008, + "new_tests_per_thousand": 0.008, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-30", + "total_cases": 4.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.303, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-01-31", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-01", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.404, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 183.0, + "total_tests": 258.0, + "total_tests_per_thousand": 0.026, + "new_tests_per_thousand": 0.019, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-02", + "total_cases": 5.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-03", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-04", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-05", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 73.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 127.75, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-06", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 76.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 532.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-07", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.506, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 79.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 553.0, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-08", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.708, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 574.0, + "total_tests": 832.0, + "total_tests_per_thousand": 0.084, + "new_tests_per_thousand": 0.058, + "new_tests_smoothed": 82.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 191.333, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-09", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.708, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1360.0, + "total_tests": 2192.0, + "total_tests_per_thousand": 0.222, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 265.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 927.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-10", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.708, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 437.0, + "total_tests": 2629.0, + "total_tests_per_thousand": 0.266, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 315.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 1102.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-11", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 732.6669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 314.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 732.6669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 313.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 730.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 306.0, + "total_tests": 2935.0, + "total_tests_per_thousand": 0.297, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 312.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 728.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 3157.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2107.0, + "total_tests": 5042.0, + "total_tests_per_thousand": 0.51, + "new_tests_per_thousand": 0.213, + "new_tests_smoothed": 407.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 2849.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-17", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.91, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 463.0, + "new_tests_smoothed_per_thousand": 0.047, + "tests_per_case": 1620.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-18", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.91, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1651.0, + "total_tests": 6693.0, + "total_tests_per_thousand": 0.677, + "new_tests_per_thousand": 0.167, + "new_tests_smoothed": 570.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 3990.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-19", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.91, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 664.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 4648.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-20", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.91, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 757.0, + "new_tests_smoothed_per_thousand": 0.077, + "tests_per_case": 5299.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-21", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.91, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.014, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2201.0, + "total_tests": 8894.0, + "total_tests_per_thousand": 0.899, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 851.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 5957.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-22", + "total_cases": 11.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.112, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4096.0, + "total_tests": 12990.0, + "total_tests_per_thousand": 1.313, + "new_tests_per_thousand": 0.414, + "new_tests_smoothed": 1286.0, + "new_tests_smoothed_per_thousand": 0.13, + "tests_per_case": 3000.667, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-23", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.314, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.072, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1173.0, + "new_tests_smoothed_per_thousand": 0.119, + "tests_per_case": 1642.2, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 2.78 + }, + { + "date": "2020-02-24", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1093.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 1912.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-25", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1013.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 1772.75, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-26", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 946.0, + "new_tests_smoothed_per_thousand": 0.096, + "tests_per_case": 1655.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-27", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.314, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1325.0, + "total_tests": 14315.0, + "total_tests_per_thousand": 1.447, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 879.0, + "new_tests_smoothed_per_thousand": 0.089, + "tests_per_case": 1538.25, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-28", + "total_cases": 19.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.921, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 8606.0, + "total_tests": 22921.0, + "total_tests_per_thousand": 2.317, + "new_tests_per_thousand": 0.87, + "new_tests_smoothed": 2004.0, + "new_tests_smoothed_per_thousand": 0.203, + "tests_per_case": 1402.8, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-02-29", + "total_cases": 21.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.123, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1494.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 1045.8, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-01", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1532.0, + "new_tests_smoothed_per_thousand": 0.155, + "tests_per_case": 1340.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-02", + "total_cases": 21.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.123, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1569.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 1372.875, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2113.0, + "total_tests": 25034.0, + "total_tests_per_thousand": 2.531, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 1607.0, + "new_tests_smoothed_per_thousand": 0.162, + "tests_per_case": 1406.125, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-04", + "total_cases": 27.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.73, + "new_cases_per_million": 0.607, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12724.0, + "total_tests": 37758.0, + "total_tests_per_thousand": 3.818, + "new_tests_per_thousand": 1.287, + "new_tests_smoothed": 3387.0, + "new_tests_smoothed_per_thousand": 0.342, + "tests_per_case": 1693.5, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 2.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4117.0, + "new_tests_smoothed_per_thousand": 0.416, + "tests_per_case": 2058.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-06", + "total_cases": 29.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.932, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.144, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10753.0, + "total_tests": 48511.0, + "total_tests_per_thousand": 4.905, + "new_tests_per_thousand": 1.087, + "new_tests_smoothed": 3656.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 2559.2, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-07", + "new_cases_smoothed": 1.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.116, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4480.0, + "total_tests": 52991.0, + "total_tests_per_thousand": 5.358, + "new_tests_per_thousand": 0.453, + "new_tests_smoothed": 4220.0, + "new_tests_smoothed_per_thousand": 0.427, + "tests_per_case": 3692.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 15.74 + }, + { + "date": "2020-03-08", + "total_cases": 45.0, + "new_cases": 16.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.55, + "new_cases_per_million": 1.618, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4641.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 1353.625, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 21.3 + }, + { + "date": "2020-03-09", + "new_cases_smoothed": 3.429, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.347, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6949.0, + "total_tests": 59940.0, + "total_tests_per_thousand": 6.06, + "new_tests_per_thousand": 0.703, + "new_tests_smoothed": 5062.0, + "new_tests_smoothed_per_thousand": 0.512, + "tests_per_case": 1476.4170000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 21.3 + }, + { + "date": "2020-03-10", + "total_cases": 59.0, + "new_cases": 14.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.965, + "new_cases_per_million": 1.416, + "new_cases_smoothed_per_million": 0.549, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3618.0, + "total_tests": 63558.0, + "total_tests_per_thousand": 6.426, + "new_tests_per_thousand": 0.366, + "new_tests_smoothed": 5503.0, + "new_tests_smoothed_per_thousand": 0.556, + "tests_per_case": 1013.711, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 21.3 + }, + { + "date": "2020-03-11", + "total_cases": 74.0, + "new_cases": 15.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.482, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 0.679, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4398.0, + "new_tests_smoothed_per_thousand": 0.445, + "tests_per_case": 655.021, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-03-12", + "new_cases_smoothed": 6.714, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.679, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9973.0, + "total_tests": 73531.0, + "total_tests_per_thousand": 7.435, + "new_tests_per_thousand": 1.008, + "new_tests_smoothed": 4342.0, + "new_tests_smoothed_per_thousand": 0.439, + "tests_per_case": 646.681, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-03-13", + "total_cases": 85.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.594, + "new_cases_per_million": 1.112, + "new_cases_smoothed_per_million": 0.809, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4291.0, + "new_tests_smoothed_per_thousand": 0.434, + "tests_per_case": 536.375, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 8.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10040.0, + "total_tests": 83571.0, + "total_tests_per_thousand": 8.45, + "new_tests_per_thousand": 1.015, + "new_tests_smoothed": 4369.0, + "new_tests_smoothed_per_thousand": 0.442, + "tests_per_case": 546.125, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-15", + "total_cases": 86.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.695, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.592, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6616.0, + "total_tests": 90187.0, + "total_tests_per_thousand": 9.119, + "new_tests_per_thousand": 0.669, + "new_tests_smoothed": 4817.0, + "new_tests_smoothed_per_thousand": 0.487, + "tests_per_case": 822.415, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 34.26 + }, + { + "date": "2020-03-16", + "total_cases": 98.0, + "new_cases": 12.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.909, + "new_cases_per_million": 1.213, + "new_cases_smoothed_per_million": 0.766, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5073.0, + "new_tests_smoothed_per_thousand": 0.513, + "tests_per_case": 670.0189999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-17", + "total_cases": 98.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.909, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 10525.0, + "total_tests": 100712.0, + "total_tests_per_thousand": 10.183, + "new_tests_per_thousand": 1.064, + "new_tests_smoothed": 5308.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 952.7180000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-18", + "total_cases": 113.0, + "new_cases": 15.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.425, + "new_cases_per_million": 1.517, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5585.0, + "new_tests_smoothed_per_thousand": 0.565, + "tests_per_case": 1002.436, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-19", + "total_cases": 113.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.425, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.563, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 13857.0, + "total_tests": 114569.0, + "total_tests_per_thousand": 11.584, + "new_tests_per_thousand": 1.401, + "new_tests_smoothed": 5863.0, + "new_tests_smoothed_per_thousand": 0.593, + "tests_per_case": 1052.333, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-20", + "total_cases": 140.0, + "new_cases": 27.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.155, + "new_cases_per_million": 2.73, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6053.0, + "new_tests_smoothed_per_thousand": 0.612, + "tests_per_case": 770.382, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-21", + "total_cases": 140.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.155, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12706.0, + "total_tests": 127275.0, + "total_tests_per_thousand": 12.869, + "new_tests_per_thousand": 1.285, + "new_tests_smoothed": 6243.0, + "new_tests_smoothed_per_thousand": 0.631, + "tests_per_case": 794.564, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-22", + "total_cases": 153.0, + "new_cases": 13.0, + "new_cases_smoothed": 9.571, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.47, + "new_cases_per_million": 1.314, + "new_cases_smoothed_per_million": 0.968, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.029, + "new_tests_smoothed": 6495.0, + "new_tests_smoothed_per_thousand": 0.657, + "tests_per_case": 678.582, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 45.37 + }, + { + "date": "2020-03-23", + "total_cases": 153.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 15.47, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.794, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 16748.0, + "total_tests": 144023.0, + "total_tests_per_thousand": 14.562, + "new_tests_per_thousand": 1.693, + "new_tests_smoothed": 6939.0, + "new_tests_smoothed_per_thousand": 0.702, + "tests_per_case": 883.145, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-03-24", + "total_cases": 198.0, + "new_cases": 45.0, + "new_cases_smoothed": 14.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 20.019, + "new_cases_per_million": 4.55, + "new_cases_smoothed_per_million": 1.444, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 9093.0, + "total_tests": 153116.0, + "total_tests_per_thousand": 15.481, + "new_tests_per_thousand": 0.919, + "new_tests_smoothed": 7486.0, + "new_tests_smoothed_per_thousand": 0.757, + "tests_per_case": 524.02, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 62.04 + }, + { + "date": "2020-03-25", + "total_cases": 248.0, + "new_cases": 50.0, + "new_cases_smoothed": 19.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.075, + "new_cases_per_million": 5.055, + "new_cases_smoothed_per_million": 1.95, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 9536.0, + "total_tests": 162652.0, + "total_tests_per_thousand": 16.445, + "new_tests_per_thousand": 0.964, + "new_tests_smoothed": 7859.0, + "new_tests_smoothed_per_thousand": 0.795, + "tests_per_case": 407.504, + "positive_rate": 0.002, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-03-26", + "total_cases": 333.0, + "new_cases": 85.0, + "new_cases_smoothed": 31.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 33.669, + "new_cases_per_million": 8.594, + "new_cases_smoothed_per_million": 3.178, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests_smoothed": 8218.0, + "new_tests_smoothed_per_thousand": 0.831, + "tests_per_case": 261.482, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-03-27", + "total_cases": 333.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 33.669, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.788, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 18882.0, + "total_tests": 181534.0, + "total_tests_per_thousand": 18.355, + "new_tests_per_thousand": 1.909, + "new_tests_smoothed": 8659.0, + "new_tests_smoothed_per_thousand": 0.875, + "tests_per_case": 314.057, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-03-28", + "total_cases": 405.0, + "new_cases": 72.0, + "new_cases_smoothed": 37.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 40.949, + "new_cases_per_million": 7.28, + "new_cases_smoothed_per_million": 3.828, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.029, + "new_tests": 8216.0, + "total_tests": 189750.0, + "total_tests_per_thousand": 19.185, + "new_tests_per_thousand": 0.831, + "new_tests_smoothed": 8925.0, + "new_tests_smoothed_per_thousand": 0.902, + "tests_per_case": 235.755, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-03-29", + "total_cases": 468.0, + "new_cases": 63.0, + "new_cases_smoothed": 45.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.319, + "new_cases_per_million": 6.37, + "new_cases_smoothed_per_million": 4.55, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 9098.0, + "total_tests": 198848.0, + "total_tests_per_thousand": 20.105, + "new_tests_per_thousand": 0.92, + "new_tests_smoothed": 9028.0, + "new_tests_smoothed_per_thousand": 0.913, + "tests_per_case": 200.622, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-03-30", + "total_cases": 570.0, + "new_cases": 102.0, + "new_cases_smoothed": 59.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 57.632, + "new_cases_per_million": 10.313, + "new_cases_smoothed_per_million": 6.023, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 7694.0, + "total_tests": 206542.0, + "total_tests_per_thousand": 20.883, + "new_tests_per_thousand": 0.778, + "new_tests_smoothed": 8931.0, + "new_tests_smoothed_per_thousand": 0.903, + "tests_per_case": 149.921, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-03-31", + "total_cases": 611.0, + "new_cases": 41.0, + "new_cases_smoothed": 59.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 61.777, + "new_cases_per_million": 4.145, + "new_cases_smoothed_per_million": 5.965, + "total_deaths_per_million": 0.506, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 13458.0, + "total_tests": 220000.0, + "total_tests_per_thousand": 22.244, + "new_tests_per_thousand": 1.361, + "new_tests_smoothed": 9555.0, + "new_tests_smoothed_per_thousand": 0.966, + "tests_per_case": 161.94899999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-01", + "total_cases": 664.0, + "new_cases": 53.0, + "new_cases_smoothed": 59.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 67.136, + "new_cases_per_million": 5.359, + "new_cases_smoothed_per_million": 6.009, + "total_deaths_per_million": 0.607, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 20480.0, + "total_tests": 240480.0, + "total_tests_per_thousand": 24.314, + "new_tests_per_thousand": 2.071, + "new_tests_smoothed": 11118.0, + "new_tests_smoothed_per_thousand": 1.124, + "tests_per_case": 187.082, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-02", + "total_cases": 814.0, + "new_cases": 150.0, + "new_cases_smoothed": 68.714, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 82.302, + "new_cases_per_million": 15.166, + "new_cases_smoothed_per_million": 6.948, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 22433.0, + "total_tests": 262913.0, + "total_tests_per_thousand": 26.583, + "new_tests_per_thousand": 2.268, + "new_tests_smoothed": 12974.0, + "new_tests_smoothed_per_thousand": 1.312, + "tests_per_case": 188.81099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-03", + "total_cases": 1024.0, + "new_cases": 210.0, + "new_cases_smoothed": 98.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 103.535, + "new_cases_per_million": 21.233, + "new_cases_smoothed_per_million": 9.981, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 31402.0, + "total_tests": 294315.0, + "total_tests_per_thousand": 29.758, + "new_tests_per_thousand": 3.175, + "new_tests_smoothed": 16112.0, + "new_tests_smoothed_per_thousand": 1.629, + "tests_per_case": 163.219, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 84.26 + }, + { + "date": "2020-04-04", + "total_cases": 1264.0, + "new_cases": 240.0, + "new_cases_smoothed": 122.714, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 127.801, + "new_cases_per_million": 24.266, + "new_cases_smoothed_per_million": 12.407, + "total_deaths_per_million": 0.91, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 39950.0, + "total_tests": 334265.0, + "total_tests_per_thousand": 33.797, + "new_tests_per_thousand": 4.039, + "new_tests_smoothed": 20645.0, + "new_tests_smoothed_per_thousand": 2.087, + "tests_per_case": 168.236, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-05", + "total_cases": 1505.0, + "new_cases": 241.0, + "new_cases_smoothed": 148.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 152.168, + "new_cases_per_million": 24.367, + "new_cases_smoothed_per_million": 14.978, + "total_deaths_per_million": 1.011, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 58348.0, + "total_tests": 392613.0, + "total_tests_per_thousand": 39.696, + "new_tests_per_thousand": 5.899, + "new_tests_smoothed": 27681.0, + "new_tests_smoothed_per_thousand": 2.799, + "tests_per_case": 186.85299999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-06", + "total_cases": 1783.0, + "new_cases": 278.0, + "new_cases_smoothed": 173.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 180.276, + "new_cases_per_million": 28.108, + "new_cases_smoothed_per_million": 17.521, + "total_deaths_per_million": 1.011, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 39870.0, + "total_tests": 432483.0, + "total_tests_per_thousand": 43.728, + "new_tests_per_thousand": 4.031, + "new_tests_smoothed": 32277.0, + "new_tests_smoothed_per_thousand": 3.263, + "tests_per_case": 186.265, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-07", + "total_cases": 2045.0, + "new_cases": 262.0, + "new_cases_smoothed": 204.857, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 206.766, + "new_cases_per_million": 26.49, + "new_cases_smoothed_per_million": 20.713, + "total_deaths_per_million": 1.112, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 58294.0, + "total_tests": 490777.0, + "total_tests_per_thousand": 49.622, + "new_tests_per_thousand": 5.894, + "new_tests_smoothed": 38682.0, + "new_tests_smoothed_per_thousand": 3.911, + "tests_per_case": 188.824, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-08", + "total_cases": 2313.0, + "new_cases": 268.0, + "new_cases_smoothed": 235.571, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 233.863, + "new_cases_per_million": 27.097, + "new_cases_smoothed_per_million": 23.818, + "total_deaths_per_million": 1.213, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 48418.0, + "total_tests": 539195.0, + "total_tests_per_thousand": 54.517, + "new_tests_per_thousand": 4.895, + "new_tests_smoothed": 42674.0, + "new_tests_smoothed_per_thousand": 4.315, + "tests_per_case": 181.15099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-09", + "total_cases": 2597.0, + "new_cases": 284.0, + "new_cases_smoothed": 254.714, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 262.578, + "new_cases_per_million": 28.715, + "new_cases_smoothed_per_million": 25.754, + "total_deaths_per_million": 1.213, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 40000.0, + "total_tests": 579195.0, + "total_tests_per_thousand": 58.561, + "new_tests_per_thousand": 4.044, + "new_tests_smoothed": 45183.0, + "new_tests_smoothed_per_thousand": 4.568, + "tests_per_case": 177.387, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-10", + "total_cases": 2910.0, + "new_cases": 313.0, + "new_cases_smoothed": 269.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 294.225, + "new_cases_per_million": 31.647, + "new_cases_smoothed_per_million": 27.241, + "total_deaths_per_million": 1.416, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 49000.0, + "total_tests": 628195.0, + "total_tests_per_thousand": 63.516, + "new_tests_per_thousand": 4.954, + "new_tests_smoothed": 47697.0, + "new_tests_smoothed_per_thousand": 4.823, + "tests_per_case": 177.03, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-11", + "total_cases": 3260.0, + "new_cases": 350.0, + "new_cases_smoothed": 285.143, + "total_deaths": 16.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 329.613, + "new_cases_per_million": 35.388, + "new_cases_smoothed_per_million": 28.83, + "total_deaths_per_million": 1.618, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 20000.0, + "total_tests": 648195.0, + "total_tests_per_thousand": 65.538, + "new_tests_per_thousand": 2.022, + "new_tests_smoothed": 44847.0, + "new_tests_smoothed_per_thousand": 4.534, + "tests_per_case": 157.279, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-12", + "total_cases": 3616.0, + "new_cases": 356.0, + "new_cases_smoothed": 301.571, + "total_deaths": 20.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 365.607, + "new_cases_per_million": 35.994, + "new_cases_smoothed_per_million": 30.491, + "total_deaths_per_million": 2.022, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 22000.0, + "total_tests": 670195.0, + "total_tests_per_thousand": 67.762, + "new_tests_per_thousand": 2.224, + "new_tests_smoothed": 39655.0, + "new_tests_smoothed_per_thousand": 4.009, + "tests_per_case": 131.495, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-13", + "total_cases": 3982.0, + "new_cases": 366.0, + "new_cases_smoothed": 314.143, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 402.613, + "new_cases_per_million": 37.006, + "new_cases_smoothed_per_million": 31.762, + "total_deaths_per_million": 2.224, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 23380.0, + "total_tests": 693575.0, + "total_tests_per_thousand": 70.126, + "new_tests_per_thousand": 2.364, + "new_tests_smoothed": 37299.0, + "new_tests_smoothed_per_thousand": 3.771, + "tests_per_case": 118.73299999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-14", + "total_cases": 4359.0, + "new_cases": 377.0, + "new_cases_smoothed": 330.571, + "total_deaths": 25.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 440.73, + "new_cases_per_million": 38.118, + "new_cases_smoothed_per_million": 33.423, + "total_deaths_per_million": 2.528, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 32000.0, + "total_tests": 725575.0, + "total_tests_per_thousand": 73.362, + "new_tests_per_thousand": 3.235, + "new_tests_smoothed": 33543.0, + "new_tests_smoothed_per_thousand": 3.391, + "tests_per_case": 101.47, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-15", + "total_cases": 4749.0, + "new_cases": 390.0, + "new_cases_smoothed": 348.0, + "total_deaths": 28.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 480.163, + "new_cases_per_million": 39.432, + "new_cases_smoothed_per_million": 35.186, + "total_deaths_per_million": 2.831, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 41425.0, + "total_tests": 767000.0, + "total_tests_per_thousand": 77.55, + "new_tests_per_thousand": 4.188, + "new_tests_smoothed": 32544.0, + "new_tests_smoothed_per_thousand": 3.29, + "tests_per_case": 93.51700000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-16", + "total_cases": 5158.0, + "new_cases": 409.0, + "new_cases_smoothed": 365.857, + "total_deaths": 33.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 521.516, + "new_cases_per_million": 41.353, + "new_cases_smoothed_per_million": 36.991, + "total_deaths_per_million": 3.337, + "new_deaths_per_million": 0.506, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 25000.0, + "total_tests": 792000.0, + "total_tests_per_thousand": 80.078, + "new_tests_per_thousand": 2.528, + "new_tests_smoothed": 30401.0, + "new_tests_smoothed_per_thousand": 3.074, + "tests_per_case": 83.095, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 89.81 + }, + { + "date": "2020-04-17", + "total_cases": 5593.0, + "new_cases": 435.0, + "new_cases_smoothed": 383.286, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 565.498, + "new_cases_per_million": 43.982, + "new_cases_smoothed_per_million": 38.753, + "total_deaths_per_million": 3.539, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 24000.0, + "total_tests": 816000.0, + "total_tests_per_thousand": 82.504, + "new_tests_per_thousand": 2.427, + "new_tests_smoothed": 26829.0, + "new_tests_smoothed_per_thousand": 2.713, + "tests_per_case": 69.997, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-18", + "total_cases": 6045.0, + "new_cases": 452.0, + "new_cases_smoothed": 397.857, + "total_deaths": 37.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 611.199, + "new_cases_per_million": 45.701, + "new_cases_smoothed_per_million": 40.227, + "total_deaths_per_million": 3.741, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 21806.0, + "total_tests": 837806.0, + "total_tests_per_thousand": 84.709, + "new_tests_per_thousand": 2.205, + "new_tests_smoothed": 27087.0, + "new_tests_smoothed_per_thousand": 2.739, + "tests_per_case": 68.082, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-19", + "total_cases": 6490.0, + "new_cases": 445.0, + "new_cases_smoothed": 410.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 656.192, + "new_cases_per_million": 44.993, + "new_cases_smoothed_per_million": 41.512, + "total_deaths_per_million": 3.741, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.246, + "new_tests": 25795.0, + "total_tests": 863601.0, + "total_tests_per_thousand": 87.317, + "new_tests_per_thousand": 2.608, + "new_tests_smoothed": 27629.0, + "new_tests_smoothed_per_thousand": 2.794, + "tests_per_case": 67.294, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-20", + "total_cases": 6943.0, + "new_cases": 453.0, + "new_cases_smoothed": 423.0, + "total_deaths": 41.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 701.994, + "new_cases_per_million": 45.802, + "new_cases_smoothed_per_million": 42.769, + "total_deaths_per_million": 4.145, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 22807.0, + "total_tests": 886408.0, + "total_tests_per_thousand": 89.623, + "new_tests_per_thousand": 2.306, + "new_tests_smoothed": 27548.0, + "new_tests_smoothed_per_thousand": 2.785, + "tests_per_case": 65.125, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-21", + "total_cases": 7401.0, + "new_cases": 458.0, + "new_cases_smoothed": 434.571, + "total_deaths": 43.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 748.301, + "new_cases_per_million": 46.308, + "new_cases_smoothed_per_million": 43.939, + "total_deaths_per_million": 4.348, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 20165.0, + "total_tests": 906573.0, + "total_tests_per_thousand": 91.662, + "new_tests_per_thousand": 2.039, + "new_tests_smoothed": 25857.0, + "new_tests_smoothed_per_thousand": 2.614, + "tests_per_case": 59.5, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-22", + "total_cases": 7865.0, + "new_cases": 464.0, + "new_cases_smoothed": 445.143, + "total_deaths": 46.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 795.216, + "new_cases_per_million": 46.914, + "new_cases_smoothed_per_million": 45.008, + "total_deaths_per_million": 4.651, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 23053.0, + "total_tests": 929626.0, + "total_tests_per_thousand": 93.993, + "new_tests_per_thousand": 2.331, + "new_tests_smoothed": 23232.0, + "new_tests_smoothed_per_thousand": 2.349, + "tests_per_case": 52.19, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-23", + "total_cases": 8322.0, + "new_cases": 457.0, + "new_cases_smoothed": 452.0, + "total_deaths": 52.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 841.422, + "new_cases_per_million": 46.206, + "new_cases_smoothed_per_million": 45.701, + "total_deaths_per_million": 5.258, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 25506.0, + "total_tests": 955132.0, + "total_tests_per_thousand": 96.572, + "new_tests_per_thousand": 2.579, + "new_tests_smoothed": 23305.0, + "new_tests_smoothed_per_thousand": 2.356, + "tests_per_case": 51.56, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-24", + "total_cases": 8812.0, + "new_cases": 490.0, + "new_cases_smoothed": 459.857, + "total_deaths": 56.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 890.965, + "new_cases_per_million": 49.543, + "new_cases_smoothed_per_million": 46.495, + "total_deaths_per_million": 5.662, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 26274.0, + "total_tests": 981406.0, + "total_tests_per_thousand": 99.228, + "new_tests_per_thousand": 2.657, + "new_tests_smoothed": 23629.0, + "new_tests_smoothed_per_thousand": 2.389, + "tests_per_case": 51.383, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-25", + "total_cases": 9309.0, + "new_cases": 497.0, + "new_cases_smoothed": 466.286, + "total_deaths": 64.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 941.216, + "new_cases_per_million": 50.251, + "new_cases_smoothed_per_million": 47.145, + "total_deaths_per_million": 6.471, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.39, + "new_tests": 21984.0, + "total_tests": 1003390.0, + "total_tests_per_thousand": 101.451, + "new_tests_per_thousand": 2.223, + "new_tests_smoothed": 23655.0, + "new_tests_smoothed_per_thousand": 2.392, + "tests_per_case": 50.731, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-26", + "total_cases": 9813.0, + "new_cases": 504.0, + "new_cases_smoothed": 474.714, + "total_deaths": 71.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 992.174, + "new_cases_per_million": 50.959, + "new_cases_smoothed_per_million": 47.997, + "total_deaths_per_million": 7.179, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.491, + "new_tests": 25086.0, + "total_tests": 1028476.0, + "total_tests_per_thousand": 103.987, + "new_tests_per_thousand": 2.536, + "new_tests_smoothed": 23554.0, + "new_tests_smoothed_per_thousand": 2.382, + "tests_per_case": 49.617, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-27", + "total_cases": 10349.0, + "new_cases": 536.0, + "new_cases_smoothed": 486.571, + "total_deaths": 76.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 1046.368, + "new_cases_per_million": 54.194, + "new_cases_smoothed_per_million": 49.196, + "total_deaths_per_million": 7.684, + "new_deaths_per_million": 0.506, + "new_deaths_smoothed_per_million": 0.506, + "new_tests": 26195.0, + "total_tests": 1054671.0, + "total_tests_per_thousand": 106.636, + "new_tests_per_thousand": 2.649, + "new_tests_smoothed": 24038.0, + "new_tests_smoothed_per_thousand": 2.43, + "tests_per_case": 49.403, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-28", + "total_cases": 10839.0, + "new_cases": 490.0, + "new_cases_smoothed": 491.143, + "total_deaths": 82.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1095.911, + "new_cases_per_million": 49.543, + "new_cases_smoothed_per_million": 49.659, + "total_deaths_per_million": 8.291, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.563, + "new_tests": 27905.0, + "total_tests": 1082576.0, + "total_tests_per_thousand": 109.457, + "new_tests_per_thousand": 2.821, + "new_tests_smoothed": 25143.0, + "new_tests_smoothed_per_thousand": 2.542, + "tests_per_case": 51.193000000000005, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 87.04 + }, + { + "date": "2020-04-29", + "total_cases": 11380.0, + "new_cases": 541.0, + "new_cases_smoothed": 502.143, + "total_deaths": 89.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1150.611, + "new_cases_per_million": 54.7, + "new_cases_smoothed_per_million": 50.771, + "total_deaths_per_million": 8.999, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.621, + "new_tests": 26524.0, + "total_tests": 1109100.0, + "total_tests_per_thousand": 112.139, + "new_tests_per_thousand": 2.682, + "new_tests_smoothed": 25639.0, + "new_tests_smoothed_per_thousand": 2.592, + "tests_per_case": 51.059, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-04-30", + "total_cases": 11929.0, + "new_cases": 549.0, + "new_cases_smoothed": 515.286, + "total_deaths": 98.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1206.119, + "new_cases_per_million": 55.508, + "new_cases_smoothed_per_million": 52.1, + "total_deaths_per_million": 9.909, + "new_deaths_per_million": 0.91, + "new_deaths_smoothed_per_million": 0.664, + "new_tests": 36266.0, + "total_tests": 1145366.0, + "total_tests_per_thousand": 115.806, + "new_tests_per_thousand": 3.667, + "new_tests_smoothed": 27176.0, + "new_tests_smoothed_per_thousand": 2.748, + "tests_per_case": 52.74, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-01", + "total_cases": 12481.0, + "new_cases": 552.0, + "new_cases_smoothed": 524.143, + "total_deaths": 105.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1261.931, + "new_cases_per_million": 55.812, + "new_cases_smoothed_per_million": 52.995, + "total_deaths_per_million": 10.616, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.708, + "new_tests": 26677.0, + "total_tests": 1172043.0, + "total_tests_per_thousand": 118.503, + "new_tests_per_thousand": 2.697, + "new_tests_smoothed": 27234.0, + "new_tests_smoothed_per_thousand": 2.754, + "tests_per_case": 51.958999999999996, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 81.48 + }, + { + "date": "2020-05-02", + "total_cases": 13038.0, + "new_cases": 557.0, + "new_cases_smoothed": 532.714, + "total_deaths": 111.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1318.248, + "new_cases_per_million": 56.317, + "new_cases_smoothed_per_million": 53.862, + "total_deaths_per_million": 11.223, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.679, + "new_tests": 18428.0, + "total_tests": 1190471.0, + "total_tests_per_thousand": 120.366, + "new_tests_per_thousand": 1.863, + "new_tests_smoothed": 26726.0, + "new_tests_smoothed_per_thousand": 2.702, + "tests_per_case": 50.169, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-03", + "total_cases": 13599.0, + "new_cases": 561.0, + "new_cases_smoothed": 540.857, + "total_deaths": 119.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1374.97, + "new_cases_per_million": 56.722, + "new_cases_smoothed_per_million": 54.685, + "total_deaths_per_million": 12.032, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.693, + "new_tests": 28039.0, + "total_tests": 1218510.0, + "total_tests_per_thousand": 123.201, + "new_tests_per_thousand": 2.835, + "new_tests_smoothed": 27148.0, + "new_tests_smoothed_per_thousand": 2.745, + "tests_per_case": 50.193999999999996, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-04", + "total_cases": 14163.0, + "new_cases": 564.0, + "new_cases_smoothed": 544.857, + "total_deaths": 126.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 1431.995, + "new_cases_per_million": 57.025, + "new_cases_smoothed_per_million": 55.089, + "total_deaths_per_million": 12.74, + "new_deaths_per_million": 0.708, + "new_deaths_smoothed_per_million": 0.722, + "new_tests": 25231.0, + "total_tests": 1243741.0, + "total_tests_per_thousand": 125.752, + "new_tests_per_thousand": 2.551, + "new_tests_smoothed": 27010.0, + "new_tests_smoothed_per_thousand": 2.731, + "tests_per_case": 49.573, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-05", + "total_cases": 14730.0, + "new_cases": 567.0, + "new_cases_smoothed": 555.857, + "total_deaths": 137.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1489.323, + "new_cases_per_million": 57.328, + "new_cases_smoothed_per_million": 56.202, + "total_deaths_per_million": 13.852, + "new_deaths_per_million": 1.112, + "new_deaths_smoothed_per_million": 0.794, + "new_tests": 33994.0, + "total_tests": 1277735.0, + "total_tests_per_thousand": 129.189, + "new_tests_per_thousand": 3.437, + "new_tests_smoothed": 27880.0, + "new_tests_smoothed_per_thousand": 2.819, + "tests_per_case": 50.157, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-06", + "total_cases": 15192.0, + "new_cases": 462.0, + "new_cases_smoothed": 544.571, + "total_deaths": 146.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1536.035, + "new_cases_per_million": 46.712, + "new_cases_smoothed_per_million": 55.061, + "total_deaths_per_million": 14.762, + "new_deaths_per_million": 0.91, + "new_deaths_smoothed_per_million": 0.823, + "new_tests": 41134.0, + "total_tests": 1318869.0, + "total_tests_per_thousand": 133.348, + "new_tests_per_thousand": 4.159, + "new_tests_smoothed": 29967.0, + "new_tests_smoothed_per_thousand": 3.03, + "tests_per_case": 55.028999999999996, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-07", + "total_cases": 15738.0, + "new_cases": 546.0, + "new_cases_smoothed": 544.143, + "total_deaths": 157.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1591.24, + "new_cases_per_million": 55.205, + "new_cases_smoothed_per_million": 55.017, + "total_deaths_per_million": 15.874, + "new_deaths_per_million": 1.112, + "new_deaths_smoothed_per_million": 0.852, + "new_tests": 33153.0, + "total_tests": 1352022.0, + "total_tests_per_thousand": 136.7, + "new_tests_per_thousand": 3.352, + "new_tests_smoothed": 29522.0, + "new_tests_smoothed_per_thousand": 2.985, + "tests_per_case": 54.254, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-08", + "total_cases": 16240.0, + "new_cases": 502.0, + "new_cases_smoothed": 537.0, + "total_deaths": 165.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 8.571, + "total_cases_per_million": 1641.996, + "new_cases_per_million": 50.756, + "new_cases_smoothed_per_million": 54.295, + "total_deaths_per_million": 16.683, + "new_deaths_per_million": 0.809, + "new_deaths_smoothed_per_million": 0.867, + "new_tests": 29866.0, + "total_tests": 1381888.0, + "total_tests_per_thousand": 139.72, + "new_tests_per_thousand": 3.02, + "new_tests_smoothed": 29978.0, + "new_tests_smoothed_per_thousand": 3.031, + "tests_per_case": 55.825, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-09", + "total_cases": 16793.0, + "new_cases": 553.0, + "new_cases_smoothed": 536.429, + "total_deaths": 174.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 1697.909, + "new_cases_per_million": 55.913, + "new_cases_smoothed_per_million": 54.237, + "total_deaths_per_million": 17.593, + "new_deaths_per_million": 0.91, + "new_deaths_smoothed_per_million": 0.91, + "new_tests": 26763.0, + "total_tests": 1408651.0, + "total_tests_per_thousand": 142.426, + "new_tests_per_thousand": 2.706, + "new_tests_smoothed": 31169.0, + "new_tests_smoothed_per_thousand": 3.151, + "tests_per_case": 58.105, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-10", + "total_cases": 17417.0, + "new_cases": 624.0, + "new_cases_smoothed": 545.429, + "total_deaths": 185.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 9.429, + "total_cases_per_million": 1761.001, + "new_cases_per_million": 63.091, + "new_cases_smoothed_per_million": 55.147, + "total_deaths_per_million": 18.705, + "new_deaths_per_million": 1.112, + "new_deaths_smoothed_per_million": 0.953, + "new_tests": 32597.0, + "total_tests": 1441248.0, + "total_tests_per_thousand": 145.722, + "new_tests_per_thousand": 3.296, + "new_tests_smoothed": 31820.0, + "new_tests_smoothed_per_thousand": 3.217, + "tests_per_case": 58.339, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-11", + "total_cases": 18198.0, + "new_cases": 781.0, + "new_cases_smoothed": 576.429, + "total_deaths": 198.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 1839.966, + "new_cases_per_million": 78.965, + "new_cases_smoothed_per_million": 58.282, + "total_deaths_per_million": 20.019, + "new_deaths_per_million": 1.314, + "new_deaths_smoothed_per_million": 1.04, + "new_tests": 34869.0, + "total_tests": 1476117.0, + "total_tests_per_thousand": 149.247, + "new_tests_per_thousand": 3.526, + "new_tests_smoothed": 33197.0, + "new_tests_smoothed_per_thousand": 3.356, + "tests_per_case": 57.591, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-12", + "total_cases": 18878.0, + "new_cases": 680.0, + "new_cases_smoothed": 592.571, + "total_deaths": 201.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 1908.72, + "new_cases_per_million": 68.754, + "new_cases_smoothed_per_million": 59.914, + "total_deaths_per_million": 20.323, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.924, + "new_tests": 37112.0, + "total_tests": 1513229.0, + "total_tests_per_thousand": 153.0, + "new_tests_per_thousand": 3.752, + "new_tests_smoothed": 33642.0, + "new_tests_smoothed_per_thousand": 3.401, + "tests_per_case": 56.773, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-13", + "total_cases": 19661.0, + "new_cases": 783.0, + "new_cases_smoothed": 638.429, + "total_deaths": 203.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1987.887, + "new_cases_per_million": 79.168, + "new_cases_smoothed_per_million": 64.55, + "total_deaths_per_million": 20.525, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.823, + "new_tests": 38477.0, + "total_tests": 1551706.0, + "total_tests_per_thousand": 156.89, + "new_tests_per_thousand": 3.89, + "new_tests_smoothed": 33262.0, + "new_tests_smoothed_per_thousand": 3.363, + "tests_per_case": 52.1, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 75.93 + }, + { + "date": "2020-05-14", + "total_cases": 20386.0, + "new_cases": 725.0, + "new_cases_smoothed": 664.0, + "total_deaths": 206.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 2061.191, + "new_cases_per_million": 73.303, + "new_cases_smoothed_per_million": 67.136, + "total_deaths_per_million": 20.828, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.708, + "new_tests": 35735.0, + "total_tests": 1587441.0, + "total_tests_per_thousand": 160.503, + "new_tests_per_thousand": 3.613, + "new_tests_smoothed": 33631.0, + "new_tests_smoothed_per_thousand": 3.4, + "tests_per_case": 50.648999999999994, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-05-15", + "total_cases": 21084.0, + "new_cases": 698.0, + "new_cases_smoothed": 692.0, + "total_deaths": 208.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 2131.764, + "new_cases_per_million": 70.573, + "new_cases_smoothed_per_million": 69.967, + "total_deaths_per_million": 21.03, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.621, + "new_tests": 40720.0, + "total_tests": 1628161.0, + "total_tests_per_thousand": 164.62, + "new_tests_per_thousand": 4.117, + "new_tests_smoothed": 35182.0, + "new_tests_smoothed_per_thousand": 3.557, + "tests_per_case": 50.841, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-05-16", + "total_cases": 21831.0, + "new_cases": 747.0, + "new_cases_smoothed": 719.714, + "total_deaths": 210.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 2207.292, + "new_cases_per_million": 75.528, + "new_cases_smoothed_per_million": 72.769, + "total_deaths_per_million": 21.233, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.52, + "new_tests": 37844.0, + "total_tests": 1666005.0, + "total_tests_per_thousand": 168.447, + "new_tests_per_thousand": 3.826, + "new_tests_smoothed": 36765.0, + "new_tests_smoothed_per_thousand": 3.717, + "tests_per_case": 51.083, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-05-17", + "total_cases": 22627.0, + "new_cases": 796.0, + "new_cases_smoothed": 744.286, + "total_deaths": 214.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2287.774, + "new_cases_per_million": 80.482, + "new_cases_smoothed_per_million": 75.253, + "total_deaths_per_million": 21.637, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 38904.0, + "total_tests": 1704909.0, + "total_tests_per_thousand": 172.38, + "new_tests_per_thousand": 3.934, + "new_tests_smoothed": 37666.0, + "new_tests_smoothed_per_thousand": 3.808, + "tests_per_case": 50.607, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 74.07 + }, + { + "date": "2020-05-18", + "total_cases": 23358.0, + "new_cases": 731.0, + "new_cases_smoothed": 737.143, + "total_deaths": 220.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 2361.684, + "new_cases_per_million": 73.91, + "new_cases_smoothed_per_million": 74.531, + "total_deaths_per_million": 22.244, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 43732.0, + "total_tests": 1748641.0, + "total_tests_per_thousand": 176.802, + "new_tests_per_thousand": 4.422, + "new_tests_smoothed": 38932.0, + "new_tests_smoothed_per_thousand": 3.936, + "tests_per_case": 52.815, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-19", + "total_cases": 24190.0, + "new_cases": 832.0, + "new_cases_smoothed": 758.857, + "total_deaths": 224.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 2445.806, + "new_cases_per_million": 84.122, + "new_cases_smoothed_per_million": 76.727, + "total_deaths_per_million": 22.648, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.332, + "new_tests": 43993.0, + "total_tests": 1792634.0, + "total_tests_per_thousand": 181.25, + "new_tests_per_thousand": 4.448, + "new_tests_smoothed": 39915.0, + "new_tests_smoothed_per_thousand": 4.036, + "tests_per_case": 52.599, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-20", + "total_cases": 25063.0, + "new_cases": 873.0, + "new_cases_smoothed": 771.714, + "total_deaths": 227.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 2534.073, + "new_cases_per_million": 88.267, + "new_cases_smoothed_per_million": 78.027, + "total_deaths_per_million": 22.952, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 50377.0, + "total_tests": 1843011.0, + "total_tests_per_thousand": 186.343, + "new_tests_per_thousand": 5.094, + "new_tests_smoothed": 41615.0, + "new_tests_smoothed_per_thousand": 4.208, + "tests_per_case": 53.925, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-21", + "total_cases": 26004.0, + "new_cases": 941.0, + "new_cases_smoothed": 802.571, + "total_deaths": 233.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 2629.216, + "new_cases_per_million": 95.143, + "new_cases_smoothed_per_million": 81.147, + "total_deaths_per_million": 23.558, + "new_deaths_per_million": 0.607, + "new_deaths_smoothed_per_million": 0.39, + "new_tests": 39791.0, + "total_tests": 1882802.0, + "total_tests_per_thousand": 190.367, + "new_tests_per_thousand": 4.023, + "new_tests_smoothed": 42194.0, + "new_tests_smoothed_per_thousand": 4.266, + "tests_per_case": 52.574, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-22", + "total_cases": 26898.0, + "new_cases": 894.0, + "new_cases_smoothed": 830.571, + "total_deaths": 237.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 2719.607, + "new_cases_per_million": 90.391, + "new_cases_smoothed_per_million": 83.978, + "total_deaths_per_million": 23.963, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.419, + "new_tests": 35686.0, + "total_tests": 1918488.0, + "total_tests_per_thousand": 193.975, + "new_tests_per_thousand": 3.608, + "new_tests_smoothed": 41475.0, + "new_tests_smoothed_per_thousand": 4.193, + "tests_per_case": 49.93600000000001, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-23", + "total_cases": 27892.0, + "new_cases": 994.0, + "new_cases_smoothed": 865.857, + "total_deaths": 241.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 2820.108, + "new_cases_per_million": 100.501, + "new_cases_smoothed_per_million": 87.545, + "total_deaths_per_million": 24.367, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 41202.0, + "total_tests": 1959690.0, + "total_tests_per_thousand": 198.141, + "new_tests_per_thousand": 4.166, + "new_tests_smoothed": 41955.0, + "new_tests_smoothed_per_thousand": 4.242, + "tests_per_case": 48.455, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-24", + "total_cases": 28704.0, + "new_cases": 812.0, + "new_cases_smoothed": 868.143, + "total_deaths": 244.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 2902.208, + "new_cases_per_million": 82.1, + "new_cases_smoothed_per_million": 87.776, + "total_deaths_per_million": 24.67, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.433, + "new_tests": 28282.0, + "total_tests": 1987972.0, + "total_tests_per_thousand": 201.0, + "new_tests_per_thousand": 2.86, + "new_tests_smoothed": 40438.0, + "new_tests_smoothed_per_thousand": 4.089, + "tests_per_case": 46.58, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-25", + "total_cases": 29485.0, + "new_cases": 781.0, + "new_cases_smoothed": 875.286, + "total_deaths": 245.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 2981.174, + "new_cases_per_million": 78.965, + "new_cases_smoothed_per_million": 88.499, + "total_deaths_per_million": 24.771, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.361, + "new_tests": 27540.0, + "total_tests": 2015512.0, + "total_tests_per_thousand": 203.785, + "new_tests_per_thousand": 2.785, + "new_tests_smoothed": 38124.0, + "new_tests_smoothed_per_thousand": 3.855, + "tests_per_case": 43.556000000000004, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-26", + "total_cases": 30307.0, + "new_cases": 822.0, + "new_cases_smoothed": 873.857, + "total_deaths": 248.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 3064.285, + "new_cases_per_million": 83.111, + "new_cases_smoothed_per_million": 88.354, + "total_deaths_per_million": 25.075, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.347, + "new_tests": 38628.0, + "total_tests": 2054140.0, + "total_tests_per_thousand": 207.69, + "new_tests_per_thousand": 3.906, + "new_tests_smoothed": 37358.0, + "new_tests_smoothed_per_thousand": 3.777, + "tests_per_case": 42.751000000000005, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-27", + "total_cases": 31086.0, + "new_cases": 779.0, + "new_cases_smoothed": 860.429, + "total_deaths": 253.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 3143.048, + "new_cases_per_million": 78.763, + "new_cases_smoothed_per_million": 86.996, + "total_deaths_per_million": 25.58, + "new_deaths_per_million": 0.506, + "new_deaths_smoothed_per_million": 0.376, + "new_tests": 36131.0, + "total_tests": 2090271.0, + "total_tests_per_thousand": 211.343, + "new_tests_per_thousand": 3.653, + "new_tests_smoothed": 35323.0, + "new_tests_smoothed_per_thousand": 3.571, + "tests_per_case": 41.053000000000004, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-28", + "total_cases": 31969.0, + "new_cases": 883.0, + "new_cases_smoothed": 852.143, + "total_deaths": 255.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 3232.326, + "new_cases_per_million": 89.278, + "new_cases_smoothed_per_million": 86.159, + "total_deaths_per_million": 25.783, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.318, + "new_tests": 42624.0, + "total_tests": 2132895.0, + "total_tests_per_thousand": 215.653, + "new_tests_per_thousand": 4.31, + "new_tests_smoothed": 35728.0, + "new_tests_smoothed_per_thousand": 3.612, + "tests_per_case": 41.927, + "positive_rate": 0.024, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-29", + "total_cases": 32532.0, + "new_cases": 563.0, + "new_cases_smoothed": 804.857, + "total_deaths": 258.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 3289.25, + "new_cases_per_million": 56.924, + "new_cases_smoothed_per_million": 81.378, + "total_deaths_per_million": 26.086, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.303, + "new_tests": 37153.0, + "total_tests": 2170048.0, + "total_tests_per_thousand": 219.41, + "new_tests_per_thousand": 3.756, + "new_tests_smoothed": 35937.0, + "new_tests_smoothed_per_thousand": 3.634, + "tests_per_case": 44.65, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-30", + "total_cases": 33170.0, + "new_cases": 638.0, + "new_cases_smoothed": 754.0, + "total_deaths": 260.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3353.757, + "new_cases_per_million": 64.507, + "new_cases_smoothed_per_million": 76.236, + "total_deaths_per_million": 26.288, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 30147.0, + "total_tests": 2200195.0, + "total_tests_per_thousand": 222.458, + "new_tests_per_thousand": 3.048, + "new_tests_smoothed": 34358.0, + "new_tests_smoothed_per_thousand": 3.474, + "tests_per_case": 45.568000000000005, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-05-31", + "total_cases": 33896.0, + "new_cases": 726.0, + "new_cases_smoothed": 741.714, + "total_deaths": 262.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3427.162, + "new_cases_per_million": 73.405, + "new_cases_smoothed_per_million": 74.993, + "total_deaths_per_million": 26.49, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 35037.0, + "total_tests": 2235232.0, + "total_tests_per_thousand": 226.0, + "new_tests_per_thousand": 3.543, + "new_tests_smoothed": 35323.0, + "new_tests_smoothed_per_thousand": 3.571, + "tests_per_case": 47.623000000000005, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-01", + "total_cases": 34557.0, + "new_cases": 661.0, + "new_cases_smoothed": 724.571, + "total_deaths": 264.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3493.994, + "new_cases_per_million": 66.832, + "new_cases_smoothed_per_million": 73.26, + "total_deaths_per_million": 26.693, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.274, + "new_tests": 41762.0, + "total_tests": 2276994.0, + "total_tests_per_thousand": 230.223, + "new_tests_per_thousand": 4.222, + "new_tests_smoothed": 37355.0, + "new_tests_smoothed_per_thousand": 3.777, + "tests_per_case": 51.555, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-02", + "total_cases": 35192.0, + "new_cases": 635.0, + "new_cases_smoothed": 697.857, + "total_deaths": 266.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 3558.198, + "new_cases_per_million": 64.204, + "new_cases_smoothed_per_million": 70.559, + "total_deaths_per_million": 26.895, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.26, + "new_tests": 54823.0, + "total_tests": 2331817.0, + "total_tests_per_thousand": 235.766, + "new_tests_per_thousand": 5.543, + "new_tests_smoothed": 39668.0, + "new_tests_smoothed_per_thousand": 4.011, + "tests_per_case": 56.843, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-03", + "total_cases": 35788.0, + "new_cases": 596.0, + "new_cases_smoothed": 671.714, + "total_deaths": 269.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 3618.458, + "new_cases_per_million": 60.26, + "new_cases_smoothed_per_million": 67.916, + "total_deaths_per_million": 27.198, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 44241.0, + "total_tests": 2376058.0, + "total_tests_per_thousand": 240.239, + "new_tests_per_thousand": 4.473, + "new_tests_smoothed": 40827.0, + "new_tests_smoothed_per_thousand": 4.128, + "tests_per_case": 60.78, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-04", + "total_cases": 36359.0, + "new_cases": 571.0, + "new_cases_smoothed": 627.143, + "total_deaths": 270.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3676.191, + "new_cases_per_million": 57.733, + "new_cases_smoothed_per_million": 63.409, + "total_deaths_per_million": 27.299, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 52996.0, + "total_tests": 2429054.0, + "total_tests_per_thousand": 245.597, + "new_tests_per_thousand": 5.358, + "new_tests_smoothed": 42308.0, + "new_tests_smoothed_per_thousand": 4.278, + "tests_per_case": 67.462, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-05", + "total_cases": 37018.0, + "new_cases": 659.0, + "new_cases_smoothed": 640.857, + "total_deaths": 273.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3742.821, + "new_cases_per_million": 66.63, + "new_cases_smoothed_per_million": 64.796, + "total_deaths_per_million": 27.603, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 44201.0, + "total_tests": 2473255.0, + "total_tests_per_thousand": 250.066, + "new_tests_per_thousand": 4.469, + "new_tests_smoothed": 43315.0, + "new_tests_smoothed_per_thousand": 4.379, + "tests_per_case": 67.589, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-06", + "total_cases": 37642.0, + "new_cases": 624.0, + "new_cases_smoothed": 638.857, + "total_deaths": 274.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 3805.913, + "new_cases_per_million": 63.091, + "new_cases_smoothed_per_million": 64.594, + "total_deaths_per_million": 27.704, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 32679.0, + "total_tests": 2505934.0, + "total_tests_per_thousand": 253.37, + "new_tests_per_thousand": 3.304, + "new_tests_smoothed": 43677.0, + "new_tests_smoothed_per_thousand": 4.416, + "tests_per_case": 68.367, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-07", + "total_cases": 38268.0, + "new_cases": 626.0, + "new_cases_smoothed": 624.571, + "total_deaths": 275.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 3869.207, + "new_cases_per_million": 63.294, + "new_cases_smoothed_per_million": 63.149, + "total_deaths_per_million": 27.805, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 37640.0, + "total_tests": 2543574.0, + "total_tests_per_thousand": 257.176, + "new_tests_per_thousand": 3.806, + "new_tests_smoothed": 44049.0, + "new_tests_smoothed_per_thousand": 4.454, + "tests_per_case": 70.527, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-08", + "total_cases": 38808.0, + "new_cases": 540.0, + "new_cases_smoothed": 607.286, + "total_deaths": 276.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 3923.805, + "new_cases_per_million": 54.598, + "new_cases_smoothed_per_million": 61.402, + "total_deaths_per_million": 27.906, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 47201.0, + "total_tests": 2590775.0, + "total_tests_per_thousand": 261.948, + "new_tests_per_thousand": 4.772, + "new_tests_smoothed": 44826.0, + "new_tests_smoothed_per_thousand": 4.532, + "tests_per_case": 73.814, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-09", + "total_cases": 39376.0, + "new_cases": 568.0, + "new_cases_smoothed": 597.714, + "total_deaths": 281.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 3981.234, + "new_cases_per_million": 57.429, + "new_cases_smoothed_per_million": 60.434, + "total_deaths_per_million": 28.411, + "new_deaths_per_million": 0.506, + "new_deaths_smoothed_per_million": 0.217, + "new_tests": 45378.0, + "total_tests": 2636153.0, + "total_tests_per_thousand": 266.537, + "new_tests_per_thousand": 4.588, + "new_tests_smoothed": 43477.0, + "new_tests_smoothed_per_thousand": 4.396, + "tests_per_case": 72.73899999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-10", + "total_cases": 39904.0, + "new_cases": 528.0, + "new_cases_smoothed": 588.0, + "total_deaths": 283.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 4034.619, + "new_cases_per_million": 53.385, + "new_cases_smoothed_per_million": 59.452, + "total_deaths_per_million": 28.614, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 44167.0, + "total_tests": 2680320.0, + "total_tests_per_thousand": 271.002, + "new_tests_per_thousand": 4.466, + "new_tests_smoothed": 43466.0, + "new_tests_smoothed_per_thousand": 4.395, + "tests_per_case": 73.922, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-11", + "total_cases": 40507.0, + "new_cases": 603.0, + "new_cases_smoothed": 592.571, + "total_deaths": 284.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 4095.588, + "new_cases_per_million": 60.968, + "new_cases_smoothed_per_million": 59.914, + "total_deaths_per_million": 28.715, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 40724.0, + "total_tests": 2721044.0, + "total_tests_per_thousand": 275.12, + "new_tests_per_thousand": 4.118, + "new_tests_smoothed": 41713.0, + "new_tests_smoothed_per_thousand": 4.218, + "tests_per_case": 70.393, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-12", + "total_cases": 40986.0, + "new_cases": 479.0, + "new_cases_smoothed": 566.857, + "total_deaths": 286.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4144.018, + "new_cases_per_million": 48.431, + "new_cases_smoothed_per_million": 57.314, + "total_deaths_per_million": 28.917, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 43013.0, + "total_tests": 2764057.0, + "total_tests_per_thousand": 279.469, + "new_tests_per_thousand": 4.349, + "new_tests_smoothed": 41543.0, + "new_tests_smoothed_per_thousand": 4.2, + "tests_per_case": 73.28699999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-13", + "total_cases": 41499.0, + "new_cases": 513.0, + "new_cases_smoothed": 551.0, + "total_deaths": 287.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4195.887, + "new_cases_per_million": 51.868, + "new_cases_smoothed_per_million": 55.711, + "total_deaths_per_million": 29.018, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 27041.0, + "total_tests": 2791098.0, + "total_tests_per_thousand": 282.203, + "new_tests_per_thousand": 2.734, + "new_tests_smoothed": 40738.0, + "new_tests_smoothed_per_thousand": 4.119, + "tests_per_case": 73.935, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-14", + "total_cases": 41990.0, + "new_cases": 491.0, + "new_cases_smoothed": 531.714, + "total_deaths": 288.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4245.531, + "new_cases_per_million": 49.644, + "new_cases_smoothed_per_million": 53.761, + "total_deaths_per_million": 29.119, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 38036.0, + "total_tests": 2829134.0, + "total_tests_per_thousand": 286.048, + "new_tests_per_thousand": 3.846, + "new_tests_smoothed": 40794.0, + "new_tests_smoothed_per_thousand": 4.125, + "tests_per_case": 76.722, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-15", + "total_cases": 42294.0, + "new_cases": 304.0, + "new_cases_smoothed": 498.0, + "total_deaths": 289.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4276.268, + "new_cases_per_million": 30.737, + "new_cases_smoothed_per_million": 50.352, + "total_deaths_per_million": 29.22, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 39887.0, + "total_tests": 2869021.0, + "total_tests_per_thousand": 290.081, + "new_tests_per_thousand": 4.033, + "new_tests_smoothed": 39749.0, + "new_tests_smoothed_per_thousand": 4.019, + "tests_per_case": 79.817, + "positive_rate": 0.013000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 42636.0, + "new_cases": 342.0, + "new_cases_smoothed": 465.714, + "total_deaths": 291.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4310.847, + "new_cases_per_million": 34.579, + "new_cases_smoothed_per_million": 47.088, + "total_deaths_per_million": 29.422, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 40478.0, + "total_tests": 2909499.0, + "total_tests_per_thousand": 294.174, + "new_tests_per_thousand": 4.093, + "new_tests_smoothed": 39049.0, + "new_tests_smoothed_per_thousand": 3.948, + "tests_per_case": 83.848, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 42982.0, + "new_cases": 346.0, + "new_cases_smoothed": 439.714, + "total_deaths": 293.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4345.83, + "new_cases_per_million": 34.983, + "new_cases_smoothed_per_million": 44.459, + "total_deaths_per_million": 29.625, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 38502.0, + "total_tests": 2948001.0, + "total_tests_per_thousand": 298.067, + "new_tests_per_thousand": 3.893, + "new_tests_smoothed": 38240.0, + "new_tests_smoothed_per_thousand": 3.866, + "tests_per_case": 86.96600000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "total_cases": 43364.0, + "new_cases": 382.0, + "new_cases_smoothed": 408.143, + "total_deaths": 295.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4384.454, + "new_cases_per_million": 38.623, + "new_cases_smoothed_per_million": 41.267, + "total_deaths_per_million": 29.827, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 34364.0, + "total_tests": 2982365.0, + "total_tests_per_thousand": 301.541, + "new_tests_per_thousand": 3.474, + "new_tests_smoothed": 37332.0, + "new_tests_smoothed_per_thousand": 3.775, + "tests_per_case": 91.46799999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 43752.0, + "new_cases": 388.0, + "new_cases_smoothed": 395.143, + "total_deaths": 298.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4423.684, + "new_cases_per_million": 39.23, + "new_cases_smoothed_per_million": 39.952, + "total_deaths_per_million": 30.13, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 48524.0, + "total_tests": 3030889.0, + "total_tests_per_thousand": 306.448, + "new_tests_per_thousand": 4.906, + "new_tests_smoothed": 38119.0, + "new_tests_smoothed_per_thousand": 3.854, + "tests_per_case": 96.469, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 44145.0, + "new_cases": 393.0, + "new_cases_smoothed": 378.0, + "total_deaths": 300.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4463.419, + "new_cases_per_million": 39.736, + "new_cases_smoothed_per_million": 38.219, + "total_deaths_per_million": 30.332, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 40876.0, + "total_tests": 3071765.0, + "total_tests_per_thousand": 310.58, + "new_tests_per_thousand": 4.133, + "new_tests_smoothed": 40095.0, + "new_tests_smoothed_per_thousand": 4.054, + "tests_per_case": 106.071, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 44533.0, + "new_cases": 388.0, + "new_cases_smoothed": 363.286, + "total_deaths": 301.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4502.649, + "new_cases_per_million": 39.23, + "new_cases_smoothed_per_million": 36.731, + "total_deaths_per_million": 30.434, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 40956.0, + "total_tests": 3112721.0, + "total_tests_per_thousand": 314.721, + "new_tests_per_thousand": 4.141, + "new_tests_smoothed": 40512.0, + "new_tests_smoothed_per_thousand": 4.096, + "tests_per_case": 111.516, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 44925.0, + "new_cases": 392.0, + "new_cases_smoothed": 375.857, + "total_deaths": 302.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 4542.283, + "new_cases_per_million": 39.634, + "new_cases_smoothed_per_million": 38.002, + "total_deaths_per_million": 30.535, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.188, + "new_tests": 44291.0, + "total_tests": 3157012.0, + "total_tests_per_thousand": 319.2, + "new_tests_per_thousand": 4.478, + "new_tests_smoothed": 41142.0, + "new_tests_smoothed_per_thousand": 4.16, + "tests_per_case": 109.462, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-23", + "total_cases": 45303.0, + "new_cases": 378.0, + "new_cases_smoothed": 381.0, + "total_deaths": 303.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4580.502, + "new_cases_per_million": 38.219, + "new_cases_smoothed_per_million": 38.522, + "total_deaths_per_million": 30.636, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 49650.0, + "total_tests": 3206662.0, + "total_tests_per_thousand": 324.22, + "new_tests_per_thousand": 5.02, + "new_tests_smoothed": 42452.0, + "new_tests_smoothed_per_thousand": 4.292, + "tests_per_case": 111.42299999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-24", + "total_cases": 45683.0, + "new_cases": 380.0, + "new_cases_smoothed": 385.857, + "total_deaths": 305.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4618.923, + "new_cases_per_million": 38.421, + "new_cases_smoothed_per_million": 39.013, + "total_deaths_per_million": 30.838, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 49152.0, + "total_tests": 3255814.0, + "total_tests_per_thousand": 329.189, + "new_tests_per_thousand": 4.97, + "new_tests_smoothed": 43973.0, + "new_tests_smoothed_per_thousand": 4.446, + "tests_per_case": 113.962, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-25", + "total_cases": 46133.0, + "new_cases": 450.0, + "new_cases_smoothed": 395.571, + "total_deaths": 307.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4664.422, + "new_cases_per_million": 45.499, + "new_cases_smoothed_per_million": 39.995, + "total_deaths_per_million": 31.04, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 52527.0, + "total_tests": 3308341.0, + "total_tests_per_thousand": 334.5, + "new_tests_per_thousand": 5.311, + "new_tests_smoothed": 46568.0, + "new_tests_smoothed_per_thousand": 4.708, + "tests_per_case": 117.723, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-26", + "total_cases": 46563.0, + "new_cases": 430.0, + "new_cases_smoothed": 401.571, + "total_deaths": 308.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4707.899, + "new_cases_per_million": 43.477, + "new_cases_smoothed_per_million": 40.602, + "total_deaths_per_million": 31.141, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 58741.0, + "total_tests": 3367082.0, + "total_tests_per_thousand": 340.439, + "new_tests_per_thousand": 5.939, + "new_tests_smoothed": 48028.0, + "new_tests_smoothed_per_thousand": 4.856, + "tests_per_case": 119.6, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-27", + "total_cases": 46973.0, + "new_cases": 410.0, + "new_cases_smoothed": 404.0, + "total_deaths": 310.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4749.353, + "new_cases_per_million": 41.454, + "new_cases_smoothed_per_million": 40.848, + "total_deaths_per_million": 31.344, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 43551.0, + "total_tests": 3410633.0, + "total_tests_per_thousand": 344.843, + "new_tests_per_thousand": 4.403, + "new_tests_smoothed": 48410.0, + "new_tests_smoothed_per_thousand": 4.895, + "tests_per_case": 119.82700000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-28", + "total_cases": 47360.0, + "new_cases": 387.0, + "new_cases_smoothed": 403.857, + "total_deaths": 311.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4788.482, + "new_cases_per_million": 39.129, + "new_cases_smoothed_per_million": 40.833, + "total_deaths_per_million": 31.445, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 63970.0, + "total_tests": 3474603.0, + "total_tests_per_thousand": 351.311, + "new_tests_per_thousand": 6.468, + "new_tests_smoothed": 51697.0, + "new_tests_smoothed_per_thousand": 5.227, + "tests_per_case": 128.00799999999998, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-29", + "total_cases": 47797.0, + "new_cases": 437.0, + "new_cases_smoothed": 410.286, + "total_deaths": 313.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4832.666, + "new_cases_per_million": 44.184, + "new_cases_smoothed_per_million": 41.483, + "total_deaths_per_million": 31.647, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 62028.0, + "total_tests": 3536631.0, + "total_tests_per_thousand": 357.582, + "new_tests_per_thousand": 6.272, + "new_tests_smoothed": 54231.0, + "new_tests_smoothed_per_thousand": 5.483, + "tests_per_case": 132.179, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-06-30", + "total_cases": 48246.0, + "new_cases": 449.0, + "new_cases_smoothed": 420.429, + "total_deaths": 314.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4878.064, + "new_cases_per_million": 45.398, + "new_cases_smoothed_per_million": 42.509, + "total_deaths_per_million": 31.748, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 56177.0, + "total_tests": 3592808.0, + "total_tests_per_thousand": 363.262, + "new_tests_per_thousand": 5.68, + "new_tests_smoothed": 55164.0, + "new_tests_smoothed_per_thousand": 5.578, + "tests_per_case": 131.209, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-01", + "total_cases": 48667.0, + "new_cases": 421.0, + "new_cases_smoothed": 426.286, + "total_deaths": 315.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 4920.63, + "new_cases_per_million": 42.567, + "new_cases_smoothed_per_million": 43.101, + "total_deaths_per_million": 31.849, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 54358.0, + "total_tests": 3647166.0, + "total_tests_per_thousand": 368.758, + "new_tests_per_thousand": 5.496, + "new_tests_smoothed": 55907.0, + "new_tests_smoothed_per_thousand": 5.653, + "tests_per_case": 131.149, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-02", + "total_cases": 49069.0, + "new_cases": 402.0, + "new_cases_smoothed": 419.429, + "total_deaths": 316.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 4961.276, + "new_cases_per_million": 40.645, + "new_cases_smoothed_per_million": 42.408, + "total_deaths_per_million": 31.95, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 71697.0, + "total_tests": 3718863.0, + "total_tests_per_thousand": 376.007, + "new_tests_per_thousand": 7.249, + "new_tests_smoothed": 58646.0, + "new_tests_smoothed_per_thousand": 5.93, + "tests_per_case": 139.82399999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-07-03", + "total_cases": 49469.0, + "new_cases": 400.0, + "new_cases_smoothed": 415.143, + "total_deaths": 317.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5001.719, + "new_cases_per_million": 40.443, + "new_cases_smoothed_per_million": 41.974, + "total_deaths_per_million": 32.051, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 47930.0, + "total_tests": 3766793.0, + "total_tests_per_thousand": 380.853, + "new_tests_per_thousand": 4.846, + "new_tests_smoothed": 57102.0, + "new_tests_smoothed_per_thousand": 5.773, + "tests_per_case": 137.548, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-04", + "total_cases": 50141.0, + "new_cases": 672.0, + "new_cases_smoothed": 452.571, + "total_deaths": 318.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5069.664, + "new_cases_per_million": 67.945, + "new_cases_smoothed_per_million": 45.759, + "total_deaths_per_million": 32.152, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 28009.0, + "total_tests": 3794802.0, + "total_tests_per_thousand": 383.685, + "new_tests_per_thousand": 2.832, + "new_tests_smoothed": 54881.0, + "new_tests_smoothed_per_thousand": 5.549, + "tests_per_case": 121.265, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 52.78 + }, + { + "date": "2020-07-05", + "total_cases": 50857.0, + "new_cases": 716.0, + "new_cases_smoothed": 499.571, + "total_deaths": 321.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5142.057, + "new_cases_per_million": 72.393, + "new_cases_smoothed_per_million": 50.511, + "total_deaths_per_million": 32.456, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 44192.0, + "total_tests": 3838994.0, + "total_tests_per_thousand": 388.154, + "new_tests_per_thousand": 4.468, + "new_tests_smoothed": 52056.0, + "new_tests_smoothed_per_thousand": 5.263, + "tests_per_case": 104.20100000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-06", + "total_cases": 51540.0, + "new_cases": 683.0, + "new_cases_smoothed": 534.714, + "total_deaths": 323.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5211.114, + "new_cases_per_million": 69.057, + "new_cases_smoothed_per_million": 54.064, + "total_deaths_per_million": 32.658, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 51430.0, + "total_tests": 3890424.0, + "total_tests_per_thousand": 393.354, + "new_tests_per_thousand": 5.2, + "new_tests_smoothed": 50542.0, + "new_tests_smoothed_per_thousand": 5.11, + "tests_per_case": 94.522, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-07", + "total_cases": 52068.0, + "new_cases": 528.0, + "new_cases_smoothed": 546.0, + "total_deaths": 324.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5264.499, + "new_cases_per_million": 53.385, + "new_cases_smoothed_per_million": 55.205, + "total_deaths_per_million": 32.759, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 49777.0, + "total_tests": 3940201.0, + "total_tests_per_thousand": 398.386, + "new_tests_per_thousand": 5.033, + "new_tests_smoothed": 49628.0, + "new_tests_smoothed_per_thousand": 5.018, + "tests_per_case": 90.89399999999999, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-08", + "total_cases": 52600.0, + "new_cases": 532.0, + "new_cases_smoothed": 561.857, + "total_deaths": 326.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5318.288, + "new_cases_per_million": 53.79, + "new_cases_smoothed_per_million": 56.808, + "total_deaths_per_million": 32.961, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 47322.0, + "total_tests": 3987523.0, + "total_tests_per_thousand": 403.171, + "new_tests_per_thousand": 4.785, + "new_tests_smoothed": 48622.0, + "new_tests_smoothed_per_thousand": 4.916, + "tests_per_case": 86.538, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-09", + "total_cases": 53045.0, + "new_cases": 445.0, + "new_cases_smoothed": 568.0, + "total_deaths": 327.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5363.282, + "new_cases_per_million": 44.993, + "new_cases_smoothed_per_million": 57.429, + "total_deaths_per_million": 33.062, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 58504.0, + "total_tests": 4046027.0, + "total_tests_per_thousand": 409.086, + "new_tests_per_thousand": 5.915, + "new_tests_smoothed": 46738.0, + "new_tests_smoothed_per_thousand": 4.726, + "tests_per_case": 82.285, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-10", + "total_cases": 53577.0, + "new_cases": 532.0, + "new_cases_smoothed": 586.857, + "total_deaths": 328.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 5417.071, + "new_cases_per_million": 53.79, + "new_cases_smoothed_per_million": 59.336, + "total_deaths_per_million": 33.163, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 50139.0, + "total_tests": 4096166.0, + "total_tests_per_thousand": 414.156, + "new_tests_per_thousand": 5.069, + "new_tests_smoothed": 47053.0, + "new_tests_smoothed_per_thousand": 4.757, + "tests_per_case": 80.178, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-11", + "total_cases": 54050.0, + "new_cases": 473.0, + "new_cases_smoothed": 558.429, + "total_deaths": 330.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 5464.895, + "new_cases_per_million": 47.824, + "new_cases_smoothed_per_million": 56.462, + "total_deaths_per_million": 33.366, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 34478.0, + "total_tests": 4130644.0, + "total_tests_per_thousand": 417.642, + "new_tests_per_thousand": 3.486, + "new_tests_smoothed": 47977.0, + "new_tests_smoothed_per_thousand": 4.851, + "tests_per_case": 85.914, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-12", + "total_cases": 54453.0, + "new_cases": 403.0, + "new_cases_smoothed": 513.714, + "total_deaths": 331.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5505.642, + "new_cases_per_million": 40.747, + "new_cases_smoothed_per_million": 51.941, + "total_deaths_per_million": 33.467, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 50325.0, + "total_tests": 4180969.0, + "total_tests_per_thousand": 422.73, + "new_tests_per_thousand": 5.088, + "new_tests_smoothed": 48854.0, + "new_tests_smoothed_per_thousand": 4.94, + "tests_per_case": 95.1, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-13", + "total_cases": 54854.0, + "new_cases": 401.0, + "new_cases_smoothed": 473.429, + "total_deaths": 333.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5546.186, + "new_cases_per_million": 40.544, + "new_cases_smoothed_per_million": 47.867, + "total_deaths_per_million": 33.669, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 34478.0, + "total_tests": 4215447.0, + "total_tests_per_thousand": 426.216, + "new_tests_per_thousand": 3.486, + "new_tests_smoothed": 46432.0, + "new_tests_smoothed_per_thousand": 4.695, + "tests_per_case": 98.07600000000001, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-14", + "total_cases": 55198.0, + "new_cases": 344.0, + "new_cases_smoothed": 447.143, + "total_deaths": 334.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 5580.967, + "new_cases_per_million": 34.781, + "new_cases_smoothed_per_million": 45.21, + "total_deaths_per_million": 33.77, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 52782.0, + "total_tests": 4268229.0, + "total_tests_per_thousand": 431.553, + "new_tests_per_thousand": 5.337, + "new_tests_smoothed": 46861.0, + "new_tests_smoothed_per_thousand": 4.738, + "tests_per_case": 104.801, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-15", + "total_cases": 55573.0, + "new_cases": 375.0, + "new_cases_smoothed": 424.714, + "total_deaths": 335.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 5618.883, + "new_cases_per_million": 37.916, + "new_cases_smoothed_per_million": 42.942, + "total_deaths_per_million": 33.871, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 48534.0, + "total_tests": 4316763.0, + "total_tests_per_thousand": 436.46, + "new_tests_per_thousand": 4.907, + "new_tests_smoothed": 47034.0, + "new_tests_smoothed_per_thousand": 4.756, + "tests_per_case": 110.743, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-16", + "total_cases": 55848.0, + "new_cases": 275.0, + "new_cases_smoothed": 400.429, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 5646.688, + "new_cases_per_million": 27.805, + "new_cases_smoothed_per_million": 40.487, + "total_deaths_per_million": 33.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 48931.0, + "total_tests": 4365694.0, + "total_tests_per_thousand": 441.407, + "new_tests_per_thousand": 4.947, + "new_tests_smoothed": 45667.0, + "new_tests_smoothed_per_thousand": 4.617, + "tests_per_case": 114.045, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-17", + "total_cases": 56129.0, + "new_cases": 281.0, + "new_cases_smoothed": 364.571, + "total_deaths": 335.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5675.099, + "new_cases_per_million": 28.411, + "new_cases_smoothed_per_million": 36.861, + "total_deaths_per_million": 33.871, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 48561.0, + "total_tests": 4414255.0, + "total_tests_per_thousand": 446.317, + "new_tests_per_thousand": 4.91, + "new_tests_smoothed": 45441.0, + "new_tests_smoothed_per_thousand": 4.594, + "tests_per_case": 124.64200000000001, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-18", + "total_cases": 56422.0, + "new_cases": 293.0, + "new_cases_smoothed": 338.857, + "total_deaths": 337.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5704.724, + "new_cases_per_million": 29.625, + "new_cases_smoothed_per_million": 34.261, + "total_deaths_per_million": 34.073, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 46950.0, + "total_tests": 4461205.0, + "total_tests_per_thousand": 451.064, + "new_tests_per_thousand": 4.747, + "new_tests_smoothed": 47223.0, + "new_tests_smoothed_per_thousand": 4.775, + "tests_per_case": 139.36, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-19", + "total_cases": 56711.0, + "new_cases": 289.0, + "new_cases_smoothed": 322.571, + "total_deaths": 338.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5733.944, + "new_cases_per_million": 29.22, + "new_cases_smoothed_per_million": 32.615, + "total_deaths_per_million": 34.175, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 47723.0, + "total_tests": 4508928.0, + "total_tests_per_thousand": 455.889, + "new_tests_per_thousand": 4.825, + "new_tests_smoothed": 46851.0, + "new_tests_smoothed_per_thousand": 4.737, + "tests_per_case": 145.24200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-20", + "total_cases": 56922.0, + "new_cases": 211.0, + "new_cases_smoothed": 295.429, + "total_deaths": 339.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5755.278, + "new_cases_per_million": 21.334, + "new_cases_smoothed_per_million": 29.87, + "total_deaths_per_million": 34.276, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 27224.0, + "total_tests": 4536152.0, + "total_tests_per_thousand": 458.642, + "new_tests_per_thousand": 2.753, + "new_tests_smoothed": 45815.0, + "new_tests_smoothed_per_thousand": 4.632, + "tests_per_case": 155.08, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-21", + "total_cases": 57193.0, + "new_cases": 271.0, + "new_cases_smoothed": 285.0, + "total_deaths": 340.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5782.678, + "new_cases_per_million": 27.4, + "new_cases_smoothed_per_million": 28.816, + "total_deaths_per_million": 34.377, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 40050.0, + "total_tests": 4576202.0, + "total_tests_per_thousand": 462.691, + "new_tests_per_thousand": 4.049, + "new_tests_smoothed": 43996.0, + "new_tests_smoothed_per_thousand": 4.448, + "tests_per_case": 154.372, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-22", + "total_cases": 57498.0, + "new_cases": 305.0, + "new_cases_smoothed": 275.0, + "total_deaths": 341.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5813.516, + "new_cases_per_million": 30.838, + "new_cases_smoothed_per_million": 27.805, + "total_deaths_per_million": 34.478, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 47014.0, + "total_tests": 4623216.0, + "total_tests_per_thousand": 467.445, + "new_tests_per_thousand": 4.753, + "new_tests_smoothed": 43779.0, + "new_tests_smoothed_per_thousand": 4.426, + "tests_per_case": 159.196, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-23", + "total_cases": 57734.0, + "new_cases": 236.0, + "new_cases_smoothed": 269.429, + "total_deaths": 342.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5837.378, + "new_cases_per_million": 23.862, + "new_cases_smoothed_per_million": 27.241, + "total_deaths_per_million": 34.579, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 54096.0, + "total_tests": 4677312.0, + "total_tests_per_thousand": 472.914, + "new_tests_per_thousand": 5.47, + "new_tests_smoothed": 44517.0, + "new_tests_smoothed_per_thousand": 4.501, + "tests_per_case": 165.227, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-24", + "total_cases": 57988.0, + "new_cases": 254.0, + "new_cases_smoothed": 265.571, + "total_deaths": 342.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 5863.059, + "new_cases_per_million": 25.681, + "new_cases_smoothed_per_million": 26.851, + "total_deaths_per_million": 34.579, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 46965.0, + "total_tests": 4724277.0, + "total_tests_per_thousand": 477.663, + "new_tests_per_thousand": 4.749, + "new_tests_smoothed": 44289.0, + "new_tests_smoothed_per_thousand": 4.478, + "tests_per_case": 166.769, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-25", + "total_cases": 58249.0, + "new_cases": 261.0, + "new_cases_smoothed": 261.0, + "total_deaths": 343.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 5889.448, + "new_cases_per_million": 26.389, + "new_cases_smoothed_per_million": 26.389, + "total_deaths_per_million": 34.68, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 52627.0, + "total_tests": 4776904.0, + "total_tests_per_thousand": 482.984, + "new_tests_per_thousand": 5.321, + "new_tests_smoothed": 45100.0, + "new_tests_smoothed_per_thousand": 4.56, + "tests_per_case": 172.797, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-26", + "total_cases": 58562.0, + "new_cases": 313.0, + "new_cases_smoothed": 264.429, + "total_deaths": 343.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5921.095, + "new_cases_per_million": 31.647, + "new_cases_smoothed_per_million": 26.736, + "total_deaths_per_million": 34.68, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 51162.0, + "total_tests": 4828066.0, + "total_tests_per_thousand": 488.157, + "new_tests_per_thousand": 5.173, + "new_tests_smoothed": 45591.0, + "new_tests_smoothed_per_thousand": 4.61, + "tests_per_case": 172.41299999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-27", + "total_cases": 58913.0, + "new_cases": 351.0, + "new_cases_smoothed": 284.429, + "total_deaths": 344.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5956.584, + "new_cases_per_million": 35.489, + "new_cases_smoothed_per_million": 28.758, + "total_deaths_per_million": 34.781, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 47229.0, + "total_tests": 4875295.0, + "total_tests_per_thousand": 492.932, + "new_tests_per_thousand": 4.775, + "new_tests_smoothed": 48449.0, + "new_tests_smoothed_per_thousand": 4.899, + "tests_per_case": 170.338, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-28", + "total_cases": 59177.0, + "new_cases": 264.0, + "new_cases_smoothed": 283.429, + "total_deaths": 345.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5983.277, + "new_cases_per_million": 26.693, + "new_cases_smoothed_per_million": 28.657, + "total_deaths_per_million": 34.882, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 43622.0, + "total_tests": 4918917.0, + "total_tests_per_thousand": 497.343, + "new_tests_per_thousand": 4.411, + "new_tests_smoothed": 48959.0, + "new_tests_smoothed_per_thousand": 4.95, + "tests_per_case": 172.738, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-29", + "total_cases": 59546.0, + "new_cases": 369.0, + "new_cases_smoothed": 292.571, + "total_deaths": 347.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6020.586, + "new_cases_per_million": 37.309, + "new_cases_smoothed_per_million": 29.581, + "total_deaths_per_million": 35.085, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 47483.0, + "total_tests": 4966400.0, + "total_tests_per_thousand": 502.143, + "new_tests_per_thousand": 4.801, + "new_tests_smoothed": 49026.0, + "new_tests_smoothed_per_thousand": 4.957, + "tests_per_case": 167.56900000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-07-30", + "total_cases": 59921.0, + "new_cases": 375.0, + "new_cases_smoothed": 312.429, + "total_deaths": 347.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6058.501, + "new_cases_per_million": 37.916, + "new_cases_smoothed_per_million": 31.589, + "total_deaths_per_million": 35.085, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 55257.0, + "total_tests": 5021657.0, + "total_tests_per_thousand": 507.73, + "new_tests_per_thousand": 5.587, + "new_tests_smoothed": 49192.0, + "new_tests_smoothed_per_thousand": 4.974, + "tests_per_case": 157.45, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 32.41 + }, + { + "date": "2020-07-31", + "total_cases": 60506.0, + "new_cases": 585.0, + "new_cases_smoothed": 359.714, + "total_deaths": 351.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6117.649, + "new_cases_per_million": 59.148, + "new_cases_smoothed_per_million": 36.37, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 54727.0, + "total_tests": 5076384.0, + "total_tests_per_thousand": 513.264, + "new_tests_per_thousand": 5.533, + "new_tests_smoothed": 50301.0, + "new_tests_smoothed_per_thousand": 5.086, + "tests_per_case": 139.836, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-01", + "total_cases": 60506.0, + "new_cases": 0.0, + "new_cases_smoothed": 322.429, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6117.649, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 32.6, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 43268.0, + "total_tests": 5119652.0, + "total_tests_per_thousand": 517.639, + "new_tests_per_thousand": 4.375, + "new_tests_smoothed": 48964.0, + "new_tests_smoothed_per_thousand": 4.951, + "tests_per_case": 151.86, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-02", + "total_cases": 60760.0, + "new_cases": 254.0, + "new_cases_smoothed": 314.0, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6143.331, + "new_cases_per_million": 25.681, + "new_cases_smoothed_per_million": 31.748, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 42428.0, + "total_tests": 5162080.0, + "total_tests_per_thousand": 521.928, + "new_tests_per_thousand": 4.29, + "new_tests_smoothed": 47716.0, + "new_tests_smoothed_per_thousand": 4.824, + "tests_per_case": 151.96200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 43.52 + }, + { + "date": "2020-08-03", + "total_cases": 60999.0, + "new_cases": 239.0, + "new_cases_smoothed": 298.0, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6167.496, + "new_cases_per_million": 24.165, + "new_cases_smoothed_per_million": 30.13, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 27811.0, + "total_tests": 5189891.0, + "total_tests_per_thousand": 524.74, + "new_tests_per_thousand": 2.812, + "new_tests_smoothed": 44942.0, + "new_tests_smoothed_per_thousand": 4.544, + "tests_per_case": 150.812, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-04", + "total_cases": 61163.0, + "new_cases": 164.0, + "new_cases_smoothed": 283.714, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6184.077, + "new_cases_per_million": 16.582, + "new_cases_smoothed_per_million": 28.686, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 29398.0, + "total_tests": 5219289.0, + "total_tests_per_thousand": 527.713, + "new_tests_per_thousand": 2.972, + "new_tests_smoothed": 42910.0, + "new_tests_smoothed_per_thousand": 4.339, + "tests_per_case": 151.244, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-05", + "total_cases": 61352.0, + "new_cases": 189.0, + "new_cases_smoothed": 258.0, + "total_deaths": 351.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6203.187, + "new_cases_per_million": 19.109, + "new_cases_smoothed_per_million": 26.086, + "total_deaths_per_million": 35.489, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 43369.0, + "total_tests": 5262658.0, + "total_tests_per_thousand": 532.098, + "new_tests_per_thousand": 4.385, + "new_tests_smoothed": 42323.0, + "new_tests_smoothed_per_thousand": 4.279, + "tests_per_case": 164.043, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-06", + "total_cases": 61606.0, + "new_cases": 254.0, + "new_cases_smoothed": 240.714, + "total_deaths": 353.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6228.868, + "new_cases_per_million": 25.681, + "new_cases_smoothed_per_million": 24.338, + "total_deaths_per_million": 35.691, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 50729.0, + "total_tests": 5313387.0, + "total_tests_per_thousand": 537.227, + "new_tests_per_thousand": 5.129, + "new_tests_smoothed": 41676.0, + "new_tests_smoothed_per_thousand": 4.214, + "tests_per_case": 173.135, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-07", + "total_cases": 61845.0, + "new_cases": 239.0, + "new_cases_smoothed": 191.286, + "total_deaths": 354.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6253.033, + "new_cases_per_million": 24.165, + "new_cases_smoothed_per_million": 19.341, + "total_deaths_per_million": 35.792, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 61978.0, + "total_tests": 5375365.0, + "total_tests_per_thousand": 543.493, + "new_tests_per_thousand": 6.266, + "new_tests_smoothed": 42712.0, + "new_tests_smoothed_per_thousand": 4.319, + "tests_per_case": 223.28900000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-08", + "total_cases": 62061.0, + "new_cases": 216.0, + "new_cases_smoothed": 222.143, + "total_deaths": 356.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6274.873, + "new_cases_per_million": 21.839, + "new_cases_smoothed_per_million": 22.46, + "total_deaths_per_million": 35.994, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 63792.0, + "total_tests": 5439157.0, + "total_tests_per_thousand": 549.943, + "new_tests_per_thousand": 6.45, + "new_tests_smoothed": 45644.0, + "new_tests_smoothed_per_thousand": 4.615, + "tests_per_case": 205.47099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-09", + "total_cases": 62300.0, + "new_cases": 239.0, + "new_cases_smoothed": 220.0, + "total_deaths": 356.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6299.037, + "new_cases_per_million": 24.165, + "new_cases_smoothed_per_million": 22.244, + "total_deaths_per_million": 35.994, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 61544.0, + "total_tests": 5500701.0, + "total_tests_per_thousand": 556.166, + "new_tests_per_thousand": 6.223, + "new_tests_smoothed": 48374.0, + "new_tests_smoothed_per_thousand": 4.891, + "tests_per_case": 219.882, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-10", + "total_cases": 62525.0, + "new_cases": 225.0, + "new_cases_smoothed": 218.0, + "total_deaths": 357.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6321.787, + "new_cases_per_million": 22.749, + "new_cases_smoothed_per_million": 22.042, + "total_deaths_per_million": 36.096, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 58953.0, + "total_tests": 5559654.0, + "total_tests_per_thousand": 562.126, + "new_tests_per_thousand": 5.961, + "new_tests_smoothed": 52823.0, + "new_tests_smoothed_per_thousand": 5.341, + "tests_per_case": 242.30700000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-11", + "total_cases": 62704.0, + "new_cases": 179.0, + "new_cases_smoothed": 220.143, + "total_deaths": 357.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6339.885, + "new_cases_per_million": 18.098, + "new_cases_smoothed_per_million": 22.258, + "total_deaths_per_million": 36.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 64110.0, + "total_tests": 5623764.0, + "total_tests_per_thousand": 568.608, + "new_tests_per_thousand": 6.482, + "new_tests_smoothed": 57782.0, + "new_tests_smoothed_per_thousand": 5.842, + "tests_per_case": 262.475, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-12", + "total_cases": 62966.0, + "new_cases": 262.0, + "new_cases_smoothed": 230.571, + "total_deaths": 357.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6366.375, + "new_cases_per_million": 26.49, + "new_cases_smoothed_per_million": 23.313, + "total_deaths_per_million": 36.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 72630.0, + "total_tests": 5696394.0, + "total_tests_per_thousand": 575.952, + "new_tests_per_thousand": 7.343, + "new_tests_smoothed": 61962.0, + "new_tests_smoothed_per_thousand": 6.265, + "tests_per_case": 268.732, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-13", + "total_cases": 63212.0, + "new_cases": 246.0, + "new_cases_smoothed": 229.429, + "total_deaths": 357.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6391.248, + "new_cases_per_million": 24.873, + "new_cases_smoothed_per_million": 23.197, + "total_deaths_per_million": 36.096, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 68964.0, + "total_tests": 5765358.0, + "total_tests_per_thousand": 582.925, + "new_tests_per_thousand": 6.973, + "new_tests_smoothed": 64567.0, + "new_tests_smoothed_per_thousand": 6.528, + "tests_per_case": 281.425, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-14", + "total_cases": 63489.0, + "new_cases": 277.0, + "new_cases_smoothed": 234.857, + "total_deaths": 358.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6419.255, + "new_cases_per_million": 28.007, + "new_cases_smoothed_per_million": 23.746, + "total_deaths_per_million": 36.197, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 82344.0, + "total_tests": 5847702.0, + "total_tests_per_thousand": 591.25, + "new_tests_per_thousand": 8.326, + "new_tests_smoothed": 67477.0, + "new_tests_smoothed_per_thousand": 6.822, + "tests_per_case": 287.311, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-15", + "total_cases": 63819.0, + "new_cases": 330.0, + "new_cases_smoothed": 251.143, + "total_deaths": 359.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6452.621, + "new_cases_per_million": 33.366, + "new_cases_smoothed_per_million": 25.393, + "total_deaths_per_million": 36.298, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.043, + "new_tests": 77640.0, + "total_tests": 5925342.0, + "total_tests_per_thousand": 599.1, + "new_tests_per_thousand": 7.85, + "new_tests_smoothed": 69455.0, + "new_tests_smoothed_per_thousand": 7.022, + "tests_per_case": 276.556, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-16", + "total_cases": 64102.0, + "new_cases": 283.0, + "new_cases_smoothed": 257.429, + "total_deaths": 361.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6481.234, + "new_cases_per_million": 28.614, + "new_cases_smoothed_per_million": 26.028, + "total_deaths_per_million": 36.5, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.072, + "new_tests": 65186.0, + "total_tests": 5990528.0, + "total_tests_per_thousand": 605.691, + "new_tests_per_thousand": 6.591, + "new_tests_smoothed": 69975.0, + "new_tests_smoothed_per_thousand": 7.075, + "tests_per_case": 271.823, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-17", + "total_cases": 64312.0, + "new_cases": 210.0, + "new_cases_smoothed": 255.286, + "total_deaths": 364.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6502.467, + "new_cases_per_million": 21.233, + "new_cases_smoothed_per_million": 25.811, + "total_deaths_per_million": 36.803, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 71322.0, + "total_tests": 6061850.0, + "total_tests_per_thousand": 612.902, + "new_tests_per_thousand": 7.211, + "new_tests_smoothed": 71742.0, + "new_tests_smoothed_per_thousand": 7.254, + "tests_per_case": 281.026, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-18", + "total_cases": 64541.0, + "new_cases": 229.0, + "new_cases_smoothed": 262.429, + "total_deaths": 364.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 6525.621, + "new_cases_per_million": 23.154, + "new_cases_smoothed_per_million": 26.534, + "total_deaths_per_million": 36.803, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 59759.0, + "total_tests": 6121609.0, + "total_tests_per_thousand": 618.945, + "new_tests_per_thousand": 6.042, + "new_tests_smoothed": 71121.0, + "new_tests_smoothed_per_thousand": 7.191, + "tests_per_case": 271.01099999999997, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-19", + "total_cases": 64906.0, + "new_cases": 365.0, + "new_cases_smoothed": 277.143, + "total_deaths": 366.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6562.525, + "new_cases_per_million": 36.904, + "new_cases_smoothed_per_million": 28.021, + "total_deaths_per_million": 37.006, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 72026.0, + "total_tests": 6193635.0, + "total_tests_per_thousand": 626.227, + "new_tests_per_thousand": 7.282, + "new_tests_smoothed": 71034.0, + "new_tests_smoothed_per_thousand": 7.182, + "tests_per_case": 256.308, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-20", + "total_cases": 65341.0, + "new_cases": 435.0, + "new_cases_smoothed": 304.143, + "total_deaths": 367.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 6606.507, + "new_cases_per_million": 43.982, + "new_cases_smoothed_per_million": 30.751, + "total_deaths_per_million": 37.107, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 72283.0, + "total_tests": 6265918.0, + "total_tests_per_thousand": 633.535, + "new_tests_per_thousand": 7.308, + "new_tests_smoothed": 71509.0, + "new_tests_smoothed_per_thousand": 7.23, + "tests_per_case": 235.11599999999999, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-21", + "total_cases": 65802.0, + "new_cases": 461.0, + "new_cases_smoothed": 330.429, + "total_deaths": 369.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6653.118, + "new_cases_per_million": 46.611, + "new_cases_smoothed_per_million": 33.409, + "total_deaths_per_million": 37.309, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 82191.0, + "total_tests": 6348109.0, + "total_tests_per_thousand": 641.846, + "new_tests_per_thousand": 8.31, + "new_tests_smoothed": 71487.0, + "new_tests_smoothed_per_thousand": 7.228, + "tests_per_case": 216.34599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-22", + "total_cases": 66193.0, + "new_cases": 391.0, + "new_cases_smoothed": 339.143, + "total_deaths": 370.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6692.651, + "new_cases_per_million": 39.533, + "new_cases_smoothed_per_million": 34.29, + "total_deaths_per_million": 37.41, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 70079.0, + "total_tests": 6418188.0, + "total_tests_per_thousand": 648.931, + "new_tests_per_thousand": 7.086, + "new_tests_smoothed": 70407.0, + "new_tests_smoothed_per_thousand": 7.119, + "tests_per_case": 207.60299999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-23", + "total_cases": 66617.0, + "new_cases": 424.0, + "new_cases_smoothed": 359.286, + "total_deaths": 372.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6735.521, + "new_cases_per_million": 42.87, + "new_cases_smoothed_per_million": 36.327, + "total_deaths_per_million": 37.612, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 71216.0, + "total_tests": 6489404.0, + "total_tests_per_thousand": 656.132, + "new_tests_per_thousand": 7.201, + "new_tests_smoothed": 71268.0, + "new_tests_smoothed_per_thousand": 7.206, + "tests_per_case": 198.36, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-24", + "total_cases": 67007.0, + "new_cases": 390.0, + "new_cases_smoothed": 385.0, + "total_deaths": 375.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6774.953, + "new_cases_per_million": 39.432, + "new_cases_smoothed_per_million": 38.927, + "total_deaths_per_million": 37.916, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 71282.0, + "total_tests": 6560686.0, + "total_tests_per_thousand": 663.339, + "new_tests_per_thousand": 7.207, + "new_tests_smoothed": 71262.0, + "new_tests_smoothed_per_thousand": 7.205, + "tests_per_case": 185.09599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-25", + "total_cases": 67282.0, + "new_cases": 275.0, + "new_cases_smoothed": 391.571, + "total_deaths": 376.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 6802.758, + "new_cases_per_million": 27.805, + "new_cases_smoothed_per_million": 39.591, + "total_deaths_per_million": 38.017, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 69309.0, + "total_tests": 6629995.0, + "total_tests_per_thousand": 670.346, + "new_tests_per_thousand": 7.008, + "new_tests_smoothed": 72627.0, + "new_tests_smoothed_per_thousand": 7.343, + "tests_per_case": 185.476, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-26", + "total_cases": 67621.0, + "new_cases": 339.0, + "new_cases_smoothed": 387.857, + "total_deaths": 377.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6837.034, + "new_cases_per_million": 34.276, + "new_cases_smoothed_per_million": 39.216, + "total_deaths_per_million": 38.118, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 57419.0, + "total_tests": 6687414.0, + "total_tests_per_thousand": 676.152, + "new_tests_per_thousand": 5.806, + "new_tests_smoothed": 70540.0, + "new_tests_smoothed_per_thousand": 7.132, + "tests_per_case": 181.87099999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-27", + "total_cases": 68020.0, + "new_cases": 399.0, + "new_cases_smoothed": 382.714, + "total_deaths": 378.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 6877.376, + "new_cases_per_million": 40.342, + "new_cases_smoothed_per_million": 38.696, + "total_deaths_per_million": 38.219, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.159, + "new_tests": 68043.0, + "total_tests": 6755457.0, + "total_tests_per_thousand": 683.032, + "new_tests_per_thousand": 6.88, + "new_tests_smoothed": 69934.0, + "new_tests_smoothed_per_thousand": 7.071, + "tests_per_case": 182.732, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-28", + "total_cases": 68511.0, + "new_cases": 491.0, + "new_cases_smoothed": 387.0, + "total_deaths": 378.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6927.02, + "new_cases_per_million": 49.644, + "new_cases_smoothed_per_million": 39.129, + "total_deaths_per_million": 38.219, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 79680.0, + "total_tests": 6835137.0, + "total_tests_per_thousand": 691.088, + "new_tests_per_thousand": 8.056, + "new_tests_smoothed": 69575.0, + "new_tests_smoothed_per_thousand": 7.035, + "tests_per_case": 179.78, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-29", + "total_cases": 68901.0, + "new_cases": 390.0, + "new_cases_smoothed": 386.857, + "total_deaths": 379.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 6966.452, + "new_cases_per_million": 39.432, + "new_cases_smoothed_per_million": 39.114, + "total_deaths_per_million": 38.32, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 88803.0, + "total_tests": 6923940.0, + "total_tests_per_thousand": 700.067, + "new_tests_per_thousand": 8.979, + "new_tests_smoothed": 72250.0, + "new_tests_smoothed_per_thousand": 7.305, + "tests_per_case": 186.761, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-30", + "total_cases": 69328.0, + "new_cases": 427.0, + "new_cases_smoothed": 387.286, + "total_deaths": 379.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7009.625, + "new_cases_per_million": 43.173, + "new_cases_smoothed_per_million": 39.158, + "total_deaths_per_million": 38.32, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 87955.0, + "total_tests": 7011895.0, + "total_tests_per_thousand": 708.96, + "new_tests_per_thousand": 8.893, + "new_tests_smoothed": 74642.0, + "new_tests_smoothed_per_thousand": 7.547, + "tests_per_case": 192.731, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-08-31", + "total_cases": 69690.0, + "new_cases": 362.0, + "new_cases_smoothed": 383.286, + "total_deaths": 382.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7046.227, + "new_cases_per_million": 36.601, + "new_cases_smoothed_per_million": 38.753, + "total_deaths_per_million": 38.623, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 82763.0, + "total_tests": 7094658.0, + "total_tests_per_thousand": 717.328, + "new_tests_per_thousand": 8.368, + "new_tests_smoothed": 76282.0, + "new_tests_smoothed_per_thousand": 7.713, + "tests_per_case": 199.021, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 37.96 + }, + { + "date": "2020-09-01", + "total_cases": 70231.0, + "new_cases": 541.0, + "new_cases_smoothed": 421.286, + "total_deaths": 384.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7100.926, + "new_cases_per_million": 54.7, + "new_cases_smoothed_per_million": 42.595, + "total_deaths_per_million": 38.826, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.116, + "new_tests": 82772.0, + "total_tests": 7177430.0, + "total_tests_per_thousand": 725.697, + "new_tests_per_thousand": 8.369, + "new_tests_smoothed": 78205.0, + "new_tests_smoothed_per_thousand": 7.907, + "tests_per_case": 185.63400000000001, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 70805.0, + "new_cases": 574.0, + "new_cases_smoothed": 454.857, + "total_deaths": 384.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 7158.962, + "new_cases_per_million": 58.036, + "new_cases_smoothed_per_million": 45.99, + "total_deaths_per_million": 38.826, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "new_tests": 79623.0, + "total_tests": 7257053.0, + "total_tests_per_thousand": 733.747, + "new_tests_per_thousand": 8.051, + "new_tests_smoothed": 81377.0, + "new_tests_smoothed_per_thousand": 8.228, + "tests_per_case": 178.907, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 71540.0, + "new_cases": 735.0, + "new_cases_smoothed": 502.857, + "total_deaths": 387.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7233.277, + "new_cases_per_million": 74.314, + "new_cases_smoothed_per_million": 50.843, + "total_deaths_per_million": 39.129, + "new_deaths_per_million": 0.303, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 67821.0, + "total_tests": 7324874.0, + "total_tests_per_thousand": 740.604, + "new_tests_per_thousand": 6.857, + "new_tests_smoothed": 81345.0, + "new_tests_smoothed_per_thousand": 8.225, + "tests_per_case": 161.766, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 72154.0, + "new_cases": 614.0, + "new_cases_smoothed": 520.429, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7295.357, + "new_cases_per_million": 62.08, + "new_cases_smoothed_per_million": 52.62, + "total_deaths_per_million": 39.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.13 + }, + { + "date": "2020-09-05", + "total_cases": 72766.0, + "new_cases": 612.0, + "new_cases_smoothed": 552.143, + "total_deaths": 387.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 7357.235, + "new_cases_per_million": 61.878, + "new_cases_smoothed_per_million": 55.826, + "total_deaths_per_million": 39.129, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.116 + } + ] + }, + "GBR": { + "continent": "Europe", + "location": "United Kingdom", + "population": 67886004.0, + "population_density": 272.898, + "median_age": 40.8, + "aged_65_older": 18.517, + "aged_70_older": 12.527, + "gdp_per_capita": 39753.244, + "extreme_poverty": 0.2, + "cardiovasc_death_rate": 122.137, + "diabetes_prevalence": 4.28, + "female_smokers": 20.0, + "male_smokers": 24.7, + "hospital_beds_per_thousand": 2.54, + "life_expectancy": 81.32, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-24", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-25", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-26", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-27", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-28", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-29", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-30", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-01-31", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-01", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 8.33 + }, + { + "date": "2020-02-02", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-03", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-04", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-05", + "total_cases": 3.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.044, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-06", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-07", + "total_cases": 4.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.059, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-08", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.059, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-09", + "total_cases": 4.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.059, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-10", + "total_cases": 8.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.118, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-11", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.133, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-12", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.133, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-13", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-14", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-15", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-16", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-17", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-18", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-19", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-20", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-21", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-22", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.147, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-23", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.162, + "new_cases_per_million": 0.015, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-24", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.162, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-25", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.162, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-26", + "total_cases": 13.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.191, + "new_cases_per_million": 0.029, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-27", + "total_cases": 18.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.265, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.017, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-28", + "total_cases": 22.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.324, + "new_cases_per_million": 0.059, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-02-29", + "total_cases": 30.0, + "new_cases": 8.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.442, + "new_cases_per_million": 0.118, + "new_cases_smoothed_per_million": 0.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-01", + "total_cases": 42.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.619, + "new_cases_per_million": 0.177, + "new_cases_smoothed_per_million": 0.065, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-02", + "total_cases": 47.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.692, + "new_cases_per_million": 0.074, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 69.0, + "new_cases": 22.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.016, + "new_cases_per_million": 0.324, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 109.0, + "new_cases": 40.0, + "new_cases_smoothed": 13.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.606, + "new_cases_per_million": 0.589, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 164.0, + "new_cases": 55.0, + "new_cases_smoothed": 20.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.416, + "new_cases_per_million": 0.81, + "new_cases_smoothed_per_million": 0.307, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-06", + "total_cases": 220.0, + "new_cases": 56.0, + "new_cases_smoothed": 28.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.241, + "new_cases_per_million": 0.825, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 11.11 + }, + { + "date": "2020-03-07", + "total_cases": 271.0, + "new_cases": 51.0, + "new_cases_smoothed": 34.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.992, + "new_cases_per_million": 0.751, + "new_cases_smoothed_per_million": 0.507, + "total_deaths_per_million": 0.015, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.002, + "stringency_index": 11.11 + }, + { + "date": "2020-03-08", + "total_cases": 352.0, + "new_cases": 81.0, + "new_cases_smoothed": 44.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.185, + "new_cases_per_million": 1.193, + "new_cases_smoothed_per_million": 0.652, + "total_deaths_per_million": 0.029, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 11.11 + }, + { + "date": "2020-03-09", + "total_cases": 412.0, + "new_cases": 60.0, + "new_cases_smoothed": 52.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.069, + "new_cases_per_million": 0.884, + "new_cases_smoothed_per_million": 0.768, + "total_deaths_per_million": 0.029, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 11.11 + }, + { + "date": "2020-03-10", + "total_cases": 469.0, + "new_cases": 57.0, + "new_cases_smoothed": 57.143, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 6.909, + "new_cases_per_million": 0.84, + "new_cases_smoothed_per_million": 0.842, + "total_deaths_per_million": 0.044, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 11.11 + }, + { + "date": "2020-03-11", + "total_cases": 617.0, + "new_cases": 148.0, + "new_cases_smoothed": 72.571, + "total_deaths": 7.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 9.089, + "new_cases_per_million": 2.18, + "new_cases_smoothed_per_million": 1.069, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 11.11 + }, + { + "date": "2020-03-12", + "total_cases": 876.0, + "new_cases": 259.0, + "new_cases_smoothed": 101.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 12.904, + "new_cases_per_million": 3.815, + "new_cases_smoothed_per_million": 1.498, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 11.11 + }, + { + "date": "2020-03-13", + "total_cases": 1282.0, + "new_cases": 406.0, + "new_cases_smoothed": 151.714, + "total_deaths": 9.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 18.885, + "new_cases_per_million": 5.981, + "new_cases_smoothed_per_million": 2.235, + "total_deaths_per_million": 0.133, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 12.96 + }, + { + "date": "2020-03-14", + "total_cases": 1766.0, + "new_cases": 484.0, + "new_cases_smoothed": 213.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 26.014, + "new_cases_per_million": 7.13, + "new_cases_smoothed_per_million": 3.146, + "total_deaths_per_million": 0.147, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 12.96 + }, + { + "date": "2020-03-15", + "total_cases": 2244.0, + "new_cases": 478.0, + "new_cases_smoothed": 270.286, + "total_deaths": 29.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 33.055, + "new_cases_per_million": 7.041, + "new_cases_smoothed_per_million": 3.981, + "total_deaths_per_million": 0.427, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 12.96 + }, + { + "date": "2020-03-16", + "total_cases": 2605.0, + "new_cases": 361.0, + "new_cases_smoothed": 313.286, + "total_deaths": 43.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 38.373, + "new_cases_per_million": 5.318, + "new_cases_smoothed_per_million": 4.615, + "total_deaths_per_million": 0.633, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 16.67 + }, + { + "date": "2020-03-17", + "total_cases": 3047.0, + "new_cases": 442.0, + "new_cases_smoothed": 368.286, + "total_deaths": 65.0, + "new_deaths": 22.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 44.884, + "new_cases_per_million": 6.511, + "new_cases_smoothed_per_million": 5.425, + "total_deaths_per_million": 0.957, + "new_deaths_per_million": 0.324, + "new_deaths_smoothed_per_million": 0.13, + "stringency_index": 22.22 + }, + { + "date": "2020-03-18", + "total_cases": 3658.0, + "new_cases": 611.0, + "new_cases_smoothed": 434.429, + "total_deaths": 82.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 53.884, + "new_cases_per_million": 9.0, + "new_cases_smoothed_per_million": 6.399, + "total_deaths_per_million": 1.208, + "new_deaths_per_million": 0.25, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 31.48 + }, + { + "date": "2020-03-19", + "total_cases": 4427.0, + "new_cases": 769.0, + "new_cases_smoothed": 507.286, + "total_deaths": 116.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 65.212, + "new_cases_per_million": 11.328, + "new_cases_smoothed_per_million": 7.473, + "total_deaths_per_million": 1.709, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.229, + "stringency_index": 31.48 + }, + { + "date": "2020-03-20", + "total_cases": 5426.0, + "new_cases": 999.0, + "new_cases_smoothed": 592.0, + "total_deaths": 162.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 79.928, + "new_cases_per_million": 14.716, + "new_cases_smoothed_per_million": 8.721, + "total_deaths_per_million": 2.386, + "new_deaths_per_million": 0.678, + "new_deaths_smoothed_per_million": 0.322, + "stringency_index": 37.04 + }, + { + "date": "2020-03-21", + "total_cases": 6481.0, + "new_cases": 1055.0, + "new_cases_smoothed": 673.571, + "total_deaths": 194.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 26.286, + "total_cases_per_million": 95.469, + "new_cases_per_million": 15.541, + "new_cases_smoothed_per_million": 9.922, + "total_deaths_per_million": 2.858, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.387, + "stringency_index": 47.22 + }, + { + "date": "2020-03-22", + "total_cases": 7736.0, + "new_cases": 1255.0, + "new_cases_smoothed": 784.571, + "total_deaths": 252.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 113.956, + "new_cases_per_million": 18.487, + "new_cases_smoothed_per_million": 11.557, + "total_deaths_per_million": 3.712, + "new_deaths_per_million": 0.854, + "new_deaths_smoothed_per_million": 0.469, + "stringency_index": 62.04 + }, + { + "date": "2020-03-23", + "total_cases": 8934.0, + "new_cases": 1198.0, + "new_cases_smoothed": 904.143, + "total_deaths": 288.0, + "new_deaths": 36.0, + "new_deaths_smoothed": 35.0, + "total_cases_per_million": 131.603, + "new_cases_per_million": 17.647, + "new_cases_smoothed_per_million": 13.319, + "total_deaths_per_million": 4.242, + "new_deaths_per_million": 0.53, + "new_deaths_smoothed_per_million": 0.516, + "stringency_index": 78.24 + }, + { + "date": "2020-03-24", + "total_cases": 10312.0, + "new_cases": 1378.0, + "new_cases_smoothed": 1037.857, + "total_deaths": 364.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 42.714, + "total_cases_per_million": 151.902, + "new_cases_per_million": 20.299, + "new_cases_smoothed_per_million": 15.288, + "total_deaths_per_million": 5.362, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 0.629, + "stringency_index": 79.63 + }, + { + "date": "2020-03-25", + "total_cases": 12650.0, + "new_cases": 2338.0, + "new_cases_smoothed": 1284.571, + "total_deaths": 512.0, + "new_deaths": 148.0, + "new_deaths_smoothed": 61.429, + "total_cases_per_million": 186.342, + "new_cases_per_million": 34.44, + "new_cases_smoothed_per_million": 18.922, + "total_deaths_per_million": 7.542, + "new_deaths_per_million": 2.18, + "new_deaths_smoothed_per_million": 0.905, + "stringency_index": 79.63 + }, + { + "date": "2020-03-26", + "total_cases": 15025.0, + "new_cases": 2375.0, + "new_cases_smoothed": 1514.0, + "total_deaths": 703.0, + "new_deaths": 191.0, + "new_deaths_smoothed": 83.857, + "total_cases_per_million": 221.327, + "new_cases_per_million": 34.985, + "new_cases_smoothed_per_million": 22.302, + "total_deaths_per_million": 10.356, + "new_deaths_per_million": 2.814, + "new_deaths_smoothed_per_million": 1.235, + "stringency_index": 79.63 + }, + { + "date": "2020-03-27", + "total_cases": 17717.0, + "new_cases": 2692.0, + "new_cases_smoothed": 1755.857, + "total_deaths": 884.0, + "new_deaths": 181.0, + "new_deaths_smoothed": 103.143, + "total_cases_per_million": 260.982, + "new_cases_per_million": 39.655, + "new_cases_smoothed_per_million": 25.865, + "total_deaths_per_million": 13.022, + "new_deaths_per_million": 2.666, + "new_deaths_smoothed_per_million": 1.519, + "stringency_index": 79.63 + }, + { + "date": "2020-03-28", + "total_cases": 20804.0, + "new_cases": 3087.0, + "new_cases_smoothed": 2046.143, + "total_deaths": 1172.0, + "new_deaths": 288.0, + "new_deaths_smoothed": 139.714, + "total_cases_per_million": 306.455, + "new_cases_per_million": 45.473, + "new_cases_smoothed_per_million": 30.141, + "total_deaths_per_million": 17.264, + "new_deaths_per_million": 4.242, + "new_deaths_smoothed_per_million": 2.058, + "stringency_index": 79.63 + }, + { + "date": "2020-03-29", + "total_cases": 24001.0, + "new_cases": 3197.0, + "new_cases_smoothed": 2323.571, + "total_deaths": 1464.0, + "new_deaths": 292.0, + "new_deaths_smoothed": 173.143, + "total_cases_per_million": 353.549, + "new_cases_per_million": 47.094, + "new_cases_smoothed_per_million": 34.228, + "total_deaths_per_million": 21.566, + "new_deaths_per_million": 4.301, + "new_deaths_smoothed_per_million": 2.55, + "stringency_index": 79.63 + }, + { + "date": "2020-03-30", + "total_cases": 26823.0, + "new_cases": 2822.0, + "new_cases_smoothed": 2555.571, + "total_deaths": 1676.0, + "new_deaths": 212.0, + "new_deaths_smoothed": 198.286, + "total_cases_per_million": 395.118, + "new_cases_per_million": 41.57, + "new_cases_smoothed_per_million": 37.645, + "total_deaths_per_million": 24.688, + "new_deaths_per_million": 3.123, + "new_deaths_smoothed_per_million": 2.921, + "stringency_index": 79.63 + }, + { + "date": "2020-03-31", + "total_cases": 29681.0, + "new_cases": 2858.0, + "new_cases_smoothed": 2767.0, + "total_deaths": 2050.0, + "new_deaths": 374.0, + "new_deaths_smoothed": 240.857, + "total_cases_per_million": 437.218, + "new_cases_per_million": 42.1, + "new_cases_smoothed_per_million": 40.76, + "total_deaths_per_million": 30.198, + "new_deaths_per_million": 5.509, + "new_deaths_smoothed_per_million": 3.548, + "stringency_index": 79.63 + }, + { + "date": "2020-04-01", + "total_cases": 33954.0, + "new_cases": 4273.0, + "new_cases_smoothed": 3043.429, + "total_deaths": 2453.0, + "new_deaths": 403.0, + "new_deaths_smoothed": 277.286, + "total_cases_per_million": 500.162, + "new_cases_per_million": 62.944, + "new_cases_smoothed_per_million": 44.831, + "total_deaths_per_million": 36.134, + "new_deaths_per_million": 5.936, + "new_deaths_smoothed_per_million": 4.085, + "new_tests": 11896.0, + "total_tests": 155174.0, + "total_tests_per_thousand": 2.286, + "new_tests_per_thousand": 0.175, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-02", + "total_cases": 38468.0, + "new_cases": 4514.0, + "new_cases_smoothed": 3349.0, + "total_deaths": 3125.0, + "new_deaths": 672.0, + "new_deaths_smoothed": 346.0, + "total_cases_per_million": 566.656, + "new_cases_per_million": 66.494, + "new_cases_smoothed_per_million": 49.333, + "total_deaths_per_million": 46.033, + "new_deaths_per_million": 9.899, + "new_deaths_smoothed_per_million": 5.097, + "new_tests": 11924.0, + "total_tests": 167098.0, + "total_tests_per_thousand": 2.461, + "new_tests_per_thousand": 0.176, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-03", + "total_cases": 43381.0, + "new_cases": 4913.0, + "new_cases_smoothed": 3666.286, + "total_deaths": 3782.0, + "new_deaths": 657.0, + "new_deaths_smoothed": 414.0, + "total_cases_per_million": 639.027, + "new_cases_per_million": 72.371, + "new_cases_smoothed_per_million": 54.007, + "total_deaths_per_million": 55.711, + "new_deaths_per_million": 9.678, + "new_deaths_smoothed_per_million": 6.098, + "new_tests": 13457.0, + "total_tests": 182047.0, + "total_tests_per_thousand": 2.682, + "new_tests_per_thousand": 0.198, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-04", + "total_cases": 48249.0, + "new_cases": 4868.0, + "new_cases_smoothed": 3920.714, + "total_deaths": 4518.0, + "new_deaths": 736.0, + "new_deaths_smoothed": 478.0, + "total_cases_per_million": 710.736, + "new_cases_per_million": 71.708, + "new_cases_smoothed_per_million": 57.754, + "total_deaths_per_million": 66.553, + "new_deaths_per_million": 10.842, + "new_deaths_smoothed_per_million": 7.041, + "new_tests": 14293.0, + "total_tests": 222937.0, + "total_tests_per_thousand": 3.284, + "new_tests_per_thousand": 0.211, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-05", + "total_cases": 53160.0, + "new_cases": 4911.0, + "new_cases_smoothed": 4165.571, + "total_deaths": 5274.0, + "new_deaths": 756.0, + "new_deaths_smoothed": 544.286, + "total_cases_per_million": 783.077, + "new_cases_per_million": 72.342, + "new_cases_smoothed_per_million": 61.361, + "total_deaths_per_million": 77.689, + "new_deaths_per_million": 11.136, + "new_deaths_smoothed_per_million": 8.018, + "new_tests": 15899.0, + "total_tests": 238836.0, + "total_tests_per_thousand": 3.518, + "new_tests_per_thousand": 0.234, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-06", + "total_cases": 57180.0, + "new_cases": 4020.0, + "new_cases_smoothed": 4336.714, + "total_deaths": 5873.0, + "new_deaths": 599.0, + "new_deaths_smoothed": 599.571, + "total_cases_per_million": 842.294, + "new_cases_per_million": 59.217, + "new_cases_smoothed_per_million": 63.882, + "total_deaths_per_million": 86.513, + "new_deaths_per_million": 8.824, + "new_deaths_smoothed_per_million": 8.832, + "new_tests": 12733.0, + "total_tests": 251569.0, + "total_tests_per_thousand": 3.706, + "new_tests_per_thousand": 0.188, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-07", + "total_cases": 60772.0, + "new_cases": 3592.0, + "new_cases_smoothed": 4441.571, + "total_deaths": 6440.0, + "new_deaths": 567.0, + "new_deaths_smoothed": 627.143, + "total_cases_per_million": 895.207, + "new_cases_per_million": 52.912, + "new_cases_smoothed_per_million": 65.427, + "total_deaths_per_million": 94.865, + "new_deaths_per_million": 8.352, + "new_deaths_smoothed_per_million": 9.238, + "new_tests": 13684.0, + "total_tests": 265885.0, + "total_tests_per_thousand": 3.917, + "new_tests_per_thousand": 0.202, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-08", + "total_cases": 66054.0, + "new_cases": 5282.0, + "new_cases_smoothed": 4585.714, + "total_deaths": 7545.0, + "new_deaths": 1105.0, + "new_deaths_smoothed": 727.429, + "total_cases_per_million": 973.014, + "new_cases_per_million": 77.807, + "new_cases_smoothed_per_million": 67.55, + "total_deaths_per_million": 111.142, + "new_deaths_per_million": 16.277, + "new_deaths_smoothed_per_million": 10.715, + "new_tests": 14419.0, + "total_tests": 280304.0, + "total_tests_per_thousand": 4.129, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 17876.0, + "new_tests_smoothed_per_thousand": 0.263, + "tests_per_case": 3.898, + "positive_rate": 0.257, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-09", + "total_cases": 71504.0, + "new_cases": 5450.0, + "new_cases_smoothed": 4719.429, + "total_deaths": 8575.0, + "new_deaths": 1030.0, + "new_deaths_smoothed": 778.571, + "total_cases_per_million": 1053.295, + "new_cases_per_million": 80.282, + "new_cases_smoothed_per_million": 69.52, + "total_deaths_per_million": 126.315, + "new_deaths_per_million": 15.172, + "new_deaths_smoothed_per_million": 11.469, + "new_tests": 16443.0, + "total_tests": 296747.0, + "total_tests_per_thousand": 4.371, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 18521.0, + "new_tests_smoothed_per_thousand": 0.273, + "tests_per_case": 3.924, + "positive_rate": 0.255, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-10", + "total_cases": 76635.0, + "new_cases": 5131.0, + "new_cases_smoothed": 4750.571, + "total_deaths": 9691.0, + "new_deaths": 1116.0, + "new_deaths_smoothed": 844.143, + "total_cases_per_million": 1128.878, + "new_cases_per_million": 75.583, + "new_cases_smoothed_per_million": 69.979, + "total_deaths_per_million": 142.754, + "new_deaths_per_million": 16.439, + "new_deaths_smoothed_per_million": 12.435, + "new_tests": 18843.0, + "total_tests": 315141.0, + "total_tests_per_thousand": 4.642, + "new_tests_per_thousand": 0.278, + "new_tests_smoothed": 19013.0, + "new_tests_smoothed_per_thousand": 0.28, + "tests_per_case": 4.002, + "positive_rate": 0.25, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-11", + "total_cases": 81493.0, + "new_cases": 4858.0, + "new_cases_smoothed": 4749.143, + "total_deaths": 10813.0, + "new_deaths": 1122.0, + "new_deaths_smoothed": 899.286, + "total_cases_per_million": 1200.439, + "new_cases_per_million": 71.561, + "new_cases_smoothed_per_million": 69.958, + "total_deaths_per_million": 159.282, + "new_deaths_per_million": 16.528, + "new_deaths_smoothed_per_million": 13.247, + "new_tests": 17737.0, + "total_tests": 332925.0, + "total_tests_per_thousand": 4.904, + "new_tests_per_thousand": 0.261, + "new_tests_smoothed": 15713.0, + "new_tests_smoothed_per_thousand": 0.231, + "tests_per_case": 3.3089999999999997, + "positive_rate": 0.302, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-12", + "total_cases": 85806.0, + "new_cases": 4313.0, + "new_cases_smoothed": 4663.714, + "total_deaths": 11656.0, + "new_deaths": 843.0, + "new_deaths_smoothed": 911.714, + "total_cases_per_million": 1263.972, + "new_cases_per_million": 63.533, + "new_cases_smoothed_per_million": 68.699, + "total_deaths_per_million": 171.7, + "new_deaths_per_million": 12.418, + "new_deaths_smoothed_per_million": 13.43, + "new_tests": 17650.0, + "total_tests": 350575.0, + "total_tests_per_thousand": 5.164, + "new_tests_per_thousand": 0.26, + "new_tests_smoothed": 15963.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 3.423, + "positive_rate": 0.292, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-13", + "total_cases": 89385.0, + "new_cases": 3579.0, + "new_cases_smoothed": 4600.714, + "total_deaths": 12313.0, + "new_deaths": 657.0, + "new_deaths_smoothed": 920.0, + "total_cases_per_million": 1316.693, + "new_cases_per_million": 52.721, + "new_cases_smoothed_per_million": 67.771, + "total_deaths_per_million": 181.378, + "new_deaths_per_million": 9.678, + "new_deaths_smoothed_per_million": 13.552, + "new_tests": 14506.0, + "total_tests": 365081.0, + "total_tests_per_thousand": 5.378, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 16216.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 3.525, + "positive_rate": 0.284, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-14", + "total_cases": 92874.0, + "new_cases": 3489.0, + "new_cases_smoothed": 4586.0, + "total_deaths": 13037.0, + "new_deaths": 724.0, + "new_deaths_smoothed": 942.429, + "total_cases_per_million": 1368.088, + "new_cases_per_million": 51.395, + "new_cases_smoothed_per_million": 67.554, + "total_deaths_per_million": 192.043, + "new_deaths_per_million": 10.665, + "new_deaths_smoothed_per_million": 13.883, + "new_tests": 14567.0, + "total_tests": 379649.0, + "total_tests_per_thousand": 5.592, + "new_tests_per_thousand": 0.215, + "new_tests_smoothed": 16252.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 3.5439999999999996, + "positive_rate": 0.282, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-15", + "total_cases": 97052.0, + "new_cases": 4178.0, + "new_cases_smoothed": 4428.286, + "total_deaths": 14113.0, + "new_deaths": 1076.0, + "new_deaths_smoothed": 938.286, + "total_cases_per_million": 1429.632, + "new_cases_per_million": 61.544, + "new_cases_smoothed_per_million": 65.231, + "total_deaths_per_million": 207.893, + "new_deaths_per_million": 15.85, + "new_deaths_smoothed_per_million": 13.821, + "new_tests": 15991.0, + "total_tests": 395912.0, + "total_tests_per_thousand": 5.832, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 16515.0, + "new_tests_smoothed_per_thousand": 0.243, + "tests_per_case": 3.7289999999999996, + "positive_rate": 0.268, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-16", + "total_cases": 101378.0, + "new_cases": 4326.0, + "new_cases_smoothed": 4267.714, + "total_deaths": 14993.0, + "new_deaths": 880.0, + "new_deaths_smoothed": 916.857, + "total_cases_per_million": 1493.356, + "new_cases_per_million": 63.724, + "new_cases_smoothed_per_million": 62.866, + "total_deaths_per_million": 220.856, + "new_deaths_per_million": 12.963, + "new_deaths_smoothed_per_million": 13.506, + "new_tests": 18489.0, + "total_tests": 414469.0, + "total_tests_per_thousand": 6.105, + "new_tests_per_thousand": 0.272, + "new_tests_smoothed": 16817.0, + "new_tests_smoothed_per_thousand": 0.248, + "tests_per_case": 3.9410000000000003, + "positive_rate": 0.254, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-17", + "total_cases": 106443.0, + "new_cases": 5065.0, + "new_cases_smoothed": 4258.286, + "total_deaths": 16029.0, + "new_deaths": 1036.0, + "new_deaths_smoothed": 905.429, + "total_cases_per_million": 1567.967, + "new_cases_per_million": 74.61, + "new_cases_smoothed_per_million": 62.727, + "total_deaths_per_million": 236.116, + "new_deaths_per_million": 15.261, + "new_deaths_smoothed_per_million": 13.337, + "new_tests": 20906.0, + "total_tests": 435389.0, + "total_tests_per_thousand": 6.414, + "new_tests_per_thousand": 0.308, + "new_tests_smoothed": 17178.0, + "new_tests_smoothed_per_thousand": 0.253, + "tests_per_case": 4.034, + "positive_rate": 0.248, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-18", + "total_cases": 111735.0, + "new_cases": 5292.0, + "new_cases_smoothed": 4320.286, + "total_deaths": 16942.0, + "new_deaths": 913.0, + "new_deaths_smoothed": 875.571, + "total_cases_per_million": 1645.921, + "new_cases_per_million": 77.954, + "new_cases_smoothed_per_million": 63.64, + "total_deaths_per_million": 249.565, + "new_deaths_per_million": 13.449, + "new_deaths_smoothed_per_million": 12.898, + "new_tests": 21081.0, + "total_tests": 456527.0, + "total_tests_per_thousand": 6.725, + "new_tests_per_thousand": 0.311, + "new_tests_smoothed": 17657.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 4.087, + "positive_rate": 0.245, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-19", + "total_cases": 116691.0, + "new_cases": 4956.0, + "new_cases_smoothed": 4412.143, + "total_deaths": 18047.0, + "new_deaths": 1105.0, + "new_deaths_smoothed": 913.0, + "total_cases_per_million": 1718.926, + "new_cases_per_million": 73.005, + "new_cases_smoothed_per_million": 64.993, + "total_deaths_per_million": 265.843, + "new_deaths_per_million": 16.277, + "new_deaths_smoothed_per_million": 13.449, + "new_tests": 21249.0, + "total_tests": 477776.0, + "total_tests_per_thousand": 7.038, + "new_tests_per_thousand": 0.313, + "new_tests_smoothed": 18172.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 4.119, + "positive_rate": 0.243, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-20", + "total_cases": 121412.0, + "new_cases": 4721.0, + "new_cases_smoothed": 4575.286, + "total_deaths": 18479.0, + "new_deaths": 432.0, + "new_deaths_smoothed": 880.857, + "total_cases_per_million": 1788.469, + "new_cases_per_million": 69.543, + "new_cases_smoothed_per_million": 67.397, + "total_deaths_per_million": 272.206, + "new_deaths_per_million": 6.364, + "new_deaths_smoothed_per_million": 12.976, + "new_tests": 19316.0, + "total_tests": 497092.0, + "total_tests_per_thousand": 7.322, + "new_tests_per_thousand": 0.285, + "new_tests_smoothed": 18859.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 4.122, + "positive_rate": 0.243, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-21", + "total_cases": 125265.0, + "new_cases": 3853.0, + "new_cases_smoothed": 4627.286, + "total_deaths": 19049.0, + "new_deaths": 570.0, + "new_deaths_smoothed": 858.857, + "total_cases_per_million": 1845.226, + "new_cases_per_million": 56.757, + "new_cases_smoothed_per_million": 68.163, + "total_deaths_per_million": 280.603, + "new_deaths_per_million": 8.396, + "new_deaths_smoothed_per_million": 12.651, + "new_tests": 17365.0, + "total_tests": 532229.0, + "total_tests_per_thousand": 7.84, + "new_tests_per_thousand": 0.256, + "new_tests_smoothed": 21797.0, + "new_tests_smoothed_per_thousand": 0.321, + "tests_per_case": 4.711, + "positive_rate": 0.212, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-22", + "total_cases": 130119.0, + "new_cases": 4854.0, + "new_cases_smoothed": 4723.857, + "total_deaths": 20273.0, + "new_deaths": 1224.0, + "new_deaths_smoothed": 880.0, + "total_cases_per_million": 1916.728, + "new_cases_per_million": 71.502, + "new_cases_smoothed_per_million": 69.585, + "total_deaths_per_million": 298.633, + "new_deaths_per_million": 18.03, + "new_deaths_smoothed_per_million": 12.963, + "new_tests": 22763.0, + "total_tests": 554992.0, + "total_tests_per_thousand": 8.175, + "new_tests_per_thousand": 0.335, + "new_tests_smoothed": 22726.0, + "new_tests_smoothed_per_thousand": 0.335, + "tests_per_case": 4.811, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-23", + "total_cases": 134879.0, + "new_cases": 4760.0, + "new_cases_smoothed": 4785.857, + "total_deaths": 21120.0, + "new_deaths": 847.0, + "new_deaths_smoothed": 875.286, + "total_cases_per_million": 1986.845, + "new_cases_per_million": 70.118, + "new_cases_smoothed_per_million": 70.498, + "total_deaths_per_million": 311.11, + "new_deaths_per_million": 12.477, + "new_deaths_smoothed_per_million": 12.893, + "new_tests": 23073.0, + "total_tests": 578066.0, + "total_tests_per_thousand": 8.515, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 23371.0, + "new_tests_smoothed_per_thousand": 0.344, + "tests_per_case": 4.883, + "positive_rate": 0.205, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-24", + "total_cases": 140366.0, + "new_cases": 5487.0, + "new_cases_smoothed": 4846.143, + "total_deaths": 21802.0, + "new_deaths": 682.0, + "new_deaths_smoothed": 824.714, + "total_cases_per_million": 2067.672, + "new_cases_per_million": 80.827, + "new_cases_smoothed_per_million": 71.386, + "total_deaths_per_million": 321.156, + "new_deaths_per_million": 10.046, + "new_deaths_smoothed_per_million": 12.149, + "new_tests": 28024.0, + "total_tests": 606093.0, + "total_tests_per_thousand": 8.928, + "new_tests_per_thousand": 0.413, + "new_tests_smoothed": 24386.0, + "new_tests_smoothed_per_thousand": 0.359, + "tests_per_case": 5.032, + "positive_rate": 0.19899999999999998, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-25", + "total_cases": 145524.0, + "new_cases": 5158.0, + "new_cases_smoothed": 4827.0, + "total_deaths": 22812.0, + "new_deaths": 1010.0, + "new_deaths_smoothed": 838.571, + "total_cases_per_million": 2143.652, + "new_cases_per_million": 75.98, + "new_cases_smoothed_per_million": 71.104, + "total_deaths_per_million": 336.034, + "new_deaths_per_million": 14.878, + "new_deaths_smoothed_per_million": 12.353, + "new_tests": 28225.0, + "total_tests": 634319.0, + "total_tests_per_thousand": 9.344, + "new_tests_per_thousand": 0.416, + "new_tests_smoothed": 25399.0, + "new_tests_smoothed_per_thousand": 0.374, + "tests_per_case": 5.2620000000000005, + "positive_rate": 0.19, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-26", + "total_cases": 150494.0, + "new_cases": 4970.0, + "new_cases_smoothed": 4829.0, + "total_deaths": 23627.0, + "new_deaths": 815.0, + "new_deaths_smoothed": 797.143, + "total_cases_per_million": 2216.863, + "new_cases_per_million": 73.211, + "new_cases_smoothed_per_million": 71.134, + "total_deaths_per_million": 348.039, + "new_deaths_per_million": 12.005, + "new_deaths_smoothed_per_million": 11.742, + "new_tests": 29058.0, + "total_tests": 663377.0, + "total_tests_per_thousand": 9.772, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 26514.0, + "new_tests_smoothed_per_thousand": 0.391, + "tests_per_case": 5.4910000000000005, + "positive_rate": 0.182, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-27", + "total_cases": 154242.0, + "new_cases": 3748.0, + "new_cases_smoothed": 4690.0, + "total_deaths": 23991.0, + "new_deaths": 364.0, + "new_deaths_smoothed": 787.429, + "total_cases_per_million": 2272.074, + "new_cases_per_million": 55.21, + "new_cases_smoothed_per_million": 69.086, + "total_deaths_per_million": 353.401, + "new_deaths_per_million": 5.362, + "new_deaths_smoothed_per_million": 11.599, + "new_tests": 31610.0, + "total_tests": 694987.0, + "total_tests_per_thousand": 10.238, + "new_tests_per_thousand": 0.466, + "new_tests_smoothed": 28271.0, + "new_tests_smoothed_per_thousand": 0.416, + "tests_per_case": 6.028, + "positive_rate": 0.166, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-28", + "total_cases": 157715.0, + "new_cases": 3473.0, + "new_cases_smoothed": 4635.714, + "total_deaths": 24311.0, + "new_deaths": 320.0, + "new_deaths_smoothed": 751.714, + "total_cases_per_million": 2323.233, + "new_cases_per_million": 51.159, + "new_cases_smoothed_per_million": 68.287, + "total_deaths_per_million": 358.115, + "new_deaths_per_million": 4.714, + "new_deaths_smoothed_per_million": 11.073, + "new_tests": 31453.0, + "total_tests": 726553.0, + "total_tests_per_thousand": 10.703, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 27761.0, + "new_tests_smoothed_per_thousand": 0.409, + "tests_per_case": 5.989, + "positive_rate": 0.16699999999999998, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-29", + "total_cases": 162421.0, + "new_cases": 4706.0, + "new_cases_smoothed": 4614.571, + "total_deaths": 25280.0, + "new_deaths": 969.0, + "new_deaths_smoothed": 715.286, + "total_cases_per_million": 2392.555, + "new_cases_per_million": 69.322, + "new_cases_smoothed_per_million": 67.975, + "total_deaths_per_million": 372.389, + "new_deaths_per_million": 14.274, + "new_deaths_smoothed_per_million": 10.537, + "new_tests": 45263.0, + "total_tests": 771817.0, + "total_tests_per_thousand": 11.369, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 30975.0, + "new_tests_smoothed_per_thousand": 0.456, + "tests_per_case": 6.712000000000001, + "positive_rate": 0.149, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-04-30", + "total_cases": 167150.0, + "new_cases": 4729.0, + "new_cases_smoothed": 4610.143, + "total_deaths": 26049.0, + "new_deaths": 769.0, + "new_deaths_smoothed": 704.143, + "total_cases_per_million": 2462.216, + "new_cases_per_million": 69.661, + "new_cases_smoothed_per_million": 67.91, + "total_deaths_per_million": 383.717, + "new_deaths_per_million": 11.328, + "new_deaths_smoothed_per_million": 10.372, + "new_tests": 65643.0, + "total_tests": 839597.0, + "total_tests_per_thousand": 12.368, + "new_tests_per_thousand": 0.967, + "new_tests_smoothed": 37362.0, + "new_tests_smoothed_per_thousand": 0.55, + "tests_per_case": 8.104, + "positive_rate": 0.12300000000000001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-01", + "total_cases": 172592.0, + "new_cases": 5442.0, + "new_cases_smoothed": 4603.714, + "total_deaths": 26683.0, + "new_deaths": 634.0, + "new_deaths_smoothed": 697.286, + "total_cases_per_million": 2542.38, + "new_cases_per_million": 80.164, + "new_cases_smoothed_per_million": 67.815, + "total_deaths_per_million": 393.056, + "new_deaths_per_million": 9.339, + "new_deaths_smoothed_per_million": 10.271, + "new_tests": 83143.0, + "total_tests": 922684.0, + "total_tests_per_thousand": 13.592, + "new_tests_per_thousand": 1.225, + "new_tests_smoothed": 45227.0, + "new_tests_smoothed_per_thousand": 0.666, + "tests_per_case": 9.824, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-02", + "total_cases": 177558.0, + "new_cases": 4966.0, + "new_cases_smoothed": 4576.286, + "total_deaths": 27381.0, + "new_deaths": 698.0, + "new_deaths_smoothed": 652.714, + "total_cases_per_million": 2615.532, + "new_cases_per_million": 73.152, + "new_cases_smoothed_per_million": 67.411, + "total_deaths_per_million": 403.338, + "new_deaths_per_million": 10.282, + "new_deaths_smoothed_per_million": 9.615, + "new_tests": 74142.0, + "total_tests": 996826.0, + "total_tests_per_thousand": 14.684, + "new_tests_per_thousand": 1.092, + "new_tests_smoothed": 51787.0, + "new_tests_smoothed_per_thousand": 0.763, + "tests_per_case": 11.315999999999999, + "positive_rate": 0.08800000000000001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-03", + "total_cases": 182295.0, + "new_cases": 4737.0, + "new_cases_smoothed": 4543.0, + "total_deaths": 27965.0, + "new_deaths": 584.0, + "new_deaths_smoothed": 619.714, + "total_cases_per_million": 2685.311, + "new_cases_per_million": 69.779, + "new_cases_smoothed_per_million": 66.921, + "total_deaths_per_million": 411.941, + "new_deaths_per_million": 8.603, + "new_deaths_smoothed_per_million": 9.129, + "new_tests": 63559.0, + "total_tests": 1060387.0, + "total_tests_per_thousand": 15.62, + "new_tests_per_thousand": 0.936, + "new_tests_smoothed": 56716.0, + "new_tests_smoothed_per_thousand": 0.835, + "tests_per_case": 12.484000000000002, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-04", + "total_cases": 185524.0, + "new_cases": 3229.0, + "new_cases_smoothed": 4468.857, + "total_deaths": 28218.0, + "new_deaths": 253.0, + "new_deaths_smoothed": 603.857, + "total_cases_per_million": 2732.876, + "new_cases_per_million": 47.565, + "new_cases_smoothed_per_million": 65.829, + "total_deaths_per_million": 415.667, + "new_deaths_per_million": 3.727, + "new_deaths_smoothed_per_million": 8.895, + "new_tests": 68203.0, + "total_tests": 1128590.0, + "total_tests_per_thousand": 16.625, + "new_tests_per_thousand": 1.005, + "new_tests_smoothed": 61943.0, + "new_tests_smoothed_per_thousand": 0.912, + "tests_per_case": 13.860999999999999, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-05", + "total_cases": 188506.0, + "new_cases": 2982.0, + "new_cases_smoothed": 4398.714, + "total_deaths": 28490.0, + "new_deaths": 272.0, + "new_deaths_smoothed": 597.0, + "total_cases_per_million": 2776.802, + "new_cases_per_million": 43.927, + "new_cases_smoothed_per_million": 64.796, + "total_deaths_per_million": 419.674, + "new_deaths_per_million": 4.007, + "new_deaths_smoothed_per_million": 8.794, + "new_tests": 71764.0, + "total_tests": 1202251.0, + "total_tests_per_thousand": 17.71, + "new_tests_per_thousand": 1.057, + "new_tests_smoothed": 67957.0, + "new_tests_smoothed_per_thousand": 1.001, + "tests_per_case": 15.449000000000002, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-06", + "total_cases": 191895.0, + "new_cases": 3389.0, + "new_cases_smoothed": 4210.571, + "total_deaths": 29216.0, + "new_deaths": 726.0, + "new_deaths_smoothed": 562.286, + "total_cases_per_million": 2826.724, + "new_cases_per_million": 49.922, + "new_cases_smoothed_per_million": 62.024, + "total_deaths_per_million": 430.369, + "new_deaths_per_million": 10.694, + "new_deaths_smoothed_per_million": 8.283, + "new_tests": 65803.0, + "total_tests": 1268054.0, + "total_tests_per_thousand": 18.679, + "new_tests_per_thousand": 0.969, + "new_tests_smoothed": 70891.0, + "new_tests_smoothed_per_thousand": 1.044, + "tests_per_case": 16.836, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-07", + "total_cases": 195577.0, + "new_cases": 3682.0, + "new_cases_smoothed": 4061.0, + "total_deaths": 29863.0, + "new_deaths": 647.0, + "new_deaths_smoothed": 544.857, + "total_cases_per_million": 2880.962, + "new_cases_per_million": 54.238, + "new_cases_smoothed_per_million": 59.821, + "total_deaths_per_million": 439.899, + "new_deaths_per_million": 9.531, + "new_deaths_smoothed_per_million": 8.026, + "new_tests": 73277.0, + "total_tests": 1343722.0, + "total_tests_per_thousand": 19.794, + "new_tests_per_thousand": 1.079, + "new_tests_smoothed": 72018.0, + "new_tests_smoothed_per_thousand": 1.061, + "tests_per_case": 17.734, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-08", + "total_cases": 199404.0, + "new_cases": 3827.0, + "new_cases_smoothed": 3830.286, + "total_deaths": 30321.0, + "new_deaths": 458.0, + "new_deaths_smoothed": 519.714, + "total_cases_per_million": 2937.336, + "new_cases_per_million": 56.374, + "new_cases_smoothed_per_million": 56.422, + "total_deaths_per_million": 446.646, + "new_deaths_per_million": 6.747, + "new_deaths_smoothed_per_million": 7.656, + "new_tests": 76741.0, + "total_tests": 1420462.0, + "total_tests_per_thousand": 20.924, + "new_tests_per_thousand": 1.13, + "new_tests_smoothed": 71111.0, + "new_tests_smoothed_per_thousand": 1.048, + "tests_per_case": 18.565, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-09", + "total_cases": 203171.0, + "new_cases": 3767.0, + "new_cases_smoothed": 3659.0, + "total_deaths": 30900.0, + "new_deaths": 579.0, + "new_deaths_smoothed": 502.714, + "total_cases_per_million": 2992.826, + "new_cases_per_million": 55.49, + "new_cases_smoothed_per_million": 53.899, + "total_deaths_per_million": 455.175, + "new_deaths_per_million": 8.529, + "new_deaths_smoothed_per_million": 7.405, + "new_tests": 74836.0, + "total_tests": 1495302.0, + "total_tests_per_thousand": 22.027, + "new_tests_per_thousand": 1.102, + "new_tests_smoothed": 71211.0, + "new_tests_smoothed_per_thousand": 1.049, + "tests_per_case": 19.462, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-10", + "total_cases": 206234.0, + "new_cases": 3063.0, + "new_cases_smoothed": 3419.857, + "total_deaths": 31175.0, + "new_deaths": 275.0, + "new_deaths_smoothed": 458.571, + "total_cases_per_million": 3037.946, + "new_cases_per_million": 45.12, + "new_cases_smoothed_per_million": 50.376, + "total_deaths_per_million": 459.226, + "new_deaths_per_million": 4.051, + "new_deaths_smoothed_per_million": 6.755, + "new_tests": 74586.0, + "total_tests": 1569888.0, + "total_tests_per_thousand": 23.125, + "new_tests_per_thousand": 1.099, + "new_tests_smoothed": 72786.0, + "new_tests_smoothed_per_thousand": 1.072, + "tests_per_case": 21.283, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 79.63 + }, + { + "date": "2020-05-11", + "total_cases": 208391.0, + "new_cases": 2157.0, + "new_cases_smoothed": 3266.714, + "total_deaths": 31392.0, + "new_deaths": 217.0, + "new_deaths_smoothed": 453.429, + "total_cases_per_million": 3069.72, + "new_cases_per_million": 31.774, + "new_cases_smoothed_per_million": 48.121, + "total_deaths_per_million": 462.422, + "new_deaths_per_million": 3.197, + "new_deaths_smoothed_per_million": 6.679, + "new_tests": 73541.0, + "total_tests": 1643429.0, + "total_tests_per_thousand": 24.209, + "new_tests_per_thousand": 1.083, + "new_tests_smoothed": 73548.0, + "new_tests_smoothed_per_thousand": 1.083, + "tests_per_case": 22.514, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-12", + "total_cases": 210720.0, + "new_cases": 2329.0, + "new_cases_smoothed": 3173.429, + "total_deaths": 31579.0, + "new_deaths": 187.0, + "new_deaths_smoothed": 441.286, + "total_cases_per_million": 3104.027, + "new_cases_per_million": 34.308, + "new_cases_smoothed_per_million": 46.746, + "total_deaths_per_million": 465.177, + "new_deaths_per_million": 2.755, + "new_deaths_smoothed_per_million": 6.5, + "new_tests": 67116.0, + "total_tests": 1710628.0, + "total_tests_per_thousand": 25.199, + "new_tests_per_thousand": 0.989, + "new_tests_smoothed": 72625.0, + "new_tests_smoothed_per_thousand": 1.07, + "tests_per_case": 22.885, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 77.78 + }, + { + "date": "2020-05-13", + "total_cases": 214306.0, + "new_cases": 3586.0, + "new_cases_smoothed": 3201.571, + "total_deaths": 32193.0, + "new_deaths": 614.0, + "new_deaths_smoothed": 425.286, + "total_cases_per_million": 3156.851, + "new_cases_per_million": 52.824, + "new_cases_smoothed_per_million": 47.161, + "total_deaths_per_million": 474.221, + "new_deaths_per_million": 9.045, + "new_deaths_smoothed_per_million": 6.265, + "new_tests": 72368.0, + "total_tests": 1782996.0, + "total_tests_per_thousand": 26.265, + "new_tests_per_thousand": 1.066, + "new_tests_smoothed": 73563.0, + "new_tests_smoothed_per_thousand": 1.084, + "tests_per_case": 22.976999999999997, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-14", + "total_cases": 217708.0, + "new_cases": 3402.0, + "new_cases_smoothed": 3161.571, + "total_deaths": 32640.0, + "new_deaths": 447.0, + "new_deaths_smoothed": 396.714, + "total_cases_per_million": 3206.964, + "new_cases_per_million": 50.113, + "new_cases_smoothed_per_million": 46.572, + "total_deaths_per_million": 480.806, + "new_deaths_per_million": 6.585, + "new_deaths_smoothed_per_million": 5.844, + "new_tests": 80713.0, + "total_tests": 1864403.0, + "total_tests_per_thousand": 27.464, + "new_tests_per_thousand": 1.189, + "new_tests_smoothed": 74383.0, + "new_tests_smoothed_per_thousand": 1.096, + "tests_per_case": 23.526999999999997, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-15", + "total_cases": 221015.0, + "new_cases": 3307.0, + "new_cases_smoothed": 3087.286, + "total_deaths": 32992.0, + "new_deaths": 352.0, + "new_deaths_smoothed": 381.571, + "total_cases_per_million": 3255.678, + "new_cases_per_million": 48.714, + "new_cases_smoothed_per_million": 45.477, + "total_deaths_per_million": 485.991, + "new_deaths_per_million": 5.185, + "new_deaths_smoothed_per_million": 5.621, + "new_tests": 81595.0, + "total_tests": 1946011.0, + "total_tests_per_thousand": 28.666, + "new_tests_per_thousand": 1.202, + "new_tests_smoothed": 75078.0, + "new_tests_smoothed_per_thousand": 1.106, + "tests_per_case": 24.318, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-16", + "total_cases": 223643.0, + "new_cases": 2628.0, + "new_cases_smoothed": 2924.571, + "total_deaths": 33342.0, + "new_deaths": 350.0, + "new_deaths_smoothed": 348.857, + "total_cases_per_million": 3294.39, + "new_cases_per_million": 38.712, + "new_cases_smoothed_per_million": 43.081, + "total_deaths_per_million": 491.147, + "new_deaths_per_million": 5.156, + "new_deaths_smoothed_per_million": 5.139, + "new_tests": 88046.0, + "total_tests": 2034056.0, + "total_tests_per_thousand": 29.963, + "new_tests_per_thousand": 1.297, + "new_tests_smoothed": 76965.0, + "new_tests_smoothed_per_thousand": 1.134, + "tests_per_case": 26.316999999999997, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-17", + "total_cases": 226169.0, + "new_cases": 2526.0, + "new_cases_smoothed": 2847.857, + "total_deaths": 33753.0, + "new_deaths": 411.0, + "new_deaths_smoothed": 368.286, + "total_cases_per_million": 3331.6, + "new_cases_per_million": 37.209, + "new_cases_smoothed_per_million": 41.951, + "total_deaths_per_million": 497.201, + "new_deaths_per_million": 6.054, + "new_deaths_smoothed_per_million": 5.425, + "new_tests": 88262.0, + "total_tests": 2122318.0, + "total_tests_per_thousand": 31.263, + "new_tests_per_thousand": 1.3, + "new_tests_smoothed": 78919.0, + "new_tests_smoothed_per_thousand": 1.163, + "tests_per_case": 27.712, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-18", + "total_cases": 228248.0, + "new_cases": 2079.0, + "new_cases_smoothed": 2836.714, + "total_deaths": 33820.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 346.857, + "total_cases_per_million": 3362.225, + "new_cases_per_million": 30.625, + "new_cases_smoothed_per_million": 41.786, + "total_deaths_per_million": 498.188, + "new_deaths_per_million": 0.987, + "new_deaths_smoothed_per_million": 5.109, + "new_tests": 75290.0, + "total_tests": 2197608.0, + "total_tests_per_thousand": 32.372, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 79168.0, + "new_tests_smoothed_per_thousand": 1.166, + "tests_per_case": 27.908, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-19", + "total_cases": 230086.0, + "new_cases": 1838.0, + "new_cases_smoothed": 2766.571, + "total_deaths": 33966.0, + "new_deaths": 146.0, + "new_deaths_smoothed": 341.0, + "total_cases_per_million": 3389.3, + "new_cases_per_million": 27.075, + "new_cases_smoothed_per_million": 40.753, + "total_deaths_per_million": 500.339, + "new_deaths_per_million": 2.151, + "new_deaths_smoothed_per_million": 5.023, + "new_tests": 63028.0, + "total_tests": 2260688.0, + "total_tests_per_thousand": 33.301, + "new_tests_per_thousand": 0.928, + "new_tests_smoothed": 78580.0, + "new_tests_smoothed_per_thousand": 1.158, + "tests_per_case": 28.403000000000002, + "positive_rate": 0.035, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-20", + "total_cases": 232675.0, + "new_cases": 2589.0, + "new_cases_smoothed": 2624.143, + "total_deaths": 34466.0, + "new_deaths": 500.0, + "new_deaths_smoothed": 324.714, + "total_cases_per_million": 3427.437, + "new_cases_per_million": 38.137, + "new_cases_smoothed_per_million": 38.655, + "total_deaths_per_million": 507.704, + "new_deaths_per_million": 7.365, + "new_deaths_smoothed_per_million": 4.783, + "new_tests": 79653.0, + "total_tests": 2332060.0, + "total_tests_per_thousand": 34.353, + "new_tests_per_thousand": 1.173, + "new_tests_smoothed": 78438.0, + "new_tests_smoothed_per_thousand": 1.155, + "tests_per_case": 29.891, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-21", + "total_cases": 235727.0, + "new_cases": 3052.0, + "new_cases_smoothed": 2574.143, + "total_deaths": 34794.0, + "new_deaths": 328.0, + "new_deaths_smoothed": 307.714, + "total_cases_per_million": 3472.395, + "new_cases_per_million": 44.958, + "new_cases_smoothed_per_million": 37.919, + "total_deaths_per_million": 512.536, + "new_deaths_per_million": 4.832, + "new_deaths_smoothed_per_million": 4.533, + "new_tests": 81403.0, + "total_tests": 2413462.0, + "total_tests_per_thousand": 35.552, + "new_tests_per_thousand": 1.199, + "new_tests_smoothed": 78437.0, + "new_tests_smoothed_per_thousand": 1.155, + "tests_per_case": 30.471, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-22", + "total_cases": 238445.0, + "new_cases": 2718.0, + "new_cases_smoothed": 2490.0, + "total_deaths": 35067.0, + "new_deaths": 273.0, + "new_deaths_smoothed": 296.429, + "total_cases_per_million": 3512.432, + "new_cases_per_million": 40.038, + "new_cases_smoothed_per_million": 36.679, + "total_deaths_per_million": 516.557, + "new_deaths_per_million": 4.021, + "new_deaths_smoothed_per_million": 4.367, + "new_tests": 93398.0, + "total_tests": 2506869.0, + "total_tests_per_thousand": 36.928, + "new_tests_per_thousand": 1.376, + "new_tests_smoothed": 80123.0, + "new_tests_smoothed_per_thousand": 1.18, + "tests_per_case": 32.178000000000004, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-23", + "total_cases": 241019.0, + "new_cases": 2574.0, + "new_cases_smoothed": 2482.286, + "total_deaths": 35358.0, + "new_deaths": 291.0, + "new_deaths_smoothed": 288.0, + "total_cases_per_million": 3550.349, + "new_cases_per_million": 37.917, + "new_cases_smoothed_per_million": 36.566, + "total_deaths_per_million": 520.844, + "new_deaths_per_million": 4.287, + "new_deaths_smoothed_per_million": 4.242, + "new_tests": 84060.0, + "total_tests": 2590930.0, + "total_tests_per_thousand": 38.166, + "new_tests_per_thousand": 1.238, + "new_tests_smoothed": 79553.0, + "new_tests_smoothed_per_thousand": 1.172, + "tests_per_case": 32.048, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-24", + "total_cases": 243081.0, + "new_cases": 2062.0, + "new_cases_smoothed": 2416.0, + "total_deaths": 35578.0, + "new_deaths": 220.0, + "new_deaths_smoothed": 260.714, + "total_cases_per_million": 3580.723, + "new_cases_per_million": 30.374, + "new_cases_smoothed_per_million": 35.589, + "total_deaths_per_million": 524.084, + "new_deaths_per_million": 3.241, + "new_deaths_smoothed_per_million": 3.84, + "new_tests": 79902.0, + "total_tests": 2670829.0, + "total_tests_per_thousand": 39.343, + "new_tests_per_thousand": 1.177, + "new_tests_smoothed": 78359.0, + "new_tests_smoothed_per_thousand": 1.154, + "tests_per_case": 32.433, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-25", + "total_cases": 244608.0, + "new_cases": 1527.0, + "new_cases_smoothed": 2337.143, + "total_deaths": 35957.0, + "new_deaths": 379.0, + "new_deaths_smoothed": 305.286, + "total_cases_per_million": 3603.217, + "new_cases_per_million": 22.494, + "new_cases_smoothed_per_million": 34.427, + "total_deaths_per_million": 529.667, + "new_deaths_per_million": 5.583, + "new_deaths_smoothed_per_million": 4.497, + "new_tests": 51844.0, + "total_tests": 2722676.0, + "total_tests_per_thousand": 40.107, + "new_tests_per_thousand": 0.764, + "new_tests_smoothed": 75010.0, + "new_tests_smoothed_per_thousand": 1.105, + "tests_per_case": 32.095, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-26", + "total_cases": 245972.0, + "new_cases": 1364.0, + "new_cases_smoothed": 2269.429, + "total_deaths": 36061.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 299.286, + "total_cases_per_million": 3623.309, + "new_cases_per_million": 20.093, + "new_cases_smoothed_per_million": 33.43, + "total_deaths_per_million": 531.199, + "new_deaths_per_million": 1.532, + "new_deaths_smoothed_per_million": 4.409, + "new_tests": 69381.0, + "total_tests": 2859563.0, + "total_tests_per_thousand": 42.123, + "new_tests_per_thousand": 1.022, + "new_tests_smoothed": 85554.0, + "new_tests_smoothed_per_thousand": 1.26, + "tests_per_case": 37.698, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-27", + "total_cases": 247596.0, + "new_cases": 1624.0, + "new_cases_smoothed": 2131.571, + "total_deaths": 36192.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 246.571, + "total_cases_per_million": 3647.232, + "new_cases_per_million": 23.922, + "new_cases_smoothed_per_million": 31.399, + "total_deaths_per_million": 533.129, + "new_deaths_per_million": 1.93, + "new_deaths_smoothed_per_million": 3.632, + "new_tests": 63765.0, + "total_tests": 2923504.0, + "total_tests_per_thousand": 43.065, + "new_tests_per_thousand": 0.939, + "new_tests_smoothed": 84492.0, + "new_tests_smoothed_per_thousand": 1.245, + "tests_per_case": 39.638000000000005, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-28", + "total_cases": 249268.0, + "new_cases": 1672.0, + "new_cases_smoothed": 1934.429, + "total_deaths": 36614.0, + "new_deaths": 422.0, + "new_deaths_smoothed": 260.0, + "total_cases_per_million": 3671.861, + "new_cases_per_million": 24.63, + "new_cases_smoothed_per_million": 28.495, + "total_deaths_per_million": 539.345, + "new_deaths_per_million": 6.216, + "new_deaths_smoothed_per_million": 3.83, + "new_tests": 70329.0, + "total_tests": 2993833.0, + "total_tests_per_thousand": 44.101, + "new_tests_per_thousand": 1.036, + "new_tests_smoothed": 82910.0, + "new_tests_smoothed_per_thousand": 1.221, + "tests_per_case": 42.86, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-05-29", + "total_cases": 251103.0, + "new_cases": 1835.0, + "new_cases_smoothed": 1808.286, + "total_deaths": 36957.0, + "new_deaths": 343.0, + "new_deaths_smoothed": 270.0, + "total_cases_per_million": 3698.892, + "new_cases_per_million": 27.031, + "new_cases_smoothed_per_million": 26.637, + "total_deaths_per_million": 544.398, + "new_deaths_per_million": 5.053, + "new_deaths_smoothed_per_million": 3.977, + "new_tests": 84634.0, + "total_tests": 3078468.0, + "total_tests_per_thousand": 45.348, + "new_tests_per_thousand": 1.247, + "new_tests_smoothed": 81657.0, + "new_tests_smoothed_per_thousand": 1.203, + "tests_per_case": 45.157, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-30", + "total_cases": 252863.0, + "new_cases": 1760.0, + "new_cases_smoothed": 1692.0, + "total_deaths": 37231.0, + "new_deaths": 274.0, + "new_deaths_smoothed": 267.571, + "total_cases_per_million": 3724.818, + "new_cases_per_million": 25.926, + "new_cases_smoothed_per_million": 24.924, + "total_deaths_per_million": 548.434, + "new_deaths_per_million": 4.036, + "new_deaths_smoothed_per_million": 3.941, + "new_tests": 95550.0, + "total_tests": 3174018.0, + "total_tests_per_thousand": 46.755, + "new_tests_per_thousand": 1.408, + "new_tests_smoothed": 83298.0, + "new_tests_smoothed_per_thousand": 1.227, + "tests_per_case": 49.23, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-05-31", + "total_cases": 254390.0, + "new_cases": 1527.0, + "new_cases_smoothed": 1615.571, + "total_deaths": 37385.0, + "new_deaths": 154.0, + "new_deaths_smoothed": 258.143, + "total_cases_per_million": 3747.311, + "new_cases_per_million": 22.494, + "new_cases_smoothed_per_million": 23.798, + "total_deaths_per_million": 550.703, + "new_deaths_per_million": 2.269, + "new_deaths_smoothed_per_million": 3.803, + "new_tests": 89867.0, + "total_tests": 3263888.0, + "total_tests_per_thousand": 48.079, + "new_tests_per_thousand": 1.324, + "new_tests_smoothed": 84723.0, + "new_tests_smoothed_per_thousand": 1.248, + "tests_per_case": 52.442, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 69.44 + }, + { + "date": "2020-06-01", + "total_cases": 255515.0, + "new_cases": 1125.0, + "new_cases_smoothed": 1558.143, + "total_deaths": 37445.0, + "new_deaths": 60.0, + "new_deaths_smoothed": 212.571, + "total_cases_per_million": 3763.883, + "new_cases_per_million": 16.572, + "new_cases_smoothed_per_million": 22.952, + "total_deaths_per_million": 551.586, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 3.131, + "new_tests": 75263.0, + "total_tests": 3339151.0, + "total_tests_per_thousand": 49.188, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 88068.0, + "new_tests_smoothed_per_thousand": 1.297, + "tests_per_case": 56.521, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-02", + "total_cases": 256594.0, + "new_cases": 1079.0, + "new_cases_smoothed": 1517.429, + "total_deaths": 37531.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 210.0, + "total_cases_per_million": 3779.778, + "new_cases_per_million": 15.894, + "new_cases_smoothed_per_million": 22.353, + "total_deaths_per_million": 552.853, + "new_deaths_per_million": 1.267, + "new_deaths_smoothed_per_million": 3.093, + "new_tests": 64763.0, + "total_tests": 3403873.0, + "total_tests_per_thousand": 50.141, + "new_tests_per_thousand": 0.954, + "new_tests_smoothed": 77759.0, + "new_tests_smoothed_per_thousand": 1.145, + "tests_per_case": 51.244, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-03", + "total_cases": 258035.0, + "new_cases": 1441.0, + "new_cases_smoothed": 1491.286, + "total_deaths": 37780.0, + "new_deaths": 249.0, + "new_deaths_smoothed": 226.857, + "total_cases_per_million": 3801.004, + "new_cases_per_million": 21.227, + "new_cases_smoothed_per_million": 21.967, + "total_deaths_per_million": 556.521, + "new_deaths_per_million": 3.668, + "new_deaths_smoothed_per_million": 3.342, + "new_tests": 86267.0, + "total_tests": 3490527.0, + "total_tests_per_thousand": 51.417, + "new_tests_per_thousand": 1.271, + "new_tests_smoothed": 81003.0, + "new_tests_smoothed_per_thousand": 1.193, + "tests_per_case": 54.318000000000005, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-04", + "total_cases": 259519.0, + "new_cases": 1484.0, + "new_cases_smoothed": 1464.429, + "total_deaths": 38034.0, + "new_deaths": 254.0, + "new_deaths_smoothed": 202.857, + "total_cases_per_million": 3822.865, + "new_cases_per_million": 21.86, + "new_cases_smoothed_per_million": 21.572, + "total_deaths_per_million": 560.263, + "new_deaths_per_million": 3.742, + "new_deaths_smoothed_per_million": 2.988, + "new_tests": 96674.0, + "total_tests": 3587330.0, + "total_tests_per_thousand": 52.843, + "new_tests_per_thousand": 1.424, + "new_tests_smoothed": 84785.0, + "new_tests_smoothed_per_thousand": 1.249, + "tests_per_case": 57.896, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-05", + "total_cases": 260875.0, + "new_cases": 1356.0, + "new_cases_smoothed": 1396.0, + "total_deaths": 38164.0, + "new_deaths": 130.0, + "new_deaths_smoothed": 172.429, + "total_cases_per_million": 3842.839, + "new_cases_per_million": 19.975, + "new_cases_smoothed_per_million": 20.564, + "total_deaths_per_million": 562.178, + "new_deaths_per_million": 1.915, + "new_deaths_smoothed_per_million": 2.54, + "new_tests": 95445.0, + "total_tests": 3682775.0, + "total_tests_per_thousand": 54.249, + "new_tests_per_thousand": 1.406, + "new_tests_smoothed": 86330.0, + "new_tests_smoothed_per_thousand": 1.272, + "tests_per_case": 61.841, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-06", + "total_cases": 262118.0, + "new_cases": 1243.0, + "new_cases_smoothed": 1322.143, + "total_deaths": 38422.0, + "new_deaths": 258.0, + "new_deaths_smoothed": 170.143, + "total_cases_per_million": 3861.149, + "new_cases_per_million": 18.31, + "new_cases_smoothed_per_million": 19.476, + "total_deaths_per_million": 565.978, + "new_deaths_per_million": 3.8, + "new_deaths_smoothed_per_million": 2.506, + "new_tests": 98667.0, + "total_tests": 3782412.0, + "total_tests_per_thousand": 55.717, + "new_tests_per_thousand": 1.453, + "new_tests_smoothed": 86913.0, + "new_tests_smoothed_per_thousand": 1.28, + "tests_per_case": 65.736, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-07", + "total_cases": 263238.0, + "new_cases": 1120.0, + "new_cases_smoothed": 1264.0, + "total_deaths": 38565.0, + "new_deaths": 143.0, + "new_deaths_smoothed": 168.571, + "total_cases_per_million": 3877.648, + "new_cases_per_million": 16.498, + "new_cases_smoothed_per_million": 18.619, + "total_deaths_per_million": 568.085, + "new_deaths_per_million": 2.106, + "new_deaths_smoothed_per_million": 2.483, + "new_tests": 90562.0, + "total_tests": 3873426.0, + "total_tests_per_thousand": 57.058, + "new_tests_per_thousand": 1.334, + "new_tests_smoothed": 87077.0, + "new_tests_smoothed_per_thousand": 1.283, + "tests_per_case": 68.89, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 67.59 + }, + { + "date": "2020-06-08", + "total_cases": 264039.0, + "new_cases": 801.0, + "new_cases_smoothed": 1217.714, + "total_deaths": 38619.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 167.714, + "total_cases_per_million": 3889.447, + "new_cases_per_million": 11.799, + "new_cases_smoothed_per_million": 17.938, + "total_deaths_per_million": 568.88, + "new_deaths_per_million": 0.795, + "new_deaths_smoothed_per_million": 2.471, + "new_tests": 83790.0, + "total_tests": 3957326.0, + "total_tests_per_thousand": 58.294, + "new_tests_per_thousand": 1.234, + "new_tests_smoothed": 88311.0, + "new_tests_smoothed_per_thousand": 1.301, + "tests_per_case": 72.52199999999999, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-09", + "total_cases": 264760.0, + "new_cases": 721.0, + "new_cases_smoothed": 1166.571, + "total_deaths": 38666.0, + "new_deaths": 47.0, + "new_deaths_smoothed": 162.143, + "total_cases_per_million": 3900.068, + "new_cases_per_million": 10.621, + "new_cases_smoothed_per_million": 17.184, + "total_deaths_per_million": 569.572, + "new_deaths_per_million": 0.692, + "new_deaths_smoothed_per_million": 2.388, + "new_tests": 66769.0, + "total_tests": 4059548.0, + "total_tests_per_thousand": 59.799, + "new_tests_per_thousand": 0.984, + "new_tests_smoothed": 93668.0, + "new_tests_smoothed_per_thousand": 1.38, + "tests_per_case": 80.293, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-10", + "total_cases": 265859.0, + "new_cases": 1099.0, + "new_cases_smoothed": 1117.714, + "total_deaths": 38861.0, + "new_deaths": 195.0, + "new_deaths_smoothed": 154.429, + "total_cases_per_million": 3916.256, + "new_cases_per_million": 16.189, + "new_cases_smoothed_per_million": 16.465, + "total_deaths_per_million": 572.445, + "new_deaths_per_million": 2.872, + "new_deaths_smoothed_per_million": 2.275, + "new_tests": 91606.0, + "total_tests": 4151154.0, + "total_tests_per_thousand": 61.149, + "new_tests_per_thousand": 1.349, + "new_tests_smoothed": 94375.0, + "new_tests_smoothed_per_thousand": 1.39, + "tests_per_case": 84.436, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-11", + "total_cases": 267017.0, + "new_cases": 1158.0, + "new_cases_smoothed": 1071.143, + "total_deaths": 39025.0, + "new_deaths": 164.0, + "new_deaths_smoothed": 141.571, + "total_cases_per_million": 3933.314, + "new_cases_per_million": 17.058, + "new_cases_smoothed_per_million": 15.779, + "total_deaths_per_million": 574.861, + "new_deaths_per_million": 2.416, + "new_deaths_smoothed_per_million": 2.085, + "new_tests": 97852.0, + "total_tests": 4249081.0, + "total_tests_per_thousand": 62.591, + "new_tests_per_thousand": 1.441, + "new_tests_smoothed": 94536.0, + "new_tests_smoothed_per_thousand": 1.393, + "tests_per_case": 88.257, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-12", + "total_cases": 268216.0, + "new_cases": 1199.0, + "new_cases_smoothed": 1048.714, + "total_deaths": 39101.0, + "new_deaths": 76.0, + "new_deaths_smoothed": 133.857, + "total_cases_per_million": 3950.976, + "new_cases_per_million": 17.662, + "new_cases_smoothed_per_million": 15.448, + "total_deaths_per_million": 575.98, + "new_deaths_per_million": 1.12, + "new_deaths_smoothed_per_million": 1.972, + "new_tests": 98913.0, + "total_tests": 4349254.0, + "total_tests_per_thousand": 64.067, + "new_tests_per_thousand": 1.457, + "new_tests_smoothed": 95211.0, + "new_tests_smoothed_per_thousand": 1.403, + "tests_per_case": 90.788, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-13", + "total_cases": 269233.0, + "new_cases": 1017.0, + "new_cases_smoothed": 1016.429, + "total_deaths": 39232.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 115.714, + "total_cases_per_million": 3965.957, + "new_cases_per_million": 14.981, + "new_cases_smoothed_per_million": 14.973, + "total_deaths_per_million": 577.91, + "new_deaths_per_million": 1.93, + "new_deaths_smoothed_per_million": 1.705, + "new_tests": 95216.0, + "total_tests": 4445275.0, + "total_tests_per_thousand": 65.481, + "new_tests_per_thousand": 1.403, + "new_tests_smoothed": 94695.0, + "new_tests_smoothed_per_thousand": 1.395, + "tests_per_case": 93.164, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-14", + "total_cases": 270285.0, + "new_cases": 1052.0, + "new_cases_smoothed": 1006.714, + "total_deaths": 39339.0, + "new_deaths": 107.0, + "new_deaths_smoothed": 110.571, + "total_cases_per_million": 3981.454, + "new_cases_per_million": 15.497, + "new_cases_smoothed_per_million": 14.829, + "total_deaths_per_million": 579.486, + "new_deaths_per_million": 1.576, + "new_deaths_smoothed_per_million": 1.629, + "new_tests": 96044.0, + "total_tests": 4542174.0, + "total_tests_per_thousand": 66.909, + "new_tests_per_thousand": 1.415, + "new_tests_smoothed": 95535.0, + "new_tests_smoothed_per_thousand": 1.407, + "tests_per_case": 94.898, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 73.15 + }, + { + "date": "2020-06-15", + "total_cases": 271175.0, + "new_cases": 890.0, + "new_cases_smoothed": 1019.429, + "total_deaths": 39366.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 106.714, + "total_cases_per_million": 3994.564, + "new_cases_per_million": 13.11, + "new_cases_smoothed_per_million": 15.017, + "total_deaths_per_million": 579.884, + "new_deaths_per_million": 0.398, + "new_deaths_smoothed_per_million": 1.572, + "new_tests": 66688.0, + "total_tests": 4609714.0, + "total_tests_per_thousand": 67.904, + "new_tests_per_thousand": 0.982, + "new_tests_smoothed": 93198.0, + "new_tests_smoothed_per_thousand": 1.373, + "tests_per_case": 91.42200000000001, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-16", + "total_cases": 271997.0, + "new_cases": 822.0, + "new_cases_smoothed": 1033.857, + "total_deaths": 39395.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 104.143, + "total_cases_per_million": 4006.673, + "new_cases_per_million": 12.109, + "new_cases_smoothed_per_million": 15.229, + "total_deaths_per_million": 580.311, + "new_deaths_per_million": 0.427, + "new_deaths_smoothed_per_million": 1.534, + "new_tests": 67808.0, + "total_tests": 4677522.0, + "total_tests_per_thousand": 68.903, + "new_tests_per_thousand": 0.999, + "new_tests_smoothed": 88282.0, + "new_tests_smoothed_per_thousand": 1.3, + "tests_per_case": 85.391, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-17", + "total_cases": 273040.0, + "new_cases": 1043.0, + "new_cases_smoothed": 1025.857, + "total_deaths": 39515.0, + "new_deaths": 120.0, + "new_deaths_smoothed": 93.429, + "total_cases_per_million": 4022.037, + "new_cases_per_million": 15.364, + "new_cases_smoothed_per_million": 15.111, + "total_deaths_per_million": 582.079, + "new_deaths_per_million": 1.768, + "new_deaths_smoothed_per_million": 1.376, + "new_tests": 78962.0, + "total_tests": 4756484.0, + "total_tests_per_thousand": 70.066, + "new_tests_per_thousand": 1.163, + "new_tests_smoothed": 86476.0, + "new_tests_smoothed_per_thousand": 1.274, + "tests_per_case": 84.296, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-18", + "total_cases": 274142.0, + "new_cases": 1102.0, + "new_cases_smoothed": 1017.857, + "total_deaths": 39625.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 85.714, + "total_cases_per_million": 4038.27, + "new_cases_per_million": 16.233, + "new_cases_smoothed_per_million": 14.994, + "total_deaths_per_million": 583.699, + "new_deaths_per_million": 1.62, + "new_deaths_smoothed_per_million": 1.263, + "new_tests": 83864.0, + "total_tests": 4840348.0, + "total_tests_per_thousand": 71.301, + "new_tests_per_thousand": 1.235, + "new_tests_smoothed": 84467.0, + "new_tests_smoothed_per_thousand": 1.244, + "tests_per_case": 82.985, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-19", + "total_cases": 275155.0, + "new_cases": 1013.0, + "new_cases_smoothed": 991.286, + "total_deaths": 39692.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 84.429, + "total_cases_per_million": 4053.192, + "new_cases_per_million": 14.922, + "new_cases_smoothed_per_million": 14.602, + "total_deaths_per_million": 584.686, + "new_deaths_per_million": 0.987, + "new_deaths_smoothed_per_million": 1.244, + "new_tests": 86579.0, + "total_tests": 4930797.0, + "total_tests_per_thousand": 72.633, + "new_tests_per_thousand": 1.275, + "new_tests_smoothed": 83078.0, + "new_tests_smoothed_per_thousand": 1.224, + "tests_per_case": 83.80799999999999, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-20", + "total_cases": 276182.0, + "new_cases": 1027.0, + "new_cases_smoothed": 992.714, + "total_deaths": 39776.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 77.714, + "total_cases_per_million": 4068.32, + "new_cases_per_million": 15.128, + "new_cases_smoothed_per_million": 14.623, + "total_deaths_per_million": 585.923, + "new_deaths_per_million": 1.237, + "new_deaths_smoothed_per_million": 1.145, + "new_tests": 87191.0, + "total_tests": 5017988.0, + "total_tests_per_thousand": 73.918, + "new_tests_per_thousand": 1.284, + "new_tests_smoothed": 81816.0, + "new_tests_smoothed_per_thousand": 1.205, + "tests_per_case": 82.416, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-21", + "total_cases": 277168.0, + "new_cases": 986.0, + "new_cases_smoothed": 983.286, + "total_deaths": 39847.0, + "new_deaths": 71.0, + "new_deaths_smoothed": 72.571, + "total_cases_per_million": 4082.845, + "new_cases_per_million": 14.524, + "new_cases_smoothed_per_million": 14.484, + "total_deaths_per_million": 586.969, + "new_deaths_per_million": 1.046, + "new_deaths_smoothed_per_million": 1.069, + "new_tests": 80564.0, + "total_tests": 5098834.0, + "total_tests_per_thousand": 75.109, + "new_tests_per_thousand": 1.187, + "new_tests_smoothed": 79523.0, + "new_tests_smoothed_per_thousand": 1.171, + "tests_per_case": 80.875, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-22", + "total_cases": 277855.0, + "new_cases": 687.0, + "new_cases_smoothed": 954.286, + "total_deaths": 39878.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 73.143, + "total_cases_per_million": 4092.964, + "new_cases_per_million": 10.12, + "new_cases_smoothed_per_million": 14.057, + "total_deaths_per_million": 587.426, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 1.077, + "new_tests": 57102.0, + "total_tests": 5156119.0, + "total_tests_per_thousand": 75.953, + "new_tests_per_thousand": 0.841, + "new_tests_smoothed": 78058.0, + "new_tests_smoothed_per_thousand": 1.15, + "tests_per_case": 81.797, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-23", + "total_cases": 278494.0, + "new_cases": 639.0, + "new_cases_smoothed": 928.143, + "total_deaths": 39892.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 71.0, + "total_cases_per_million": 4102.377, + "new_cases_per_million": 9.413, + "new_cases_smoothed_per_million": 13.672, + "total_deaths_per_million": 587.632, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 1.046, + "new_tests": 59942.0, + "total_tests": 5219161.0, + "total_tests_per_thousand": 76.881, + "new_tests_per_thousand": 0.883, + "new_tests_smoothed": 77377.0, + "new_tests_smoothed_per_thousand": 1.14, + "tests_per_case": 83.368, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-24", + "total_cases": 279390.0, + "new_cases": 896.0, + "new_cases_smoothed": 907.143, + "total_deaths": 39986.0, + "new_deaths": 94.0, + "new_deaths_smoothed": 67.286, + "total_cases_per_million": 4115.576, + "new_cases_per_million": 13.199, + "new_cases_smoothed_per_million": 13.363, + "total_deaths_per_million": 589.017, + "new_deaths_per_million": 1.385, + "new_deaths_smoothed_per_million": 0.991, + "new_tests": 66756.0, + "total_tests": 5285917.0, + "total_tests_per_thousand": 77.865, + "new_tests_per_thousand": 0.983, + "new_tests_smoothed": 75633.0, + "new_tests_smoothed_per_thousand": 1.114, + "tests_per_case": 83.375, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-25", + "total_cases": 280276.0, + "new_cases": 886.0, + "new_cases_smoothed": 876.286, + "total_deaths": 40073.0, + "new_deaths": 87.0, + "new_deaths_smoothed": 64.0, + "total_cases_per_million": 4128.627, + "new_cases_per_million": 13.051, + "new_cases_smoothed_per_million": 12.908, + "total_deaths_per_million": 590.298, + "new_deaths_per_million": 1.282, + "new_deaths_smoothed_per_million": 0.943, + "new_tests": 88040.0, + "total_tests": 5373957.0, + "total_tests_per_thousand": 79.161, + "new_tests_per_thousand": 1.297, + "new_tests_smoothed": 76230.0, + "new_tests_smoothed_per_thousand": 1.123, + "tests_per_case": 86.992, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-26", + "total_cases": 281054.0, + "new_cases": 778.0, + "new_cases_smoothed": 842.714, + "total_deaths": 40172.0, + "new_deaths": 99.0, + "new_deaths_smoothed": 68.571, + "total_cases_per_million": 4140.088, + "new_cases_per_million": 11.46, + "new_cases_smoothed_per_million": 12.414, + "total_deaths_per_million": 591.757, + "new_deaths_per_million": 1.458, + "new_deaths_smoothed_per_million": 1.01, + "new_tests": 93173.0, + "total_tests": 5510701.0, + "total_tests_per_thousand": 81.176, + "new_tests_per_thousand": 1.372, + "new_tests_smoothed": 82843.0, + "new_tests_smoothed_per_thousand": 1.22, + "tests_per_case": 98.305, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-27", + "total_cases": 281775.0, + "new_cases": 721.0, + "new_cases_smoothed": 799.0, + "total_deaths": 40249.0, + "new_deaths": 77.0, + "new_deaths_smoothed": 67.571, + "total_cases_per_million": 4150.708, + "new_cases_per_million": 10.621, + "new_cases_smoothed_per_million": 11.77, + "total_deaths_per_million": 592.891, + "new_deaths_per_million": 1.134, + "new_deaths_smoothed_per_million": 0.995, + "new_tests": 93392.0, + "total_tests": 5604093.0, + "total_tests_per_thousand": 82.552, + "new_tests_per_thousand": 1.376, + "new_tests_smoothed": 83729.0, + "new_tests_smoothed_per_thousand": 1.233, + "tests_per_case": 104.792, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-28", + "total_cases": 282446.0, + "new_cases": 671.0, + "new_cases_smoothed": 754.0, + "total_deaths": 40289.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 63.143, + "total_cases_per_million": 4160.593, + "new_cases_per_million": 9.884, + "new_cases_smoothed_per_million": 11.107, + "total_deaths_per_million": 593.48, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 0.93, + "new_tests": 90897.0, + "total_tests": 5694990.0, + "total_tests_per_thousand": 83.89, + "new_tests_per_thousand": 1.339, + "new_tests_smoothed": 85165.0, + "new_tests_smoothed_per_thousand": 1.255, + "tests_per_case": 112.95100000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-29", + "total_cases": 283095.0, + "new_cases": 649.0, + "new_cases_smoothed": 748.571, + "total_deaths": 40320.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 63.143, + "total_cases_per_million": 4170.153, + "new_cases_per_million": 9.56, + "new_cases_smoothed_per_million": 11.027, + "total_deaths_per_million": 593.937, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.93, + "new_tests": 64453.0, + "total_tests": 5760203.0, + "total_tests_per_thousand": 84.851, + "new_tests_per_thousand": 0.949, + "new_tests_smoothed": 86298.0, + "new_tests_smoothed_per_thousand": 1.271, + "tests_per_case": 115.28399999999999, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-06-30", + "total_cases": 283541.0, + "new_cases": 446.0, + "new_cases_smoothed": 721.0, + "total_deaths": 40341.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 64.143, + "total_cases_per_million": 4176.722, + "new_cases_per_million": 6.57, + "new_cases_smoothed_per_million": 10.621, + "total_deaths_per_million": 594.246, + "new_deaths_per_million": 0.309, + "new_deaths_smoothed_per_million": 0.945, + "new_tests": 62572.0, + "total_tests": 5825239.0, + "total_tests_per_thousand": 85.809, + "new_tests_per_thousand": 0.922, + "new_tests_smoothed": 86583.0, + "new_tests_smoothed_per_thousand": 1.275, + "tests_per_case": 120.087, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-01", + "total_cases": 284271.0, + "new_cases": 730.0, + "new_cases_smoothed": 697.286, + "total_deaths": 40394.0, + "new_deaths": 53.0, + "new_deaths_smoothed": 58.286, + "total_cases_per_million": 4187.476, + "new_cases_per_million": 10.753, + "new_cases_smoothed_per_million": 10.271, + "total_deaths_per_million": 595.027, + "new_deaths_per_million": 0.781, + "new_deaths_smoothed_per_million": 0.859, + "new_tests": 97367.0, + "total_tests": 5922583.0, + "total_tests_per_thousand": 87.243, + "new_tests_per_thousand": 1.434, + "new_tests_smoothed": 90952.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 130.437, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-02", + "total_cases": 284888.0, + "new_cases": 617.0, + "new_cases_smoothed": 658.857, + "total_deaths": 40491.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 59.714, + "total_cases_per_million": 4196.565, + "new_cases_per_million": 9.089, + "new_cases_smoothed_per_million": 9.705, + "total_deaths_per_million": 596.456, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 0.88, + "new_tests": 112636.0, + "total_tests": 6035588.0, + "total_tests_per_thousand": 88.908, + "new_tests_per_thousand": 1.659, + "new_tests_smoothed": 94519.0, + "new_tests_smoothed_per_thousand": 1.392, + "tests_per_case": 143.459, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-03", + "total_cases": 285539.0, + "new_cases": 651.0, + "new_cases_smoothed": 640.714, + "total_deaths": 40532.0, + "new_deaths": 41.0, + "new_deaths_smoothed": 51.429, + "total_cases_per_million": 4206.154, + "new_cases_per_million": 9.59, + "new_cases_smoothed_per_million": 9.438, + "total_deaths_per_million": 597.06, + "new_deaths_per_million": 0.604, + "new_deaths_smoothed_per_million": 0.758, + "new_tests": 112130.0, + "total_tests": 6147681.0, + "total_tests_per_thousand": 90.559, + "new_tests_per_thousand": 1.652, + "new_tests_smoothed": 90997.0, + "new_tests_smoothed_per_thousand": 1.34, + "tests_per_case": 142.024, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 71.3 + }, + { + "date": "2020-07-04", + "total_cases": 286141.0, + "new_cases": 602.0, + "new_cases_smoothed": 623.714, + "total_deaths": 40581.0, + "new_deaths": 49.0, + "new_deaths_smoothed": 47.429, + "total_cases_per_million": 4215.022, + "new_cases_per_million": 8.868, + "new_cases_smoothed_per_million": 9.188, + "total_deaths_per_million": 597.782, + "new_deaths_per_million": 0.722, + "new_deaths_smoothed_per_million": 0.699, + "new_tests": 114178.0, + "total_tests": 6262114.0, + "total_tests_per_thousand": 92.245, + "new_tests_per_thousand": 1.682, + "new_tests_smoothed": 94003.0, + "new_tests_smoothed_per_thousand": 1.385, + "tests_per_case": 150.715, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-07-05", + "total_cases": 286720.0, + "new_cases": 579.0, + "new_cases_smoothed": 610.571, + "total_deaths": 40613.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 46.286, + "total_cases_per_million": 4223.551, + "new_cases_per_million": 8.529, + "new_cases_smoothed_per_million": 8.994, + "total_deaths_per_million": 598.253, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.682, + "new_tests": 93173.0, + "total_tests": 6355415.0, + "total_tests_per_thousand": 93.619, + "new_tests_per_thousand": 1.372, + "new_tests_smoothed": 94346.0, + "new_tests_smoothed_per_thousand": 1.39, + "tests_per_case": 154.52100000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 69.91 + }, + { + "date": "2020-07-06", + "total_cases": 287121.0, + "new_cases": 401.0, + "new_cases_smoothed": 575.143, + "total_deaths": 40632.0, + "new_deaths": 19.0, + "new_deaths_smoothed": 44.571, + "total_cases_per_million": 4229.458, + "new_cases_per_million": 5.907, + "new_cases_smoothed_per_million": 8.472, + "total_deaths_per_million": 598.533, + "new_deaths_per_million": 0.28, + "new_deaths_smoothed_per_million": 0.657, + "new_tests": 76984.0, + "total_tests": 6433120.0, + "total_tests_per_thousand": 94.764, + "new_tests_per_thousand": 1.134, + "new_tests_smoothed": 96131.0, + "new_tests_smoothed_per_thousand": 1.416, + "tests_per_case": 167.143, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-07", + "total_cases": 287676.0, + "new_cases": 555.0, + "new_cases_smoothed": 590.714, + "total_deaths": 40643.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 43.143, + "total_cases_per_million": 4237.633, + "new_cases_per_million": 8.175, + "new_cases_smoothed_per_million": 8.702, + "total_deaths_per_million": 598.695, + "new_deaths_per_million": 0.162, + "new_deaths_smoothed_per_million": 0.636, + "new_tests": 63533.0, + "total_tests": 6496653.0, + "total_tests_per_thousand": 95.699, + "new_tests_per_thousand": 0.936, + "new_tests_smoothed": 95916.0, + "new_tests_smoothed_per_thousand": 1.413, + "tests_per_case": 162.373, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-08", + "total_cases": 288380.0, + "new_cases": 704.0, + "new_cases_smoothed": 587.0, + "total_deaths": 40697.0, + "new_deaths": 54.0, + "new_deaths_smoothed": 43.286, + "total_cases_per_million": 4248.004, + "new_cases_per_million": 10.37, + "new_cases_smoothed_per_million": 8.647, + "total_deaths_per_million": 599.49, + "new_deaths_per_million": 0.795, + "new_deaths_smoothed_per_million": 0.638, + "new_tests": 100689.0, + "total_tests": 6597342.0, + "total_tests_per_thousand": 97.183, + "new_tests_per_thousand": 1.483, + "new_tests_smoothed": 96394.0, + "new_tests_smoothed_per_thousand": 1.42, + "tests_per_case": 164.215, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-09", + "total_cases": 288977.0, + "new_cases": 597.0, + "new_cases_smoothed": 584.143, + "total_deaths": 40754.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 37.571, + "total_cases_per_million": 4256.798, + "new_cases_per_million": 8.794, + "new_cases_smoothed_per_million": 8.605, + "total_deaths_per_million": 600.33, + "new_deaths_per_million": 0.84, + "new_deaths_smoothed_per_million": 0.553, + "new_tests": 120318.0, + "total_tests": 6717480.0, + "total_tests_per_thousand": 98.952, + "new_tests_per_thousand": 1.772, + "new_tests_smoothed": 97413.0, + "new_tests_smoothed_per_thousand": 1.435, + "tests_per_case": 166.762, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-10", + "total_cases": 289670.0, + "new_cases": 693.0, + "new_cases_smoothed": 590.143, + "total_deaths": 40785.0, + "new_deaths": 31.0, + "new_deaths_smoothed": 36.143, + "total_cases_per_million": 4267.006, + "new_cases_per_million": 10.208, + "new_cases_smoothed_per_million": 8.693, + "total_deaths_per_million": 600.787, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.532, + "new_tests": 131848.0, + "total_tests": 6849508.0, + "total_tests_per_thousand": 100.897, + "new_tests_per_thousand": 1.942, + "new_tests_smoothed": 100261.0, + "new_tests_smoothed_per_thousand": 1.477, + "tests_per_case": 169.893, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-11", + "total_cases": 290385.0, + "new_cases": 715.0, + "new_cases_smoothed": 606.286, + "total_deaths": 40819.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 34.0, + "total_cases_per_million": 4277.539, + "new_cases_per_million": 10.532, + "new_cases_smoothed_per_million": 8.931, + "total_deaths_per_million": 601.287, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.501, + "new_tests": 128125.0, + "total_tests": 6977736.0, + "total_tests_per_thousand": 102.786, + "new_tests_per_thousand": 1.887, + "new_tests_smoothed": 102232.0, + "new_tests_smoothed_per_thousand": 1.506, + "tests_per_case": 168.62, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-12", + "total_cases": 290950.0, + "new_cases": 565.0, + "new_cases_smoothed": 604.286, + "total_deaths": 40836.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 31.857, + "total_cases_per_million": 4285.861, + "new_cases_per_million": 8.323, + "new_cases_smoothed_per_million": 8.901, + "total_deaths_per_million": 601.538, + "new_deaths_per_million": 0.25, + "new_deaths_smoothed_per_million": 0.469, + "new_tests": 124094.0, + "total_tests": 7101830.0, + "total_tests_per_thousand": 104.614, + "new_tests_per_thousand": 1.828, + "new_tests_smoothed": 106631.0, + "new_tests_smoothed_per_thousand": 1.571, + "tests_per_case": 176.458, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-13", + "total_cases": 291392.0, + "new_cases": 442.0, + "new_cases_smoothed": 610.143, + "total_deaths": 40845.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 4292.372, + "new_cases_per_million": 6.511, + "new_cases_smoothed_per_million": 8.988, + "total_deaths_per_million": 601.67, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.448, + "new_tests": 86609.0, + "total_tests": 7188816.0, + "total_tests_per_thousand": 105.895, + "new_tests_per_thousand": 1.276, + "new_tests_smoothed": 107957.0, + "new_tests_smoothed_per_thousand": 1.59, + "tests_per_case": 176.937, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-14", + "total_cases": 291753.0, + "new_cases": 361.0, + "new_cases_smoothed": 582.429, + "total_deaths": 40855.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 30.286, + "total_cases_per_million": 4297.69, + "new_cases_per_million": 5.318, + "new_cases_smoothed_per_million": 8.58, + "total_deaths_per_million": 601.818, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.446, + "new_tests": 74760.0, + "total_tests": 7262633.0, + "total_tests_per_thousand": 106.983, + "new_tests_per_thousand": 1.101, + "new_tests_smoothed": 109426.0, + "new_tests_smoothed_per_thousand": 1.612, + "tests_per_case": 187.87900000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-15", + "total_cases": 292479.0, + "new_cases": 726.0, + "new_cases_smoothed": 585.571, + "total_deaths": 40899.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 28.857, + "total_cases_per_million": 4308.384, + "new_cases_per_million": 10.694, + "new_cases_smoothed_per_million": 8.626, + "total_deaths_per_million": 602.466, + "new_deaths_per_million": 0.648, + "new_deaths_smoothed_per_million": 0.425, + "new_tests": 112495.0, + "total_tests": 7375594.0, + "total_tests_per_thousand": 108.647, + "new_tests_per_thousand": 1.657, + "new_tests_smoothed": 111179.0, + "new_tests_smoothed_per_thousand": 1.638, + "tests_per_case": 189.864, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-16", + "total_cases": 293164.0, + "new_cases": 685.0, + "new_cases_smoothed": 598.143, + "total_deaths": 40925.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 24.429, + "total_cases_per_million": 4318.475, + "new_cases_per_million": 10.09, + "new_cases_smoothed_per_million": 8.811, + "total_deaths_per_million": 602.849, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.36, + "new_tests": 129616.0, + "total_tests": 7508695.0, + "total_tests_per_thousand": 110.607, + "new_tests_per_thousand": 1.909, + "new_tests_smoothed": 113031.0, + "new_tests_smoothed_per_thousand": 1.665, + "tests_per_case": 188.97, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-17", + "total_cases": 293936.0, + "new_cases": 772.0, + "new_cases_smoothed": 609.429, + "total_deaths": 40949.0, + "new_deaths": 24.0, + "new_deaths_smoothed": 23.429, + "total_cases_per_million": 4329.847, + "new_cases_per_million": 11.372, + "new_cases_smoothed_per_million": 8.977, + "total_deaths_per_million": 603.202, + "new_deaths_per_million": 0.354, + "new_deaths_smoothed_per_million": 0.345, + "new_tests": 149215.0, + "total_tests": 7658207.0, + "total_tests_per_thousand": 112.81, + "new_tests_per_thousand": 2.198, + "new_tests_smoothed": 115528.0, + "new_tests_smoothed_per_thousand": 1.702, + "tests_per_case": 189.56799999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-18", + "total_cases": 294640.0, + "new_cases": 704.0, + "new_cases_smoothed": 607.857, + "total_deaths": 40975.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 22.286, + "total_cases_per_million": 4340.217, + "new_cases_per_million": 10.37, + "new_cases_smoothed_per_million": 8.954, + "total_deaths_per_million": 603.585, + "new_deaths_per_million": 0.383, + "new_deaths_smoothed_per_million": 0.328, + "new_tests": 157256.0, + "total_tests": 7815903.0, + "total_tests_per_thousand": 115.133, + "new_tests_per_thousand": 2.316, + "new_tests_smoothed": 119738.0, + "new_tests_smoothed_per_thousand": 1.764, + "tests_per_case": 196.984, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-19", + "total_cases": 295209.0, + "new_cases": 569.0, + "new_cases_smoothed": 608.429, + "total_deaths": 40984.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 21.143, + "total_cases_per_million": 4348.599, + "new_cases_per_million": 8.382, + "new_cases_smoothed_per_million": 8.963, + "total_deaths_per_million": 603.718, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.311, + "new_tests": 131697.0, + "total_tests": 7947599.0, + "total_tests_per_thousand": 117.073, + "new_tests_per_thousand": 1.94, + "new_tests_smoothed": 120824.0, + "new_tests_smoothed_per_thousand": 1.78, + "tests_per_case": 198.584, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-20", + "total_cases": 295702.0, + "new_cases": 493.0, + "new_cases_smoothed": 615.714, + "total_deaths": 40995.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 4355.861, + "new_cases_per_million": 7.262, + "new_cases_smoothed_per_million": 9.07, + "total_deaths_per_million": 603.88, + "new_deaths_per_million": 0.162, + "new_deaths_smoothed_per_million": 0.316, + "new_tests": 102572.0, + "total_tests": 8050171.0, + "total_tests_per_thousand": 118.584, + "new_tests_per_thousand": 1.511, + "new_tests_smoothed": 123051.0, + "new_tests_smoothed_per_thousand": 1.813, + "tests_per_case": 199.851, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-21", + "total_cases": 296115.0, + "new_cases": 413.0, + "new_cases_smoothed": 623.143, + "total_deaths": 41005.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 21.429, + "total_cases_per_million": 4361.945, + "new_cases_per_million": 6.084, + "new_cases_smoothed_per_million": 9.179, + "total_deaths_per_million": 604.027, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.316, + "new_tests": 84093.0, + "total_tests": 8135242.0, + "total_tests_per_thousand": 119.837, + "new_tests_per_thousand": 1.239, + "new_tests_smoothed": 124658.0, + "new_tests_smoothed_per_thousand": 1.836, + "tests_per_case": 200.047, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-22", + "total_cases": 296908.0, + "new_cases": 793.0, + "new_cases_smoothed": 632.714, + "total_deaths": 41030.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 18.714, + "total_cases_per_million": 4373.626, + "new_cases_per_million": 11.681, + "new_cases_smoothed_per_million": 9.32, + "total_deaths_per_million": 604.396, + "new_deaths_per_million": 0.368, + "new_deaths_smoothed_per_million": 0.276, + "new_tests": 121694.0, + "total_tests": 8256935.0, + "total_tests_per_thousand": 121.629, + "new_tests_per_thousand": 1.793, + "new_tests_smoothed": 125906.0, + "new_tests_smoothed_per_thousand": 1.855, + "tests_per_case": 198.993, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-23", + "total_cases": 297659.0, + "new_cases": 751.0, + "new_cases_smoothed": 642.143, + "total_deaths": 41047.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 4384.689, + "new_cases_per_million": 11.063, + "new_cases_smoothed_per_million": 9.459, + "total_deaths_per_million": 604.646, + "new_deaths_per_million": 0.25, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 131462.0, + "total_tests": 8388397.0, + "total_tests_per_thousand": 123.566, + "new_tests_per_thousand": 1.937, + "new_tests_smoothed": 125672.0, + "new_tests_smoothed_per_thousand": 1.851, + "tests_per_case": 195.707, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-24", + "total_cases": 298432.0, + "new_cases": 773.0, + "new_cases_smoothed": 642.286, + "total_deaths": 41056.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 15.286, + "total_cases_per_million": 4396.076, + "new_cases_per_million": 11.387, + "new_cases_smoothed_per_million": 9.461, + "total_deaths_per_million": 604.779, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.225, + "new_tests": 134293.0, + "total_tests": 8522679.0, + "total_tests_per_thousand": 125.544, + "new_tests_per_thousand": 1.978, + "new_tests_smoothed": 123496.0, + "new_tests_smoothed_per_thousand": 1.819, + "tests_per_case": 192.27599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-25", + "total_cases": 299163.0, + "new_cases": 731.0, + "new_cases_smoothed": 646.143, + "total_deaths": 41088.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 4406.844, + "new_cases_per_million": 10.768, + "new_cases_smoothed_per_million": 9.518, + "total_deaths_per_million": 605.25, + "new_deaths_per_million": 0.471, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 140779.0, + "total_tests": 8663993.0, + "total_tests_per_thousand": 127.626, + "new_tests_per_thousand": 2.074, + "new_tests_smoothed": 121156.0, + "new_tests_smoothed_per_thousand": 1.785, + "tests_per_case": 187.507, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-26", + "total_cases": 299830.0, + "new_cases": 667.0, + "new_cases_smoothed": 660.143, + "total_deaths": 41103.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 17.0, + "total_cases_per_million": 4416.669, + "new_cases_per_million": 9.825, + "new_cases_smoothed_per_million": 9.724, + "total_deaths_per_million": 605.471, + "new_deaths_per_million": 0.221, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 134045.0, + "total_tests": 8798036.0, + "total_tests_per_thousand": 129.6, + "new_tests_per_thousand": 1.975, + "new_tests_smoothed": 121491.0, + "new_tests_smoothed_per_thousand": 1.79, + "tests_per_case": 184.037, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-27", + "total_cases": 300251.0, + "new_cases": 421.0, + "new_cases_smoothed": 649.857, + "total_deaths": 41111.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 16.571, + "total_cases_per_million": 4422.87, + "new_cases_per_million": 6.202, + "new_cases_smoothed_per_million": 9.573, + "total_deaths_per_million": 605.589, + "new_deaths_per_million": 0.118, + "new_deaths_smoothed_per_million": 0.244, + "new_tests": 104549.0, + "total_tests": 8904608.0, + "total_tests_per_thousand": 131.17, + "new_tests_per_thousand": 1.54, + "new_tests_smoothed": 122062.0, + "new_tests_smoothed_per_thousand": 1.798, + "tests_per_case": 187.829, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-28", + "total_cases": 300622.0, + "new_cases": 371.0, + "new_cases_smoothed": 643.857, + "total_deaths": 41114.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 15.571, + "total_cases_per_million": 4428.335, + "new_cases_per_million": 5.465, + "new_cases_smoothed_per_million": 9.484, + "total_deaths_per_million": 605.633, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.229, + "new_tests": 82265.0, + "total_tests": 8986873.0, + "total_tests_per_thousand": 132.382, + "new_tests_per_thousand": 1.212, + "new_tests_smoothed": 121662.0, + "new_tests_smoothed_per_thousand": 1.792, + "tests_per_case": 188.958, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-29", + "total_cases": 300692.0, + "new_cases": 70.0, + "new_cases_smoothed": 540.571, + "total_deaths": 41135.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 15.0, + "total_cases_per_million": 4429.367, + "new_cases_per_million": 1.031, + "new_cases_smoothed_per_million": 7.963, + "total_deaths_per_million": 605.942, + "new_deaths_per_million": 0.309, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 130611.0, + "total_tests": 9117483.0, + "total_tests_per_thousand": 134.306, + "new_tests_per_thousand": 1.924, + "new_tests_smoothed": 122935.0, + "new_tests_smoothed_per_thousand": 1.811, + "tests_per_case": 227.417, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-30", + "total_cases": 301455.0, + "new_cases": 763.0, + "new_cases_smoothed": 542.286, + "total_deaths": 41169.0, + "new_deaths": 34.0, + "new_deaths_smoothed": 17.429, + "total_cases_per_million": 4440.606, + "new_cases_per_million": 11.239, + "new_cases_smoothed_per_million": 7.988, + "total_deaths_per_million": 606.443, + "new_deaths_per_million": 0.501, + "new_deaths_smoothed_per_million": 0.257, + "new_tests": 143319.0, + "total_tests": 9260989.0, + "total_tests_per_thousand": 136.42, + "new_tests_per_thousand": 2.111, + "new_tests_smoothed": 124656.0, + "new_tests_smoothed_per_thousand": 1.836, + "tests_per_case": 229.87099999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-07-31", + "total_cases": 302301.0, + "new_cases": 846.0, + "new_cases_smoothed": 552.714, + "total_deaths": 41169.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 16.143, + "total_cases_per_million": 4453.068, + "new_cases_per_million": 12.462, + "new_cases_smoothed_per_million": 8.142, + "total_deaths_per_million": 606.443, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.238, + "new_tests": 154034.0, + "total_tests": 9415384.0, + "total_tests_per_thousand": 138.694, + "new_tests_per_thousand": 2.269, + "new_tests_smoothed": 127529.0, + "new_tests_smoothed_per_thousand": 1.879, + "tests_per_case": 230.732, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-01", + "total_cases": 303181.0, + "new_cases": 880.0, + "new_cases_smoothed": 574.0, + "total_deaths": 41189.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 14.429, + "total_cases_per_million": 4466.031, + "new_cases_per_million": 12.963, + "new_cases_smoothed_per_million": 8.455, + "total_deaths_per_million": 606.738, + "new_deaths_per_million": 0.295, + "new_deaths_smoothed_per_million": 0.213, + "new_tests": 147002.0, + "total_tests": 9562383.0, + "total_tests_per_thousand": 140.859, + "new_tests_per_thousand": 2.165, + "new_tests_smoothed": 128341.0, + "new_tests_smoothed_per_thousand": 1.891, + "tests_per_case": 223.59099999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-02", + "total_cases": 303952.0, + "new_cases": 771.0, + "new_cases_smoothed": 588.857, + "total_deaths": 41202.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 14.143, + "total_cases_per_million": 4477.388, + "new_cases_per_million": 11.357, + "new_cases_smoothed_per_million": 8.674, + "total_deaths_per_million": 606.929, + "new_deaths_per_million": 0.191, + "new_deaths_smoothed_per_million": 0.208, + "new_tests": 130999.0, + "total_tests": 9693382.0, + "total_tests_per_thousand": 142.789, + "new_tests_per_thousand": 1.93, + "new_tests_smoothed": 127907.0, + "new_tests_smoothed_per_thousand": 1.884, + "tests_per_case": 217.21200000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-03", + "total_cases": 304695.0, + "new_cases": 743.0, + "new_cases_smoothed": 634.857, + "total_deaths": 41207.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 4488.333, + "new_cases_per_million": 10.945, + "new_cases_smoothed_per_million": 9.352, + "total_deaths_per_million": 607.003, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.202, + "new_tests": 124088.0, + "total_tests": 9818696.0, + "total_tests_per_thousand": 144.635, + "new_tests_per_thousand": 1.828, + "new_tests_smoothed": 130584.0, + "new_tests_smoothed_per_thousand": 1.924, + "tests_per_case": 205.69, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-04", + "total_cases": 305623.0, + "new_cases": 928.0, + "new_cases_smoothed": 714.429, + "total_deaths": 41208.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 4502.003, + "new_cases_per_million": 13.67, + "new_cases_smoothed_per_million": 10.524, + "total_deaths_per_million": 607.018, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.198, + "new_tests": 123291.0, + "total_tests": 9941987.0, + "total_tests_per_thousand": 146.451, + "new_tests_per_thousand": 1.816, + "new_tests_smoothed": 136445.0, + "new_tests_smoothed_per_thousand": 2.01, + "tests_per_case": 190.985, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-05", + "total_cases": 306293.0, + "new_cases": 670.0, + "new_cases_smoothed": 800.143, + "total_deaths": 41226.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 13.0, + "total_cases_per_million": 4511.873, + "new_cases_per_million": 9.869, + "new_cases_smoothed_per_million": 11.787, + "total_deaths_per_million": 607.283, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.191, + "new_tests": 140745.0, + "total_tests": 10083427.0, + "total_tests_per_thousand": 148.535, + "new_tests_per_thousand": 2.073, + "new_tests_smoothed": 137992.0, + "new_tests_smoothed_per_thousand": 2.033, + "tests_per_case": 172.459, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-06", + "total_cases": 307184.0, + "new_cases": 891.0, + "new_cases_smoothed": 818.429, + "total_deaths": 41240.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 4524.998, + "new_cases_per_million": 13.125, + "new_cases_smoothed_per_million": 12.056, + "total_deaths_per_million": 607.489, + "new_deaths_per_million": 0.206, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 152551.0, + "total_tests": 10236970.0, + "total_tests_per_thousand": 150.796, + "new_tests_per_thousand": 2.247, + "new_tests_smoothed": 139426.0, + "new_tests_smoothed_per_thousand": 2.054, + "tests_per_case": 170.358, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-07", + "total_cases": 308134.0, + "new_cases": 950.0, + "new_cases_smoothed": 833.286, + "total_deaths": 41258.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4538.992, + "new_cases_per_million": 13.994, + "new_cases_smoothed_per_million": 12.275, + "total_deaths_per_million": 607.754, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 162713.0, + "total_tests": 10400408.0, + "total_tests_per_thousand": 153.204, + "new_tests_per_thousand": 2.397, + "new_tests_smoothed": 140718.0, + "new_tests_smoothed_per_thousand": 2.073, + "tests_per_case": 168.87099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-08", + "total_cases": 309005.0, + "new_cases": 871.0, + "new_cases_smoothed": 832.0, + "total_deaths": 41270.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 4551.822, + "new_cases_per_million": 12.83, + "new_cases_smoothed_per_million": 12.256, + "total_deaths_per_million": 607.931, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.17, + "new_tests": 156140.0, + "total_tests": 10556548.0, + "total_tests_per_thousand": 155.504, + "new_tests_per_thousand": 2.3, + "new_tests_smoothed": 142024.0, + "new_tests_smoothed_per_thousand": 2.092, + "tests_per_case": 170.702, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-09", + "total_cases": 309763.0, + "new_cases": 758.0, + "new_cases_smoothed": 830.143, + "total_deaths": 41273.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 4562.988, + "new_cases_per_million": 11.166, + "new_cases_smoothed_per_million": 12.228, + "total_deaths_per_million": 607.975, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 146826.0, + "total_tests": 10703374.0, + "total_tests_per_thousand": 157.667, + "new_tests_per_thousand": 2.163, + "new_tests_smoothed": 144285.0, + "new_tests_smoothed_per_thousand": 2.125, + "tests_per_case": 173.80700000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-10", + "total_cases": 310825.0, + "new_cases": 1062.0, + "new_cases_smoothed": 875.714, + "total_deaths": 41278.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.143, + "total_cases_per_million": 4578.632, + "new_cases_per_million": 15.644, + "new_cases_smoothed_per_million": 12.9, + "total_deaths_per_million": 608.049, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.149, + "new_tests": 153214.0, + "total_tests": 10857124.0, + "total_tests_per_thousand": 159.932, + "new_tests_per_thousand": 2.257, + "new_tests_smoothed": 148347.0, + "new_tests_smoothed_per_thousand": 2.185, + "tests_per_case": 169.40099999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-11", + "total_cases": 311641.0, + "new_cases": 816.0, + "new_cases_smoothed": 859.714, + "total_deaths": 41296.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 4590.652, + "new_cases_per_million": 12.02, + "new_cases_smoothed_per_million": 12.664, + "total_deaths_per_million": 608.314, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 135827.0, + "total_tests": 10993551.0, + "total_tests_per_thousand": 161.941, + "new_tests_per_thousand": 2.001, + "new_tests_smoothed": 150223.0, + "new_tests_smoothed_per_thousand": 2.213, + "tests_per_case": 174.736, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-12", + "total_cases": 312789.0, + "new_cases": 1148.0, + "new_cases_smoothed": 928.0, + "total_deaths": 41309.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 11.857, + "total_cases_per_million": 4607.562, + "new_cases_per_million": 16.911, + "new_cases_smoothed_per_million": 13.67, + "total_deaths_per_million": 608.505, + "new_deaths_per_million": 0.191, + "new_deaths_smoothed_per_million": 0.175, + "new_tests": 147534.0, + "total_tests": 11141214.0, + "total_tests_per_thousand": 164.117, + "new_tests_per_thousand": 2.173, + "new_tests_smoothed": 151112.0, + "new_tests_smoothed_per_thousand": 2.226, + "tests_per_case": 162.836, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 68.06 + }, + { + "date": "2020-08-13", + "total_cases": 313798.0, + "new_cases": 1009.0, + "new_cases_smoothed": 944.857, + "total_deaths": 41329.0, + "new_deaths": 20.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4622.426, + "new_cases_per_million": 14.863, + "new_cases_smoothed_per_million": 13.918, + "total_deaths_per_million": 608.8, + "new_deaths_per_million": 0.295, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 167983.0, + "total_tests": 11310805.0, + "total_tests_per_thousand": 166.615, + "new_tests_per_thousand": 2.474, + "new_tests_smoothed": 153405.0, + "new_tests_smoothed_per_thousand": 2.26, + "tests_per_case": 162.358, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-14", + "total_cases": 314927.0, + "new_cases": 1129.0, + "new_cases_smoothed": 970.429, + "total_deaths": 41347.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 12.714, + "total_cases_per_million": 4639.056, + "new_cases_per_million": 16.631, + "new_cases_smoothed_per_million": 14.295, + "total_deaths_per_million": 609.065, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.187, + "new_tests": 159433.0, + "total_tests": 11471425.0, + "total_tests_per_thousand": 168.981, + "new_tests_per_thousand": 2.349, + "new_tests_smoothed": 153002.0, + "new_tests_smoothed_per_thousand": 2.254, + "tests_per_case": 157.664, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-15", + "total_cases": 316367.0, + "new_cases": 1440.0, + "new_cases_smoothed": 1051.714, + "total_deaths": 41358.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 4660.268, + "new_cases_per_million": 21.212, + "new_cases_smoothed_per_million": 15.492, + "total_deaths_per_million": 609.227, + "new_deaths_per_million": 0.162, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 167759.0, + "total_tests": 11639184.0, + "total_tests_per_thousand": 171.452, + "new_tests_per_thousand": 2.471, + "new_tests_smoothed": 154662.0, + "new_tests_smoothed_per_thousand": 2.278, + "tests_per_case": 147.05700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-16", + "total_cases": 317444.0, + "new_cases": 1077.0, + "new_cases_smoothed": 1097.286, + "total_deaths": 41361.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 4676.133, + "new_cases_per_million": 15.865, + "new_cases_smoothed_per_million": 16.164, + "total_deaths_per_million": 609.271, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 174914.0, + "total_tests": 11814098.0, + "total_tests_per_thousand": 174.028, + "new_tests_per_thousand": 2.577, + "new_tests_smoothed": 158675.0, + "new_tests_smoothed_per_thousand": 2.337, + "tests_per_case": 144.607, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-17", + "total_cases": 318484.0, + "new_cases": 1040.0, + "new_cases_smoothed": 1094.143, + "total_deaths": 41366.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 4691.453, + "new_cases_per_million": 15.32, + "new_cases_smoothed_per_million": 16.117, + "total_deaths_per_million": 609.345, + "new_deaths_per_million": 0.074, + "new_deaths_smoothed_per_million": 0.185, + "new_tests": 162256.0, + "total_tests": 11978298.0, + "total_tests_per_thousand": 176.447, + "new_tests_per_thousand": 2.39, + "new_tests_smoothed": 160168.0, + "new_tests_smoothed_per_thousand": 2.359, + "tests_per_case": 146.387, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-18", + "total_cases": 319197.0, + "new_cases": 713.0, + "new_cases_smoothed": 1079.429, + "total_deaths": 41369.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 10.429, + "total_cases_per_million": 4701.956, + "new_cases_per_million": 10.503, + "new_cases_smoothed_per_million": 15.901, + "total_deaths_per_million": 609.389, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.154, + "new_tests": 140608.0, + "total_tests": 12118924.0, + "total_tests_per_thousand": 178.519, + "new_tests_per_thousand": 2.071, + "new_tests_smoothed": 160768.0, + "new_tests_smoothed_per_thousand": 2.368, + "tests_per_case": 148.938, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-19", + "total_cases": 320286.0, + "new_cases": 1089.0, + "new_cases_smoothed": 1071.0, + "total_deaths": 41381.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.286, + "total_cases_per_million": 4717.998, + "new_cases_per_million": 16.042, + "new_cases_smoothed_per_million": 15.776, + "total_deaths_per_million": 609.566, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.152, + "new_tests": 153225.0, + "total_tests": 12272157.0, + "total_tests_per_thousand": 180.776, + "new_tests_per_thousand": 2.257, + "new_tests_smoothed": 161563.0, + "new_tests_smoothed_per_thousand": 2.38, + "tests_per_case": 150.852, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-20", + "total_cases": 321098.0, + "new_cases": 812.0, + "new_cases_smoothed": 1042.857, + "total_deaths": 41397.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 4729.959, + "new_cases_per_million": 11.961, + "new_cases_smoothed_per_million": 15.362, + "total_deaths_per_million": 609.802, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 175916.0, + "total_tests": 12446595.0, + "total_tests_per_thousand": 183.346, + "new_tests_per_thousand": 2.591, + "new_tests_smoothed": 162256.0, + "new_tests_smoothed_per_thousand": 2.39, + "tests_per_case": 155.588, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-21", + "total_cases": 322280.0, + "new_cases": 1182.0, + "new_cases_smoothed": 1050.429, + "total_deaths": 41403.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 4747.37, + "new_cases_per_million": 17.412, + "new_cases_smoothed_per_million": 15.473, + "total_deaths_per_million": 609.89, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.118, + "new_tests": 170627.0, + "total_tests": 12618033.0, + "total_tests_per_thousand": 185.871, + "new_tests_per_thousand": 2.513, + "new_tests_smoothed": 163801.0, + "new_tests_smoothed_per_thousand": 2.413, + "tests_per_case": 155.937, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-22", + "total_cases": 323313.0, + "new_cases": 1033.0, + "new_cases_smoothed": 992.286, + "total_deaths": 41405.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 4762.587, + "new_cases_per_million": 15.217, + "new_cases_smoothed_per_million": 14.617, + "total_deaths_per_million": 609.92, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.099, + "new_tests": 180335.0, + "total_tests": 12798368.0, + "total_tests_per_thousand": 188.527, + "new_tests_per_thousand": 2.656, + "new_tests_smoothed": 165598.0, + "new_tests_smoothed_per_thousand": 2.439, + "tests_per_case": 166.885, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-23", + "total_cases": 324601.0, + "new_cases": 1288.0, + "new_cases_smoothed": 1022.429, + "total_deaths": 41423.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 8.857, + "total_cases_per_million": 4781.56, + "new_cases_per_million": 18.973, + "new_cases_smoothed_per_million": 15.061, + "total_deaths_per_million": 610.185, + "new_deaths_per_million": 0.265, + "new_deaths_smoothed_per_million": 0.13, + "new_tests": 171385.0, + "total_tests": 12969753.0, + "total_tests_per_thousand": 191.052, + "new_tests_per_thousand": 2.525, + "new_tests_smoothed": 165094.0, + "new_tests_smoothed_per_thousand": 2.432, + "tests_per_case": 161.472, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-24", + "total_cases": 325642.0, + "new_cases": 1041.0, + "new_cases_smoothed": 1022.571, + "total_deaths": 41429.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 9.0, + "total_cases_per_million": 4796.895, + "new_cases_per_million": 15.335, + "new_cases_smoothed_per_million": 15.063, + "total_deaths_per_million": 610.273, + "new_deaths_per_million": 0.088, + "new_deaths_smoothed_per_million": 0.133, + "new_tests": 155871.0, + "total_tests": 13126236.0, + "total_tests_per_thousand": 193.357, + "new_tests_per_thousand": 2.296, + "new_tests_smoothed": 163991.0, + "new_tests_smoothed_per_thousand": 2.416, + "tests_per_case": 160.371, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-25", + "total_cases": 326614.0, + "new_cases": 972.0, + "new_cases_smoothed": 1059.571, + "total_deaths": 41433.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 9.143, + "total_cases_per_million": 4811.213, + "new_cases_per_million": 14.318, + "new_cases_smoothed_per_million": 15.608, + "total_deaths_per_million": 610.332, + "new_deaths_per_million": 0.059, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 137013.0, + "total_tests": 13263262.0, + "total_tests_per_thousand": 195.376, + "new_tests_per_thousand": 2.018, + "new_tests_smoothed": 163477.0, + "new_tests_smoothed_per_thousand": 2.408, + "tests_per_case": 154.286, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-26", + "total_cases": 327798.0, + "new_cases": 1184.0, + "new_cases_smoothed": 1073.143, + "total_deaths": 41449.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 4828.654, + "new_cases_per_million": 17.441, + "new_cases_smoothed_per_million": 15.808, + "total_deaths_per_million": 610.568, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.143, + "new_tests": 163158.0, + "total_tests": 13447568.0, + "total_tests_per_thousand": 198.09, + "new_tests_per_thousand": 2.403, + "new_tests_smoothed": 167916.0, + "new_tests_smoothed_per_thousand": 2.473, + "tests_per_case": 156.471, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 64.35 + }, + { + "date": "2020-08-27", + "total_cases": 328846.0, + "new_cases": 1048.0, + "new_cases_smoothed": 1106.857, + "total_deaths": 41465.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 4844.091, + "new_cases_per_million": 15.438, + "new_cases_smoothed_per_million": 16.305, + "total_deaths_per_million": 610.803, + "new_deaths_per_million": 0.236, + "new_deaths_smoothed_per_million": 0.143, + "stringency_index": 64.35 + }, + { + "date": "2020-08-28", + "total_cases": 330368.0, + "new_cases": 1522.0, + "new_cases_smoothed": 1155.429, + "total_deaths": 41477.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.571, + "total_cases_per_million": 4866.511, + "new_cases_per_million": 22.42, + "new_cases_smoothed_per_million": 17.02, + "total_deaths_per_million": 610.98, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 64.35 + }, + { + "date": "2020-08-29", + "total_cases": 331644.0, + "new_cases": 1276.0, + "new_cases_smoothed": 1190.143, + "total_deaths": 41486.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 11.571, + "total_cases_per_million": 4885.307, + "new_cases_per_million": 18.796, + "new_cases_smoothed_per_million": 17.531, + "total_deaths_per_million": 611.113, + "new_deaths_per_million": 0.133, + "new_deaths_smoothed_per_million": 0.17, + "stringency_index": 64.35 + }, + { + "date": "2020-08-30", + "total_cases": 332752.0, + "new_cases": 1108.0, + "new_cases_smoothed": 1164.429, + "total_deaths": 41498.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 10.714, + "total_cases_per_million": 4901.629, + "new_cases_per_million": 16.321, + "new_cases_smoothed_per_million": 17.153, + "total_deaths_per_million": 611.289, + "new_deaths_per_million": 0.177, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 64.35 + }, + { + "date": "2020-08-31", + "total_cases": 334467.0, + "new_cases": 1715.0, + "new_cases_smoothed": 1260.714, + "total_deaths": 41499.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 4926.892, + "new_cases_per_million": 25.263, + "new_cases_smoothed_per_million": 18.571, + "total_deaths_per_million": 611.304, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.147, + "stringency_index": 64.35 + }, + { + "date": "2020-09-01", + "total_cases": 335873.0, + "new_cases": 1406.0, + "new_cases_smoothed": 1322.714, + "total_deaths": 41501.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 4947.603, + "new_cases_per_million": 20.711, + "new_cases_smoothed_per_million": 19.484, + "total_deaths_per_million": 611.334, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.143, + "stringency_index": 64.35 + }, + { + "date": "2020-09-02", + "total_cases": 337168.0, + "new_cases": 1295.0, + "new_cases_smoothed": 1338.571, + "total_deaths": 41504.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 4966.679, + "new_cases_per_million": 19.076, + "new_cases_smoothed_per_million": 19.718, + "total_deaths_per_million": 611.378, + "new_deaths_per_million": 0.044, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 64.35 + }, + { + "date": "2020-09-03", + "total_cases": 338676.0, + "new_cases": 1508.0, + "new_cases_smoothed": 1404.286, + "total_deaths": 41514.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 4988.893, + "new_cases_per_million": 22.214, + "new_cases_smoothed_per_million": 20.686, + "total_deaths_per_million": 611.525, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.103 + }, + { + "date": "2020-09-04", + "total_cases": 340411.0, + "new_cases": 1735.0, + "new_cases_smoothed": 1434.714, + "total_deaths": 41527.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 5014.45, + "new_cases_per_million": 25.558, + "new_cases_smoothed_per_million": 21.134, + "total_deaths_per_million": 611.717, + "new_deaths_per_million": 0.191, + "new_deaths_smoothed_per_million": 0.105 + }, + { + "date": "2020-09-05", + "total_cases": 342351.0, + "new_cases": 1940.0, + "new_cases_smoothed": 1529.571, + "total_deaths": 41537.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 5043.028, + "new_cases_per_million": 28.577, + "new_cases_smoothed_per_million": 22.531, + "total_deaths_per_million": 611.864, + "new_deaths_per_million": 0.147, + "new_deaths_smoothed_per_million": 0.107 + } + ] + }, + "USA": { + "continent": "North America", + "location": "United States", + "population": 331002647.0, + "population_density": 35.608, + "median_age": 38.3, + "aged_65_older": 15.413, + "aged_70_older": 9.732, + "gdp_per_capita": 54225.446, + "extreme_poverty": 1.2, + "cardiovasc_death_rate": 151.089, + "diabetes_prevalence": 10.79, + "female_smokers": 19.1, + "male_smokers": 24.6, + "hospital_beds_per_thousand": 2.77, + "life_expectancy": 78.86, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 1.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 2.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.006, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.006, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-27", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-29", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-30", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.015, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-31", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.018, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-01", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-02-02", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.024, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-03", + "total_cases": 11.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.033, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-06", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.036, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-11", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-12", + "total_cases": 13.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.039, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-13", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.042, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-14", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-15", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-16", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-17", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-18", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-19", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-20", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-21", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.048, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-22", + "total_cases": 35.0, + "new_cases": 19.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.057, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-23", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-24", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.106, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-25", + "total_cases": 53.0, + "new_cases": 18.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-26", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.16, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-27", + "total_cases": 59.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.178, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-28", + "total_cases": 60.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.181, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-02-29", + "total_cases": 66.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.199, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.013, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 5.56 + }, + { + "date": "2020-03-01", + "total_cases": 69.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.857, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.208, + "new_cases_per_million": 0.009, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.003, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 132.0, + "total_tests": 132.0, + "total_tests_per_thousand": 0.0, + "new_tests_per_thousand": 0.0, + "tests_units": "tests performed", + "stringency_index": 8.33 + }, + { + "date": "2020-03-02", + "total_cases": 89.0, + "new_cases": 20.0, + "new_cases_smoothed": 7.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.269, + "new_cases_per_million": 0.06, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.006, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.001, + "new_tests": 345.0, + "total_tests": 477.0, + "total_tests_per_thousand": 0.001, + "new_tests_per_thousand": 0.001, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-03", + "total_cases": 103.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.143, + "total_deaths": 6.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 0.311, + "new_cases_per_million": 0.042, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.018, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.003, + "new_tests": 747.0, + "total_tests": 1224.0, + "total_tests_per_thousand": 0.004, + "new_tests_per_thousand": 0.002, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-04", + "total_cases": 125.0, + "new_cases": 22.0, + "new_cases_smoothed": 10.286, + "total_deaths": 9.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 0.378, + "new_cases_per_million": 0.066, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.004, + "new_tests": 874.0, + "total_tests": 2098.0, + "total_tests_per_thousand": 0.006, + "new_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 11.11 + }, + { + "date": "2020-03-05", + "total_cases": 159.0, + "new_cases": 34.0, + "new_cases_smoothed": 14.286, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 0.48, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 1119.0, + "total_tests": 3217.0, + "total_tests_per_thousand": 0.01, + "new_tests_per_thousand": 0.003, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-06", + "total_cases": 233.0, + "new_cases": 74.0, + "new_cases_smoothed": 24.714, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 0.704, + "new_cases_per_million": 0.224, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.036, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.005, + "new_tests": 1396.0, + "total_tests": 4613.0, + "total_tests_per_thousand": 0.014, + "new_tests_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-07", + "total_cases": 338.0, + "new_cases": 105.0, + "new_cases_smoothed": 38.857, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 1.021, + "new_cases_per_million": 0.317, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.042, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.006, + "new_tests": 1407.0, + "total_tests": 6020.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-08", + "total_cases": 433.0, + "new_cases": 95.0, + "new_cases_smoothed": 52.0, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 1.308, + "new_cases_per_million": 0.287, + "new_cases_smoothed_per_million": 0.157, + "total_deaths_per_million": 0.051, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.007, + "new_tests": 1428.0, + "total_tests": 7448.0, + "total_tests_per_thousand": 0.023, + "new_tests_per_thousand": 0.004, + "new_tests_smoothed": 1045.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 20.096, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-09", + "total_cases": 554.0, + "new_cases": 121.0, + "new_cases_smoothed": 66.429, + "total_deaths": 21.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 1.674, + "new_cases_per_million": 0.366, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 2090.0, + "total_tests": 9538.0, + "total_tests_per_thousand": 0.029, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 1294.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 19.48, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-10", + "total_cases": 754.0, + "new_cases": 200.0, + "new_cases_smoothed": 93.0, + "total_deaths": 26.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 2.278, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.079, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.009, + "new_tests": 2674.0, + "total_tests": 12212.0, + "total_tests_per_thousand": 0.037, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 1570.0, + "new_tests_smoothed_per_thousand": 0.005, + "tests_per_case": 16.882, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-03-11", + "total_cases": 1025.0, + "new_cases": 271.0, + "new_cases_smoothed": 128.571, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3.097, + "new_cases_per_million": 0.819, + "new_cases_smoothed_per_million": 0.388, + "total_deaths_per_million": 0.085, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 3803.0, + "total_tests": 16015.0, + "total_tests_per_thousand": 0.048, + "new_tests_per_thousand": 0.011, + "new_tests_smoothed": 1988.0, + "new_tests_smoothed_per_thousand": 0.006, + "tests_per_case": 15.462, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 21.76 + }, + { + "date": "2020-03-12", + "total_cases": 1312.0, + "new_cases": 287.0, + "new_cases_smoothed": 164.714, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 3.964, + "new_cases_per_million": 0.867, + "new_cases_smoothed_per_million": 0.498, + "total_deaths_per_million": 0.091, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.008, + "new_tests": 6786.0, + "total_tests": 22801.0, + "total_tests_per_thousand": 0.069, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 2798.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 16.987000000000002, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 30.09 + }, + { + "date": "2020-03-13", + "total_cases": 1663.0, + "new_cases": 351.0, + "new_cases_smoothed": 204.286, + "total_deaths": 40.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 5.024, + "new_cases_per_million": 1.06, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 0.121, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.012, + "new_tests": 9645.0, + "total_tests": 32446.0, + "total_tests_per_thousand": 0.098, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 3976.0, + "new_tests_smoothed_per_thousand": 0.012, + "tests_per_case": 19.463, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 30.09 + }, + { + "date": "2020-03-14", + "total_cases": 2174.0, + "new_cases": 511.0, + "new_cases_smoothed": 262.286, + "total_deaths": 47.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 6.568, + "new_cases_per_million": 1.544, + "new_cases_smoothed_per_million": 0.792, + "total_deaths_per_million": 0.142, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.014, + "new_tests": 10305.0, + "total_tests": 42751.0, + "total_tests_per_thousand": 0.129, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 5247.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 20.005, + "positive_rate": 0.05, + "tests_units": "tests performed", + "stringency_index": 35.65 + }, + { + "date": "2020-03-15", + "total_cases": 2951.0, + "new_cases": 777.0, + "new_cases_smoothed": 359.714, + "total_deaths": 57.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 8.915, + "new_cases_per_million": 2.347, + "new_cases_smoothed_per_million": 1.087, + "total_deaths_per_million": 0.172, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.017, + "new_tests": 11777.0, + "total_tests": 54528.0, + "total_tests_per_thousand": 0.165, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 6726.0, + "new_tests_smoothed_per_thousand": 0.02, + "tests_per_case": 18.698, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 41.2 + }, + { + "date": "2020-03-16", + "total_cases": 3774.0, + "new_cases": 823.0, + "new_cases_smoothed": 460.0, + "total_deaths": 69.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 11.402, + "new_cases_per_million": 2.486, + "new_cases_smoothed_per_million": 1.39, + "total_deaths_per_million": 0.208, + "new_deaths_per_million": 0.036, + "new_deaths_smoothed_per_million": 0.021, + "new_tests": 22441.0, + "total_tests": 76969.0, + "total_tests_per_thousand": 0.233, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 9633.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 20.941, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 52.31 + }, + { + "date": "2020-03-17", + "total_cases": 4661.0, + "new_cases": 887.0, + "new_cases_smoothed": 558.143, + "total_deaths": 85.0, + "new_deaths": 16.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 14.081, + "new_cases_per_million": 2.68, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.048, + "new_deaths_smoothed_per_million": 0.025, + "new_tests": 35187.0, + "total_tests": 112156.0, + "total_tests_per_thousand": 0.339, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 14278.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 25.581, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-03-18", + "total_cases": 6427.0, + "new_cases": 1766.0, + "new_cases_smoothed": 771.714, + "total_deaths": 108.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 11.429, + "total_cases_per_million": 19.417, + "new_cases_per_million": 5.335, + "new_cases_smoothed_per_million": 2.331, + "total_deaths_per_million": 0.326, + "new_deaths_per_million": 0.069, + "new_deaths_smoothed_per_million": 0.035, + "new_tests": 45644.0, + "total_tests": 157800.0, + "total_tests_per_thousand": 0.477, + "new_tests_per_thousand": 0.138, + "new_tests_smoothed": 20255.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 26.247, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 55.09 + }, + { + "date": "2020-03-19", + "total_cases": 9415.0, + "new_cases": 2988.0, + "new_cases_smoothed": 1157.571, + "total_deaths": 150.0, + "new_deaths": 42.0, + "new_deaths_smoothed": 17.143, + "total_cases_per_million": 28.444, + "new_cases_per_million": 9.027, + "new_cases_smoothed_per_million": 3.497, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.127, + "new_deaths_smoothed_per_million": 0.052, + "new_tests": 55633.0, + "total_tests": 213433.0, + "total_tests_per_thousand": 0.645, + "new_tests_per_thousand": 0.168, + "new_tests_smoothed": 27233.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 23.526, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-03-20", + "total_cases": 14250.0, + "new_cases": 4835.0, + "new_cases_smoothed": 1798.143, + "total_deaths": 150.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 15.714, + "total_cases_per_million": 43.051, + "new_cases_per_million": 14.607, + "new_cases_smoothed_per_million": 5.432, + "total_deaths_per_million": 0.453, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.047, + "new_tests": 67641.0, + "total_tests": 281074.0, + "total_tests_per_thousand": 0.849, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 35518.0, + "new_tests_smoothed_per_thousand": 0.107, + "tests_per_case": 19.753, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-03-21", + "total_cases": 19624.0, + "new_cases": 5374.0, + "new_cases_smoothed": 2492.857, + "total_deaths": 260.0, + "new_deaths": 110.0, + "new_deaths_smoothed": 30.429, + "total_cases_per_million": 59.287, + "new_cases_per_million": 16.236, + "new_cases_smoothed_per_million": 7.531, + "total_deaths_per_million": 0.785, + "new_deaths_per_million": 0.332, + "new_deaths_smoothed_per_million": 0.092, + "new_tests": 67513.0, + "total_tests": 348587.0, + "total_tests_per_thousand": 1.053, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 43691.0, + "new_tests_smoothed_per_thousand": 0.132, + "tests_per_case": 17.526, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-22", + "total_cases": 26747.0, + "new_cases": 7123.0, + "new_cases_smoothed": 3399.429, + "total_deaths": 340.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 40.429, + "total_cases_per_million": 80.806, + "new_cases_per_million": 21.519, + "new_cases_smoothed_per_million": 10.27, + "total_deaths_per_million": 1.027, + "new_deaths_per_million": 0.242, + "new_deaths_smoothed_per_million": 0.122, + "new_tests": 62355.0, + "total_tests": 410942.0, + "total_tests_per_thousand": 1.242, + "new_tests_per_thousand": 0.188, + "new_tests_smoothed": 50916.0, + "new_tests_smoothed_per_thousand": 0.154, + "tests_per_case": 14.978, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-23", + "total_cases": 35206.0, + "new_cases": 8459.0, + "new_cases_smoothed": 4490.286, + "total_deaths": 471.0, + "new_deaths": 131.0, + "new_deaths_smoothed": 57.429, + "total_cases_per_million": 106.362, + "new_cases_per_million": 25.556, + "new_cases_smoothed_per_million": 13.566, + "total_deaths_per_million": 1.423, + "new_deaths_per_million": 0.396, + "new_deaths_smoothed_per_million": 0.173, + "new_tests": 70774.0, + "total_tests": 481716.0, + "total_tests_per_thousand": 1.455, + "new_tests_per_thousand": 0.214, + "new_tests_smoothed": 57821.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 12.877, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-24", + "total_cases": 46442.0, + "new_cases": 11236.0, + "new_cases_smoothed": 5968.714, + "total_deaths": 590.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 72.143, + "total_cases_per_million": 140.307, + "new_cases_per_million": 33.945, + "new_cases_smoothed_per_million": 18.032, + "total_deaths_per_million": 1.782, + "new_deaths_per_million": 0.36, + "new_deaths_smoothed_per_million": 0.218, + "new_tests": 91170.0, + "total_tests": 572886.0, + "total_tests_per_thousand": 1.731, + "new_tests_per_thousand": 0.275, + "new_tests_smoothed": 65819.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 11.027000000000001, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-25", + "total_cases": 55231.0, + "new_cases": 8789.0, + "new_cases_smoothed": 6972.0, + "total_deaths": 801.0, + "new_deaths": 211.0, + "new_deaths_smoothed": 99.0, + "total_cases_per_million": 166.86, + "new_cases_per_million": 26.553, + "new_cases_smoothed_per_million": 21.063, + "total_deaths_per_million": 2.42, + "new_deaths_per_million": 0.637, + "new_deaths_smoothed_per_million": 0.299, + "new_tests": 100466.0, + "total_tests": 673352.0, + "total_tests_per_thousand": 2.034, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 73650.0, + "new_tests_smoothed_per_thousand": 0.223, + "tests_per_case": 10.564, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-26", + "total_cases": 69194.0, + "new_cases": 13963.0, + "new_cases_smoothed": 8539.857, + "total_deaths": 1050.0, + "new_deaths": 249.0, + "new_deaths_smoothed": 128.571, + "total_cases_per_million": 209.044, + "new_cases_per_million": 42.184, + "new_cases_smoothed_per_million": 25.8, + "total_deaths_per_million": 3.172, + "new_deaths_per_million": 0.752, + "new_deaths_smoothed_per_million": 0.388, + "new_tests": 112127.0, + "total_tests": 785479.0, + "total_tests_per_thousand": 2.373, + "new_tests_per_thousand": 0.339, + "new_tests_smoothed": 81721.0, + "new_tests_smoothed_per_thousand": 0.247, + "tests_per_case": 9.568999999999999, + "positive_rate": 0.105, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-27", + "total_cases": 85991.0, + "new_cases": 16797.0, + "new_cases_smoothed": 10248.714, + "total_deaths": 1296.0, + "new_deaths": 246.0, + "new_deaths_smoothed": 163.714, + "total_cases_per_million": 259.789, + "new_cases_per_million": 50.746, + "new_cases_smoothed_per_million": 30.963, + "total_deaths_per_million": 3.915, + "new_deaths_per_million": 0.743, + "new_deaths_smoothed_per_million": 0.495, + "new_tests": 117500.0, + "total_tests": 902979.0, + "total_tests_per_thousand": 2.728, + "new_tests_per_thousand": 0.355, + "new_tests_smoothed": 88844.0, + "new_tests_smoothed_per_thousand": 0.268, + "tests_per_case": 8.669, + "positive_rate": 0.115, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-28", + "total_cases": 104686.0, + "new_cases": 18695.0, + "new_cases_smoothed": 12151.714, + "total_deaths": 1707.0, + "new_deaths": 411.0, + "new_deaths_smoothed": 206.714, + "total_cases_per_million": 316.269, + "new_cases_per_million": 56.48, + "new_cases_smoothed_per_million": 36.712, + "total_deaths_per_million": 5.157, + "new_deaths_per_million": 1.242, + "new_deaths_smoothed_per_million": 0.625, + "new_tests": 107000.0, + "total_tests": 1009979.0, + "total_tests_per_thousand": 3.051, + "new_tests_per_thousand": 0.323, + "new_tests_smoothed": 94485.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 7.775, + "positive_rate": 0.129, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-29", + "total_cases": 124665.0, + "new_cases": 19979.0, + "new_cases_smoothed": 13988.286, + "total_deaths": 2191.0, + "new_deaths": 484.0, + "new_deaths_smoothed": 264.429, + "total_cases_per_million": 376.628, + "new_cases_per_million": 60.359, + "new_cases_smoothed_per_million": 42.26, + "total_deaths_per_million": 6.619, + "new_deaths_per_million": 1.462, + "new_deaths_smoothed_per_million": 0.799, + "new_tests": 97470.0, + "total_tests": 1107449.0, + "total_tests_per_thousand": 3.346, + "new_tests_per_thousand": 0.294, + "new_tests_smoothed": 99501.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 7.1129999999999995, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-30", + "total_cases": 143025.0, + "new_cases": 18360.0, + "new_cases_smoothed": 15402.714, + "total_deaths": 2509.0, + "new_deaths": 318.0, + "new_deaths_smoothed": 291.143, + "total_cases_per_million": 432.096, + "new_cases_per_million": 55.468, + "new_cases_smoothed_per_million": 46.534, + "total_deaths_per_million": 7.58, + "new_deaths_per_million": 0.961, + "new_deaths_smoothed_per_million": 0.88, + "new_tests": 107218.0, + "total_tests": 1214667.0, + "total_tests_per_thousand": 3.67, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 104707.0, + "new_tests_smoothed_per_thousand": 0.316, + "tests_per_case": 6.797999999999999, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-03-31", + "total_cases": 164620.0, + "new_cases": 21595.0, + "new_cases_smoothed": 16882.571, + "total_deaths": 3170.0, + "new_deaths": 661.0, + "new_deaths_smoothed": 368.571, + "total_cases_per_million": 497.337, + "new_cases_per_million": 65.241, + "new_cases_smoothed_per_million": 51.004, + "total_deaths_per_million": 9.577, + "new_deaths_per_million": 1.997, + "new_deaths_smoothed_per_million": 1.113, + "new_tests": 125077.0, + "total_tests": 1339744.0, + "total_tests_per_thousand": 4.048, + "new_tests_per_thousand": 0.378, + "new_tests_smoothed": 109551.0, + "new_tests_smoothed_per_thousand": 0.331, + "tests_per_case": 6.489, + "positive_rate": 0.154, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-01", + "total_cases": 189618.0, + "new_cases": 24998.0, + "new_cases_smoothed": 19198.143, + "total_deaths": 4079.0, + "new_deaths": 909.0, + "new_deaths_smoothed": 468.286, + "total_cases_per_million": 572.859, + "new_cases_per_million": 75.522, + "new_cases_smoothed_per_million": 58.0, + "total_deaths_per_million": 12.323, + "new_deaths_per_million": 2.746, + "new_deaths_smoothed_per_million": 1.415, + "new_tests": 133114.0, + "total_tests": 1472858.0, + "total_tests_per_thousand": 4.45, + "new_tests_per_thousand": 0.402, + "new_tests_smoothed": 114215.0, + "new_tests_smoothed_per_thousand": 0.345, + "tests_per_case": 5.949, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-02", + "total_cases": 216721.0, + "new_cases": 27103.0, + "new_cases_smoothed": 21075.286, + "total_deaths": 5138.0, + "new_deaths": 1059.0, + "new_deaths_smoothed": 584.0, + "total_cases_per_million": 654.741, + "new_cases_per_million": 81.882, + "new_cases_smoothed_per_million": 63.671, + "total_deaths_per_million": 15.523, + "new_deaths_per_million": 3.199, + "new_deaths_smoothed_per_million": 1.764, + "new_tests": 140386.0, + "total_tests": 1613244.0, + "total_tests_per_thousand": 4.874, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 118252.0, + "new_tests_smoothed_per_thousand": 0.357, + "tests_per_case": 5.611000000000001, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-03", + "total_cases": 245540.0, + "new_cases": 28819.0, + "new_cases_smoothed": 22792.714, + "total_deaths": 6053.0, + "new_deaths": 915.0, + "new_deaths_smoothed": 679.571, + "total_cases_per_million": 741.807, + "new_cases_per_million": 87.066, + "new_cases_smoothed_per_million": 68.86, + "total_deaths_per_million": 18.287, + "new_deaths_per_million": 2.764, + "new_deaths_smoothed_per_million": 2.053, + "new_tests": 147684.0, + "total_tests": 1760928.0, + "total_tests_per_thousand": 5.32, + "new_tests_per_thousand": 0.446, + "new_tests_smoothed": 122564.0, + "new_tests_smoothed_per_thousand": 0.37, + "tests_per_case": 5.377000000000001, + "positive_rate": 0.18600000000000003, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-04", + "total_cases": 277965.0, + "new_cases": 32425.0, + "new_cases_smoothed": 24754.143, + "total_deaths": 7157.0, + "new_deaths": 1104.0, + "new_deaths_smoothed": 778.571, + "total_cases_per_million": 839.767, + "new_cases_per_million": 97.96, + "new_cases_smoothed_per_million": 74.785, + "total_deaths_per_million": 21.622, + "new_deaths_per_million": 3.335, + "new_deaths_smoothed_per_million": 2.352, + "new_tests": 133432.0, + "total_tests": 1894360.0, + "total_tests_per_thousand": 5.723, + "new_tests_per_thousand": 0.403, + "new_tests_smoothed": 126340.0, + "new_tests_smoothed_per_thousand": 0.382, + "tests_per_case": 5.104, + "positive_rate": 0.196, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-05", + "total_cases": 312237.0, + "new_cases": 34272.0, + "new_cases_smoothed": 26796.0, + "total_deaths": 8501.0, + "new_deaths": 1344.0, + "new_deaths_smoothed": 901.429, + "total_cases_per_million": 943.307, + "new_cases_per_million": 103.54, + "new_cases_smoothed_per_million": 80.954, + "total_deaths_per_million": 25.683, + "new_deaths_per_million": 4.06, + "new_deaths_smoothed_per_million": 2.723, + "new_tests": 125800.0, + "total_tests": 2020160.0, + "total_tests_per_thousand": 6.103, + "new_tests_per_thousand": 0.38, + "new_tests_smoothed": 130387.0, + "new_tests_smoothed_per_thousand": 0.394, + "tests_per_case": 4.8660000000000005, + "positive_rate": 0.20600000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-06", + "total_cases": 337635.0, + "new_cases": 25398.0, + "new_cases_smoothed": 27801.429, + "total_deaths": 9647.0, + "new_deaths": 1146.0, + "new_deaths_smoothed": 1019.714, + "total_cases_per_million": 1020.037, + "new_cases_per_million": 76.731, + "new_cases_smoothed_per_million": 83.992, + "total_deaths_per_million": 29.145, + "new_deaths_per_million": 3.462, + "new_deaths_smoothed_per_million": 3.081, + "new_tests": 128547.0, + "total_tests": 2148707.0, + "total_tests_per_thousand": 6.492, + "new_tests_per_thousand": 0.388, + "new_tests_smoothed": 133434.0, + "new_tests_smoothed_per_thousand": 0.403, + "tests_per_case": 4.8, + "positive_rate": 0.20800000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-07", + "total_cases": 368196.0, + "new_cases": 30561.0, + "new_cases_smoothed": 29082.286, + "total_deaths": 10989.0, + "new_deaths": 1342.0, + "new_deaths_smoothed": 1117.0, + "total_cases_per_million": 1112.366, + "new_cases_per_million": 92.329, + "new_cases_smoothed_per_million": 87.861, + "total_deaths_per_million": 33.199, + "new_deaths_per_million": 4.054, + "new_deaths_smoothed_per_million": 3.375, + "new_tests": 148178.0, + "total_tests": 2296885.0, + "total_tests_per_thousand": 6.939, + "new_tests_per_thousand": 0.448, + "new_tests_smoothed": 136734.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 4.702, + "positive_rate": 0.213, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-08", + "total_cases": 398809.0, + "new_cases": 30613.0, + "new_cases_smoothed": 29884.429, + "total_deaths": 12895.0, + "new_deaths": 1906.0, + "new_deaths_smoothed": 1259.429, + "total_cases_per_million": 1204.851, + "new_cases_per_million": 92.486, + "new_cases_smoothed_per_million": 90.285, + "total_deaths_per_million": 38.957, + "new_deaths_per_million": 5.758, + "new_deaths_smoothed_per_million": 3.805, + "new_tests": 344642.0, + "total_tests": 2641527.0, + "total_tests_per_thousand": 7.98, + "new_tests_per_thousand": 1.041, + "new_tests_smoothed": 166953.0, + "new_tests_smoothed_per_thousand": 0.504, + "tests_per_case": 5.587000000000001, + "positive_rate": 0.179, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-09", + "total_cases": 432132.0, + "new_cases": 33323.0, + "new_cases_smoothed": 30773.0, + "total_deaths": 14817.0, + "new_deaths": 1922.0, + "new_deaths_smoothed": 1382.714, + "total_cases_per_million": 1305.524, + "new_cases_per_million": 100.673, + "new_cases_smoothed_per_million": 92.969, + "total_deaths_per_million": 44.764, + "new_deaths_per_million": 5.807, + "new_deaths_smoothed_per_million": 4.177, + "new_tests": 163311.0, + "total_tests": 2804838.0, + "total_tests_per_thousand": 8.474, + "new_tests_per_thousand": 0.493, + "new_tests_smoothed": 170228.0, + "new_tests_smoothed_per_thousand": 0.514, + "tests_per_case": 5.532, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-10", + "total_cases": 466033.0, + "new_cases": 33901.0, + "new_cases_smoothed": 31499.0, + "total_deaths": 16690.0, + "new_deaths": 1873.0, + "new_deaths_smoothed": 1519.571, + "total_cases_per_million": 1407.943, + "new_cases_per_million": 102.419, + "new_cases_smoothed_per_million": 95.162, + "total_deaths_per_million": 50.423, + "new_deaths_per_million": 5.659, + "new_deaths_smoothed_per_million": 4.591, + "new_tests": 177034.0, + "total_tests": 2981872.0, + "total_tests_per_thousand": 9.009, + "new_tests_per_thousand": 0.535, + "new_tests_smoothed": 174421.0, + "new_tests_smoothed_per_thousand": 0.527, + "tests_per_case": 5.537000000000001, + "positive_rate": 0.18100000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-11", + "total_cases": 501560.0, + "new_cases": 35527.0, + "new_cases_smoothed": 31942.143, + "total_deaths": 18777.0, + "new_deaths": 2087.0, + "new_deaths_smoothed": 1660.0, + "total_cases_per_million": 1515.275, + "new_cases_per_million": 107.331, + "new_cases_smoothed_per_million": 96.501, + "total_deaths_per_million": 56.728, + "new_deaths_per_million": 6.305, + "new_deaths_smoothed_per_million": 5.015, + "new_tests": 204859.0, + "total_tests": 3186731.0, + "total_tests_per_thousand": 9.628, + "new_tests_per_thousand": 0.619, + "new_tests_smoothed": 184624.0, + "new_tests_smoothed_per_thousand": 0.558, + "tests_per_case": 5.78, + "positive_rate": 0.17300000000000001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-12", + "total_cases": 529951.0, + "new_cases": 28391.0, + "new_cases_smoothed": 31102.0, + "total_deaths": 20608.0, + "new_deaths": 1831.0, + "new_deaths_smoothed": 1729.571, + "total_cases_per_million": 1601.048, + "new_cases_per_million": 85.773, + "new_cases_smoothed_per_million": 93.963, + "total_deaths_per_million": 62.259, + "new_deaths_per_million": 5.532, + "new_deaths_smoothed_per_million": 5.225, + "new_tests": 131677.0, + "total_tests": 3318408.0, + "total_tests_per_thousand": 10.025, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 185464.0, + "new_tests_smoothed_per_thousand": 0.56, + "tests_per_case": 5.962999999999999, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-13", + "total_cases": 557571.0, + "new_cases": 27620.0, + "new_cases_smoothed": 31419.429, + "total_deaths": 22108.0, + "new_deaths": 1500.0, + "new_deaths_smoothed": 1780.143, + "total_cases_per_million": 1684.491, + "new_cases_per_million": 83.443, + "new_cases_smoothed_per_million": 94.922, + "total_deaths_per_million": 66.791, + "new_deaths_per_million": 4.532, + "new_deaths_smoothed_per_million": 5.378, + "new_tests": 107241.0, + "total_tests": 3425649.0, + "total_tests_per_thousand": 10.349, + "new_tests_per_thousand": 0.324, + "new_tests_smoothed": 182420.0, + "new_tests_smoothed_per_thousand": 0.551, + "tests_per_case": 5.806, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-14", + "total_cases": 582594.0, + "new_cases": 25023.0, + "new_cases_smoothed": 30628.286, + "total_deaths": 23649.0, + "new_deaths": 1541.0, + "new_deaths_smoothed": 1808.571, + "total_cases_per_million": 1760.089, + "new_cases_per_million": 75.598, + "new_cases_smoothed_per_million": 92.532, + "total_deaths_per_million": 71.447, + "new_deaths_per_million": 4.656, + "new_deaths_smoothed_per_million": 5.464, + "new_tests": 150431.0, + "total_tests": 3576080.0, + "total_tests_per_thousand": 10.804, + "new_tests_per_thousand": 0.454, + "new_tests_smoothed": 182742.0, + "new_tests_smoothed_per_thousand": 0.552, + "tests_per_case": 5.966, + "positive_rate": 0.168, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-15", + "total_cases": 609516.0, + "new_cases": 26922.0, + "new_cases_smoothed": 30101.0, + "total_deaths": 26057.0, + "new_deaths": 2408.0, + "new_deaths_smoothed": 1880.286, + "total_cases_per_million": 1841.423, + "new_cases_per_million": 81.335, + "new_cases_smoothed_per_million": 90.939, + "total_deaths_per_million": 78.721, + "new_deaths_per_million": 7.275, + "new_deaths_smoothed_per_million": 5.681, + "new_tests": 178759.0, + "total_tests": 3754839.0, + "total_tests_per_thousand": 11.344, + "new_tests_per_thousand": 0.54, + "new_tests_smoothed": 159045.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 5.284, + "positive_rate": 0.18899999999999997, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-16", + "total_cases": 639664.0, + "new_cases": 30148.0, + "new_cases_smoothed": 29647.429, + "total_deaths": 30985.0, + "new_deaths": 4928.0, + "new_deaths_smoothed": 2309.714, + "total_cases_per_million": 1932.504, + "new_cases_per_million": 91.081, + "new_cases_smoothed_per_million": 89.569, + "total_deaths_per_million": 93.61, + "new_deaths_per_million": 14.888, + "new_deaths_smoothed_per_million": 6.978, + "new_tests": 175169.0, + "total_tests": 3930008.0, + "total_tests_per_thousand": 11.873, + "new_tests_per_thousand": 0.529, + "new_tests_smoothed": 160739.0, + "new_tests_smoothed_per_thousand": 0.486, + "tests_per_case": 5.422000000000001, + "positive_rate": 0.184, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-17", + "total_cases": 671331.0, + "new_cases": 31667.0, + "new_cases_smoothed": 29328.286, + "total_deaths": 33284.0, + "new_deaths": 2299.0, + "new_deaths_smoothed": 2370.571, + "total_cases_per_million": 2028.174, + "new_cases_per_million": 95.67, + "new_cases_smoothed_per_million": 88.604, + "total_deaths_per_million": 100.555, + "new_deaths_per_million": 6.946, + "new_deaths_smoothed_per_million": 7.162, + "new_tests": 172678.0, + "total_tests": 4102686.0, + "total_tests_per_thousand": 12.395, + "new_tests_per_thousand": 0.522, + "new_tests_smoothed": 160116.0, + "new_tests_smoothed_per_thousand": 0.484, + "tests_per_case": 5.459, + "positive_rate": 0.183, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-18", + "total_cases": 702164.0, + "new_cases": 30833.0, + "new_cases_smoothed": 28657.714, + "total_deaths": 37054.0, + "new_deaths": 3770.0, + "new_deaths_smoothed": 2611.0, + "total_cases_per_million": 2121.324, + "new_cases_per_million": 93.15, + "new_cases_smoothed_per_million": 86.579, + "total_deaths_per_million": 111.945, + "new_deaths_per_million": 11.39, + "new_deaths_smoothed_per_million": 7.888, + "new_tests": 170831.0, + "total_tests": 4273517.0, + "total_tests_per_thousand": 12.911, + "new_tests_per_thousand": 0.516, + "new_tests_smoothed": 155255.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 5.417999999999999, + "positive_rate": 0.185, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-19", + "total_cases": 735086.0, + "new_cases": 32922.0, + "new_cases_smoothed": 29305.0, + "total_deaths": 38910.0, + "new_deaths": 1856.0, + "new_deaths_smoothed": 2614.571, + "total_cases_per_million": 2220.786, + "new_cases_per_million": 99.461, + "new_cases_smoothed_per_million": 88.534, + "total_deaths_per_million": 117.552, + "new_deaths_per_million": 5.607, + "new_deaths_smoothed_per_million": 7.899, + "new_tests": 131637.0, + "total_tests": 4405154.0, + "total_tests_per_thousand": 13.309, + "new_tests_per_thousand": 0.398, + "new_tests_smoothed": 155249.0, + "new_tests_smoothed_per_thousand": 0.469, + "tests_per_case": 5.297999999999999, + "positive_rate": 0.18899999999999997, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-20", + "total_cases": 759687.0, + "new_cases": 24601.0, + "new_cases_smoothed": 28873.714, + "total_deaths": 40682.0, + "new_deaths": 1772.0, + "new_deaths_smoothed": 2653.429, + "total_cases_per_million": 2295.109, + "new_cases_per_million": 74.323, + "new_cases_smoothed_per_million": 87.231, + "total_deaths_per_million": 122.905, + "new_deaths_per_million": 5.353, + "new_deaths_smoothed_per_million": 8.016, + "new_tests": 153230.0, + "total_tests": 4558384.0, + "total_tests_per_thousand": 13.771, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 161819.0, + "new_tests_smoothed_per_thousand": 0.489, + "tests_per_case": 5.604, + "positive_rate": 0.17800000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-21", + "total_cases": 787752.0, + "new_cases": 28065.0, + "new_cases_smoothed": 29308.286, + "total_deaths": 42539.0, + "new_deaths": 1857.0, + "new_deaths_smoothed": 2698.571, + "total_cases_per_million": 2379.896, + "new_cases_per_million": 84.788, + "new_cases_smoothed_per_million": 88.544, + "total_deaths_per_million": 128.516, + "new_deaths_per_million": 5.61, + "new_deaths_smoothed_per_million": 8.153, + "new_tests": 212386.0, + "total_tests": 4770770.0, + "total_tests_per_thousand": 14.413, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 170670.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 5.8229999999999995, + "positive_rate": 0.172, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-22", + "total_cases": 825041.0, + "new_cases": 37289.0, + "new_cases_smoothed": 30789.286, + "total_deaths": 45063.0, + "new_deaths": 2524.0, + "new_deaths_smoothed": 2715.143, + "total_cases_per_million": 2492.551, + "new_cases_per_million": 112.655, + "new_cases_smoothed_per_million": 93.018, + "total_deaths_per_million": 136.141, + "new_deaths_per_million": 7.625, + "new_deaths_smoothed_per_million": 8.203, + "new_tests": 218346.0, + "total_tests": 4989116.0, + "total_tests_per_thousand": 15.073, + "new_tests_per_thousand": 0.66, + "new_tests_smoothed": 176325.0, + "new_tests_smoothed_per_thousand": 0.533, + "tests_per_case": 5.727, + "positive_rate": 0.175, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-23", + "total_cases": 842629.0, + "new_cases": 17588.0, + "new_cases_smoothed": 28995.0, + "total_deaths": 46784.0, + "new_deaths": 1721.0, + "new_deaths_smoothed": 2257.0, + "total_cases_per_million": 2545.687, + "new_cases_per_million": 53.136, + "new_cases_smoothed_per_million": 87.597, + "total_deaths_per_million": 141.34, + "new_deaths_per_million": 5.199, + "new_deaths_smoothed_per_million": 6.819, + "new_tests": 212607.0, + "total_tests": 5201723.0, + "total_tests_per_thousand": 15.715, + "new_tests_per_thousand": 0.642, + "new_tests_smoothed": 181674.0, + "new_tests_smoothed_per_thousand": 0.549, + "tests_per_case": 6.266, + "positive_rate": 0.16, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-24", + "total_cases": 869172.0, + "new_cases": 26543.0, + "new_cases_smoothed": 28263.0, + "total_deaths": 49963.0, + "new_deaths": 3179.0, + "new_deaths_smoothed": 2382.714, + "total_cases_per_million": 2625.876, + "new_cases_per_million": 80.19, + "new_cases_smoothed_per_million": 85.386, + "total_deaths_per_million": 150.944, + "new_deaths_per_million": 9.604, + "new_deaths_smoothed_per_million": 7.198, + "new_tests": 241580.0, + "total_tests": 5443303.0, + "total_tests_per_thousand": 16.445, + "new_tests_per_thousand": 0.73, + "new_tests_smoothed": 191517.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 6.776, + "positive_rate": 0.14800000000000002, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-25", + "total_cases": 890524.0, + "new_cases": 21352.0, + "new_cases_smoothed": 26908.571, + "total_deaths": 51017.0, + "new_deaths": 1054.0, + "new_deaths_smoothed": 1994.714, + "total_cases_per_million": 2690.383, + "new_cases_per_million": 64.507, + "new_cases_smoothed_per_million": 81.294, + "total_deaths_per_million": 154.129, + "new_deaths_per_million": 3.184, + "new_deaths_smoothed_per_million": 6.026, + "new_tests": 208967.0, + "total_tests": 5652270.0, + "total_tests_per_thousand": 17.076, + "new_tests_per_thousand": 0.631, + "new_tests_smoothed": 196965.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 7.32, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-26", + "total_cases": 939053.0, + "new_cases": 48529.0, + "new_cases_smoothed": 29138.143, + "total_deaths": 53189.0, + "new_deaths": 2172.0, + "new_deaths_smoothed": 2039.857, + "total_cases_per_million": 2836.995, + "new_cases_per_million": 146.612, + "new_cases_smoothed_per_million": 88.03, + "total_deaths_per_million": 160.691, + "new_deaths_per_million": 6.562, + "new_deaths_smoothed_per_million": 6.163, + "new_tests": 194891.0, + "total_tests": 5847161.0, + "total_tests_per_thousand": 17.665, + "new_tests_per_thousand": 0.589, + "new_tests_smoothed": 206001.0, + "new_tests_smoothed_per_thousand": 0.622, + "tests_per_case": 7.07, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-27", + "total_cases": 965910.0, + "new_cases": 26857.0, + "new_cases_smoothed": 29460.429, + "total_deaths": 54876.0, + "new_deaths": 1687.0, + "new_deaths_smoothed": 2027.714, + "total_cases_per_million": 2918.134, + "new_cases_per_million": 81.138, + "new_cases_smoothed_per_million": 89.004, + "total_deaths_per_million": 165.787, + "new_deaths_per_million": 5.097, + "new_deaths_smoothed_per_million": 6.126, + "new_tests": 213315.0, + "total_tests": 6060476.0, + "total_tests_per_thousand": 18.309, + "new_tests_per_thousand": 0.644, + "new_tests_smoothed": 214585.0, + "new_tests_smoothed_per_thousand": 0.648, + "tests_per_case": 7.284, + "positive_rate": 0.13699999999999998, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-28", + "total_cases": 988451.0, + "new_cases": 22541.0, + "new_cases_smoothed": 28671.286, + "total_deaths": 56245.0, + "new_deaths": 1369.0, + "new_deaths_smoothed": 1958.0, + "total_cases_per_million": 2986.233, + "new_cases_per_million": 68.099, + "new_cases_smoothed_per_million": 86.62, + "total_deaths_per_million": 169.923, + "new_deaths_per_million": 4.136, + "new_deaths_smoothed_per_million": 5.915, + "new_tests": 240506.0, + "total_tests": 6300982.0, + "total_tests_per_thousand": 19.036, + "new_tests_per_thousand": 0.727, + "new_tests_smoothed": 218602.0, + "new_tests_smoothed_per_thousand": 0.66, + "tests_per_case": 7.624, + "positive_rate": 0.131, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-29", + "total_cases": 1012583.0, + "new_cases": 24132.0, + "new_cases_smoothed": 26791.714, + "total_deaths": 58355.0, + "new_deaths": 2110.0, + "new_deaths_smoothed": 1898.857, + "total_cases_per_million": 3059.139, + "new_cases_per_million": 72.906, + "new_cases_smoothed_per_million": 80.941, + "total_deaths_per_million": 176.298, + "new_deaths_per_million": 6.375, + "new_deaths_smoothed_per_million": 5.737, + "new_tests": 283362.0, + "total_tests": 6584344.0, + "total_tests_per_thousand": 19.892, + "new_tests_per_thousand": 0.856, + "new_tests_smoothed": 227890.0, + "new_tests_smoothed_per_thousand": 0.688, + "tests_per_case": 8.506, + "positive_rate": 0.11800000000000001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-04-30", + "total_cases": 1039909.0, + "new_cases": 27326.0, + "new_cases_smoothed": 28182.857, + "total_deaths": 60966.0, + "new_deaths": 2611.0, + "new_deaths_smoothed": 2026.0, + "total_cases_per_million": 3141.694, + "new_cases_per_million": 82.555, + "new_cases_smoothed_per_million": 85.144, + "total_deaths_per_million": 184.186, + "new_deaths_per_million": 7.888, + "new_deaths_smoothed_per_million": 6.121, + "new_tests": 299323.0, + "total_tests": 6883667.0, + "total_tests_per_thousand": 20.796, + "new_tests_per_thousand": 0.904, + "new_tests_smoothed": 240278.0, + "new_tests_smoothed_per_thousand": 0.726, + "tests_per_case": 8.526, + "positive_rate": 0.11699999999999999, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-01", + "total_cases": 1069826.0, + "new_cases": 29917.0, + "new_cases_smoothed": 28664.857, + "total_deaths": 63006.0, + "new_deaths": 2040.0, + "new_deaths_smoothed": 1863.286, + "total_cases_per_million": 3232.077, + "new_cases_per_million": 90.383, + "new_cases_smoothed_per_million": 86.6, + "total_deaths_per_million": 190.349, + "new_deaths_per_million": 6.163, + "new_deaths_smoothed_per_million": 5.629, + "new_tests": 283454.0, + "total_tests": 7167121.0, + "total_tests_per_thousand": 21.653, + "new_tests_per_thousand": 0.856, + "new_tests_smoothed": 246260.0, + "new_tests_smoothed_per_thousand": 0.744, + "tests_per_case": 8.591000000000001, + "positive_rate": 0.11599999999999999, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-02", + "total_cases": 1103781.0, + "new_cases": 33955.0, + "new_cases_smoothed": 30465.286, + "total_deaths": 65068.0, + "new_deaths": 2062.0, + "new_deaths_smoothed": 2007.286, + "total_cases_per_million": 3334.659, + "new_cases_per_million": 102.582, + "new_cases_smoothed_per_million": 92.039, + "total_deaths_per_million": 196.578, + "new_deaths_per_million": 6.23, + "new_deaths_smoothed_per_million": 6.064, + "new_tests": 270471.0, + "total_tests": 7437592.0, + "total_tests_per_thousand": 22.47, + "new_tests_per_thousand": 0.817, + "new_tests_smoothed": 255046.0, + "new_tests_smoothed_per_thousand": 0.771, + "tests_per_case": 8.372, + "positive_rate": 0.11900000000000001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-03", + "total_cases": 1133069.0, + "new_cases": 29288.0, + "new_cases_smoothed": 27716.571, + "total_deaths": 66385.0, + "new_deaths": 1317.0, + "new_deaths_smoothed": 1885.143, + "total_cases_per_million": 3423.142, + "new_cases_per_million": 88.483, + "new_cases_smoothed_per_million": 83.735, + "total_deaths_per_million": 200.557, + "new_deaths_per_million": 3.979, + "new_deaths_smoothed_per_million": 5.695, + "new_tests": 177686.0, + "total_tests": 7615278.0, + "total_tests_per_thousand": 23.007, + "new_tests_per_thousand": 0.537, + "new_tests_smoothed": 252588.0, + "new_tests_smoothed_per_thousand": 0.763, + "tests_per_case": 9.113, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-04", + "total_cases": 1158041.0, + "new_cases": 24972.0, + "new_cases_smoothed": 27447.286, + "total_deaths": 67682.0, + "new_deaths": 1297.0, + "new_deaths_smoothed": 1829.429, + "total_cases_per_million": 3498.585, + "new_cases_per_million": 75.444, + "new_cases_smoothed_per_million": 82.922, + "total_deaths_per_million": 204.476, + "new_deaths_per_million": 3.918, + "new_deaths_smoothed_per_million": 5.527, + "new_tests": 207446.0, + "total_tests": 7822724.0, + "total_tests_per_thousand": 23.633, + "new_tests_per_thousand": 0.627, + "new_tests_smoothed": 251750.0, + "new_tests_smoothed_per_thousand": 0.761, + "tests_per_case": 9.172, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-05", + "total_cases": 1180634.0, + "new_cases": 22593.0, + "new_cases_smoothed": 27454.714, + "total_deaths": 68934.0, + "new_deaths": 1252.0, + "new_deaths_smoothed": 1812.714, + "total_cases_per_million": 3566.842, + "new_cases_per_million": 68.256, + "new_cases_smoothed_per_million": 82.944, + "total_deaths_per_million": 208.258, + "new_deaths_per_million": 3.782, + "new_deaths_smoothed_per_million": 5.476, + "new_tests": 357156.0, + "total_tests": 8179880.0, + "total_tests_per_thousand": 24.712, + "new_tests_per_thousand": 1.079, + "new_tests_smoothed": 268414.0, + "new_tests_smoothed_per_thousand": 0.811, + "tests_per_case": 9.777000000000001, + "positive_rate": 0.102, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-06", + "total_cases": 1204475.0, + "new_cases": 23841.0, + "new_cases_smoothed": 27413.143, + "total_deaths": 71078.0, + "new_deaths": 2144.0, + "new_deaths_smoothed": 1817.571, + "total_cases_per_million": 3638.868, + "new_cases_per_million": 72.027, + "new_cases_smoothed_per_million": 82.819, + "total_deaths_per_million": 214.735, + "new_deaths_per_million": 6.477, + "new_deaths_smoothed_per_million": 5.491, + "new_tests": 305112.0, + "total_tests": 8484992.0, + "total_tests_per_thousand": 25.634, + "new_tests_per_thousand": 0.922, + "new_tests_smoothed": 271521.0, + "new_tests_smoothed_per_thousand": 0.82, + "tests_per_case": 9.905, + "positive_rate": 0.10099999999999999, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-07", + "total_cases": 1228603.0, + "new_cases": 24128.0, + "new_cases_smoothed": 26956.286, + "total_deaths": 73431.0, + "new_deaths": 2353.0, + "new_deaths_smoothed": 1780.714, + "total_cases_per_million": 3711.762, + "new_cases_per_million": 72.894, + "new_cases_smoothed_per_million": 81.438, + "total_deaths_per_million": 221.844, + "new_deaths_per_million": 7.109, + "new_deaths_smoothed_per_million": 5.38, + "new_tests": 363880.0, + "total_tests": 8848872.0, + "total_tests_per_thousand": 26.734, + "new_tests_per_thousand": 1.099, + "new_tests_smoothed": 280744.0, + "new_tests_smoothed_per_thousand": 0.848, + "tests_per_case": 10.415, + "positive_rate": 0.096, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-08", + "total_cases": 1256972.0, + "new_cases": 28369.0, + "new_cases_smoothed": 26735.143, + "total_deaths": 75670.0, + "new_deaths": 2239.0, + "new_deaths_smoothed": 1809.143, + "total_cases_per_million": 3797.468, + "new_cases_per_million": 85.706, + "new_cases_smoothed_per_million": 80.77, + "total_deaths_per_million": 228.608, + "new_deaths_per_million": 6.764, + "new_deaths_smoothed_per_million": 5.466, + "new_tests": 391084.0, + "total_tests": 9239956.0, + "total_tests_per_thousand": 27.915, + "new_tests_per_thousand": 1.182, + "new_tests_smoothed": 296119.0, + "new_tests_smoothed_per_thousand": 0.895, + "tests_per_case": 11.075999999999999, + "positive_rate": 0.09, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-09", + "total_cases": 1283929.0, + "new_cases": 26957.0, + "new_cases_smoothed": 25735.429, + "total_deaths": 77180.0, + "new_deaths": 1510.0, + "new_deaths_smoothed": 1730.286, + "total_cases_per_million": 3878.909, + "new_cases_per_million": 81.44, + "new_cases_smoothed_per_million": 77.75, + "total_deaths_per_million": 233.17, + "new_deaths_per_million": 4.562, + "new_deaths_smoothed_per_million": 5.227, + "new_tests": 309066.0, + "total_tests": 9549022.0, + "total_tests_per_thousand": 28.849, + "new_tests_per_thousand": 0.934, + "new_tests_smoothed": 301633.0, + "new_tests_smoothed_per_thousand": 0.911, + "tests_per_case": 11.720999999999998, + "positive_rate": 0.085, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-10", + "total_cases": 1309541.0, + "new_cases": 25612.0, + "new_cases_smoothed": 25210.286, + "total_deaths": 78794.0, + "new_deaths": 1614.0, + "new_deaths_smoothed": 1772.714, + "total_cases_per_million": 3956.286, + "new_cases_per_million": 77.377, + "new_cases_smoothed_per_million": 76.163, + "total_deaths_per_million": 238.046, + "new_deaths_per_million": 4.876, + "new_deaths_smoothed_per_million": 5.356, + "new_tests": 210442.0, + "total_tests": 9759464.0, + "total_tests_per_thousand": 29.485, + "new_tests_per_thousand": 0.636, + "new_tests_smoothed": 306312.0, + "new_tests_smoothed_per_thousand": 0.925, + "tests_per_case": 12.15, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-11", + "total_cases": 1329799.0, + "new_cases": 20258.0, + "new_cases_smoothed": 24536.857, + "total_deaths": 79528.0, + "new_deaths": 734.0, + "new_deaths_smoothed": 1692.286, + "total_cases_per_million": 4017.488, + "new_cases_per_million": 61.202, + "new_cases_smoothed_per_million": 74.129, + "total_deaths_per_million": 240.264, + "new_deaths_per_million": 2.218, + "new_deaths_smoothed_per_million": 5.113, + "new_tests": 346076.0, + "total_tests": 10105540.0, + "total_tests_per_thousand": 30.53, + "new_tests_per_thousand": 1.046, + "new_tests_smoothed": 326117.0, + "new_tests_smoothed_per_thousand": 0.985, + "tests_per_case": 13.290999999999999, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-12", + "total_cases": 1347916.0, + "new_cases": 18117.0, + "new_cases_smoothed": 23897.429, + "total_deaths": 80684.0, + "new_deaths": 1156.0, + "new_deaths_smoothed": 1678.571, + "total_cases_per_million": 4072.221, + "new_cases_per_million": 54.734, + "new_cases_smoothed_per_million": 72.197, + "total_deaths_per_million": 243.756, + "new_deaths_per_million": 3.492, + "new_deaths_smoothed_per_million": 5.071, + "new_tests": 396822.0, + "total_tests": 10502362.0, + "total_tests_per_thousand": 31.729, + "new_tests_per_thousand": 1.199, + "new_tests_smoothed": 331783.0, + "new_tests_smoothed_per_thousand": 1.002, + "tests_per_case": 13.884, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-13", + "total_cases": 1369964.0, + "new_cases": 22048.0, + "new_cases_smoothed": 23641.286, + "total_deaths": 82387.0, + "new_deaths": 1703.0, + "new_deaths_smoothed": 1615.571, + "total_cases_per_million": 4138.831, + "new_cases_per_million": 66.61, + "new_cases_smoothed_per_million": 71.423, + "total_deaths_per_million": 248.901, + "new_deaths_per_million": 5.145, + "new_deaths_smoothed_per_million": 4.881, + "new_tests": 414569.0, + "total_tests": 10916931.0, + "total_tests_per_thousand": 32.981, + "new_tests_per_thousand": 1.252, + "new_tests_smoothed": 347420.0, + "new_tests_smoothed_per_thousand": 1.05, + "tests_per_case": 14.695, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-14", + "total_cases": 1390746.0, + "new_cases": 20782.0, + "new_cases_smoothed": 23163.286, + "total_deaths": 84133.0, + "new_deaths": 1746.0, + "new_deaths_smoothed": 1528.857, + "total_cases_per_million": 4201.616, + "new_cases_per_million": 62.785, + "new_cases_smoothed_per_million": 69.979, + "total_deaths_per_million": 254.176, + "new_deaths_per_million": 5.275, + "new_deaths_smoothed_per_million": 4.619, + "new_tests": 420874.0, + "total_tests": 11337805.0, + "total_tests_per_thousand": 34.253, + "new_tests_per_thousand": 1.272, + "new_tests_smoothed": 355562.0, + "new_tests_smoothed_per_thousand": 1.074, + "tests_per_case": 15.35, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-15", + "total_cases": 1417889.0, + "new_cases": 27143.0, + "new_cases_smoothed": 22988.143, + "total_deaths": 85906.0, + "new_deaths": 1773.0, + "new_deaths_smoothed": 1462.286, + "total_cases_per_million": 4283.618, + "new_cases_per_million": 82.002, + "new_cases_smoothed_per_million": 69.45, + "total_deaths_per_million": 259.533, + "new_deaths_per_million": 5.356, + "new_deaths_smoothed_per_million": 4.418, + "new_tests": 419807.0, + "total_tests": 11757612.0, + "total_tests_per_thousand": 35.521, + "new_tests_per_thousand": 1.268, + "new_tests_smoothed": 359665.0, + "new_tests_smoothed_per_thousand": 1.087, + "tests_per_case": 15.645999999999999, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-16", + "total_cases": 1443397.0, + "new_cases": 25508.0, + "new_cases_smoothed": 22781.143, + "total_deaths": 87568.0, + "new_deaths": 1662.0, + "new_deaths_smoothed": 1484.0, + "total_cases_per_million": 4360.681, + "new_cases_per_million": 77.063, + "new_cases_smoothed_per_million": 68.825, + "total_deaths_per_million": 264.554, + "new_deaths_per_million": 5.021, + "new_deaths_smoothed_per_million": 4.483, + "new_tests": 357483.0, + "total_tests": 12115095.0, + "total_tests_per_thousand": 36.601, + "new_tests_per_thousand": 1.08, + "new_tests_smoothed": 366582.0, + "new_tests_smoothed_per_thousand": 1.107, + "tests_per_case": 16.090999999999998, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-17", + "total_cases": 1467884.0, + "new_cases": 24487.0, + "new_cases_smoothed": 22620.429, + "total_deaths": 88754.0, + "new_deaths": 1186.0, + "new_deaths_smoothed": 1422.857, + "total_cases_per_million": 4434.659, + "new_cases_per_million": 73.978, + "new_cases_smoothed_per_million": 68.339, + "total_deaths_per_million": 268.137, + "new_deaths_per_million": 3.583, + "new_deaths_smoothed_per_million": 4.299, + "new_tests": 299525.0, + "total_tests": 12414620.0, + "total_tests_per_thousand": 37.506, + "new_tests_per_thousand": 0.905, + "new_tests_smoothed": 379308.0, + "new_tests_smoothed_per_thousand": 1.146, + "tests_per_case": 16.768, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-18", + "total_cases": 1486757.0, + "new_cases": 18873.0, + "new_cases_smoothed": 22422.571, + "total_deaths": 89562.0, + "new_deaths": 808.0, + "new_deaths_smoothed": 1433.429, + "total_cases_per_million": 4491.677, + "new_cases_per_million": 57.018, + "new_cases_smoothed_per_million": 67.741, + "total_deaths_per_million": 270.578, + "new_deaths_per_million": 2.441, + "new_deaths_smoothed_per_million": 4.331, + "new_tests": 323553.0, + "total_tests": 12738173.0, + "total_tests_per_thousand": 38.484, + "new_tests_per_thousand": 0.977, + "new_tests_smoothed": 376090.0, + "new_tests_smoothed_per_thousand": 1.136, + "tests_per_case": 16.773, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-19", + "total_cases": 1508598.0, + "new_cases": 21841.0, + "new_cases_smoothed": 22954.571, + "total_deaths": 90353.0, + "new_deaths": 791.0, + "new_deaths_smoothed": 1381.286, + "total_cases_per_million": 4557.661, + "new_cases_per_million": 65.984, + "new_cases_smoothed_per_million": 69.349, + "total_deaths_per_million": 272.968, + "new_deaths_per_million": 2.39, + "new_deaths_smoothed_per_million": 4.173, + "new_tests": 445255.0, + "total_tests": 13183428.0, + "total_tests_per_thousand": 39.829, + "new_tests_per_thousand": 1.345, + "new_tests_smoothed": 383009.0, + "new_tests_smoothed_per_thousand": 1.157, + "tests_per_case": 16.686, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-20", + "total_cases": 1528568.0, + "new_cases": 19970.0, + "new_cases_smoothed": 22657.714, + "total_deaths": 91921.0, + "new_deaths": 1568.0, + "new_deaths_smoothed": 1362.0, + "total_cases_per_million": 4617.993, + "new_cases_per_million": 60.332, + "new_cases_smoothed_per_million": 68.452, + "total_deaths_per_million": 277.705, + "new_deaths_per_million": 4.737, + "new_deaths_smoothed_per_million": 4.115, + "new_tests": 404728.0, + "total_tests": 13588156.0, + "total_tests_per_thousand": 41.052, + "new_tests_per_thousand": 1.223, + "new_tests_smoothed": 381604.0, + "new_tests_smoothed_per_thousand": 1.153, + "tests_per_case": 16.842, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-21", + "total_cases": 1551853.0, + "new_cases": 23285.0, + "new_cases_smoothed": 23015.286, + "total_deaths": 93439.0, + "new_deaths": 1518.0, + "new_deaths_smoothed": 1329.429, + "total_cases_per_million": 4688.34, + "new_cases_per_million": 70.347, + "new_cases_smoothed_per_million": 69.532, + "total_deaths_per_million": 282.291, + "new_deaths_per_million": 4.586, + "new_deaths_smoothed_per_million": 4.016, + "new_tests": 499314.0, + "total_tests": 14087470.0, + "total_tests_per_thousand": 42.56, + "new_tests_per_thousand": 1.508, + "new_tests_smoothed": 392809.0, + "new_tests_smoothed_per_thousand": 1.187, + "tests_per_case": 17.067, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-22", + "total_cases": 1577287.0, + "new_cases": 25434.0, + "new_cases_smoothed": 22771.143, + "total_deaths": 94702.0, + "new_deaths": 1263.0, + "new_deaths_smoothed": 1256.571, + "total_cases_per_million": 4765.179, + "new_cases_per_million": 76.839, + "new_cases_smoothed_per_million": 68.794, + "total_deaths_per_million": 286.106, + "new_deaths_per_million": 3.816, + "new_deaths_smoothed_per_million": 3.796, + "new_tests": 481265.0, + "total_tests": 14568735.0, + "total_tests_per_thousand": 44.014, + "new_tests_per_thousand": 1.454, + "new_tests_smoothed": 401589.0, + "new_tests_smoothed_per_thousand": 1.213, + "tests_per_case": 17.636, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-23", + "total_cases": 1601434.0, + "new_cases": 24147.0, + "new_cases_smoothed": 22576.714, + "total_deaths": 96007.0, + "new_deaths": 1305.0, + "new_deaths_smoothed": 1205.571, + "total_cases_per_million": 4838.13, + "new_cases_per_million": 72.951, + "new_cases_smoothed_per_million": 68.207, + "total_deaths_per_million": 290.049, + "new_deaths_per_million": 3.943, + "new_deaths_smoothed_per_million": 3.642, + "new_tests": 372779.0, + "total_tests": 14941514.0, + "total_tests_per_thousand": 45.14, + "new_tests_per_thousand": 1.126, + "new_tests_smoothed": 403774.0, + "new_tests_smoothed_per_thousand": 1.22, + "tests_per_case": 17.885, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-24", + "total_cases": 1622670.0, + "new_cases": 21236.0, + "new_cases_smoothed": 22112.286, + "total_deaths": 97087.0, + "new_deaths": 1080.0, + "new_deaths_smoothed": 1190.429, + "total_cases_per_million": 4902.287, + "new_cases_per_million": 64.157, + "new_cases_smoothed_per_million": 66.804, + "total_deaths_per_million": 293.312, + "new_deaths_per_million": 3.263, + "new_deaths_smoothed_per_million": 3.596, + "new_tests": 292006.0, + "total_tests": 15233520.0, + "total_tests_per_thousand": 46.022, + "new_tests_per_thousand": 0.882, + "new_tests_smoothed": 402700.0, + "new_tests_smoothed_per_thousand": 1.217, + "tests_per_case": 18.212, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-25", + "total_cases": 1643238.0, + "new_cases": 20568.0, + "new_cases_smoothed": 22354.429, + "total_deaths": 97720.0, + "new_deaths": 633.0, + "new_deaths_smoothed": 1165.429, + "total_cases_per_million": 4964.426, + "new_cases_per_million": 62.138, + "new_cases_smoothed_per_million": 67.535, + "total_deaths_per_million": 295.224, + "new_deaths_per_million": 1.912, + "new_deaths_smoothed_per_million": 3.521, + "new_tests": 393127.0, + "total_tests": 15626647.0, + "total_tests_per_thousand": 47.21, + "new_tests_per_thousand": 1.188, + "new_tests_smoothed": 412639.0, + "new_tests_smoothed_per_thousand": 1.247, + "tests_per_case": 18.459, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-26", + "total_cases": 1662302.0, + "new_cases": 19064.0, + "new_cases_smoothed": 21957.714, + "total_deaths": 98220.0, + "new_deaths": 500.0, + "new_deaths_smoothed": 1123.857, + "total_cases_per_million": 5022.02, + "new_cases_per_million": 57.595, + "new_cases_smoothed_per_million": 66.337, + "total_deaths_per_million": 296.735, + "new_deaths_per_million": 1.511, + "new_deaths_smoothed_per_million": 3.395, + "new_tests": 453844.0, + "total_tests": 16080491.0, + "total_tests_per_thousand": 48.581, + "new_tests_per_thousand": 1.371, + "new_tests_smoothed": 413866.0, + "new_tests_smoothed_per_thousand": 1.25, + "tests_per_case": 18.848, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-27", + "total_cases": 1681212.0, + "new_cases": 18910.0, + "new_cases_smoothed": 21806.286, + "total_deaths": 98916.0, + "new_deaths": 696.0, + "new_deaths_smoothed": 999.286, + "total_cases_per_million": 5079.15, + "new_cases_per_million": 57.129, + "new_cases_smoothed_per_million": 65.879, + "total_deaths_per_million": 298.837, + "new_deaths_per_million": 2.103, + "new_deaths_smoothed_per_million": 3.019, + "new_tests": 506319.0, + "total_tests": 16586810.0, + "total_tests_per_thousand": 50.111, + "new_tests_per_thousand": 1.53, + "new_tests_smoothed": 428379.0, + "new_tests_smoothed_per_thousand": 1.294, + "tests_per_case": 19.645, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-28", + "total_cases": 1699933.0, + "new_cases": 18721.0, + "new_cases_smoothed": 21154.286, + "total_deaths": 100442.0, + "new_deaths": 1526.0, + "new_deaths_smoothed": 1000.429, + "total_cases_per_million": 5135.708, + "new_cases_per_million": 56.558, + "new_cases_smoothed_per_million": 63.91, + "total_deaths_per_million": 303.448, + "new_deaths_per_million": 4.61, + "new_deaths_smoothed_per_million": 3.022, + "new_tests": 520695.0, + "total_tests": 17107505.0, + "total_tests_per_thousand": 51.684, + "new_tests_per_thousand": 1.573, + "new_tests_smoothed": 431434.0, + "new_tests_smoothed_per_thousand": 1.303, + "tests_per_case": 20.395, + "positive_rate": 0.049, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-29", + "total_cases": 1721750.0, + "new_cases": 21817.0, + "new_cases_smoothed": 20637.571, + "total_deaths": 101617.0, + "new_deaths": 1175.0, + "new_deaths_smoothed": 987.857, + "total_cases_per_million": 5201.62, + "new_cases_per_million": 65.912, + "new_cases_smoothed_per_million": 62.349, + "total_deaths_per_million": 306.998, + "new_deaths_per_million": 3.55, + "new_deaths_smoothed_per_million": 2.984, + "new_tests": 507439.0, + "total_tests": 17614944.0, + "total_tests_per_thousand": 53.217, + "new_tests_per_thousand": 1.533, + "new_tests_smoothed": 435173.0, + "new_tests_smoothed_per_thousand": 1.315, + "tests_per_case": 21.086, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-30", + "total_cases": 1747087.0, + "new_cases": 25337.0, + "new_cases_smoothed": 20807.571, + "total_deaths": 102836.0, + "new_deaths": 1219.0, + "new_deaths_smoothed": 975.571, + "total_cases_per_million": 5278.166, + "new_cases_per_million": 76.546, + "new_cases_smoothed_per_million": 62.862, + "total_deaths_per_million": 310.68, + "new_deaths_per_million": 3.683, + "new_deaths_smoothed_per_million": 2.947, + "new_tests": 462451.0, + "total_tests": 18077395.0, + "total_tests_per_thousand": 54.614, + "new_tests_per_thousand": 1.397, + "new_tests_smoothed": 447983.0, + "new_tests_smoothed_per_thousand": 1.353, + "tests_per_case": 21.53, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-05-31", + "total_cases": 1770384.0, + "new_cases": 23297.0, + "new_cases_smoothed": 21102.0, + "total_deaths": 103781.0, + "new_deaths": 945.0, + "new_deaths_smoothed": 956.286, + "total_cases_per_million": 5348.549, + "new_cases_per_million": 70.383, + "new_cases_smoothed_per_million": 63.752, + "total_deaths_per_million": 313.535, + "new_deaths_per_million": 2.855, + "new_deaths_smoothed_per_million": 2.889, + "new_tests": 367163.0, + "total_tests": 18444558.0, + "total_tests_per_thousand": 55.723, + "new_tests_per_thousand": 1.109, + "new_tests_smoothed": 458720.0, + "new_tests_smoothed_per_thousand": 1.386, + "tests_per_case": 21.738000000000003, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-01", + "total_cases": 1790191.0, + "new_cases": 19807.0, + "new_cases_smoothed": 20993.286, + "total_deaths": 104383.0, + "new_deaths": 602.0, + "new_deaths_smoothed": 951.857, + "total_cases_per_million": 5408.389, + "new_cases_per_million": 59.839, + "new_cases_smoothed_per_million": 63.423, + "total_deaths_per_million": 315.354, + "new_deaths_per_million": 1.819, + "new_deaths_smoothed_per_million": 2.876, + "new_tests": 424958.0, + "total_tests": 18869516.0, + "total_tests_per_thousand": 57.007, + "new_tests_per_thousand": 1.284, + "new_tests_smoothed": 463267.0, + "new_tests_smoothed_per_thousand": 1.4, + "tests_per_case": 22.066999999999997, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-02", + "total_cases": 1811277.0, + "new_cases": 21086.0, + "new_cases_smoothed": 21282.143, + "total_deaths": 105147.0, + "new_deaths": 764.0, + "new_deaths_smoothed": 989.571, + "total_cases_per_million": 5472.092, + "new_cases_per_million": 63.703, + "new_cases_smoothed_per_million": 64.296, + "total_deaths_per_million": 317.662, + "new_deaths_per_million": 2.308, + "new_deaths_smoothed_per_million": 2.99, + "new_tests": 454409.0, + "total_tests": 19323925.0, + "total_tests_per_thousand": 58.38, + "new_tests_per_thousand": 1.373, + "new_tests_smoothed": 463348.0, + "new_tests_smoothed_per_thousand": 1.4, + "tests_per_case": 21.772, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-03", + "total_cases": 1831821.0, + "new_cases": 20544.0, + "new_cases_smoothed": 21515.571, + "total_deaths": 106181.0, + "new_deaths": 1034.0, + "new_deaths_smoothed": 1037.857, + "total_cases_per_million": 5534.158, + "new_cases_per_million": 62.066, + "new_cases_smoothed_per_million": 65.001, + "total_deaths_per_million": 320.786, + "new_deaths_per_million": 3.124, + "new_deaths_smoothed_per_million": 3.135, + "new_tests": 609209.0, + "total_tests": 19933134.0, + "total_tests_per_thousand": 60.22, + "new_tests_per_thousand": 1.84, + "new_tests_smoothed": 478046.0, + "new_tests_smoothed_per_thousand": 1.444, + "tests_per_case": 22.219, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-04", + "total_cases": 1851520.0, + "new_cases": 19699.0, + "new_cases_smoothed": 21655.286, + "total_deaths": 107175.0, + "new_deaths": 994.0, + "new_deaths_smoothed": 961.857, + "total_cases_per_million": 5593.671, + "new_cases_per_million": 59.513, + "new_cases_smoothed_per_million": 65.423, + "total_deaths_per_million": 323.789, + "new_deaths_per_million": 3.003, + "new_deaths_smoothed_per_million": 2.906, + "new_tests": 588362.0, + "total_tests": 20521496.0, + "total_tests_per_thousand": 61.998, + "new_tests_per_thousand": 1.778, + "new_tests_smoothed": 487713.0, + "new_tests_smoothed_per_thousand": 1.473, + "tests_per_case": 22.522, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-05", + "total_cases": 1872660.0, + "new_cases": 21140.0, + "new_cases_smoothed": 21558.571, + "total_deaths": 108211.0, + "new_deaths": 1036.0, + "new_deaths_smoothed": 942.0, + "total_cases_per_million": 5657.538, + "new_cases_per_million": 63.867, + "new_cases_smoothed_per_million": 65.131, + "total_deaths_per_million": 326.919, + "new_deaths_per_million": 3.13, + "new_deaths_smoothed_per_million": 2.846, + "new_tests": 541739.0, + "total_tests": 21063235.0, + "total_tests_per_thousand": 63.635, + "new_tests_per_thousand": 1.637, + "new_tests_smoothed": 492613.0, + "new_tests_smoothed_per_thousand": 1.488, + "tests_per_case": 22.85, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-06", + "total_cases": 1897838.0, + "new_cases": 25178.0, + "new_cases_smoothed": 21535.857, + "total_deaths": 109143.0, + "new_deaths": 932.0, + "new_deaths_smoothed": 901.0, + "total_cases_per_million": 5733.604, + "new_cases_per_million": 76.066, + "new_cases_smoothed_per_million": 65.062, + "total_deaths_per_million": 329.735, + "new_deaths_per_million": 2.816, + "new_deaths_smoothed_per_million": 2.722, + "new_tests": 497144.0, + "total_tests": 21560379.0, + "total_tests_per_thousand": 65.137, + "new_tests_per_thousand": 1.502, + "new_tests_smoothed": 497569.0, + "new_tests_smoothed_per_thousand": 1.503, + "tests_per_case": 23.104, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-07", + "total_cases": 1920061.0, + "new_cases": 22223.0, + "new_cases_smoothed": 21382.429, + "total_deaths": 109802.0, + "new_deaths": 659.0, + "new_deaths_smoothed": 860.143, + "total_cases_per_million": 5800.742, + "new_cases_per_million": 67.138, + "new_cases_smoothed_per_million": 64.599, + "total_deaths_per_million": 331.725, + "new_deaths_per_million": 1.991, + "new_deaths_smoothed_per_million": 2.599, + "new_tests": 348381.0, + "total_tests": 21908760.0, + "total_tests_per_thousand": 66.189, + "new_tests_per_thousand": 1.053, + "new_tests_smoothed": 494886.0, + "new_tests_smoothed_per_thousand": 1.495, + "tests_per_case": 23.145, + "positive_rate": 0.043, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-08", + "total_cases": 1942363.0, + "new_cases": 22302.0, + "new_cases_smoothed": 21738.857, + "total_deaths": 110514.0, + "new_deaths": 712.0, + "new_deaths_smoothed": 875.857, + "total_cases_per_million": 5868.119, + "new_cases_per_million": 67.377, + "new_cases_smoothed_per_million": 65.676, + "total_deaths_per_million": 333.876, + "new_deaths_per_million": 2.151, + "new_deaths_smoothed_per_million": 2.646, + "new_tests": 674791.0, + "total_tests": 22583551.0, + "total_tests_per_thousand": 68.228, + "new_tests_per_thousand": 2.039, + "new_tests_smoothed": 530576.0, + "new_tests_smoothed_per_thousand": 1.603, + "tests_per_case": 24.406999999999996, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-09", + "total_cases": 1961185.0, + "new_cases": 18822.0, + "new_cases_smoothed": 21415.429, + "total_deaths": 111007.0, + "new_deaths": 493.0, + "new_deaths_smoothed": 837.143, + "total_cases_per_million": 5924.983, + "new_cases_per_million": 56.864, + "new_cases_smoothed_per_million": 64.699, + "total_deaths_per_million": 335.366, + "new_deaths_per_million": 1.489, + "new_deaths_smoothed_per_million": 2.529, + "new_tests": 571217.0, + "total_tests": 23154768.0, + "total_tests_per_thousand": 69.953, + "new_tests_per_thousand": 1.726, + "new_tests_smoothed": 547263.0, + "new_tests_smoothed_per_thousand": 1.653, + "tests_per_case": 25.555, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-10", + "total_cases": 1979850.0, + "new_cases": 18665.0, + "new_cases_smoothed": 21147.0, + "total_deaths": 112006.0, + "new_deaths": 999.0, + "new_deaths_smoothed": 832.143, + "total_cases_per_million": 5981.372, + "new_cases_per_million": 56.389, + "new_cases_smoothed_per_million": 63.888, + "total_deaths_per_million": 338.384, + "new_deaths_per_million": 3.018, + "new_deaths_smoothed_per_million": 2.514, + "new_tests": 623772.0, + "total_tests": 23778540.0, + "total_tests_per_thousand": 71.838, + "new_tests_per_thousand": 1.884, + "new_tests_smoothed": 549344.0, + "new_tests_smoothed_per_thousand": 1.66, + "tests_per_case": 25.976999999999997, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-11", + "total_cases": 2000464.0, + "new_cases": 20614.0, + "new_cases_smoothed": 21277.714, + "total_deaths": 112924.0, + "new_deaths": 918.0, + "new_deaths_smoothed": 821.286, + "total_cases_per_million": 6043.65, + "new_cases_per_million": 62.277, + "new_cases_smoothed_per_million": 64.283, + "total_deaths_per_million": 341.157, + "new_deaths_per_million": 2.773, + "new_deaths_smoothed_per_million": 2.481, + "new_tests": 508787.0, + "total_tests": 24287327.0, + "total_tests_per_thousand": 73.375, + "new_tests_per_thousand": 1.537, + "new_tests_smoothed": 537976.0, + "new_tests_smoothed_per_thousand": 1.625, + "tests_per_case": 25.284000000000002, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-12", + "total_cases": 2023347.0, + "new_cases": 22883.0, + "new_cases_smoothed": 21526.714, + "total_deaths": 113820.0, + "new_deaths": 896.0, + "new_deaths_smoothed": 801.286, + "total_cases_per_million": 6112.782, + "new_cases_per_million": 69.132, + "new_cases_smoothed_per_million": 65.035, + "total_deaths_per_million": 343.864, + "new_deaths_per_million": 2.707, + "new_deaths_smoothed_per_million": 2.421, + "new_tests": 519350.0, + "total_tests": 24806677.0, + "total_tests_per_thousand": 74.944, + "new_tests_per_thousand": 1.569, + "new_tests_smoothed": 534777.0, + "new_tests_smoothed_per_thousand": 1.616, + "tests_per_case": 24.842, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-13", + "total_cases": 2048986.0, + "new_cases": 25639.0, + "new_cases_smoothed": 21592.571, + "total_deaths": 114669.0, + "new_deaths": 849.0, + "new_deaths_smoothed": 789.429, + "total_cases_per_million": 6190.241, + "new_cases_per_million": 77.459, + "new_cases_smoothed_per_million": 65.234, + "total_deaths_per_million": 346.429, + "new_deaths_per_million": 2.565, + "new_deaths_smoothed_per_million": 2.385, + "new_tests": 598591.0, + "total_tests": 25405268.0, + "total_tests_per_thousand": 76.752, + "new_tests_per_thousand": 1.808, + "new_tests_smoothed": 549270.0, + "new_tests_smoothed_per_thousand": 1.659, + "tests_per_case": 25.438000000000002, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-14", + "total_cases": 2074526.0, + "new_cases": 25540.0, + "new_cases_smoothed": 22066.429, + "total_deaths": 115436.0, + "new_deaths": 767.0, + "new_deaths_smoothed": 804.857, + "total_cases_per_million": 6267.4, + "new_cases_per_million": 77.16, + "new_cases_smoothed_per_million": 66.665, + "total_deaths_per_million": 348.746, + "new_deaths_per_million": 2.317, + "new_deaths_smoothed_per_million": 2.432, + "new_tests": 345806.0, + "total_tests": 25751074.0, + "total_tests_per_thousand": 77.797, + "new_tests_per_thousand": 1.045, + "new_tests_smoothed": 548902.0, + "new_tests_smoothed_per_thousand": 1.658, + "tests_per_case": 24.875, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 72.69 + }, + { + "date": "2020-06-15", + "total_cases": 2094069.0, + "new_cases": 19543.0, + "new_cases_smoothed": 21672.286, + "total_deaths": 115732.0, + "new_deaths": 296.0, + "new_deaths_smoothed": 745.429, + "total_cases_per_million": 6326.442, + "new_cases_per_million": 59.042, + "new_cases_smoothed_per_million": 65.475, + "total_deaths_per_million": 349.641, + "new_deaths_per_million": 0.894, + "new_deaths_smoothed_per_million": 2.252, + "new_tests": 558795.0, + "total_tests": 26309869.0, + "total_tests_per_thousand": 79.485, + "new_tests_per_thousand": 1.688, + "new_tests_smoothed": 532331.0, + "new_tests_smoothed_per_thousand": 1.608, + "tests_per_case": 24.563000000000002, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-16", + "total_cases": 2114026.0, + "new_cases": 19957.0, + "new_cases_smoothed": 21834.429, + "total_deaths": 116127.0, + "new_deaths": 395.0, + "new_deaths_smoothed": 731.429, + "total_cases_per_million": 6386.734, + "new_cases_per_million": 60.293, + "new_cases_smoothed_per_million": 65.965, + "total_deaths_per_million": 350.834, + "new_deaths_per_million": 1.193, + "new_deaths_smoothed_per_million": 2.21, + "new_tests": 624240.0, + "total_tests": 26934109.0, + "total_tests_per_thousand": 81.371, + "new_tests_per_thousand": 1.886, + "new_tests_smoothed": 539906.0, + "new_tests_smoothed_per_thousand": 1.631, + "tests_per_case": 24.726999999999997, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-17", + "total_cases": 2137731.0, + "new_cases": 23705.0, + "new_cases_smoothed": 22554.429, + "total_deaths": 116963.0, + "new_deaths": 836.0, + "new_deaths_smoothed": 708.143, + "total_cases_per_million": 6458.35, + "new_cases_per_million": 71.616, + "new_cases_smoothed_per_million": 68.14, + "total_deaths_per_million": 353.36, + "new_deaths_per_million": 2.526, + "new_deaths_smoothed_per_million": 2.139, + "new_tests": 681258.0, + "total_tests": 27615367.0, + "total_tests_per_thousand": 83.429, + "new_tests_per_thousand": 2.058, + "new_tests_smoothed": 548118.0, + "new_tests_smoothed_per_thousand": 1.656, + "tests_per_case": 24.302, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-18", + "total_cases": 2163290.0, + "new_cases": 25559.0, + "new_cases_smoothed": 23260.857, + "total_deaths": 117717.0, + "new_deaths": 754.0, + "new_deaths_smoothed": 684.714, + "total_cases_per_million": 6535.567, + "new_cases_per_million": 77.217, + "new_cases_smoothed_per_million": 70.274, + "total_deaths_per_million": 355.638, + "new_deaths_per_million": 2.278, + "new_deaths_smoothed_per_million": 2.069, + "new_tests": 680128.0, + "total_tests": 28295495.0, + "total_tests_per_thousand": 85.484, + "new_tests_per_thousand": 2.055, + "new_tests_smoothed": 572595.0, + "new_tests_smoothed_per_thousand": 1.73, + "tests_per_case": 24.616, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-19", + "total_cases": 2191052.0, + "new_cases": 27762.0, + "new_cases_smoothed": 23957.857, + "total_deaths": 118434.0, + "new_deaths": 717.0, + "new_deaths_smoothed": 659.143, + "total_cases_per_million": 6619.44, + "new_cases_per_million": 83.872, + "new_cases_smoothed_per_million": 72.38, + "total_deaths_per_million": 357.804, + "new_deaths_per_million": 2.166, + "new_deaths_smoothed_per_million": 1.991, + "new_tests": 807572.0, + "total_tests": 29103067.0, + "total_tests_per_thousand": 87.924, + "new_tests_per_thousand": 2.44, + "new_tests_smoothed": 613770.0, + "new_tests_smoothed_per_thousand": 1.854, + "tests_per_case": 25.619, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-20", + "total_cases": 2220961.0, + "new_cases": 29909.0, + "new_cases_smoothed": 24567.857, + "total_deaths": 119112.0, + "new_deaths": 678.0, + "new_deaths_smoothed": 634.714, + "total_cases_per_million": 6709.798, + "new_cases_per_million": 90.359, + "new_cases_smoothed_per_million": 74.223, + "total_deaths_per_million": 359.852, + "new_deaths_per_million": 2.048, + "new_deaths_smoothed_per_million": 1.918, + "new_tests": 591422.0, + "total_tests": 29694489.0, + "total_tests_per_thousand": 89.711, + "new_tests_per_thousand": 1.787, + "new_tests_smoothed": 612746.0, + "new_tests_smoothed_per_thousand": 1.851, + "tests_per_case": 24.941, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-21", + "total_cases": 2255119.0, + "new_cases": 34158.0, + "new_cases_smoothed": 25799.0, + "total_deaths": 119719.0, + "new_deaths": 607.0, + "new_deaths_smoothed": 611.857, + "total_cases_per_million": 6812.994, + "new_cases_per_million": 103.196, + "new_cases_smoothed_per_million": 77.942, + "total_deaths_per_million": 361.686, + "new_deaths_per_million": 1.834, + "new_deaths_smoothed_per_million": 1.848, + "new_tests": 440197.0, + "total_tests": 30134686.0, + "total_tests_per_thousand": 91.041, + "new_tests_per_thousand": 1.33, + "new_tests_smoothed": 626230.0, + "new_tests_smoothed_per_thousand": 1.892, + "tests_per_case": 24.273000000000003, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-22", + "total_cases": 2280912.0, + "new_cases": 25793.0, + "new_cases_smoothed": 26691.857, + "total_deaths": 119975.0, + "new_deaths": 256.0, + "new_deaths_smoothed": 606.143, + "total_cases_per_million": 6890.918, + "new_cases_per_million": 77.924, + "new_cases_smoothed_per_million": 80.639, + "total_deaths_per_million": 362.459, + "new_deaths_per_million": 0.773, + "new_deaths_smoothed_per_million": 1.831, + "new_tests": 572466.0, + "total_tests": 30707152.0, + "total_tests_per_thousand": 92.77, + "new_tests_per_thousand": 1.729, + "new_tests_smoothed": 628183.0, + "new_tests_smoothed_per_thousand": 1.898, + "tests_per_case": 23.535, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-23", + "total_cases": 2312302.0, + "new_cases": 31390.0, + "new_cases_smoothed": 28325.143, + "total_deaths": 120402.0, + "new_deaths": 427.0, + "new_deaths_smoothed": 610.714, + "total_cases_per_million": 6985.751, + "new_cases_per_million": 94.833, + "new_cases_smoothed_per_million": 85.574, + "total_deaths_per_million": 363.749, + "new_deaths_per_million": 1.29, + "new_deaths_smoothed_per_million": 1.845, + "new_tests": 762984.0, + "total_tests": 31470136.0, + "total_tests_per_thousand": 95.075, + "new_tests_per_thousand": 2.305, + "new_tests_smoothed": 648004.0, + "new_tests_smoothed_per_thousand": 1.958, + "tests_per_case": 22.877, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-24", + "total_cases": 2347022.0, + "new_cases": 34720.0, + "new_cases_smoothed": 29898.714, + "total_deaths": 121228.0, + "new_deaths": 826.0, + "new_deaths_smoothed": 609.286, + "total_cases_per_million": 7090.644, + "new_cases_per_million": 104.893, + "new_cases_smoothed_per_million": 90.328, + "total_deaths_per_million": 366.245, + "new_deaths_per_million": 2.495, + "new_deaths_smoothed_per_million": 1.841, + "new_tests": 701106.0, + "total_tests": 32171242.0, + "total_tests_per_thousand": 97.193, + "new_tests_per_thousand": 2.118, + "new_tests_smoothed": 650839.0, + "new_tests_smoothed_per_thousand": 1.966, + "tests_per_case": 21.768, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-25", + "total_cases": 2381361.0, + "new_cases": 34339.0, + "new_cases_smoothed": 31153.0, + "total_deaths": 121979.0, + "new_deaths": 751.0, + "new_deaths_smoothed": 608.857, + "total_cases_per_million": 7194.387, + "new_cases_per_million": 103.742, + "new_cases_smoothed_per_million": 94.117, + "total_deaths_per_million": 368.514, + "new_deaths_per_million": 2.269, + "new_deaths_smoothed_per_million": 1.839, + "new_tests": 715215.0, + "total_tests": 32886457.0, + "total_tests_per_thousand": 99.354, + "new_tests_per_thousand": 2.161, + "new_tests_smoothed": 655852.0, + "new_tests_smoothed_per_thousand": 1.981, + "tests_per_case": 21.053, + "positive_rate": 0.048, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-26", + "total_cases": 2422310.0, + "new_cases": 40949.0, + "new_cases_smoothed": 33036.857, + "total_deaths": 124416.0, + "new_deaths": 2437.0, + "new_deaths_smoothed": 854.571, + "total_cases_per_million": 7318.099, + "new_cases_per_million": 123.712, + "new_cases_smoothed_per_million": 99.808, + "total_deaths_per_million": 375.876, + "new_deaths_per_million": 7.362, + "new_deaths_smoothed_per_million": 2.582, + "new_tests": 750242.0, + "total_tests": 33636699.0, + "total_tests_per_thousand": 101.621, + "new_tests_per_thousand": 2.267, + "new_tests_smoothed": 647662.0, + "new_tests_smoothed_per_thousand": 1.957, + "tests_per_case": 19.604, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-27", + "total_cases": 2467837.0, + "new_cases": 45527.0, + "new_cases_smoothed": 35268.0, + "total_deaths": 125039.0, + "new_deaths": 623.0, + "new_deaths_smoothed": 846.714, + "total_cases_per_million": 7455.641, + "new_cases_per_million": 137.543, + "new_cases_smoothed_per_million": 106.549, + "total_deaths_per_million": 377.758, + "new_deaths_per_million": 1.882, + "new_deaths_smoothed_per_million": 2.558, + "new_tests": 640549.0, + "total_tests": 34277248.0, + "total_tests_per_thousand": 103.556, + "new_tests_per_thousand": 1.935, + "new_tests_smoothed": 654680.0, + "new_tests_smoothed_per_thousand": 1.978, + "tests_per_case": 18.563, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-28", + "total_cases": 2510323.0, + "new_cases": 42486.0, + "new_cases_smoothed": 36457.714, + "total_deaths": 125539.0, + "new_deaths": 500.0, + "new_deaths_smoothed": 831.429, + "total_cases_per_million": 7583.997, + "new_cases_per_million": 128.355, + "new_cases_smoothed_per_million": 110.143, + "total_deaths_per_million": 379.269, + "new_deaths_per_million": 1.511, + "new_deaths_smoothed_per_million": 2.512, + "new_tests": 474656.0, + "total_tests": 34751904.0, + "total_tests_per_thousand": 104.99, + "new_tests_per_thousand": 1.434, + "new_tests_smoothed": 659603.0, + "new_tests_smoothed_per_thousand": 1.993, + "tests_per_case": 18.092, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-29", + "total_cases": 2548996.0, + "new_cases": 38673.0, + "new_cases_smoothed": 38297.714, + "total_deaths": 125804.0, + "new_deaths": 265.0, + "new_deaths_smoothed": 832.714, + "total_cases_per_million": 7700.833, + "new_cases_per_million": 116.836, + "new_cases_smoothed_per_million": 115.702, + "total_deaths_per_million": 380.069, + "new_deaths_per_million": 0.801, + "new_deaths_smoothed_per_million": 2.516, + "new_tests": 744948.0, + "total_tests": 35496852.0, + "total_tests_per_thousand": 107.24, + "new_tests_per_thousand": 2.251, + "new_tests_smoothed": 684243.0, + "new_tests_smoothed_per_thousand": 2.067, + "tests_per_case": 17.866, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-06-30", + "total_cases": 2590552.0, + "new_cases": 41556.0, + "new_cases_smoothed": 39750.0, + "total_deaths": 126140.0, + "new_deaths": 336.0, + "new_deaths_smoothed": 819.714, + "total_cases_per_million": 7826.379, + "new_cases_per_million": 125.546, + "new_cases_smoothed_per_million": 120.09, + "total_deaths_per_million": 381.085, + "new_deaths_per_million": 1.015, + "new_deaths_smoothed_per_million": 2.476, + "new_tests": 840111.0, + "total_tests": 36336963.0, + "total_tests_per_thousand": 109.778, + "new_tests_per_thousand": 2.538, + "new_tests_smoothed": 695261.0, + "new_tests_smoothed_per_thousand": 2.1, + "tests_per_case": 17.491, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-01", + "total_cases": 2634432.0, + "new_cases": 43880.0, + "new_cases_smoothed": 41058.571, + "total_deaths": 127410.0, + "new_deaths": 1270.0, + "new_deaths_smoothed": 883.143, + "total_cases_per_million": 7958.945, + "new_cases_per_million": 132.567, + "new_cases_smoothed_per_million": 124.043, + "total_deaths_per_million": 384.921, + "new_deaths_per_million": 3.837, + "new_deaths_smoothed_per_million": 2.668, + "new_tests": 893548.0, + "total_tests": 37230511.0, + "total_tests_per_thousand": 112.478, + "new_tests_per_thousand": 2.7, + "new_tests_smoothed": 722753.0, + "new_tests_smoothed_per_thousand": 2.184, + "tests_per_case": 17.602999999999998, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-02", + "total_cases": 2686480.0, + "new_cases": 52048.0, + "new_cases_smoothed": 43588.429, + "total_deaths": 128062.0, + "new_deaths": 652.0, + "new_deaths_smoothed": 869.0, + "total_cases_per_million": 8116.189, + "new_cases_per_million": 157.243, + "new_cases_smoothed_per_million": 131.686, + "total_deaths_per_million": 386.891, + "new_deaths_per_million": 1.97, + "new_deaths_smoothed_per_million": 2.625, + "new_tests": 709506.0, + "total_tests": 37940017.0, + "total_tests_per_thousand": 114.621, + "new_tests_per_thousand": 2.144, + "new_tests_smoothed": 721937.0, + "new_tests_smoothed_per_thousand": 2.181, + "tests_per_case": 16.563, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-03", + "total_cases": 2739879.0, + "new_cases": 53399.0, + "new_cases_smoothed": 45367.0, + "total_deaths": 128740.0, + "new_deaths": 678.0, + "new_deaths_smoothed": 617.714, + "total_cases_per_million": 8277.514, + "new_cases_per_million": 161.325, + "new_cases_smoothed_per_million": 137.059, + "total_deaths_per_million": 388.939, + "new_deaths_per_million": 2.048, + "new_deaths_smoothed_per_million": 1.866, + "new_tests": 728871.0, + "total_tests": 38668888.0, + "total_tests_per_thousand": 116.824, + "new_tests_per_thousand": 2.202, + "new_tests_smoothed": 718884.0, + "new_tests_smoothed_per_thousand": 2.172, + "tests_per_case": 15.845999999999998, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-04", + "total_cases": 2794321.0, + "new_cases": 54442.0, + "new_cases_smoothed": 46640.571, + "total_deaths": 129434.0, + "new_deaths": 694.0, + "new_deaths_smoothed": 627.857, + "total_cases_per_million": 8441.99, + "new_cases_per_million": 164.476, + "new_cases_smoothed_per_million": 140.907, + "total_deaths_per_million": 391.036, + "new_deaths_per_million": 2.097, + "new_deaths_smoothed_per_million": 1.897, + "new_tests": 511140.0, + "total_tests": 39180028.0, + "total_tests_per_thousand": 118.368, + "new_tests_per_thousand": 1.544, + "new_tests_smoothed": 700397.0, + "new_tests_smoothed_per_thousand": 2.116, + "tests_per_case": 15.017000000000001, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-05", + "total_cases": 2839542.0, + "new_cases": 45221.0, + "new_cases_smoothed": 47031.286, + "total_deaths": 129676.0, + "new_deaths": 242.0, + "new_deaths_smoothed": 591.0, + "total_cases_per_million": 8578.608, + "new_cases_per_million": 136.618, + "new_cases_smoothed_per_million": 142.087, + "total_deaths_per_million": 391.767, + "new_deaths_per_million": 0.731, + "new_deaths_smoothed_per_million": 1.785, + "new_tests": 423860.0, + "total_tests": 39603888.0, + "total_tests_per_thousand": 119.648, + "new_tests_per_thousand": 1.281, + "new_tests_smoothed": 693141.0, + "new_tests_smoothed_per_thousand": 2.094, + "tests_per_case": 14.738, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-06", + "total_cases": 2888635.0, + "new_cases": 49093.0, + "new_cases_smoothed": 48519.857, + "total_deaths": 129947.0, + "new_deaths": 271.0, + "new_deaths_smoothed": 591.857, + "total_cases_per_million": 8726.924, + "new_cases_per_million": 148.316, + "new_cases_smoothed_per_million": 146.584, + "total_deaths_per_million": 392.586, + "new_deaths_per_million": 0.819, + "new_deaths_smoothed_per_million": 1.788, + "new_tests": 869753.0, + "total_tests": 40473641.0, + "total_tests_per_thousand": 122.276, + "new_tests_per_thousand": 2.628, + "new_tests_smoothed": 710970.0, + "new_tests_smoothed_per_thousand": 2.148, + "tests_per_case": 14.652999999999999, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-07", + "total_cases": 2938625.0, + "new_cases": 49990.0, + "new_cases_smoothed": 49724.714, + "total_deaths": 130306.0, + "new_deaths": 359.0, + "new_deaths_smoothed": 595.143, + "total_cases_per_million": 8877.95, + "new_cases_per_million": 151.026, + "new_cases_smoothed_per_million": 150.225, + "total_deaths_per_million": 393.671, + "new_deaths_per_million": 1.085, + "new_deaths_smoothed_per_million": 1.798, + "new_tests": 827510.0, + "total_tests": 41301151.0, + "total_tests_per_thousand": 124.776, + "new_tests_per_thousand": 2.5, + "new_tests_smoothed": 709170.0, + "new_tests_smoothed_per_thousand": 2.142, + "tests_per_case": 14.262, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-08", + "total_cases": 2996098.0, + "new_cases": 57473.0, + "new_cases_smoothed": 51666.571, + "total_deaths": 131480.0, + "new_deaths": 1174.0, + "new_deaths_smoothed": 581.429, + "total_cases_per_million": 9051.583, + "new_cases_per_million": 173.633, + "new_cases_smoothed_per_million": 156.091, + "total_deaths_per_million": 397.217, + "new_deaths_per_million": 3.547, + "new_deaths_smoothed_per_million": 1.757, + "new_tests": 893715.0, + "total_tests": 42194866.0, + "total_tests_per_thousand": 127.476, + "new_tests_per_thousand": 2.7, + "new_tests_smoothed": 709194.0, + "new_tests_smoothed_per_thousand": 2.143, + "tests_per_case": 13.725999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-09", + "total_cases": 3055004.0, + "new_cases": 58906.0, + "new_cases_smoothed": 52646.286, + "total_deaths": 132309.0, + "new_deaths": 829.0, + "new_deaths_smoothed": 606.714, + "total_cases_per_million": 9229.546, + "new_cases_per_million": 177.962, + "new_cases_smoothed_per_million": 159.051, + "total_deaths_per_million": 399.722, + "new_deaths_per_million": 2.505, + "new_deaths_smoothed_per_million": 1.833, + "new_tests": 899656.0, + "total_tests": 43094522.0, + "total_tests_per_thousand": 130.194, + "new_tests_per_thousand": 2.718, + "new_tests_smoothed": 736358.0, + "new_tests_smoothed_per_thousand": 2.225, + "tests_per_case": 13.987, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-10", + "total_cases": 3118008.0, + "new_cases": 63004.0, + "new_cases_smoothed": 54018.429, + "total_deaths": 133291.0, + "new_deaths": 982.0, + "new_deaths_smoothed": 650.143, + "total_cases_per_million": 9419.888, + "new_cases_per_million": 190.343, + "new_cases_smoothed_per_million": 163.196, + "total_deaths_per_million": 402.689, + "new_deaths_per_million": 2.967, + "new_deaths_smoothed_per_million": 1.964, + "new_tests": 906111.0, + "total_tests": 44000633.0, + "total_tests_per_thousand": 132.931, + "new_tests_per_thousand": 2.737, + "new_tests_smoothed": 761678.0, + "new_tests_smoothed_per_thousand": 2.301, + "tests_per_case": 14.1, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-11", + "total_cases": 3184633.0, + "new_cases": 66625.0, + "new_cases_smoothed": 55758.857, + "total_deaths": 134097.0, + "new_deaths": 806.0, + "new_deaths_smoothed": 666.143, + "total_cases_per_million": 9621.171, + "new_cases_per_million": 201.282, + "new_cases_smoothed_per_million": 168.454, + "total_deaths_per_million": 405.124, + "new_deaths_per_million": 2.435, + "new_deaths_smoothed_per_million": 2.013, + "new_tests": 797286.0, + "total_tests": 44797919.0, + "total_tests_per_thousand": 135.34, + "new_tests_per_thousand": 2.409, + "new_tests_smoothed": 802556.0, + "new_tests_smoothed_per_thousand": 2.425, + "tests_per_case": 14.392999999999999, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-12", + "total_cases": 3247684.0, + "new_cases": 63051.0, + "new_cases_smoothed": 58306.0, + "total_deaths": 134814.0, + "new_deaths": 717.0, + "new_deaths_smoothed": 734.0, + "total_cases_per_million": 9811.656, + "new_cases_per_million": 190.485, + "new_cases_smoothed_per_million": 176.15, + "total_deaths_per_million": 407.29, + "new_deaths_per_million": 2.166, + "new_deaths_smoothed_per_million": 2.218, + "new_tests": 697221.0, + "total_tests": 45495140.0, + "total_tests_per_thousand": 137.446, + "new_tests_per_thousand": 2.106, + "new_tests_smoothed": 841607.0, + "new_tests_smoothed_per_thousand": 2.543, + "tests_per_case": 14.434000000000001, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-13", + "total_cases": 3304942.0, + "new_cases": 57258.0, + "new_cases_smoothed": 59472.429, + "total_deaths": 135205.0, + "new_deaths": 391.0, + "new_deaths_smoothed": 751.143, + "total_cases_per_million": 9984.639, + "new_cases_per_million": 172.984, + "new_cases_smoothed_per_million": 179.674, + "total_deaths_per_million": 408.471, + "new_deaths_per_million": 1.181, + "new_deaths_smoothed_per_million": 2.269, + "new_tests": 810435.0, + "total_tests": 46305575.0, + "total_tests_per_thousand": 139.895, + "new_tests_per_thousand": 2.448, + "new_tests_smoothed": 833133.0, + "new_tests_smoothed_per_thousand": 2.517, + "tests_per_case": 14.009, + "positive_rate": 0.071, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-14", + "total_cases": 3363056.0, + "new_cases": 58114.0, + "new_cases_smoothed": 60633.0, + "total_deaths": 135605.0, + "new_deaths": 400.0, + "new_deaths_smoothed": 757.0, + "total_cases_per_million": 10160.209, + "new_cases_per_million": 175.57, + "new_cases_smoothed_per_million": 183.18, + "total_deaths_per_million": 409.68, + "new_deaths_per_million": 1.208, + "new_deaths_smoothed_per_million": 2.287, + "new_tests": 887302.0, + "total_tests": 47192877.0, + "total_tests_per_thousand": 142.576, + "new_tests_per_thousand": 2.681, + "new_tests_smoothed": 841675.0, + "new_tests_smoothed_per_thousand": 2.543, + "tests_per_case": 13.880999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-15", + "total_cases": 3431574.0, + "new_cases": 68518.0, + "new_cases_smoothed": 62210.857, + "total_deaths": 136466.0, + "new_deaths": 861.0, + "new_deaths_smoothed": 712.286, + "total_cases_per_million": 10367.21, + "new_cases_per_million": 207.001, + "new_cases_smoothed_per_million": 187.947, + "total_deaths_per_million": 412.281, + "new_deaths_per_million": 2.601, + "new_deaths_smoothed_per_million": 2.152, + "new_tests": 830364.0, + "total_tests": 48023241.0, + "total_tests_per_thousand": 145.084, + "new_tests_per_thousand": 2.509, + "new_tests_smoothed": 832625.0, + "new_tests_smoothed_per_thousand": 2.515, + "tests_per_case": 13.384, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-16", + "total_cases": 3499291.0, + "new_cases": 67717.0, + "new_cases_smoothed": 63469.571, + "total_deaths": 137419.0, + "new_deaths": 953.0, + "new_deaths_smoothed": 730.0, + "total_cases_per_million": 10571.792, + "new_cases_per_million": 204.581, + "new_cases_smoothed_per_million": 191.749, + "total_deaths_per_million": 415.16, + "new_deaths_per_million": 2.879, + "new_deaths_smoothed_per_million": 2.205, + "new_tests": 1070497.0, + "total_tests": 49093738.0, + "total_tests_per_thousand": 148.318, + "new_tests_per_thousand": 3.234, + "new_tests_smoothed": 857031.0, + "new_tests_smoothed_per_thousand": 2.589, + "tests_per_case": 13.503, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-17", + "total_cases": 3576221.0, + "new_cases": 76930.0, + "new_cases_smoothed": 65459.0, + "total_deaths": 138358.0, + "new_deaths": 939.0, + "new_deaths_smoothed": 723.857, + "total_cases_per_million": 10804.207, + "new_cases_per_million": 232.415, + "new_cases_smoothed_per_million": 197.76, + "total_deaths_per_million": 417.997, + "new_deaths_per_million": 2.837, + "new_deaths_smoothed_per_million": 2.187, + "new_tests": 963719.0, + "total_tests": 50057457.0, + "total_tests_per_thousand": 151.23, + "new_tests_per_thousand": 2.912, + "new_tests_smoothed": 865261.0, + "new_tests_smoothed_per_thousand": 2.614, + "tests_per_case": 13.218, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-18", + "total_cases": 3647715.0, + "new_cases": 71494.0, + "new_cases_smoothed": 66154.571, + "total_deaths": 139266.0, + "new_deaths": 908.0, + "new_deaths_smoothed": 738.429, + "total_cases_per_million": 11020.199, + "new_cases_per_million": 215.992, + "new_cases_smoothed_per_million": 199.861, + "total_deaths_per_million": 420.74, + "new_deaths_per_million": 2.743, + "new_deaths_smoothed_per_million": 2.231, + "new_tests": 837477.0, + "total_tests": 50894934.0, + "total_tests_per_thousand": 153.76, + "new_tests_per_thousand": 2.53, + "new_tests_smoothed": 871002.0, + "new_tests_smoothed_per_thousand": 2.631, + "tests_per_case": 13.165999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-19", + "total_cases": 3711464.0, + "new_cases": 63749.0, + "new_cases_smoothed": 66254.286, + "total_deaths": 140119.0, + "new_deaths": 853.0, + "new_deaths_smoothed": 757.857, + "total_cases_per_million": 11212.793, + "new_cases_per_million": 192.594, + "new_cases_smoothed_per_million": 200.162, + "total_deaths_per_million": 423.317, + "new_deaths_per_million": 2.577, + "new_deaths_smoothed_per_million": 2.29, + "new_tests": 582562.0, + "total_tests": 51477496.0, + "total_tests_per_thousand": 155.52, + "new_tests_per_thousand": 1.76, + "new_tests_smoothed": 854622.0, + "new_tests_smoothed_per_thousand": 2.582, + "tests_per_case": 12.899000000000001, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 68.98 + }, + { + "date": "2020-07-20", + "total_cases": 3773260.0, + "new_cases": 61796.0, + "new_cases_smoothed": 66902.571, + "total_deaths": 140534.0, + "new_deaths": 415.0, + "new_deaths_smoothed": 761.286, + "total_cases_per_million": 11399.486, + "new_cases_per_million": 186.693, + "new_cases_smoothed_per_million": 202.121, + "total_deaths_per_million": 424.571, + "new_deaths_per_million": 1.254, + "new_deaths_smoothed_per_million": 2.3, + "new_tests": 712174.0, + "total_tests": 52189670.0, + "total_tests_per_thousand": 157.671, + "new_tests_per_thousand": 2.152, + "new_tests_smoothed": 840585.0, + "new_tests_smoothed_per_thousand": 2.54, + "tests_per_case": 12.564, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-21", + "total_cases": 3830010.0, + "new_cases": 56750.0, + "new_cases_smoothed": 66707.714, + "total_deaths": 140906.0, + "new_deaths": 372.0, + "new_deaths_smoothed": 757.286, + "total_cases_per_million": 11570.935, + "new_cases_per_million": 171.449, + "new_cases_smoothed_per_million": 201.532, + "total_deaths_per_million": 425.694, + "new_deaths_per_million": 1.124, + "new_deaths_smoothed_per_million": 2.288, + "new_tests": 1194086.0, + "total_tests": 53383756.0, + "total_tests_per_thousand": 161.279, + "new_tests_per_thousand": 3.607, + "new_tests_smoothed": 884411.0, + "new_tests_smoothed_per_thousand": 2.672, + "tests_per_case": 13.258, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-22", + "total_cases": 3902058.0, + "new_cases": 72048.0, + "new_cases_smoothed": 67212.0, + "total_deaths": 142066.0, + "new_deaths": 1160.0, + "new_deaths_smoothed": 800.0, + "total_cases_per_million": 11788.601, + "new_cases_per_million": 217.666, + "new_cases_smoothed_per_million": 203.056, + "total_deaths_per_million": 429.199, + "new_deaths_per_million": 3.505, + "new_deaths_smoothed_per_million": 2.417, + "new_tests": 1007547.0, + "total_tests": 54391303.0, + "total_tests_per_thousand": 164.323, + "new_tests_per_thousand": 3.044, + "new_tests_smoothed": 909723.0, + "new_tests_smoothed_per_thousand": 2.748, + "tests_per_case": 13.535, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-23", + "total_cases": 3970906.0, + "new_cases": 68848.0, + "new_cases_smoothed": 67373.571, + "total_deaths": 143190.0, + "new_deaths": 1124.0, + "new_deaths_smoothed": 824.429, + "total_cases_per_million": 11996.599, + "new_cases_per_million": 207.998, + "new_cases_smoothed_per_million": 203.544, + "total_deaths_per_million": 432.595, + "new_deaths_per_million": 3.396, + "new_deaths_smoothed_per_million": 2.491, + "new_tests": 1002937.0, + "total_tests": 55394240.0, + "total_tests_per_thousand": 167.353, + "new_tests_per_thousand": 3.03, + "new_tests_smoothed": 900072.0, + "new_tests_smoothed_per_thousand": 2.719, + "tests_per_case": 13.359000000000002, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-24", + "total_cases": 4034102.0, + "new_cases": 63196.0, + "new_cases_smoothed": 65411.571, + "total_deaths": 144242.0, + "new_deaths": 1052.0, + "new_deaths_smoothed": 840.571, + "total_cases_per_million": 12187.522, + "new_cases_per_million": 190.923, + "new_cases_smoothed_per_million": 197.616, + "total_deaths_per_million": 435.773, + "new_deaths_per_million": 3.178, + "new_deaths_smoothed_per_million": 2.539, + "new_tests": 872367.0, + "total_tests": 56266607.0, + "total_tests_per_thousand": 169.988, + "new_tests_per_thousand": 2.636, + "new_tests_smoothed": 887021.0, + "new_tests_smoothed_per_thousand": 2.68, + "tests_per_case": 13.561, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-25", + "total_cases": 4112529.0, + "new_cases": 78427.0, + "new_cases_smoothed": 66402.0, + "total_deaths": 145546.0, + "new_deaths": 1304.0, + "new_deaths_smoothed": 897.143, + "total_cases_per_million": 12424.46, + "new_cases_per_million": 236.938, + "new_cases_smoothed_per_million": 200.609, + "total_deaths_per_million": 439.712, + "new_deaths_per_million": 3.94, + "new_deaths_smoothed_per_million": 2.71, + "new_tests": 917381.0, + "total_tests": 57183988.0, + "total_tests_per_thousand": 172.76, + "new_tests_per_thousand": 2.772, + "new_tests_smoothed": 898436.0, + "new_tests_smoothed_per_thousand": 2.714, + "tests_per_case": 13.53, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-26", + "total_cases": 4178027.0, + "new_cases": 65498.0, + "new_cases_smoothed": 66651.857, + "total_deaths": 146460.0, + "new_deaths": 914.0, + "new_deaths_smoothed": 905.857, + "total_cases_per_million": 12622.337, + "new_cases_per_million": 197.878, + "new_cases_smoothed_per_million": 201.364, + "total_deaths_per_million": 442.474, + "new_deaths_per_million": 2.761, + "new_deaths_smoothed_per_million": 2.737, + "new_tests": 628441.0, + "total_tests": 57812429.0, + "total_tests_per_thousand": 174.659, + "new_tests_per_thousand": 1.899, + "new_tests_smoothed": 904990.0, + "new_tests_smoothed_per_thousand": 2.734, + "tests_per_case": 13.578, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-27", + "total_cases": 4234020.0, + "new_cases": 55993.0, + "new_cases_smoothed": 65822.857, + "total_deaths": 146935.0, + "new_deaths": 475.0, + "new_deaths_smoothed": 914.429, + "total_cases_per_million": 12791.499, + "new_cases_per_million": 169.162, + "new_cases_smoothed_per_million": 198.859, + "total_deaths_per_million": 443.909, + "new_deaths_per_million": 1.435, + "new_deaths_smoothed_per_million": 2.763, + "new_tests": 715427.0, + "total_tests": 58527856.0, + "total_tests_per_thousand": 176.82, + "new_tests_per_thousand": 2.161, + "new_tests_smoothed": 905455.0, + "new_tests_smoothed_per_thousand": 2.735, + "tests_per_case": 13.755999999999998, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-28", + "total_cases": 4290263.0, + "new_cases": 56243.0, + "new_cases_smoothed": 65750.429, + "total_deaths": 148011.0, + "new_deaths": 1076.0, + "new_deaths_smoothed": 1015.0, + "total_cases_per_million": 12961.416, + "new_cases_per_million": 169.917, + "new_cases_smoothed_per_million": 198.64, + "total_deaths_per_million": 447.16, + "new_deaths_per_million": 3.251, + "new_deaths_smoothed_per_million": 3.066, + "new_tests": 850390.0, + "total_tests": 59378246.0, + "total_tests_per_thousand": 179.389, + "new_tests_per_thousand": 2.569, + "new_tests_smoothed": 856356.0, + "new_tests_smoothed_per_thousand": 2.587, + "tests_per_case": 13.024000000000001, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-29", + "total_cases": 4351997.0, + "new_cases": 61734.0, + "new_cases_smoothed": 64277.0, + "total_deaths": 149256.0, + "new_deaths": 1245.0, + "new_deaths_smoothed": 1027.143, + "total_cases_per_million": 13147.922, + "new_cases_per_million": 186.506, + "new_cases_smoothed_per_million": 194.189, + "total_deaths_per_million": 450.921, + "new_deaths_per_million": 3.761, + "new_deaths_smoothed_per_million": 3.103, + "new_tests": 822115.0, + "total_tests": 60200361.0, + "total_tests_per_thousand": 181.873, + "new_tests_per_thousand": 2.484, + "new_tests_smoothed": 829865.0, + "new_tests_smoothed_per_thousand": 2.507, + "tests_per_case": 12.911, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-30", + "total_cases": 4426982.0, + "new_cases": 74985.0, + "new_cases_smoothed": 65153.714, + "total_deaths": 150713.0, + "new_deaths": 1457.0, + "new_deaths_smoothed": 1074.714, + "total_cases_per_million": 13374.461, + "new_cases_per_million": 226.539, + "new_cases_smoothed_per_million": 196.837, + "total_deaths_per_million": 455.323, + "new_deaths_per_million": 4.402, + "new_deaths_smoothed_per_million": 3.247, + "new_tests": 955577.0, + "total_tests": 61155938.0, + "total_tests_per_thousand": 184.76, + "new_tests_per_thousand": 2.887, + "new_tests_smoothed": 823100.0, + "new_tests_smoothed_per_thousand": 2.487, + "tests_per_case": 12.633, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-07-31", + "total_cases": 4495014.0, + "new_cases": 68032.0, + "new_cases_smoothed": 65844.571, + "total_deaths": 152070.0, + "new_deaths": 1357.0, + "new_deaths_smoothed": 1118.286, + "total_cases_per_million": 13579.994, + "new_cases_per_million": 205.533, + "new_cases_smoothed_per_million": 198.925, + "total_deaths_per_million": 459.422, + "new_deaths_per_million": 4.1, + "new_deaths_smoothed_per_million": 3.378, + "new_tests": 936478.0, + "total_tests": 62092416.0, + "total_tests_per_thousand": 187.589, + "new_tests_per_thousand": 2.829, + "new_tests_smoothed": 832258.0, + "new_tests_smoothed_per_thousand": 2.514, + "tests_per_case": 12.64, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-01", + "total_cases": 4562037.0, + "new_cases": 67023.0, + "new_cases_smoothed": 64215.429, + "total_deaths": 153314.0, + "new_deaths": 1244.0, + "new_deaths_smoothed": 1109.714, + "total_cases_per_million": 13782.479, + "new_cases_per_million": 202.485, + "new_cases_smoothed_per_million": 194.003, + "total_deaths_per_million": 463.181, + "new_deaths_per_million": 3.758, + "new_deaths_smoothed_per_million": 3.353, + "new_tests": 748542.0, + "total_tests": 62840958.0, + "total_tests_per_thousand": 189.85, + "new_tests_per_thousand": 2.261, + "new_tests_smoothed": 808139.0, + "new_tests_smoothed_per_thousand": 2.441, + "tests_per_case": 12.585, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-02", + "total_cases": 4620444.0, + "new_cases": 58407.0, + "new_cases_smoothed": 63202.429, + "total_deaths": 154447.0, + "new_deaths": 1133.0, + "new_deaths_smoothed": 1141.0, + "total_cases_per_million": 13958.934, + "new_cases_per_million": 176.455, + "new_cases_smoothed_per_million": 190.942, + "total_deaths_per_million": 466.604, + "new_deaths_per_million": 3.423, + "new_deaths_smoothed_per_million": 3.447, + "new_tests": 573836.0, + "total_tests": 63414794.0, + "total_tests_per_thousand": 191.584, + "new_tests_per_thousand": 1.734, + "new_tests_smoothed": 800338.0, + "new_tests_smoothed_per_thousand": 2.418, + "tests_per_case": 12.663, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-03", + "total_cases": 4667955.0, + "new_cases": 47511.0, + "new_cases_smoothed": 61990.714, + "total_deaths": 154860.0, + "new_deaths": 413.0, + "new_deaths_smoothed": 1132.143, + "total_cases_per_million": 14102.47, + "new_cases_per_million": 143.537, + "new_cases_smoothed_per_million": 187.282, + "total_deaths_per_million": 467.851, + "new_deaths_per_million": 1.248, + "new_deaths_smoothed_per_million": 3.42, + "new_tests": 673264.0, + "total_tests": 64088058.0, + "total_tests_per_thousand": 193.618, + "new_tests_per_thousand": 2.034, + "new_tests_smoothed": 794315.0, + "new_tests_smoothed_per_thousand": 2.4, + "tests_per_case": 12.812999999999999, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-04", + "total_cases": 4713562.0, + "new_cases": 45607.0, + "new_cases_smoothed": 60471.286, + "total_deaths": 155403.0, + "new_deaths": 543.0, + "new_deaths_smoothed": 1056.0, + "total_cases_per_million": 14240.255, + "new_cases_per_million": 137.784, + "new_cases_smoothed_per_million": 182.691, + "total_deaths_per_million": 469.492, + "new_deaths_per_million": 1.64, + "new_deaths_smoothed_per_million": 3.19, + "new_tests": 756223.0, + "total_tests": 64844281.0, + "total_tests_per_thousand": 195.903, + "new_tests_per_thousand": 2.285, + "new_tests_smoothed": 780862.0, + "new_tests_smoothed_per_thousand": 2.359, + "tests_per_case": 12.913, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-05", + "total_cases": 4771087.0, + "new_cases": 57525.0, + "new_cases_smoothed": 59870.0, + "total_deaths": 156806.0, + "new_deaths": 1403.0, + "new_deaths_smoothed": 1078.571, + "total_cases_per_million": 14414.045, + "new_cases_per_million": 173.79, + "new_cases_smoothed_per_million": 180.875, + "total_deaths_per_million": 473.73, + "new_deaths_per_million": 4.239, + "new_deaths_smoothed_per_million": 3.258, + "new_tests": 850564.0, + "total_tests": 65694845.0, + "total_tests_per_thousand": 198.472, + "new_tests_per_thousand": 2.57, + "new_tests_smoothed": 784926.0, + "new_tests_smoothed_per_thousand": 2.371, + "tests_per_case": 13.110999999999999, + "positive_rate": 0.076, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-06", + "total_cases": 4823891.0, + "new_cases": 52804.0, + "new_cases_smoothed": 56701.286, + "total_deaths": 158256.0, + "new_deaths": 1450.0, + "new_deaths_smoothed": 1077.571, + "total_cases_per_million": 14573.572, + "new_cases_per_million": 159.527, + "new_cases_smoothed_per_million": 171.302, + "total_deaths_per_million": 478.111, + "new_deaths_per_million": 4.381, + "new_deaths_smoothed_per_million": 3.255, + "new_tests": 869894.0, + "total_tests": 66564739.0, + "total_tests_per_thousand": 201.1, + "new_tests_per_thousand": 2.628, + "new_tests_smoothed": 772686.0, + "new_tests_smoothed_per_thousand": 2.334, + "tests_per_case": 13.627, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-07", + "total_cases": 4883646.0, + "new_cases": 59755.0, + "new_cases_smoothed": 55518.857, + "total_deaths": 160104.0, + "new_deaths": 1848.0, + "new_deaths_smoothed": 1147.714, + "total_cases_per_million": 14754.1, + "new_cases_per_million": 180.527, + "new_cases_smoothed_per_million": 167.729, + "total_deaths_per_million": 483.694, + "new_deaths_per_million": 5.583, + "new_deaths_smoothed_per_million": 3.467, + "new_tests": 883521.0, + "total_tests": 67448260.0, + "total_tests_per_thousand": 203.77, + "new_tests_per_thousand": 2.669, + "new_tests_smoothed": 765121.0, + "new_tests_smoothed_per_thousand": 2.312, + "tests_per_case": 13.780999999999999, + "positive_rate": 0.073, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-08", + "total_cases": 4941796.0, + "new_cases": 58150.0, + "new_cases_smoothed": 54251.286, + "total_deaths": 161356.0, + "new_deaths": 1252.0, + "new_deaths_smoothed": 1148.857, + "total_cases_per_million": 14929.778, + "new_cases_per_million": 175.678, + "new_cases_smoothed_per_million": 163.9, + "total_deaths_per_million": 487.476, + "new_deaths_per_million": 3.782, + "new_deaths_smoothed_per_million": 3.471, + "new_tests": 809987.0, + "total_tests": 68258247.0, + "total_tests_per_thousand": 206.217, + "new_tests_per_thousand": 2.447, + "new_tests_smoothed": 773898.0, + "new_tests_smoothed_per_thousand": 2.338, + "tests_per_case": 14.265, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-09", + "total_cases": 4998017.0, + "new_cases": 56221.0, + "new_cases_smoothed": 53939.0, + "total_deaths": 162425.0, + "new_deaths": 1069.0, + "new_deaths_smoothed": 1139.714, + "total_cases_per_million": 15099.628, + "new_cases_per_million": 169.851, + "new_cases_smoothed_per_million": 162.956, + "total_deaths_per_million": 490.706, + "new_deaths_per_million": 3.23, + "new_deaths_smoothed_per_million": 3.443, + "new_tests": 705689.0, + "total_tests": 68963936.0, + "total_tests_per_thousand": 208.349, + "new_tests_per_thousand": 2.132, + "new_tests_smoothed": 792735.0, + "new_tests_smoothed_per_thousand": 2.395, + "tests_per_case": 14.697000000000001, + "positive_rate": 0.068, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-10", + "total_cases": 5044864.0, + "new_cases": 46847.0, + "new_cases_smoothed": 53844.143, + "total_deaths": 162938.0, + "new_deaths": 513.0, + "new_deaths_smoothed": 1154.0, + "total_cases_per_million": 15241.159, + "new_cases_per_million": 141.531, + "new_cases_smoothed_per_million": 162.67, + "total_deaths_per_million": 492.256, + "new_deaths_per_million": 1.55, + "new_deaths_smoothed_per_million": 3.486, + "new_tests": 766440.0, + "total_tests": 69730376.0, + "total_tests_per_thousand": 210.664, + "new_tests_per_thousand": 2.316, + "new_tests_smoothed": 806045.0, + "new_tests_smoothed_per_thousand": 2.435, + "tests_per_case": 14.97, + "positive_rate": 0.067, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-11", + "total_cases": 5094394.0, + "new_cases": 49530.0, + "new_cases_smoothed": 54404.571, + "total_deaths": 163461.0, + "new_deaths": 523.0, + "new_deaths_smoothed": 1151.143, + "total_cases_per_million": 15390.795, + "new_cases_per_million": 149.636, + "new_cases_smoothed_per_million": 164.363, + "total_deaths_per_million": 493.836, + "new_deaths_per_million": 1.58, + "new_deaths_smoothed_per_million": 3.478, + "new_tests": 928635.0, + "total_tests": 70659011.0, + "total_tests_per_thousand": 213.47, + "new_tests_per_thousand": 2.806, + "new_tests_smoothed": 830676.0, + "new_tests_smoothed_per_thousand": 2.51, + "tests_per_case": 15.267999999999999, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-12", + "total_cases": 5141207.0, + "new_cases": 46813.0, + "new_cases_smoothed": 52874.286, + "total_deaths": 164537.0, + "new_deaths": 1076.0, + "new_deaths_smoothed": 1104.429, + "total_cases_per_million": 15532.223, + "new_cases_per_million": 141.428, + "new_cases_smoothed_per_million": 159.74, + "total_deaths_per_million": 497.087, + "new_deaths_per_million": 3.251, + "new_deaths_smoothed_per_million": 3.337, + "new_tests": 924205.0, + "total_tests": 71583216.0, + "total_tests_per_thousand": 216.262, + "new_tests_per_thousand": 2.792, + "new_tests_smoothed": 841196.0, + "new_tests_smoothed_per_thousand": 2.541, + "tests_per_case": 15.909, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-13", + "total_cases": 5197148.0, + "new_cases": 55941.0, + "new_cases_smoothed": 53322.429, + "total_deaths": 166027.0, + "new_deaths": 1490.0, + "new_deaths_smoothed": 1110.143, + "total_cases_per_million": 15701.228, + "new_cases_per_million": 169.005, + "new_cases_smoothed_per_million": 161.094, + "total_deaths_per_million": 501.588, + "new_deaths_per_million": 4.501, + "new_deaths_smoothed_per_million": 3.354, + "new_tests": 1020475.0, + "total_tests": 72603691.0, + "total_tests_per_thousand": 219.345, + "new_tests_per_thousand": 3.083, + "new_tests_smoothed": 862707.0, + "new_tests_smoothed_per_thousand": 2.606, + "tests_per_case": 16.179000000000002, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-14", + "total_cases": 5248242.0, + "new_cases": 51094.0, + "new_cases_smoothed": 52085.143, + "total_deaths": 167110.0, + "new_deaths": 1083.0, + "new_deaths_smoothed": 1000.857, + "total_cases_per_million": 15855.589, + "new_cases_per_million": 154.361, + "new_cases_smoothed_per_million": 157.356, + "total_deaths_per_million": 504.86, + "new_deaths_per_million": 3.272, + "new_deaths_smoothed_per_million": 3.024, + "new_tests": 944250.0, + "total_tests": 73547941.0, + "total_tests_per_thousand": 222.197, + "new_tests_per_thousand": 2.853, + "new_tests_smoothed": 871383.0, + "new_tests_smoothed_per_thousand": 2.633, + "tests_per_case": 16.73, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-15", + "total_cases": 5313080.0, + "new_cases": 64838.0, + "new_cases_smoothed": 53040.571, + "total_deaths": 168446.0, + "new_deaths": 1336.0, + "new_deaths_smoothed": 1012.857, + "total_cases_per_million": 16051.473, + "new_cases_per_million": 195.884, + "new_cases_smoothed_per_million": 160.242, + "total_deaths_per_million": 508.896, + "new_deaths_per_million": 4.036, + "new_deaths_smoothed_per_million": 3.06, + "new_tests": 819534.0, + "total_tests": 74367475.0, + "total_tests_per_thousand": 224.673, + "new_tests_per_thousand": 2.476, + "new_tests_smoothed": 872747.0, + "new_tests_smoothed_per_thousand": 2.637, + "tests_per_case": 16.454, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-16", + "total_cases": 5361165.0, + "new_cases": 48085.0, + "new_cases_smoothed": 51878.286, + "total_deaths": 169481.0, + "new_deaths": 1035.0, + "new_deaths_smoothed": 1008.0, + "total_cases_per_million": 16196.744, + "new_cases_per_million": 145.271, + "new_cases_smoothed_per_million": 156.731, + "total_deaths_per_million": 512.023, + "new_deaths_per_million": 3.127, + "new_deaths_smoothed_per_million": 3.045, + "new_tests": 614283.0, + "total_tests": 74981758.0, + "total_tests_per_thousand": 226.529, + "new_tests_per_thousand": 1.856, + "new_tests_smoothed": 859689.0, + "new_tests_smoothed_per_thousand": 2.597, + "tests_per_case": 16.570999999999998, + "positive_rate": 0.06, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-17", + "total_cases": 5403269.0, + "new_cases": 42104.0, + "new_cases_smoothed": 51200.714, + "total_deaths": 170052.0, + "new_deaths": 571.0, + "new_deaths_smoothed": 1016.286, + "total_cases_per_million": 16323.945, + "new_cases_per_million": 127.201, + "new_cases_smoothed_per_million": 154.684, + "total_deaths_per_million": 513.748, + "new_deaths_per_million": 1.725, + "new_deaths_smoothed_per_million": 3.07, + "new_tests": 649621.0, + "total_tests": 75631379.0, + "total_tests_per_thousand": 228.492, + "new_tests_per_thousand": 1.963, + "new_tests_smoothed": 843000.0, + "new_tests_smoothed_per_thousand": 2.547, + "tests_per_case": 16.465, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-18", + "total_cases": 5438325.0, + "new_cases": 35056.0, + "new_cases_smoothed": 49133.0, + "total_deaths": 170497.0, + "new_deaths": 445.0, + "new_deaths_smoothed": 1005.143, + "total_cases_per_million": 16429.854, + "new_cases_per_million": 105.909, + "new_cases_smoothed_per_million": 148.437, + "total_deaths_per_million": 515.093, + "new_deaths_per_million": 1.344, + "new_deaths_smoothed_per_million": 3.037, + "new_tests": 821222.0, + "total_tests": 76452601.0, + "total_tests_per_thousand": 230.973, + "new_tests_per_thousand": 2.481, + "new_tests_smoothed": 827656.0, + "new_tests_smoothed_per_thousand": 2.5, + "tests_per_case": 16.845, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-19", + "total_cases": 5482416.0, + "new_cases": 44091.0, + "new_cases_smoothed": 48744.143, + "total_deaths": 171821.0, + "new_deaths": 1324.0, + "new_deaths_smoothed": 1040.571, + "total_cases_per_million": 16563.058, + "new_cases_per_million": 133.204, + "new_cases_smoothed_per_million": 147.262, + "total_deaths_per_million": 519.093, + "new_deaths_per_million": 4.0, + "new_deaths_smoothed_per_million": 3.144, + "new_tests": 929069.0, + "total_tests": 77381670.0, + "total_tests_per_thousand": 233.78, + "new_tests_per_thousand": 2.807, + "new_tests_smoothed": 828351.0, + "new_tests_smoothed_per_thousand": 2.503, + "tests_per_case": 16.994, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-20", + "total_cases": 5529842.0, + "new_cases": 47426.0, + "new_cases_smoothed": 47527.714, + "total_deaths": 173177.0, + "new_deaths": 1356.0, + "new_deaths_smoothed": 1021.429, + "total_cases_per_million": 16706.338, + "new_cases_per_million": 143.28, + "new_cases_smoothed_per_million": 143.587, + "total_deaths_per_million": 523.189, + "new_deaths_per_million": 4.097, + "new_deaths_smoothed_per_million": 3.086, + "new_tests": 926927.0, + "total_tests": 78308597.0, + "total_tests_per_thousand": 236.58, + "new_tests_per_thousand": 2.8, + "new_tests_smoothed": 814987.0, + "new_tests_smoothed_per_thousand": 2.462, + "tests_per_case": 17.148, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-21", + "total_cases": 5573847.0, + "new_cases": 44005.0, + "new_cases_smoothed": 46515.0, + "total_deaths": 174255.0, + "new_deaths": 1078.0, + "new_deaths_smoothed": 1020.714, + "total_cases_per_million": 16839.282, + "new_cases_per_million": 132.945, + "new_cases_smoothed_per_million": 140.528, + "total_deaths_per_million": 526.446, + "new_deaths_per_million": 3.257, + "new_deaths_smoothed_per_million": 3.084, + "new_tests": 884672.0, + "total_tests": 79193269.0, + "total_tests_per_thousand": 239.253, + "new_tests_per_thousand": 2.673, + "new_tests_smoothed": 806475.0, + "new_tests_smoothed_per_thousand": 2.436, + "tests_per_case": 17.338, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-22", + "total_cases": 5623727.0, + "new_cases": 49880.0, + "new_cases_smoothed": 44378.143, + "total_deaths": 175406.0, + "new_deaths": 1151.0, + "new_deaths_smoothed": 994.286, + "total_cases_per_million": 16989.976, + "new_cases_per_million": 150.694, + "new_cases_smoothed_per_million": 134.072, + "total_deaths_per_million": 529.923, + "new_deaths_per_million": 3.477, + "new_deaths_smoothed_per_million": 3.004, + "new_tests": 750268.0, + "total_tests": 79943537.0, + "total_tests_per_thousand": 241.519, + "new_tests_per_thousand": 2.267, + "new_tests_smoothed": 796580.0, + "new_tests_smoothed_per_thousand": 2.407, + "tests_per_case": 17.95, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-23", + "total_cases": 5668105.0, + "new_cases": 44378.0, + "new_cases_smoothed": 43848.571, + "total_deaths": 176362.0, + "new_deaths": 956.0, + "new_deaths_smoothed": 983.0, + "total_cases_per_million": 17124.047, + "new_cases_per_million": 134.071, + "new_cases_smoothed_per_million": 132.472, + "total_deaths_per_million": 532.811, + "new_deaths_per_million": 2.888, + "new_deaths_smoothed_per_million": 2.97, + "new_tests": 586731.0, + "total_tests": 80530268.0, + "total_tests_per_thousand": 243.292, + "new_tests_per_thousand": 1.773, + "new_tests_smoothed": 792644.0, + "new_tests_smoothed_per_thousand": 2.395, + "tests_per_case": 18.077, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-24", + "total_cases": 5702611.0, + "new_cases": 34506.0, + "new_cases_smoothed": 42763.143, + "total_deaths": 176806.0, + "new_deaths": 444.0, + "new_deaths_smoothed": 964.857, + "total_cases_per_million": 17228.294, + "new_cases_per_million": 104.247, + "new_cases_smoothed_per_million": 129.193, + "total_deaths_per_million": 534.153, + "new_deaths_per_million": 1.341, + "new_deaths_smoothed_per_million": 2.915, + "new_tests": 595608.0, + "total_tests": 81125876.0, + "total_tests_per_thousand": 245.091, + "new_tests_per_thousand": 1.799, + "new_tests_smoothed": 784928.0, + "new_tests_smoothed_per_thousand": 2.371, + "tests_per_case": 18.355, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-25", + "total_cases": 5740909.0, + "new_cases": 38298.0, + "new_cases_smoothed": 43226.286, + "total_deaths": 177279.0, + "new_deaths": 473.0, + "new_deaths_smoothed": 968.857, + "total_cases_per_million": 17343.997, + "new_cases_per_million": 115.703, + "new_cases_smoothed_per_million": 130.592, + "total_deaths_per_million": 535.582, + "new_deaths_per_million": 1.429, + "new_deaths_smoothed_per_million": 2.927, + "new_tests": 799321.0, + "total_tests": 81925197.0, + "total_tests_per_thousand": 247.506, + "new_tests_per_thousand": 2.415, + "new_tests_smoothed": 781799.0, + "new_tests_smoothed_per_thousand": 2.362, + "tests_per_case": 18.086, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-26", + "total_cases": 5779028.0, + "new_cases": 38119.0, + "new_cases_smoothed": 42373.143, + "total_deaths": 178486.0, + "new_deaths": 1207.0, + "new_deaths_smoothed": 952.143, + "total_cases_per_million": 17459.159, + "new_cases_per_million": 115.162, + "new_cases_smoothed_per_million": 128.015, + "total_deaths_per_million": 539.228, + "new_deaths_per_million": 3.646, + "new_deaths_smoothed_per_million": 2.877, + "new_tests": 820235.0, + "total_tests": 82745432.0, + "total_tests_per_thousand": 249.984, + "new_tests_per_thousand": 2.478, + "new_tests_smoothed": 766252.0, + "new_tests_smoothed_per_thousand": 2.315, + "tests_per_case": 18.083, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-27", + "total_cases": 5821876.0, + "new_cases": 42848.0, + "new_cases_smoothed": 41719.143, + "total_deaths": 179714.0, + "new_deaths": 1228.0, + "new_deaths_smoothed": 933.857, + "total_cases_per_million": 17588.609, + "new_cases_per_million": 129.449, + "new_cases_smoothed_per_million": 126.039, + "total_deaths_per_million": 542.938, + "new_deaths_per_million": 3.71, + "new_deaths_smoothed_per_million": 2.821, + "new_tests": 629114.0, + "total_tests": 83374546.0, + "total_tests_per_thousand": 251.885, + "new_tests_per_thousand": 1.901, + "new_tests_smoothed": 723707.0, + "new_tests_smoothed_per_thousand": 2.186, + "tests_per_case": 17.347, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-28", + "total_cases": 5867785.0, + "new_cases": 45909.0, + "new_cases_smoothed": 41991.143, + "total_deaths": 180824.0, + "new_deaths": 1110.0, + "new_deaths_smoothed": 938.429, + "total_cases_per_million": 17727.305, + "new_cases_per_million": 138.697, + "new_cases_smoothed_per_million": 126.86, + "total_deaths_per_million": 546.292, + "new_deaths_per_million": 3.353, + "new_deaths_smoothed_per_million": 2.835, + "new_tests": 523870.0, + "total_tests": 83898416.0, + "total_tests_per_thousand": 253.468, + "new_tests_per_thousand": 1.583, + "new_tests_smoothed": 672164.0, + "new_tests_smoothed_per_thousand": 2.031, + "tests_per_case": 16.007, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 67.13 + }, + { + "date": "2020-08-29", + "total_cases": 5917439.0, + "new_cases": 49654.0, + "new_cases_smoothed": 41958.857, + "total_deaths": 181773.0, + "new_deaths": 949.0, + "new_deaths_smoothed": 909.571, + "total_cases_per_million": 17877.316, + "new_cases_per_million": 150.011, + "new_cases_smoothed_per_million": 126.763, + "total_deaths_per_million": 549.159, + "new_deaths_per_million": 2.867, + "new_deaths_smoothed_per_million": 2.748 + }, + { + "date": "2020-08-30", + "total_cases": 5961582.0, + "new_cases": 44143.0, + "new_cases_smoothed": 41925.286, + "total_deaths": 182779.0, + "new_deaths": 1006.0, + "new_deaths_smoothed": 916.714, + "total_cases_per_million": 18010.678, + "new_cases_per_million": 133.361, + "new_cases_smoothed_per_million": 126.661, + "total_deaths_per_million": 552.198, + "new_deaths_per_million": 3.039, + "new_deaths_smoothed_per_million": 2.77 + }, + { + "date": "2020-08-31", + "total_cases": 5997163.0, + "new_cases": 35581.0, + "new_cases_smoothed": 42078.857, + "total_deaths": 183069.0, + "new_deaths": 290.0, + "new_deaths_smoothed": 894.714, + "total_cases_per_million": 18118.172, + "new_cases_per_million": 107.495, + "new_cases_smoothed_per_million": 127.125, + "total_deaths_per_million": 553.074, + "new_deaths_per_million": 0.876, + "new_deaths_smoothed_per_million": 2.703 + }, + { + "date": "2020-09-01", + "total_cases": 6031013.0, + "new_cases": 33850.0, + "new_cases_smoothed": 41443.429, + "total_deaths": 183598.0, + "new_deaths": 529.0, + "new_deaths_smoothed": 902.714, + "total_cases_per_million": 18220.437, + "new_cases_per_million": 102.265, + "new_cases_smoothed_per_million": 125.206, + "total_deaths_per_million": 554.672, + "new_deaths_per_million": 1.598, + "new_deaths_smoothed_per_million": 2.727 + }, + { + "date": "2020-09-02", + "total_cases": 6075652.0, + "new_cases": 44639.0, + "new_cases_smoothed": 42374.857, + "total_deaths": 184689.0, + "new_deaths": 1091.0, + "new_deaths_smoothed": 886.143, + "total_cases_per_million": 18355.297, + "new_cases_per_million": 134.86, + "new_cases_smoothed_per_million": 128.02, + "total_deaths_per_million": 557.968, + "new_deaths_per_million": 3.296, + "new_deaths_smoothed_per_million": 2.677 + }, + { + "date": "2020-09-03", + "total_cases": 6114406.0, + "new_cases": 38754.0, + "new_cases_smoothed": 41790.0, + "total_deaths": 185744.0, + "new_deaths": 1055.0, + "new_deaths_smoothed": 861.429, + "total_cases_per_million": 18472.378, + "new_cases_per_million": 117.081, + "new_cases_smoothed_per_million": 126.253, + "total_deaths_per_million": 561.156, + "new_deaths_per_million": 3.187, + "new_deaths_smoothed_per_million": 2.602 + }, + { + "date": "2020-09-04", + "total_cases": 6150655.0, + "new_cases": 36249.0, + "new_cases_smoothed": 40410.0, + "total_deaths": 186797.0, + "new_deaths": 1053.0, + "new_deaths_smoothed": 853.286, + "total_cases_per_million": 18581.891, + "new_cases_per_million": 109.513, + "new_cases_smoothed_per_million": 122.084, + "total_deaths_per_million": 564.337, + "new_deaths_per_million": 3.181, + "new_deaths_smoothed_per_million": 2.578 + }, + { + "date": "2020-09-05", + "total_cases": 6201726.0, + "new_cases": 51071.0, + "new_cases_smoothed": 40612.429, + "total_deaths": 187765.0, + "new_deaths": 968.0, + "new_deaths_smoothed": 856.0, + "total_cases_per_million": 18736.182, + "new_cases_per_million": 154.292, + "new_cases_smoothed_per_million": 122.695, + "total_deaths_per_million": 567.261, + "new_deaths_per_million": 2.924, + "new_deaths_smoothed_per_million": 2.586 + } + ] + }, + "VIR": { + "continent": "North America", + "location": "United States Virgin Islands", + "population": 104423.0, + "population_density": 306.48, + "median_age": 42.2, + "aged_65_older": 18.601, + "aged_70_older": 10.799, + "cardiovasc_death_rate": 273.67, + "diabetes_prevalence": 12.26, + "life_expectancy": 80.58, + "data": [ + { + "date": "2020-03-24", + "total_cases": 17.0, + "new_cases": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 162.799, + "new_cases_per_million": 162.799, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 17.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 162.799, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 17.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 162.799, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 17.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 162.799, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 19.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 181.952, + "new_cases_per_million": 19.153, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 22.0, + "new_cases": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 210.682, + "new_cases_per_million": 28.729, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 30.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.293, + "new_cases_per_million": 76.611, + "new_cases_smoothed_per_million": 41.042, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "new_cases_smoothed": 1.857, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 17.785, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 30.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 287.293, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.785, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 33.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 316.022, + "new_cases_per_million": 28.729, + "new_cases_smoothed_per_million": 21.889, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 40.0, + "new_cases": 7.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 383.057, + "new_cases_per_million": 67.035, + "new_cases_smoothed_per_million": 28.729, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 383.057, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 24.625, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 42.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 402.21, + "new_cases_per_million": 19.153, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-07", + "total_cases": 42.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 402.21, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-08", + "total_cases": 45.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 430.94, + "new_cases_per_million": 28.729, + "new_cases_smoothed_per_million": 20.521, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-09", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 430.94, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 20.521, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-10", + "total_cases": 50.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 478.822, + "new_cases_per_million": 47.882, + "new_cases_smoothed_per_million": 23.257, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-11", + "total_cases": 50.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 478.822, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.681, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-12", + "total_cases": 51.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 488.398, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 15.049, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-13", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.313, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.313, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.208, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.208, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 9.576, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 51.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 488.398, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 19.153, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-19", + "total_cases": 53.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 507.551, + "new_cases_per_million": 19.153, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-20", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 507.551, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-21", + "total_cases": 54.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 517.127, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-22", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 517.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-23", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 517.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-24", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 517.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-04-25", + "total_cases": 54.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 517.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-26", + "total_cases": 55.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 526.704, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 55.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 526.704, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 28.729, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 59.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 565.01, + "new_cases_per_million": 38.306, + "new_cases_smoothed_per_million": 6.84, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-29", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 565.01, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.84, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-04-30", + "total_cases": 66.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 632.045, + "new_cases_per_million": 67.035, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-01", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-02", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-03", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.049, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-04", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 15.049, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-05", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 66.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 632.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 68.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 651.198, + "new_cases_per_million": 19.153, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 69.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 38.306, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 47.882, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-13", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 47.882, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-14", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-05-15", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-05-16", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-05-17", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-05-18", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-05-19", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-20", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-05-21", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 69.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 660.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 70.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 670.35, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 670.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 70.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 670.35, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 71.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 71.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 679.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 72.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 689.503, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 689.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 689.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 72.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 689.503, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 73.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 699.08, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 699.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 699.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 699.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 73.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 699.08, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.368, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 74.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 708.656, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 74.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 708.656, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.736, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 76.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 727.809, + "new_cases_per_million": 19.153, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 727.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 76.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 727.809, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 80.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 766.115, + "new_cases_per_million": 38.306, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 81.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.691, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 10.944, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.691, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.691, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 9.576, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 81.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 775.691, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 6.84, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 84.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 804.42, + "new_cases_per_million": 28.729, + "new_cases_smoothed_per_million": 10.944, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 804.42, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.944, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 92.0, + "new_cases": 8.0, + "new_cases_smoothed": 1.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 881.032, + "new_cases_per_million": 76.611, + "new_cases_smoothed_per_million": 16.417, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 98.0, + "new_cases": 6.0, + "new_cases_smoothed": 2.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 938.491, + "new_cases_per_million": 57.459, + "new_cases_smoothed_per_million": 23.257, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 111.0, + "new_cases": 13.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1062.984, + "new_cases_per_million": 124.494, + "new_cases_smoothed_per_million": 41.042, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 111.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.286, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1062.984, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 41.042, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 112.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1072.561, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 42.41, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 116.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1110.866, + "new_cases_per_million": 38.306, + "new_cases_smoothed_per_million": 43.778, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 122.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1168.325, + "new_cases_per_million": 57.459, + "new_cases_smoothed_per_million": 51.986, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 144.0, + "new_cases": 22.0, + "new_cases_smoothed": 7.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1379.007, + "new_cases_per_million": 210.682, + "new_cases_smoothed_per_million": 71.139, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 153.0, + "new_cases": 9.0, + "new_cases_smoothed": 7.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1465.194, + "new_cases_per_million": 86.188, + "new_cases_smoothed_per_million": 75.243, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 167.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1599.265, + "new_cases_per_million": 134.07, + "new_cases_smoothed_per_million": 76.611, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 181.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1733.335, + "new_cases_per_million": 134.07, + "new_cases_smoothed_per_million": 95.764, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 181.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1733.335, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 94.396, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 217.0, + "new_cases": 36.0, + "new_cases_smoothed": 14.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2078.086, + "new_cases_per_million": 344.752, + "new_cases_smoothed_per_million": 138.174, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 217.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2078.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 129.966, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 249.0, + "new_cases": 32.0, + "new_cases_smoothed": 15.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2384.532, + "new_cases_per_million": 306.446, + "new_cases_smoothed_per_million": 143.647, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 263.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2518.602, + "new_cases_per_million": 134.07, + "new_cases_smoothed_per_million": 150.487, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 283.0, + "new_cases": 20.0, + "new_cases_smoothed": 16.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2710.131, + "new_cases_per_million": 191.529, + "new_cases_smoothed_per_million": 158.695, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 297.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2844.201, + "new_cases_per_million": 134.07, + "new_cases_smoothed_per_million": 158.695, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 297.0, + "new_cases": 0.0, + "new_cases_smoothed": 16.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2844.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 158.695, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 308.0, + "new_cases": 11.0, + "new_cases_smoothed": 13.0, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2949.542, + "new_cases_per_million": 105.341, + "new_cases_smoothed_per_million": 124.494, + "total_deaths_per_million": 57.459, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 320.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.714, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3064.459, + "new_cases_per_million": 114.917, + "new_cases_smoothed_per_million": 140.91, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-23", + "total_cases": 336.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3217.682, + "new_cases_per_million": 153.223, + "new_cases_smoothed_per_million": 119.021, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-24", + "total_cases": 336.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3217.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 99.869, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-25", + "total_cases": 352.0, + "new_cases": 16.0, + "new_cases_smoothed": 9.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3370.905, + "new_cases_per_million": 153.223, + "new_cases_smoothed_per_million": 94.396, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-26", + "total_cases": 352.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3370.905, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 75.243, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-27", + "total_cases": 361.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3457.093, + "new_cases_per_million": 86.188, + "new_cases_smoothed_per_million": 87.556, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-28", + "total_cases": 364.0, + "new_cases": 3.0, + "new_cases_smoothed": 8.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3485.822, + "new_cases_per_million": 28.729, + "new_cases_smoothed_per_million": 76.611, + "total_deaths_per_million": 67.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-29", + "total_cases": 385.0, + "new_cases": 21.0, + "new_cases_smoothed": 9.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3686.927, + "new_cases_per_million": 201.105, + "new_cases_smoothed_per_million": 88.924, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-30", + "total_cases": 385.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3686.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.035, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-07-31", + "total_cases": 385.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3686.927, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 67.035, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-01", + "total_cases": 406.0, + "new_cases": 21.0, + "new_cases_smoothed": 7.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3888.032, + "new_cases_per_million": 201.105, + "new_cases_smoothed_per_million": 73.875, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-02", + "total_cases": 421.0, + "new_cases": 15.0, + "new_cases_smoothed": 9.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4031.679, + "new_cases_per_million": 143.647, + "new_cases_smoothed_per_million": 94.396, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-03", + "total_cases": 421.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.571, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4031.679, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 82.084, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-04", + "total_cases": 439.0, + "new_cases": 18.0, + "new_cases_smoothed": 10.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4204.055, + "new_cases_per_million": 172.376, + "new_cases_smoothed_per_million": 102.605, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-05", + "total_cases": 463.0, + "new_cases": 24.0, + "new_cases_smoothed": 11.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4433.889, + "new_cases_per_million": 229.834, + "new_cases_smoothed_per_million": 106.709, + "total_deaths_per_million": 76.611, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 501.0, + "new_cases": 38.0, + "new_cases_smoothed": 16.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4797.794, + "new_cases_per_million": 363.905, + "new_cases_smoothed_per_million": 158.695, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-07", + "total_cases": 522.0, + "new_cases": 21.0, + "new_cases_smoothed": 19.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4998.899, + "new_cases_per_million": 201.105, + "new_cases_smoothed_per_million": 187.425, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-08", + "total_cases": 528.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5056.357, + "new_cases_per_million": 57.459, + "new_cases_smoothed_per_million": 166.904, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-09", + "total_cases": 547.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5238.31, + "new_cases_per_million": 181.952, + "new_cases_smoothed_per_million": 172.376, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-10", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5238.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 172.376, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-11", + "total_cases": 547.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 5238.31, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 147.751, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-12", + "total_cases": 639.0, + "new_cases": 92.0, + "new_cases_smoothed": 25.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6119.342, + "new_cases_per_million": 881.032, + "new_cases_smoothed_per_million": 240.779, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-13", + "total_cases": 639.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6119.342, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 188.793, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 704.0, + "new_cases": 65.0, + "new_cases_smoothed": 26.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6741.81, + "new_cases_per_million": 622.468, + "new_cases_smoothed_per_million": 248.987, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 734.0, + "new_cases": 30.0, + "new_cases_smoothed": 29.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7029.103, + "new_cases_per_million": 287.293, + "new_cases_smoothed_per_million": 281.821, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 734.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7029.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 255.828, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 741.0, + "new_cases": 7.0, + "new_cases_smoothed": 27.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7096.138, + "new_cases_per_million": 67.035, + "new_cases_smoothed_per_million": 265.404, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 796.0, + "new_cases": 55.0, + "new_cases_smoothed": 35.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7622.842, + "new_cases_per_million": 526.704, + "new_cases_smoothed_per_million": 340.647, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 796.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7622.842, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 214.786, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 828.0, + "new_cases": 32.0, + "new_cases_smoothed": 27.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7929.288, + "new_cases_per_million": 306.446, + "new_cases_smoothed_per_million": 258.564, + "total_deaths_per_million": 86.188, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 869.0, + "new_cases": 41.0, + "new_cases_smoothed": 23.571, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8321.921, + "new_cases_per_million": 392.634, + "new_cases_smoothed_per_million": 225.73, + "total_deaths_per_million": 95.764, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-22", + "total_cases": 932.0, + "new_cases": 63.0, + "new_cases_smoothed": 28.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8925.237, + "new_cases_per_million": 603.315, + "new_cases_smoothed_per_million": 270.876, + "total_deaths_per_million": 95.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-23", + "total_cases": 932.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8925.237, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 270.876, + "total_deaths_per_million": 95.764, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-08-24", + "total_cases": 984.0, + "new_cases": 52.0, + "new_cases_smoothed": 34.714, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 9423.211, + "new_cases_per_million": 497.975, + "new_cases_smoothed_per_million": 332.439, + "total_deaths_per_million": 105.341, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-08-25", + "total_cases": 998.0, + "new_cases": 14.0, + "new_cases_smoothed": 28.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 9557.281, + "new_cases_per_million": 134.07, + "new_cases_smoothed_per_million": 276.349, + "total_deaths_per_million": 114.917, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 4.104 + }, + { + "date": "2020-08-26", + "total_cases": 1030.0, + "new_cases": 32.0, + "new_cases_smoothed": 33.429, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9863.727, + "new_cases_per_million": 306.446, + "new_cases_smoothed_per_million": 320.127, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 19.153, + "new_deaths_smoothed_per_million": 6.84 + }, + { + "date": "2020-08-27", + "total_cases": 1030.0, + "new_cases": 0.0, + "new_cases_smoothed": 28.857, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 9863.727, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 276.349, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 6.84 + }, + { + "date": "2020-08-28", + "total_cases": 1075.0, + "new_cases": 45.0, + "new_cases_smoothed": 29.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10294.667, + "new_cases_per_million": 430.94, + "new_cases_smoothed_per_million": 281.821, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.472 + }, + { + "date": "2020-08-29", + "total_cases": 1075.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10294.667, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 195.633, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.472 + }, + { + "date": "2020-08-30", + "total_cases": 1129.0, + "new_cases": 54.0, + "new_cases_smoothed": 28.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10811.794, + "new_cases_per_million": 517.127, + "new_cases_smoothed_per_million": 269.508, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 5.472 + }, + { + "date": "2020-08-31", + "total_cases": 1134.0, + "new_cases": 5.0, + "new_cases_smoothed": 21.429, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10859.677, + "new_cases_per_million": 47.882, + "new_cases_smoothed_per_million": 205.209, + "total_deaths_per_million": 134.07, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 4.104 + }, + { + "date": "2020-09-01", + "total_cases": 1139.0, + "new_cases": 5.0, + "new_cases_smoothed": 20.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10907.559, + "new_cases_per_million": 47.882, + "new_cases_smoothed_per_million": 192.897, + "total_deaths_per_million": 143.647, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 4.104 + }, + { + "date": "2020-09-02", + "total_cases": 1143.0, + "new_cases": 4.0, + "new_cases_smoothed": 16.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10945.864, + "new_cases_per_million": 38.306, + "new_cases_smoothed_per_million": 154.591, + "total_deaths_per_million": 143.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-09-03", + "total_cases": 1144.0, + "new_cases": 1.0, + "new_cases_smoothed": 16.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10955.441, + "new_cases_per_million": 9.576, + "new_cases_smoothed_per_million": 155.959, + "total_deaths_per_million": 143.647, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 1.368 + }, + { + "date": "2020-09-04", + "total_cases": 1150.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.714, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11012.899, + "new_cases_per_million": 57.459, + "new_cases_smoothed_per_million": 102.605, + "total_deaths_per_million": 153.223, + "new_deaths_per_million": 9.576, + "new_deaths_smoothed_per_million": 2.736 + }, + { + "date": "2020-09-05", + "total_cases": 1150.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 11012.899, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 102.605, + "total_deaths_per_million": 153.223, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 2.736 + } + ] + }, + "URY": { + "continent": "South America", + "location": "Uruguay", + "population": 3473727.0, + "population_density": 19.751, + "median_age": 35.6, + "aged_65_older": 14.655, + "aged_70_older": 10.361, + "gdp_per_capita": 20551.409, + "extreme_poverty": 0.1, + "cardiovasc_death_rate": 160.708, + "diabetes_prevalence": 6.93, + "female_smokers": 14.0, + "male_smokers": 19.9, + "hospital_beds_per_thousand": 2.8, + "life_expectancy": 77.91, + "data": [ + { + "date": "2020-03-15", + "total_cases": 6.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.727, + "new_cases_per_million": 1.727, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-16", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 2.303, + "new_cases_per_million": 0.576, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-17", + "total_cases": 29.0, + "new_cases": 21.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 8.348, + "new_cases_per_million": 6.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-18", + "total_cases": 50.0, + "new_cases": 21.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 14.394, + "new_cases_per_million": 6.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-19", + "total_cases": 79.0, + "new_cases": 29.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 22.742, + "new_cases_per_million": 8.348, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-20", + "total_cases": 94.0, + "new_cases": 15.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 27.06, + "new_cases_per_million": 4.318, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-21", + "total_cases": 110.0, + "new_cases": 16.0, + "new_cases_smoothed": 15.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.666, + "new_cases_per_million": 4.606, + "new_cases_smoothed_per_million": 4.524, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-22", + "total_cases": 135.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.863, + "new_cases_per_million": 7.197, + "new_cases_smoothed_per_million": 5.305, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-23", + "total_cases": 158.0, + "new_cases": 23.0, + "new_cases_smoothed": 21.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.484, + "new_cases_per_million": 6.621, + "new_cases_smoothed_per_million": 6.169, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-03-24", + "total_cases": 162.0, + "new_cases": 4.0, + "new_cases_smoothed": 19.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 46.636, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 5.47, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-25", + "total_cases": 189.0, + "new_cases": 27.0, + "new_cases_smoothed": 19.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 54.408, + "new_cases_per_million": 7.773, + "new_cases_smoothed_per_million": 5.716, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-26", + "total_cases": 217.0, + "new_cases": 28.0, + "new_cases_smoothed": 19.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.469, + "new_cases_per_million": 8.061, + "new_cases_smoothed_per_million": 5.675, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 57.41 + }, + { + "date": "2020-03-27", + "total_cases": 238.0, + "new_cases": 21.0, + "new_cases_smoothed": 20.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.514, + "new_cases_per_million": 6.045, + "new_cases_smoothed_per_million": 5.922, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 62.96 + }, + { + "date": "2020-03-28", + "total_cases": 238.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 68.514, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 5.264, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2926.0, + "total_tests_per_thousand": 0.842, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-03-29", + "total_cases": 259.0, + "new_cases": 21.0, + "new_cases_smoothed": 17.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.56, + "new_cases_per_million": 6.045, + "new_cases_smoothed_per_million": 5.1, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 200.0, + "total_tests": 3126.0, + "total_tests_per_thousand": 0.9, + "new_tests_per_thousand": 0.058, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-03-30", + "total_cases": 295.0, + "new_cases": 36.0, + "new_cases_smoothed": 19.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 84.923, + "new_cases_per_million": 10.364, + "new_cases_smoothed_per_million": 5.634, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 299.0, + "total_tests": 3425.0, + "total_tests_per_thousand": 0.986, + "new_tests_per_thousand": 0.086, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-03-31", + "total_cases": 324.0, + "new_cases": 29.0, + "new_cases_smoothed": 23.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 93.272, + "new_cases_per_million": 8.348, + "new_cases_smoothed_per_million": 6.662, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 394.0, + "total_tests": 3819.0, + "total_tests_per_thousand": 1.099, + "new_tests_per_thousand": 0.113, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-01", + "total_cases": 330.0, + "new_cases": 6.0, + "new_cases_smoothed": 20.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.999, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 5.799, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 289.0, + "total_tests": 4108.0, + "total_tests_per_thousand": 1.183, + "new_tests_per_thousand": 0.083, + "tests_units": "tests performed", + "stringency_index": 68.52 + }, + { + "date": "2020-04-02", + "total_cases": 341.0, + "new_cases": 11.0, + "new_cases_smoothed": 17.714, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 98.165, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 5.1, + "total_deaths_per_million": 0.576, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 356.0, + "total_tests": 4464.0, + "total_tests_per_thousand": 1.285, + "new_tests_per_thousand": 0.102, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-03", + "total_cases": 359.0, + "new_cases": 18.0, + "new_cases_smoothed": 17.286, + "total_deaths": 4.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 103.347, + "new_cases_per_million": 5.182, + "new_cases_smoothed_per_million": 4.976, + "total_deaths_per_million": 1.152, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 322.0, + "total_tests": 4786.0, + "total_tests_per_thousand": 1.378, + "new_tests_per_thousand": 0.093, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-04", + "total_cases": 371.0, + "new_cases": 12.0, + "new_cases_smoothed": 19.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 106.802, + "new_cases_per_million": 3.455, + "new_cases_smoothed_per_million": 5.47, + "total_deaths_per_million": 1.152, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 277.0, + "total_tests": 5063.0, + "total_tests_per_thousand": 1.458, + "new_tests_per_thousand": 0.08, + "new_tests_smoothed": 305.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 16.053, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-05", + "total_cases": 390.0, + "new_cases": 19.0, + "new_cases_smoothed": 18.714, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 112.271, + "new_cases_per_million": 5.47, + "new_cases_smoothed_per_million": 5.387, + "total_deaths_per_million": 1.439, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 145.0, + "total_tests": 5208.0, + "total_tests_per_thousand": 1.499, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 297.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 15.87, + "positive_rate": 0.063, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-06", + "total_cases": 407.0, + "new_cases": 17.0, + "new_cases_smoothed": 16.0, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 117.165, + "new_cases_per_million": 4.894, + "new_cases_smoothed_per_million": 4.606, + "total_deaths_per_million": 1.727, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 177.0, + "total_tests": 5385.0, + "total_tests_per_thousand": 1.55, + "new_tests_per_thousand": 0.051, + "new_tests_smoothed": 280.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 17.5, + "positive_rate": 0.057, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-07", + "total_cases": 411.0, + "new_cases": 4.0, + "new_cases_smoothed": 12.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 118.317, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 3.578, + "total_deaths_per_million": 1.727, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 342.0, + "total_tests": 5727.0, + "total_tests_per_thousand": 1.649, + "new_tests_per_thousand": 0.098, + "new_tests_smoothed": 273.0, + "new_tests_smoothed_per_thousand": 0.079, + "tests_per_case": 21.965999999999998, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-08", + "total_cases": 417.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.429, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 120.044, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 3.578, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.247, + "new_tests": 448.0, + "total_tests": 6175.0, + "total_tests_per_thousand": 1.778, + "new_tests_per_thousand": 0.129, + "new_tests_smoothed": 295.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 23.736, + "positive_rate": 0.042, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-09", + "total_cases": 426.0, + "new_cases": 9.0, + "new_cases_smoothed": 12.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 122.635, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 681.0, + "total_tests": 6856.0, + "total_tests_per_thousand": 1.974, + "new_tests_per_thousand": 0.196, + "new_tests_smoothed": 342.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 28.165, + "positive_rate": 0.036000000000000004, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-10", + "total_cases": 433.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 124.65, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 3.043, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 640.0, + "total_tests": 7496.0, + "total_tests_per_thousand": 2.158, + "new_tests_per_thousand": 0.184, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.111, + "tests_per_case": 36.608000000000004, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-11", + "total_cases": 446.0, + "new_cases": 13.0, + "new_cases_smoothed": 10.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 128.392, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 618.0, + "total_tests": 8114.0, + "total_tests_per_thousand": 2.336, + "new_tests_per_thousand": 0.178, + "new_tests_smoothed": 436.0, + "new_tests_smoothed_per_thousand": 0.126, + "tests_per_case": 40.693000000000005, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-12", + "total_cases": 453.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 130.407, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 2.015, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 660.0, + "total_tests": 8774.0, + "total_tests_per_thousand": 2.526, + "new_tests_per_thousand": 0.19, + "new_tests_smoothed": 509.0, + "new_tests_smoothed_per_thousand": 0.147, + "tests_per_case": 56.556000000000004, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 72.22 + }, + { + "date": "2020-04-13", + "total_cases": 465.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.286, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 133.862, + "new_cases_per_million": 3.455, + "new_cases_smoothed_per_million": 2.385, + "total_deaths_per_million": 2.303, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 462.0, + "total_tests": 9236.0, + "total_tests_per_thousand": 2.659, + "new_tests_per_thousand": 0.133, + "new_tests_smoothed": 550.0, + "new_tests_smoothed_per_thousand": 0.158, + "tests_per_case": 66.37899999999999, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-14", + "total_cases": 472.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 135.877, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 2.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 693.0, + "total_tests": 9929.0, + "total_tests_per_thousand": 2.858, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 600.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 68.852, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-15", + "total_cases": 483.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.429, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 139.044, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 2.714, + "total_deaths_per_million": 2.303, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 519.0, + "total_tests": 10448.0, + "total_tests_per_thousand": 3.008, + "new_tests_per_thousand": 0.149, + "new_tests_smoothed": 610.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 64.697, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-16", + "total_cases": 493.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 141.922, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 2.755, + "total_deaths_per_million": 2.591, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 791.0, + "total_tests": 11239.0, + "total_tests_per_thousand": 3.235, + "new_tests_per_thousand": 0.228, + "new_tests_smoothed": 626.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 65.403, + "positive_rate": 0.015, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-17", + "total_cases": 502.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 144.513, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 2.838, + "total_deaths_per_million": 2.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 510.0, + "total_tests": 11749.0, + "total_tests_per_thousand": 3.382, + "new_tests_per_thousand": 0.147, + "new_tests_smoothed": 608.0, + "new_tests_smoothed_per_thousand": 0.175, + "tests_per_case": 61.681000000000004, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-18", + "total_cases": 508.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 146.241, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 2.55, + "total_deaths_per_million": 2.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 729.0, + "total_tests": 12478.0, + "total_tests_per_thousand": 3.592, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 623.0, + "new_tests_smoothed_per_thousand": 0.179, + "tests_per_case": 70.339, + "positive_rate": 0.013999999999999999, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-19", + "total_cases": 517.0, + "new_cases": 9.0, + "new_cases_smoothed": 9.143, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 148.831, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 2.632, + "total_deaths_per_million": 2.591, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 348.0, + "total_tests": 12826.0, + "total_tests_per_thousand": 3.692, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 579.0, + "new_tests_smoothed_per_thousand": 0.167, + "tests_per_case": 63.328, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-20", + "total_cases": 528.0, + "new_cases": 11.0, + "new_cases_smoothed": 9.0, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 151.998, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 2.879, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 554.0, + "new_tests_smoothed_per_thousand": 0.159, + "tests_per_case": 61.556000000000004, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-21", + "total_cases": 535.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 154.013, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 2.879, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 13396.0, + "total_tests_per_thousand": 3.856, + "new_tests_smoothed": 495.0, + "new_tests_smoothed_per_thousand": 0.142, + "tests_per_case": 55.0, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 62.96 + }, + { + "date": "2020-04-22", + "total_cases": 543.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.571, + "total_deaths": 12.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 156.316, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.468, + "total_deaths_per_million": 3.455, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 527.0, + "total_tests": 13923.0, + "total_tests_per_thousand": 4.008, + "new_tests_per_thousand": 0.152, + "new_tests_smoothed": 496.0, + "new_tests_smoothed_per_thousand": 0.143, + "tests_per_case": 57.867, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-23", + "total_cases": 549.0, + "new_cases": 6.0, + "new_cases_smoothed": 8.0, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 158.044, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 2.303, + "total_deaths_per_million": 3.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 609.0, + "total_tests": 14532.0, + "total_tests_per_thousand": 4.183, + "new_tests_per_thousand": 0.175, + "new_tests_smoothed": 470.0, + "new_tests_smoothed_per_thousand": 0.135, + "tests_per_case": 58.75, + "positive_rate": 0.017, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-24", + "total_cases": 557.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 160.347, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 3.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 610.0, + "total_tests": 15142.0, + "total_tests_per_thousand": 4.359, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 485.0, + "new_tests_smoothed_per_thousand": 0.14, + "tests_per_case": 61.727, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-25", + "total_cases": 563.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.857, + "total_deaths": 12.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 162.074, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 3.455, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 692.0, + "total_tests": 15834.0, + "total_tests_per_thousand": 4.558, + "new_tests_per_thousand": 0.199, + "new_tests_smoothed": 479.0, + "new_tests_smoothed_per_thousand": 0.138, + "tests_per_case": 60.964, + "positive_rate": 0.016, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-26", + "total_cases": 596.0, + "new_cases": 33.0, + "new_cases_smoothed": 11.286, + "total_deaths": 14.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 171.574, + "new_cases_per_million": 9.5, + "new_cases_smoothed_per_million": 3.249, + "total_deaths_per_million": 4.03, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 662.0, + "total_tests": 16496.0, + "total_tests_per_thousand": 4.749, + "new_tests_per_thousand": 0.191, + "new_tests_smoothed": 524.0, + "new_tests_smoothed_per_thousand": 0.151, + "tests_per_case": 46.43, + "positive_rate": 0.022000000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-27", + "total_cases": 606.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 174.452, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 3.208, + "total_deaths_per_million": 4.318, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 567.0, + "total_tests": 17063.0, + "total_tests_per_thousand": 4.912, + "new_tests_per_thousand": 0.163, + "new_tests_smoothed": 565.0, + "new_tests_smoothed_per_thousand": 0.163, + "tests_per_case": 50.705, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-28", + "total_cases": 620.0, + "new_cases": 14.0, + "new_cases_smoothed": 12.143, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 178.483, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 4.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 442.0, + "total_tests": 17505.0, + "total_tests_per_thousand": 5.039, + "new_tests_per_thousand": 0.127, + "new_tests_smoothed": 587.0, + "new_tests_smoothed_per_thousand": 0.169, + "tests_per_case": 48.341, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-29", + "total_cases": 625.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.714, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 179.922, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.372, + "total_deaths_per_million": 4.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 635.0, + "total_tests": 18140.0, + "total_tests_per_thousand": 5.222, + "new_tests_per_thousand": 0.183, + "new_tests_smoothed": 602.0, + "new_tests_smoothed_per_thousand": 0.173, + "tests_per_case": 51.39, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-04-30", + "total_cases": 630.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.571, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 181.361, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.331, + "total_deaths_per_million": 4.318, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 876.0, + "total_tests": 19016.0, + "total_tests_per_thousand": 5.474, + "new_tests_per_thousand": 0.252, + "new_tests_smoothed": 641.0, + "new_tests_smoothed_per_thousand": 0.185, + "tests_per_case": 55.395, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-01", + "total_cases": 643.0, + "new_cases": 13.0, + "new_cases_smoothed": 12.286, + "total_deaths": 17.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 185.104, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 3.537, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 731.0, + "total_tests": 19747.0, + "total_tests_per_thousand": 5.685, + "new_tests_per_thousand": 0.21, + "new_tests_smoothed": 658.0, + "new_tests_smoothed_per_thousand": 0.189, + "tests_per_case": 53.558, + "positive_rate": 0.019, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-02", + "total_cases": 648.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 186.543, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "new_tests": 807.0, + "total_tests": 20554.0, + "total_tests_per_thousand": 5.917, + "new_tests_per_thousand": 0.232, + "new_tests_smoothed": 674.0, + "new_tests_smoothed_per_thousand": 0.194, + "tests_per_case": 55.506, + "positive_rate": 0.018000000000000002, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-03", + "total_cases": 652.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 187.695, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 2.303, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 610.0, + "total_tests": 21164.0, + "total_tests_per_thousand": 6.093, + "new_tests_per_thousand": 0.176, + "new_tests_smoothed": 667.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 83.375, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-04", + "total_cases": 655.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.0, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 188.558, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 2.015, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 775.0, + "total_tests": 21939.0, + "total_tests_per_thousand": 6.316, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 697.0, + "new_tests_smoothed_per_thousand": 0.201, + "tests_per_case": 99.571, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-05", + "total_cases": 657.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.286, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 189.134, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.522, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 866.0, + "total_tests": 22805.0, + "total_tests_per_thousand": 6.565, + "new_tests_per_thousand": 0.249, + "new_tests_smoothed": 757.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 143.216, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-06", + "total_cases": 670.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 192.876, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1006.0, + "total_tests": 23811.0, + "total_tests_per_thousand": 6.855, + "new_tests_per_thousand": 0.29, + "new_tests_smoothed": 810.0, + "new_tests_smoothed_per_thousand": 0.233, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-07", + "total_cases": 673.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.143, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 193.74, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.768, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 845.0, + "total_tests": 24656.0, + "total_tests_per_thousand": 7.098, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 806.0, + "new_tests_smoothed_per_thousand": 0.232, + "tests_per_case": 131.209, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-08", + "total_cases": 684.0, + "new_cases": 11.0, + "new_cases_smoothed": 5.857, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 196.907, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 4.894, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1042.0, + "total_tests": 25698.0, + "total_tests_per_thousand": 7.398, + "new_tests_per_thousand": 0.3, + "new_tests_smoothed": 850.0, + "new_tests_smoothed_per_thousand": 0.245, + "tests_per_case": 145.122, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-09", + "total_cases": 694.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.571, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 199.785, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 5.182, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1140.0, + "total_tests": 26838.0, + "total_tests_per_thousand": 7.726, + "new_tests_per_thousand": 0.328, + "new_tests_smoothed": 898.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 136.65200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-10", + "total_cases": 702.0, + "new_cases": 8.0, + "new_cases_smoothed": 7.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 202.088, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 5.182, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 623.0, + "total_tests": 27461.0, + "total_tests_per_thousand": 7.905, + "new_tests_per_thousand": 0.179, + "new_tests_smoothed": 900.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 126.0, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-11", + "total_cases": 707.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.429, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 203.528, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.139, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1236.0, + "total_tests": 28697.0, + "total_tests_per_thousand": 8.261, + "new_tests_per_thousand": 0.356, + "new_tests_smoothed": 965.0, + "new_tests_smoothed_per_thousand": 0.278, + "tests_per_case": 129.904, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-12", + "total_cases": 711.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 204.679, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 2.221, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 899.0, + "new_tests_smoothed_per_thousand": 0.259, + "tests_per_case": 116.537, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-13", + "total_cases": 717.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.407, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 1.933, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 29500.0, + "total_tests_per_thousand": 8.492, + "new_tests_smoothed": 813.0, + "new_tests_smoothed_per_thousand": 0.234, + "tests_per_case": 121.085, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-14", + "total_cases": 719.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 206.982, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.892, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 709.0, + "total_tests": 30209.0, + "total_tests_per_thousand": 8.696, + "new_tests_per_thousand": 0.204, + "new_tests_smoothed": 793.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 120.67399999999999, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-15", + "total_cases": 724.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 208.422, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1000.0, + "total_tests": 31209.0, + "total_tests_per_thousand": 8.984, + "new_tests_per_thousand": 0.288, + "new_tests_smoothed": 787.0, + "new_tests_smoothed_per_thousand": 0.227, + "tests_per_case": 137.725, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-16", + "total_cases": 732.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 210.725, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.563, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1016.0, + "total_tests": 32225.0, + "total_tests_per_thousand": 9.277, + "new_tests_per_thousand": 0.292, + "new_tests_smoothed": 770.0, + "new_tests_smoothed_per_thousand": 0.222, + "tests_per_case": 141.842, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-17", + "total_cases": 733.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 211.013, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 5.47, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 811.0, + "total_tests": 33036.0, + "total_tests_per_thousand": 9.51, + "new_tests_per_thousand": 0.233, + "new_tests_smoothed": 796.0, + "new_tests_smoothed_per_thousand": 0.229, + "tests_per_case": 179.74200000000002, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-18", + "total_cases": 734.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 211.3, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 825.0, + "total_tests": 33861.0, + "total_tests_per_thousand": 9.748, + "new_tests_per_thousand": 0.237, + "new_tests_smoothed": 738.0, + "new_tests_smoothed_per_thousand": 0.212, + "tests_per_case": 191.333, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-19", + "total_cases": 737.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.714, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 212.164, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.069, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 523.0, + "total_tests": 34384.0, + "total_tests_per_thousand": 9.898, + "new_tests_per_thousand": 0.151, + "new_tests_smoothed": 755.0, + "new_tests_smoothed_per_thousand": 0.217, + "tests_per_case": 203.269, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-20", + "total_cases": 738.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 212.452, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.864, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 410.0, + "total_tests": 34794.0, + "total_tests_per_thousand": 10.016, + "new_tests_per_thousand": 0.118, + "new_tests_smoothed": 756.0, + "new_tests_smoothed_per_thousand": 0.218, + "tests_per_case": 252.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-21", + "total_cases": 746.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 214.755, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 708.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 183.55599999999998, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-22", + "total_cases": 749.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 215.619, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 35537.0, + "total_tests_per_thousand": 10.23, + "new_tests_smoothed": 618.0, + "new_tests_smoothed_per_thousand": 0.178, + "tests_per_case": 173.04, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-23", + "total_cases": 753.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 216.77, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 0.864, + "total_deaths_per_million": 5.758, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1641.0, + "total_tests": 37178.0, + "total_tests_per_thousand": 10.703, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 708.0, + "new_tests_smoothed_per_thousand": 0.204, + "tests_per_case": 236.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-24", + "total_cases": 764.0, + "new_cases": 11.0, + "new_cases_smoothed": 4.429, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 219.937, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.123, + "new_tests_smoothed": 661.0, + "new_tests_smoothed_per_thousand": 0.19, + "tests_per_case": 149.25799999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-25", + "total_cases": 769.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 221.376, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 38146.0, + "total_tests_per_thousand": 10.981, + "new_tests_smoothed": 612.0, + "new_tests_smoothed_per_thousand": 0.176, + "tests_per_case": 122.4, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-26", + "total_cases": 787.0, + "new_cases": 18.0, + "new_cases_smoothed": 7.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 226.558, + "new_cases_per_million": 5.182, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 549.0, + "total_tests": 38695.0, + "total_tests_per_thousand": 11.139, + "new_tests_per_thousand": 0.158, + "new_tests_smoothed": 616.0, + "new_tests_smoothed_per_thousand": 0.177, + "tests_per_case": 86.24, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-27", + "total_cases": 789.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.286, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 227.134, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 2.097, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 774.0, + "total_tests": 39469.0, + "total_tests_per_thousand": 11.362, + "new_tests_per_thousand": 0.223, + "new_tests_smoothed": 668.0, + "new_tests_smoothed_per_thousand": 0.192, + "tests_per_case": 91.686, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-28", + "total_cases": 803.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 231.164, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 760.0, + "total_tests": 40229.0, + "total_tests_per_thousand": 11.581, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 723.0, + "new_tests_smoothed_per_thousand": 0.208, + "tests_per_case": 88.789, + "positive_rate": 0.011000000000000001, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-29", + "total_cases": 811.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 233.467, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 2.55, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1240.0, + "total_tests": 41469.0, + "total_tests_per_thousand": 11.938, + "new_tests_per_thousand": 0.357, + "new_tests_smoothed": 847.0, + "new_tests_smoothed_per_thousand": 0.244, + "tests_per_case": 95.62899999999999, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-30", + "total_cases": 816.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.0, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 234.906, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.591, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1155.0, + "total_tests": 42624.0, + "total_tests_per_thousand": 12.27, + "new_tests_per_thousand": 0.332, + "new_tests_smoothed": 778.0, + "new_tests_smoothed_per_thousand": 0.224, + "tests_per_case": 86.444, + "positive_rate": 0.012, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-05-31", + "total_cases": 821.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.143, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.346, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 855.0, + "total_tests": 43479.0, + "total_tests_per_thousand": 12.517, + "new_tests_per_thousand": 0.246, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 102.053, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 61.11 + }, + { + "date": "2020-06-01", + "total_cases": 823.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 236.921, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 2.221, + "total_deaths_per_million": 6.333, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 836.0, + "new_tests_smoothed_per_thousand": 0.241, + "tests_per_case": 108.37, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-02", + "total_cases": 825.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.429, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.497, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.563, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 44511.0, + "total_tests_per_thousand": 12.814, + "new_tests_smoothed": 831.0, + "new_tests_smoothed_per_thousand": 0.239, + "tests_per_case": 153.079, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-03", + "total_cases": 826.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 237.785, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.522, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 715.0, + "total_tests": 45226.0, + "total_tests_per_thousand": 13.019, + "new_tests_per_thousand": 0.206, + "new_tests_smoothed": 822.0, + "new_tests_smoothed_per_thousand": 0.237, + "tests_per_case": 155.514, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-04", + "total_cases": 828.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 238.361, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.028, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 551.0, + "total_tests": 45777.0, + "total_tests_per_thousand": 13.178, + "new_tests_per_thousand": 0.159, + "new_tests_smoothed": 793.0, + "new_tests_smoothed_per_thousand": 0.228, + "tests_per_case": 222.04, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-05", + "total_cases": 832.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 239.512, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 0.864, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 735.0, + "total_tests": 46512.0, + "total_tests_per_thousand": 13.39, + "new_tests_per_thousand": 0.212, + "new_tests_smoothed": 720.0, + "new_tests_smoothed_per_thousand": 0.207, + "tests_per_case": 240.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-06", + "total_cases": 834.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.571, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 240.088, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 0.74, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 921.0, + "total_tests": 47433.0, + "total_tests_per_thousand": 13.655, + "new_tests_per_thousand": 0.265, + "new_tests_smoothed": 687.0, + "new_tests_smoothed_per_thousand": 0.198, + "tests_per_case": 267.16700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-07", + "total_cases": 845.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 243.255, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 0.987, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 596.0, + "total_tests": 48029.0, + "total_tests_per_thousand": 13.826, + "new_tests_per_thousand": 0.172, + "new_tests_smoothed": 650.0, + "new_tests_smoothed_per_thousand": 0.187, + "tests_per_case": 189.583, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-08", + "total_cases": 845.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 243.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.905, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 403.0, + "total_tests": 48432.0, + "total_tests_per_thousand": 13.942, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 634.0, + "new_tests_smoothed_per_thousand": 0.183, + "tests_per_case": 201.727, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-09", + "total_cases": 845.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.255, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.823, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 464.0, + "total_tests": 48896.0, + "total_tests_per_thousand": 14.076, + "new_tests_per_thousand": 0.134, + "new_tests_smoothed": 626.0, + "new_tests_smoothed_per_thousand": 0.18, + "tests_per_case": 219.1, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-10", + "total_cases": 846.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.542, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.823, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 757.0, + "total_tests": 49653.0, + "total_tests_per_thousand": 14.294, + "new_tests_per_thousand": 0.218, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 221.2, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-11", + "total_cases": 847.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.714, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.83, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 820.0, + "total_tests": 50473.0, + "total_tests_per_thousand": 14.53, + "new_tests_per_thousand": 0.236, + "new_tests_smoothed": 671.0, + "new_tests_smoothed_per_thousand": 0.193, + "tests_per_case": 247.21099999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-12", + "total_cases": 847.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.617, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 840.0, + "total_tests": 51313.0, + "total_tests_per_thousand": 14.772, + "new_tests_per_thousand": 0.242, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 320.133, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-13", + "total_cases": 847.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.535, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 765.0, + "total_tests": 52078.0, + "total_tests_per_thousand": 14.992, + "new_tests_per_thousand": 0.22, + "new_tests_smoothed": 664.0, + "new_tests_smoothed_per_thousand": 0.191, + "tests_per_case": 357.538, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-14", + "total_cases": 847.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 243.83, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 784.0, + "total_tests": 52862.0, + "total_tests_per_thousand": 15.218, + "new_tests_per_thousand": 0.226, + "new_tests_smoothed": 690.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 2415.0, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-15", + "total_cases": 848.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.118, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 403.0, + "total_tests": 53265.0, + "total_tests_per_thousand": 15.334, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 690.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 1610.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-16", + "total_cases": 848.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 244.118, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 6.621, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 460.0, + "total_tests": 53725.0, + "total_tests_per_thousand": 15.466, + "new_tests_per_thousand": 0.132, + "new_tests_smoothed": 690.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 1610.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-17", + "total_cases": 849.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.406, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 761.0, + "total_tests": 54486.0, + "total_tests_per_thousand": 15.685, + "new_tests_per_thousand": 0.219, + "new_tests_smoothed": 690.0, + "new_tests_smoothed_per_thousand": 0.199, + "tests_per_case": 1610.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-18", + "total_cases": 849.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.406, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.082, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1410.0, + "total_tests": 55896.0, + "total_tests_per_thousand": 16.091, + "new_tests_per_thousand": 0.406, + "new_tests_smoothed": 775.0, + "new_tests_smoothed_per_thousand": 0.223, + "tests_per_case": 2712.5, + "positive_rate": 0.0, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-19", + "total_cases": 850.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 244.694, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.123, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 338.0, + "total_tests": 56234.0, + "total_tests_per_thousand": 16.188, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 703.0, + "new_tests_smoothed_per_thousand": 0.202, + "tests_per_case": 1640.3329999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-20", + "total_cases": 853.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.857, + "total_deaths": 24.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 245.558, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 0.247, + "total_deaths_per_million": 6.909, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 643.0, + "total_tests": 56877.0, + "total_tests_per_thousand": 16.373, + "new_tests_per_thousand": 0.185, + "new_tests_smoothed": 686.0, + "new_tests_smoothed_per_thousand": 0.197, + "tests_per_case": 800.3330000000001, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-21", + "total_cases": 859.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 247.285, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 0.494, + "total_deaths_per_million": 7.197, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 412.0, + "total_tests": 57289.0, + "total_tests_per_thousand": 16.492, + "new_tests_per_thousand": 0.119, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 368.667, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-22", + "total_cases": 876.0, + "new_cases": 17.0, + "new_cases_smoothed": 4.0, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 252.179, + "new_cases_per_million": 4.894, + "new_cases_smoothed_per_million": 1.152, + "total_deaths_per_million": 7.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 398.0, + "total_tests": 57687.0, + "total_tests_per_thousand": 16.607, + "new_tests_per_thousand": 0.115, + "new_tests_smoothed": 632.0, + "new_tests_smoothed_per_thousand": 0.182, + "tests_per_case": 158.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-23", + "total_cases": 882.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 253.906, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 1.398, + "total_deaths_per_million": 7.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1158.0, + "total_tests": 58845.0, + "total_tests_per_thousand": 16.94, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 731.0, + "new_tests_smoothed_per_thousand": 0.21, + "tests_per_case": 150.5, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-24", + "total_cases": 885.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 254.77, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 7.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1473.0, + "total_tests": 60318.0, + "total_tests_per_thousand": 17.364, + "new_tests_per_thousand": 0.424, + "new_tests_smoothed": 833.0, + "new_tests_smoothed_per_thousand": 0.24, + "tests_per_case": 161.972, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-25", + "total_cases": 902.0, + "new_cases": 17.0, + "new_cases_smoothed": 7.571, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 259.663, + "new_cases_per_million": 4.894, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 7.485, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1290.0, + "total_tests": 61608.0, + "total_tests_per_thousand": 17.735, + "new_tests_per_thousand": 0.371, + "new_tests_smoothed": 816.0, + "new_tests_smoothed_per_thousand": 0.235, + "tests_per_case": 107.774, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-26", + "total_cases": 907.0, + "new_cases": 5.0, + "new_cases_smoothed": 8.143, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 261.103, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 7.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1157.0, + "total_tests": 62765.0, + "total_tests_per_thousand": 18.068, + "new_tests_per_thousand": 0.333, + "new_tests_smoothed": 933.0, + "new_tests_smoothed_per_thousand": 0.269, + "tests_per_case": 114.579, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 57.41 + }, + { + "date": "2020-06-27", + "total_cases": 919.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 264.557, + "new_cases_per_million": 3.455, + "new_cases_smoothed_per_million": 2.714, + "total_deaths_per_million": 7.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1418.0, + "total_tests": 64183.0, + "total_tests_per_thousand": 18.477, + "new_tests_per_thousand": 0.408, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 110.727, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-28", + "total_cases": 924.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 265.997, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.673, + "total_deaths_per_million": 7.485, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 403.0, + "total_tests": 64586.0, + "total_tests_per_thousand": 18.593, + "new_tests_per_thousand": 0.116, + "new_tests_smoothed": 1042.0, + "new_tests_smoothed_per_thousand": 0.3, + "tests_per_case": 112.215, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-29", + "total_cases": 929.0, + "new_cases": 5.0, + "new_cases_smoothed": 7.571, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 267.436, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 2.18, + "total_deaths_per_million": 7.773, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1040.0, + "total_tests": 65626.0, + "total_tests_per_thousand": 18.892, + "new_tests_per_thousand": 0.299, + "new_tests_smoothed": 1134.0, + "new_tests_smoothed_per_thousand": 0.326, + "tests_per_case": 149.774, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-06-30", + "total_cases": 932.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.143, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 268.3, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 7.773, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 674.0, + "total_tests": 66300.0, + "total_tests_per_thousand": 19.086, + "new_tests_per_thousand": 0.194, + "new_tests_smoothed": 1065.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 149.1, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-01", + "total_cases": 936.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.286, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 269.451, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 2.097, + "total_deaths_per_million": 7.773, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 138.35299999999998, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-02", + "total_cases": 943.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.857, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 271.466, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 1.686, + "total_deaths_per_million": 8.061, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 68449.0, + "total_tests_per_thousand": 19.705, + "new_tests_smoothed": 977.0, + "new_tests_smoothed_per_thousand": 0.281, + "tests_per_case": 166.805, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-03", + "total_cases": 947.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 272.618, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 8.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 959.0, + "new_tests_smoothed_per_thousand": 0.276, + "tests_per_case": 167.825, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-04", + "total_cases": 952.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.714, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 274.057, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.357, + "total_deaths_per_million": 8.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 903.0, + "new_tests_smoothed_per_thousand": 0.26, + "tests_per_case": 191.545, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 46.3 + }, + { + "date": "2020-07-05", + "total_cases": 955.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.429, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 274.921, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 8.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 0.286, + "tests_per_case": 224.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-07-06", + "total_cases": 956.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.857, + "total_deaths": 28.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 275.209, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 8.061, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 72553.0, + "total_tests_per_thousand": 20.886, + "new_tests_smoothed": 990.0, + "new_tests_smoothed_per_thousand": 0.285, + "tests_per_case": 256.66700000000003, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-07-07", + "total_cases": 960.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.0, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 276.36, + "new_cases_per_million": 1.152, + "new_cases_smoothed_per_million": 1.152, + "total_deaths_per_million": 8.348, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1056.0, + "total_tests": 73609.0, + "total_tests_per_thousand": 21.19, + "new_tests_per_thousand": 0.304, + "new_tests_smoothed": 1044.0, + "new_tests_smoothed_per_thousand": 0.301, + "tests_per_case": 261.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-07-08", + "total_cases": 965.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.143, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 277.8, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.193, + "total_deaths_per_million": 8.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 959.0, + "total_tests": 74568.0, + "total_tests_per_thousand": 21.466, + "new_tests_per_thousand": 0.276, + "new_tests_smoothed": 1028.0, + "new_tests_smoothed_per_thousand": 0.296, + "tests_per_case": 248.138, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-07-09", + "total_cases": 974.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.429, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 280.39, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 8.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1467.0, + "total_tests": 76035.0, + "total_tests_per_thousand": 21.889, + "new_tests_per_thousand": 0.422, + "new_tests_smoothed": 1084.0, + "new_tests_smoothed_per_thousand": 0.312, + "tests_per_case": 244.774, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 40.74 + }, + { + "date": "2020-07-10", + "total_cases": 977.0, + "new_cases": 3.0, + "new_cases_smoothed": 4.286, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 281.254, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 1.234, + "total_deaths_per_million": 8.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1224.0, + "total_tests": 77259.0, + "total_tests_per_thousand": 22.241, + "new_tests_per_thousand": 0.352, + "new_tests_smoothed": 1112.0, + "new_tests_smoothed_per_thousand": 0.32, + "tests_per_case": 259.467, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 22.22 + }, + { + "date": "2020-07-11", + "total_cases": 985.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.714, + "total_deaths": 29.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 283.557, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.357, + "total_deaths_per_million": 8.348, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 858.0, + "total_tests": 78117.0, + "total_tests_per_thousand": 22.488, + "new_tests_per_thousand": 0.247, + "new_tests_smoothed": 1088.0, + "new_tests_smoothed_per_thousand": 0.313, + "tests_per_case": 230.78799999999998, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-12", + "total_cases": 986.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 30.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 283.845, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 8.636, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 469.0, + "total_tests": 78586.0, + "total_tests_per_thousand": 22.623, + "new_tests_per_thousand": 0.135, + "new_tests_smoothed": 1008.0, + "new_tests_smoothed_per_thousand": 0.29, + "tests_per_case": 227.613, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-13", + "total_cases": 987.0, + "new_cases": 1.0, + "new_cases_smoothed": 4.429, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 284.133, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 1.275, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 1377.0, + "total_tests": 79963.0, + "total_tests_per_thousand": 23.019, + "new_tests_per_thousand": 0.396, + "new_tests_smoothed": 1059.0, + "new_tests_smoothed_per_thousand": 0.305, + "tests_per_case": 239.12900000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-14", + "total_cases": 989.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 284.709, + "new_cases_per_million": 0.576, + "new_cases_smoothed_per_million": 1.193, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1483.0, + "total_tests": 81446.0, + "total_tests_per_thousand": 23.446, + "new_tests_per_thousand": 0.427, + "new_tests_smoothed": 1120.0, + "new_tests_smoothed_per_thousand": 0.322, + "tests_per_case": 270.345, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-15", + "total_cases": 997.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 287.012, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 1077.0, + "new_tests_smoothed_per_thousand": 0.31, + "tests_per_case": 235.59400000000002, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-16", + "total_cases": 1009.0, + "new_cases": 12.0, + "new_cases_smoothed": 5.0, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 290.466, + "new_cases_per_million": 3.455, + "new_cases_smoothed_per_million": 1.439, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 82772.0, + "total_tests_per_thousand": 23.828, + "new_tests_smoothed": 962.0, + "new_tests_smoothed_per_thousand": 0.277, + "tests_per_case": 192.4, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-17", + "total_cases": 1009.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 31.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 290.466, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.316, + "total_deaths_per_million": 8.924, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 1066.0, + "new_tests_smoothed_per_thousand": 0.307, + "tests_per_case": 233.188, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-18", + "total_cases": 1037.0, + "new_cases": 28.0, + "new_cases_smoothed": 7.429, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 298.527, + "new_cases_per_million": 8.061, + "new_cases_smoothed_per_million": 2.139, + "total_deaths_per_million": 9.212, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.123, + "new_tests_smoothed": 1222.0, + "new_tests_smoothed_per_thousand": 0.352, + "tests_per_case": 164.5, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-19", + "total_cases": 1044.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.286, + "total_deaths": 33.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 300.542, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.385, + "total_deaths_per_million": 9.5, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.123, + "total_tests": 88616.0, + "total_tests_per_thousand": 25.51, + "new_tests_smoothed": 1433.0, + "new_tests_smoothed_per_thousand": 0.413, + "tests_per_case": 172.94799999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-20", + "total_cases": 1054.0, + "new_cases": 10.0, + "new_cases_smoothed": 9.571, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 303.421, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 2.755, + "total_deaths_per_million": 9.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 2033.0, + "total_tests": 90649.0, + "total_tests_per_thousand": 26.096, + "new_tests_per_thousand": 0.585, + "new_tests_smoothed": 1527.0, + "new_tests_smoothed_per_thousand": 0.44, + "tests_per_case": 159.537, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-21", + "total_cases": 1064.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.714, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 306.299, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 9.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1407.0, + "total_tests": 92056.0, + "total_tests_per_thousand": 26.501, + "new_tests_per_thousand": 0.405, + "new_tests_smoothed": 1516.0, + "new_tests_smoothed_per_thousand": 0.436, + "tests_per_case": 141.493, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-22", + "total_cases": 1096.0, + "new_cases": 32.0, + "new_cases_smoothed": 14.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 315.511, + "new_cases_per_million": 9.212, + "new_cases_smoothed_per_million": 4.071, + "total_deaths_per_million": 9.5, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 3100.0, + "total_tests": 95156.0, + "total_tests_per_thousand": 27.393, + "new_tests_per_thousand": 0.892, + "new_tests_smoothed": 1864.0, + "new_tests_smoothed_per_thousand": 0.537, + "tests_per_case": 131.798, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-23", + "total_cases": 1117.0, + "new_cases": 21.0, + "new_cases_smoothed": 15.429, + "total_deaths": 34.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 321.557, + "new_cases_per_million": 6.045, + "new_cases_smoothed_per_million": 4.442, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 2316.0, + "total_tests": 97472.0, + "total_tests_per_thousand": 28.06, + "new_tests_per_thousand": 0.667, + "new_tests_smoothed": 2100.0, + "new_tests_smoothed_per_thousand": 0.605, + "tests_per_case": 136.111, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-24", + "total_cases": 1141.0, + "new_cases": 24.0, + "new_cases_smoothed": 18.857, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 328.466, + "new_cases_per_million": 6.909, + "new_cases_smoothed_per_million": 5.429, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 2100.0, + "total_tests": 99572.0, + "total_tests_per_thousand": 28.664, + "new_tests_per_thousand": 0.605, + "new_tests_smoothed": 2122.0, + "new_tests_smoothed_per_thousand": 0.611, + "tests_per_case": 112.53, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-25", + "total_cases": 1166.0, + "new_cases": 25.0, + "new_cases_smoothed": 18.429, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 335.663, + "new_cases_per_million": 7.197, + "new_cases_smoothed_per_million": 5.305, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1488.0, + "total_tests": 101060.0, + "total_tests_per_thousand": 29.093, + "new_tests_per_thousand": 0.428, + "new_tests_smoothed": 2056.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 111.566, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-26", + "total_cases": 1174.0, + "new_cases": 8.0, + "new_cases_smoothed": 18.571, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 337.966, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 5.346, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1943.0, + "total_tests": 103003.0, + "total_tests_per_thousand": 29.652, + "new_tests_per_thousand": 0.559, + "new_tests_smoothed": 2055.0, + "new_tests_smoothed_per_thousand": 0.592, + "tests_per_case": 110.654, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-27", + "total_cases": 1192.0, + "new_cases": 18.0, + "new_cases_smoothed": 19.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 343.147, + "new_cases_per_million": 5.182, + "new_cases_smoothed_per_million": 5.675, + "total_deaths_per_million": 9.788, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1955.0, + "total_tests": 104958.0, + "total_tests_per_thousand": 30.215, + "new_tests_per_thousand": 0.563, + "new_tests_smoothed": 2044.0, + "new_tests_smoothed_per_thousand": 0.588, + "tests_per_case": 103.681, + "positive_rate": 0.01, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-28", + "total_cases": 1202.0, + "new_cases": 10.0, + "new_cases_smoothed": 19.714, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 346.026, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 5.675, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 2363.0, + "total_tests": 107321.0, + "total_tests_per_thousand": 30.895, + "new_tests_per_thousand": 0.68, + "new_tests_smoothed": 2181.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 110.63, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-29", + "total_cases": 1218.0, + "new_cases": 16.0, + "new_cases_smoothed": 17.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 350.632, + "new_cases_per_million": 4.606, + "new_cases_smoothed_per_million": 5.017, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1990.0, + "total_tests": 109311.0, + "total_tests_per_thousand": 31.468, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 2022.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 116.016, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-30", + "total_cases": 1237.0, + "new_cases": 19.0, + "new_cases_smoothed": 17.143, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 356.102, + "new_cases_per_million": 5.47, + "new_cases_smoothed_per_million": 4.935, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1640.0, + "total_tests": 110951.0, + "total_tests_per_thousand": 31.94, + "new_tests_per_thousand": 0.472, + "new_tests_smoothed": 1926.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 112.35, + "positive_rate": 0.009000000000000001, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-07-31", + "total_cases": 1243.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.571, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 357.829, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 4.195, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2586.0, + "total_tests": 113537.0, + "total_tests_per_thousand": 32.684, + "new_tests_per_thousand": 0.744, + "new_tests_smoothed": 1995.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 136.912, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-08-01", + "total_cases": 1264.0, + "new_cases": 21.0, + "new_cases_smoothed": 14.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 363.874, + "new_cases_per_million": 6.045, + "new_cases_smoothed_per_million": 4.03, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1663.0, + "total_tests": 115200.0, + "total_tests_per_thousand": 33.163, + "new_tests_per_thousand": 0.479, + "new_tests_smoothed": 2020.0, + "new_tests_smoothed_per_thousand": 0.582, + "tests_per_case": 144.286, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-08-02", + "total_cases": 1278.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.857, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 367.905, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 4.277, + "total_deaths_per_million": 10.076, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1853.0, + "total_tests": 117053.0, + "total_tests_per_thousand": 33.697, + "new_tests_per_thousand": 0.533, + "new_tests_smoothed": 2007.0, + "new_tests_smoothed_per_thousand": 0.578, + "tests_per_case": 135.08700000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 20.37 + }, + { + "date": "2020-08-03", + "total_cases": 1286.0, + "new_cases": 8.0, + "new_cases_smoothed": 13.429, + "total_deaths": 36.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 370.208, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 3.866, + "total_deaths_per_million": 10.364, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1989.0, + "total_tests": 119042.0, + "total_tests_per_thousand": 34.269, + "new_tests_per_thousand": 0.573, + "new_tests_smoothed": 2012.0, + "new_tests_smoothed_per_thousand": 0.579, + "tests_per_case": 149.83, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-04", + "total_cases": 1291.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.714, + "total_deaths": 36.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 371.647, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.66, + "total_deaths_per_million": 10.364, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 2036.0, + "new_tests_smoothed_per_thousand": 0.586, + "tests_per_case": 160.135, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-05", + "total_cases": 1300.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.714, + "total_deaths": 37.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 374.238, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 3.372, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 124098.0, + "total_tests_per_thousand": 35.725, + "new_tests_smoothed": 2112.0, + "new_tests_smoothed_per_thousand": 0.608, + "tests_per_case": 180.293, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-06", + "total_cases": 1309.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.286, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 376.829, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 2.961, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 2215.0, + "new_tests_smoothed_per_thousand": 0.638, + "tests_per_case": 215.347, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-07", + "total_cases": 1318.0, + "new_cases": 9.0, + "new_cases_smoothed": 10.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 379.42, + "new_cases_per_million": 2.591, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 128814.0, + "total_tests_per_thousand": 37.082, + "new_tests_smoothed": 2182.0, + "new_tests_smoothed_per_thousand": 0.628, + "tests_per_case": 203.653, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-08", + "total_cases": 1325.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.714, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 381.435, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.509, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1953.0, + "total_tests": 130767.0, + "total_tests_per_thousand": 37.645, + "new_tests_per_thousand": 0.562, + "new_tests_smoothed": 2224.0, + "new_tests_smoothed_per_thousand": 0.64, + "tests_per_case": 255.213, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-09", + "total_cases": 1335.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 384.313, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 2.344, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests_smoothed": 2136.0, + "new_tests_smoothed_per_thousand": 0.615, + "tests_per_case": 262.316, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-10", + "total_cases": 1353.0, + "new_cases": 18.0, + "new_cases_smoothed": 9.571, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 389.495, + "new_cases_per_million": 5.182, + "new_cases_smoothed_per_million": 2.755, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 133237.0, + "total_tests_per_thousand": 38.356, + "new_tests_smoothed": 2028.0, + "new_tests_smoothed_per_thousand": 0.584, + "tests_per_case": 211.88099999999997, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-11", + "total_cases": 1364.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.429, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 392.662, + "new_cases_per_million": 3.167, + "new_cases_smoothed_per_million": 3.002, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2192.0, + "total_tests": 135429.0, + "total_tests_per_thousand": 38.987, + "new_tests_per_thousand": 0.631, + "new_tests_smoothed": 1980.0, + "new_tests_smoothed_per_thousand": 0.57, + "tests_per_case": 189.863, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-12", + "total_cases": 1385.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.143, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 398.707, + "new_cases_per_million": 6.045, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1757.0, + "total_tests": 137186.0, + "total_tests_per_thousand": 39.492, + "new_tests_per_thousand": 0.506, + "new_tests_smoothed": 1870.0, + "new_tests_smoothed_per_thousand": 0.538, + "tests_per_case": 154.0, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-13", + "total_cases": 1393.0, + "new_cases": 8.0, + "new_cases_smoothed": 12.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 401.01, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 3.455, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1514.0, + "total_tests": 138700.0, + "total_tests_per_thousand": 39.928, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 1749.0, + "new_tests_smoothed_per_thousand": 0.503, + "tests_per_case": 145.75, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-14", + "total_cases": 1409.0, + "new_cases": 16.0, + "new_cases_smoothed": 13.0, + "total_deaths": 37.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 405.616, + "new_cases_per_million": 4.606, + "new_cases_smoothed_per_million": 3.742, + "total_deaths_per_million": 10.651, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3899.0, + "total_tests": 142599.0, + "total_tests_per_thousand": 41.051, + "new_tests_per_thousand": 1.122, + "new_tests_smoothed": 1969.0, + "new_tests_smoothed_per_thousand": 0.567, + "tests_per_case": 151.46200000000002, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-15", + "total_cases": 1421.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.714, + "total_deaths": 38.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 409.071, + "new_cases_per_million": 3.455, + "new_cases_smoothed_per_million": 3.948, + "total_deaths_per_million": 10.939, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 1629.0, + "total_tests": 144228.0, + "total_tests_per_thousand": 41.52, + "new_tests_per_thousand": 0.469, + "new_tests_smoothed": 1923.0, + "new_tests_smoothed_per_thousand": 0.554, + "tests_per_case": 140.219, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-16", + "total_cases": 1434.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.143, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 412.813, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 4.071, + "total_deaths_per_million": 10.939, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 2038.0, + "total_tests": 146266.0, + "total_tests_per_thousand": 42.106, + "new_tests_per_thousand": 0.587, + "new_tests_smoothed": 2038.0, + "new_tests_smoothed_per_thousand": 0.587, + "tests_per_case": 144.101, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 24.07 + }, + { + "date": "2020-08-17", + "total_cases": 1440.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.429, + "total_deaths": 38.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 414.54, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 3.578, + "total_deaths_per_million": 10.939, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 1956.0, + "new_tests_smoothed_per_thousand": 0.563, + "tests_per_case": 157.379, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-18", + "total_cases": 1457.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.286, + "total_deaths": 40.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 419.434, + "new_cases_per_million": 4.894, + "new_cases_smoothed_per_million": 3.825, + "total_deaths_per_million": 11.515, + "new_deaths_per_million": 0.576, + "new_deaths_smoothed_per_million": 0.123, + "total_tests": 147594.0, + "total_tests_per_thousand": 42.489, + "new_tests_smoothed": 1738.0, + "new_tests_smoothed_per_thousand": 0.5, + "tests_per_case": 130.817, + "positive_rate": 0.008, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-19", + "total_cases": 1485.0, + "new_cases": 28.0, + "new_cases_smoothed": 14.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 427.495, + "new_cases_per_million": 8.061, + "new_cases_smoothed_per_million": 4.113, + "total_deaths_per_million": 11.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 4527.0, + "total_tests": 152121.0, + "total_tests_per_thousand": 43.792, + "new_tests_per_thousand": 1.303, + "new_tests_smoothed": 2134.0, + "new_tests_smoothed_per_thousand": 0.614, + "tests_per_case": 149.38, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-20", + "total_cases": 1493.0, + "new_cases": 8.0, + "new_cases_smoothed": 14.286, + "total_deaths": 40.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 429.798, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 4.113, + "total_deaths_per_million": 11.515, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 2310.0, + "total_tests": 154431.0, + "total_tests_per_thousand": 44.457, + "new_tests_per_thousand": 0.665, + "new_tests_smoothed": 2247.0, + "new_tests_smoothed_per_thousand": 0.647, + "tests_per_case": 157.29, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-21", + "total_cases": 1506.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.857, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 433.54, + "new_cases_per_million": 3.742, + "new_cases_smoothed_per_million": 3.989, + "total_deaths_per_million": 11.803, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.165, + "new_tests_smoothed": 1995.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 143.969, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-22", + "total_cases": 1516.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.571, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 436.419, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 3.907, + "total_deaths_per_million": 12.091, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.165, + "total_tests": 158702.0, + "total_tests_per_thousand": 45.686, + "new_tests_smoothed": 2068.0, + "new_tests_smoothed_per_thousand": 0.595, + "tests_per_case": 152.379, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-23", + "total_cases": 1521.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 437.858, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 3.578, + "total_deaths_per_million": 12.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.165, + "new_tests": 1514.0, + "total_tests": 160216.0, + "total_tests_per_thousand": 46.122, + "new_tests_per_thousand": 0.436, + "new_tests_smoothed": 1993.0, + "new_tests_smoothed_per_thousand": 0.574, + "tests_per_case": 160.356, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-24", + "total_cases": 1527.0, + "new_cases": 6.0, + "new_cases_smoothed": 12.429, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 439.585, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 3.578, + "total_deaths_per_million": 12.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.165, + "new_tests_smoothed": 2106.0, + "new_tests_smoothed_per_thousand": 0.606, + "tests_per_case": 169.44799999999998, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 33.33 + }, + { + "date": "2020-08-25", + "total_cases": 1533.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.857, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 441.313, + "new_cases_per_million": 1.727, + "new_cases_smoothed_per_million": 3.126, + "total_deaths_per_million": 12.091, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "total_tests": 163129.0, + "total_tests_per_thousand": 46.961, + "new_tests_smoothed": 2219.0, + "new_tests_smoothed_per_thousand": 0.639, + "tests_per_case": 204.382, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-26", + "total_cases": 1536.0, + "new_cases": 3.0, + "new_cases_smoothed": 7.286, + "total_deaths": 43.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 442.176, + "new_cases_per_million": 0.864, + "new_cases_smoothed_per_million": 2.097, + "total_deaths_per_million": 12.379, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 1609.0, + "total_tests": 164738.0, + "total_tests_per_thousand": 47.424, + "new_tests_per_thousand": 0.463, + "new_tests_smoothed": 1802.0, + "new_tests_smoothed_per_thousand": 0.519, + "tests_per_case": 247.333, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-27", + "total_cases": 1543.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.143, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 444.191, + "new_cases_per_million": 2.015, + "new_cases_smoothed_per_million": 2.056, + "total_deaths_per_million": 12.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.123, + "new_tests": 1379.0, + "total_tests": 166117.0, + "total_tests_per_thousand": 47.821, + "new_tests_per_thousand": 0.397, + "new_tests_smoothed": 1669.0, + "new_tests_smoothed_per_thousand": 0.48, + "tests_per_case": 233.66, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-28", + "total_cases": 1551.0, + "new_cases": 8.0, + "new_cases_smoothed": 6.429, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 446.494, + "new_cases_per_million": 2.303, + "new_cases_smoothed_per_million": 1.851, + "total_deaths_per_million": 12.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1599.0, + "total_tests": 167716.0, + "total_tests_per_thousand": 48.281, + "new_tests_per_thousand": 0.46, + "new_tests_smoothed": 1593.0, + "new_tests_smoothed_per_thousand": 0.459, + "tests_per_case": 247.8, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-29", + "total_cases": 1556.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 43.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 447.934, + "new_cases_per_million": 1.439, + "new_cases_smoothed_per_million": 1.645, + "total_deaths_per_million": 12.379, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests": 3521.0, + "total_tests": 171237.0, + "total_tests_per_thousand": 49.295, + "new_tests_per_thousand": 1.014, + "new_tests_smoothed": 1791.0, + "new_tests_smoothed_per_thousand": 0.516, + "tests_per_case": 313.425, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-30", + "total_cases": 1570.0, + "new_cases": 14.0, + "new_cases_smoothed": 7.0, + "total_deaths": 44.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 451.964, + "new_cases_per_million": 4.03, + "new_cases_smoothed_per_million": 2.015, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 844.0, + "total_tests": 172081.0, + "total_tests_per_thousand": 49.538, + "new_tests_per_thousand": 0.243, + "new_tests_smoothed": 1695.0, + "new_tests_smoothed_per_thousand": 0.488, + "tests_per_case": 242.143, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-08-31", + "total_cases": 1585.0, + "new_cases": 15.0, + "new_cases_smoothed": 8.286, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 456.282, + "new_cases_per_million": 4.318, + "new_cases_smoothed_per_million": 2.385, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1106.0, + "total_tests": 173187.0, + "total_tests_per_thousand": 49.856, + "new_tests_per_thousand": 0.318, + "new_tests_smoothed": 1645.0, + "new_tests_smoothed_per_thousand": 0.474, + "tests_per_case": 198.53400000000002, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 29.63 + }, + { + "date": "2020-09-01", + "total_cases": 1595.0, + "new_cases": 10.0, + "new_cases_smoothed": 8.857, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 459.161, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 2.55, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.082, + "new_tests": 1893.0, + "total_tests": 175080.0, + "total_tests_per_thousand": 50.401, + "new_tests_per_thousand": 0.545, + "new_tests_smoothed": 1707.0, + "new_tests_smoothed_per_thousand": 0.491, + "tests_per_case": 192.726, + "positive_rate": 0.005, + "tests_units": "tests performed" + }, + { + "date": "2020-09-02", + "total_cases": 1611.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.714, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 463.767, + "new_cases_per_million": 4.606, + "new_cases_smoothed_per_million": 3.084, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "new_tests_smoothed": 1731.0, + "new_tests_smoothed_per_thousand": 0.498, + "tests_per_case": 161.56, + "positive_rate": 0.006, + "tests_units": "tests performed" + }, + { + "date": "2020-09-03", + "total_cases": 1626.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.857, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 468.085, + "new_cases_per_million": 4.318, + "new_cases_smoothed_per_million": 3.413, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041, + "total_tests": 178629.0, + "total_tests_per_thousand": 51.423, + "new_tests_smoothed": 1787.0, + "new_tests_smoothed_per_thousand": 0.514, + "tests_per_case": 150.711, + "positive_rate": 0.006999999999999999, + "tests_units": "tests performed" + }, + { + "date": "2020-09-04", + "total_cases": 1636.0, + "new_cases": 10.0, + "new_cases_smoothed": 12.143, + "total_deaths": 44.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 470.964, + "new_cases_per_million": 2.879, + "new_cases_smoothed_per_million": 3.496, + "total_deaths_per_million": 12.667, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.041 + }, + { + "date": "2020-09-05", + "total_cases": 1653.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.857, + "total_deaths": 45.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 475.858, + "new_cases_per_million": 4.894, + "new_cases_smoothed_per_million": 3.989, + "total_deaths_per_million": 12.954, + "new_deaths_per_million": 0.288, + "new_deaths_smoothed_per_million": 0.082 + } + ] + }, + "UZB": { + "continent": "Asia", + "location": "Uzbekistan", + "population": 33469199.0, + "population_density": 76.134, + "median_age": 28.2, + "aged_65_older": 4.469, + "aged_70_older": 2.873, + "gdp_per_capita": 6253.104, + "cardiovasc_death_rate": 724.417, + "diabetes_prevalence": 7.57, + "female_smokers": 1.3, + "male_smokers": 24.7, + "hospital_beds_per_thousand": 4.0, + "life_expectancy": 71.72, + "data": [ + { + "date": "2020-03-16", + "total_cases": 6.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.179, + "new_cases_per_million": 0.179, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-17", + "total_cases": 8.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.239, + "new_cases_per_million": 0.06, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-18", + "total_cases": 16.0, + "new_cases": 8.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.478, + "new_cases_per_million": 0.239, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-19", + "total_cases": 23.0, + "new_cases": 7.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.687, + "new_cases_per_million": 0.209, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-20", + "total_cases": 23.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.687, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 60.19 + }, + { + "date": "2020-03-21", + "total_cases": 33.0, + "new_cases": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.986, + "new_cases_per_million": 0.299, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-22", + "total_cases": 33.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.986, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 63.89 + }, + { + "date": "2020-03-23", + "total_cases": 46.0, + "new_cases": 13.0, + "new_cases_smoothed": 5.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.374, + "new_cases_per_million": 0.388, + "new_cases_smoothed_per_million": 0.171, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-24", + "total_cases": 49.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.464, + "new_cases_per_million": 0.09, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-25", + "total_cases": 55.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.643, + "new_cases_per_million": 0.179, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-26", + "total_cases": 65.0, + "new_cases": 10.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.942, + "new_cases_per_million": 0.299, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 80.56 + }, + { + "date": "2020-03-27", + "total_cases": 83.0, + "new_cases": 18.0, + "new_cases_smoothed": 8.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.48, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-28", + "total_cases": 104.0, + "new_cases": 21.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.107, + "new_cases_per_million": 0.627, + "new_cases_smoothed_per_million": 0.303, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-03-29", + "total_cases": 133.0, + "new_cases": 29.0, + "new_cases_smoothed": 14.286, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.974, + "new_cases_per_million": 0.866, + "new_cases_smoothed_per_million": 0.427, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-03-30", + "total_cases": 145.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.332, + "new_cases_per_million": 0.359, + "new_cases_smoothed_per_million": 0.423, + "total_deaths_per_million": 0.03, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-03-31", + "total_cases": 149.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 4.452, + "new_cases_per_million": 0.12, + "new_cases_smoothed_per_million": 0.427, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-01", + "total_cases": 173.0, + "new_cases": 24.0, + "new_cases_smoothed": 16.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.169, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 0.504, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-02", + "total_cases": 187.0, + "new_cases": 14.0, + "new_cases_smoothed": 17.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.587, + "new_cases_per_million": 0.418, + "new_cases_smoothed_per_million": 0.521, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-03", + "total_cases": 190.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.677, + "new_cases_per_million": 0.09, + "new_cases_smoothed_per_million": 0.457, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-04", + "total_cases": 227.0, + "new_cases": 37.0, + "new_cases_smoothed": 17.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.782, + "new_cases_per_million": 1.105, + "new_cases_smoothed_per_million": 0.525, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-05", + "total_cases": 266.0, + "new_cases": 39.0, + "new_cases_smoothed": 19.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.948, + "new_cases_per_million": 1.165, + "new_cases_smoothed_per_million": 0.568, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-06", + "total_cases": 342.0, + "new_cases": 76.0, + "new_cases_smoothed": 28.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.218, + "new_cases_per_million": 2.271, + "new_cases_smoothed_per_million": 0.841, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-07", + "total_cases": 397.0, + "new_cases": 55.0, + "new_cases_smoothed": 35.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.862, + "new_cases_per_million": 1.643, + "new_cases_smoothed_per_million": 1.059, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-08", + "total_cases": 504.0, + "new_cases": 107.0, + "new_cases_smoothed": 47.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.059, + "new_cases_per_million": 3.197, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 0.06, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 90.74 + }, + { + "date": "2020-04-09", + "total_cases": 555.0, + "new_cases": 51.0, + "new_cases_smoothed": 52.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 16.582, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.571, + "total_deaths_per_million": 0.09, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-10", + "total_cases": 582.0, + "new_cases": 27.0, + "new_cases_smoothed": 56.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 17.389, + "new_cases_per_million": 0.807, + "new_cases_smoothed_per_million": 1.673, + "total_deaths_per_million": 0.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-11", + "total_cases": 624.0, + "new_cases": 42.0, + "new_cases_smoothed": 56.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 18.644, + "new_cases_per_million": 1.255, + "new_cases_smoothed_per_million": 1.695, + "total_deaths_per_million": 0.09, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-12", + "total_cases": 796.0, + "new_cases": 172.0, + "new_cases_smoothed": 75.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 23.783, + "new_cases_per_million": 5.139, + "new_cases_smoothed_per_million": 2.262, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-13", + "total_cases": 865.0, + "new_cases": 69.0, + "new_cases_smoothed": 74.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 25.845, + "new_cases_per_million": 2.062, + "new_cases_smoothed_per_million": 2.232, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-14", + "total_cases": 998.0, + "new_cases": 133.0, + "new_cases_smoothed": 85.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 29.818, + "new_cases_per_million": 3.974, + "new_cases_smoothed_per_million": 2.565, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-15", + "total_cases": 1165.0, + "new_cases": 167.0, + "new_cases_smoothed": 94.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 34.808, + "new_cases_per_million": 4.99, + "new_cases_smoothed_per_million": 2.821, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-16", + "total_cases": 1302.0, + "new_cases": 137.0, + "new_cases_smoothed": 106.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.901, + "new_cases_per_million": 4.093, + "new_cases_smoothed_per_million": 3.188, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-17", + "total_cases": 1380.0, + "new_cases": 78.0, + "new_cases_smoothed": 114.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.232, + "new_cases_per_million": 2.331, + "new_cases_smoothed_per_million": 3.406, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-18", + "total_cases": 1450.0, + "new_cases": 70.0, + "new_cases_smoothed": 118.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.323, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 3.526, + "total_deaths_per_million": 0.12, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-19", + "total_cases": 1495.0, + "new_cases": 45.0, + "new_cases_smoothed": 99.857, + "total_deaths": 5.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 44.668, + "new_cases_per_million": 1.345, + "new_cases_smoothed_per_million": 2.984, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-20", + "total_cases": 1565.0, + "new_cases": 70.0, + "new_cases_smoothed": 100.0, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.759, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 2.988, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-21", + "total_cases": 1657.0, + "new_cases": 92.0, + "new_cases_smoothed": 94.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 49.508, + "new_cases_per_million": 2.749, + "new_cases_smoothed_per_million": 2.813, + "total_deaths_per_million": 0.149, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 90.74 + }, + { + "date": "2020-04-22", + "total_cases": 1692.0, + "new_cases": 35.0, + "new_cases_smoothed": 75.286, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 50.554, + "new_cases_per_million": 1.046, + "new_cases_smoothed_per_million": 2.249, + "total_deaths_per_million": 0.179, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 90.74 + }, + { + "date": "2020-04-23", + "total_cases": 1716.0, + "new_cases": 24.0, + "new_cases_smoothed": 59.143, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 51.271, + "new_cases_per_million": 0.717, + "new_cases_smoothed_per_million": 1.767, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-24", + "total_cases": 1778.0, + "new_cases": 62.0, + "new_cases_smoothed": 56.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 53.123, + "new_cases_per_million": 1.852, + "new_cases_smoothed_per_million": 1.699, + "total_deaths_per_million": 0.209, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-25", + "total_cases": 1836.0, + "new_cases": 58.0, + "new_cases_smoothed": 55.143, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 54.856, + "new_cases_per_million": 1.733, + "new_cases_smoothed_per_million": 1.648, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.017, + "stringency_index": 90.74 + }, + { + "date": "2020-04-26", + "total_cases": 1865.0, + "new_cases": 29.0, + "new_cases_smoothed": 52.857, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 55.723, + "new_cases_per_million": 0.866, + "new_cases_smoothed_per_million": 1.579, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-27", + "total_cases": 1887.0, + "new_cases": 22.0, + "new_cases_smoothed": 46.0, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 56.38, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 1.374, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 90.74 + }, + { + "date": "2020-04-28", + "total_cases": 1904.0, + "new_cases": 17.0, + "new_cases_smoothed": 35.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 56.888, + "new_cases_per_million": 0.508, + "new_cases_smoothed_per_million": 1.054, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 96.3 + }, + { + "date": "2020-04-29", + "total_cases": 1939.0, + "new_cases": 35.0, + "new_cases_smoothed": 35.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 57.934, + "new_cases_per_million": 1.046, + "new_cases_smoothed_per_million": 1.054, + "total_deaths_per_million": 0.239, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-04-30", + "total_cases": 2002.0, + "new_cases": 63.0, + "new_cases_smoothed": 40.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 59.816, + "new_cases_per_million": 1.882, + "new_cases_smoothed_per_million": 1.221, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-05-01", + "total_cases": 2046.0, + "new_cases": 44.0, + "new_cases_smoothed": 38.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 61.131, + "new_cases_per_million": 1.315, + "new_cases_smoothed_per_million": 1.144, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-05-02", + "total_cases": 2094.0, + "new_cases": 48.0, + "new_cases_smoothed": 36.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 62.565, + "new_cases_per_million": 1.434, + "new_cases_smoothed_per_million": 1.101, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 96.3 + }, + { + "date": "2020-05-03", + "total_cases": 2127.0, + "new_cases": 33.0, + "new_cases_smoothed": 37.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 63.551, + "new_cases_per_million": 0.986, + "new_cases_smoothed_per_million": 1.118, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 96.3 + }, + { + "date": "2020-05-04", + "total_cases": 2149.0, + "new_cases": 22.0, + "new_cases_smoothed": 37.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 64.208, + "new_cases_per_million": 0.657, + "new_cases_smoothed_per_million": 1.118, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-05-05", + "total_cases": 2189.0, + "new_cases": 40.0, + "new_cases_smoothed": 40.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 65.403, + "new_cases_per_million": 1.195, + "new_cases_smoothed_per_million": 1.216, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-05-06", + "total_cases": 2207.0, + "new_cases": 18.0, + "new_cases_smoothed": 38.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 65.941, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 1.144, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 96.3 + }, + { + "date": "2020-05-07", + "total_cases": 2233.0, + "new_cases": 26.0, + "new_cases_smoothed": 33.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 66.718, + "new_cases_per_million": 0.777, + "new_cases_smoothed_per_million": 0.986, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 96.3 + }, + { + "date": "2020-05-08", + "total_cases": 2298.0, + "new_cases": 65.0, + "new_cases_smoothed": 36.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 68.66, + "new_cases_per_million": 1.942, + "new_cases_smoothed_per_million": 1.076, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-09", + "total_cases": 2336.0, + "new_cases": 38.0, + "new_cases_smoothed": 34.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 69.796, + "new_cases_per_million": 1.135, + "new_cases_smoothed_per_million": 1.033, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-10", + "total_cases": 2387.0, + "new_cases": 51.0, + "new_cases_smoothed": 37.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 71.319, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.11, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-11", + "total_cases": 2418.0, + "new_cases": 31.0, + "new_cases_smoothed": 38.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 72.246, + "new_cases_per_million": 0.926, + "new_cases_smoothed_per_million": 1.148, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-05-12", + "total_cases": 2509.0, + "new_cases": 91.0, + "new_cases_smoothed": 45.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 74.964, + "new_cases_per_million": 2.719, + "new_cases_smoothed_per_million": 1.366, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-05-13", + "total_cases": 2547.0, + "new_cases": 38.0, + "new_cases_smoothed": 48.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 76.1, + "new_cases_per_million": 1.135, + "new_cases_smoothed_per_million": 1.451, + "total_deaths_per_million": 0.299, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 88.89 + }, + { + "date": "2020-05-14", + "total_cases": 2612.0, + "new_cases": 65.0, + "new_cases_smoothed": 54.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 78.042, + "new_cases_per_million": 1.942, + "new_cases_smoothed_per_million": 1.618, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-15", + "total_cases": 2645.0, + "new_cases": 33.0, + "new_cases_smoothed": 49.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 79.028, + "new_cases_per_million": 0.986, + "new_cases_smoothed_per_million": 1.481, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-16", + "total_cases": 2691.0, + "new_cases": 46.0, + "new_cases_smoothed": 50.714, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 80.402, + "new_cases_per_million": 1.374, + "new_cases_smoothed_per_million": 1.515, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-17", + "total_cases": 2741.0, + "new_cases": 50.0, + "new_cases_smoothed": 50.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 81.896, + "new_cases_per_million": 1.494, + "new_cases_smoothed_per_million": 1.511, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 88.89 + }, + { + "date": "2020-05-18", + "total_cases": 2753.0, + "new_cases": 12.0, + "new_cases_smoothed": 47.857, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 82.255, + "new_cases_per_million": 0.359, + "new_cases_smoothed_per_million": 1.43, + "total_deaths_per_million": 0.359, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 86.11 + }, + { + "date": "2020-05-19", + "total_cases": 2802.0, + "new_cases": 49.0, + "new_cases_smoothed": 41.857, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 83.719, + "new_cases_per_million": 1.464, + "new_cases_smoothed_per_million": 1.251, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 86.11 + }, + { + "date": "2020-05-20", + "total_cases": 2880.0, + "new_cases": 78.0, + "new_cases_smoothed": 47.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 86.049, + "new_cases_per_million": 2.331, + "new_cases_smoothed_per_million": 1.421, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 86.11 + }, + { + "date": "2020-05-21", + "total_cases": 2950.0, + "new_cases": 70.0, + "new_cases_smoothed": 48.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 88.141, + "new_cases_per_million": 2.091, + "new_cases_smoothed_per_million": 1.443, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 86.11 + }, + { + "date": "2020-05-22", + "total_cases": 3006.0, + "new_cases": 56.0, + "new_cases_smoothed": 51.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 89.814, + "new_cases_per_million": 1.673, + "new_cases_smoothed_per_million": 1.541, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 86.11 + }, + { + "date": "2020-05-23", + "total_cases": 3078.0, + "new_cases": 72.0, + "new_cases_smoothed": 55.286, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 91.965, + "new_cases_per_million": 2.151, + "new_cases_smoothed_per_million": 1.652, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 86.11 + }, + { + "date": "2020-05-24", + "total_cases": 3132.0, + "new_cases": 54.0, + "new_cases_smoothed": 55.857, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 93.579, + "new_cases_per_million": 1.613, + "new_cases_smoothed_per_million": 1.669, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 86.11 + }, + { + "date": "2020-05-25", + "total_cases": 3164.0, + "new_cases": 32.0, + "new_cases_smoothed": 58.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 94.535, + "new_cases_per_million": 0.956, + "new_cases_smoothed_per_million": 1.754, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-05-26", + "total_cases": 3261.0, + "new_cases": 97.0, + "new_cases_smoothed": 65.571, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 97.433, + "new_cases_per_million": 2.898, + "new_cases_smoothed_per_million": 1.959, + "total_deaths_per_million": 0.388, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 86.11 + }, + { + "date": "2020-05-27", + "total_cases": 3333.0, + "new_cases": 72.0, + "new_cases_smoothed": 64.714, + "total_deaths": 14.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.584, + "new_cases_per_million": 2.151, + "new_cases_smoothed_per_million": 1.934, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-05-28", + "total_cases": 3333.0, + "new_cases": 0.0, + "new_cases_smoothed": 54.714, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 99.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.635, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-05-29", + "total_cases": 3444.0, + "new_cases": 111.0, + "new_cases_smoothed": 62.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 102.901, + "new_cases_per_million": 3.316, + "new_cases_smoothed_per_million": 1.87, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-05-30", + "total_cases": 3513.0, + "new_cases": 69.0, + "new_cases_smoothed": 62.143, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 104.962, + "new_cases_per_million": 2.062, + "new_cases_smoothed_per_million": 1.857, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-05-31", + "total_cases": 3554.0, + "new_cases": 41.0, + "new_cases_smoothed": 60.286, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 106.187, + "new_cases_per_million": 1.225, + "new_cases_smoothed_per_million": 1.801, + "total_deaths_per_million": 0.418, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 86.11 + }, + { + "date": "2020-06-01", + "total_cases": 3662.0, + "new_cases": 108.0, + "new_cases_smoothed": 71.143, + "total_deaths": 15.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 109.414, + "new_cases_per_million": 3.227, + "new_cases_smoothed_per_million": 2.126, + "total_deaths_per_million": 0.448, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 81.94 + }, + { + "date": "2020-06-02", + "total_cases": 3718.0, + "new_cases": 56.0, + "new_cases_smoothed": 65.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 111.087, + "new_cases_per_million": 1.673, + "new_cases_smoothed_per_million": 1.951, + "total_deaths_per_million": 0.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 81.94 + }, + { + "date": "2020-06-03", + "total_cases": 3769.0, + "new_cases": 51.0, + "new_cases_smoothed": 62.286, + "total_deaths": 15.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 112.611, + "new_cases_per_million": 1.524, + "new_cases_smoothed_per_million": 1.861, + "total_deaths_per_million": 0.448, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 81.94 + }, + { + "date": "2020-06-04", + "total_cases": 3874.0, + "new_cases": 105.0, + "new_cases_smoothed": 77.286, + "total_deaths": 16.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 115.748, + "new_cases_per_million": 3.137, + "new_cases_smoothed_per_million": 2.309, + "total_deaths_per_million": 0.478, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 81.94 + }, + { + "date": "2020-06-05", + "total_cases": 3965.0, + "new_cases": 91.0, + "new_cases_smoothed": 74.429, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 118.467, + "new_cases_per_million": 2.719, + "new_cases_smoothed_per_million": 2.224, + "total_deaths_per_million": 0.478, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 76.39 + }, + { + "date": "2020-06-06", + "total_cases": 4022.0, + "new_cases": 57.0, + "new_cases_smoothed": 72.714, + "total_deaths": 16.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 120.17, + "new_cases_per_million": 1.703, + "new_cases_smoothed_per_million": 2.173, + "total_deaths_per_million": 0.478, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 76.39 + }, + { + "date": "2020-06-07", + "total_cases": 4181.0, + "new_cases": 159.0, + "new_cases_smoothed": 89.571, + "total_deaths": 17.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 124.921, + "new_cases_per_million": 4.751, + "new_cases_smoothed_per_million": 2.676, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-08", + "total_cases": 4352.0, + "new_cases": 171.0, + "new_cases_smoothed": 98.571, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 130.03, + "new_cases_per_million": 5.109, + "new_cases_smoothed_per_million": 2.945, + "total_deaths_per_million": 0.508, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 76.39 + }, + { + "date": "2020-06-09", + "total_cases": 4448.0, + "new_cases": 96.0, + "new_cases_smoothed": 104.286, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 132.898, + "new_cases_per_million": 2.868, + "new_cases_smoothed_per_million": 3.116, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-10", + "total_cases": 4547.0, + "new_cases": 99.0, + "new_cases_smoothed": 111.143, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 135.856, + "new_cases_per_million": 2.958, + "new_cases_smoothed_per_million": 3.321, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-11", + "total_cases": 4695.0, + "new_cases": 148.0, + "new_cases_smoothed": 117.286, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 140.278, + "new_cases_per_million": 4.422, + "new_cases_smoothed_per_million": 3.504, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-12", + "total_cases": 4819.0, + "new_cases": 124.0, + "new_cases_smoothed": 122.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 143.983, + "new_cases_per_million": 3.705, + "new_cases_smoothed_per_million": 3.645, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-13", + "total_cases": 4901.0, + "new_cases": 82.0, + "new_cases_smoothed": 125.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 146.433, + "new_cases_per_million": 2.45, + "new_cases_smoothed_per_million": 3.752, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 76.39 + }, + { + "date": "2020-06-14", + "total_cases": 4994.0, + "new_cases": 93.0, + "new_cases_smoothed": 116.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 149.212, + "new_cases_per_million": 2.779, + "new_cases_smoothed_per_million": 3.47, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 76.39 + }, + { + "date": "2020-06-15", + "total_cases": 5103.0, + "new_cases": 109.0, + "new_cases_smoothed": 107.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 152.469, + "new_cases_per_million": 3.257, + "new_cases_smoothed_per_million": 3.206, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 67.13 + }, + { + "date": "2020-06-16", + "total_cases": 5293.0, + "new_cases": 190.0, + "new_cases_smoothed": 120.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 158.145, + "new_cases_per_million": 5.677, + "new_cases_smoothed_per_million": 3.607, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 67.13 + }, + { + "date": "2020-06-17", + "total_cases": 5561.0, + "new_cases": 268.0, + "new_cases_smoothed": 144.857, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 166.153, + "new_cases_per_million": 8.007, + "new_cases_smoothed_per_million": 4.328, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 67.13 + }, + { + "date": "2020-06-18", + "total_cases": 5697.0, + "new_cases": 136.0, + "new_cases_smoothed": 143.143, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 170.216, + "new_cases_per_million": 4.063, + "new_cases_smoothed_per_million": 4.277, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 67.13 + }, + { + "date": "2020-06-19", + "total_cases": 5855.0, + "new_cases": 158.0, + "new_cases_smoothed": 148.0, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 174.937, + "new_cases_per_million": 4.721, + "new_cases_smoothed_per_million": 4.422, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-20", + "total_cases": 6025.0, + "new_cases": 170.0, + "new_cases_smoothed": 160.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 180.016, + "new_cases_per_million": 5.079, + "new_cases_smoothed_per_million": 4.798, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-21", + "total_cases": 6216.0, + "new_cases": 191.0, + "new_cases_smoothed": 174.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 185.723, + "new_cases_per_million": 5.707, + "new_cases_smoothed_per_million": 5.216, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-22", + "total_cases": 6358.0, + "new_cases": 142.0, + "new_cases_smoothed": 179.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 189.966, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 5.357, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-23", + "total_cases": 6500.0, + "new_cases": 142.0, + "new_cases_smoothed": 172.429, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 194.208, + "new_cases_per_million": 4.243, + "new_cases_smoothed_per_million": 5.152, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-24", + "total_cases": 6755.0, + "new_cases": 255.0, + "new_cases_smoothed": 170.571, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 201.827, + "new_cases_per_million": 7.619, + "new_cases_smoothed_per_million": 5.096, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-25", + "total_cases": 6990.0, + "new_cases": 235.0, + "new_cases_smoothed": 184.714, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 208.849, + "new_cases_per_million": 7.021, + "new_cases_smoothed_per_million": 5.519, + "total_deaths_per_million": 0.568, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 64.35 + }, + { + "date": "2020-06-26", + "total_cases": 7228.0, + "new_cases": 238.0, + "new_cases_smoothed": 196.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 215.96, + "new_cases_per_million": 7.111, + "new_cases_smoothed_per_million": 5.86, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 64.35 + }, + { + "date": "2020-06-27", + "total_cases": 7490.0, + "new_cases": 262.0, + "new_cases_smoothed": 209.286, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 223.788, + "new_cases_per_million": 7.828, + "new_cases_smoothed_per_million": 6.253, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 64.35 + }, + { + "date": "2020-06-28", + "total_cases": 7725.0, + "new_cases": 235.0, + "new_cases_smoothed": 215.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 230.809, + "new_cases_per_million": 7.021, + "new_cases_smoothed_per_million": 6.441, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 64.35 + }, + { + "date": "2020-06-29", + "total_cases": 8031.0, + "new_cases": 306.0, + "new_cases_smoothed": 239.0, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 239.952, + "new_cases_per_million": 9.143, + "new_cases_smoothed_per_million": 7.141, + "total_deaths_per_million": 0.657, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 64.35 + }, + { + "date": "2020-06-30", + "total_cases": 8298.0, + "new_cases": 267.0, + "new_cases_smoothed": 256.857, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 247.929, + "new_cases_per_million": 7.977, + "new_cases_smoothed_per_million": 7.674, + "total_deaths_per_million": 0.717, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.021, + "stringency_index": 64.35 + }, + { + "date": "2020-07-01", + "total_cases": 8627.0, + "new_cases": 329.0, + "new_cases_smoothed": 267.429, + "total_deaths": 26.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 257.759, + "new_cases_per_million": 9.83, + "new_cases_smoothed_per_million": 7.99, + "total_deaths_per_million": 0.777, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.35 + }, + { + "date": "2020-07-02", + "total_cases": 8904.0, + "new_cases": 277.0, + "new_cases_smoothed": 273.429, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 266.036, + "new_cases_per_million": 8.276, + "new_cases_smoothed_per_million": 8.17, + "total_deaths_per_million": 0.777, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.35 + }, + { + "date": "2020-07-03", + "total_cases": 9199.0, + "new_cases": 295.0, + "new_cases_smoothed": 281.571, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 274.85, + "new_cases_per_million": 8.814, + "new_cases_smoothed_per_million": 8.413, + "total_deaths_per_million": 0.807, + "new_deaths_per_million": 0.03, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 64.35 + }, + { + "date": "2020-07-04", + "total_cases": 9500.0, + "new_cases": 301.0, + "new_cases_smoothed": 287.143, + "total_deaths": 29.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 283.843, + "new_cases_per_million": 8.993, + "new_cases_smoothed_per_million": 8.579, + "total_deaths_per_million": 0.866, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 64.35 + }, + { + "date": "2020-07-05", + "total_cases": 9829.0, + "new_cases": 329.0, + "new_cases_smoothed": 300.571, + "total_deaths": 31.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 293.673, + "new_cases_per_million": 9.83, + "new_cases_smoothed_per_million": 8.981, + "total_deaths_per_million": 0.926, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 64.35 + }, + { + "date": "2020-07-06", + "total_cases": 10143.0, + "new_cases": 314.0, + "new_cases_smoothed": 301.714, + "total_deaths": 35.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 303.055, + "new_cases_per_million": 9.382, + "new_cases_smoothed_per_million": 9.015, + "total_deaths_per_million": 1.046, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 64.35 + }, + { + "date": "2020-07-07", + "total_cases": 10459.0, + "new_cases": 316.0, + "new_cases_smoothed": 308.714, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 312.496, + "new_cases_per_million": 9.442, + "new_cases_smoothed_per_million": 9.224, + "total_deaths_per_million": 1.135, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.06, + "stringency_index": 64.35 + }, + { + "date": "2020-07-08", + "total_cases": 10838.0, + "new_cases": 379.0, + "new_cases_smoothed": 315.857, + "total_deaths": 41.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 323.82, + "new_cases_per_million": 11.324, + "new_cases_smoothed_per_million": 9.437, + "total_deaths_per_million": 1.225, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.064, + "stringency_index": 64.35 + }, + { + "date": "2020-07-09", + "total_cases": 11259.0, + "new_cases": 421.0, + "new_cases_smoothed": 336.429, + "total_deaths": 47.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 336.399, + "new_cases_per_million": 12.579, + "new_cases_smoothed_per_million": 10.052, + "total_deaths_per_million": 1.404, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 64.35 + }, + { + "date": "2020-07-10", + "total_cases": 11723.0, + "new_cases": 464.0, + "new_cases_smoothed": 360.571, + "total_deaths": 52.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 350.262, + "new_cases_per_million": 13.863, + "new_cases_smoothed_per_million": 10.773, + "total_deaths_per_million": 1.554, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 64.35 + }, + { + "date": "2020-07-11", + "total_cases": 12206.0, + "new_cases": 483.0, + "new_cases_smoothed": 386.571, + "total_deaths": 55.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 364.694, + "new_cases_per_million": 14.431, + "new_cases_smoothed_per_million": 11.55, + "total_deaths_per_million": 1.643, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 64.35 + }, + { + "date": "2020-07-12", + "total_cases": 12513.0, + "new_cases": 307.0, + "new_cases_smoothed": 383.429, + "total_deaths": 57.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 373.866, + "new_cases_per_million": 9.173, + "new_cases_smoothed_per_million": 11.456, + "total_deaths_per_million": 1.703, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 64.35 + }, + { + "date": "2020-07-13", + "total_cases": 13193.0, + "new_cases": 680.0, + "new_cases_smoothed": 435.714, + "total_deaths": 61.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 394.183, + "new_cases_per_million": 20.317, + "new_cases_smoothed_per_million": 13.018, + "total_deaths_per_million": 1.823, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 67.59 + }, + { + "date": "2020-07-14", + "total_cases": 13872.0, + "new_cases": 679.0, + "new_cases_smoothed": 487.571, + "total_deaths": 64.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 414.471, + "new_cases_per_million": 20.287, + "new_cases_smoothed_per_million": 14.568, + "total_deaths_per_million": 1.912, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.111, + "stringency_index": 67.59 + }, + { + "date": "2020-07-15", + "total_cases": 14293.0, + "new_cases": 421.0, + "new_cases_smoothed": 493.571, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 427.049, + "new_cases_per_million": 12.579, + "new_cases_smoothed_per_million": 14.747, + "total_deaths_per_million": 2.032, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-16", + "total_cases": 14787.0, + "new_cases": 494.0, + "new_cases_smoothed": 504.0, + "total_deaths": 72.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 441.809, + "new_cases_per_million": 14.76, + "new_cases_smoothed_per_million": 15.059, + "total_deaths_per_million": 2.151, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 67.59 + }, + { + "date": "2020-07-17", + "total_cases": 15349.0, + "new_cases": 562.0, + "new_cases_smoothed": 518.0, + "total_deaths": 76.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 458.601, + "new_cases_per_million": 16.792, + "new_cases_smoothed_per_million": 15.477, + "total_deaths_per_million": 2.271, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.102, + "stringency_index": 67.59 + }, + { + "date": "2020-07-18", + "total_cases": 15896.0, + "new_cases": 547.0, + "new_cases_smoothed": 527.143, + "total_deaths": 80.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 474.944, + "new_cases_per_million": 16.343, + "new_cases_smoothed_per_million": 15.75, + "total_deaths_per_million": 2.39, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.107, + "stringency_index": 67.59 + }, + { + "date": "2020-07-19", + "total_cases": 16429.0, + "new_cases": 533.0, + "new_cases_smoothed": 559.429, + "total_deaths": 84.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 490.869, + "new_cases_per_million": 15.925, + "new_cases_smoothed_per_million": 16.715, + "total_deaths_per_million": 2.51, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-20", + "total_cases": 16966.0, + "new_cases": 537.0, + "new_cases_smoothed": 539.0, + "total_deaths": 88.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 506.914, + "new_cases_per_million": 16.045, + "new_cases_smoothed_per_million": 16.104, + "total_deaths_per_million": 2.629, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-21", + "total_cases": 17590.0, + "new_cases": 624.0, + "new_cases_smoothed": 531.143, + "total_deaths": 92.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 525.558, + "new_cases_per_million": 18.644, + "new_cases_smoothed_per_million": 15.87, + "total_deaths_per_million": 2.749, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 67.59 + }, + { + "date": "2020-07-22", + "total_cases": 18171.0, + "new_cases": 581.0, + "new_cases_smoothed": 554.0, + "total_deaths": 96.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 542.917, + "new_cases_per_million": 17.359, + "new_cases_smoothed_per_million": 16.553, + "total_deaths_per_million": 2.868, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 67.59 + }, + { + "date": "2020-07-23", + "total_cases": 18531.0, + "new_cases": 360.0, + "new_cases_smoothed": 534.857, + "total_deaths": 99.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 553.673, + "new_cases_per_million": 10.756, + "new_cases_smoothed_per_million": 15.981, + "total_deaths_per_million": 2.958, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-24", + "total_cases": 18986.0, + "new_cases": 455.0, + "new_cases_smoothed": 519.571, + "total_deaths": 103.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 567.268, + "new_cases_per_million": 13.595, + "new_cases_smoothed_per_million": 15.524, + "total_deaths_per_million": 3.077, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-25", + "total_cases": 19653.0, + "new_cases": 667.0, + "new_cases_smoothed": 536.714, + "total_deaths": 107.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 587.197, + "new_cases_per_million": 19.929, + "new_cases_smoothed_per_million": 16.036, + "total_deaths_per_million": 3.197, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 67.59 + }, + { + "date": "2020-07-26", + "total_cases": 20226.0, + "new_cases": 573.0, + "new_cases_smoothed": 542.429, + "total_deaths": 112.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 604.317, + "new_cases_per_million": 17.12, + "new_cases_smoothed_per_million": 16.207, + "total_deaths_per_million": 3.346, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 67.59 + }, + { + "date": "2020-07-27", + "total_cases": 20820.0, + "new_cases": 594.0, + "new_cases_smoothed": 550.571, + "total_deaths": 117.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 622.064, + "new_cases_per_million": 17.748, + "new_cases_smoothed_per_million": 16.45, + "total_deaths_per_million": 3.496, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 69.44 + }, + { + "date": "2020-07-28", + "total_cases": 21506.0, + "new_cases": 686.0, + "new_cases_smoothed": 559.429, + "total_deaths": 122.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 642.561, + "new_cases_per_million": 20.496, + "new_cases_smoothed_per_million": 16.715, + "total_deaths_per_million": 3.645, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.128, + "stringency_index": 69.44 + }, + { + "date": "2020-07-29", + "total_cases": 22169.0, + "new_cases": 663.0, + "new_cases_smoothed": 571.143, + "total_deaths": 127.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 662.37, + "new_cases_per_million": 19.809, + "new_cases_smoothed_per_million": 17.065, + "total_deaths_per_million": 3.795, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.132, + "stringency_index": 69.44 + }, + { + "date": "2020-07-30", + "total_cases": 22872.0, + "new_cases": 703.0, + "new_cases_smoothed": 620.143, + "total_deaths": 132.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 683.375, + "new_cases_per_million": 21.004, + "new_cases_smoothed_per_million": 18.529, + "total_deaths_per_million": 3.944, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 69.44 + }, + { + "date": "2020-07-31", + "total_cases": 23558.0, + "new_cases": 686.0, + "new_cases_smoothed": 653.143, + "total_deaths": 137.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 703.871, + "new_cases_per_million": 20.496, + "new_cases_smoothed_per_million": 19.515, + "total_deaths_per_million": 4.093, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.145, + "stringency_index": 69.44 + }, + { + "date": "2020-08-01", + "total_cases": 24304.0, + "new_cases": 746.0, + "new_cases_smoothed": 664.429, + "total_deaths": 143.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 726.16, + "new_cases_per_million": 22.289, + "new_cases_smoothed_per_million": 19.852, + "total_deaths_per_million": 4.273, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.154, + "stringency_index": 69.44 + }, + { + "date": "2020-08-02", + "total_cases": 25040.0, + "new_cases": 736.0, + "new_cases_smoothed": 687.714, + "total_deaths": 149.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 748.151, + "new_cases_per_million": 21.99, + "new_cases_smoothed_per_million": 20.548, + "total_deaths_per_million": 4.452, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 69.44 + }, + { + "date": "2020-08-03", + "total_cases": 25828.0, + "new_cases": 788.0, + "new_cases_smoothed": 715.429, + "total_deaths": 155.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 771.695, + "new_cases_per_million": 23.544, + "new_cases_smoothed_per_million": 21.376, + "total_deaths_per_million": 4.631, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 69.44 + }, + { + "date": "2020-08-04", + "total_cases": 26550.0, + "new_cases": 722.0, + "new_cases_smoothed": 720.571, + "total_deaths": 161.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 793.267, + "new_cases_per_million": 21.572, + "new_cases_smoothed_per_million": 21.529, + "total_deaths_per_million": 4.81, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 69.44 + }, + { + "date": "2020-08-05", + "total_cases": 27314.0, + "new_cases": 764.0, + "new_cases_smoothed": 735.0, + "total_deaths": 167.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 816.094, + "new_cases_per_million": 22.827, + "new_cases_smoothed_per_million": 21.96, + "total_deaths_per_million": 4.99, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.171, + "stringency_index": 69.44 + }, + { + "date": "2020-08-06", + "total_cases": 28069.0, + "new_cases": 755.0, + "new_cases_smoothed": 742.429, + "total_deaths": 173.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 838.652, + "new_cases_per_million": 22.558, + "new_cases_smoothed_per_million": 22.182, + "total_deaths_per_million": 5.169, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 69.44 + }, + { + "date": "2020-08-07", + "total_cases": 28809.0, + "new_cases": 740.0, + "new_cases_smoothed": 750.143, + "total_deaths": 179.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 860.762, + "new_cases_per_million": 22.11, + "new_cases_smoothed_per_million": 22.413, + "total_deaths_per_million": 5.348, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 69.44 + }, + { + "date": "2020-08-08", + "total_cases": 29459.0, + "new_cases": 650.0, + "new_cases_smoothed": 736.429, + "total_deaths": 185.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 880.182, + "new_cases_per_million": 19.421, + "new_cases_smoothed_per_million": 22.003, + "total_deaths_per_million": 5.527, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 69.44 + }, + { + "date": "2020-08-09", + "total_cases": 30197.0, + "new_cases": 738.0, + "new_cases_smoothed": 736.714, + "total_deaths": 190.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 902.233, + "new_cases_per_million": 22.05, + "new_cases_smoothed_per_million": 22.012, + "total_deaths_per_million": 5.677, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 69.44 + }, + { + "date": "2020-08-10", + "total_cases": 30820.0, + "new_cases": 623.0, + "new_cases_smoothed": 713.143, + "total_deaths": 196.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 920.847, + "new_cases_per_million": 18.614, + "new_cases_smoothed_per_million": 21.307, + "total_deaths_per_million": 5.856, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 69.44 + }, + { + "date": "2020-08-11", + "total_cases": 31545.0, + "new_cases": 725.0, + "new_cases_smoothed": 713.571, + "total_deaths": 202.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 942.508, + "new_cases_per_million": 21.662, + "new_cases_smoothed_per_million": 21.32, + "total_deaths_per_million": 6.035, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 69.44 + }, + { + "date": "2020-08-12", + "total_cases": 32215.0, + "new_cases": 670.0, + "new_cases_smoothed": 700.143, + "total_deaths": 208.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 962.527, + "new_cases_per_million": 20.018, + "new_cases_smoothed_per_million": 20.919, + "total_deaths_per_million": 6.215, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 69.44 + }, + { + "date": "2020-08-13", + "total_cases": 32837.0, + "new_cases": 622.0, + "new_cases_smoothed": 681.143, + "total_deaths": 213.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 981.111, + "new_cases_per_million": 18.584, + "new_cases_smoothed_per_million": 20.351, + "total_deaths_per_million": 6.364, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.171, + "stringency_index": 69.44 + }, + { + "date": "2020-08-14", + "total_cases": 33561.0, + "new_cases": 724.0, + "new_cases_smoothed": 678.857, + "total_deaths": 218.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1002.743, + "new_cases_per_million": 21.632, + "new_cases_smoothed_per_million": 20.283, + "total_deaths_per_million": 6.513, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 69.44 + }, + { + "date": "2020-08-15", + "total_cases": 34251.0, + "new_cases": 690.0, + "new_cases_smoothed": 684.571, + "total_deaths": 223.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1023.359, + "new_cases_per_million": 20.616, + "new_cases_smoothed_per_million": 20.454, + "total_deaths_per_million": 6.663, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 74.07 + }, + { + "date": "2020-08-16", + "total_cases": 34944.0, + "new_cases": 693.0, + "new_cases_smoothed": 678.143, + "total_deaths": 228.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1044.064, + "new_cases_per_million": 20.706, + "new_cases_smoothed_per_million": 20.262, + "total_deaths_per_million": 6.812, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 74.07 + }, + { + "date": "2020-08-17", + "total_cases": 34944.0, + "new_cases": 0.0, + "new_cases_smoothed": 589.143, + "total_deaths": 228.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 1044.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 17.603, + "total_deaths_per_million": 6.812, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.137, + "stringency_index": 74.07 + }, + { + "date": "2020-08-18", + "total_cases": 36100.0, + "new_cases": 1156.0, + "new_cases_smoothed": 650.714, + "total_deaths": 240.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1078.604, + "new_cases_per_million": 34.539, + "new_cases_smoothed_per_million": 19.442, + "total_deaths_per_million": 7.171, + "new_deaths_per_million": 0.359, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 74.07 + }, + { + "date": "2020-08-19", + "total_cases": 36760.0, + "new_cases": 660.0, + "new_cases_smoothed": 649.286, + "total_deaths": 245.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1098.323, + "new_cases_per_million": 19.72, + "new_cases_smoothed_per_million": 19.399, + "total_deaths_per_million": 7.32, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 74.07 + }, + { + "date": "2020-08-20", + "total_cases": 37366.0, + "new_cases": 606.0, + "new_cases_smoothed": 647.0, + "total_deaths": 250.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1116.429, + "new_cases_per_million": 18.106, + "new_cases_smoothed_per_million": 19.331, + "total_deaths_per_million": 7.47, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 68.52 + }, + { + "date": "2020-08-21", + "total_cases": 37825.0, + "new_cases": 459.0, + "new_cases_smoothed": 609.143, + "total_deaths": 256.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 1130.144, + "new_cases_per_million": 13.714, + "new_cases_smoothed_per_million": 18.2, + "total_deaths_per_million": 7.649, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.162, + "stringency_index": 68.52 + }, + { + "date": "2020-08-22", + "total_cases": 38231.0, + "new_cases": 406.0, + "new_cases_smoothed": 568.571, + "total_deaths": 262.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 1142.274, + "new_cases_per_million": 12.131, + "new_cases_smoothed_per_million": 16.988, + "total_deaths_per_million": 7.828, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.166, + "stringency_index": 68.52 + }, + { + "date": "2020-08-23", + "total_cases": 38698.0, + "new_cases": 467.0, + "new_cases_smoothed": 536.286, + "total_deaths": 269.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1156.227, + "new_cases_per_million": 13.953, + "new_cases_smoothed_per_million": 16.023, + "total_deaths_per_million": 8.037, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.175, + "stringency_index": 68.52 + }, + { + "date": "2020-08-24", + "total_cases": 38946.0, + "new_cases": 248.0, + "new_cases_smoothed": 571.714, + "total_deaths": 273.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1163.637, + "new_cases_per_million": 7.41, + "new_cases_smoothed_per_million": 17.082, + "total_deaths_per_million": 8.157, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 68.52 + }, + { + "date": "2020-08-25", + "total_cases": 39506.0, + "new_cases": 560.0, + "new_cases_smoothed": 486.571, + "total_deaths": 282.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1180.369, + "new_cases_per_million": 16.732, + "new_cases_smoothed_per_million": 14.538, + "total_deaths_per_million": 8.426, + "new_deaths_per_million": 0.269, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 68.52 + }, + { + "date": "2020-08-26", + "total_cases": 39790.0, + "new_cases": 284.0, + "new_cases_smoothed": 432.857, + "total_deaths": 289.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1188.854, + "new_cases_per_million": 8.485, + "new_cases_smoothed_per_million": 12.933, + "total_deaths_per_million": 8.635, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 68.52 + }, + { + "date": "2020-08-27", + "total_cases": 40195.0, + "new_cases": 405.0, + "new_cases_smoothed": 404.143, + "total_deaths": 295.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 1200.955, + "new_cases_per_million": 12.101, + "new_cases_smoothed_per_million": 12.075, + "total_deaths_per_million": 8.814, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 68.52 + }, + { + "date": "2020-08-28", + "total_cases": 40613.0, + "new_cases": 418.0, + "new_cases_smoothed": 398.286, + "total_deaths": 300.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1213.444, + "new_cases_per_million": 12.489, + "new_cases_smoothed_per_million": 11.9, + "total_deaths_per_million": 8.963, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 68.52 + }, + { + "date": "2020-08-29", + "total_cases": 40953.0, + "new_cases": 340.0, + "new_cases_smoothed": 388.857, + "total_deaths": 305.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 1223.603, + "new_cases_per_million": 10.159, + "new_cases_smoothed_per_million": 11.618, + "total_deaths_per_million": 9.113, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.184, + "stringency_index": 68.52 + }, + { + "date": "2020-08-30", + "total_cases": 41303.0, + "new_cases": 350.0, + "new_cases_smoothed": 372.143, + "total_deaths": 311.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 1234.06, + "new_cases_per_million": 10.457, + "new_cases_smoothed_per_million": 11.119, + "total_deaths_per_million": 9.292, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 68.52 + }, + { + "date": "2020-08-31", + "total_cases": 41651.0, + "new_cases": 348.0, + "new_cases_smoothed": 386.429, + "total_deaths": 317.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1244.458, + "new_cases_per_million": 10.398, + "new_cases_smoothed_per_million": 11.546, + "total_deaths_per_million": 9.471, + "new_deaths_per_million": 0.179, + "new_deaths_smoothed_per_million": 0.188, + "stringency_index": 68.52 + }, + { + "date": "2020-09-01", + "total_cases": 41994.0, + "new_cases": 343.0, + "new_cases_smoothed": 355.429, + "total_deaths": 322.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1254.706, + "new_cases_per_million": 10.248, + "new_cases_smoothed_per_million": 10.62, + "total_deaths_per_million": 9.621, + "new_deaths_per_million": 0.149, + "new_deaths_smoothed_per_million": 0.171 + }, + { + "date": "2020-09-02", + "total_cases": 42370.0, + "new_cases": 376.0, + "new_cases_smoothed": 368.571, + "total_deaths": 326.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 1265.94, + "new_cases_per_million": 11.234, + "new_cases_smoothed_per_million": 11.012, + "total_deaths_per_million": 9.74, + "new_deaths_per_million": 0.12, + "new_deaths_smoothed_per_million": 0.158 + }, + { + "date": "2020-09-03", + "total_cases": 42540.0, + "new_cases": 170.0, + "new_cases_smoothed": 335.0, + "total_deaths": 329.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 1271.019, + "new_cases_per_million": 5.079, + "new_cases_smoothed_per_million": 10.009, + "total_deaths_per_million": 9.83, + "new_deaths_per_million": 0.09, + "new_deaths_smoothed_per_million": 0.145 + }, + { + "date": "2020-09-04", + "total_cases": 42905.0, + "new_cases": 365.0, + "new_cases_smoothed": 327.429, + "total_deaths": 336.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 1281.925, + "new_cases_per_million": 10.906, + "new_cases_smoothed_per_million": 9.783, + "total_deaths_per_million": 10.039, + "new_deaths_per_million": 0.209, + "new_deaths_smoothed_per_million": 0.154 + }, + { + "date": "2020-09-05", + "total_cases": 42998.0, + "new_cases": 93.0, + "new_cases_smoothed": 292.143, + "total_deaths": 338.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 1284.704, + "new_cases_per_million": 2.779, + "new_cases_smoothed_per_million": 8.729, + "total_deaths_per_million": 10.099, + "new_deaths_per_million": 0.06, + "new_deaths_smoothed_per_million": 0.141 + } + ] + }, + "VAT": { + "continent": "Europe", + "location": "Vatican", + "population": 809.0, + "life_expectancy": 75.12, + "data": [ + { + "date": "2020-03-07", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 1236.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-03-13", + "new_cases_smoothed": 0.143, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 176.585, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-14", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-15", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1236.094, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-27", + "total_cases": 5.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6180.47, + "new_cases_per_million": 4944.376, + "new_cases_smoothed_per_million": 706.339, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6180.47, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 706.339, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-29", + "total_cases": 6.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 882.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-30", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 882.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-03-31", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 882.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 882.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 882.924, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7416.564, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-04", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8652.658, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-05", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8652.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-06", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8652.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-07", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8652.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-08", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8652.658, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-09", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-10", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-11", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-12", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-13", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-14", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-15", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-16", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-17", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-18", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-19", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-20", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9888.752, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-21", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-22", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-23", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-24", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-25", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-26", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11124.845, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12360.939, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13597.033, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 12.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 1236.094, + "new_cases_smoothed_per_million": 353.17, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 176.585, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 12.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14833.127, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "VEN": { + "continent": "South America", + "location": "Venezuela", + "population": 28435943.0, + "population_density": 36.253, + "median_age": 29.0, + "aged_65_older": 6.614, + "aged_70_older": 3.915, + "gdp_per_capita": 16745.022, + "cardiovasc_death_rate": 204.85, + "diabetes_prevalence": 6.47, + "hospital_beds_per_thousand": 0.8, + "life_expectancy": 72.06, + "data": [ + { + "date": "2020-03-15", + "total_cases": 10.0, + "new_cases": 10.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.352, + "new_cases_per_million": 0.352, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-03-16", + "total_cases": 15.0, + "new_cases": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.528, + "new_cases_per_million": 0.176, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 72.22 + }, + { + "date": "2020-03-17", + "total_cases": 33.0, + "new_cases": 18.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.161, + "new_cases_per_million": 0.633, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 79.63 + }, + { + "date": "2020-03-18", + "total_cases": 33.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.161, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-19", + "total_cases": 33.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.161, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-20", + "total_cases": 33.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 1.161, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-21", + "total_cases": 36.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.266, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-22", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.266, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.131, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-23", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.266, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-24", + "total_cases": 84.0, + "new_cases": 48.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.954, + "new_cases_per_million": 1.688, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-25", + "total_cases": 91.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.2, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.291, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-26", + "total_cases": 106.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.728, + "new_cases_per_million": 0.528, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-03-27", + "total_cases": 107.0, + "new_cases": 1.0, + "new_cases_smoothed": 10.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.763, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-03-28", + "total_cases": 119.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.185, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-03-29", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-03-30", + "total_cases": 119.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.185, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.417, + "total_deaths_per_million": 0.035, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-03-31", + "total_cases": 135.0, + "new_cases": 16.0, + "new_cases_smoothed": 7.286, + "total_deaths": 3.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.748, + "new_cases_per_million": 0.563, + "new_cases_smoothed_per_million": 0.256, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 82.41 + }, + { + "date": "2020-04-01", + "total_cases": 135.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 4.748, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 82.41 + }, + { + "date": "2020-04-02", + "total_cases": 143.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.029, + "new_cases_per_million": 0.281, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 82.41 + }, + { + "date": "2020-04-03", + "total_cases": 144.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.064, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 82.41 + }, + { + "date": "2020-04-04", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.126, + "total_deaths_per_million": 0.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 82.41 + }, + { + "date": "2020-04-05", + "total_cases": 144.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.571, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.064, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.126, + "total_deaths_per_million": 0.176, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-06", + "total_cases": 148.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.143, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.205, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.146, + "total_deaths_per_million": 0.176, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-07", + "total_cases": 159.0, + "new_cases": 11.0, + "new_cases_smoothed": 3.429, + "total_deaths": 5.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 5.592, + "new_cases_per_million": 0.387, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.176, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 82.41 + }, + { + "date": "2020-04-08", + "total_cases": 166.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.429, + "total_deaths": 7.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 5.838, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.246, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-09", + "total_cases": 167.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 5.873, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.121, + "total_deaths_per_million": 0.281, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 82.41 + }, + { + "date": "2020-04-10", + "total_cases": 171.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6.014, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 82.41 + }, + { + "date": "2020-04-11", + "total_cases": 175.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6.154, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 82.41 + }, + { + "date": "2020-04-12", + "total_cases": 175.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.156, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-13", + "total_cases": 181.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.365, + "new_cases_per_million": 0.211, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-14", + "total_cases": 189.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 6.647, + "new_cases_per_million": 0.281, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 82.41 + }, + { + "date": "2020-04-15", + "total_cases": 193.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 6.787, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 82.41 + }, + { + "date": "2020-04-16", + "total_cases": 197.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.286, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 6.928, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-17", + "total_cases": 204.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.174, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.166, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-18", + "total_cases": 227.0, + "new_cases": 23.0, + "new_cases_smoothed": 7.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.983, + "new_cases_per_million": 0.809, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-19", + "total_cases": 227.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.429, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.983, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.261, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-20", + "total_cases": 256.0, + "new_cases": 29.0, + "new_cases_smoothed": 10.714, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.003, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 0.377, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-21", + "total_cases": 256.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.571, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 9.003, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.337, + "total_deaths_per_million": 0.317, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-22", + "total_cases": 285.0, + "new_cases": 29.0, + "new_cases_smoothed": 13.143, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.023, + "new_cases_per_million": 1.02, + "new_cases_smoothed_per_million": 0.462, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-23", + "total_cases": 288.0, + "new_cases": 3.0, + "new_cases_smoothed": 13.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.128, + "new_cases_per_million": 0.106, + "new_cases_smoothed_per_million": 0.457, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-24", + "total_cases": 298.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 10.48, + "new_cases_per_million": 0.352, + "new_cases_smoothed_per_million": 0.472, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-25", + "total_cases": 318.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.183, + "new_cases_per_million": 0.703, + "new_cases_smoothed_per_million": 0.457, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-26", + "total_cases": 323.0, + "new_cases": 5.0, + "new_cases_smoothed": 13.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.359, + "new_cases_per_million": 0.176, + "new_cases_smoothed_per_million": 0.482, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-27", + "total_cases": 325.0, + "new_cases": 2.0, + "new_cases_smoothed": 9.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.429, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.347, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-28", + "total_cases": 329.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 11.57, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.367, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 82.41 + }, + { + "date": "2020-04-29", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.57, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.221, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-04-30", + "total_cases": 331.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.64, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-01", + "total_cases": 333.0, + "new_cases": 2.0, + "new_cases_smoothed": 5.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.711, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.176, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-02", + "total_cases": 335.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.781, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-03", + "total_cases": 345.0, + "new_cases": 10.0, + "new_cases_smoothed": 3.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.133, + "new_cases_per_million": 0.352, + "new_cases_smoothed_per_million": 0.111, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-04", + "total_cases": 357.0, + "new_cases": 12.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.555, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-05", + "total_cases": 361.0, + "new_cases": 4.0, + "new_cases_smoothed": 4.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.695, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.161, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-06", + "total_cases": 367.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.429, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 12.906, + "new_cases_per_million": 0.211, + "new_cases_smoothed_per_million": 0.191, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-07", + "total_cases": 379.0, + "new_cases": 12.0, + "new_cases_smoothed": 6.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.328, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 0.241, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-08", + "total_cases": 381.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.399, + "new_cases_per_million": 0.07, + "new_cases_smoothed_per_million": 0.241, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-09", + "total_cases": 388.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.645, + "new_cases_per_million": 0.246, + "new_cases_smoothed_per_million": 0.266, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-10", + "total_cases": 402.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.137, + "new_cases_per_million": 0.492, + "new_cases_smoothed_per_million": 0.286, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-11", + "total_cases": 414.0, + "new_cases": 12.0, + "new_cases_smoothed": 8.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.559, + "new_cases_per_million": 0.422, + "new_cases_smoothed_per_million": 0.286, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-12", + "total_cases": 422.0, + "new_cases": 8.0, + "new_cases_smoothed": 8.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.84, + "new_cases_per_million": 0.281, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 82.41 + }, + { + "date": "2020-05-13", + "total_cases": 423.0, + "new_cases": 1.0, + "new_cases_smoothed": 8.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.876, + "new_cases_per_million": 0.035, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-14", + "total_cases": 440.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.473, + "new_cases_per_million": 0.598, + "new_cases_smoothed_per_million": 0.306, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-15", + "total_cases": 455.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.001, + "new_cases_per_million": 0.528, + "new_cases_smoothed_per_million": 0.372, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-16", + "total_cases": 459.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 16.142, + "new_cases_per_million": 0.141, + "new_cases_smoothed_per_million": 0.357, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-17", + "total_cases": 504.0, + "new_cases": 45.0, + "new_cases_smoothed": 14.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.724, + "new_cases_per_million": 1.583, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-18", + "total_cases": 541.0, + "new_cases": 37.0, + "new_cases_smoothed": 18.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.025, + "new_cases_per_million": 1.301, + "new_cases_smoothed_per_million": 0.638, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-19", + "total_cases": 618.0, + "new_cases": 77.0, + "new_cases_smoothed": 28.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.733, + "new_cases_per_million": 2.708, + "new_cases_smoothed_per_million": 0.985, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-20", + "total_cases": 749.0, + "new_cases": 131.0, + "new_cases_smoothed": 46.571, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.34, + "new_cases_per_million": 4.607, + "new_cases_smoothed_per_million": 1.638, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-21", + "total_cases": 824.0, + "new_cases": 75.0, + "new_cases_smoothed": 54.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 28.977, + "new_cases_per_million": 2.638, + "new_cases_smoothed_per_million": 1.929, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-22", + "total_cases": 882.0, + "new_cases": 58.0, + "new_cases_smoothed": 61.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.017, + "new_cases_per_million": 2.04, + "new_cases_smoothed_per_million": 2.145, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-23", + "total_cases": 944.0, + "new_cases": 62.0, + "new_cases_smoothed": 69.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.197, + "new_cases_per_million": 2.18, + "new_cases_smoothed_per_million": 2.437, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-24", + "total_cases": 944.0, + "new_cases": 0.0, + "new_cases_smoothed": 62.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 33.197, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.21, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-25", + "total_cases": 1121.0, + "new_cases": 177.0, + "new_cases_smoothed": 82.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 39.422, + "new_cases_per_million": 6.225, + "new_cases_smoothed_per_million": 2.914, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-26", + "total_cases": 1177.0, + "new_cases": 56.0, + "new_cases_smoothed": 79.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.391, + "new_cases_per_million": 1.969, + "new_cases_smoothed_per_million": 2.808, + "total_deaths_per_million": 0.352, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 85.19 + }, + { + "date": "2020-05-27", + "total_cases": 1211.0, + "new_cases": 34.0, + "new_cases_smoothed": 66.0, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.587, + "new_cases_per_million": 1.196, + "new_cases_smoothed_per_million": 2.321, + "total_deaths_per_million": 0.387, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 85.19 + }, + { + "date": "2020-05-28", + "total_cases": 1245.0, + "new_cases": 34.0, + "new_cases_smoothed": 60.143, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 43.783, + "new_cases_per_million": 1.196, + "new_cases_smoothed_per_million": 2.115, + "total_deaths_per_million": 0.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 85.19 + }, + { + "date": "2020-05-29", + "total_cases": 1327.0, + "new_cases": 82.0, + "new_cases_smoothed": 63.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 46.666, + "new_cases_per_million": 2.884, + "new_cases_smoothed_per_million": 2.236, + "total_deaths_per_million": 0.387, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.005, + "stringency_index": 85.19 + }, + { + "date": "2020-05-30", + "total_cases": 1369.0, + "new_cases": 42.0, + "new_cases_smoothed": 60.714, + "total_deaths": 14.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 48.143, + "new_cases_per_million": 1.477, + "new_cases_smoothed_per_million": 2.135, + "total_deaths_per_million": 0.492, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 85.19 + }, + { + "date": "2020-05-31", + "total_cases": 1459.0, + "new_cases": 90.0, + "new_cases_smoothed": 73.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 51.308, + "new_cases_per_million": 3.165, + "new_cases_smoothed_per_million": 2.587, + "total_deaths_per_million": 0.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 85.19 + }, + { + "date": "2020-06-01", + "total_cases": 1510.0, + "new_cases": 51.0, + "new_cases_smoothed": 55.571, + "total_deaths": 14.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 53.102, + "new_cases_per_million": 1.794, + "new_cases_smoothed_per_million": 1.954, + "total_deaths_per_million": 0.492, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 85.19 + }, + { + "date": "2020-06-02", + "total_cases": 1662.0, + "new_cases": 152.0, + "new_cases_smoothed": 69.286, + "total_deaths": 17.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 58.447, + "new_cases_per_million": 5.345, + "new_cases_smoothed_per_million": 2.437, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 81.48 + }, + { + "date": "2020-06-03", + "total_cases": 1819.0, + "new_cases": 157.0, + "new_cases_smoothed": 86.857, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 63.968, + "new_cases_per_million": 5.521, + "new_cases_smoothed_per_million": 3.054, + "total_deaths_per_million": 0.633, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 81.48 + }, + { + "date": "2020-06-04", + "total_cases": 1952.0, + "new_cases": 133.0, + "new_cases_smoothed": 101.0, + "total_deaths": 20.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 68.646, + "new_cases_per_million": 4.677, + "new_cases_smoothed_per_million": 3.552, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 81.48 + }, + { + "date": "2020-06-05", + "total_cases": 2087.0, + "new_cases": 135.0, + "new_cases_smoothed": 108.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 73.393, + "new_cases_per_million": 4.748, + "new_cases_smoothed_per_million": 3.818, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 81.48 + }, + { + "date": "2020-06-06", + "total_cases": 2145.0, + "new_cases": 58.0, + "new_cases_smoothed": 110.857, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 75.433, + "new_cases_per_million": 2.04, + "new_cases_smoothed_per_million": 3.898, + "total_deaths_per_million": 0.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.03, + "stringency_index": 81.48 + }, + { + "date": "2020-06-07", + "total_cases": 2316.0, + "new_cases": 171.0, + "new_cases_smoothed": 122.429, + "total_deaths": 22.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 81.446, + "new_cases_per_million": 6.014, + "new_cases_smoothed_per_million": 4.305, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 81.48 + }, + { + "date": "2020-06-08", + "total_cases": 2377.0, + "new_cases": 61.0, + "new_cases_smoothed": 123.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 83.591, + "new_cases_per_million": 2.145, + "new_cases_smoothed_per_million": 4.356, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 81.48 + }, + { + "date": "2020-06-09", + "total_cases": 2473.0, + "new_cases": 96.0, + "new_cases_smoothed": 115.857, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 86.967, + "new_cases_per_million": 3.376, + "new_cases_smoothed_per_million": 4.074, + "total_deaths_per_million": 0.774, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 81.48 + }, + { + "date": "2020-06-10", + "total_cases": 2632.0, + "new_cases": 159.0, + "new_cases_smoothed": 116.143, + "total_deaths": 23.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 92.559, + "new_cases_per_million": 5.592, + "new_cases_smoothed_per_million": 4.084, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 81.48 + }, + { + "date": "2020-06-11", + "total_cases": 2738.0, + "new_cases": 106.0, + "new_cases_smoothed": 112.286, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 96.287, + "new_cases_per_million": 3.728, + "new_cases_smoothed_per_million": 3.949, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 81.48 + }, + { + "date": "2020-06-12", + "total_cases": 2814.0, + "new_cases": 76.0, + "new_cases_smoothed": 103.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 98.959, + "new_cases_per_million": 2.673, + "new_cases_smoothed_per_million": 3.652, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 81.48 + }, + { + "date": "2020-06-13", + "total_cases": 2879.0, + "new_cases": 65.0, + "new_cases_smoothed": 104.857, + "total_deaths": 23.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 101.245, + "new_cases_per_million": 2.286, + "new_cases_smoothed_per_million": 3.687, + "total_deaths_per_million": 0.809, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 81.48 + }, + { + "date": "2020-06-14", + "total_cases": 2904.0, + "new_cases": 25.0, + "new_cases_smoothed": 84.0, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 102.124, + "new_cases_per_million": 0.879, + "new_cases_smoothed_per_million": 2.954, + "total_deaths_per_million": 0.844, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 81.48 + }, + { + "date": "2020-06-15", + "total_cases": 2978.0, + "new_cases": 74.0, + "new_cases_smoothed": 85.857, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 104.727, + "new_cases_per_million": 2.602, + "new_cases_smoothed_per_million": 3.019, + "total_deaths_per_million": 0.879, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 72.22 + }, + { + "date": "2020-06-16", + "total_cases": 3062.0, + "new_cases": 84.0, + "new_cases_smoothed": 84.143, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 107.681, + "new_cases_per_million": 2.954, + "new_cases_smoothed_per_million": 2.959, + "total_deaths_per_million": 0.914, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 72.22 + }, + { + "date": "2020-06-17", + "total_cases": 3150.0, + "new_cases": 88.0, + "new_cases_smoothed": 74.0, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 110.775, + "new_cases_per_million": 3.095, + "new_cases_smoothed_per_million": 2.602, + "total_deaths_per_million": 0.95, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 72.22 + }, + { + "date": "2020-06-18", + "new_cases_smoothed": 58.857, + "new_deaths_smoothed": 0.571, + "new_cases_smoothed_per_million": 2.07, + "new_deaths_smoothed_per_million": 0.02, + "stringency_index": 72.22 + }, + { + "date": "2020-06-19", + "total_cases": 3484.0, + "new_cases": 334.0, + "new_cases_smoothed": 95.714, + "total_deaths": 28.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 122.521, + "new_cases_per_million": 11.746, + "new_cases_smoothed_per_million": 3.366, + "total_deaths_per_million": 0.985, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.025, + "stringency_index": 72.22 + }, + { + "date": "2020-06-20", + "total_cases": 3591.0, + "new_cases": 107.0, + "new_cases_smoothed": 101.714, + "total_deaths": 30.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 126.284, + "new_cases_per_million": 3.763, + "new_cases_smoothed_per_million": 3.577, + "total_deaths_per_million": 1.055, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.035, + "stringency_index": 72.22 + }, + { + "date": "2020-06-21", + "total_cases": 3790.0, + "new_cases": 199.0, + "new_cases_smoothed": 126.571, + "total_deaths": 33.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 133.282, + "new_cases_per_million": 6.998, + "new_cases_smoothed_per_million": 4.451, + "total_deaths_per_million": 1.161, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 72.22 + }, + { + "date": "2020-06-22", + "total_cases": 3918.0, + "new_cases": 128.0, + "new_cases_smoothed": 134.286, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 137.783, + "new_cases_per_million": 4.501, + "new_cases_smoothed_per_million": 4.722, + "total_deaths_per_million": 1.161, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 87.04 + }, + { + "date": "2020-06-23", + "total_cases": 4048.0, + "new_cases": 130.0, + "new_cases_smoothed": 140.857, + "total_deaths": 35.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 142.355, + "new_cases_per_million": 4.572, + "new_cases_smoothed_per_million": 4.953, + "total_deaths_per_million": 1.231, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 87.04 + }, + { + "date": "2020-06-24", + "total_cases": 4186.0, + "new_cases": 138.0, + "new_cases_smoothed": 148.0, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 147.208, + "new_cases_per_million": 4.853, + "new_cases_smoothed_per_million": 5.205, + "total_deaths_per_million": 1.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.04, + "stringency_index": 87.04 + }, + { + "date": "2020-06-25", + "total_cases": 4365.0, + "new_cases": 179.0, + "new_cases_smoothed": 173.571, + "total_deaths": 38.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 153.503, + "new_cases_per_million": 6.295, + "new_cases_smoothed_per_million": 6.104, + "total_deaths_per_million": 1.336, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 87.04 + }, + { + "date": "2020-06-26", + "total_cases": 4563.0, + "new_cases": 198.0, + "new_cases_smoothed": 154.143, + "total_deaths": 39.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 160.466, + "new_cases_per_million": 6.963, + "new_cases_smoothed_per_million": 5.421, + "total_deaths_per_million": 1.372, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 87.04 + }, + { + "date": "2020-06-27", + "total_cases": 4779.0, + "new_cases": 216.0, + "new_cases_smoothed": 169.714, + "total_deaths": 41.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 168.062, + "new_cases_per_million": 7.596, + "new_cases_smoothed_per_million": 5.968, + "total_deaths_per_million": 1.442, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 87.04 + }, + { + "date": "2020-06-28", + "total_cases": 5130.0, + "new_cases": 351.0, + "new_cases_smoothed": 191.429, + "total_deaths": 42.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 180.405, + "new_cases_per_million": 12.344, + "new_cases_smoothed_per_million": 6.732, + "total_deaths_per_million": 1.477, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.045, + "stringency_index": 87.04 + }, + { + "date": "2020-06-29", + "total_cases": 5297.0, + "new_cases": 167.0, + "new_cases_smoothed": 197.0, + "total_deaths": 44.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 186.278, + "new_cases_per_million": 5.873, + "new_cases_smoothed_per_million": 6.928, + "total_deaths_per_million": 1.547, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.055, + "stringency_index": 87.04 + }, + { + "date": "2020-06-30", + "total_cases": 5530.0, + "new_cases": 233.0, + "new_cases_smoothed": 211.714, + "total_deaths": 48.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 194.472, + "new_cases_per_million": 8.194, + "new_cases_smoothed_per_million": 7.445, + "total_deaths_per_million": 1.688, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.065, + "stringency_index": 87.04 + }, + { + "date": "2020-07-01", + "total_cases": 5832.0, + "new_cases": 302.0, + "new_cases_smoothed": 235.143, + "total_deaths": 51.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 205.093, + "new_cases_per_million": 10.62, + "new_cases_smoothed_per_million": 8.269, + "total_deaths_per_million": 1.794, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.08, + "stringency_index": 87.04 + }, + { + "date": "2020-07-02", + "total_cases": 6062.0, + "new_cases": 230.0, + "new_cases_smoothed": 242.429, + "total_deaths": 54.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 213.181, + "new_cases_per_million": 8.088, + "new_cases_smoothed_per_million": 8.525, + "total_deaths_per_million": 1.899, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.08, + "stringency_index": 87.04 + }, + { + "date": "2020-07-03", + "total_cases": 6273.0, + "new_cases": 211.0, + "new_cases_smoothed": 244.286, + "total_deaths": 57.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 220.601, + "new_cases_per_million": 7.42, + "new_cases_smoothed_per_million": 8.591, + "total_deaths_per_million": 2.005, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 87.04 + }, + { + "date": "2020-07-04", + "total_cases": 6537.0, + "new_cases": 264.0, + "new_cases_smoothed": 251.143, + "total_deaths": 59.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 229.885, + "new_cases_per_million": 9.284, + "new_cases_smoothed_per_million": 8.832, + "total_deaths_per_million": 2.075, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.09, + "stringency_index": 87.04 + }, + { + "date": "2020-07-05", + "total_cases": 6750.0, + "new_cases": 213.0, + "new_cases_smoothed": 231.429, + "total_deaths": 62.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 237.376, + "new_cases_per_million": 7.491, + "new_cases_smoothed_per_million": 8.139, + "total_deaths_per_million": 2.18, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 87.04 + }, + { + "date": "2020-07-06", + "total_cases": 7169.0, + "new_cases": 419.0, + "new_cases_smoothed": 267.429, + "total_deaths": 64.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 252.111, + "new_cases_per_million": 14.735, + "new_cases_smoothed_per_million": 9.405, + "total_deaths_per_million": 2.251, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 87.04 + }, + { + "date": "2020-07-07", + "total_cases": 7411.0, + "new_cases": 242.0, + "new_cases_smoothed": 268.714, + "total_deaths": 68.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 260.621, + "new_cases_per_million": 8.51, + "new_cases_smoothed_per_million": 9.45, + "total_deaths_per_million": 2.391, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 87.04 + }, + { + "date": "2020-07-08", + "total_cases": 7693.0, + "new_cases": 282.0, + "new_cases_smoothed": 265.857, + "total_deaths": 71.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 270.538, + "new_cases_per_million": 9.917, + "new_cases_smoothed_per_million": 9.349, + "total_deaths_per_million": 2.497, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 87.04 + }, + { + "date": "2020-07-09", + "total_cases": 8010.0, + "new_cases": 317.0, + "new_cases_smoothed": 278.286, + "total_deaths": 75.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 281.686, + "new_cases_per_million": 11.148, + "new_cases_smoothed_per_million": 9.786, + "total_deaths_per_million": 2.638, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.106, + "stringency_index": 87.04 + }, + { + "date": "2020-07-10", + "total_cases": 8372.0, + "new_cases": 362.0, + "new_cases_smoothed": 299.857, + "total_deaths": 80.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 294.416, + "new_cases_per_million": 12.73, + "new_cases_smoothed_per_million": 10.545, + "total_deaths_per_million": 2.813, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 87.04 + }, + { + "date": "2020-07-11", + "total_cases": 8803.0, + "new_cases": 431.0, + "new_cases_smoothed": 323.714, + "total_deaths": 83.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 309.573, + "new_cases_per_million": 15.157, + "new_cases_smoothed_per_million": 11.384, + "total_deaths_per_million": 2.919, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 87.04 + }, + { + "date": "2020-07-12", + "total_cases": 9178.0, + "new_cases": 375.0, + "new_cases_smoothed": 346.857, + "total_deaths": 85.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 322.761, + "new_cases_per_million": 13.188, + "new_cases_smoothed_per_million": 12.198, + "total_deaths_per_million": 2.989, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 87.04 + }, + { + "date": "2020-07-13", + "total_cases": 9465.0, + "new_cases": 287.0, + "new_cases_smoothed": 328.0, + "total_deaths": 89.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 332.853, + "new_cases_per_million": 10.093, + "new_cases_smoothed_per_million": 11.535, + "total_deaths_per_million": 3.13, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 87.04 + }, + { + "date": "2020-07-14", + "total_cases": 9707.0, + "new_cases": 242.0, + "new_cases_smoothed": 328.0, + "total_deaths": 93.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 341.364, + "new_cases_per_million": 8.51, + "new_cases_smoothed_per_million": 11.535, + "total_deaths_per_million": 3.271, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 87.04 + }, + { + "date": "2020-07-15", + "total_cases": 10010.0, + "new_cases": 303.0, + "new_cases_smoothed": 331.0, + "total_deaths": 96.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 352.019, + "new_cases_per_million": 10.656, + "new_cases_smoothed_per_million": 11.64, + "total_deaths_per_million": 3.376, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 87.04 + }, + { + "date": "2020-07-16", + "total_cases": 10428.0, + "new_cases": 418.0, + "new_cases_smoothed": 345.429, + "total_deaths": 100.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 366.719, + "new_cases_per_million": 14.7, + "new_cases_smoothed_per_million": 12.148, + "total_deaths_per_million": 3.517, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 87.04 + }, + { + "date": "2020-07-17", + "total_cases": 10854.0, + "new_cases": 426.0, + "new_cases_smoothed": 354.571, + "total_deaths": 104.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 381.7, + "new_cases_per_million": 14.981, + "new_cases_smoothed_per_million": 12.469, + "total_deaths_per_million": 3.657, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 87.04 + }, + { + "date": "2020-07-18", + "total_cases": 11191.0, + "new_cases": 337.0, + "new_cases_smoothed": 341.143, + "total_deaths": 107.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 393.551, + "new_cases_per_million": 11.851, + "new_cases_smoothed_per_million": 11.997, + "total_deaths_per_million": 3.763, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 87.04 + }, + { + "date": "2020-07-19", + "total_cases": 11483.0, + "new_cases": 292.0, + "new_cases_smoothed": 329.286, + "total_deaths": 110.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 403.82, + "new_cases_per_million": 10.269, + "new_cases_smoothed_per_million": 11.58, + "total_deaths_per_million": 3.868, + "new_deaths_per_million": 0.106, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 87.04 + }, + { + "date": "2020-07-20", + "total_cases": 11891.0, + "new_cases": 408.0, + "new_cases_smoothed": 346.571, + "total_deaths": 112.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 418.168, + "new_cases_per_million": 14.348, + "new_cases_smoothed_per_million": 12.188, + "total_deaths_per_million": 3.939, + "new_deaths_per_million": 0.07, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 87.04 + }, + { + "date": "2020-07-21", + "total_cases": 12334.0, + "new_cases": 443.0, + "new_cases_smoothed": 375.286, + "total_deaths": 116.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 433.747, + "new_cases_per_million": 15.579, + "new_cases_smoothed_per_million": 13.198, + "total_deaths_per_million": 4.079, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.116, + "stringency_index": 87.04 + }, + { + "date": "2020-07-22", + "total_cases": 12774.0, + "new_cases": 440.0, + "new_cases_smoothed": 394.857, + "total_deaths": 120.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 449.22, + "new_cases_per_million": 15.473, + "new_cases_smoothed_per_million": 13.886, + "total_deaths_per_million": 4.22, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 86.11 + }, + { + "date": "2020-07-23", + "total_cases": 12774.0, + "new_cases": 0.0, + "new_cases_smoothed": 335.143, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 449.22, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.786, + "total_deaths_per_million": 4.22, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.1, + "stringency_index": 86.11 + }, + { + "date": "2020-07-24", + "total_cases": 13613.0, + "new_cases": 839.0, + "new_cases_smoothed": 394.143, + "total_deaths": 129.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 478.725, + "new_cases_per_million": 29.505, + "new_cases_smoothed_per_million": 13.861, + "total_deaths_per_million": 4.537, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.126, + "stringency_index": 86.11 + }, + { + "date": "2020-07-25", + "total_cases": 14263.0, + "new_cases": 650.0, + "new_cases_smoothed": 438.857, + "total_deaths": 134.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 501.584, + "new_cases_per_million": 22.858, + "new_cases_smoothed_per_million": 15.433, + "total_deaths_per_million": 4.712, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.136, + "stringency_index": 86.11 + }, + { + "date": "2020-07-26", + "total_cases": 14263.0, + "new_cases": 0.0, + "new_cases_smoothed": 397.143, + "total_deaths": 134.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 501.584, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.966, + "total_deaths_per_million": 4.712, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.121, + "stringency_index": 86.11 + }, + { + "date": "2020-07-27", + "total_cases": 15463.0, + "new_cases": 1200.0, + "new_cases_smoothed": 510.286, + "total_deaths": 142.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 543.784, + "new_cases_per_million": 42.2, + "new_cases_smoothed_per_million": 17.945, + "total_deaths_per_million": 4.994, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 86.11 + }, + { + "date": "2020-07-28", + "total_cases": 15988.0, + "new_cases": 525.0, + "new_cases_smoothed": 522.0, + "total_deaths": 146.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 562.246, + "new_cases_per_million": 18.463, + "new_cases_smoothed_per_million": 18.357, + "total_deaths_per_million": 5.134, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 86.11 + }, + { + "date": "2020-07-29", + "total_cases": 16571.0, + "new_cases": 583.0, + "new_cases_smoothed": 542.429, + "total_deaths": 151.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 582.748, + "new_cases_per_million": 20.502, + "new_cases_smoothed_per_million": 19.075, + "total_deaths_per_million": 5.31, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 86.11 + }, + { + "date": "2020-07-30", + "total_cases": 16571.0, + "new_cases": 0.0, + "new_cases_smoothed": 542.429, + "total_deaths": 151.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 582.748, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 19.075, + "total_deaths_per_million": 5.31, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.156, + "stringency_index": 86.11 + }, + { + "date": "2020-07-31", + "total_cases": 17859.0, + "new_cases": 1288.0, + "new_cases_smoothed": 606.571, + "total_deaths": 158.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 628.043, + "new_cases_per_million": 45.295, + "new_cases_smoothed_per_million": 21.331, + "total_deaths_per_million": 5.556, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.146, + "stringency_index": 86.11 + }, + { + "date": "2020-08-01", + "total_cases": 18574.0, + "new_cases": 715.0, + "new_cases_smoothed": 615.857, + "total_deaths": 164.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 653.187, + "new_cases_per_million": 25.144, + "new_cases_smoothed_per_million": 21.658, + "total_deaths_per_million": 5.767, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.151, + "stringency_index": 86.11 + }, + { + "date": "2020-08-02", + "total_cases": 19443.0, + "new_cases": 869.0, + "new_cases_smoothed": 740.0, + "total_deaths": 169.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 683.747, + "new_cases_per_million": 30.56, + "new_cases_smoothed_per_million": 26.023, + "total_deaths_per_million": 5.943, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.176, + "stringency_index": 86.11 + }, + { + "date": "2020-08-03", + "total_cases": 20206.0, + "new_cases": 763.0, + "new_cases_smoothed": 677.571, + "total_deaths": 174.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 710.58, + "new_cases_per_million": 26.832, + "new_cases_smoothed_per_million": 23.828, + "total_deaths_per_million": 6.119, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.161, + "stringency_index": 86.11 + }, + { + "date": "2020-08-04", + "total_cases": 20206.0, + "new_cases": 0.0, + "new_cases_smoothed": 602.571, + "total_deaths": 174.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 710.58, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.19, + "total_deaths_per_million": 6.119, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.141, + "stringency_index": 86.11 + }, + { + "date": "2020-08-05", + "total_cases": 21438.0, + "new_cases": 1232.0, + "new_cases_smoothed": 695.286, + "total_deaths": 187.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 753.905, + "new_cases_per_million": 43.325, + "new_cases_smoothed_per_million": 24.451, + "total_deaths_per_million": 6.576, + "new_deaths_per_million": 0.457, + "new_deaths_smoothed_per_million": 0.181, + "stringency_index": 86.11 + }, + { + "date": "2020-08-06", + "total_cases": 22299.0, + "new_cases": 861.0, + "new_cases_smoothed": 818.286, + "total_deaths": 195.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 784.184, + "new_cases_per_million": 30.279, + "new_cases_smoothed_per_million": 28.776, + "total_deaths_per_million": 6.858, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.221, + "stringency_index": 86.11 + }, + { + "date": "2020-08-07", + "total_cases": 23280.0, + "new_cases": 981.0, + "new_cases_smoothed": 774.429, + "total_deaths": 202.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 818.682, + "new_cases_per_million": 34.499, + "new_cases_smoothed_per_million": 27.234, + "total_deaths_per_million": 7.104, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.221, + "stringency_index": 86.11 + }, + { + "date": "2020-08-08", + "total_cases": 24166.0, + "new_cases": 886.0, + "new_cases_smoothed": 798.857, + "total_deaths": 208.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 849.84, + "new_cases_per_million": 31.158, + "new_cases_smoothed_per_million": 28.093, + "total_deaths_per_million": 7.315, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.221, + "stringency_index": 86.11 + }, + { + "date": "2020-08-09", + "total_cases": 24166.0, + "new_cases": 0.0, + "new_cases_smoothed": 674.714, + "total_deaths": 208.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 849.84, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 23.728, + "total_deaths_per_million": 7.315, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 86.11 + }, + { + "date": "2020-08-10", + "total_cases": 25805.0, + "new_cases": 1639.0, + "new_cases_smoothed": 799.857, + "total_deaths": 223.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 907.478, + "new_cases_per_million": 57.638, + "new_cases_smoothed_per_million": 28.128, + "total_deaths_per_million": 7.842, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 86.11 + }, + { + "date": "2020-08-11", + "total_cases": 25805.0, + "new_cases": 0.0, + "new_cases_smoothed": 799.857, + "total_deaths": 223.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 907.478, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 28.128, + "total_deaths_per_million": 7.842, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 86.11 + }, + { + "date": "2020-08-12", + "total_cases": 27938.0, + "new_cases": 2133.0, + "new_cases_smoothed": 928.571, + "total_deaths": 238.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 982.489, + "new_cases_per_million": 75.011, + "new_cases_smoothed_per_million": 32.655, + "total_deaths_per_million": 8.37, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.256, + "stringency_index": 86.11 + }, + { + "date": "2020-08-13", + "total_cases": 29088.0, + "new_cases": 1150.0, + "new_cases_smoothed": 969.857, + "total_deaths": 247.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1022.931, + "new_cases_per_million": 40.442, + "new_cases_smoothed_per_million": 34.107, + "total_deaths_per_million": 8.686, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 86.11 + }, + { + "date": "2020-08-14", + "total_cases": 30369.0, + "new_cases": 1281.0, + "new_cases_smoothed": 1012.714, + "total_deaths": 259.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 1067.979, + "new_cases_per_million": 45.049, + "new_cases_smoothed_per_million": 35.614, + "total_deaths_per_million": 9.108, + "new_deaths_per_million": 0.422, + "new_deaths_smoothed_per_million": 0.286, + "stringency_index": 86.11 + }, + { + "date": "2020-08-15", + "total_cases": 31381.0, + "new_cases": 1012.0, + "new_cases_smoothed": 1030.714, + "total_deaths": 266.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1103.568, + "new_cases_per_million": 35.589, + "new_cases_smoothed_per_million": 36.247, + "total_deaths_per_million": 9.354, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 86.11 + }, + { + "date": "2020-08-16", + "total_cases": 32607.0, + "new_cases": 1226.0, + "new_cases_smoothed": 1205.857, + "total_deaths": 276.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 9.714, + "total_cases_per_million": 1146.683, + "new_cases_per_million": 43.114, + "new_cases_smoothed_per_million": 42.406, + "total_deaths_per_million": 9.706, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.342, + "stringency_index": 86.11 + }, + { + "date": "2020-08-17", + "total_cases": 33755.0, + "new_cases": 1148.0, + "new_cases_smoothed": 1135.714, + "total_deaths": 281.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 8.286, + "total_cases_per_million": 1187.054, + "new_cases_per_million": 40.371, + "new_cases_smoothed_per_million": 39.939, + "total_deaths_per_million": 9.882, + "new_deaths_per_million": 0.176, + "new_deaths_smoothed_per_million": 0.291, + "stringency_index": 86.11 + }, + { + "date": "2020-08-18", + "total_cases": 34802.0, + "new_cases": 1047.0, + "new_cases_smoothed": 1285.286, + "total_deaths": 288.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 1223.874, + "new_cases_per_million": 36.82, + "new_cases_smoothed_per_million": 45.199, + "total_deaths_per_million": 10.128, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.327, + "stringency_index": 86.11 + }, + { + "date": "2020-08-19", + "total_cases": 35697.0, + "new_cases": 895.0, + "new_cases_smoothed": 1108.429, + "total_deaths": 297.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 8.429, + "total_cases_per_million": 1255.348, + "new_cases_per_million": 31.474, + "new_cases_smoothed_per_million": 38.98, + "total_deaths_per_million": 10.445, + "new_deaths_per_million": 0.317, + "new_deaths_smoothed_per_million": 0.296, + "stringency_index": 86.11 + }, + { + "date": "2020-08-20", + "total_cases": 36868.0, + "new_cases": 1171.0, + "new_cases_smoothed": 1111.429, + "total_deaths": 303.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 1296.528, + "new_cases_per_million": 41.18, + "new_cases_smoothed_per_million": 39.085, + "total_deaths_per_million": 10.656, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.281, + "stringency_index": 86.11 + }, + { + "date": "2020-08-21", + "total_cases": 37567.0, + "new_cases": 699.0, + "new_cases_smoothed": 1028.286, + "total_deaths": 311.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1321.11, + "new_cases_per_million": 24.582, + "new_cases_smoothed_per_million": 36.161, + "total_deaths_per_million": 10.937, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 86.11 + }, + { + "date": "2020-08-22", + "total_cases": 38188.0, + "new_cases": 621.0, + "new_cases_smoothed": 972.429, + "total_deaths": 317.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 1342.948, + "new_cases_per_million": 21.839, + "new_cases_smoothed_per_million": 34.197, + "total_deaths_per_million": 11.148, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.256, + "stringency_index": 86.11 + }, + { + "date": "2020-08-23", + "total_cases": 38957.0, + "new_cases": 769.0, + "new_cases_smoothed": 907.143, + "total_deaths": 323.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1369.991, + "new_cases_per_million": 27.043, + "new_cases_smoothed_per_million": 31.901, + "total_deaths_per_million": 11.359, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 82.41 + }, + { + "date": "2020-08-24", + "total_cases": 39564.0, + "new_cases": 607.0, + "new_cases_smoothed": 829.857, + "total_deaths": 329.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1391.338, + "new_cases_per_million": 21.346, + "new_cases_smoothed_per_million": 29.183, + "total_deaths_per_million": 11.57, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 82.41 + }, + { + "date": "2020-08-25", + "total_cases": 40338.0, + "new_cases": 774.0, + "new_cases_smoothed": 790.857, + "total_deaths": 337.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 1418.557, + "new_cases_per_million": 27.219, + "new_cases_smoothed_per_million": 27.812, + "total_deaths_per_million": 11.851, + "new_deaths_per_million": 0.281, + "new_deaths_smoothed_per_million": 0.246, + "stringency_index": 82.41 + }, + { + "date": "2020-08-26", + "total_cases": 41158.0, + "new_cases": 820.0, + "new_cases_smoothed": 780.143, + "total_deaths": 343.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 1447.394, + "new_cases_per_million": 28.837, + "new_cases_smoothed_per_million": 27.435, + "total_deaths_per_million": 12.062, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.231, + "stringency_index": 82.41 + }, + { + "date": "2020-08-27", + "total_cases": 41158.0, + "new_cases": 0.0, + "new_cases_smoothed": 612.857, + "total_deaths": 343.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 1447.394, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 21.552, + "total_deaths_per_million": 12.062, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 82.41 + }, + { + "date": "2020-08-28", + "total_cases": 42898.0, + "new_cases": 1740.0, + "new_cases_smoothed": 761.571, + "total_deaths": 358.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 1508.584, + "new_cases_per_million": 61.19, + "new_cases_smoothed_per_million": 26.782, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.236, + "stringency_index": 82.41 + }, + { + "date": "2020-08-29", + "total_cases": 43879.0, + "new_cases": 981.0, + "new_cases_smoothed": 813.0, + "total_deaths": 358.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 1543.082, + "new_cases_per_million": 34.499, + "new_cases_smoothed_per_million": 28.591, + "total_deaths_per_million": 12.59, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.206, + "stringency_index": 82.41 + }, + { + "date": "2020-08-30", + "total_cases": 44946.0, + "new_cases": 1067.0, + "new_cases_smoothed": 855.571, + "total_deaths": 375.0, + "new_deaths": 17.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1580.605, + "new_cases_per_million": 37.523, + "new_cases_smoothed_per_million": 30.088, + "total_deaths_per_million": 13.188, + "new_deaths_per_million": 0.598, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 82.41 + }, + { + "date": "2020-08-31", + "total_cases": 45868.0, + "new_cases": 922.0, + "new_cases_smoothed": 900.571, + "total_deaths": 381.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 1613.029, + "new_cases_per_million": 32.424, + "new_cases_smoothed_per_million": 31.67, + "total_deaths_per_million": 13.399, + "new_deaths_per_million": 0.211, + "new_deaths_smoothed_per_million": 0.261, + "stringency_index": 82.41 + }, + { + "date": "2020-09-01", + "total_cases": 45868.0, + "new_cases": 0.0, + "new_cases_smoothed": 790.0, + "total_deaths": 381.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1613.029, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 27.782, + "total_deaths_per_million": 13.399, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.221, + "stringency_index": 82.41 + }, + { + "date": "2020-09-02", + "total_cases": 47756.0, + "new_cases": 1888.0, + "new_cases_smoothed": 942.571, + "total_deaths": 391.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 1679.424, + "new_cases_per_million": 66.395, + "new_cases_smoothed_per_million": 33.147, + "total_deaths_per_million": 13.75, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 82.41 + }, + { + "date": "2020-09-03", + "total_cases": 48883.0, + "new_cases": 1127.0, + "new_cases_smoothed": 1103.571, + "total_deaths": 398.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 7.857, + "total_cases_per_million": 1719.057, + "new_cases_per_million": 39.633, + "new_cases_smoothed_per_million": 38.809, + "total_deaths_per_million": 13.996, + "new_deaths_per_million": 0.246, + "new_deaths_smoothed_per_million": 0.276, + "stringency_index": 82.41 + }, + { + "date": "2020-09-04", + "total_cases": 49877.0, + "new_cases": 994.0, + "new_cases_smoothed": 997.0, + "total_deaths": 402.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 1754.013, + "new_cases_per_million": 34.956, + "new_cases_smoothed_per_million": 35.061, + "total_deaths_per_million": 14.137, + "new_deaths_per_million": 0.141, + "new_deaths_smoothed_per_million": 0.221 + }, + { + "date": "2020-09-05", + "total_cases": 50973.0, + "new_cases": 1096.0, + "new_cases_smoothed": 1013.429, + "total_deaths": 412.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 7.714, + "total_cases_per_million": 1792.555, + "new_cases_per_million": 38.543, + "new_cases_smoothed_per_million": 35.639, + "total_deaths_per_million": 14.489, + "new_deaths_per_million": 0.352, + "new_deaths_smoothed_per_million": 0.271 + } + ] + }, + "VNM": { + "continent": "Asia", + "location": "Vietnam", + "population": 97338583.0, + "population_density": 308.127, + "median_age": 32.6, + "aged_65_older": 7.15, + "aged_70_older": 4.718, + "gdp_per_capita": 6171.884, + "extreme_poverty": 2.0, + "cardiovasc_death_rate": 245.465, + "diabetes_prevalence": 6.0, + "female_smokers": 1.0, + "male_smokers": 45.9, + "handwashing_facilities": 85.847, + "hospital_beds_per_thousand": 2.6, + "life_expectancy": 75.4, + "data": [ + { + "date": "2019-12-31", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 0.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 0.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.0, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 2.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-26", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-27", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-28", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 2.78 + }, + { + "date": "2020-01-29", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 23.15 + }, + { + "date": "2020-01-30", + "total_cases": 2.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.021, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-01-31", + "total_cases": 5.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.051, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 25.93 + }, + { + "date": "2020-02-01", + "total_cases": 5.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.051, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-02", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.072, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-03", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.082, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-04", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.092, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-05", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-06", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-07", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.123, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 28.7 + }, + { + "date": "2020-02-08", + "total_cases": 13.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.134, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-09", + "total_cases": 14.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.144, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-10", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-11", + "total_cases": 15.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.154, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-12", + "total_cases": 15.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.154, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 37.04 + }, + { + "date": "2020-02-13", + "total_cases": 16.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-02-14", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-02-15", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-16", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-17", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-18", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-19", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-20", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-21", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-22", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-23", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-24", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-25", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-26", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-27", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-28", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-02-29", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-01", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-02", + "total_cases": 16.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.164, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1753.0, + "total_tests_per_thousand": 0.018, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-03", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 32.0, + "total_tests": 1785.0, + "total_tests_per_thousand": 0.018, + "new_tests_per_thousand": 0.0, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-04", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-05", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 1924.0, + "total_tests_per_thousand": 0.02, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-06", + "new_cases_smoothed": 0.0, + "new_deaths_smoothed": 0.0, + "new_cases_smoothed_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 84.0, + "total_tests": 2008.0, + "total_tests_per_thousand": 0.021, + "new_tests_per_thousand": 0.001, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-07", + "total_cases": 17.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.175, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-08", + "total_cases": 21.0, + "new_cases": 4.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.216, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-09", + "total_cases": 30.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.308, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 2589.0, + "total_tests_per_thousand": 0.027, + "new_tests_smoothed": 119.0, + "new_tests_smoothed_per_thousand": 0.001, + "tests_per_case": 59.5, + "positive_rate": 0.017, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-10", + "total_cases": 34.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.349, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 249.0, + "new_tests_smoothed_per_thousand": 0.003, + "tests_per_case": 96.833, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-11", + "total_cases": 38.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.39, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 4471.0, + "total_tests_per_thousand": 0.046, + "new_tests_smoothed": 374.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 119.0, + "positive_rate": 0.008, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-12", + "total_cases": 39.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.401, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 117.0, + "total_tests": 4588.0, + "total_tests_per_thousand": 0.047, + "new_tests_per_thousand": 0.001, + "new_tests_smoothed": 381.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 115.95700000000001, + "positive_rate": 0.009000000000000001, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-13", + "total_cases": 44.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.452, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 201.0, + "total_tests": 4789.0, + "total_tests_per_thousand": 0.049, + "new_tests_per_thousand": 0.002, + "new_tests_smoothed": 397.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 99.25, + "positive_rate": 0.01, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-14", + "total_cases": 53.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.092, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 446.0, + "total_tests": 5235.0, + "total_tests_per_thousand": 0.054, + "new_tests_per_thousand": 0.005, + "new_tests_smoothed": 433.0, + "new_tests_smoothed_per_thousand": 0.004, + "tests_per_case": 84.194, + "positive_rate": 0.012, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-15", + "total_cases": 53.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.544, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2280.0, + "total_tests": 7515.0, + "total_tests_per_thousand": 0.077, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 731.0, + "new_tests_smoothed_per_thousand": 0.008, + "tests_per_case": 159.906, + "positive_rate": 0.006, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-16", + "total_cases": 57.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.586, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 7.0, + "total_tests": 7522.0, + "total_tests_per_thousand": 0.077, + "new_tests_per_thousand": 0.0, + "new_tests_smoothed": 705.0, + "new_tests_smoothed_per_thousand": 0.007, + "tests_per_case": 182.778, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-17", + "total_cases": 61.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.627, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.04, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2174.0, + "total_tests": 9696.0, + "total_tests_per_thousand": 0.1, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 881.0, + "new_tests_smoothed_per_thousand": 0.009, + "tests_per_case": 228.407, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-18", + "total_cases": 68.0, + "new_cases": 7.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.699, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5254.0, + "total_tests": 14950.0, + "total_tests_per_thousand": 0.154, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 1497.0, + "new_tests_smoothed_per_thousand": 0.015, + "tests_per_case": 349.3, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-19", + "total_cases": 76.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.781, + "new_cases_per_million": 0.082, + "new_cases_smoothed_per_million": 0.054, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1529.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 289.27, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-20", + "total_cases": 87.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.894, + "new_cases_per_million": 0.113, + "new_cases_smoothed_per_million": 0.063, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 15637.0, + "total_tests_per_thousand": 0.161, + "new_tests_smoothed": 1550.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 252.326, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-21", + "total_cases": 88.0, + "new_cases": 1.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.904, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1594.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 318.8, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 47.22 + }, + { + "date": "2020-03-22", + "total_cases": 95.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.976, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 17148.0, + "total_tests_per_thousand": 0.176, + "new_tests_smoothed": 1376.0, + "new_tests_smoothed_per_thousand": 0.014, + "tests_per_case": 229.333, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-23", + "total_cases": 121.0, + "new_cases": 26.0, + "new_cases_smoothed": 9.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.243, + "new_cases_per_million": 0.267, + "new_cases_smoothed_per_million": 0.094, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 1887.0, + "new_tests_smoothed_per_thousand": 0.019, + "tests_per_case": 206.391, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-24", + "total_cases": 132.0, + "new_cases": 11.0, + "new_cases_smoothed": 10.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.356, + "new_cases_per_million": 0.113, + "new_cases_smoothed_per_million": 0.104, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 24311.0, + "total_tests_per_thousand": 0.25, + "new_tests_smoothed": 2088.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 205.859, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 50.0 + }, + { + "date": "2020-03-25", + "total_cases": 137.0, + "new_cases": 5.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.407, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 6237.0, + "total_tests": 30548.0, + "total_tests_per_thousand": 0.314, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 2228.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 226.02900000000002, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 55.56 + }, + { + "date": "2020-03-26", + "total_cases": 153.0, + "new_cases": 16.0, + "new_cases_smoothed": 11.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.572, + "new_cases_per_million": 0.164, + "new_cases_smoothed_per_million": 0.113, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1333.0, + "total_tests": 31881.0, + "total_tests_per_thousand": 0.328, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 2370.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 215.455, + "positive_rate": 0.005, + "tests_units": "samples tested", + "stringency_index": 61.11 + }, + { + "date": "2020-03-27", + "total_cases": 163.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.675, + "new_cases_per_million": 0.103, + "new_cases_smoothed_per_million": 0.112, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3927.0, + "total_tests": 35808.0, + "total_tests_per_thousand": 0.368, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 2882.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 265.447, + "positive_rate": 0.004, + "tests_units": "samples tested", + "stringency_index": 66.67 + }, + { + "date": "2020-03-28", + "total_cases": 171.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.757, + "new_cases_per_million": 0.082, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 3678.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 310.193, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-03-29", + "total_cases": 188.0, + "new_cases": 17.0, + "new_cases_smoothed": 13.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.931, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4474.0, + "new_tests_smoothed_per_thousand": 0.046, + "tests_per_case": 336.75300000000004, + "positive_rate": 0.003, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-03-30", + "total_cases": 203.0, + "new_cases": 15.0, + "new_cases_smoothed": 11.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.086, + "new_cases_per_million": 0.154, + "new_cases_smoothed_per_million": 0.12, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4867.0, + "new_tests_smoothed_per_thousand": 0.05, + "tests_per_case": 415.476, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-03-31", + "total_cases": 206.0, + "new_cases": 3.0, + "new_cases_smoothed": 10.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.116, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5259.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 497.473, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 83.33 + }, + { + "date": "2020-04-01", + "total_cases": 212.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.178, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.11, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 67456.0, + "total_tests_per_thousand": 0.693, + "new_tests_smoothed": 5273.0, + "new_tests_smoothed_per_thousand": 0.054, + "tests_per_case": 492.147, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-02", + "total_cases": 233.0, + "new_cases": 21.0, + "new_cases_smoothed": 11.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.394, + "new_cases_per_million": 0.216, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 5708.0, + "total_tests": 73164.0, + "total_tests_per_thousand": 0.752, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 5898.0, + "new_tests_smoothed_per_thousand": 0.061, + "tests_per_case": 516.075, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-03", + "total_cases": 236.0, + "new_cases": 3.0, + "new_cases_smoothed": 10.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.425, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.107, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 2294.0, + "total_tests": 75458.0, + "total_tests_per_thousand": 0.775, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 5664.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 543.123, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-04", + "total_cases": 240.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.466, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5658.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 574.0, + "positive_rate": 0.002, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-05", + "total_cases": 241.0, + "new_cases": 1.0, + "new_cases_smoothed": 7.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.476, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5651.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 746.3580000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-06", + "total_cases": 245.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.517, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 94305.0, + "total_tests_per_thousand": 0.969, + "new_tests_smoothed": 5644.0, + "new_tests_smoothed_per_thousand": 0.058, + "tests_per_case": 940.6669999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-07", + "total_cases": 251.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.579, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.066, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 12294.0, + "total_tests": 106599.0, + "total_tests_per_thousand": 1.095, + "new_tests_per_thousand": 0.126, + "new_tests_smoothed": 6496.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 1010.4889999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-08", + "total_cases": 251.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.579, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3525.0, + "total_tests": 110124.0, + "total_tests_per_thousand": 1.131, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 6095.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 1093.974, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-09", + "total_cases": 255.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.62, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4117.0, + "total_tests": 114241.0, + "total_tests_per_thousand": 1.174, + "new_tests_per_thousand": 0.042, + "new_tests_smoothed": 5868.0, + "new_tests_smoothed_per_thousand": 0.06, + "tests_per_case": 1867.0910000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-10", + "total_cases": 257.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.64, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 4566.0, + "total_tests": 118807.0, + "total_tests_per_thousand": 1.221, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 6193.0, + "new_tests_smoothed_per_thousand": 0.064, + "tests_per_case": 2064.333, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-11", + "total_cases": 258.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.651, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3014.0, + "total_tests": 121821.0, + "total_tests_per_thousand": 1.252, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 5726.0, + "new_tests_smoothed_per_thousand": 0.059, + "tests_per_case": 2226.778, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-12", + "total_cases": 262.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.692, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 5350.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 1783.3329999999999, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-13", + "total_cases": 264.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.712, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.028, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4974.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 1832.526, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-14", + "total_cases": 267.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.743, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 132771.0, + "total_tests_per_thousand": 1.364, + "new_tests_smoothed": 3739.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 1635.8120000000001, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 96.3 + }, + { + "date": "2020-04-15", + "total_cases": 268.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 3167.0, + "total_tests": 135938.0, + "total_tests_per_thousand": 1.397, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 3688.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 1518.588, + "positive_rate": 0.001, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-16", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4080.0, + "new_tests_smoothed_per_thousand": 0.042, + "tests_per_case": 2196.923, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-17", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4407.0, + "new_tests_smoothed_per_thousand": 0.045, + "tests_per_case": 2804.455, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-18", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 4957.0, + "new_tests_smoothed_per_thousand": 0.051, + "tests_per_case": 3469.9, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-19", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 163377.0, + "total_tests_per_thousand": 1.678, + "new_tests_smoothed": 5415.0, + "new_tests_smoothed_per_thousand": 0.056, + "tests_per_case": 6317.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-20", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6086.0, + "new_tests_smoothed_per_thousand": 0.063, + "tests_per_case": 10650.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-21", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 180067.0, + "total_tests_per_thousand": 1.85, + "new_tests_smoothed": 6757.0, + "new_tests_smoothed_per_thousand": 0.069, + "tests_per_case": 47299.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 86.57 + }, + { + "date": "2020-04-22", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 6960.0, + "new_tests_smoothed_per_thousand": 0.072, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-23", + "total_cases": 268.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.753, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 189253.0, + "total_tests_per_thousand": 1.944, + "new_tests_smoothed": 6636.0, + "new_tests_smoothed_per_thousand": 0.068, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-24", + "total_cases": 270.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 7291.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 25518.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 77.78 + }, + { + "date": "2020-04-25", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 212142.0, + "total_tests_per_thousand": 2.179, + "new_tests_smoothed": 7946.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 27811.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 72.22 + }, + { + "date": "2020-04-26", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 823.0, + "total_tests": 212965.0, + "total_tests_per_thousand": 2.188, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 7084.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 24794.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-04-27", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 778.0, + "total_tests": 213743.0, + "total_tests_per_thousand": 2.196, + "new_tests_per_thousand": 0.008, + "new_tests_smoothed": 6003.0, + "new_tests_smoothed_per_thousand": 0.062, + "tests_per_case": 21010.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-04-28", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 8187.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 28654.5, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-04-29", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 261004.0, + "total_tests_per_thousand": 2.681, + "new_tests_smoothed": 10906.0, + "new_tests_smoothed_per_thousand": 0.112, + "tests_per_case": 38171.0, + "positive_rate": 0.0, + "tests_units": "samples tested", + "stringency_index": 75.0 + }, + { + "date": "2020-04-30", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-05-01", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-05-02", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-05-03", + "total_cases": 270.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.774, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-05-04", + "total_cases": 271.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.784, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-05", + "total_cases": 271.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-06", + "total_cases": 271.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-07", + "total_cases": 271.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.784, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-08", + "total_cases": 288.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-09", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-10", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.026, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-11", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-12", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-13", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-14", + "total_cases": 288.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.959, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-15", + "total_cases": 312.0, + "new_cases": 24.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.205, + "new_cases_per_million": 0.247, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-16", + "total_cases": 313.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.216, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.037, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-17", + "total_cases": 318.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.267, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.044, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-18", + "total_cases": 320.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.287, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-19", + "total_cases": 324.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-20", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-21", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 5.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-22", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-23", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.016, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-24", + "total_cases": 324.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.329, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-25", + "total_cases": 325.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.339, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-26", + "total_cases": 326.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.349, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-27", + "total_cases": 327.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.359, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-28", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-29", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-30", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-05-31", + "total_cases": 327.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.359, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-01", + "total_cases": 328.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.37, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-02", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-03", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-04", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-05", + "total_cases": 328.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.37, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-06", + "total_cases": 329.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.38, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-07", + "total_cases": 329.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.38, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-08", + "total_cases": 331.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.401, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-09", + "total_cases": 332.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.411, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-10", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.411, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-11", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.411, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-12", + "total_cases": 332.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.411, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-13", + "total_cases": 333.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.421, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-14", + "total_cases": 334.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.431, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-15", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.74 + }, + { + "date": "2020-06-16", + "total_cases": 334.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.431, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-17", + "total_cases": 335.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.442, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-18", + "total_cases": 335.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.442, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-19", + "total_cases": 342.0, + "new_cases": 7.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.514, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-20", + "total_cases": 349.0, + "new_cases": 7.0, + "new_cases_smoothed": 2.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.585, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-21", + "total_cases": 349.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-22", + "total_cases": 349.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-23", + "total_cases": 349.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-24", + "total_cases": 349.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.585, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 54.63 + }, + { + "date": "2020-06-25", + "total_cases": 352.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.616, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-26", + "total_cases": 352.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.616, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-27", + "total_cases": 353.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.627, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-28", + "total_cases": 354.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.637, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.007, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-29", + "total_cases": 355.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-06-30", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-01", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-02", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-03", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-04", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-05", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-06", + "total_cases": 355.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.647, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-07", + "total_cases": 369.0, + "new_cases": 14.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.791, + "new_cases_per_million": 0.144, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-08", + "total_cases": 369.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-09", + "total_cases": 369.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-10", + "total_cases": 369.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.791, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.021, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-11", + "total_cases": 370.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.801, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-12", + "total_cases": 370.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.801, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-13", + "total_cases": 372.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.822, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.025, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-14", + "total_cases": 373.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.01, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-15", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-16", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-17", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-18", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-19", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.004, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-20", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-21", + "total_cases": 373.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.832, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-22", + "total_cases": 401.0, + "new_cases": 28.0, + "new_cases_smoothed": 4.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.12, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.041, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-23", + "total_cases": 408.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.192, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.051, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-24", + "total_cases": 412.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.233, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-25", + "total_cases": 415.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.263, + "new_cases_per_million": 0.031, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-26", + "total_cases": 415.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.263, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.062, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 51.85 + }, + { + "date": "2020-07-27", + "total_cases": 420.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.315, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.069, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 69.44 + }, + { + "date": "2020-07-28", + "total_cases": 431.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.428, + "new_cases_per_million": 0.113, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-07-29", + "total_cases": 433.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.448, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.0 + }, + { + "date": "2020-07-30", + "total_cases": 459.0, + "new_cases": 26.0, + "new_cases_smoothed": 7.286, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.715, + "new_cases_per_million": 0.267, + "new_cases_smoothed_per_million": 0.075, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.46 + }, + { + "date": "2020-07-31", + "total_cases": 509.0, + "new_cases": 50.0, + "new_cases_smoothed": 13.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.229, + "new_cases_per_million": 0.514, + "new_cases_smoothed_per_million": 0.142, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 75.46 + }, + { + "date": "2020-08-01", + "total_cases": 558.0, + "new_cases": 49.0, + "new_cases_smoothed": 20.429, + "total_deaths": 3.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 5.733, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.031, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 75.46 + }, + { + "date": "2020-08-02", + "total_cases": 590.0, + "new_cases": 32.0, + "new_cases_smoothed": 25.0, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 6.061, + "new_cases_per_million": 0.329, + "new_cases_smoothed_per_million": 0.257, + "total_deaths_per_million": 0.051, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 75.46 + }, + { + "date": "2020-08-03", + "total_cases": 621.0, + "new_cases": 31.0, + "new_cases_smoothed": 28.714, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 6.38, + "new_cases_per_million": 0.318, + "new_cases_smoothed_per_million": 0.295, + "total_deaths_per_million": 0.062, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.009, + "stringency_index": 75.46 + }, + { + "date": "2020-08-04", + "total_cases": 652.0, + "new_cases": 31.0, + "new_cases_smoothed": 31.571, + "total_deaths": 8.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6.698, + "new_cases_per_million": 0.318, + "new_cases_smoothed_per_million": 0.324, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 75.46 + }, + { + "date": "2020-08-05", + "total_cases": 672.0, + "new_cases": 20.0, + "new_cases_smoothed": 34.143, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 6.904, + "new_cases_per_million": 0.205, + "new_cases_smoothed_per_million": 0.351, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 75.46 + }, + { + "date": "2020-08-06", + "total_cases": 717.0, + "new_cases": 45.0, + "new_cases_smoothed": 36.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 7.366, + "new_cases_per_million": 0.462, + "new_cases_smoothed_per_million": 0.379, + "total_deaths_per_million": 0.092, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 75.46 + }, + { + "date": "2020-08-07", + "total_cases": 750.0, + "new_cases": 33.0, + "new_cases_smoothed": 34.429, + "total_deaths": 10.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 7.705, + "new_cases_per_million": 0.339, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.015, + "stringency_index": 75.46 + }, + { + "date": "2020-08-08", + "total_cases": 789.0, + "new_cases": 39.0, + "new_cases_smoothed": 33.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8.106, + "new_cases_per_million": 0.401, + "new_cases_smoothed_per_million": 0.339, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 75.46 + }, + { + "date": "2020-08-09", + "total_cases": 812.0, + "new_cases": 23.0, + "new_cases_smoothed": 31.714, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.342, + "new_cases_per_million": 0.236, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 0.103, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 75.46 + }, + { + "date": "2020-08-10", + "total_cases": 841.0, + "new_cases": 29.0, + "new_cases_smoothed": 31.429, + "total_deaths": 13.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 8.64, + "new_cases_per_million": 0.298, + "new_cases_smoothed_per_million": 0.323, + "total_deaths_per_million": 0.134, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 75.46 + }, + { + "date": "2020-08-11", + "total_cases": 846.0, + "new_cases": 5.0, + "new_cases_smoothed": 27.714, + "total_deaths": 13.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 8.691, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.285, + "total_deaths_per_million": 0.134, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 75.46 + }, + { + "date": "2020-08-12", + "total_cases": 866.0, + "new_cases": 20.0, + "new_cases_smoothed": 27.714, + "total_deaths": 17.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 8.897, + "new_cases_per_million": 0.205, + "new_cases_smoothed_per_million": 0.285, + "total_deaths_per_million": 0.175, + "new_deaths_per_million": 0.041, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 78.24 + }, + { + "date": "2020-08-13", + "total_cases": 883.0, + "new_cases": 17.0, + "new_cases_smoothed": 23.714, + "total_deaths": 18.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 9.071, + "new_cases_per_million": 0.175, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 0.185, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.013, + "stringency_index": 78.24 + }, + { + "date": "2020-08-14", + "total_cases": 911.0, + "new_cases": 28.0, + "new_cases_smoothed": 23.0, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 9.359, + "new_cases_per_million": 0.288, + "new_cases_smoothed_per_million": 0.236, + "total_deaths_per_million": 0.216, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 78.24 + }, + { + "date": "2020-08-15", + "total_cases": 930.0, + "new_cases": 19.0, + "new_cases_smoothed": 20.143, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 9.554, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.207, + "total_deaths_per_million": 0.216, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 78.24 + }, + { + "date": "2020-08-16", + "total_cases": 934.0, + "new_cases": 4.0, + "new_cases_smoothed": 17.429, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 9.595, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.226, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 78.24 + }, + { + "date": "2020-08-17", + "total_cases": 964.0, + "new_cases": 30.0, + "new_cases_smoothed": 17.571, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 9.904, + "new_cases_per_million": 0.308, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.247, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.016, + "stringency_index": 78.24 + }, + { + "date": "2020-08-18", + "total_cases": 983.0, + "new_cases": 19.0, + "new_cases_smoothed": 19.571, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 10.099, + "new_cases_per_million": 0.195, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.018, + "stringency_index": 74.54 + }, + { + "date": "2020-08-19", + "total_cases": 989.0, + "new_cases": 6.0, + "new_cases_smoothed": 17.571, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 10.16, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.181, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.012, + "stringency_index": 74.54 + }, + { + "date": "2020-08-20", + "total_cases": 994.0, + "new_cases": 5.0, + "new_cases_smoothed": 15.857, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.212, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 74.54 + }, + { + "date": "2020-08-21", + "total_cases": 1007.0, + "new_cases": 13.0, + "new_cases_smoothed": 13.714, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.345, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.141, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 74.54 + }, + { + "date": "2020-08-22", + "total_cases": 1009.0, + "new_cases": 2.0, + "new_cases_smoothed": 11.286, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.366, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.116, + "total_deaths_per_million": 0.257, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 74.54 + }, + { + "date": "2020-08-23", + "total_cases": 1014.0, + "new_cases": 5.0, + "new_cases_smoothed": 11.429, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.417, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.267, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.006, + "stringency_index": 74.54 + }, + { + "date": "2020-08-24", + "total_cases": 1016.0, + "new_cases": 2.0, + "new_cases_smoothed": 7.429, + "total_deaths": 27.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 10.438, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.076, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.004, + "stringency_index": 74.54 + }, + { + "date": "2020-08-25", + "total_cases": 1022.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.571, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.499, + "new_cases_per_million": 0.062, + "new_cases_smoothed_per_million": 0.057, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 74.54 + }, + { + "date": "2020-08-26", + "total_cases": 1029.0, + "new_cases": 7.0, + "new_cases_smoothed": 5.714, + "total_deaths": 27.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 10.571, + "new_cases_per_million": 0.072, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.277, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.003, + "stringency_index": 74.54 + }, + { + "date": "2020-08-27", + "total_cases": 1034.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.714, + "total_deaths": 30.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.623, + "new_cases_per_million": 0.051, + "new_cases_smoothed_per_million": 0.059, + "total_deaths_per_million": 0.308, + "new_deaths_per_million": 0.031, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 74.54 + }, + { + "date": "2020-08-28", + "total_cases": 1036.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.643, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.308, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007, + "stringency_index": 74.54 + }, + { + "date": "2020-08-29", + "total_cases": 1038.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.143, + "total_deaths": 31.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.664, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.318, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-30", + "total_cases": 1040.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.714, + "total_deaths": 32.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 10.684, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-08-31", + "total_cases": 1040.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 32.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.684, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.035, + "total_deaths_per_million": 0.329, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-09-01", + "total_cases": 1044.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.143, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.725, + "new_cases_per_million": 0.041, + "new_cases_smoothed_per_million": 0.032, + "total_deaths_per_million": 0.349, + "new_deaths_per_million": 0.021, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-09-02", + "total_cases": 1044.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 10.725, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.022, + "total_deaths_per_million": 0.349, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-09-03", + "total_cases": 1046.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 35.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.746, + "new_cases_per_million": 0.021, + "new_cases_smoothed_per_million": 0.018, + "total_deaths_per_million": 0.36, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-09-04", + "total_cases": 1046.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 10.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-09-05", + "total_cases": 1046.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 35.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 10.746, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.012, + "total_deaths_per_million": 0.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.006 + } + ] + }, + "ESH": { + "continent": "Africa", + "location": "Western Sahara", + "population": 597330.0, + "median_age": 28.4, + "aged_70_older": 1.38, + "life_expectancy": 70.26, + "data": [ + { + "date": "2020-04-26", + "total_cases": 6.0, + "new_cases": 6.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 10.045, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-27", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-28", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-29", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-04-30", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-01", + "total_cases": 6.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-05-02", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.435, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-03", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-04", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-05", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-06", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-07", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-08", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-09", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-10", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-11", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-12", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-13", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-14", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-15", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-16", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-17", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-18", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-19", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-20", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-21", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-22", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-23", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-24", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-25", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-26", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-27", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-28", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-29", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.045, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-05-30", + "total_cases": 23.0, + "new_cases": 17.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 28.46, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 1.674, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-05-31", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-01", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-02", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-03", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-04", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-05", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 4.066, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.239 + }, + { + "date": "2020-06-06", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-07", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-08", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-09", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-10", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-11", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-12", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-13", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-14", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-15", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-16", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-17", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-18", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-19", + "total_cases": 23.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.505, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-20", + "total_cases": 25.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 3.348, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-21", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-22", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-23", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-24", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-25", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-26", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.478, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-27", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.853, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-28", + "total_cases": 208.0, + "new_cases": 183.0, + "new_cases_smoothed": 26.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.216, + "new_cases_per_million": 306.363, + "new_cases_smoothed_per_million": 43.766, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-29", + "total_cases": 208.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.766, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-06-30", + "total_cases": 208.0, + "new_cases": 0.0, + "new_cases_smoothed": 26.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 348.216, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 43.766, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-01", + "total_cases": 380.0, + "new_cases": 172.0, + "new_cases_smoothed": 50.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 636.164, + "new_cases_per_million": 287.948, + "new_cases_smoothed_per_million": 84.902, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-02", + "total_cases": 461.0, + "new_cases": 81.0, + "new_cases_smoothed": 62.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 771.768, + "new_cases_per_million": 135.603, + "new_cases_smoothed_per_million": 104.274, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-03", + "total_cases": 461.0, + "new_cases": 0.0, + "new_cases_smoothed": 62.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 771.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 104.274, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-04", + "total_cases": 519.0, + "new_cases": 58.0, + "new_cases_smoothed": 70.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 97.099, + "new_cases_smoothed_per_million": 118.145, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-05", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 74.379, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-06", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 74.379, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-07", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 44.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 74.379, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-08", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 33.243, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-09", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.871, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-10", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 13.871, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-11", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-12", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-13", + "total_cases": 519.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 868.866, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-14", + "total_cases": 761.0, + "new_cases": 242.0, + "new_cases_smoothed": 34.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1274.003, + "new_cases_per_million": 405.136, + "new_cases_smoothed_per_million": 57.877, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-15", + "total_cases": 766.0, + "new_cases": 5.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 8.371, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-16", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-17", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-18", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-19", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-20", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 59.072, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-21", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.196, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-22", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-23", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-24", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-25", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-26", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-27", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-28", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-29", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-30", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-07-31", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-01", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-02", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-03", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-04", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-05", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-06", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-07", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-08", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-09", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-10", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-11", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-12", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-13", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-14", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-15", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-16", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-17", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-18", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-19", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-20", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-21", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-22", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-23", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-24", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-25", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-26", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-27", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-28", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-29", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-30", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-08-31", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-01", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-02", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-03", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-04", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-09-05", + "total_cases": 766.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1282.373, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 1.674, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + } + ] + }, + "YEM": { + "continent": "Asia", + "location": "Yemen", + "population": 29825968.0, + "population_density": 53.508, + "median_age": 20.3, + "aged_65_older": 2.922, + "aged_70_older": 1.583, + "gdp_per_capita": 1479.147, + "extreme_poverty": 18.8, + "cardiovasc_death_rate": 495.003, + "diabetes_prevalence": 5.35, + "female_smokers": 7.6, + "male_smokers": 29.2, + "handwashing_facilities": 49.542, + "hospital_beds_per_thousand": 0.7, + "life_expectancy": 66.12, + "data": [ + { + "date": "2020-04-10", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.034, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-11", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-12", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-13", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-14", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-15", + "total_cases": 1.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-16", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.005, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-17", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-18", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-19", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-20", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-21", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-22", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-23", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-24", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-25", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-26", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-27", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-28", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-29", + "total_cases": 1.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.034, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 40.74 + }, + { + "date": "2020-04-30", + "total_cases": 6.0, + "new_cases": 5.0, + "new_cases_smoothed": 0.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 52.78 + }, + { + "date": "2020-05-01", + "total_cases": 6.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 2.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.201, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.024, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 58.33 + }, + { + "date": "2020-05-02", + "total_cases": 7.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.235, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 58.33 + }, + { + "date": "2020-05-03", + "total_cases": 10.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.335, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 58.33 + }, + { + "date": "2020-05-04", + "total_cases": 10.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.335, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.043, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 58.33 + }, + { + "date": "2020-05-05", + "total_cases": 12.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.402, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.053, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 56.48 + }, + { + "date": "2020-05-06", + "total_cases": 21.0, + "new_cases": 9.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 0.704, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.101, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.014, + "stringency_index": 56.48 + }, + { + "date": "2020-05-07", + "total_cases": 25.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.714, + "total_deaths": 5.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.838, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.091, + "total_deaths_per_million": 0.168, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 56.48 + }, + { + "date": "2020-05-08", + "total_cases": 26.0, + "new_cases": 1.0, + "new_cases_smoothed": 2.857, + "total_deaths": 6.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 0.872, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.201, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 56.48 + }, + { + "date": "2020-05-09", + "total_cases": 34.0, + "new_cases": 8.0, + "new_cases_smoothed": 3.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.14, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.129, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 56.48 + }, + { + "date": "2020-05-10", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 1.14, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.235, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.024, + "stringency_index": 56.48 + }, + { + "date": "2020-05-11", + "total_cases": 51.0, + "new_cases": 17.0, + "new_cases_smoothed": 5.857, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 1.71, + "new_cases_per_million": 0.57, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.268, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.029, + "stringency_index": 56.48 + }, + { + "date": "2020-05-12", + "total_cases": 56.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.286, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 1.878, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.211, + "total_deaths_per_million": 0.302, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 56.48 + }, + { + "date": "2020-05-13", + "total_cases": 67.0, + "new_cases": 11.0, + "new_cases_smoothed": 6.571, + "total_deaths": 11.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 2.246, + "new_cases_per_million": 0.369, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 0.369, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 56.48 + }, + { + "date": "2020-05-14", + "total_cases": 70.0, + "new_cases": 3.0, + "new_cases_smoothed": 6.429, + "total_deaths": 12.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.347, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 0.402, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 56.48 + }, + { + "date": "2020-05-15", + "total_cases": 87.0, + "new_cases": 17.0, + "new_cases_smoothed": 8.714, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 2.917, + "new_cases_per_million": 0.57, + "new_cases_smoothed_per_million": 0.292, + "total_deaths_per_million": 0.436, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.034, + "stringency_index": 56.48 + }, + { + "date": "2020-05-16", + "total_cases": 106.0, + "new_cases": 19.0, + "new_cases_smoothed": 10.286, + "total_deaths": 15.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 3.554, + "new_cases_per_million": 0.637, + "new_cases_smoothed_per_million": 0.345, + "total_deaths_per_million": 0.503, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.038, + "stringency_index": 56.48 + }, + { + "date": "2020-05-17", + "total_cases": 124.0, + "new_cases": 18.0, + "new_cases_smoothed": 12.857, + "total_deaths": 19.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4.157, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 0.431, + "total_deaths_per_million": 0.637, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 56.48 + }, + { + "date": "2020-05-18", + "total_cases": 128.0, + "new_cases": 4.0, + "new_cases_smoothed": 11.0, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 4.292, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 0.671, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.057, + "stringency_index": 56.48 + }, + { + "date": "2020-05-19", + "total_cases": 130.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.571, + "total_deaths": 20.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 4.359, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 0.671, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 56.48 + }, + { + "date": "2020-05-20", + "total_cases": 167.0, + "new_cases": 37.0, + "new_cases_smoothed": 14.286, + "total_deaths": 28.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 5.599, + "new_cases_per_million": 1.241, + "new_cases_smoothed_per_million": 0.479, + "total_deaths_per_million": 0.939, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 56.48 + }, + { + "date": "2020-05-21", + "total_cases": 180.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.714, + "total_deaths": 29.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 6.035, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.527, + "total_deaths_per_million": 0.972, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 56.48 + }, + { + "date": "2020-05-22", + "total_cases": 193.0, + "new_cases": 13.0, + "new_cases_smoothed": 15.143, + "total_deaths": 33.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 6.471, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.508, + "total_deaths_per_million": 1.106, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 56.48 + }, + { + "date": "2020-05-23", + "total_cases": 205.0, + "new_cases": 12.0, + "new_cases_smoothed": 14.143, + "total_deaths": 33.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 6.873, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.474, + "total_deaths_per_million": 1.106, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 56.48 + }, + { + "date": "2020-05-24", + "total_cases": 212.0, + "new_cases": 7.0, + "new_cases_smoothed": 12.571, + "total_deaths": 39.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 7.108, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.421, + "total_deaths_per_million": 1.308, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 56.48 + }, + { + "date": "2020-05-25", + "total_cases": 222.0, + "new_cases": 10.0, + "new_cases_smoothed": 13.429, + "total_deaths": 42.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 7.443, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.45, + "total_deaths_per_million": 1.408, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 56.48 + }, + { + "date": "2020-05-26", + "total_cases": 237.0, + "new_cases": 15.0, + "new_cases_smoothed": 15.286, + "total_deaths": 45.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 7.946, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.512, + "total_deaths_per_million": 1.509, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 56.48 + }, + { + "date": "2020-05-27", + "total_cases": 249.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.714, + "total_deaths": 49.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 8.348, + "new_cases_per_million": 0.402, + "new_cases_smoothed_per_million": 0.393, + "total_deaths_per_million": 1.643, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 56.48 + }, + { + "date": "2020-05-28", + "total_cases": 255.0, + "new_cases": 6.0, + "new_cases_smoothed": 10.714, + "total_deaths": 53.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 8.55, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 1.777, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 58.33 + }, + { + "date": "2020-05-29", + "total_cases": 278.0, + "new_cases": 23.0, + "new_cases_smoothed": 12.143, + "total_deaths": 57.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 9.321, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.407, + "total_deaths_per_million": 1.911, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.115, + "stringency_index": 58.33 + }, + { + "date": "2020-05-30", + "total_cases": 287.0, + "new_cases": 9.0, + "new_cases_smoothed": 11.714, + "total_deaths": 66.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 9.622, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.393, + "total_deaths_per_million": 2.213, + "new_deaths_per_million": 0.302, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 58.33 + }, + { + "date": "2020-05-31", + "total_cases": 310.0, + "new_cases": 23.0, + "new_cases_smoothed": 14.0, + "total_deaths": 77.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 10.394, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.469, + "total_deaths_per_million": 2.582, + "new_deaths_per_million": 0.369, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 58.33 + }, + { + "date": "2020-06-01", + "total_cases": 323.0, + "new_cases": 13.0, + "new_cases_smoothed": 14.429, + "total_deaths": 80.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 10.829, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.484, + "total_deaths_per_million": 2.682, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 58.33 + }, + { + "date": "2020-06-02", + "total_cases": 354.0, + "new_cases": 31.0, + "new_cases_smoothed": 16.714, + "total_deaths": 84.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 11.869, + "new_cases_per_million": 1.039, + "new_cases_smoothed_per_million": 0.56, + "total_deaths_per_million": 2.816, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.187, + "stringency_index": 58.33 + }, + { + "date": "2020-06-03", + "total_cases": 399.0, + "new_cases": 45.0, + "new_cases_smoothed": 21.429, + "total_deaths": 87.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 13.378, + "new_cases_per_million": 1.509, + "new_cases_smoothed_per_million": 0.718, + "total_deaths_per_million": 2.917, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.182, + "stringency_index": 58.33 + }, + { + "date": "2020-06-04", + "total_cases": 403.0, + "new_cases": 4.0, + "new_cases_smoothed": 21.143, + "total_deaths": 88.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 13.512, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.709, + "total_deaths_per_million": 2.95, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 58.33 + }, + { + "date": "2020-06-05", + "total_cases": 453.0, + "new_cases": 50.0, + "new_cases_smoothed": 25.0, + "total_deaths": 103.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 15.188, + "new_cases_per_million": 1.676, + "new_cases_smoothed_per_million": 0.838, + "total_deaths_per_million": 3.453, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 58.33 + }, + { + "date": "2020-06-06", + "total_cases": 469.0, + "new_cases": 16.0, + "new_cases_smoothed": 26.0, + "total_deaths": 111.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.429, + "total_cases_per_million": 15.725, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 0.872, + "total_deaths_per_million": 3.722, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.216, + "stringency_index": 58.33 + }, + { + "date": "2020-06-07", + "total_cases": 473.0, + "new_cases": 4.0, + "new_cases_smoothed": 23.286, + "total_deaths": 112.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 15.859, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 3.755, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.168, + "stringency_index": 58.33 + }, + { + "date": "2020-06-08", + "total_cases": 486.0, + "new_cases": 13.0, + "new_cases_smoothed": 23.286, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 16.295, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 3.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 58.33 + }, + { + "date": "2020-06-09", + "total_cases": 496.0, + "new_cases": 10.0, + "new_cases_smoothed": 20.286, + "total_deaths": 112.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 16.63, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.68, + "total_deaths_per_million": 3.755, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 58.33 + }, + { + "date": "2020-06-10", + "total_cases": 524.0, + "new_cases": 28.0, + "new_cases_smoothed": 17.857, + "total_deaths": 127.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 17.569, + "new_cases_per_million": 0.939, + "new_cases_smoothed_per_million": 0.599, + "total_deaths_per_million": 4.258, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 58.33 + }, + { + "date": "2020-06-11", + "total_cases": 560.0, + "new_cases": 36.0, + "new_cases_smoothed": 22.429, + "total_deaths": 129.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 18.776, + "new_cases_per_million": 1.207, + "new_cases_smoothed_per_million": 0.752, + "total_deaths_per_million": 4.325, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 58.33 + }, + { + "date": "2020-06-12", + "total_cases": 591.0, + "new_cases": 31.0, + "new_cases_smoothed": 19.714, + "total_deaths": 136.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 19.815, + "new_cases_per_million": 1.039, + "new_cases_smoothed_per_million": 0.661, + "total_deaths_per_million": 4.56, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 58.33 + }, + { + "date": "2020-06-13", + "total_cases": 632.0, + "new_cases": 41.0, + "new_cases_smoothed": 23.286, + "total_deaths": 139.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 21.19, + "new_cases_per_million": 1.375, + "new_cases_smoothed_per_million": 0.781, + "total_deaths_per_million": 4.66, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 58.33 + }, + { + "date": "2020-06-14", + "total_cases": 705.0, + "new_cases": 73.0, + "new_cases_smoothed": 33.143, + "total_deaths": 160.0, + "new_deaths": 21.0, + "new_deaths_smoothed": 6.857, + "total_cases_per_million": 23.637, + "new_cases_per_million": 2.448, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 5.364, + "new_deaths_per_million": 0.704, + "new_deaths_smoothed_per_million": 0.23, + "stringency_index": 58.33 + }, + { + "date": "2020-06-15", + "total_cases": 728.0, + "new_cases": 23.0, + "new_cases_smoothed": 34.571, + "total_deaths": 164.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 7.429, + "total_cases_per_million": 24.408, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 1.159, + "total_deaths_per_million": 5.499, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.249, + "stringency_index": 58.33 + }, + { + "date": "2020-06-16", + "total_cases": 844.0, + "new_cases": 116.0, + "new_cases_smoothed": 49.714, + "total_deaths": 208.0, + "new_deaths": 44.0, + "new_deaths_smoothed": 13.714, + "total_cases_per_million": 28.297, + "new_cases_per_million": 3.889, + "new_cases_smoothed_per_million": 1.667, + "total_deaths_per_million": 6.974, + "new_deaths_per_million": 1.475, + "new_deaths_smoothed_per_million": 0.46, + "stringency_index": 58.33 + }, + { + "date": "2020-06-17", + "total_cases": 889.0, + "new_cases": 45.0, + "new_cases_smoothed": 52.143, + "total_deaths": 215.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 12.571, + "total_cases_per_million": 29.806, + "new_cases_per_million": 1.509, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 7.208, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.421, + "stringency_index": 58.33 + }, + { + "date": "2020-06-18", + "total_cases": 902.0, + "new_cases": 13.0, + "new_cases_smoothed": 48.857, + "total_deaths": 244.0, + "new_deaths": 29.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 30.242, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 1.638, + "total_deaths_per_million": 8.181, + "new_deaths_per_million": 0.972, + "new_deaths_smoothed_per_million": 0.551, + "stringency_index": 58.33 + }, + { + "date": "2020-06-19", + "total_cases": 906.0, + "new_cases": 4.0, + "new_cases_smoothed": 45.0, + "total_deaths": 248.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 30.376, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 1.509, + "total_deaths_per_million": 8.315, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.536, + "stringency_index": 58.33 + }, + { + "date": "2020-06-20", + "total_cases": 919.0, + "new_cases": 13.0, + "new_cases_smoothed": 41.0, + "total_deaths": 251.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 16.0, + "total_cases_per_million": 30.812, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 1.375, + "total_deaths_per_million": 8.415, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.536, + "stringency_index": 58.33 + }, + { + "date": "2020-06-21", + "total_cases": 923.0, + "new_cases": 4.0, + "new_cases_smoothed": 31.143, + "total_deaths": 254.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 13.429, + "total_cases_per_million": 30.946, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 1.044, + "total_deaths_per_million": 8.516, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.45, + "stringency_index": 58.33 + }, + { + "date": "2020-06-22", + "total_cases": 941.0, + "new_cases": 18.0, + "new_cases_smoothed": 30.429, + "total_deaths": 256.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 13.143, + "total_cases_per_million": 31.55, + "new_cases_per_million": 0.604, + "new_cases_smoothed_per_million": 1.02, + "total_deaths_per_million": 8.583, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.441, + "stringency_index": 58.33 + }, + { + "date": "2020-06-23", + "total_cases": 967.0, + "new_cases": 26.0, + "new_cases_smoothed": 17.571, + "total_deaths": 257.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 32.421, + "new_cases_per_million": 0.872, + "new_cases_smoothed_per_million": 0.589, + "total_deaths_per_million": 8.617, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.235, + "stringency_index": 58.33 + }, + { + "date": "2020-06-24", + "total_cases": 992.0, + "new_cases": 25.0, + "new_cases_smoothed": 14.714, + "total_deaths": 261.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 33.26, + "new_cases_per_million": 0.838, + "new_cases_smoothed_per_million": 0.493, + "total_deaths_per_million": 8.751, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 58.33 + }, + { + "date": "2020-06-25", + "total_cases": 1015.0, + "new_cases": 23.0, + "new_cases_smoothed": 16.143, + "total_deaths": 274.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 34.031, + "new_cases_per_million": 0.771, + "new_cases_smoothed_per_million": 0.541, + "total_deaths_per_million": 9.187, + "new_deaths_per_million": 0.436, + "new_deaths_smoothed_per_million": 0.144, + "stringency_index": 58.33 + }, + { + "date": "2020-06-26", + "total_cases": 1076.0, + "new_cases": 61.0, + "new_cases_smoothed": 24.286, + "total_deaths": 288.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 36.076, + "new_cases_per_million": 2.045, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 9.656, + "new_deaths_per_million": 0.469, + "new_deaths_smoothed_per_million": 0.192, + "stringency_index": 58.33 + }, + { + "date": "2020-06-27", + "total_cases": 1089.0, + "new_cases": 13.0, + "new_cases_smoothed": 24.286, + "total_deaths": 293.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 36.512, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.814, + "total_deaths_per_million": 9.824, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 58.33 + }, + { + "date": "2020-06-28", + "total_cases": 1103.0, + "new_cases": 14.0, + "new_cases_smoothed": 25.714, + "total_deaths": 296.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 36.981, + "new_cases_per_million": 0.469, + "new_cases_smoothed_per_million": 0.862, + "total_deaths_per_million": 9.924, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 58.33 + }, + { + "date": "2020-06-29", + "total_cases": 1118.0, + "new_cases": 15.0, + "new_cases_smoothed": 25.286, + "total_deaths": 302.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 37.484, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.848, + "total_deaths_per_million": 10.125, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.22, + "stringency_index": 58.33 + }, + { + "date": "2020-06-30", + "total_cases": 1128.0, + "new_cases": 10.0, + "new_cases_smoothed": 23.0, + "total_deaths": 304.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 37.819, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.771, + "total_deaths_per_million": 10.192, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 58.33 + }, + { + "date": "2020-07-01", + "total_cases": 1158.0, + "new_cases": 30.0, + "new_cases_smoothed": 23.714, + "total_deaths": 312.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 7.286, + "total_cases_per_million": 38.825, + "new_cases_per_million": 1.006, + "new_cases_smoothed_per_million": 0.795, + "total_deaths_per_million": 10.461, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.244, + "stringency_index": 58.33 + }, + { + "date": "2020-07-02", + "total_cases": 1190.0, + "new_cases": 32.0, + "new_cases_smoothed": 25.0, + "total_deaths": 318.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 39.898, + "new_cases_per_million": 1.073, + "new_cases_smoothed_per_million": 0.838, + "total_deaths_per_million": 10.662, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.211, + "stringency_index": 58.33 + }, + { + "date": "2020-07-03", + "total_cases": 1221.0, + "new_cases": 31.0, + "new_cases_smoothed": 20.714, + "total_deaths": 325.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 40.937, + "new_cases_per_million": 1.039, + "new_cases_smoothed_per_million": 0.695, + "total_deaths_per_million": 10.897, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.177, + "stringency_index": 58.33 + }, + { + "date": "2020-07-04", + "total_cases": 1240.0, + "new_cases": 19.0, + "new_cases_smoothed": 21.571, + "total_deaths": 335.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.0, + "total_cases_per_million": 41.575, + "new_cases_per_million": 0.637, + "new_cases_smoothed_per_million": 0.723, + "total_deaths_per_million": 11.232, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 0.201, + "stringency_index": 58.33 + }, + { + "date": "2020-07-05", + "total_cases": 1248.0, + "new_cases": 8.0, + "new_cases_smoothed": 20.714, + "total_deaths": 337.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 41.843, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.695, + "total_deaths_per_million": 11.299, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 58.33 + }, + { + "date": "2020-07-06", + "total_cases": 1265.0, + "new_cases": 17.0, + "new_cases_smoothed": 21.0, + "total_deaths": 338.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 42.413, + "new_cases_per_million": 0.57, + "new_cases_smoothed_per_million": 0.704, + "total_deaths_per_million": 11.332, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 58.33 + }, + { + "date": "2020-07-07", + "total_cases": 1290.0, + "new_cases": 25.0, + "new_cases_smoothed": 23.143, + "total_deaths": 345.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 43.251, + "new_cases_per_million": 0.838, + "new_cases_smoothed_per_million": 0.776, + "total_deaths_per_million": 11.567, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.196, + "stringency_index": 58.33 + }, + { + "date": "2020-07-08", + "total_cases": 1297.0, + "new_cases": 7.0, + "new_cases_smoothed": 19.857, + "total_deaths": 348.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 43.486, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.666, + "total_deaths_per_million": 11.668, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 58.33 + }, + { + "date": "2020-07-09", + "total_cases": 1318.0, + "new_cases": 21.0, + "new_cases_smoothed": 18.286, + "total_deaths": 351.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 44.19, + "new_cases_per_million": 0.704, + "new_cases_smoothed_per_million": 0.613, + "total_deaths_per_million": 11.768, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.158, + "stringency_index": 58.33 + }, + { + "date": "2020-07-10", + "total_cases": 1356.0, + "new_cases": 38.0, + "new_cases_smoothed": 19.286, + "total_deaths": 361.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 45.464, + "new_cases_per_million": 1.274, + "new_cases_smoothed_per_million": 0.647, + "total_deaths_per_million": 12.104, + "new_deaths_per_million": 0.335, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 58.33 + }, + { + "date": "2020-07-11", + "total_cases": 1380.0, + "new_cases": 24.0, + "new_cases_smoothed": 20.0, + "total_deaths": 364.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 46.268, + "new_cases_per_million": 0.805, + "new_cases_smoothed_per_million": 0.671, + "total_deaths_per_million": 12.204, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.139, + "stringency_index": 58.33 + }, + { + "date": "2020-07-12", + "total_cases": 1389.0, + "new_cases": 9.0, + "new_cases_smoothed": 20.143, + "total_deaths": 365.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 46.57, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 12.238, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 58.33 + }, + { + "date": "2020-07-13", + "total_cases": 1465.0, + "new_cases": 76.0, + "new_cases_smoothed": 28.571, + "total_deaths": 417.0, + "new_deaths": 52.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 49.118, + "new_cases_per_million": 2.548, + "new_cases_smoothed_per_million": 0.958, + "total_deaths_per_million": 13.981, + "new_deaths_per_million": 1.743, + "new_deaths_smoothed_per_million": 0.378, + "stringency_index": 31.48 + }, + { + "date": "2020-07-14", + "total_cases": 1498.0, + "new_cases": 33.0, + "new_cases_smoothed": 29.714, + "total_deaths": 424.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 11.286, + "total_cases_per_million": 50.225, + "new_cases_per_million": 1.106, + "new_cases_smoothed_per_million": 0.996, + "total_deaths_per_million": 14.216, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.378, + "stringency_index": 31.48 + }, + { + "date": "2020-07-15", + "total_cases": 1502.0, + "new_cases": 4.0, + "new_cases_smoothed": 29.286, + "total_deaths": 430.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 50.359, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.982, + "total_deaths_per_million": 14.417, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.393, + "stringency_index": 31.48 + }, + { + "date": "2020-07-16", + "total_cases": 1526.0, + "new_cases": 24.0, + "new_cases_smoothed": 29.714, + "total_deaths": 433.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 11.714, + "total_cases_per_million": 51.163, + "new_cases_per_million": 0.805, + "new_cases_smoothed_per_million": 0.996, + "total_deaths_per_million": 14.518, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.393, + "stringency_index": 31.48 + }, + { + "date": "2020-07-17", + "total_cases": 1552.0, + "new_cases": 26.0, + "new_cases_smoothed": 28.0, + "total_deaths": 438.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 11.0, + "total_cases_per_million": 52.035, + "new_cases_per_million": 0.872, + "new_cases_smoothed_per_million": 0.939, + "total_deaths_per_million": 14.685, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.369, + "stringency_index": 31.48 + }, + { + "date": "2020-07-18", + "total_cases": 1576.0, + "new_cases": 24.0, + "new_cases_smoothed": 28.0, + "total_deaths": 440.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 10.857, + "total_cases_per_million": 52.84, + "new_cases_per_million": 0.805, + "new_cases_smoothed_per_million": 0.939, + "total_deaths_per_million": 14.752, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.364, + "stringency_index": 31.48 + }, + { + "date": "2020-07-19", + "total_cases": 1581.0, + "new_cases": 5.0, + "new_cases_smoothed": 27.429, + "total_deaths": 443.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 53.008, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.92, + "total_deaths_per_million": 14.853, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.374, + "stringency_index": 31.48 + }, + { + "date": "2020-07-20", + "total_cases": 1606.0, + "new_cases": 25.0, + "new_cases_smoothed": 20.143, + "total_deaths": 445.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 53.846, + "new_cases_per_million": 0.838, + "new_cases_smoothed_per_million": 0.675, + "total_deaths_per_million": 14.92, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 31.48 + }, + { + "date": "2020-07-21", + "total_cases": 1619.0, + "new_cases": 13.0, + "new_cases_smoothed": 17.286, + "total_deaths": 447.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 54.282, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.58, + "total_deaths_per_million": 14.987, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.11, + "stringency_index": 31.48 + }, + { + "date": "2020-07-22", + "total_cases": 1629.0, + "new_cases": 10.0, + "new_cases_smoothed": 18.143, + "total_deaths": 456.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 54.617, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.608, + "total_deaths_per_million": 15.289, + "new_deaths_per_million": 0.302, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 31.48 + }, + { + "date": "2020-07-23", + "total_cases": 1640.0, + "new_cases": 11.0, + "new_cases_smoothed": 16.286, + "total_deaths": 458.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 54.986, + "new_cases_per_million": 0.369, + "new_cases_smoothed_per_million": 0.546, + "total_deaths_per_million": 15.356, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.12, + "stringency_index": 31.48 + }, + { + "date": "2020-07-24", + "total_cases": 1654.0, + "new_cases": 14.0, + "new_cases_smoothed": 14.571, + "total_deaths": 461.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 55.455, + "new_cases_per_million": 0.469, + "new_cases_smoothed_per_million": 0.489, + "total_deaths_per_million": 15.456, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.11, + "stringency_index": 31.48 + }, + { + "date": "2020-07-25", + "total_cases": 1654.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 461.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 55.455, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.374, + "total_deaths_per_million": 15.456, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 31.48 + }, + { + "date": "2020-07-26", + "total_cases": 1674.0, + "new_cases": 20.0, + "new_cases_smoothed": 13.286, + "total_deaths": 474.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 56.126, + "new_cases_per_million": 0.671, + "new_cases_smoothed_per_million": 0.445, + "total_deaths_per_million": 15.892, + "new_deaths_per_million": 0.436, + "new_deaths_smoothed_per_million": 0.148, + "stringency_index": 31.48 + }, + { + "date": "2020-07-27", + "total_cases": 1681.0, + "new_cases": 7.0, + "new_cases_smoothed": 10.714, + "total_deaths": 479.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 56.36, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.359, + "total_deaths_per_million": 16.06, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 31.48 + }, + { + "date": "2020-07-28", + "total_cases": 1691.0, + "new_cases": 10.0, + "new_cases_smoothed": 10.286, + "total_deaths": 483.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 56.696, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.345, + "total_deaths_per_million": 16.194, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.172, + "stringency_index": 31.48 + }, + { + "date": "2020-07-29", + "total_cases": 1695.0, + "new_cases": 4.0, + "new_cases_smoothed": 9.429, + "total_deaths": 484.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 56.83, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.316, + "total_deaths_per_million": 16.227, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.134, + "stringency_index": 31.48 + }, + { + "date": "2020-07-30", + "total_cases": 1711.0, + "new_cases": 16.0, + "new_cases_smoothed": 10.143, + "total_deaths": 485.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 57.366, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 16.261, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.129, + "stringency_index": 31.48 + }, + { + "date": "2020-07-31", + "total_cases": 1726.0, + "new_cases": 15.0, + "new_cases_smoothed": 10.286, + "total_deaths": 487.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 57.869, + "new_cases_per_million": 0.503, + "new_cases_smoothed_per_million": 0.345, + "total_deaths_per_million": 16.328, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.125, + "stringency_index": 31.48 + }, + { + "date": "2020-08-01", + "total_cases": 1728.0, + "new_cases": 2.0, + "new_cases_smoothed": 10.571, + "total_deaths": 493.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.571, + "total_cases_per_million": 57.936, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.354, + "total_deaths_per_million": 16.529, + "new_deaths_per_million": 0.201, + "new_deaths_smoothed_per_million": 0.153, + "stringency_index": 31.48 + }, + { + "date": "2020-08-02", + "total_cases": 1730.0, + "new_cases": 2.0, + "new_cases_smoothed": 8.0, + "total_deaths": 494.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 58.003, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.268, + "total_deaths_per_million": 16.563, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 31.48 + }, + { + "date": "2020-08-03", + "total_cases": 1734.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 497.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 58.137, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.254, + "total_deaths_per_million": 16.663, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 31.48 + }, + { + "date": "2020-08-04", + "total_cases": 1738.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.714, + "total_deaths": 499.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 58.271, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.225, + "total_deaths_per_million": 16.73, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 31.48 + }, + { + "date": "2020-08-05", + "total_cases": 1760.0, + "new_cases": 22.0, + "new_cases_smoothed": 9.286, + "total_deaths": 506.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 59.009, + "new_cases_per_million": 0.738, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 16.965, + "new_deaths_per_million": 0.235, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 31.48 + }, + { + "date": "2020-08-06", + "total_cases": 1764.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.571, + "total_deaths": 508.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 59.143, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.254, + "total_deaths_per_million": 17.032, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.11, + "stringency_index": 31.48 + }, + { + "date": "2020-08-07", + "total_cases": 1767.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.857, + "total_deaths": 509.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 59.244, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 17.066, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.105, + "stringency_index": 31.48 + }, + { + "date": "2020-08-08", + "total_cases": 1796.0, + "new_cases": 29.0, + "new_cases_smoothed": 9.714, + "total_deaths": 512.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 60.216, + "new_cases_per_million": 0.972, + "new_cases_smoothed_per_million": 0.326, + "total_deaths_per_million": 17.166, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 31.48 + }, + { + "date": "2020-08-09", + "total_cases": 1800.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 513.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 60.35, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 17.2, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 31.48 + }, + { + "date": "2020-08-10", + "total_cases": 1804.0, + "new_cases": 4.0, + "new_cases_smoothed": 10.0, + "total_deaths": 515.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 60.484, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.335, + "total_deaths_per_million": 17.267, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.086, + "stringency_index": 31.48 + }, + { + "date": "2020-08-11", + "total_cases": 1831.0, + "new_cases": 27.0, + "new_cases_smoothed": 13.286, + "total_deaths": 518.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 61.389, + "new_cases_per_million": 0.905, + "new_cases_smoothed_per_million": 0.445, + "total_deaths_per_million": 17.367, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 31.48 + }, + { + "date": "2020-08-12", + "total_cases": 1831.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.143, + "total_deaths": 523.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 61.389, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.34, + "total_deaths_per_million": 17.535, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 31.48 + }, + { + "date": "2020-08-13", + "total_cases": 1841.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.0, + "total_deaths": 528.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 61.725, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.369, + "total_deaths_per_million": 17.703, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 31.48 + }, + { + "date": "2020-08-14", + "total_cases": 1847.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.429, + "total_deaths": 528.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.714, + "total_cases_per_million": 61.926, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.383, + "total_deaths_per_million": 17.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.091, + "stringency_index": 31.48 + }, + { + "date": "2020-08-15", + "total_cases": 1858.0, + "new_cases": 11.0, + "new_cases_smoothed": 8.857, + "total_deaths": 528.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 62.295, + "new_cases_per_million": 0.369, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 17.703, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 31.48 + }, + { + "date": "2020-08-16", + "total_cases": 1862.0, + "new_cases": 4.0, + "new_cases_smoothed": 8.857, + "total_deaths": 529.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 62.429, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.297, + "total_deaths_per_million": 17.736, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.077, + "stringency_index": 31.48 + }, + { + "date": "2020-08-17", + "total_cases": 1869.0, + "new_cases": 7.0, + "new_cases_smoothed": 9.286, + "total_deaths": 530.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 62.664, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.311, + "total_deaths_per_million": 17.77, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.072, + "stringency_index": 31.48 + }, + { + "date": "2020-08-18", + "total_cases": 1882.0, + "new_cases": 13.0, + "new_cases_smoothed": 7.286, + "total_deaths": 535.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 63.099, + "new_cases_per_million": 0.436, + "new_cases_smoothed_per_million": 0.244, + "total_deaths_per_million": 17.937, + "new_deaths_per_million": 0.168, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 31.48 + }, + { + "date": "2020-08-19", + "total_cases": 1886.0, + "new_cases": 4.0, + "new_cases_smoothed": 7.857, + "total_deaths": 536.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 63.233, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.263, + "total_deaths_per_million": 17.971, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 31.48 + }, + { + "date": "2020-08-20", + "total_cases": 1893.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.429, + "total_deaths": 539.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 63.468, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 18.072, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.053, + "stringency_index": 31.48 + }, + { + "date": "2020-08-21", + "total_cases": 1899.0, + "new_cases": 6.0, + "new_cases_smoothed": 7.429, + "total_deaths": 541.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 63.669, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 18.139, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 31.48 + }, + { + "date": "2020-08-22", + "total_cases": 1906.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.857, + "total_deaths": 542.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 63.904, + "new_cases_per_million": 0.235, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 18.172, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.067, + "stringency_index": 31.48 + }, + { + "date": "2020-08-23", + "total_cases": 1907.0, + "new_cases": 1.0, + "new_cases_smoothed": 6.429, + "total_deaths": 546.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 63.938, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.216, + "total_deaths_per_million": 18.306, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 31.48 + }, + { + "date": "2020-08-24", + "total_cases": 1911.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.0, + "total_deaths": 547.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 64.072, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 18.34, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.081, + "stringency_index": 31.48 + }, + { + "date": "2020-08-25", + "total_cases": 1916.0, + "new_cases": 5.0, + "new_cases_smoothed": 4.857, + "total_deaths": 555.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 64.239, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.163, + "total_deaths_per_million": 18.608, + "new_deaths_per_million": 0.268, + "new_deaths_smoothed_per_million": 0.096, + "stringency_index": 31.48 + }, + { + "date": "2020-08-26", + "total_cases": 1924.0, + "new_cases": 8.0, + "new_cases_smoothed": 5.429, + "total_deaths": 557.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 64.508, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 18.675, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 31.48 + }, + { + "date": "2020-08-27", + "total_cases": 1930.0, + "new_cases": 6.0, + "new_cases_smoothed": 5.286, + "total_deaths": 560.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 64.709, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 18.776, + "new_deaths_per_million": 0.101, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 31.48 + }, + { + "date": "2020-08-28", + "total_cases": 1934.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.0, + "total_deaths": 562.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 64.843, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.168, + "total_deaths_per_million": 18.843, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 31.48 + }, + { + "date": "2020-08-29", + "total_cases": 1943.0, + "new_cases": 9.0, + "new_cases_smoothed": 5.286, + "total_deaths": 563.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 65.145, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.177, + "total_deaths_per_million": 18.876, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 31.48 + }, + { + "date": "2020-08-30", + "total_cases": 1947.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.714, + "total_deaths": 564.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 65.279, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 18.91, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.086 + }, + { + "date": "2020-08-31", + "total_cases": 1953.0, + "new_cases": 6.0, + "new_cases_smoothed": 6.0, + "total_deaths": 564.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 65.48, + "new_cases_per_million": 0.201, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 18.91, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.081 + }, + { + "date": "2020-09-01", + "total_cases": 1958.0, + "new_cases": 5.0, + "new_cases_smoothed": 6.0, + "total_deaths": 566.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 65.647, + "new_cases_per_million": 0.168, + "new_cases_smoothed_per_million": 0.201, + "total_deaths_per_million": 18.977, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.053 + }, + { + "date": "2020-09-02", + "total_cases": 1962.0, + "new_cases": 4.0, + "new_cases_smoothed": 5.429, + "total_deaths": 570.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 65.782, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.182, + "total_deaths_per_million": 19.111, + "new_deaths_per_million": 0.134, + "new_deaths_smoothed_per_million": 0.062 + }, + { + "date": "2020-09-03", + "total_cases": 1976.0, + "new_cases": 14.0, + "new_cases_smoothed": 6.571, + "total_deaths": 571.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 66.251, + "new_cases_per_million": 0.469, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 19.144, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.053 + }, + { + "date": "2020-09-04", + "total_cases": 1980.0, + "new_cases": 4.0, + "new_cases_smoothed": 6.571, + "total_deaths": 572.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 66.385, + "new_cases_per_million": 0.134, + "new_cases_smoothed_per_million": 0.22, + "total_deaths_per_million": 19.178, + "new_deaths_per_million": 0.034, + "new_deaths_smoothed_per_million": 0.048 + }, + { + "date": "2020-09-05", + "total_cases": 1983.0, + "new_cases": 3.0, + "new_cases_smoothed": 5.714, + "total_deaths": 572.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 66.486, + "new_cases_per_million": 0.101, + "new_cases_smoothed_per_million": 0.192, + "total_deaths_per_million": 19.178, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.043 + } + ] + }, + "ZMB": { + "continent": "Africa", + "location": "Zambia", + "population": 18383956.0, + "population_density": 22.995, + "median_age": 17.7, + "aged_65_older": 2.48, + "aged_70_older": 1.542, + "gdp_per_capita": 3689.251, + "extreme_poverty": 57.5, + "cardiovasc_death_rate": 234.499, + "diabetes_prevalence": 3.94, + "female_smokers": 3.1, + "male_smokers": 24.7, + "handwashing_facilities": 13.938, + "hospital_beds_per_thousand": 2.0, + "life_expectancy": 63.89, + "data": [ + { + "date": "2020-03-19", + "total_cases": 2.0, + "new_cases": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.109, + "new_cases_per_million": 0.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 16.67 + }, + { + "date": "2020-03-20", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.109, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-21", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.109, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.109, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-23", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.163, + "new_cases_per_million": 0.054, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-24", + "total_cases": 3.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.163, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-25", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.163, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-26", + "total_cases": 12.0, + "new_cases": 9.0, + "new_cases_smoothed": 1.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.653, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 36.11 + }, + { + "date": "2020-03-27", + "total_cases": 14.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.762, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-28", + "total_cases": 16.0, + "new_cases": 2.0, + "new_cases_smoothed": 2.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.87, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.109, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 41.67 + }, + { + "date": "2020-03-29", + "total_cases": 28.0, + "new_cases": 12.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.523, + "new_cases_per_million": 0.653, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-30", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.714, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.577, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-03-31", + "total_cases": 35.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.904, + "new_cases_per_million": 0.326, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-01", + "total_cases": 35.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.904, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-02", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.958, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 47.22 + }, + { + "date": "2020-04-03", + "total_cases": 39.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.163, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-04", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-05", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.085, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-06", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.078, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-07", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-08", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 47.22 + }, + { + "date": "2020-04-09", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 50.93 + }, + { + "date": "2020-04-10", + "total_cases": 39.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.121, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.054, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 50.93 + }, + { + "date": "2020-04-11", + "total_cases": 40.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.176, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 50.93 + }, + { + "date": "2020-04-12", + "total_cases": 40.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.176, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.008, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 50.93 + }, + { + "date": "2020-04-13", + "total_cases": 43.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.571, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.339, + "new_cases_per_million": 0.163, + "new_cases_smoothed_per_million": 0.031, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 50.93 + }, + { + "date": "2020-04-14", + "total_cases": 45.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.448, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 53.7 + }, + { + "date": "2020-04-15", + "total_cases": 45.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.448, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-16", + "total_cases": 48.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.163, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-17", + "total_cases": 48.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.611, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.07, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-18", + "total_cases": 52.0, + "new_cases": 4.0, + "new_cases_smoothed": 1.714, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.829, + "new_cases_per_million": 0.218, + "new_cases_smoothed_per_million": 0.093, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-04-19", + "total_cases": 57.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.101, + "new_cases_per_million": 0.272, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-04-20", + "total_cases": 61.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.571, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.318, + "new_cases_per_million": 0.218, + "new_cases_smoothed_per_million": 0.14, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-21", + "total_cases": 65.0, + "new_cases": 4.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.536, + "new_cases_per_million": 0.218, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-22", + "total_cases": 65.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 3.536, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.155, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-23", + "total_cases": 74.0, + "new_cases": 9.0, + "new_cases_smoothed": 3.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.025, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.202, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-24", + "total_cases": 76.0, + "new_cases": 2.0, + "new_cases_smoothed": 4.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.134, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.218, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-25", + "total_cases": 84.0, + "new_cases": 8.0, + "new_cases_smoothed": 4.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.569, + "new_cases_per_million": 0.435, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-26", + "total_cases": 84.0, + "new_cases": 0.0, + "new_cases_smoothed": 3.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 4.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 65.28 + }, + { + "date": "2020-04-27", + "total_cases": 88.0, + "new_cases": 4.0, + "new_cases_smoothed": 3.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.787, + "new_cases_per_million": 0.218, + "new_cases_smoothed_per_million": 0.21, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-04-28", + "total_cases": 89.0, + "new_cases": 1.0, + "new_cases_smoothed": 3.429, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 4.841, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 0.186, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-04-29", + "total_cases": 95.0, + "new_cases": 6.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.168, + "new_cases_per_million": 0.326, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-04-30", + "total_cases": 97.0, + "new_cases": 2.0, + "new_cases_smoothed": 3.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.276, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.179, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-05-01", + "total_cases": 106.0, + "new_cases": 9.0, + "new_cases_smoothed": 4.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.766, + "new_cases_per_million": 0.49, + "new_cases_smoothed_per_million": 0.233, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 65.28 + }, + { + "date": "2020-05-02", + "total_cases": 109.0, + "new_cases": 3.0, + "new_cases_smoothed": 3.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 5.929, + "new_cases_per_million": 0.163, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-03", + "total_cases": 119.0, + "new_cases": 10.0, + "new_cases_smoothed": 5.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.473, + "new_cases_per_million": 0.544, + "new_cases_smoothed_per_million": 0.272, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-04", + "total_cases": 124.0, + "new_cases": 5.0, + "new_cases_smoothed": 5.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 6.745, + "new_cases_per_million": 0.272, + "new_cases_smoothed_per_million": 0.28, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-05", + "total_cases": 137.0, + "new_cases": 13.0, + "new_cases_smoothed": 6.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 7.452, + "new_cases_per_million": 0.707, + "new_cases_smoothed_per_million": 0.373, + "total_deaths_per_million": 0.163, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 70.83 + }, + { + "date": "2020-05-06", + "total_cases": 139.0, + "new_cases": 2.0, + "new_cases_smoothed": 6.286, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.561, + "new_cases_per_million": 0.109, + "new_cases_smoothed_per_million": 0.342, + "total_deaths_per_million": 0.218, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 70.83 + }, + { + "date": "2020-05-07", + "total_cases": 146.0, + "new_cases": 7.0, + "new_cases_smoothed": 7.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 7.942, + "new_cases_per_million": 0.381, + "new_cases_smoothed_per_million": 0.381, + "total_deaths_per_million": 0.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 70.83 + }, + { + "date": "2020-05-08", + "total_cases": 153.0, + "new_cases": 7.0, + "new_cases_smoothed": 6.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 8.322, + "new_cases_per_million": 0.381, + "new_cases_smoothed_per_million": 0.365, + "total_deaths_per_million": 0.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 43.52 + }, + { + "date": "2020-05-09", + "total_cases": 167.0, + "new_cases": 14.0, + "new_cases_smoothed": 8.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 9.084, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 0.451, + "total_deaths_per_million": 0.218, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 43.52 + }, + { + "date": "2020-05-10", + "total_cases": 252.0, + "new_cases": 85.0, + "new_cases_smoothed": 19.0, + "total_deaths": 7.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 13.708, + "new_cases_per_million": 4.624, + "new_cases_smoothed_per_million": 1.034, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 43.52 + }, + { + "date": "2020-05-11", + "total_cases": 267.0, + "new_cases": 15.0, + "new_cases_smoothed": 20.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14.524, + "new_cases_per_million": 0.816, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 43.52 + }, + { + "date": "2020-05-12", + "total_cases": 267.0, + "new_cases": 0.0, + "new_cases_smoothed": 18.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 14.524, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.01, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 43.52 + }, + { + "date": "2020-05-13", + "total_cases": 441.0, + "new_cases": 174.0, + "new_cases_smoothed": 43.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 23.988, + "new_cases_per_million": 9.465, + "new_cases_smoothed_per_million": 2.347, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 43.52 + }, + { + "date": "2020-05-14", + "total_cases": 446.0, + "new_cases": 5.0, + "new_cases_smoothed": 42.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 24.26, + "new_cases_per_million": 0.272, + "new_cases_smoothed_per_million": 2.331, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 43.52 + }, + { + "date": "2020-05-15", + "total_cases": 654.0, + "new_cases": 208.0, + "new_cases_smoothed": 71.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 35.574, + "new_cases_per_million": 11.314, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 43.52 + }, + { + "date": "2020-05-16", + "total_cases": 668.0, + "new_cases": 14.0, + "new_cases_smoothed": 71.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 36.336, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 3.893, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 43.52 + }, + { + "date": "2020-05-17", + "total_cases": 679.0, + "new_cases": 11.0, + "new_cases_smoothed": 61.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 36.934, + "new_cases_per_million": 0.598, + "new_cases_smoothed_per_million": 3.318, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-18", + "total_cases": 753.0, + "new_cases": 74.0, + "new_cases_smoothed": 69.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 40.96, + "new_cases_per_million": 4.025, + "new_cases_smoothed_per_million": 3.777, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-19", + "total_cases": 761.0, + "new_cases": 8.0, + "new_cases_smoothed": 70.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.395, + "new_cases_per_million": 0.435, + "new_cases_smoothed_per_million": 3.839, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-20", + "total_cases": 772.0, + "new_cases": 11.0, + "new_cases_smoothed": 47.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 41.993, + "new_cases_per_million": 0.598, + "new_cases_smoothed_per_million": 2.572, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-21", + "total_cases": 832.0, + "new_cases": 60.0, + "new_cases_smoothed": 55.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 45.257, + "new_cases_per_million": 3.264, + "new_cases_smoothed_per_million": 3.0, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-22", + "total_cases": 866.0, + "new_cases": 34.0, + "new_cases_smoothed": 30.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 47.106, + "new_cases_per_million": 1.849, + "new_cases_smoothed_per_million": 1.647, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-23", + "total_cases": 920.0, + "new_cases": 54.0, + "new_cases_smoothed": 36.0, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.044, + "new_cases_per_million": 2.937, + "new_cases_smoothed_per_million": 1.958, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-24", + "total_cases": 920.0, + "new_cases": 0.0, + "new_cases_smoothed": 34.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.873, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-25", + "total_cases": 920.0, + "new_cases": 0.0, + "new_cases_smoothed": 23.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.298, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-26", + "total_cases": 920.0, + "new_cases": 0.0, + "new_cases_smoothed": 22.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.236, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-27", + "total_cases": 920.0, + "new_cases": 0.0, + "new_cases_smoothed": 21.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 50.044, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.15, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-28", + "total_cases": 1057.0, + "new_cases": 137.0, + "new_cases_smoothed": 32.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.496, + "new_cases_per_million": 7.452, + "new_cases_smoothed_per_million": 1.748, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-29", + "total_cases": 1057.0, + "new_cases": 0.0, + "new_cases_smoothed": 27.286, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.496, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.484, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-30", + "total_cases": 1057.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.496, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-05-31", + "total_cases": 1057.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.496, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 43.52 + }, + { + "date": "2020-06-01", + "total_cases": 1057.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 57.496, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.065, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-02", + "total_cases": 1089.0, + "new_cases": 32.0, + "new_cases_smoothed": 24.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.236, + "new_cases_per_million": 1.741, + "new_cases_smoothed_per_million": 1.313, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-03", + "total_cases": 1089.0, + "new_cases": 0.0, + "new_cases_smoothed": 24.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.313, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-04", + "total_cases": 1089.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 59.236, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-05", + "total_cases": 1111.0, + "new_cases": 22.0, + "new_cases_smoothed": 7.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.433, + "new_cases_per_million": 1.197, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-06", + "total_cases": 1111.0, + "new_cases": 0.0, + "new_cases_smoothed": 7.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 60.433, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.42, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-07", + "total_cases": 1154.0, + "new_cases": 43.0, + "new_cases_smoothed": 13.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.772, + "new_cases_per_million": 2.339, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-08", + "total_cases": 1154.0, + "new_cases": 0.0, + "new_cases_smoothed": 13.857, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 62.772, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.754, + "total_deaths_per_million": 0.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-09", + "total_cases": 1200.0, + "new_cases": 46.0, + "new_cases_smoothed": 15.857, + "total_deaths": 10.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 65.274, + "new_cases_per_million": 2.502, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-10", + "total_cases": 1200.0, + "new_cases": 0.0, + "new_cases_smoothed": 15.857, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 65.274, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.863, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-11", + "total_cases": 1252.0, + "new_cases": 52.0, + "new_cases_smoothed": 23.286, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 68.103, + "new_cases_per_million": 2.829, + "new_cases_smoothed_per_million": 1.267, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-12", + "total_cases": 1252.0, + "new_cases": 0.0, + "new_cases_smoothed": 20.143, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 68.103, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.096, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-13", + "total_cases": 1321.0, + "new_cases": 69.0, + "new_cases_smoothed": 30.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 71.856, + "new_cases_per_million": 3.753, + "new_cases_smoothed_per_million": 1.632, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-14", + "total_cases": 1357.0, + "new_cases": 36.0, + "new_cases_smoothed": 29.0, + "total_deaths": 10.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.429, + "total_cases_per_million": 73.814, + "new_cases_per_million": 1.958, + "new_cases_smoothed_per_million": 1.577, + "total_deaths_per_million": 0.544, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.023, + "stringency_index": 39.81 + }, + { + "date": "2020-06-15", + "total_cases": 1358.0, + "new_cases": 1.0, + "new_cases_smoothed": 29.143, + "total_deaths": 11.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.571, + "total_cases_per_million": 73.869, + "new_cases_per_million": 0.054, + "new_cases_smoothed_per_million": 1.585, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.031, + "stringency_index": 39.81 + }, + { + "date": "2020-06-16", + "total_cases": 1382.0, + "new_cases": 24.0, + "new_cases_smoothed": 26.0, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 75.174, + "new_cases_per_million": 1.305, + "new_cases_smoothed_per_million": 1.414, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-17", + "total_cases": 1405.0, + "new_cases": 23.0, + "new_cases_smoothed": 29.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 76.425, + "new_cases_per_million": 1.251, + "new_cases_smoothed_per_million": 1.593, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-18", + "total_cases": 1412.0, + "new_cases": 7.0, + "new_cases_smoothed": 22.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 76.806, + "new_cases_per_million": 0.381, + "new_cases_smoothed_per_million": 1.243, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-19", + "total_cases": 1416.0, + "new_cases": 4.0, + "new_cases_smoothed": 23.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.024, + "new_cases_per_million": 0.218, + "new_cases_smoothed_per_million": 1.274, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-20", + "total_cases": 1430.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.571, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.785, + "new_cases_per_million": 0.762, + "new_cases_smoothed_per_million": 0.847, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-21", + "total_cases": 1430.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.429, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 77.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.567, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.008, + "stringency_index": 39.81 + }, + { + "date": "2020-06-22", + "total_cases": 1430.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.286, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.559, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-23", + "total_cases": 1430.0, + "new_cases": 0.0, + "new_cases_smoothed": 6.857, + "total_deaths": 11.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 77.785, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.373, + "total_deaths_per_million": 0.598, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 39.81 + }, + { + "date": "2020-06-24", + "total_cases": 1477.0, + "new_cases": 47.0, + "new_cases_smoothed": 10.286, + "total_deaths": 18.0, + "new_deaths": 7.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 80.342, + "new_cases_per_million": 2.557, + "new_cases_smoothed_per_million": 0.559, + "total_deaths_per_million": 0.979, + "new_deaths_per_million": 0.381, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 39.81 + }, + { + "date": "2020-06-25", + "total_cases": 1489.0, + "new_cases": 12.0, + "new_cases_smoothed": 11.0, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 80.995, + "new_cases_per_million": 0.653, + "new_cases_smoothed_per_million": 0.598, + "total_deaths_per_million": 0.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 50.93 + }, + { + "date": "2020-06-26", + "total_cases": 1497.0, + "new_cases": 8.0, + "new_cases_smoothed": 11.571, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 81.43, + "new_cases_per_million": 0.435, + "new_cases_smoothed_per_million": 0.629, + "total_deaths_per_million": 0.979, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 50.93 + }, + { + "date": "2020-06-27", + "total_cases": 1531.0, + "new_cases": 34.0, + "new_cases_smoothed": 14.429, + "total_deaths": 21.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 83.279, + "new_cases_per_million": 1.849, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 1.142, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 50.93 + }, + { + "date": "2020-06-28", + "total_cases": 1531.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 21.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 83.279, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 1.142, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078, + "stringency_index": 50.93 + }, + { + "date": "2020-06-29", + "total_cases": 1557.0, + "new_cases": 26.0, + "new_cases_smoothed": 18.143, + "total_deaths": 22.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 84.693, + "new_cases_per_million": 1.414, + "new_cases_smoothed_per_million": 0.987, + "total_deaths_per_million": 1.197, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 50.93 + }, + { + "date": "2020-06-30", + "total_cases": 1568.0, + "new_cases": 11.0, + "new_cases_smoothed": 19.714, + "total_deaths": 22.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 85.292, + "new_cases_per_million": 0.598, + "new_cases_smoothed_per_million": 1.072, + "total_deaths_per_million": 1.197, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.085, + "stringency_index": 50.93 + }, + { + "date": "2020-07-01", + "total_cases": 1594.0, + "new_cases": 26.0, + "new_cases_smoothed": 16.714, + "total_deaths": 24.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 86.706, + "new_cases_per_million": 1.414, + "new_cases_smoothed_per_million": 0.909, + "total_deaths_per_million": 1.305, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 50.93 + }, + { + "date": "2020-07-02", + "total_cases": 1632.0, + "new_cases": 38.0, + "new_cases_smoothed": 20.429, + "total_deaths": 30.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 88.773, + "new_cases_per_million": 2.067, + "new_cases_smoothed_per_million": 1.111, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.326, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-03", + "total_cases": 1632.0, + "new_cases": 0.0, + "new_cases_smoothed": 19.286, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 88.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 1.049, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-04", + "total_cases": 1632.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 88.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 50.93 + }, + { + "date": "2020-07-05", + "total_cases": 1632.0, + "new_cases": 0.0, + "new_cases_smoothed": 14.429, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 88.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.785, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07, + "stringency_index": 50.93 + }, + { + "date": "2020-07-06", + "total_cases": 1632.0, + "new_cases": 0.0, + "new_cases_smoothed": 10.714, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 88.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.583, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 50.93 + }, + { + "date": "2020-07-07", + "total_cases": 1632.0, + "new_cases": 0.0, + "new_cases_smoothed": 9.143, + "total_deaths": 30.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 88.773, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.497, + "total_deaths_per_million": 1.632, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 50.93 + }, + { + "date": "2020-07-08", + "total_cases": 1895.0, + "new_cases": 263.0, + "new_cases_smoothed": 43.0, + "total_deaths": 42.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 103.079, + "new_cases_per_million": 14.306, + "new_cases_smoothed_per_million": 2.339, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.653, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 50.93 + }, + { + "date": "2020-07-09", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-10", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-11", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-12", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-13", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-14", + "total_cases": 1895.0, + "new_cases": 0.0, + "new_cases_smoothed": 37.571, + "total_deaths": 42.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.714, + "total_cases_per_million": 103.079, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.044, + "total_deaths_per_million": 2.285, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.093, + "stringency_index": 50.93 + }, + { + "date": "2020-07-15", + "total_cases": 2283.0, + "new_cases": 388.0, + "new_cases_smoothed": 55.429, + "total_deaths": 82.0, + "new_deaths": 40.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 124.184, + "new_cases_per_million": 21.105, + "new_cases_smoothed_per_million": 3.015, + "total_deaths_per_million": 4.46, + "new_deaths_per_million": 2.176, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 50.93 + }, + { + "date": "2020-07-16", + "total_cases": 2283.0, + "new_cases": 0.0, + "new_cases_smoothed": 55.429, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 124.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.015, + "total_deaths_per_million": 4.46, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 50.93 + }, + { + "date": "2020-07-17", + "total_cases": 2283.0, + "new_cases": 0.0, + "new_cases_smoothed": 55.429, + "total_deaths": 82.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.714, + "total_cases_per_million": 124.184, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 3.015, + "total_deaths_per_million": 4.46, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.311, + "stringency_index": 50.93 + }, + { + "date": "2020-07-18", + "total_cases": 2810.0, + "new_cases": 527.0, + "new_cases_smoothed": 130.714, + "total_deaths": 109.0, + "new_deaths": 27.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 152.851, + "new_cases_per_million": 28.666, + "new_cases_smoothed_per_million": 7.11, + "total_deaths_per_million": 5.929, + "new_deaths_per_million": 1.469, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 50.93 + }, + { + "date": "2020-07-19", + "total_cases": 2980.0, + "new_cases": 170.0, + "new_cases_smoothed": 155.0, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 162.098, + "new_cases_per_million": 9.247, + "new_cases_smoothed_per_million": 8.431, + "total_deaths_per_million": 5.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 50.93 + }, + { + "date": "2020-07-20", + "total_cases": 2980.0, + "new_cases": 0.0, + "new_cases_smoothed": 155.0, + "total_deaths": 109.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 9.571, + "total_cases_per_million": 162.098, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.431, + "total_deaths_per_million": 5.929, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.521, + "stringency_index": 50.93 + }, + { + "date": "2020-07-21", + "total_cases": 3326.0, + "new_cases": 346.0, + "new_cases_smoothed": 204.429, + "total_deaths": 120.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 180.919, + "new_cases_per_million": 18.821, + "new_cases_smoothed_per_million": 11.12, + "total_deaths_per_million": 6.527, + "new_deaths_per_million": 0.598, + "new_deaths_smoothed_per_million": 0.606, + "stringency_index": 50.93 + }, + { + "date": "2020-07-22", + "total_cases": 3326.0, + "new_cases": 0.0, + "new_cases_smoothed": 149.0, + "total_deaths": 120.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 180.919, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 8.105, + "total_deaths_per_million": 6.527, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.295, + "stringency_index": 50.93 + }, + { + "date": "2020-07-23", + "total_cases": 3583.0, + "new_cases": 257.0, + "new_cases_smoothed": 185.714, + "total_deaths": 128.0, + "new_deaths": 8.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 194.898, + "new_cases_per_million": 13.98, + "new_cases_smoothed_per_million": 10.102, + "total_deaths_per_million": 6.963, + "new_deaths_per_million": 0.435, + "new_deaths_smoothed_per_million": 0.357, + "stringency_index": 50.93 + }, + { + "date": "2020-07-24", + "total_cases": 3583.0, + "new_cases": 0.0, + "new_cases_smoothed": 185.714, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.571, + "total_cases_per_million": 194.898, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 10.102, + "total_deaths_per_million": 6.963, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.357, + "stringency_index": 50.93 + }, + { + "date": "2020-07-25", + "total_cases": 3856.0, + "new_cases": 273.0, + "new_cases_smoothed": 149.429, + "total_deaths": 130.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 209.748, + "new_cases_per_million": 14.85, + "new_cases_smoothed_per_million": 8.128, + "total_deaths_per_million": 7.071, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.93 + }, + { + "date": "2020-07-26", + "total_cases": 4328.0, + "new_cases": 472.0, + "new_cases_smoothed": 192.571, + "total_deaths": 130.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 235.423, + "new_cases_per_million": 25.675, + "new_cases_smoothed_per_million": 10.475, + "total_deaths_per_million": 7.071, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.93 + }, + { + "date": "2020-07-27", + "total_cases": 4481.0, + "new_cases": 153.0, + "new_cases_smoothed": 214.429, + "total_deaths": 139.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 243.745, + "new_cases_per_million": 8.322, + "new_cases_smoothed_per_million": 11.664, + "total_deaths_per_million": 7.561, + "new_deaths_per_million": 0.49, + "new_deaths_smoothed_per_million": 0.233, + "stringency_index": 50.93 + }, + { + "date": "2020-07-28", + "total_cases": 4552.0, + "new_cases": 71.0, + "new_cases_smoothed": 175.143, + "total_deaths": 140.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 247.607, + "new_cases_per_million": 3.862, + "new_cases_smoothed_per_million": 9.527, + "total_deaths_per_million": 7.615, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 50.93 + }, + { + "date": "2020-07-29", + "total_cases": 5002.0, + "new_cases": 450.0, + "new_cases_smoothed": 239.429, + "total_deaths": 142.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.143, + "total_cases_per_million": 272.085, + "new_cases_per_million": 24.478, + "new_cases_smoothed_per_million": 13.024, + "total_deaths_per_million": 7.724, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.171, + "stringency_index": 50.93 + }, + { + "date": "2020-07-30", + "total_cases": 5249.0, + "new_cases": 247.0, + "new_cases_smoothed": 238.0, + "total_deaths": 146.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 285.521, + "new_cases_per_million": 13.436, + "new_cases_smoothed_per_million": 12.946, + "total_deaths_per_million": 7.942, + "new_deaths_per_million": 0.218, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 50.93 + }, + { + "date": "2020-07-31", + "total_cases": 5555.0, + "new_cases": 306.0, + "new_cases_smoothed": 281.714, + "total_deaths": 149.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 302.166, + "new_cases_per_million": 16.645, + "new_cases_smoothed_per_million": 15.324, + "total_deaths_per_million": 8.105, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.93 + }, + { + "date": "2020-08-01", + "total_cases": 5963.0, + "new_cases": 408.0, + "new_cases_smoothed": 301.0, + "total_deaths": 151.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 324.359, + "new_cases_per_million": 22.193, + "new_cases_smoothed_per_million": 16.373, + "total_deaths_per_million": 8.214, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 50.93 + }, + { + "date": "2020-08-02", + "total_cases": 6228.0, + "new_cases": 265.0, + "new_cases_smoothed": 271.429, + "total_deaths": 165.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 338.774, + "new_cases_per_million": 14.415, + "new_cases_smoothed_per_million": 14.764, + "total_deaths_per_million": 8.975, + "new_deaths_per_million": 0.762, + "new_deaths_smoothed_per_million": 0.272, + "stringency_index": 50.93 + }, + { + "date": "2020-08-03", + "total_cases": 6347.0, + "new_cases": 119.0, + "new_cases_smoothed": 266.571, + "total_deaths": 170.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 345.247, + "new_cases_per_million": 6.473, + "new_cases_smoothed_per_million": 14.5, + "total_deaths_per_million": 9.247, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 50.93 + }, + { + "date": "2020-08-04", + "total_cases": 6580.0, + "new_cases": 233.0, + "new_cases_smoothed": 289.714, + "total_deaths": 171.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 357.921, + "new_cases_per_million": 12.674, + "new_cases_smoothed_per_million": 15.759, + "total_deaths_per_million": 9.302, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.241, + "stringency_index": 50.93 + }, + { + "date": "2020-08-05", + "total_cases": 6580.0, + "new_cases": 0.0, + "new_cases_smoothed": 225.429, + "total_deaths": 171.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 357.921, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 12.262, + "total_deaths_per_million": 9.302, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.225, + "stringency_index": 50.93 + }, + { + "date": "2020-08-06", + "total_cases": 7022.0, + "new_cases": 442.0, + "new_cases_smoothed": 253.286, + "total_deaths": 176.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.286, + "total_cases_per_million": 381.963, + "new_cases_per_million": 24.043, + "new_cases_smoothed_per_million": 13.778, + "total_deaths_per_million": 9.574, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.233, + "stringency_index": 50.93 + }, + { + "date": "2020-08-07", + "total_cases": 7164.0, + "new_cases": 142.0, + "new_cases_smoothed": 229.857, + "total_deaths": 199.0, + "new_deaths": 23.0, + "new_deaths_smoothed": 7.143, + "total_cases_per_million": 389.688, + "new_cases_per_million": 7.724, + "new_cases_smoothed_per_million": 12.503, + "total_deaths_per_million": 10.825, + "new_deaths_per_million": 1.251, + "new_deaths_smoothed_per_million": 0.389, + "stringency_index": 50.93 + }, + { + "date": "2020-08-08", + "total_cases": 7486.0, + "new_cases": 322.0, + "new_cases_smoothed": 217.571, + "total_deaths": 200.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 7.0, + "total_cases_per_million": 407.203, + "new_cases_per_million": 17.515, + "new_cases_smoothed_per_million": 11.835, + "total_deaths_per_million": 10.879, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.381, + "stringency_index": 50.93 + }, + { + "date": "2020-08-09", + "total_cases": 7903.0, + "new_cases": 417.0, + "new_cases_smoothed": 239.286, + "total_deaths": 203.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 429.886, + "new_cases_per_million": 22.683, + "new_cases_smoothed_per_million": 13.016, + "total_deaths_per_million": 11.042, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.295, + "stringency_index": 50.93 + }, + { + "date": "2020-08-10", + "total_cases": 8085.0, + "new_cases": 182.0, + "new_cases_smoothed": 248.286, + "total_deaths": 235.0, + "new_deaths": 32.0, + "new_deaths_smoothed": 9.286, + "total_cases_per_million": 439.786, + "new_cases_per_million": 9.9, + "new_cases_smoothed_per_million": 13.506, + "total_deaths_per_million": 12.783, + "new_deaths_per_million": 1.741, + "new_deaths_smoothed_per_million": 0.505, + "stringency_index": 50.93 + }, + { + "date": "2020-08-11", + "total_cases": 8210.0, + "new_cases": 125.0, + "new_cases_smoothed": 232.857, + "total_deaths": 241.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 446.585, + "new_cases_per_million": 6.799, + "new_cases_smoothed_per_million": 12.666, + "total_deaths_per_million": 13.109, + "new_deaths_per_million": 0.326, + "new_deaths_smoothed_per_million": 0.544, + "stringency_index": 50.93 + }, + { + "date": "2020-08-12", + "total_cases": 8275.0, + "new_cases": 65.0, + "new_cases_smoothed": 242.143, + "total_deaths": 241.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 450.121, + "new_cases_per_million": 3.536, + "new_cases_smoothed_per_million": 13.171, + "total_deaths_per_million": 13.109, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.544, + "stringency_index": 50.93 + }, + { + "date": "2020-08-13", + "total_cases": 8501.0, + "new_cases": 226.0, + "new_cases_smoothed": 211.286, + "total_deaths": 246.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 10.0, + "total_cases_per_million": 462.414, + "new_cases_per_million": 12.293, + "new_cases_smoothed_per_million": 11.493, + "total_deaths_per_million": 13.381, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.544, + "stringency_index": 50.93 + }, + { + "date": "2020-08-14", + "total_cases": 8663.0, + "new_cases": 162.0, + "new_cases_smoothed": 214.143, + "total_deaths": 246.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 471.226, + "new_cases_per_million": 8.812, + "new_cases_smoothed_per_million": 11.648, + "total_deaths_per_million": 13.381, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.365, + "stringency_index": 50.93 + }, + { + "date": "2020-08-15", + "total_cases": 9021.0, + "new_cases": 358.0, + "new_cases_smoothed": 219.286, + "total_deaths": 256.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 8.0, + "total_cases_per_million": 490.7, + "new_cases_per_million": 19.474, + "new_cases_smoothed_per_million": 11.928, + "total_deaths_per_million": 13.925, + "new_deaths_per_million": 0.544, + "new_deaths_smoothed_per_million": 0.435, + "stringency_index": 50.93 + }, + { + "date": "2020-08-16", + "total_cases": 9186.0, + "new_cases": 165.0, + "new_cases_smoothed": 183.286, + "total_deaths": 260.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 8.143, + "total_cases_per_million": 499.675, + "new_cases_per_million": 8.975, + "new_cases_smoothed_per_million": 9.97, + "total_deaths_per_million": 14.143, + "new_deaths_per_million": 0.218, + "new_deaths_smoothed_per_million": 0.443, + "stringency_index": 50.93 + }, + { + "date": "2020-08-17", + "total_cases": 9343.0, + "new_cases": 157.0, + "new_cases_smoothed": 179.714, + "total_deaths": 260.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 508.215, + "new_cases_per_million": 8.54, + "new_cases_smoothed_per_million": 9.776, + "total_deaths_per_million": 14.143, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.194, + "stringency_index": 50.93 + }, + { + "date": "2020-08-18", + "total_cases": 9839.0, + "new_cases": 496.0, + "new_cases_smoothed": 232.714, + "total_deaths": 264.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 535.195, + "new_cases_per_million": 26.98, + "new_cases_smoothed_per_million": 12.659, + "total_deaths_per_million": 14.36, + "new_deaths_per_million": 0.218, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 50.93 + }, + { + "date": "2020-08-19", + "total_cases": 9981.0, + "new_cases": 142.0, + "new_cases_smoothed": 243.714, + "total_deaths": 264.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 542.919, + "new_cases_per_million": 7.724, + "new_cases_smoothed_per_million": 13.257, + "total_deaths_per_million": 14.36, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 50.93 + }, + { + "date": "2020-08-20", + "total_cases": 10218.0, + "new_cases": 237.0, + "new_cases_smoothed": 245.286, + "total_deaths": 269.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 555.811, + "new_cases_per_million": 12.892, + "new_cases_smoothed_per_million": 13.342, + "total_deaths_per_million": 14.632, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.179, + "stringency_index": 49.07 + }, + { + "date": "2020-08-21", + "total_cases": 10372.0, + "new_cases": 154.0, + "new_cases_smoothed": 244.143, + "total_deaths": 274.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 564.188, + "new_cases_per_million": 8.377, + "new_cases_smoothed_per_million": 13.28, + "total_deaths_per_million": 14.904, + "new_deaths_per_million": 0.272, + "new_deaths_smoothed_per_million": 0.218, + "stringency_index": 49.07 + }, + { + "date": "2020-08-22", + "total_cases": 10627.0, + "new_cases": 255.0, + "new_cases_smoothed": 229.429, + "total_deaths": 277.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.0, + "total_cases_per_million": 578.058, + "new_cases_per_million": 13.871, + "new_cases_smoothed_per_million": 12.48, + "total_deaths_per_million": 15.067, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.163, + "stringency_index": 49.07 + }, + { + "date": "2020-08-23", + "total_cases": 10627.0, + "new_cases": 0.0, + "new_cases_smoothed": 205.857, + "total_deaths": 277.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 578.058, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 11.198, + "total_deaths_per_million": 15.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.132, + "stringency_index": 49.07 + }, + { + "date": "2020-08-24", + "total_cases": 11082.0, + "new_cases": 455.0, + "new_cases_smoothed": 248.429, + "total_deaths": 280.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 602.808, + "new_cases_per_million": 24.75, + "new_cases_smoothed_per_million": 13.513, + "total_deaths_per_million": 15.231, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.155, + "stringency_index": 49.07 + }, + { + "date": "2020-08-25", + "total_cases": 11148.0, + "new_cases": 66.0, + "new_cases_smoothed": 187.0, + "total_deaths": 280.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.286, + "total_cases_per_million": 606.398, + "new_cases_per_million": 3.59, + "new_cases_smoothed_per_million": 10.172, + "total_deaths_per_million": 15.231, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.124, + "stringency_index": 49.07 + }, + { + "date": "2020-08-26", + "total_cases": 11285.0, + "new_cases": 137.0, + "new_cases_smoothed": 186.286, + "total_deaths": 282.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 2.571, + "total_cases_per_million": 613.85, + "new_cases_per_million": 7.452, + "new_cases_smoothed_per_million": 10.133, + "total_deaths_per_million": 15.339, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.14, + "stringency_index": 49.07 + }, + { + "date": "2020-08-27", + "total_cases": 11376.0, + "new_cases": 91.0, + "new_cases_smoothed": 165.429, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.857, + "total_cases_per_million": 618.8, + "new_cases_per_million": 4.95, + "new_cases_smoothed_per_million": 8.999, + "total_deaths_per_million": 15.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.101, + "stringency_index": 49.07 + }, + { + "date": "2020-08-28", + "total_cases": 11601.0, + "new_cases": 225.0, + "new_cases_smoothed": 175.571, + "total_deaths": 282.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 631.039, + "new_cases_per_million": 12.239, + "new_cases_smoothed_per_million": 9.55, + "total_deaths_per_million": 15.339, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.062, + "stringency_index": 49.07 + }, + { + "date": "2020-08-29", + "total_cases": 11779.0, + "new_cases": 178.0, + "new_cases_smoothed": 164.571, + "total_deaths": 283.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 640.722, + "new_cases_per_million": 9.682, + "new_cases_smoothed_per_million": 8.952, + "total_deaths_per_million": 15.394, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.047, + "stringency_index": 49.07 + }, + { + "date": "2020-08-30", + "total_cases": 11902.0, + "new_cases": 123.0, + "new_cases_smoothed": 182.143, + "total_deaths": 284.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 647.412, + "new_cases_per_million": 6.691, + "new_cases_smoothed_per_million": 9.908, + "total_deaths_per_million": 15.448, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 49.07 + }, + { + "date": "2020-08-31", + "total_cases": 12025.0, + "new_cases": 123.0, + "new_cases_smoothed": 134.714, + "total_deaths": 287.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 654.103, + "new_cases_per_million": 6.691, + "new_cases_smoothed_per_million": 7.328, + "total_deaths_per_million": 15.611, + "new_deaths_per_million": 0.163, + "new_deaths_smoothed_per_million": 0.054, + "stringency_index": 49.07 + }, + { + "date": "2020-09-01", + "total_cases": 12097.0, + "new_cases": 72.0, + "new_cases_smoothed": 135.571, + "total_deaths": 288.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 658.019, + "new_cases_per_million": 3.916, + "new_cases_smoothed_per_million": 7.374, + "total_deaths_per_million": 15.666, + "new_deaths_per_million": 0.054, + "new_deaths_smoothed_per_million": 0.062 + }, + { + "date": "2020-09-02", + "total_cases": 12381.0, + "new_cases": 284.0, + "new_cases_smoothed": 156.571, + "total_deaths": 290.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 673.468, + "new_cases_per_million": 15.448, + "new_cases_smoothed_per_million": 8.517, + "total_deaths_per_million": 15.775, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.062 + }, + { + "date": "2020-09-03", + "total_cases": 12415.0, + "new_cases": 34.0, + "new_cases_smoothed": 148.429, + "total_deaths": 292.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 675.317, + "new_cases_per_million": 1.849, + "new_cases_smoothed_per_million": 8.074, + "total_deaths_per_million": 15.883, + "new_deaths_per_million": 0.109, + "new_deaths_smoothed_per_million": 0.078 + }, + { + "date": "2020-09-04", + "total_cases": 12523.0, + "new_cases": 108.0, + "new_cases_smoothed": 131.714, + "total_deaths": 292.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 681.192, + "new_cases_per_million": 5.875, + "new_cases_smoothed_per_million": 7.165, + "total_deaths_per_million": 15.883, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.078 + }, + { + "date": "2020-09-05", + "total_cases": 12639.0, + "new_cases": 116.0, + "new_cases_smoothed": 122.857, + "total_deaths": 292.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 687.502, + "new_cases_per_million": 6.31, + "new_cases_smoothed_per_million": 6.683, + "total_deaths_per_million": 15.883, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.07 + } + ] + }, + "ZWE": { + "continent": "Africa", + "location": "Zimbabwe", + "population": 14862927.0, + "population_density": 42.729, + "median_age": 19.6, + "aged_65_older": 2.822, + "aged_70_older": 1.882, + "gdp_per_capita": 1899.775, + "extreme_poverty": 21.4, + "cardiovasc_death_rate": 307.846, + "diabetes_prevalence": 1.82, + "female_smokers": 1.6, + "male_smokers": 30.7, + "handwashing_facilities": 36.791, + "hospital_beds_per_thousand": 1.7, + "life_expectancy": 61.49, + "data": [ + { + "date": "2020-03-21", + "total_cases": 1.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.067, + "new_cases_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-22", + "total_cases": 2.0, + "new_cases": 1.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.135, + "new_cases_per_million": 0.067, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 27.78 + }, + { + "date": "2020-03-23", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.135, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "stringency_index": 45.37 + }, + { + "date": "2020-03-24", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 1.0, + "total_cases_per_million": 0.135, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.067, + "stringency_index": 56.48 + }, + { + "date": "2020-03-25", + "total_cases": 2.0, + "new_cases": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.135, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-26", + "total_cases": 3.0, + "new_cases": 1.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.202, + "new_cases_per_million": 0.067, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "stringency_index": 56.48 + }, + { + "date": "2020-03-27", + "total_cases": 3.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.202, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 62.04 + }, + { + "date": "2020-03-28", + "total_cases": 5.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.336, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 62.04 + }, + { + "date": "2020-03-29", + "total_cases": 7.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 62.04 + }, + { + "date": "2020-03-30", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-03-31", + "total_cases": 7.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.471, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-01", + "total_cases": 8.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.857, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.538, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-02", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-03", + "total_cases": 8.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.538, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-04", + "total_cases": 9.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.571, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.606, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-05", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.606, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-06", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.606, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-07", + "total_cases": 9.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.606, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-08", + "total_cases": 10.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.673, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.067, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-09", + "total_cases": 11.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.74, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.135, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-10", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-11", + "total_cases": 11.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.74, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-12", + "total_cases": 14.0, + "new_cases": 3.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.942, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-13", + "total_cases": 14.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.942, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-14", + "total_cases": 17.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.144, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-15", + "total_cases": 17.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.0, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 1.144, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "stringency_index": 87.96 + }, + { + "date": "2020-04-16", + "total_cases": 23.0, + "new_cases": 6.0, + "new_cases_smoothed": 1.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.547, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-17", + "total_cases": 24.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.615, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-18", + "total_cases": 24.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.857, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.615, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-19", + "total_cases": 25.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.682, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-20", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-21", + "total_cases": 25.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.143, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.682, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-22", + "total_cases": 28.0, + "new_cases": 3.0, + "new_cases_smoothed": 1.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.884, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-23", + "total_cases": 28.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.884, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-24", + "total_cases": 29.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.714, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 1.951, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.202, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-04-25", + "total_cases": 29.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 1.951, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-26", + "total_cases": 31.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.086, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-27", + "total_cases": 31.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.086, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-28", + "total_cases": 32.0, + "new_cases": 1.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.153, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-29", + "total_cases": 32.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.153, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.038, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-04-30", + "total_cases": 34.0, + "new_cases": 2.0, + "new_cases_smoothed": 0.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.058, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-05-01", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "stringency_index": 87.96 + }, + { + "date": "2020-05-02", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.048, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-03", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-04", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-05", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "stringency_index": 87.96 + }, + { + "date": "2020-05-06", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 7808.0, + "total_tests_per_thousand": 0.525, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-07", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 333.0, + "total_tests": 8141.0, + "total_tests_per_thousand": 0.548, + "new_tests_per_thousand": 0.022, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-08", + "total_cases": 34.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.288, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 600.0, + "total_tests": 8741.0, + "total_tests_per_thousand": 0.588, + "new_tests_per_thousand": 0.04, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-09", + "total_cases": 35.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.355, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 852.0, + "total_tests": 9593.0, + "total_tests_per_thousand": 0.645, + "new_tests_per_thousand": 0.057, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-10", + "total_cases": 36.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.422, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 279.0, + "total_tests": 9872.0, + "total_tests_per_thousand": 0.664, + "new_tests_per_thousand": 0.019, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-11", + "total_cases": 36.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.422, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.019, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 726.0, + "total_tests": 10598.0, + "total_tests_per_thousand": 0.713, + "new_tests_per_thousand": 0.049, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-12", + "total_cases": 37.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.489, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 460.0, + "total_tests": 11058.0, + "total_tests_per_thousand": 0.744, + "new_tests_per_thousand": 0.031, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-13", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 133.0, + "total_tests": 11191.0, + "total_tests_per_thousand": 0.753, + "new_tests_per_thousand": 0.009, + "new_tests_smoothed": 483.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 1127.0, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-14", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 1052.333, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-15", + "total_cases": 37.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.489, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.029, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 11401.0, + "total_tests_per_thousand": 0.767, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 886.6669999999999, + "positive_rate": 0.001, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-16", + "total_cases": 42.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.826, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.067, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 874.0, + "total_tests": 12275.0, + "total_tests_per_thousand": 0.826, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 383.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 383.0, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-17", + "total_cases": 44.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 2.96, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 289.0, + "total_tests": 12564.0, + "total_tests_per_thousand": 0.845, + "new_tests_per_thousand": 0.019, + "new_tests_smoothed": 385.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 336.875, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-18", + "total_cases": 46.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.095, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 540.0, + "total_tests": 13104.0, + "total_tests_per_thousand": 0.882, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 358.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 250.6, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-19", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.095, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 1071.0, + "total_tests": 14175.0, + "total_tests_per_thousand": 0.954, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 346.111, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-20", + "total_cases": 46.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.095, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.087, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 443.0, + "total_tests": 14618.0, + "total_tests_per_thousand": 0.984, + "new_tests_per_thousand": 0.03, + "new_tests_smoothed": 490.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 381.111, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-21", + "total_cases": 48.0, + "new_cases": 2.0, + "new_cases_smoothed": 1.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.23, + "new_cases_per_million": 0.135, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 466.0, + "total_tests": 15084.0, + "total_tests_per_thousand": 1.015, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 541.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 344.273, + "positive_rate": 0.003, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-22", + "total_cases": 51.0, + "new_cases": 3.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.431, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 110.0, + "total_tests": 15194.0, + "total_tests_per_thousand": 1.022, + "new_tests_per_thousand": 0.007, + "new_tests_smoothed": 542.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 271.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-23", + "total_cases": 56.0, + "new_cases": 5.0, + "new_cases_smoothed": 2.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.768, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.135, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 142.0, + "total_tests": 15336.0, + "total_tests_per_thousand": 1.032, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 437.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 218.5, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-24", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.115, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 219.0, + "total_tests": 15555.0, + "total_tests_per_thousand": 1.047, + "new_tests_per_thousand": 0.015, + "new_tests_smoothed": 427.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 249.083, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-25", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 210.0, + "total_tests": 15765.0, + "total_tests_per_thousand": 1.061, + "new_tests_per_thousand": 0.014, + "new_tests_smoothed": 380.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 266.0, + "positive_rate": 0.004, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-26", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests_smoothed": 262.0, + "new_tests_smoothed_per_thousand": 0.018, + "tests_per_case": 183.4, + "positive_rate": 0.005, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-27", + "total_cases": 56.0, + "new_cases": 0.0, + "new_cases_smoothed": 1.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 3.768, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.096, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "total_tests": 16254.0, + "total_tests_per_thousand": 1.094, + "new_tests_smoothed": 234.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 163.8, + "positive_rate": 0.006, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-28", + "total_cases": 132.0, + "new_cases": 76.0, + "new_cases_smoothed": 12.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 8.881, + "new_cases_per_million": 5.113, + "new_cases_smoothed_per_million": 0.807, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 186.0, + "total_tests": 16440.0, + "total_tests_per_thousand": 1.106, + "new_tests_per_thousand": 0.013, + "new_tests_smoothed": 194.0, + "new_tests_smoothed_per_thousand": 0.013, + "tests_per_case": 16.167, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-29", + "total_cases": 149.0, + "new_cases": 17.0, + "new_cases_smoothed": 14.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.025, + "new_cases_per_million": 1.144, + "new_cases_smoothed_per_million": 0.942, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 420.0, + "total_tests": 16860.0, + "total_tests_per_thousand": 1.134, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 238.0, + "new_tests_smoothed_per_thousand": 0.016, + "tests_per_case": 17.0, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-30", + "total_cases": 160.0, + "new_cases": 11.0, + "new_cases_smoothed": 14.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 10.765, + "new_cases_per_million": 0.74, + "new_cases_smoothed_per_million": 1.0, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 666.0, + "total_tests": 17526.0, + "total_tests_per_thousand": 1.179, + "new_tests_per_thousand": 0.045, + "new_tests_smoothed": 313.0, + "new_tests_smoothed_per_thousand": 0.021, + "tests_per_case": 21.066999999999997, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-05-31", + "total_cases": 174.0, + "new_cases": 14.0, + "new_cases_smoothed": 16.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.707, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 1.134, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 546.0, + "total_tests": 18072.0, + "total_tests_per_thousand": 1.216, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 360.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 21.355999999999998, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-06-01", + "total_cases": 178.0, + "new_cases": 4.0, + "new_cases_smoothed": 17.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 11.976, + "new_cases_per_million": 0.269, + "new_cases_smoothed_per_million": 1.173, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 637.0, + "total_tests": 18709.0, + "total_tests_per_thousand": 1.259, + "new_tests_per_thousand": 0.043, + "new_tests_smoothed": 421.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 24.156, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-06-02", + "total_cases": 203.0, + "new_cases": 25.0, + "new_cases_smoothed": 21.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.658, + "new_cases_per_million": 1.682, + "new_cases_smoothed_per_million": 1.413, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 581.0, + "total_tests": 19290.0, + "total_tests_per_thousand": 1.298, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 469.0, + "new_tests_smoothed_per_thousand": 0.032, + "tests_per_case": 22.333000000000002, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-06-03", + "total_cases": 206.0, + "new_cases": 3.0, + "new_cases_smoothed": 21.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 13.86, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 1.442, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 722.0, + "total_tests": 20012.0, + "total_tests_per_thousand": 1.346, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 537.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 25.06, + "positive_rate": 0.04, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-06-04", + "total_cases": 222.0, + "new_cases": 16.0, + "new_cases_smoothed": 12.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 14.936, + "new_cases_per_million": 1.077, + "new_cases_smoothed_per_million": 0.865, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 390.0, + "total_tests": 20402.0, + "total_tests_per_thousand": 1.373, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 566.0, + "new_tests_smoothed_per_thousand": 0.038, + "tests_per_case": 44.022, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 87.96 + }, + { + "date": "2020-06-05", + "total_cases": 237.0, + "new_cases": 15.0, + "new_cases_smoothed": 12.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 15.946, + "new_cases_per_million": 1.009, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 598.0, + "total_tests": 21000.0, + "total_tests_per_thousand": 1.413, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 591.0, + "new_tests_smoothed_per_thousand": 0.04, + "tests_per_case": 47.011, + "positive_rate": 0.021, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-06", + "total_cases": 265.0, + "new_cases": 28.0, + "new_cases_smoothed": 15.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 17.83, + "new_cases_per_million": 1.884, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 354.0, + "total_tests": 21354.0, + "total_tests_per_thousand": 1.437, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 547.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 36.467, + "positive_rate": 0.027000000000000003, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-07", + "total_cases": 279.0, + "new_cases": 14.0, + "new_cases_smoothed": 15.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.772, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 1.009, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 153.0, + "total_tests": 21507.0, + "total_tests_per_thousand": 1.447, + "new_tests_per_thousand": 0.01, + "new_tests_smoothed": 491.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 32.733000000000004, + "positive_rate": 0.031, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-08", + "total_cases": 282.0, + "new_cases": 3.0, + "new_cases_smoothed": 14.857, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 18.973, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 1.0, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 394.0, + "total_tests": 21901.0, + "total_tests_per_thousand": 1.474, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 456.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 30.691999999999997, + "positive_rate": 0.033, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-09", + "total_cases": 287.0, + "new_cases": 5.0, + "new_cases_smoothed": 12.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 19.31, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.807, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 352.0, + "total_tests": 22253.0, + "total_tests_per_thousand": 1.497, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 423.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 35.25, + "positive_rate": 0.027999999999999997, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-10", + "total_cases": 314.0, + "new_cases": 27.0, + "new_cases_smoothed": 15.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.126, + "new_cases_per_million": 1.817, + "new_cases_smoothed_per_million": 1.038, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 552.0, + "total_tests": 22805.0, + "total_tests_per_thousand": 1.534, + "new_tests_per_thousand": 0.037, + "new_tests_smoothed": 399.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 25.861, + "positive_rate": 0.039, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-11", + "total_cases": 320.0, + "new_cases": 6.0, + "new_cases_smoothed": 14.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 21.53, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 0.942, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 267.0, + "total_tests": 23072.0, + "total_tests_per_thousand": 1.552, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 381.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 27.214000000000002, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-12", + "total_cases": 332.0, + "new_cases": 12.0, + "new_cases_smoothed": 13.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 22.337, + "new_cases_per_million": 0.807, + "new_cases_smoothed_per_million": 0.913, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 465.0, + "total_tests": 23537.0, + "total_tests_per_thousand": 1.584, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 362.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 26.674, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-13", + "total_cases": 343.0, + "new_cases": 11.0, + "new_cases_smoothed": 11.143, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.078, + "new_cases_per_million": 0.74, + "new_cases_smoothed_per_million": 0.75, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 473.0, + "total_tests": 24010.0, + "total_tests_per_thousand": 1.615, + "new_tests_per_thousand": 0.032, + "new_tests_smoothed": 379.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 34.013000000000005, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-14", + "total_cases": 356.0, + "new_cases": 13.0, + "new_cases_smoothed": 11.0, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 23.952, + "new_cases_per_million": 0.875, + "new_cases_smoothed_per_million": 0.74, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 96.0, + "total_tests": 24106.0, + "total_tests_per_thousand": 1.622, + "new_tests_per_thousand": 0.006, + "new_tests_smoothed": 371.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 33.727, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-15", + "total_cases": 383.0, + "new_cases": 27.0, + "new_cases_smoothed": 14.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 25.769, + "new_cases_per_million": 1.817, + "new_cases_smoothed_per_million": 0.971, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 507.0, + "total_tests": 24613.0, + "total_tests_per_thousand": 1.656, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 387.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 26.822, + "positive_rate": 0.037000000000000005, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-16", + "total_cases": 387.0, + "new_cases": 4.0, + "new_cases_smoothed": 14.286, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.038, + "new_cases_per_million": 0.269, + "new_cases_smoothed_per_million": 0.961, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 251.0, + "total_tests": 24864.0, + "total_tests_per_thousand": 1.673, + "new_tests_per_thousand": 0.017, + "new_tests_smoothed": 373.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 26.11, + "positive_rate": 0.038, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-17", + "total_cases": 394.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.509, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.769, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 427.0, + "total_tests": 25291.0, + "total_tests_per_thousand": 1.702, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 355.0, + "new_tests_smoothed_per_thousand": 0.024, + "tests_per_case": 31.061999999999998, + "positive_rate": 0.032, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-18", + "total_cases": 401.0, + "new_cases": 7.0, + "new_cases_smoothed": 11.571, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 26.98, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.779, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 524.0, + "total_tests": 25815.0, + "total_tests_per_thousand": 1.737, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 392.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 33.876999999999995, + "positive_rate": 0.03, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-19", + "total_cases": 463.0, + "new_cases": 62.0, + "new_cases_smoothed": 18.714, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 31.151, + "new_cases_per_million": 4.171, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 302.0, + "total_tests": 26117.0, + "total_tests_per_thousand": 1.757, + "new_tests_per_thousand": 0.02, + "new_tests_smoothed": 369.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 19.718, + "positive_rate": 0.051, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-20", + "total_cases": 479.0, + "new_cases": 16.0, + "new_cases_smoothed": 19.429, + "total_deaths": 4.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 32.228, + "new_cases_per_million": 1.077, + "new_cases_smoothed_per_million": 1.307, + "total_deaths_per_million": 0.269, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 334.0, + "total_tests": 26451.0, + "total_tests_per_thousand": 1.78, + "new_tests_per_thousand": 0.022, + "new_tests_smoothed": 349.0, + "new_tests_smoothed_per_thousand": 0.023, + "tests_per_case": 17.963, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-21", + "total_cases": 486.0, + "new_cases": 7.0, + "new_cases_smoothed": 18.571, + "total_deaths": 6.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.699, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 1.25, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 406.0, + "total_tests": 26857.0, + "total_tests_per_thousand": 1.807, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 393.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 21.162, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-22", + "total_cases": 489.0, + "new_cases": 3.0, + "new_cases_smoothed": 15.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 32.901, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 1.019, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 364.0, + "total_tests": 27221.0, + "total_tests_per_thousand": 1.831, + "new_tests_per_thousand": 0.024, + "new_tests_smoothed": 373.0, + "new_tests_smoothed_per_thousand": 0.025, + "tests_per_case": 24.631999999999998, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-23", + "total_cases": 512.0, + "new_cases": 23.0, + "new_cases_smoothed": 17.857, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 34.448, + "new_cases_per_million": 1.547, + "new_cases_smoothed_per_million": 1.201, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 378.0, + "total_tests": 27599.0, + "total_tests_per_thousand": 1.857, + "new_tests_per_thousand": 0.025, + "new_tests_smoothed": 391.0, + "new_tests_smoothed_per_thousand": 0.026, + "tests_per_case": 21.896, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-24", + "total_cases": 525.0, + "new_cases": 13.0, + "new_cases_smoothed": 18.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 35.323, + "new_cases_per_million": 0.875, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 654.0, + "total_tests": 28253.0, + "total_tests_per_thousand": 1.901, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 423.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 22.603, + "positive_rate": 0.044000000000000004, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-25", + "total_cases": 530.0, + "new_cases": 5.0, + "new_cases_smoothed": 18.429, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 35.659, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 1.24, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 435.0, + "total_tests": 28688.0, + "total_tests_per_thousand": 1.93, + "new_tests_per_thousand": 0.029, + "new_tests_smoothed": 410.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 22.248, + "positive_rate": 0.045, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-26", + "total_cases": 551.0, + "new_cases": 21.0, + "new_cases_smoothed": 12.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.072, + "new_cases_per_million": 1.413, + "new_cases_smoothed_per_million": 0.846, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 489.0, + "total_tests": 29177.0, + "total_tests_per_thousand": 1.963, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 437.0, + "new_tests_smoothed_per_thousand": 0.029, + "tests_per_case": 34.760999999999996, + "positive_rate": 0.028999999999999998, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-27", + "total_cases": 561.0, + "new_cases": 10.0, + "new_cases_smoothed": 11.714, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 37.745, + "new_cases_per_million": 0.673, + "new_cases_smoothed_per_million": 0.788, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 464.0, + "total_tests": 29641.0, + "total_tests_per_thousand": 1.994, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 456.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 38.927, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-28", + "total_cases": 567.0, + "new_cases": 6.0, + "new_cases_smoothed": 11.571, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.149, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 0.779, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 458.0, + "total_tests": 30099.0, + "total_tests_per_thousand": 2.025, + "new_tests_per_thousand": 0.031, + "new_tests_smoothed": 463.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 40.012, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-29", + "total_cases": 567.0, + "new_cases": 0.0, + "new_cases_smoothed": 11.143, + "total_deaths": 6.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 38.149, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.75, + "total_deaths_per_million": 0.404, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0, + "new_tests": 272.0, + "total_tests": 30371.0, + "total_tests_per_thousand": 2.043, + "new_tests_per_thousand": 0.018, + "new_tests_smoothed": 450.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 40.385, + "positive_rate": 0.025, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-06-30", + "total_cases": 574.0, + "new_cases": 7.0, + "new_cases_smoothed": 8.857, + "total_deaths": 7.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 38.62, + "new_cases_per_million": 0.471, + "new_cases_smoothed_per_million": 0.596, + "total_deaths_per_million": 0.471, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 340.0, + "total_tests": 30711.0, + "total_tests_per_thousand": 2.066, + "new_tests_per_thousand": 0.023, + "new_tests_smoothed": 445.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 50.242, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-01", + "total_cases": 591.0, + "new_cases": 17.0, + "new_cases_smoothed": 9.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 39.763, + "new_cases_per_million": 1.144, + "new_cases_smoothed_per_million": 0.634, + "total_deaths_per_million": 0.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 380.0, + "total_tests": 31091.0, + "total_tests_per_thousand": 2.092, + "new_tests_per_thousand": 0.026, + "new_tests_smoothed": 405.0, + "new_tests_smoothed_per_thousand": 0.027, + "tests_per_case": 42.955, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-02", + "total_cases": 605.0, + "new_cases": 14.0, + "new_cases_smoothed": 10.714, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 40.705, + "new_cases_per_million": 0.942, + "new_cases_smoothed_per_million": 0.721, + "total_deaths_per_million": 0.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 522.0, + "total_tests": 31613.0, + "total_tests_per_thousand": 2.127, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 418.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 39.013000000000005, + "positive_rate": 0.026000000000000002, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-03", + "total_cases": 617.0, + "new_cases": 12.0, + "new_cases_smoothed": 9.429, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 41.513, + "new_cases_per_million": 0.807, + "new_cases_smoothed_per_million": 0.634, + "total_deaths_per_million": 0.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 499.0, + "total_tests": 32112.0, + "total_tests_per_thousand": 2.161, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 419.0, + "new_tests_smoothed_per_thousand": 0.028, + "tests_per_case": 44.43899999999999, + "positive_rate": 0.023, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-04", + "total_cases": 625.0, + "new_cases": 8.0, + "new_cases_smoothed": 9.143, + "total_deaths": 7.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 42.051, + "new_cases_per_million": 0.538, + "new_cases_smoothed_per_million": 0.615, + "total_deaths_per_million": 0.471, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.01, + "new_tests": 733.0, + "total_tests": 32845.0, + "total_tests_per_thousand": 2.21, + "new_tests_per_thousand": 0.049, + "new_tests_smoothed": 458.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 50.093999999999994, + "positive_rate": 0.02, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-05", + "total_cases": 698.0, + "new_cases": 73.0, + "new_cases_smoothed": 18.714, + "total_deaths": 8.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 46.962, + "new_cases_per_million": 4.912, + "new_cases_smoothed_per_million": 1.259, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 411.0, + "total_tests": 33256.0, + "total_tests_per_thousand": 2.238, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 451.0, + "new_tests_smoothed_per_thousand": 0.03, + "tests_per_case": 24.099, + "positive_rate": 0.040999999999999995, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-06", + "total_cases": 716.0, + "new_cases": 18.0, + "new_cases_smoothed": 21.286, + "total_deaths": 8.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 48.174, + "new_cases_per_million": 1.211, + "new_cases_smoothed_per_million": 1.432, + "total_deaths_per_million": 0.538, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 312.0, + "total_tests": 33568.0, + "total_tests_per_thousand": 2.259, + "new_tests_per_thousand": 0.021, + "new_tests_smoothed": 457.0, + "new_tests_smoothed_per_thousand": 0.031, + "tests_per_case": 21.47, + "positive_rate": 0.047, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-07", + "total_cases": 734.0, + "new_cases": 18.0, + "new_cases_smoothed": 22.857, + "total_deaths": 9.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 49.385, + "new_cases_per_million": 1.211, + "new_cases_smoothed_per_million": 1.538, + "total_deaths_per_million": 0.606, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 592.0, + "total_tests": 34160.0, + "total_tests_per_thousand": 2.298, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 493.0, + "new_tests_smoothed_per_thousand": 0.033, + "tests_per_case": 21.569000000000003, + "positive_rate": 0.046, + "tests_units": "tests performed", + "stringency_index": 70.37 + }, + { + "date": "2020-07-08", + "total_cases": 787.0, + "new_cases": 53.0, + "new_cases_smoothed": 28.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 52.951, + "new_cases_per_million": 3.566, + "new_cases_smoothed_per_million": 1.884, + "total_deaths_per_million": 0.606, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 606.0, + "total_tests": 34766.0, + "total_tests_per_thousand": 2.339, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 525.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 18.75, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-09", + "total_cases": 885.0, + "new_cases": 98.0, + "new_cases_smoothed": 40.0, + "total_deaths": 9.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 59.544, + "new_cases_per_million": 6.594, + "new_cases_smoothed_per_million": 2.691, + "total_deaths_per_million": 0.606, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.019, + "new_tests": 580.0, + "total_tests": 35346.0, + "total_tests_per_thousand": 2.378, + "new_tests_per_thousand": 0.039, + "new_tests_smoothed": 533.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 13.325, + "positive_rate": 0.075, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-10", + "total_cases": 926.0, + "new_cases": 41.0, + "new_cases_smoothed": 44.143, + "total_deaths": 12.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 62.303, + "new_cases_per_million": 2.759, + "new_cases_smoothed_per_million": 2.97, + "total_deaths_per_million": 0.807, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 659.0, + "total_tests": 36005.0, + "total_tests_per_thousand": 2.422, + "new_tests_per_thousand": 0.044, + "new_tests_smoothed": 556.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 12.595, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-11", + "total_cases": 942.0, + "new_cases": 16.0, + "new_cases_smoothed": 45.286, + "total_deaths": 13.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 63.379, + "new_cases_per_million": 1.077, + "new_cases_smoothed_per_million": 3.047, + "total_deaths_per_million": 0.875, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 394.0, + "total_tests": 36399.0, + "total_tests_per_thousand": 2.449, + "new_tests_per_thousand": 0.027, + "new_tests_smoothed": 508.0, + "new_tests_smoothed_per_thousand": 0.034, + "tests_per_case": 11.218, + "positive_rate": 0.08900000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-12", + "total_cases": 982.0, + "new_cases": 40.0, + "new_cases_smoothed": 40.571, + "total_deaths": 18.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 66.07, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 2.73, + "total_deaths_per_million": 1.211, + "new_deaths_per_million": 0.336, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 517.0, + "total_tests": 36916.0, + "total_tests_per_thousand": 2.484, + "new_tests_per_thousand": 0.035, + "new_tests_smoothed": 523.0, + "new_tests_smoothed_per_thousand": 0.035, + "tests_per_case": 12.890999999999998, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-13", + "total_cases": 985.0, + "new_cases": 3.0, + "new_cases_smoothed": 38.429, + "total_deaths": 18.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 66.272, + "new_cases_per_million": 0.202, + "new_cases_smoothed_per_million": 2.586, + "total_deaths_per_million": 1.211, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 412.0, + "total_tests": 37328.0, + "total_tests_per_thousand": 2.511, + "new_tests_per_thousand": 0.028, + "new_tests_smoothed": 537.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 13.974, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-14", + "total_cases": 1034.0, + "new_cases": 49.0, + "new_cases_smoothed": 42.857, + "total_deaths": 19.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 69.569, + "new_cases_per_million": 3.297, + "new_cases_smoothed_per_million": 2.883, + "total_deaths_per_million": 1.278, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 693.0, + "total_tests": 38021.0, + "total_tests_per_thousand": 2.558, + "new_tests_per_thousand": 0.047, + "new_tests_smoothed": 552.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 12.88, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-15", + "total_cases": 1034.0, + "new_cases": 0.0, + "new_cases_smoothed": 35.286, + "total_deaths": 19.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 69.569, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 2.374, + "total_deaths_per_million": 1.278, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 603.0, + "total_tests": 38624.0, + "total_tests_per_thousand": 2.599, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 551.0, + "new_tests_smoothed_per_thousand": 0.037, + "tests_per_case": 15.615, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-16", + "total_cases": 1089.0, + "new_cases": 55.0, + "new_cases_smoothed": 29.143, + "total_deaths": 20.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 73.27, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 1.961, + "total_deaths_per_million": 1.346, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 492.0, + "total_tests": 39116.0, + "total_tests_per_thousand": 2.632, + "new_tests_per_thousand": 0.033, + "new_tests_smoothed": 539.0, + "new_tests_smoothed_per_thousand": 0.036, + "tests_per_case": 18.495, + "positive_rate": 0.054000000000000006, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-17", + "total_cases": 1362.0, + "new_cases": 273.0, + "new_cases_smoothed": 62.286, + "total_deaths": 23.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 91.637, + "new_cases_per_million": 18.368, + "new_cases_smoothed_per_million": 4.191, + "total_deaths_per_million": 1.547, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 979.0, + "total_tests": 40095.0, + "total_tests_per_thousand": 2.698, + "new_tests_per_thousand": 0.066, + "new_tests_smoothed": 584.0, + "new_tests_smoothed_per_thousand": 0.039, + "tests_per_case": 9.376, + "positive_rate": 0.107, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-18", + "total_cases": 1420.0, + "new_cases": 58.0, + "new_cases_smoothed": 68.286, + "total_deaths": 24.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 95.54, + "new_cases_per_million": 3.902, + "new_cases_smoothed_per_million": 4.594, + "total_deaths_per_million": 1.615, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.106, + "new_tests": 541.0, + "total_tests": 40636.0, + "total_tests_per_thousand": 2.734, + "new_tests_per_thousand": 0.036, + "new_tests_smoothed": 605.0, + "new_tests_smoothed_per_thousand": 0.041, + "tests_per_case": 8.86, + "positive_rate": 0.113, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-19", + "total_cases": 1478.0, + "new_cases": 58.0, + "new_cases_smoothed": 70.857, + "total_deaths": 25.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 99.442, + "new_cases_per_million": 3.902, + "new_cases_smoothed_per_million": 4.767, + "total_deaths_per_million": 1.682, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 802.0, + "total_tests": 41438.0, + "total_tests_per_thousand": 2.788, + "new_tests_per_thousand": 0.054, + "new_tests_smoothed": 646.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 9.117, + "positive_rate": 0.11, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-20", + "total_cases": 1611.0, + "new_cases": 133.0, + "new_cases_smoothed": 89.429, + "total_deaths": 25.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 108.39, + "new_cases_per_million": 8.948, + "new_cases_smoothed_per_million": 6.017, + "total_deaths_per_million": 1.682, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 502.0, + "total_tests": 41940.0, + "total_tests_per_thousand": 2.822, + "new_tests_per_thousand": 0.034, + "new_tests_smoothed": 659.0, + "new_tests_smoothed_per_thousand": 0.044, + "tests_per_case": 7.369, + "positive_rate": 0.136, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-21", + "total_cases": 1713.0, + "new_cases": 102.0, + "new_cases_smoothed": 97.0, + "total_deaths": 26.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 115.253, + "new_cases_per_million": 6.863, + "new_cases_smoothed_per_million": 6.526, + "total_deaths_per_million": 1.749, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 592.0, + "total_tests": 42532.0, + "total_tests_per_thousand": 2.862, + "new_tests_per_thousand": 0.04, + "new_tests_smoothed": 644.0, + "new_tests_smoothed_per_thousand": 0.043, + "tests_per_case": 6.638999999999999, + "positive_rate": 0.151, + "tests_units": "tests performed", + "stringency_index": 76.85 + }, + { + "date": "2020-07-22", + "total_cases": 1820.0, + "new_cases": 107.0, + "new_cases_smoothed": 112.286, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.0, + "total_cases_per_million": 122.452, + "new_cases_per_million": 7.199, + "new_cases_smoothed_per_million": 7.555, + "total_deaths_per_million": 1.749, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.067, + "new_tests": 1076.0, + "total_tests": 43608.0, + "total_tests_per_thousand": 2.934, + "new_tests_per_thousand": 0.072, + "new_tests_smoothed": 712.0, + "new_tests_smoothed_per_thousand": 0.048, + "tests_per_case": 6.341, + "positive_rate": 0.158, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-23", + "total_cases": 2034.0, + "new_cases": 214.0, + "new_cases_smoothed": 135.0, + "total_deaths": 26.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.857, + "total_cases_per_million": 136.851, + "new_cases_per_million": 14.398, + "new_cases_smoothed_per_million": 9.083, + "total_deaths_per_million": 1.749, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.058, + "new_tests": 1248.0, + "total_tests": 44856.0, + "total_tests_per_thousand": 3.018, + "new_tests_per_thousand": 0.084, + "new_tests_smoothed": 820.0, + "new_tests_smoothed_per_thousand": 0.055, + "tests_per_case": 6.074, + "positive_rate": 0.165, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-24", + "total_cases": 2124.0, + "new_cases": 90.0, + "new_cases_smoothed": 108.857, + "total_deaths": 28.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 142.906, + "new_cases_per_million": 6.055, + "new_cases_smoothed_per_million": 7.324, + "total_deaths_per_million": 1.884, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.048, + "new_tests": 5055.0, + "total_tests": 49911.0, + "total_tests_per_thousand": 3.358, + "new_tests_per_thousand": 0.34, + "new_tests_smoothed": 1402.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 12.879000000000001, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-25", + "total_cases": 2296.0, + "new_cases": 172.0, + "new_cases_smoothed": 125.143, + "total_deaths": 32.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 1.143, + "total_cases_per_million": 154.478, + "new_cases_per_million": 11.572, + "new_cases_smoothed_per_million": 8.42, + "total_deaths_per_million": 2.153, + "new_deaths_per_million": 0.269, + "new_deaths_smoothed_per_million": 0.077, + "new_tests": 2096.0, + "total_tests": 52007.0, + "total_tests_per_thousand": 3.499, + "new_tests_per_thousand": 0.141, + "new_tests_smoothed": 1624.0, + "new_tests_smoothed_per_thousand": 0.109, + "tests_per_case": 12.977, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-26", + "total_cases": 2434.0, + "new_cases": 138.0, + "new_cases_smoothed": 136.571, + "total_deaths": 34.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 163.763, + "new_cases_per_million": 9.285, + "new_cases_smoothed_per_million": 9.189, + "total_deaths_per_million": 2.288, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 1339.0, + "total_tests": 53346.0, + "total_tests_per_thousand": 3.589, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 1701.0, + "new_tests_smoothed_per_thousand": 0.114, + "tests_per_case": 12.455, + "positive_rate": 0.08, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-27", + "total_cases": 2512.0, + "new_cases": 78.0, + "new_cases_smoothed": 128.714, + "total_deaths": 34.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.286, + "total_cases_per_million": 169.011, + "new_cases_per_million": 5.248, + "new_cases_smoothed_per_million": 8.66, + "total_deaths_per_million": 2.288, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.087, + "new_tests": 1485.0, + "total_tests": 54831.0, + "total_tests_per_thousand": 3.689, + "new_tests_per_thousand": 0.1, + "new_tests_smoothed": 1842.0, + "new_tests_smoothed_per_thousand": 0.124, + "tests_per_case": 14.311, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-28", + "total_cases": 2704.0, + "new_cases": 192.0, + "new_cases_smoothed": 141.571, + "total_deaths": 36.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 1.429, + "total_cases_per_million": 181.929, + "new_cases_per_million": 12.918, + "new_cases_smoothed_per_million": 9.525, + "total_deaths_per_million": 2.422, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.096, + "new_tests": 1169.0, + "total_tests": 56000.0, + "total_tests_per_thousand": 3.768, + "new_tests_per_thousand": 0.079, + "new_tests_smoothed": 1924.0, + "new_tests_smoothed_per_thousand": 0.129, + "tests_per_case": 13.59, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-29", + "total_cases": 2817.0, + "new_cases": 113.0, + "new_cases_smoothed": 142.429, + "total_deaths": 40.0, + "new_deaths": 4.0, + "new_deaths_smoothed": 2.0, + "total_cases_per_million": 189.532, + "new_cases_per_million": 7.603, + "new_cases_smoothed_per_million": 9.583, + "total_deaths_per_million": 2.691, + "new_deaths_per_million": 0.269, + "new_deaths_smoothed_per_million": 0.135, + "new_tests": 1791.0, + "total_tests": 57791.0, + "total_tests_per_thousand": 3.888, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 2026.0, + "new_tests_smoothed_per_thousand": 0.136, + "tests_per_case": 14.225, + "positive_rate": 0.07, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-30", + "total_cases": 2879.0, + "new_cases": 62.0, + "new_cases_smoothed": 120.714, + "total_deaths": 41.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 193.703, + "new_cases_per_million": 4.171, + "new_cases_smoothed_per_million": 8.122, + "total_deaths_per_million": 2.759, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.144, + "new_tests": 1340.0, + "total_tests": 59131.0, + "total_tests_per_thousand": 3.978, + "new_tests_per_thousand": 0.09, + "new_tests_smoothed": 2039.0, + "new_tests_smoothed_per_thousand": 0.137, + "tests_per_case": 16.891, + "positive_rate": 0.059000000000000004, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-07-31", + "total_cases": 3092.0, + "new_cases": 213.0, + "new_cases_smoothed": 138.286, + "total_deaths": 53.0, + "new_deaths": 12.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 208.034, + "new_cases_per_million": 14.331, + "new_cases_smoothed_per_million": 9.304, + "total_deaths_per_million": 3.566, + "new_deaths_per_million": 0.807, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 1001.0, + "total_tests": 60132.0, + "total_tests_per_thousand": 4.046, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 1460.0, + "new_tests_smoothed_per_thousand": 0.098, + "tests_per_case": 10.558, + "positive_rate": 0.095, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-01", + "total_cases": 3169.0, + "new_cases": 77.0, + "new_cases_smoothed": 124.714, + "total_deaths": 67.0, + "new_deaths": 14.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 213.215, + "new_cases_per_million": 5.181, + "new_cases_smoothed_per_million": 8.391, + "total_deaths_per_million": 4.508, + "new_deaths_per_million": 0.942, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 1445.0, + "total_tests": 61577.0, + "total_tests_per_thousand": 4.143, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 1367.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 10.960999999999999, + "positive_rate": 0.091, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-02", + "total_cases": 3659.0, + "new_cases": 490.0, + "new_cases_smoothed": 175.0, + "total_deaths": 69.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 246.183, + "new_cases_per_million": 32.968, + "new_cases_smoothed_per_million": 11.774, + "total_deaths_per_million": 4.642, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 1608.0, + "total_tests": 63185.0, + "total_tests_per_thousand": 4.251, + "new_tests_per_thousand": 0.108, + "new_tests_smoothed": 1406.0, + "new_tests_smoothed_per_thousand": 0.095, + "tests_per_case": 8.033999999999999, + "positive_rate": 0.124, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-03", + "total_cases": 3921.0, + "new_cases": 262.0, + "new_cases_smoothed": 201.286, + "total_deaths": 70.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.143, + "total_cases_per_million": 263.811, + "new_cases_per_million": 17.628, + "new_cases_smoothed_per_million": 13.543, + "total_deaths_per_million": 4.71, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.346, + "new_tests": 1449.0, + "total_tests": 64634.0, + "total_tests_per_thousand": 4.349, + "new_tests_per_thousand": 0.097, + "new_tests_smoothed": 1400.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 6.955, + "positive_rate": 0.14400000000000002, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-04", + "total_cases": 4075.0, + "new_cases": 154.0, + "new_cases_smoothed": 195.857, + "total_deaths": 80.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 274.172, + "new_cases_per_million": 10.361, + "new_cases_smoothed_per_million": 13.178, + "total_deaths_per_million": 5.383, + "new_deaths_per_million": 0.673, + "new_deaths_smoothed_per_million": 0.423, + "new_tests": 1080.0, + "total_tests": 65714.0, + "total_tests_per_thousand": 4.421, + "new_tests_per_thousand": 0.073, + "new_tests_smoothed": 1388.0, + "new_tests_smoothed_per_thousand": 0.093, + "tests_per_case": 7.087000000000001, + "positive_rate": 0.141, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-05", + "total_cases": 4221.0, + "new_cases": 146.0, + "new_cases_smoothed": 200.571, + "total_deaths": 81.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 283.995, + "new_cases_per_million": 9.823, + "new_cases_smoothed_per_million": 13.495, + "total_deaths_per_million": 5.45, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.394, + "new_tests": 1660.0, + "total_tests": 67374.0, + "total_tests_per_thousand": 4.533, + "new_tests_per_thousand": 0.112, + "new_tests_smoothed": 1369.0, + "new_tests_smoothed_per_thousand": 0.092, + "tests_per_case": 6.825, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-06", + "total_cases": 4339.0, + "new_cases": 118.0, + "new_cases_smoothed": 208.571, + "total_deaths": 84.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 291.934, + "new_cases_per_million": 7.939, + "new_cases_smoothed_per_million": 14.033, + "total_deaths_per_million": 5.652, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 768.0, + "total_tests": 68142.0, + "total_tests_per_thousand": 4.585, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1287.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 6.171, + "positive_rate": 0.162, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-07", + "total_cases": 4395.0, + "new_cases": 56.0, + "new_cases_smoothed": 186.143, + "total_deaths": 97.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 6.286, + "total_cases_per_million": 295.702, + "new_cases_per_million": 3.768, + "new_cases_smoothed_per_million": 12.524, + "total_deaths_per_million": 6.526, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 0.423, + "new_tests": 961.0, + "total_tests": 69103.0, + "total_tests_per_thousand": 4.649, + "new_tests_per_thousand": 0.065, + "new_tests_smoothed": 1282.0, + "new_tests_smoothed_per_thousand": 0.086, + "tests_per_case": 6.8870000000000005, + "positive_rate": 0.145, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-08", + "total_cases": 4451.0, + "new_cases": 56.0, + "new_cases_smoothed": 183.143, + "total_deaths": 102.0, + "new_deaths": 5.0, + "new_deaths_smoothed": 5.0, + "total_cases_per_million": 299.47, + "new_cases_per_million": 3.768, + "new_cases_smoothed_per_million": 12.322, + "total_deaths_per_million": 6.863, + "new_deaths_per_million": 0.336, + "new_deaths_smoothed_per_million": 0.336, + "new_tests": 1212.0, + "total_tests": 70315.0, + "total_tests_per_thousand": 4.731, + "new_tests_per_thousand": 0.082, + "new_tests_smoothed": 1248.0, + "new_tests_smoothed_per_thousand": 0.084, + "tests_per_case": 6.814, + "positive_rate": 0.147, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-09", + "total_cases": 4575.0, + "new_cases": 124.0, + "new_cases_smoothed": 130.857, + "total_deaths": 102.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 4.714, + "total_cases_per_million": 307.813, + "new_cases_per_million": 8.343, + "new_cases_smoothed_per_million": 8.804, + "total_deaths_per_million": 6.863, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.317, + "new_tests": 1293.0, + "total_tests": 71608.0, + "total_tests_per_thousand": 4.818, + "new_tests_per_thousand": 0.087, + "new_tests_smoothed": 1203.0, + "new_tests_smoothed_per_thousand": 0.081, + "tests_per_case": 9.193, + "positive_rate": 0.109, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-10", + "total_cases": 4649.0, + "new_cases": 74.0, + "new_cases_smoothed": 104.0, + "total_deaths": 104.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.857, + "total_cases_per_million": 312.792, + "new_cases_per_million": 4.979, + "new_cases_smoothed_per_million": 6.997, + "total_deaths_per_million": 6.997, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.327, + "new_tests": 2816.0, + "total_tests": 74424.0, + "total_tests_per_thousand": 5.007, + "new_tests_per_thousand": 0.189, + "new_tests_smoothed": 1399.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 13.452, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-11", + "total_cases": 4748.0, + "new_cases": 99.0, + "new_cases_smoothed": 96.143, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 319.453, + "new_cases_per_million": 6.661, + "new_cases_smoothed_per_million": 6.469, + "total_deaths_per_million": 6.997, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 1795.0, + "total_tests": 76219.0, + "total_tests_per_thousand": 5.128, + "new_tests_per_thousand": 0.121, + "new_tests_smoothed": 1501.0, + "new_tests_smoothed_per_thousand": 0.101, + "tests_per_case": 15.612, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-12", + "total_cases": 4818.0, + "new_cases": 70.0, + "new_cases_smoothed": 85.286, + "total_deaths": 104.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 324.162, + "new_cases_per_million": 4.71, + "new_cases_smoothed_per_million": 5.738, + "total_deaths_per_million": 6.997, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 1411.0, + "total_tests": 77630.0, + "total_tests_per_thousand": 5.223, + "new_tests_per_thousand": 0.095, + "new_tests_smoothed": 1465.0, + "new_tests_smoothed_per_thousand": 0.099, + "tests_per_case": 17.178, + "positive_rate": 0.057999999999999996, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-13", + "total_cases": 4893.0, + "new_cases": 75.0, + "new_cases_smoothed": 79.143, + "total_deaths": 122.0, + "new_deaths": 18.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 329.208, + "new_cases_per_million": 5.046, + "new_cases_smoothed_per_million": 5.325, + "total_deaths_per_million": 8.208, + "new_deaths_per_million": 1.211, + "new_deaths_smoothed_per_million": 0.365, + "new_tests": 1108.0, + "total_tests": 78738.0, + "total_tests_per_thousand": 5.298, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1514.0, + "new_tests_smoothed_per_thousand": 0.102, + "tests_per_case": 19.13, + "positive_rate": 0.052000000000000005, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-14", + "total_cases": 4990.0, + "new_cases": 97.0, + "new_cases_smoothed": 85.0, + "total_deaths": 128.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 335.735, + "new_cases_per_million": 6.526, + "new_cases_smoothed_per_million": 5.719, + "total_deaths_per_million": 8.612, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 1211.0, + "total_tests": 79949.0, + "total_tests_per_thousand": 5.379, + "new_tests_per_thousand": 0.081, + "new_tests_smoothed": 1549.0, + "new_tests_smoothed_per_thousand": 0.104, + "tests_per_case": 18.224, + "positive_rate": 0.055, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-15", + "total_cases": 5072.0, + "new_cases": 82.0, + "new_cases_smoothed": 88.714, + "total_deaths": 128.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 3.714, + "total_cases_per_million": 341.252, + "new_cases_per_million": 5.517, + "new_cases_smoothed_per_million": 5.969, + "total_deaths_per_million": 8.612, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.25, + "new_tests": 1389.0, + "total_tests": 81338.0, + "total_tests_per_thousand": 5.473, + "new_tests_per_thousand": 0.093, + "new_tests_smoothed": 1575.0, + "new_tests_smoothed_per_thousand": 0.106, + "tests_per_case": 17.754, + "positive_rate": 0.055999999999999994, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-16", + "total_cases": 5176.0, + "new_cases": 104.0, + "new_cases_smoothed": 85.857, + "total_deaths": 130.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 348.249, + "new_cases_per_million": 6.997, + "new_cases_smoothed_per_million": 5.777, + "total_deaths_per_million": 8.747, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 1546.0, + "total_tests": 82884.0, + "total_tests_per_thousand": 5.577, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1611.0, + "new_tests_smoothed_per_thousand": 0.108, + "tests_per_case": 18.764, + "positive_rate": 0.053, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-17", + "total_cases": 5261.0, + "new_cases": 85.0, + "new_cases_smoothed": 87.429, + "total_deaths": 132.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 353.968, + "new_cases_per_million": 5.719, + "new_cases_smoothed_per_million": 5.882, + "total_deaths_per_million": 8.881, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 898.0, + "total_tests": 83782.0, + "total_tests_per_thousand": 5.637, + "new_tests_per_thousand": 0.06, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 15.292, + "positive_rate": 0.065, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-18", + "total_cases": 5308.0, + "new_cases": 47.0, + "new_cases_smoothed": 80.0, + "total_deaths": 135.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 4.429, + "total_cases_per_million": 357.13, + "new_cases_per_million": 3.162, + "new_cases_smoothed_per_million": 5.383, + "total_deaths_per_million": 9.083, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.298, + "new_tests": 1229.0, + "total_tests": 85011.0, + "total_tests_per_thousand": 5.72, + "new_tests_per_thousand": 0.083, + "new_tests_smoothed": 1256.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 15.7, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-19", + "total_cases": 5378.0, + "new_cases": 70.0, + "new_cases_smoothed": 80.0, + "total_deaths": 141.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 361.84, + "new_cases_per_million": 4.71, + "new_cases_smoothed_per_million": 5.383, + "total_deaths_per_million": 9.487, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.356, + "new_tests": 1618.0, + "total_tests": 86629.0, + "total_tests_per_thousand": 5.829, + "new_tests_per_thousand": 0.109, + "new_tests_smoothed": 1286.0, + "new_tests_smoothed_per_thousand": 0.087, + "tests_per_case": 16.075, + "positive_rate": 0.062, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-20", + "total_cases": 5643.0, + "new_cases": 265.0, + "new_cases_smoothed": 107.143, + "total_deaths": 150.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 4.0, + "total_cases_per_million": 379.669, + "new_cases_per_million": 17.83, + "new_cases_smoothed_per_million": 7.209, + "total_deaths_per_million": 10.092, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.269, + "new_tests": 1256.0, + "total_tests": 87885.0, + "total_tests_per_thousand": 5.913, + "new_tests_per_thousand": 0.085, + "new_tests_smoothed": 1307.0, + "new_tests_smoothed_per_thousand": 0.088, + "tests_per_case": 12.199000000000002, + "positive_rate": 0.08199999999999999, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-21", + "total_cases": 5745.0, + "new_cases": 102.0, + "new_cases_smoothed": 107.857, + "total_deaths": 151.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 386.532, + "new_cases_per_million": 6.863, + "new_cases_smoothed_per_million": 7.257, + "total_deaths_per_million": 10.16, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 1810.0, + "total_tests": 89695.0, + "total_tests_per_thousand": 6.035, + "new_tests_per_thousand": 0.122, + "new_tests_smoothed": 1392.0, + "new_tests_smoothed_per_thousand": 0.094, + "tests_per_case": 12.905999999999999, + "positive_rate": 0.077, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-22", + "total_cases": 5815.0, + "new_cases": 70.0, + "new_cases_smoothed": 106.143, + "total_deaths": 152.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 391.242, + "new_cases_per_million": 4.71, + "new_cases_smoothed_per_million": 7.141, + "total_deaths_per_million": 10.227, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.231, + "new_tests": 1001.0, + "total_tests": 90696.0, + "total_tests_per_thousand": 6.102, + "new_tests_per_thousand": 0.067, + "new_tests_smoothed": 1337.0, + "new_tests_smoothed_per_thousand": 0.09, + "tests_per_case": 12.595999999999998, + "positive_rate": 0.079, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-23", + "total_cases": 5893.0, + "new_cases": 78.0, + "new_cases_smoothed": 102.429, + "total_deaths": 153.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 396.49, + "new_cases_per_million": 5.248, + "new_cases_smoothed_per_million": 6.892, + "total_deaths_per_million": 10.294, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 852.0, + "total_tests": 91548.0, + "total_tests_per_thousand": 6.159, + "new_tests_per_thousand": 0.057, + "new_tests_smoothed": 1238.0, + "new_tests_smoothed_per_thousand": 0.083, + "tests_per_case": 12.085999999999999, + "positive_rate": 0.083, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-24", + "total_cases": 5930.0, + "new_cases": 37.0, + "new_cases_smoothed": 95.571, + "total_deaths": 155.0, + "new_deaths": 2.0, + "new_deaths_smoothed": 3.286, + "total_cases_per_million": 398.979, + "new_cases_per_million": 2.489, + "new_cases_smoothed_per_million": 6.43, + "total_deaths_per_million": 10.429, + "new_deaths_per_million": 0.135, + "new_deaths_smoothed_per_million": 0.221, + "new_tests": 770.0, + "total_tests": 92318.0, + "total_tests_per_thousand": 6.211, + "new_tests_per_thousand": 0.052, + "new_tests_smoothed": 1219.0, + "new_tests_smoothed_per_thousand": 0.082, + "tests_per_case": 12.755, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-25", + "total_cases": 6070.0, + "new_cases": 140.0, + "new_cases_smoothed": 108.857, + "total_deaths": 155.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.857, + "total_cases_per_million": 408.399, + "new_cases_per_million": 9.419, + "new_cases_smoothed_per_million": 7.324, + "total_deaths_per_million": 10.429, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.192, + "new_tests": 1574.0, + "total_tests": 93892.0, + "total_tests_per_thousand": 6.317, + "new_tests_per_thousand": 0.106, + "new_tests_smoothed": 1269.0, + "new_tests_smoothed_per_thousand": 0.085, + "tests_per_case": 11.657, + "positive_rate": 0.086, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-26", + "total_cases": 6196.0, + "new_cases": 126.0, + "new_cases_smoothed": 116.857, + "total_deaths": 166.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 3.571, + "total_cases_per_million": 416.876, + "new_cases_per_million": 8.477, + "new_cases_smoothed_per_million": 7.862, + "total_deaths_per_million": 11.169, + "new_deaths_per_million": 0.74, + "new_deaths_smoothed_per_million": 0.24, + "new_tests": 878.0, + "total_tests": 94770.0, + "total_tests_per_thousand": 6.376, + "new_tests_per_thousand": 0.059, + "new_tests_smoothed": 1163.0, + "new_tests_smoothed_per_thousand": 0.078, + "tests_per_case": 9.952, + "positive_rate": 0.1, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-27", + "total_cases": 6251.0, + "new_cases": 55.0, + "new_cases_smoothed": 86.857, + "total_deaths": 179.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 4.143, + "total_cases_per_million": 420.577, + "new_cases_per_million": 3.7, + "new_cases_smoothed_per_million": 5.844, + "total_deaths_per_million": 12.043, + "new_deaths_per_million": 0.875, + "new_deaths_smoothed_per_million": 0.279, + "new_tests": 951.0, + "total_tests": 95721.0, + "total_tests_per_thousand": 6.44, + "new_tests_per_thousand": 0.064, + "new_tests_smoothed": 1119.0, + "new_tests_smoothed_per_thousand": 0.075, + "tests_per_case": 12.883, + "positive_rate": 0.078, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-28", + "total_cases": 6292.0, + "new_cases": 41.0, + "new_cases_smoothed": 78.143, + "total_deaths": 189.0, + "new_deaths": 10.0, + "new_deaths_smoothed": 5.429, + "total_cases_per_million": 423.335, + "new_cases_per_million": 2.759, + "new_cases_smoothed_per_million": 5.258, + "total_deaths_per_million": 12.716, + "new_deaths_per_million": 0.673, + "new_deaths_smoothed_per_million": 0.365, + "new_tests": 1551.0, + "total_tests": 97272.0, + "total_tests_per_thousand": 6.545, + "new_tests_per_thousand": 0.104, + "new_tests_smoothed": 1082.0, + "new_tests_smoothed_per_thousand": 0.073, + "tests_per_case": 13.845999999999998, + "positive_rate": 0.07200000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-29", + "total_cases": 6388.0, + "new_cases": 96.0, + "new_cases_smoothed": 81.857, + "total_deaths": 195.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 429.794, + "new_cases_per_million": 6.459, + "new_cases_smoothed_per_million": 5.507, + "total_deaths_per_million": 13.12, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 1114.0, + "total_tests": 98386.0, + "total_tests_per_thousand": 6.62, + "new_tests_per_thousand": 0.075, + "new_tests_smoothed": 1099.0, + "new_tests_smoothed_per_thousand": 0.074, + "tests_per_case": 13.425999999999998, + "positive_rate": 0.07400000000000001, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-30", + "total_cases": 6406.0, + "new_cases": 18.0, + "new_cases_smoothed": 73.286, + "total_deaths": 196.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 6.143, + "total_cases_per_million": 431.005, + "new_cases_per_million": 1.211, + "new_cases_smoothed_per_million": 4.931, + "total_deaths_per_million": 13.187, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.413, + "new_tests": 602.0, + "total_tests": 98988.0, + "total_tests_per_thousand": 6.66, + "new_tests_per_thousand": 0.041, + "new_tests_smoothed": 1063.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 14.505, + "positive_rate": 0.069, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-08-31", + "total_cases": 6412.0, + "new_cases": 6.0, + "new_cases_smoothed": 68.857, + "total_deaths": 196.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 5.857, + "total_cases_per_million": 431.409, + "new_cases_per_million": 0.404, + "new_cases_smoothed_per_million": 4.633, + "total_deaths_per_million": 13.187, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.394, + "new_tests": 836.0, + "total_tests": 99824.0, + "total_tests_per_thousand": 6.716, + "new_tests_per_thousand": 0.056, + "new_tests_smoothed": 1072.0, + "new_tests_smoothed_per_thousand": 0.072, + "tests_per_case": 15.568, + "positive_rate": 0.064, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-09-01", + "total_cases": 6497.0, + "new_cases": 85.0, + "new_cases_smoothed": 61.0, + "total_deaths": 202.0, + "new_deaths": 6.0, + "new_deaths_smoothed": 6.714, + "total_cases_per_million": 437.128, + "new_cases_per_million": 5.719, + "new_cases_smoothed_per_million": 4.104, + "total_deaths_per_million": 13.591, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.452, + "new_tests": 1013.0, + "total_tests": 100837.0, + "total_tests_per_thousand": 6.784, + "new_tests_per_thousand": 0.068, + "new_tests_smoothed": 992.0, + "new_tests_smoothed_per_thousand": 0.067, + "tests_per_case": 16.262, + "positive_rate": 0.061, + "tests_units": "tests performed", + "stringency_index": 80.56 + }, + { + "date": "2020-09-02", + "total_cases": 6559.0, + "new_cases": 62.0, + "new_cases_smoothed": 51.857, + "total_deaths": 203.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 5.286, + "total_cases_per_million": 441.299, + "new_cases_per_million": 4.171, + "new_cases_smoothed_per_million": 3.489, + "total_deaths_per_million": 13.658, + "new_deaths_per_million": 0.067, + "new_deaths_smoothed_per_million": 0.356, + "stringency_index": 80.56 + }, + { + "date": "2020-09-03", + "total_cases": 6638.0, + "new_cases": 79.0, + "new_cases_smoothed": 55.286, + "total_deaths": 206.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 3.857, + "total_cases_per_million": 446.615, + "new_cases_per_million": 5.315, + "new_cases_smoothed_per_million": 3.72, + "total_deaths_per_million": 13.86, + "new_deaths_per_million": 0.202, + "new_deaths_smoothed_per_million": 0.26, + "stringency_index": 80.56 + }, + { + "date": "2020-09-04", + "total_cases": 6678.0, + "new_cases": 40.0, + "new_cases_smoothed": 55.143, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.429, + "total_cases_per_million": 449.306, + "new_cases_per_million": 2.691, + "new_cases_smoothed_per_million": 3.71, + "total_deaths_per_million": 13.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.163 + }, + { + "date": "2020-09-05", + "total_cases": 6837.0, + "new_cases": 159.0, + "new_cases_smoothed": 64.143, + "total_deaths": 206.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 1.571, + "total_cases_per_million": 460.004, + "new_cases_per_million": 10.698, + "new_cases_smoothed_per_million": 4.316, + "total_deaths_per_million": 13.86, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.106 + } + ] + }, + "OWID_WRL": { + "location": "World", + "population": 7794798729.0, + "population_density": 58.045, + "median_age": 30.9, + "aged_65_older": 8.696, + "aged_70_older": 5.355, + "gdp_per_capita": 15469.207, + "extreme_poverty": 10.0, + "cardiovasc_death_rate": 233.07, + "diabetes_prevalence": 8.51, + "female_smokers": 6.434, + "male_smokers": 34.635, + "handwashing_facilities": 60.13, + "hospital_beds_per_thousand": 2.705, + "life_expectancy": 72.58, + "data": [ + { + "date": "2019-12-31", + "total_cases": 27.0, + "new_cases": 27.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-01", + "total_cases": 27.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-02", + "total_cases": 27.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.003, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-03", + "total_cases": 44.0, + "new_cases": 17.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.006, + "new_cases_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-04", + "total_cases": 44.0, + "new_cases": 0.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.006, + "new_cases_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-05", + "total_cases": 59.0, + "new_cases": 15.0, + "total_deaths": 0.0, + "new_deaths": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.002, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0 + }, + { + "date": "2020-01-06", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 8.429, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-07", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-08", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-09", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 4.571, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.001, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-10", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 0.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.0, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-11", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 2.143, + "total_deaths": 1.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-12", + "total_cases": 59.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.0, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-13", + "total_cases": 60.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-14", + "total_cases": 60.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.143, + "total_deaths": 1.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-15", + "total_cases": 61.0, + "new_cases": 1.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-16", + "total_cases": 61.0, + "new_cases": 0.0, + "new_cases_smoothed": 0.286, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.0, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-17", + "total_cases": 66.0, + "new_cases": 5.0, + "new_cases_smoothed": 1.0, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.008, + "new_cases_per_million": 0.001, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-18", + "total_cases": 83.0, + "new_cases": 17.0, + "new_cases_smoothed": 3.429, + "total_deaths": 2.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.143, + "total_cases_per_million": 0.011, + "new_cases_per_million": 0.002, + "new_cases_smoothed_per_million": 0.0, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-19", + "total_cases": 219.0, + "new_cases": 136.0, + "new_cases_smoothed": 22.857, + "total_deaths": 3.0, + "new_deaths": 1.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.028, + "new_cases_per_million": 0.017, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-20", + "total_cases": 239.0, + "new_cases": 20.0, + "new_cases_smoothed": 25.571, + "total_deaths": 3.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 0.286, + "total_cases_per_million": 0.031, + "new_cases_per_million": 0.003, + "new_cases_smoothed_per_million": 0.003, + "total_deaths_per_million": 0.0, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-21", + "total_cases": 392.0, + "new_cases": 153.0, + "new_cases_smoothed": 47.429, + "total_deaths": 6.0, + "new_deaths": 3.0, + "new_deaths_smoothed": 0.714, + "total_cases_per_million": 0.05, + "new_cases_per_million": 0.02, + "new_cases_smoothed_per_million": 0.006, + "total_deaths_per_million": 0.001, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-22", + "total_cases": 534.0, + "new_cases": 142.0, + "new_cases_smoothed": 67.571, + "total_deaths": 17.0, + "new_deaths": 11.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 0.069, + "new_cases_per_million": 0.018, + "new_cases_smoothed_per_million": 0.009, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-23", + "total_cases": 631.0, + "new_cases": 97.0, + "new_cases_smoothed": 81.429, + "total_deaths": 17.0, + "new_deaths": 0.0, + "new_deaths_smoothed": 2.143, + "total_cases_per_million": 0.081, + "new_cases_per_million": 0.012, + "new_cases_smoothed_per_million": 0.01, + "total_deaths_per_million": 0.002, + "new_deaths_per_million": 0.0, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-24", + "total_cases": 897.0, + "new_cases": 266.0, + "new_cases_smoothed": 118.714, + "total_deaths": 26.0, + "new_deaths": 9.0, + "new_deaths_smoothed": 3.429, + "total_cases_per_million": 0.115, + "new_cases_per_million": 0.034, + "new_cases_smoothed_per_million": 0.015, + "total_deaths_per_million": 0.003, + "new_deaths_per_million": 0.001, + "new_deaths_smoothed_per_million": 0.0 + }, + { + "date": "2020-01-25", + "total_cases": 1350.0, + "new_cases": 453.0, + "new_cases_smoothed": 181.0, + "total_deaths": 41.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 5.571, + "total_cases_per_million": 0.173, + "new_cases_per_million": 0.058, + "new_cases_smoothed_per_million": 0.023, + "total_deaths_per_million": 0.005, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-01-26", + "total_cases": 2023.0, + "new_cases": 673.0, + "new_cases_smoothed": 257.714, + "total_deaths": 56.0, + "new_deaths": 15.0, + "new_deaths_smoothed": 7.571, + "total_cases_per_million": 0.26, + "new_cases_per_million": 0.086, + "new_cases_smoothed_per_million": 0.033, + "total_deaths_per_million": 0.007, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-01-27", + "total_cases": 2820.0, + "new_cases": 797.0, + "new_cases_smoothed": 368.714, + "total_deaths": 81.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 11.143, + "total_cases_per_million": 0.362, + "new_cases_per_million": 0.102, + "new_cases_smoothed_per_million": 0.047, + "total_deaths_per_million": 0.01, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.001 + }, + { + "date": "2020-01-28", + "total_cases": 4587.0, + "new_cases": 1767.0, + "new_cases_smoothed": 599.286, + "total_deaths": 106.0, + "new_deaths": 25.0, + "new_deaths_smoothed": 14.286, + "total_cases_per_million": 0.588, + "new_cases_per_million": 0.227, + "new_cases_smoothed_per_million": 0.077, + "total_deaths_per_million": 0.014, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002 + }, + { + "date": "2020-01-29", + "total_cases": 6067.0, + "new_cases": 1480.0, + "new_cases_smoothed": 790.429, + "total_deaths": 132.0, + "new_deaths": 26.0, + "new_deaths_smoothed": 16.429, + "total_cases_per_million": 0.778, + "new_cases_per_million": 0.19, + "new_cases_smoothed_per_million": 0.101, + "total_deaths_per_million": 0.017, + "new_deaths_per_million": 0.003, + "new_deaths_smoothed_per_million": 0.002 + }, + { + "date": "2020-01-30", + "total_cases": 7823.0, + "new_cases": 1756.0, + "new_cases_smoothed": 1027.429, + "total_deaths": 170.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 21.857, + "total_cases_per_million": 1.004, + "new_cases_per_million": 0.225, + "new_cases_smoothed_per_million": 0.132, + "total_deaths_per_million": 0.022, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.003 + }, + { + "date": "2020-01-31", + "total_cases": 9824.0, + "new_cases": 2001.0, + "new_cases_smoothed": 1275.286, + "total_deaths": 213.0, + "new_deaths": 43.0, + "new_deaths_smoothed": 26.714, + "total_cases_per_million": 1.26, + "new_cases_per_million": 0.257, + "new_cases_smoothed_per_million": 0.164, + "total_deaths_per_million": 0.027, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.003 + }, + { + "date": "2020-02-01", + "total_cases": 11946.0, + "new_cases": 2122.0, + "new_cases_smoothed": 1513.714, + "total_deaths": 259.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 31.143, + "total_cases_per_million": 1.533, + "new_cases_per_million": 0.272, + "new_cases_smoothed_per_million": 0.194, + "total_deaths_per_million": 0.033, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.004 + }, + { + "date": "2020-02-02", + "total_cases": 14554.0, + "new_cases": 2608.0, + "new_cases_smoothed": 1790.143, + "total_deaths": 305.0, + "new_deaths": 46.0, + "new_deaths_smoothed": 35.571, + "total_cases_per_million": 1.867, + "new_cases_per_million": 0.335, + "new_cases_smoothed_per_million": 0.23, + "total_deaths_per_million": 0.039, + "new_deaths_per_million": 0.006, + "new_deaths_smoothed_per_million": 0.005 + }, + { + "date": "2020-02-03", + "total_cases": 17372.0, + "new_cases": 2818.0, + "new_cases_smoothed": 2078.857, + "total_deaths": 362.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 40.143, + "total_cases_per_million": 2.229, + "new_cases_per_million": 0.362, + "new_cases_smoothed_per_million": 0.267, + "total_deaths_per_million": 0.046, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.005 + }, + { + "date": "2020-02-04", + "total_cases": 20615.0, + "new_cases": 3243.0, + "new_cases_smoothed": 2289.714, + "total_deaths": 427.0, + "new_deaths": 65.0, + "new_deaths_smoothed": 45.857, + "total_cases_per_million": 2.645, + "new_cases_per_million": 0.416, + "new_cases_smoothed_per_million": 0.294, + "total_deaths_per_million": 0.055, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.006 + }, + { + "date": "2020-02-05", + "total_cases": 24523.0, + "new_cases": 3908.0, + "new_cases_smoothed": 2636.571, + "total_deaths": 493.0, + "new_deaths": 66.0, + "new_deaths_smoothed": 51.571, + "total_cases_per_million": 3.146, + "new_cases_per_million": 0.501, + "new_cases_smoothed_per_million": 0.338, + "total_deaths_per_million": 0.063, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-02-06", + "total_cases": 28274.0, + "new_cases": 3751.0, + "new_cases_smoothed": 2921.571, + "total_deaths": 565.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 56.429, + "total_cases_per_million": 3.627, + "new_cases_per_million": 0.481, + "new_cases_smoothed_per_million": 0.375, + "total_deaths_per_million": 0.072, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.007 + }, + { + "date": "2020-02-07", + "total_cases": 31492.0, + "new_cases": 3218.0, + "new_cases_smoothed": 3095.429, + "total_deaths": 638.0, + "new_deaths": 73.0, + "new_deaths_smoothed": 60.714, + "total_cases_per_million": 4.04, + "new_cases_per_million": 0.413, + "new_cases_smoothed_per_million": 0.397, + "total_deaths_per_million": 0.082, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.008 + }, + { + "date": "2020-02-08", + "total_cases": 34934.0, + "new_cases": 3442.0, + "new_cases_smoothed": 3284.0, + "total_deaths": 724.0, + "new_deaths": 86.0, + "new_deaths_smoothed": 66.429, + "total_cases_per_million": 4.482, + "new_cases_per_million": 0.442, + "new_cases_smoothed_per_million": 0.421, + "total_deaths_per_million": 0.093, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-02-09", + "total_cases": 37552.0, + "new_cases": 2618.0, + "new_cases_smoothed": 3285.429, + "total_deaths": 813.0, + "new_deaths": 89.0, + "new_deaths_smoothed": 72.571, + "total_cases_per_million": 4.818, + "new_cases_per_million": 0.336, + "new_cases_smoothed_per_million": 0.421, + "total_deaths_per_million": 0.104, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-02-10", + "total_cases": 40544.0, + "new_cases": 2992.0, + "new_cases_smoothed": 3310.286, + "total_deaths": 910.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 78.286, + "total_cases_per_million": 5.201, + "new_cases_per_million": 0.384, + "new_cases_smoothed_per_million": 0.425, + "total_deaths_per_million": 0.117, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-02-11", + "total_cases": 43106.0, + "new_cases": 2562.0, + "new_cases_smoothed": 3213.0, + "total_deaths": 1018.0, + "new_deaths": 108.0, + "new_deaths_smoothed": 84.429, + "total_cases_per_million": 5.53, + "new_cases_per_million": 0.329, + "new_cases_smoothed_per_million": 0.412, + "total_deaths_per_million": 0.131, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.011 + }, + { + "date": "2020-02-12", + "total_cases": 45178.0, + "new_cases": 2072.0, + "new_cases_smoothed": 2950.714, + "total_deaths": 1115.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 88.857, + "total_cases_per_million": 5.796, + "new_cases_per_million": 0.266, + "new_cases_smoothed_per_million": 0.379, + "total_deaths_per_million": 0.143, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.011 + }, + { + "date": "2020-02-13", + "total_cases": 60329.0, + "new_cases": 15151.0, + "new_cases_smoothed": 4579.286, + "total_deaths": 1370.0, + "new_deaths": 255.0, + "new_deaths_smoothed": 115.0, + "total_cases_per_million": 7.74, + "new_cases_per_million": 1.944, + "new_cases_smoothed_per_million": 0.587, + "total_deaths_per_million": 0.176, + "new_deaths_per_million": 0.033, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-14", + "total_cases": 64544.0, + "new_cases": 4215.0, + "new_cases_smoothed": 4721.714, + "total_deaths": 1383.0, + "new_deaths": 13.0, + "new_deaths_smoothed": 106.429, + "total_cases_per_million": 8.28, + "new_cases_per_million": 0.541, + "new_cases_smoothed_per_million": 0.606, + "total_deaths_per_million": 0.177, + "new_deaths_per_million": 0.002, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-02-15", + "total_cases": 67104.0, + "new_cases": 2560.0, + "new_cases_smoothed": 4595.714, + "total_deaths": 1527.0, + "new_deaths": 144.0, + "new_deaths_smoothed": 114.714, + "total_cases_per_million": 8.609, + "new_cases_per_million": 0.328, + "new_cases_smoothed_per_million": 0.59, + "total_deaths_per_million": 0.196, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-16", + "total_cases": 69266.0, + "new_cases": 2162.0, + "new_cases_smoothed": 4530.571, + "total_deaths": 1669.0, + "new_deaths": 142.0, + "new_deaths_smoothed": 122.286, + "total_cases_per_million": 8.886, + "new_cases_per_million": 0.277, + "new_cases_smoothed_per_million": 0.581, + "total_deaths_per_million": 0.214, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-02-17", + "total_cases": 71333.0, + "new_cases": 2067.0, + "new_cases_smoothed": 4398.429, + "total_deaths": 1775.0, + "new_deaths": 106.0, + "new_deaths_smoothed": 123.571, + "total_cases_per_million": 9.151, + "new_cases_per_million": 0.265, + "new_cases_smoothed_per_million": 0.564, + "total_deaths_per_million": 0.228, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-02-18", + "total_cases": 73328.0, + "new_cases": 1995.0, + "new_cases_smoothed": 4317.429, + "total_deaths": 1873.0, + "new_deaths": 98.0, + "new_deaths_smoothed": 122.143, + "total_cases_per_million": 9.407, + "new_cases_per_million": 0.256, + "new_cases_smoothed_per_million": 0.554, + "total_deaths_per_million": 0.24, + "new_deaths_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-02-19", + "total_cases": 75192.0, + "new_cases": 1864.0, + "new_cases_smoothed": 4287.714, + "total_deaths": 2012.0, + "new_deaths": 139.0, + "new_deaths_smoothed": 128.143, + "total_cases_per_million": 9.646, + "new_cases_per_million": 0.239, + "new_cases_smoothed_per_million": 0.55, + "total_deaths_per_million": 0.258, + "new_deaths_per_million": 0.018, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-02-20", + "total_cases": 75724.0, + "new_cases": 532.0, + "new_cases_smoothed": 2199.286, + "total_deaths": 2128.0, + "new_deaths": 116.0, + "new_deaths_smoothed": 108.286, + "total_cases_per_million": 9.715, + "new_cases_per_million": 0.068, + "new_cases_smoothed_per_million": 0.282, + "total_deaths_per_million": 0.273, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-02-21", + "total_cases": 76720.0, + "new_cases": 996.0, + "new_cases_smoothed": 1739.429, + "total_deaths": 2247.0, + "new_deaths": 119.0, + "new_deaths_smoothed": 123.429, + "total_cases_per_million": 9.842, + "new_cases_per_million": 0.128, + "new_cases_smoothed_per_million": 0.223, + "total_deaths_per_million": 0.288, + "new_deaths_per_million": 0.015, + "new_deaths_smoothed_per_million": 0.016 + }, + { + "date": "2020-02-22", + "total_cases": 77805.0, + "new_cases": 1085.0, + "new_cases_smoothed": 1528.714, + "total_deaths": 2359.0, + "new_deaths": 112.0, + "new_deaths_smoothed": 118.857, + "total_cases_per_million": 9.982, + "new_cases_per_million": 0.139, + "new_cases_smoothed_per_million": 0.196, + "total_deaths_per_million": 0.303, + "new_deaths_per_million": 0.014, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-23", + "total_cases": 78814.0, + "new_cases": 1009.0, + "new_cases_smoothed": 1364.0, + "total_deaths": 2463.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 113.429, + "total_cases_per_million": 10.111, + "new_cases_per_million": 0.129, + "new_cases_smoothed_per_million": 0.175, + "total_deaths_per_million": 0.316, + "new_deaths_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-24", + "total_cases": 79337.0, + "new_cases": 523.0, + "new_cases_smoothed": 1143.429, + "total_deaths": 2619.0, + "new_deaths": 156.0, + "new_deaths_smoothed": 120.571, + "total_cases_per_million": 10.178, + "new_cases_per_million": 0.067, + "new_cases_smoothed_per_million": 0.147, + "total_deaths_per_million": 0.336, + "new_deaths_per_million": 0.02, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-25", + "total_cases": 80130.0, + "new_cases": 793.0, + "new_cases_smoothed": 971.714, + "total_deaths": 2698.0, + "new_deaths": 79.0, + "new_deaths_smoothed": 117.857, + "total_cases_per_million": 10.28, + "new_cases_per_million": 0.102, + "new_cases_smoothed_per_million": 0.125, + "total_deaths_per_million": 0.346, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.015 + }, + { + "date": "2020-02-26", + "total_cases": 80997.0, + "new_cases": 867.0, + "new_cases_smoothed": 829.286, + "total_deaths": 2762.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 107.143, + "total_cases_per_million": 10.391, + "new_cases_per_million": 0.111, + "new_cases_smoothed_per_million": 0.106, + "total_deaths_per_million": 0.354, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-02-27", + "total_cases": 82111.0, + "new_cases": 1114.0, + "new_cases_smoothed": 912.429, + "total_deaths": 2800.0, + "new_deaths": 38.0, + "new_deaths_smoothed": 96.0, + "total_cases_per_million": 10.534, + "new_cases_per_million": 0.143, + "new_cases_smoothed_per_million": 0.117, + "total_deaths_per_million": 0.359, + "new_deaths_per_million": 0.005, + "new_deaths_smoothed_per_million": 0.012 + }, + { + "date": "2020-02-28", + "total_cases": 83377.0, + "new_cases": 1266.0, + "new_cases_smoothed": 951.0, + "total_deaths": 2857.0, + "new_deaths": 57.0, + "new_deaths_smoothed": 87.143, + "total_cases_per_million": 10.696, + "new_cases_per_million": 0.162, + "new_cases_smoothed_per_million": 0.122, + "total_deaths_per_million": 0.367, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.011 + }, + { + "date": "2020-02-29", + "total_cases": 85236.0, + "new_cases": 1859.0, + "new_cases_smoothed": 1061.571, + "total_deaths": 2921.0, + "new_deaths": 64.0, + "new_deaths_smoothed": 80.286, + "total_cases_per_million": 10.935, + "new_cases_per_million": 0.238, + "new_cases_smoothed_per_million": 0.136, + "total_deaths_per_million": 0.375, + "new_deaths_per_million": 0.008, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-03-01", + "total_cases": 87062.0, + "new_cases": 1826.0, + "new_cases_smoothed": 1178.286, + "total_deaths": 2979.0, + "new_deaths": 58.0, + "new_deaths_smoothed": 73.714, + "total_cases_per_million": 11.169, + "new_cases_per_million": 0.234, + "new_cases_smoothed_per_million": 0.151, + "total_deaths_per_million": 0.382, + "new_deaths_per_million": 0.007, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-03-02", + "total_cases": 89149.0, + "new_cases": 2087.0, + "new_cases_smoothed": 1401.714, + "total_deaths": 3046.0, + "new_deaths": 67.0, + "new_deaths_smoothed": 61.0, + "total_cases_per_million": 11.437, + "new_cases_per_million": 0.268, + "new_cases_smoothed_per_million": 0.18, + "total_deaths_per_million": 0.391, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.008 + }, + { + "date": "2020-03-03", + "total_cases": 91006.0, + "new_cases": 1857.0, + "new_cases_smoothed": 1553.714, + "total_deaths": 3118.0, + "new_deaths": 72.0, + "new_deaths_smoothed": 60.0, + "total_cases_per_million": 11.675, + "new_cases_per_million": 0.238, + "new_cases_smoothed_per_million": 0.199, + "total_deaths_per_million": 0.4, + "new_deaths_per_million": 0.009, + "new_deaths_smoothed_per_million": 0.008 + }, + { + "date": "2020-03-04", + "total_cases": 93318.0, + "new_cases": 2312.0, + "new_cases_smoothed": 1760.143, + "total_deaths": 3202.0, + "new_deaths": 84.0, + "new_deaths_smoothed": 62.857, + "total_cases_per_million": 11.972, + "new_cases_per_million": 0.297, + "new_cases_smoothed_per_million": 0.226, + "total_deaths_per_million": 0.411, + "new_deaths_per_million": 0.011, + "new_deaths_smoothed_per_million": 0.008 + }, + { + "date": "2020-03-05", + "total_cases": 95672.0, + "new_cases": 2354.0, + "new_cases_smoothed": 1937.286, + "total_deaths": 3282.0, + "new_deaths": 80.0, + "new_deaths_smoothed": 68.857, + "total_cases_per_million": 12.274, + "new_cases_per_million": 0.302, + "new_cases_smoothed_per_million": 0.249, + "total_deaths_per_million": 0.421, + "new_deaths_per_million": 0.01, + "new_deaths_smoothed_per_million": 0.009 + }, + { + "date": "2020-03-06", + "total_cases": 98730.0, + "new_cases": 3058.0, + "new_cases_smoothed": 2193.286, + "total_deaths": 3384.0, + "new_deaths": 102.0, + "new_deaths_smoothed": 75.286, + "total_cases_per_million": 12.666, + "new_cases_per_million": 0.392, + "new_cases_smoothed_per_million": 0.281, + "total_deaths_per_million": 0.434, + "new_deaths_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-03-07", + "total_cases": 102850.0, + "new_cases": 4120.0, + "new_cases_smoothed": 2516.286, + "total_deaths": 3488.0, + "new_deaths": 104.0, + "new_deaths_smoothed": 81.0, + "total_cases_per_million": 13.195, + "new_cases_per_million": 0.529, + "new_cases_smoothed_per_million": 0.323, + "total_deaths_per_million": 0.447, + "new_deaths_per_million": 0.013, + "new_deaths_smoothed_per_million": 0.01 + }, + { + "date": "2020-03-08", + "total_cases": 106829.0, + "new_cases": 3979.0, + "new_cases_smoothed": 2823.857, + "total_deaths": 3585.0, + "new_deaths": 97.0, + "new_deaths_smoothed": 86.571, + "total_cases_per_million": 13.705, + "new_cases_per_million": 0.51, + "new_cases_smoothed_per_million": 0.362, + "total_deaths_per_million": 0.46, + "new_deaths_per_million": 0.012, + "new_deaths_smoothed_per_million": 0.011 + }, + { + "date": "2020-03-09", + "total_cases": 111007.0, + "new_cases": 4178.0, + "new_cases_smoothed": 3122.571, + "total_deaths": 3813.0, + "new_deaths": 228.0, + "new_deaths_smoothed": 109.571, + "total_cases_per_million": 14.241, + "new_cases_per_million": 0.536, + "new_cases_smoothed_per_million": 0.401, + "total_deaths_per_million": 0.489, + "new_deaths_per_million": 0.029, + "new_deaths_smoothed_per_million": 0.014 + }, + { + "date": "2020-03-10", + "total_cases": 115824.0, + "new_cases": 4817.0, + "new_cases_smoothed": 3545.429, + "total_deaths": 4021.0, + "new_deaths": 208.0, + "new_deaths_smoothed": 129.0, + "total_cases_per_million": 14.859, + "new_cases_per_million": 0.618, + "new_cases_smoothed_per_million": 0.455, + "total_deaths_per_million": 0.516, + "new_deaths_per_million": 0.027, + "new_deaths_smoothed_per_million": 0.017 + }, + { + "date": "2020-03-11", + "total_cases": 120930.0, + "new_cases": 5106.0, + "new_cases_smoothed": 3944.571, + "total_deaths": 4294.0, + "new_deaths": 273.0, + "new_deaths_smoothed": 156.0, + "total_cases_per_million": 15.514, + "new_cases_per_million": 0.655, + "new_cases_smoothed_per_million": 0.506, + "total_deaths_per_million": 0.551, + "new_deaths_per_million": 0.035, + "new_deaths_smoothed_per_million": 0.02 + }, + { + "date": "2020-03-12", + "total_cases": 128828.0, + "new_cases": 7898.0, + "new_cases_smoothed": 4736.571, + "total_deaths": 4625.0, + "new_deaths": 331.0, + "new_deaths_smoothed": 191.857, + "total_cases_per_million": 16.527, + "new_cases_per_million": 1.013, + "new_cases_smoothed_per_million": 0.608, + "total_deaths_per_million": 0.593, + "new_deaths_per_million": 0.042, + "new_deaths_smoothed_per_million": 0.025 + }, + { + "date": "2020-03-13", + "total_cases": 138288.0, + "new_cases": 9460.0, + "new_cases_smoothed": 5651.143, + "total_deaths": 4975.0, + "new_deaths": 350.0, + "new_deaths_smoothed": 227.286, + "total_cases_per_million": 17.741, + "new_cases_per_million": 1.214, + "new_cases_smoothed_per_million": 0.725, + "total_deaths_per_million": 0.638, + "new_deaths_per_million": 0.045, + "new_deaths_smoothed_per_million": 0.029 + }, + { + "date": "2020-03-14", + "total_cases": 148692.0, + "new_cases": 10404.0, + "new_cases_smoothed": 6548.857, + "total_deaths": 5418.0, + "new_deaths": 443.0, + "new_deaths_smoothed": 275.714, + "total_cases_per_million": 19.076, + "new_cases_per_million": 1.335, + "new_cases_smoothed_per_million": 0.84, + "total_deaths_per_million": 0.695, + "new_deaths_per_million": 0.057, + "new_deaths_smoothed_per_million": 0.035 + }, + { + "date": "2020-03-15", + "total_cases": 160858.0, + "new_cases": 12166.0, + "new_cases_smoothed": 7718.429, + "total_deaths": 5785.0, + "new_deaths": 367.0, + "new_deaths_smoothed": 314.286, + "total_cases_per_million": 20.637, + "new_cases_per_million": 1.561, + "new_cases_smoothed_per_million": 0.99, + "total_deaths_per_million": 0.742, + "new_deaths_per_million": 0.047, + "new_deaths_smoothed_per_million": 0.04 + }, + { + "date": "2020-03-16", + "total_cases": 173320.0, + "new_cases": 12462.0, + "new_cases_smoothed": 8901.857, + "total_deaths": 6536.0, + "new_deaths": 751.0, + "new_deaths_smoothed": 389.0, + "total_cases_per_million": 22.235, + "new_cases_per_million": 1.599, + "new_cases_smoothed_per_million": 1.142, + "total_deaths_per_million": 0.839, + "new_deaths_per_million": 0.096, + "new_deaths_smoothed_per_million": 0.05 + }, + { + "date": "2020-03-17", + "total_cases": 187520.0, + "new_cases": 14200.0, + "new_cases_smoothed": 10242.286, + "total_deaths": 7142.0, + "new_deaths": 606.0, + "new_deaths_smoothed": 445.857, + "total_cases_per_million": 24.057, + "new_cases_per_million": 1.822, + "new_cases_smoothed_per_million": 1.314, + "total_deaths_per_million": 0.916, + "new_deaths_per_million": 0.078, + "new_deaths_smoothed_per_million": 0.057 + }, + { + "date": "2020-03-18", + "total_cases": 204522.0, + "new_cases": 17002.0, + "new_cases_smoothed": 11941.714, + "total_deaths": 7953.0, + "new_deaths": 811.0, + "new_deaths_smoothed": 522.714, + "total_cases_per_million": 26.238, + "new_cases_per_million": 2.181, + "new_cases_smoothed_per_million": 1.532, + "total_deaths_per_million": 1.02, + "new_deaths_per_million": 0.104, + "new_deaths_smoothed_per_million": 0.067 + }, + { + "date": "2020-03-19", + "total_cases": 224738.0, + "new_cases": 20216.0, + "new_cases_smoothed": 13701.429, + "total_deaths": 8916.0, + "new_deaths": 963.0, + "new_deaths_smoothed": 613.0, + "total_cases_per_million": 28.832, + "new_cases_per_million": 2.594, + "new_cases_smoothed_per_million": 1.758, + "total_deaths_per_million": 1.144, + "new_deaths_per_million": 0.124, + "new_deaths_smoothed_per_million": 0.079 + }, + { + "date": "2020-03-20", + "total_cases": 255837.0, + "new_cases": 31099.0, + "new_cases_smoothed": 16792.714, + "total_deaths": 9991.0, + "new_deaths": 1075.0, + "new_deaths_smoothed": 716.571, + "total_cases_per_million": 32.822, + "new_cases_per_million": 3.99, + "new_cases_smoothed_per_million": 2.154, + "total_deaths_per_million": 1.282, + "new_deaths_per_million": 0.138, + "new_deaths_smoothed_per_million": 0.092 + }, + { + "date": "2020-03-21", + "total_cases": 287752.0, + "new_cases": 31915.0, + "new_cases_smoothed": 19865.714, + "total_deaths": 11378.0, + "new_deaths": 1387.0, + "new_deaths_smoothed": 851.429, + "total_cases_per_million": 36.916, + "new_cases_per_million": 4.094, + "new_cases_smoothed_per_million": 2.549, + "total_deaths_per_million": 1.46, + "new_deaths_per_million": 0.178, + "new_deaths_smoothed_per_million": 0.109 + }, + { + "date": "2020-03-22", + "total_cases": 321967.0, + "new_cases": 34215.0, + "new_cases_smoothed": 23015.571, + "total_deaths": 13094.0, + "new_deaths": 1716.0, + "new_deaths_smoothed": 1044.143, + "total_cases_per_million": 41.305, + "new_cases_per_million": 4.389, + "new_cases_smoothed_per_million": 2.953, + "total_deaths_per_million": 1.68, + "new_deaths_per_million": 0.22, + "new_deaths_smoothed_per_million": 0.134 + }, + { + "date": "2020-03-23", + "total_cases": 356314.0, + "new_cases": 34347.0, + "new_cases_smoothed": 26142.0, + "total_deaths": 14785.0, + "new_deaths": 1691.0, + "new_deaths_smoothed": 1178.429, + "total_cases_per_million": 45.712, + "new_cases_per_million": 4.406, + "new_cases_smoothed_per_million": 3.354, + "total_deaths_per_million": 1.897, + "new_deaths_per_million": 0.217, + "new_deaths_smoothed_per_million": 0.151 + }, + { + "date": "2020-03-24", + "total_cases": 400727.0, + "new_cases": 44413.0, + "new_cases_smoothed": 30458.143, + "total_deaths": 16639.0, + "new_deaths": 1854.0, + "new_deaths_smoothed": 1356.714, + "total_cases_per_million": 51.41, + "new_cases_per_million": 5.698, + "new_cases_smoothed_per_million": 3.907, + "total_deaths_per_million": 2.135, + "new_deaths_per_million": 0.238, + "new_deaths_smoothed_per_million": 0.174 + }, + { + "date": "2020-03-25", + "total_cases": 443111.0, + "new_cases": 42384.0, + "new_cases_smoothed": 34084.143, + "total_deaths": 18954.0, + "new_deaths": 2315.0, + "new_deaths_smoothed": 1571.571, + "total_cases_per_million": 56.847, + "new_cases_per_million": 5.437, + "new_cases_smoothed_per_million": 4.373, + "total_deaths_per_million": 2.432, + "new_deaths_per_million": 0.297, + "new_deaths_smoothed_per_million": 0.202 + }, + { + "date": "2020-03-26", + "total_cases": 496851.0, + "new_cases": 53740.0, + "new_cases_smoothed": 38873.286, + "total_deaths": 21599.0, + "new_deaths": 2645.0, + "new_deaths_smoothed": 1811.857, + "total_cases_per_million": 63.741, + "new_cases_per_million": 6.894, + "new_cases_smoothed_per_million": 4.987, + "total_deaths_per_million": 2.771, + "new_deaths_per_million": 0.339, + "new_deaths_smoothed_per_million": 0.232 + }, + { + "date": "2020-03-27", + "total_cases": 557872.0, + "new_cases": 61021.0, + "new_cases_smoothed": 43147.857, + "total_deaths": 24413.0, + "new_deaths": 2814.0, + "new_deaths_smoothed": 2060.286, + "total_cases_per_million": 71.57, + "new_cases_per_million": 7.828, + "new_cases_smoothed_per_million": 5.535, + "total_deaths_per_million": 3.132, + "new_deaths_per_million": 0.361, + "new_deaths_smoothed_per_million": 0.264 + }, + { + "date": "2020-03-28", + "total_cases": 622964.0, + "new_cases": 65092.0, + "new_cases_smoothed": 47887.429, + "total_deaths": 27905.0, + "new_deaths": 3492.0, + "new_deaths_smoothed": 2361.0, + "total_cases_per_million": 79.92, + "new_cases_per_million": 8.351, + "new_cases_smoothed_per_million": 6.144, + "total_deaths_per_million": 3.58, + "new_deaths_per_million": 0.448, + "new_deaths_smoothed_per_million": 0.303 + }, + { + "date": "2020-03-29", + "total_cases": 685773.0, + "new_cases": 62809.0, + "new_cases_smoothed": 51972.286, + "total_deaths": 31495.0, + "new_deaths": 3590.0, + "new_deaths_smoothed": 2628.714, + "total_cases_per_million": 87.978, + "new_cases_per_million": 8.058, + "new_cases_smoothed_per_million": 6.668, + "total_deaths_per_million": 4.041, + "new_deaths_per_million": 0.461, + "new_deaths_smoothed_per_million": 0.337 + }, + { + "date": "2020-03-30", + "total_cases": 743147.0, + "new_cases": 57374.0, + "new_cases_smoothed": 55261.857, + "total_deaths": 34726.0, + "new_deaths": 3231.0, + "new_deaths_smoothed": 2848.714, + "total_cases_per_million": 95.339, + "new_cases_per_million": 7.361, + "new_cases_smoothed_per_million": 7.09, + "total_deaths_per_million": 4.455, + "new_deaths_per_million": 0.415, + "new_deaths_smoothed_per_million": 0.365 + }, + { + "date": "2020-03-31", + "total_cases": 807649.0, + "new_cases": 64502.0, + "new_cases_smoothed": 58131.714, + "total_deaths": 38719.0, + "new_deaths": 3993.0, + "new_deaths_smoothed": 3154.286, + "total_cases_per_million": 103.614, + "new_cases_per_million": 8.275, + "new_cases_smoothed_per_million": 7.458, + "total_deaths_per_million": 4.967, + "new_deaths_per_million": 0.512, + "new_deaths_smoothed_per_million": 0.405 + }, + { + "date": "2020-04-01", + "total_cases": 882317.0, + "new_cases": 74668.0, + "new_cases_smoothed": 62743.714, + "total_deaths": 43396.0, + "new_deaths": 4677.0, + "new_deaths_smoothed": 3491.714, + "total_cases_per_million": 113.193, + "new_cases_per_million": 9.579, + "new_cases_smoothed_per_million": 8.049, + "total_deaths_per_million": 5.567, + "new_deaths_per_million": 0.6, + "new_deaths_smoothed_per_million": 0.448 + }, + { + "date": "2020-04-02", + "total_cases": 959778.0, + "new_cases": 77461.0, + "new_cases_smoothed": 66132.429, + "total_deaths": 48411.0, + "new_deaths": 5015.0, + "new_deaths_smoothed": 3830.286, + "total_cases_per_million": 123.131, + "new_cases_per_million": 9.938, + "new_cases_smoothed_per_million": 8.484, + "total_deaths_per_million": 6.211, + "new_deaths_per_million": 0.643, + "new_deaths_smoothed_per_million": 0.491 + }, + { + "date": "2020-04-03", + "total_cases": 1037240.0, + "new_cases": 77462.0, + "new_cases_smoothed": 68481.143, + "total_deaths": 53437.0, + "new_deaths": 5026.0, + "new_deaths_smoothed": 4146.286, + "total_cases_per_million": 133.068, + "new_cases_per_million": 9.938, + "new_cases_smoothed_per_million": 8.785, + "total_deaths_per_million": 6.855, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.532 + }, + { + "date": "2020-04-04", + "total_cases": 1119077.0, + "new_cases": 81837.0, + "new_cases_smoothed": 70873.286, + "total_deaths": 60223.0, + "new_deaths": 6786.0, + "new_deaths_smoothed": 4616.857, + "total_cases_per_million": 143.567, + "new_cases_per_million": 10.499, + "new_cases_smoothed_per_million": 9.092, + "total_deaths_per_million": 7.726, + "new_deaths_per_million": 0.871, + "new_deaths_smoothed_per_million": 0.592 + }, + { + "date": "2020-04-05", + "total_cases": 1204323.0, + "new_cases": 85246.0, + "new_cases_smoothed": 74078.571, + "total_deaths": 66521.0, + "new_deaths": 6298.0, + "new_deaths_smoothed": 5003.714, + "total_cases_per_million": 154.503, + "new_cases_per_million": 10.936, + "new_cases_smoothed_per_million": 9.504, + "total_deaths_per_million": 8.534, + "new_deaths_per_million": 0.808, + "new_deaths_smoothed_per_million": 0.642 + }, + { + "date": "2020-04-06", + "total_cases": 1270637.0, + "new_cases": 66314.0, + "new_cases_smoothed": 75355.714, + "total_deaths": 71292.0, + "new_deaths": 4771.0, + "new_deaths_smoothed": 5223.714, + "total_cases_per_million": 163.011, + "new_cases_per_million": 8.507, + "new_cases_smoothed_per_million": 9.667, + "total_deaths_per_million": 9.146, + "new_deaths_per_million": 0.612, + "new_deaths_smoothed_per_million": 0.67 + }, + { + "date": "2020-04-07", + "total_cases": 1343617.0, + "new_cases": 72980.0, + "new_cases_smoothed": 76566.857, + "total_deaths": 76637.0, + "new_deaths": 5345.0, + "new_deaths_smoothed": 5416.857, + "total_cases_per_million": 172.374, + "new_cases_per_million": 9.363, + "new_cases_smoothed_per_million": 9.823, + "total_deaths_per_million": 9.832, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.695 + }, + { + "date": "2020-04-08", + "total_cases": 1420870.0, + "new_cases": 77253.0, + "new_cases_smoothed": 76936.143, + "total_deaths": 84213.0, + "new_deaths": 7576.0, + "new_deaths_smoothed": 5831.0, + "total_cases_per_million": 182.284, + "new_cases_per_million": 9.911, + "new_cases_smoothed_per_million": 9.87, + "total_deaths_per_million": 10.804, + "new_deaths_per_million": 0.972, + "new_deaths_smoothed_per_million": 0.748 + }, + { + "date": "2020-04-09", + "total_cases": 1505798.0, + "new_cases": 84928.0, + "new_cases_smoothed": 78002.857, + "total_deaths": 90784.0, + "new_deaths": 6571.0, + "new_deaths_smoothed": 6053.286, + "total_cases_per_million": 193.18, + "new_cases_per_million": 10.895, + "new_cases_smoothed_per_million": 10.007, + "total_deaths_per_million": 11.647, + "new_deaths_per_million": 0.843, + "new_deaths_smoothed_per_million": 0.777 + }, + { + "date": "2020-04-10", + "total_cases": 1593044.0, + "new_cases": 87246.0, + "new_cases_smoothed": 79400.571, + "total_deaths": 98208.0, + "new_deaths": 7424.0, + "new_deaths_smoothed": 6395.857, + "total_cases_per_million": 204.373, + "new_cases_per_million": 11.193, + "new_cases_smoothed_per_million": 10.186, + "total_deaths_per_million": 12.599, + "new_deaths_per_million": 0.952, + "new_deaths_smoothed_per_million": 0.821 + }, + { + "date": "2020-04-11", + "total_cases": 1682551.0, + "new_cases": 89507.0, + "new_cases_smoothed": 80496.286, + "total_deaths": 105223.0, + "new_deaths": 7015.0, + "new_deaths_smoothed": 6428.571, + "total_cases_per_million": 215.856, + "new_cases_per_million": 11.483, + "new_cases_smoothed_per_million": 10.327, + "total_deaths_per_million": 13.499, + "new_deaths_per_million": 0.9, + "new_deaths_smoothed_per_million": 0.825 + }, + { + "date": "2020-04-12", + "total_cases": 1757851.0, + "new_cases": 75300.0, + "new_cases_smoothed": 79075.429, + "total_deaths": 111289.0, + "new_deaths": 6066.0, + "new_deaths_smoothed": 6395.429, + "total_cases_per_million": 225.516, + "new_cases_per_million": 9.66, + "new_cases_smoothed_per_million": 10.145, + "total_deaths_per_million": 14.277, + "new_deaths_per_million": 0.778, + "new_deaths_smoothed_per_million": 0.82 + }, + { + "date": "2020-04-13", + "total_cases": 1826380.0, + "new_cases": 68529.0, + "new_cases_smoothed": 79391.857, + "total_deaths": 116623.0, + "new_deaths": 5334.0, + "new_deaths_smoothed": 6475.857, + "total_cases_per_million": 234.308, + "new_cases_per_million": 8.792, + "new_cases_smoothed_per_million": 10.185, + "total_deaths_per_million": 14.962, + "new_deaths_per_million": 0.684, + "new_deaths_smoothed_per_million": 0.831 + }, + { + "date": "2020-04-14", + "total_cases": 1891100.0, + "new_cases": 64720.0, + "new_cases_smoothed": 78211.857, + "total_deaths": 122014.0, + "new_deaths": 5391.0, + "new_deaths_smoothed": 6482.429, + "total_cases_per_million": 242.61, + "new_cases_per_million": 8.303, + "new_cases_smoothed_per_million": 10.034, + "total_deaths_per_million": 15.653, + "new_deaths_per_million": 0.692, + "new_deaths_smoothed_per_million": 0.832 + }, + { + "date": "2020-04-15", + "total_cases": 1967600.0, + "new_cases": 76500.0, + "new_cases_smoothed": 78104.286, + "total_deaths": 129632.0, + "new_deaths": 7618.0, + "new_deaths_smoothed": 6488.429, + "total_cases_per_million": 252.425, + "new_cases_per_million": 9.814, + "new_cases_smoothed_per_million": 10.02, + "total_deaths_per_million": 16.631, + "new_deaths_per_million": 0.977, + "new_deaths_smoothed_per_million": 0.832 + }, + { + "date": "2020-04-16", + "total_cases": 2045952.0, + "new_cases": 78352.0, + "new_cases_smoothed": 77164.857, + "total_deaths": 140123.0, + "new_deaths": 10491.0, + "new_deaths_smoothed": 7048.429, + "total_cases_per_million": 262.477, + "new_cases_per_million": 10.052, + "new_cases_smoothed_per_million": 9.9, + "total_deaths_per_million": 17.976, + "new_deaths_per_million": 1.346, + "new_deaths_smoothed_per_million": 0.904 + }, + { + "date": "2020-04-17", + "total_cases": 2129884.0, + "new_cases": 83932.0, + "new_cases_smoothed": 76691.429, + "total_deaths": 148650.0, + "new_deaths": 8527.0, + "new_deaths_smoothed": 7206.0, + "total_cases_per_million": 273.244, + "new_cases_per_million": 10.768, + "new_cases_smoothed_per_million": 9.839, + "total_deaths_per_million": 19.07, + "new_deaths_per_million": 1.094, + "new_deaths_smoothed_per_million": 0.924 + }, + { + "date": "2020-04-18", + "total_cases": 2211654.0, + "new_cases": 81770.0, + "new_cases_smoothed": 75586.143, + "total_deaths": 157112.0, + "new_deaths": 8462.0, + "new_deaths_smoothed": 7412.714, + "total_cases_per_million": 283.735, + "new_cases_per_million": 10.49, + "new_cases_smoothed_per_million": 9.697, + "total_deaths_per_million": 20.156, + "new_deaths_per_million": 1.086, + "new_deaths_smoothed_per_million": 0.951 + }, + { + "date": "2020-04-19", + "total_cases": 2291217.0, + "new_cases": 79563.0, + "new_cases_smoothed": 76195.143, + "total_deaths": 163485.0, + "new_deaths": 6373.0, + "new_deaths_smoothed": 7456.571, + "total_cases_per_million": 293.942, + "new_cases_per_million": 10.207, + "new_cases_smoothed_per_million": 9.775, + "total_deaths_per_million": 20.974, + "new_deaths_per_million": 0.818, + "new_deaths_smoothed_per_million": 0.957 + }, + { + "date": "2020-04-20", + "total_cases": 2361790.0, + "new_cases": 70573.0, + "new_cases_smoothed": 76487.143, + "total_deaths": 168474.0, + "new_deaths": 4989.0, + "new_deaths_smoothed": 7407.286, + "total_cases_per_million": 302.996, + "new_cases_per_million": 9.054, + "new_cases_smoothed_per_million": 9.813, + "total_deaths_per_million": 21.614, + "new_deaths_per_million": 0.64, + "new_deaths_smoothed_per_million": 0.95 + }, + { + "date": "2020-04-21", + "total_cases": 2435522.0, + "new_cases": 73732.0, + "new_cases_smoothed": 77774.571, + "total_deaths": 173923.0, + "new_deaths": 5449.0, + "new_deaths_smoothed": 7415.571, + "total_cases_per_million": 312.455, + "new_cases_per_million": 9.459, + "new_cases_smoothed_per_million": 9.978, + "total_deaths_per_million": 22.313, + "new_deaths_per_million": 0.699, + "new_deaths_smoothed_per_million": 0.951 + }, + { + "date": "2020-04-22", + "total_cases": 2522176.0, + "new_cases": 86654.0, + "new_cases_smoothed": 79225.143, + "total_deaths": 181166.0, + "new_deaths": 7243.0, + "new_deaths_smoothed": 7362.0, + "total_cases_per_million": 323.572, + "new_cases_per_million": 11.117, + "new_cases_smoothed_per_million": 10.164, + "total_deaths_per_million": 23.242, + "new_deaths_per_million": 0.929, + "new_deaths_smoothed_per_million": 0.944 + }, + { + "date": "2020-04-23", + "total_cases": 2588521.0, + "new_cases": 66345.0, + "new_cases_smoothed": 77509.857, + "total_deaths": 187101.0, + "new_deaths": 5935.0, + "new_deaths_smoothed": 6711.143, + "total_cases_per_million": 332.083, + "new_cases_per_million": 8.511, + "new_cases_smoothed_per_million": 9.944, + "total_deaths_per_million": 24.003, + "new_deaths_per_million": 0.761, + "new_deaths_smoothed_per_million": 0.861 + }, + { + "date": "2020-04-24", + "total_cases": 2667007.0, + "new_cases": 78486.0, + "new_cases_smoothed": 76731.857, + "total_deaths": 194436.0, + "new_deaths": 7335.0, + "new_deaths_smoothed": 6540.857, + "total_cases_per_million": 342.152, + "new_cases_per_million": 10.069, + "new_cases_smoothed_per_million": 9.844, + "total_deaths_per_million": 24.944, + "new_deaths_per_million": 0.941, + "new_deaths_smoothed_per_million": 0.839 + }, + { + "date": "2020-04-25", + "total_cases": 2739799.0, + "new_cases": 72792.0, + "new_cases_smoothed": 75449.286, + "total_deaths": 199795.0, + "new_deaths": 5359.0, + "new_deaths_smoothed": 6097.571, + "total_cases_per_million": 351.491, + "new_cases_per_million": 9.339, + "new_cases_smoothed_per_million": 9.679, + "total_deaths_per_million": 25.632, + "new_deaths_per_million": 0.688, + "new_deaths_smoothed_per_million": 0.782 + }, + { + "date": "2020-04-26", + "total_cases": 2839580.0, + "new_cases": 99781.0, + "new_cases_smoothed": 78337.571, + "total_deaths": 205956.0, + "new_deaths": 6161.0, + "new_deaths_smoothed": 6067.286, + "total_cases_per_million": 364.292, + "new_cases_per_million": 12.801, + "new_cases_smoothed_per_million": 10.05, + "total_deaths_per_million": 26.422, + "new_deaths_per_million": 0.79, + "new_deaths_smoothed_per_million": 0.778 + }, + { + "date": "2020-04-27", + "total_cases": 2921263.0, + "new_cases": 81683.0, + "new_cases_smoothed": 79924.714, + "total_deaths": 209869.0, + "new_deaths": 3913.0, + "new_deaths_smoothed": 5913.571, + "total_cases_per_million": 374.771, + "new_cases_per_million": 10.479, + "new_cases_smoothed_per_million": 10.254, + "total_deaths_per_million": 26.924, + "new_deaths_per_million": 0.502, + "new_deaths_smoothed_per_million": 0.759 + }, + { + "date": "2020-04-28", + "total_cases": 2987088.0, + "new_cases": 65825.0, + "new_cases_smoothed": 78795.143, + "total_deaths": 214767.0, + "new_deaths": 4898.0, + "new_deaths_smoothed": 5834.857, + "total_cases_per_million": 383.216, + "new_cases_per_million": 8.445, + "new_cases_smoothed_per_million": 10.109, + "total_deaths_per_million": 27.553, + "new_deaths_per_million": 0.628, + "new_deaths_smoothed_per_million": 0.749 + }, + { + "date": "2020-04-29", + "total_cases": 3059336.0, + "new_cases": 72248.0, + "new_cases_smoothed": 76737.143, + "total_deaths": 221332.0, + "new_deaths": 6565.0, + "new_deaths_smoothed": 5738.0, + "total_cases_per_million": 392.484, + "new_cases_per_million": 9.269, + "new_cases_smoothed_per_million": 9.845, + "total_deaths_per_million": 28.395, + "new_deaths_per_million": 0.842, + "new_deaths_smoothed_per_million": 0.736 + }, + { + "date": "2020-04-30", + "total_cases": 3138134.0, + "new_cases": 78798.0, + "new_cases_smoothed": 78516.143, + "total_deaths": 227895.0, + "new_deaths": 6563.0, + "new_deaths_smoothed": 5827.714, + "total_cases_per_million": 402.593, + "new_cases_per_million": 10.109, + "new_cases_smoothed_per_million": 10.073, + "total_deaths_per_million": 29.237, + "new_deaths_per_million": 0.842, + "new_deaths_smoothed_per_million": 0.748 + }, + { + "date": "2020-05-01", + "total_cases": 3223466.0, + "new_cases": 85332.0, + "new_cases_smoothed": 79494.143, + "total_deaths": 233545.0, + "new_deaths": 5650.0, + "new_deaths_smoothed": 5587.0, + "total_cases_per_million": 413.541, + "new_cases_per_million": 10.947, + "new_cases_smoothed_per_million": 10.198, + "total_deaths_per_million": 29.962, + "new_deaths_per_million": 0.725, + "new_deaths_smoothed_per_million": 0.717 + }, + { + "date": "2020-05-02", + "total_cases": 3312140.0, + "new_cases": 88674.0, + "new_cases_smoothed": 81763.0, + "total_deaths": 239122.0, + "new_deaths": 5577.0, + "new_deaths_smoothed": 5618.143, + "total_cases_per_million": 424.917, + "new_cases_per_million": 11.376, + "new_cases_smoothed_per_million": 10.489, + "total_deaths_per_million": 30.677, + "new_deaths_per_million": 0.715, + "new_deaths_smoothed_per_million": 0.721 + }, + { + "date": "2020-05-03", + "total_cases": 3392770.0, + "new_cases": 80630.0, + "new_cases_smoothed": 79027.143, + "total_deaths": 243930.0, + "new_deaths": 4808.0, + "new_deaths_smoothed": 5424.857, + "total_cases_per_million": 435.261, + "new_cases_per_million": 10.344, + "new_cases_smoothed_per_million": 10.138, + "total_deaths_per_million": 31.294, + "new_deaths_per_million": 0.617, + "new_deaths_smoothed_per_million": 0.696 + }, + { + "date": "2020-05-04", + "total_cases": 3469927.0, + "new_cases": 77157.0, + "new_cases_smoothed": 78380.571, + "total_deaths": 247636.0, + "new_deaths": 3706.0, + "new_deaths_smoothed": 5395.286, + "total_cases_per_million": 445.159, + "new_cases_per_million": 9.899, + "new_cases_smoothed_per_million": 10.055, + "total_deaths_per_million": 31.769, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.692 + }, + { + "date": "2020-05-05", + "total_cases": 3546462.0, + "new_cases": 76535.0, + "new_cases_smoothed": 79910.571, + "total_deaths": 251622.0, + "new_deaths": 3986.0, + "new_deaths_smoothed": 5265.0, + "total_cases_per_million": 454.978, + "new_cases_per_million": 9.819, + "new_cases_smoothed_per_million": 10.252, + "total_deaths_per_million": 32.281, + "new_deaths_per_million": 0.511, + "new_deaths_smoothed_per_million": 0.675 + }, + { + "date": "2020-05-06", + "total_cases": 3625146.0, + "new_cases": 78684.0, + "new_cases_smoothed": 80830.0, + "total_deaths": 257579.0, + "new_deaths": 5957.0, + "new_deaths_smoothed": 5178.143, + "total_cases_per_million": 465.072, + "new_cases_per_million": 10.094, + "new_cases_smoothed_per_million": 10.37, + "total_deaths_per_million": 33.045, + "new_deaths_per_million": 0.764, + "new_deaths_smoothed_per_million": 0.664 + }, + { + "date": "2020-05-07", + "total_cases": 3712703.0, + "new_cases": 87557.0, + "new_cases_smoothed": 82081.286, + "total_deaths": 263703.0, + "new_deaths": 6124.0, + "new_deaths_smoothed": 5115.429, + "total_cases_per_million": 476.305, + "new_cases_per_million": 11.233, + "new_cases_smoothed_per_million": 10.53, + "total_deaths_per_million": 33.831, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.656 + }, + { + "date": "2020-05-08", + "total_cases": 3805126.0, + "new_cases": 92423.0, + "new_cases_smoothed": 83094.286, + "total_deaths": 269345.0, + "new_deaths": 5642.0, + "new_deaths_smoothed": 5114.286, + "total_cases_per_million": 488.162, + "new_cases_per_million": 11.857, + "new_cases_smoothed_per_million": 10.66, + "total_deaths_per_million": 34.554, + "new_deaths_per_million": 0.724, + "new_deaths_smoothed_per_million": 0.656 + }, + { + "date": "2020-05-09", + "total_cases": 3894340.0, + "new_cases": 89214.0, + "new_cases_smoothed": 83171.429, + "total_deaths": 274457.0, + "new_deaths": 5112.0, + "new_deaths_smoothed": 5047.857, + "total_cases_per_million": 499.608, + "new_cases_per_million": 11.445, + "new_cases_smoothed_per_million": 10.67, + "total_deaths_per_million": 35.21, + "new_deaths_per_million": 0.656, + "new_deaths_smoothed_per_million": 0.648 + }, + { + "date": "2020-05-10", + "total_cases": 3983189.0, + "new_cases": 88849.0, + "new_cases_smoothed": 84345.571, + "total_deaths": 278864.0, + "new_deaths": 4407.0, + "new_deaths_smoothed": 4990.571, + "total_cases_per_million": 511.006, + "new_cases_per_million": 11.398, + "new_cases_smoothed_per_million": 10.821, + "total_deaths_per_million": 35.776, + "new_deaths_per_million": 0.565, + "new_deaths_smoothed_per_million": 0.64 + }, + { + "date": "2020-05-11", + "total_cases": 4057879.0, + "new_cases": 74690.0, + "new_cases_smoothed": 83993.143, + "total_deaths": 282291.0, + "new_deaths": 3427.0, + "new_deaths_smoothed": 4950.714, + "total_cases_per_million": 520.588, + "new_cases_per_million": 9.582, + "new_cases_smoothed_per_million": 10.776, + "total_deaths_per_million": 36.215, + "new_deaths_per_million": 0.44, + "new_deaths_smoothed_per_million": 0.635 + }, + { + "date": "2020-05-12", + "total_cases": 4127608.0, + "new_cases": 69729.0, + "new_cases_smoothed": 83020.857, + "total_deaths": 285880.0, + "new_deaths": 3589.0, + "new_deaths_smoothed": 4894.0, + "total_cases_per_million": 529.534, + "new_cases_per_million": 8.946, + "new_cases_smoothed_per_million": 10.651, + "total_deaths_per_million": 36.676, + "new_deaths_per_million": 0.46, + "new_deaths_smoothed_per_million": 0.628 + }, + { + "date": "2020-05-13", + "total_cases": 4213832.0, + "new_cases": 86224.0, + "new_cases_smoothed": 84098.0, + "total_deaths": 291637.0, + "new_deaths": 5757.0, + "new_deaths_smoothed": 4865.429, + "total_cases_per_million": 540.595, + "new_cases_per_million": 11.062, + "new_cases_smoothed_per_million": 10.789, + "total_deaths_per_million": 37.414, + "new_deaths_per_million": 0.739, + "new_deaths_smoothed_per_million": 0.624 + }, + { + "date": "2020-05-14", + "total_cases": 4300097.0, + "new_cases": 86265.0, + "new_cases_smoothed": 83913.429, + "total_deaths": 296655.0, + "new_deaths": 5018.0, + "new_deaths_smoothed": 4707.429, + "total_cases_per_million": 551.662, + "new_cases_per_million": 11.067, + "new_cases_smoothed_per_million": 10.765, + "total_deaths_per_million": 38.058, + "new_deaths_per_million": 0.644, + "new_deaths_smoothed_per_million": 0.604 + }, + { + "date": "2020-05-15", + "total_cases": 4396640.0, + "new_cases": 96543.0, + "new_cases_smoothed": 84502.0, + "total_deaths": 301911.0, + "new_deaths": 5256.0, + "new_deaths_smoothed": 4652.286, + "total_cases_per_million": 564.048, + "new_cases_per_million": 12.386, + "new_cases_smoothed_per_million": 10.841, + "total_deaths_per_million": 38.732, + "new_deaths_per_million": 0.674, + "new_deaths_smoothed_per_million": 0.597 + }, + { + "date": "2020-05-16", + "total_cases": 4493856.0, + "new_cases": 97216.0, + "new_cases_smoothed": 85645.143, + "total_deaths": 306970.0, + "new_deaths": 5059.0, + "new_deaths_smoothed": 4644.714, + "total_cases_per_million": 576.52, + "new_cases_per_million": 12.472, + "new_cases_smoothed_per_million": 10.987, + "total_deaths_per_million": 39.381, + "new_deaths_per_million": 0.649, + "new_deaths_smoothed_per_million": 0.596 + }, + { + "date": "2020-05-17", + "total_cases": 4586782.0, + "new_cases": 92926.0, + "new_cases_smoothed": 86227.571, + "total_deaths": 311195.0, + "new_deaths": 4225.0, + "new_deaths_smoothed": 4618.714, + "total_cases_per_million": 588.441, + "new_cases_per_million": 11.922, + "new_cases_smoothed_per_million": 11.062, + "total_deaths_per_million": 39.923, + "new_deaths_per_million": 0.542, + "new_deaths_smoothed_per_million": 0.593 + }, + { + "date": "2020-05-18", + "total_cases": 4666289.0, + "new_cases": 79507.0, + "new_cases_smoothed": 86915.714, + "total_deaths": 314093.0, + "new_deaths": 2898.0, + "new_deaths_smoothed": 4543.143, + "total_cases_per_million": 598.641, + "new_cases_per_million": 10.2, + "new_cases_smoothed_per_million": 11.15, + "total_deaths_per_million": 40.295, + "new_deaths_per_million": 0.372, + "new_deaths_smoothed_per_million": 0.583 + }, + { + "date": "2020-05-19", + "total_cases": 4752666.0, + "new_cases": 86377.0, + "new_cases_smoothed": 89294.0, + "total_deaths": 317393.0, + "new_deaths": 3300.0, + "new_deaths_smoothed": 4501.857, + "total_cases_per_million": 609.723, + "new_cases_per_million": 11.081, + "new_cases_smoothed_per_million": 11.456, + "total_deaths_per_million": 40.719, + "new_deaths_per_million": 0.423, + "new_deaths_smoothed_per_million": 0.578 + }, + { + "date": "2020-05-20", + "total_cases": 4848214.0, + "new_cases": 95548.0, + "new_cases_smoothed": 90626.0, + "total_deaths": 322576.0, + "new_deaths": 5183.0, + "new_deaths_smoothed": 4419.857, + "total_cases_per_million": 621.981, + "new_cases_per_million": 12.258, + "new_cases_smoothed_per_million": 11.626, + "total_deaths_per_million": 41.383, + "new_deaths_per_million": 0.665, + "new_deaths_smoothed_per_million": 0.567 + }, + { + "date": "2020-05-21", + "total_cases": 4951527.0, + "new_cases": 103313.0, + "new_cases_smoothed": 93061.429, + "total_deaths": 327296.0, + "new_deaths": 4720.0, + "new_deaths_smoothed": 4377.286, + "total_cases_per_million": 635.235, + "new_cases_per_million": 13.254, + "new_cases_smoothed_per_million": 11.939, + "total_deaths_per_million": 41.989, + "new_deaths_per_million": 0.606, + "new_deaths_smoothed_per_million": 0.562 + }, + { + "date": "2020-05-22", + "total_cases": 5059301.0, + "new_cases": 107774.0, + "new_cases_smoothed": 94665.857, + "total_deaths": 332686.0, + "new_deaths": 5390.0, + "new_deaths_smoothed": 4396.429, + "total_cases_per_million": 649.061, + "new_cases_per_million": 13.826, + "new_cases_smoothed_per_million": 12.145, + "total_deaths_per_million": 42.681, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.564 + }, + { + "date": "2020-05-23", + "total_cases": 5165101.0, + "new_cases": 105800.0, + "new_cases_smoothed": 95892.143, + "total_deaths": 337332.0, + "new_deaths": 4646.0, + "new_deaths_smoothed": 4337.429, + "total_cases_per_million": 662.634, + "new_cases_per_million": 13.573, + "new_cases_smoothed_per_million": 12.302, + "total_deaths_per_million": 43.277, + "new_deaths_per_million": 0.596, + "new_deaths_smoothed_per_million": 0.556 + }, + { + "date": "2020-05-24", + "total_cases": 5265120.0, + "new_cases": 100019.0, + "new_cases_smoothed": 96905.429, + "total_deaths": 341249.0, + "new_deaths": 3917.0, + "new_deaths_smoothed": 4293.429, + "total_cases_per_million": 675.466, + "new_cases_per_million": 12.832, + "new_cases_smoothed_per_million": 12.432, + "total_deaths_per_million": 43.779, + "new_deaths_per_million": 0.503, + "new_deaths_smoothed_per_million": 0.551 + }, + { + "date": "2020-05-25", + "total_cases": 5358274.0, + "new_cases": 93154.0, + "new_cases_smoothed": 98855.0, + "total_deaths": 342355.0, + "new_deaths": 1106.0, + "new_deaths_smoothed": 4037.429, + "total_cases_per_million": 687.417, + "new_cases_per_million": 11.951, + "new_cases_smoothed_per_million": 12.682, + "total_deaths_per_million": 43.921, + "new_deaths_per_million": 0.142, + "new_deaths_smoothed_per_million": 0.518 + }, + { + "date": "2020-05-26", + "total_cases": 5447117.0, + "new_cases": 88843.0, + "new_cases_smoothed": 99207.286, + "total_deaths": 345723.0, + "new_deaths": 3368.0, + "new_deaths_smoothed": 4047.143, + "total_cases_per_million": 698.814, + "new_cases_per_million": 11.398, + "new_cases_smoothed_per_million": 12.727, + "total_deaths_per_million": 44.353, + "new_deaths_per_million": 0.432, + "new_deaths_smoothed_per_million": 0.519 + }, + { + "date": "2020-05-27", + "total_cases": 5540902.0, + "new_cases": 93785.0, + "new_cases_smoothed": 98955.429, + "total_deaths": 349594.0, + "new_deaths": 3871.0, + "new_deaths_smoothed": 3859.714, + "total_cases_per_million": 710.846, + "new_cases_per_million": 12.032, + "new_cases_smoothed_per_million": 12.695, + "total_deaths_per_million": 44.85, + "new_deaths_per_million": 0.497, + "new_deaths_smoothed_per_million": 0.495 + }, + { + "date": "2020-05-28", + "total_cases": 5643720.0, + "new_cases": 102818.0, + "new_cases_smoothed": 98884.714, + "total_deaths": 354738.0, + "new_deaths": 5144.0, + "new_deaths_smoothed": 3920.286, + "total_cases_per_million": 724.037, + "new_cases_per_million": 13.191, + "new_cases_smoothed_per_million": 12.686, + "total_deaths_per_million": 45.51, + "new_deaths_per_million": 0.66, + "new_deaths_smoothed_per_million": 0.503 + }, + { + "date": "2020-05-29", + "total_cases": 5762224.0, + "new_cases": 118504.0, + "new_cases_smoothed": 100417.571, + "total_deaths": 359379.0, + "new_deaths": 4641.0, + "new_deaths_smoothed": 3813.286, + "total_cases_per_million": 739.24, + "new_cases_per_million": 15.203, + "new_cases_smoothed_per_million": 12.883, + "total_deaths_per_million": 46.105, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.489 + }, + { + "date": "2020-05-30", + "total_cases": 5884293.0, + "new_cases": 122069.0, + "new_cases_smoothed": 102741.714, + "total_deaths": 364032.0, + "new_deaths": 4653.0, + "new_deaths_smoothed": 3814.286, + "total_cases_per_million": 754.9, + "new_cases_per_million": 15.66, + "new_cases_smoothed_per_million": 13.181, + "total_deaths_per_million": 46.702, + "new_deaths_per_million": 0.597, + "new_deaths_smoothed_per_million": 0.489 + }, + { + "date": "2020-05-31", + "total_cases": 6012230.0, + "new_cases": 127937.0, + "new_cases_smoothed": 106730.0, + "total_deaths": 368042.0, + "new_deaths": 4010.0, + "new_deaths_smoothed": 3827.571, + "total_cases_per_million": 771.313, + "new_cases_per_million": 16.413, + "new_cases_smoothed_per_million": 13.692, + "total_deaths_per_million": 47.216, + "new_deaths_per_million": 0.514, + "new_deaths_smoothed_per_million": 0.491 + }, + { + "date": "2020-06-01", + "total_cases": 6118947.0, + "new_cases": 106717.0, + "new_cases_smoothed": 108667.571, + "total_deaths": 370955.0, + "new_deaths": 2913.0, + "new_deaths_smoothed": 4085.714, + "total_cases_per_million": 785.004, + "new_cases_per_million": 13.691, + "new_cases_smoothed_per_million": 13.941, + "total_deaths_per_million": 47.59, + "new_deaths_per_million": 0.374, + "new_deaths_smoothed_per_million": 0.524 + }, + { + "date": "2020-06-02", + "total_cases": 6219242.0, + "new_cases": 100295.0, + "new_cases_smoothed": 110303.571, + "total_deaths": 374103.0, + "new_deaths": 3148.0, + "new_deaths_smoothed": 4054.286, + "total_cases_per_million": 797.871, + "new_cases_per_million": 12.867, + "new_cases_smoothed_per_million": 14.151, + "total_deaths_per_million": 47.994, + "new_deaths_per_million": 0.404, + "new_deaths_smoothed_per_million": 0.52 + }, + { + "date": "2020-06-03", + "total_cases": 6331628.0, + "new_cases": 112386.0, + "new_cases_smoothed": 112960.857, + "total_deaths": 378648.0, + "new_deaths": 4545.0, + "new_deaths_smoothed": 4150.571, + "total_cases_per_million": 812.289, + "new_cases_per_million": 14.418, + "new_cases_smoothed_per_million": 14.492, + "total_deaths_per_million": 48.577, + "new_deaths_per_million": 0.583, + "new_deaths_smoothed_per_million": 0.532 + }, + { + "date": "2020-06-04", + "total_cases": 6457141.0, + "new_cases": 125513.0, + "new_cases_smoothed": 116203.0, + "total_deaths": 384162.0, + "new_deaths": 5514.0, + "new_deaths_smoothed": 4203.429, + "total_cases_per_million": 828.391, + "new_cases_per_million": 16.102, + "new_cases_smoothed_per_million": 14.908, + "total_deaths_per_million": 49.284, + "new_deaths_per_million": 0.707, + "new_deaths_smoothed_per_million": 0.539 + }, + { + "date": "2020-06-05", + "total_cases": 6584067.0, + "new_cases": 126926.0, + "new_cases_smoothed": 117406.143, + "total_deaths": 389294.0, + "new_deaths": 5132.0, + "new_deaths_smoothed": 4273.571, + "total_cases_per_million": 844.674, + "new_cases_per_million": 16.283, + "new_cases_smoothed_per_million": 15.062, + "total_deaths_per_million": 49.943, + "new_deaths_per_million": 0.658, + "new_deaths_smoothed_per_million": 0.548 + }, + { + "date": "2020-06-06", + "total_cases": 6717256.0, + "new_cases": 133189.0, + "new_cases_smoothed": 118994.714, + "total_deaths": 393934.0, + "new_deaths": 4640.0, + "new_deaths_smoothed": 4271.714, + "total_cases_per_million": 861.761, + "new_cases_per_million": 17.087, + "new_cases_smoothed_per_million": 15.266, + "total_deaths_per_million": 50.538, + "new_deaths_per_million": 0.595, + "new_deaths_smoothed_per_million": 0.548 + }, + { + "date": "2020-06-07", + "total_cases": 6843252.0, + "new_cases": 125996.0, + "new_cases_smoothed": 118717.429, + "total_deaths": 397723.0, + "new_deaths": 3789.0, + "new_deaths_smoothed": 4240.143, + "total_cases_per_million": 877.925, + "new_cases_per_million": 16.164, + "new_cases_smoothed_per_million": 15.23, + "total_deaths_per_million": 51.024, + "new_deaths_per_million": 0.486, + "new_deaths_smoothed_per_million": 0.544 + }, + { + "date": "2020-06-08", + "total_cases": 6958081.0, + "new_cases": 114829.0, + "new_cases_smoothed": 119876.286, + "total_deaths": 401234.0, + "new_deaths": 3511.0, + "new_deaths_smoothed": 4325.571, + "total_cases_per_million": 892.657, + "new_cases_per_million": 14.731, + "new_cases_smoothed_per_million": 15.379, + "total_deaths_per_million": 51.475, + "new_deaths_per_million": 0.45, + "new_deaths_smoothed_per_million": 0.555 + }, + { + "date": "2020-06-09", + "total_cases": 7063704.0, + "new_cases": 105623.0, + "new_cases_smoothed": 120637.429, + "total_deaths": 404448.0, + "new_deaths": 3214.0, + "new_deaths_smoothed": 4335.0, + "total_cases_per_million": 906.207, + "new_cases_per_million": 13.55, + "new_cases_smoothed_per_million": 15.477, + "total_deaths_per_million": 51.887, + "new_deaths_per_million": 0.412, + "new_deaths_smoothed_per_million": 0.556 + }, + { + "date": "2020-06-10", + "total_cases": 7188944.0, + "new_cases": 125240.0, + "new_cases_smoothed": 122473.714, + "total_deaths": 409301.0, + "new_deaths": 4853.0, + "new_deaths_smoothed": 4379.0, + "total_cases_per_million": 922.274, + "new_cases_per_million": 16.067, + "new_cases_smoothed_per_million": 15.712, + "total_deaths_per_million": 52.51, + "new_deaths_per_million": 0.623, + "new_deaths_smoothed_per_million": 0.562 + }, + { + "date": "2020-06-11", + "total_cases": 7323800.0, + "new_cases": 134856.0, + "new_cases_smoothed": 123808.429, + "total_deaths": 414432.0, + "new_deaths": 5131.0, + "new_deaths_smoothed": 4324.286, + "total_cases_per_million": 939.575, + "new_cases_per_million": 17.301, + "new_cases_smoothed_per_million": 15.883, + "total_deaths_per_million": 53.168, + "new_deaths_per_million": 0.658, + "new_deaths_smoothed_per_million": 0.555 + }, + { + "date": "2020-06-12", + "total_cases": 7459951.0, + "new_cases": 136151.0, + "new_cases_smoothed": 125126.286, + "total_deaths": 419128.0, + "new_deaths": 4696.0, + "new_deaths_smoothed": 4262.0, + "total_cases_per_million": 957.042, + "new_cases_per_million": 17.467, + "new_cases_smoothed_per_million": 16.053, + "total_deaths_per_million": 53.77, + "new_deaths_per_million": 0.602, + "new_deaths_smoothed_per_million": 0.547 + }, + { + "date": "2020-06-13", + "total_cases": 7604574.0, + "new_cases": 144623.0, + "new_cases_smoothed": 126759.714, + "total_deaths": 423776.0, + "new_deaths": 4648.0, + "new_deaths_smoothed": 4263.143, + "total_cases_per_million": 975.596, + "new_cases_per_million": 18.554, + "new_cases_smoothed_per_million": 16.262, + "total_deaths_per_million": 54.367, + "new_deaths_per_million": 0.596, + "new_deaths_smoothed_per_million": 0.547 + }, + { + "date": "2020-06-14", + "total_cases": 7737987.0, + "new_cases": 133413.0, + "new_cases_smoothed": 127819.286, + "total_deaths": 427915.0, + "new_deaths": 4139.0, + "new_deaths_smoothed": 4313.143, + "total_cases_per_million": 992.712, + "new_cases_per_million": 17.116, + "new_cases_smoothed_per_million": 16.398, + "total_deaths_per_million": 54.898, + "new_deaths_per_million": 0.531, + "new_deaths_smoothed_per_million": 0.553 + }, + { + "date": "2020-06-15", + "total_cases": 7859187.0, + "new_cases": 121200.0, + "new_cases_smoothed": 128729.429, + "total_deaths": 431072.0, + "new_deaths": 3157.0, + "new_deaths_smoothed": 4262.571, + "total_cases_per_million": 1008.26, + "new_cases_per_million": 15.549, + "new_cases_smoothed_per_million": 16.515, + "total_deaths_per_million": 55.303, + "new_deaths_per_million": 0.405, + "new_deaths_smoothed_per_million": 0.547 + }, + { + "date": "2020-06-16", + "total_cases": 7977685.0, + "new_cases": 118498.0, + "new_cases_smoothed": 130568.714, + "total_deaths": 434450.0, + "new_deaths": 3378.0, + "new_deaths_smoothed": 4286.0, + "total_cases_per_million": 1023.463, + "new_cases_per_million": 15.202, + "new_cases_smoothed_per_million": 16.751, + "total_deaths_per_million": 55.736, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.55 + }, + { + "date": "2020-06-17", + "total_cases": 8119156.0, + "new_cases": 141471.0, + "new_cases_smoothed": 132887.429, + "total_deaths": 441169.0, + "new_deaths": 6719.0, + "new_deaths_smoothed": 4552.571, + "total_cases_per_million": 1041.612, + "new_cases_per_million": 18.149, + "new_cases_smoothed_per_million": 17.048, + "total_deaths_per_million": 56.598, + "new_deaths_per_million": 0.862, + "new_deaths_smoothed_per_million": 0.584 + }, + { + "date": "2020-06-18", + "total_cases": 8296014.0, + "new_cases": 176858.0, + "new_cases_smoothed": 138887.714, + "total_deaths": 446269.0, + "new_deaths": 5100.0, + "new_deaths_smoothed": 4548.143, + "total_cases_per_million": 1064.301, + "new_cases_per_million": 22.689, + "new_cases_smoothed_per_million": 17.818, + "total_deaths_per_million": 57.252, + "new_deaths_per_million": 0.654, + "new_deaths_smoothed_per_million": 0.583 + }, + { + "date": "2020-06-19", + "total_cases": 8434464.0, + "new_cases": 138450.0, + "new_cases_smoothed": 139216.143, + "total_deaths": 452544.0, + "new_deaths": 6275.0, + "new_deaths_smoothed": 4773.714, + "total_cases_per_million": 1082.063, + "new_cases_per_million": 17.762, + "new_cases_smoothed_per_million": 17.86, + "total_deaths_per_million": 58.057, + "new_deaths_per_million": 0.805, + "new_deaths_smoothed_per_million": 0.612 + }, + { + "date": "2020-06-20", + "total_cases": 8614776.0, + "new_cases": 180312.0, + "new_cases_smoothed": 144314.571, + "total_deaths": 457575.0, + "new_deaths": 5031.0, + "new_deaths_smoothed": 4828.429, + "total_cases_per_million": 1105.195, + "new_cases_per_million": 23.132, + "new_cases_smoothed_per_million": 18.514, + "total_deaths_per_million": 58.703, + "new_deaths_per_million": 0.645, + "new_deaths_smoothed_per_million": 0.619 + }, + { + "date": "2020-06-21", + "total_cases": 8775092.0, + "new_cases": 160316.0, + "new_cases_smoothed": 148157.857, + "total_deaths": 461691.0, + "new_deaths": 4116.0, + "new_deaths_smoothed": 4825.143, + "total_cases_per_million": 1125.762, + "new_cases_per_million": 20.567, + "new_cases_smoothed_per_million": 19.007, + "total_deaths_per_million": 59.231, + "new_deaths_per_million": 0.528, + "new_deaths_smoothed_per_million": 0.619 + }, + { + "date": "2020-06-22", + "total_cases": 8904289.0, + "new_cases": 129197.0, + "new_cases_smoothed": 149300.286, + "total_deaths": 465657.0, + "new_deaths": 3966.0, + "new_deaths_smoothed": 4940.714, + "total_cases_per_million": 1142.337, + "new_cases_per_million": 16.575, + "new_cases_smoothed_per_million": 19.154, + "total_deaths_per_million": 59.739, + "new_deaths_per_million": 0.509, + "new_deaths_smoothed_per_million": 0.634 + }, + { + "date": "2020-06-23", + "total_cases": 9038528.0, + "new_cases": 134239.0, + "new_cases_smoothed": 151549.0, + "total_deaths": 469053.0, + "new_deaths": 3396.0, + "new_deaths_smoothed": 4943.286, + "total_cases_per_million": 1159.559, + "new_cases_per_million": 17.222, + "new_cases_smoothed_per_million": 19.442, + "total_deaths_per_million": 60.175, + "new_deaths_per_million": 0.436, + "new_deaths_smoothed_per_million": 0.634 + }, + { + "date": "2020-06-24", + "total_cases": 9202423.0, + "new_cases": 163895.0, + "new_cases_smoothed": 154752.429, + "total_deaths": 474403.0, + "new_deaths": 5350.0, + "new_deaths_smoothed": 4747.714, + "total_cases_per_million": 1180.585, + "new_cases_per_million": 21.026, + "new_cases_smoothed_per_million": 19.853, + "total_deaths_per_million": 60.861, + "new_deaths_per_million": 0.686, + "new_deaths_smoothed_per_million": 0.609 + }, + { + "date": "2020-06-25", + "total_cases": 9377419.0, + "new_cases": 174996.0, + "new_cases_smoothed": 154486.429, + "total_deaths": 479618.0, + "new_deaths": 5215.0, + "new_deaths_smoothed": 4764.143, + "total_cases_per_million": 1203.035, + "new_cases_per_million": 22.45, + "new_cases_smoothed_per_million": 19.819, + "total_deaths_per_million": 61.531, + "new_deaths_per_million": 0.669, + "new_deaths_smoothed_per_million": 0.611 + }, + { + "date": "2020-06-26", + "total_cases": 9556157.0, + "new_cases": 178738.0, + "new_cases_smoothed": 160241.857, + "total_deaths": 486196.0, + "new_deaths": 6578.0, + "new_deaths_smoothed": 4807.429, + "total_cases_per_million": 1225.966, + "new_cases_per_million": 22.93, + "new_cases_smoothed_per_million": 20.558, + "total_deaths_per_million": 62.374, + "new_deaths_per_million": 0.844, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-06-27", + "total_cases": 9744827.0, + "new_cases": 188670.0, + "new_cases_smoothed": 161435.857, + "total_deaths": 490757.0, + "new_deaths": 4561.0, + "new_deaths_smoothed": 4740.286, + "total_cases_per_million": 1250.17, + "new_cases_per_million": 24.205, + "new_cases_smoothed_per_million": 20.711, + "total_deaths_per_million": 62.96, + "new_deaths_per_million": 0.585, + "new_deaths_smoothed_per_million": 0.608 + }, + { + "date": "2020-06-28", + "total_cases": 9926855.0, + "new_cases": 182028.0, + "new_cases_smoothed": 164537.571, + "total_deaths": 495348.0, + "new_deaths": 4591.0, + "new_deaths_smoothed": 4808.143, + "total_cases_per_million": 1273.523, + "new_cases_per_million": 23.352, + "new_cases_smoothed_per_million": 21.109, + "total_deaths_per_million": 63.549, + "new_deaths_per_million": 0.589, + "new_deaths_smoothed_per_million": 0.617 + }, + { + "date": "2020-06-29", + "total_cases": 10087058.0, + "new_cases": 160203.0, + "new_cases_smoothed": 168967.0, + "total_deaths": 498417.0, + "new_deaths": 3069.0, + "new_deaths_smoothed": 4680.0, + "total_cases_per_million": 1294.075, + "new_cases_per_million": 20.553, + "new_cases_smoothed_per_million": 21.677, + "total_deaths_per_million": 63.942, + "new_deaths_per_million": 0.394, + "new_deaths_smoothed_per_million": 0.6 + }, + { + "date": "2020-06-30", + "total_cases": 10245217.0, + "new_cases": 158159.0, + "new_cases_smoothed": 172384.143, + "total_deaths": 502123.0, + "new_deaths": 3706.0, + "new_deaths_smoothed": 4724.286, + "total_cases_per_million": 1314.366, + "new_cases_per_million": 20.29, + "new_cases_smoothed_per_million": 22.115, + "total_deaths_per_million": 64.418, + "new_deaths_per_million": 0.475, + "new_deaths_smoothed_per_million": 0.606 + }, + { + "date": "2020-07-01", + "total_cases": 10437302.0, + "new_cases": 192085.0, + "new_cases_smoothed": 176411.286, + "total_deaths": 507746.0, + "new_deaths": 5623.0, + "new_deaths_smoothed": 4763.286, + "total_cases_per_million": 1339.009, + "new_cases_per_million": 24.643, + "new_cases_smoothed_per_million": 22.632, + "total_deaths_per_million": 65.139, + "new_deaths_per_million": 0.721, + "new_deaths_smoothed_per_million": 0.611 + }, + { + "date": "2020-07-02", + "total_cases": 10637678.0, + "new_cases": 200376.0, + "new_cases_smoothed": 180037.0, + "total_deaths": 512587.0, + "new_deaths": 4841.0, + "new_deaths_smoothed": 4709.857, + "total_cases_per_million": 1364.715, + "new_cases_per_million": 25.706, + "new_cases_smoothed_per_million": 23.097, + "total_deaths_per_million": 65.76, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.604 + }, + { + "date": "2020-07-03", + "total_cases": 10846303.0, + "new_cases": 208625.0, + "new_cases_smoothed": 184306.571, + "total_deaths": 517664.0, + "new_deaths": 5077.0, + "new_deaths_smoothed": 4495.429, + "total_cases_per_million": 1391.48, + "new_cases_per_million": 26.765, + "new_cases_smoothed_per_million": 23.645, + "total_deaths_per_million": 66.411, + "new_deaths_per_million": 0.651, + "new_deaths_smoothed_per_million": 0.577 + }, + { + "date": "2020-07-04", + "total_cases": 11051826.0, + "new_cases": 205523.0, + "new_cases_smoothed": 186714.143, + "total_deaths": 522676.0, + "new_deaths": 5012.0, + "new_deaths_smoothed": 4559.857, + "total_cases_per_million": 1417.846, + "new_cases_per_million": 26.367, + "new_cases_smoothed_per_million": 23.954, + "total_deaths_per_million": 67.054, + "new_deaths_per_million": 0.643, + "new_deaths_smoothed_per_million": 0.585 + }, + { + "date": "2020-07-05", + "total_cases": 11242890.0, + "new_cases": 191064.0, + "new_cases_smoothed": 188005.0, + "total_deaths": 527015.0, + "new_deaths": 4339.0, + "new_deaths_smoothed": 4523.857, + "total_cases_per_million": 1442.358, + "new_cases_per_million": 24.512, + "new_cases_smoothed_per_million": 24.119, + "total_deaths_per_million": 67.611, + "new_deaths_per_million": 0.557, + "new_deaths_smoothed_per_million": 0.58 + }, + { + "date": "2020-07-06", + "total_cases": 11421170.0, + "new_cases": 178280.0, + "new_cases_smoothed": 190587.429, + "total_deaths": 530393.0, + "new_deaths": 3378.0, + "new_deaths_smoothed": 4568.0, + "total_cases_per_million": 1465.23, + "new_cases_per_million": 22.872, + "new_cases_smoothed_per_million": 24.451, + "total_deaths_per_million": 68.044, + "new_deaths_per_million": 0.433, + "new_deaths_smoothed_per_million": 0.586 + }, + { + "date": "2020-07-07", + "total_cases": 11595449.0, + "new_cases": 174279.0, + "new_cases_smoothed": 192890.286, + "total_deaths": 534235.0, + "new_deaths": 3842.0, + "new_deaths_smoothed": 4587.429, + "total_cases_per_million": 1487.588, + "new_cases_per_million": 22.358, + "new_cases_smoothed_per_million": 24.746, + "total_deaths_per_million": 68.537, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.589 + }, + { + "date": "2020-07-08", + "total_cases": 11802391.0, + "new_cases": 206942.0, + "new_cases_smoothed": 195012.714, + "total_deaths": 540231.0, + "new_deaths": 5996.0, + "new_deaths_smoothed": 4640.714, + "total_cases_per_million": 1514.137, + "new_cases_per_million": 26.549, + "new_cases_smoothed_per_million": 25.018, + "total_deaths_per_million": 69.307, + "new_deaths_per_million": 0.769, + "new_deaths_smoothed_per_million": 0.595 + }, + { + "date": "2020-07-09", + "total_cases": 12017897.0, + "new_cases": 215506.0, + "new_cases_smoothed": 197174.143, + "total_deaths": 545508.0, + "new_deaths": 5277.0, + "new_deaths_smoothed": 4703.0, + "total_cases_per_million": 1541.784, + "new_cases_per_million": 27.647, + "new_cases_smoothed_per_million": 25.296, + "total_deaths_per_million": 69.984, + "new_deaths_per_million": 0.677, + "new_deaths_smoothed_per_million": 0.603 + }, + { + "date": "2020-07-10", + "total_cases": 12243043.0, + "new_cases": 225146.0, + "new_cases_smoothed": 199534.286, + "total_deaths": 550891.0, + "new_deaths": 5383.0, + "new_deaths_smoothed": 4746.714, + "total_cases_per_million": 1570.668, + "new_cases_per_million": 28.884, + "new_cases_smoothed_per_million": 25.598, + "total_deaths_per_million": 70.674, + "new_deaths_per_million": 0.691, + "new_deaths_smoothed_per_million": 0.609 + }, + { + "date": "2020-07-11", + "total_cases": 12474504.0, + "new_cases": 231461.0, + "new_cases_smoothed": 203239.714, + "total_deaths": 556168.0, + "new_deaths": 5277.0, + "new_deaths_smoothed": 4784.571, + "total_cases_per_million": 1600.363, + "new_cases_per_million": 29.694, + "new_cases_smoothed_per_million": 26.074, + "total_deaths_per_million": 71.351, + "new_deaths_per_million": 0.677, + "new_deaths_smoothed_per_million": 0.614 + }, + { + "date": "2020-07-12", + "total_cases": 12692498.0, + "new_cases": 217994.0, + "new_cases_smoothed": 207086.857, + "total_deaths": 560961.0, + "new_deaths": 4793.0, + "new_deaths_smoothed": 4849.429, + "total_cases_per_million": 1628.329, + "new_cases_per_million": 27.967, + "new_cases_smoothed_per_million": 26.567, + "total_deaths_per_million": 71.966, + "new_deaths_per_million": 0.615, + "new_deaths_smoothed_per_million": 0.622 + }, + { + "date": "2020-07-13", + "total_cases": 12887997.0, + "new_cases": 195499.0, + "new_cases_smoothed": 209546.714, + "total_deaths": 564851.0, + "new_deaths": 3890.0, + "new_deaths_smoothed": 4922.571, + "total_cases_per_million": 1653.41, + "new_cases_per_million": 25.081, + "new_cases_smoothed_per_million": 26.883, + "total_deaths_per_million": 72.465, + "new_deaths_per_million": 0.499, + "new_deaths_smoothed_per_million": 0.632 + }, + { + "date": "2020-07-14", + "total_cases": 13076443.0, + "new_cases": 188446.0, + "new_cases_smoothed": 211570.571, + "total_deaths": 568692.0, + "new_deaths": 3841.0, + "new_deaths_smoothed": 4922.429, + "total_cases_per_million": 1677.586, + "new_cases_per_million": 24.176, + "new_cases_smoothed_per_million": 27.143, + "total_deaths_per_million": 72.958, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.632 + }, + { + "date": "2020-07-15", + "total_cases": 13300136.0, + "new_cases": 223693.0, + "new_cases_smoothed": 213963.571, + "total_deaths": 574270.0, + "new_deaths": 5578.0, + "new_deaths_smoothed": 4862.714, + "total_cases_per_million": 1706.283, + "new_cases_per_million": 28.698, + "new_cases_smoothed_per_million": 27.45, + "total_deaths_per_million": 73.673, + "new_deaths_per_million": 0.716, + "new_deaths_smoothed_per_million": 0.624 + }, + { + "date": "2020-07-16", + "total_cases": 13531835.0, + "new_cases": 231699.0, + "new_cases_smoothed": 216276.857, + "total_deaths": 579771.0, + "new_deaths": 5501.0, + "new_deaths_smoothed": 4894.714, + "total_cases_per_million": 1736.008, + "new_cases_per_million": 29.725, + "new_cases_smoothed_per_million": 27.746, + "total_deaths_per_million": 74.379, + "new_deaths_per_million": 0.706, + "new_deaths_smoothed_per_million": 0.628 + }, + { + "date": "2020-07-17", + "total_cases": 13786214.0, + "new_cases": 254379.0, + "new_cases_smoothed": 220453.0, + "total_deaths": 585516.0, + "new_deaths": 5745.0, + "new_deaths_smoothed": 4946.429, + "total_cases_per_million": 1768.643, + "new_cases_per_million": 32.634, + "new_cases_smoothed_per_million": 28.282, + "total_deaths_per_million": 75.116, + "new_deaths_per_million": 0.737, + "new_deaths_smoothed_per_million": 0.635 + }, + { + "date": "2020-07-18", + "total_cases": 14040641.0, + "new_cases": 254427.0, + "new_cases_smoothed": 223733.857, + "total_deaths": 592873.0, + "new_deaths": 7357.0, + "new_deaths_smoothed": 5243.571, + "total_cases_per_million": 1801.283, + "new_cases_per_million": 32.641, + "new_cases_smoothed_per_million": 28.703, + "total_deaths_per_million": 76.06, + "new_deaths_per_million": 0.944, + "new_deaths_smoothed_per_million": 0.673 + }, + { + "date": "2020-07-19", + "total_cases": 14270806.0, + "new_cases": 230165.0, + "new_cases_smoothed": 225472.571, + "total_deaths": 597822.0, + "new_deaths": 4949.0, + "new_deaths_smoothed": 5265.857, + "total_cases_per_million": 1830.811, + "new_cases_per_million": 29.528, + "new_cases_smoothed_per_million": 28.926, + "total_deaths_per_million": 76.695, + "new_deaths_per_million": 0.635, + "new_deaths_smoothed_per_million": 0.676 + }, + { + "date": "2020-07-20", + "total_cases": 14480248.0, + "new_cases": 209442.0, + "new_cases_smoothed": 227464.429, + "total_deaths": 601663.0, + "new_deaths": 3841.0, + "new_deaths_smoothed": 5258.857, + "total_cases_per_million": 1857.681, + "new_cases_per_million": 26.869, + "new_cases_smoothed_per_million": 29.182, + "total_deaths_per_million": 77.188, + "new_deaths_per_million": 0.493, + "new_deaths_smoothed_per_million": 0.675 + }, + { + "date": "2020-07-21", + "total_cases": 14681013.0, + "new_cases": 200765.0, + "new_cases_smoothed": 229224.286, + "total_deaths": 605756.0, + "new_deaths": 4093.0, + "new_deaths_smoothed": 5294.857, + "total_cases_per_million": 1883.437, + "new_cases_per_million": 25.756, + "new_cases_smoothed_per_million": 29.407, + "total_deaths_per_million": 77.713, + "new_deaths_per_million": 0.525, + "new_deaths_smoothed_per_million": 0.679 + }, + { + "date": "2020-07-22", + "total_cases": 14920799.0, + "new_cases": 239786.0, + "new_cases_smoothed": 231523.286, + "total_deaths": 611879.0, + "new_deaths": 6123.0, + "new_deaths_smoothed": 5372.714, + "total_cases_per_million": 1914.199, + "new_cases_per_million": 30.762, + "new_cases_smoothed_per_million": 29.702, + "total_deaths_per_million": 78.498, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.689 + }, + { + "date": "2020-07-23", + "total_cases": 15202432.0, + "new_cases": 281633.0, + "new_cases_smoothed": 238656.714, + "total_deaths": 618756.0, + "new_deaths": 6877.0, + "new_deaths_smoothed": 5569.286, + "total_cases_per_million": 1950.33, + "new_cases_per_million": 36.131, + "new_cases_smoothed_per_million": 30.617, + "total_deaths_per_million": 79.381, + "new_deaths_per_million": 0.882, + "new_deaths_smoothed_per_million": 0.714 + }, + { + "date": "2020-07-24", + "total_cases": 15478726.0, + "new_cases": 276294.0, + "new_cases_smoothed": 241787.429, + "total_deaths": 628535.0, + "new_deaths": 9779.0, + "new_deaths_smoothed": 6145.571, + "total_cases_per_million": 1985.776, + "new_cases_per_million": 35.446, + "new_cases_smoothed_per_million": 31.019, + "total_deaths_per_million": 80.635, + "new_deaths_per_million": 1.255, + "new_deaths_smoothed_per_million": 0.788 + }, + { + "date": "2020-07-25", + "total_cases": 15762649.0, + "new_cases": 283923.0, + "new_cases_smoothed": 246001.143, + "total_deaths": 634791.0, + "new_deaths": 6256.0, + "new_deaths_smoothed": 5988.286, + "total_cases_per_million": 2022.201, + "new_cases_per_million": 36.425, + "new_cases_smoothed_per_million": 31.56, + "total_deaths_per_million": 81.438, + "new_deaths_per_million": 0.803, + "new_deaths_smoothed_per_million": 0.768 + }, + { + "date": "2020-07-26", + "total_cases": 16022274.0, + "new_cases": 259625.0, + "new_cases_smoothed": 250209.714, + "total_deaths": 640524.0, + "new_deaths": 5733.0, + "new_deaths_smoothed": 6100.286, + "total_cases_per_million": 2055.508, + "new_cases_per_million": 33.307, + "new_cases_smoothed_per_million": 32.1, + "total_deaths_per_million": 82.173, + "new_deaths_per_million": 0.735, + "new_deaths_smoothed_per_million": 0.783 + }, + { + "date": "2020-07-27", + "total_cases": 16254124.0, + "new_cases": 231850.0, + "new_cases_smoothed": 253410.857, + "total_deaths": 644487.0, + "new_deaths": 3963.0, + "new_deaths_smoothed": 6117.714, + "total_cases_per_million": 2085.253, + "new_cases_per_million": 29.744, + "new_cases_smoothed_per_million": 32.51, + "total_deaths_per_million": 82.682, + "new_deaths_per_million": 0.508, + "new_deaths_smoothed_per_million": 0.785 + }, + { + "date": "2020-07-28", + "total_cases": 16466043.0, + "new_cases": 211919.0, + "new_cases_smoothed": 255004.286, + "total_deaths": 649143.0, + "new_deaths": 4656.0, + "new_deaths_smoothed": 6198.143, + "total_cases_per_million": 2112.44, + "new_cases_per_million": 27.187, + "new_cases_smoothed_per_million": 32.715, + "total_deaths_per_million": 83.279, + "new_deaths_per_million": 0.597, + "new_deaths_smoothed_per_million": 0.795 + }, + { + "date": "2020-07-29", + "total_cases": 16709848.0, + "new_cases": 243805.0, + "new_cases_smoothed": 255578.429, + "total_deaths": 655304.0, + "new_deaths": 6161.0, + "new_deaths_smoothed": 6203.571, + "total_cases_per_million": 2143.718, + "new_cases_per_million": 31.278, + "new_cases_smoothed_per_million": 32.788, + "total_deaths_per_million": 84.069, + "new_deaths_per_million": 0.79, + "new_deaths_smoothed_per_million": 0.796 + }, + { + "date": "2020-07-30", + "total_cases": 17007955.0, + "new_cases": 298107.0, + "new_cases_smoothed": 257931.857, + "total_deaths": 661946.0, + "new_deaths": 6642.0, + "new_deaths_smoothed": 6170.0, + "total_cases_per_million": 2181.962, + "new_cases_per_million": 38.244, + "new_cases_smoothed_per_million": 33.09, + "total_deaths_per_million": 84.921, + "new_deaths_per_million": 0.852, + "new_deaths_smoothed_per_million": 0.792 + }, + { + "date": "2020-07-31", + "total_cases": 17298381.0, + "new_cases": 290426.0, + "new_cases_smoothed": 259950.714, + "total_deaths": 668329.0, + "new_deaths": 6383.0, + "new_deaths_smoothed": 5684.857, + "total_cases_per_million": 2219.221, + "new_cases_per_million": 37.259, + "new_cases_smoothed_per_million": 33.349, + "total_deaths_per_million": 85.74, + "new_deaths_per_million": 0.819, + "new_deaths_smoothed_per_million": 0.729 + }, + { + "date": "2020-08-01", + "total_cases": 17577210.0, + "new_cases": 278829.0, + "new_cases_smoothed": 259223.0, + "total_deaths": 674437.0, + "new_deaths": 6108.0, + "new_deaths_smoothed": 5663.714, + "total_cases_per_million": 2254.992, + "new_cases_per_million": 35.771, + "new_cases_smoothed_per_million": 33.256, + "total_deaths_per_million": 86.524, + "new_deaths_per_million": 0.784, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-08-02", + "total_cases": 17844839.0, + "new_cases": 267629.0, + "new_cases_smoothed": 260366.429, + "total_deaths": 680187.0, + "new_deaths": 5750.0, + "new_deaths_smoothed": 5666.143, + "total_cases_per_million": 2289.326, + "new_cases_per_million": 34.334, + "new_cases_smoothed_per_million": 33.403, + "total_deaths_per_million": 87.262, + "new_deaths_per_million": 0.738, + "new_deaths_smoothed_per_million": 0.727 + }, + { + "date": "2020-08-03", + "total_cases": 18068582.0, + "new_cases": 223743.0, + "new_cases_smoothed": 259208.286, + "total_deaths": 684442.0, + "new_deaths": 4255.0, + "new_deaths_smoothed": 5707.857, + "total_cases_per_million": 2318.031, + "new_cases_per_million": 28.704, + "new_cases_smoothed_per_million": 33.254, + "total_deaths_per_million": 87.808, + "new_deaths_per_million": 0.546, + "new_deaths_smoothed_per_million": 0.732 + }, + { + "date": "2020-08-04", + "total_cases": 18273246.0, + "new_cases": 204664.0, + "new_cases_smoothed": 258171.857, + "total_deaths": 688668.0, + "new_deaths": 4226.0, + "new_deaths_smoothed": 5646.429, + "total_cases_per_million": 2344.287, + "new_cases_per_million": 26.256, + "new_cases_smoothed_per_million": 33.121, + "total_deaths_per_million": 88.35, + "new_deaths_per_million": 0.542, + "new_deaths_smoothed_per_million": 0.724 + }, + { + "date": "2020-08-05", + "total_cases": 18528920.0, + "new_cases": 255674.0, + "new_cases_smoothed": 259867.429, + "total_deaths": 695398.0, + "new_deaths": 6730.0, + "new_deaths_smoothed": 5727.714, + "total_cases_per_million": 2377.088, + "new_cases_per_million": 32.801, + "new_cases_smoothed_per_million": 33.339, + "total_deaths_per_million": 89.213, + "new_deaths_per_million": 0.863, + "new_deaths_smoothed_per_million": 0.735 + }, + { + "date": "2020-08-06", + "total_cases": 18806333.0, + "new_cases": 277413.0, + "new_cases_smoothed": 256911.143, + "total_deaths": 702510.0, + "new_deaths": 7112.0, + "new_deaths_smoothed": 5794.857, + "total_cases_per_million": 2412.677, + "new_cases_per_million": 35.59, + "new_cases_smoothed_per_million": 32.959, + "total_deaths_per_million": 90.125, + "new_deaths_per_million": 0.912, + "new_deaths_smoothed_per_million": 0.743 + }, + { + "date": "2020-08-07", + "total_cases": 19092496.0, + "new_cases": 286163.0, + "new_cases_smoothed": 256302.143, + "total_deaths": 709393.0, + "new_deaths": 6883.0, + "new_deaths_smoothed": 5866.286, + "total_cases_per_million": 2449.389, + "new_cases_per_million": 36.712, + "new_cases_smoothed_per_million": 32.881, + "total_deaths_per_million": 91.009, + "new_deaths_per_million": 0.883, + "new_deaths_smoothed_per_million": 0.753 + }, + { + "date": "2020-08-08", + "total_cases": 19368404.0, + "new_cases": 275908.0, + "new_cases_smoothed": 255884.857, + "total_deaths": 715861.0, + "new_deaths": 6468.0, + "new_deaths_smoothed": 5917.714, + "total_cases_per_million": 2484.786, + "new_cases_per_million": 35.396, + "new_cases_smoothed_per_million": 32.828, + "total_deaths_per_million": 91.838, + "new_deaths_per_million": 0.83, + "new_deaths_smoothed_per_million": 0.759 + }, + { + "date": "2020-08-09", + "total_cases": 19636914.0, + "new_cases": 268510.0, + "new_cases_smoothed": 256010.714, + "total_deaths": 721483.0, + "new_deaths": 5622.0, + "new_deaths_smoothed": 5899.429, + "total_cases_per_million": 2519.233, + "new_cases_per_million": 34.447, + "new_cases_smoothed_per_million": 32.844, + "total_deaths_per_million": 92.56, + "new_deaths_per_million": 0.721, + "new_deaths_smoothed_per_million": 0.757 + }, + { + "date": "2020-08-10", + "total_cases": 19866261.0, + "new_cases": 229347.0, + "new_cases_smoothed": 256811.286, + "total_deaths": 726297.0, + "new_deaths": 4814.0, + "new_deaths_smoothed": 5979.286, + "total_cases_per_million": 2548.656, + "new_cases_per_million": 29.423, + "new_cases_smoothed_per_million": 32.946, + "total_deaths_per_million": 93.177, + "new_deaths_per_million": 0.618, + "new_deaths_smoothed_per_million": 0.767 + }, + { + "date": "2020-08-11", + "total_cases": 20086284.0, + "new_cases": 220023.0, + "new_cases_smoothed": 259005.429, + "total_deaths": 731136.0, + "new_deaths": 4839.0, + "new_deaths_smoothed": 6066.857, + "total_cases_per_million": 2576.883, + "new_cases_per_million": 28.227, + "new_cases_smoothed_per_million": 33.228, + "total_deaths_per_million": 93.798, + "new_deaths_per_million": 0.621, + "new_deaths_smoothed_per_million": 0.778 + }, + { + "date": "2020-08-12", + "total_cases": 20347605.0, + "new_cases": 261321.0, + "new_cases_smoothed": 259812.143, + "total_deaths": 737260.0, + "new_deaths": 6124.0, + "new_deaths_smoothed": 5980.286, + "total_cases_per_million": 2610.408, + "new_cases_per_million": 33.525, + "new_cases_smoothed_per_million": 33.331, + "total_deaths_per_million": 94.584, + "new_deaths_per_million": 0.786, + "new_deaths_smoothed_per_million": 0.767 + }, + { + "date": "2020-08-13", + "total_cases": 20636732.0, + "new_cases": 289127.0, + "new_cases_smoothed": 261485.571, + "total_deaths": 744149.0, + "new_deaths": 6889.0, + "new_deaths_smoothed": 5948.429, + "total_cases_per_million": 2647.5, + "new_cases_per_million": 37.092, + "new_cases_smoothed_per_million": 33.546, + "total_deaths_per_million": 95.467, + "new_deaths_per_million": 0.884, + "new_deaths_smoothed_per_million": 0.763 + }, + { + "date": "2020-08-14", + "total_cases": 20923601.0, + "new_cases": 286869.0, + "new_cases_smoothed": 261586.429, + "total_deaths": 754075.0, + "new_deaths": 9926.0, + "new_deaths_smoothed": 6383.143, + "total_cases_per_million": 2684.303, + "new_cases_per_million": 36.803, + "new_cases_smoothed_per_million": 33.559, + "total_deaths_per_million": 96.741, + "new_deaths_per_million": 1.273, + "new_deaths_smoothed_per_million": 0.819 + }, + { + "date": "2020-08-15", + "total_cases": 21212744.0, + "new_cases": 289143.0, + "new_cases_smoothed": 263477.143, + "total_deaths": 760323.0, + "new_deaths": 6248.0, + "new_deaths_smoothed": 6351.714, + "total_cases_per_million": 2721.397, + "new_cases_per_million": 37.094, + "new_cases_smoothed_per_million": 33.802, + "total_deaths_per_million": 97.542, + "new_deaths_per_million": 0.802, + "new_deaths_smoothed_per_million": 0.815 + }, + { + "date": "2020-08-16", + "total_cases": 21472373.0, + "new_cases": 259629.0, + "new_cases_smoothed": 262208.429, + "total_deaths": 765980.0, + "new_deaths": 5657.0, + "new_deaths_smoothed": 6356.714, + "total_cases_per_million": 2754.705, + "new_cases_per_million": 33.308, + "new_cases_smoothed_per_million": 33.639, + "total_deaths_per_million": 98.268, + "new_deaths_per_million": 0.726, + "new_deaths_smoothed_per_million": 0.816 + }, + { + "date": "2020-08-17", + "total_cases": 21704579.0, + "new_cases": 232206.0, + "new_cases_smoothed": 262616.857, + "total_deaths": 770202.0, + "new_deaths": 4222.0, + "new_deaths_smoothed": 6272.143, + "total_cases_per_million": 2784.495, + "new_cases_per_million": 29.79, + "new_cases_smoothed_per_million": 33.691, + "total_deaths_per_million": 98.81, + "new_deaths_per_million": 0.542, + "new_deaths_smoothed_per_million": 0.805 + }, + { + "date": "2020-08-18", + "total_cases": 21901073.0, + "new_cases": 196494.0, + "new_cases_smoothed": 259255.571, + "total_deaths": 774463.0, + "new_deaths": 4261.0, + "new_deaths_smoothed": 6189.571, + "total_cases_per_million": 2809.703, + "new_cases_per_million": 25.208, + "new_cases_smoothed_per_million": 33.26, + "total_deaths_per_million": 99.356, + "new_deaths_per_million": 0.547, + "new_deaths_smoothed_per_million": 0.794 + }, + { + "date": "2020-08-19", + "total_cases": 22156119.0, + "new_cases": 255046.0, + "new_cases_smoothed": 258359.143, + "total_deaths": 781148.0, + "new_deaths": 6685.0, + "new_deaths_smoothed": 6269.714, + "total_cases_per_million": 2842.423, + "new_cases_per_million": 32.72, + "new_cases_smoothed_per_million": 33.145, + "total_deaths_per_million": 100.214, + "new_deaths_per_million": 0.858, + "new_deaths_smoothed_per_million": 0.804 + }, + { + "date": "2020-08-20", + "total_cases": 22437437.0, + "new_cases": 281318.0, + "new_cases_smoothed": 257243.571, + "total_deaths": 787684.0, + "new_deaths": 6536.0, + "new_deaths_smoothed": 6219.286, + "total_cases_per_million": 2878.514, + "new_cases_per_million": 36.09, + "new_cases_smoothed_per_million": 33.002, + "total_deaths_per_million": 101.053, + "new_deaths_per_million": 0.839, + "new_deaths_smoothed_per_million": 0.798 + }, + { + "date": "2020-08-21", + "total_cases": 22713575.0, + "new_cases": 276138.0, + "new_cases_smoothed": 255710.571, + "total_deaths": 794024.0, + "new_deaths": 6340.0, + "new_deaths_smoothed": 5707.0, + "total_cases_per_million": 2913.94, + "new_cases_per_million": 35.426, + "new_cases_smoothed_per_million": 32.805, + "total_deaths_per_million": 101.866, + "new_deaths_per_million": 0.813, + "new_deaths_smoothed_per_million": 0.732 + }, + { + "date": "2020-08-22", + "total_cases": 22967269.0, + "new_cases": 253694.0, + "new_cases_smoothed": 250646.429, + "total_deaths": 799942.0, + "new_deaths": 5918.0, + "new_deaths_smoothed": 5659.857, + "total_cases_per_million": 2946.486, + "new_cases_per_million": 32.547, + "new_cases_smoothed_per_million": 32.156, + "total_deaths_per_million": 102.625, + "new_deaths_per_million": 0.759, + "new_deaths_smoothed_per_million": 0.726 + }, + { + "date": "2020-08-23", + "total_cases": 23233830.0, + "new_cases": 266561.0, + "new_cases_smoothed": 251636.714, + "total_deaths": 805575.0, + "new_deaths": 5633.0, + "new_deaths_smoothed": 5656.429, + "total_cases_per_million": 2980.684, + "new_cases_per_million": 34.197, + "new_cases_smoothed_per_million": 32.283, + "total_deaths_per_million": 103.348, + "new_deaths_per_million": 0.723, + "new_deaths_smoothed_per_million": 0.726 + }, + { + "date": "2020-08-24", + "total_cases": 23458347.0, + "new_cases": 224517.0, + "new_cases_smoothed": 250538.286, + "total_deaths": 808894.0, + "new_deaths": 3319.0, + "new_deaths_smoothed": 5527.429, + "total_cases_per_million": 3009.487, + "new_cases_per_million": 28.803, + "new_cases_smoothed_per_million": 32.142, + "total_deaths_per_million": 103.774, + "new_deaths_per_million": 0.426, + "new_deaths_smoothed_per_million": 0.709 + }, + { + "date": "2020-08-25", + "total_cases": 23669703.0, + "new_cases": 211356.0, + "new_cases_smoothed": 252661.429, + "total_deaths": 813158.0, + "new_deaths": 4264.0, + "new_deaths_smoothed": 5527.857, + "total_cases_per_million": 3036.602, + "new_cases_per_million": 27.115, + "new_cases_smoothed_per_million": 32.414, + "total_deaths_per_million": 104.321, + "new_deaths_per_million": 0.547, + "new_deaths_smoothed_per_million": 0.709 + }, + { + "date": "2020-08-26", + "total_cases": 23924875.0, + "new_cases": 255172.0, + "new_cases_smoothed": 252679.429, + "total_deaths": 819648.0, + "new_deaths": 6490.0, + "new_deaths_smoothed": 5500.0, + "total_cases_per_million": 3069.338, + "new_cases_per_million": 32.736, + "new_cases_smoothed_per_million": 32.416, + "total_deaths_per_million": 105.153, + "new_deaths_per_million": 0.833, + "new_deaths_smoothed_per_million": 0.706 + }, + { + "date": "2020-08-27", + "total_cases": 24201391.0, + "new_cases": 276516.0, + "new_cases_smoothed": 251993.429, + "total_deaths": 825938.0, + "new_deaths": 6290.0, + "new_deaths_smoothed": 5464.857, + "total_cases_per_million": 3104.813, + "new_cases_per_million": 35.474, + "new_cases_smoothed_per_million": 32.328, + "total_deaths_per_million": 105.96, + "new_deaths_per_million": 0.807, + "new_deaths_smoothed_per_million": 0.701 + }, + { + "date": "2020-08-28", + "total_cases": 24484658.0, + "new_cases": 283267.0, + "new_cases_smoothed": 253011.857, + "total_deaths": 832013.0, + "new_deaths": 6075.0, + "new_deaths_smoothed": 5427.0, + "total_cases_per_million": 3141.153, + "new_cases_per_million": 36.341, + "new_cases_smoothed_per_million": 32.459, + "total_deaths_per_million": 106.74, + "new_deaths_per_million": 0.779, + "new_deaths_smoothed_per_million": 0.696 + }, + { + "date": "2020-08-29", + "total_cases": 24761387.0, + "new_cases": 276729.0, + "new_cases_smoothed": 256302.571, + "total_deaths": 837469.0, + "new_deaths": 5456.0, + "new_deaths_smoothed": 5361.0, + "total_cases_per_million": 3176.655, + "new_cases_per_million": 35.502, + "new_cases_smoothed_per_million": 32.881, + "total_deaths_per_million": 107.439, + "new_deaths_per_million": 0.7, + "new_deaths_smoothed_per_million": 0.688 + }, + { + "date": "2020-08-30", + "total_cases": 25030392.0, + "new_cases": 269005.0, + "new_cases_smoothed": 256651.714, + "total_deaths": 843159.0, + "new_deaths": 5690.0, + "new_deaths_smoothed": 5369.143, + "total_cases_per_million": 3211.166, + "new_cases_per_million": 34.511, + "new_cases_smoothed_per_million": 32.926, + "total_deaths_per_million": 108.169, + "new_deaths_per_million": 0.73, + "new_deaths_smoothed_per_million": 0.689 + }, + { + "date": "2020-08-31", + "total_cases": 25275612.0, + "new_cases": 245220.0, + "new_cases_smoothed": 259609.286, + "total_deaths": 846932.0, + "new_deaths": 3773.0, + "new_deaths_smoothed": 5434.0, + "total_cases_per_million": 3242.625, + "new_cases_per_million": 31.459, + "new_cases_smoothed_per_million": 33.305, + "total_deaths_per_million": 108.653, + "new_deaths_per_million": 0.484, + "new_deaths_smoothed_per_million": 0.697 + }, + { + "date": "2020-09-01", + "total_cases": 25518131.0, + "new_cases": 242519.0, + "new_cases_smoothed": 264061.143, + "total_deaths": 850983.0, + "new_deaths": 4051.0, + "new_deaths_smoothed": 5403.571, + "total_cases_per_million": 3273.738, + "new_cases_per_million": 31.113, + "new_cases_smoothed_per_million": 33.877, + "total_deaths_per_million": 109.173, + "new_deaths_per_million": 0.52, + "new_deaths_smoothed_per_million": 0.693 + }, + { + "date": "2020-09-02", + "total_cases": 25786430.0, + "new_cases": 268299.0, + "new_cases_smoothed": 265936.429, + "total_deaths": 857510.0, + "new_deaths": 6527.0, + "new_deaths_smoothed": 5408.857, + "total_cases_per_million": 3308.159, + "new_cases_per_million": 34.42, + "new_cases_smoothed_per_million": 34.117, + "total_deaths_per_million": 110.011, + "new_deaths_per_million": 0.837, + "new_deaths_smoothed_per_million": 0.694 + }, + { + "date": "2020-09-03", + "total_cases": 26069401.0, + "new_cases": 282971.0, + "new_cases_smoothed": 266858.571, + "total_deaths": 863587.0, + "new_deaths": 6077.0, + "new_deaths_smoothed": 5378.429, + "total_cases_per_million": 3344.461, + "new_cases_per_million": 36.303, + "new_cases_smoothed_per_million": 34.235, + "total_deaths_per_million": 110.79, + "new_deaths_per_million": 0.78, + "new_deaths_smoothed_per_million": 0.69 + }, + { + "date": "2020-09-04", + "total_cases": 26347047.0, + "new_cases": 277646.0, + "new_cases_smoothed": 266055.571, + "total_deaths": 869371.0, + "new_deaths": 5784.0, + "new_deaths_smoothed": 5336.857, + "total_cases_per_million": 3380.08, + "new_cases_per_million": 35.619, + "new_cases_smoothed_per_million": 34.132, + "total_deaths_per_million": 111.532, + "new_deaths_per_million": 0.742, + "new_deaths_smoothed_per_million": 0.685 + }, + { + "date": "2020-09-05", + "total_cases": 26640247.0, + "new_cases": 293200.0, + "new_cases_smoothed": 268408.571, + "total_deaths": 874963.0, + "new_deaths": 5592.0, + "new_deaths_smoothed": 5356.286, + "total_cases_per_million": 3417.695, + "new_cases_per_million": 37.615, + "new_cases_smoothed_per_million": 34.434, + "total_deaths_per_million": 112.25, + "new_deaths_per_million": 0.717, + "new_deaths_smoothed_per_million": 0.687 + } + ] + } +} \ No newline at end of file diff --git a/plotters/examples/customized_coord.rs b/plotters/examples/customized_coord.rs index cb3a18f0..fbcb542e 100644 --- a/plotters/examples/customized_coord.rs +++ b/plotters/examples/customized_coord.rs @@ -2,7 +2,7 @@ use plotters::{ coord::ranged1d::{KeyPointHint, NoDefaultFormatting, ValueFormatter}, prelude::*, }; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/customized_coord.svg"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/customized_coord.svg"; struct CustomizedX(u32); @@ -34,6 +34,7 @@ impl ValueFormatter for CustomizedX { } fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let area = SVGBackend::new(OUT_FILE_NAME, (1024, 760)).into_drawing_area(); area.fill(&WHITE)?; @@ -43,7 +44,7 @@ fn main() -> Result<(), Box> { chart.configure_mesh().draw()?; - area.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + area.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/errorbar.rs b/plotters/examples/errorbar.rs index 75c5dbea..5dbdf0e8 100644 --- a/plotters/examples/errorbar.rs +++ b/plotters/examples/errorbar.rs @@ -8,8 +8,9 @@ use itertools::Itertools; use num_traits::sign::Signed; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/errorbar.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/errorbar.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let data = generate_random_data(); let down_sampled = down_sample(&data[..]); @@ -51,7 +52,7 @@ fn main() -> Result<(), Box> { .draw()?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/full_palette.rs b/plotters/examples/full_palette.rs index dbd0d429..13202871 100644 --- a/plotters/examples/full_palette.rs +++ b/plotters/examples/full_palette.rs @@ -1,8 +1,9 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/full_palette.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/full_palette.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (2000, 850)).into_drawing_area(); root.fill(&WHITE)?; @@ -537,7 +538,7 @@ fn main() -> Result<(), Box> { } // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/histogram.rs b/plotters/examples/histogram.rs index 5cda05db..3d6dfbde 100644 --- a/plotters/examples/histogram.rs +++ b/plotters/examples/histogram.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/histogram.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/histogram.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (640, 480)).into_drawing_area(); root.fill(&WHITE)?; @@ -32,7 +33,7 @@ fn main() -> Result<(), Box> { )?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/mandelbrot.rs b/plotters/examples/mandelbrot.rs index 413c319c..eda52b37 100644 --- a/plotters/examples/mandelbrot.rs +++ b/plotters/examples/mandelbrot.rs @@ -1,8 +1,9 @@ use plotters::prelude::*; use std::ops::Range; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/mandelbrot.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/mandelbrot.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (800, 600)).into_drawing_area(); root.fill(&WHITE)?; @@ -35,7 +36,7 @@ fn main() -> Result<(), Box> { } // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/matshow.rs b/plotters/examples/matshow.rs index 30c71a74..d9b0ba29 100644 --- a/plotters/examples/matshow.rs +++ b/plotters/examples/matshow.rs @@ -1,7 +1,8 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/matshow.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/matshow.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -51,7 +52,7 @@ fn main() -> Result<(), Box> { )?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/nested_coord.rs b/plotters/examples/nested_coord.rs index b7001014..34b96c12 100644 --- a/plotters/examples/nested_coord.rs +++ b/plotters/examples/nested_coord.rs @@ -1,6 +1,7 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/nested_coord.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/nested_coord.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (640, 480)).into_drawing_area(); root.fill(&WHITE)?; @@ -36,7 +37,7 @@ fn main() -> Result<(), Box> { ))?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/normal-dist.rs b/plotters/examples/normal-dist.rs index be487863..25d7768d 100644 --- a/plotters/examples/normal-dist.rs +++ b/plotters/examples/normal-dist.rs @@ -4,8 +4,9 @@ use rand::SeedableRng; use rand_distr::{Distribution, Normal}; use rand_xorshift::XorShiftRng; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/normal-dist.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/normal-dist.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -55,7 +56,7 @@ fn main() -> Result<(), Box> { y_hist_ctx.draw_series(y_hist)?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/normal-dist2.rs b/plotters/examples/normal-dist2.rs index 6c84ab3a..3122c06c 100644 --- a/plotters/examples/normal-dist2.rs +++ b/plotters/examples/normal-dist2.rs @@ -6,8 +6,9 @@ use rand_xorshift::XorShiftRng; use num_traits::sign::Signed; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/normal-dist2.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/normal-dist2.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let sd = 0.60; let random_points: Vec = { @@ -72,7 +73,7 @@ fn main() -> Result<(), Box> { chart.configure_series_labels().draw()?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/pie.rs b/plotters/examples/pie.rs index a950c021..1c3c9d87 100644 --- a/plotters/examples/pie.rs +++ b/plotters/examples/pie.rs @@ -1,7 +1,8 @@ use plotters::{prelude::*, style::full_palette::ORANGE}; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/pie-chart.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/pie-chart.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root_area = BitMapBackend::new(&OUT_FILE_NAME, (950, 700)).into_drawing_area(); root_area.fill(&WHITE).unwrap(); let title_style = TextStyle::from(("sans-serif", 30).into_font()).color(&(BLACK)); diff --git a/plotters/examples/relative_size.rs b/plotters/examples/relative_size.rs index 66eaec13..562e59eb 100644 --- a/plotters/examples/relative_size.rs +++ b/plotters/examples/relative_size.rs @@ -28,8 +28,9 @@ fn draw_chart(root: &DrawingArea) -> DrawResult<(), Ok(()) } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/relative_size.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/relative_size.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -46,7 +47,7 @@ fn main() -> Result<(), Box> { draw_chart(&root)?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/sierpinski.rs b/plotters/examples/sierpinski.rs index b9655bf9..3e06ceb1 100644 --- a/plotters/examples/sierpinski.rs +++ b/plotters/examples/sierpinski.rs @@ -19,8 +19,9 @@ pub fn sierpinski_carpet( Ok(()) } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/sierpinski.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/sierpinski.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -32,7 +33,7 @@ fn main() -> Result<(), Box> { sierpinski_carpet(5, &root)?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/slc-temp.rs b/plotters/examples/slc-temp.rs index 9d6e4731..ac1f6142 100644 --- a/plotters/examples/slc-temp.rs +++ b/plotters/examples/slc-temp.rs @@ -4,8 +4,9 @@ use chrono::{TimeZone, Utc}; use std::error::Error; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/slc-temp.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/slc-temp.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -52,7 +53,7 @@ fn main() -> Result<(), Box> { )?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/snowflake.rs b/plotters/examples/snowflake.rs index 6e52f25b..7adba1d0 100644 --- a/plotters/examples/snowflake.rs +++ b/plotters/examples/snowflake.rs @@ -17,8 +17,9 @@ fn snowflake_iter(points: &[(f64, f64)]) -> Vec<(f64, f64)> { ret } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/snowflake.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/snowflake.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -47,7 +48,7 @@ fn main() -> Result<(), Box> { chart.draw_series(std::iter::once(PathElement::new(snowflake_vertices, &RED)))?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) } diff --git a/plotters/examples/stock.rs b/plotters/examples/stock.rs index 8e9416f6..5a47c0c7 100644 --- a/plotters/examples/stock.rs +++ b/plotters/examples/stock.rs @@ -7,8 +7,9 @@ fn parse_time(t: &str) -> Date { .unwrap() .date() } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/stock.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/stock.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let data = get_data(); let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -33,7 +34,7 @@ fn main() -> Result<(), Box> { )?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/tick_control.rs b/plotters/examples/tick_control.rs index b34fc88c..47a4d6d4 100644 --- a/plotters/examples/tick_control.rs +++ b/plotters/examples/tick_control.rs @@ -16,8 +16,9 @@ struct CountryData { data: Vec, } -const OUT_FILE_NAME: &'static str = "plotters-doc-data/tick_control.svg"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/tick_control.svg"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = SVGBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -48,9 +49,8 @@ fn main() -> Result<(), Box> { .y_desc("New Cases") .draw()?; - let data: std::collections::HashMap = serde_json::from_reader( - BufReader::new(File::open("plotters-doc-data/covid-data.json")?), - )?; + let data: std::collections::HashMap = + serde_json::from_reader(BufReader::new(File::open("examples/covid-data.json")?))?; for (idx, &series) in ["CHN", "USA", "RUS", "JPN", "DEU", "IND", "OWID_WRL"] .iter() @@ -78,7 +78,7 @@ fn main() -> Result<(), Box> { .draw()?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/examples/two-scales.rs b/plotters/examples/two-scales.rs index 6e1dfa4c..5350e701 100644 --- a/plotters/examples/two-scales.rs +++ b/plotters/examples/two-scales.rs @@ -1,7 +1,8 @@ use plotters::prelude::*; -const OUT_FILE_NAME: &'static str = "plotters-doc-data/twoscale.png"; +const OUT_FILE_NAME: &'static str = "../target/plotters-doc-data/twoscale.png"; fn main() -> Result<(), Box> { + std::fs::create_dir_all(std::path::Path::new(OUT_FILE_NAME).parent().unwrap())?; let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area(); root.fill(&WHITE)?; @@ -49,7 +50,7 @@ fn main() -> Result<(), Box> { .draw()?; // To avoid the IO failure being ignored silently, we manually call the present function - root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir"); + root.present().expect("Unable to write result to file, please make sure '../target/plotters-doc-data' dir exists under current dir"); println!("Result has been saved to {}", OUT_FILE_NAME); Ok(()) diff --git a/plotters/plotters-doc-data b/plotters/plotters-doc-data deleted file mode 160000 index 0d6c742d..00000000 --- a/plotters/plotters-doc-data +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0d6c742decbebed5b92bd85c6defa279da48cbef diff --git a/plotters/src/coord/ranged1d/types/numeric.rs b/plotters/src/coord/ranged1d/types/numeric.rs index 811d7d0e..a4e7b2b6 100644 --- a/plotters/src/coord/ranged1d/types/numeric.rs +++ b/plotters/src/coord/ranged1d/types/numeric.rs @@ -446,7 +446,7 @@ mod test { #[test] fn regression_test_issue_304_intmax_keypoint_no_panic() { - let coord : RangedCoordu32 = (0..u32::MAX).into(); + let coord: RangedCoordu32 = (0..u32::MAX).into(); let p = coord.key_points(10); assert!(p.len() > 0 && p.len() <= 10); } diff --git a/plotters/src/lib.rs b/plotters/src/lib.rs index d5da2fbe..022e3803 100644 --- a/plotters/src/lib.rs +++ b/plotters/src/lib.rs @@ -311,7 +311,8 @@ And the following code draws a quadratic function. `src/main.rs`, ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/0.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/0.png", (640, 480)).into_drawing_area(); root.fill(&WHITE)?; let mut chart = ChartBuilder::on(&root) .caption("y=x^2", ("sans-serif", 50).into_font()) @@ -461,8 +462,9 @@ Plotters can use different drawing back-ends, including SVG, BitMap, and even re ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; // Create a 800*600 bitmap and start drawing - let mut backend = BitMapBackend::new("plotters-doc-data/1.png", (300, 200)); + let mut backend = BitMapBackend::new("../target/plotters-doc-data/1.png", (300, 200)); // And if we want SVG backend // let backend = SVGBackend::new("output.svg", (800, 600)); backend.draw_rect((50, 50), (200, 150), &RED, true)?; @@ -483,8 +485,9 @@ Besides that, the drawing area also allows the customized coordinate system, by ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { + std::fs::create_dir_all("../target/plotters-doc-data")?; let root_drawing_area = - BitMapBackend::new("plotters-doc-data/2.png", (300, 200)).into_drawing_area(); + BitMapBackend::new("../target/plotters-doc-data/2.png", (300, 200)).into_drawing_area(); // And we can split the drawing area into 3x3 grid let child_drawing_areas = root_drawing_area.split_evenly((3, 3)); // Then we fill the drawing area with different color @@ -511,7 +514,8 @@ To learn more about the element system, please read the [element module document ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/3.png", (300, 200)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/3.png", (300, 200)).into_drawing_area(); root.fill(&WHITE)?; // Draw an circle on the drawing area root.draw(&Circle::new( @@ -539,7 +543,8 @@ use plotters::prelude::*; use plotters::coord::types::RangedCoordf32; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/4.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/4.png", (640, 480)).into_drawing_area(); root.fill(&RGBColor(240, 200, 200))?; @@ -579,7 +584,8 @@ of the chart context object. ```rust use plotters::prelude::*; fn main() -> Result<(), Box> { - let root = BitMapBackend::new("plotters-doc-data/5.png", (640, 480)).into_drawing_area(); + std::fs::create_dir_all("../target/plotters-doc-data")?; + let root = BitMapBackend::new("../target/plotters-doc-data/5.png", (640, 480)).into_drawing_area(); root.fill(&WHITE); let root = root.margin(10, 10, 10, 10); // After this point, we should be able to draw construct a chart context